Update years in copyright notice; nfc.
[bpt/emacs.git] / src / process.c
CommitLineData
d0d6b7c5 1/* Asynchronous subprocess control for GNU Emacs.
0b5538bd
TTN
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995,
3 1996, 1998, 1999, 2001, 2002, 2003, 2004,
4 2005 Free Software Foundation, Inc.
d0d6b7c5
JB
5
6This file is part of GNU Emacs.
7
8GNU Emacs is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
1dc77cc3 10the Free Software Foundation; either version 2, or (at your option)
d0d6b7c5
JB
11any later version.
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with GNU Emacs; see the file COPYING. If not, write to
4fc5845f
LK
20the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21Boston, MA 02110-1301, USA. */
d0d6b7c5
JB
22
23
18160b98 24#include <config.h>
68c45bf0
PE
25#include <signal.h>
26
6720a7fb
JB
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. */
33
34\f
d0d6b7c5 35#ifdef subprocesses
d0d6b7c5
JB
36
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>
93b4f699
RS
43#ifdef HAVE_UNISTD_H
44#include <unistd.h>
45#endif
d0d6b7c5 46
f22ac298 47#if defined(WINDOWSNT) || defined(UNIX98_PTYS)
e98d950b
RS
48#include <stdlib.h>
49#include <fcntl.h>
50#endif /* not WINDOWSNT */
51
d0d6b7c5
JB
52#ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
53#include <sys/socket.h>
54#include <netdb.h>
55#include <netinet/in.h>
56#include <arpa/inet.h>
f2cfa9a6
RS
57#ifdef NEED_NET_ERRNO_H
58#include <net/errno.h>
59#endif /* NEED_NET_ERRNO_H */
e690ca94
KS
60
61/* Are local (unix) sockets supported? */
28c6e94f 62#if defined (HAVE_SYS_UN_H) && !defined (NO_SOCKETS_IN_FILE_SYSTEM)
e690ca94
KS
63#if !defined (AF_LOCAL) && defined (AF_UNIX)
64#define AF_LOCAL AF_UNIX
65#endif
66#ifdef AF_LOCAL
67#define HAVE_LOCAL_SOCKETS
68#include <sys/un.h>
69#endif
70#endif
d0d6b7c5
JB
71#endif /* HAVE_SOCKETS */
72
827a1788 73/* TERM is a poor-man's SLIP, used on GNU/Linux. */
1d2c16fa
RS
74#ifdef TERM
75#include <client.h>
76#endif
77
cf32fea0
PR
78/* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */
79#ifdef HAVE_BROKEN_INET_ADDR
79967d5e
RS
80#define IN_ADDR struct in_addr
81#define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1)
82#else
83#define IN_ADDR unsigned long
84#define NUMERIC_ADDR_ERROR (numeric_addr == -1)
85#endif
86
6df54671 87#if defined(BSD_SYSTEM) || defined(STRIDE)
d0d6b7c5 88#include <sys/ioctl.h>
0ad77c54 89#if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
d0d6b7c5
JB
90#include <fcntl.h>
91#endif /* HAVE_PTYS and no O_NDELAY */
6df54671 92#endif /* BSD_SYSTEM || STRIDE */
d0d6b7c5 93
99e3d726
RS
94#ifdef BROKEN_O_NONBLOCK
95#undef O_NONBLOCK
96#endif /* BROKEN_O_NONBLOCK */
97
d0d6b7c5
JB
98#ifdef NEED_BSDTTY
99#include <bsdtty.h>
100#endif
101
161933c7
KS
102/* Can we use SIOCGIFCONF and/or SIOCGIFADDR */
103#ifdef HAVE_SOCKETS
104#if defined(HAVE_SYS_IOCTL_H) && defined(HAVE_NET_IF_H)
105/* sys/ioctl.h may have been included already */
106#ifndef SIOCGIFADDR
107#include <sys/ioctl.h>
108#endif
109#include <net/if.h>
110#endif
111#endif
112
d0d6b7c5
JB
113#ifdef IRIS
114#include <sys/sysmacros.h> /* for "minor" */
115#endif /* not IRIS */
177c0ea7 116
e62cab61
DL
117#ifdef HAVE_SYS_WAIT
118#include <sys/wait.h>
119#endif
d0d6b7c5
JB
120
121#include "systime.h"
36ebaafa 122#include "systty.h"
d0d6b7c5
JB
123
124#include "lisp.h"
125#include "window.h"
126#include "buffer.h"
0fa1789e
KH
127#include "charset.h"
128#include "coding.h"
d0d6b7c5
JB
129#include "process.h"
130#include "termhooks.h"
131#include "termopts.h"
132#include "commands.h"
3ec68006 133#include "keyboard.h"
1dc77cc3 134#include "frame.h"
ececcbec 135#include "blockinput.h"
dfcf069d 136#include "dispextern.h"
e0016554 137#include "composite.h"
30904ab7 138#include "atimer.h"
d0d6b7c5 139
dd2281ae 140Lisp_Object Qprocessp;
dd2a17ab 141Lisp_Object Qrun, Qstop, Qsignal;
e690ca94 142Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
9057ff80
KS
143Lisp_Object Qlocal, Qdatagram;
144Lisp_Object QCname, QCbuffer, QChost, QCservice, QCtype;
e690ca94 145Lisp_Object QClocal, QCremote, QCcoding;
9057ff80 146Lisp_Object QCserver, QCnowait, QCnoquery, QCstop;
faa7db08 147Lisp_Object QCsentinel, QClog, QCoptions, QCplist;
7392e23c 148Lisp_Object QCfilter_multibyte;
6545aada 149Lisp_Object Qlast_nonmenu_event;
3635ecad
JR
150/* QCfamily is declared and initialized in xfaces.c,
151 QCfilter in keyboard.c. */
152extern Lisp_Object QCfamily, QCfilter;
153
d0d6b7c5
JB
154/* Qexit is declared and initialized in eval.c. */
155
e0f712ba
AC
156/* QCfamily is defined in xfaces.c. */
157extern Lisp_Object QCfamily;
158/* QCfilter is defined in keyboard.c. */
159extern Lisp_Object QCfilter;
160
d0d6b7c5 161/* a process object is a network connection when its childp field is neither
365aee82 162 Qt nor Qnil but is instead a property list (KEY VAL ...). */
d0d6b7c5
JB
163
164#ifdef HAVE_SOCKETS
de282a05 165#define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp))
e690ca94 166#define NETCONN1_P(p) (GC_CONSP ((p)->childp))
d0d6b7c5
JB
167#else
168#define NETCONN_P(p) 0
e690ca94 169#define NETCONN1_P(p) 0
d0d6b7c5
JB
170#endif /* HAVE_SOCKETS */
171
172/* Define first descriptor number available for subprocesses. */
173#ifdef VMS
174#define FIRST_PROC_DESC 1
175#else /* Not VMS */
176#define FIRST_PROC_DESC 3
177#endif
178
179/* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
180 testing SIGCHLD. */
181
182#if !defined (SIGCHLD) && defined (SIGCLD)
183#define SIGCHLD SIGCLD
184#endif /* SIGCLD */
185
186#include "syssignal.h"
187
889255b4 188#include "syswait.h"
d0d6b7c5 189
41d03b9a 190extern void set_waiting_for_input P_ ((EMACS_TIME *));
d9e7c622 191extern char *get_operating_system_release ();
41d03b9a 192
3ec68006 193#ifndef USE_CRT_DLL
b062d1fe 194extern int errno;
3ec68006 195#endif
b062d1fe 196#ifdef VMS
d0d6b7c5 197extern char *sys_errlist[];
b062d1fe 198#endif
d0d6b7c5 199
5f0929a7
RS
200#ifndef HAVE_H_ERRNO
201extern int h_errno;
202#endif
203
d0d6b7c5
JB
204/* t means use pty, nil means use a pipe,
205 maybe other values to come. */
dd2281ae 206static Lisp_Object Vprocess_connection_type;
d0d6b7c5
JB
207
208#ifdef SKTPAIR
209#ifndef HAVE_SOCKETS
210#include <sys/socket.h>
211#endif
212#endif /* SKTPAIR */
213
17d02632
KH
214/* These next two vars are non-static since sysdep.c uses them in the
215 emulation of `select'. */
d0d6b7c5 216/* Number of events of change of status of a process. */
17d02632 217int process_tick;
d0d6b7c5 218/* Number of events for which the user or sentinel has been notified. */
17d02632 219int update_tick;
d0d6b7c5 220
dd2a17ab
KS
221/* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
222
223#ifdef BROKEN_NON_BLOCKING_CONNECT
224#undef NON_BLOCKING_CONNECT
225#else
226#ifndef NON_BLOCKING_CONNECT
227#ifdef HAVE_SOCKETS
228#ifdef HAVE_SELECT
229#if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX)
230#if defined (O_NONBLOCK) || defined (O_NDELAY)
231#if defined (EWOULDBLOCK) || defined (EINPROGRESS)
232#define NON_BLOCKING_CONNECT
233#endif /* EWOULDBLOCK || EINPROGRESS */
234#endif /* O_NONBLOCK || O_NDELAY */
235#endif /* HAVE_GETPEERNAME || GNU_LINUX */
236#endif /* HAVE_SELECT */
237#endif /* HAVE_SOCKETS */
238#endif /* NON_BLOCKING_CONNECT */
239#endif /* BROKEN_NON_BLOCKING_CONNECT */
240
e690ca94
KS
241/* Define DATAGRAM_SOCKETS if datagrams can be used safely on
242 this system. We need to read full packets, so we need a
243 "non-destructive" select. So we require either native select,
244 or emulation of select using FIONREAD. */
245
e690ca94
KS
246#ifdef BROKEN_DATAGRAM_SOCKETS
247#undef DATAGRAM_SOCKETS
248#else
249#ifndef DATAGRAM_SOCKETS
250#ifdef HAVE_SOCKETS
251#if defined (HAVE_SELECT) || defined (FIONREAD)
252#if defined (HAVE_SENDTO) && defined (HAVE_RECVFROM) && defined (EMSGSIZE)
253#define DATAGRAM_SOCKETS
254#endif /* HAVE_SENDTO && HAVE_RECVFROM && EMSGSIZE */
255#endif /* HAVE_SELECT || FIONREAD */
256#endif /* HAVE_SOCKETS */
257#endif /* DATAGRAM_SOCKETS */
258#endif /* BROKEN_DATAGRAM_SOCKETS */
259
dd2a17ab
KS
260#ifdef TERM
261#undef NON_BLOCKING_CONNECT
e690ca94 262#undef DATAGRAM_SOCKETS
dd2a17ab
KS
263#endif
264
2d942bfa
KS
265#if !defined (ADAPTIVE_READ_BUFFERING) && !defined (NO_ADAPTIVE_READ_BUFFERING)
266#ifdef EMACS_HAS_USECS
267#define ADAPTIVE_READ_BUFFERING
268#endif
269#endif
270
271#ifdef ADAPTIVE_READ_BUFFERING
272#define READ_OUTPUT_DELAY_INCREMENT 10000
273#define READ_OUTPUT_DELAY_MAX (READ_OUTPUT_DELAY_INCREMENT * 5)
274#define READ_OUTPUT_DELAY_MAX_MAX (READ_OUTPUT_DELAY_INCREMENT * 7)
275
db853b7a
KS
276/* Number of processes which have a non-zero read_output_delay,
277 and therefore might be delayed for adaptive read buffering. */
2d942bfa
KS
278
279static int process_output_delay_count;
280
db853b7a 281/* Non-zero if any process has non-nil read_output_skip. */
2d942bfa
KS
282
283static int process_output_skip;
284
285/* Non-nil means to delay reading process output to improve buffering.
286 A value of t means that delay is reset after each send, any other
db853b7a
KS
287 non-nil value does not reset the delay. A value of nil disables
288 adaptive read buffering completely. */
2d942bfa
KS
289static Lisp_Object Vprocess_adaptive_read_buffering;
290#else
291#define process_output_delay_count 0
292#endif
293
e690ca94 294
5886acf9 295#include "sysselect.h"
d0d6b7c5 296
41d03b9a
GM
297extern int keyboard_bit_set P_ ((SELECT_TYPE *));
298
583dcae4 299/* If we support a window system, turn on the code to poll periodically
44ade2e9 300 to detect C-g. It isn't actually used when doing interrupt input. */
583dcae4 301#ifdef HAVE_WINDOW_SYSTEM
44ade2e9
RS
302#define POLL_FOR_INPUT
303#endif
304
a69281ff 305/* Mask of bits indicating the descriptors that we wait for input on. */
d0d6b7c5 306
dd2281ae
RS
307static SELECT_TYPE input_wait_mask;
308
a69281ff
RS
309/* Mask that excludes keyboard input descriptor (s). */
310
311static SELECT_TYPE non_keyboard_wait_mask;
312
b5dc1c83
RS
313/* Mask that excludes process input descriptor (s). */
314
315static SELECT_TYPE non_process_wait_mask;
316
bad49fc7 317#ifdef NON_BLOCKING_CONNECT
dd2a17ab
KS
318/* Mask of bits indicating the descriptors that we wait for connect to
319 complete on. Once they complete, they are removed from this mask
320 and added to the input_wait_mask and non_keyboard_wait_mask. */
321
322static SELECT_TYPE connect_wait_mask;
323
324/* Number of bits set in connect_wait_mask. */
325static int num_pending_connects;
326
bad49fc7
KS
327#define IF_NON_BLOCKING_CONNECT(s) s
328#else
329#define IF_NON_BLOCKING_CONNECT(s)
330#endif
331
7d0e672e
RS
332/* The largest descriptor currently in use for a process object. */
333static int max_process_desc;
334
a69281ff
RS
335/* The largest descriptor currently in use for keyboard input. */
336static int max_keyboard_desc;
d0d6b7c5 337
dd2281ae
RS
338/* Nonzero means delete a process right away if it exits. */
339static int delete_exited_processes;
d0d6b7c5
JB
340
341/* Indexed by descriptor, gives the process (if any) for that descriptor */
41f3aa98 342Lisp_Object chan_process[MAXDESC];
d0d6b7c5
JB
343
344/* Alist of elements (NAME . PROCESS) */
41f3aa98 345Lisp_Object Vprocess_alist;
d0d6b7c5
JB
346
347/* Buffered-ahead input char from process, indexed by channel.
348 -1 means empty (no char is buffered).
349 Used on sys V where the only way to tell if there is any
350 output from the process is to read at least one char.
351 Always -1 on systems that support FIONREAD. */
352
e98d950b
RS
353/* Don't make static; need to access externally. */
354int proc_buffered_char[MAXDESC];
dd2281ae 355
0fa1789e 356/* Table of `struct coding-system' for each process. */
c7580538
KH
357static struct coding_system *proc_decode_coding_system[MAXDESC];
358static struct coding_system *proc_encode_coding_system[MAXDESC];
0fa1789e 359
e690ca94
KS
360#ifdef DATAGRAM_SOCKETS
361/* Table of `partner address' for datagram sockets. */
362struct sockaddr_and_len {
363 struct sockaddr *sa;
364 int len;
365} datagram_address[MAXDESC];
366#define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
bed9664a 367#define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XINT (XPROCESS (proc)->infd)].sa != 0)
e690ca94
KS
368#else
369#define DATAGRAM_CHAN_P(chan) (0)
370#define DATAGRAM_CONN_P(proc) (0)
371#endif
372
dd2281ae 373static Lisp_Object get_process ();
dd2a17ab 374static void exec_sentinel ();
93b4f699 375
fb4c3627 376extern EMACS_TIME timer_check ();
5de50bfb 377extern int timers_run;
fb4c3627 378
93b4f699
RS
379/* Maximum number of bytes to send to a pty without an eof. */
380static int pty_max_bytes;
3b9a3dfa 381
875e6b94 382#ifdef HAVE_PTYS
e62cab61
DL
383#ifdef HAVE_PTY_H
384#include <pty.h>
385#endif
875e6b94 386/* The file name of the pty opened by allocate_pty. */
3b9a3dfa
RS
387
388static char pty_name[24];
875e6b94 389#endif
d0d6b7c5
JB
390\f
391/* Compute the Lisp form of the process status, p->status, from
392 the numeric status that was returned by `wait'. */
393
f9738840
JB
394Lisp_Object status_convert ();
395
dfcf069d 396void
d0d6b7c5
JB
397update_status (p)
398 struct Lisp_Process *p;
399{
400 union { int i; WAITTYPE wt; } u;
401 u.i = XFASTINT (p->raw_status_low) + (XFASTINT (p->raw_status_high) << 16);
402 p->status = status_convert (u.wt);
403 p->raw_status_low = Qnil;
404 p->raw_status_high = Qnil;
405}
406
177c0ea7 407/* Convert a process status word in Unix format to
d0d6b7c5
JB
408 the list that we use internally. */
409
410Lisp_Object
411status_convert (w)
412 WAITTYPE w;
413{
414 if (WIFSTOPPED (w))
415 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
416 else if (WIFEXITED (w))
417 return Fcons (Qexit, Fcons (make_number (WRETCODE (w)),
418 WCOREDUMP (w) ? Qt : Qnil));
419 else if (WIFSIGNALED (w))
420 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
421 WCOREDUMP (w) ? Qt : Qnil));
422 else
423 return Qrun;
424}
425
426/* Given a status-list, extract the three pieces of information
427 and store them individually through the three pointers. */
428
429void
430decode_status (l, symbol, code, coredump)
431 Lisp_Object l;
432 Lisp_Object *symbol;
433 int *code;
434 int *coredump;
435{
436 Lisp_Object tem;
437
bcd69aea 438 if (SYMBOLP (l))
d0d6b7c5
JB
439 {
440 *symbol = l;
441 *code = 0;
442 *coredump = 0;
443 }
444 else
445 {
70949dac
KR
446 *symbol = XCAR (l);
447 tem = XCDR (l);
448 *code = XFASTINT (XCAR (tem));
449 tem = XCDR (tem);
d0d6b7c5
JB
450 *coredump = !NILP (tem);
451 }
452}
453
454/* Return a string describing a process status list. */
455
116c423c
KS
456static Lisp_Object
457status_message (p)
458 struct Lisp_Process *p;
d0d6b7c5 459{
116c423c 460 Lisp_Object status = p->status;
d0d6b7c5
JB
461 Lisp_Object symbol;
462 int code, coredump;
463 Lisp_Object string, string2;
464
465 decode_status (status, &symbol, &code, &coredump);
466
467 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
468 {
68c45bf0 469 char *signame;
ca9c0567 470 synchronize_system_messages_locale ();
68c45bf0 471 signame = strsignal (code);
b97ad9ea
RS
472 if (signame == 0)
473 signame = "unknown";
474 string = build_string (signame);
d0d6b7c5 475 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
a814cc69 476 SSET (string, 0, DOWNCASE (SREF (string, 0)));
d0d6b7c5
JB
477 return concat2 (string, string2);
478 }
479 else if (EQ (symbol, Qexit))
480 {
116c423c
KS
481 if (NETCONN1_P (p))
482 return build_string (code == 0 ? "deleted\n" : "connection broken by remote peer\n");
d0d6b7c5
JB
483 if (code == 0)
484 return build_string ("finished\n");
f2980264 485 string = Fnumber_to_string (make_number (code));
d0d6b7c5 486 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
e690ca94
KS
487 return concat3 (build_string ("exited abnormally with code "),
488 string, string2);
d0d6b7c5 489 }
dd2a17ab
KS
490 else if (EQ (symbol, Qfailed))
491 {
492 string = Fnumber_to_string (make_number (code));
493 string2 = build_string ("\n");
e690ca94
KS
494 return concat3 (build_string ("failed with code "),
495 string, string2);
dd2a17ab 496 }
d0d6b7c5
JB
497 else
498 return Fcopy_sequence (Fsymbol_name (symbol));
499}
500\f
501#ifdef HAVE_PTYS
d0d6b7c5 502
875e6b94
KH
503/* Open an available pty, returning a file descriptor.
504 Return -1 on failure.
505 The file name of the terminal corresponding to the pty
506 is left in the variable pty_name. */
507
d0d6b7c5
JB
508int
509allocate_pty ()
510{
dfcf069d 511 register int c, i;
d0d6b7c5
JB
512 int fd;
513
514#ifdef PTY_ITERATION
515 PTY_ITERATION
516#else
517 for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
518 for (i = 0; i < 16; i++)
519#endif
520 {
26d7389d 521 struct stat stb; /* Used in some PTY_OPEN. */
d0d6b7c5
JB
522#ifdef PTY_NAME_SPRINTF
523 PTY_NAME_SPRINTF
d0d6b7c5
JB
524#else
525 sprintf (pty_name, "/dev/pty%c%x", c, i);
d0d6b7c5
JB
526#endif /* no PTY_NAME_SPRINTF */
527
4d7c105e
RS
528#ifdef PTY_OPEN
529 PTY_OPEN;
530#else /* no PTY_OPEN */
34967d0f 531 {
34967d0f
SM
532# ifdef IRIS
533 /* Unusual IRIS code */
534 *ptyv = emacs_open ("/dev/ptc", O_RDWR | O_NDELAY, 0);
535 if (fd < 0)
536 return -1;
537 if (fstat (fd, &stb) < 0)
538 return -1;
539# else /* not IRIS */
540 { /* Some systems name their pseudoterminals so that there are gaps in
541 the usual sequence - for example, on HP9000/S700 systems, there
542 are no pseudoterminals with names ending in 'f'. So we wait for
543 three failures in a row before deciding that we've reached the
544 end of the ptys. */
545 int failed_count = 0;
f3d9532b 546
34967d0f
SM
547 if (stat (pty_name, &stb) < 0)
548 {
549 failed_count++;
550 if (failed_count >= 3)
551 return -1;
552 }
553 else
554 failed_count = 0;
32676c08 555 }
34967d0f
SM
556# ifdef O_NONBLOCK
557 fd = emacs_open (pty_name, O_RDWR | O_NONBLOCK, 0);
558# else
559 fd = emacs_open (pty_name, O_RDWR | O_NDELAY, 0);
560# endif
561# endif /* not IRIS */
562 }
4d7c105e 563#endif /* no PTY_OPEN */
d0d6b7c5
JB
564
565 if (fd >= 0)
566 {
567 /* check to make certain that both sides are available
568 this avoids a nasty yet stupid bug in rlogins */
569#ifdef PTY_TTY_NAME_SPRINTF
570 PTY_TTY_NAME_SPRINTF
d0d6b7c5
JB
571#else
572 sprintf (pty_name, "/dev/tty%c%x", c, i);
d0d6b7c5
JB
573#endif /* no PTY_TTY_NAME_SPRINTF */
574#ifndef UNIPLUS
575 if (access (pty_name, 6) != 0)
576 {
68c45bf0 577 emacs_close (fd);
34967d0f 578# if !defined(IRIS) && !defined(__sgi)
d0d6b7c5 579 continue;
34967d0f 580# else
d0d6b7c5 581 return -1;
34967d0f 582# endif /* IRIS */
d0d6b7c5
JB
583 }
584#endif /* not UNIPLUS */
585 setup_pty (fd);
586 return fd;
587 }
588 }
589 return -1;
590}
591#endif /* HAVE_PTYS */
592\f
593Lisp_Object
594make_process (name)
595 Lisp_Object name;
596{
597 register Lisp_Object val, tem, name1;
598 register struct Lisp_Process *p;
599 char suffix[10];
600 register int i;
601
98423852 602 p = allocate_process ();
23d6bb9c 603
1d056e64
KH
604 XSETINT (p->infd, -1);
605 XSETINT (p->outfd, -1);
22719df2
KH
606 XSETFASTINT (p->pid, 0);
607 XSETFASTINT (p->tick, 0);
608 XSETFASTINT (p->update_tick, 0);
d0d6b7c5
JB
609 p->raw_status_low = Qnil;
610 p->raw_status_high = Qnil;
611 p->status = Qrun;
612 p->mark = Fmake_marker ();
613
2d942bfa
KS
614#ifdef ADAPTIVE_READ_BUFFERING
615 p->adaptive_read_buffering = Qnil;
616 XSETFASTINT (p->read_output_delay, 0);
617 p->read_output_skip = Qnil;
618#endif
619
d0d6b7c5
JB
620 /* If name is already in use, modify it until it is unused. */
621
622 name1 = name;
623 for (i = 1; ; i++)
624 {
625 tem = Fget_process (name1);
626 if (NILP (tem)) break;
627 sprintf (suffix, "<%d>", i);
628 name1 = concat2 (name, build_string (suffix));
629 }
630 name = name1;
631 p->name = name;
23d6bb9c 632 XSETPROCESS (val, p);
d0d6b7c5
JB
633 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
634 return val;
635}
636
dfcf069d 637void
d0d6b7c5
JB
638remove_process (proc)
639 register Lisp_Object proc;
640{
641 register Lisp_Object pair;
642
643 pair = Frassq (proc, Vprocess_alist);
644 Vprocess_alist = Fdelq (pair, Vprocess_alist);
d0d6b7c5
JB
645
646 deactivate_process (proc);
647}
03f04413
KH
648
649/* Setup coding systems of PROCESS. */
650
651void
652setup_process_coding_systems (process)
653 Lisp_Object process;
654{
655 struct Lisp_Process *p = XPROCESS (process);
656 int inch = XINT (p->infd);
657 int outch = XINT (p->outfd);
658
20f1ef2e
KH
659 if (inch < 0 || outch < 0)
660 return;
661
03f04413
KH
662 if (!proc_decode_coding_system[inch])
663 proc_decode_coding_system[inch]
664 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
665 setup_coding_system (p->decode_coding_system,
666 proc_decode_coding_system[inch]);
667 if (! NILP (p->filter))
668 {
669 if (NILP (p->filter_multibyte))
670 setup_raw_text_coding_system (proc_decode_coding_system[inch]);
671 }
672 else if (BUFFERP (p->buffer))
673 {
674 if (NILP (XBUFFER (p->buffer)->enable_multibyte_characters))
675 setup_raw_text_coding_system (proc_decode_coding_system[inch]);
676 }
677
678 if (!proc_encode_coding_system[outch])
679 proc_encode_coding_system[outch]
680 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
681 setup_coding_system (p->encode_coding_system,
682 proc_encode_coding_system[outch]);
683}
d0d6b7c5
JB
684\f
685DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
fdb82f93
PJ
686 doc: /* Return t if OBJECT is a process. */)
687 (object)
4ee3e309 688 Lisp_Object object;
d0d6b7c5 689{
4ee3e309 690 return PROCESSP (object) ? Qt : Qnil;
d0d6b7c5
JB
691}
692
693DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
fdb82f93
PJ
694 doc: /* Return the process named NAME, or nil if there is none. */)
695 (name)
d0d6b7c5
JB
696 register Lisp_Object name;
697{
bcd69aea 698 if (PROCESSP (name))
d0d6b7c5 699 return name;
b7826503 700 CHECK_STRING (name);
d0d6b7c5
JB
701 return Fcdr (Fassoc (name, Vprocess_alist));
702}
703
704DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
fdb82f93
PJ
705 doc: /* Return the (or a) process associated with BUFFER.
706BUFFER may be a buffer or the name of one. */)
707 (buffer)
4ee3e309 708 register Lisp_Object buffer;
d0d6b7c5
JB
709{
710 register Lisp_Object buf, tail, proc;
711
4ee3e309
EN
712 if (NILP (buffer)) return Qnil;
713 buf = Fget_buffer (buffer);
d0d6b7c5
JB
714 if (NILP (buf)) return Qnil;
715
716 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
717 {
718 proc = Fcdr (Fcar (tail));
bcd69aea 719 if (PROCESSP (proc) && EQ (XPROCESS (proc)->buffer, buf))
d0d6b7c5
JB
720 return proc;
721 }
722 return Qnil;
723}
724
ebb9e16f
JB
725/* This is how commands for the user decode process arguments. It
726 accepts a process, a process name, a buffer, a buffer name, or nil.
727 Buffers denote the first process in the buffer, and nil denotes the
728 current buffer. */
d0d6b7c5 729
77b221b1 730static Lisp_Object
d0d6b7c5
JB
731get_process (name)
732 register Lisp_Object name;
733{
1619761d
KH
734 register Lisp_Object proc, obj;
735 if (STRINGP (name))
736 {
737 obj = Fget_process (name);
738 if (NILP (obj))
739 obj = Fget_buffer (name);
740 if (NILP (obj))
d5db4077 741 error ("Process %s does not exist", SDATA (name));
1619761d
KH
742 }
743 else if (NILP (name))
744 obj = Fcurrent_buffer ();
d0d6b7c5 745 else
1619761d
KH
746 obj = name;
747
748 /* Now obj should be either a buffer object or a process object.
749 */
750 if (BUFFERP (obj))
d0d6b7c5 751 {
1619761d 752 proc = Fget_buffer_process (obj);
d0d6b7c5 753 if (NILP (proc))
d5db4077 754 error ("Buffer %s has no process", SDATA (XBUFFER (obj)->name));
d0d6b7c5 755 }
d0d6b7c5 756 else
1619761d 757 {
b7826503 758 CHECK_PROCESS (obj);
1619761d
KH
759 proc = obj;
760 }
761 return proc;
d0d6b7c5
JB
762}
763
764DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
fdb82f93
PJ
765 doc: /* Delete PROCESS: kill it and forget about it immediately.
766PROCESS may be a process, a buffer, the name of a process or buffer, or
767nil, indicating the current buffer's process. */)
768 (process)
4ee3e309 769 register Lisp_Object process;
d0d6b7c5 770{
4ee3e309
EN
771 process = get_process (process);
772 XPROCESS (process)->raw_status_low = Qnil;
773 XPROCESS (process)->raw_status_high = Qnil;
774 if (NETCONN_P (process))
d0d6b7c5 775 {
4ee3e309
EN
776 XPROCESS (process)->status = Fcons (Qexit, Fcons (make_number (0), Qnil));
777 XSETINT (XPROCESS (process)->tick, ++process_tick);
116c423c 778 status_notify ();
d0d6b7c5 779 }
4ee3e309 780 else if (XINT (XPROCESS (process)->infd) >= 0)
d0d6b7c5 781 {
4ee3e309 782 Fkill_process (process, Qnil);
d0d6b7c5 783 /* Do this now, since remove_process will make sigchld_handler do nothing. */
177c0ea7 784 XPROCESS (process)->status
d0d6b7c5 785 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
4ee3e309 786 XSETINT (XPROCESS (process)->tick, ++process_tick);
d0d6b7c5
JB
787 status_notify ();
788 }
116c423c 789 remove_process (process);
d0d6b7c5
JB
790 return Qnil;
791}
792\f
793DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
fdb82f93
PJ
794 doc: /* Return the status of PROCESS.
795The returned value is one of the following symbols:
796run -- for a process that is running.
797stop -- for a process stopped but continuable.
798exit -- for a process that has exited.
799signal -- for a process that has got a fatal signal.
800open -- for a network stream connection that is open.
e690ca94 801listen -- for a network stream server that is listening.
fdb82f93 802closed -- for a network stream connection that is closed.
e4984112
KS
803connect -- when waiting for a non-blocking connection to complete.
804failed -- when a non-blocking connection has failed.
fdb82f93
PJ
805nil -- if arg is a process name and no such process exists.
806PROCESS may be a process, a buffer, the name of a process, or
807nil, indicating the current buffer's process. */)
808 (process)
4ee3e309 809 register Lisp_Object process;
d0d6b7c5
JB
810{
811 register struct Lisp_Process *p;
812 register Lisp_Object status;
343f4114 813
4ee3e309
EN
814 if (STRINGP (process))
815 process = Fget_process (process);
343f4114 816 else
4ee3e309 817 process = get_process (process);
343f4114 818
4ee3e309
EN
819 if (NILP (process))
820 return process;
343f4114 821
4ee3e309 822 p = XPROCESS (process);
d0d6b7c5
JB
823 if (!NILP (p->raw_status_low))
824 update_status (p);
825 status = p->status;
bcd69aea 826 if (CONSP (status))
70949dac 827 status = XCAR (status);
e690ca94 828 if (NETCONN1_P (p))
d0d6b7c5 829 {
e690ca94 830 if (EQ (status, Qexit))
d0d6b7c5 831 status = Qclosed;
e690ca94
KS
832 else if (EQ (p->command, Qt))
833 status = Qstop;
834 else if (EQ (status, Qrun))
835 status = Qopen;
d0d6b7c5
JB
836 }
837 return status;
838}
839
840DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
841 1, 1, 0,
fdb82f93
PJ
842 doc: /* Return the exit status of PROCESS or the signal number that killed it.
843If PROCESS has not yet exited or died, return 0. */)
844 (process)
4ee3e309 845 register Lisp_Object process;
d0d6b7c5 846{
b7826503 847 CHECK_PROCESS (process);
4ee3e309
EN
848 if (!NILP (XPROCESS (process)->raw_status_low))
849 update_status (XPROCESS (process));
850 if (CONSP (XPROCESS (process)->status))
70949dac 851 return XCAR (XCDR (XPROCESS (process)->status));
d0d6b7c5
JB
852 return make_number (0);
853}
854
855DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
fdb82f93 856 doc: /* Return the process id of PROCESS.
f3d9532b 857This is the pid of the external process which PROCESS uses or talks to.
fdb82f93
PJ
858For a network connection, this value is nil. */)
859 (process)
4ee3e309 860 register Lisp_Object process;
d0d6b7c5 861{
b7826503 862 CHECK_PROCESS (process);
4ee3e309 863 return XPROCESS (process)->pid;
d0d6b7c5
JB
864}
865
866DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
fdb82f93
PJ
867 doc: /* Return the name of PROCESS, as a string.
868This is the name of the program invoked in PROCESS,
869possibly modified to make it unique among process names. */)
870 (process)
4ee3e309 871 register Lisp_Object process;
d0d6b7c5 872{
b7826503 873 CHECK_PROCESS (process);
4ee3e309 874 return XPROCESS (process)->name;
d0d6b7c5
JB
875}
876
877DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
fdb82f93
PJ
878 doc: /* Return the command that was executed to start PROCESS.
879This is a list of strings, the first string being the program executed
880and the rest of the strings being the arguments given to it.
881For a non-child channel, this is nil. */)
882 (process)
4ee3e309 883 register Lisp_Object process;
d0d6b7c5 884{
b7826503 885 CHECK_PROCESS (process);
4ee3e309 886 return XPROCESS (process)->command;
d0d6b7c5
JB
887}
888
3b9a3dfa 889DEFUN ("process-tty-name", Fprocess_tty_name, Sprocess_tty_name, 1, 1, 0,
fdb82f93
PJ
890 doc: /* Return the name of the terminal PROCESS uses, or nil if none.
891This is the terminal that the process itself reads and writes on,
892not the name of the pty that Emacs uses to talk with that terminal. */)
893 (process)
4ee3e309 894 register Lisp_Object process;
3b9a3dfa 895{
b7826503 896 CHECK_PROCESS (process);
4ee3e309 897 return XPROCESS (process)->tty_name;
3b9a3dfa
RS
898}
899
d0d6b7c5 900DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
fdb82f93
PJ
901 2, 2, 0,
902 doc: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil). */)
903 (process, buffer)
4ee3e309 904 register Lisp_Object process, buffer;
d0d6b7c5 905{
e690ca94
KS
906 struct Lisp_Process *p;
907
b7826503 908 CHECK_PROCESS (process);
d0d6b7c5 909 if (!NILP (buffer))
b7826503 910 CHECK_BUFFER (buffer);
e690ca94
KS
911 p = XPROCESS (process);
912 p->buffer = buffer;
913 if (NETCONN1_P (p))
914 p->childp = Fplist_put (p->childp, QCbuffer, buffer);
03f04413 915 setup_process_coding_systems (process);
d0d6b7c5
JB
916 return buffer;
917}
918
919DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
fdb82f93
PJ
920 1, 1, 0,
921 doc: /* Return the buffer PROCESS is associated with.
922Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
923 (process)
4ee3e309 924 register Lisp_Object process;
d0d6b7c5 925{
b7826503 926 CHECK_PROCESS (process);
4ee3e309 927 return XPROCESS (process)->buffer;
d0d6b7c5
JB
928}
929
930DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
fdb82f93
PJ
931 1, 1, 0,
932 doc: /* Return the marker for the end of the last output from PROCESS. */)
933 (process)
4ee3e309 934 register Lisp_Object process;
d0d6b7c5 935{
b7826503 936 CHECK_PROCESS (process);
4ee3e309 937 return XPROCESS (process)->mark;
d0d6b7c5
JB
938}
939
940DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
fdb82f93
PJ
941 2, 2, 0,
942 doc: /* Give PROCESS the filter function FILTER; nil means no filter.
943t means stop accepting output from the process.
3452df9e
KS
944
945When a process has a filter, its buffer is not used for output.
946Instead, each time it does output, the entire string of output is
177c0ea7 947passed to the filter.
3452df9e 948
fdb82f93 949The filter gets two arguments: the process and the string of output.
3452df9e
KS
950The string argument is normally a multibyte string, except:
951- if the process' input coding system is no-conversion or raw-text,
952 it is a unibyte string (the non-converted input), or else
953- if `default-enable-multibyte-characters' is nil, it is a unibyte
954 string (the result of converting the decoded input multibyte
955 string to unibyte with `string-make-unibyte'). */)
fdb82f93 956 (process, filter)
4ee3e309 957 register Lisp_Object process, filter;
d0d6b7c5 958{
471f86b9 959 struct Lisp_Process *p;
177c0ea7 960
b7826503 961 CHECK_PROCESS (process);
471f86b9
GM
962 p = XPROCESS (process);
963
964 /* Don't signal an error if the process' input file descriptor
965 is closed. This could make debugging Lisp more difficult,
966 for example when doing something like
967
968 (setq process (start-process ...))
969 (debug)
970 (set-process-filter process ...) */
177c0ea7 971
471f86b9 972 if (XINT (p->infd) >= 0)
a69281ff 973 {
e690ca94 974 if (EQ (filter, Qt) && !EQ (p->status, Qlisten))
471f86b9
GM
975 {
976 FD_CLR (XINT (p->infd), &input_wait_mask);
977 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask);
978 }
e690ca94
KS
979 else if (EQ (p->filter, Qt)
980 && !EQ (p->command, Qt)) /* Network process not stopped. */
471f86b9
GM
981 {
982 FD_SET (XINT (p->infd), &input_wait_mask);
983 FD_SET (XINT (p->infd), &non_keyboard_wait_mask);
984 }
a69281ff 985 }
177c0ea7 986
471f86b9 987 p->filter = filter;
e690ca94
KS
988 if (NETCONN1_P (p))
989 p->childp = Fplist_put (p->childp, QCfilter, filter);
03f04413 990 setup_process_coding_systems (process);
d0d6b7c5
JB
991 return filter;
992}
993
994DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
fdb82f93
PJ
995 1, 1, 0,
996 doc: /* Returns the filter function of PROCESS; nil if none.
997See `set-process-filter' for more info on filter functions. */)
998 (process)
4ee3e309 999 register Lisp_Object process;
d0d6b7c5 1000{
b7826503 1001 CHECK_PROCESS (process);
4ee3e309 1002 return XPROCESS (process)->filter;
d0d6b7c5
JB
1003}
1004
1005DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
fdb82f93
PJ
1006 2, 2, 0,
1007 doc: /* Give PROCESS the sentinel SENTINEL; nil for none.
1008The sentinel is called as a function when the process changes state.
1009It gets two arguments: the process, and a string describing the change. */)
1010 (process, sentinel)
4ee3e309 1011 register Lisp_Object process, sentinel;
d0d6b7c5 1012{
2ccf3102
KS
1013 struct Lisp_Process *p;
1014
b7826503 1015 CHECK_PROCESS (process);
2ccf3102
KS
1016 p = XPROCESS (process);
1017
1018 p->sentinel = sentinel;
1019 if (NETCONN1_P (p))
1020 p->childp = Fplist_put (p->childp, QCsentinel, sentinel);
d0d6b7c5
JB
1021 return sentinel;
1022}
1023
1024DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
fdb82f93
PJ
1025 1, 1, 0,
1026 doc: /* Return the sentinel of PROCESS; nil if none.
1027See `set-process-sentinel' for more info on sentinels. */)
1028 (process)
4ee3e309 1029 register Lisp_Object process;
d0d6b7c5 1030{
b7826503 1031 CHECK_PROCESS (process);
4ee3e309 1032 return XPROCESS (process)->sentinel;
d0d6b7c5
JB
1033}
1034
396df322 1035DEFUN ("set-process-window-size", Fset_process_window_size,
fdb82f93
PJ
1036 Sset_process_window_size, 3, 3, 0,
1037 doc: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
1038 (process, height, width)
4ee3e309 1039 register Lisp_Object process, height, width;
396df322 1040{
b7826503
PJ
1041 CHECK_PROCESS (process);
1042 CHECK_NATNUM (height);
1043 CHECK_NATNUM (width);
177c0ea7 1044
989521fd 1045 if (XINT (XPROCESS (process)->infd) < 0
471f86b9
GM
1046 || set_window_size (XINT (XPROCESS (process)->infd),
1047 XINT (height), XINT (width)) <= 0)
396df322
RS
1048 return Qnil;
1049 else
1050 return Qt;
1051}
1052
52a1b894 1053DEFUN ("set-process-inherit-coding-system-flag",
fdb82f93
PJ
1054 Fset_process_inherit_coding_system_flag,
1055 Sset_process_inherit_coding_system_flag, 2, 2, 0,
1056 doc: /* Determine whether buffer of PROCESS will inherit coding-system.
1057If the second argument FLAG is non-nil, then the variable
1058`buffer-file-coding-system' of the buffer associated with PROCESS
1059will be bound to the value of the coding system used to decode
1060the process output.
1061
1062This is useful when the coding system specified for the process buffer
1063leaves either the character code conversion or the end-of-line conversion
1064unspecified, or if the coding system used to decode the process output
1065is more appropriate for saving the process buffer.
1066
1067Binding the variable `inherit-process-coding-system' to non-nil before
1068starting the process is an alternative way of setting the inherit flag
1069for the process which will run. */)
1070 (process, flag)
52a1b894
EZ
1071 register Lisp_Object process, flag;
1072{
b7826503 1073 CHECK_PROCESS (process);
aa91317a 1074 XPROCESS (process)->inherit_coding_system_flag = flag;
52a1b894
EZ
1075 return flag;
1076}
1077
1078DEFUN ("process-inherit-coding-system-flag",
fdb82f93
PJ
1079 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
1080 1, 1, 0,
1081 doc: /* Return the value of inherit-coding-system flag for PROCESS.
1082If this flag is t, `buffer-file-coding-system' of the buffer
1083associated with PROCESS will inherit the coding system used to decode
1084the process output. */)
1085 (process)
52a1b894
EZ
1086 register Lisp_Object process;
1087{
b7826503 1088 CHECK_PROCESS (process);
aa91317a 1089 return XPROCESS (process)->inherit_coding_system_flag;
52a1b894
EZ
1090}
1091
e690ca94
KS
1092DEFUN ("set-process-query-on-exit-flag",
1093 Fset_process_query_on_exit_flag, Sset_process_query_on_exit_flag,
1094 2, 2, 0,
1095 doc: /* Specify if query is needed for PROCESS when Emacs is exited.
f3d9532b 1096If the second argument FLAG is non-nil, Emacs will query the user before
e690ca94
KS
1097exiting if PROCESS is running. */)
1098 (process, flag)
1099 register Lisp_Object process, flag;
d0d6b7c5 1100{
b7826503 1101 CHECK_PROCESS (process);
e690ca94
KS
1102 XPROCESS (process)->kill_without_query = Fnull (flag);
1103 return flag;
d0d6b7c5 1104}
312c9964 1105
e690ca94
KS
1106DEFUN ("process-query-on-exit-flag",
1107 Fprocess_query_on_exit_flag, Sprocess_query_on_exit_flag,
fdb82f93 1108 1, 1, 0,
f3d9532b 1109 doc: /* Return the current value of query-on-exit flag for PROCESS. */)
fdb82f93 1110 (process)
de282a05
RS
1111 register Lisp_Object process;
1112{
b7826503 1113 CHECK_PROCESS (process);
e690ca94
KS
1114 return Fnull (XPROCESS (process)->kill_without_query);
1115}
1116
1117#ifdef DATAGRAM_SOCKETS
1118Lisp_Object Fprocess_datagram_address ();
1119#endif
1120
1121DEFUN ("process-contact", Fprocess_contact, Sprocess_contact,
1122 1, 2, 0,
1123 doc: /* Return the contact info of PROCESS; t for a real child.
1124For a net connection, the value depends on the optional KEY arg.
1125If KEY is nil, value is a cons cell of the form (HOST SERVICE),
1126if KEY is t, the complete contact information for the connection is
1127returned, else the specific value for the keyword KEY is returned.
1128See `make-network-process' for a list of keywords. */)
1129 (process, key)
1130 register Lisp_Object process, key;
1131{
1132 Lisp_Object contact;
1133
1134 CHECK_PROCESS (process);
1135 contact = XPROCESS (process)->childp;
1136
1137#ifdef DATAGRAM_SOCKETS
1138 if (DATAGRAM_CONN_P (process)
1139 && (EQ (key, Qt) || EQ (key, QCremote)))
177c0ea7 1140 contact = Fplist_put (contact, QCremote,
e690ca94
KS
1141 Fprocess_datagram_address (process));
1142#endif
1143
1144 if (!NETCONN_P (process) || EQ (key, Qt))
1145 return contact;
1146 if (NILP (key))
1147 return Fcons (Fplist_get (contact, QChost),
1148 Fcons (Fplist_get (contact, QCservice), Qnil));
1149 return Fplist_get (contact, key);
de282a05
RS
1150}
1151
faa7db08
KS
1152DEFUN ("process-plist", Fprocess_plist, Sprocess_plist,
1153 1, 1, 0,
1154 doc: /* Return the plist of PROCESS. */)
1155 (process)
1156 register Lisp_Object process;
365aee82 1157{
ac4a7584 1158 CHECK_PROCESS (process);
faa7db08 1159 return XPROCESS (process)->plist;
ac4a7584 1160}
365aee82 1161
faa7db08
KS
1162DEFUN ("set-process-plist", Fset_process_plist, Sset_process_plist,
1163 2, 2, 0,
26a086c6 1164 doc: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
faa7db08
KS
1165 (process, plist)
1166 register Lisp_Object process, plist;
ac4a7584 1167{
365aee82 1168 CHECK_PROCESS (process);
faa7db08 1169 CHECK_LIST (plist);
365aee82 1170
faa7db08 1171 XPROCESS (process)->plist = plist;
26a086c6 1172 return plist;
365aee82
KS
1173}
1174
312c9964
RS
1175#if 0 /* Turned off because we don't currently record this info
1176 in the process. Perhaps add it. */
1177DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0,
fdb82f93
PJ
1178 doc: /* Return the connection type of PROCESS.
1179The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1180a socket connection. */)
1181 (process)
312c9964
RS
1182 Lisp_Object process;
1183{
1184 return XPROCESS (process)->type;
1185}
1186#endif
991234f0
KS
1187
1188#ifdef HAVE_SOCKETS
1189DEFUN ("format-network-address", Fformat_network_address, Sformat_network_address,
0dccee41 1190 1, 2, 0,
991234f0 1191 doc: /* Convert network ADDRESS from internal format to a string.
0dccee41
KS
1192If optional second argument OMIT-PORT is non-nil, don't include a port
1193number in the string; in this case, interpret a 4 element vector as an
1194IP address. Returns nil if format of ADDRESS is invalid. */)
1195 (address, omit_port)
1196 Lisp_Object address, omit_port;
991234f0 1197{
991234f0
KS
1198 if (NILP (address))
1199 return Qnil;
1200
1201 if (STRINGP (address)) /* AF_LOCAL */
1202 return address;
1203
1204 if (VECTORP (address)) /* AF_INET */
1205 {
1206 register struct Lisp_Vector *p = XVECTOR (address);
1207 Lisp_Object args[6];
0dccee41 1208 int nargs, i;
991234f0 1209
0dccee41
KS
1210 if (!NILP (omit_port) && (p->size == 4 || p->size == 5))
1211 {
1212 args[0] = build_string ("%d.%d.%d.%d");
1213 nargs = 4;
1214 }
1215 else if (p->size == 5)
1216 {
1217 args[0] = build_string ("%d.%d.%d.%d:%d");
1218 nargs = 5;
1219 }
1220 else
991234f0
KS
1221 return Qnil;
1222
0dccee41
KS
1223 for (i = 0; i < nargs; i++)
1224 args[i+1] = p->contents[i];
1225 return Fformat (nargs+1, args);
991234f0
KS
1226 }
1227
1228 if (CONSP (address))
1229 {
1230 Lisp_Object args[2];
1231 args[0] = build_string ("<Family %d>");
8d2ff840 1232 args[1] = Fcar (address);
991234f0 1233 return Fformat (2, args);
177c0ea7 1234
991234f0
KS
1235 }
1236
1237 return Qnil;
1238}
1239#endif
d0d6b7c5
JB
1240\f
1241Lisp_Object
e690ca94
KS
1242list_processes_1 (query_only)
1243 Lisp_Object query_only;
d0d6b7c5
JB
1244{
1245 register Lisp_Object tail, tem;
1246 Lisp_Object proc, minspace, tem1;
d0d6b7c5 1247 register struct Lisp_Process *p;
e690ca94
KS
1248 char tembuf[300];
1249 int w_proc, w_buffer, w_tty;
1250 Lisp_Object i_status, i_buffer, i_tty, i_command;
1251
1252 w_proc = 4; /* Proc */
1253 w_buffer = 6; /* Buffer */
1254 w_tty = 0; /* Omit if no ttys */
1255
1256 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
1257 {
1258 int i;
1259
1260 proc = Fcdr (Fcar (tail));
1261 p = XPROCESS (proc);
1262 if (NILP (p->childp))
1263 continue;
1264 if (!NILP (query_only) && !NILP (p->kill_without_query))
1265 continue;
1266 if (STRINGP (p->name)
d5db4077 1267 && ( i = SCHARS (p->name), (i > w_proc)))
e690ca94
KS
1268 w_proc = i;
1269 if (!NILP (p->buffer))
1270 {
1271 if (NILP (XBUFFER (p->buffer)->name) && w_buffer < 8)
1272 w_buffer = 8; /* (Killed) */
d5db4077 1273 else if ((i = SCHARS (XBUFFER (p->buffer)->name), (i > w_buffer)))
e690ca94
KS
1274 w_buffer = i;
1275 }
1276 if (STRINGP (p->tty_name)
d5db4077 1277 && (i = SCHARS (p->tty_name), (i > w_tty)))
e690ca94
KS
1278 w_tty = i;
1279 }
1280
1281 XSETFASTINT (i_status, w_proc + 1);
1282 XSETFASTINT (i_buffer, XFASTINT (i_status) + 9);
1283 if (w_tty)
1284 {
1285 XSETFASTINT (i_tty, XFASTINT (i_buffer) + w_buffer + 1);
1286 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_tty + 1);
1287 } else {
1288 i_tty = Qnil;
1289 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_buffer + 1);
1290 }
d0d6b7c5 1291
22719df2 1292 XSETFASTINT (minspace, 1);
d0d6b7c5
JB
1293
1294 set_buffer_internal (XBUFFER (Vstandard_output));
ec2258fa 1295 current_buffer->undo_list = Qt;
d0d6b7c5
JB
1296
1297 current_buffer->truncate_lines = Qt;
1298
e690ca94
KS
1299 write_string ("Proc", -1);
1300 Findent_to (i_status, minspace); write_string ("Status", -1);
1301 Findent_to (i_buffer, minspace); write_string ("Buffer", -1);
1302 if (!NILP (i_tty))
1303 {
1304 Findent_to (i_tty, minspace); write_string ("Tty", -1);
1305 }
1306 Findent_to (i_command, minspace); write_string ("Command", -1);
1307 write_string ("\n", -1);
1308
1309 write_string ("----", -1);
1310 Findent_to (i_status, minspace); write_string ("------", -1);
1311 Findent_to (i_buffer, minspace); write_string ("------", -1);
1312 if (!NILP (i_tty))
1313 {
1314 Findent_to (i_tty, minspace); write_string ("---", -1);
1315 }
1316 Findent_to (i_command, minspace); write_string ("-------", -1);
1317 write_string ("\n", -1);
d0d6b7c5
JB
1318
1319 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
1320 {
1321 Lisp_Object symbol;
1322
1323 proc = Fcdr (Fcar (tail));
1324 p = XPROCESS (proc);
1325 if (NILP (p->childp))
1326 continue;
e690ca94
KS
1327 if (!NILP (query_only) && !NILP (p->kill_without_query))
1328 continue;
d0d6b7c5
JB
1329
1330 Finsert (1, &p->name);
e690ca94 1331 Findent_to (i_status, minspace);
d0d6b7c5
JB
1332
1333 if (!NILP (p->raw_status_low))
1334 update_status (p);
1335 symbol = p->status;
bcd69aea 1336 if (CONSP (p->status))
70949dac 1337 symbol = XCAR (p->status);
d0d6b7c5 1338
177c0ea7 1339
d0d6b7c5
JB
1340 if (EQ (symbol, Qsignal))
1341 {
1342 Lisp_Object tem;
1343 tem = Fcar (Fcdr (p->status));
1344#ifdef VMS
1345 if (XINT (tem) < NSIG)
b0310da4 1346 write_string (sys_errlist [XINT (tem)], -1);
d0d6b7c5
JB
1347 else
1348#endif
1349 Fprinc (symbol, Qnil);
1350 }
e690ca94 1351 else if (NETCONN1_P (p))
d0d6b7c5 1352 {
e690ca94 1353 if (EQ (symbol, Qexit))
d0d6b7c5 1354 write_string ("closed", -1);
e690ca94
KS
1355 else if (EQ (p->command, Qt))
1356 write_string ("stopped", -1);
1357 else if (EQ (symbol, Qrun))
1358 write_string ("open", -1);
d0d6b7c5
JB
1359 else
1360 Fprinc (symbol, Qnil);
1361 }
1362 else
1363 Fprinc (symbol, Qnil);
1364
1365 if (EQ (symbol, Qexit))
1366 {
1367 Lisp_Object tem;
1368 tem = Fcar (Fcdr (p->status));
1369 if (XFASTINT (tem))
1370 {
3162bafa 1371 sprintf (tembuf, " %d", (int) XFASTINT (tem));
d0d6b7c5
JB
1372 write_string (tembuf, -1);
1373 }
1374 }
1375
1376 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
1377 remove_process (proc);
1378
e690ca94 1379 Findent_to (i_buffer, minspace);
d0d6b7c5
JB
1380 if (NILP (p->buffer))
1381 insert_string ("(none)");
1382 else if (NILP (XBUFFER (p->buffer)->name))
1383 insert_string ("(Killed)");
1384 else
1385 Finsert (1, &XBUFFER (p->buffer)->name);
1386
e690ca94
KS
1387 if (!NILP (i_tty))
1388 {
1389 Findent_to (i_tty, minspace);
1390 if (STRINGP (p->tty_name))
1391 Finsert (1, &p->tty_name);
1392 }
a9fde32e 1393
e690ca94 1394 Findent_to (i_command, minspace);
a9fde32e 1395
e690ca94
KS
1396 if (EQ (p->status, Qlisten))
1397 {
1398 Lisp_Object port = Fplist_get (p->childp, QCservice);
1399 if (INTEGERP (port))
1400 port = Fnumber_to_string (port);
991234f0 1401 if (NILP (port))
0dccee41 1402 port = Fformat_network_address (Fplist_get (p->childp, QClocal), Qnil);
e690ca94 1403 sprintf (tembuf, "(network %s server on %s)\n",
bed9664a 1404 (DATAGRAM_CHAN_P (XINT (p->infd)) ? "datagram" : "stream"),
991234f0 1405 (STRINGP (port) ? (char *)SDATA (port) : "?"));
e690ca94
KS
1406 insert_string (tembuf);
1407 }
1408 else if (NETCONN1_P (p))
d0d6b7c5 1409 {
e690ca94
KS
1410 /* For a local socket, there is no host name,
1411 so display service instead. */
1412 Lisp_Object host = Fplist_get (p->childp, QChost);
1413 if (!STRINGP (host))
1414 {
1415 host = Fplist_get (p->childp, QCservice);
1416 if (INTEGERP (host))
1417 host = Fnumber_to_string (host);
1418 }
991234f0 1419 if (NILP (host))
0dccee41 1420 host = Fformat_network_address (Fplist_get (p->childp, QCremote), Qnil);
e690ca94 1421 sprintf (tembuf, "(network %s connection to %s)\n",
bed9664a 1422 (DATAGRAM_CHAN_P (XINT (p->infd)) ? "datagram" : "stream"),
991234f0 1423 (STRINGP (host) ? (char *)SDATA (host) : "?"));
d0d6b7c5
JB
1424 insert_string (tembuf);
1425 }
177c0ea7 1426 else
d0d6b7c5
JB
1427 {
1428 tem = p->command;
1429 while (1)
1430 {
1431 tem1 = Fcar (tem);
1432 Finsert (1, &tem1);
1433 tem = Fcdr (tem);
1434 if (NILP (tem))
1435 break;
1436 insert_string (" ");
1437 }
1438 insert_string ("\n");
1439 }
1440 }
1441 return Qnil;
1442}
1443
e690ca94 1444DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 1, "P",
fdb82f93 1445 doc: /* Display a list of all processes.
e690ca94
KS
1446If optional argument QUERY-ONLY is non-nil, only processes with
1447the query-on-exit flag set will be listed.
fdb82f93
PJ
1448Any process listed as exited or signaled is actually eliminated
1449after the listing is made. */)
e690ca94
KS
1450 (query_only)
1451 Lisp_Object query_only;
d0d6b7c5
JB
1452{
1453 internal_with_output_to_temp_buffer ("*Process List*",
e690ca94 1454 list_processes_1, query_only);
d0d6b7c5
JB
1455 return Qnil;
1456}
1457
1458DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
fdb82f93
PJ
1459 doc: /* Return a list of all processes. */)
1460 ()
d0d6b7c5
JB
1461{
1462 return Fmapcar (Qcdr, Vprocess_alist);
1463}
1464\f
b0310da4
JB
1465/* Starting asynchronous inferior processes. */
1466
1467static Lisp_Object start_process_unwind ();
1468
d0d6b7c5 1469DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
fdb82f93
PJ
1470 doc: /* Start a program in a subprocess. Return the process object for it.
1471NAME is name for process. It is modified if necessary to make it unique.
553acde5 1472BUFFER is the buffer (or buffer name) to associate with the process.
fdb82f93
PJ
1473 Process output goes at end of that buffer, unless you specify
1474 an output stream or filter function to handle the output.
1475 BUFFER may be also nil, meaning that this process is not associated
1476 with any buffer.
553acde5 1477PROGRAM is the program file name. It is searched for in PATH.
3ecdf100 1478Remaining arguments are strings to give program as arguments.
320aebc9 1479
3ecdf100 1480usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
fdb82f93 1481 (nargs, args)
d0d6b7c5
JB
1482 int nargs;
1483 register Lisp_Object *args;
1484{
1e30af70 1485 Lisp_Object buffer, name, program, proc, current_dir, tem;
d0d6b7c5
JB
1486#ifdef VMS
1487 register unsigned char *new_argv;
1488 int len;
1489#else
1490 register unsigned char **new_argv;
1491#endif
1492 register int i;
aed13378 1493 int count = SPECPDL_INDEX ();
d0d6b7c5
JB
1494
1495 buffer = args[1];
1496 if (!NILP (buffer))
1497 buffer = Fget_buffer_create (buffer);
1498
1e30af70
JB
1499 /* Make sure that the child will be able to chdir to the current
1500 buffer's current directory, or its unhandled equivalent. We
1501 can't just have the child check for an error when it does the
1502 chdir, since it's in a vfork.
1503
1504 We have to GCPRO around this because Fexpand_file_name and
1505 Funhandled_file_name_directory might call a file name handling
1506 function. The argument list is protected by the caller, so all
1507 we really have to worry about is buffer. */
1508 {
1509 struct gcpro gcpro1, gcpro2;
1510
1511 current_dir = current_buffer->directory;
1512
1513 GCPRO2 (buffer, current_dir);
1514
177c0ea7 1515 current_dir
7af71e17
RS
1516 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir),
1517 Qnil);
1e30af70
JB
1518 if (NILP (Ffile_accessible_directory_p (current_dir)))
1519 report_file_error ("Setting current directory",
1520 Fcons (current_buffer->directory, Qnil));
1521
1522 UNGCPRO;
1523 }
1524
d0d6b7c5 1525 name = args[0];
b7826503 1526 CHECK_STRING (name);
d0d6b7c5
JB
1527
1528 program = args[2];
1529
b7826503 1530 CHECK_STRING (program);
d0d6b7c5 1531
d0d6b7c5 1532 proc = make_process (name);
b0310da4
JB
1533 /* If an error occurs and we can't start the process, we want to
1534 remove it from the process list. This means that each error
1535 check in create_process doesn't need to call remove_process
1536 itself; it's all taken care of here. */
1537 record_unwind_protect (start_process_unwind, proc);
d0d6b7c5
JB
1538
1539 XPROCESS (proc)->childp = Qt;
faa7db08 1540 XPROCESS (proc)->plist = Qnil;
d0d6b7c5
JB
1541 XPROCESS (proc)->buffer = buffer;
1542 XPROCESS (proc)->sentinel = Qnil;
1543 XPROCESS (proc)->filter = Qnil;
03f04413
KH
1544 XPROCESS (proc)->filter_multibyte
1545 = buffer_defaults.enable_multibyte_characters;
d0d6b7c5
JB
1546 XPROCESS (proc)->command = Flist (nargs - 2, args + 2);
1547
2d942bfa
KS
1548#ifdef ADAPTIVE_READ_BUFFERING
1549 XPROCESS (proc)->adaptive_read_buffering = Vprocess_adaptive_read_buffering;
1550#endif
1551
7af71e17
RS
1552 /* Make the process marker point into the process buffer (if any). */
1553 if (!NILP (buffer))
d8a2934e
RS
1554 set_marker_both (XPROCESS (proc)->mark, buffer,
1555 BUF_ZV (XBUFFER (buffer)),
1556 BUF_ZV_BYTE (XBUFFER (buffer)));
7af71e17 1557
67918941 1558 {
d5d4ae71
KH
1559 /* Decide coding systems for communicating with the process. Here
1560 we don't setup the structure coding_system nor pay attention to
1561 unibyte mode. They are done in create_process. */
1562
67918941
RS
1563 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1564 Lisp_Object coding_systems = Qt;
1565 Lisp_Object val, *args2;
a4a37e65 1566 struct gcpro gcpro1, gcpro2;
67918941 1567
d5d4ae71
KH
1568 val = Vcoding_system_for_read;
1569 if (NILP (val))
67918941
RS
1570 {
1571 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
1572 args2[0] = Qstart_process;
1573 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
a4a37e65 1574 GCPRO2 (proc, current_dir);
67918941
RS
1575 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1576 UNGCPRO;
1577 if (CONSP (coding_systems))
70949dac 1578 val = XCAR (coding_systems);
67918941 1579 else if (CONSP (Vdefault_process_coding_system))
70949dac 1580 val = XCAR (Vdefault_process_coding_system);
67918941
RS
1581 }
1582 XPROCESS (proc)->decode_coding_system = val;
1583
d5d4ae71
KH
1584 val = Vcoding_system_for_write;
1585 if (NILP (val))
67918941
RS
1586 {
1587 if (EQ (coding_systems, Qt))
1588 {
1589 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof args2);
1590 args2[0] = Qstart_process;
1591 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
a4a37e65 1592 GCPRO2 (proc, current_dir);
67918941
RS
1593 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1594 UNGCPRO;
1595 }
1596 if (CONSP (coding_systems))
70949dac 1597 val = XCDR (coding_systems);
67918941 1598 else if (CONSP (Vdefault_process_coding_system))
70949dac 1599 val = XCDR (Vdefault_process_coding_system);
67918941
RS
1600 }
1601 XPROCESS (proc)->encode_coding_system = val;
1602 }
0fa1789e 1603
a4a37e65
KH
1604#ifdef VMS
1605 /* Make a one member argv with all args concatenated
1606 together separated by a blank. */
d5db4077 1607 len = SBYTES (program) + 2;
a4a37e65
KH
1608 for (i = 3; i < nargs; i++)
1609 {
1610 tem = args[i];
b7826503 1611 CHECK_STRING (tem);
d5db4077 1612 len += SBYTES (tem) + 1; /* count the blank */
a4a37e65
KH
1613 }
1614 new_argv = (unsigned char *) alloca (len);
d5db4077 1615 strcpy (new_argv, SDATA (program));
a4a37e65
KH
1616 for (i = 3; i < nargs; i++)
1617 {
1618 tem = args[i];
b7826503 1619 CHECK_STRING (tem);
a4a37e65 1620 strcat (new_argv, " ");
d5db4077 1621 strcat (new_argv, SDATA (tem));
a4a37e65
KH
1622 }
1623 /* Need to add code here to check for program existence on VMS */
177c0ea7 1624
a4a37e65
KH
1625#else /* not VMS */
1626 new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *));
1627
ed30cf85
RS
1628 /* If program file name is not absolute, search our path for it.
1629 Put the name we will really use in TEM. */
d5db4077
KR
1630 if (!IS_DIRECTORY_SEP (SREF (program, 0))
1631 && !(SCHARS (program) > 1
1632 && IS_DEVICE_SEP (SREF (program, 1))))
a4a37e65
KH
1633 {
1634 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1635
1636 tem = Qnil;
1637 GCPRO4 (name, program, buffer, current_dir);
cc4db0c7 1638 openp (Vexec_path, program, Vexec_suffixes, &tem, make_number (X_OK));
a4a37e65
KH
1639 UNGCPRO;
1640 if (NILP (tem))
1641 report_file_error ("Searching for program", Fcons (program, Qnil));
1642 tem = Fexpand_file_name (tem, Qnil);
a4a37e65
KH
1643 }
1644 else
1645 {
1646 if (!NILP (Ffile_directory_p (program)))
1647 error ("Specified program for new process is a directory");
ed30cf85 1648 tem = program;
a4a37e65
KH
1649 }
1650
ed30cf85
RS
1651 /* If program file name starts with /: for quoting a magic name,
1652 discard that. */
1653 if (SBYTES (tem) > 2 && SREF (tem, 0) == '/'
1654 && SREF (tem, 1) == ':')
1655 tem = Fsubstring (tem, make_number (2), Qnil);
1656
1657 /* Encode the file name and put it in NEW_ARGV.
1658 That's where the child will use it to execute the program. */
1659 tem = ENCODE_FILE (tem);
1660 new_argv[0] = SDATA (tem);
1661
a4a37e65
KH
1662 /* Here we encode arguments by the coding system used for sending
1663 data to the process. We don't support using different coding
1664 systems for encoding arguments and for encoding data sent to the
1665 process. */
1666
1667 for (i = 3; i < nargs; i++)
1668 {
1669 tem = args[i];
b7826503 1670 CHECK_STRING (tem);
a4a37e65
KH
1671 if (STRING_MULTIBYTE (tem))
1672 tem = (code_convert_string_norecord
1673 (tem, XPROCESS (proc)->encode_coding_system, 1));
d5db4077 1674 new_argv[i - 2] = SDATA (tem);
a4a37e65
KH
1675 }
1676 new_argv[i - 2] = 0;
1677#endif /* not VMS */
1678
0fa1789e 1679 XPROCESS (proc)->decoding_buf = make_uninit_string (0);
e7fbaa65 1680 XPROCESS (proc)->decoding_carryover = make_number (0);
0fa1789e 1681 XPROCESS (proc)->encoding_buf = make_uninit_string (0);
e7fbaa65 1682 XPROCESS (proc)->encoding_carryover = make_number (0);
0fa1789e 1683
52a1b894 1684 XPROCESS (proc)->inherit_coding_system_flag
aa91317a
RS
1685 = (NILP (buffer) || !inherit_process_coding_system
1686 ? Qnil : Qt);
52a1b894 1687
6b53bb85 1688 create_process (proc, (char **) new_argv, current_dir);
d0d6b7c5 1689
b0310da4 1690 return unbind_to (count, proc);
d0d6b7c5
JB
1691}
1692
b0310da4 1693/* This function is the unwind_protect form for Fstart_process. If
8e6208c5 1694 PROC doesn't have its pid set, then we know someone has signaled
b0310da4
JB
1695 an error and the process wasn't started successfully, so we should
1696 remove it from the process list. */
1697static Lisp_Object
1698start_process_unwind (proc)
1699 Lisp_Object proc;
1700{
bcd69aea 1701 if (!PROCESSP (proc))
b0310da4
JB
1702 abort ();
1703
1704 /* Was PROC started successfully? */
188d6c4e 1705 if (XINT (XPROCESS (proc)->pid) <= 0)
b0310da4
JB
1706 remove_process (proc);
1707
1708 return Qnil;
1709}
1710
30904ab7
GM
1711void
1712create_process_1 (timer)
1713 struct atimer *timer;
d0d6b7c5 1714{
30904ab7 1715 /* Nothing to do. */
d0d6b7c5
JB
1716}
1717
30904ab7 1718
d0d6b7c5
JB
1719#if 0 /* This doesn't work; see the note before sigchld_handler. */
1720#ifdef USG
1721#ifdef SIGCHLD
1722/* Mimic blocking of signals on system V, which doesn't really have it. */
1723
1724/* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1725int sigchld_deferred;
1726
1727SIGTYPE
1728create_process_sigchld ()
1729{
1730 signal (SIGCHLD, create_process_sigchld);
1731
1732 sigchld_deferred = 1;
1733}
1734#endif
1735#endif
1736#endif
1737
1738#ifndef VMS /* VMS version of this function is in vmsproc.c. */
6b53bb85 1739void
1e30af70 1740create_process (process, new_argv, current_dir)
d0d6b7c5
JB
1741 Lisp_Object process;
1742 char **new_argv;
1e30af70 1743 Lisp_Object current_dir;
d0d6b7c5 1744{
ecd1f654 1745 int pid, inchannel, outchannel;
d0d6b7c5 1746 int sv[2];
0dc70c33
KH
1747#ifdef POSIX_SIGNALS
1748 sigset_t procmask;
1749 sigset_t blocked;
1750 struct sigaction sigint_action;
1751 struct sigaction sigquit_action;
1752#ifdef AIX
1753 struct sigaction sighup_action;
1754#endif
1755#else /* !POSIX_SIGNALS */
41d03b9a 1756#if 0
d0d6b7c5
JB
1757#ifdef SIGCHLD
1758 SIGTYPE (*sigchld)();
1759#endif
41d03b9a 1760#endif /* 0 */
0dc70c33 1761#endif /* !POSIX_SIGNALS */
ecd1f654
KH
1762 /* Use volatile to protect variables from being clobbered by longjmp. */
1763 volatile int forkin, forkout;
1764 volatile int pty_flag = 0;
3ec68006 1765#ifndef USE_CRT_DLL
d0d6b7c5 1766 extern char **environ;
3ec68006 1767#endif
d0d6b7c5 1768
d0d6b7c5
JB
1769 inchannel = outchannel = -1;
1770
1771#ifdef HAVE_PTYS
fe45da4e 1772 if (!NILP (Vprocess_connection_type))
d0d6b7c5
JB
1773 outchannel = inchannel = allocate_pty ();
1774
d0d6b7c5
JB
1775 if (inchannel >= 0)
1776 {
2af70a0c
RS
1777#if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1778 /* On most USG systems it does not work to open the pty's tty here,
1779 then close it and reopen it in the child. */
d0d6b7c5
JB
1780#ifdef O_NOCTTY
1781 /* Don't let this terminal become our controlling terminal
1782 (in case we don't have one). */
68c45bf0 1783 forkout = forkin = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
d0d6b7c5 1784#else
68c45bf0 1785 forkout = forkin = emacs_open (pty_name, O_RDWR, 0);
d0d6b7c5
JB
1786#endif
1787 if (forkin < 0)
1788 report_file_error ("Opening pty", Qnil);
1789#else
1790 forkin = forkout = -1;
2af70a0c 1791#endif /* not USG, or USG_SUBTTY_WORKS */
d0d6b7c5
JB
1792 pty_flag = 1;
1793 }
1794 else
1795#endif /* HAVE_PTYS */
1796#ifdef SKTPAIR
1797 {
1798 if (socketpair (AF_UNIX, SOCK_STREAM, 0, sv) < 0)
1799 report_file_error ("Opening socketpair", Qnil);
1800 outchannel = inchannel = sv[0];
1801 forkout = forkin = sv[1];
1802 }
1803#else /* not SKTPAIR */
1804 {
fc14013c
KH
1805 int tem;
1806 tem = pipe (sv);
1807 if (tem < 0)
1808 report_file_error ("Creating pipe", Qnil);
d0d6b7c5
JB
1809 inchannel = sv[0];
1810 forkout = sv[1];
fc14013c
KH
1811 tem = pipe (sv);
1812 if (tem < 0)
1813 {
68c45bf0
PE
1814 emacs_close (inchannel);
1815 emacs_close (forkout);
fc14013c
KH
1816 report_file_error ("Creating pipe", Qnil);
1817 }
d0d6b7c5
JB
1818 outchannel = sv[1];
1819 forkin = sv[0];
1820 }
1821#endif /* not SKTPAIR */
1822
1823#if 0
1824 /* Replaced by close_process_descs */
1825 set_exclusive_use (inchannel);
1826 set_exclusive_use (outchannel);
1827#endif
1828
1829/* Stride people say it's a mystery why this is needed
1830 as well as the O_NDELAY, but that it fails without this. */
1831#if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS))
1832 {
1833 int one = 1;
1834 ioctl (inchannel, FIONBIO, &one);
1835 }
1836#endif
1837
1838#ifdef O_NONBLOCK
1839 fcntl (inchannel, F_SETFL, O_NONBLOCK);
03832893 1840 fcntl (outchannel, F_SETFL, O_NONBLOCK);
d0d6b7c5
JB
1841#else
1842#ifdef O_NDELAY
1843 fcntl (inchannel, F_SETFL, O_NDELAY);
03832893 1844 fcntl (outchannel, F_SETFL, O_NDELAY);
d0d6b7c5
JB
1845#endif
1846#endif
1847
1848 /* Record this as an active process, with its channels.
1849 As a result, child_setup will close Emacs's side of the pipes. */
1850 chan_process[inchannel] = process;
1d056e64
KH
1851 XSETINT (XPROCESS (process)->infd, inchannel);
1852 XSETINT (XPROCESS (process)->outfd, outchannel);
16782258
JD
1853
1854 /* Previously we recorded the tty descriptor used in the subprocess.
1855 It was only used for getting the foreground tty process, so now
1856 we just reopen the device (see emacs_get_tty_pgrp) as this is
1857 more portable (see USG_SUBTTY_WORKS above). */
1858
d0d6b7c5
JB
1859 XPROCESS (process)->pty_flag = (pty_flag ? Qt : Qnil);
1860 XPROCESS (process)->status = Qrun;
03f04413 1861 setup_process_coding_systems (process);
d0d6b7c5
JB
1862
1863 /* Delay interrupts until we have a chance to store
1864 the new fork's pid in its process structure */
0dc70c33
KH
1865#ifdef POSIX_SIGNALS
1866 sigemptyset (&blocked);
1867#ifdef SIGCHLD
1868 sigaddset (&blocked, SIGCHLD);
1869#endif
351e611f 1870#ifdef HAVE_WORKING_VFORK
0dc70c33
KH
1871 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
1872 this sets the parent's signal handlers as well as the child's.
1873 So delay all interrupts whose handlers the child might munge,
1874 and record the current handlers so they can be restored later. */
1875 sigaddset (&blocked, SIGINT ); sigaction (SIGINT , 0, &sigint_action );
1876 sigaddset (&blocked, SIGQUIT); sigaction (SIGQUIT, 0, &sigquit_action);
1877#ifdef AIX
1878 sigaddset (&blocked, SIGHUP ); sigaction (SIGHUP , 0, &sighup_action );
1879#endif
351e611f 1880#endif /* HAVE_WORKING_VFORK */
0dc70c33
KH
1881 sigprocmask (SIG_BLOCK, &blocked, &procmask);
1882#else /* !POSIX_SIGNALS */
d0d6b7c5
JB
1883#ifdef SIGCHLD
1884#ifdef BSD4_1
1885 sighold (SIGCHLD);
1886#else /* not BSD4_1 */
6df54671 1887#if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
d0d6b7c5
JB
1888 sigsetmask (sigmask (SIGCHLD));
1889#else /* ordinary USG */
1890#if 0
1891 sigchld_deferred = 0;
1892 sigchld = signal (SIGCHLD, create_process_sigchld);
1893#endif
1894#endif /* ordinary USG */
1895#endif /* not BSD4_1 */
1896#endif /* SIGCHLD */
0dc70c33 1897#endif /* !POSIX_SIGNALS */
d0d6b7c5 1898
3081bf8d 1899 FD_SET (inchannel, &input_wait_mask);
a69281ff 1900 FD_SET (inchannel, &non_keyboard_wait_mask);
3081bf8d
KH
1901 if (inchannel > max_process_desc)
1902 max_process_desc = inchannel;
1903
d0d6b7c5
JB
1904 /* Until we store the proper pid, enable sigchld_handler
1905 to recognize an unknown pid as standing for this process.
1906 It is very important not to let this `marker' value stay
1907 in the table after this function has returned; if it does
1908 it might cause call-process to hang and subsequent asynchronous
1909 processes to get their return values scrambled. */
1910 XSETINT (XPROCESS (process)->pid, -1);
1911
ececcbec 1912 BLOCK_INPUT;
177c0ea7 1913
d0d6b7c5
JB
1914 {
1915 /* child_setup must clobber environ on systems with true vfork.
1916 Protect it from permanent change. */
1917 char **save_environ = environ;
1918
14dc6093 1919 current_dir = ENCODE_FILE (current_dir);
a932f187 1920
e98d950b 1921#ifndef WINDOWSNT
d0d6b7c5
JB
1922 pid = vfork ();
1923 if (pid == 0)
e98d950b 1924#endif /* not WINDOWSNT */
d0d6b7c5
JB
1925 {
1926 int xforkin = forkin;
1927 int xforkout = forkout;
1928
1929#if 0 /* This was probably a mistake--it duplicates code later on,
1930 but fails to handle all the cases. */
1931 /* Make sure SIGCHLD is not blocked in the child. */
1932 sigsetmask (SIGEMPTYMASK);
1933#endif
1934
1935 /* Make the pty be the controlling terminal of the process. */
1936#ifdef HAVE_PTYS
1937 /* First, disconnect its current controlling terminal. */
1938#ifdef HAVE_SETSID
7ce48618
RS
1939 /* We tried doing setsid only if pty_flag, but it caused
1940 process_set_signal to fail on SGI when using a pipe. */
1941 setsid ();
ce4c9c90 1942 /* Make the pty's terminal the controlling terminal. */
084fd64a 1943 if (pty_flag)
39e9ebcd 1944 {
39e9ebcd
RS
1945#ifdef TIOCSCTTY
1946 /* We ignore the return value
1947 because faith@cs.unc.edu says that is necessary on Linux. */
1948 ioctl (xforkin, TIOCSCTTY, 0);
ce4c9c90 1949#endif
39e9ebcd 1950 }
d0d6b7c5 1951#else /* not HAVE_SETSID */
c14e53a4 1952#ifdef USG
000ab717 1953 /* It's very important to call setpgrp here and no time
d0d6b7c5
JB
1954 afterwards. Otherwise, we lose our controlling tty which
1955 is set when we open the pty. */
1956 setpgrp ();
1957#endif /* USG */
1958#endif /* not HAVE_SETSID */
9bcf8ec6
KH
1959#if defined (HAVE_TERMIOS) && defined (LDISC1)
1960 if (pty_flag && xforkin >= 0)
1961 {
1962 struct termios t;
1963 tcgetattr (xforkin, &t);
1964 t.c_lflag = LDISC1;
1965 if (tcsetattr (xforkin, TCSANOW, &t) < 0)
68c45bf0 1966 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
9bcf8ec6
KH
1967 }
1968#else
aafadd9f 1969#if defined (NTTYDISC) && defined (TIOCSETD)
ff773a4e 1970 if (pty_flag && xforkin >= 0)
afc549fd
RS
1971 {
1972 /* Use new line discipline. */
1973 int ldisc = NTTYDISC;
4458f555 1974 ioctl (xforkin, TIOCSETD, &ldisc);
afc549fd 1975 }
000ab717 1976#endif
9bcf8ec6 1977#endif
177c0ea7 1978#ifdef TIOCNOTTY
d0d6b7c5
JB
1979 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1980 can do TIOCSPGRP only to the process's controlling tty. */
1981 if (pty_flag)
1982 {
177c0ea7 1983 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
d0d6b7c5 1984 I can't test it since I don't have 4.3. */
68c45bf0 1985 int j = emacs_open ("/dev/tty", O_RDWR, 0);
d0d6b7c5 1986 ioctl (j, TIOCNOTTY, 0);
68c45bf0 1987 emacs_close (j);
5a570e37 1988#ifndef USG
d0d6b7c5
JB
1989 /* In order to get a controlling terminal on some versions
1990 of BSD, it is necessary to put the process in pgrp 0
1991 before it opens the terminal. */
99c1aeca 1992#ifdef HAVE_SETPGID
3ea1d291
RS
1993 setpgid (0, 0);
1994#else
d0d6b7c5 1995 setpgrp (0, 0);
3ea1d291 1996#endif
d0d6b7c5
JB
1997#endif
1998 }
1999#endif /* TIOCNOTTY */
2000
99153b9e 2001#if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
d0d6b7c5 2002/*** There is a suggestion that this ought to be a
99153b9e
RS
2003 conditional on TIOCSPGRP,
2004 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
2005 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
2006 that system does seem to need this code, even though
2007 both HAVE_SETSID and TIOCSCTTY are defined. */
d0d6b7c5
JB
2008 /* Now close the pty (if we had it open) and reopen it.
2009 This makes the pty the controlling terminal of the subprocess. */
2010 if (pty_flag)
2011 {
99e3d726
RS
2012#ifdef SET_CHILD_PTY_PGRP
2013 int pgrp = getpid ();
2014#endif
2015
68c45bf0
PE
2016 /* I wonder if emacs_close (emacs_open (pty_name, ...))
2017 would work? */
d0d6b7c5 2018 if (xforkin >= 0)
68c45bf0
PE
2019 emacs_close (xforkin);
2020 xforkout = xforkin = emacs_open (pty_name, O_RDWR, 0);
d0d6b7c5 2021
4aa54ba8
RS
2022 if (xforkin < 0)
2023 {
68c45bf0
PE
2024 emacs_write (1, "Couldn't open the pty terminal ", 31);
2025 emacs_write (1, pty_name, strlen (pty_name));
2026 emacs_write (1, "\n", 1);
4aa54ba8
RS
2027 _exit (1);
2028 }
2029
99e3d726
RS
2030#ifdef SET_CHILD_PTY_PGRP
2031 ioctl (xforkin, TIOCSPGRP, &pgrp);
2032 ioctl (xforkout, TIOCSPGRP, &pgrp);
2033#endif
d0d6b7c5 2034 }
99153b9e 2035#endif /* not UNIPLUS and not RTU and not DONT_REOPEN_PTY */
e9bf058b 2036
d0d6b7c5 2037#ifdef SETUP_SLAVE_PTY
13a72104
RS
2038 if (pty_flag)
2039 {
2040 SETUP_SLAVE_PTY;
2041 }
d0d6b7c5
JB
2042#endif /* SETUP_SLAVE_PTY */
2043#ifdef AIX
2044 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
2045 Now reenable it in the child, so it will die when we want it to. */
2046 if (pty_flag)
2047 signal (SIGHUP, SIG_DFL);
2048#endif
2049#endif /* HAVE_PTYS */
2050
0dc70c33
KH
2051 signal (SIGINT, SIG_DFL);
2052 signal (SIGQUIT, SIG_DFL);
2053
2054 /* Stop blocking signals in the child. */
2055#ifdef POSIX_SIGNALS
2056 sigprocmask (SIG_SETMASK, &procmask, 0);
2057#else /* !POSIX_SIGNALS */
d0d6b7c5
JB
2058#ifdef SIGCHLD
2059#ifdef BSD4_1
2060 sigrelse (SIGCHLD);
2061#else /* not BSD4_1 */
6df54671 2062#if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
d0d6b7c5
JB
2063 sigsetmask (SIGEMPTYMASK);
2064#else /* ordinary USG */
63528b78 2065#if 0
d0d6b7c5 2066 signal (SIGCHLD, sigchld);
63528b78 2067#endif
d0d6b7c5
JB
2068#endif /* ordinary USG */
2069#endif /* not BSD4_1 */
2070#endif /* SIGCHLD */
0dc70c33 2071#endif /* !POSIX_SIGNALS */
5e7e1da2 2072
ab01d0a8
RS
2073 if (pty_flag)
2074 child_setup_tty (xforkout);
e98d950b
RS
2075#ifdef WINDOWSNT
2076 pid = child_setup (xforkin, xforkout, xforkout,
2077 new_argv, 1, current_dir);
177c0ea7 2078#else /* not WINDOWSNT */
d0d6b7c5 2079 child_setup (xforkin, xforkout, xforkout,
e065a56e 2080 new_argv, 1, current_dir);
e98d950b 2081#endif /* not WINDOWSNT */
d0d6b7c5
JB
2082 }
2083 environ = save_environ;
2084 }
2085
ececcbec
RS
2086 UNBLOCK_INPUT;
2087
4a127b3b 2088 /* This runs in the Emacs process. */
d0d6b7c5 2089 if (pid < 0)
6311cf58
RS
2090 {
2091 if (forkin >= 0)
68c45bf0 2092 emacs_close (forkin);
6311cf58 2093 if (forkin != forkout && forkout >= 0)
68c45bf0 2094 emacs_close (forkout);
6311cf58 2095 }
4a127b3b
KH
2096 else
2097 {
2098 /* vfork succeeded. */
2099 XSETFASTINT (XPROCESS (process)->pid, pid);
d0d6b7c5 2100
e98d950b 2101#ifdef WINDOWSNT
4a127b3b 2102 register_child (pid, inchannel);
e98d950b
RS
2103#endif /* WINDOWSNT */
2104
4a127b3b
KH
2105 /* If the subfork execv fails, and it exits,
2106 this close hangs. I don't know why.
2107 So have an interrupt jar it loose. */
30904ab7
GM
2108 {
2109 struct atimer *timer;
2110 EMACS_TIME offset;
177c0ea7 2111
30904ab7
GM
2112 stop_polling ();
2113 EMACS_SET_SECS_USECS (offset, 1, 0);
2114 timer = start_atimer (ATIMER_RELATIVE, offset, create_process_1, 0);
177c0ea7 2115
30904ab7
GM
2116 if (forkin >= 0)
2117 emacs_close (forkin);
2118
2119 cancel_atimer (timer);
2120 start_polling ();
2121 }
177c0ea7 2122
4a127b3b 2123 if (forkin != forkout && forkout >= 0)
68c45bf0 2124 emacs_close (forkout);
d0d6b7c5 2125
875e6b94 2126#ifdef HAVE_PTYS
4a127b3b
KH
2127 if (pty_flag)
2128 XPROCESS (process)->tty_name = build_string (pty_name);
2129 else
875e6b94 2130#endif
4a127b3b
KH
2131 XPROCESS (process)->tty_name = Qnil;
2132 }
3b9a3dfa 2133
4a127b3b
KH
2134 /* Restore the signal state whether vfork succeeded or not.
2135 (We will signal an error, below, if it failed.) */
0dc70c33 2136#ifdef POSIX_SIGNALS
351e611f 2137#ifdef HAVE_WORKING_VFORK
0dc70c33
KH
2138 /* Restore the parent's signal handlers. */
2139 sigaction (SIGINT, &sigint_action, 0);
2140 sigaction (SIGQUIT, &sigquit_action, 0);
2141#ifdef AIX
2142 sigaction (SIGHUP, &sighup_action, 0);
2143#endif
351e611f 2144#endif /* HAVE_WORKING_VFORK */
0dc70c33
KH
2145 /* Stop blocking signals in the parent. */
2146 sigprocmask (SIG_SETMASK, &procmask, 0);
2147#else /* !POSIX_SIGNALS */
d0d6b7c5
JB
2148#ifdef SIGCHLD
2149#ifdef BSD4_1
2150 sigrelse (SIGCHLD);
2151#else /* not BSD4_1 */
6df54671 2152#if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
d0d6b7c5
JB
2153 sigsetmask (SIGEMPTYMASK);
2154#else /* ordinary USG */
2155#if 0
2156 signal (SIGCHLD, sigchld);
2157 /* Now really handle any of these signals
2158 that came in during this function. */
2159 if (sigchld_deferred)
2160 kill (getpid (), SIGCHLD);
2161#endif
2162#endif /* ordinary USG */
2163#endif /* not BSD4_1 */
2164#endif /* SIGCHLD */
0dc70c33 2165#endif /* !POSIX_SIGNALS */
4a127b3b
KH
2166
2167 /* Now generate the error if vfork failed. */
2168 if (pid < 0)
2169 report_file_error ("Doing vfork", Qnil);
d0d6b7c5
JB
2170}
2171#endif /* not VMS */
2172
e690ca94 2173\f
d0d6b7c5
JB
2174#ifdef HAVE_SOCKETS
2175
e690ca94
KS
2176/* Convert an internal struct sockaddr to a lisp object (vector or string).
2177 The address family of sa is not included in the result. */
2178
2179static Lisp_Object
2180conv_sockaddr_to_lisp (sa, len)
2181 struct sockaddr *sa;
2182 int len;
2183{
2184 Lisp_Object address;
2185 int i;
2186 unsigned char *cp;
2187 register struct Lisp_Vector *p;
2188
2189 switch (sa->sa_family)
2190 {
2191 case AF_INET:
2192 {
2193 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2194 len = sizeof (sin->sin_addr) + 1;
2195 address = Fmake_vector (make_number (len), Qnil);
2196 p = XVECTOR (address);
2197 p->contents[--len] = make_number (ntohs (sin->sin_port));
2198 cp = (unsigned char *)&sin->sin_addr;
2199 break;
2200 }
2201#ifdef HAVE_LOCAL_SOCKETS
2202 case AF_LOCAL:
2203 {
fb23673a
EZ
2204 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2205 for (i = 0; i < sizeof (sockun->sun_path); i++)
2206 if (sockun->sun_path[i] == 0)
e690ca94 2207 break;
fb23673a 2208 return make_unibyte_string (sockun->sun_path, i);
e690ca94
KS
2209 }
2210#endif
2211 default:
2212 len -= sizeof (sa->sa_family);
2213 address = Fcons (make_number (sa->sa_family),
2214 Fmake_vector (make_number (len), Qnil));
2215 p = XVECTOR (XCDR (address));
2216 cp = (unsigned char *) sa + sizeof (sa->sa_family);
2217 break;
2218 }
2219
2220 i = 0;
2221 while (i < len)
2222 p->contents[i++] = make_number (*cp++);
2223
2224 return address;
2225}
2226
2227
2228/* Get family and required size for sockaddr structure to hold ADDRESS. */
2229
2230static int
2231get_lisp_to_sockaddr_size (address, familyp)
2232 Lisp_Object address;
2233 int *familyp;
2234{
2235 register struct Lisp_Vector *p;
2236
2237 if (VECTORP (address))
2238 {
2239 p = XVECTOR (address);
2240 if (p->size == 5)
2241 {
2242 *familyp = AF_INET;
2243 return sizeof (struct sockaddr_in);
2244 }
2245 }
2246#ifdef HAVE_LOCAL_SOCKETS
2247 else if (STRINGP (address))
2248 {
2249 *familyp = AF_LOCAL;
2250 return sizeof (struct sockaddr_un);
2251 }
2252#endif
2253 else if (CONSP (address) && INTEGERP (XCAR (address)) && VECTORP (XCDR (address)))
2254 {
2255 struct sockaddr *sa;
2256 *familyp = XINT (XCAR (address));
2257 p = XVECTOR (XCDR (address));
2258 return p->size + sizeof (sa->sa_family);
2259 }
2260 return 0;
2261}
2262
2263/* Convert an address object (vector or string) to an internal sockaddr.
2264 Format of address has already been validated by size_lisp_to_sockaddr. */
2265
2266static void
2267conv_lisp_to_sockaddr (family, address, sa, len)
2268 int family;
2269 Lisp_Object address;
2270 struct sockaddr *sa;
2271 int len;
2272{
2273 register struct Lisp_Vector *p;
34967d0f 2274 register unsigned char *cp = NULL;
e690ca94
KS
2275 register int i;
2276
2277 bzero (sa, len);
2278 sa->sa_family = family;
2279
2280 if (VECTORP (address))
2281 {
2282 p = XVECTOR (address);
2283 if (family == AF_INET)
2284 {
2285 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2286 len = sizeof (sin->sin_addr) + 1;
2287 i = XINT (p->contents[--len]);
2288 sin->sin_port = htons (i);
2289 cp = (unsigned char *)&sin->sin_addr;
2290 }
2291 }
2292 else if (STRINGP (address))
2293 {
2294#ifdef HAVE_LOCAL_SOCKETS
2295 if (family == AF_LOCAL)
2296 {
fb23673a 2297 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
d5db4077 2298 cp = SDATA (address);
fb23673a
EZ
2299 for (i = 0; i < sizeof (sockun->sun_path) && *cp; i++)
2300 sockun->sun_path[i] = *cp++;
e690ca94
KS
2301 }
2302#endif
2303 return;
2304 }
2305 else
2306 {
2307 p = XVECTOR (XCDR (address));
2308 cp = (unsigned char *)sa + sizeof (sa->sa_family);
2309 }
2310
2311 for (i = 0; i < len; i++)
2312 if (INTEGERP (p->contents[i]))
2313 *cp++ = XFASTINT (p->contents[i]) & 0xff;
2314}
2315
2316#ifdef DATAGRAM_SOCKETS
2317DEFUN ("process-datagram-address", Fprocess_datagram_address, Sprocess_datagram_address,
2318 1, 1, 0,
2319 doc: /* Get the current datagram address associated with PROCESS. */)
2320 (process)
2321 Lisp_Object process;
2322{
2323 int channel;
2324
2325 CHECK_PROCESS (process);
2326
2327 if (!DATAGRAM_CONN_P (process))
2328 return Qnil;
2329
bed9664a 2330 channel = XINT (XPROCESS (process)->infd);
e690ca94
KS
2331 return conv_sockaddr_to_lisp (datagram_address[channel].sa,
2332 datagram_address[channel].len);
2333}
2334
2335DEFUN ("set-process-datagram-address", Fset_process_datagram_address, Sset_process_datagram_address,
2336 2, 2, 0,
2337 doc: /* Set the datagram address for PROCESS to ADDRESS.
2338Returns nil upon error setting address, ADDRESS otherwise. */)
2339 (process, address)
2340 Lisp_Object process, address;
2341{
2342 int channel;
2343 int family, len;
2344
2345 CHECK_PROCESS (process);
2346
2347 if (!DATAGRAM_CONN_P (process))
2348 return Qnil;
2349
bed9664a 2350 channel = XINT (XPROCESS (process)->infd);
e690ca94
KS
2351
2352 len = get_lisp_to_sockaddr_size (address, &family);
2353 if (datagram_address[channel].len != len)
2354 return Qnil;
2355 conv_lisp_to_sockaddr (family, address, datagram_address[channel].sa, len);
2356 return address;
2357}
2358#endif
2359\f
2360
2361static struct socket_options {
2362 /* The name of this option. Should be lowercase version of option
177c0ea7 2363 name without SO_ prefix. */
e690ca94 2364 char *name;
e690ca94
KS
2365 /* Option level SOL_... */
2366 int optlevel;
2367 /* Option number SO_... */
2368 int optnum;
151ec9e2 2369 enum { SOPT_UNKNOWN, SOPT_BOOL, SOPT_INT, SOPT_IFNAME, SOPT_LINGER } opttype;
2ccf3102 2370 enum { OPIX_NONE=0, OPIX_MISC=1, OPIX_REUSEADDR=2 } optbit;
e690ca94
KS
2371} socket_options[] =
2372 {
2373#ifdef SO_BINDTODEVICE
151ec9e2 2374 { ":bindtodevice", SOL_SOCKET, SO_BINDTODEVICE, SOPT_IFNAME, OPIX_MISC },
e690ca94
KS
2375#endif
2376#ifdef SO_BROADCAST
2ccf3102 2377 { ":broadcast", SOL_SOCKET, SO_BROADCAST, SOPT_BOOL, OPIX_MISC },
e690ca94
KS
2378#endif
2379#ifdef SO_DONTROUTE
2ccf3102 2380 { ":dontroute", SOL_SOCKET, SO_DONTROUTE, SOPT_BOOL, OPIX_MISC },
e690ca94
KS
2381#endif
2382#ifdef SO_KEEPALIVE
2ccf3102 2383 { ":keepalive", SOL_SOCKET, SO_KEEPALIVE, SOPT_BOOL, OPIX_MISC },
e690ca94
KS
2384#endif
2385#ifdef SO_LINGER
2ccf3102 2386 { ":linger", SOL_SOCKET, SO_LINGER, SOPT_LINGER, OPIX_MISC },
e690ca94
KS
2387#endif
2388#ifdef SO_OOBINLINE
2ccf3102 2389 { ":oobinline", SOL_SOCKET, SO_OOBINLINE, SOPT_BOOL, OPIX_MISC },
e690ca94
KS
2390#endif
2391#ifdef SO_PRIORITY
2ccf3102 2392 { ":priority", SOL_SOCKET, SO_PRIORITY, SOPT_INT, OPIX_MISC },
e690ca94
KS
2393#endif
2394#ifdef SO_REUSEADDR
2ccf3102 2395 { ":reuseaddr", SOL_SOCKET, SO_REUSEADDR, SOPT_BOOL, OPIX_REUSEADDR },
e690ca94 2396#endif
2ccf3102 2397 { 0, 0, 0, SOPT_UNKNOWN, OPIX_NONE }
e690ca94
KS
2398 };
2399
2ccf3102 2400/* Set option OPT to value VAL on socket S.
e690ca94 2401
2ccf3102
KS
2402 Returns (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
2403 Signals an error if setting a known option fails.
2404*/
e690ca94
KS
2405
2406static int
2ccf3102 2407set_socket_option (s, opt, val)
e690ca94 2408 int s;
2ccf3102 2409 Lisp_Object opt, val;
e690ca94 2410{
2ccf3102
KS
2411 char *name;
2412 struct socket_options *sopt;
2413 int ret = 0;
e690ca94 2414
2ccf3102 2415 CHECK_SYMBOL (opt);
e690ca94 2416
2ccf3102
KS
2417 name = (char *) SDATA (SYMBOL_NAME (opt));
2418 for (sopt = socket_options; sopt->name; sopt++)
2419 if (strcmp (name, sopt->name) == 0)
2420 break;
e690ca94 2421
2ccf3102
KS
2422 switch (sopt->opttype)
2423 {
2424 case SOPT_BOOL:
2425 {
2426 int optval;
2427 optval = NILP (val) ? 0 : 1;
2428 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2429 &optval, sizeof (optval));
2430 break;
2431 }
e690ca94 2432
2ccf3102
KS
2433 case SOPT_INT:
2434 {
2435 int optval;
2436 if (INTEGERP (val))
2437 optval = XINT (val);
2438 else
2439 error ("Bad option value for %s", name);
2440 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2441 &optval, sizeof (optval));
2442 break;
2443 }
e690ca94 2444
151ec9e2
KS
2445#ifdef SO_BINDTODEVICE
2446 case SOPT_IFNAME:
2ccf3102 2447 {
151ec9e2
KS
2448 char devname[IFNAMSIZ+1];
2449
2450 /* This is broken, at least in the Linux 2.4 kernel.
2451 To unbind, the arg must be a zero integer, not the empty string.
2452 This should work on all systems. KFS. 2003-09-23. */
2453 bzero (devname, sizeof devname);
2454 if (STRINGP (val))
2455 {
2456 char *arg = (char *) SDATA (val);
2457 int len = min (strlen (arg), IFNAMSIZ);
2458 bcopy (arg, devname, len);
2459 }
2460 else if (!NILP (val))
2ccf3102
KS
2461 error ("Bad option value for %s", name);
2462 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
151ec9e2
KS
2463 devname, IFNAMSIZ);
2464 break;
2ccf3102 2465 }
151ec9e2 2466#endif
e690ca94 2467
177c0ea7 2468#ifdef SO_LINGER
2ccf3102
KS
2469 case SOPT_LINGER:
2470 {
2471 struct linger linger;
e690ca94 2472
2ccf3102
KS
2473 linger.l_onoff = 1;
2474 linger.l_linger = 0;
2475 if (INTEGERP (val))
2476 linger.l_linger = XINT (val);
2477 else
2478 linger.l_onoff = NILP (val) ? 0 : 1;
2479 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2480 &linger, sizeof (linger));
2481 break;
2482 }
e690ca94 2483#endif
2ccf3102
KS
2484
2485 default:
2486 return 0;
e690ca94 2487 }
2ccf3102
KS
2488
2489 if (ret < 0)
2490 report_file_error ("Cannot set network option",
2491 Fcons (opt, Fcons (val, Qnil)));
2492 return (1 << sopt->optbit);
e690ca94
KS
2493}
2494
2ccf3102
KS
2495
2496DEFUN ("set-network-process-option",
2497 Fset_network_process_option, Sset_network_process_option,
2498 3, 4, 0,
2499 doc: /* For network process PROCESS set option OPTION to value VALUE.
2500See `make-network-process' for a list of options and values.
2501If optional fourth arg NO-ERROR is non-nil, don't signal an error if
2502OPTION is not a supported option, return nil instead; otherwise return t. */)
2503 (process, option, value, no_error)
2504 Lisp_Object process, option, value;
2505 Lisp_Object no_error;
e690ca94 2506{
e1283999 2507 int s;
151ec9e2 2508 struct Lisp_Process *p;
e690ca94 2509
e690ca94 2510 CHECK_PROCESS (process);
151ec9e2
KS
2511 p = XPROCESS (process);
2512 if (!NETCONN1_P (p))
2513 error ("Process is not a network process");
2ccf3102 2514
151ec9e2 2515 s = XINT (p->infd);
2ccf3102
KS
2516 if (s < 0)
2517 error ("Process is not running");
2518
2519 if (set_socket_option (s, option, value))
151ec9e2
KS
2520 {
2521 p->childp = Fplist_put (p->childp, option, value);
2522 return Qt;
2523 }
2ccf3102
KS
2524
2525 if (NILP (no_error))
2526 error ("Unknown or unsupported option");
2527
2528 return Qnil;
e690ca94 2529}
2ccf3102 2530
e690ca94 2531\f
e690ca94
KS
2532/* A version of request_sigio suitable for a record_unwind_protect. */
2533
2534Lisp_Object
2535unwind_request_sigio (dummy)
2536 Lisp_Object dummy;
2537{
2538 if (interrupt_input)
2539 request_sigio ();
2540 return Qnil;
2541}
2542
2543/* Create a network stream/datagram client/server process. Treated
2544 exactly like a normal process when reading and writing. Primary
d0d6b7c5
JB
2545 differences are in status display and process deletion. A network
2546 connection has no PID; you cannot signal it. All you can do is
e690ca94
KS
2547 stop/continue it and deactivate/close it via delete-process */
2548
177c0ea7
JB
2549DEFUN ("make-network-process", Fmake_network_process, Smake_network_process,
2550 0, MANY, 0,
e690ca94
KS
2551 doc: /* Create and return a network server or client process.
2552
fa9d4315 2553In Emacs, network connections are represented by process objects, so
e690ca94
KS
2554input and output work as for subprocesses and `delete-process' closes
2555a network connection. However, a network process has no process id,
d22426e1 2556it cannot be signaled, and the status codes are different from normal
e690ca94
KS
2557processes.
2558
2559Arguments are specified as keyword/argument pairs. The following
2560arguments are defined:
2561
2562:name NAME -- NAME is name for process. It is modified if necessary
2563to make it unique.
2564
2565:buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2566with the process. Process output goes at end of that buffer, unless
2567you specify an output stream or filter function to handle the output.
2568BUFFER may be also nil, meaning that this process is not associated
2569with any buffer.
2570
2571:host HOST -- HOST is name of the host to connect to, or its IP
2572address. The symbol `local' specifies the local host. If specified
2573for a server process, it must be a valid name or address for the local
2574host, and only clients connecting to that address will be accepted.
2575
2576:service SERVICE -- SERVICE is name of the service desired, or an
2577integer specifying a port number to connect to. If SERVICE is t,
2578a random port number is selected for the server.
2579
9057ff80
KS
2580:type TYPE -- TYPE is the type of connection. The default (nil) is a
2581stream type connection, `datagram' creates a datagram type connection.
2582
e690ca94
KS
2583:family FAMILY -- FAMILY is the address (and protocol) family for the
2584service specified by HOST and SERVICE. The default address family is
2585Inet (or IPv4) for the host and port number specified by HOST and
2586SERVICE. Other address families supported are:
2587 local -- for a local (i.e. UNIX) address specified by SERVICE.
2588
2589:local ADDRESS -- ADDRESS is the local address used for the connection.
2590This parameter is ignored when opening a client process. When specified
2591for a server process, the FAMILY, HOST and SERVICE args are ignored.
2592
2593:remote ADDRESS -- ADDRESS is the remote partner's address for the
2594connection. This parameter is ignored when opening a stream server
2595process. For a datagram server process, it specifies the initial
2596setting of the remote datagram address. When specified for a client
2597process, the FAMILY, HOST, and SERVICE args are ignored.
2598
2599The format of ADDRESS depends on the address family:
2600- An IPv4 address is represented as an vector of integers [A B C D P]
2601corresponding to numeric IP address A.B.C.D and port number P.
2602- A local address is represented as a string with the address in the
2603local address space.
2604- An "unsupported family" address is represented by a cons (F . AV)
2605where F is the family number and AV is a vector containing the socket
2606address data with one element per address data byte. Do not rely on
2607this format in portable code, as it may depend on implementation
2608defined constants, data sizes, and data structure alignment.
2609
2ccf3102
KS
2610:coding CODING -- If CODING is a symbol, it specifies the coding
2611system used for both reading and writing for this process. If CODING
2612is a cons (DECODING . ENCODING), DECODING is used for reading, and
2613ENCODING is used for writing.
e690ca94
KS
2614
2615:nowait BOOL -- If BOOL is non-nil for a stream type client process,
2616return without waiting for the connection to complete; instead, the
2617sentinel function will be called with second arg matching "open" (if
2618successful) or "failed" when the connect completes. Default is to use
2619a blocking connect (i.e. wait) for stream type connections.
2620
2621:noquery BOOL -- Query the user unless BOOL is non-nil, and process is
f3d9532b 2622running when Emacs is exited.
e690ca94
KS
2623
2624:stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
2625In the stopped state, a server process does not accept new
2626connections, and a client process does not handle incoming traffic.
2627The stopped state is cleared by `continue-process' and set by
2628`stop-process'.
2629
2630:filter FILTER -- Install FILTER as the process filter.
2631
7392e23c
KS
2632:filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
2633process filter are multibyte, otherwise they are unibyte.
2634If this keyword is not specified, the strings are multibyte iff
03f04413
KH
2635`default-enable-multibyte-characters' is non-nil.
2636
e690ca94
KS
2637:sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2638
2639:log LOG -- Install LOG as the server process log function. This
991234f0 2640function is called when the server accepts a network connection from a
e690ca94
KS
2641client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
2642is the server process, CLIENT is the new process for the connection,
2643and MESSAGE is a string.
2644
faa7db08 2645:plist PLIST -- Install PLIST as the new process' initial plist.
177c0ea7 2646
2ccf3102 2647:server QLEN -- if QLEN is non-nil, create a server process for the
e690ca94 2648specified FAMILY, SERVICE, and connection type (stream or datagram).
2ccf3102
KS
2649If QLEN is an integer, it is used as the max. length of the server's
2650pending connection queue (also known as the backlog); the default
2651queue length is 5. Default is to create a client process.
2652
2653The following network options can be specified for this connection:
2654
2ccf3102
KS
2655:broadcast BOOL -- Allow send and receive of datagram broadcasts.
2656:dontroute BOOL -- Only send to directly connected hosts.
2657:keepalive BOOL -- Send keep-alive messages on network stream.
2658:linger BOOL or TIMEOUT -- Send queued messages before closing.
2659:oobinline BOOL -- Place out-of-band data in receive data stream.
2660:priority INT -- Set protocol defined priority for sent packets.
2661:reuseaddr BOOL -- Allow reusing a recently used local address
2662 (this is allowed by default for a server process).
151ec9e2
KS
2663:bindtodevice NAME -- bind to interface NAME. Using this may require
2664 special privileges on some systems.
2ccf3102
KS
2665
2666Consult the relevant system programmer's manual pages for more
2667information on using these options.
2668
2669
2670A server process will listen for and accept connections from clients.
2671When a client connection is accepted, a new network process is created
2672for the connection with the following parameters:
e690ca94 2673
e690ca94
KS
2674- The client's process name is constructed by concatenating the server
2675process' NAME and a client identification string.
2676- If the FILTER argument is non-nil, the client process will not get a
2677separate process buffer; otherwise, the client's process buffer is a newly
2678created buffer named after the server process' BUFFER name or process
177c0ea7 2679NAME concatenated with the client identification string.
e690ca94
KS
2680- The connection type and the process filter and sentinel parameters are
2681inherited from the server process' TYPE, FILTER and SENTINEL.
2682- The client process' contact info is set according to the client's
2683addressing information (typically an IP address and a port number).
faa7db08 2684- The client process' plist is initialized from the server's plist.
e690ca94
KS
2685
2686Notice that the FILTER and SENTINEL args are never used directly by
2687the server process. Also, the BUFFER argument is not used directly by
9e9a5792
KS
2688the server process, but via the optional :log function, accepted (and
2689failed) connections may be logged in the server process' buffer.
e690ca94 2690
365aee82
KS
2691The original argument list, modified with the actual connection
2692information, is available via the `process-contact' function.
365aee82 2693
fa9d4315 2694usage: (make-network-process &rest ARGS) */)
e690ca94
KS
2695 (nargs, args)
2696 int nargs;
2697 Lisp_Object *args;
d0d6b7c5
JB
2698{
2699 Lisp_Object proc;
e690ca94
KS
2700 Lisp_Object contact;
2701 struct Lisp_Process *p;
70dbdb36 2702#ifdef HAVE_GETADDRINFO
e690ca94
KS
2703 struct addrinfo ai, *res, *lres;
2704 struct addrinfo hints;
2705 char *portstring, portbuf[128];
70dbdb36 2706#else /* HAVE_GETADDRINFO */
dd2a17ab
KS
2707 struct _emacs_addrinfo
2708 {
2709 int ai_family;
2710 int ai_socktype;
2711 int ai_protocol;
2712 int ai_addrlen;
2713 struct sockaddr *ai_addr;
2714 struct _emacs_addrinfo *ai_next;
2715 } ai, *res, *lres;
418b48fd 2716#endif /* HAVE_GETADDRINFO */
e690ca94
KS
2717 struct sockaddr_in address_in;
2718#ifdef HAVE_LOCAL_SOCKETS
2719 struct sockaddr_un address_un;
2720#endif
2721 int port;
dd2a17ab
KS
2722 int ret = 0;
2723 int xerrno = 0;
418b48fd 2724 int s = -1, outch, inch;
e690ca94 2725 struct gcpro gcpro1;
aed13378 2726 int count = SPECPDL_INDEX ();
5684cd6e 2727 int count1;
e690ca94
KS
2728 Lisp_Object QCaddress; /* one of QClocal or QCremote */
2729 Lisp_Object tem;
2730 Lisp_Object name, buffer, host, service, address;
2731 Lisp_Object filter, sentinel;
2732 int is_non_blocking_client = 0;
2ccf3102 2733 int is_server = 0, backlog = 5;
9057ff80 2734 int socktype;
e690ca94
KS
2735 int family = -1;
2736
2737 if (nargs == 0)
2738 return Qnil;
dd2a17ab 2739
e690ca94
KS
2740 /* Save arguments for process-contact and clone-process. */
2741 contact = Flist (nargs, args);
2742 GCPRO1 (contact);
2743
bff3ed0a
RS
2744#ifdef WINDOWSNT
2745 /* Ensure socket support is loaded if available. */
2746 init_winsock (TRUE);
2747#endif
2748
9057ff80
KS
2749 /* :type TYPE (nil: stream, datagram */
2750 tem = Fplist_get (contact, QCtype);
2751 if (NILP (tem))
2752 socktype = SOCK_STREAM;
2753#ifdef DATAGRAM_SOCKETS
2754 else if (EQ (tem, Qdatagram))
2755 socktype = SOCK_DGRAM;
e690ca94 2756#endif
9057ff80
KS
2757 else
2758 error ("Unsupported connection type");
e690ca94
KS
2759
2760 /* :server BOOL */
2761 tem = Fplist_get (contact, QCserver);
2762 if (!NILP (tem))
2763 {
75728599
JR
2764 /* Don't support network sockets when non-blocking mode is
2765 not available, since a blocked Emacs is not useful. */
2766#if defined(TERM) || (!defined(O_NONBLOCK) && !defined(O_NDELAY))
e690ca94
KS
2767 error ("Network servers not supported");
2768#else
2769 is_server = 1;
2ccf3102
KS
2770 if (INTEGERP (tem))
2771 backlog = XINT (tem);
e690ca94
KS
2772#endif
2773 }
2774
2775 /* Make QCaddress an alias for :local (server) or :remote (client). */
2776 QCaddress = is_server ? QClocal : QCremote;
2777
2778 /* :wait BOOL */
2779 if (!is_server && socktype == SOCK_STREAM
2780 && (tem = Fplist_get (contact, QCnowait), !NILP (tem)))
2781 {
2782#ifndef NON_BLOCKING_CONNECT
2783 error ("Non-blocking connect not supported");
2784#else
2785 is_non_blocking_client = 1;
2786#endif
2787 }
2788
2789 name = Fplist_get (contact, QCname);
2790 buffer = Fplist_get (contact, QCbuffer);
2791 filter = Fplist_get (contact, QCfilter);
2792 sentinel = Fplist_get (contact, QCsentinel);
2793
b7826503 2794 CHECK_STRING (name);
e690ca94
KS
2795
2796#ifdef TERM
2797 /* Let's handle TERM before things get complicated ... */
2798 host = Fplist_get (contact, QChost);
b7826503 2799 CHECK_STRING (host);
177c0ea7 2800
e690ca94
KS
2801 service = Fplist_get (contact, QCservice);
2802 if (INTEGERP (service))
2803 port = htons ((unsigned short) XINT (service));
2804 else
2805 {
2806 struct servent *svc_info;
2807 CHECK_STRING (service);
d5db4077 2808 svc_info = getservbyname (SDATA (service), "tcp");
e690ca94 2809 if (svc_info == 0)
d5db4077 2810 error ("Unknown service: %s", SDATA (service));
e690ca94
KS
2811 port = svc_info->s_port;
2812 }
2813
2814 s = connect_server (0);
2815 if (s < 0)
2816 report_file_error ("error creating socket", Fcons (name, Qnil));
d5db4077 2817 send_command (s, C_PORT, 0, "%s:%d", SDATA (host), ntohs (port));
e690ca94
KS
2818 send_command (s, C_DUMB, 1, 0);
2819
2820#else /* not TERM */
2821
2822 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
2823 ai.ai_socktype = socktype;
2824 ai.ai_protocol = 0;
2825 ai.ai_next = NULL;
2826 res = &ai;
a319f7c1 2827
e690ca94
KS
2828 /* :local ADDRESS or :remote ADDRESS */
2829 address = Fplist_get (contact, QCaddress);
2830 if (!NILP (address))
a319f7c1 2831 {
e690ca94
KS
2832 host = service = Qnil;
2833
2834 if (!(ai.ai_addrlen = get_lisp_to_sockaddr_size (address, &family)))
2835 error ("Malformed :address");
2836 ai.ai_family = family;
2837 ai.ai_addr = alloca (ai.ai_addrlen);
2838 conv_lisp_to_sockaddr (family, address, ai.ai_addr, ai.ai_addrlen);
2839 goto open_socket;
a319f7c1 2840 }
e690ca94
KS
2841
2842 /* :family FAMILY -- nil (for Inet), local, or integer. */
2843 tem = Fplist_get (contact, QCfamily);
2844 if (INTEGERP (tem))
2845 family = XINT (tem);
a319f7c1
KH
2846 else
2847 {
e690ca94
KS
2848 if (NILP (tem))
2849 family = AF_INET;
2850#ifdef HAVE_LOCAL_SOCKETS
2851 else if (EQ (tem, Qlocal))
2852 family = AF_LOCAL;
2853#endif
a319f7c1 2854 }
e690ca94
KS
2855 if (family < 0)
2856 error ("Unknown address family");
2857 ai.ai_family = family;
2858
2859 /* :service SERVICE -- string, integer (port number), or t (random port). */
2860 service = Fplist_get (contact, QCservice);
2861
2862#ifdef HAVE_LOCAL_SOCKETS
2863 if (family == AF_LOCAL)
d0d6b7c5 2864 {
e690ca94
KS
2865 /* Host is not used. */
2866 host = Qnil;
b7826503 2867 CHECK_STRING (service);
e690ca94
KS
2868 bzero (&address_un, sizeof address_un);
2869 address_un.sun_family = AF_LOCAL;
d5db4077 2870 strncpy (address_un.sun_path, SDATA (service), sizeof address_un.sun_path);
e690ca94
KS
2871 ai.ai_addr = (struct sockaddr *) &address_un;
2872 ai.ai_addrlen = sizeof address_un;
2873 goto open_socket;
d0d6b7c5 2874 }
e690ca94 2875#endif
a319f7c1 2876
e690ca94
KS
2877 /* :host HOST -- hostname, ip address, or 'local for localhost. */
2878 host = Fplist_get (contact, QChost);
2879 if (!NILP (host))
2880 {
2881 if (EQ (host, Qlocal))
2882 host = build_string ("localhost");
2883 CHECK_STRING (host);
2884 }
d0d6b7c5 2885
798b64bb
KH
2886 /* Slow down polling to every ten seconds.
2887 Some kernels have a bug which causes retrying connect to fail
2888 after a connect. Polling can interfere with gethostbyname too. */
2889#ifdef POLL_FOR_INPUT
e690ca94
KS
2890 if (socktype == SOCK_STREAM)
2891 {
2892 record_unwind_protect (unwind_stop_other_atimers, Qnil);
2893 bind_polling_period (10);
2894 }
798b64bb
KH
2895#endif
2896
a319f7c1 2897#ifdef HAVE_GETADDRINFO
e690ca94
KS
2898 /* If we have a host, use getaddrinfo to resolve both host and service.
2899 Otherwise, use getservbyname to lookup the service. */
2900 if (!NILP (host))
2901 {
2902
2903 /* SERVICE can either be a string or int.
2904 Convert to a C string for later use by getaddrinfo. */
2905 if (EQ (service, Qt))
2906 portstring = "0";
2907 else if (INTEGERP (service))
2908 {
2909 sprintf (portbuf, "%ld", (long) XINT (service));
2910 portstring = portbuf;
2911 }
2912 else
2913 {
2914 CHECK_STRING (service);
d5db4077 2915 portstring = SDATA (service);
e690ca94
KS
2916 }
2917
2918 immediate_quit = 1;
2919 QUIT;
2920 memset (&hints, 0, sizeof (hints));
2921 hints.ai_flags = 0;
2922 hints.ai_family = NILP (Fplist_member (contact, QCfamily)) ? AF_UNSPEC : family;
2923 hints.ai_socktype = socktype;
2924 hints.ai_protocol = 0;
d5db4077 2925 ret = getaddrinfo (SDATA (host), portstring, &hints, &res);
e690ca94 2926 if (ret)
f6270f62 2927#ifdef HAVE_GAI_STRERROR
d5db4077 2928 error ("%s/%s %s", SDATA (host), portstring, gai_strerror(ret));
f6270f62 2929#else
d5db4077 2930 error ("%s/%s getaddrinfo error %d", SDATA (host), portstring, ret);
f6270f62 2931#endif
e690ca94 2932 immediate_quit = 0;
a319f7c1 2933
e690ca94
KS
2934 goto open_socket;
2935 }
2936#endif /* HAVE_GETADDRINFO */
a319f7c1 2937
e690ca94
KS
2938 /* We end up here if getaddrinfo is not defined, or in case no hostname
2939 has been specified (e.g. for a local server process). */
2940
2941 if (EQ (service, Qt))
2942 port = 0;
2943 else if (INTEGERP (service))
2944 port = htons ((unsigned short) XINT (service));
2945 else
616da37c 2946 {
e690ca94
KS
2947 struct servent *svc_info;
2948 CHECK_STRING (service);
177c0ea7 2949 svc_info = getservbyname (SDATA (service),
e690ca94
KS
2950 (socktype == SOCK_DGRAM ? "udp" : "tcp"));
2951 if (svc_info == 0)
d5db4077 2952 error ("Unknown service: %s", SDATA (service));
e690ca94
KS
2953 port = svc_info->s_port;
2954 }
2955
2956 bzero (&address_in, sizeof address_in);
2957 address_in.sin_family = family;
2958 address_in.sin_addr.s_addr = INADDR_ANY;
2959 address_in.sin_port = port;
2960
2961#ifndef HAVE_GETADDRINFO
2962 if (!NILP (host))
2963 {
2964 struct hostent *host_info_ptr;
2965
2966 /* gethostbyname may fail with TRY_AGAIN, but we don't honour that,
f3d9532b 2967 as it may `hang' Emacs for a very long time. */
5d6c2aa3
RS
2968 immediate_quit = 1;
2969 QUIT;
d5db4077 2970 host_info_ptr = gethostbyname (SDATA (host));
5d6c2aa3 2971 immediate_quit = 0;
177c0ea7 2972
e690ca94
KS
2973 if (host_info_ptr)
2974 {
2975 bcopy (host_info_ptr->h_addr, (char *) &address_in.sin_addr,
2976 host_info_ptr->h_length);
2977 family = host_info_ptr->h_addrtype;
2978 address_in.sin_family = family;
2979 }
2980 else
2981 /* Attempt to interpret host as numeric inet address */
2982 {
2983 IN_ADDR numeric_addr;
d5db4077 2984 numeric_addr = inet_addr ((char *) SDATA (host));
e690ca94 2985 if (NUMERIC_ADDR_ERROR)
d5db4077 2986 error ("Unknown host \"%s\"", SDATA (host));
d0d6b7c5 2987
e690ca94
KS
2988 bcopy ((char *)&numeric_addr, (char *) &address_in.sin_addr,
2989 sizeof (address_in.sin_addr));
2990 }
d0d6b7c5 2991
e690ca94 2992 }
dd2a17ab 2993#endif /* not HAVE_GETADDRINFO */
d0d6b7c5 2994
e690ca94
KS
2995 ai.ai_family = family;
2996 ai.ai_addr = (struct sockaddr *) &address_in;
2997 ai.ai_addrlen = sizeof address_in;
2998
2999 open_socket:
3000
3001 /* Kernel bugs (on Ultrix at least) cause lossage (not just EINTR)
3002 when connect is interrupted. So let's not let it get interrupted.
3003 Note we do not turn off polling, because polling is only used
3004 when not interrupt_input, and thus not normally used on the systems
3005 which have this bug. On systems which use polling, there's no way
3006 to quit if polling is turned off. */
3007 if (interrupt_input
3008 && !is_server && socktype == SOCK_STREAM)
3009 {
3010 /* Comment from KFS: The original open-network-stream code
3011 didn't unwind protect this, but it seems like the proper
3012 thing to do. In any case, I don't see how it could harm to
3013 do this -- and it makes cleanup (using unbind_to) easier. */
3014 record_unwind_protect (unwind_request_sigio, Qnil);
3015 unrequest_sigio ();
3016 }
3017
dd2a17ab 3018 /* Do this in case we never enter the for-loop below. */
aed13378 3019 count1 = SPECPDL_INDEX ();
dd2a17ab 3020 s = -1;
457a9bee 3021
dd2a17ab
KS
3022 for (lres = res; lres; lres = lres->ai_next)
3023 {
2ccf3102
KS
3024 int optn, optbits;
3025
4e9dd03b
KS
3026 retry_connect:
3027
dd2a17ab
KS
3028 s = socket (lres->ai_family, lres->ai_socktype, lres->ai_protocol);
3029 if (s < 0)
3030 {
3031 xerrno = errno;
3032 continue;
3033 }
0f2ee0c1 3034
e690ca94
KS
3035#ifdef DATAGRAM_SOCKETS
3036 if (!is_server && socktype == SOCK_DGRAM)
3037 break;
3038#endif /* DATAGRAM_SOCKETS */
3039
dd2a17ab 3040#ifdef NON_BLOCKING_CONNECT
e690ca94 3041 if (is_non_blocking_client)
dd2a17ab
KS
3042 {
3043#ifdef O_NONBLOCK
3044 ret = fcntl (s, F_SETFL, O_NONBLOCK);
3045#else
3046 ret = fcntl (s, F_SETFL, O_NDELAY);
3047#endif
3048 if (ret < 0)
3049 {
3050 xerrno = errno;
3051 emacs_close (s);
3052 s = -1;
3053 continue;
3054 }
3055 }
3056#endif
177c0ea7 3057
dd2a17ab 3058 /* Make us close S if quit. */
dd2a17ab
KS
3059 record_unwind_protect (close_file_unwind, make_number (s));
3060
2ccf3102
KS
3061 /* Parse network options in the arg list.
3062 We simply ignore anything which isn't a known option (including other keywords).
3063 An error is signalled if setting a known option fails. */
3064 for (optn = optbits = 0; optn < nargs-1; optn += 2)
3065 optbits |= set_socket_option (s, args[optn], args[optn+1]);
3066
e690ca94
KS
3067 if (is_server)
3068 {
3069 /* Configure as a server socket. */
2ccf3102
KS
3070
3071 /* SO_REUSEADDR = 1 is default for server sockets; must specify
3072 explicit :reuseaddr key to override this. */
e690ca94
KS
3073#ifdef HAVE_LOCAL_SOCKETS
3074 if (family != AF_LOCAL)
3075#endif
2ccf3102
KS
3076 if (!(optbits & (1 << OPIX_REUSEADDR)))
3077 {
3078 int optval = 1;
3079 if (setsockopt (s, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof optval))
7c402969 3080 report_file_error ("Cannot set reuse option on server socket", Qnil);
2ccf3102 3081 }
177c0ea7 3082
e690ca94
KS
3083 if (bind (s, lres->ai_addr, lres->ai_addrlen))
3084 report_file_error ("Cannot bind server socket", Qnil);
3085
3086#ifdef HAVE_GETSOCKNAME
3087 if (EQ (service, Qt))
3088 {
3089 struct sockaddr_in sa1;
3090 int len1 = sizeof (sa1);
3091 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3092 {
3093 ((struct sockaddr_in *)(lres->ai_addr))->sin_port = sa1.sin_port;
21bd170d 3094 service = make_number (ntohs (sa1.sin_port));
e690ca94
KS
3095 contact = Fplist_put (contact, QCservice, service);
3096 }
3097 }
3098#endif
3099
2ccf3102 3100 if (socktype == SOCK_STREAM && listen (s, backlog))
e690ca94
KS
3101 report_file_error ("Cannot listen on server socket", Qnil);
3102
3103 break;
3104 }
3105
dd2a17ab
KS
3106 immediate_quit = 1;
3107 QUIT;
3108
3109 /* This turns off all alarm-based interrupts; the
3110 bind_polling_period call above doesn't always turn all the
3111 short-interval ones off, especially if interrupt_input is
3112 set.
3113
3114 It'd be nice to be able to control the connect timeout
177c0ea7 3115 though. Would non-blocking connect calls be portable?
dd2a17ab
KS
3116
3117 This used to be conditioned by HAVE_GETADDRINFO. Why? */
3118
f40f9848 3119 turn_on_atimers (0);
dd2a17ab
KS
3120
3121 ret = connect (s, lres->ai_addr, lres->ai_addrlen);
3122 xerrno = errno;
3123
f40f9848 3124 turn_on_atimers (1);
dd2a17ab
KS
3125
3126 if (ret == 0 || xerrno == EISCONN)
3127 {
dd2a17ab
KS
3128 /* The unwind-protect will be discarded afterwards.
3129 Likewise for immediate_quit. */
3130 break;
3131 }
3132
3133#ifdef NON_BLOCKING_CONNECT
3134#ifdef EINPROGRESS
e690ca94 3135 if (is_non_blocking_client && xerrno == EINPROGRESS)
dd2a17ab
KS
3136 break;
3137#else
3138#ifdef EWOULDBLOCK
e690ca94 3139 if (is_non_blocking_client && xerrno == EWOULDBLOCK)
dd2a17ab
KS
3140 break;
3141#endif
3142#endif
3143#endif
e333e864 3144
0f2ee0c1
RS
3145 immediate_quit = 0;
3146
dd2a17ab 3147 /* Discard the unwind protect closing S. */
5684cd6e 3148 specpdl_ptr = specpdl + count1;
68c45bf0 3149 emacs_close (s);
dd2a17ab 3150 s = -1;
4e9dd03b
KS
3151
3152 if (xerrno == EINTR)
3153 goto retry_connect;
dd2a17ab 3154 }
457a9bee 3155
e690ca94
KS
3156 if (s >= 0)
3157 {
3158#ifdef DATAGRAM_SOCKETS
3159 if (socktype == SOCK_DGRAM)
3160 {
3161 if (datagram_address[s].sa)
3162 abort ();
3163 datagram_address[s].sa = (struct sockaddr *) xmalloc (lres->ai_addrlen);
3164 datagram_address[s].len = lres->ai_addrlen;
3165 if (is_server)
3166 {
3167 Lisp_Object remote;
3168 bzero (datagram_address[s].sa, lres->ai_addrlen);
3169 if (remote = Fplist_get (contact, QCremote), !NILP (remote))
3170 {
3171 int rfamily, rlen;
3172 rlen = get_lisp_to_sockaddr_size (remote, &rfamily);
3173 if (rfamily == lres->ai_family && rlen == lres->ai_addrlen)
3174 conv_lisp_to_sockaddr (rfamily, remote,
3175 datagram_address[s].sa, rlen);
3176 }
3177 }
3178 else
3179 bcopy (lres->ai_addr, datagram_address[s].sa, lres->ai_addrlen);
3180 }
3181#endif
177c0ea7 3182 contact = Fplist_put (contact, QCaddress,
e690ca94 3183 conv_sockaddr_to_lisp (lres->ai_addr, lres->ai_addrlen));
2185db04
KS
3184#ifdef HAVE_GETSOCKNAME
3185 if (!is_server)
3186 {
3187 struct sockaddr_in sa1;
3188 int len1 = sizeof (sa1);
3189 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3190 contact = Fplist_put (contact, QClocal,
3191 conv_sockaddr_to_lisp (&sa1, len1));
3192 }
3193#endif
e690ca94
KS
3194 }
3195
dd2a17ab 3196#ifdef HAVE_GETADDRINFO
e690ca94
KS
3197 if (res != &ai)
3198 freeaddrinfo (res);
dd2a17ab
KS
3199#endif
3200
e690ca94
KS
3201 immediate_quit = 0;
3202
3203 /* Discard the unwind protect for closing S, if any. */
3204 specpdl_ptr = specpdl + count1;
3205
3206 /* Unwind bind_polling_period and request_sigio. */
3207 unbind_to (count, Qnil);
3208
dd2a17ab
KS
3209 if (s < 0)
3210 {
dd2a17ab
KS
3211 /* If non-blocking got this far - and failed - assume non-blocking is
3212 not supported after all. This is probably a wrong assumption, but
e690ca94
KS
3213 the normal blocking calls to open-network-stream handles this error
3214 better. */
3215 if (is_non_blocking_client)
dd2a17ab 3216 return Qnil;
dd2a17ab 3217
d0d6b7c5 3218 errno = xerrno;
e690ca94
KS
3219 if (is_server)
3220 report_file_error ("make server process failed", contact);
3221 else
3222 report_file_error ("make client process failed", contact);
d0d6b7c5 3223 }
44ade2e9 3224
e690ca94 3225#endif /* not TERM */
d0d6b7c5
JB
3226
3227 inch = s;
59f23005 3228 outch = s;
d0d6b7c5
JB
3229
3230 if (!NILP (buffer))
3231 buffer = Fget_buffer_create (buffer);
3232 proc = make_process (name);
3233
3234 chan_process[inch] = proc;
3235
3236#ifdef O_NONBLOCK
3237 fcntl (inch, F_SETFL, O_NONBLOCK);
3238#else
3239#ifdef O_NDELAY
3240 fcntl (inch, F_SETFL, O_NDELAY);
3241#endif
3242#endif
3243
e690ca94
KS
3244 p = XPROCESS (proc);
3245
3246 p->childp = contact;
faa7db08 3247 p->plist = Fcopy_sequence (Fplist_get (contact, QCplist));
177c0ea7 3248
e690ca94
KS
3249 p->buffer = buffer;
3250 p->sentinel = sentinel;
3251 p->filter = filter;
03f04413
KH
3252 p->filter_multibyte = buffer_defaults.enable_multibyte_characters;
3253 /* Override the above only if :filter-multibyte is specified. */
3254 if (! NILP (Fplist_member (contact, QCfilter_multibyte)))
3255 p->filter_multibyte = Fplist_get (contact, QCfilter_multibyte);
e690ca94
KS
3256 p->log = Fplist_get (contact, QClog);
3257 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
3258 p->kill_without_query = Qt;
3259 if ((tem = Fplist_get (contact, QCstop), !NILP (tem)))
3260 p->command = Qt;
3261 p->pid = Qnil;
3262 XSETINT (p->infd, inch);
3263 XSETINT (p->outfd, outch);
3264 if (is_server && socktype == SOCK_STREAM)
3265 p->status = Qlisten;
dd2a17ab
KS
3266
3267#ifdef NON_BLOCKING_CONNECT
e690ca94 3268 if (is_non_blocking_client)
dd2a17ab
KS
3269 {
3270 /* We may get here if connect did succeed immediately. However,
3271 in that case, we still need to signal this like a non-blocking
3272 connection. */
e690ca94 3273 p->status = Qconnect;
dd2a17ab
KS
3274 if (!FD_ISSET (inch, &connect_wait_mask))
3275 {
3276 FD_SET (inch, &connect_wait_mask);
3277 num_pending_connects++;
3278 }
3279 }
3280 else
3281#endif
e690ca94
KS
3282 /* A server may have a client filter setting of Qt, but it must
3283 still listen for incoming connects unless it is stopped. */
3284 if ((!EQ (p->filter, Qt) && !EQ (p->command, Qt))
3285 || (EQ (p->status, Qlisten) && NILP (p->command)))
dd2a17ab
KS
3286 {
3287 FD_SET (inch, &input_wait_mask);
3288 FD_SET (inch, &non_keyboard_wait_mask);
3289 }
3290
7d0e672e
RS
3291 if (inch > max_process_desc)
3292 max_process_desc = inch;
d0d6b7c5 3293
e690ca94
KS
3294 tem = Fplist_member (contact, QCcoding);
3295 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
3296 tem = Qnil; /* No error message (too late!). */
3297
67918941
RS
3298 {
3299 /* Setup coding systems for communicating with the network stream. */
3300 struct gcpro gcpro1;
3301 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3302 Lisp_Object coding_systems = Qt;
3303 Lisp_Object args[5], val;
3304
e690ca94 3305 if (!NILP (tem))
2ccf3102
KS
3306 {
3307 val = XCAR (XCDR (tem));
3308 if (CONSP (val))
3309 val = XCAR (val);
3310 }
e690ca94 3311 else if (!NILP (Vcoding_system_for_read))
67918941 3312 val = Vcoding_system_for_read;
41d03b9a
GM
3313 else if ((!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters))
3314 || (NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters)))
67918941
RS
3315 /* We dare not decode end-of-line format by setting VAL to
3316 Qraw_text, because the existing Emacs Lisp libraries
3317 assume that they receive bare code including a sequene of
3318 CR LF. */
3319 val = Qnil;
3320 else
3321 {
991234f0
KS
3322 if (NILP (host) || NILP (service))
3323 coding_systems = Qnil;
3324 else
3325 {
3326 args[0] = Qopen_network_stream, args[1] = name,
3327 args[2] = buffer, args[3] = host, args[4] = service;
3328 GCPRO1 (proc);
3329 coding_systems = Ffind_operation_coding_system (5, args);
3330 UNGCPRO;
3331 }
67918941 3332 if (CONSP (coding_systems))
70949dac 3333 val = XCAR (coding_systems);
67918941 3334 else if (CONSP (Vdefault_process_coding_system))
70949dac 3335 val = XCAR (Vdefault_process_coding_system);
67918941
RS
3336 else
3337 val = Qnil;
3338 }
e690ca94 3339 p->decode_coding_system = val;
0fa1789e 3340
e690ca94 3341 if (!NILP (tem))
2ccf3102
KS
3342 {
3343 val = XCAR (XCDR (tem));
3344 if (CONSP (val))
3345 val = XCDR (val);
3346 }
e690ca94 3347 else if (!NILP (Vcoding_system_for_write))
67918941
RS
3348 val = Vcoding_system_for_write;
3349 else if (NILP (current_buffer->enable_multibyte_characters))
3350 val = Qnil;
3351 else
3352 {
3353 if (EQ (coding_systems, Qt))
3354 {
991234f0
KS
3355 if (NILP (host) || NILP (service))
3356 coding_systems = Qnil;
3357 else
3358 {
3359 args[0] = Qopen_network_stream, args[1] = name,
3360 args[2] = buffer, args[3] = host, args[4] = service;
3361 GCPRO1 (proc);
3362 coding_systems = Ffind_operation_coding_system (5, args);
3363 UNGCPRO;
3364 }
67918941
RS
3365 }
3366 if (CONSP (coding_systems))
70949dac 3367 val = XCDR (coding_systems);
67918941 3368 else if (CONSP (Vdefault_process_coding_system))
70949dac 3369 val = XCDR (Vdefault_process_coding_system);
67918941
RS
3370 else
3371 val = Qnil;
3372 }
e690ca94 3373 p->encode_coding_system = val;
67918941 3374 }
03f04413 3375 setup_process_coding_systems (proc);
0fa1789e 3376
e690ca94
KS
3377 p->decoding_buf = make_uninit_string (0);
3378 p->decoding_carryover = make_number (0);
3379 p->encoding_buf = make_uninit_string (0);
3380 p->encoding_carryover = make_number (0);
0fa1789e 3381
e690ca94
KS
3382 p->inherit_coding_system_flag
3383 = (!NILP (tem) || NILP (buffer) || !inherit_process_coding_system
aa91317a 3384 ? Qnil : Qt);
52a1b894 3385
d0d6b7c5
JB
3386 UNGCPRO;
3387 return proc;
3388}
3389#endif /* HAVE_SOCKETS */
3390
161933c7 3391\f
b8c7fd71 3392#if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
161933c7
KS
3393
3394#ifdef SIOCGIFCONF
3395DEFUN ("network-interface-list", Fnetwork_interface_list, Snetwork_interface_list, 0, 0, 0,
3396 doc: /* Return an alist of all network interfaces and their network address.
3397Each element is a cons, the car of which is a string containing the
3398interface name, and the cdr is the network address in internal
e1283999 3399format; see the description of ADDRESS in `make-network-process'. */)
161933c7
KS
3400 ()
3401{
3402 struct ifconf ifconf;
3403 struct ifreq *ifreqs = NULL;
3404 int ifaces = 0;
3405 int buf_size, s;
3406 Lisp_Object res;
3407
3408 s = socket (AF_INET, SOCK_STREAM, 0);
3409 if (s < 0)
3410 return Qnil;
3411
3412 again:
3413 ifaces += 25;
3414 buf_size = ifaces * sizeof(ifreqs[0]);
3415 ifreqs = (struct ifreq *)xrealloc(ifreqs, buf_size);
3416 if (!ifreqs)
3417 {
3418 close (s);
3419 return Qnil;
3420 }
3421
3422 ifconf.ifc_len = buf_size;
3423 ifconf.ifc_req = ifreqs;
3424 if (ioctl (s, SIOCGIFCONF, &ifconf))
3425 {
3426 close (s);
3427 return Qnil;
3428 }
3429
3430 if (ifconf.ifc_len == buf_size)
3431 goto again;
3432
3433 close (s);
3434 ifaces = ifconf.ifc_len / sizeof (ifreqs[0]);
3435
3436 res = Qnil;
3437 while (--ifaces >= 0)
3438 {
3439 struct ifreq *ifq = &ifreqs[ifaces];
3440 char namebuf[sizeof (ifq->ifr_name) + 1];
3441 if (ifq->ifr_addr.sa_family != AF_INET)
3442 continue;
3443 bcopy (ifq->ifr_name, namebuf, sizeof (ifq->ifr_name));
3444 namebuf[sizeof (ifq->ifr_name)] = 0;
3445 res = Fcons (Fcons (build_string (namebuf),
3446 conv_sockaddr_to_lisp (&ifq->ifr_addr,
3447 sizeof (struct sockaddr))),
3448 res);
3449 }
3450
3451 return res;
3452}
b8c7fd71 3453#endif /* SIOCGIFCONF */
161933c7
KS
3454
3455#if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
3456
3457struct ifflag_def {
3458 int flag_bit;
3459 char *flag_sym;
3460};
3461
3462static struct ifflag_def ifflag_table[] = {
3463#ifdef IFF_UP
3464 { IFF_UP, "up" },
3465#endif
3466#ifdef IFF_BROADCAST
3467 { IFF_BROADCAST, "broadcast" },
3468#endif
3469#ifdef IFF_DEBUG
3470 { IFF_DEBUG, "debug" },
3471#endif
3472#ifdef IFF_LOOPBACK
3473 { IFF_LOOPBACK, "loopback" },
3474#endif
3475#ifdef IFF_POINTOPOINT
3476 { IFF_POINTOPOINT, "pointopoint" },
3477#endif
3478#ifdef IFF_RUNNING
3479 { IFF_RUNNING, "running" },
3480#endif
3481#ifdef IFF_NOARP
3482 { IFF_NOARP, "noarp" },
3483#endif
3484#ifdef IFF_PROMISC
3485 { IFF_PROMISC, "promisc" },
3486#endif
3487#ifdef IFF_NOTRAILERS
3488 { IFF_NOTRAILERS, "notrailers" },
3489#endif
3490#ifdef IFF_ALLMULTI
3491 { IFF_ALLMULTI, "allmulti" },
3492#endif
3493#ifdef IFF_MASTER
3494 { IFF_MASTER, "master" },
3495#endif
3496#ifdef IFF_SLAVE
3497 { IFF_SLAVE, "slave" },
3498#endif
3499#ifdef IFF_MULTICAST
3500 { IFF_MULTICAST, "multicast" },
3501#endif
3502#ifdef IFF_PORTSEL
3503 { IFF_PORTSEL, "portsel" },
3504#endif
3505#ifdef IFF_AUTOMEDIA
3506 { IFF_AUTOMEDIA, "automedia" },
3507#endif
3508#ifdef IFF_DYNAMIC
3509 { IFF_DYNAMIC, "dynamic" },
3510#endif
3511 { 0, 0 }
3512};
3513
2ccf3102 3514DEFUN ("network-interface-info", Fnetwork_interface_info, Snetwork_interface_info, 1, 1, 0,
161933c7
KS
3515 doc: /* Return information about network interface named IFNAME.
3516The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
3517where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
3518NETMASK is the layer 3 network mask, HWADDR is the layer 2 addres, and
3519FLAGS is the current flags of the interface. */)
3520 (ifname)
3521 Lisp_Object ifname;
3522{
3523 struct ifreq rq;
3524 Lisp_Object res = Qnil;
3525 Lisp_Object elt;
3526 int s;
3527 int any = 0;
3528
3529 CHECK_STRING (ifname);
3530
3531 bzero (rq.ifr_name, sizeof rq.ifr_name);
3532 strncpy (rq.ifr_name, SDATA (ifname), sizeof (rq.ifr_name));
3533
3534 s = socket (AF_INET, SOCK_STREAM, 0);
3535 if (s < 0)
3536 return Qnil;
3537
3538 elt = Qnil;
559c53b3 3539#if defined(SIOCGIFFLAGS) && defined(HAVE_STRUCT_IFREQ_IFR_FLAGS)
161933c7
KS
3540 if (ioctl (s, SIOCGIFFLAGS, &rq) == 0)
3541 {
3542 int flags = rq.ifr_flags;
3543 struct ifflag_def *fp;
3544 int fnum;
3545
3546 any++;
3547 for (fp = ifflag_table; flags != 0 && fp; fp++)
3548 {
3549 if (flags & fp->flag_bit)
3550 {
3551 elt = Fcons (intern (fp->flag_sym), elt);
3552 flags -= fp->flag_bit;
3553 }
3554 }
3555 for (fnum = 0; flags && fnum < 32; fnum++)
3556 {
3557 if (flags & (1 << fnum))
3558 {
3559 elt = Fcons (make_number (fnum), elt);
3560 }
3561 }
3562 }
3563#endif
3564 res = Fcons (elt, res);
3565
3566 elt = Qnil;
559c53b3 3567#if defined(SIOCGIFHWADDR) && defined(HAVE_STRUCT_IFREQ_IFR_HWADDR)
161933c7
KS
3568 if (ioctl (s, SIOCGIFHWADDR, &rq) == 0)
3569 {
b8c7fd71 3570 Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil);
161933c7
KS
3571 register struct Lisp_Vector *p = XVECTOR (hwaddr);
3572 int n;
3573
3574 any++;
3575 for (n = 0; n < 6; n++)
3576 p->contents[n] = make_number (((unsigned char *)&rq.ifr_hwaddr.sa_data[0])[n]);
e1283999 3577 elt = Fcons (make_number (rq.ifr_hwaddr.sa_family), hwaddr);
161933c7
KS
3578 }
3579#endif
3580 res = Fcons (elt, res);
3581
3582 elt = Qnil;
b8c7fd71 3583#if defined(SIOCGIFNETMASK) && defined(ifr_netmask)
161933c7
KS
3584 if (ioctl (s, SIOCGIFNETMASK, &rq) == 0)
3585 {
3586 any++;
3587 elt = conv_sockaddr_to_lisp (&rq.ifr_netmask, sizeof (rq.ifr_netmask));
3588 }
3589#endif
3590 res = Fcons (elt, res);
3591
3592 elt = Qnil;
559c53b3 3593#if defined(SIOCGIFBRDADDR) && defined(HAVE_STRUCT_IFREQ_IFR_BROADADDR)
161933c7
KS
3594 if (ioctl (s, SIOCGIFBRDADDR, &rq) == 0)
3595 {
3596 any++;
3597 elt = conv_sockaddr_to_lisp (&rq.ifr_broadaddr, sizeof (rq.ifr_broadaddr));
3598 }
3599#endif
3600 res = Fcons (elt, res);
3601
3602 elt = Qnil;
559c53b3 3603#if defined(SIOCGIFADDR) && defined(HAVE_STRUCT_IFREQ_IFR_ADDR)
161933c7
KS
3604 if (ioctl (s, SIOCGIFADDR, &rq) == 0)
3605 {
3606 any++;
3607 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
3608 }
3609#endif
3610 res = Fcons (elt, res);
3611
3612 close (s);
3613
3614 return any ? res : Qnil;
3615}
3616#endif
3617#endif /* HAVE_SOCKETS */
3618
04391069
RS
3619/* Turn off input and output for process PROC. */
3620
6b53bb85 3621void
d0d6b7c5
JB
3622deactivate_process (proc)
3623 Lisp_Object proc;
3624{
3625 register int inchannel, outchannel;
3626 register struct Lisp_Process *p = XPROCESS (proc);
3627
a9f2c884
RS
3628 inchannel = XINT (p->infd);
3629 outchannel = XINT (p->outfd);
d0d6b7c5 3630
2d942bfa
KS
3631#ifdef ADAPTIVE_READ_BUFFERING
3632 if (XINT (p->read_output_delay) > 0)
3633 {
3634 if (--process_output_delay_count < 0)
3635 process_output_delay_count = 0;
3636 XSETINT (p->read_output_delay, 0);
3637 p->read_output_skip = Qnil;
3638 }
3639#endif
f3d9532b 3640
a9f2c884 3641 if (inchannel >= 0)
d0d6b7c5
JB
3642 {
3643 /* Beware SIGCHLD hereabouts. */
3644 flush_pending_output (inchannel);
3645#ifdef VMS
3646 {
3647 VMS_PROC_STUFF *get_vms_process_pointer (), *vs;
3648 sys$dassgn (outchannel);
c6c6865d 3649 vs = get_vms_process_pointer (p->pid);
d0d6b7c5
JB
3650 if (vs)
3651 give_back_vms_process_stuff (vs);
3652 }
3653#else
68c45bf0 3654 emacs_close (inchannel);
a9f2c884 3655 if (outchannel >= 0 && outchannel != inchannel)
68c45bf0 3656 emacs_close (outchannel);
d0d6b7c5
JB
3657#endif
3658
1d056e64
KH
3659 XSETINT (p->infd, -1);
3660 XSETINT (p->outfd, -1);
e690ca94
KS
3661#ifdef DATAGRAM_SOCKETS
3662 if (DATAGRAM_CHAN_P (inchannel))
3663 {
3664 xfree (datagram_address[inchannel].sa);
3665 datagram_address[inchannel].sa = 0;
3666 datagram_address[inchannel].len = 0;
3667 }
3668#endif
d0d6b7c5
JB
3669 chan_process[inchannel] = Qnil;
3670 FD_CLR (inchannel, &input_wait_mask);
a69281ff 3671 FD_CLR (inchannel, &non_keyboard_wait_mask);
bad49fc7 3672#ifdef NON_BLOCKING_CONNECT
dd2a17ab
KS
3673 if (FD_ISSET (inchannel, &connect_wait_mask))
3674 {
3675 FD_CLR (inchannel, &connect_wait_mask);
3676 if (--num_pending_connects < 0)
3677 abort ();
3678 }
bad49fc7 3679#endif
7d0e672e
RS
3680 if (inchannel == max_process_desc)
3681 {
3682 int i;
3683 /* We just closed the highest-numbered process input descriptor,
3684 so recompute the highest-numbered one now. */
3685 max_process_desc = 0;
3686 for (i = 0; i < MAXDESC; i++)
3687 if (!NILP (chan_process[i]))
3688 max_process_desc = i;
3689 }
d0d6b7c5
JB
3690 }
3691}
3692
3693/* Close all descriptors currently in use for communication
3694 with subprocess. This is used in a newly-forked subprocess
3695 to get rid of irrelevant descriptors. */
3696
6b53bb85 3697void
d0d6b7c5
JB
3698close_process_descs ()
3699{
e98d950b 3700#ifndef WINDOWSNT
d0d6b7c5
JB
3701 int i;
3702 for (i = 0; i < MAXDESC; i++)
3703 {
3704 Lisp_Object process;
3705 process = chan_process[i];
3706 if (!NILP (process))
3707 {
a9f2c884
RS
3708 int in = XINT (XPROCESS (process)->infd);
3709 int out = XINT (XPROCESS (process)->outfd);
3710 if (in >= 0)
68c45bf0 3711 emacs_close (in);
a9f2c884 3712 if (out >= 0 && in != out)
68c45bf0 3713 emacs_close (out);
d0d6b7c5
JB
3714 }
3715 }
e98d950b 3716#endif
d0d6b7c5
JB
3717}
3718\f
3719DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
107ed38d 3720 0, 4, 0,
fdb82f93
PJ
3721 doc: /* Allow any pending output from subprocesses to be read by Emacs.
3722It is read into the process' buffers or given to their filter functions.
3723Non-nil arg PROCESS means do not return until some output has been received
3724from PROCESS.
3725Non-nil second arg TIMEOUT and third arg TIMEOUT-MSECS are number of
3726seconds and microseconds to wait; return after that much time whether
3727or not there is input.
107ed38d
KS
3728If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
3729from PROCESS, suspending reading output from other processes.
3730If JUST-THIS-ONE is an integer, don't run any timers either.
fdb82f93 3731Return non-nil iff we received any output before the timeout expired. */)
107ed38d
KS
3732 (process, timeout, timeout_msecs, just_this_one)
3733 register Lisp_Object process, timeout, timeout_msecs, just_this_one;
d0d6b7c5
JB
3734{
3735 int seconds;
3736 int useconds;
3737
0748d150 3738 if (! NILP (process))
b7826503 3739 CHECK_PROCESS (process);
107ed38d
KS
3740 else
3741 just_this_one = Qnil;
0748d150 3742
d0d6b7c5
JB
3743 if (! NILP (timeout_msecs))
3744 {
b7826503 3745 CHECK_NUMBER (timeout_msecs);
d0d6b7c5 3746 useconds = XINT (timeout_msecs);
bcd69aea 3747 if (!INTEGERP (timeout))
1d056e64 3748 XSETINT (timeout, 0);
d0d6b7c5
JB
3749
3750 {
3751 int carry = useconds / 1000000;
3752
3753 XSETINT (timeout, XINT (timeout) + carry);
3754 useconds -= carry * 1000000;
3755
3756 /* I think this clause is necessary because C doesn't
3757 guarantee a particular rounding direction for negative
3758 integers. */
3759 if (useconds < 0)
3760 {
3761 XSETINT (timeout, XINT (timeout) - 1);
3762 useconds += 1000000;
3763 }
3764 }
3765 }
de946e5a
RS
3766 else
3767 useconds = 0;
d0d6b7c5
JB
3768
3769 if (! NILP (timeout))
3770 {
b7826503 3771 CHECK_NUMBER (timeout);
d0d6b7c5 3772 seconds = XINT (timeout);
ada9a4fd 3773 if (seconds < 0 || (seconds == 0 && useconds == 0))
d0d6b7c5
JB
3774 seconds = -1;
3775 }
3776 else
26d7389d 3777 seconds = NILP (process) ? -1 : 0;
d0d6b7c5
JB
3778
3779 return
214d6069
KS
3780 (wait_reading_process_output (seconds, useconds, 0, 0,
3781 Qnil,
3782 !NILP (process) ? XPROCESS (process) : NULL,
3783 NILP (just_this_one) ? 0 :
3784 !INTEGERP (just_this_one) ? 1 : -1)
d0d6b7c5
JB
3785 ? Qt : Qnil);
3786}
3787
e690ca94
KS
3788/* Accept a connection for server process SERVER on CHANNEL. */
3789
3790static int connect_counter = 0;
3791
3792static void
3793server_accept_connection (server, channel)
3794 Lisp_Object server;
3795 int channel;
3796{
3797 Lisp_Object proc, caller, name, buffer;
3798 Lisp_Object contact, host, service;
3799 struct Lisp_Process *ps= XPROCESS (server);
3800 struct Lisp_Process *p;
3801 int s;
3802 union u_sockaddr {
3803 struct sockaddr sa;
3804 struct sockaddr_in in;
3805#ifdef HAVE_LOCAL_SOCKETS
3806 struct sockaddr_un un;
3807#endif
3808 } saddr;
3809 int len = sizeof saddr;
3810
3811 s = accept (channel, &saddr.sa, &len);
3812
3813 if (s < 0)
3814 {
3815 int code = errno;
3816
3817 if (code == EAGAIN)
3818 return;
3819#ifdef EWOULDBLOCK
3820 if (code == EWOULDBLOCK)
3821 return;
3822#endif
3823
3824 if (!NILP (ps->log))
3825 call3 (ps->log, server, Qnil,
3826 concat3 (build_string ("accept failed with code"),
3827 Fnumber_to_string (make_number (code)),
3828 build_string ("\n")));
3829 return;
3830 }
3831
3832 connect_counter++;
3833
3834 /* Setup a new process to handle the connection. */
3835
3836 /* Generate a unique identification of the caller, and build contact
3837 information for this process. */
3838 host = Qt;
3839 service = Qnil;
3840 switch (saddr.sa.sa_family)
3841 {
3842 case AF_INET:
3843 {
3844 Lisp_Object args[5];
3845 unsigned char *ip = (unsigned char *)&saddr.in.sin_addr.s_addr;
3846 args[0] = build_string ("%d.%d.%d.%d");
3847 args[1] = make_number (*ip++);
3848 args[2] = make_number (*ip++);
3849 args[3] = make_number (*ip++);
3850 args[4] = make_number (*ip++);
3851 host = Fformat (5, args);
3852 service = make_number (ntohs (saddr.in.sin_port));
3853
3854 args[0] = build_string (" <%s:%d>");
3855 args[1] = host;
3856 args[2] = service;
3857 caller = Fformat (3, args);
3858 }
3859 break;
3860
3861#ifdef HAVE_LOCAL_SOCKETS
3862 case AF_LOCAL:
3863#endif
3864 default:
3865 caller = Fnumber_to_string (make_number (connect_counter));
3866 caller = concat3 (build_string (" <*"), caller, build_string ("*>"));
3867 break;
3868 }
3869
3870 /* Create a new buffer name for this process if it doesn't have a
3871 filter. The new buffer name is based on the buffer name or
3872 process name of the server process concatenated with the caller
3873 identification. */
3874
3875 if (!NILP (ps->filter) && !EQ (ps->filter, Qt))
3876 buffer = Qnil;
3877 else
3878 {
3879 buffer = ps->buffer;
3880 if (!NILP (buffer))
3881 buffer = Fbuffer_name (buffer);
3882 else
3883 buffer = ps->name;
3884 if (!NILP (buffer))
3885 {
3886 buffer = concat2 (buffer, caller);
3887 buffer = Fget_buffer_create (buffer);
3888 }
3889 }
3890
3891 /* Generate a unique name for the new server process. Combine the
3892 server process name with the caller identification. */
3893
3894 name = concat2 (ps->name, caller);
3895 proc = make_process (name);
3896
3897 chan_process[s] = proc;
3898
3899#ifdef O_NONBLOCK
3900 fcntl (s, F_SETFL, O_NONBLOCK);
3901#else
3902#ifdef O_NDELAY
3903 fcntl (s, F_SETFL, O_NDELAY);
3904#endif
3905#endif
3906
3907 p = XPROCESS (proc);
3908
3909 /* Build new contact information for this setup. */
3910 contact = Fcopy_sequence (ps->childp);
3911 contact = Fplist_put (contact, QCserver, Qnil);
3912 contact = Fplist_put (contact, QChost, host);
3913 if (!NILP (service))
3914 contact = Fplist_put (contact, QCservice, service);
177c0ea7 3915 contact = Fplist_put (contact, QCremote,
e690ca94
KS
3916 conv_sockaddr_to_lisp (&saddr.sa, len));
3917#ifdef HAVE_GETSOCKNAME
3918 len = sizeof saddr;
2185db04 3919 if (getsockname (s, &saddr.sa, &len) == 0)
177c0ea7 3920 contact = Fplist_put (contact, QClocal,
e690ca94
KS
3921 conv_sockaddr_to_lisp (&saddr.sa, len));
3922#endif
3923
3924 p->childp = contact;
faa7db08 3925 p->plist = Fcopy_sequence (ps->plist);
ac4a7584 3926
e690ca94
KS
3927 p->buffer = buffer;
3928 p->sentinel = ps->sentinel;
3929 p->filter = ps->filter;
3930 p->command = Qnil;
3931 p->pid = Qnil;
3932 XSETINT (p->infd, s);
3933 XSETINT (p->outfd, s);
3934 p->status = Qrun;
3935
3936 /* Client processes for accepted connections are not stopped initially. */
3937 if (!EQ (p->filter, Qt))
3938 {
3939 FD_SET (s, &input_wait_mask);
3940 FD_SET (s, &non_keyboard_wait_mask);
3941 }
3942
3943 if (s > max_process_desc)
3944 max_process_desc = s;
3945
177c0ea7 3946 /* Setup coding system for new process based on server process.
e690ca94
KS
3947 This seems to be the proper thing to do, as the coding system
3948 of the new process should reflect the settings at the time the
3949 server socket was opened; not the current settings. */
3950
3951 p->decode_coding_system = ps->decode_coding_system;
3952 p->encode_coding_system = ps->encode_coding_system;
03f04413 3953 setup_process_coding_systems (proc);
e690ca94
KS
3954
3955 p->decoding_buf = make_uninit_string (0);
3956 p->decoding_carryover = make_number (0);
3957 p->encoding_buf = make_uninit_string (0);
3958 p->encoding_carryover = make_number (0);
3959
3960 p->inherit_coding_system_flag
3961 = (NILP (buffer) ? Qnil : ps->inherit_coding_system_flag);
3962
3963 if (!NILP (ps->log))
3964 call3 (ps->log, server, proc,
3965 concat3 (build_string ("accept from "),
3966 (STRINGP (host) ? host : build_string ("-")),
3967 build_string ("\n")));
3968
bed9664a 3969 if (!NILP (p->sentinel))
177c0ea7 3970 exec_sentinel (proc,
e690ca94
KS
3971 concat3 (build_string ("open from "),
3972 (STRINGP (host) ? host : build_string ("-")),
3973 build_string ("\n")));
3974}
3975
d0d6b7c5
JB
3976/* This variable is different from waiting_for_input in keyboard.c.
3977 It is used to communicate to a lisp process-filter/sentinel (via the
f3d9532b 3978 function Fwaiting_for_user_input_p below) whether Emacs was waiting
d0d6b7c5
JB
3979 for user-input when that process-filter was called.
3980 waiting_for_input cannot be used as that is by definition 0 when
d430ee71
RS
3981 lisp code is being evalled.
3982 This is also used in record_asynch_buffer_change.
3983 For that purpose, this must be 0
214d6069 3984 when not inside wait_reading_process_output. */
d0d6b7c5
JB
3985static int waiting_for_user_input_p;
3986
c573ae8e 3987/* This is here so breakpoints can be put on it. */
dfcf069d 3988static void
214d6069 3989wait_reading_process_output_1 ()
c573ae8e
RS
3990{
3991}
3992
d0d6b7c5
JB
3993/* Read and dispose of subprocess output while waiting for timeout to
3994 elapse and/or keyboard input to be available.
3995
de6fd4b9 3996 TIME_LIMIT is:
d0d6b7c5
JB
3997 timeout in seconds, or
3998 zero for no limit, or
3999 -1 means gobble data immediately available but don't wait for any.
4000
de6fd4b9
RS
4001 MICROSECS is:
4002 an additional duration to wait, measured in microseconds.
4003 If this is nonzero and time_limit is 0, then the timeout
4004 consists of MICROSECS only.
6e4f3667 4005
de6fd4b9 4006 READ_KBD is a lisp value:
d0d6b7c5
JB
4007 0 to ignore keyboard input, or
4008 1 to return when input is available, or
84aa3ace 4009 -1 meaning caller will actually read the input, so don't throw to
d0d6b7c5 4010 the quit handler, or
b89a415a
KS
4011
4012 DO_DISPLAY != 0 means redisplay should be done to show subprocess
107ed38d 4013 output that arrives.
d0d6b7c5 4014
b89a415a
KS
4015 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4016 (and gobble terminal input into the buffer if any arrives).
4017
4018 If WAIT_PROC is specified, wait until something arrives from that
4019 process. The return value is true iff we read some input from
4020 that process.
4021
4022 If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC
4023 (suspending output from other processes). A negative value
4024 means don't run any timers either.
4025
4026 If WAIT_PROC is specified, then the function returns true iff we
4027 received input from that process before the timeout elapsed.
eb8c3be9 4028 Otherwise, return true iff we received input from any process. */
d0d6b7c5 4029
dfcf069d 4030int
214d6069
KS
4031wait_reading_process_output (time_limit, microsecs, read_kbd, do_display,
4032 wait_for_cell, wait_proc, just_wait_proc)
b89a415a
KS
4033 int time_limit, microsecs, read_kbd, do_display;
4034 Lisp_Object wait_for_cell;
4035 struct Lisp_Process *wait_proc;
4036 int just_wait_proc;
d0d6b7c5 4037{
41d03b9a 4038 register int channel, nfds;
855448dc 4039 SELECT_TYPE Available;
bad49fc7 4040#ifdef NON_BLOCKING_CONNECT
855448dc 4041 SELECT_TYPE Connecting;
bad49fc7
KS
4042 int check_connect;
4043#endif
4044 int check_delay, no_avail;
d0d6b7c5
JB
4045 int xerrno;
4046 Lisp_Object proc;
41d03b9a 4047 EMACS_TIME timeout, end_time;
a9f2c884 4048 int wait_channel = -1;
d0d6b7c5 4049 int got_some_input = 0;
f3fbd155
KR
4050 /* Either nil or a cons cell, the car of which is of interest and
4051 may be changed outside of this routine. */
855448dc 4052 int saved_waiting_for_user_input_p = waiting_for_user_input_p;
d0d6b7c5
JB
4053
4054 FD_ZERO (&Available);
bad49fc7 4055#ifdef NON_BLOCKING_CONNECT
dd2a17ab 4056 FD_ZERO (&Connecting);
bad49fc7 4057#endif
d0d6b7c5 4058
b89a415a
KS
4059 /* If wait_proc is a process to watch, set wait_channel accordingly. */
4060 if (wait_proc != NULL)
4061 wait_channel = XINT (wait_proc->infd);
d0d6b7c5 4062
b89a415a 4063 waiting_for_user_input_p = read_kbd;
d0d6b7c5
JB
4064
4065 /* Since we may need to wait several times,
4066 compute the absolute time to return at. */
4067 if (time_limit || microsecs)
4068 {
4069 EMACS_GET_TIME (end_time);
4070 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
4071 EMACS_ADD_TIME (end_time, end_time, timeout);
4072 }
19310311 4073#ifdef POLL_INTERRUPTED_SYS_CALL
e07d5449
KH
4074 /* AlainF 5-Jul-1996
4075 HP-UX 10.10 seem to have problems with signals coming in
4076 Causes "poll: interrupted system call" messages when Emacs is run
4077 in an X window
75eb23f1
RS
4078 Turn off periodic alarms (in case they are in use),
4079 and then turn off any other atimers. */
4080 stop_polling ();
30904ab7 4081 turn_on_atimers (0);
19310311 4082#endif /* POLL_INTERRUPTED_SYS_CALL */
d0d6b7c5 4083
d0d6b7c5
JB
4084 while (1)
4085 {
c0239a0b
RS
4086 int timeout_reduced_for_timers = 0;
4087
d0d6b7c5
JB
4088 /* If calling from keyboard input, do not quit
4089 since we want to return C-g as an input character.
4090 Otherwise, do pending quit if requested. */
b89a415a 4091 if (read_kbd >= 0)
d0d6b7c5 4092 QUIT;
43ff45a0
SM
4093#ifdef SYNC_INPUT
4094 else if (interrupt_input_pending)
4095 handle_async_input ();
4096#endif
d0d6b7c5 4097
889255b4 4098 /* Exit now if the cell we're waiting for became non-nil. */
f3fbd155 4099 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
889255b4
RS
4100 break;
4101
d0d6b7c5
JB
4102 /* Compute time from now till when time limit is up */
4103 /* Exit if already run out */
4104 if (time_limit == -1)
4105 {
4106 /* -1 specified for timeout means
4107 gobble output available now
4108 but don't wait at all. */
4109
4110 EMACS_SET_SECS_USECS (timeout, 0, 0);
4111 }
4112 else if (time_limit || microsecs)
4113 {
4114 EMACS_GET_TIME (timeout);
4115 EMACS_SUB_TIME (timeout, end_time, timeout);
4116 if (EMACS_TIME_NEG_P (timeout))
4117 break;
4118 }
4119 else
4120 {
4121 EMACS_SET_SECS_USECS (timeout, 100000, 0);
4122 }
4123
f854a00b
RS
4124 /* Normally we run timers here.
4125 But not if wait_for_cell; in those cases,
4126 the wait is supposed to be short,
4127 and those callers cannot handle running arbitrary Lisp code here. */
107ed38d 4128 if (NILP (wait_for_cell)
b89a415a 4129 && just_wait_proc >= 0)
fb4c3627 4130 {
c0239a0b 4131 EMACS_TIME timer_delay;
c573ae8e 4132
9baacf76 4133 do
c573ae8e 4134 {
9baacf76 4135 int old_timers_run = timers_run;
c88164fe 4136 struct buffer *old_buffer = current_buffer;
177c0ea7 4137
9baacf76 4138 timer_delay = timer_check (1);
a2fab450
GM
4139
4140 /* If a timer has run, this might have changed buffers
4141 an alike. Make read_key_sequence aware of that. */
4142 if (timers_run != old_timers_run
c88164fe 4143 && old_buffer != current_buffer
a2fab450
GM
4144 && waiting_for_user_input_p == -1)
4145 record_asynch_buffer_change ();
177c0ea7 4146
9baacf76
GM
4147 if (timers_run != old_timers_run && do_display)
4148 /* We must retry, since a timer may have requeued itself
4149 and that could alter the time_delay. */
3007ebfb 4150 redisplay_preserve_echo_area (9);
9baacf76
GM
4151 else
4152 break;
c573ae8e 4153 }
9baacf76 4154 while (!detect_input_pending ());
c573ae8e 4155
69645afc 4156 /* If there is unread keyboard input, also return. */
b89a415a 4157 if (read_kbd != 0
69645afc
RS
4158 && requeued_events_pending_p ())
4159 break;
4160
c0239a0b 4161 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
fb4c3627
RS
4162 {
4163 EMACS_TIME difference;
4164 EMACS_SUB_TIME (difference, timer_delay, timeout);
4165 if (EMACS_TIME_NEG_P (difference))
c0239a0b
RS
4166 {
4167 timeout = timer_delay;
4168 timeout_reduced_for_timers = 1;
4169 }
fb4c3627 4170 }
4abca5e7
RS
4171 /* If time_limit is -1, we are not going to wait at all. */
4172 else if (time_limit != -1)
c573ae8e
RS
4173 {
4174 /* This is so a breakpoint can be put here. */
214d6069 4175 wait_reading_process_output_1 ();
c573ae8e 4176 }
fb4c3627
RS
4177 }
4178
90ab1a81
JB
4179 /* Cause C-g and alarm signals to take immediate action,
4180 and cause input available signals to zero out timeout.
4181
4182 It is important that we do this before checking for process
4183 activity. If we get a SIGCHLD after the explicit checks for
4184 process activity, timeout is the only way we will know. */
b89a415a 4185 if (read_kbd < 0)
90ab1a81
JB
4186 set_waiting_for_input (&timeout);
4187
6be429b1
JB
4188 /* If status of something has changed, and no input is
4189 available, notify the user of the change right away. After
4190 this explicit check, we'll let the SIGCHLD handler zap
4191 timeout to get our attention. */
4192 if (update_tick != process_tick && do_display)
4193 {
bad49fc7
KS
4194 SELECT_TYPE Atemp;
4195#ifdef NON_BLOCKING_CONNECT
4196 SELECT_TYPE Ctemp;
4197#endif
dd2a17ab 4198
6be429b1 4199 Atemp = input_wait_mask;
e082ac9d
ST
4200#if 0
4201 /* On Mac OS X 10.0, the SELECT system call always says input is
e0f712ba 4202 present (for reading) at stdin, even when none is. This
aa87aafc 4203 causes the call to SELECT below to return 1 and
e0f712ba 4204 status_notify not to be called. As a result output of
39b1da20 4205 subprocesses are incorrectly discarded.
e082ac9d 4206 */
e0f712ba
AC
4207 FD_CLR (0, &Atemp);
4208#endif
bad49fc7
KS
4209 IF_NON_BLOCKING_CONNECT (Ctemp = connect_wait_mask);
4210
6be429b1 4211 EMACS_SET_SECS_USECS (timeout, 0, 0);
0c9960e9 4212 if ((select (max (max_process_desc, max_keyboard_desc) + 1,
177c0ea7 4213 &Atemp,
bad49fc7 4214#ifdef NON_BLOCKING_CONNECT
dd2a17ab 4215 (num_pending_connects > 0 ? &Ctemp : (SELECT_TYPE *)0),
bad49fc7
KS
4216#else
4217 (SELECT_TYPE *)0,
4218#endif
dd2a17ab 4219 (SELECT_TYPE *)0, &timeout)
ecd1f654 4220 <= 0))
90ab1a81
JB
4221 {
4222 /* It's okay for us to do this and then continue with
a0e4d3f3 4223 the loop, since timeout has already been zeroed out. */
90ab1a81
JB
4224 clear_waiting_for_input ();
4225 status_notify ();
4226 }
6be429b1
JB
4227 }
4228
dd2a17ab
KS
4229 /* Don't wait for output from a non-running process. Just
4230 read whatever data has already been received. */
6be429b1
JB
4231 if (wait_proc != 0 && !NILP (wait_proc->raw_status_low))
4232 update_status (wait_proc);
4233 if (wait_proc != 0
dd2a17ab
KS
4234 && ! EQ (wait_proc->status, Qrun)
4235 && ! EQ (wait_proc->status, Qconnect))
9aa2a7f4 4236 {
215b45e9 4237 int nread, total_nread = 0;
7ce63188 4238
9aa2a7f4 4239 clear_waiting_for_input ();
7ce63188
RS
4240 XSETPROCESS (proc, wait_proc);
4241
4242 /* Read data from the process, until we exhaust it. */
e1b37c34 4243 while (XINT (wait_proc->infd) >= 0)
215b45e9 4244 {
e1b37c34
GM
4245 nread = read_process_output (proc, XINT (wait_proc->infd));
4246
4247 if (nread == 0)
4248 break;
4249
177c0ea7 4250 if (0 < nread)
215b45e9
RS
4251 total_nread += nread;
4252#ifdef EIO
4253 else if (nread == -1 && EIO == errno)
4254 break;
e1b37c34
GM
4255#endif
4256#ifdef EAGAIN
4257 else if (nread == -1 && EAGAIN == errno)
4258 break;
4259#endif
4260#ifdef EWOULDBLOCK
4261 else if (nread == -1 && EWOULDBLOCK == errno)
4262 break;
215b45e9
RS
4263#endif
4264 }
7ce63188 4265 if (total_nread > 0 && do_display)
3007ebfb 4266 redisplay_preserve_echo_area (10);
7ce63188 4267
9aa2a7f4
JB
4268 break;
4269 }
6be429b1 4270
d0d6b7c5
JB
4271 /* Wait till there is something to do */
4272
b89a415a 4273 if (wait_proc && just_wait_proc)
107ed38d 4274 {
b89a415a
KS
4275 if (XINT (wait_proc->infd) < 0) /* Terminated */
4276 break;
107ed38d 4277 FD_SET (XINT (wait_proc->infd), &Available);
bad49fc7
KS
4278 check_delay = 0;
4279 IF_NON_BLOCKING_CONNECT (check_connect = 0);
107ed38d
KS
4280 }
4281 else if (!NILP (wait_for_cell))
dd2a17ab
KS
4282 {
4283 Available = non_process_wait_mask;
bad49fc7
KS
4284 check_delay = 0;
4285 IF_NON_BLOCKING_CONNECT (check_connect = 0);
dd2a17ab 4286 }
a69281ff 4287 else
dd2a17ab 4288 {
b89a415a 4289 if (! read_kbd)
dd2a17ab
KS
4290 Available = non_keyboard_wait_mask;
4291 else
4292 Available = input_wait_mask;
bad49fc7 4293 IF_NON_BLOCKING_CONNECT (check_connect = (num_pending_connects > 0));
3af55251 4294 check_delay = wait_channel >= 0 ? 0 : process_output_delay_count;
dd2a17ab 4295 }
d0d6b7c5 4296
ff11dfa1 4297 /* If frame size has changed or the window is newly mapped,
ffd56f97
JB
4298 redisplay now, before we start to wait. There is a race
4299 condition here; if a SIGIO arrives between now and the select
016899c0
JB
4300 and indicates that a frame is trashed, the select may block
4301 displaying a trashed screen. */
5164ee8e 4302 if (frame_garbaged && do_display)
7286affd
RS
4303 {
4304 clear_waiting_for_input ();
3007ebfb 4305 redisplay_preserve_echo_area (11);
b89a415a 4306 if (read_kbd < 0)
7efe788e 4307 set_waiting_for_input (&timeout);
7286affd 4308 }
ffd56f97 4309
dd2a17ab 4310 no_avail = 0;
b89a415a 4311 if (read_kbd && detect_input_pending ())
0a65b032
RS
4312 {
4313 nfds = 0;
dd2a17ab 4314 no_avail = 1;
0a65b032
RS
4315 }
4316 else
dd2a17ab 4317 {
bad49fc7 4318#ifdef NON_BLOCKING_CONNECT
dd2a17ab
KS
4319 if (check_connect)
4320 Connecting = connect_wait_mask;
bad49fc7 4321#endif
2d942bfa
KS
4322
4323#ifdef ADAPTIVE_READ_BUFFERING
db853b7a
KS
4324 /* Set the timeout for adaptive read buffering if any
4325 process has non-nil read_output_skip and non-zero
4326 read_output_delay, and we are not reading output for a
4327 specific wait_channel. It is not executed if
4328 Vprocess_adaptive_read_buffering is nil. */
2d942bfa
KS
4329 if (process_output_skip && check_delay > 0)
4330 {
4331 int usecs = EMACS_USECS (timeout);
4332 if (EMACS_SECS (timeout) > 0 || usecs > READ_OUTPUT_DELAY_MAX)
4333 usecs = READ_OUTPUT_DELAY_MAX;
4334 for (channel = 0; check_delay > 0 && channel <= max_process_desc; channel++)
4335 {
4336 proc = chan_process[channel];
4337 if (NILP (proc))
4338 continue;
db853b7a
KS
4339 /* Find minimum non-zero read_output_delay among the
4340 processes with non-nil read_output_skip. */
9076a823 4341 if (XINT (XPROCESS (proc)->read_output_delay) > 0)
2d942bfa
KS
4342 {
4343 check_delay--;
4344 if (NILP (XPROCESS (proc)->read_output_skip))
4345 continue;
4346 FD_CLR (channel, &Available);
4347 XPROCESS (proc)->read_output_skip = Qnil;
4348 if (XINT (XPROCESS (proc)->read_output_delay) < usecs)
4349 usecs = XINT (XPROCESS (proc)->read_output_delay);
4350 }
4351 }
4352 EMACS_SET_SECS_USECS (timeout, 0, usecs);
4353 process_output_skip = 0;
4354 }
4355#endif
4356
dd2a17ab 4357 nfds = select (max (max_process_desc, max_keyboard_desc) + 1,
177c0ea7 4358 &Available,
bad49fc7 4359#ifdef NON_BLOCKING_CONNECT
dd2a17ab 4360 (check_connect ? &Connecting : (SELECT_TYPE *)0),
bad49fc7
KS
4361#else
4362 (SELECT_TYPE *)0,
4363#endif
dd2a17ab
KS
4364 (SELECT_TYPE *)0, &timeout);
4365 }
6720a7fb 4366
d0d6b7c5
JB
4367 xerrno = errno;
4368
4369 /* Make C-g and alarm signals set flags again */
4370 clear_waiting_for_input ();
4371
4372 /* If we woke up due to SIGWINCH, actually change size now. */
2b653806 4373 do_pending_window_change (0);
d0d6b7c5 4374
c0239a0b
RS
4375 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
4376 /* We wanted the full specified time, so return now. */
d0d6b7c5
JB
4377 break;
4378 if (nfds < 0)
4379 {
4380 if (xerrno == EINTR)
dd2a17ab 4381 no_avail = 1;
b0310da4
JB
4382#ifdef ultrix
4383 /* Ultrix select seems to return ENOMEM when it is
4384 interrupted. Treat it just like EINTR. Bleah. Note
4385 that we want to test for the "ultrix" CPP symbol, not
4386 "__ultrix__"; the latter is only defined under GCC, but
4387 not by DEC's bundled CC. -JimB */
8058415c 4388 else if (xerrno == ENOMEM)
dd2a17ab 4389 no_avail = 1;
8058415c 4390#endif
d0d6b7c5
JB
4391#ifdef ALLIANT
4392 /* This happens for no known reason on ALLIANT.
4393 I am guessing that this is the right response. -- RMS. */
4394 else if (xerrno == EFAULT)
dd2a17ab 4395 no_avail = 1;
d0d6b7c5
JB
4396#endif
4397 else if (xerrno == EBADF)
4398 {
4399#ifdef AIX
4400 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
4401 the child's closure of the pts gives the parent a SIGHUP, and
4402 the ptc file descriptor is automatically closed,
4403 yielding EBADF here or at select() call above.
4404 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
a0e4d3f3 4405 in m/ibmrt-aix.h), and here we just ignore the select error.
d0d6b7c5 4406 Cleanup occurs c/o status_notify after SIGCLD. */
dd2a17ab 4407 no_avail = 1; /* Cannot depend on values returned */
d0d6b7c5
JB
4408#else
4409 abort ();
4410#endif
4411 }
4412 else
68c45bf0 4413 error ("select error: %s", emacs_strerror (xerrno));
d0d6b7c5 4414 }
dd2a17ab
KS
4415
4416 if (no_avail)
4417 {
4418 FD_ZERO (&Available);
bad49fc7 4419 IF_NON_BLOCKING_CONNECT (check_connect = 0);
dd2a17ab
KS
4420 }
4421
26ec91de 4422#if defined(sun) && !defined(USG5_4)
dd2a17ab
KS
4423 if (nfds > 0 && keyboard_bit_set (&Available)
4424 && interrupt_input)
e0109153
JB
4425 /* System sometimes fails to deliver SIGIO.
4426
4427 David J. Mackenzie says that Emacs doesn't compile under
4428 Solaris if this code is enabled, thus the USG5_4 in the CPP
4429 conditional. "I haven't noticed any ill effects so far.
4430 If you find a Solaris expert somewhere, they might know
4431 better." */
d0d6b7c5
JB
4432 kill (getpid (), SIGIO);
4433#endif
4434
5d5beb62
RS
4435#if 0 /* When polling is used, interrupt_input is 0,
4436 so get_input_pending should read the input.
4437 So this should not be needed. */
4438 /* If we are using polling for input,
4439 and we see input available, make it get read now.
4440 Otherwise it might not actually get read for a second.
214d6069 4441 And on hpux, since we turn off polling in wait_reading_process_output,
5d5beb62 4442 it might never get read at all if we don't spend much time
214d6069 4443 outside of wait_reading_process_output. */
b89a415a 4444 if (read_kbd && interrupt_input
5d5beb62
RS
4445 && keyboard_bit_set (&Available)
4446 && input_polling_used ())
4447 kill (getpid (), SIGALRM);
4448#endif
4449
d0d6b7c5
JB
4450 /* Check for keyboard input */
4451 /* If there is any, return immediately
4452 to give it higher priority than subprocesses */
4453
b89a415a 4454 if (read_kbd != 0)
6ed6233b 4455 {
a2fab450 4456 int old_timers_run = timers_run;
c88164fe 4457 struct buffer *old_buffer = current_buffer;
a2fab450 4458 int leave = 0;
177c0ea7 4459
5d6c2aa3 4460 if (detect_input_pending_run_timers (do_display))
a2fab450
GM
4461 {
4462 swallow_events (do_display);
4463 if (detect_input_pending_run_timers (do_display))
4464 leave = 1;
4465 }
6ed6233b 4466
a2fab450
GM
4467 /* If a timer has run, this might have changed buffers
4468 an alike. Make read_key_sequence aware of that. */
4469 if (timers_run != old_timers_run
c88164fe
GM
4470 && waiting_for_user_input_p == -1
4471 && old_buffer != current_buffer)
a2fab450
GM
4472 record_asynch_buffer_change ();
4473
4474 if (leave)
4475 break;
177c0ea7
JB
4476 }
4477
69645afc 4478 /* If there is unread keyboard input, also return. */
b89a415a 4479 if (read_kbd != 0
69645afc
RS
4480 && requeued_events_pending_p ())
4481 break;
4482
77e1b3d4
RS
4483 /* If we are not checking for keyboard input now,
4484 do process events (but don't run any timers).
4485 This is so that X events will be processed.
0c9960e9 4486 Otherwise they may have to wait until polling takes place.
77e1b3d4
RS
4487 That would causes delays in pasting selections, for example.
4488
4489 (We used to do this only if wait_for_cell.) */
b89a415a 4490 if (read_kbd == 0 && detect_input_pending ())
f854a00b
RS
4491 {
4492 swallow_events (do_display);
0c9960e9 4493#if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
f854a00b
RS
4494 if (detect_input_pending ())
4495 break;
5d5beb62 4496#endif
0c9960e9 4497 }
f854a00b 4498
84aa3ace 4499 /* Exit now if the cell we're waiting for became non-nil. */
f3fbd155 4500 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
84aa3ace
RS
4501 break;
4502
4746118a 4503#ifdef SIGIO
5d5beb62 4504 /* If we think we have keyboard input waiting, but didn't get SIGIO,
d0d6b7c5
JB
4505 go read it. This can happen with X on BSD after logging out.
4506 In that case, there really is no input and no SIGIO,
4507 but select says there is input. */
4508
b89a415a 4509 if (read_kbd && interrupt_input
2601f59e 4510 && keyboard_bit_set (&Available) && ! noninteractive)
e643c5be 4511 kill (getpid (), SIGIO);
4746118a 4512#endif
d0d6b7c5 4513
d0d6b7c5
JB
4514 if (! wait_proc)
4515 got_some_input |= nfds > 0;
4516
32676c08
JB
4517 /* If checking input just got us a size-change event from X,
4518 obey it now if we should. */
b89a415a 4519 if (read_kbd || ! NILP (wait_for_cell))
2b653806 4520 do_pending_window_change (0);
32676c08 4521
a9f2c884 4522 /* Check for data from a process. */
dd2a17ab
KS
4523 if (no_avail || nfds == 0)
4524 continue;
4525
a9f2c884
RS
4526 /* Really FIRST_PROC_DESC should be 0 on Unix,
4527 but this is safer in the short run. */
a69281ff 4528 for (channel = 0; channel <= max_process_desc; channel++)
d0d6b7c5 4529 {
a69281ff
RS
4530 if (FD_ISSET (channel, &Available)
4531 && FD_ISSET (channel, &non_keyboard_wait_mask))
d0d6b7c5
JB
4532 {
4533 int nread;
4534
4535 /* If waiting for this channel, arrange to return as
4536 soon as no more input to be processed. No more
4537 waiting. */
4538 if (wait_channel == channel)
4539 {
a9f2c884 4540 wait_channel = -1;
d0d6b7c5
JB
4541 time_limit = -1;
4542 got_some_input = 1;
4543 }
4544 proc = chan_process[channel];
4545 if (NILP (proc))
4546 continue;
4547
e690ca94
KS
4548 /* If this is a server stream socket, accept connection. */
4549 if (EQ (XPROCESS (proc)->status, Qlisten))
4550 {
4551 server_accept_connection (proc, channel);
4552 continue;
4553 }
4554
d0d6b7c5
JB
4555 /* Read data from the process, starting with our
4556 buffered-ahead character if we have one. */
4557
4558 nread = read_process_output (proc, channel);
4559 if (nread > 0)
4560 {
4561 /* Since read_process_output can run a filter,
4562 which can call accept-process-output,
4563 don't try to read from any other processes
4564 before doing the select again. */
4565 FD_ZERO (&Available);
4566
4567 if (do_display)
3007ebfb 4568 redisplay_preserve_echo_area (12);
d0d6b7c5
JB
4569 }
4570#ifdef EWOULDBLOCK
4571 else if (nread == -1 && errno == EWOULDBLOCK)
4572 ;
0b75e9a4 4573#endif
89d7280d
RS
4574 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
4575 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
d0d6b7c5
JB
4576#ifdef O_NONBLOCK
4577 else if (nread == -1 && errno == EAGAIN)
4578 ;
4579#else
4580#ifdef O_NDELAY
4581 else if (nread == -1 && errno == EAGAIN)
4582 ;
4583 /* Note that we cannot distinguish between no input
4584 available now and a closed pipe.
4585 With luck, a closed pipe will be accompanied by
4586 subprocess termination and SIGCHLD. */
4587 else if (nread == 0 && !NETCONN_P (proc))
4588 ;
ffd56f97
JB
4589#endif /* O_NDELAY */
4590#endif /* O_NONBLOCK */
d0d6b7c5
JB
4591#ifdef HAVE_PTYS
4592 /* On some OSs with ptys, when the process on one end of
4593 a pty exits, the other end gets an error reading with
4594 errno = EIO instead of getting an EOF (0 bytes read).
4595 Therefore, if we get an error reading and errno =
4596 EIO, just continue, because the child process has
4597 exited and should clean itself up soon (e.g. when we
5651af6d
RS
4598 get a SIGCHLD).
4599
4600 However, it has been known to happen that the SIGCHLD
4601 got lost. So raise the signl again just in case.
4602 It can't hurt. */
d0d6b7c5 4603 else if (nread == -1 && errno == EIO)
5651af6d 4604 kill (getpid (), SIGCHLD);
ffd56f97
JB
4605#endif /* HAVE_PTYS */
4606 /* If we can detect process termination, don't consider the process
4607 gone just because its pipe is closed. */
d0d6b7c5
JB
4608#ifdef SIGCHLD
4609 else if (nread == 0 && !NETCONN_P (proc))
4610 ;
4611#endif
4612 else
4613 {
4614 /* Preserve status of processes already terminated. */
4615 XSETINT (XPROCESS (proc)->tick, ++process_tick);
4616 deactivate_process (proc);
4617 if (!NILP (XPROCESS (proc)->raw_status_low))
4618 update_status (XPROCESS (proc));
4619 if (EQ (XPROCESS (proc)->status, Qrun))
4620 XPROCESS (proc)->status
4621 = Fcons (Qexit, Fcons (make_number (256), Qnil));
4622 }
4623 }
177c0ea7 4624#ifdef NON_BLOCKING_CONNECT
1566f511
KS
4625 if (check_connect && FD_ISSET (channel, &Connecting)
4626 && FD_ISSET (channel, &connect_wait_mask))
dd2a17ab
KS
4627 {
4628 struct Lisp_Process *p;
dd2a17ab
KS
4629
4630 FD_CLR (channel, &connect_wait_mask);
4631 if (--num_pending_connects < 0)
4632 abort ();
4633
4634 proc = chan_process[channel];
4635 if (NILP (proc))
4636 continue;
4637
4638 p = XPROCESS (proc);
4639
4640#ifdef GNU_LINUX
4641 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
4642 So only use it on systems where it is known to work. */
4643 {
e690ca94 4644 int xlen = sizeof(xerrno);
dd2a17ab
KS
4645 if (getsockopt(channel, SOL_SOCKET, SO_ERROR, &xerrno, &xlen))
4646 xerrno = errno;
4647 }
4648#else
44c887be
PJ
4649 {
4650 struct sockaddr pname;
4651 int pnamelen = sizeof(pname);
4652
4653 /* If connection failed, getpeername will fail. */
4654 xerrno = 0;
4655 if (getpeername(channel, &pname, &pnamelen) < 0)
4656 {
4657 /* Obtain connect failure code through error slippage. */
4658 char dummy;
dd2a17ab 4659 xerrno = errno;
44c887be
PJ
4660 if (errno == ENOTCONN && read(channel, &dummy, 1) < 0)
4661 xerrno = errno;
4662 }
4663 }
dd2a17ab
KS
4664#endif
4665 if (xerrno)
4666 {
4667 XSETINT (p->tick, ++process_tick);
4668 p->status = Fcons (Qfailed, Fcons (make_number (xerrno), Qnil));
4669 deactivate_process (proc);
4670 }
4671 else
4672 {
4673 p->status = Qrun;
4674 /* Execute the sentinel here. If we had relied on
4675 status_notify to do it later, it will read input
4676 from the process before calling the sentinel. */
4677 exec_sentinel (proc, build_string ("open\n"));
e690ca94 4678 if (!EQ (p->filter, Qt) && !EQ (p->command, Qt))
dd2a17ab
KS
4679 {
4680 FD_SET (XINT (p->infd), &input_wait_mask);
4681 FD_SET (XINT (p->infd), &non_keyboard_wait_mask);
4682 }
4683 }
4684 }
4685#endif /* NON_BLOCKING_CONNECT */
ffd56f97
JB
4686 } /* end for each file descriptor */
4687 } /* end while exit conditions not met */
d0d6b7c5 4688
855448dc 4689 waiting_for_user_input_p = saved_waiting_for_user_input_p;
d430ee71 4690
ffd56f97
JB
4691 /* If calling from keyboard input, do not quit
4692 since we want to return C-g as an input character.
4693 Otherwise, do pending quit if requested. */
b89a415a 4694 if (read_kbd >= 0)
ffd56f97
JB
4695 {
4696 /* Prevent input_pending from remaining set if we quit. */
4697 clear_input_pending ();
4698 QUIT;
4699 }
19310311 4700#ifdef POLL_INTERRUPTED_SYS_CALL
e07d5449
KH
4701 /* AlainF 5-Jul-1996
4702 HP-UX 10.10 seems to have problems with signals coming in
4703 Causes "poll: interrupted system call" messages when Emacs is run
4704 in an X window
4705 Turn periodic alarms back on */
5d5beb62 4706 start_polling ();
19310311 4707#endif /* POLL_INTERRUPTED_SYS_CALL */
efa2a55c 4708
d0d6b7c5
JB
4709 return got_some_input;
4710}
4711\f
3b9a3dfa
RS
4712/* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
4713
4714static Lisp_Object
4715read_process_output_call (fun_and_args)
4716 Lisp_Object fun_and_args;
4717{
70949dac 4718 return apply1 (XCAR (fun_and_args), XCDR (fun_and_args));
3b9a3dfa
RS
4719}
4720
4721static Lisp_Object
4722read_process_output_error_handler (error)
4723 Lisp_Object error;
4724{
4725 cmd_error_internal (error, "error in process filter: ");
4726 Vinhibit_quit = Qt;
4727 update_echo_area ();
833ba342 4728 Fsleep_for (make_number (2), Qnil);
8c983bf2 4729 return Qt;
3b9a3dfa
RS
4730}
4731
d0d6b7c5
JB
4732/* Read pending output from the process channel,
4733 starting with our buffered-ahead character if we have one.
0fa1789e 4734 Yield number of decoded characters read.
d0d6b7c5 4735
116c423c 4736 This function reads at most 4096 characters.
d0d6b7c5 4737 If you want to read all available subprocess output,
0fa1789e
KH
4738 you must call it repeatedly until it returns zero.
4739
4740 The characters read are decoded according to PROC's coding-system
4741 for decoding. */
d0d6b7c5 4742
dfcf069d 4743int
d0d6b7c5
JB
4744read_process_output (proc, channel)
4745 Lisp_Object proc;
4746 register int channel;
4747{
e1283999 4748 register int nbytes;
d0d6b7c5 4749 char *chars;
d0d6b7c5
JB
4750 register Lisp_Object outstream;
4751 register struct buffer *old = current_buffer;
4752 register struct Lisp_Process *p = XPROCESS (proc);
4753 register int opoint;
c7580538 4754 struct coding_system *coding = proc_decode_coding_system[channel];
e7fbaa65 4755 int carryover = XINT (p->decoding_carryover);
116c423c 4756 int readmax = 4096;
d0d6b7c5
JB
4757
4758#ifdef VMS
4759 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
4760
4761 vs = get_vms_process_pointer (p->pid);
4762 if (vs)
4763 {
4764 if (!vs->iosb[0])
a319f7c1 4765 return (0); /* Really weird if it does this */
d0d6b7c5
JB
4766 if (!(vs->iosb[0] & 1))
4767 return -1; /* I/O error */
4768 }
4769 else
4770 error ("Could not get VMS process pointer");
4771 chars = vs->inputBuffer;
1d2fc612
RS
4772 nbytes = clean_vms_buffer (chars, vs->iosb[1]);
4773 if (nbytes <= 0)
d0d6b7c5
JB
4774 {
4775 start_vms_process_read (vs); /* Crank up the next read on the process */
4776 return 1; /* Nothing worth printing, say we got 1 */
4777 }
e7fbaa65 4778 if (carryover > 0)
0fa1789e 4779 {
e7fbaa65
KH
4780 /* The data carried over in the previous decoding (which are at
4781 the tail of decoding buffer) should be prepended to the new
4782 data read to decode all together. */
ed7a4b2d 4783 chars = (char *) alloca (nbytes + carryover);
d5db4077 4784 bcopy (SDATA (p->decoding_buf), buf, carryover);
ed7a4b2d 4785 bcopy (vs->inputBuffer, chars + carryover, nbytes);
0fa1789e 4786 }
d0d6b7c5 4787#else /* not VMS */
e690ca94 4788
e690ca94 4789 chars = (char *) alloca (carryover + readmax);
e7fbaa65
KH
4790 if (carryover)
4791 /* See the comment above. */
d5db4077 4792 bcopy (SDATA (p->decoding_buf), chars, carryover);
0fa1789e 4793
e690ca94
KS
4794#ifdef DATAGRAM_SOCKETS
4795 /* We have a working select, so proc_buffered_char is always -1. */
4796 if (DATAGRAM_CHAN_P (channel))
4797 {
4798 int len = datagram_address[channel].len;
39b1da20 4799 nbytes = recvfrom (channel, chars + carryover, readmax,
e690ca94
KS
4800 0, datagram_address[channel].sa, &len);
4801 }
4802 else
4803#endif
d0d6b7c5 4804 if (proc_buffered_char[channel] < 0)
2d942bfa 4805 {
39b1da20 4806 nbytes = emacs_read (channel, chars + carryover, readmax);
2d942bfa 4807#ifdef ADAPTIVE_READ_BUFFERING
39b1da20 4808 if (nbytes > 0 && !NILP (p->adaptive_read_buffering))
2d942bfa
KS
4809 {
4810 int delay = XINT (p->read_output_delay);
05b72afd 4811 if (nbytes < 256)
2d942bfa
KS
4812 {
4813 if (delay < READ_OUTPUT_DELAY_MAX_MAX)
4814 {
4815 if (delay == 0)
4816 process_output_delay_count++;
4817 delay += READ_OUTPUT_DELAY_INCREMENT * 2;
4818 }
4819 }
39b1da20 4820 else if (delay > 0 && (nbytes == readmax))
2d942bfa
KS
4821 {
4822 delay -= READ_OUTPUT_DELAY_INCREMENT;
4823 if (delay == 0)
4824 process_output_delay_count--;
4825 }
4826 XSETINT (p->read_output_delay, delay);
4827 if (delay)
4828 {
4829 p->read_output_skip = Qt;
4830 process_output_skip = 1;
4831 }
4832 }
4833#endif
4834 }
d0d6b7c5
JB
4835 else
4836 {
ed7a4b2d 4837 chars[carryover] = proc_buffered_char[channel];
d0d6b7c5 4838 proc_buffered_char[channel] = -1;
39b1da20 4839 nbytes = emacs_read (channel, chars + carryover + 1, readmax - 1);
1d2fc612
RS
4840 if (nbytes < 0)
4841 nbytes = 1;
d0d6b7c5 4842 else
1d2fc612 4843 nbytes = nbytes + 1;
d0d6b7c5
JB
4844 }
4845#endif /* not VMS */
4846
ca65341e
KH
4847 XSETINT (p->decoding_carryover, 0);
4848
ed7a4b2d 4849 /* At this point, NBYTES holds number of bytes just received
0fa1789e 4850 (including the one in proc_buffered_char[channel]). */
de7fbd09
KH
4851 if (nbytes <= 0)
4852 {
4853 if (nbytes < 0 || coding->mode & CODING_MODE_LAST_BLOCK)
4854 return nbytes;
4855 coding->mode |= CODING_MODE_LAST_BLOCK;
4856 }
d0d6b7c5 4857
1d2fc612 4858 /* Now set NBYTES how many bytes we must decode. */
e7fbaa65 4859 nbytes += carryover;
0fa1789e 4860
1d2fc612 4861 /* Read and dispose of the process output. */
d0d6b7c5
JB
4862 outstream = p->filter;
4863 if (!NILP (outstream))
4864 {
177c0ea7 4865 /* We inhibit quit here instead of just catching it so that
d0d6b7c5
JB
4866 hitting ^G when a filter happens to be running won't screw
4867 it up. */
aed13378 4868 int count = SPECPDL_INDEX ();
30c78175 4869 Lisp_Object odeactivate;
dfc21838 4870 Lisp_Object obuffer, okeymap;
1d2fc612 4871 Lisp_Object text;
4da2f5be 4872 int outer_running_asynch_code = running_asynch_code;
bbce7d72 4873 int waiting = waiting_for_user_input_p;
30c78175 4874
dfc21838
RS
4875 /* No need to gcpro these, because all we do with them later
4876 is test them for EQness, and none of them should be a string. */
30c78175 4877 odeactivate = Vdeactivate_mark;
dfc21838
RS
4878 XSETBUFFER (obuffer, current_buffer);
4879 okeymap = current_buffer->keymap;
30c78175 4880
d0d6b7c5 4881 specbind (Qinhibit_quit, Qt);
6545aada 4882 specbind (Qlast_nonmenu_event, Qt);
3b9a3dfa 4883
4da2f5be
RS
4884 /* In case we get recursively called,
4885 and we already saved the match data nonrecursively,
4886 save the same match data in safely recursive fashion. */
4887 if (outer_running_asynch_code)
4888 {
4889 Lisp_Object tem;
4890 /* Don't clobber the CURRENT match data, either! */
89f2614d
KS
4891 tem = Fmatch_data (Qnil, Qnil, Qnil);
4892 restore_search_regs ();
4893 record_unwind_save_match_data ();
4894 Fset_match_data (tem, Qt);
4da2f5be
RS
4895 }
4896
4897 /* For speed, if a search happens within this code,
4898 save the match data in a special nonrecursive fashion. */
7074fde6 4899 running_asynch_code = 1;
4da2f5be 4900
ed7a4b2d
KH
4901 text = decode_coding_string (make_unibyte_string (chars, nbytes),
4902 coding, 0);
082a1df2 4903 Vlast_coding_system_used = coding->symbol;
ed7a4b2d
KH
4904 /* A new coding system might be found. */
4905 if (!EQ (p->decode_coding_system, coding->symbol))
4906 {
4907 p->decode_coding_system = coding->symbol;
4908
4909 /* Don't call setup_coding_system for
4910 proc_decode_coding_system[channel] here. It is done in
4911 detect_coding called via decode_coding above. */
4912
4913 /* If a coding system for encoding is not yet decided, we set
4914 it as the same as coding-system for decoding.
4915
4916 But, before doing that we must check if
4917 proc_encode_coding_system[p->outfd] surely points to a
4918 valid memory because p->outfd will be changed once EOF is
4919 sent to the process. */
4920 if (NILP (p->encode_coding_system)
4921 && proc_encode_coding_system[XINT (p->outfd)])
4922 {
4923 p->encode_coding_system = coding->symbol;
4924 setup_coding_system (coding->symbol,
4925 proc_encode_coding_system[XINT (p->outfd)]);
4926 }
4927 }
51c6067d 4928
ed7a4b2d 4929 carryover = nbytes - coding->consumed;
d7d2483a
KS
4930 if (SCHARS (p->decoding_buf) < carryover)
4931 p->decoding_buf = make_uninit_string (carryover);
d5db4077 4932 bcopy (chars + coding->consumed, SDATA (p->decoding_buf),
ed7a4b2d
KH
4933 carryover);
4934 XSETINT (p->decoding_carryover, carryover);
03f04413
KH
4935 /* Adjust the multibyteness of TEXT to that of the filter. */
4936 if (NILP (p->filter_multibyte) != ! STRING_MULTIBYTE (text))
4937 text = (STRING_MULTIBYTE (text)
4938 ? Fstring_as_unibyte (text)
4939 : Fstring_to_multibyte (text));
e430e5ba 4940 if (SBYTES (text) > 0)
dd97db06
KH
4941 internal_condition_case_1 (read_process_output_call,
4942 Fcons (outstream,
4943 Fcons (proc, Fcons (text, Qnil))),
4944 !NILP (Vdebug_on_error) ? Qnil : Qerror,
4945 read_process_output_error_handler);
4da2f5be
RS
4946
4947 /* If we saved the match data nonrecursively, restore it now. */
89f2614d 4948 restore_search_regs ();
4da2f5be 4949 running_asynch_code = outer_running_asynch_code;
d0d6b7c5 4950
592ce97f 4951 /* Handling the process output should not deactivate the mark. */
30c78175
RS
4952 Vdeactivate_mark = odeactivate;
4953
bbce7d72
RS
4954 /* Restore waiting_for_user_input_p as it was
4955 when we were called, in case the filter clobbered it. */
4956 waiting_for_user_input_p = waiting;
4957
7973cfa8
RS
4958#if 0 /* Call record_asynch_buffer_change unconditionally,
4959 because we might have changed minor modes or other things
4960 that affect key bindings. */
dfc21838
RS
4961 if (! EQ (Fcurrent_buffer (), obuffer)
4962 || ! EQ (current_buffer->keymap, okeymap))
7973cfa8 4963#endif
927e08be
RS
4964 /* But do it only if the caller is actually going to read events.
4965 Otherwise there's no need to make him wake up, and it could
4966 cause trouble (for example it would make Fsit_for return). */
4967 if (waiting_for_user_input_p == -1)
4968 record_asynch_buffer_change ();
d72534ba 4969
d0d6b7c5
JB
4970#ifdef VMS
4971 start_vms_process_read (vs);
4972#endif
2ea6d561 4973 unbind_to (count, Qnil);
e430e5ba 4974 return nbytes;
d0d6b7c5
JB
4975 }
4976
4977 /* If no filter, write into buffer if it isn't dead. */
4978 if (!NILP (p->buffer) && !NILP (XBUFFER (p->buffer)->name))
4979 {
b0310da4 4980 Lisp_Object old_read_only;
12ca5cdf 4981 int old_begv, old_zv;
d8a2934e 4982 int old_begv_byte, old_zv_byte;
30c78175 4983 Lisp_Object odeactivate;
d8a2934e
RS
4984 int before, before_byte;
4985 int opoint_byte;
ed7a4b2d 4986 Lisp_Object text;
926b7e5e 4987 struct buffer *b;
30c78175
RS
4988
4989 odeactivate = Vdeactivate_mark;
d0d6b7c5
JB
4990
4991 Fset_buffer (p->buffer);
6ec8bbd2 4992 opoint = PT;
d8a2934e 4993 opoint_byte = PT_BYTE;
b0310da4 4994 old_read_only = current_buffer->read_only;
12ca5cdf
RS
4995 old_begv = BEGV;
4996 old_zv = ZV;
d8a2934e
RS
4997 old_begv_byte = BEGV_BYTE;
4998 old_zv_byte = ZV_BYTE;
b0310da4
JB
4999
5000 current_buffer->read_only = Qnil;
d0d6b7c5
JB
5001
5002 /* Insert new output into buffer
5003 at the current end-of-output marker,
5004 thus preserving logical ordering of input and output. */
5005 if (XMARKER (p->mark)->buffer)
d8a2934e
RS
5006 SET_PT_BOTH (clip_to_bounds (BEGV, marker_position (p->mark), ZV),
5007 clip_to_bounds (BEGV_BYTE, marker_byte_position (p->mark),
5008 ZV_BYTE));
d0d6b7c5 5009 else
d8a2934e 5010 SET_PT_BOTH (ZV, ZV_BYTE);
12ca5cdf 5011 before = PT;
d8a2934e 5012 before_byte = PT_BYTE;
b0310da4
JB
5013
5014 /* If the output marker is outside of the visible region, save
5015 the restriction and widen. */
6ec8bbd2 5016 if (! (BEGV <= PT && PT <= ZV))
b0310da4
JB
5017 Fwiden ();
5018
ed7a4b2d
KH
5019 text = decode_coding_string (make_unibyte_string (chars, nbytes),
5020 coding, 0);
082a1df2 5021 Vlast_coding_system_used = coding->symbol;
ed7a4b2d
KH
5022 /* A new coding system might be found. See the comment in the
5023 similar code in the previous `if' block. */
5024 if (!EQ (p->decode_coding_system, coding->symbol))
5025 {
5026 p->decode_coding_system = coding->symbol;
5027 if (NILP (p->encode_coding_system)
5028 && proc_encode_coding_system[XINT (p->outfd)])
5029 {
5030 p->encode_coding_system = coding->symbol;
5031 setup_coding_system (coding->symbol,
5032 proc_encode_coding_system[XINT (p->outfd)]);
5033 }
5034 }
5035 carryover = nbytes - coding->consumed;
d7d2483a
KS
5036 if (SCHARS (p->decoding_buf) < carryover)
5037 p->decoding_buf = make_uninit_string (carryover);
d5db4077 5038 bcopy (chars + coding->consumed, SDATA (p->decoding_buf),
ed7a4b2d
KH
5039 carryover);
5040 XSETINT (p->decoding_carryover, carryover);
d69864bf
KH
5041 /* Adjust the multibyteness of TEXT to that of the buffer. */
5042 if (NILP (current_buffer->enable_multibyte_characters)
5043 != ! STRING_MULTIBYTE (text))
5044 text = (STRING_MULTIBYTE (text)
57bb5c37 5045 ? Fstring_as_unibyte (text)
03f04413 5046 : Fstring_to_multibyte (text));
57bb5c37
KH
5047 /* Insert before markers in case we are inserting where
5048 the buffer's mark is, and the user's next command is Meta-y. */
e430e5ba
KH
5049 insert_from_string_before_markers (text, 0, 0,
5050 SCHARS (text), SBYTES (text), 0);
0d023da1 5051
926b7e5e
GM
5052 /* Make sure the process marker's position is valid when the
5053 process buffer is changed in the signal_after_change above.
5054 W3 is known to do that. */
5055 if (BUFFERP (p->buffer)
5056 && (b = XBUFFER (p->buffer), b != current_buffer))
5057 set_marker_both (p->mark, p->buffer, BUF_PT (b), BUF_PT_BYTE (b));
5058 else
5059 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
b0310da4 5060
d0d6b7c5
JB
5061 update_mode_lines++;
5062
12ca5cdf
RS
5063 /* Make sure opoint and the old restrictions
5064 float ahead of any new text just as point would. */
5065 if (opoint >= before)
d8a2934e
RS
5066 {
5067 opoint += PT - before;
5068 opoint_byte += PT_BYTE - before_byte;
5069 }
12ca5cdf 5070 if (old_begv > before)
d8a2934e
RS
5071 {
5072 old_begv += PT - before;
5073 old_begv_byte += PT_BYTE - before_byte;
5074 }
12ca5cdf 5075 if (old_zv >= before)
d8a2934e
RS
5076 {
5077 old_zv += PT - before;
5078 old_zv_byte += PT_BYTE - before_byte;
5079 }
12ca5cdf 5080
b0310da4 5081 /* If the restriction isn't what it should be, set it. */
12ca5cdf
RS
5082 if (old_begv != BEGV || old_zv != ZV)
5083 Fnarrow_to_region (make_number (old_begv), make_number (old_zv));
b0310da4 5084
592ce97f 5085 /* Handling the process output should not deactivate the mark. */
30c78175
RS
5086 Vdeactivate_mark = odeactivate;
5087
b0310da4 5088 current_buffer->read_only = old_read_only;
d8a2934e 5089 SET_PT_BOTH (opoint, opoint_byte);
d0d6b7c5
JB
5090 set_buffer_internal (old);
5091 }
5092#ifdef VMS
5093 start_vms_process_read (vs);
5094#endif
1d2fc612 5095 return nbytes;
d0d6b7c5
JB
5096}
5097
5098DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p,
5099 0, 0, 0,
f3d9532b 5100 doc: /* Returns non-nil if Emacs is waiting for input from the user.
fdb82f93
PJ
5101This is intended for use by asynchronous process output filters and sentinels. */)
5102 ()
d0d6b7c5 5103{
8b4d685f 5104 return (waiting_for_user_input_p ? Qt : Qnil);
d0d6b7c5
JB
5105}
5106\f
5107/* Sending data to subprocess */
5108
5109jmp_buf send_process_frame;
0daad115 5110Lisp_Object process_sent_to;
d0d6b7c5
JB
5111
5112SIGTYPE
5113send_process_trap ()
5114{
333f1b6f 5115 SIGNAL_THREAD_CHECK (SIGPIPE);
d0d6b7c5
JB
5116#ifdef BSD4_1
5117 sigrelse (SIGPIPE);
5118 sigrelse (SIGALRM);
5119#endif /* BSD4_1 */
c8f44005 5120 sigunblock (sigmask (SIGPIPE));
d0d6b7c5
JB
5121 longjmp (send_process_frame, 1);
5122}
5123
4556b700
RS
5124/* Send some data to process PROC.
5125 BUF is the beginning of the data; LEN is the number of characters.
a92e4183
KH
5126 OBJECT is the Lisp object that the data comes from. If OBJECT is
5127 nil or t, it means that the data comes from C string.
0fa1789e 5128
a92e4183
KH
5129 If OBJECT is not nil, the data is encoded by PROC's coding-system
5130 for encoding before it is sent.
1fb0098c
GM
5131
5132 This function can evaluate Lisp code and can garbage collect. */
4556b700 5133
dfcf069d 5134void
4556b700 5135send_process (proc, buf, len, object)
ecd1f654 5136 volatile Lisp_Object proc;
0daad115
GM
5137 unsigned char *volatile buf;
5138 volatile int len;
5139 volatile Lisp_Object object;
d0d6b7c5 5140{
ecd1f654 5141 /* Use volatile to protect variables from being clobbered by longjmp. */
2d942bfa 5142 struct Lisp_Process *p = XPROCESS (proc);
d0d6b7c5 5143 int rv;
0fa1789e 5144 struct coding_system *coding;
6044e593 5145 struct gcpro gcpro1;
41c4895c 5146 SIGTYPE (*volatile old_sigpipe) ();
6044e593
RS
5147
5148 GCPRO1 (object);
d0d6b7c5 5149
d0d6b7c5 5150#ifdef VMS
d0d6b7c5
JB
5151 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
5152#endif /* VMS */
5153
2d942bfa
KS
5154 if (! NILP (p->raw_status_low))
5155 update_status (p);
5156 if (! EQ (p->status, Qrun))
5157 error ("Process %s not running", SDATA (p->name));
5158 if (XINT (p->outfd) < 0)
5159 error ("Output file descriptor of %s is closed", SDATA (p->name));
0fa1789e 5160
2d942bfa 5161 coding = proc_encode_coding_system[XINT (p->outfd)];
486b111b
KH
5162 Vlast_coding_system_used = coding->symbol;
5163
ed7a4b2d
KH
5164 if ((STRINGP (object) && STRING_MULTIBYTE (object))
5165 || (BUFFERP (object)
a92e4183
KH
5166 && !NILP (XBUFFER (object)->enable_multibyte_characters))
5167 || EQ (object, Qt))
278bfdd6 5168 {
2d942bfa 5169 if (!EQ (coding->symbol, p->encode_coding_system))
278bfdd6
KH
5170 /* The coding system for encoding was changed to raw-text
5171 because we sent a unibyte text previously. Now we are
5172 sending a multibyte text, thus we must encode it by the
2d942bfa
KS
5173 original coding system specified for the current process. */
5174 setup_coding_system (p->encode_coding_system, coding);
fbb70ad9
EZ
5175 /* src_multibyte should be set to 1 _after_ a call to
5176 setup_coding_system, since it resets src_multibyte to
5177 zero. */
5178 coding->src_multibyte = 1;
278bfdd6
KH
5179 }
5180 else
5181 {
a92e4183
KH
5182 /* For sending a unibyte text, character code conversion should
5183 not take place but EOL conversion should. So, setup raw-text
5184 or one of the subsidiary if we have not yet done it. */
5185 if (coding->type != coding_type_raw_text)
5186 {
5187 if (CODING_REQUIRE_FLUSHING (coding))
5188 {
5189 /* But, before changing the coding, we must flush out data. */
5190 coding->mode |= CODING_MODE_LAST_BLOCK;
5191 send_process (proc, "", 0, Qt);
5192 }
5193 coding->src_multibyte = 0;
5194 setup_raw_text_coding_system (coding);
5195 }
278bfdd6 5196 }
a4a37e65
KH
5197 coding->dst_multibyte = 0;
5198
ed7a4b2d 5199 if (CODING_REQUIRE_ENCODING (coding))
0fa1789e
KH
5200 {
5201 int require = encoding_buffer_size (coding, len);
0daad115 5202 int from_byte = -1, from = -1, to = -1;
0fa1789e 5203
ed7a4b2d 5204 if (BUFFERP (object))
0fa1789e 5205 {
ed7a4b2d
KH
5206 from_byte = BUF_PTR_BYTE_POS (XBUFFER (object), buf);
5207 from = buf_bytepos_to_charpos (XBUFFER (object), from_byte);
5208 to = buf_bytepos_to_charpos (XBUFFER (object), from_byte + len);
5209 }
5210 else if (STRINGP (object))
5211 {
d5db4077 5212 from_byte = buf - SDATA (object);
ed7a4b2d
KH
5213 from = string_byte_to_char (object, from_byte);
5214 to = string_byte_to_char (object, from_byte + len);
0fa1789e
KH
5215 }
5216
452294c2
GM
5217 if (coding->composing != COMPOSITION_DISABLED)
5218 {
5219 if (from_byte >= 0)
5220 coding_save_composition (coding, from, to, object);
5221 else
5222 coding->composing = COMPOSITION_DISABLED;
5223 }
ed7a4b2d 5224
2d942bfa
KS
5225 if (SBYTES (p->encoding_buf) < require)
5226 p->encoding_buf = make_uninit_string (require);
ed7a4b2d
KH
5227
5228 if (from_byte >= 0)
5229 buf = (BUFFERP (object)
5230 ? BUF_BYTE_ADDRESS (XBUFFER (object), from_byte)
d5db4077 5231 : SDATA (object) + from_byte);
0fa1789e 5232
2d942bfa 5233 object = p->encoding_buf;
d5db4077
KR
5234 encode_coding (coding, (char *) buf, SDATA (object),
5235 len, SBYTES (object));
9de36315 5236 coding_free_composition_data (coding);
e7fbaa65 5237 len = coding->produced;
d5db4077 5238 buf = SDATA (object);
0fa1789e 5239 }
d0d6b7c5
JB
5240
5241#ifdef VMS
5242 vs = get_vms_process_pointer (p->pid);
5243 if (vs == 0)
5244 error ("Could not find this process: %x", p->pid);
5245 else if (write_to_vms_process (vs, buf, len))
5246 ;
0daad115 5247#else /* not VMS */
4556b700
RS
5248
5249 if (pty_max_bytes == 0)
5250 {
5251#if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
2d942bfa 5252 pty_max_bytes = fpathconf (XFASTINT (p->outfd), _PC_MAX_CANON);
4556b700
RS
5253 if (pty_max_bytes < 0)
5254 pty_max_bytes = 250;
5255#else
5256 pty_max_bytes = 250;
5257#endif
5258 /* Deduct one, to leave space for the eof. */
5259 pty_max_bytes--;
5260 }
5261
0daad115
GM
5262 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
5263 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
5264 when returning with longjmp despite being declared volatile. */
d0d6b7c5 5265 if (!setjmp (send_process_frame))
0daad115
GM
5266 {
5267 process_sent_to = proc;
5268 while (len > 0)
5269 {
5270 int this = len;
93b4f699 5271
0daad115
GM
5272 /* Decide how much data we can send in one batch.
5273 Long lines need to be split into multiple batches. */
2d942bfa 5274 if (!NILP (p->pty_flag))
0daad115 5275 {
c0ec53ad
SM
5276 /* Starting this at zero is always correct when not the first
5277 iteration because the previous iteration ended by sending C-d.
0daad115
GM
5278 It may not be correct for the first iteration
5279 if a partial line was sent in a separate send_process call.
5280 If that proves worth handling, we need to save linepos
5281 in the process object. */
5282 int linepos = 0;
5283 unsigned char *ptr = (unsigned char *) buf;
5284 unsigned char *end = (unsigned char *) buf + len;
5285
5286 /* Scan through this text for a line that is too long. */
5287 while (ptr != end && linepos < pty_max_bytes)
5288 {
5289 if (*ptr == '\n')
5290 linepos = 0;
5291 else
5292 linepos++;
5293 ptr++;
5294 }
5295 /* If we found one, break the line there
5296 and put in a C-d to force the buffer through. */
5297 this = ptr - buf;
5298 }
93b4f699 5299
0daad115
GM
5300 /* Send this batch, using one or more write calls. */
5301 while (this > 0)
5302 {
2d942bfa 5303 int outfd = XINT (p->outfd);
0daad115 5304 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap);
e690ca94
KS
5305#ifdef DATAGRAM_SOCKETS
5306 if (DATAGRAM_CHAN_P (outfd))
5307 {
5308 rv = sendto (outfd, (char *) buf, this,
5309 0, datagram_address[outfd].sa,
5310 datagram_address[outfd].len);
5311 if (rv < 0 && errno == EMSGSIZE)
c8f44005
RS
5312 {
5313 signal (SIGPIPE, old_sigpipe);
5314 report_file_error ("sending datagram",
5315 Fcons (proc, Qnil));
5316 }
e690ca94
KS
5317 }
5318 else
5319#endif
2d942bfa
KS
5320 {
5321 rv = emacs_write (outfd, (char *) buf, this);
5322#ifdef ADAPTIVE_READ_BUFFERING
5323 if (XINT (p->read_output_delay) > 0
5324 && EQ (p->adaptive_read_buffering, Qt))
5325 {
5326 XSETFASTINT (p->read_output_delay, 0);
5327 process_output_delay_count--;
5328 p->read_output_skip = Qnil;
5329 }
5330#endif
5331 }
0daad115 5332 signal (SIGPIPE, old_sigpipe);
4556b700 5333
0daad115
GM
5334 if (rv < 0)
5335 {
5336 if (0
d0d6b7c5 5337#ifdef EWOULDBLOCK
0daad115 5338 || errno == EWOULDBLOCK
d0d6b7c5
JB
5339#endif
5340#ifdef EAGAIN
0daad115 5341 || errno == EAGAIN
d0d6b7c5 5342#endif
0daad115 5343 )
177c0ea7 5344 /* Buffer is full. Wait, accepting input;
0daad115
GM
5345 that may allow the program
5346 to finish doing output and read more. */
5347 {
0daad115 5348 int offset = 0;
4556b700 5349
3433b6bd 5350#ifdef BROKEN_PTY_READ_AFTER_EAGAIN
0daad115
GM
5351 /* A gross hack to work around a bug in FreeBSD.
5352 In the following sequence, read(2) returns
5353 bogus data:
5354
5355 write(2) 1022 bytes
5356 write(2) 954 bytes, get EAGAIN
5357 read(2) 1024 bytes in process_read_output
5358 read(2) 11 bytes in process_read_output
5359
5360 That is, read(2) returns more bytes than have
5361 ever been written successfully. The 1033 bytes
5362 read are the 1022 bytes written successfully
5363 after processing (for example with CRs added if
5364 the terminal is set up that way which it is
5365 here). The same bytes will be seen again in a
5366 later read(2), without the CRs. */
177c0ea7 5367
0daad115
GM
5368 if (errno == EAGAIN)
5369 {
5370 int flags = FWRITE;
2d942bfa 5371 ioctl (XINT (p->outfd), TIOCFLUSH, &flags);
0daad115 5372 }
3433b6bd 5373#endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
177c0ea7 5374
0daad115
GM
5375 /* Running filters might relocate buffers or strings.
5376 Arrange to relocate BUF. */
5377 if (BUFFERP (object))
5378 offset = BUF_PTR_BYTE_POS (XBUFFER (object), buf);
5379 else if (STRINGP (object))
d5db4077 5380 offset = buf - SDATA (object);
0daad115 5381
f3e6605c 5382#ifdef EMACS_HAS_USECS
214d6069 5383 wait_reading_process_output (0, 20000, 0, 0, Qnil, NULL, 0);
f3e6605c 5384#else
214d6069 5385 wait_reading_process_output (1, 0, 0, 0, Qnil, NULL, 0);
f3e6605c 5386#endif
4556b700 5387
0daad115
GM
5388 if (BUFFERP (object))
5389 buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset);
5390 else if (STRINGP (object))
d5db4077 5391 buf = offset + SDATA (object);
4556b700 5392
0daad115
GM
5393 rv = 0;
5394 }
5395 else
5396 /* This is a real error. */
5397 report_file_error ("writing to process", Fcons (proc, Qnil));
5398 }
5399 buf += rv;
5400 len -= rv;
5401 this -= rv;
5402 }
f76475ad 5403
0daad115
GM
5404 /* If we sent just part of the string, put in an EOF
5405 to force it through, before we send the rest. */
5406 if (len > 0)
5407 Fprocess_send_eof (proc);
5408 }
5409 }
5410#endif /* not VMS */
d0d6b7c5
JB
5411 else
5412 {
0ff69270 5413 signal (SIGPIPE, old_sigpipe);
0daad115
GM
5414#ifndef VMS
5415 proc = process_sent_to;
2d942bfa 5416 p = XPROCESS (proc);
0daad115 5417#endif
2d942bfa
KS
5418 p->raw_status_low = Qnil;
5419 p->raw_status_high = Qnil;
5420 p->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
5421 XSETINT (p->tick, ++process_tick);
d0d6b7c5
JB
5422 deactivate_process (proc);
5423#ifdef VMS
2d942bfa 5424 error ("Error writing to process %s; closed it", SDATA (p->name));
d0d6b7c5 5425#else
2d942bfa 5426 error ("SIGPIPE raised on process %s; closed it", SDATA (p->name));
d0d6b7c5
JB
5427#endif
5428 }
6044e593
RS
5429
5430 UNGCPRO;
d0d6b7c5
JB
5431}
5432
5433DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
fdb82f93
PJ
5434 3, 3, 0,
5435 doc: /* Send current contents of region as input to PROCESS.
5436PROCESS may be a process, a buffer, the name of a process or buffer, or
5437nil, indicating the current buffer's process.
5438Called from program, takes three arguments, PROCESS, START and END.
5439If the region is more than 500 characters long,
5440it is sent in several bunches. This may happen even for shorter regions.
5441Output from processes can arrive in between bunches. */)
5442 (process, start, end)
d0d6b7c5
JB
5443 Lisp_Object process, start, end;
5444{
5445 Lisp_Object proc;
d8a2934e 5446 int start1, end1;
d0d6b7c5
JB
5447
5448 proc = get_process (process);
5449 validate_region (&start, &end);
5450
5451 if (XINT (start) < GPT && XINT (end) > GPT)
4da6dec8 5452 move_gap (XINT (start));
d0d6b7c5 5453
d8a2934e
RS
5454 start1 = CHAR_TO_BYTE (XINT (start));
5455 end1 = CHAR_TO_BYTE (XINT (end));
5456 send_process (proc, BYTE_POS_ADDR (start1), end1 - start1,
4556b700 5457 Fcurrent_buffer ());
d0d6b7c5
JB
5458
5459 return Qnil;
5460}
5461
5462DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
fdb82f93
PJ
5463 2, 2, 0,
5464 doc: /* Send PROCESS the contents of STRING as input.
5465PROCESS may be a process, a buffer, the name of a process or buffer, or
5466nil, indicating the current buffer's process.
5467If STRING is more than 500 characters long,
5468it is sent in several bunches. This may happen even for shorter strings.
5469Output from processes can arrive in between bunches. */)
5470 (process, string)
d0d6b7c5
JB
5471 Lisp_Object process, string;
5472{
5473 Lisp_Object proc;
b7826503 5474 CHECK_STRING (string);
d0d6b7c5 5475 proc = get_process (process);
d5db4077
KR
5476 send_process (proc, SDATA (string),
5477 SBYTES (string), string);
d0d6b7c5
JB
5478 return Qnil;
5479}
5480\f
16782258
JD
5481/* Return the foreground process group for the tty/pty that
5482 the process P uses. */
5483static int
5484emacs_get_tty_pgrp (p)
5485 struct Lisp_Process *p;
5486{
5487 int gid = -1;
5488
f3d9532b 5489#ifdef TIOCGPGRP
16782258
JD
5490 if (ioctl (XINT (p->infd), TIOCGPGRP, &gid) == -1 && ! NILP (p->tty_name))
5491 {
5492 int fd;
5493 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
5494 master side. Try the slave side. */
5495 fd = emacs_open (XSTRING (p->tty_name)->data, O_RDONLY, 0);
5496
5497 if (fd != -1)
5498 {
5499 ioctl (fd, TIOCGPGRP, &gid);
5500 emacs_close (fd);
5501 }
5502 }
5503#endif /* defined (TIOCGPGRP ) */
5504
5505 return gid;
5506}
5507
b81ea5ef
RS
5508DEFUN ("process-running-child-p", Fprocess_running_child_p,
5509 Sprocess_running_child_p, 0, 1, 0,
fdb82f93
PJ
5510 doc: /* Return t if PROCESS has given the terminal to a child.
5511If the operating system does not make it possible to find out,
5512return t unconditionally. */)
5513 (process)
b81ea5ef
RS
5514 Lisp_Object process;
5515{
5516 /* Initialize in case ioctl doesn't exist or gives an error,
5517 in a way that will cause returning t. */
16782258 5518 int gid;
b81ea5ef
RS
5519 Lisp_Object proc;
5520 struct Lisp_Process *p;
5521
5522 proc = get_process (process);
5523 p = XPROCESS (proc);
5524
5525 if (!EQ (p->childp, Qt))
5526 error ("Process %s is not a subprocess",
d5db4077 5527 SDATA (p->name));
b81ea5ef
RS
5528 if (XINT (p->infd) < 0)
5529 error ("Process %s is not active",
d5db4077 5530 SDATA (p->name));
b81ea5ef 5531
16782258 5532 gid = emacs_get_tty_pgrp (p);
b81ea5ef
RS
5533
5534 if (gid == XFASTINT (p->pid))
5535 return Qnil;
5536 return Qt;
5537}
5538\f
d0d6b7c5 5539/* send a signal number SIGNO to PROCESS.
b81ea5ef
RS
5540 If CURRENT_GROUP is t, that means send to the process group
5541 that currently owns the terminal being used to communicate with PROCESS.
d0d6b7c5 5542 This is used for various commands in shell mode.
b81ea5ef
RS
5543 If CURRENT_GROUP is lambda, that means send to the process group
5544 that currently owns the terminal, but only if it is NOT the shell itself.
5545
d0d6b7c5 5546 If NOMSG is zero, insert signal-announcements into process's buffers
b0310da4
JB
5547 right away.
5548
5549 If we can, we try to signal PROCESS by sending control characters
e333e864 5550 down the pty. This allows us to signal inferiors who have changed
b0310da4 5551 their uid, for which killpg would return an EPERM error. */
d0d6b7c5 5552
f9738840 5553static void
d0d6b7c5
JB
5554process_send_signal (process, signo, current_group, nomsg)
5555 Lisp_Object process;
5556 int signo;
5557 Lisp_Object current_group;
5558 int nomsg;
5559{
5560 Lisp_Object proc;
5561 register struct Lisp_Process *p;
5562 int gid;
5563 int no_pgrp = 0;
5564
5565 proc = get_process (process);
5566 p = XPROCESS (proc);
5567
5568 if (!EQ (p->childp, Qt))
5569 error ("Process %s is not a subprocess",
d5db4077 5570 SDATA (p->name));
a9f2c884 5571 if (XINT (p->infd) < 0)
d0d6b7c5 5572 error ("Process %s is not active",
d5db4077 5573 SDATA (p->name));
d0d6b7c5
JB
5574
5575 if (NILP (p->pty_flag))
5576 current_group = Qnil;
5577
d0d6b7c5 5578 /* If we are using pgrps, get a pgrp number and make it negative. */
2af70a0c
RS
5579 if (NILP (current_group))
5580 /* Send the signal to the shell's process group. */
5581 gid = XFASTINT (p->pid);
5582 else
d0d6b7c5 5583 {
b0310da4 5584#ifdef SIGNALS_VIA_CHARACTERS
d0d6b7c5
JB
5585 /* If possible, send signals to the entire pgrp
5586 by sending an input character to it. */
b0310da4 5587
6be429b1
JB
5588 /* TERMIOS is the latest and bestest, and seems most likely to
5589 work. If the system has it, use it. */
5590#ifdef HAVE_TERMIOS
5591 struct termios t;
7f916a36
RS
5592 cc_t *sig_char = NULL;
5593
5594 tcgetattr (XINT (p->infd), &t);
6be429b1
JB
5595
5596 switch (signo)
5597 {
5598 case SIGINT:
7f916a36
RS
5599 sig_char = &t.c_cc[VINTR];
5600 break;
6be429b1
JB
5601
5602 case SIGQUIT:
7f916a36
RS
5603 sig_char = &t.c_cc[VQUIT];
5604 break;
6be429b1
JB
5605
5606 case SIGTSTP:
d0adf46f 5607#if defined (VSWTCH) && !defined (PREFER_VSUSP)
7f916a36 5608 sig_char = &t.c_cc[VSWTCH];
6be429b1 5609#else
7f916a36 5610 sig_char = &t.c_cc[VSUSP];
6be429b1 5611#endif
7f916a36 5612 break;
6be429b1
JB
5613 }
5614
ca4313d5 5615 if (sig_char && *sig_char != CDISABLE)
f1c206fc
RS
5616 {
5617 send_process (proc, sig_char, 1, Qnil);
5618 return;
5619 }
5620 /* If we can't send the signal with a character,
5621 fall through and send it another way. */
6be429b1
JB
5622#else /* ! HAVE_TERMIOS */
5623
b0310da4
JB
5624 /* On Berkeley descendants, the following IOCTL's retrieve the
5625 current control characters. */
d0d6b7c5 5626#if defined (TIOCGLTC) && defined (TIOCGETC)
b0310da4 5627
d0d6b7c5
JB
5628 struct tchars c;
5629 struct ltchars lc;
5630
5631 switch (signo)
5632 {
5633 case SIGINT:
a9f2c884 5634 ioctl (XINT (p->infd), TIOCGETC, &c);
4556b700 5635 send_process (proc, &c.t_intrc, 1, Qnil);
f9738840 5636 return;
d0d6b7c5 5637 case SIGQUIT:
a9f2c884 5638 ioctl (XINT (p->infd), TIOCGETC, &c);
4556b700 5639 send_process (proc, &c.t_quitc, 1, Qnil);
f9738840 5640 return;
0ad77c54 5641#ifdef SIGTSTP
d0d6b7c5 5642 case SIGTSTP:
a9f2c884 5643 ioctl (XINT (p->infd), TIOCGLTC, &lc);
4556b700 5644 send_process (proc, &lc.t_suspc, 1, Qnil);
f9738840 5645 return;
b0310da4 5646#endif /* ! defined (SIGTSTP) */
d0d6b7c5 5647 }
b0310da4
JB
5648
5649#else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
5650
5651 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
5652 characters. */
5653#ifdef TCGETA
d0d6b7c5
JB
5654 struct termio t;
5655 switch (signo)
5656 {
5657 case SIGINT:
a9f2c884 5658 ioctl (XINT (p->infd), TCGETA, &t);
4556b700 5659 send_process (proc, &t.c_cc[VINTR], 1, Qnil);
f9738840 5660 return;
d0d6b7c5 5661 case SIGQUIT:
a9f2c884 5662 ioctl (XINT (p->infd), TCGETA, &t);
4556b700 5663 send_process (proc, &t.c_cc[VQUIT], 1, Qnil);
f9738840 5664 return;
7d79e3b4 5665#ifdef SIGTSTP
d0d6b7c5 5666 case SIGTSTP:
a9f2c884 5667 ioctl (XINT (p->infd), TCGETA, &t);
4556b700 5668 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil);
f9738840 5669 return;
b0310da4 5670#endif /* ! defined (SIGTSTP) */
d0d6b7c5 5671 }
b0310da4
JB
5672#else /* ! defined (TCGETA) */
5673 Your configuration files are messed up.
5674 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
5675 you'd better be using one of the alternatives above! */
5676#endif /* ! defined (TCGETA) */
5677#endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
f1c206fc 5678 /* In this case, the code above should alway returns. */
20505336 5679 abort ();
f1c206fc
RS
5680#endif /* ! defined HAVE_TERMIOS */
5681
5682 /* The code above may fall through if it can't
5683 handle the signal. */
20505336 5684#endif /* defined (SIGNALS_VIA_CHARACTERS) */
d0d6b7c5 5685
177c0ea7 5686#ifdef TIOCGPGRP
2af70a0c 5687 /* Get the current pgrp using the tty itself, if we have that.
d0d6b7c5
JB
5688 Otherwise, use the pty to get the pgrp.
5689 On pfa systems, saka@pfu.fujitsu.co.JP writes:
b0310da4
JB
5690 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
5691 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
d0d6b7c5
JB
5692 His patch indicates that if TIOCGPGRP returns an error, then
5693 we should just assume that p->pid is also the process group id. */
d0d6b7c5 5694
16782258 5695 gid = emacs_get_tty_pgrp (p);
f3d9532b 5696
16782258
JD
5697 if (gid == -1)
5698 /* If we can't get the information, assume
5699 the shell owns the tty. */
5700 gid = XFASTINT (p->pid);
2af70a0c
RS
5701
5702 /* It is not clear whether anything really can set GID to -1.
5703 Perhaps on some system one of those ioctls can or could do so.
5704 Or perhaps this is vestigial. */
d0d6b7c5
JB
5705 if (gid == -1)
5706 no_pgrp = 1;
b0310da4 5707#else /* ! defined (TIOCGPGRP ) */
301c3fe4
JB
5708 /* Can't select pgrps on this system, so we know that
5709 the child itself heads the pgrp. */
2af70a0c 5710 gid = XFASTINT (p->pid);
301c3fe4 5711#endif /* ! defined (TIOCGPGRP ) */
b81ea5ef
RS
5712
5713 /* If current_group is lambda, and the shell owns the terminal,
5714 don't send any signal. */
2af70a0c 5715 if (EQ (current_group, Qlambda) && gid == XFASTINT (p->pid))
b81ea5ef 5716 return;
d0d6b7c5 5717 }
d0d6b7c5
JB
5718
5719 switch (signo)
5720 {
5721#ifdef SIGCONT
5722 case SIGCONT:
5723 p->raw_status_low = Qnil;
5724 p->raw_status_high = Qnil;
5725 p->status = Qrun;
5726 XSETINT (p->tick, ++process_tick);
5727 if (!nomsg)
5728 status_notify ();
5729 break;
301c3fe4 5730#endif /* ! defined (SIGCONT) */
d0d6b7c5
JB
5731 case SIGINT:
5732#ifdef VMS
4556b700 5733 send_process (proc, "\003", 1, Qnil); /* ^C */
d0d6b7c5
JB
5734 goto whoosh;
5735#endif
5736 case SIGQUIT:
5737#ifdef VMS
4556b700 5738 send_process (proc, "\031", 1, Qnil); /* ^Y */
d0d6b7c5
JB
5739 goto whoosh;
5740#endif
5741 case SIGKILL:
5742#ifdef VMS
5743 sys$forcex (&(XFASTINT (p->pid)), 0, 1);
5744 whoosh:
5745#endif
a9f2c884 5746 flush_pending_output (XINT (p->infd));
d0d6b7c5
JB
5747 break;
5748 }
5749
5750 /* If we don't have process groups, send the signal to the immediate
5751 subprocess. That isn't really right, but it's better than any
5752 obvious alternative. */
5753 if (no_pgrp)
5754 {
5755 kill (XFASTINT (p->pid), signo);
5756 return;
5757 }
5758
5759 /* gid may be a pid, or minus a pgrp's number */
5760#ifdef TIOCSIGSEND
5761 if (!NILP (current_group))
16782258
JD
5762 {
5763 if (ioctl (XINT (p->infd), TIOCSIGSEND, signo) == -1)
5764 EMACS_KILLPG (gid, signo);
5765 }
d0d6b7c5
JB
5766 else
5767 {
5768 gid = - XFASTINT (p->pid);
5769 kill (gid, signo);
5770 }
301c3fe4 5771#else /* ! defined (TIOCSIGSEND) */
2af70a0c 5772 EMACS_KILLPG (gid, signo);
301c3fe4 5773#endif /* ! defined (TIOCSIGSEND) */
d0d6b7c5
JB
5774}
5775
5776DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
fdb82f93
PJ
5777 doc: /* Interrupt process PROCESS.
5778PROCESS may be a process, a buffer, or the name of a process or buffer.
f3d9532b 5779No arg or nil means current buffer's process.
fdb82f93
PJ
5780Second arg CURRENT-GROUP non-nil means send signal to
5781the current process-group of the process's controlling terminal
5782rather than to the process's own process group.
5783If the process is a shell, this means interrupt current subjob
5784rather than the shell.
5785
5786If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
5787don't send the signal. */)
5788 (process, current_group)
d0d6b7c5
JB
5789 Lisp_Object process, current_group;
5790{
5791 process_send_signal (process, SIGINT, current_group, 0);
5792 return process;
5793}
5794
5795DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
fdb82f93
PJ
5796 doc: /* Kill process PROCESS. May be process or name of one.
5797See function `interrupt-process' for more details on usage. */)
5798 (process, current_group)
d0d6b7c5
JB
5799 Lisp_Object process, current_group;
5800{
5801 process_send_signal (process, SIGKILL, current_group, 0);
5802 return process;
5803}
5804
5805DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
fdb82f93
PJ
5806 doc: /* Send QUIT signal to process PROCESS. May be process or name of one.
5807See function `interrupt-process' for more details on usage. */)
5808 (process, current_group)
d0d6b7c5
JB
5809 Lisp_Object process, current_group;
5810{
5811 process_send_signal (process, SIGQUIT, current_group, 0);
5812 return process;
5813}
5814
5815DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
fdb82f93 5816 doc: /* Stop process PROCESS. May be process or name of one.
177c0ea7 5817See function `interrupt-process' for more details on usage.
e690ca94 5818If PROCESS is a network process, inhibit handling of incoming traffic. */)
fdb82f93 5819 (process, current_group)
d0d6b7c5
JB
5820 Lisp_Object process, current_group;
5821{
e690ca94
KS
5822#ifdef HAVE_SOCKETS
5823 if (PROCESSP (process) && NETCONN_P (process))
5824 {
5825 struct Lisp_Process *p;
177c0ea7 5826
e690ca94
KS
5827 p = XPROCESS (process);
5828 if (NILP (p->command)
5829 && XINT (p->infd) >= 0)
5830 {
5831 FD_CLR (XINT (p->infd), &input_wait_mask);
5832 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask);
5833 }
5834 p->command = Qt;
5835 return process;
5836 }
5837#endif
d0d6b7c5 5838#ifndef SIGTSTP
a9a73d6c 5839 error ("No SIGTSTP support");
d0d6b7c5
JB
5840#else
5841 process_send_signal (process, SIGTSTP, current_group, 0);
5842#endif
5843 return process;
5844}
5845
5846DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
fdb82f93 5847 doc: /* Continue process PROCESS. May be process or name of one.
177c0ea7 5848See function `interrupt-process' for more details on usage.
e690ca94 5849If PROCESS is a network process, resume handling of incoming traffic. */)
fdb82f93 5850 (process, current_group)
d0d6b7c5
JB
5851 Lisp_Object process, current_group;
5852{
e690ca94
KS
5853#ifdef HAVE_SOCKETS
5854 if (PROCESSP (process) && NETCONN_P (process))
5855 {
5856 struct Lisp_Process *p;
5857
5858 p = XPROCESS (process);
5859 if (EQ (p->command, Qt)
5860 && XINT (p->infd) >= 0
5861 && (!EQ (p->filter, Qt) || EQ (p->status, Qlisten)))
5862 {
5863 FD_SET (XINT (p->infd), &input_wait_mask);
5864 FD_SET (XINT (p->infd), &non_keyboard_wait_mask);
5865 }
5866 p->command = Qnil;
5867 return process;
5868 }
5869#endif
d0d6b7c5
JB
5870#ifdef SIGCONT
5871 process_send_signal (process, SIGCONT, current_group, 0);
5872#else
a9a73d6c 5873 error ("No SIGCONT support");
d0d6b7c5
JB
5874#endif
5875 return process;
5876}
5877
5878DEFUN ("signal-process", Fsignal_process, Ssignal_process,
cdd5ea86
KS
5879 2, 2, "sProcess (name or number): \nnSignal code: ",
5880 doc: /* Send PROCESS the signal with code SIGCODE.
5881PROCESS may also be an integer specifying the process id of the
5882process to signal; in this case, the process need not be a child of
5883this Emacs.
fdb82f93 5884SIGCODE may be an integer, or a symbol whose name is a signal name. */)
cdd5ea86
KS
5885 (process, sigcode)
5886 Lisp_Object process, sigcode;
d0d6b7c5 5887{
cdd5ea86
KS
5888 Lisp_Object pid;
5889
5890 if (INTEGERP (process))
5891 {
5892 pid = process;
5893 goto got_it;
5894 }
5895
5896 if (STRINGP (process))
5897 {
5898 Lisp_Object tem;
5899 if (tem = Fget_process (process), NILP (tem))
5900 {
5901 pid = Fstring_to_number (process, make_number (10));
5902 if (XINT (pid) != 0)
5903 goto got_it;
5904 }
5905 process = tem;
5906 }
5907 else
5908 process = get_process (process);
177c0ea7 5909
cdd5ea86
KS
5910 if (NILP (process))
5911 return process;
5912
5913 CHECK_PROCESS (process);
5914 pid = XPROCESS (process)->pid;
5915 if (!INTEGERP (pid) || XINT (pid) <= 0)
5916 error ("Cannot signal process %s", SDATA (XPROCESS (process)->name));
5917
5918 got_it:
4766242d
RS
5919
5920#define handle_signal(NAME, VALUE) \
5921 else if (!strcmp (name, NAME)) \
5922 XSETINT (sigcode, VALUE)
5923
5924 if (INTEGERP (sigcode))
5925 ;
5926 else
5927 {
5928 unsigned char *name;
5929
b7826503 5930 CHECK_SYMBOL (sigcode);
d5db4077 5931 name = SDATA (SYMBOL_NAME (sigcode));
4766242d
RS
5932
5933 if (0)
5934 ;
5935#ifdef SIGHUP
5936 handle_signal ("SIGHUP", SIGHUP);
5937#endif
5938#ifdef SIGINT
5939 handle_signal ("SIGINT", SIGINT);
5940#endif
5941#ifdef SIGQUIT
5942 handle_signal ("SIGQUIT", SIGQUIT);
5943#endif
5944#ifdef SIGILL
5945 handle_signal ("SIGILL", SIGILL);
5946#endif
5947#ifdef SIGABRT
5948 handle_signal ("SIGABRT", SIGABRT);
5949#endif
5950#ifdef SIGEMT
5951 handle_signal ("SIGEMT", SIGEMT);
5952#endif
5953#ifdef SIGKILL
5954 handle_signal ("SIGKILL", SIGKILL);
5955#endif
5956#ifdef SIGFPE
5957 handle_signal ("SIGFPE", SIGFPE);
5958#endif
5959#ifdef SIGBUS
5960 handle_signal ("SIGBUS", SIGBUS);
5961#endif
5962#ifdef SIGSEGV
5963 handle_signal ("SIGSEGV", SIGSEGV);
5964#endif
5965#ifdef SIGSYS
5966 handle_signal ("SIGSYS", SIGSYS);
5967#endif
5968#ifdef SIGPIPE
5969 handle_signal ("SIGPIPE", SIGPIPE);
5970#endif
5971#ifdef SIGALRM
5972 handle_signal ("SIGALRM", SIGALRM);
5973#endif
5974#ifdef SIGTERM
5975 handle_signal ("SIGTERM", SIGTERM);
5976#endif
5977#ifdef SIGURG
5978 handle_signal ("SIGURG", SIGURG);
5979#endif
5980#ifdef SIGSTOP
5981 handle_signal ("SIGSTOP", SIGSTOP);
5982#endif
5983#ifdef SIGTSTP
5984 handle_signal ("SIGTSTP", SIGTSTP);
5985#endif
5986#ifdef SIGCONT
5987 handle_signal ("SIGCONT", SIGCONT);
5988#endif
5989#ifdef SIGCHLD
5990 handle_signal ("SIGCHLD", SIGCHLD);
5991#endif
5992#ifdef SIGTTIN
5993 handle_signal ("SIGTTIN", SIGTTIN);
5994#endif
5995#ifdef SIGTTOU
5996 handle_signal ("SIGTTOU", SIGTTOU);
5997#endif
5998#ifdef SIGIO
5999 handle_signal ("SIGIO", SIGIO);
6000#endif
6001#ifdef SIGXCPU
6002 handle_signal ("SIGXCPU", SIGXCPU);
6003#endif
6004#ifdef SIGXFSZ
6005 handle_signal ("SIGXFSZ", SIGXFSZ);
6006#endif
6007#ifdef SIGVTALRM
6008 handle_signal ("SIGVTALRM", SIGVTALRM);
6009#endif
6010#ifdef SIGPROF
6011 handle_signal ("SIGPROF", SIGPROF);
6012#endif
6013#ifdef SIGWINCH
6014 handle_signal ("SIGWINCH", SIGWINCH);
6015#endif
6016#ifdef SIGINFO
6017 handle_signal ("SIGINFO", SIGINFO);
6018#endif
6019#ifdef SIGUSR1
6020 handle_signal ("SIGUSR1", SIGUSR1);
6021#endif
6022#ifdef SIGUSR2
6023 handle_signal ("SIGUSR2", SIGUSR2);
6024#endif
6025 else
9fa195a2 6026 error ("Undefined signal name %s", name);
4766242d
RS
6027 }
6028
6029#undef handle_signal
6030
4766242d 6031 return make_number (kill (XINT (pid), XINT (sigcode)));
d0d6b7c5
JB
6032}
6033
6034DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
fdb82f93
PJ
6035 doc: /* Make PROCESS see end-of-file in its input.
6036EOF comes after any text already sent to it.
6037PROCESS may be a process, a buffer, the name of a process or buffer, or
6038nil, indicating the current buffer's process.
6039If PROCESS is a network connection, or is a process communicating
6040through a pipe (as opposed to a pty), then you cannot send any more
6041text to PROCESS after you call this function. */)
6042 (process)
d0d6b7c5
JB
6043 Lisp_Object process;
6044{
6045 Lisp_Object proc;
de7fbd09 6046 struct coding_system *coding;
d0d6b7c5 6047
e690ca94
KS
6048 if (DATAGRAM_CONN_P (process))
6049 return process;
6050
d0d6b7c5 6051 proc = get_process (process);
de7fbd09 6052 coding = proc_encode_coding_system[XINT (XPROCESS (proc)->outfd)];
577d03d5
RS
6053
6054 /* Make sure the process is really alive. */
6055 if (! NILP (XPROCESS (proc)->raw_status_low))
6056 update_status (XPROCESS (proc));
6057 if (! EQ (XPROCESS (proc)->status, Qrun))
d5db4077 6058 error ("Process %s not running", SDATA (XPROCESS (proc)->name));
577d03d5 6059
de7fbd09
KH
6060 if (CODING_REQUIRE_FLUSHING (coding))
6061 {
6062 coding->mode |= CODING_MODE_LAST_BLOCK;
6063 send_process (proc, "", 0, Qnil);
6064 }
6065
d0d6b7c5 6066#ifdef VMS
4556b700 6067 send_process (proc, "\032", 1, Qnil); /* ^z */
d0d6b7c5
JB
6068#else
6069 if (!NILP (XPROCESS (proc)->pty_flag))
4556b700 6070 send_process (proc, "\004", 1, Qnil);
d0d6b7c5
JB
6071 else
6072 {
4525f571
RS
6073 int old_outfd, new_outfd;
6074
93853f3d 6075#ifdef HAVE_SHUTDOWN
02f55c4b
RS
6076 /* If this is a network connection, or socketpair is used
6077 for communication with the subprocess, call shutdown to cause EOF.
6078 (In some old system, shutdown to socketpair doesn't work.
6079 Then we just can't win.) */
6080 if (NILP (XPROCESS (proc)->pid)
6081 || XINT (XPROCESS (proc)->outfd) == XINT (XPROCESS (proc)->infd))
6082 shutdown (XINT (XPROCESS (proc)->outfd), 1);
6083 /* In case of socketpair, outfd == infd, so don't close it. */
6084 if (XINT (XPROCESS (proc)->outfd) != XINT (XPROCESS (proc)->infd))
68c45bf0 6085 emacs_close (XINT (XPROCESS (proc)->outfd));
93853f3d 6086#else /* not HAVE_SHUTDOWN */
68c45bf0 6087 emacs_close (XINT (XPROCESS (proc)->outfd));
93853f3d 6088#endif /* not HAVE_SHUTDOWN */
68c45bf0 6089 new_outfd = emacs_open (NULL_DEVICE, O_WRONLY, 0);
4525f571
RS
6090 old_outfd = XINT (XPROCESS (proc)->outfd);
6091
6092 if (!proc_encode_coding_system[new_outfd])
6093 proc_encode_coding_system[new_outfd]
6094 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
6095 bcopy (proc_encode_coding_system[old_outfd],
6096 proc_encode_coding_system[new_outfd],
6097 sizeof (struct coding_system));
6098 bzero (proc_encode_coding_system[old_outfd],
6099 sizeof (struct coding_system));
6100
6101 XSETINT (XPROCESS (proc)->outfd, new_outfd);
d0d6b7c5
JB
6102 }
6103#endif /* VMS */
d0d6b7c5
JB
6104 return process;
6105}
6106
6107/* Kill all processes associated with `buffer'.
3fed8ad5 6108 If `buffer' is nil, kill all processes */
d0d6b7c5 6109
6b53bb85 6110void
d0d6b7c5
JB
6111kill_buffer_processes (buffer)
6112 Lisp_Object buffer;
6113{
6114 Lisp_Object tail, proc;
6115
70949dac 6116 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
d0d6b7c5 6117 {
70949dac 6118 proc = XCDR (XCAR (tail));
b5b502d6 6119 if (GC_PROCESSP (proc)
d0d6b7c5
JB
6120 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
6121 {
6122 if (NETCONN_P (proc))
e1ab4959 6123 Fdelete_process (proc);
a9f2c884 6124 else if (XINT (XPROCESS (proc)->infd) >= 0)
d0d6b7c5
JB
6125 process_send_signal (proc, SIGHUP, Qnil, 1);
6126 }
6127 }
6128}
6129\f
3fed8ad5
GM
6130/* On receipt of a signal that a child status has changed, loop asking
6131 about children with changed statuses until the system says there
6132 are no more.
177c0ea7 6133
3fed8ad5
GM
6134 All we do is change the status; we do not run sentinels or print
6135 notifications. That is saved for the next time keyboard input is
6136 done, in order to avoid timing errors.
6137
6138 ** WARNING: this can be called during garbage collection.
6139 Therefore, it must not be fooled by the presence of mark bits in
6140 Lisp objects.
6141
6142 ** USG WARNING: Although it is not obvious from the documentation
6143 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6144 signal() before executing at least one wait(), otherwise the
6145 handler will be called again, resulting in an infinite loop. The
6146 relevant portion of the documentation reads "SIGCLD signals will be
6147 queued and the signal-catching function will be continually
6148 reentered until the queue is empty". Invoking signal() causes the
6149 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
ce38070a
JD
6150 Inc.
6151
6152 ** Malloc WARNING: This should never call malloc either directly or
6153 indirectly; if it does, that is a bug */
d0d6b7c5
JB
6154
6155SIGTYPE
6156sigchld_handler (signo)
6157 int signo;
6158{
6159 int old_errno = errno;
6160 Lisp_Object proc;
6161 register struct Lisp_Process *p;
6be429b1 6162 extern EMACS_TIME *input_available_clear_time;
d0d6b7c5 6163
333f1b6f
JD
6164 SIGNAL_THREAD_CHECK (signo);
6165
d0d6b7c5
JB
6166#ifdef BSD4_1
6167 extern int sigheld;
6168 sigheld |= sigbit (SIGCHLD);
6169#endif
6170
6171 while (1)
6172 {
6173 register int pid;
6174 WAITTYPE w;
6175 Lisp_Object tail;
6176
6177#ifdef WNOHANG
6178#ifndef WUNTRACED
6179#define WUNTRACED 0
6180#endif /* no WUNTRACED */
6181 /* Keep trying to get a status until we get a definitive result. */
177c0ea7 6182 do
d0d6b7c5
JB
6183 {
6184 errno = 0;
6185 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
6186 }
3fed8ad5 6187 while (pid < 0 && errno == EINTR);
d0d6b7c5
JB
6188
6189 if (pid <= 0)
6190 {
3fed8ad5
GM
6191 /* PID == 0 means no processes found, PID == -1 means a real
6192 failure. We have done all our job, so return. */
d0d6b7c5
JB
6193
6194 /* USG systems forget handlers when they are used;
6195 must reestablish each time */
3c0ee47b 6196#if defined (USG) && !defined (POSIX_SIGNALS)
d0d6b7c5
JB
6197 signal (signo, sigchld_handler); /* WARNING - must come after wait3() */
6198#endif
6199#ifdef BSD4_1
6200 sigheld &= ~sigbit (SIGCHLD);
6201 sigrelse (SIGCHLD);
6202#endif
6203 errno = old_errno;
6204 return;
6205 }
6206#else
6207 pid = wait (&w);
6208#endif /* no WNOHANG */
6209
6210 /* Find the process that signaled us, and record its status. */
6211
6212 p = 0;
3fed8ad5 6213 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
d0d6b7c5 6214 {
70949dac 6215 proc = XCDR (XCAR (tail));
d0d6b7c5 6216 p = XPROCESS (proc);
3fed8ad5 6217 if (GC_EQ (p->childp, Qt) && XINT (p->pid) == pid)
d0d6b7c5
JB
6218 break;
6219 p = 0;
6220 }
6221
6222 /* Look for an asynchronous process whose pid hasn't been filled
6223 in yet. */
6224 if (p == 0)
3fed8ad5 6225 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
d0d6b7c5 6226 {
70949dac 6227 proc = XCDR (XCAR (tail));
d0d6b7c5 6228 p = XPROCESS (proc);
3fed8ad5 6229 if (GC_INTEGERP (p->pid) && XINT (p->pid) == -1)
d0d6b7c5
JB
6230 break;
6231 p = 0;
6232 }
177c0ea7 6233
d0d6b7c5
JB
6234 /* Change the status of the process that was found. */
6235 if (p != 0)
6236 {
6237 union { int i; WAITTYPE wt; } u;
e98d950b 6238 int clear_desc_flag = 0;
177c0ea7 6239
d0d6b7c5
JB
6240 XSETINT (p->tick, ++process_tick);
6241 u.wt = w;
5fc0154c
RS
6242 XSETINT (p->raw_status_low, u.i & 0xffff);
6243 XSETINT (p->raw_status_high, u.i >> 16);
177c0ea7 6244
d0d6b7c5 6245 /* If process has terminated, stop waiting for its output. */
e98d950b
RS
6246 if ((WIFSIGNALED (w) || WIFEXITED (w))
6247 && XINT (p->infd) >= 0)
6248 clear_desc_flag = 1;
6249
6250 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
6251 if (clear_desc_flag)
6252 {
6253 FD_CLR (XINT (p->infd), &input_wait_mask);
6254 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask);
6255 }
6be429b1 6256
214d6069 6257 /* Tell wait_reading_process_output that it needs to wake up and
6be429b1
JB
6258 look around. */
6259 if (input_available_clear_time)
6260 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
d0d6b7c5
JB
6261 }
6262
6263 /* There was no asynchronous process found for that id. Check
6264 if we have a synchronous process. */
6265 else
6266 {
6267 synch_process_alive = 0;
6268
6269 /* Report the status of the synchronous process. */
6270 if (WIFEXITED (w))
6271 synch_process_retcode = WRETCODE (w);
6272 else if (WIFSIGNALED (w))
c22aeff8 6273 synch_process_termsig = WTERMSIG (w);
6be429b1 6274
214d6069 6275 /* Tell wait_reading_process_output that it needs to wake up and
6be429b1
JB
6276 look around. */
6277 if (input_available_clear_time)
6278 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
d0d6b7c5
JB
6279 }
6280
6281 /* On some systems, we must return right away.
6282 If any more processes want to signal us, we will
6283 get another signal.
6284 Otherwise (on systems that have WNOHANG), loop around
6285 to use up all the processes that have something to tell us. */
4e6277d8 6286#if (defined WINDOWSNT \
8a2a6032 6287 || (defined USG && !defined GNU_LINUX \
4e6277d8 6288 && !(defined HPUX && defined WNOHANG)))
3c0ee47b 6289#if defined (USG) && ! defined (POSIX_SIGNALS)
d0d6b7c5
JB
6290 signal (signo, sigchld_handler);
6291#endif
6292 errno = old_errno;
6293 return;
6294#endif /* USG, but not HPUX with WNOHANG */
6295 }
6296}
6297\f
6298
6299static Lisp_Object
6300exec_sentinel_unwind (data)
6301 Lisp_Object data;
6302{
70949dac 6303 XPROCESS (XCAR (data))->sentinel = XCDR (data);
d0d6b7c5
JB
6304 return Qnil;
6305}
6306
3b9a3dfa
RS
6307static Lisp_Object
6308exec_sentinel_error_handler (error)
6309 Lisp_Object error;
6310{
6311 cmd_error_internal (error, "error in process sentinel: ");
6312 Vinhibit_quit = Qt;
6313 update_echo_area ();
833ba342 6314 Fsleep_for (make_number (2), Qnil);
8c983bf2 6315 return Qt;
3b9a3dfa
RS
6316}
6317
d0d6b7c5
JB
6318static void
6319exec_sentinel (proc, reason)
6320 Lisp_Object proc, reason;
6321{
dfc21838 6322 Lisp_Object sentinel, obuffer, odeactivate, okeymap;
d0d6b7c5 6323 register struct Lisp_Process *p = XPROCESS (proc);
aed13378 6324 int count = SPECPDL_INDEX ();
4da2f5be 6325 int outer_running_asynch_code = running_asynch_code;
bbce7d72 6326 int waiting = waiting_for_user_input_p;
d0d6b7c5 6327
dfc21838
RS
6328 /* No need to gcpro these, because all we do with them later
6329 is test them for EQness, and none of them should be a string. */
8fb3cf64 6330 odeactivate = Vdeactivate_mark;
dfc21838
RS
6331 XSETBUFFER (obuffer, current_buffer);
6332 okeymap = current_buffer->keymap;
6333
d0d6b7c5
JB
6334 sentinel = p->sentinel;
6335 if (NILP (sentinel))
6336 return;
6337
6338 /* Zilch the sentinel while it's running, to avoid recursive invocations;
6339 assure that it gets restored no matter how the sentinel exits. */
6340 p->sentinel = Qnil;
6341 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
6342 /* Inhibit quit so that random quits don't screw up a running filter. */
6343 specbind (Qinhibit_quit, Qt);
6545aada 6344 specbind (Qlast_nonmenu_event, Qt);
3b9a3dfa 6345
4da2f5be
RS
6346 /* In case we get recursively called,
6347 and we already saved the match data nonrecursively,
6348 save the same match data in safely recursive fashion. */
6349 if (outer_running_asynch_code)
6350 {
6351 Lisp_Object tem;
89f2614d
KS
6352 tem = Fmatch_data (Qnil, Qnil, Qnil);
6353 restore_search_regs ();
6354 record_unwind_save_match_data ();
6355 Fset_match_data (tem, Qt);
4da2f5be
RS
6356 }
6357
6358 /* For speed, if a search happens within this code,
6359 save the match data in a special nonrecursive fashion. */
7074fde6 6360 running_asynch_code = 1;
4da2f5be 6361
3b9a3dfa
RS
6362 internal_condition_case_1 (read_process_output_call,
6363 Fcons (sentinel,
6364 Fcons (proc, Fcons (reason, Qnil))),
6365 !NILP (Vdebug_on_error) ? Qnil : Qerror,
6366 exec_sentinel_error_handler);
4da2f5be
RS
6367
6368 /* If we saved the match data nonrecursively, restore it now. */
89f2614d 6369 restore_search_regs ();
4da2f5be 6370 running_asynch_code = outer_running_asynch_code;
8fb3cf64
KH
6371
6372 Vdeactivate_mark = odeactivate;
bbce7d72
RS
6373
6374 /* Restore waiting_for_user_input_p as it was
6375 when we were called, in case the filter clobbered it. */
6376 waiting_for_user_input_p = waiting;
6377
7973cfa8 6378#if 0
dfc21838
RS
6379 if (! EQ (Fcurrent_buffer (), obuffer)
6380 || ! EQ (current_buffer->keymap, okeymap))
7973cfa8 6381#endif
927e08be
RS
6382 /* But do it only if the caller is actually going to read events.
6383 Otherwise there's no need to make him wake up, and it could
6384 cause trouble (for example it would make Fsit_for return). */
6385 if (waiting_for_user_input_p == -1)
6386 record_asynch_buffer_change ();
8fb3cf64 6387
2ea6d561 6388 unbind_to (count, Qnil);
d0d6b7c5
JB
6389}
6390
6391/* Report all recent events of a change in process status
6392 (either run the sentinel or output a message).
b50fe468
RS
6393 This is usually done while Emacs is waiting for keyboard input
6394 but can be done at other times. */
d0d6b7c5 6395
6b53bb85 6396void
d0d6b7c5
JB
6397status_notify ()
6398{
6399 register Lisp_Object proc, buffer;
2e4149a8 6400 Lisp_Object tail, msg;
d0d6b7c5
JB
6401 struct gcpro gcpro1, gcpro2;
6402
2e4149a8
KH
6403 tail = Qnil;
6404 msg = Qnil;
d0d6b7c5
JB
6405 /* We need to gcpro tail; if read_process_output calls a filter
6406 which deletes a process and removes the cons to which tail points
6407 from Vprocess_alist, and then causes a GC, tail is an unprotected
6408 reference. */
6409 GCPRO2 (tail, msg);
6410
30623085
RS
6411 /* Set this now, so that if new processes are created by sentinels
6412 that we run, we get called again to handle their status changes. */
6413 update_tick = process_tick;
6414
6415 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
d0d6b7c5 6416 {
30623085
RS
6417 Lisp_Object symbol;
6418 register struct Lisp_Process *p;
6419
6420 proc = Fcdr (Fcar (tail));
6421 p = XPROCESS (proc);
6422
6423 if (XINT (p->tick) != XINT (p->update_tick))
d0d6b7c5 6424 {
30623085 6425 XSETINT (p->update_tick, XINT (p->tick));
d0d6b7c5 6426
30623085 6427 /* If process is still active, read any output that remains. */
4da2f5be 6428 while (! EQ (p->filter, Qt)
dd2a17ab 6429 && ! EQ (p->status, Qconnect)
e690ca94
KS
6430 && ! EQ (p->status, Qlisten)
6431 && ! EQ (p->command, Qt) /* Network process not stopped. */
4da2f5be
RS
6432 && XINT (p->infd) >= 0
6433 && read_process_output (proc, XINT (p->infd)) > 0);
d0d6b7c5 6434
30623085 6435 buffer = p->buffer;
d0d6b7c5 6436
30623085
RS
6437 /* Get the text to use for the message. */
6438 if (!NILP (p->raw_status_low))
6439 update_status (p);
116c423c 6440 msg = status_message (p);
d0d6b7c5 6441
30623085
RS
6442 /* If process is terminated, deactivate it or delete it. */
6443 symbol = p->status;
6444 if (CONSP (p->status))
70949dac 6445 symbol = XCAR (p->status);
d0d6b7c5 6446
30623085
RS
6447 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
6448 || EQ (symbol, Qclosed))
6449 {
6450 if (delete_exited_processes)
6451 remove_process (proc);
6452 else
6453 deactivate_process (proc);
6454 }
d0d6b7c5 6455
0ad61fe7
RS
6456 /* The actions above may have further incremented p->tick.
6457 So set p->update_tick again
6458 so that an error in the sentinel will not cause
6459 this code to be run again. */
6460 XSETINT (p->update_tick, XINT (p->tick));
30623085
RS
6461 /* Now output the message suitably. */
6462 if (!NILP (p->sentinel))
6463 exec_sentinel (proc, msg);
6464 /* Don't bother with a message in the buffer
6465 when a process becomes runnable. */
6466 else if (!EQ (symbol, Qrun) && !NILP (buffer))
6467 {
6468 Lisp_Object ro, tem;
6469 struct buffer *old = current_buffer;
d8a2934e
RS
6470 int opoint, opoint_byte;
6471 int before, before_byte;
2e4149a8 6472
30623085 6473 ro = XBUFFER (buffer)->read_only;
d0d6b7c5 6474
30623085
RS
6475 /* Avoid error if buffer is deleted
6476 (probably that's why the process is dead, too) */
6477 if (NILP (XBUFFER (buffer)->name))
6478 continue;
6479 Fset_buffer (buffer);
12ca5cdf 6480
6ec8bbd2 6481 opoint = PT;
d8a2934e 6482 opoint_byte = PT_BYTE;
30623085
RS
6483 /* Insert new output into buffer
6484 at the current end-of-output marker,
6485 thus preserving logical ordering of input and output. */
6486 if (XMARKER (p->mark)->buffer)
d8a2934e 6487 Fgoto_char (p->mark);
30623085 6488 else
d8a2934e 6489 SET_PT_BOTH (ZV, ZV_BYTE);
12ca5cdf
RS
6490
6491 before = PT;
d8a2934e 6492 before_byte = PT_BYTE;
30623085
RS
6493
6494 tem = current_buffer->read_only;
6495 current_buffer->read_only = Qnil;
6496 insert_string ("\nProcess ");
6497 Finsert (1, &p->name);
6498 insert_string (" ");
6499 Finsert (1, &msg);
6500 current_buffer->read_only = tem;
d8a2934e 6501 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
30623085 6502
12ca5cdf 6503 if (opoint >= before)
d8a2934e
RS
6504 SET_PT_BOTH (opoint + (PT - before),
6505 opoint_byte + (PT_BYTE - before_byte));
12ca5cdf 6506 else
d8a2934e 6507 SET_PT_BOTH (opoint, opoint_byte);
12ca5cdf 6508
30623085 6509 set_buffer_internal (old);
d0d6b7c5 6510 }
30623085
RS
6511 }
6512 } /* end for */
d0d6b7c5
JB
6513
6514 update_mode_lines++; /* in case buffers use %s in mode-line-format */
3007ebfb 6515 redisplay_preserve_echo_area (13);
d0d6b7c5 6516
d0d6b7c5
JB
6517 UNGCPRO;
6518}
0fa1789e
KH
6519
6520\f
6521DEFUN ("set-process-coding-system", Fset_process_coding_system,
6522 Sset_process_coding_system, 1, 3, 0,
fdb82f93
PJ
6523 doc: /* Set coding systems of PROCESS to DECODING and ENCODING.
6524DECODING will be used to decode subprocess output and ENCODING to
6525encode subprocess input. */)
f3d9532b
JB
6526 (process, decoding, encoding)
6527 register Lisp_Object process, decoding, encoding;
0fa1789e
KH
6528{
6529 register struct Lisp_Process *p;
6530
f3d9532b
JB
6531 CHECK_PROCESS (process);
6532 p = XPROCESS (process);
0fa1789e 6533 if (XINT (p->infd) < 0)
d5db4077 6534 error ("Input file descriptor of %s closed", SDATA (p->name));
0fa1789e 6535 if (XINT (p->outfd) < 0)
d5db4077 6536 error ("Output file descriptor of %s closed", SDATA (p->name));
03f04413
KH
6537 Fcheck_coding_system (decoding);
6538 Fcheck_coding_system (encoding);
0fa1789e 6539
03f04413
KH
6540 p->decode_coding_system = decoding;
6541 p->encode_coding_system = encoding;
f3d9532b 6542 setup_process_coding_systems (process);
0fa1789e
KH
6543
6544 return Qnil;
6545}
6546
6547DEFUN ("process-coding-system",
6548 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0,
fdb82f93 6549 doc: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
f3d9532b
JB
6550 (process)
6551 register Lisp_Object process;
0fa1789e 6552{
f3d9532b
JB
6553 CHECK_PROCESS (process);
6554 return Fcons (XPROCESS (process)->decode_coding_system,
6555 XPROCESS (process)->encode_coding_system);
0fa1789e 6556}
03f04413
KH
6557
6558DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte,
6559 Sset_process_filter_multibyte, 2, 2, 0,
7392e23c
KS
6560 doc: /* Set multibyteness of the strings given to PROCESS's filter.
6561If FLAG is non-nil, the filter is given multibyte strings.
6562If FLAG is nil, the filter is given unibyte strings. In this case,
03f04413
KH
6563all character code conversion except for end-of-line conversion is
6564suppressed. */)
f3d9532b
JB
6565 (process, flag)
6566 Lisp_Object process, flag;
03f04413
KH
6567{
6568 register struct Lisp_Process *p;
6569
f3d9532b
JB
6570 CHECK_PROCESS (process);
6571 p = XPROCESS (process);
03f04413 6572 p->filter_multibyte = flag;
f3d9532b 6573 setup_process_coding_systems (process);
03f04413
KH
6574
6575 return Qnil;
6576}
6577
6578DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p,
6579 Sprocess_filter_multibyte_p, 1, 1, 0,
6580 doc: /* Return t if a multibyte string is given to PROCESS's filter.*/)
f3d9532b
JB
6581 (process)
6582 Lisp_Object process;
03f04413
KH
6583{
6584 register struct Lisp_Process *p;
6585
f3d9532b
JB
6586 CHECK_PROCESS (process);
6587 p = XPROCESS (process);
03f04413
KH
6588
6589 return (NILP (p->filter_multibyte) ? Qnil : Qt);
6590}
6591
6592
d0d6b7c5 6593\f
a69281ff
RS
6594/* The first time this is called, assume keyboard input comes from DESC
6595 instead of from where we used to expect it.
6596 Subsequent calls mean assume input keyboard can come from DESC
6597 in addition to other places. */
6598
6599static int add_keyboard_wait_descriptor_called_flag;
6600
6601void
6602add_keyboard_wait_descriptor (desc)
6603 int desc;
6604{
6605 if (! add_keyboard_wait_descriptor_called_flag)
6606 FD_CLR (0, &input_wait_mask);
6607 add_keyboard_wait_descriptor_called_flag = 1;
6608 FD_SET (desc, &input_wait_mask);
b5dc1c83 6609 FD_SET (desc, &non_process_wait_mask);
a69281ff
RS
6610 if (desc > max_keyboard_desc)
6611 max_keyboard_desc = desc;
6612}
6613
6614/* From now on, do not expect DESC to give keyboard input. */
6615
6616void
6617delete_keyboard_wait_descriptor (desc)
6618 int desc;
6619{
6620 int fd;
6621 int lim = max_keyboard_desc;
6622
6623 FD_CLR (desc, &input_wait_mask);
b5dc1c83 6624 FD_CLR (desc, &non_process_wait_mask);
a69281ff
RS
6625
6626 if (desc == max_keyboard_desc)
6627 for (fd = 0; fd < lim; fd++)
6628 if (FD_ISSET (fd, &input_wait_mask)
6629 && !FD_ISSET (fd, &non_keyboard_wait_mask))
6630 max_keyboard_desc = fd;
6631}
6632
6633/* Return nonzero if *MASK has a bit set
6634 that corresponds to one of the keyboard input descriptors. */
6635
6636int
6637keyboard_bit_set (mask)
6638 SELECT_TYPE *mask;
6639{
6640 int fd;
6641
ee8e09af 6642 for (fd = 0; fd <= max_keyboard_desc; fd++)
a69281ff
RS
6643 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask)
6644 && !FD_ISSET (fd, &non_keyboard_wait_mask))
6645 return 1;
6646
6647 return 0;
6648}
6649\f
dfcf069d 6650void
d0d6b7c5
JB
6651init_process ()
6652{
6653 register int i;
6654
6655#ifdef SIGCHLD
6656#ifndef CANNOT_DUMP
6657 if (! noninteractive || initialized)
6658#endif
6659 signal (SIGCHLD, sigchld_handler);
6660#endif
6661
6662 FD_ZERO (&input_wait_mask);
a69281ff 6663 FD_ZERO (&non_keyboard_wait_mask);
b5dc1c83 6664 FD_ZERO (&non_process_wait_mask);
7d0e672e 6665 max_process_desc = 0;
dd2281ae 6666
bad49fc7
KS
6667#ifdef NON_BLOCKING_CONNECT
6668 FD_ZERO (&connect_wait_mask);
6669 num_pending_connects = 0;
6670#endif
6671
2d942bfa
KS
6672#ifdef ADAPTIVE_READ_BUFFERING
6673 process_output_delay_count = 0;
6674 process_output_skip = 0;
6675#endif
6676
a69281ff 6677 FD_SET (0, &input_wait_mask);
dd2281ae 6678
d0d6b7c5
JB
6679 Vprocess_alist = Qnil;
6680 for (i = 0; i < MAXDESC; i++)
6681 {
6682 chan_process[i] = Qnil;
6683 proc_buffered_char[i] = -1;
6684 }
c7580538
KH
6685 bzero (proc_decode_coding_system, sizeof proc_decode_coding_system);
6686 bzero (proc_encode_coding_system, sizeof proc_encode_coding_system);
e690ca94
KS
6687#ifdef DATAGRAM_SOCKETS
6688 bzero (datagram_address, sizeof datagram_address);
6689#endif
9057ff80 6690
c2bd2c26
KS
6691#ifdef HAVE_SOCKETS
6692 {
6693 Lisp_Object subfeatures = Qnil;
2ccf3102
KS
6694 struct socket_options *sopt;
6695
9057ff80
KS
6696#define ADD_SUBFEATURE(key, val) \
6697 subfeatures = Fcons (Fcons (key, Fcons (val, Qnil)), subfeatures)
6698
9057ff80 6699#ifdef NON_BLOCKING_CONNECT
c2bd2c26 6700 ADD_SUBFEATURE (QCnowait, Qt);
9057ff80
KS
6701#endif
6702#ifdef DATAGRAM_SOCKETS
c2bd2c26 6703 ADD_SUBFEATURE (QCtype, Qdatagram);
9057ff80
KS
6704#endif
6705#ifdef HAVE_LOCAL_SOCKETS
c2bd2c26 6706 ADD_SUBFEATURE (QCfamily, Qlocal);
9057ff80
KS
6707#endif
6708#ifdef HAVE_GETSOCKNAME
c2bd2c26 6709 ADD_SUBFEATURE (QCservice, Qt);
9057ff80 6710#endif
a8e8ea61 6711#if !defined(TERM) && (defined(O_NONBLOCK) || defined(O_NDELAY))
c2bd2c26 6712 ADD_SUBFEATURE (QCserver, Qt);
9057ff80 6713#endif
2ccf3102
KS
6714
6715 for (sopt = socket_options; sopt->name; sopt++)
6716 subfeatures = Fcons (intern (sopt->name), subfeatures);
6717
c2bd2c26
KS
6718 Fprovide (intern ("make-network-process"), subfeatures);
6719 }
6720#endif /* HAVE_SOCKETS */
d9e7c622 6721
ecc175e2 6722#if defined (DARWIN) || defined (MAC_OSX)
db853b7a 6723 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
d9e7c622
ST
6724 processes. As such, we only change the default value. */
6725 if (initialized)
6726 {
6727 char *release = get_operating_system_release();
6728 if (!release || !release[0] || (release[0] < MIN_PTY_KERNEL_VERSION
6729 && release[1] == '.')) {
6730 Vprocess_connection_type = Qnil;
6731 }
6732 }
6733#endif
d0d6b7c5 6734}
312c9964 6735
dfcf069d 6736void
d0d6b7c5
JB
6737syms_of_process ()
6738{
d0d6b7c5
JB
6739 Qprocessp = intern ("processp");
6740 staticpro (&Qprocessp);
6741 Qrun = intern ("run");
6742 staticpro (&Qrun);
6743 Qstop = intern ("stop");
6744 staticpro (&Qstop);
6745 Qsignal = intern ("signal");
6746 staticpro (&Qsignal);
6747
6748 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
6749 here again.
6750
6751 Qexit = intern ("exit");
6752 staticpro (&Qexit); */
6753
6754 Qopen = intern ("open");
6755 staticpro (&Qopen);
6756 Qclosed = intern ("closed");
6757 staticpro (&Qclosed);
dd2a17ab
KS
6758 Qconnect = intern ("connect");
6759 staticpro (&Qconnect);
6760 Qfailed = intern ("failed");
6761 staticpro (&Qfailed);
e690ca94
KS
6762 Qlisten = intern ("listen");
6763 staticpro (&Qlisten);
6764 Qlocal = intern ("local");
6765 staticpro (&Qlocal);
9057ff80
KS
6766 Qdatagram = intern ("datagram");
6767 staticpro (&Qdatagram);
e690ca94
KS
6768
6769 QCname = intern (":name");
6770 staticpro (&QCname);
6771 QCbuffer = intern (":buffer");
6772 staticpro (&QCbuffer);
6773 QChost = intern (":host");
6774 staticpro (&QChost);
6775 QCservice = intern (":service");
6776 staticpro (&QCservice);
9057ff80
KS
6777 QCtype = intern (":type");
6778 staticpro (&QCtype);
e690ca94
KS
6779 QClocal = intern (":local");
6780 staticpro (&QClocal);
6781 QCremote = intern (":remote");
6782 staticpro (&QCremote);
6783 QCcoding = intern (":coding");
6784 staticpro (&QCcoding);
6785 QCserver = intern (":server");
6786 staticpro (&QCserver);
e690ca94
KS
6787 QCnowait = intern (":nowait");
6788 staticpro (&QCnowait);
e690ca94
KS
6789 QCsentinel = intern (":sentinel");
6790 staticpro (&QCsentinel);
6791 QClog = intern (":log");
6792 staticpro (&QClog);
6793 QCnoquery = intern (":noquery");
6794 staticpro (&QCnoquery);
6795 QCstop = intern (":stop");
6796 staticpro (&QCstop);
6797 QCoptions = intern (":options");
6798 staticpro (&QCoptions);
faa7db08
KS
6799 QCplist = intern (":plist");
6800 staticpro (&QCplist);
7392e23c
KS
6801 QCfilter_multibyte = intern (":filter-multibyte");
6802 staticpro (&QCfilter_multibyte);
177c0ea7 6803
6545aada
RS
6804 Qlast_nonmenu_event = intern ("last-nonmenu-event");
6805 staticpro (&Qlast_nonmenu_event);
6806
d0d6b7c5
JB
6807 staticpro (&Vprocess_alist);
6808
6809 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
fdb82f93
PJ
6810 doc: /* *Non-nil means delete processes immediately when they exit.
6811nil means don't delete them until `list-processes' is run. */);
d0d6b7c5
JB
6812
6813 delete_exited_processes = 1;
6814
6815 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type,
fdb82f93
PJ
6816 doc: /* Control type of device used to communicate with subprocesses.
6817Values are nil to use a pipe, or t or `pty' to use a pty.
6818The value has no effect if the system has no ptys or if all ptys are busy:
6819then a pipe is used in any case.
6820The value takes effect when `start-process' is called. */);
d0d6b7c5
JB
6821 Vprocess_connection_type = Qt;
6822
2d942bfa
KS
6823#ifdef ADAPTIVE_READ_BUFFERING
6824 DEFVAR_LISP ("process-adaptive-read-buffering", &Vprocess_adaptive_read_buffering,
6825 doc: /* If non-nil, improve receive buffering by delaying after short reads.
f3d9532b 6826On some systems, when Emacs reads the output from a subprocess, the output data
2d942bfa 6827is read in very small blocks, potentially resulting in very poor performance.
2de35a25 6828This behavior can be remedied to some extent by setting this variable to a
2d942bfa 6829non-nil value, as it will automatically delay reading from such processes, to
f3d9532b 6830allowing them to produce more output before Emacs tries to read it.
2d942bfa
KS
6831If the value is t, the delay is reset after each write to the process; any other
6832non-nil value means that the delay is not reset on write.
6833The variable takes effect when `start-process' is called. */);
6834 Vprocess_adaptive_read_buffering = Qt;
6835#endif
6836
d0d6b7c5
JB
6837 defsubr (&Sprocessp);
6838 defsubr (&Sget_process);
6839 defsubr (&Sget_buffer_process);
6840 defsubr (&Sdelete_process);
6841 defsubr (&Sprocess_status);
6842 defsubr (&Sprocess_exit_status);
6843 defsubr (&Sprocess_id);
6844 defsubr (&Sprocess_name);
3b9a3dfa 6845 defsubr (&Sprocess_tty_name);
d0d6b7c5
JB
6846 defsubr (&Sprocess_command);
6847 defsubr (&Sset_process_buffer);
6848 defsubr (&Sprocess_buffer);
6849 defsubr (&Sprocess_mark);
6850 defsubr (&Sset_process_filter);
6851 defsubr (&Sprocess_filter);
6852 defsubr (&Sset_process_sentinel);
6853 defsubr (&Sprocess_sentinel);
de282a05 6854 defsubr (&Sset_process_window_size);
52a1b894
EZ
6855 defsubr (&Sset_process_inherit_coding_system_flag);
6856 defsubr (&Sprocess_inherit_coding_system_flag);
e690ca94
KS
6857 defsubr (&Sset_process_query_on_exit_flag);
6858 defsubr (&Sprocess_query_on_exit_flag);
de282a05 6859 defsubr (&Sprocess_contact);
faa7db08
KS
6860 defsubr (&Sprocess_plist);
6861 defsubr (&Sset_process_plist);
d0d6b7c5
JB
6862 defsubr (&Slist_processes);
6863 defsubr (&Sprocess_list);
6864 defsubr (&Sstart_process);
6865#ifdef HAVE_SOCKETS
2ccf3102 6866 defsubr (&Sset_network_process_option);
e690ca94 6867 defsubr (&Smake_network_process);
991234f0 6868 defsubr (&Sformat_network_address);
b8c7fd71
KS
6869#endif /* HAVE_SOCKETS */
6870#if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
161933c7
KS
6871#ifdef SIOCGIFCONF
6872 defsubr (&Snetwork_interface_list);
6873#endif
6874#if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
2ccf3102 6875 defsubr (&Snetwork_interface_info);
161933c7 6876#endif
b8c7fd71 6877#endif /* HAVE_SOCKETS ... */
e690ca94
KS
6878#ifdef DATAGRAM_SOCKETS
6879 defsubr (&Sprocess_datagram_address);
6880 defsubr (&Sset_process_datagram_address);
6881#endif
d0d6b7c5
JB
6882 defsubr (&Saccept_process_output);
6883 defsubr (&Sprocess_send_region);
6884 defsubr (&Sprocess_send_string);
6885 defsubr (&Sinterrupt_process);
6886 defsubr (&Skill_process);
6887 defsubr (&Squit_process);
6888 defsubr (&Sstop_process);
6889 defsubr (&Scontinue_process);
b81ea5ef 6890 defsubr (&Sprocess_running_child_p);
d0d6b7c5
JB
6891 defsubr (&Sprocess_send_eof);
6892 defsubr (&Ssignal_process);
6893 defsubr (&Swaiting_for_user_input_p);
6894/* defsubr (&Sprocess_connection); */
0fa1789e
KH
6895 defsubr (&Sset_process_coding_system);
6896 defsubr (&Sprocess_coding_system);
03f04413
KH
6897 defsubr (&Sset_process_filter_multibyte);
6898 defsubr (&Sprocess_filter_multibyte_p);
d0d6b7c5
JB
6899}
6900
6720a7fb
JB
6901\f
6902#else /* not subprocesses */
6903
6904#include <sys/types.h>
6905#include <errno.h>
6906
6907#include "lisp.h"
6908#include "systime.h"
52a1b894
EZ
6909#include "charset.h"
6910#include "coding.h"
6720a7fb 6911#include "termopts.h"
81afb6d1 6912#include "sysselect.h"
6720a7fb 6913
ff11dfa1 6914extern int frame_garbaged;
6720a7fb 6915
f694e5d2
KH
6916extern EMACS_TIME timer_check ();
6917extern int timers_run;
6720a7fb 6918
9057ff80
KS
6919Lisp_Object QCtype;
6920
6720a7fb
JB
6921/* As described above, except assuming that there are no subprocesses:
6922
6923 Wait for timeout to elapse and/or keyboard input to be available.
6924
6925 time_limit is:
6926 timeout in seconds, or
6927 zero for no limit, or
6928 -1 means gobble data immediately available but don't wait for any.
6929
f76475ad 6930 read_kbd is a Lisp_Object:
6720a7fb
JB
6931 0 to ignore keyboard input, or
6932 1 to return when input is available, or
6933 -1 means caller will actually read the input, so don't throw to
6934 the quit handler.
b89a415a
KS
6935
6936 see full version for other parameters. We know that wait_proc will
6937 always be NULL, since `subprocesses' isn't defined.
6720a7fb
JB
6938
6939 do_display != 0 means redisplay should be done to show subprocess
5164ee8e 6940 output that arrives.
6720a7fb 6941
eb8c3be9 6942 Return true iff we received input from any process. */
6720a7fb
JB
6943
6944int
214d6069
KS
6945wait_reading_process_output (time_limit, microsecs, read_kbd, do_display,
6946 wait_for_cell, wait_proc, just_wait_proc)
b89a415a
KS
6947 int time_limit, microsecs, read_kbd, do_display;
6948 Lisp_Object wait_for_cell;
6949 struct Lisp_Process *wait_proc;
6950 int just_wait_proc;
6720a7fb 6951{
52fd88d3 6952 register int nfds;
f694e5d2 6953 EMACS_TIME end_time, timeout;
8db121c4 6954 SELECT_TYPE waitchannels;
f694e5d2 6955 int xerrno;
6720a7fb
JB
6956
6957 /* What does time_limit really mean? */
6958 if (time_limit || microsecs)
6959 {
6720a7fb 6960 EMACS_GET_TIME (end_time);
52fd88d3 6961 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
6720a7fb
JB
6962 EMACS_ADD_TIME (end_time, end_time, timeout);
6963 }
6720a7fb
JB
6964
6965 /* Turn off periodic alarms (in case they are in use)
75eb23f1 6966 and then turn off any other atimers,
6720a7fb 6967 because the select emulator uses alarms. */
75eb23f1 6968 stop_polling ();
30904ab7 6969 turn_on_atimers (0);
6720a7fb 6970
52fd88d3 6971 while (1)
6720a7fb 6972 {
bae8d137 6973 int timeout_reduced_for_timers = 0;
6720a7fb 6974
6720a7fb
JB
6975 /* If calling from keyboard input, do not quit
6976 since we want to return C-g as an input character.
6977 Otherwise, do pending quit if requested. */
b89a415a 6978 if (read_kbd >= 0)
6720a7fb
JB
6979 QUIT;
6980
0a65b032 6981 /* Exit now if the cell we're waiting for became non-nil. */
f3fbd155 6982 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
0a65b032
RS
6983 break;
6984
bae8d137
RS
6985 /* Compute time from now till when time limit is up */
6986 /* Exit if already run out */
52fd88d3
EZ
6987 if (time_limit == -1)
6988 {
6989 /* -1 specified for timeout means
6990 gobble output available now
6991 but don't wait at all. */
6992
6993 EMACS_SET_SECS_USECS (timeout, 0, 0);
6994 }
6995 else if (time_limit || microsecs)
6720a7fb 6996 {
f694e5d2
KH
6997 EMACS_GET_TIME (timeout);
6998 EMACS_SUB_TIME (timeout, end_time, timeout);
6999 if (EMACS_TIME_NEG_P (timeout))
6720a7fb
JB
7000 break;
7001 }
52fd88d3
EZ
7002 else
7003 {
7004 EMACS_SET_SECS_USECS (timeout, 100000, 0);
7005 }
6720a7fb 7006
bae8d137
RS
7007 /* If our caller will not immediately handle keyboard events,
7008 run timer events directly.
7009 (Callers that will immediately read keyboard events
7010 call timer_delay on their own.) */
f3fbd155 7011 if (NILP (wait_for_cell))
bae8d137
RS
7012 {
7013 EMACS_TIME timer_delay;
0a65b032 7014
9baacf76 7015 do
0a65b032 7016 {
9baacf76
GM
7017 int old_timers_run = timers_run;
7018 timer_delay = timer_check (1);
7019 if (timers_run != old_timers_run && do_display)
7020 /* We must retry, since a timer may have requeued itself
7021 and that could alter the time delay. */
3007ebfb 7022 redisplay_preserve_echo_area (14);
9baacf76
GM
7023 else
7024 break;
0a65b032 7025 }
9baacf76 7026 while (!detect_input_pending ());
0a65b032 7027
52fd88d3 7028 /* If there is unread keyboard input, also return. */
b89a415a 7029 if (read_kbd != 0
52fd88d3
EZ
7030 && requeued_events_pending_p ())
7031 break;
7032
f694e5d2 7033 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
bae8d137
RS
7034 {
7035 EMACS_TIME difference;
f694e5d2 7036 EMACS_SUB_TIME (difference, timer_delay, timeout);
bae8d137
RS
7037 if (EMACS_TIME_NEG_P (difference))
7038 {
f694e5d2 7039 timeout = timer_delay;
bae8d137
RS
7040 timeout_reduced_for_timers = 1;
7041 }
7042 }
7043 }
7044
6720a7fb
JB
7045 /* Cause C-g and alarm signals to take immediate action,
7046 and cause input available signals to zero out timeout. */
b89a415a 7047 if (read_kbd < 0)
6720a7fb
JB
7048 set_waiting_for_input (&timeout);
7049
0a65b032
RS
7050 /* Wait till there is something to do. */
7051
b89a415a 7052 if (! read_kbd && NILP (wait_for_cell))
0a65b032
RS
7053 FD_ZERO (&waitchannels);
7054 else
7055 FD_SET (0, &waitchannels);
7056
ff11dfa1 7057 /* If a frame has been newly mapped and needs updating,
6720a7fb 7058 reprocess its display stuff. */
5164ee8e 7059 if (frame_garbaged && do_display)
0a65b032
RS
7060 {
7061 clear_waiting_for_input ();
3007ebfb 7062 redisplay_preserve_echo_area (15);
b89a415a 7063 if (read_kbd < 0)
0a65b032
RS
7064 set_waiting_for_input (&timeout);
7065 }
6720a7fb 7066
b89a415a 7067 if (read_kbd && detect_input_pending ())
1861b214
RS
7068 {
7069 nfds = 0;
7070 FD_ZERO (&waitchannels);
7071 }
7072 else
7073 nfds = select (1, &waitchannels, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
7074 &timeout);
f694e5d2
KH
7075
7076 xerrno = errno;
6720a7fb
JB
7077
7078 /* Make C-g and alarm signals set flags again */
7079 clear_waiting_for_input ();
7080
7081 /* If we woke up due to SIGWINCH, actually change size now. */
2b653806 7082 do_pending_window_change (0);
6720a7fb 7083
f694e5d2
KH
7084 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
7085 /* We waited the full specified time, so return now. */
7086 break;
7087
6720a7fb
JB
7088 if (nfds == -1)
7089 {
7090 /* If the system call was interrupted, then go around the
7091 loop again. */
f694e5d2 7092 if (xerrno == EINTR)
8db121c4 7093 FD_ZERO (&waitchannels);
f694e5d2 7094 else
68c45bf0 7095 error ("select error: %s", emacs_strerror (xerrno));
6720a7fb
JB
7096 }
7097#ifdef sun
7098 else if (nfds > 0 && (waitchannels & 1) && interrupt_input)
7099 /* System sometimes fails to deliver SIGIO. */
7100 kill (getpid (), SIGIO);
7101#endif
7324d660 7102#ifdef SIGIO
b89a415a 7103 if (read_kbd && interrupt_input && (waitchannels & 1))
e643c5be 7104 kill (getpid (), SIGIO);
7324d660 7105#endif
6720a7fb 7106
f694e5d2
KH
7107 /* Check for keyboard input */
7108
b89a415a 7109 if (read_kbd
78c1afb6 7110 && detect_input_pending_run_timers (do_display))
f694e5d2 7111 {
78c1afb6 7112 swallow_events (do_display);
f694e5d2 7113 if (detect_input_pending_run_timers (do_display))
a2fab450 7114 break;
78c1afb6
EZ
7115 }
7116
52fd88d3 7117 /* If there is unread keyboard input, also return. */
b89a415a 7118 if (read_kbd
52fd88d3
EZ
7119 && requeued_events_pending_p ())
7120 break;
7121
f854a00b
RS
7122 /* If wait_for_cell. check for keyboard input
7123 but don't run any timers.
7124 ??? (It seems wrong to me to check for keyboard
7125 input at all when wait_for_cell, but the code
7126 has been this way since July 1994.
7127 Try changing this after version 19.31.) */
f3fbd155 7128 if (! NILP (wait_for_cell)
f854a00b
RS
7129 && detect_input_pending ())
7130 {
7131 swallow_events (do_display);
7132 if (detect_input_pending ())
7133 break;
7134 }
7135
0a65b032 7136 /* Exit now if the cell we're waiting for became non-nil. */
f3fbd155 7137 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
0a65b032 7138 break;
6720a7fb
JB
7139 }
7140
a87b802f
JB
7141 start_polling ();
7142
6720a7fb
JB
7143 return 0;
7144}
7145
7146
e2ba787b
PJ
7147/* Don't confuse make-docfile by having two doc strings for this function.
7148 make-docfile does not pay attention to #if, for good reason! */
6720a7fb 7149DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
fdb82f93
PJ
7150 0)
7151 (name)
6720a7fb
JB
7152 register Lisp_Object name;
7153{
7154 return Qnil;
7155}
7156
e2ba787b
PJ
7157 /* Don't confuse make-docfile by having two doc strings for this function.
7158 make-docfile does not pay attention to #if, for good reason! */
52a1b894 7159DEFUN ("process-inherit-coding-system-flag",
fdb82f93
PJ
7160 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
7161 1, 1, 0,
7162 0)
7163 (process)
52a1b894
EZ
7164 register Lisp_Object process;
7165{
7166 /* Ignore the argument and return the value of
7167 inherit-process-coding-system. */
7168 return inherit_process_coding_system ? Qt : Qnil;
7169}
7170
6720a7fb
JB
7171/* Kill all processes associated with `buffer'.
7172 If `buffer' is nil, kill all processes.
7173 Since we have no subprocesses, this does nothing. */
7174
d9bb0c32 7175void
6720a7fb
JB
7176kill_buffer_processes (buffer)
7177 Lisp_Object buffer;
7178{
7179}
7180
02b9b4fd 7181void
6720a7fb
JB
7182init_process ()
7183{
7184}
7185
02b9b4fd 7186void
6720a7fb
JB
7187syms_of_process ()
7188{
9057ff80
KS
7189 QCtype = intern (":type");
7190 staticpro (&QCtype);
7191
6720a7fb 7192 defsubr (&Sget_buffer_process);
52a1b894 7193 defsubr (&Sprocess_inherit_coding_system_flag);
6720a7fb
JB
7194}
7195
7196\f
7197#endif /* not subprocesses */
ab5796a9
MB
7198
7199/* arch-tag: 3706c011-7b9a-4117-bd4f-59e7f701a4c4
7200 (do not change this comment) */