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