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