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