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