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