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