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