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