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