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