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