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