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