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