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