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