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