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