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