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