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