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