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