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