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