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