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