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