(struct Lisp_Process): Turn slots infd, outfd, kill_without_query, pty_flag,
[emacs.git] / src / process.c
blob90d0ee340241d49a2325e336f39da520943357f8
1 /* Asynchronous subprocess control for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995,
3 1996, 1998, 1999, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 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; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
24 #include <config.h>
25 #include <signal.h>
27 /* This file is split into two parts by the following preprocessor
28 conditional. The 'then' clause contains all of the support for
29 asynchronous subprocesses. The 'else' clause contains stub
30 versions of some of the asynchronous subprocess routines that are
31 often called elsewhere in Emacs, so we don't have to #ifdef the
32 sections that call them. */
35 #ifdef subprocesses
37 #include <stdio.h>
38 #include <errno.h>
39 #include <setjmp.h>
40 #include <sys/types.h> /* some typedefs are used in sys/file.h */
41 #include <sys/file.h>
42 #include <sys/stat.h>
43 #ifdef HAVE_INTTYPES_H
44 #include <inttypes.h>
45 #endif
46 #ifdef HAVE_UNISTD_H
47 #include <unistd.h>
48 #endif
50 #if defined(WINDOWSNT) || defined(UNIX98_PTYS)
51 #include <stdlib.h>
52 #include <fcntl.h>
53 #endif /* not WINDOWSNT */
55 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
56 #include <sys/socket.h>
57 #include <netdb.h>
58 #include <netinet/in.h>
59 #include <arpa/inet.h>
60 #ifdef NEED_NET_ERRNO_H
61 #include <net/errno.h>
62 #endif /* NEED_NET_ERRNO_H */
64 /* Are local (unix) sockets supported? */
65 #if defined (HAVE_SYS_UN_H) && !defined (NO_SOCKETS_IN_FILE_SYSTEM)
66 #if !defined (AF_LOCAL) && defined (AF_UNIX)
67 #define AF_LOCAL AF_UNIX
68 #endif
69 #ifdef AF_LOCAL
70 #define HAVE_LOCAL_SOCKETS
71 #include <sys/un.h>
72 #endif
73 #endif
74 #endif /* HAVE_SOCKETS */
76 /* TERM is a poor-man's SLIP, used on GNU/Linux. */
77 #ifdef TERM
78 #include <client.h>
79 #endif
81 /* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */
82 #ifdef HAVE_BROKEN_INET_ADDR
83 #define IN_ADDR struct in_addr
84 #define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1)
85 #else
86 #define IN_ADDR unsigned long
87 #define NUMERIC_ADDR_ERROR (numeric_addr == -1)
88 #endif
90 #if defined(BSD_SYSTEM) || defined(STRIDE)
91 #include <sys/ioctl.h>
92 #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
93 #include <fcntl.h>
94 #endif /* HAVE_PTYS and no O_NDELAY */
95 #endif /* BSD_SYSTEM || STRIDE */
97 #ifdef BROKEN_O_NONBLOCK
98 #undef O_NONBLOCK
99 #endif /* BROKEN_O_NONBLOCK */
101 #ifdef NEED_BSDTTY
102 #include <bsdtty.h>
103 #endif
105 /* Can we use SIOCGIFCONF and/or SIOCGIFADDR */
106 #ifdef HAVE_SOCKETS
107 #if defined(HAVE_SYS_IOCTL_H) && defined(HAVE_NET_IF_H)
108 /* sys/ioctl.h may have been included already */
109 #ifndef SIOCGIFADDR
110 #include <sys/ioctl.h>
111 #endif
112 #include <net/if.h>
113 #endif
114 #endif
116 #ifdef IRIS
117 #include <sys/sysmacros.h> /* for "minor" */
118 #endif /* not IRIS */
120 #ifdef HAVE_SYS_WAIT
121 #include <sys/wait.h>
122 #endif
124 /* Disable IPv6 support for w32 until someone figures out how to do it
125 properly. */
126 #ifdef WINDOWSNT
127 # ifdef AF_INET6
128 # undef AF_INET6
129 # endif
130 #endif
132 #include "lisp.h"
133 #include "systime.h"
134 #include "systty.h"
136 #include "window.h"
137 #include "buffer.h"
138 #include "charset.h"
139 #include "coding.h"
140 #include "process.h"
141 #include "termhooks.h"
142 #include "termopts.h"
143 #include "commands.h"
144 #include "keyboard.h"
145 #include "frame.h"
146 #include "blockinput.h"
147 #include "dispextern.h"
148 #include "composite.h"
149 #include "atimer.h"
151 Lisp_Object Qprocessp;
152 Lisp_Object Qrun, Qstop, Qsignal;
153 Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
154 Lisp_Object Qlocal, Qipv4, Qdatagram;
155 #ifdef AF_INET6
156 Lisp_Object Qipv6;
157 #endif
158 Lisp_Object QCname, QCbuffer, QChost, QCservice, QCtype;
159 Lisp_Object QClocal, QCremote, QCcoding;
160 Lisp_Object QCserver, QCnowait, QCnoquery, QCstop;
161 Lisp_Object QCsentinel, QClog, QCoptions, QCplist;
162 Lisp_Object QCfilter_multibyte;
163 Lisp_Object Qlast_nonmenu_event;
164 /* QCfamily is declared and initialized in xfaces.c,
165 QCfilter in keyboard.c. */
166 extern Lisp_Object QCfamily, QCfilter;
168 /* Qexit is declared and initialized in eval.c. */
170 /* QCfamily is defined in xfaces.c. */
171 extern Lisp_Object QCfamily;
172 /* QCfilter is defined in keyboard.c. */
173 extern Lisp_Object QCfilter;
175 /* a process object is a network connection when its childp field is neither
176 Qt nor Qnil but is instead a property list (KEY VAL ...). */
178 #ifdef HAVE_SOCKETS
179 #define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp))
180 #define NETCONN1_P(p) (GC_CONSP ((p)->childp))
181 #else
182 #define NETCONN_P(p) 0
183 #define NETCONN1_P(p) 0
184 #endif /* HAVE_SOCKETS */
186 /* Define first descriptor number available for subprocesses. */
187 #ifdef VMS
188 #define FIRST_PROC_DESC 1
189 #else /* Not VMS */
190 #define FIRST_PROC_DESC 3
191 #endif
193 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
194 testing SIGCHLD. */
196 #if !defined (SIGCHLD) && defined (SIGCLD)
197 #define SIGCHLD SIGCLD
198 #endif /* SIGCLD */
200 #include "syssignal.h"
202 #include "syswait.h"
204 extern char *get_operating_system_release ();
206 #ifndef USE_CRT_DLL
207 extern int errno;
208 #endif
209 #ifdef VMS
210 extern char *sys_errlist[];
211 #endif
213 #ifndef HAVE_H_ERRNO
214 extern int h_errno;
215 #endif
217 /* t means use pty, nil means use a pipe,
218 maybe other values to come. */
219 static Lisp_Object Vprocess_connection_type;
221 #ifdef SKTPAIR
222 #ifndef HAVE_SOCKETS
223 #include <sys/socket.h>
224 #endif
225 #endif /* SKTPAIR */
227 /* These next two vars are non-static since sysdep.c uses them in the
228 emulation of `select'. */
229 /* Number of events of change of status of a process. */
230 int process_tick;
231 /* Number of events for which the user or sentinel has been notified. */
232 int update_tick;
234 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
236 #ifdef BROKEN_NON_BLOCKING_CONNECT
237 #undef NON_BLOCKING_CONNECT
238 #else
239 #ifndef NON_BLOCKING_CONNECT
240 #ifdef HAVE_SOCKETS
241 #ifdef HAVE_SELECT
242 #if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX)
243 #if defined (O_NONBLOCK) || defined (O_NDELAY)
244 #if defined (EWOULDBLOCK) || defined (EINPROGRESS)
245 #define NON_BLOCKING_CONNECT
246 #endif /* EWOULDBLOCK || EINPROGRESS */
247 #endif /* O_NONBLOCK || O_NDELAY */
248 #endif /* HAVE_GETPEERNAME || GNU_LINUX */
249 #endif /* HAVE_SELECT */
250 #endif /* HAVE_SOCKETS */
251 #endif /* NON_BLOCKING_CONNECT */
252 #endif /* BROKEN_NON_BLOCKING_CONNECT */
254 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on
255 this system. We need to read full packets, so we need a
256 "non-destructive" select. So we require either native select,
257 or emulation of select using FIONREAD. */
259 #ifdef BROKEN_DATAGRAM_SOCKETS
260 #undef DATAGRAM_SOCKETS
261 #else
262 #ifndef DATAGRAM_SOCKETS
263 #ifdef HAVE_SOCKETS
264 #if defined (HAVE_SELECT) || defined (FIONREAD)
265 #if defined (HAVE_SENDTO) && defined (HAVE_RECVFROM) && defined (EMSGSIZE)
266 #define DATAGRAM_SOCKETS
267 #endif /* HAVE_SENDTO && HAVE_RECVFROM && EMSGSIZE */
268 #endif /* HAVE_SELECT || FIONREAD */
269 #endif /* HAVE_SOCKETS */
270 #endif /* DATAGRAM_SOCKETS */
271 #endif /* BROKEN_DATAGRAM_SOCKETS */
273 #ifdef TERM
274 #undef NON_BLOCKING_CONNECT
275 #undef DATAGRAM_SOCKETS
276 #endif
278 #if !defined (ADAPTIVE_READ_BUFFERING) && !defined (NO_ADAPTIVE_READ_BUFFERING)
279 #ifdef EMACS_HAS_USECS
280 #define ADAPTIVE_READ_BUFFERING
281 #endif
282 #endif
284 #ifdef ADAPTIVE_READ_BUFFERING
285 #define READ_OUTPUT_DELAY_INCREMENT 10000
286 #define READ_OUTPUT_DELAY_MAX (READ_OUTPUT_DELAY_INCREMENT * 5)
287 #define READ_OUTPUT_DELAY_MAX_MAX (READ_OUTPUT_DELAY_INCREMENT * 7)
289 /* Number of processes which have a non-zero read_output_delay,
290 and therefore might be delayed for adaptive read buffering. */
292 static int process_output_delay_count;
294 /* Non-zero if any process has non-nil read_output_skip. */
296 static int process_output_skip;
298 /* Non-nil means to delay reading process output to improve buffering.
299 A value of t means that delay is reset after each send, any other
300 non-nil value does not reset the delay. A value of nil disables
301 adaptive read buffering completely. */
302 static Lisp_Object Vprocess_adaptive_read_buffering;
303 #else
304 #define process_output_delay_count 0
305 #endif
308 #include "sysselect.h"
310 static int keyboard_bit_set P_ ((SELECT_TYPE *));
311 static void deactivate_process P_ ((Lisp_Object));
312 static void status_notify P_ ((struct Lisp_Process *));
313 static int read_process_output P_ ((Lisp_Object, int));
315 /* If we support a window system, turn on the code to poll periodically
316 to detect C-g. It isn't actually used when doing interrupt input. */
317 #ifdef HAVE_WINDOW_SYSTEM
318 #define POLL_FOR_INPUT
319 #endif
321 static Lisp_Object get_process ();
322 static void exec_sentinel ();
324 extern EMACS_TIME timer_check ();
325 extern int timers_run;
327 /* Mask of bits indicating the descriptors that we wait for input on. */
329 static SELECT_TYPE input_wait_mask;
331 /* Mask that excludes keyboard input descriptor(s). */
333 static SELECT_TYPE non_keyboard_wait_mask;
335 /* Mask that excludes process input descriptor(s). */
337 static SELECT_TYPE non_process_wait_mask;
339 /* Mask for the gpm mouse input descriptor. */
341 static SELECT_TYPE gpm_wait_mask;
343 #ifdef NON_BLOCKING_CONNECT
344 /* Mask of bits indicating the descriptors that we wait for connect to
345 complete on. Once they complete, they are removed from this mask
346 and added to the input_wait_mask and non_keyboard_wait_mask. */
348 static SELECT_TYPE connect_wait_mask;
350 /* Number of bits set in connect_wait_mask. */
351 static int num_pending_connects;
353 #define IF_NON_BLOCKING_CONNECT(s) s
354 #else
355 #define IF_NON_BLOCKING_CONNECT(s)
356 #endif
358 /* The largest descriptor currently in use for a process object. */
359 static int max_process_desc;
361 /* The largest descriptor currently in use for keyboard input. */
362 static int max_keyboard_desc;
364 /* The largest descriptor currently in use for gpm mouse input. */
365 static int max_gpm_desc;
367 /* Nonzero means delete a process right away if it exits. */
368 static int delete_exited_processes;
370 /* Indexed by descriptor, gives the process (if any) for that descriptor */
371 Lisp_Object chan_process[MAXDESC];
373 /* Alist of elements (NAME . PROCESS) */
374 Lisp_Object Vprocess_alist;
376 /* Buffered-ahead input char from process, indexed by channel.
377 -1 means empty (no char is buffered).
378 Used on sys V where the only way to tell if there is any
379 output from the process is to read at least one char.
380 Always -1 on systems that support FIONREAD. */
382 /* Don't make static; need to access externally. */
383 int proc_buffered_char[MAXDESC];
385 /* Table of `struct coding-system' for each process. */
386 static struct coding_system *proc_decode_coding_system[MAXDESC];
387 static struct coding_system *proc_encode_coding_system[MAXDESC];
389 #ifdef DATAGRAM_SOCKETS
390 /* Table of `partner address' for datagram sockets. */
391 struct sockaddr_and_len {
392 struct sockaddr *sa;
393 int len;
394 } datagram_address[MAXDESC];
395 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
396 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XPROCESS (proc)->infd].sa != 0)
397 #else
398 #define DATAGRAM_CHAN_P(chan) (0)
399 #define DATAGRAM_CONN_P(proc) (0)
400 #endif
402 /* Maximum number of bytes to send to a pty without an eof. */
403 static int pty_max_bytes;
405 /* Nonzero means don't run process sentinels. This is used
406 when exiting. */
407 int inhibit_sentinels;
409 #ifdef HAVE_PTYS
410 #ifdef HAVE_PTY_H
411 #include <pty.h>
412 #endif
413 /* The file name of the pty opened by allocate_pty. */
415 static char pty_name[24];
416 #endif
418 /* Compute the Lisp form of the process status, p->status, from
419 the numeric status that was returned by `wait'. */
421 static Lisp_Object status_convert ();
423 static void
424 update_status (p)
425 struct Lisp_Process *p;
427 union { int i; WAITTYPE wt; } u;
428 eassert (p->raw_status_new);
429 u.i = p->raw_status;
430 p->status = status_convert (u.wt);
431 p->raw_status_new = 0;
434 /* Convert a process status word in Unix format to
435 the list that we use internally. */
437 static Lisp_Object
438 status_convert (w)
439 WAITTYPE w;
441 if (WIFSTOPPED (w))
442 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
443 else if (WIFEXITED (w))
444 return Fcons (Qexit, Fcons (make_number (WRETCODE (w)),
445 WCOREDUMP (w) ? Qt : Qnil));
446 else if (WIFSIGNALED (w))
447 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
448 WCOREDUMP (w) ? Qt : Qnil));
449 else
450 return Qrun;
453 /* Given a status-list, extract the three pieces of information
454 and store them individually through the three pointers. */
456 static void
457 decode_status (l, symbol, code, coredump)
458 Lisp_Object l;
459 Lisp_Object *symbol;
460 int *code;
461 int *coredump;
463 Lisp_Object tem;
465 if (SYMBOLP (l))
467 *symbol = l;
468 *code = 0;
469 *coredump = 0;
471 else
473 *symbol = XCAR (l);
474 tem = XCDR (l);
475 *code = XFASTINT (XCAR (tem));
476 tem = XCDR (tem);
477 *coredump = !NILP (tem);
481 /* Return a string describing a process status list. */
483 static Lisp_Object
484 status_message (p)
485 struct Lisp_Process *p;
487 Lisp_Object status = p->status;
488 Lisp_Object symbol;
489 int code, coredump;
490 Lisp_Object string, string2;
492 decode_status (status, &symbol, &code, &coredump);
494 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
496 char *signame;
497 synchronize_system_messages_locale ();
498 signame = strsignal (code);
499 if (signame == 0)
500 signame = "unknown";
501 string = build_string (signame);
502 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
503 SSET (string, 0, DOWNCASE (SREF (string, 0)));
504 return concat2 (string, string2);
506 else if (EQ (symbol, Qexit))
508 if (NETCONN1_P (p))
509 return build_string (code == 0 ? "deleted\n" : "connection broken by remote peer\n");
510 if (code == 0)
511 return build_string ("finished\n");
512 string = Fnumber_to_string (make_number (code));
513 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
514 return concat3 (build_string ("exited abnormally with code "),
515 string, string2);
517 else if (EQ (symbol, Qfailed))
519 string = Fnumber_to_string (make_number (code));
520 string2 = build_string ("\n");
521 return concat3 (build_string ("failed with code "),
522 string, string2);
524 else
525 return Fcopy_sequence (Fsymbol_name (symbol));
528 #ifdef HAVE_PTYS
530 /* Open an available pty, returning a file descriptor.
531 Return -1 on failure.
532 The file name of the terminal corresponding to the pty
533 is left in the variable pty_name. */
535 static int
536 allocate_pty ()
538 register int c, i;
539 int fd;
541 #ifdef PTY_ITERATION
542 PTY_ITERATION
543 #else
544 for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
545 for (i = 0; i < 16; i++)
546 #endif
548 struct stat stb; /* Used in some PTY_OPEN. */
549 #ifdef PTY_NAME_SPRINTF
550 PTY_NAME_SPRINTF
551 #else
552 sprintf (pty_name, "/dev/pty%c%x", c, i);
553 #endif /* no PTY_NAME_SPRINTF */
555 #ifdef PTY_OPEN
556 PTY_OPEN;
557 #else /* no PTY_OPEN */
559 # ifdef IRIS
560 /* Unusual IRIS code */
561 *ptyv = emacs_open ("/dev/ptc", O_RDWR | O_NDELAY, 0);
562 if (fd < 0)
563 return -1;
564 if (fstat (fd, &stb) < 0)
565 return -1;
566 # else /* not IRIS */
567 { /* Some systems name their pseudoterminals so that there are gaps in
568 the usual sequence - for example, on HP9000/S700 systems, there
569 are no pseudoterminals with names ending in 'f'. So we wait for
570 three failures in a row before deciding that we've reached the
571 end of the ptys. */
572 int failed_count = 0;
574 if (stat (pty_name, &stb) < 0)
576 failed_count++;
577 if (failed_count >= 3)
578 return -1;
580 else
581 failed_count = 0;
583 # ifdef O_NONBLOCK
584 fd = emacs_open (pty_name, O_RDWR | O_NONBLOCK, 0);
585 # else
586 fd = emacs_open (pty_name, O_RDWR | O_NDELAY, 0);
587 # endif
588 # endif /* not IRIS */
590 #endif /* no PTY_OPEN */
592 if (fd >= 0)
594 /* check to make certain that both sides are available
595 this avoids a nasty yet stupid bug in rlogins */
596 #ifdef PTY_TTY_NAME_SPRINTF
597 PTY_TTY_NAME_SPRINTF
598 #else
599 sprintf (pty_name, "/dev/tty%c%x", c, i);
600 #endif /* no PTY_TTY_NAME_SPRINTF */
601 #ifndef UNIPLUS
602 if (access (pty_name, 6) != 0)
604 emacs_close (fd);
605 # if !defined(IRIS) && !defined(__sgi)
606 continue;
607 # else
608 return -1;
609 # endif /* IRIS */
611 #endif /* not UNIPLUS */
612 setup_pty (fd);
613 return fd;
616 return -1;
618 #endif /* HAVE_PTYS */
620 static Lisp_Object
621 make_process (name)
622 Lisp_Object name;
624 register Lisp_Object val, tem, name1;
625 register struct Lisp_Process *p;
626 char suffix[10];
627 register int i;
629 p = allocate_process ();
631 p->infd = -1;
632 p->outfd = -1;
633 p->tick = 0;
634 p->update_tick = 0;
635 p->pid = 0;
636 p->raw_status_new = 0;
637 p->status = Qrun;
638 p->mark = Fmake_marker ();
640 #ifdef ADAPTIVE_READ_BUFFERING
641 p->adaptive_read_buffering = 0;
642 p->read_output_delay = 0;
643 p->read_output_skip = 0;
644 #endif
646 /* If name is already in use, modify it until it is unused. */
648 name1 = name;
649 for (i = 1; ; i++)
651 tem = Fget_process (name1);
652 if (NILP (tem)) break;
653 sprintf (suffix, "<%d>", i);
654 name1 = concat2 (name, build_string (suffix));
656 name = name1;
657 p->name = name;
658 XSETPROCESS (val, p);
659 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
660 return val;
663 static void
664 remove_process (proc)
665 register Lisp_Object proc;
667 register Lisp_Object pair;
669 pair = Frassq (proc, Vprocess_alist);
670 Vprocess_alist = Fdelq (pair, Vprocess_alist);
672 deactivate_process (proc);
675 /* Setup coding systems of PROCESS. */
677 void
678 setup_process_coding_systems (process)
679 Lisp_Object process;
681 struct Lisp_Process *p = XPROCESS (process);
682 int inch = p->infd;
683 int outch = p->outfd;
685 if (inch < 0 || outch < 0)
686 return;
688 if (!proc_decode_coding_system[inch])
689 proc_decode_coding_system[inch]
690 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
691 setup_coding_system (p->decode_coding_system,
692 proc_decode_coding_system[inch]);
693 if (! NILP (p->filter))
695 if (!p->filter_multibyte)
696 setup_raw_text_coding_system (proc_decode_coding_system[inch]);
698 else if (BUFFERP (p->buffer))
700 if (NILP (XBUFFER (p->buffer)->enable_multibyte_characters))
701 setup_raw_text_coding_system (proc_decode_coding_system[inch]);
704 if (!proc_encode_coding_system[outch])
705 proc_encode_coding_system[outch]
706 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
707 setup_coding_system (p->encode_coding_system,
708 proc_encode_coding_system[outch]);
709 if (proc_encode_coding_system[outch]->eol_type == CODING_EOL_UNDECIDED)
710 proc_encode_coding_system[outch]->eol_type = system_eol_type;
713 DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
714 doc: /* Return t if OBJECT is a process. */)
715 (object)
716 Lisp_Object object;
718 return PROCESSP (object) ? Qt : Qnil;
721 DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
722 doc: /* Return the process named NAME, or nil if there is none. */)
723 (name)
724 register Lisp_Object name;
726 if (PROCESSP (name))
727 return name;
728 CHECK_STRING (name);
729 return Fcdr (Fassoc (name, Vprocess_alist));
732 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
733 doc: /* Return the (or a) process associated with BUFFER.
734 BUFFER may be a buffer or the name of one. */)
735 (buffer)
736 register Lisp_Object buffer;
738 register Lisp_Object buf, tail, proc;
740 if (NILP (buffer)) return Qnil;
741 buf = Fget_buffer (buffer);
742 if (NILP (buf)) return Qnil;
744 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
746 proc = Fcdr (Fcar (tail));
747 if (PROCESSP (proc) && EQ (XPROCESS (proc)->buffer, buf))
748 return proc;
750 return Qnil;
753 /* This is how commands for the user decode process arguments. It
754 accepts a process, a process name, a buffer, a buffer name, or nil.
755 Buffers denote the first process in the buffer, and nil denotes the
756 current buffer. */
758 static Lisp_Object
759 get_process (name)
760 register Lisp_Object name;
762 register Lisp_Object proc, obj;
763 if (STRINGP (name))
765 obj = Fget_process (name);
766 if (NILP (obj))
767 obj = Fget_buffer (name);
768 if (NILP (obj))
769 error ("Process %s does not exist", SDATA (name));
771 else if (NILP (name))
772 obj = Fcurrent_buffer ();
773 else
774 obj = name;
776 /* Now obj should be either a buffer object or a process object.
778 if (BUFFERP (obj))
780 proc = Fget_buffer_process (obj);
781 if (NILP (proc))
782 error ("Buffer %s has no process", SDATA (XBUFFER (obj)->name));
784 else
786 CHECK_PROCESS (obj);
787 proc = obj;
789 return proc;
793 #ifdef SIGCHLD
794 /* Fdelete_process promises to immediately forget about the process, but in
795 reality, Emacs needs to remember those processes until they have been
796 treated by sigchld_handler; otherwise this handler would consider the
797 process as being synchronous and say that the synchronous process is
798 dead. */
799 static Lisp_Object deleted_pid_list;
800 #endif
802 DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
803 doc: /* Delete PROCESS: kill it and forget about it immediately.
804 PROCESS may be a process, a buffer, the name of a process or buffer, or
805 nil, indicating the current buffer's process. */)
806 (process)
807 register Lisp_Object process;
809 register struct Lisp_Process *p;
811 process = get_process (process);
812 p = XPROCESS (process);
814 p->raw_status_new = 0;
815 if (NETCONN1_P (p))
817 p->status = Fcons (Qexit, Fcons (make_number (0), Qnil));
818 p->tick = ++process_tick;
819 status_notify (p);
821 else if (p->infd >= 0)
823 #ifdef SIGCHLD
824 Lisp_Object symbol;
825 /* Assignment to EMACS_INT stops GCC whining about limited range
826 of data type. */
827 EMACS_INT pid = p->pid;
829 /* No problem storing the pid here, as it is still in Vprocess_alist. */
830 deleted_pid_list = Fcons (make_fixnum_or_float (pid),
831 /* GC treated elements set to nil. */
832 Fdelq (Qnil, deleted_pid_list));
833 /* If the process has already signaled, remove it from the list. */
834 if (p->raw_status_new)
835 update_status (p);
836 symbol = p->status;
837 if (CONSP (p->status))
838 symbol = XCAR (p->status);
839 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
840 deleted_pid_list
841 = Fdelete (make_fixnum_or_float (pid), deleted_pid_list);
842 else
843 #endif
845 Fkill_process (process, Qnil);
846 /* Do this now, since remove_process will make sigchld_handler do nothing. */
847 p->status
848 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
849 p->tick = ++process_tick;
850 status_notify (p);
853 remove_process (process);
854 return Qnil;
857 DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
858 doc: /* Return the status of PROCESS.
859 The returned value is one of the following symbols:
860 run -- for a process that is running.
861 stop -- for a process stopped but continuable.
862 exit -- for a process that has exited.
863 signal -- for a process that has got a fatal signal.
864 open -- for a network stream connection that is open.
865 listen -- for a network stream server that is listening.
866 closed -- for a network stream connection that is closed.
867 connect -- when waiting for a non-blocking connection to complete.
868 failed -- when a non-blocking connection has failed.
869 nil -- if arg is a process name and no such process exists.
870 PROCESS may be a process, a buffer, the name of a process, or
871 nil, indicating the current buffer's process. */)
872 (process)
873 register Lisp_Object process;
875 register struct Lisp_Process *p;
876 register Lisp_Object status;
878 if (STRINGP (process))
879 process = Fget_process (process);
880 else
881 process = get_process (process);
883 if (NILP (process))
884 return process;
886 p = XPROCESS (process);
887 if (p->raw_status_new)
888 update_status (p);
889 status = p->status;
890 if (CONSP (status))
891 status = XCAR (status);
892 if (NETCONN1_P (p))
894 if (EQ (status, Qexit))
895 status = Qclosed;
896 else if (EQ (p->command, Qt))
897 status = Qstop;
898 else if (EQ (status, Qrun))
899 status = Qopen;
901 return status;
904 DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
905 1, 1, 0,
906 doc: /* Return the exit status of PROCESS or the signal number that killed it.
907 If PROCESS has not yet exited or died, return 0. */)
908 (process)
909 register Lisp_Object process;
911 CHECK_PROCESS (process);
912 if (XPROCESS (process)->raw_status_new)
913 update_status (XPROCESS (process));
914 if (CONSP (XPROCESS (process)->status))
915 return XCAR (XCDR (XPROCESS (process)->status));
916 return make_number (0);
919 DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
920 doc: /* Return the process id of PROCESS.
921 This is the pid of the external process which PROCESS uses or talks to.
922 For a network connection, this value is nil. */)
923 (process)
924 register Lisp_Object process;
926 /* Assignment to EMACS_INT stops GCC whining about limited range of
927 data type. */
928 EMACS_INT pid;
930 CHECK_PROCESS (process);
931 pid = XPROCESS (process)->pid;
932 return (pid ? make_fixnum_or_float (pid) : Qnil);
935 DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
936 doc: /* Return the name of PROCESS, as a string.
937 This is the name of the program invoked in PROCESS,
938 possibly modified to make it unique among process names. */)
939 (process)
940 register Lisp_Object process;
942 CHECK_PROCESS (process);
943 return XPROCESS (process)->name;
946 DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
947 doc: /* Return the command that was executed to start PROCESS.
948 This is a list of strings, the first string being the program executed
949 and the rest of the strings being the arguments given to it.
950 For a non-child channel, this is nil. */)
951 (process)
952 register Lisp_Object process;
954 CHECK_PROCESS (process);
955 return XPROCESS (process)->command;
958 DEFUN ("process-tty-name", Fprocess_tty_name, Sprocess_tty_name, 1, 1, 0,
959 doc: /* Return the name of the terminal PROCESS uses, or nil if none.
960 This is the terminal that the process itself reads and writes on,
961 not the name of the pty that Emacs uses to talk with that terminal. */)
962 (process)
963 register Lisp_Object process;
965 CHECK_PROCESS (process);
966 return XPROCESS (process)->tty_name;
969 DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
970 2, 2, 0,
971 doc: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil). */)
972 (process, buffer)
973 register Lisp_Object process, buffer;
975 struct Lisp_Process *p;
977 CHECK_PROCESS (process);
978 if (!NILP (buffer))
979 CHECK_BUFFER (buffer);
980 p = XPROCESS (process);
981 p->buffer = buffer;
982 if (NETCONN1_P (p))
983 p->childp = Fplist_put (p->childp, QCbuffer, buffer);
984 setup_process_coding_systems (process);
985 return buffer;
988 DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
989 1, 1, 0,
990 doc: /* Return the buffer PROCESS is associated with.
991 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
992 (process)
993 register Lisp_Object process;
995 CHECK_PROCESS (process);
996 return XPROCESS (process)->buffer;
999 DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
1000 1, 1, 0,
1001 doc: /* Return the marker for the end of the last output from PROCESS. */)
1002 (process)
1003 register Lisp_Object process;
1005 CHECK_PROCESS (process);
1006 return XPROCESS (process)->mark;
1009 DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
1010 2, 2, 0,
1011 doc: /* Give PROCESS the filter function FILTER; nil means no filter.
1012 t means stop accepting output from the process.
1014 When a process has a filter, its buffer is not used for output.
1015 Instead, each time it does output, the entire string of output is
1016 passed to the filter.
1018 The filter gets two arguments: the process and the string of output.
1019 The string argument is normally a multibyte string, except:
1020 - if the process' input coding system is no-conversion or raw-text,
1021 it is a unibyte string (the non-converted input), or else
1022 - if `default-enable-multibyte-characters' is nil, it is a unibyte
1023 string (the result of converting the decoded input multibyte
1024 string to unibyte with `string-make-unibyte'). */)
1025 (process, filter)
1026 register Lisp_Object process, filter;
1028 struct Lisp_Process *p;
1030 CHECK_PROCESS (process);
1031 p = XPROCESS (process);
1033 /* Don't signal an error if the process' input file descriptor
1034 is closed. This could make debugging Lisp more difficult,
1035 for example when doing something like
1037 (setq process (start-process ...))
1038 (debug)
1039 (set-process-filter process ...) */
1041 if (p->infd >= 0)
1043 if (EQ (filter, Qt) && !EQ (p->status, Qlisten))
1045 FD_CLR (p->infd, &input_wait_mask);
1046 FD_CLR (p->infd, &non_keyboard_wait_mask);
1048 else if (EQ (p->filter, Qt)
1049 && !EQ (p->command, Qt)) /* Network process not stopped. */
1051 FD_SET (p->infd, &input_wait_mask);
1052 FD_SET (p->infd, &non_keyboard_wait_mask);
1056 p->filter = filter;
1057 if (NETCONN1_P (p))
1058 p->childp = Fplist_put (p->childp, QCfilter, filter);
1059 setup_process_coding_systems (process);
1060 return filter;
1063 DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
1064 1, 1, 0,
1065 doc: /* Returns the filter function of PROCESS; nil if none.
1066 See `set-process-filter' for more info on filter functions. */)
1067 (process)
1068 register Lisp_Object process;
1070 CHECK_PROCESS (process);
1071 return XPROCESS (process)->filter;
1074 DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
1075 2, 2, 0,
1076 doc: /* Give PROCESS the sentinel SENTINEL; nil for none.
1077 The sentinel is called as a function when the process changes state.
1078 It gets two arguments: the process, and a string describing the change. */)
1079 (process, sentinel)
1080 register Lisp_Object process, sentinel;
1082 struct Lisp_Process *p;
1084 CHECK_PROCESS (process);
1085 p = XPROCESS (process);
1087 p->sentinel = sentinel;
1088 if (NETCONN1_P (p))
1089 p->childp = Fplist_put (p->childp, QCsentinel, sentinel);
1090 return sentinel;
1093 DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
1094 1, 1, 0,
1095 doc: /* Return the sentinel of PROCESS; nil if none.
1096 See `set-process-sentinel' for more info on sentinels. */)
1097 (process)
1098 register Lisp_Object process;
1100 CHECK_PROCESS (process);
1101 return XPROCESS (process)->sentinel;
1104 DEFUN ("set-process-window-size", Fset_process_window_size,
1105 Sset_process_window_size, 3, 3, 0,
1106 doc: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
1107 (process, height, width)
1108 register Lisp_Object process, height, width;
1110 CHECK_PROCESS (process);
1111 CHECK_NATNUM (height);
1112 CHECK_NATNUM (width);
1114 if (XPROCESS (process)->infd < 0
1115 || set_window_size (XPROCESS (process)->infd,
1116 XINT (height), XINT (width)) <= 0)
1117 return Qnil;
1118 else
1119 return Qt;
1122 DEFUN ("set-process-inherit-coding-system-flag",
1123 Fset_process_inherit_coding_system_flag,
1124 Sset_process_inherit_coding_system_flag, 2, 2, 0,
1125 doc: /* Determine whether buffer of PROCESS will inherit coding-system.
1126 If the second argument FLAG is non-nil, then the variable
1127 `buffer-file-coding-system' of the buffer associated with PROCESS
1128 will be bound to the value of the coding system used to decode
1129 the process output.
1131 This is useful when the coding system specified for the process buffer
1132 leaves either the character code conversion or the end-of-line conversion
1133 unspecified, or if the coding system used to decode the process output
1134 is more appropriate for saving the process buffer.
1136 Binding the variable `inherit-process-coding-system' to non-nil before
1137 starting the process is an alternative way of setting the inherit flag
1138 for the process which will run. */)
1139 (process, flag)
1140 register Lisp_Object process, flag;
1142 CHECK_PROCESS (process);
1143 XPROCESS (process)->inherit_coding_system_flag = !NILP (flag);
1144 return flag;
1147 DEFUN ("process-inherit-coding-system-flag",
1148 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
1149 1, 1, 0,
1150 doc: /* Return the value of inherit-coding-system flag for PROCESS.
1151 If this flag is t, `buffer-file-coding-system' of the buffer
1152 associated with PROCESS will inherit the coding system used to decode
1153 the process output. */)
1154 (process)
1155 register Lisp_Object process;
1157 CHECK_PROCESS (process);
1158 return XPROCESS (process)->inherit_coding_system_flag ? Qt : Qnil;
1161 DEFUN ("set-process-query-on-exit-flag",
1162 Fset_process_query_on_exit_flag, Sset_process_query_on_exit_flag,
1163 2, 2, 0,
1164 doc: /* Specify if query is needed for PROCESS when Emacs is exited.
1165 If the second argument FLAG is non-nil, Emacs will query the user before
1166 exiting if PROCESS is running. */)
1167 (process, flag)
1168 register Lisp_Object process, flag;
1170 CHECK_PROCESS (process);
1171 XPROCESS (process)->kill_without_query = NILP (flag);
1172 return flag;
1175 DEFUN ("process-query-on-exit-flag",
1176 Fprocess_query_on_exit_flag, Sprocess_query_on_exit_flag,
1177 1, 1, 0,
1178 doc: /* Return the current value of query-on-exit flag for PROCESS. */)
1179 (process)
1180 register Lisp_Object process;
1182 CHECK_PROCESS (process);
1183 return (XPROCESS (process)->kill_without_query ? Qnil : Qt);
1186 #ifdef DATAGRAM_SOCKETS
1187 Lisp_Object Fprocess_datagram_address ();
1188 #endif
1190 DEFUN ("process-contact", Fprocess_contact, Sprocess_contact,
1191 1, 2, 0,
1192 doc: /* Return the contact info of PROCESS; t for a real child.
1193 For a net connection, the value depends on the optional KEY arg.
1194 If KEY is nil, value is a cons cell of the form (HOST SERVICE),
1195 if KEY is t, the complete contact information for the connection is
1196 returned, else the specific value for the keyword KEY is returned.
1197 See `make-network-process' for a list of keywords. */)
1198 (process, key)
1199 register Lisp_Object process, key;
1201 Lisp_Object contact;
1203 CHECK_PROCESS (process);
1204 contact = XPROCESS (process)->childp;
1206 #ifdef DATAGRAM_SOCKETS
1207 if (DATAGRAM_CONN_P (process)
1208 && (EQ (key, Qt) || EQ (key, QCremote)))
1209 contact = Fplist_put (contact, QCremote,
1210 Fprocess_datagram_address (process));
1211 #endif
1213 if (!NETCONN_P (process) || EQ (key, Qt))
1214 return contact;
1215 if (NILP (key))
1216 return Fcons (Fplist_get (contact, QChost),
1217 Fcons (Fplist_get (contact, QCservice), Qnil));
1218 return Fplist_get (contact, key);
1221 DEFUN ("process-plist", Fprocess_plist, Sprocess_plist,
1222 1, 1, 0,
1223 doc: /* Return the plist of PROCESS. */)
1224 (process)
1225 register Lisp_Object process;
1227 CHECK_PROCESS (process);
1228 return XPROCESS (process)->plist;
1231 DEFUN ("set-process-plist", Fset_process_plist, Sset_process_plist,
1232 2, 2, 0,
1233 doc: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
1234 (process, plist)
1235 register Lisp_Object process, plist;
1237 CHECK_PROCESS (process);
1238 CHECK_LIST (plist);
1240 XPROCESS (process)->plist = plist;
1241 return plist;
1244 #if 0 /* Turned off because we don't currently record this info
1245 in the process. Perhaps add it. */
1246 DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0,
1247 doc: /* Return the connection type of PROCESS.
1248 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1249 a socket connection. */)
1250 (process)
1251 Lisp_Object process;
1253 return XPROCESS (process)->type;
1255 #endif
1257 #ifdef HAVE_SOCKETS
1258 DEFUN ("format-network-address", Fformat_network_address, Sformat_network_address,
1259 1, 2, 0,
1260 doc: /* Convert network ADDRESS from internal format to a string.
1261 A 4 or 5 element vector represents an IPv4 address (with port number).
1262 An 8 or 9 element vector represents an IPv6 address (with port number).
1263 If optional second argument OMIT-PORT is non-nil, don't include a port
1264 number in the string, even when present in ADDRESS.
1265 Returns nil if format of ADDRESS is invalid. */)
1266 (address, omit_port)
1267 Lisp_Object address, omit_port;
1269 if (NILP (address))
1270 return Qnil;
1272 if (STRINGP (address)) /* AF_LOCAL */
1273 return address;
1275 if (VECTORP (address)) /* AF_INET or AF_INET6 */
1277 register struct Lisp_Vector *p = XVECTOR (address);
1278 Lisp_Object args[10];
1279 int nargs, i;
1281 if (p->size == 4 || (p->size == 5 && !NILP (omit_port)))
1283 args[0] = build_string ("%d.%d.%d.%d");
1284 nargs = 4;
1286 else if (p->size == 5)
1288 args[0] = build_string ("%d.%d.%d.%d:%d");
1289 nargs = 5;
1291 else if (p->size == 8 || (p->size == 9 && !NILP (omit_port)))
1293 args[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
1294 nargs = 8;
1296 else if (p->size == 9)
1298 args[0] = build_string ("[%x:%x:%x:%x:%x:%x:%x:%x]:%d");
1299 nargs = 9;
1301 else
1302 return Qnil;
1304 for (i = 0; i < nargs; i++)
1306 EMACS_INT element = XINT (p->contents[i]);
1308 if (element < 0 || element > 65535)
1309 return Qnil;
1311 if (nargs <= 5 /* IPv4 */
1312 && i < 4 /* host, not port */
1313 && element > 255)
1314 return Qnil;
1316 args[i+1] = p->contents[i];
1319 return Fformat (nargs+1, args);
1322 if (CONSP (address))
1324 Lisp_Object args[2];
1325 args[0] = build_string ("<Family %d>");
1326 args[1] = Fcar (address);
1327 return Fformat (2, args);
1330 return Qnil;
1332 #endif
1334 static Lisp_Object
1335 list_processes_1 (query_only)
1336 Lisp_Object query_only;
1338 register Lisp_Object tail, tem;
1339 Lisp_Object proc, minspace, tem1;
1340 register struct Lisp_Process *p;
1341 char tembuf[300];
1342 int w_proc, w_buffer, w_tty;
1343 int exited = 0;
1344 Lisp_Object i_status, i_buffer, i_tty, i_command;
1346 w_proc = 4; /* Proc */
1347 w_buffer = 6; /* Buffer */
1348 w_tty = 0; /* Omit if no ttys */
1350 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
1352 int i;
1354 proc = Fcdr (Fcar (tail));
1355 p = XPROCESS (proc);
1356 if (NILP (p->childp))
1357 continue;
1358 if (!NILP (query_only) && p->kill_without_query)
1359 continue;
1360 if (STRINGP (p->name)
1361 && ( i = SCHARS (p->name), (i > w_proc)))
1362 w_proc = i;
1363 if (!NILP (p->buffer))
1365 if (NILP (XBUFFER (p->buffer)->name) && w_buffer < 8)
1366 w_buffer = 8; /* (Killed) */
1367 else if ((i = SCHARS (XBUFFER (p->buffer)->name), (i > w_buffer)))
1368 w_buffer = i;
1370 if (STRINGP (p->tty_name)
1371 && (i = SCHARS (p->tty_name), (i > w_tty)))
1372 w_tty = i;
1375 XSETFASTINT (i_status, w_proc + 1);
1376 XSETFASTINT (i_buffer, XFASTINT (i_status) + 9);
1377 if (w_tty)
1379 XSETFASTINT (i_tty, XFASTINT (i_buffer) + w_buffer + 1);
1380 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_tty + 1);
1381 } else {
1382 i_tty = Qnil;
1383 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_buffer + 1);
1386 XSETFASTINT (minspace, 1);
1388 set_buffer_internal (XBUFFER (Vstandard_output));
1389 current_buffer->undo_list = Qt;
1391 current_buffer->truncate_lines = Qt;
1393 write_string ("Proc", -1);
1394 Findent_to (i_status, minspace); write_string ("Status", -1);
1395 Findent_to (i_buffer, minspace); write_string ("Buffer", -1);
1396 if (!NILP (i_tty))
1398 Findent_to (i_tty, minspace); write_string ("Tty", -1);
1400 Findent_to (i_command, minspace); write_string ("Command", -1);
1401 write_string ("\n", -1);
1403 write_string ("----", -1);
1404 Findent_to (i_status, minspace); write_string ("------", -1);
1405 Findent_to (i_buffer, minspace); write_string ("------", -1);
1406 if (!NILP (i_tty))
1408 Findent_to (i_tty, minspace); write_string ("---", -1);
1410 Findent_to (i_command, minspace); write_string ("-------", -1);
1411 write_string ("\n", -1);
1413 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
1415 Lisp_Object symbol;
1417 proc = Fcdr (Fcar (tail));
1418 p = XPROCESS (proc);
1419 if (NILP (p->childp))
1420 continue;
1421 if (!NILP (query_only) && p->kill_without_query)
1422 continue;
1424 Finsert (1, &p->name);
1425 Findent_to (i_status, minspace);
1427 if (p->raw_status_new)
1428 update_status (p);
1429 symbol = p->status;
1430 if (CONSP (p->status))
1431 symbol = XCAR (p->status);
1433 if (EQ (symbol, Qsignal))
1435 Lisp_Object tem;
1436 tem = Fcar (Fcdr (p->status));
1437 #ifdef VMS
1438 if (XINT (tem) < NSIG)
1439 write_string (sys_errlist [XINT (tem)], -1);
1440 else
1441 #endif
1442 Fprinc (symbol, Qnil);
1444 else if (NETCONN1_P (p))
1446 if (EQ (symbol, Qexit))
1447 write_string ("closed", -1);
1448 else if (EQ (p->command, Qt))
1449 write_string ("stopped", -1);
1450 else if (EQ (symbol, Qrun))
1451 write_string ("open", -1);
1452 else
1453 Fprinc (symbol, Qnil);
1455 else
1456 Fprinc (symbol, Qnil);
1458 if (EQ (symbol, Qexit))
1460 Lisp_Object tem;
1461 tem = Fcar (Fcdr (p->status));
1462 if (XFASTINT (tem))
1464 sprintf (tembuf, " %d", (int) XFASTINT (tem));
1465 write_string (tembuf, -1);
1469 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit) || EQ (symbol, Qclosed))
1470 exited++;
1472 Findent_to (i_buffer, minspace);
1473 if (NILP (p->buffer))
1474 insert_string ("(none)");
1475 else if (NILP (XBUFFER (p->buffer)->name))
1476 insert_string ("(Killed)");
1477 else
1478 Finsert (1, &XBUFFER (p->buffer)->name);
1480 if (!NILP (i_tty))
1482 Findent_to (i_tty, minspace);
1483 if (STRINGP (p->tty_name))
1484 Finsert (1, &p->tty_name);
1487 Findent_to (i_command, minspace);
1489 if (EQ (p->status, Qlisten))
1491 Lisp_Object port = Fplist_get (p->childp, QCservice);
1492 if (INTEGERP (port))
1493 port = Fnumber_to_string (port);
1494 if (NILP (port))
1495 port = Fformat_network_address (Fplist_get (p->childp, QClocal), Qnil);
1496 sprintf (tembuf, "(network %s server on %s)\n",
1497 (DATAGRAM_CHAN_P (p->infd) ? "datagram" : "stream"),
1498 (STRINGP (port) ? (char *)SDATA (port) : "?"));
1499 insert_string (tembuf);
1501 else if (NETCONN1_P (p))
1503 /* For a local socket, there is no host name,
1504 so display service instead. */
1505 Lisp_Object host = Fplist_get (p->childp, QChost);
1506 if (!STRINGP (host))
1508 host = Fplist_get (p->childp, QCservice);
1509 if (INTEGERP (host))
1510 host = Fnumber_to_string (host);
1512 if (NILP (host))
1513 host = Fformat_network_address (Fplist_get (p->childp, QCremote), Qnil);
1514 sprintf (tembuf, "(network %s connection to %s)\n",
1515 (DATAGRAM_CHAN_P (p->infd) ? "datagram" : "stream"),
1516 (STRINGP (host) ? (char *)SDATA (host) : "?"));
1517 insert_string (tembuf);
1519 else
1521 tem = p->command;
1522 while (1)
1524 tem1 = Fcar (tem);
1525 Finsert (1, &tem1);
1526 tem = Fcdr (tem);
1527 if (NILP (tem))
1528 break;
1529 insert_string (" ");
1531 insert_string ("\n");
1534 if (exited)
1535 status_notify (NULL);
1536 return Qnil;
1539 DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 1, "P",
1540 doc: /* Display a list of all processes.
1541 If optional argument QUERY-ONLY is non-nil, only processes with
1542 the query-on-exit flag set will be listed.
1543 Any process listed as exited or signaled is actually eliminated
1544 after the listing is made. */)
1545 (query_only)
1546 Lisp_Object query_only;
1548 internal_with_output_to_temp_buffer ("*Process List*",
1549 list_processes_1, query_only);
1550 return Qnil;
1553 DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
1554 doc: /* Return a list of all processes. */)
1557 return Fmapcar (Qcdr, Vprocess_alist);
1560 /* Starting asynchronous inferior processes. */
1562 static Lisp_Object start_process_unwind ();
1564 DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
1565 doc: /* Start a program in a subprocess. Return the process object for it.
1566 NAME is name for process. It is modified if necessary to make it unique.
1567 BUFFER is the buffer (or buffer name) to associate with the process.
1569 Process output (both standard output and standard error streams) goes
1570 at end of BUFFER, unless you specify an output stream or filter
1571 function to handle the output. BUFFER may also be nil, meaning that
1572 this process is not associated with any buffer.
1574 PROGRAM is the program file name. It is searched for in PATH.
1575 Remaining arguments are strings to give program as arguments.
1577 If you want to separate standard output from standard error, invoke
1578 the command through a shell and redirect one of them using the shell
1579 syntax.
1581 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1582 (nargs, args)
1583 int nargs;
1584 register Lisp_Object *args;
1586 Lisp_Object buffer, name, program, proc, current_dir, tem;
1587 #ifdef VMS
1588 register unsigned char *new_argv;
1589 int len;
1590 #else
1591 register unsigned char **new_argv;
1592 #endif
1593 register int i;
1594 int count = SPECPDL_INDEX ();
1596 buffer = args[1];
1597 if (!NILP (buffer))
1598 buffer = Fget_buffer_create (buffer);
1600 /* Make sure that the child will be able to chdir to the current
1601 buffer's current directory, or its unhandled equivalent. We
1602 can't just have the child check for an error when it does the
1603 chdir, since it's in a vfork.
1605 We have to GCPRO around this because Fexpand_file_name and
1606 Funhandled_file_name_directory might call a file name handling
1607 function. The argument list is protected by the caller, so all
1608 we really have to worry about is buffer. */
1610 struct gcpro gcpro1, gcpro2;
1612 current_dir = current_buffer->directory;
1614 GCPRO2 (buffer, current_dir);
1616 current_dir
1617 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir),
1618 Qnil);
1619 if (NILP (Ffile_accessible_directory_p (current_dir)))
1620 report_file_error ("Setting current directory",
1621 Fcons (current_buffer->directory, Qnil));
1623 UNGCPRO;
1626 name = args[0];
1627 CHECK_STRING (name);
1629 program = args[2];
1631 CHECK_STRING (program);
1633 proc = make_process (name);
1634 /* If an error occurs and we can't start the process, we want to
1635 remove it from the process list. This means that each error
1636 check in create_process doesn't need to call remove_process
1637 itself; it's all taken care of here. */
1638 record_unwind_protect (start_process_unwind, proc);
1640 XPROCESS (proc)->childp = Qt;
1641 XPROCESS (proc)->plist = Qnil;
1642 XPROCESS (proc)->buffer = buffer;
1643 XPROCESS (proc)->sentinel = Qnil;
1644 XPROCESS (proc)->filter = Qnil;
1645 XPROCESS (proc)->filter_multibyte
1646 = !NILP (buffer_defaults.enable_multibyte_characters);
1647 XPROCESS (proc)->command = Flist (nargs - 2, args + 2);
1649 #ifdef ADAPTIVE_READ_BUFFERING
1650 XPROCESS (proc)->adaptive_read_buffering
1651 = (NILP (Vprocess_adaptive_read_buffering) ? 0
1652 : EQ (Vprocess_adaptive_read_buffering, Qt) ? 1 : 2);
1653 #endif
1655 /* Make the process marker point into the process buffer (if any). */
1656 if (BUFFERP (buffer))
1657 set_marker_both (XPROCESS (proc)->mark, buffer,
1658 BUF_ZV (XBUFFER (buffer)),
1659 BUF_ZV_BYTE (XBUFFER (buffer)));
1662 /* Decide coding systems for communicating with the process. Here
1663 we don't setup the structure coding_system nor pay attention to
1664 unibyte mode. They are done in create_process. */
1666 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1667 Lisp_Object coding_systems = Qt;
1668 Lisp_Object val, *args2;
1669 struct gcpro gcpro1, gcpro2;
1671 val = Vcoding_system_for_read;
1672 if (NILP (val))
1674 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
1675 args2[0] = Qstart_process;
1676 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1677 GCPRO2 (proc, current_dir);
1678 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1679 UNGCPRO;
1680 if (CONSP (coding_systems))
1681 val = XCAR (coding_systems);
1682 else if (CONSP (Vdefault_process_coding_system))
1683 val = XCAR (Vdefault_process_coding_system);
1685 XPROCESS (proc)->decode_coding_system = val;
1687 val = Vcoding_system_for_write;
1688 if (NILP (val))
1690 if (EQ (coding_systems, Qt))
1692 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof args2);
1693 args2[0] = Qstart_process;
1694 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1695 GCPRO2 (proc, current_dir);
1696 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1697 UNGCPRO;
1699 if (CONSP (coding_systems))
1700 val = XCDR (coding_systems);
1701 else if (CONSP (Vdefault_process_coding_system))
1702 val = XCDR (Vdefault_process_coding_system);
1704 XPROCESS (proc)->encode_coding_system = val;
1707 #ifdef VMS
1708 /* Make a one member argv with all args concatenated
1709 together separated by a blank. */
1710 len = SBYTES (program) + 2;
1711 for (i = 3; i < nargs; i++)
1713 tem = args[i];
1714 CHECK_STRING (tem);
1715 len += SBYTES (tem) + 1; /* count the blank */
1717 new_argv = (unsigned char *) alloca (len);
1718 strcpy (new_argv, SDATA (program));
1719 for (i = 3; i < nargs; i++)
1721 tem = args[i];
1722 CHECK_STRING (tem);
1723 strcat (new_argv, " ");
1724 strcat (new_argv, SDATA (tem));
1726 /* Need to add code here to check for program existence on VMS */
1728 #else /* not VMS */
1729 new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *));
1731 /* If program file name is not absolute, search our path for it.
1732 Put the name we will really use in TEM. */
1733 if (!IS_DIRECTORY_SEP (SREF (program, 0))
1734 && !(SCHARS (program) > 1
1735 && IS_DEVICE_SEP (SREF (program, 1))))
1737 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1739 tem = Qnil;
1740 GCPRO4 (name, program, buffer, current_dir);
1741 openp (Vexec_path, program, Vexec_suffixes, &tem, make_number (X_OK));
1742 UNGCPRO;
1743 if (NILP (tem))
1744 report_file_error ("Searching for program", Fcons (program, Qnil));
1745 tem = Fexpand_file_name (tem, Qnil);
1747 else
1749 if (!NILP (Ffile_directory_p (program)))
1750 error ("Specified program for new process is a directory");
1751 tem = program;
1754 /* If program file name starts with /: for quoting a magic name,
1755 discard that. */
1756 if (SBYTES (tem) > 2 && SREF (tem, 0) == '/'
1757 && SREF (tem, 1) == ':')
1758 tem = Fsubstring (tem, make_number (2), Qnil);
1760 /* Encode the file name and put it in NEW_ARGV.
1761 That's where the child will use it to execute the program. */
1762 tem = ENCODE_FILE (tem);
1763 new_argv[0] = SDATA (tem);
1765 /* Here we encode arguments by the coding system used for sending
1766 data to the process. We don't support using different coding
1767 systems for encoding arguments and for encoding data sent to the
1768 process. */
1770 for (i = 3; i < nargs; i++)
1772 tem = args[i];
1773 CHECK_STRING (tem);
1774 if (STRING_MULTIBYTE (tem))
1775 tem = (code_convert_string_norecord
1776 (tem, XPROCESS (proc)->encode_coding_system, 1));
1777 new_argv[i - 2] = SDATA (tem);
1779 new_argv[i - 2] = 0;
1780 #endif /* not VMS */
1782 XPROCESS (proc)->decoding_buf = make_uninit_string (0);
1783 XPROCESS (proc)->decoding_carryover = 0;
1784 XPROCESS (proc)->encoding_buf = make_uninit_string (0);
1786 XPROCESS (proc)->inherit_coding_system_flag
1787 = (NILP (buffer) || !inherit_process_coding_system);
1789 create_process (proc, (char **) new_argv, current_dir);
1791 return unbind_to (count, proc);
1794 /* This function is the unwind_protect form for Fstart_process. If
1795 PROC doesn't have its pid set, then we know someone has signaled
1796 an error and the process wasn't started successfully, so we should
1797 remove it from the process list. */
1798 static Lisp_Object
1799 start_process_unwind (proc)
1800 Lisp_Object proc;
1802 if (!PROCESSP (proc))
1803 abort ();
1805 /* Was PROC started successfully? */
1806 if (XPROCESS (proc)->pid <= 0)
1807 remove_process (proc);
1809 return Qnil;
1812 static void
1813 create_process_1 (timer)
1814 struct atimer *timer;
1816 /* Nothing to do. */
1820 #if 0 /* This doesn't work; see the note before sigchld_handler. */
1821 #ifdef USG
1822 #ifdef SIGCHLD
1823 /* Mimic blocking of signals on system V, which doesn't really have it. */
1825 /* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1826 int sigchld_deferred;
1828 SIGTYPE
1829 create_process_sigchld ()
1831 signal (SIGCHLD, create_process_sigchld);
1833 sigchld_deferred = 1;
1835 #endif
1836 #endif
1837 #endif
1839 #ifndef VMS /* VMS version of this function is in vmsproc.c. */
1840 void
1841 create_process (process, new_argv, current_dir)
1842 Lisp_Object process;
1843 char **new_argv;
1844 Lisp_Object current_dir;
1846 int inchannel, outchannel;
1847 pid_t pid;
1848 int sv[2];
1849 #ifdef POSIX_SIGNALS
1850 sigset_t procmask;
1851 sigset_t blocked;
1852 struct sigaction sigint_action;
1853 struct sigaction sigquit_action;
1854 #ifdef AIX
1855 struct sigaction sighup_action;
1856 #endif
1857 #else /* !POSIX_SIGNALS */
1858 #if 0
1859 #ifdef SIGCHLD
1860 SIGTYPE (*sigchld)();
1861 #endif
1862 #endif /* 0 */
1863 #endif /* !POSIX_SIGNALS */
1864 /* Use volatile to protect variables from being clobbered by longjmp. */
1865 volatile int forkin, forkout;
1866 volatile int pty_flag = 0;
1867 #ifndef USE_CRT_DLL
1868 extern char **environ;
1869 #endif
1871 inchannel = outchannel = -1;
1873 #ifdef HAVE_PTYS
1874 if (!NILP (Vprocess_connection_type))
1875 outchannel = inchannel = allocate_pty ();
1877 if (inchannel >= 0)
1879 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1880 /* On most USG systems it does not work to open the pty's tty here,
1881 then close it and reopen it in the child. */
1882 #ifdef O_NOCTTY
1883 /* Don't let this terminal become our controlling terminal
1884 (in case we don't have one). */
1885 forkout = forkin = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
1886 #else
1887 forkout = forkin = emacs_open (pty_name, O_RDWR, 0);
1888 #endif
1889 if (forkin < 0)
1890 report_file_error ("Opening pty", Qnil);
1891 #if defined (RTU) || defined (UNIPLUS) || defined (DONT_REOPEN_PTY)
1892 /* In the case that vfork is defined as fork, the parent process
1893 (Emacs) may send some data before the child process completes
1894 tty options setup. So we setup tty before forking. */
1895 child_setup_tty (forkout);
1896 #endif /* RTU or UNIPLUS or DONT_REOPEN_PTY */
1897 #else
1898 forkin = forkout = -1;
1899 #endif /* not USG, or USG_SUBTTY_WORKS */
1900 pty_flag = 1;
1902 else
1903 #endif /* HAVE_PTYS */
1904 #ifdef SKTPAIR
1906 if (socketpair (AF_UNIX, SOCK_STREAM, 0, sv) < 0)
1907 report_file_error ("Opening socketpair", Qnil);
1908 outchannel = inchannel = sv[0];
1909 forkout = forkin = sv[1];
1911 #else /* not SKTPAIR */
1913 int tem;
1914 tem = pipe (sv);
1915 if (tem < 0)
1916 report_file_error ("Creating pipe", Qnil);
1917 inchannel = sv[0];
1918 forkout = sv[1];
1919 tem = pipe (sv);
1920 if (tem < 0)
1922 emacs_close (inchannel);
1923 emacs_close (forkout);
1924 report_file_error ("Creating pipe", Qnil);
1926 outchannel = sv[1];
1927 forkin = sv[0];
1929 #endif /* not SKTPAIR */
1931 #if 0
1932 /* Replaced by close_process_descs */
1933 set_exclusive_use (inchannel);
1934 set_exclusive_use (outchannel);
1935 #endif
1937 /* Stride people say it's a mystery why this is needed
1938 as well as the O_NDELAY, but that it fails without this. */
1939 #if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS))
1941 int one = 1;
1942 ioctl (inchannel, FIONBIO, &one);
1944 #endif
1946 #ifdef O_NONBLOCK
1947 fcntl (inchannel, F_SETFL, O_NONBLOCK);
1948 fcntl (outchannel, F_SETFL, O_NONBLOCK);
1949 #else
1950 #ifdef O_NDELAY
1951 fcntl (inchannel, F_SETFL, O_NDELAY);
1952 fcntl (outchannel, F_SETFL, O_NDELAY);
1953 #endif
1954 #endif
1956 /* Record this as an active process, with its channels.
1957 As a result, child_setup will close Emacs's side of the pipes. */
1958 chan_process[inchannel] = process;
1959 XPROCESS (process)->infd = inchannel;
1960 XPROCESS (process)->outfd = outchannel;
1962 /* Previously we recorded the tty descriptor used in the subprocess.
1963 It was only used for getting the foreground tty process, so now
1964 we just reopen the device (see emacs_get_tty_pgrp) as this is
1965 more portable (see USG_SUBTTY_WORKS above). */
1967 XPROCESS (process)->pty_flag = pty_flag;
1968 XPROCESS (process)->status = Qrun;
1969 setup_process_coding_systems (process);
1971 /* Delay interrupts until we have a chance to store
1972 the new fork's pid in its process structure */
1973 #ifdef POSIX_SIGNALS
1974 sigemptyset (&blocked);
1975 #ifdef SIGCHLD
1976 sigaddset (&blocked, SIGCHLD);
1977 #endif
1978 #ifdef HAVE_WORKING_VFORK
1979 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
1980 this sets the parent's signal handlers as well as the child's.
1981 So delay all interrupts whose handlers the child might munge,
1982 and record the current handlers so they can be restored later. */
1983 sigaddset (&blocked, SIGINT ); sigaction (SIGINT , 0, &sigint_action );
1984 sigaddset (&blocked, SIGQUIT); sigaction (SIGQUIT, 0, &sigquit_action);
1985 #ifdef AIX
1986 sigaddset (&blocked, SIGHUP ); sigaction (SIGHUP , 0, &sighup_action );
1987 #endif
1988 #endif /* HAVE_WORKING_VFORK */
1989 sigprocmask (SIG_BLOCK, &blocked, &procmask);
1990 #else /* !POSIX_SIGNALS */
1991 #ifdef SIGCHLD
1992 #ifdef BSD4_1
1993 sighold (SIGCHLD);
1994 #else /* not BSD4_1 */
1995 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
1996 sigsetmask (sigmask (SIGCHLD));
1997 #else /* ordinary USG */
1998 #if 0
1999 sigchld_deferred = 0;
2000 sigchld = signal (SIGCHLD, create_process_sigchld);
2001 #endif
2002 #endif /* ordinary USG */
2003 #endif /* not BSD4_1 */
2004 #endif /* SIGCHLD */
2005 #endif /* !POSIX_SIGNALS */
2007 FD_SET (inchannel, &input_wait_mask);
2008 FD_SET (inchannel, &non_keyboard_wait_mask);
2009 if (inchannel > max_process_desc)
2010 max_process_desc = inchannel;
2012 /* Until we store the proper pid, enable sigchld_handler
2013 to recognize an unknown pid as standing for this process.
2014 It is very important not to let this `marker' value stay
2015 in the table after this function has returned; if it does
2016 it might cause call-process to hang and subsequent asynchronous
2017 processes to get their return values scrambled. */
2018 XPROCESS (process)->pid = -1;
2020 BLOCK_INPUT;
2023 /* child_setup must clobber environ on systems with true vfork.
2024 Protect it from permanent change. */
2025 char **save_environ = environ;
2027 current_dir = ENCODE_FILE (current_dir);
2029 #ifndef WINDOWSNT
2030 pid = vfork ();
2031 if (pid == 0)
2032 #endif /* not WINDOWSNT */
2034 int xforkin = forkin;
2035 int xforkout = forkout;
2037 #if 0 /* This was probably a mistake--it duplicates code later on,
2038 but fails to handle all the cases. */
2039 /* Make sure SIGCHLD is not blocked in the child. */
2040 sigsetmask (SIGEMPTYMASK);
2041 #endif
2043 /* Make the pty be the controlling terminal of the process. */
2044 #ifdef HAVE_PTYS
2045 /* First, disconnect its current controlling terminal. */
2046 #ifdef HAVE_SETSID
2047 /* We tried doing setsid only if pty_flag, but it caused
2048 process_set_signal to fail on SGI when using a pipe. */
2049 setsid ();
2050 /* Make the pty's terminal the controlling terminal. */
2051 if (pty_flag)
2053 #ifdef TIOCSCTTY
2054 /* We ignore the return value
2055 because faith@cs.unc.edu says that is necessary on Linux. */
2056 ioctl (xforkin, TIOCSCTTY, 0);
2057 #endif
2059 #else /* not HAVE_SETSID */
2060 #ifdef USG
2061 /* It's very important to call setpgrp here and no time
2062 afterwards. Otherwise, we lose our controlling tty which
2063 is set when we open the pty. */
2064 setpgrp ();
2065 #endif /* USG */
2066 #endif /* not HAVE_SETSID */
2067 #if defined (HAVE_TERMIOS) && defined (LDISC1)
2068 if (pty_flag && xforkin >= 0)
2070 struct termios t;
2071 tcgetattr (xforkin, &t);
2072 t.c_lflag = LDISC1;
2073 if (tcsetattr (xforkin, TCSANOW, &t) < 0)
2074 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
2076 #else
2077 #if defined (NTTYDISC) && defined (TIOCSETD)
2078 if (pty_flag && xforkin >= 0)
2080 /* Use new line discipline. */
2081 int ldisc = NTTYDISC;
2082 ioctl (xforkin, TIOCSETD, &ldisc);
2084 #endif
2085 #endif
2086 #ifdef TIOCNOTTY
2087 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
2088 can do TIOCSPGRP only to the process's controlling tty. */
2089 if (pty_flag)
2091 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
2092 I can't test it since I don't have 4.3. */
2093 int j = emacs_open ("/dev/tty", O_RDWR, 0);
2094 ioctl (j, TIOCNOTTY, 0);
2095 emacs_close (j);
2096 #ifndef USG
2097 /* In order to get a controlling terminal on some versions
2098 of BSD, it is necessary to put the process in pgrp 0
2099 before it opens the terminal. */
2100 #ifdef HAVE_SETPGID
2101 setpgid (0, 0);
2102 #else
2103 setpgrp (0, 0);
2104 #endif
2105 #endif
2107 #endif /* TIOCNOTTY */
2109 #if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
2110 /*** There is a suggestion that this ought to be a
2111 conditional on TIOCSPGRP,
2112 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
2113 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
2114 that system does seem to need this code, even though
2115 both HAVE_SETSID and TIOCSCTTY are defined. */
2116 /* Now close the pty (if we had it open) and reopen it.
2117 This makes the pty the controlling terminal of the subprocess. */
2118 if (pty_flag)
2120 #ifdef SET_CHILD_PTY_PGRP
2121 int pgrp = getpid ();
2122 #endif
2124 /* I wonder if emacs_close (emacs_open (pty_name, ...))
2125 would work? */
2126 if (xforkin >= 0)
2127 emacs_close (xforkin);
2128 xforkout = xforkin = emacs_open (pty_name, O_RDWR, 0);
2130 if (xforkin < 0)
2132 emacs_write (1, "Couldn't open the pty terminal ", 31);
2133 emacs_write (1, pty_name, strlen (pty_name));
2134 emacs_write (1, "\n", 1);
2135 _exit (1);
2138 #ifdef SET_CHILD_PTY_PGRP
2139 ioctl (xforkin, TIOCSPGRP, &pgrp);
2140 ioctl (xforkout, TIOCSPGRP, &pgrp);
2141 #endif
2143 #endif /* not UNIPLUS and not RTU and not DONT_REOPEN_PTY */
2145 #ifdef SETUP_SLAVE_PTY
2146 if (pty_flag)
2148 SETUP_SLAVE_PTY;
2150 #endif /* SETUP_SLAVE_PTY */
2151 #ifdef AIX
2152 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
2153 Now reenable it in the child, so it will die when we want it to. */
2154 if (pty_flag)
2155 signal (SIGHUP, SIG_DFL);
2156 #endif
2157 #endif /* HAVE_PTYS */
2159 signal (SIGINT, SIG_DFL);
2160 signal (SIGQUIT, SIG_DFL);
2162 /* Stop blocking signals in the child. */
2163 #ifdef POSIX_SIGNALS
2164 sigprocmask (SIG_SETMASK, &procmask, 0);
2165 #else /* !POSIX_SIGNALS */
2166 #ifdef SIGCHLD
2167 #ifdef BSD4_1
2168 sigrelse (SIGCHLD);
2169 #else /* not BSD4_1 */
2170 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
2171 sigsetmask (SIGEMPTYMASK);
2172 #else /* ordinary USG */
2173 #if 0
2174 signal (SIGCHLD, sigchld);
2175 #endif
2176 #endif /* ordinary USG */
2177 #endif /* not BSD4_1 */
2178 #endif /* SIGCHLD */
2179 #endif /* !POSIX_SIGNALS */
2181 #if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
2182 if (pty_flag)
2183 child_setup_tty (xforkout);
2184 #endif /* not RTU and not UNIPLUS and not DONT_REOPEN_PTY */
2185 #ifdef WINDOWSNT
2186 pid = child_setup (xforkin, xforkout, xforkout,
2187 new_argv, 1, current_dir);
2188 #else /* not WINDOWSNT */
2189 child_setup (xforkin, xforkout, xforkout,
2190 new_argv, 1, current_dir);
2191 #endif /* not WINDOWSNT */
2193 environ = save_environ;
2196 UNBLOCK_INPUT;
2198 /* This runs in the Emacs process. */
2199 if (pid < 0)
2201 if (forkin >= 0)
2202 emacs_close (forkin);
2203 if (forkin != forkout && forkout >= 0)
2204 emacs_close (forkout);
2206 else
2208 /* vfork succeeded. */
2209 XPROCESS (process)->pid = pid;
2211 #ifdef WINDOWSNT
2212 register_child (pid, inchannel);
2213 #endif /* WINDOWSNT */
2215 /* If the subfork execv fails, and it exits,
2216 this close hangs. I don't know why.
2217 So have an interrupt jar it loose. */
2219 struct atimer *timer;
2220 EMACS_TIME offset;
2222 stop_polling ();
2223 EMACS_SET_SECS_USECS (offset, 1, 0);
2224 timer = start_atimer (ATIMER_RELATIVE, offset, create_process_1, 0);
2226 if (forkin >= 0)
2227 emacs_close (forkin);
2229 cancel_atimer (timer);
2230 start_polling ();
2233 if (forkin != forkout && forkout >= 0)
2234 emacs_close (forkout);
2236 #ifdef HAVE_PTYS
2237 if (pty_flag)
2238 XPROCESS (process)->tty_name = build_string (pty_name);
2239 else
2240 #endif
2241 XPROCESS (process)->tty_name = Qnil;
2244 /* Restore the signal state whether vfork succeeded or not.
2245 (We will signal an error, below, if it failed.) */
2246 #ifdef POSIX_SIGNALS
2247 #ifdef HAVE_WORKING_VFORK
2248 /* Restore the parent's signal handlers. */
2249 sigaction (SIGINT, &sigint_action, 0);
2250 sigaction (SIGQUIT, &sigquit_action, 0);
2251 #ifdef AIX
2252 sigaction (SIGHUP, &sighup_action, 0);
2253 #endif
2254 #endif /* HAVE_WORKING_VFORK */
2255 /* Stop blocking signals in the parent. */
2256 sigprocmask (SIG_SETMASK, &procmask, 0);
2257 #else /* !POSIX_SIGNALS */
2258 #ifdef SIGCHLD
2259 #ifdef BSD4_1
2260 sigrelse (SIGCHLD);
2261 #else /* not BSD4_1 */
2262 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
2263 sigsetmask (SIGEMPTYMASK);
2264 #else /* ordinary USG */
2265 #if 0
2266 signal (SIGCHLD, sigchld);
2267 /* Now really handle any of these signals
2268 that came in during this function. */
2269 if (sigchld_deferred)
2270 kill (getpid (), SIGCHLD);
2271 #endif
2272 #endif /* ordinary USG */
2273 #endif /* not BSD4_1 */
2274 #endif /* SIGCHLD */
2275 #endif /* !POSIX_SIGNALS */
2277 /* Now generate the error if vfork failed. */
2278 if (pid < 0)
2279 report_file_error ("Doing vfork", Qnil);
2281 #endif /* not VMS */
2284 #ifdef HAVE_SOCKETS
2286 /* Convert an internal struct sockaddr to a lisp object (vector or string).
2287 The address family of sa is not included in the result. */
2289 static Lisp_Object
2290 conv_sockaddr_to_lisp (sa, len)
2291 struct sockaddr *sa;
2292 int len;
2294 Lisp_Object address;
2295 int i;
2296 unsigned char *cp;
2297 register struct Lisp_Vector *p;
2299 switch (sa->sa_family)
2301 case AF_INET:
2303 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2304 len = sizeof (sin->sin_addr) + 1;
2305 address = Fmake_vector (make_number (len), Qnil);
2306 p = XVECTOR (address);
2307 p->contents[--len] = make_number (ntohs (sin->sin_port));
2308 cp = (unsigned char *)&sin->sin_addr;
2309 break;
2311 #ifdef AF_INET6
2312 case AF_INET6:
2314 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
2315 uint16_t *ip6 = (uint16_t *)&sin6->sin6_addr;
2316 len = sizeof (sin6->sin6_addr)/2 + 1;
2317 address = Fmake_vector (make_number (len), Qnil);
2318 p = XVECTOR (address);
2319 p->contents[--len] = make_number (ntohs (sin6->sin6_port));
2320 for (i = 0; i < len; i++)
2321 p->contents[i] = make_number (ntohs (ip6[i]));
2322 return address;
2324 #endif
2325 #ifdef HAVE_LOCAL_SOCKETS
2326 case AF_LOCAL:
2328 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2329 for (i = 0; i < sizeof (sockun->sun_path); i++)
2330 if (sockun->sun_path[i] == 0)
2331 break;
2332 return make_unibyte_string (sockun->sun_path, i);
2334 #endif
2335 default:
2336 len -= sizeof (sa->sa_family);
2337 address = Fcons (make_number (sa->sa_family),
2338 Fmake_vector (make_number (len), Qnil));
2339 p = XVECTOR (XCDR (address));
2340 cp = (unsigned char *) sa + sizeof (sa->sa_family);
2341 break;
2344 i = 0;
2345 while (i < len)
2346 p->contents[i++] = make_number (*cp++);
2348 return address;
2352 /* Get family and required size for sockaddr structure to hold ADDRESS. */
2354 static int
2355 get_lisp_to_sockaddr_size (address, familyp)
2356 Lisp_Object address;
2357 int *familyp;
2359 register struct Lisp_Vector *p;
2361 if (VECTORP (address))
2363 p = XVECTOR (address);
2364 if (p->size == 5)
2366 *familyp = AF_INET;
2367 return sizeof (struct sockaddr_in);
2369 #ifdef AF_INET6
2370 else if (p->size == 9)
2372 *familyp = AF_INET6;
2373 return sizeof (struct sockaddr_in6);
2375 #endif
2377 #ifdef HAVE_LOCAL_SOCKETS
2378 else if (STRINGP (address))
2380 *familyp = AF_LOCAL;
2381 return sizeof (struct sockaddr_un);
2383 #endif
2384 else if (CONSP (address) && INTEGERP (XCAR (address)) && VECTORP (XCDR (address)))
2386 struct sockaddr *sa;
2387 *familyp = XINT (XCAR (address));
2388 p = XVECTOR (XCDR (address));
2389 return p->size + sizeof (sa->sa_family);
2391 return 0;
2394 /* Convert an address object (vector or string) to an internal sockaddr.
2396 The address format has been basically validated by
2397 get_lisp_to_sockaddr_size, but this does not mean FAMILY is valid;
2398 it could have come from user data. So if FAMILY is not valid,
2399 we return after zeroing *SA. */
2401 static void
2402 conv_lisp_to_sockaddr (family, address, sa, len)
2403 int family;
2404 Lisp_Object address;
2405 struct sockaddr *sa;
2406 int len;
2408 register struct Lisp_Vector *p;
2409 register unsigned char *cp = NULL;
2410 register int i;
2412 bzero (sa, len);
2414 if (VECTORP (address))
2416 p = XVECTOR (address);
2417 if (family == AF_INET)
2419 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2420 len = sizeof (sin->sin_addr) + 1;
2421 i = XINT (p->contents[--len]);
2422 sin->sin_port = htons (i);
2423 cp = (unsigned char *)&sin->sin_addr;
2424 sa->sa_family = family;
2426 #ifdef AF_INET6
2427 else if (family == AF_INET6)
2429 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
2430 uint16_t *ip6 = (uint16_t *)&sin6->sin6_addr;
2431 len = sizeof (sin6->sin6_addr) + 1;
2432 i = XINT (p->contents[--len]);
2433 sin6->sin6_port = htons (i);
2434 for (i = 0; i < len; i++)
2435 if (INTEGERP (p->contents[i]))
2437 int j = XFASTINT (p->contents[i]) & 0xffff;
2438 ip6[i] = ntohs (j);
2440 sa->sa_family = family;
2442 #endif
2443 return;
2445 else if (STRINGP (address))
2447 #ifdef HAVE_LOCAL_SOCKETS
2448 if (family == AF_LOCAL)
2450 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2451 cp = SDATA (address);
2452 for (i = 0; i < sizeof (sockun->sun_path) && *cp; i++)
2453 sockun->sun_path[i] = *cp++;
2454 sa->sa_family = family;
2456 #endif
2457 return;
2459 else
2461 p = XVECTOR (XCDR (address));
2462 cp = (unsigned char *)sa + sizeof (sa->sa_family);
2465 for (i = 0; i < len; i++)
2466 if (INTEGERP (p->contents[i]))
2467 *cp++ = XFASTINT (p->contents[i]) & 0xff;
2470 #ifdef DATAGRAM_SOCKETS
2471 DEFUN ("process-datagram-address", Fprocess_datagram_address, Sprocess_datagram_address,
2472 1, 1, 0,
2473 doc: /* Get the current datagram address associated with PROCESS. */)
2474 (process)
2475 Lisp_Object process;
2477 int channel;
2479 CHECK_PROCESS (process);
2481 if (!DATAGRAM_CONN_P (process))
2482 return Qnil;
2484 channel = XPROCESS (process)->infd;
2485 return conv_sockaddr_to_lisp (datagram_address[channel].sa,
2486 datagram_address[channel].len);
2489 DEFUN ("set-process-datagram-address", Fset_process_datagram_address, Sset_process_datagram_address,
2490 2, 2, 0,
2491 doc: /* Set the datagram address for PROCESS to ADDRESS.
2492 Returns nil upon error setting address, ADDRESS otherwise. */)
2493 (process, address)
2494 Lisp_Object process, address;
2496 int channel;
2497 int family, len;
2499 CHECK_PROCESS (process);
2501 if (!DATAGRAM_CONN_P (process))
2502 return Qnil;
2504 channel = XPROCESS (process)->infd;
2506 len = get_lisp_to_sockaddr_size (address, &family);
2507 if (datagram_address[channel].len != len)
2508 return Qnil;
2509 conv_lisp_to_sockaddr (family, address, datagram_address[channel].sa, len);
2510 return address;
2512 #endif
2515 static struct socket_options {
2516 /* The name of this option. Should be lowercase version of option
2517 name without SO_ prefix. */
2518 char *name;
2519 /* Option level SOL_... */
2520 int optlevel;
2521 /* Option number SO_... */
2522 int optnum;
2523 enum { SOPT_UNKNOWN, SOPT_BOOL, SOPT_INT, SOPT_IFNAME, SOPT_LINGER } opttype;
2524 enum { OPIX_NONE=0, OPIX_MISC=1, OPIX_REUSEADDR=2 } optbit;
2525 } socket_options[] =
2527 #ifdef SO_BINDTODEVICE
2528 { ":bindtodevice", SOL_SOCKET, SO_BINDTODEVICE, SOPT_IFNAME, OPIX_MISC },
2529 #endif
2530 #ifdef SO_BROADCAST
2531 { ":broadcast", SOL_SOCKET, SO_BROADCAST, SOPT_BOOL, OPIX_MISC },
2532 #endif
2533 #ifdef SO_DONTROUTE
2534 { ":dontroute", SOL_SOCKET, SO_DONTROUTE, SOPT_BOOL, OPIX_MISC },
2535 #endif
2536 #ifdef SO_KEEPALIVE
2537 { ":keepalive", SOL_SOCKET, SO_KEEPALIVE, SOPT_BOOL, OPIX_MISC },
2538 #endif
2539 #ifdef SO_LINGER
2540 { ":linger", SOL_SOCKET, SO_LINGER, SOPT_LINGER, OPIX_MISC },
2541 #endif
2542 #ifdef SO_OOBINLINE
2543 { ":oobinline", SOL_SOCKET, SO_OOBINLINE, SOPT_BOOL, OPIX_MISC },
2544 #endif
2545 #ifdef SO_PRIORITY
2546 { ":priority", SOL_SOCKET, SO_PRIORITY, SOPT_INT, OPIX_MISC },
2547 #endif
2548 #ifdef SO_REUSEADDR
2549 { ":reuseaddr", SOL_SOCKET, SO_REUSEADDR, SOPT_BOOL, OPIX_REUSEADDR },
2550 #endif
2551 { 0, 0, 0, SOPT_UNKNOWN, OPIX_NONE }
2554 /* Set option OPT to value VAL on socket S.
2556 Returns (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
2557 Signals an error if setting a known option fails.
2560 static int
2561 set_socket_option (s, opt, val)
2562 int s;
2563 Lisp_Object opt, val;
2565 char *name;
2566 struct socket_options *sopt;
2567 int ret = 0;
2569 CHECK_SYMBOL (opt);
2571 name = (char *) SDATA (SYMBOL_NAME (opt));
2572 for (sopt = socket_options; sopt->name; sopt++)
2573 if (strcmp (name, sopt->name) == 0)
2574 break;
2576 switch (sopt->opttype)
2578 case SOPT_BOOL:
2580 int optval;
2581 optval = NILP (val) ? 0 : 1;
2582 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2583 &optval, sizeof (optval));
2584 break;
2587 case SOPT_INT:
2589 int optval;
2590 if (INTEGERP (val))
2591 optval = XINT (val);
2592 else
2593 error ("Bad option value for %s", name);
2594 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2595 &optval, sizeof (optval));
2596 break;
2599 #ifdef SO_BINDTODEVICE
2600 case SOPT_IFNAME:
2602 char devname[IFNAMSIZ+1];
2604 /* This is broken, at least in the Linux 2.4 kernel.
2605 To unbind, the arg must be a zero integer, not the empty string.
2606 This should work on all systems. KFS. 2003-09-23. */
2607 bzero (devname, sizeof devname);
2608 if (STRINGP (val))
2610 char *arg = (char *) SDATA (val);
2611 int len = min (strlen (arg), IFNAMSIZ);
2612 bcopy (arg, devname, len);
2614 else if (!NILP (val))
2615 error ("Bad option value for %s", name);
2616 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2617 devname, IFNAMSIZ);
2618 break;
2620 #endif
2622 #ifdef SO_LINGER
2623 case SOPT_LINGER:
2625 struct linger linger;
2627 linger.l_onoff = 1;
2628 linger.l_linger = 0;
2629 if (INTEGERP (val))
2630 linger.l_linger = XINT (val);
2631 else
2632 linger.l_onoff = NILP (val) ? 0 : 1;
2633 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2634 &linger, sizeof (linger));
2635 break;
2637 #endif
2639 default:
2640 return 0;
2643 if (ret < 0)
2644 report_file_error ("Cannot set network option",
2645 Fcons (opt, Fcons (val, Qnil)));
2646 return (1 << sopt->optbit);
2650 DEFUN ("set-network-process-option",
2651 Fset_network_process_option, Sset_network_process_option,
2652 3, 4, 0,
2653 doc: /* For network process PROCESS set option OPTION to value VALUE.
2654 See `make-network-process' for a list of options and values.
2655 If optional fourth arg NO-ERROR is non-nil, don't signal an error if
2656 OPTION is not a supported option, return nil instead; otherwise return t. */)
2657 (process, option, value, no_error)
2658 Lisp_Object process, option, value;
2659 Lisp_Object no_error;
2661 int s;
2662 struct Lisp_Process *p;
2664 CHECK_PROCESS (process);
2665 p = XPROCESS (process);
2666 if (!NETCONN1_P (p))
2667 error ("Process is not a network process");
2669 s = p->infd;
2670 if (s < 0)
2671 error ("Process is not running");
2673 if (set_socket_option (s, option, value))
2675 p->childp = Fplist_put (p->childp, option, value);
2676 return Qt;
2679 if (NILP (no_error))
2680 error ("Unknown or unsupported option");
2682 return Qnil;
2686 /* A version of request_sigio suitable for a record_unwind_protect. */
2688 static Lisp_Object
2689 unwind_request_sigio (dummy)
2690 Lisp_Object dummy;
2692 if (interrupt_input)
2693 request_sigio ();
2694 return Qnil;
2697 /* Create a network stream/datagram client/server process. Treated
2698 exactly like a normal process when reading and writing. Primary
2699 differences are in status display and process deletion. A network
2700 connection has no PID; you cannot signal it. All you can do is
2701 stop/continue it and deactivate/close it via delete-process */
2703 DEFUN ("make-network-process", Fmake_network_process, Smake_network_process,
2704 0, MANY, 0,
2705 doc: /* Create and return a network server or client process.
2707 In Emacs, network connections are represented by process objects, so
2708 input and output work as for subprocesses and `delete-process' closes
2709 a network connection. However, a network process has no process id,
2710 it cannot be signaled, and the status codes are different from normal
2711 processes.
2713 Arguments are specified as keyword/argument pairs. The following
2714 arguments are defined:
2716 :name NAME -- NAME is name for process. It is modified if necessary
2717 to make it unique.
2719 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2720 with the process. Process output goes at end of that buffer, unless
2721 you specify an output stream or filter function to handle the output.
2722 BUFFER may be also nil, meaning that this process is not associated
2723 with any buffer.
2725 :host HOST -- HOST is name of the host to connect to, or its IP
2726 address. The symbol `local' specifies the local host. If specified
2727 for a server process, it must be a valid name or address for the local
2728 host, and only clients connecting to that address will be accepted.
2730 :service SERVICE -- SERVICE is name of the service desired, or an
2731 integer specifying a port number to connect to. If SERVICE is t,
2732 a random port number is selected for the server.
2734 :type TYPE -- TYPE is the type of connection. The default (nil) is a
2735 stream type connection, `datagram' creates a datagram type connection.
2737 :family FAMILY -- FAMILY is the address (and protocol) family for the
2738 service specified by HOST and SERVICE. The default (nil) is to use
2739 whatever address family (IPv4 or IPv6) that is defined for the host
2740 and port number specified by HOST and SERVICE. Other address families
2741 supported are:
2742 local -- for a local (i.e. UNIX) address specified by SERVICE.
2743 ipv4 -- use IPv4 address family only.
2744 ipv6 -- use IPv6 address family only.
2746 :local ADDRESS -- ADDRESS is the local address used for the connection.
2747 This parameter is ignored when opening a client process. When specified
2748 for a server process, the FAMILY, HOST and SERVICE args are ignored.
2750 :remote ADDRESS -- ADDRESS is the remote partner's address for the
2751 connection. This parameter is ignored when opening a stream server
2752 process. For a datagram server process, it specifies the initial
2753 setting of the remote datagram address. When specified for a client
2754 process, the FAMILY, HOST, and SERVICE args are ignored.
2756 The format of ADDRESS depends on the address family:
2757 - An IPv4 address is represented as an vector of integers [A B C D P]
2758 corresponding to numeric IP address A.B.C.D and port number P.
2759 - A local address is represented as a string with the address in the
2760 local address space.
2761 - An "unsupported family" address is represented by a cons (F . AV)
2762 where F is the family number and AV is a vector containing the socket
2763 address data with one element per address data byte. Do not rely on
2764 this format in portable code, as it may depend on implementation
2765 defined constants, data sizes, and data structure alignment.
2767 :coding CODING -- If CODING is a symbol, it specifies the coding
2768 system used for both reading and writing for this process. If CODING
2769 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2770 ENCODING is used for writing.
2772 :nowait BOOL -- If BOOL is non-nil for a stream type client process,
2773 return without waiting for the connection to complete; instead, the
2774 sentinel function will be called with second arg matching "open" (if
2775 successful) or "failed" when the connect completes. Default is to use
2776 a blocking connect (i.e. wait) for stream type connections.
2778 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
2779 running when Emacs is exited.
2781 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
2782 In the stopped state, a server process does not accept new
2783 connections, and a client process does not handle incoming traffic.
2784 The stopped state is cleared by `continue-process' and set by
2785 `stop-process'.
2787 :filter FILTER -- Install FILTER as the process filter.
2789 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
2790 process filter are multibyte, otherwise they are unibyte.
2791 If this keyword is not specified, the strings are multibyte iff
2792 `default-enable-multibyte-characters' is non-nil.
2794 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2796 :log LOG -- Install LOG as the server process log function. This
2797 function is called when the server accepts a network connection from a
2798 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
2799 is the server process, CLIENT is the new process for the connection,
2800 and MESSAGE is a string.
2802 :plist PLIST -- Install PLIST as the new process' initial plist.
2804 :server QLEN -- if QLEN is non-nil, create a server process for the
2805 specified FAMILY, SERVICE, and connection type (stream or datagram).
2806 If QLEN is an integer, it is used as the max. length of the server's
2807 pending connection queue (also known as the backlog); the default
2808 queue length is 5. Default is to create a client process.
2810 The following network options can be specified for this connection:
2812 :broadcast BOOL -- Allow send and receive of datagram broadcasts.
2813 :dontroute BOOL -- Only send to directly connected hosts.
2814 :keepalive BOOL -- Send keep-alive messages on network stream.
2815 :linger BOOL or TIMEOUT -- Send queued messages before closing.
2816 :oobinline BOOL -- Place out-of-band data in receive data stream.
2817 :priority INT -- Set protocol defined priority for sent packets.
2818 :reuseaddr BOOL -- Allow reusing a recently used local address
2819 (this is allowed by default for a server process).
2820 :bindtodevice NAME -- bind to interface NAME. Using this may require
2821 special privileges on some systems.
2823 Consult the relevant system programmer's manual pages for more
2824 information on using these options.
2827 A server process will listen for and accept connections from clients.
2828 When a client connection is accepted, a new network process is created
2829 for the connection with the following parameters:
2831 - The client's process name is constructed by concatenating the server
2832 process' NAME and a client identification string.
2833 - If the FILTER argument is non-nil, the client process will not get a
2834 separate process buffer; otherwise, the client's process buffer is a newly
2835 created buffer named after the server process' BUFFER name or process
2836 NAME concatenated with the client identification string.
2837 - The connection type and the process filter and sentinel parameters are
2838 inherited from the server process' TYPE, FILTER and SENTINEL.
2839 - The client process' contact info is set according to the client's
2840 addressing information (typically an IP address and a port number).
2841 - The client process' plist is initialized from the server's plist.
2843 Notice that the FILTER and SENTINEL args are never used directly by
2844 the server process. Also, the BUFFER argument is not used directly by
2845 the server process, but via the optional :log function, accepted (and
2846 failed) connections may be logged in the server process' buffer.
2848 The original argument list, modified with the actual connection
2849 information, is available via the `process-contact' function.
2851 usage: (make-network-process &rest ARGS) */)
2852 (nargs, args)
2853 int nargs;
2854 Lisp_Object *args;
2856 Lisp_Object proc;
2857 Lisp_Object contact;
2858 struct Lisp_Process *p;
2859 #ifdef HAVE_GETADDRINFO
2860 struct addrinfo ai, *res, *lres;
2861 struct addrinfo hints;
2862 char *portstring, portbuf[128];
2863 #else /* HAVE_GETADDRINFO */
2864 struct _emacs_addrinfo
2866 int ai_family;
2867 int ai_socktype;
2868 int ai_protocol;
2869 int ai_addrlen;
2870 struct sockaddr *ai_addr;
2871 struct _emacs_addrinfo *ai_next;
2872 } ai, *res, *lres;
2873 #endif /* HAVE_GETADDRINFO */
2874 struct sockaddr_in address_in;
2875 #ifdef HAVE_LOCAL_SOCKETS
2876 struct sockaddr_un address_un;
2877 #endif
2878 int port;
2879 int ret = 0;
2880 int xerrno = 0;
2881 int s = -1, outch, inch;
2882 struct gcpro gcpro1;
2883 int count = SPECPDL_INDEX ();
2884 int count1;
2885 Lisp_Object QCaddress; /* one of QClocal or QCremote */
2886 Lisp_Object tem;
2887 Lisp_Object name, buffer, host, service, address;
2888 Lisp_Object filter, sentinel;
2889 int is_non_blocking_client = 0;
2890 int is_server = 0, backlog = 5;
2891 int socktype;
2892 int family = -1;
2894 if (nargs == 0)
2895 return Qnil;
2897 /* Save arguments for process-contact and clone-process. */
2898 contact = Flist (nargs, args);
2899 GCPRO1 (contact);
2901 #ifdef WINDOWSNT
2902 /* Ensure socket support is loaded if available. */
2903 init_winsock (TRUE);
2904 #endif
2906 /* :type TYPE (nil: stream, datagram */
2907 tem = Fplist_get (contact, QCtype);
2908 if (NILP (tem))
2909 socktype = SOCK_STREAM;
2910 #ifdef DATAGRAM_SOCKETS
2911 else if (EQ (tem, Qdatagram))
2912 socktype = SOCK_DGRAM;
2913 #endif
2914 else
2915 error ("Unsupported connection type");
2917 /* :server BOOL */
2918 tem = Fplist_get (contact, QCserver);
2919 if (!NILP (tem))
2921 /* Don't support network sockets when non-blocking mode is
2922 not available, since a blocked Emacs is not useful. */
2923 #if defined(TERM) || (!defined(O_NONBLOCK) && !defined(O_NDELAY))
2924 error ("Network servers not supported");
2925 #else
2926 is_server = 1;
2927 if (INTEGERP (tem))
2928 backlog = XINT (tem);
2929 #endif
2932 /* Make QCaddress an alias for :local (server) or :remote (client). */
2933 QCaddress = is_server ? QClocal : QCremote;
2935 /* :nowait BOOL */
2936 if (!is_server && socktype == SOCK_STREAM
2937 && (tem = Fplist_get (contact, QCnowait), !NILP (tem)))
2939 #ifndef NON_BLOCKING_CONNECT
2940 error ("Non-blocking connect not supported");
2941 #else
2942 is_non_blocking_client = 1;
2943 #endif
2946 name = Fplist_get (contact, QCname);
2947 buffer = Fplist_get (contact, QCbuffer);
2948 filter = Fplist_get (contact, QCfilter);
2949 sentinel = Fplist_get (contact, QCsentinel);
2951 CHECK_STRING (name);
2953 #ifdef TERM
2954 /* Let's handle TERM before things get complicated ... */
2955 host = Fplist_get (contact, QChost);
2956 CHECK_STRING (host);
2958 service = Fplist_get (contact, QCservice);
2959 if (INTEGERP (service))
2960 port = htons ((unsigned short) XINT (service));
2961 else
2963 struct servent *svc_info;
2964 CHECK_STRING (service);
2965 svc_info = getservbyname (SDATA (service), "tcp");
2966 if (svc_info == 0)
2967 error ("Unknown service: %s", SDATA (service));
2968 port = svc_info->s_port;
2971 s = connect_server (0);
2972 if (s < 0)
2973 report_file_error ("error creating socket", Fcons (name, Qnil));
2974 send_command (s, C_PORT, 0, "%s:%d", SDATA (host), ntohs (port));
2975 send_command (s, C_DUMB, 1, 0);
2977 #else /* not TERM */
2979 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
2980 ai.ai_socktype = socktype;
2981 ai.ai_protocol = 0;
2982 ai.ai_next = NULL;
2983 res = &ai;
2985 /* :local ADDRESS or :remote ADDRESS */
2986 address = Fplist_get (contact, QCaddress);
2987 if (!NILP (address))
2989 host = service = Qnil;
2991 if (!(ai.ai_addrlen = get_lisp_to_sockaddr_size (address, &family)))
2992 error ("Malformed :address");
2993 ai.ai_family = family;
2994 ai.ai_addr = alloca (ai.ai_addrlen);
2995 conv_lisp_to_sockaddr (family, address, ai.ai_addr, ai.ai_addrlen);
2996 goto open_socket;
2999 /* :family FAMILY -- nil (for Inet), local, or integer. */
3000 tem = Fplist_get (contact, QCfamily);
3001 if (NILP (tem))
3003 #if defined(HAVE_GETADDRINFO) && defined(AF_INET6)
3004 family = AF_UNSPEC;
3005 #else
3006 family = AF_INET;
3007 #endif
3009 #ifdef HAVE_LOCAL_SOCKETS
3010 else if (EQ (tem, Qlocal))
3011 family = AF_LOCAL;
3012 #endif
3013 #ifdef AF_INET6
3014 else if (EQ (tem, Qipv6))
3015 family = AF_INET6;
3016 #endif
3017 else if (EQ (tem, Qipv4))
3018 family = AF_INET;
3019 else if (INTEGERP (tem))
3020 family = XINT (tem);
3021 else
3022 error ("Unknown address family");
3024 ai.ai_family = family;
3026 /* :service SERVICE -- string, integer (port number), or t (random port). */
3027 service = Fplist_get (contact, QCservice);
3029 #ifdef HAVE_LOCAL_SOCKETS
3030 if (family == AF_LOCAL)
3032 /* Host is not used. */
3033 host = Qnil;
3034 CHECK_STRING (service);
3035 bzero (&address_un, sizeof address_un);
3036 address_un.sun_family = AF_LOCAL;
3037 strncpy (address_un.sun_path, SDATA (service), sizeof address_un.sun_path);
3038 ai.ai_addr = (struct sockaddr *) &address_un;
3039 ai.ai_addrlen = sizeof address_un;
3040 goto open_socket;
3042 #endif
3044 /* :host HOST -- hostname, ip address, or 'local for localhost. */
3045 host = Fplist_get (contact, QChost);
3046 if (!NILP (host))
3048 if (EQ (host, Qlocal))
3049 host = build_string ("localhost");
3050 CHECK_STRING (host);
3053 /* Slow down polling to every ten seconds.
3054 Some kernels have a bug which causes retrying connect to fail
3055 after a connect. Polling can interfere with gethostbyname too. */
3056 #ifdef POLL_FOR_INPUT
3057 if (socktype == SOCK_STREAM)
3059 record_unwind_protect (unwind_stop_other_atimers, Qnil);
3060 bind_polling_period (10);
3062 #endif
3064 #ifdef HAVE_GETADDRINFO
3065 /* If we have a host, use getaddrinfo to resolve both host and service.
3066 Otherwise, use getservbyname to lookup the service. */
3067 if (!NILP (host))
3070 /* SERVICE can either be a string or int.
3071 Convert to a C string for later use by getaddrinfo. */
3072 if (EQ (service, Qt))
3073 portstring = "0";
3074 else if (INTEGERP (service))
3076 sprintf (portbuf, "%ld", (long) XINT (service));
3077 portstring = portbuf;
3079 else
3081 CHECK_STRING (service);
3082 portstring = SDATA (service);
3085 immediate_quit = 1;
3086 QUIT;
3087 memset (&hints, 0, sizeof (hints));
3088 hints.ai_flags = 0;
3089 hints.ai_family = family;
3090 hints.ai_socktype = socktype;
3091 hints.ai_protocol = 0;
3092 ret = getaddrinfo (SDATA (host), portstring, &hints, &res);
3093 if (ret)
3094 #ifdef HAVE_GAI_STRERROR
3095 error ("%s/%s %s", SDATA (host), portstring, gai_strerror(ret));
3096 #else
3097 error ("%s/%s getaddrinfo error %d", SDATA (host), portstring, ret);
3098 #endif
3099 immediate_quit = 0;
3101 goto open_socket;
3103 #endif /* HAVE_GETADDRINFO */
3105 /* We end up here if getaddrinfo is not defined, or in case no hostname
3106 has been specified (e.g. for a local server process). */
3108 if (EQ (service, Qt))
3109 port = 0;
3110 else if (INTEGERP (service))
3111 port = htons ((unsigned short) XINT (service));
3112 else
3114 struct servent *svc_info;
3115 CHECK_STRING (service);
3116 svc_info = getservbyname (SDATA (service),
3117 (socktype == SOCK_DGRAM ? "udp" : "tcp"));
3118 if (svc_info == 0)
3119 error ("Unknown service: %s", SDATA (service));
3120 port = svc_info->s_port;
3123 bzero (&address_in, sizeof address_in);
3124 address_in.sin_family = family;
3125 address_in.sin_addr.s_addr = INADDR_ANY;
3126 address_in.sin_port = port;
3128 #ifndef HAVE_GETADDRINFO
3129 if (!NILP (host))
3131 struct hostent *host_info_ptr;
3133 /* gethostbyname may fail with TRY_AGAIN, but we don't honour that,
3134 as it may `hang' Emacs for a very long time. */
3135 immediate_quit = 1;
3136 QUIT;
3137 host_info_ptr = gethostbyname (SDATA (host));
3138 immediate_quit = 0;
3140 if (host_info_ptr)
3142 bcopy (host_info_ptr->h_addr, (char *) &address_in.sin_addr,
3143 host_info_ptr->h_length);
3144 family = host_info_ptr->h_addrtype;
3145 address_in.sin_family = family;
3147 else
3148 /* Attempt to interpret host as numeric inet address */
3150 IN_ADDR numeric_addr;
3151 numeric_addr = inet_addr ((char *) SDATA (host));
3152 if (NUMERIC_ADDR_ERROR)
3153 error ("Unknown host \"%s\"", SDATA (host));
3155 bcopy ((char *)&numeric_addr, (char *) &address_in.sin_addr,
3156 sizeof (address_in.sin_addr));
3160 #endif /* not HAVE_GETADDRINFO */
3162 ai.ai_family = family;
3163 ai.ai_addr = (struct sockaddr *) &address_in;
3164 ai.ai_addrlen = sizeof address_in;
3166 open_socket:
3168 /* Kernel bugs (on Ultrix at least) cause lossage (not just EINTR)
3169 when connect is interrupted. So let's not let it get interrupted.
3170 Note we do not turn off polling, because polling is only used
3171 when not interrupt_input, and thus not normally used on the systems
3172 which have this bug. On systems which use polling, there's no way
3173 to quit if polling is turned off. */
3174 if (interrupt_input
3175 && !is_server && socktype == SOCK_STREAM)
3177 /* Comment from KFS: The original open-network-stream code
3178 didn't unwind protect this, but it seems like the proper
3179 thing to do. In any case, I don't see how it could harm to
3180 do this -- and it makes cleanup (using unbind_to) easier. */
3181 record_unwind_protect (unwind_request_sigio, Qnil);
3182 unrequest_sigio ();
3185 /* Do this in case we never enter the for-loop below. */
3186 count1 = SPECPDL_INDEX ();
3187 s = -1;
3189 for (lres = res; lres; lres = lres->ai_next)
3191 int optn, optbits;
3193 retry_connect:
3195 s = socket (lres->ai_family, lres->ai_socktype, lres->ai_protocol);
3196 if (s < 0)
3198 xerrno = errno;
3199 continue;
3202 #ifdef DATAGRAM_SOCKETS
3203 if (!is_server && socktype == SOCK_DGRAM)
3204 break;
3205 #endif /* DATAGRAM_SOCKETS */
3207 #ifdef NON_BLOCKING_CONNECT
3208 if (is_non_blocking_client)
3210 #ifdef O_NONBLOCK
3211 ret = fcntl (s, F_SETFL, O_NONBLOCK);
3212 #else
3213 ret = fcntl (s, F_SETFL, O_NDELAY);
3214 #endif
3215 if (ret < 0)
3217 xerrno = errno;
3218 emacs_close (s);
3219 s = -1;
3220 continue;
3223 #endif
3225 /* Make us close S if quit. */
3226 record_unwind_protect (close_file_unwind, make_number (s));
3228 /* Parse network options in the arg list.
3229 We simply ignore anything which isn't a known option (including other keywords).
3230 An error is signalled if setting a known option fails. */
3231 for (optn = optbits = 0; optn < nargs-1; optn += 2)
3232 optbits |= set_socket_option (s, args[optn], args[optn+1]);
3234 if (is_server)
3236 /* Configure as a server socket. */
3238 /* SO_REUSEADDR = 1 is default for server sockets; must specify
3239 explicit :reuseaddr key to override this. */
3240 #ifdef HAVE_LOCAL_SOCKETS
3241 if (family != AF_LOCAL)
3242 #endif
3243 if (!(optbits & (1 << OPIX_REUSEADDR)))
3245 int optval = 1;
3246 if (setsockopt (s, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof optval))
3247 report_file_error ("Cannot set reuse option on server socket", Qnil);
3250 if (bind (s, lres->ai_addr, lres->ai_addrlen))
3251 report_file_error ("Cannot bind server socket", Qnil);
3253 #ifdef HAVE_GETSOCKNAME
3254 if (EQ (service, Qt))
3256 struct sockaddr_in sa1;
3257 int len1 = sizeof (sa1);
3258 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3260 ((struct sockaddr_in *)(lres->ai_addr))->sin_port = sa1.sin_port;
3261 service = make_number (ntohs (sa1.sin_port));
3262 contact = Fplist_put (contact, QCservice, service);
3265 #endif
3267 if (socktype == SOCK_STREAM && listen (s, backlog))
3268 report_file_error ("Cannot listen on server socket", Qnil);
3270 break;
3273 immediate_quit = 1;
3274 QUIT;
3276 /* This turns off all alarm-based interrupts; the
3277 bind_polling_period call above doesn't always turn all the
3278 short-interval ones off, especially if interrupt_input is
3279 set.
3281 It'd be nice to be able to control the connect timeout
3282 though. Would non-blocking connect calls be portable?
3284 This used to be conditioned by HAVE_GETADDRINFO. Why? */
3286 turn_on_atimers (0);
3288 ret = connect (s, lres->ai_addr, lres->ai_addrlen);
3289 xerrno = errno;
3291 turn_on_atimers (1);
3293 if (ret == 0 || xerrno == EISCONN)
3295 /* The unwind-protect will be discarded afterwards.
3296 Likewise for immediate_quit. */
3297 break;
3300 #ifdef NON_BLOCKING_CONNECT
3301 #ifdef EINPROGRESS
3302 if (is_non_blocking_client && xerrno == EINPROGRESS)
3303 break;
3304 #else
3305 #ifdef EWOULDBLOCK
3306 if (is_non_blocking_client && xerrno == EWOULDBLOCK)
3307 break;
3308 #endif
3309 #endif
3310 #endif
3312 immediate_quit = 0;
3314 /* Discard the unwind protect closing S. */
3315 specpdl_ptr = specpdl + count1;
3316 emacs_close (s);
3317 s = -1;
3319 if (xerrno == EINTR)
3320 goto retry_connect;
3323 if (s >= 0)
3325 #ifdef DATAGRAM_SOCKETS
3326 if (socktype == SOCK_DGRAM)
3328 if (datagram_address[s].sa)
3329 abort ();
3330 datagram_address[s].sa = (struct sockaddr *) xmalloc (lres->ai_addrlen);
3331 datagram_address[s].len = lres->ai_addrlen;
3332 if (is_server)
3334 Lisp_Object remote;
3335 bzero (datagram_address[s].sa, lres->ai_addrlen);
3336 if (remote = Fplist_get (contact, QCremote), !NILP (remote))
3338 int rfamily, rlen;
3339 rlen = get_lisp_to_sockaddr_size (remote, &rfamily);
3340 if (rfamily == lres->ai_family && rlen == lres->ai_addrlen)
3341 conv_lisp_to_sockaddr (rfamily, remote,
3342 datagram_address[s].sa, rlen);
3345 else
3346 bcopy (lres->ai_addr, datagram_address[s].sa, lres->ai_addrlen);
3348 #endif
3349 contact = Fplist_put (contact, QCaddress,
3350 conv_sockaddr_to_lisp (lres->ai_addr, lres->ai_addrlen));
3351 #ifdef HAVE_GETSOCKNAME
3352 if (!is_server)
3354 struct sockaddr_in sa1;
3355 int len1 = sizeof (sa1);
3356 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3357 contact = Fplist_put (contact, QClocal,
3358 conv_sockaddr_to_lisp (&sa1, len1));
3360 #endif
3363 immediate_quit = 0;
3365 #ifdef HAVE_GETADDRINFO
3366 if (res != &ai)
3368 BLOCK_INPUT;
3369 freeaddrinfo (res);
3370 UNBLOCK_INPUT;
3372 #endif
3374 /* Discard the unwind protect for closing S, if any. */
3375 specpdl_ptr = specpdl + count1;
3377 /* Unwind bind_polling_period and request_sigio. */
3378 unbind_to (count, Qnil);
3380 if (s < 0)
3382 /* If non-blocking got this far - and failed - assume non-blocking is
3383 not supported after all. This is probably a wrong assumption, but
3384 the normal blocking calls to open-network-stream handles this error
3385 better. */
3386 if (is_non_blocking_client)
3387 return Qnil;
3389 errno = xerrno;
3390 if (is_server)
3391 report_file_error ("make server process failed", contact);
3392 else
3393 report_file_error ("make client process failed", contact);
3396 #endif /* not TERM */
3398 inch = s;
3399 outch = s;
3401 if (!NILP (buffer))
3402 buffer = Fget_buffer_create (buffer);
3403 proc = make_process (name);
3405 chan_process[inch] = proc;
3407 #ifdef O_NONBLOCK
3408 fcntl (inch, F_SETFL, O_NONBLOCK);
3409 #else
3410 #ifdef O_NDELAY
3411 fcntl (inch, F_SETFL, O_NDELAY);
3412 #endif
3413 #endif
3415 p = XPROCESS (proc);
3417 p->childp = contact;
3418 p->plist = Fcopy_sequence (Fplist_get (contact, QCplist));
3420 p->buffer = buffer;
3421 p->sentinel = sentinel;
3422 p->filter = filter;
3423 p->filter_multibyte = !NILP (buffer_defaults.enable_multibyte_characters);
3424 /* Override the above only if :filter-multibyte is specified. */
3425 if (! NILP (Fplist_member (contact, QCfilter_multibyte)))
3426 p->filter_multibyte = !NILP (Fplist_get (contact, QCfilter_multibyte));
3427 p->log = Fplist_get (contact, QClog);
3428 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
3429 p->kill_without_query = 1;
3430 if ((tem = Fplist_get (contact, QCstop), !NILP (tem)))
3431 p->command = Qt;
3432 p->pid = 0;
3433 p->infd = inch;
3434 p->outfd = outch;
3435 if (is_server && socktype == SOCK_STREAM)
3436 p->status = Qlisten;
3438 /* Make the process marker point into the process buffer (if any). */
3439 if (BUFFERP (buffer))
3440 set_marker_both (p->mark, buffer,
3441 BUF_ZV (XBUFFER (buffer)),
3442 BUF_ZV_BYTE (XBUFFER (buffer)));
3444 #ifdef NON_BLOCKING_CONNECT
3445 if (is_non_blocking_client)
3447 /* We may get here if connect did succeed immediately. However,
3448 in that case, we still need to signal this like a non-blocking
3449 connection. */
3450 p->status = Qconnect;
3451 if (!FD_ISSET (inch, &connect_wait_mask))
3453 FD_SET (inch, &connect_wait_mask);
3454 num_pending_connects++;
3457 else
3458 #endif
3459 /* A server may have a client filter setting of Qt, but it must
3460 still listen for incoming connects unless it is stopped. */
3461 if ((!EQ (p->filter, Qt) && !EQ (p->command, Qt))
3462 || (EQ (p->status, Qlisten) && NILP (p->command)))
3464 FD_SET (inch, &input_wait_mask);
3465 FD_SET (inch, &non_keyboard_wait_mask);
3468 if (inch > max_process_desc)
3469 max_process_desc = inch;
3471 tem = Fplist_member (contact, QCcoding);
3472 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
3473 tem = Qnil; /* No error message (too late!). */
3476 /* Setup coding systems for communicating with the network stream. */
3477 struct gcpro gcpro1;
3478 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3479 Lisp_Object coding_systems = Qt;
3480 Lisp_Object args[5], val;
3482 if (!NILP (tem))
3484 val = XCAR (XCDR (tem));
3485 if (CONSP (val))
3486 val = XCAR (val);
3488 else if (!NILP (Vcoding_system_for_read))
3489 val = Vcoding_system_for_read;
3490 else if ((!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters))
3491 || (NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters)))
3492 /* We dare not decode end-of-line format by setting VAL to
3493 Qraw_text, because the existing Emacs Lisp libraries
3494 assume that they receive bare code including a sequene of
3495 CR LF. */
3496 val = Qnil;
3497 else
3499 if (NILP (host) || NILP (service))
3500 coding_systems = Qnil;
3501 else
3503 args[0] = Qopen_network_stream, args[1] = name,
3504 args[2] = buffer, args[3] = host, args[4] = service;
3505 GCPRO1 (proc);
3506 coding_systems = Ffind_operation_coding_system (5, args);
3507 UNGCPRO;
3509 if (CONSP (coding_systems))
3510 val = XCAR (coding_systems);
3511 else if (CONSP (Vdefault_process_coding_system))
3512 val = XCAR (Vdefault_process_coding_system);
3513 else
3514 val = Qnil;
3516 p->decode_coding_system = val;
3518 if (!NILP (tem))
3520 val = XCAR (XCDR (tem));
3521 if (CONSP (val))
3522 val = XCDR (val);
3524 else if (!NILP (Vcoding_system_for_write))
3525 val = Vcoding_system_for_write;
3526 else if (NILP (current_buffer->enable_multibyte_characters))
3527 val = Qnil;
3528 else
3530 if (EQ (coding_systems, Qt))
3532 if (NILP (host) || NILP (service))
3533 coding_systems = Qnil;
3534 else
3536 args[0] = Qopen_network_stream, args[1] = name,
3537 args[2] = buffer, args[3] = host, args[4] = service;
3538 GCPRO1 (proc);
3539 coding_systems = Ffind_operation_coding_system (5, args);
3540 UNGCPRO;
3543 if (CONSP (coding_systems))
3544 val = XCDR (coding_systems);
3545 else if (CONSP (Vdefault_process_coding_system))
3546 val = XCDR (Vdefault_process_coding_system);
3547 else
3548 val = Qnil;
3550 p->encode_coding_system = val;
3552 setup_process_coding_systems (proc);
3554 p->decoding_buf = make_uninit_string (0);
3555 p->decoding_carryover = 0;
3556 p->encoding_buf = make_uninit_string (0);
3558 p->inherit_coding_system_flag
3559 = (!NILP (tem) || NILP (buffer) || !inherit_process_coding_system);
3561 UNGCPRO;
3562 return proc;
3564 #endif /* HAVE_SOCKETS */
3567 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
3569 #ifdef SIOCGIFCONF
3570 DEFUN ("network-interface-list", Fnetwork_interface_list, Snetwork_interface_list, 0, 0, 0,
3571 doc: /* Return an alist of all network interfaces and their network address.
3572 Each element is a cons, the car of which is a string containing the
3573 interface name, and the cdr is the network address in internal
3574 format; see the description of ADDRESS in `make-network-process'. */)
3577 struct ifconf ifconf;
3578 struct ifreq *ifreqs = NULL;
3579 int ifaces = 0;
3580 int buf_size, s;
3581 Lisp_Object res;
3583 s = socket (AF_INET, SOCK_STREAM, 0);
3584 if (s < 0)
3585 return Qnil;
3587 again:
3588 ifaces += 25;
3589 buf_size = ifaces * sizeof(ifreqs[0]);
3590 ifreqs = (struct ifreq *)xrealloc(ifreqs, buf_size);
3591 if (!ifreqs)
3593 close (s);
3594 return Qnil;
3597 ifconf.ifc_len = buf_size;
3598 ifconf.ifc_req = ifreqs;
3599 if (ioctl (s, SIOCGIFCONF, &ifconf))
3601 close (s);
3602 return Qnil;
3605 if (ifconf.ifc_len == buf_size)
3606 goto again;
3608 close (s);
3609 ifaces = ifconf.ifc_len / sizeof (ifreqs[0]);
3611 res = Qnil;
3612 while (--ifaces >= 0)
3614 struct ifreq *ifq = &ifreqs[ifaces];
3615 char namebuf[sizeof (ifq->ifr_name) + 1];
3616 if (ifq->ifr_addr.sa_family != AF_INET)
3617 continue;
3618 bcopy (ifq->ifr_name, namebuf, sizeof (ifq->ifr_name));
3619 namebuf[sizeof (ifq->ifr_name)] = 0;
3620 res = Fcons (Fcons (build_string (namebuf),
3621 conv_sockaddr_to_lisp (&ifq->ifr_addr,
3622 sizeof (struct sockaddr))),
3623 res);
3626 return res;
3628 #endif /* SIOCGIFCONF */
3630 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
3632 struct ifflag_def {
3633 int flag_bit;
3634 char *flag_sym;
3637 static struct ifflag_def ifflag_table[] = {
3638 #ifdef IFF_UP
3639 { IFF_UP, "up" },
3640 #endif
3641 #ifdef IFF_BROADCAST
3642 { IFF_BROADCAST, "broadcast" },
3643 #endif
3644 #ifdef IFF_DEBUG
3645 { IFF_DEBUG, "debug" },
3646 #endif
3647 #ifdef IFF_LOOPBACK
3648 { IFF_LOOPBACK, "loopback" },
3649 #endif
3650 #ifdef IFF_POINTOPOINT
3651 { IFF_POINTOPOINT, "pointopoint" },
3652 #endif
3653 #ifdef IFF_RUNNING
3654 { IFF_RUNNING, "running" },
3655 #endif
3656 #ifdef IFF_NOARP
3657 { IFF_NOARP, "noarp" },
3658 #endif
3659 #ifdef IFF_PROMISC
3660 { IFF_PROMISC, "promisc" },
3661 #endif
3662 #ifdef IFF_NOTRAILERS
3663 { IFF_NOTRAILERS, "notrailers" },
3664 #endif
3665 #ifdef IFF_ALLMULTI
3666 { IFF_ALLMULTI, "allmulti" },
3667 #endif
3668 #ifdef IFF_MASTER
3669 { IFF_MASTER, "master" },
3670 #endif
3671 #ifdef IFF_SLAVE
3672 { IFF_SLAVE, "slave" },
3673 #endif
3674 #ifdef IFF_MULTICAST
3675 { IFF_MULTICAST, "multicast" },
3676 #endif
3677 #ifdef IFF_PORTSEL
3678 { IFF_PORTSEL, "portsel" },
3679 #endif
3680 #ifdef IFF_AUTOMEDIA
3681 { IFF_AUTOMEDIA, "automedia" },
3682 #endif
3683 #ifdef IFF_DYNAMIC
3684 { IFF_DYNAMIC, "dynamic" },
3685 #endif
3686 #ifdef IFF_OACTIVE
3687 { IFF_OACTIVE, "oactive" }, /* OpenBSD: transmission in progress */
3688 #endif
3689 #ifdef IFF_SIMPLEX
3690 { IFF_SIMPLEX, "simplex" }, /* OpenBSD: can't hear own transmissions */
3691 #endif
3692 #ifdef IFF_LINK0
3693 { IFF_LINK0, "link0" }, /* OpenBSD: per link layer defined bit */
3694 #endif
3695 #ifdef IFF_LINK1
3696 { IFF_LINK1, "link1" }, /* OpenBSD: per link layer defined bit */
3697 #endif
3698 #ifdef IFF_LINK2
3699 { IFF_LINK2, "link2" }, /* OpenBSD: per link layer defined bit */
3700 #endif
3701 { 0, 0 }
3704 DEFUN ("network-interface-info", Fnetwork_interface_info, Snetwork_interface_info, 1, 1, 0,
3705 doc: /* Return information about network interface named IFNAME.
3706 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
3707 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
3708 NETMASK is the layer 3 network mask, HWADDR is the layer 2 addres, and
3709 FLAGS is the current flags of the interface. */)
3710 (ifname)
3711 Lisp_Object ifname;
3713 struct ifreq rq;
3714 Lisp_Object res = Qnil;
3715 Lisp_Object elt;
3716 int s;
3717 int any = 0;
3719 CHECK_STRING (ifname);
3721 bzero (rq.ifr_name, sizeof rq.ifr_name);
3722 strncpy (rq.ifr_name, SDATA (ifname), sizeof (rq.ifr_name));
3724 s = socket (AF_INET, SOCK_STREAM, 0);
3725 if (s < 0)
3726 return Qnil;
3728 elt = Qnil;
3729 #if defined(SIOCGIFFLAGS) && defined(HAVE_STRUCT_IFREQ_IFR_FLAGS)
3730 if (ioctl (s, SIOCGIFFLAGS, &rq) == 0)
3732 int flags = rq.ifr_flags;
3733 struct ifflag_def *fp;
3734 int fnum;
3736 any++;
3737 for (fp = ifflag_table; flags != 0 && fp->flag_sym; fp++)
3739 if (flags & fp->flag_bit)
3741 elt = Fcons (intern (fp->flag_sym), elt);
3742 flags -= fp->flag_bit;
3745 for (fnum = 0; flags && fnum < 32; fnum++)
3747 if (flags & (1 << fnum))
3749 elt = Fcons (make_number (fnum), elt);
3753 #endif
3754 res = Fcons (elt, res);
3756 elt = Qnil;
3757 #if defined(SIOCGIFHWADDR) && defined(HAVE_STRUCT_IFREQ_IFR_HWADDR)
3758 if (ioctl (s, SIOCGIFHWADDR, &rq) == 0)
3760 Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil);
3761 register struct Lisp_Vector *p = XVECTOR (hwaddr);
3762 int n;
3764 any++;
3765 for (n = 0; n < 6; n++)
3766 p->contents[n] = make_number (((unsigned char *)&rq.ifr_hwaddr.sa_data[0])[n]);
3767 elt = Fcons (make_number (rq.ifr_hwaddr.sa_family), hwaddr);
3769 #endif
3770 res = Fcons (elt, res);
3772 elt = Qnil;
3773 #if defined(SIOCGIFNETMASK) && (defined(HAVE_STRUCT_IFREQ_IFR_NETMASK) || defined(HAVE_STRUCT_IFREQ_IFR_ADDR))
3774 if (ioctl (s, SIOCGIFNETMASK, &rq) == 0)
3776 any++;
3777 #ifdef HAVE_STRUCT_IFREQ_IFR_NETMASK
3778 elt = conv_sockaddr_to_lisp (&rq.ifr_netmask, sizeof (rq.ifr_netmask));
3779 #else
3780 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
3781 #endif
3783 #endif
3784 res = Fcons (elt, res);
3786 elt = Qnil;
3787 #if defined(SIOCGIFBRDADDR) && defined(HAVE_STRUCT_IFREQ_IFR_BROADADDR)
3788 if (ioctl (s, SIOCGIFBRDADDR, &rq) == 0)
3790 any++;
3791 elt = conv_sockaddr_to_lisp (&rq.ifr_broadaddr, sizeof (rq.ifr_broadaddr));
3793 #endif
3794 res = Fcons (elt, res);
3796 elt = Qnil;
3797 #if defined(SIOCGIFADDR) && defined(HAVE_STRUCT_IFREQ_IFR_ADDR)
3798 if (ioctl (s, SIOCGIFADDR, &rq) == 0)
3800 any++;
3801 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
3803 #endif
3804 res = Fcons (elt, res);
3806 close (s);
3808 return any ? res : Qnil;
3810 #endif
3811 #endif /* HAVE_SOCKETS */
3813 /* Turn off input and output for process PROC. */
3815 void
3816 deactivate_process (proc)
3817 Lisp_Object proc;
3819 register int inchannel, outchannel;
3820 register struct Lisp_Process *p = XPROCESS (proc);
3822 inchannel = p->infd;
3823 outchannel = p->outfd;
3825 #ifdef ADAPTIVE_READ_BUFFERING
3826 if (p->read_output_delay > 0)
3828 if (--process_output_delay_count < 0)
3829 process_output_delay_count = 0;
3830 p->read_output_delay = 0;
3831 p->read_output_skip = 0;
3833 #endif
3835 if (inchannel >= 0)
3837 /* Beware SIGCHLD hereabouts. */
3838 flush_pending_output (inchannel);
3839 #ifdef VMS
3841 VMS_PROC_STUFF *get_vms_process_pointer (), *vs;
3842 sys$dassgn (outchannel);
3843 vs = get_vms_process_pointer (p->pid);
3844 if (vs)
3845 give_back_vms_process_stuff (vs);
3847 #else
3848 emacs_close (inchannel);
3849 if (outchannel >= 0 && outchannel != inchannel)
3850 emacs_close (outchannel);
3851 #endif
3853 p->infd = -1;
3854 p->outfd = -1;
3855 #ifdef DATAGRAM_SOCKETS
3856 if (DATAGRAM_CHAN_P (inchannel))
3858 xfree (datagram_address[inchannel].sa);
3859 datagram_address[inchannel].sa = 0;
3860 datagram_address[inchannel].len = 0;
3862 #endif
3863 chan_process[inchannel] = Qnil;
3864 FD_CLR (inchannel, &input_wait_mask);
3865 FD_CLR (inchannel, &non_keyboard_wait_mask);
3866 #ifdef NON_BLOCKING_CONNECT
3867 if (FD_ISSET (inchannel, &connect_wait_mask))
3869 FD_CLR (inchannel, &connect_wait_mask);
3870 if (--num_pending_connects < 0)
3871 abort ();
3873 #endif
3874 if (inchannel == max_process_desc)
3876 int i;
3877 /* We just closed the highest-numbered process input descriptor,
3878 so recompute the highest-numbered one now. */
3879 max_process_desc = 0;
3880 for (i = 0; i < MAXDESC; i++)
3881 if (!NILP (chan_process[i]))
3882 max_process_desc = i;
3887 /* Close all descriptors currently in use for communication
3888 with subprocess. This is used in a newly-forked subprocess
3889 to get rid of irrelevant descriptors. */
3891 void
3892 close_process_descs ()
3894 #ifndef WINDOWSNT
3895 int i;
3896 for (i = 0; i < MAXDESC; i++)
3898 Lisp_Object process;
3899 process = chan_process[i];
3900 if (!NILP (process))
3902 int in = XPROCESS (process)->infd;
3903 int out = XPROCESS (process)->outfd;
3904 if (in >= 0)
3905 emacs_close (in);
3906 if (out >= 0 && in != out)
3907 emacs_close (out);
3910 #endif
3913 DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
3914 0, 4, 0,
3915 doc: /* Allow any pending output from subprocesses to be read by Emacs.
3916 It is read into the process' buffers or given to their filter functions.
3917 Non-nil arg PROCESS means do not return until some output has been received
3918 from PROCESS.
3920 Non-nil second arg SECONDS and third arg MILLISEC are number of
3921 seconds and milliseconds to wait; return after that much time whether
3922 or not there is input. If SECONDS is a floating point number,
3923 it specifies a fractional number of seconds to wait.
3925 If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
3926 from PROCESS, suspending reading output from other processes.
3927 If JUST-THIS-ONE is an integer, don't run any timers either.
3928 Return non-nil iff we received any output before the timeout expired. */)
3929 (process, seconds, millisec, just_this_one)
3930 register Lisp_Object process, seconds, millisec, just_this_one;
3932 int secs, usecs = 0;
3934 if (! NILP (process))
3935 CHECK_PROCESS (process);
3936 else
3937 just_this_one = Qnil;
3939 if (!NILP (seconds))
3941 if (INTEGERP (seconds))
3942 secs = XINT (seconds);
3943 else if (FLOATP (seconds))
3945 double timeout = XFLOAT_DATA (seconds);
3946 secs = (int) timeout;
3947 usecs = (int) ((timeout - (double) secs) * 1000000);
3949 else
3950 wrong_type_argument (Qnumberp, seconds);
3952 if (INTEGERP (millisec))
3954 int carry;
3955 usecs += XINT (millisec) * 1000;
3956 carry = usecs / 1000000;
3957 secs += carry;
3958 if ((usecs -= carry * 1000000) < 0)
3960 secs--;
3961 usecs += 1000000;
3965 if (secs < 0 || (secs == 0 && usecs == 0))
3966 secs = -1, usecs = 0;
3968 else
3969 secs = NILP (process) ? -1 : 0;
3971 return
3972 (wait_reading_process_output (secs, usecs, 0, 0,
3973 Qnil,
3974 !NILP (process) ? XPROCESS (process) : NULL,
3975 NILP (just_this_one) ? 0 :
3976 !INTEGERP (just_this_one) ? 1 : -1)
3977 ? Qt : Qnil);
3980 /* Accept a connection for server process SERVER on CHANNEL. */
3982 static int connect_counter = 0;
3984 static void
3985 server_accept_connection (server, channel)
3986 Lisp_Object server;
3987 int channel;
3989 Lisp_Object proc, caller, name, buffer;
3990 Lisp_Object contact, host, service;
3991 struct Lisp_Process *ps= XPROCESS (server);
3992 struct Lisp_Process *p;
3993 int s;
3994 union u_sockaddr {
3995 struct sockaddr sa;
3996 struct sockaddr_in in;
3997 #ifdef AF_INET6
3998 struct sockaddr_in6 in6;
3999 #endif
4000 #ifdef HAVE_LOCAL_SOCKETS
4001 struct sockaddr_un un;
4002 #endif
4003 } saddr;
4004 int len = sizeof saddr;
4006 s = accept (channel, &saddr.sa, &len);
4008 if (s < 0)
4010 int code = errno;
4012 if (code == EAGAIN)
4013 return;
4014 #ifdef EWOULDBLOCK
4015 if (code == EWOULDBLOCK)
4016 return;
4017 #endif
4019 if (!NILP (ps->log))
4020 call3 (ps->log, server, Qnil,
4021 concat3 (build_string ("accept failed with code"),
4022 Fnumber_to_string (make_number (code)),
4023 build_string ("\n")));
4024 return;
4027 connect_counter++;
4029 /* Setup a new process to handle the connection. */
4031 /* Generate a unique identification of the caller, and build contact
4032 information for this process. */
4033 host = Qt;
4034 service = Qnil;
4035 switch (saddr.sa.sa_family)
4037 case AF_INET:
4039 Lisp_Object args[5];
4040 unsigned char *ip = (unsigned char *)&saddr.in.sin_addr.s_addr;
4041 args[0] = build_string ("%d.%d.%d.%d");
4042 args[1] = make_number (*ip++);
4043 args[2] = make_number (*ip++);
4044 args[3] = make_number (*ip++);
4045 args[4] = make_number (*ip++);
4046 host = Fformat (5, args);
4047 service = make_number (ntohs (saddr.in.sin_port));
4049 args[0] = build_string (" <%s:%d>");
4050 args[1] = host;
4051 args[2] = service;
4052 caller = Fformat (3, args);
4054 break;
4056 #ifdef AF_INET6
4057 case AF_INET6:
4059 Lisp_Object args[9];
4060 uint16_t *ip6 = (uint16_t *)&saddr.in6.sin6_addr;
4061 int i;
4062 args[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
4063 for (i = 0; i < 8; i++)
4064 args[i+1] = make_number (ntohs(ip6[i]));
4065 host = Fformat (9, args);
4066 service = make_number (ntohs (saddr.in.sin_port));
4068 args[0] = build_string (" <[%s]:%d>");
4069 args[1] = host;
4070 args[2] = service;
4071 caller = Fformat (3, args);
4073 break;
4074 #endif
4076 #ifdef HAVE_LOCAL_SOCKETS
4077 case AF_LOCAL:
4078 #endif
4079 default:
4080 caller = Fnumber_to_string (make_number (connect_counter));
4081 caller = concat3 (build_string (" <*"), caller, build_string ("*>"));
4082 break;
4085 /* Create a new buffer name for this process if it doesn't have a
4086 filter. The new buffer name is based on the buffer name or
4087 process name of the server process concatenated with the caller
4088 identification. */
4090 if (!NILP (ps->filter) && !EQ (ps->filter, Qt))
4091 buffer = Qnil;
4092 else
4094 buffer = ps->buffer;
4095 if (!NILP (buffer))
4096 buffer = Fbuffer_name (buffer);
4097 else
4098 buffer = ps->name;
4099 if (!NILP (buffer))
4101 buffer = concat2 (buffer, caller);
4102 buffer = Fget_buffer_create (buffer);
4106 /* Generate a unique name for the new server process. Combine the
4107 server process name with the caller identification. */
4109 name = concat2 (ps->name, caller);
4110 proc = make_process (name);
4112 chan_process[s] = proc;
4114 #ifdef O_NONBLOCK
4115 fcntl (s, F_SETFL, O_NONBLOCK);
4116 #else
4117 #ifdef O_NDELAY
4118 fcntl (s, F_SETFL, O_NDELAY);
4119 #endif
4120 #endif
4122 p = XPROCESS (proc);
4124 /* Build new contact information for this setup. */
4125 contact = Fcopy_sequence (ps->childp);
4126 contact = Fplist_put (contact, QCserver, Qnil);
4127 contact = Fplist_put (contact, QChost, host);
4128 if (!NILP (service))
4129 contact = Fplist_put (contact, QCservice, service);
4130 contact = Fplist_put (contact, QCremote,
4131 conv_sockaddr_to_lisp (&saddr.sa, len));
4132 #ifdef HAVE_GETSOCKNAME
4133 len = sizeof saddr;
4134 if (getsockname (s, &saddr.sa, &len) == 0)
4135 contact = Fplist_put (contact, QClocal,
4136 conv_sockaddr_to_lisp (&saddr.sa, len));
4137 #endif
4139 p->childp = contact;
4140 p->plist = Fcopy_sequence (ps->plist);
4142 p->buffer = buffer;
4143 p->sentinel = ps->sentinel;
4144 p->filter = ps->filter;
4145 p->command = Qnil;
4146 p->pid = 0;
4147 p->infd = s;
4148 p->outfd = s;
4149 p->status = Qrun;
4151 /* Client processes for accepted connections are not stopped initially. */
4152 if (!EQ (p->filter, Qt))
4154 FD_SET (s, &input_wait_mask);
4155 FD_SET (s, &non_keyboard_wait_mask);
4158 if (s > max_process_desc)
4159 max_process_desc = s;
4161 /* Setup coding system for new process based on server process.
4162 This seems to be the proper thing to do, as the coding system
4163 of the new process should reflect the settings at the time the
4164 server socket was opened; not the current settings. */
4166 p->decode_coding_system = ps->decode_coding_system;
4167 p->encode_coding_system = ps->encode_coding_system;
4168 setup_process_coding_systems (proc);
4170 p->decoding_buf = make_uninit_string (0);
4171 p->decoding_carryover = 0;
4172 p->encoding_buf = make_uninit_string (0);
4174 p->inherit_coding_system_flag
4175 = (NILP (buffer) ? 0 : ps->inherit_coding_system_flag);
4177 if (!NILP (ps->log))
4178 call3 (ps->log, server, proc,
4179 concat3 (build_string ("accept from "),
4180 (STRINGP (host) ? host : build_string ("-")),
4181 build_string ("\n")));
4183 if (!NILP (p->sentinel))
4184 exec_sentinel (proc,
4185 concat3 (build_string ("open from "),
4186 (STRINGP (host) ? host : build_string ("-")),
4187 build_string ("\n")));
4190 /* This variable is different from waiting_for_input in keyboard.c.
4191 It is used to communicate to a lisp process-filter/sentinel (via the
4192 function Fwaiting_for_user_input_p below) whether Emacs was waiting
4193 for user-input when that process-filter was called.
4194 waiting_for_input cannot be used as that is by definition 0 when
4195 lisp code is being evalled.
4196 This is also used in record_asynch_buffer_change.
4197 For that purpose, this must be 0
4198 when not inside wait_reading_process_output. */
4199 static int waiting_for_user_input_p;
4201 static Lisp_Object
4202 wait_reading_process_output_unwind (data)
4203 Lisp_Object data;
4205 waiting_for_user_input_p = XINT (data);
4206 return Qnil;
4209 /* This is here so breakpoints can be put on it. */
4210 static void
4211 wait_reading_process_output_1 ()
4215 /* Use a wrapper around select to work around a bug in gdb 5.3.
4216 Normally, the wrapper is optimzed away by inlining.
4218 If emacs is stopped inside select, the gdb backtrace doesn't
4219 show the function which called select, so it is practically
4220 impossible to step through wait_reading_process_output. */
4222 #ifndef select
4223 static INLINE int
4224 select_wrapper (n, rfd, wfd, xfd, tmo)
4225 int n;
4226 SELECT_TYPE *rfd, *wfd, *xfd;
4227 EMACS_TIME *tmo;
4229 return select (n, rfd, wfd, xfd, tmo);
4231 #define select select_wrapper
4232 #endif
4234 /* Read and dispose of subprocess output while waiting for timeout to
4235 elapse and/or keyboard input to be available.
4237 TIME_LIMIT is:
4238 timeout in seconds, or
4239 zero for no limit, or
4240 -1 means gobble data immediately available but don't wait for any.
4242 MICROSECS is:
4243 an additional duration to wait, measured in microseconds.
4244 If this is nonzero and time_limit is 0, then the timeout
4245 consists of MICROSECS only.
4247 READ_KBD is a lisp value:
4248 0 to ignore keyboard input, or
4249 1 to return when input is available, or
4250 -1 meaning caller will actually read the input, so don't throw to
4251 the quit handler, or
4253 DO_DISPLAY != 0 means redisplay should be done to show subprocess
4254 output that arrives.
4256 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4257 (and gobble terminal input into the buffer if any arrives).
4259 If WAIT_PROC is specified, wait until something arrives from that
4260 process. The return value is true iff we read some input from
4261 that process.
4263 If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC
4264 (suspending output from other processes). A negative value
4265 means don't run any timers either.
4267 If WAIT_PROC is specified, then the function returns true iff we
4268 received input from that process before the timeout elapsed.
4269 Otherwise, return true iff we received input from any process. */
4272 wait_reading_process_output (time_limit, microsecs, read_kbd, do_display,
4273 wait_for_cell, wait_proc, just_wait_proc)
4274 int time_limit, microsecs, read_kbd, do_display;
4275 Lisp_Object wait_for_cell;
4276 struct Lisp_Process *wait_proc;
4277 int just_wait_proc;
4279 register int channel, nfds;
4280 SELECT_TYPE Available;
4281 #ifdef NON_BLOCKING_CONNECT
4282 SELECT_TYPE Connecting;
4283 int check_connect;
4284 #endif
4285 int check_delay, no_avail;
4286 int xerrno;
4287 Lisp_Object proc;
4288 EMACS_TIME timeout, end_time;
4289 int wait_channel = -1;
4290 int got_some_input = 0;
4291 int count = SPECPDL_INDEX ();
4293 FD_ZERO (&Available);
4294 #ifdef NON_BLOCKING_CONNECT
4295 FD_ZERO (&Connecting);
4296 #endif
4298 /* If wait_proc is a process to watch, set wait_channel accordingly. */
4299 if (wait_proc != NULL)
4300 wait_channel = wait_proc->infd;
4302 record_unwind_protect (wait_reading_process_output_unwind,
4303 make_number (waiting_for_user_input_p));
4304 waiting_for_user_input_p = read_kbd;
4306 /* Since we may need to wait several times,
4307 compute the absolute time to return at. */
4308 if (time_limit || microsecs)
4310 EMACS_GET_TIME (end_time);
4311 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
4312 EMACS_ADD_TIME (end_time, end_time, timeout);
4314 #ifdef POLL_INTERRUPTED_SYS_CALL
4315 /* AlainF 5-Jul-1996
4316 HP-UX 10.10 seem to have problems with signals coming in
4317 Causes "poll: interrupted system call" messages when Emacs is run
4318 in an X window
4319 Turn off periodic alarms (in case they are in use),
4320 and then turn off any other atimers. */
4321 stop_polling ();
4322 turn_on_atimers (0);
4323 #endif /* POLL_INTERRUPTED_SYS_CALL */
4325 while (1)
4327 int timeout_reduced_for_timers = 0;
4329 /* If calling from keyboard input, do not quit
4330 since we want to return C-g as an input character.
4331 Otherwise, do pending quit if requested. */
4332 if (read_kbd >= 0)
4333 QUIT;
4334 #ifdef SYNC_INPUT
4335 else if (interrupt_input_pending)
4336 handle_async_input ();
4337 #endif
4339 /* Exit now if the cell we're waiting for became non-nil. */
4340 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4341 break;
4343 /* Compute time from now till when time limit is up */
4344 /* Exit if already run out */
4345 if (time_limit == -1)
4347 /* -1 specified for timeout means
4348 gobble output available now
4349 but don't wait at all. */
4351 EMACS_SET_SECS_USECS (timeout, 0, 0);
4353 else if (time_limit || microsecs)
4355 EMACS_GET_TIME (timeout);
4356 EMACS_SUB_TIME (timeout, end_time, timeout);
4357 if (EMACS_TIME_NEG_P (timeout))
4358 break;
4360 else
4362 EMACS_SET_SECS_USECS (timeout, 100000, 0);
4365 /* Normally we run timers here.
4366 But not if wait_for_cell; in those cases,
4367 the wait is supposed to be short,
4368 and those callers cannot handle running arbitrary Lisp code here. */
4369 if (NILP (wait_for_cell)
4370 && just_wait_proc >= 0)
4372 EMACS_TIME timer_delay;
4376 int old_timers_run = timers_run;
4377 struct buffer *old_buffer = current_buffer;
4379 timer_delay = timer_check (1);
4381 /* If a timer has run, this might have changed buffers
4382 an alike. Make read_key_sequence aware of that. */
4383 if (timers_run != old_timers_run
4384 && old_buffer != current_buffer
4385 && waiting_for_user_input_p == -1)
4386 record_asynch_buffer_change ();
4388 if (timers_run != old_timers_run && do_display)
4389 /* We must retry, since a timer may have requeued itself
4390 and that could alter the time_delay. */
4391 redisplay_preserve_echo_area (9);
4392 else
4393 break;
4395 while (!detect_input_pending ());
4397 /* If there is unread keyboard input, also return. */
4398 if (read_kbd != 0
4399 && requeued_events_pending_p ())
4400 break;
4402 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
4404 EMACS_TIME difference;
4405 EMACS_SUB_TIME (difference, timer_delay, timeout);
4406 if (EMACS_TIME_NEG_P (difference))
4408 timeout = timer_delay;
4409 timeout_reduced_for_timers = 1;
4412 /* If time_limit is -1, we are not going to wait at all. */
4413 else if (time_limit != -1)
4415 /* This is so a breakpoint can be put here. */
4416 wait_reading_process_output_1 ();
4420 /* Cause C-g and alarm signals to take immediate action,
4421 and cause input available signals to zero out timeout.
4423 It is important that we do this before checking for process
4424 activity. If we get a SIGCHLD after the explicit checks for
4425 process activity, timeout is the only way we will know. */
4426 if (read_kbd < 0)
4427 set_waiting_for_input (&timeout);
4429 /* If status of something has changed, and no input is
4430 available, notify the user of the change right away. After
4431 this explicit check, we'll let the SIGCHLD handler zap
4432 timeout to get our attention. */
4433 if (update_tick != process_tick && do_display)
4435 SELECT_TYPE Atemp;
4436 #ifdef NON_BLOCKING_CONNECT
4437 SELECT_TYPE Ctemp;
4438 #endif
4440 Atemp = input_wait_mask;
4441 #if 0
4442 /* On Mac OS X 10.0, the SELECT system call always says input is
4443 present (for reading) at stdin, even when none is. This
4444 causes the call to SELECT below to return 1 and
4445 status_notify not to be called. As a result output of
4446 subprocesses are incorrectly discarded.
4448 FD_CLR (0, &Atemp);
4449 #endif
4450 IF_NON_BLOCKING_CONNECT (Ctemp = connect_wait_mask);
4452 EMACS_SET_SECS_USECS (timeout, 0, 0);
4453 if ((select (max (max (max_process_desc, max_keyboard_desc),
4454 max_gpm_desc) + 1,
4455 &Atemp,
4456 #ifdef NON_BLOCKING_CONNECT
4457 (num_pending_connects > 0 ? &Ctemp : (SELECT_TYPE *)0),
4458 #else
4459 (SELECT_TYPE *)0,
4460 #endif
4461 (SELECT_TYPE *)0, &timeout)
4462 <= 0))
4464 /* It's okay for us to do this and then continue with
4465 the loop, since timeout has already been zeroed out. */
4466 clear_waiting_for_input ();
4467 status_notify (NULL);
4471 /* Don't wait for output from a non-running process. Just
4472 read whatever data has already been received. */
4473 if (wait_proc && wait_proc->raw_status_new)
4474 update_status (wait_proc);
4475 if (wait_proc
4476 && ! EQ (wait_proc->status, Qrun)
4477 && ! EQ (wait_proc->status, Qconnect))
4479 int nread, total_nread = 0;
4481 clear_waiting_for_input ();
4482 XSETPROCESS (proc, wait_proc);
4484 /* Read data from the process, until we exhaust it. */
4485 while (wait_proc->infd >= 0)
4487 nread = read_process_output (proc, wait_proc->infd);
4489 if (nread == 0)
4490 break;
4492 if (0 < nread)
4493 total_nread += nread;
4494 #ifdef EIO
4495 else if (nread == -1 && EIO == errno)
4496 break;
4497 #endif
4498 #ifdef EAGAIN
4499 else if (nread == -1 && EAGAIN == errno)
4500 break;
4501 #endif
4502 #ifdef EWOULDBLOCK
4503 else if (nread == -1 && EWOULDBLOCK == errno)
4504 break;
4505 #endif
4507 if (total_nread > 0 && do_display)
4508 redisplay_preserve_echo_area (10);
4510 break;
4513 /* Wait till there is something to do */
4515 if (wait_proc && just_wait_proc)
4517 if (wait_proc->infd < 0) /* Terminated */
4518 break;
4519 FD_SET (wait_proc->infd, &Available);
4520 check_delay = 0;
4521 IF_NON_BLOCKING_CONNECT (check_connect = 0);
4523 else if (!NILP (wait_for_cell))
4525 Available = non_process_wait_mask;
4526 check_delay = 0;
4527 IF_NON_BLOCKING_CONNECT (check_connect = 0);
4529 else
4531 if (! read_kbd)
4532 Available = non_keyboard_wait_mask;
4533 else
4534 Available = input_wait_mask;
4535 IF_NON_BLOCKING_CONNECT (check_connect = (num_pending_connects > 0));
4536 check_delay = wait_channel >= 0 ? 0 : process_output_delay_count;
4539 /* If frame size has changed or the window is newly mapped,
4540 redisplay now, before we start to wait. There is a race
4541 condition here; if a SIGIO arrives between now and the select
4542 and indicates that a frame is trashed, the select may block
4543 displaying a trashed screen. */
4544 if (frame_garbaged && do_display)
4546 clear_waiting_for_input ();
4547 redisplay_preserve_echo_area (11);
4548 if (read_kbd < 0)
4549 set_waiting_for_input (&timeout);
4552 no_avail = 0;
4553 if (read_kbd && detect_input_pending ())
4555 nfds = 0;
4556 no_avail = 1;
4558 else
4560 #ifdef NON_BLOCKING_CONNECT
4561 if (check_connect)
4562 Connecting = connect_wait_mask;
4563 #endif
4565 #ifdef ADAPTIVE_READ_BUFFERING
4566 /* Set the timeout for adaptive read buffering if any
4567 process has non-zero read_output_skip and non-zero
4568 read_output_delay, and we are not reading output for a
4569 specific wait_channel. It is not executed if
4570 Vprocess_adaptive_read_buffering is nil. */
4571 if (process_output_skip && check_delay > 0)
4573 int usecs = EMACS_USECS (timeout);
4574 if (EMACS_SECS (timeout) > 0 || usecs > READ_OUTPUT_DELAY_MAX)
4575 usecs = READ_OUTPUT_DELAY_MAX;
4576 for (channel = 0; check_delay > 0 && channel <= max_process_desc; channel++)
4578 proc = chan_process[channel];
4579 if (NILP (proc))
4580 continue;
4581 /* Find minimum non-zero read_output_delay among the
4582 processes with non-zero read_output_skip. */
4583 if (XPROCESS (proc)->read_output_delay > 0)
4585 check_delay--;
4586 if (!XPROCESS (proc)->read_output_skip)
4587 continue;
4588 FD_CLR (channel, &Available);
4589 XPROCESS (proc)->read_output_skip = 0;
4590 if (XPROCESS (proc)->read_output_delay < usecs)
4591 usecs = XPROCESS (proc)->read_output_delay;
4594 EMACS_SET_SECS_USECS (timeout, 0, usecs);
4595 process_output_skip = 0;
4597 #endif
4599 nfds = select (max (max (max_process_desc, max_keyboard_desc),
4600 max_gpm_desc) + 1,
4601 &Available,
4602 #ifdef NON_BLOCKING_CONNECT
4603 (check_connect ? &Connecting : (SELECT_TYPE *)0),
4604 #else
4605 (SELECT_TYPE *)0,
4606 #endif
4607 (SELECT_TYPE *)0, &timeout);
4610 xerrno = errno;
4612 /* Make C-g and alarm signals set flags again */
4613 clear_waiting_for_input ();
4615 /* If we woke up due to SIGWINCH, actually change size now. */
4616 do_pending_window_change (0);
4618 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
4619 /* We wanted the full specified time, so return now. */
4620 break;
4621 if (nfds < 0)
4623 if (xerrno == EINTR)
4624 no_avail = 1;
4625 #ifdef ultrix
4626 /* Ultrix select seems to return ENOMEM when it is
4627 interrupted. Treat it just like EINTR. Bleah. Note
4628 that we want to test for the "ultrix" CPP symbol, not
4629 "__ultrix__"; the latter is only defined under GCC, but
4630 not by DEC's bundled CC. -JimB */
4631 else if (xerrno == ENOMEM)
4632 no_avail = 1;
4633 #endif
4634 #ifdef ALLIANT
4635 /* This happens for no known reason on ALLIANT.
4636 I am guessing that this is the right response. -- RMS. */
4637 else if (xerrno == EFAULT)
4638 no_avail = 1;
4639 #endif
4640 else if (xerrno == EBADF)
4642 #ifdef AIX
4643 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
4644 the child's closure of the pts gives the parent a SIGHUP, and
4645 the ptc file descriptor is automatically closed,
4646 yielding EBADF here or at select() call above.
4647 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
4648 in m/ibmrt-aix.h), and here we just ignore the select error.
4649 Cleanup occurs c/o status_notify after SIGCLD. */
4650 no_avail = 1; /* Cannot depend on values returned */
4651 #else
4652 abort ();
4653 #endif
4655 else
4656 error ("select error: %s", emacs_strerror (xerrno));
4659 if (no_avail)
4661 FD_ZERO (&Available);
4662 IF_NON_BLOCKING_CONNECT (check_connect = 0);
4665 #if defined(sun) && !defined(USG5_4)
4666 if (nfds > 0 && keyboard_bit_set (&Available)
4667 && interrupt_input)
4668 /* System sometimes fails to deliver SIGIO.
4670 David J. Mackenzie says that Emacs doesn't compile under
4671 Solaris if this code is enabled, thus the USG5_4 in the CPP
4672 conditional. "I haven't noticed any ill effects so far.
4673 If you find a Solaris expert somewhere, they might know
4674 better." */
4675 kill (getpid (), SIGIO);
4676 #endif
4678 #if 0 /* When polling is used, interrupt_input is 0,
4679 so get_input_pending should read the input.
4680 So this should not be needed. */
4681 /* If we are using polling for input,
4682 and we see input available, make it get read now.
4683 Otherwise it might not actually get read for a second.
4684 And on hpux, since we turn off polling in wait_reading_process_output,
4685 it might never get read at all if we don't spend much time
4686 outside of wait_reading_process_output. */
4687 if (read_kbd && interrupt_input
4688 && keyboard_bit_set (&Available)
4689 && input_polling_used ())
4690 kill (getpid (), SIGALRM);
4691 #endif
4693 /* Check for keyboard input */
4694 /* If there is any, return immediately
4695 to give it higher priority than subprocesses */
4697 if (read_kbd != 0)
4699 int old_timers_run = timers_run;
4700 struct buffer *old_buffer = current_buffer;
4701 int leave = 0;
4703 if (detect_input_pending_run_timers (do_display))
4705 swallow_events (do_display);
4706 if (detect_input_pending_run_timers (do_display))
4707 leave = 1;
4710 /* If a timer has run, this might have changed buffers
4711 an alike. Make read_key_sequence aware of that. */
4712 if (timers_run != old_timers_run
4713 && waiting_for_user_input_p == -1
4714 && old_buffer != current_buffer)
4715 record_asynch_buffer_change ();
4717 if (leave)
4718 break;
4721 /* If there is unread keyboard input, also return. */
4722 if (read_kbd != 0
4723 && requeued_events_pending_p ())
4724 break;
4726 /* If we are not checking for keyboard input now,
4727 do process events (but don't run any timers).
4728 This is so that X events will be processed.
4729 Otherwise they may have to wait until polling takes place.
4730 That would causes delays in pasting selections, for example.
4732 (We used to do this only if wait_for_cell.) */
4733 if (read_kbd == 0 && detect_input_pending ())
4735 swallow_events (do_display);
4736 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
4737 if (detect_input_pending ())
4738 break;
4739 #endif
4742 /* Exit now if the cell we're waiting for became non-nil. */
4743 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4744 break;
4746 #ifdef SIGIO
4747 /* If we think we have keyboard input waiting, but didn't get SIGIO,
4748 go read it. This can happen with X on BSD after logging out.
4749 In that case, there really is no input and no SIGIO,
4750 but select says there is input. */
4752 if (read_kbd && interrupt_input
4753 && keyboard_bit_set (&Available) && ! noninteractive)
4754 kill (getpid (), SIGIO);
4755 #endif
4757 if (! wait_proc)
4758 got_some_input |= nfds > 0;
4760 /* If checking input just got us a size-change event from X,
4761 obey it now if we should. */
4762 if (read_kbd || ! NILP (wait_for_cell))
4763 do_pending_window_change (0);
4765 /* Check for data from a process. */
4766 if (no_avail || nfds == 0)
4767 continue;
4769 /* Really FIRST_PROC_DESC should be 0 on Unix,
4770 but this is safer in the short run. */
4771 for (channel = 0; channel <= max_process_desc; channel++)
4773 if (FD_ISSET (channel, &Available)
4774 && FD_ISSET (channel, &non_keyboard_wait_mask))
4776 int nread;
4778 /* If waiting for this channel, arrange to return as
4779 soon as no more input to be processed. No more
4780 waiting. */
4781 if (wait_channel == channel)
4783 wait_channel = -1;
4784 time_limit = -1;
4785 got_some_input = 1;
4787 proc = chan_process[channel];
4788 if (NILP (proc))
4789 continue;
4791 /* If this is a server stream socket, accept connection. */
4792 if (EQ (XPROCESS (proc)->status, Qlisten))
4794 server_accept_connection (proc, channel);
4795 continue;
4798 /* Read data from the process, starting with our
4799 buffered-ahead character if we have one. */
4801 nread = read_process_output (proc, channel);
4802 if (nread > 0)
4804 /* Since read_process_output can run a filter,
4805 which can call accept-process-output,
4806 don't try to read from any other processes
4807 before doing the select again. */
4808 FD_ZERO (&Available);
4810 if (do_display)
4811 redisplay_preserve_echo_area (12);
4813 #ifdef EWOULDBLOCK
4814 else if (nread == -1 && errno == EWOULDBLOCK)
4816 #endif
4817 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
4818 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
4819 #ifdef O_NONBLOCK
4820 else if (nread == -1 && errno == EAGAIN)
4822 #else
4823 #ifdef O_NDELAY
4824 else if (nread == -1 && errno == EAGAIN)
4826 /* Note that we cannot distinguish between no input
4827 available now and a closed pipe.
4828 With luck, a closed pipe will be accompanied by
4829 subprocess termination and SIGCHLD. */
4830 else if (nread == 0 && !NETCONN_P (proc))
4832 #endif /* O_NDELAY */
4833 #endif /* O_NONBLOCK */
4834 #ifdef HAVE_PTYS
4835 /* On some OSs with ptys, when the process on one end of
4836 a pty exits, the other end gets an error reading with
4837 errno = EIO instead of getting an EOF (0 bytes read).
4838 Therefore, if we get an error reading and errno =
4839 EIO, just continue, because the child process has
4840 exited and should clean itself up soon (e.g. when we
4841 get a SIGCHLD).
4843 However, it has been known to happen that the SIGCHLD
4844 got lost. So raise the signal again just in case.
4845 It can't hurt. */
4846 else if (nread == -1 && errno == EIO)
4848 /* Clear the descriptor now, so we only raise the signal once. */
4849 FD_CLR (channel, &input_wait_mask);
4850 FD_CLR (channel, &non_keyboard_wait_mask);
4852 kill (getpid (), SIGCHLD);
4854 #endif /* HAVE_PTYS */
4855 /* If we can detect process termination, don't consider the process
4856 gone just because its pipe is closed. */
4857 #ifdef SIGCHLD
4858 else if (nread == 0 && !NETCONN_P (proc))
4860 #endif
4861 else
4863 /* Preserve status of processes already terminated. */
4864 XPROCESS (proc)->tick = ++process_tick;
4865 deactivate_process (proc);
4866 if (XPROCESS (proc)->raw_status_new)
4867 update_status (XPROCESS (proc));
4868 if (EQ (XPROCESS (proc)->status, Qrun))
4869 XPROCESS (proc)->status
4870 = Fcons (Qexit, Fcons (make_number (256), Qnil));
4873 #ifdef NON_BLOCKING_CONNECT
4874 if (check_connect && FD_ISSET (channel, &Connecting)
4875 && FD_ISSET (channel, &connect_wait_mask))
4877 struct Lisp_Process *p;
4879 FD_CLR (channel, &connect_wait_mask);
4880 if (--num_pending_connects < 0)
4881 abort ();
4883 proc = chan_process[channel];
4884 if (NILP (proc))
4885 continue;
4887 p = XPROCESS (proc);
4889 #ifdef GNU_LINUX
4890 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
4891 So only use it on systems where it is known to work. */
4893 int xlen = sizeof(xerrno);
4894 if (getsockopt(channel, SOL_SOCKET, SO_ERROR, &xerrno, &xlen))
4895 xerrno = errno;
4897 #else
4899 struct sockaddr pname;
4900 int pnamelen = sizeof(pname);
4902 /* If connection failed, getpeername will fail. */
4903 xerrno = 0;
4904 if (getpeername(channel, &pname, &pnamelen) < 0)
4906 /* Obtain connect failure code through error slippage. */
4907 char dummy;
4908 xerrno = errno;
4909 if (errno == ENOTCONN && read(channel, &dummy, 1) < 0)
4910 xerrno = errno;
4913 #endif
4914 if (xerrno)
4916 p->tick = ++process_tick;
4917 p->status = Fcons (Qfailed, Fcons (make_number (xerrno), Qnil));
4918 deactivate_process (proc);
4920 else
4922 p->status = Qrun;
4923 /* Execute the sentinel here. If we had relied on
4924 status_notify to do it later, it will read input
4925 from the process before calling the sentinel. */
4926 exec_sentinel (proc, build_string ("open\n"));
4927 if (!EQ (p->filter, Qt) && !EQ (p->command, Qt))
4929 FD_SET (p->infd, &input_wait_mask);
4930 FD_SET (p->infd, &non_keyboard_wait_mask);
4934 #endif /* NON_BLOCKING_CONNECT */
4935 } /* end for each file descriptor */
4936 } /* end while exit conditions not met */
4938 unbind_to (count, Qnil);
4940 /* If calling from keyboard input, do not quit
4941 since we want to return C-g as an input character.
4942 Otherwise, do pending quit if requested. */
4943 if (read_kbd >= 0)
4945 /* Prevent input_pending from remaining set if we quit. */
4946 clear_input_pending ();
4947 QUIT;
4949 #ifdef POLL_INTERRUPTED_SYS_CALL
4950 /* AlainF 5-Jul-1996
4951 HP-UX 10.10 seems to have problems with signals coming in
4952 Causes "poll: interrupted system call" messages when Emacs is run
4953 in an X window
4954 Turn periodic alarms back on */
4955 start_polling ();
4956 #endif /* POLL_INTERRUPTED_SYS_CALL */
4958 return got_some_input;
4961 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
4963 static Lisp_Object
4964 read_process_output_call (fun_and_args)
4965 Lisp_Object fun_and_args;
4967 return apply1 (XCAR (fun_and_args), XCDR (fun_and_args));
4970 static Lisp_Object
4971 read_process_output_error_handler (error)
4972 Lisp_Object error;
4974 cmd_error_internal (error, "error in process filter: ");
4975 Vinhibit_quit = Qt;
4976 update_echo_area ();
4977 Fsleep_for (make_number (2), Qnil);
4978 return Qt;
4981 /* Read pending output from the process channel,
4982 starting with our buffered-ahead character if we have one.
4983 Yield number of decoded characters read.
4985 This function reads at most 4096 characters.
4986 If you want to read all available subprocess output,
4987 you must call it repeatedly until it returns zero.
4989 The characters read are decoded according to PROC's coding-system
4990 for decoding. */
4992 static int
4993 read_process_output (proc, channel)
4994 Lisp_Object proc;
4995 register int channel;
4997 register int nbytes;
4998 char *chars;
4999 register Lisp_Object outstream;
5000 register struct buffer *old = current_buffer;
5001 register struct Lisp_Process *p = XPROCESS (proc);
5002 register int opoint;
5003 struct coding_system *coding = proc_decode_coding_system[channel];
5004 int carryover = p->decoding_carryover;
5005 int readmax = 4096;
5007 #ifdef VMS
5008 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
5010 vs = get_vms_process_pointer (p->pid);
5011 if (vs)
5013 if (!vs->iosb[0])
5014 return (0); /* Really weird if it does this */
5015 if (!(vs->iosb[0] & 1))
5016 return -1; /* I/O error */
5018 else
5019 error ("Could not get VMS process pointer");
5020 chars = vs->inputBuffer;
5021 nbytes = clean_vms_buffer (chars, vs->iosb[1]);
5022 if (nbytes <= 0)
5024 start_vms_process_read (vs); /* Crank up the next read on the process */
5025 return 1; /* Nothing worth printing, say we got 1 */
5027 if (carryover > 0)
5029 /* The data carried over in the previous decoding (which are at
5030 the tail of decoding buffer) should be prepended to the new
5031 data read to decode all together. */
5032 chars = (char *) alloca (nbytes + carryover);
5033 bcopy (SDATA (p->decoding_buf), buf, carryover);
5034 bcopy (vs->inputBuffer, chars + carryover, nbytes);
5036 #else /* not VMS */
5038 chars = (char *) alloca (carryover + readmax);
5039 if (carryover)
5040 /* See the comment above. */
5041 bcopy (SDATA (p->decoding_buf), chars, carryover);
5043 #ifdef DATAGRAM_SOCKETS
5044 /* We have a working select, so proc_buffered_char is always -1. */
5045 if (DATAGRAM_CHAN_P (channel))
5047 int len = datagram_address[channel].len;
5048 nbytes = recvfrom (channel, chars + carryover, readmax,
5049 0, datagram_address[channel].sa, &len);
5051 else
5052 #endif
5053 if (proc_buffered_char[channel] < 0)
5055 nbytes = emacs_read (channel, chars + carryover, readmax);
5056 #ifdef ADAPTIVE_READ_BUFFERING
5057 if (nbytes > 0 && p->adaptive_read_buffering)
5059 int delay = p->read_output_delay;
5060 if (nbytes < 256)
5062 if (delay < READ_OUTPUT_DELAY_MAX_MAX)
5064 if (delay == 0)
5065 process_output_delay_count++;
5066 delay += READ_OUTPUT_DELAY_INCREMENT * 2;
5069 else if (delay > 0 && (nbytes == readmax))
5071 delay -= READ_OUTPUT_DELAY_INCREMENT;
5072 if (delay == 0)
5073 process_output_delay_count--;
5075 p->read_output_delay = delay;
5076 if (delay)
5078 p->read_output_skip = 1;
5079 process_output_skip = 1;
5082 #endif
5084 else
5086 chars[carryover] = proc_buffered_char[channel];
5087 proc_buffered_char[channel] = -1;
5088 nbytes = emacs_read (channel, chars + carryover + 1, readmax - 1);
5089 if (nbytes < 0)
5090 nbytes = 1;
5091 else
5092 nbytes = nbytes + 1;
5094 #endif /* not VMS */
5096 p->decoding_carryover = 0;
5098 /* At this point, NBYTES holds number of bytes just received
5099 (including the one in proc_buffered_char[channel]). */
5100 if (nbytes <= 0)
5102 if (nbytes < 0 || coding->mode & CODING_MODE_LAST_BLOCK)
5103 return nbytes;
5104 coding->mode |= CODING_MODE_LAST_BLOCK;
5107 /* Now set NBYTES how many bytes we must decode. */
5108 nbytes += carryover;
5110 /* Read and dispose of the process output. */
5111 outstream = p->filter;
5112 if (!NILP (outstream))
5114 /* We inhibit quit here instead of just catching it so that
5115 hitting ^G when a filter happens to be running won't screw
5116 it up. */
5117 int count = SPECPDL_INDEX ();
5118 Lisp_Object odeactivate;
5119 Lisp_Object obuffer, okeymap;
5120 Lisp_Object text;
5121 int outer_running_asynch_code = running_asynch_code;
5122 int waiting = waiting_for_user_input_p;
5124 /* No need to gcpro these, because all we do with them later
5125 is test them for EQness, and none of them should be a string. */
5126 odeactivate = Vdeactivate_mark;
5127 XSETBUFFER (obuffer, current_buffer);
5128 okeymap = current_buffer->keymap;
5130 specbind (Qinhibit_quit, Qt);
5131 specbind (Qlast_nonmenu_event, Qt);
5133 /* In case we get recursively called,
5134 and we already saved the match data nonrecursively,
5135 save the same match data in safely recursive fashion. */
5136 if (outer_running_asynch_code)
5138 Lisp_Object tem;
5139 /* Don't clobber the CURRENT match data, either! */
5140 tem = Fmatch_data (Qnil, Qnil, Qnil);
5141 restore_search_regs ();
5142 record_unwind_save_match_data ();
5143 Fset_match_data (tem, Qt);
5146 /* For speed, if a search happens within this code,
5147 save the match data in a special nonrecursive fashion. */
5148 running_asynch_code = 1;
5150 text = decode_coding_string (make_unibyte_string (chars, nbytes),
5151 coding, 0);
5152 Vlast_coding_system_used = coding->symbol;
5153 /* A new coding system might be found. */
5154 if (!EQ (p->decode_coding_system, coding->symbol))
5156 p->decode_coding_system = coding->symbol;
5158 /* Don't call setup_coding_system for
5159 proc_decode_coding_system[channel] here. It is done in
5160 detect_coding called via decode_coding above. */
5162 /* If a coding system for encoding is not yet decided, we set
5163 it as the same as coding-system for decoding.
5165 But, before doing that we must check if
5166 proc_encode_coding_system[p->outfd] surely points to a
5167 valid memory because p->outfd will be changed once EOF is
5168 sent to the process. */
5169 if (NILP (p->encode_coding_system)
5170 && proc_encode_coding_system[p->outfd])
5172 p->encode_coding_system = coding->symbol;
5173 setup_coding_system (coding->symbol,
5174 proc_encode_coding_system[p->outfd]);
5175 if (proc_encode_coding_system[p->outfd]->eol_type
5176 == CODING_EOL_UNDECIDED)
5177 proc_encode_coding_system[p->outfd]->eol_type
5178 = system_eol_type;
5182 carryover = nbytes - coding->consumed;
5183 if (carryover < 0)
5184 abort ();
5186 if (SCHARS (p->decoding_buf) < carryover)
5187 p->decoding_buf = make_uninit_string (carryover);
5188 bcopy (chars + coding->consumed, SDATA (p->decoding_buf),
5189 carryover);
5190 p->decoding_carryover = carryover;
5191 /* Adjust the multibyteness of TEXT to that of the filter. */
5192 if (p->filter_multibyte != STRING_MULTIBYTE (text))
5193 text = (STRING_MULTIBYTE (text)
5194 ? Fstring_as_unibyte (text)
5195 : Fstring_to_multibyte (text));
5196 if (SBYTES (text) > 0)
5197 internal_condition_case_1 (read_process_output_call,
5198 Fcons (outstream,
5199 Fcons (proc, Fcons (text, Qnil))),
5200 !NILP (Vdebug_on_error) ? Qnil : Qerror,
5201 read_process_output_error_handler);
5203 /* If we saved the match data nonrecursively, restore it now. */
5204 restore_search_regs ();
5205 running_asynch_code = outer_running_asynch_code;
5207 /* Handling the process output should not deactivate the mark. */
5208 Vdeactivate_mark = odeactivate;
5210 /* Restore waiting_for_user_input_p as it was
5211 when we were called, in case the filter clobbered it. */
5212 waiting_for_user_input_p = waiting;
5214 #if 0 /* Call record_asynch_buffer_change unconditionally,
5215 because we might have changed minor modes or other things
5216 that affect key bindings. */
5217 if (! EQ (Fcurrent_buffer (), obuffer)
5218 || ! EQ (current_buffer->keymap, okeymap))
5219 #endif
5220 /* But do it only if the caller is actually going to read events.
5221 Otherwise there's no need to make him wake up, and it could
5222 cause trouble (for example it would make sit_for return). */
5223 if (waiting_for_user_input_p == -1)
5224 record_asynch_buffer_change ();
5226 #ifdef VMS
5227 start_vms_process_read (vs);
5228 #endif
5229 unbind_to (count, Qnil);
5230 return nbytes;
5233 /* If no filter, write into buffer if it isn't dead. */
5234 if (!NILP (p->buffer) && !NILP (XBUFFER (p->buffer)->name))
5236 Lisp_Object old_read_only;
5237 int old_begv, old_zv;
5238 int old_begv_byte, old_zv_byte;
5239 Lisp_Object odeactivate;
5240 int before, before_byte;
5241 int opoint_byte;
5242 Lisp_Object text;
5243 struct buffer *b;
5245 odeactivate = Vdeactivate_mark;
5247 Fset_buffer (p->buffer);
5248 opoint = PT;
5249 opoint_byte = PT_BYTE;
5250 old_read_only = current_buffer->read_only;
5251 old_begv = BEGV;
5252 old_zv = ZV;
5253 old_begv_byte = BEGV_BYTE;
5254 old_zv_byte = ZV_BYTE;
5256 current_buffer->read_only = Qnil;
5258 /* Insert new output into buffer
5259 at the current end-of-output marker,
5260 thus preserving logical ordering of input and output. */
5261 if (XMARKER (p->mark)->buffer)
5262 SET_PT_BOTH (clip_to_bounds (BEGV, marker_position (p->mark), ZV),
5263 clip_to_bounds (BEGV_BYTE, marker_byte_position (p->mark),
5264 ZV_BYTE));
5265 else
5266 SET_PT_BOTH (ZV, ZV_BYTE);
5267 before = PT;
5268 before_byte = PT_BYTE;
5270 /* If the output marker is outside of the visible region, save
5271 the restriction and widen. */
5272 if (! (BEGV <= PT && PT <= ZV))
5273 Fwiden ();
5275 text = decode_coding_string (make_unibyte_string (chars, nbytes),
5276 coding, 0);
5277 Vlast_coding_system_used = coding->symbol;
5278 /* A new coding system might be found. See the comment in the
5279 similar code in the previous `if' block. */
5280 if (!EQ (p->decode_coding_system, coding->symbol))
5282 p->decode_coding_system = coding->symbol;
5283 if (NILP (p->encode_coding_system)
5284 && proc_encode_coding_system[p->outfd])
5286 p->encode_coding_system = coding->symbol;
5287 setup_coding_system (coding->symbol,
5288 proc_encode_coding_system[p->outfd]);
5289 if (proc_encode_coding_system[p->outfd]->eol_type
5290 == CODING_EOL_UNDECIDED)
5291 proc_encode_coding_system[p->outfd]->eol_type
5292 = system_eol_type;
5295 carryover = nbytes - coding->consumed;
5296 if (carryover < 0)
5297 abort ();
5299 if (SCHARS (p->decoding_buf) < carryover)
5300 p->decoding_buf = make_uninit_string (carryover);
5301 bcopy (chars + coding->consumed, SDATA (p->decoding_buf),
5302 carryover);
5303 p->decoding_carryover = carryover;
5305 /* Adjust the multibyteness of TEXT to that of the buffer. */
5306 if (NILP (current_buffer->enable_multibyte_characters)
5307 != ! STRING_MULTIBYTE (text))
5308 text = (STRING_MULTIBYTE (text)
5309 ? Fstring_as_unibyte (text)
5310 : Fstring_to_multibyte (text));
5311 /* Insert before markers in case we are inserting where
5312 the buffer's mark is, and the user's next command is Meta-y. */
5313 insert_from_string_before_markers (text, 0, 0,
5314 SCHARS (text), SBYTES (text), 0);
5316 /* Make sure the process marker's position is valid when the
5317 process buffer is changed in the signal_after_change above.
5318 W3 is known to do that. */
5319 if (BUFFERP (p->buffer)
5320 && (b = XBUFFER (p->buffer), b != current_buffer))
5321 set_marker_both (p->mark, p->buffer, BUF_PT (b), BUF_PT_BYTE (b));
5322 else
5323 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
5325 update_mode_lines++;
5327 /* Make sure opoint and the old restrictions
5328 float ahead of any new text just as point would. */
5329 if (opoint >= before)
5331 opoint += PT - before;
5332 opoint_byte += PT_BYTE - before_byte;
5334 if (old_begv > before)
5336 old_begv += PT - before;
5337 old_begv_byte += PT_BYTE - before_byte;
5339 if (old_zv >= before)
5341 old_zv += PT - before;
5342 old_zv_byte += PT_BYTE - before_byte;
5345 /* If the restriction isn't what it should be, set it. */
5346 if (old_begv != BEGV || old_zv != ZV)
5347 Fnarrow_to_region (make_number (old_begv), make_number (old_zv));
5349 /* Handling the process output should not deactivate the mark. */
5350 Vdeactivate_mark = odeactivate;
5352 current_buffer->read_only = old_read_only;
5353 SET_PT_BOTH (opoint, opoint_byte);
5354 set_buffer_internal (old);
5356 #ifdef VMS
5357 start_vms_process_read (vs);
5358 #endif
5359 return nbytes;
5362 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p,
5363 0, 0, 0,
5364 doc: /* Returns non-nil if Emacs is waiting for input from the user.
5365 This is intended for use by asynchronous process output filters and sentinels. */)
5368 return (waiting_for_user_input_p ? Qt : Qnil);
5371 /* Sending data to subprocess */
5373 jmp_buf send_process_frame;
5374 Lisp_Object process_sent_to;
5376 SIGTYPE
5377 send_process_trap ()
5379 SIGNAL_THREAD_CHECK (SIGPIPE);
5380 #ifdef BSD4_1
5381 sigrelse (SIGPIPE);
5382 sigrelse (SIGALRM);
5383 #endif /* BSD4_1 */
5384 sigunblock (sigmask (SIGPIPE));
5385 longjmp (send_process_frame, 1);
5388 /* Send some data to process PROC.
5389 BUF is the beginning of the data; LEN is the number of characters.
5390 OBJECT is the Lisp object that the data comes from. If OBJECT is
5391 nil or t, it means that the data comes from C string.
5393 If OBJECT is not nil, the data is encoded by PROC's coding-system
5394 for encoding before it is sent.
5396 This function can evaluate Lisp code and can garbage collect. */
5398 static void
5399 send_process (proc, buf, len, object)
5400 volatile Lisp_Object proc;
5401 unsigned char *volatile buf;
5402 volatile int len;
5403 volatile Lisp_Object object;
5405 /* Use volatile to protect variables from being clobbered by longjmp. */
5406 struct Lisp_Process *p = XPROCESS (proc);
5407 int rv;
5408 struct coding_system *coding;
5409 struct gcpro gcpro1;
5410 SIGTYPE (*volatile old_sigpipe) ();
5412 GCPRO1 (object);
5414 #ifdef VMS
5415 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
5416 #endif /* VMS */
5418 if (p->raw_status_new)
5419 update_status (p);
5420 if (! EQ (p->status, Qrun))
5421 error ("Process %s not running", SDATA (p->name));
5422 if (p->outfd < 0)
5423 error ("Output file descriptor of %s is closed", SDATA (p->name));
5425 coding = proc_encode_coding_system[p->outfd];
5426 Vlast_coding_system_used = coding->symbol;
5428 if ((STRINGP (object) && STRING_MULTIBYTE (object))
5429 || (BUFFERP (object)
5430 && !NILP (XBUFFER (object)->enable_multibyte_characters))
5431 || EQ (object, Qt))
5433 if (!EQ (coding->symbol, p->encode_coding_system))
5434 /* The coding system for encoding was changed to raw-text
5435 because we sent a unibyte text previously. Now we are
5436 sending a multibyte text, thus we must encode it by the
5437 original coding system specified for the current process. */
5438 setup_coding_system (p->encode_coding_system, coding);
5439 if (coding->eol_type == CODING_EOL_UNDECIDED)
5440 coding->eol_type = system_eol_type;
5441 /* src_multibyte should be set to 1 _after_ a call to
5442 setup_coding_system, since it resets src_multibyte to
5443 zero. */
5444 coding->src_multibyte = 1;
5446 else
5448 /* For sending a unibyte text, character code conversion should
5449 not take place but EOL conversion should. So, setup raw-text
5450 or one of the subsidiary if we have not yet done it. */
5451 if (coding->type != coding_type_raw_text)
5453 if (CODING_REQUIRE_FLUSHING (coding))
5455 /* But, before changing the coding, we must flush out data. */
5456 coding->mode |= CODING_MODE_LAST_BLOCK;
5457 send_process (proc, "", 0, Qt);
5459 coding->src_multibyte = 0;
5460 setup_raw_text_coding_system (coding);
5463 coding->dst_multibyte = 0;
5465 if (CODING_REQUIRE_ENCODING (coding))
5467 int require = encoding_buffer_size (coding, len);
5468 int from_byte = -1, from = -1, to = -1;
5470 if (BUFFERP (object))
5472 from_byte = BUF_PTR_BYTE_POS (XBUFFER (object), buf);
5473 from = buf_bytepos_to_charpos (XBUFFER (object), from_byte);
5474 to = buf_bytepos_to_charpos (XBUFFER (object), from_byte + len);
5476 else if (STRINGP (object))
5478 from_byte = buf - SDATA (object);
5479 from = string_byte_to_char (object, from_byte);
5480 to = string_byte_to_char (object, from_byte + len);
5483 if (coding->composing != COMPOSITION_DISABLED)
5485 if (from_byte >= 0)
5486 coding_save_composition (coding, from, to, object);
5487 else
5488 coding->composing = COMPOSITION_DISABLED;
5491 if (SBYTES (p->encoding_buf) < require)
5492 p->encoding_buf = make_uninit_string (require);
5494 if (from_byte >= 0)
5495 buf = (BUFFERP (object)
5496 ? BUF_BYTE_ADDRESS (XBUFFER (object), from_byte)
5497 : SDATA (object) + from_byte);
5499 object = p->encoding_buf;
5500 encode_coding (coding, (char *) buf, SDATA (object),
5501 len, SBYTES (object));
5502 coding_free_composition_data (coding);
5503 len = coding->produced;
5504 buf = SDATA (object);
5507 #ifdef VMS
5508 vs = get_vms_process_pointer (p->pid);
5509 if (vs == 0)
5510 error ("Could not find this process: %x", p->pid);
5511 else if (write_to_vms_process (vs, buf, len))
5513 #else /* not VMS */
5515 if (pty_max_bytes == 0)
5517 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
5518 pty_max_bytes = fpathconf (p->outfd, _PC_MAX_CANON);
5519 if (pty_max_bytes < 0)
5520 pty_max_bytes = 250;
5521 #else
5522 pty_max_bytes = 250;
5523 #endif
5524 /* Deduct one, to leave space for the eof. */
5525 pty_max_bytes--;
5528 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
5529 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
5530 when returning with longjmp despite being declared volatile. */
5531 if (!setjmp (send_process_frame))
5533 process_sent_to = proc;
5534 while (len > 0)
5536 int this = len;
5538 /* Decide how much data we can send in one batch.
5539 Long lines need to be split into multiple batches. */
5540 if (p->pty_flag)
5542 /* Starting this at zero is always correct when not the first
5543 iteration because the previous iteration ended by sending C-d.
5544 It may not be correct for the first iteration
5545 if a partial line was sent in a separate send_process call.
5546 If that proves worth handling, we need to save linepos
5547 in the process object. */
5548 int linepos = 0;
5549 unsigned char *ptr = (unsigned char *) buf;
5550 unsigned char *end = (unsigned char *) buf + len;
5552 /* Scan through this text for a line that is too long. */
5553 while (ptr != end && linepos < pty_max_bytes)
5555 if (*ptr == '\n')
5556 linepos = 0;
5557 else
5558 linepos++;
5559 ptr++;
5561 /* If we found one, break the line there
5562 and put in a C-d to force the buffer through. */
5563 this = ptr - buf;
5566 /* Send this batch, using one or more write calls. */
5567 while (this > 0)
5569 int outfd = p->outfd;
5570 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap);
5571 #ifdef DATAGRAM_SOCKETS
5572 if (DATAGRAM_CHAN_P (outfd))
5574 rv = sendto (outfd, (char *) buf, this,
5575 0, datagram_address[outfd].sa,
5576 datagram_address[outfd].len);
5577 if (rv < 0 && errno == EMSGSIZE)
5579 signal (SIGPIPE, old_sigpipe);
5580 report_file_error ("sending datagram",
5581 Fcons (proc, Qnil));
5584 else
5585 #endif
5587 rv = emacs_write (outfd, (char *) buf, this);
5588 #ifdef ADAPTIVE_READ_BUFFERING
5589 if (p->read_output_delay > 0
5590 && p->adaptive_read_buffering == 1)
5592 p->read_output_delay = 0;
5593 process_output_delay_count--;
5594 p->read_output_skip = 0;
5596 #endif
5598 signal (SIGPIPE, old_sigpipe);
5600 if (rv < 0)
5602 if (0
5603 #ifdef EWOULDBLOCK
5604 || errno == EWOULDBLOCK
5605 #endif
5606 #ifdef EAGAIN
5607 || errno == EAGAIN
5608 #endif
5610 /* Buffer is full. Wait, accepting input;
5611 that may allow the program
5612 to finish doing output and read more. */
5614 int offset = 0;
5616 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
5617 /* A gross hack to work around a bug in FreeBSD.
5618 In the following sequence, read(2) returns
5619 bogus data:
5621 write(2) 1022 bytes
5622 write(2) 954 bytes, get EAGAIN
5623 read(2) 1024 bytes in process_read_output
5624 read(2) 11 bytes in process_read_output
5626 That is, read(2) returns more bytes than have
5627 ever been written successfully. The 1033 bytes
5628 read are the 1022 bytes written successfully
5629 after processing (for example with CRs added if
5630 the terminal is set up that way which it is
5631 here). The same bytes will be seen again in a
5632 later read(2), without the CRs. */
5634 if (errno == EAGAIN)
5636 int flags = FWRITE;
5637 ioctl (p->outfd, TIOCFLUSH, &flags);
5639 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5641 /* Running filters might relocate buffers or strings.
5642 Arrange to relocate BUF. */
5643 if (BUFFERP (object))
5644 offset = BUF_PTR_BYTE_POS (XBUFFER (object), buf);
5645 else if (STRINGP (object))
5646 offset = buf - SDATA (object);
5648 #ifdef EMACS_HAS_USECS
5649 wait_reading_process_output (0, 20000, 0, 0, Qnil, NULL, 0);
5650 #else
5651 wait_reading_process_output (1, 0, 0, 0, Qnil, NULL, 0);
5652 #endif
5654 if (BUFFERP (object))
5655 buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset);
5656 else if (STRINGP (object))
5657 buf = offset + SDATA (object);
5659 rv = 0;
5661 else
5662 /* This is a real error. */
5663 report_file_error ("writing to process", Fcons (proc, Qnil));
5665 buf += rv;
5666 len -= rv;
5667 this -= rv;
5670 /* If we sent just part of the string, put in an EOF
5671 to force it through, before we send the rest. */
5672 if (len > 0)
5673 Fprocess_send_eof (proc);
5676 #endif /* not VMS */
5677 else
5679 signal (SIGPIPE, old_sigpipe);
5680 #ifndef VMS
5681 proc = process_sent_to;
5682 p = XPROCESS (proc);
5683 #endif
5684 p->raw_status_new = 0;
5685 p->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
5686 p->tick = ++process_tick;
5687 deactivate_process (proc);
5688 #ifdef VMS
5689 error ("Error writing to process %s; closed it", SDATA (p->name));
5690 #else
5691 error ("SIGPIPE raised on process %s; closed it", SDATA (p->name));
5692 #endif
5695 UNGCPRO;
5698 static Lisp_Object
5699 send_process_object_unwind (buf)
5700 Lisp_Object buf;
5702 Lisp_Object tembuf;
5704 if (XBUFFER (buf) == current_buffer)
5705 return Qnil;
5706 tembuf = Fcurrent_buffer ();
5707 Fset_buffer (buf);
5708 Fkill_buffer (tembuf);
5709 return Qnil;
5712 /* Send current contents of region between START and END to PROC.
5713 If START is a string, send it instead.
5714 This function can evaluate Lisp code and can garbage collect. */
5716 static void
5717 send_process_object (proc, start, end)
5718 Lisp_Object proc, start, end;
5720 int count = SPECPDL_INDEX ();
5721 Lisp_Object object = STRINGP (start) ? start : Fcurrent_buffer ();
5722 struct buffer *given_buffer = current_buffer;
5723 unsigned char *buf;
5724 int len;
5726 record_unwind_protect (send_process_object_unwind, Fcurrent_buffer ());
5728 if (STRINGP (object) ? STRING_MULTIBYTE (object)
5729 : ! NILP (XBUFFER (object)->enable_multibyte_characters))
5731 struct Lisp_Process *p = XPROCESS (proc);
5732 struct coding_system *coding;
5734 if (p->raw_status_new)
5735 update_status (p);
5736 if (! EQ (p->status, Qrun))
5737 error ("Process %s not running", SDATA (p->name));
5738 if (p->outfd < 0)
5739 error ("Output file descriptor of %s is closed", SDATA (p->name));
5741 coding = proc_encode_coding_system[p->outfd];
5742 if (! EQ (coding->symbol, p->encode_coding_system))
5743 /* The coding system for encoding was changed to raw-text
5744 because we sent a unibyte text previously. Now we are
5745 sending a multibyte text, thus we must encode it by the
5746 original coding system specified for the current process. */
5747 setup_coding_system (p->encode_coding_system, coding);
5748 if (! NILP (coding->pre_write_conversion))
5750 struct gcpro gcpro1, gcpro2;
5752 GCPRO2 (proc, object);
5753 call2 (coding->pre_write_conversion, start, end);
5754 UNGCPRO;
5755 if (given_buffer != current_buffer)
5757 start = make_number (BEGV), end = make_number (ZV);
5758 object = Fcurrent_buffer ();
5763 if (BUFFERP (object))
5765 EMACS_INT start_byte;
5767 if (XINT (start) < GPT && XINT (end) > GPT)
5768 move_gap (XINT (end));
5769 start_byte = CHAR_TO_BYTE (XINT (start));
5770 buf = BYTE_POS_ADDR (start_byte);
5771 len = CHAR_TO_BYTE (XINT (end)) - start_byte;
5773 else
5775 buf = SDATA (object);
5776 len = SBYTES (object);
5778 send_process (proc, buf, len, object);
5780 unbind_to (count, Qnil);
5783 DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
5784 3, 3, 0,
5785 doc: /* Send current contents of region as input to PROCESS.
5786 PROCESS may be a process, a buffer, the name of a process or buffer, or
5787 nil, indicating the current buffer's process.
5788 Called from program, takes three arguments, PROCESS, START and END.
5789 If the region is more than 500 characters long,
5790 it is sent in several bunches. This may happen even for shorter regions.
5791 Output from processes can arrive in between bunches. */)
5792 (process, start, end)
5793 Lisp_Object process, start, end;
5795 Lisp_Object proc;
5797 proc = get_process (process);
5798 validate_region (&start, &end);
5799 send_process_object (proc, start, end);
5800 return Qnil;
5803 DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
5804 2, 2, 0,
5805 doc: /* Send PROCESS the contents of STRING as input.
5806 PROCESS may be a process, a buffer, the name of a process or buffer, or
5807 nil, indicating the current buffer's process.
5808 If STRING is more than 500 characters long,
5809 it is sent in several bunches. This may happen even for shorter strings.
5810 Output from processes can arrive in between bunches. */)
5811 (process, string)
5812 Lisp_Object process, string;
5814 Lisp_Object proc;
5815 CHECK_STRING (string);
5816 proc = get_process (process);
5817 send_process_object (proc, string, Qnil);
5818 return Qnil;
5821 /* Return the foreground process group for the tty/pty that
5822 the process P uses. */
5823 static int
5824 emacs_get_tty_pgrp (p)
5825 struct Lisp_Process *p;
5827 int gid = -1;
5829 #ifdef TIOCGPGRP
5830 if (ioctl (p->infd, TIOCGPGRP, &gid) == -1 && ! NILP (p->tty_name))
5832 int fd;
5833 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
5834 master side. Try the slave side. */
5835 fd = emacs_open (XSTRING (p->tty_name)->data, O_RDONLY, 0);
5837 if (fd != -1)
5839 ioctl (fd, TIOCGPGRP, &gid);
5840 emacs_close (fd);
5843 #endif /* defined (TIOCGPGRP ) */
5845 return gid;
5848 DEFUN ("process-running-child-p", Fprocess_running_child_p,
5849 Sprocess_running_child_p, 0, 1, 0,
5850 doc: /* Return t if PROCESS has given the terminal to a child.
5851 If the operating system does not make it possible to find out,
5852 return t unconditionally. */)
5853 (process)
5854 Lisp_Object process;
5856 /* Initialize in case ioctl doesn't exist or gives an error,
5857 in a way that will cause returning t. */
5858 int gid;
5859 Lisp_Object proc;
5860 struct Lisp_Process *p;
5862 proc = get_process (process);
5863 p = XPROCESS (proc);
5865 if (!EQ (p->childp, Qt))
5866 error ("Process %s is not a subprocess",
5867 SDATA (p->name));
5868 if (p->infd < 0)
5869 error ("Process %s is not active",
5870 SDATA (p->name));
5872 gid = emacs_get_tty_pgrp (p);
5874 if (gid == p->pid)
5875 return Qnil;
5876 return Qt;
5879 /* send a signal number SIGNO to PROCESS.
5880 If CURRENT_GROUP is t, that means send to the process group
5881 that currently owns the terminal being used to communicate with PROCESS.
5882 This is used for various commands in shell mode.
5883 If CURRENT_GROUP is lambda, that means send to the process group
5884 that currently owns the terminal, but only if it is NOT the shell itself.
5886 If NOMSG is zero, insert signal-announcements into process's buffers
5887 right away.
5889 If we can, we try to signal PROCESS by sending control characters
5890 down the pty. This allows us to signal inferiors who have changed
5891 their uid, for which killpg would return an EPERM error. */
5893 static void
5894 process_send_signal (process, signo, current_group, nomsg)
5895 Lisp_Object process;
5896 int signo;
5897 Lisp_Object current_group;
5898 int nomsg;
5900 Lisp_Object proc;
5901 register struct Lisp_Process *p;
5902 int gid;
5903 int no_pgrp = 0;
5905 proc = get_process (process);
5906 p = XPROCESS (proc);
5908 if (!EQ (p->childp, Qt))
5909 error ("Process %s is not a subprocess",
5910 SDATA (p->name));
5911 if (p->infd < 0)
5912 error ("Process %s is not active",
5913 SDATA (p->name));
5915 if (!p->pty_flag)
5916 current_group = Qnil;
5918 /* If we are using pgrps, get a pgrp number and make it negative. */
5919 if (NILP (current_group))
5920 /* Send the signal to the shell's process group. */
5921 gid = p->pid;
5922 else
5924 #ifdef SIGNALS_VIA_CHARACTERS
5925 /* If possible, send signals to the entire pgrp
5926 by sending an input character to it. */
5928 /* TERMIOS is the latest and bestest, and seems most likely to
5929 work. If the system has it, use it. */
5930 #ifdef HAVE_TERMIOS
5931 struct termios t;
5932 cc_t *sig_char = NULL;
5934 tcgetattr (p->infd, &t);
5936 switch (signo)
5938 case SIGINT:
5939 sig_char = &t.c_cc[VINTR];
5940 break;
5942 case SIGQUIT:
5943 sig_char = &t.c_cc[VQUIT];
5944 break;
5946 case SIGTSTP:
5947 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
5948 sig_char = &t.c_cc[VSWTCH];
5949 #else
5950 sig_char = &t.c_cc[VSUSP];
5951 #endif
5952 break;
5955 if (sig_char && *sig_char != CDISABLE)
5957 send_process (proc, sig_char, 1, Qnil);
5958 return;
5960 /* If we can't send the signal with a character,
5961 fall through and send it another way. */
5962 #else /* ! HAVE_TERMIOS */
5964 /* On Berkeley descendants, the following IOCTL's retrieve the
5965 current control characters. */
5966 #if defined (TIOCGLTC) && defined (TIOCGETC)
5968 struct tchars c;
5969 struct ltchars lc;
5971 switch (signo)
5973 case SIGINT:
5974 ioctl (p->infd, TIOCGETC, &c);
5975 send_process (proc, &c.t_intrc, 1, Qnil);
5976 return;
5977 case SIGQUIT:
5978 ioctl (p->infd, TIOCGETC, &c);
5979 send_process (proc, &c.t_quitc, 1, Qnil);
5980 return;
5981 #ifdef SIGTSTP
5982 case SIGTSTP:
5983 ioctl (p->infd, TIOCGLTC, &lc);
5984 send_process (proc, &lc.t_suspc, 1, Qnil);
5985 return;
5986 #endif /* ! defined (SIGTSTP) */
5989 #else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
5991 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
5992 characters. */
5993 #ifdef TCGETA
5994 struct termio t;
5995 switch (signo)
5997 case SIGINT:
5998 ioctl (p->infd, TCGETA, &t);
5999 send_process (proc, &t.c_cc[VINTR], 1, Qnil);
6000 return;
6001 case SIGQUIT:
6002 ioctl (p->infd, TCGETA, &t);
6003 send_process (proc, &t.c_cc[VQUIT], 1, Qnil);
6004 return;
6005 #ifdef SIGTSTP
6006 case SIGTSTP:
6007 ioctl (p->infd, TCGETA, &t);
6008 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil);
6009 return;
6010 #endif /* ! defined (SIGTSTP) */
6012 #else /* ! defined (TCGETA) */
6013 Your configuration files are messed up.
6014 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
6015 you'd better be using one of the alternatives above! */
6016 #endif /* ! defined (TCGETA) */
6017 #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
6018 /* In this case, the code above should alway returns. */
6019 abort ();
6020 #endif /* ! defined HAVE_TERMIOS */
6022 /* The code above may fall through if it can't
6023 handle the signal. */
6024 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
6026 #ifdef TIOCGPGRP
6027 /* Get the current pgrp using the tty itself, if we have that.
6028 Otherwise, use the pty to get the pgrp.
6029 On pfa systems, saka@pfu.fujitsu.co.JP writes:
6030 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
6031 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
6032 His patch indicates that if TIOCGPGRP returns an error, then
6033 we should just assume that p->pid is also the process group id. */
6035 gid = emacs_get_tty_pgrp (p);
6037 if (gid == -1)
6038 /* If we can't get the information, assume
6039 the shell owns the tty. */
6040 gid = p->pid;
6042 /* It is not clear whether anything really can set GID to -1.
6043 Perhaps on some system one of those ioctls can or could do so.
6044 Or perhaps this is vestigial. */
6045 if (gid == -1)
6046 no_pgrp = 1;
6047 #else /* ! defined (TIOCGPGRP ) */
6048 /* Can't select pgrps on this system, so we know that
6049 the child itself heads the pgrp. */
6050 gid = p->pid;
6051 #endif /* ! defined (TIOCGPGRP ) */
6053 /* If current_group is lambda, and the shell owns the terminal,
6054 don't send any signal. */
6055 if (EQ (current_group, Qlambda) && gid == p->pid)
6056 return;
6059 switch (signo)
6061 #ifdef SIGCONT
6062 case SIGCONT:
6063 p->raw_status_new = 0;
6064 p->status = Qrun;
6065 p->tick = ++process_tick;
6066 if (!nomsg)
6067 status_notify (NULL);
6068 break;
6069 #endif /* ! defined (SIGCONT) */
6070 case SIGINT:
6071 #ifdef VMS
6072 send_process (proc, "\003", 1, Qnil); /* ^C */
6073 goto whoosh;
6074 #endif
6075 case SIGQUIT:
6076 #ifdef VMS
6077 send_process (proc, "\031", 1, Qnil); /* ^Y */
6078 goto whoosh;
6079 #endif
6080 case SIGKILL:
6081 #ifdef VMS
6082 sys$forcex (&(p->pid), 0, 1);
6083 whoosh:
6084 #endif
6085 flush_pending_output (p->infd);
6086 break;
6089 /* If we don't have process groups, send the signal to the immediate
6090 subprocess. That isn't really right, but it's better than any
6091 obvious alternative. */
6092 if (no_pgrp)
6094 kill (p->pid, signo);
6095 return;
6098 /* gid may be a pid, or minus a pgrp's number */
6099 #ifdef TIOCSIGSEND
6100 if (!NILP (current_group))
6102 if (ioctl (p->infd, TIOCSIGSEND, signo) == -1)
6103 EMACS_KILLPG (gid, signo);
6105 else
6107 gid = - p->pid;
6108 kill (gid, signo);
6110 #else /* ! defined (TIOCSIGSEND) */
6111 EMACS_KILLPG (gid, signo);
6112 #endif /* ! defined (TIOCSIGSEND) */
6115 DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
6116 doc: /* Interrupt process PROCESS.
6117 PROCESS may be a process, a buffer, or the name of a process or buffer.
6118 No arg or nil means current buffer's process.
6119 Second arg CURRENT-GROUP non-nil means send signal to
6120 the current process-group of the process's controlling terminal
6121 rather than to the process's own process group.
6122 If the process is a shell, this means interrupt current subjob
6123 rather than the shell.
6125 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
6126 don't send the signal. */)
6127 (process, current_group)
6128 Lisp_Object process, current_group;
6130 process_send_signal (process, SIGINT, current_group, 0);
6131 return process;
6134 DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
6135 doc: /* Kill process PROCESS. May be process or name of one.
6136 See function `interrupt-process' for more details on usage. */)
6137 (process, current_group)
6138 Lisp_Object process, current_group;
6140 process_send_signal (process, SIGKILL, current_group, 0);
6141 return process;
6144 DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
6145 doc: /* Send QUIT signal to process PROCESS. May be process or name of one.
6146 See function `interrupt-process' for more details on usage. */)
6147 (process, current_group)
6148 Lisp_Object process, current_group;
6150 process_send_signal (process, SIGQUIT, current_group, 0);
6151 return process;
6154 DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
6155 doc: /* Stop process PROCESS. May be process or name of one.
6156 See function `interrupt-process' for more details on usage.
6157 If PROCESS is a network process, inhibit handling of incoming traffic. */)
6158 (process, current_group)
6159 Lisp_Object process, current_group;
6161 #ifdef HAVE_SOCKETS
6162 if (PROCESSP (process) && NETCONN_P (process))
6164 struct Lisp_Process *p;
6166 p = XPROCESS (process);
6167 if (NILP (p->command)
6168 && p->infd >= 0)
6170 FD_CLR (p->infd, &input_wait_mask);
6171 FD_CLR (p->infd, &non_keyboard_wait_mask);
6173 p->command = Qt;
6174 return process;
6176 #endif
6177 #ifndef SIGTSTP
6178 error ("No SIGTSTP support");
6179 #else
6180 process_send_signal (process, SIGTSTP, current_group, 0);
6181 #endif
6182 return process;
6185 DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
6186 doc: /* Continue process PROCESS. May be process or name of one.
6187 See function `interrupt-process' for more details on usage.
6188 If PROCESS is a network process, resume handling of incoming traffic. */)
6189 (process, current_group)
6190 Lisp_Object process, current_group;
6192 #ifdef HAVE_SOCKETS
6193 if (PROCESSP (process) && NETCONN_P (process))
6195 struct Lisp_Process *p;
6197 p = XPROCESS (process);
6198 if (EQ (p->command, Qt)
6199 && p->infd >= 0
6200 && (!EQ (p->filter, Qt) || EQ (p->status, Qlisten)))
6202 FD_SET (p->infd, &input_wait_mask);
6203 FD_SET (p->infd, &non_keyboard_wait_mask);
6205 p->command = Qnil;
6206 return process;
6208 #endif
6209 #ifdef SIGCONT
6210 process_send_signal (process, SIGCONT, current_group, 0);
6211 #else
6212 error ("No SIGCONT support");
6213 #endif
6214 return process;
6217 DEFUN ("signal-process", Fsignal_process, Ssignal_process,
6218 2, 2, "sProcess (name or number): \nnSignal code: ",
6219 doc: /* Send PROCESS the signal with code SIGCODE.
6220 PROCESS may also be a number specifying the process id of the
6221 process to signal; in this case, the process need not be a child of
6222 this Emacs.
6223 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
6224 (process, sigcode)
6225 Lisp_Object process, sigcode;
6227 pid_t pid;
6229 if (INTEGERP (process))
6231 pid = XINT (process);
6232 goto got_it;
6235 if (FLOATP (process))
6237 pid = (pid_t) XFLOAT_DATA (process);
6238 goto got_it;
6241 if (STRINGP (process))
6243 Lisp_Object tem;
6244 if (tem = Fget_process (process), NILP (tem))
6246 pid = XINT (Fstring_to_number (process, make_number (10)));
6247 if (pid > 0)
6248 goto got_it;
6250 process = tem;
6252 else
6253 process = get_process (process);
6255 if (NILP (process))
6256 return process;
6258 CHECK_PROCESS (process);
6259 pid = XPROCESS (process)->pid;
6260 if (pid <= 0)
6261 error ("Cannot signal process %s", SDATA (XPROCESS (process)->name));
6263 got_it:
6265 #define parse_signal(NAME, VALUE) \
6266 else if (!xstricmp (name, NAME)) \
6267 XSETINT (sigcode, VALUE)
6269 if (INTEGERP (sigcode))
6271 else
6273 unsigned char *name;
6275 CHECK_SYMBOL (sigcode);
6276 name = SDATA (SYMBOL_NAME (sigcode));
6278 if (!strncmp(name, "SIG", 3) || !strncmp(name, "sig", 3))
6279 name += 3;
6281 if (0)
6283 #ifdef SIGUSR1
6284 parse_signal ("usr1", SIGUSR1);
6285 #endif
6286 #ifdef SIGUSR2
6287 parse_signal ("usr2", SIGUSR2);
6288 #endif
6289 #ifdef SIGTERM
6290 parse_signal ("term", SIGTERM);
6291 #endif
6292 #ifdef SIGHUP
6293 parse_signal ("hup", SIGHUP);
6294 #endif
6295 #ifdef SIGINT
6296 parse_signal ("int", SIGINT);
6297 #endif
6298 #ifdef SIGQUIT
6299 parse_signal ("quit", SIGQUIT);
6300 #endif
6301 #ifdef SIGILL
6302 parse_signal ("ill", SIGILL);
6303 #endif
6304 #ifdef SIGABRT
6305 parse_signal ("abrt", SIGABRT);
6306 #endif
6307 #ifdef SIGEMT
6308 parse_signal ("emt", SIGEMT);
6309 #endif
6310 #ifdef SIGKILL
6311 parse_signal ("kill", SIGKILL);
6312 #endif
6313 #ifdef SIGFPE
6314 parse_signal ("fpe", SIGFPE);
6315 #endif
6316 #ifdef SIGBUS
6317 parse_signal ("bus", SIGBUS);
6318 #endif
6319 #ifdef SIGSEGV
6320 parse_signal ("segv", SIGSEGV);
6321 #endif
6322 #ifdef SIGSYS
6323 parse_signal ("sys", SIGSYS);
6324 #endif
6325 #ifdef SIGPIPE
6326 parse_signal ("pipe", SIGPIPE);
6327 #endif
6328 #ifdef SIGALRM
6329 parse_signal ("alrm", SIGALRM);
6330 #endif
6331 #ifdef SIGURG
6332 parse_signal ("urg", SIGURG);
6333 #endif
6334 #ifdef SIGSTOP
6335 parse_signal ("stop", SIGSTOP);
6336 #endif
6337 #ifdef SIGTSTP
6338 parse_signal ("tstp", SIGTSTP);
6339 #endif
6340 #ifdef SIGCONT
6341 parse_signal ("cont", SIGCONT);
6342 #endif
6343 #ifdef SIGCHLD
6344 parse_signal ("chld", SIGCHLD);
6345 #endif
6346 #ifdef SIGTTIN
6347 parse_signal ("ttin", SIGTTIN);
6348 #endif
6349 #ifdef SIGTTOU
6350 parse_signal ("ttou", SIGTTOU);
6351 #endif
6352 #ifdef SIGIO
6353 parse_signal ("io", SIGIO);
6354 #endif
6355 #ifdef SIGXCPU
6356 parse_signal ("xcpu", SIGXCPU);
6357 #endif
6358 #ifdef SIGXFSZ
6359 parse_signal ("xfsz", SIGXFSZ);
6360 #endif
6361 #ifdef SIGVTALRM
6362 parse_signal ("vtalrm", SIGVTALRM);
6363 #endif
6364 #ifdef SIGPROF
6365 parse_signal ("prof", SIGPROF);
6366 #endif
6367 #ifdef SIGWINCH
6368 parse_signal ("winch", SIGWINCH);
6369 #endif
6370 #ifdef SIGINFO
6371 parse_signal ("info", SIGINFO);
6372 #endif
6373 else
6374 error ("Undefined signal name %s", name);
6377 #undef parse_signal
6379 return make_number (kill (pid, XINT (sigcode)));
6382 DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
6383 doc: /* Make PROCESS see end-of-file in its input.
6384 EOF comes after any text already sent to it.
6385 PROCESS may be a process, a buffer, the name of a process or buffer, or
6386 nil, indicating the current buffer's process.
6387 If PROCESS is a network connection, or is a process communicating
6388 through a pipe (as opposed to a pty), then you cannot send any more
6389 text to PROCESS after you call this function. */)
6390 (process)
6391 Lisp_Object process;
6393 Lisp_Object proc;
6394 struct coding_system *coding;
6396 if (DATAGRAM_CONN_P (process))
6397 return process;
6399 proc = get_process (process);
6400 coding = proc_encode_coding_system[XPROCESS (proc)->outfd];
6402 /* Make sure the process is really alive. */
6403 if (XPROCESS (proc)->raw_status_new)
6404 update_status (XPROCESS (proc));
6405 if (! EQ (XPROCESS (proc)->status, Qrun))
6406 error ("Process %s not running", SDATA (XPROCESS (proc)->name));
6408 if (CODING_REQUIRE_FLUSHING (coding))
6410 coding->mode |= CODING_MODE_LAST_BLOCK;
6411 send_process (proc, "", 0, Qnil);
6414 #ifdef VMS
6415 send_process (proc, "\032", 1, Qnil); /* ^z */
6416 #else
6417 if (XPROCESS (proc)->pty_flag)
6418 send_process (proc, "\004", 1, Qnil);
6419 else
6421 int old_outfd, new_outfd;
6423 #ifdef HAVE_SHUTDOWN
6424 /* If this is a network connection, or socketpair is used
6425 for communication with the subprocess, call shutdown to cause EOF.
6426 (In some old system, shutdown to socketpair doesn't work.
6427 Then we just can't win.) */
6428 if (XPROCESS (proc)->pid == 0
6429 || XPROCESS (proc)->outfd == XPROCESS (proc)->infd)
6430 shutdown (XPROCESS (proc)->outfd, 1);
6431 /* In case of socketpair, outfd == infd, so don't close it. */
6432 if (XPROCESS (proc)->outfd != XPROCESS (proc)->infd)
6433 emacs_close (XPROCESS (proc)->outfd);
6434 #else /* not HAVE_SHUTDOWN */
6435 emacs_close (XPROCESS (proc)->outfd);
6436 #endif /* not HAVE_SHUTDOWN */
6437 new_outfd = emacs_open (NULL_DEVICE, O_WRONLY, 0);
6438 if (new_outfd < 0)
6439 abort ();
6440 old_outfd = XPROCESS (proc)->outfd;
6442 if (!proc_encode_coding_system[new_outfd])
6443 proc_encode_coding_system[new_outfd]
6444 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
6445 bcopy (proc_encode_coding_system[old_outfd],
6446 proc_encode_coding_system[new_outfd],
6447 sizeof (struct coding_system));
6448 bzero (proc_encode_coding_system[old_outfd],
6449 sizeof (struct coding_system));
6451 XPROCESS (proc)->outfd = new_outfd;
6453 #endif /* VMS */
6454 return process;
6457 /* Kill all processes associated with `buffer'.
6458 If `buffer' is nil, kill all processes */
6460 void
6461 kill_buffer_processes (buffer)
6462 Lisp_Object buffer;
6464 Lisp_Object tail, proc;
6466 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
6468 proc = XCDR (XCAR (tail));
6469 if (GC_PROCESSP (proc)
6470 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
6472 if (NETCONN_P (proc))
6473 Fdelete_process (proc);
6474 else if (XPROCESS (proc)->infd >= 0)
6475 process_send_signal (proc, SIGHUP, Qnil, 1);
6480 /* On receipt of a signal that a child status has changed, loop asking
6481 about children with changed statuses until the system says there
6482 are no more.
6484 All we do is change the status; we do not run sentinels or print
6485 notifications. That is saved for the next time keyboard input is
6486 done, in order to avoid timing errors.
6488 ** WARNING: this can be called during garbage collection.
6489 Therefore, it must not be fooled by the presence of mark bits in
6490 Lisp objects.
6492 ** USG WARNING: Although it is not obvious from the documentation
6493 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6494 signal() before executing at least one wait(), otherwise the
6495 handler will be called again, resulting in an infinite loop. The
6496 relevant portion of the documentation reads "SIGCLD signals will be
6497 queued and the signal-catching function will be continually
6498 reentered until the queue is empty". Invoking signal() causes the
6499 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6500 Inc.
6502 ** Malloc WARNING: This should never call malloc either directly or
6503 indirectly; if it does, that is a bug */
6505 #ifdef SIGCHLD
6506 SIGTYPE
6507 sigchld_handler (signo)
6508 int signo;
6510 int old_errno = errno;
6511 Lisp_Object proc;
6512 register struct Lisp_Process *p;
6513 extern EMACS_TIME *input_available_clear_time;
6515 SIGNAL_THREAD_CHECK (signo);
6517 #ifdef BSD4_1
6518 extern int sigheld;
6519 sigheld |= sigbit (SIGCHLD);
6520 #endif
6522 while (1)
6524 pid_t pid;
6525 WAITTYPE w;
6526 Lisp_Object tail;
6528 #ifdef WNOHANG
6529 #ifndef WUNTRACED
6530 #define WUNTRACED 0
6531 #endif /* no WUNTRACED */
6532 /* Keep trying to get a status until we get a definitive result. */
6535 errno = 0;
6536 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
6538 while (pid < 0 && errno == EINTR);
6540 if (pid <= 0)
6542 /* PID == 0 means no processes found, PID == -1 means a real
6543 failure. We have done all our job, so return. */
6545 /* USG systems forget handlers when they are used;
6546 must reestablish each time */
6547 #if defined (USG) && !defined (POSIX_SIGNALS)
6548 signal (signo, sigchld_handler); /* WARNING - must come after wait3() */
6549 #endif
6550 #ifdef BSD4_1
6551 sigheld &= ~sigbit (SIGCHLD);
6552 sigrelse (SIGCHLD);
6553 #endif
6554 errno = old_errno;
6555 return;
6557 #else
6558 pid = wait (&w);
6559 #endif /* no WNOHANG */
6561 /* Find the process that signaled us, and record its status. */
6563 /* The process can have been deleted by Fdelete_process. */
6564 for (tail = deleted_pid_list; GC_CONSP (tail); tail = XCDR (tail))
6566 Lisp_Object xpid = XCAR (tail);
6567 if ((GC_INTEGERP (xpid) && pid == (pid_t) XINT (xpid))
6568 || (GC_FLOATP (xpid) && pid == (pid_t) XFLOAT_DATA (xpid)))
6570 XSETCAR (tail, Qnil);
6571 goto sigchld_end_of_loop;
6575 /* Otherwise, if it is asynchronous, it is in Vprocess_alist. */
6576 p = 0;
6577 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
6579 proc = XCDR (XCAR (tail));
6580 p = XPROCESS (proc);
6581 if (GC_EQ (p->childp, Qt) && p->pid == pid)
6582 break;
6583 p = 0;
6586 /* Look for an asynchronous process whose pid hasn't been filled
6587 in yet. */
6588 if (p == 0)
6589 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
6591 proc = XCDR (XCAR (tail));
6592 p = XPROCESS (proc);
6593 if (p->pid == -1)
6594 break;
6595 p = 0;
6598 /* Change the status of the process that was found. */
6599 if (p != 0)
6601 union { int i; WAITTYPE wt; } u;
6602 int clear_desc_flag = 0;
6604 p->tick = ++process_tick;
6605 u.wt = w;
6606 p->raw_status = u.i;
6607 p->raw_status_new = 1;
6609 /* If process has terminated, stop waiting for its output. */
6610 if ((WIFSIGNALED (w) || WIFEXITED (w))
6611 && p->infd >= 0)
6612 clear_desc_flag = 1;
6614 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
6615 if (clear_desc_flag)
6617 FD_CLR (p->infd, &input_wait_mask);
6618 FD_CLR (p->infd, &non_keyboard_wait_mask);
6621 /* Tell wait_reading_process_output that it needs to wake up and
6622 look around. */
6623 if (input_available_clear_time)
6624 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6627 /* There was no asynchronous process found for that pid: we have
6628 a synchronous process. */
6629 else
6631 synch_process_alive = 0;
6633 /* Report the status of the synchronous process. */
6634 if (WIFEXITED (w))
6635 synch_process_retcode = WRETCODE (w);
6636 else if (WIFSIGNALED (w))
6637 synch_process_termsig = WTERMSIG (w);
6639 /* Tell wait_reading_process_output that it needs to wake up and
6640 look around. */
6641 if (input_available_clear_time)
6642 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6645 sigchld_end_of_loop:
6648 /* On some systems, we must return right away.
6649 If any more processes want to signal us, we will
6650 get another signal.
6651 Otherwise (on systems that have WNOHANG), loop around
6652 to use up all the processes that have something to tell us. */
6653 #if (defined WINDOWSNT \
6654 || (defined USG && !defined GNU_LINUX \
6655 && !(defined HPUX && defined WNOHANG)))
6656 #if defined (USG) && ! defined (POSIX_SIGNALS)
6657 signal (signo, sigchld_handler);
6658 #endif
6659 errno = old_errno;
6660 return;
6661 #endif /* USG, but not HPUX with WNOHANG */
6664 #endif /* SIGCHLD */
6667 static Lisp_Object
6668 exec_sentinel_unwind (data)
6669 Lisp_Object data;
6671 XPROCESS (XCAR (data))->sentinel = XCDR (data);
6672 return Qnil;
6675 static Lisp_Object
6676 exec_sentinel_error_handler (error)
6677 Lisp_Object error;
6679 cmd_error_internal (error, "error in process sentinel: ");
6680 Vinhibit_quit = Qt;
6681 update_echo_area ();
6682 Fsleep_for (make_number (2), Qnil);
6683 return Qt;
6686 static void
6687 exec_sentinel (proc, reason)
6688 Lisp_Object proc, reason;
6690 Lisp_Object sentinel, obuffer, odeactivate, okeymap;
6691 register struct Lisp_Process *p = XPROCESS (proc);
6692 int count = SPECPDL_INDEX ();
6693 int outer_running_asynch_code = running_asynch_code;
6694 int waiting = waiting_for_user_input_p;
6696 if (inhibit_sentinels)
6697 return;
6699 /* No need to gcpro these, because all we do with them later
6700 is test them for EQness, and none of them should be a string. */
6701 odeactivate = Vdeactivate_mark;
6702 XSETBUFFER (obuffer, current_buffer);
6703 okeymap = current_buffer->keymap;
6705 sentinel = p->sentinel;
6706 if (NILP (sentinel))
6707 return;
6709 /* Zilch the sentinel while it's running, to avoid recursive invocations;
6710 assure that it gets restored no matter how the sentinel exits. */
6711 p->sentinel = Qnil;
6712 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
6713 /* Inhibit quit so that random quits don't screw up a running filter. */
6714 specbind (Qinhibit_quit, Qt);
6715 specbind (Qlast_nonmenu_event, Qt);
6717 /* In case we get recursively called,
6718 and we already saved the match data nonrecursively,
6719 save the same match data in safely recursive fashion. */
6720 if (outer_running_asynch_code)
6722 Lisp_Object tem;
6723 tem = Fmatch_data (Qnil, Qnil, Qnil);
6724 restore_search_regs ();
6725 record_unwind_save_match_data ();
6726 Fset_match_data (tem, Qt);
6729 /* For speed, if a search happens within this code,
6730 save the match data in a special nonrecursive fashion. */
6731 running_asynch_code = 1;
6733 internal_condition_case_1 (read_process_output_call,
6734 Fcons (sentinel,
6735 Fcons (proc, Fcons (reason, Qnil))),
6736 !NILP (Vdebug_on_error) ? Qnil : Qerror,
6737 exec_sentinel_error_handler);
6739 /* If we saved the match data nonrecursively, restore it now. */
6740 restore_search_regs ();
6741 running_asynch_code = outer_running_asynch_code;
6743 Vdeactivate_mark = odeactivate;
6745 /* Restore waiting_for_user_input_p as it was
6746 when we were called, in case the filter clobbered it. */
6747 waiting_for_user_input_p = waiting;
6749 #if 0
6750 if (! EQ (Fcurrent_buffer (), obuffer)
6751 || ! EQ (current_buffer->keymap, okeymap))
6752 #endif
6753 /* But do it only if the caller is actually going to read events.
6754 Otherwise there's no need to make him wake up, and it could
6755 cause trouble (for example it would make sit_for return). */
6756 if (waiting_for_user_input_p == -1)
6757 record_asynch_buffer_change ();
6759 unbind_to (count, Qnil);
6762 /* Report all recent events of a change in process status
6763 (either run the sentinel or output a message).
6764 This is usually done while Emacs is waiting for keyboard input
6765 but can be done at other times. */
6767 static void
6768 status_notify (deleting_process)
6769 struct Lisp_Process *deleting_process;
6771 register Lisp_Object proc, buffer;
6772 Lisp_Object tail, msg;
6773 struct gcpro gcpro1, gcpro2;
6775 tail = Qnil;
6776 msg = Qnil;
6777 /* We need to gcpro tail; if read_process_output calls a filter
6778 which deletes a process and removes the cons to which tail points
6779 from Vprocess_alist, and then causes a GC, tail is an unprotected
6780 reference. */
6781 GCPRO2 (tail, msg);
6783 /* Set this now, so that if new processes are created by sentinels
6784 that we run, we get called again to handle their status changes. */
6785 update_tick = process_tick;
6787 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
6789 Lisp_Object symbol;
6790 register struct Lisp_Process *p;
6792 proc = Fcdr (Fcar (tail));
6793 p = XPROCESS (proc);
6795 if (p->tick != p->update_tick)
6797 p->update_tick = p->tick;
6799 /* If process is still active, read any output that remains. */
6800 while (! EQ (p->filter, Qt)
6801 && ! EQ (p->status, Qconnect)
6802 && ! EQ (p->status, Qlisten)
6803 && ! EQ (p->command, Qt) /* Network process not stopped. */
6804 && p->infd >= 0
6805 && p != deleting_process
6806 && read_process_output (proc, p->infd) > 0);
6808 buffer = p->buffer;
6810 /* Get the text to use for the message. */
6811 if (p->raw_status_new)
6812 update_status (p);
6813 msg = status_message (p);
6815 /* If process is terminated, deactivate it or delete it. */
6816 symbol = p->status;
6817 if (CONSP (p->status))
6818 symbol = XCAR (p->status);
6820 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
6821 || EQ (symbol, Qclosed))
6823 if (delete_exited_processes)
6824 remove_process (proc);
6825 else
6826 deactivate_process (proc);
6829 /* The actions above may have further incremented p->tick.
6830 So set p->update_tick again
6831 so that an error in the sentinel will not cause
6832 this code to be run again. */
6833 p->update_tick = p->tick;
6834 /* Now output the message suitably. */
6835 if (!NILP (p->sentinel))
6836 exec_sentinel (proc, msg);
6837 /* Don't bother with a message in the buffer
6838 when a process becomes runnable. */
6839 else if (!EQ (symbol, Qrun) && !NILP (buffer))
6841 Lisp_Object ro, tem;
6842 struct buffer *old = current_buffer;
6843 int opoint, opoint_byte;
6844 int before, before_byte;
6846 ro = XBUFFER (buffer)->read_only;
6848 /* Avoid error if buffer is deleted
6849 (probably that's why the process is dead, too) */
6850 if (NILP (XBUFFER (buffer)->name))
6851 continue;
6852 Fset_buffer (buffer);
6854 opoint = PT;
6855 opoint_byte = PT_BYTE;
6856 /* Insert new output into buffer
6857 at the current end-of-output marker,
6858 thus preserving logical ordering of input and output. */
6859 if (XMARKER (p->mark)->buffer)
6860 Fgoto_char (p->mark);
6861 else
6862 SET_PT_BOTH (ZV, ZV_BYTE);
6864 before = PT;
6865 before_byte = PT_BYTE;
6867 tem = current_buffer->read_only;
6868 current_buffer->read_only = Qnil;
6869 insert_string ("\nProcess ");
6870 Finsert (1, &p->name);
6871 insert_string (" ");
6872 Finsert (1, &msg);
6873 current_buffer->read_only = tem;
6874 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
6876 if (opoint >= before)
6877 SET_PT_BOTH (opoint + (PT - before),
6878 opoint_byte + (PT_BYTE - before_byte));
6879 else
6880 SET_PT_BOTH (opoint, opoint_byte);
6882 set_buffer_internal (old);
6885 } /* end for */
6887 update_mode_lines++; /* in case buffers use %s in mode-line-format */
6888 redisplay_preserve_echo_area (13);
6890 UNGCPRO;
6894 DEFUN ("set-process-coding-system", Fset_process_coding_system,
6895 Sset_process_coding_system, 1, 3, 0,
6896 doc: /* Set coding systems of PROCESS to DECODING and ENCODING.
6897 DECODING will be used to decode subprocess output and ENCODING to
6898 encode subprocess input. */)
6899 (process, decoding, encoding)
6900 register Lisp_Object process, decoding, encoding;
6902 register struct Lisp_Process *p;
6904 CHECK_PROCESS (process);
6905 p = XPROCESS (process);
6906 if (p->infd < 0)
6907 error ("Input file descriptor of %s closed", SDATA (p->name));
6908 if (p->outfd < 0)
6909 error ("Output file descriptor of %s closed", SDATA (p->name));
6910 Fcheck_coding_system (decoding);
6911 Fcheck_coding_system (encoding);
6913 p->decode_coding_system = decoding;
6914 p->encode_coding_system = encoding;
6915 setup_process_coding_systems (process);
6917 return Qnil;
6920 DEFUN ("process-coding-system",
6921 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0,
6922 doc: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
6923 (process)
6924 register Lisp_Object process;
6926 CHECK_PROCESS (process);
6927 return Fcons (XPROCESS (process)->decode_coding_system,
6928 XPROCESS (process)->encode_coding_system);
6931 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte,
6932 Sset_process_filter_multibyte, 2, 2, 0,
6933 doc: /* Set multibyteness of the strings given to PROCESS's filter.
6934 If FLAG is non-nil, the filter is given multibyte strings.
6935 If FLAG is nil, the filter is given unibyte strings. In this case,
6936 all character code conversion except for end-of-line conversion is
6937 suppressed. */)
6938 (process, flag)
6939 Lisp_Object process, flag;
6941 register struct Lisp_Process *p;
6943 CHECK_PROCESS (process);
6944 p = XPROCESS (process);
6945 p->filter_multibyte = !NILP (flag);
6946 setup_process_coding_systems (process);
6948 return Qnil;
6951 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p,
6952 Sprocess_filter_multibyte_p, 1, 1, 0,
6953 doc: /* Return t if a multibyte string is given to PROCESS's filter.*/)
6954 (process)
6955 Lisp_Object process;
6957 register struct Lisp_Process *p;
6959 CHECK_PROCESS (process);
6960 p = XPROCESS (process);
6962 return (p->filter_multibyte ? Qt : Qnil);
6967 /* The first time this is called, assume keyboard input comes from DESC
6968 instead of from where we used to expect it.
6969 Subsequent calls mean assume input keyboard can come from DESC
6970 in addition to other places. */
6972 static int add_keyboard_wait_descriptor_called_flag;
6974 void
6975 add_keyboard_wait_descriptor (desc)
6976 int desc;
6978 if (! add_keyboard_wait_descriptor_called_flag)
6979 FD_CLR (0, &input_wait_mask);
6980 add_keyboard_wait_descriptor_called_flag = 1;
6981 FD_SET (desc, &input_wait_mask);
6982 FD_SET (desc, &non_process_wait_mask);
6983 if (desc > max_keyboard_desc)
6984 max_keyboard_desc = desc;
6987 static int add_gpm_wait_descriptor_called_flag;
6989 void
6990 add_gpm_wait_descriptor (desc)
6991 int desc;
6993 if (! add_gpm_wait_descriptor_called_flag)
6994 FD_CLR (0, &input_wait_mask);
6995 add_gpm_wait_descriptor_called_flag = 1;
6996 FD_SET (desc, &input_wait_mask);
6997 FD_SET (desc, &gpm_wait_mask);
6998 if (desc > max_gpm_desc)
6999 max_gpm_desc = desc;
7002 /* From now on, do not expect DESC to give keyboard input. */
7004 void
7005 delete_keyboard_wait_descriptor (desc)
7006 int desc;
7008 int fd;
7009 int lim = max_keyboard_desc;
7011 FD_CLR (desc, &input_wait_mask);
7012 FD_CLR (desc, &non_process_wait_mask);
7014 if (desc == max_keyboard_desc)
7015 for (fd = 0; fd < lim; fd++)
7016 if (FD_ISSET (fd, &input_wait_mask)
7017 && !FD_ISSET (fd, &non_keyboard_wait_mask)
7018 && !FD_ISSET (fd, &gpm_wait_mask))
7019 max_keyboard_desc = fd;
7022 void
7023 delete_gpm_wait_descriptor (desc)
7024 int desc;
7026 int fd;
7027 int lim = max_gpm_desc;
7029 FD_CLR (desc, &input_wait_mask);
7030 FD_CLR (desc, &non_process_wait_mask);
7032 if (desc == max_gpm_desc)
7033 for (fd = 0; fd < lim; fd++)
7034 if (FD_ISSET (fd, &input_wait_mask)
7035 && !FD_ISSET (fd, &non_keyboard_wait_mask)
7036 && !FD_ISSET (fd, &non_process_wait_mask))
7037 max_gpm_desc = fd;
7040 /* Return nonzero if *MASK has a bit set
7041 that corresponds to one of the keyboard input descriptors. */
7043 static int
7044 keyboard_bit_set (mask)
7045 SELECT_TYPE *mask;
7047 int fd;
7049 for (fd = 0; fd <= max_keyboard_desc; fd++)
7050 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask)
7051 && !FD_ISSET (fd, &non_keyboard_wait_mask))
7052 return 1;
7054 return 0;
7057 void
7058 init_process ()
7060 register int i;
7062 inhibit_sentinels = 0;
7064 #ifdef SIGCHLD
7065 #ifndef CANNOT_DUMP
7066 if (! noninteractive || initialized)
7067 #endif
7068 signal (SIGCHLD, sigchld_handler);
7069 #endif
7071 FD_ZERO (&input_wait_mask);
7072 FD_ZERO (&non_keyboard_wait_mask);
7073 FD_ZERO (&non_process_wait_mask);
7074 max_process_desc = 0;
7076 #ifdef NON_BLOCKING_CONNECT
7077 FD_ZERO (&connect_wait_mask);
7078 num_pending_connects = 0;
7079 #endif
7081 #ifdef ADAPTIVE_READ_BUFFERING
7082 process_output_delay_count = 0;
7083 process_output_skip = 0;
7084 #endif
7086 FD_SET (0, &input_wait_mask);
7088 Vprocess_alist = Qnil;
7089 #ifdef SIGCHLD
7090 deleted_pid_list = Qnil;
7091 #endif
7092 for (i = 0; i < MAXDESC; i++)
7094 chan_process[i] = Qnil;
7095 proc_buffered_char[i] = -1;
7097 bzero (proc_decode_coding_system, sizeof proc_decode_coding_system);
7098 bzero (proc_encode_coding_system, sizeof proc_encode_coding_system);
7099 #ifdef DATAGRAM_SOCKETS
7100 bzero (datagram_address, sizeof datagram_address);
7101 #endif
7103 #ifdef HAVE_SOCKETS
7105 Lisp_Object subfeatures = Qnil;
7106 struct socket_options *sopt;
7108 #define ADD_SUBFEATURE(key, val) \
7109 subfeatures = Fcons (Fcons (key, Fcons (val, Qnil)), subfeatures)
7111 #ifdef NON_BLOCKING_CONNECT
7112 ADD_SUBFEATURE (QCnowait, Qt);
7113 #endif
7114 #ifdef DATAGRAM_SOCKETS
7115 ADD_SUBFEATURE (QCtype, Qdatagram);
7116 #endif
7117 #ifdef HAVE_LOCAL_SOCKETS
7118 ADD_SUBFEATURE (QCfamily, Qlocal);
7119 #endif
7120 ADD_SUBFEATURE (QCfamily, Qipv4);
7121 #ifdef AF_INET6
7122 ADD_SUBFEATURE (QCfamily, Qipv6);
7123 #endif
7124 #ifdef HAVE_GETSOCKNAME
7125 ADD_SUBFEATURE (QCservice, Qt);
7126 #endif
7127 #if !defined(TERM) && (defined(O_NONBLOCK) || defined(O_NDELAY))
7128 ADD_SUBFEATURE (QCserver, Qt);
7129 #endif
7131 for (sopt = socket_options; sopt->name; sopt++)
7132 subfeatures = Fcons (intern (sopt->name), subfeatures);
7134 Fprovide (intern ("make-network-process"), subfeatures);
7136 #endif /* HAVE_SOCKETS */
7138 #if defined (DARWIN) || defined (MAC_OSX)
7139 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
7140 processes. As such, we only change the default value. */
7141 if (initialized)
7143 char *release = get_operating_system_release();
7144 if (!release || !release[0] || (release[0] < MIN_PTY_KERNEL_VERSION
7145 && release[1] == '.')) {
7146 Vprocess_connection_type = Qnil;
7149 #endif
7152 void
7153 syms_of_process ()
7155 Qprocessp = intern ("processp");
7156 staticpro (&Qprocessp);
7157 Qrun = intern ("run");
7158 staticpro (&Qrun);
7159 Qstop = intern ("stop");
7160 staticpro (&Qstop);
7161 Qsignal = intern ("signal");
7162 staticpro (&Qsignal);
7164 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
7165 here again.
7167 Qexit = intern ("exit");
7168 staticpro (&Qexit); */
7170 Qopen = intern ("open");
7171 staticpro (&Qopen);
7172 Qclosed = intern ("closed");
7173 staticpro (&Qclosed);
7174 Qconnect = intern ("connect");
7175 staticpro (&Qconnect);
7176 Qfailed = intern ("failed");
7177 staticpro (&Qfailed);
7178 Qlisten = intern ("listen");
7179 staticpro (&Qlisten);
7180 Qlocal = intern ("local");
7181 staticpro (&Qlocal);
7182 Qipv4 = intern ("ipv4");
7183 staticpro (&Qipv4);
7184 #ifdef AF_INET6
7185 Qipv6 = intern ("ipv6");
7186 staticpro (&Qipv6);
7187 #endif
7188 Qdatagram = intern ("datagram");
7189 staticpro (&Qdatagram);
7191 QCname = intern (":name");
7192 staticpro (&QCname);
7193 QCbuffer = intern (":buffer");
7194 staticpro (&QCbuffer);
7195 QChost = intern (":host");
7196 staticpro (&QChost);
7197 QCservice = intern (":service");
7198 staticpro (&QCservice);
7199 QCtype = intern (":type");
7200 staticpro (&QCtype);
7201 QClocal = intern (":local");
7202 staticpro (&QClocal);
7203 QCremote = intern (":remote");
7204 staticpro (&QCremote);
7205 QCcoding = intern (":coding");
7206 staticpro (&QCcoding);
7207 QCserver = intern (":server");
7208 staticpro (&QCserver);
7209 QCnowait = intern (":nowait");
7210 staticpro (&QCnowait);
7211 QCsentinel = intern (":sentinel");
7212 staticpro (&QCsentinel);
7213 QClog = intern (":log");
7214 staticpro (&QClog);
7215 QCnoquery = intern (":noquery");
7216 staticpro (&QCnoquery);
7217 QCstop = intern (":stop");
7218 staticpro (&QCstop);
7219 QCoptions = intern (":options");
7220 staticpro (&QCoptions);
7221 QCplist = intern (":plist");
7222 staticpro (&QCplist);
7223 QCfilter_multibyte = intern (":filter-multibyte");
7224 staticpro (&QCfilter_multibyte);
7226 Qlast_nonmenu_event = intern ("last-nonmenu-event");
7227 staticpro (&Qlast_nonmenu_event);
7229 staticpro (&Vprocess_alist);
7230 #ifdef SIGCHLD
7231 staticpro (&deleted_pid_list);
7232 #endif
7234 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
7235 doc: /* *Non-nil means delete processes immediately when they exit.
7236 A value of nil means don't delete them until `list-processes' is run. */);
7238 delete_exited_processes = 1;
7240 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type,
7241 doc: /* Control type of device used to communicate with subprocesses.
7242 Values are nil to use a pipe, or t or `pty' to use a pty.
7243 The value has no effect if the system has no ptys or if all ptys are busy:
7244 then a pipe is used in any case.
7245 The value takes effect when `start-process' is called. */);
7246 Vprocess_connection_type = Qt;
7248 #ifdef ADAPTIVE_READ_BUFFERING
7249 DEFVAR_LISP ("process-adaptive-read-buffering", &Vprocess_adaptive_read_buffering,
7250 doc: /* If non-nil, improve receive buffering by delaying after short reads.
7251 On some systems, when Emacs reads the output from a subprocess, the output data
7252 is read in very small blocks, potentially resulting in very poor performance.
7253 This behavior can be remedied to some extent by setting this variable to a
7254 non-nil value, as it will automatically delay reading from such processes, to
7255 allow them to produce more output before Emacs tries to read it.
7256 If the value is t, the delay is reset after each write to the process; any other
7257 non-nil value means that the delay is not reset on write.
7258 The variable takes effect when `start-process' is called. */);
7259 Vprocess_adaptive_read_buffering = Qt;
7260 #endif
7262 defsubr (&Sprocessp);
7263 defsubr (&Sget_process);
7264 defsubr (&Sget_buffer_process);
7265 defsubr (&Sdelete_process);
7266 defsubr (&Sprocess_status);
7267 defsubr (&Sprocess_exit_status);
7268 defsubr (&Sprocess_id);
7269 defsubr (&Sprocess_name);
7270 defsubr (&Sprocess_tty_name);
7271 defsubr (&Sprocess_command);
7272 defsubr (&Sset_process_buffer);
7273 defsubr (&Sprocess_buffer);
7274 defsubr (&Sprocess_mark);
7275 defsubr (&Sset_process_filter);
7276 defsubr (&Sprocess_filter);
7277 defsubr (&Sset_process_sentinel);
7278 defsubr (&Sprocess_sentinel);
7279 defsubr (&Sset_process_window_size);
7280 defsubr (&Sset_process_inherit_coding_system_flag);
7281 defsubr (&Sprocess_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 (&Slist_processes);
7288 defsubr (&Sprocess_list);
7289 defsubr (&Sstart_process);
7290 #ifdef HAVE_SOCKETS
7291 defsubr (&Sset_network_process_option);
7292 defsubr (&Smake_network_process);
7293 defsubr (&Sformat_network_address);
7294 #endif /* HAVE_SOCKETS */
7295 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
7296 #ifdef SIOCGIFCONF
7297 defsubr (&Snetwork_interface_list);
7298 #endif
7299 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
7300 defsubr (&Snetwork_interface_info);
7301 #endif
7302 #endif /* HAVE_SOCKETS ... */
7303 #ifdef DATAGRAM_SOCKETS
7304 defsubr (&Sprocess_datagram_address);
7305 defsubr (&Sset_process_datagram_address);
7306 #endif
7307 defsubr (&Saccept_process_output);
7308 defsubr (&Sprocess_send_region);
7309 defsubr (&Sprocess_send_string);
7310 defsubr (&Sinterrupt_process);
7311 defsubr (&Skill_process);
7312 defsubr (&Squit_process);
7313 defsubr (&Sstop_process);
7314 defsubr (&Scontinue_process);
7315 defsubr (&Sprocess_running_child_p);
7316 defsubr (&Sprocess_send_eof);
7317 defsubr (&Ssignal_process);
7318 defsubr (&Swaiting_for_user_input_p);
7319 /* defsubr (&Sprocess_connection); */
7320 defsubr (&Sset_process_coding_system);
7321 defsubr (&Sprocess_coding_system);
7322 defsubr (&Sset_process_filter_multibyte);
7323 defsubr (&Sprocess_filter_multibyte_p);
7327 #else /* not subprocesses */
7329 #include <sys/types.h>
7330 #include <errno.h>
7332 #include "lisp.h"
7333 #include "systime.h"
7334 #include "charset.h"
7335 #include "coding.h"
7336 #include "termopts.h"
7337 #include "sysselect.h"
7339 extern int frame_garbaged;
7341 extern EMACS_TIME timer_check ();
7342 extern int timers_run;
7344 Lisp_Object QCtype;
7346 /* As described above, except assuming that there are no subprocesses:
7348 Wait for timeout to elapse and/or keyboard input to be available.
7350 time_limit is:
7351 timeout in seconds, or
7352 zero for no limit, or
7353 -1 means gobble data immediately available but don't wait for any.
7355 read_kbd is a Lisp_Object:
7356 0 to ignore keyboard input, or
7357 1 to return when input is available, or
7358 -1 means caller will actually read the input, so don't throw to
7359 the quit handler.
7361 see full version for other parameters. We know that wait_proc will
7362 always be NULL, since `subprocesses' isn't defined.
7364 do_display != 0 means redisplay should be done to show subprocess
7365 output that arrives.
7367 Return true iff we received input from any process. */
7370 wait_reading_process_output (time_limit, microsecs, read_kbd, do_display,
7371 wait_for_cell, wait_proc, just_wait_proc)
7372 int time_limit, microsecs, read_kbd, do_display;
7373 Lisp_Object wait_for_cell;
7374 struct Lisp_Process *wait_proc;
7375 int just_wait_proc;
7377 register int nfds;
7378 EMACS_TIME end_time, timeout;
7379 SELECT_TYPE waitchannels;
7380 int xerrno;
7382 /* What does time_limit really mean? */
7383 if (time_limit || microsecs)
7385 EMACS_GET_TIME (end_time);
7386 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
7387 EMACS_ADD_TIME (end_time, end_time, timeout);
7390 /* Turn off periodic alarms (in case they are in use)
7391 and then turn off any other atimers,
7392 because the select emulator uses alarms. */
7393 stop_polling ();
7394 turn_on_atimers (0);
7396 while (1)
7398 int timeout_reduced_for_timers = 0;
7400 /* If calling from keyboard input, do not quit
7401 since we want to return C-g as an input character.
7402 Otherwise, do pending quit if requested. */
7403 if (read_kbd >= 0)
7404 QUIT;
7406 /* Exit now if the cell we're waiting for became non-nil. */
7407 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
7408 break;
7410 /* Compute time from now till when time limit is up */
7411 /* Exit if already run out */
7412 if (time_limit == -1)
7414 /* -1 specified for timeout means
7415 gobble output available now
7416 but don't wait at all. */
7418 EMACS_SET_SECS_USECS (timeout, 0, 0);
7420 else if (time_limit || microsecs)
7422 EMACS_GET_TIME (timeout);
7423 EMACS_SUB_TIME (timeout, end_time, timeout);
7424 if (EMACS_TIME_NEG_P (timeout))
7425 break;
7427 else
7429 EMACS_SET_SECS_USECS (timeout, 100000, 0);
7432 /* If our caller will not immediately handle keyboard events,
7433 run timer events directly.
7434 (Callers that will immediately read keyboard events
7435 call timer_delay on their own.) */
7436 if (NILP (wait_for_cell))
7438 EMACS_TIME timer_delay;
7442 int old_timers_run = timers_run;
7443 timer_delay = timer_check (1);
7444 if (timers_run != old_timers_run && do_display)
7445 /* We must retry, since a timer may have requeued itself
7446 and that could alter the time delay. */
7447 redisplay_preserve_echo_area (14);
7448 else
7449 break;
7451 while (!detect_input_pending ());
7453 /* If there is unread keyboard input, also return. */
7454 if (read_kbd != 0
7455 && requeued_events_pending_p ())
7456 break;
7458 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
7460 EMACS_TIME difference;
7461 EMACS_SUB_TIME (difference, timer_delay, timeout);
7462 if (EMACS_TIME_NEG_P (difference))
7464 timeout = timer_delay;
7465 timeout_reduced_for_timers = 1;
7470 /* Cause C-g and alarm signals to take immediate action,
7471 and cause input available signals to zero out timeout. */
7472 if (read_kbd < 0)
7473 set_waiting_for_input (&timeout);
7475 /* Wait till there is something to do. */
7477 if (! read_kbd && NILP (wait_for_cell))
7478 FD_ZERO (&waitchannels);
7479 else
7480 FD_SET (0, &waitchannels);
7482 /* If a frame has been newly mapped and needs updating,
7483 reprocess its display stuff. */
7484 if (frame_garbaged && do_display)
7486 clear_waiting_for_input ();
7487 redisplay_preserve_echo_area (15);
7488 if (read_kbd < 0)
7489 set_waiting_for_input (&timeout);
7492 if (read_kbd && detect_input_pending ())
7494 nfds = 0;
7495 FD_ZERO (&waitchannels);
7497 else
7498 nfds = select (1, &waitchannels, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
7499 &timeout);
7501 xerrno = errno;
7503 /* Make C-g and alarm signals set flags again */
7504 clear_waiting_for_input ();
7506 /* If we woke up due to SIGWINCH, actually change size now. */
7507 do_pending_window_change (0);
7509 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
7510 /* We waited the full specified time, so return now. */
7511 break;
7513 if (nfds == -1)
7515 /* If the system call was interrupted, then go around the
7516 loop again. */
7517 if (xerrno == EINTR)
7518 FD_ZERO (&waitchannels);
7519 else
7520 error ("select error: %s", emacs_strerror (xerrno));
7522 #ifdef sun
7523 else if (nfds > 0 && (waitchannels & 1) && interrupt_input)
7524 /* System sometimes fails to deliver SIGIO. */
7525 kill (getpid (), SIGIO);
7526 #endif
7527 #ifdef SIGIO
7528 if (read_kbd && interrupt_input && (waitchannels & 1))
7529 kill (getpid (), SIGIO);
7530 #endif
7532 /* Check for keyboard input */
7534 if (read_kbd
7535 && detect_input_pending_run_timers (do_display))
7537 swallow_events (do_display);
7538 if (detect_input_pending_run_timers (do_display))
7539 break;
7542 /* If there is unread keyboard input, also return. */
7543 if (read_kbd
7544 && requeued_events_pending_p ())
7545 break;
7547 /* If wait_for_cell. check for keyboard input
7548 but don't run any timers.
7549 ??? (It seems wrong to me to check for keyboard
7550 input at all when wait_for_cell, but the code
7551 has been this way since July 1994.
7552 Try changing this after version 19.31.) */
7553 if (! NILP (wait_for_cell)
7554 && detect_input_pending ())
7556 swallow_events (do_display);
7557 if (detect_input_pending ())
7558 break;
7561 /* Exit now if the cell we're waiting for became non-nil. */
7562 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
7563 break;
7566 start_polling ();
7568 return 0;
7572 /* Don't confuse make-docfile by having two doc strings for this function.
7573 make-docfile does not pay attention to #if, for good reason! */
7574 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
7576 (name)
7577 register Lisp_Object name;
7579 return Qnil;
7582 /* Don't confuse make-docfile by having two doc strings for this function.
7583 make-docfile does not pay attention to #if, for good reason! */
7584 DEFUN ("process-inherit-coding-system-flag",
7585 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
7586 1, 1, 0,
7588 (process)
7589 register Lisp_Object process;
7591 /* Ignore the argument and return the value of
7592 inherit-process-coding-system. */
7593 return inherit_process_coding_system ? Qt : Qnil;
7596 /* Kill all processes associated with `buffer'.
7597 If `buffer' is nil, kill all processes.
7598 Since we have no subprocesses, this does nothing. */
7600 void
7601 kill_buffer_processes (buffer)
7602 Lisp_Object buffer;
7606 void
7607 init_process ()
7611 void
7612 syms_of_process ()
7614 QCtype = intern (":type");
7615 staticpro (&QCtype);
7617 defsubr (&Sget_buffer_process);
7618 defsubr (&Sprocess_inherit_coding_system_flag);
7622 #endif /* not subprocesses */
7624 /* arch-tag: 3706c011-7b9a-4117-bd4f-59e7f701a4c4
7625 (do not change this comment) */