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