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