(MAKE_LOCK_NAME): Use size_byte.
[bpt/emacs.git] / src / process.c
CommitLineData
d0d6b7c5 1/* Asynchronous subprocess control for GNU Emacs.
03832893
RS
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 1996
3 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
23#include <signal.h>
24
18160b98 25#include <config.h>
d0d6b7c5 26
6720a7fb
JB
27/* This file is split into two parts by the following preprocessor
28 conditional. The 'then' clause contains all of the support for
29 asynchronous subprocesses. The 'else' clause contains stub
30 versions of some of the asynchronous subprocess routines that are
31 often called elsewhere in Emacs, so we don't have to #ifdef the
32 sections that call them. */
33
34\f
d0d6b7c5 35#ifdef subprocesses
d0d6b7c5
JB
36
37#include <stdio.h>
38#include <errno.h>
39#include <setjmp.h>
40#include <sys/types.h> /* some typedefs are used in sys/file.h */
41#include <sys/file.h>
42#include <sys/stat.h>
93b4f699
RS
43#ifdef HAVE_UNISTD_H
44#include <unistd.h>
45#endif
d0d6b7c5 46
e98d950b
RS
47#ifdef WINDOWSNT
48#include <stdlib.h>
49#include <fcntl.h>
50#endif /* not WINDOWSNT */
51
d0d6b7c5
JB
52#ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
53#include <sys/socket.h>
54#include <netdb.h>
55#include <netinet/in.h>
56#include <arpa/inet.h>
f2cfa9a6
RS
57#ifdef NEED_NET_ERRNO_H
58#include <net/errno.h>
59#endif /* NEED_NET_ERRNO_H */
d0d6b7c5
JB
60#endif /* HAVE_SOCKETS */
61
1d2c16fa
RS
62/* TERM is a poor-man's SLIP, used on Linux. */
63#ifdef TERM
64#include <client.h>
65#endif
66
cf32fea0
PR
67/* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */
68#ifdef HAVE_BROKEN_INET_ADDR
79967d5e
RS
69#define IN_ADDR struct in_addr
70#define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1)
71#else
72#define IN_ADDR unsigned long
73#define NUMERIC_ADDR_ERROR (numeric_addr == -1)
74#endif
75
6df54671 76#if defined(BSD_SYSTEM) || defined(STRIDE)
d0d6b7c5 77#include <sys/ioctl.h>
0ad77c54 78#if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
d0d6b7c5
JB
79#include <fcntl.h>
80#endif /* HAVE_PTYS and no O_NDELAY */
6df54671 81#endif /* BSD_SYSTEM || STRIDE */
d0d6b7c5 82
99e3d726
RS
83#ifdef BROKEN_O_NONBLOCK
84#undef O_NONBLOCK
85#endif /* BROKEN_O_NONBLOCK */
86
d0d6b7c5
JB
87#ifdef NEED_BSDTTY
88#include <bsdtty.h>
89#endif
90
d0d6b7c5
JB
91#ifdef IRIS
92#include <sys/sysmacros.h> /* for "minor" */
93#endif /* not IRIS */
94
95#include "systime.h"
36ebaafa 96#include "systty.h"
d0d6b7c5
JB
97
98#include "lisp.h"
99#include "window.h"
100#include "buffer.h"
0fa1789e
KH
101#include "charset.h"
102#include "coding.h"
d0d6b7c5
JB
103#include "process.h"
104#include "termhooks.h"
105#include "termopts.h"
106#include "commands.h"
1dc77cc3 107#include "frame.h"
ececcbec 108#include "blockinput.h"
d0d6b7c5 109
0c9960e9
RS
110#define max(a, b) ((a) > (b) ? (a) : (b))
111
dd2281ae 112Lisp_Object Qprocessp;
d0d6b7c5 113Lisp_Object Qrun, Qstop, Qsignal, Qopen, Qclosed;
6545aada 114Lisp_Object Qlast_nonmenu_event;
d0d6b7c5
JB
115/* Qexit is declared and initialized in eval.c. */
116
117/* a process object is a network connection when its childp field is neither
de282a05 118 Qt nor Qnil but is instead a cons cell (HOSTNAME PORTNUM). */
d0d6b7c5
JB
119
120#ifdef HAVE_SOCKETS
de282a05 121#define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp))
d0d6b7c5
JB
122#else
123#define NETCONN_P(p) 0
124#endif /* HAVE_SOCKETS */
125
126/* Define first descriptor number available for subprocesses. */
127#ifdef VMS
128#define FIRST_PROC_DESC 1
129#else /* Not VMS */
130#define FIRST_PROC_DESC 3
131#endif
132
133/* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
134 testing SIGCHLD. */
135
136#if !defined (SIGCHLD) && defined (SIGCLD)
137#define SIGCHLD SIGCLD
138#endif /* SIGCLD */
139
140#include "syssignal.h"
141
889255b4 142#include "syswait.h"
d0d6b7c5 143
b062d1fe
RM
144extern int errno;
145extern char *strerror ();
146#ifdef VMS
d0d6b7c5 147extern char *sys_errlist[];
b062d1fe 148#endif
d0d6b7c5 149
5f0929a7
RS
150#ifndef HAVE_H_ERRNO
151extern int h_errno;
152#endif
153
a86928f7 154#ifndef SYS_SIGLIST_DECLARED
d0d6b7c5
JB
155#ifndef VMS
156#ifndef BSD4_1
e98d950b 157#ifndef WINDOWSNT
084fd64a 158#ifndef LINUX
d0d6b7c5 159extern char *sys_siglist[];
a0e4d3f3
RS
160#endif /* not LINUX */
161#else /* BSD4_1 */
d0d6b7c5
JB
162char *sys_siglist[] =
163 {
164 "bum signal!!",
165 "hangup",
166 "interrupt",
167 "quit",
168 "illegal instruction",
169 "trace trap",
170 "iot instruction",
171 "emt instruction",
172 "floating point exception",
173 "kill",
174 "bus error",
175 "segmentation violation",
176 "bad argument to system call",
177 "write on a pipe with no one to read it",
178 "alarm clock",
179 "software termination signal from kill",
180 "status signal",
181 "sendable stop signal not from tty",
182 "stop signal from tty",
183 "continue a stopped process",
184 "child status has changed",
185 "background read attempted from control tty",
186 "background write attempted from control tty",
187 "input record available at control tty",
188 "exceeded CPU time limit",
189 "exceeded file size limit"
190 };
e98d950b 191#endif /* not WINDOWSNT */
d0d6b7c5
JB
192#endif
193#endif /* VMS */
a86928f7 194#endif /* ! SYS_SIGLIST_DECLARED */
d0d6b7c5 195
d0d6b7c5
JB
196/* t means use pty, nil means use a pipe,
197 maybe other values to come. */
dd2281ae 198static Lisp_Object Vprocess_connection_type;
d0d6b7c5
JB
199
200#ifdef SKTPAIR
201#ifndef HAVE_SOCKETS
202#include <sys/socket.h>
203#endif
204#endif /* SKTPAIR */
205
17d02632
KH
206/* These next two vars are non-static since sysdep.c uses them in the
207 emulation of `select'. */
d0d6b7c5 208/* Number of events of change of status of a process. */
17d02632 209int process_tick;
d0d6b7c5 210/* Number of events for which the user or sentinel has been notified. */
17d02632 211int update_tick;
d0d6b7c5 212
5886acf9 213#include "sysselect.h"
d0d6b7c5 214
583dcae4 215/* If we support a window system, turn on the code to poll periodically
44ade2e9 216 to detect C-g. It isn't actually used when doing interrupt input. */
583dcae4 217#ifdef HAVE_WINDOW_SYSTEM
44ade2e9
RS
218#define POLL_FOR_INPUT
219#endif
220
a69281ff 221/* Mask of bits indicating the descriptors that we wait for input on. */
d0d6b7c5 222
dd2281ae
RS
223static SELECT_TYPE input_wait_mask;
224
a69281ff
RS
225/* Mask that excludes keyboard input descriptor (s). */
226
227static SELECT_TYPE non_keyboard_wait_mask;
228
b5dc1c83
RS
229/* Mask that excludes process input descriptor (s). */
230
231static SELECT_TYPE non_process_wait_mask;
232
7d0e672e
RS
233/* The largest descriptor currently in use for a process object. */
234static int max_process_desc;
235
a69281ff
RS
236/* The largest descriptor currently in use for keyboard input. */
237static int max_keyboard_desc;
d0d6b7c5 238
dd2281ae
RS
239/* Nonzero means delete a process right away if it exits. */
240static int delete_exited_processes;
d0d6b7c5
JB
241
242/* Indexed by descriptor, gives the process (if any) for that descriptor */
41f3aa98 243Lisp_Object chan_process[MAXDESC];
d0d6b7c5
JB
244
245/* Alist of elements (NAME . PROCESS) */
41f3aa98 246Lisp_Object Vprocess_alist;
d0d6b7c5
JB
247
248/* Buffered-ahead input char from process, indexed by channel.
249 -1 means empty (no char is buffered).
250 Used on sys V where the only way to tell if there is any
251 output from the process is to read at least one char.
252 Always -1 on systems that support FIONREAD. */
253
e98d950b
RS
254/* Don't make static; need to access externally. */
255int proc_buffered_char[MAXDESC];
dd2281ae 256
0fa1789e 257/* Table of `struct coding-system' for each process. */
c7580538
KH
258static struct coding_system *proc_decode_coding_system[MAXDESC];
259static struct coding_system *proc_encode_coding_system[MAXDESC];
0fa1789e 260
dd2281ae 261static Lisp_Object get_process ();
93b4f699 262
fb4c3627 263extern EMACS_TIME timer_check ();
5de50bfb 264extern int timers_run;
fb4c3627 265
93b4f699
RS
266/* Maximum number of bytes to send to a pty without an eof. */
267static int pty_max_bytes;
3b9a3dfa 268
a932f187
RS
269extern Lisp_Object Vfile_name_coding_system;
270
875e6b94
KH
271#ifdef HAVE_PTYS
272/* The file name of the pty opened by allocate_pty. */
3b9a3dfa
RS
273
274static char pty_name[24];
875e6b94 275#endif
d0d6b7c5
JB
276\f
277/* Compute the Lisp form of the process status, p->status, from
278 the numeric status that was returned by `wait'. */
279
f9738840
JB
280Lisp_Object status_convert ();
281
d0d6b7c5
JB
282update_status (p)
283 struct Lisp_Process *p;
284{
285 union { int i; WAITTYPE wt; } u;
286 u.i = XFASTINT (p->raw_status_low) + (XFASTINT (p->raw_status_high) << 16);
287 p->status = status_convert (u.wt);
288 p->raw_status_low = Qnil;
289 p->raw_status_high = Qnil;
290}
291
91d10fa8 292/* Convert a process status word in Unix format to
d0d6b7c5
JB
293 the list that we use internally. */
294
295Lisp_Object
296status_convert (w)
297 WAITTYPE w;
298{
299 if (WIFSTOPPED (w))
300 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
301 else if (WIFEXITED (w))
302 return Fcons (Qexit, Fcons (make_number (WRETCODE (w)),
303 WCOREDUMP (w) ? Qt : Qnil));
304 else if (WIFSIGNALED (w))
305 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
306 WCOREDUMP (w) ? Qt : Qnil));
307 else
308 return Qrun;
309}
310
311/* Given a status-list, extract the three pieces of information
312 and store them individually through the three pointers. */
313
314void
315decode_status (l, symbol, code, coredump)
316 Lisp_Object l;
317 Lisp_Object *symbol;
318 int *code;
319 int *coredump;
320{
321 Lisp_Object tem;
322
bcd69aea 323 if (SYMBOLP (l))
d0d6b7c5
JB
324 {
325 *symbol = l;
326 *code = 0;
327 *coredump = 0;
328 }
329 else
330 {
331 *symbol = XCONS (l)->car;
332 tem = XCONS (l)->cdr;
333 *code = XFASTINT (XCONS (tem)->car);
f9738840 334 tem = XCONS (tem)->cdr;
d0d6b7c5
JB
335 *coredump = !NILP (tem);
336 }
337}
338
339/* Return a string describing a process status list. */
340
341Lisp_Object
342status_message (status)
343 Lisp_Object status;
344{
345 Lisp_Object symbol;
346 int code, coredump;
347 Lisp_Object string, string2;
348
349 decode_status (status, &symbol, &code, &coredump);
350
351 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
352 {
b97ad9ea
RS
353 char *signame = 0;
354 if (code < NSIG)
355 {
b0310da4 356#ifndef VMS
ed0cae05
RS
357 /* Cast to suppress warning if the table has const char *. */
358 signame = (char *) sys_siglist[code];
b0310da4 359#else
b97ad9ea 360 signame = sys_errlist[code];
b0310da4 361#endif
b97ad9ea
RS
362 }
363 if (signame == 0)
364 signame = "unknown";
365 string = build_string (signame);
d0d6b7c5
JB
366 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
367 XSTRING (string)->data[0] = DOWNCASE (XSTRING (string)->data[0]);
368 return concat2 (string, string2);
369 }
370 else if (EQ (symbol, Qexit))
371 {
372 if (code == 0)
373 return build_string ("finished\n");
f2980264 374 string = Fnumber_to_string (make_number (code));
d0d6b7c5
JB
375 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
376 return concat2 (build_string ("exited abnormally with code "),
377 concat2 (string, string2));
378 }
379 else
380 return Fcopy_sequence (Fsymbol_name (symbol));
381}
382\f
383#ifdef HAVE_PTYS
d0d6b7c5 384
875e6b94
KH
385/* Open an available pty, returning a file descriptor.
386 Return -1 on failure.
387 The file name of the terminal corresponding to the pty
388 is left in the variable pty_name. */
389
d0d6b7c5
JB
390int
391allocate_pty ()
392{
393 struct stat stb;
394 register c, i;
395 int fd;
396
32676c08
JB
397 /* Some systems name their pseudoterminals so that there are gaps in
398 the usual sequence - for example, on HP9000/S700 systems, there
399 are no pseudoterminals with names ending in 'f'. So we wait for
400 three failures in a row before deciding that we've reached the
401 end of the ptys. */
402 int failed_count = 0;
403
d0d6b7c5
JB
404#ifdef PTY_ITERATION
405 PTY_ITERATION
406#else
407 for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
408 for (i = 0; i < 16; i++)
409#endif
410 {
411#ifdef PTY_NAME_SPRINTF
412 PTY_NAME_SPRINTF
d0d6b7c5
JB
413#else
414 sprintf (pty_name, "/dev/pty%c%x", c, i);
d0d6b7c5
JB
415#endif /* no PTY_NAME_SPRINTF */
416
4d7c105e
RS
417#ifdef PTY_OPEN
418 PTY_OPEN;
419#else /* no PTY_OPEN */
32676c08
JB
420#ifdef IRIS
421 /* Unusual IRIS code */
422 *ptyv = open ("/dev/ptc", O_RDWR | O_NDELAY, 0);
423 if (fd < 0)
424 return -1;
425 if (fstat (fd, &stb) < 0)
d0d6b7c5 426 return -1;
4d7c105e 427#else /* not IRIS */
32676c08
JB
428 if (stat (pty_name, &stb) < 0)
429 {
430 failed_count++;
431 if (failed_count >= 3)
432 return -1;
433 }
434 else
435 failed_count = 0;
d0d6b7c5
JB
436#ifdef O_NONBLOCK
437 fd = open (pty_name, O_RDWR | O_NONBLOCK, 0);
438#else
439 fd = open (pty_name, O_RDWR | O_NDELAY, 0);
440#endif
4d7c105e
RS
441#endif /* not IRIS */
442#endif /* no PTY_OPEN */
d0d6b7c5
JB
443
444 if (fd >= 0)
445 {
446 /* check to make certain that both sides are available
447 this avoids a nasty yet stupid bug in rlogins */
448#ifdef PTY_TTY_NAME_SPRINTF
449 PTY_TTY_NAME_SPRINTF
d0d6b7c5
JB
450#else
451 sprintf (pty_name, "/dev/tty%c%x", c, i);
d0d6b7c5
JB
452#endif /* no PTY_TTY_NAME_SPRINTF */
453#ifndef UNIPLUS
454 if (access (pty_name, 6) != 0)
455 {
456 close (fd);
fad97cbe 457#if !defined(IRIS) && !defined(__sgi)
d0d6b7c5
JB
458 continue;
459#else
460 return -1;
461#endif /* IRIS */
462 }
463#endif /* not UNIPLUS */
464 setup_pty (fd);
465 return fd;
466 }
467 }
468 return -1;
469}
470#endif /* HAVE_PTYS */
471\f
472Lisp_Object
473make_process (name)
474 Lisp_Object name;
475{
23d6bb9c 476 struct Lisp_Vector *vec;
d0d6b7c5
JB
477 register Lisp_Object val, tem, name1;
478 register struct Lisp_Process *p;
479 char suffix[10];
480 register int i;
481
23d6bb9c
KH
482 vec = allocate_vectorlike ((EMACS_INT) VECSIZE (struct Lisp_Process));
483 for (i = 0; i < VECSIZE (struct Lisp_Process); i++)
484 vec->contents[i] = Qnil;
485 vec->size = VECSIZE (struct Lisp_Process);
486 p = (struct Lisp_Process *)vec;
487
1d056e64
KH
488 XSETINT (p->infd, -1);
489 XSETINT (p->outfd, -1);
22719df2
KH
490 XSETFASTINT (p->pid, 0);
491 XSETFASTINT (p->tick, 0);
492 XSETFASTINT (p->update_tick, 0);
d0d6b7c5
JB
493 p->raw_status_low = Qnil;
494 p->raw_status_high = Qnil;
495 p->status = Qrun;
496 p->mark = Fmake_marker ();
497
498 /* If name is already in use, modify it until it is unused. */
499
500 name1 = name;
501 for (i = 1; ; i++)
502 {
503 tem = Fget_process (name1);
504 if (NILP (tem)) break;
505 sprintf (suffix, "<%d>", i);
506 name1 = concat2 (name, build_string (suffix));
507 }
508 name = name1;
509 p->name = name;
23d6bb9c 510 XSETPROCESS (val, p);
d0d6b7c5
JB
511 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
512 return val;
513}
514
515remove_process (proc)
516 register Lisp_Object proc;
517{
518 register Lisp_Object pair;
519
520 pair = Frassq (proc, Vprocess_alist);
521 Vprocess_alist = Fdelq (pair, Vprocess_alist);
d0d6b7c5
JB
522
523 deactivate_process (proc);
524}
525\f
526DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
527 "Return t if OBJECT is a process.")
4ee3e309
EN
528 (object)
529 Lisp_Object object;
d0d6b7c5 530{
4ee3e309 531 return PROCESSP (object) ? Qt : Qnil;
d0d6b7c5
JB
532}
533
534DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
535 "Return the process named NAME, or nil if there is none.")
536 (name)
537 register Lisp_Object name;
538{
bcd69aea 539 if (PROCESSP (name))
d0d6b7c5
JB
540 return name;
541 CHECK_STRING (name, 0);
542 return Fcdr (Fassoc (name, Vprocess_alist));
543}
544
545DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
546 "Return the (or, a) process associated with BUFFER.\n\
547BUFFER may be a buffer or the name of one.")
4ee3e309
EN
548 (buffer)
549 register Lisp_Object buffer;
d0d6b7c5
JB
550{
551 register Lisp_Object buf, tail, proc;
552
4ee3e309
EN
553 if (NILP (buffer)) return Qnil;
554 buf = Fget_buffer (buffer);
d0d6b7c5
JB
555 if (NILP (buf)) return Qnil;
556
557 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
558 {
559 proc = Fcdr (Fcar (tail));
bcd69aea 560 if (PROCESSP (proc) && EQ (XPROCESS (proc)->buffer, buf))
d0d6b7c5
JB
561 return proc;
562 }
563 return Qnil;
564}
565
ebb9e16f
JB
566/* This is how commands for the user decode process arguments. It
567 accepts a process, a process name, a buffer, a buffer name, or nil.
568 Buffers denote the first process in the buffer, and nil denotes the
569 current buffer. */
d0d6b7c5 570
77b221b1 571static Lisp_Object
d0d6b7c5
JB
572get_process (name)
573 register Lisp_Object name;
574{
1619761d
KH
575 register Lisp_Object proc, obj;
576 if (STRINGP (name))
577 {
578 obj = Fget_process (name);
579 if (NILP (obj))
580 obj = Fget_buffer (name);
581 if (NILP (obj))
582 error ("Process %s does not exist", XSTRING (name)->data);
583 }
584 else if (NILP (name))
585 obj = Fcurrent_buffer ();
d0d6b7c5 586 else
1619761d
KH
587 obj = name;
588
589 /* Now obj should be either a buffer object or a process object.
590 */
591 if (BUFFERP (obj))
d0d6b7c5 592 {
1619761d 593 proc = Fget_buffer_process (obj);
d0d6b7c5 594 if (NILP (proc))
1619761d 595 error ("Buffer %s has no process", XSTRING (XBUFFER (obj)->name)->data);
d0d6b7c5 596 }
d0d6b7c5 597 else
1619761d
KH
598 {
599 CHECK_PROCESS (obj, 0);
600 proc = obj;
601 }
602 return proc;
d0d6b7c5
JB
603}
604
605DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
606 "Delete PROCESS: kill it and forget about it immediately.\n\
ebb9e16f
JB
607PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
608nil, indicating the current buffer's process.")
4ee3e309
EN
609 (process)
610 register Lisp_Object process;
d0d6b7c5 611{
4ee3e309
EN
612 process = get_process (process);
613 XPROCESS (process)->raw_status_low = Qnil;
614 XPROCESS (process)->raw_status_high = Qnil;
615 if (NETCONN_P (process))
d0d6b7c5 616 {
4ee3e309
EN
617 XPROCESS (process)->status = Fcons (Qexit, Fcons (make_number (0), Qnil));
618 XSETINT (XPROCESS (process)->tick, ++process_tick);
d0d6b7c5 619 }
4ee3e309 620 else if (XINT (XPROCESS (process)->infd) >= 0)
d0d6b7c5 621 {
4ee3e309 622 Fkill_process (process, Qnil);
d0d6b7c5 623 /* Do this now, since remove_process will make sigchld_handler do nothing. */
4ee3e309 624 XPROCESS (process)->status
d0d6b7c5 625 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
4ee3e309 626 XSETINT (XPROCESS (process)->tick, ++process_tick);
d0d6b7c5
JB
627 status_notify ();
628 }
4ee3e309 629 remove_process (process);
d0d6b7c5
JB
630 return Qnil;
631}
632\f
633DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
634 "Return the status of PROCESS: a symbol, one of these:\n\
635run -- for a process that is running.\n\
636stop -- for a process stopped but continuable.\n\
637exit -- for a process that has exited.\n\
638signal -- for a process that has got a fatal signal.\n\
639open -- for a network stream connection that is open.\n\
640closed -- for a network stream connection that is closed.\n\
ebb9e16f
JB
641nil -- if arg is a process name and no such process exists.\n\
642PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
643nil, indicating the current buffer's process.")
4ee3e309
EN
644 (process)
645 register Lisp_Object process;
d0d6b7c5
JB
646{
647 register struct Lisp_Process *p;
648 register Lisp_Object status;
343f4114 649
4ee3e309
EN
650 if (STRINGP (process))
651 process = Fget_process (process);
343f4114 652 else
4ee3e309 653 process = get_process (process);
343f4114 654
4ee3e309
EN
655 if (NILP (process))
656 return process;
343f4114 657
4ee3e309 658 p = XPROCESS (process);
d0d6b7c5
JB
659 if (!NILP (p->raw_status_low))
660 update_status (p);
661 status = p->status;
bcd69aea 662 if (CONSP (status))
d0d6b7c5 663 status = XCONS (status)->car;
4ee3e309 664 if (NETCONN_P (process))
d0d6b7c5
JB
665 {
666 if (EQ (status, Qrun))
667 status = Qopen;
668 else if (EQ (status, Qexit))
669 status = Qclosed;
670 }
671 return status;
672}
673
674DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
675 1, 1, 0,
676 "Return the exit status of PROCESS or the signal number that killed it.\n\
677If PROCESS has not yet exited or died, return 0.")
4ee3e309
EN
678 (process)
679 register Lisp_Object process;
d0d6b7c5 680{
4ee3e309
EN
681 CHECK_PROCESS (process, 0);
682 if (!NILP (XPROCESS (process)->raw_status_low))
683 update_status (XPROCESS (process));
684 if (CONSP (XPROCESS (process)->status))
685 return XCONS (XCONS (XPROCESS (process)->status)->cdr)->car;
d0d6b7c5
JB
686 return make_number (0);
687}
688
689DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
690 "Return the process id of PROCESS.\n\
691This is the pid of the Unix process which PROCESS uses or talks to.\n\
692For a network connection, this value is nil.")
4ee3e309
EN
693 (process)
694 register Lisp_Object process;
d0d6b7c5 695{
4ee3e309
EN
696 CHECK_PROCESS (process, 0);
697 return XPROCESS (process)->pid;
d0d6b7c5
JB
698}
699
700DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
701 "Return the name of PROCESS, as a string.\n\
702This is the name of the program invoked in PROCESS,\n\
703possibly modified to make it unique among process names.")
4ee3e309
EN
704 (process)
705 register Lisp_Object process;
d0d6b7c5 706{
4ee3e309
EN
707 CHECK_PROCESS (process, 0);
708 return XPROCESS (process)->name;
d0d6b7c5
JB
709}
710
711DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
712 "Return the command that was executed to start PROCESS.\n\
713This is a list of strings, the first string being the program executed\n\
714and the rest of the strings being the arguments given to it.\n\
715For a non-child channel, this is nil.")
4ee3e309
EN
716 (process)
717 register Lisp_Object process;
d0d6b7c5 718{
4ee3e309
EN
719 CHECK_PROCESS (process, 0);
720 return XPROCESS (process)->command;
d0d6b7c5
JB
721}
722
3b9a3dfa
RS
723DEFUN ("process-tty-name", Fprocess_tty_name, Sprocess_tty_name, 1, 1, 0,
724 "Return the name of the terminal PROCESS uses, or nil if none.\n\
725This is the terminal that the process itself reads and writes on,\n\
726not the name of the pty that Emacs uses to talk with that terminal.")
4ee3e309
EN
727 (process)
728 register Lisp_Object process;
3b9a3dfa 729{
4ee3e309
EN
730 CHECK_PROCESS (process, 0);
731 return XPROCESS (process)->tty_name;
3b9a3dfa
RS
732}
733
d0d6b7c5
JB
734DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
735 2, 2, 0,
736 "Set buffer associated with PROCESS to BUFFER (a buffer, or nil).")
4ee3e309
EN
737 (process, buffer)
738 register Lisp_Object process, buffer;
d0d6b7c5 739{
4ee3e309 740 CHECK_PROCESS (process, 0);
d0d6b7c5
JB
741 if (!NILP (buffer))
742 CHECK_BUFFER (buffer, 1);
4ee3e309 743 XPROCESS (process)->buffer = buffer;
d0d6b7c5
JB
744 return buffer;
745}
746
747DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
748 1, 1, 0,
749 "Return the buffer PROCESS is associated with.\n\
750Output from PROCESS is inserted in this buffer\n\
751unless PROCESS has a filter.")
4ee3e309
EN
752 (process)
753 register Lisp_Object process;
d0d6b7c5 754{
4ee3e309
EN
755 CHECK_PROCESS (process, 0);
756 return XPROCESS (process)->buffer;
d0d6b7c5
JB
757}
758
759DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
760 1, 1, 0,
761 "Return the marker for the end of the last output from PROCESS.")
4ee3e309
EN
762 (process)
763 register Lisp_Object process;
d0d6b7c5 764{
4ee3e309
EN
765 CHECK_PROCESS (process, 0);
766 return XPROCESS (process)->mark;
d0d6b7c5
JB
767}
768
769DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
770 2, 2, 0,
771 "Give PROCESS the filter function FILTER; nil means no filter.\n\
20ddfff7 772t means stop accepting output from the process.\n\
d0d6b7c5
JB
773When a process has a filter, each time it does output\n\
774the entire string of output is passed to the filter.\n\
775The filter gets two arguments: the process and the string of output.\n\
776If the process has a filter, its buffer is not used for output.")
4ee3e309
EN
777 (process, filter)
778 register Lisp_Object process, filter;
d0d6b7c5 779{
4ee3e309 780 CHECK_PROCESS (process, 0);
20ddfff7 781 if (EQ (filter, Qt))
a69281ff 782 {
4ee3e309
EN
783 FD_CLR (XINT (XPROCESS (process)->infd), &input_wait_mask);
784 FD_CLR (XINT (XPROCESS (process)->infd), &non_keyboard_wait_mask);
a69281ff 785 }
4ee3e309 786 else if (EQ (XPROCESS (process)->filter, Qt))
a69281ff 787 {
4ee3e309
EN
788 FD_SET (XINT (XPROCESS (process)->infd), &input_wait_mask);
789 FD_SET (XINT (XPROCESS (process)->infd), &non_keyboard_wait_mask);
a69281ff 790 }
4ee3e309 791 XPROCESS (process)->filter = filter;
d0d6b7c5
JB
792 return filter;
793}
794
795DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
796 1, 1, 0,
797 "Returns the filter function of PROCESS; nil if none.\n\
798See `set-process-filter' for more info on filter functions.")
4ee3e309
EN
799 (process)
800 register Lisp_Object process;
d0d6b7c5 801{
4ee3e309
EN
802 CHECK_PROCESS (process, 0);
803 return XPROCESS (process)->filter;
d0d6b7c5
JB
804}
805
806DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
807 2, 2, 0,
808 "Give PROCESS the sentinel SENTINEL; nil for none.\n\
809The sentinel is called as a function when the process changes state.\n\
810It gets two arguments: the process, and a string describing the change.")
4ee3e309
EN
811 (process, sentinel)
812 register Lisp_Object process, sentinel;
d0d6b7c5 813{
4ee3e309
EN
814 CHECK_PROCESS (process, 0);
815 XPROCESS (process)->sentinel = sentinel;
d0d6b7c5
JB
816 return sentinel;
817}
818
819DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
820 1, 1, 0,
821 "Return the sentinel of PROCESS; nil if none.\n\
822See `set-process-sentinel' for more info on sentinels.")
4ee3e309
EN
823 (process)
824 register Lisp_Object process;
d0d6b7c5 825{
4ee3e309
EN
826 CHECK_PROCESS (process, 0);
827 return XPROCESS (process)->sentinel;
d0d6b7c5
JB
828}
829
396df322
RS
830DEFUN ("set-process-window-size", Fset_process_window_size,
831 Sset_process_window_size, 3, 3, 0,
832 "Tell PROCESS that it has logical window size HEIGHT and WIDTH.")
4ee3e309
EN
833 (process, height, width)
834 register Lisp_Object process, height, width;
396df322 835{
4ee3e309 836 CHECK_PROCESS (process, 0);
396df322
RS
837 CHECK_NATNUM (height, 0);
838 CHECK_NATNUM (width, 0);
4ee3e309 839 if (set_window_size (XINT (XPROCESS (process)->infd),
396df322
RS
840 XINT (height), XINT(width)) <= 0)
841 return Qnil;
842 else
843 return Qt;
844}
845
d0d6b7c5
JB
846DEFUN ("process-kill-without-query", Fprocess_kill_without_query,
847 Sprocess_kill_without_query, 1, 2, 0,
848 "Say no query needed if PROCESS is running when Emacs is exited.\n\
f2d2dbfe 849Optional second argument if non-nil says to require a query.\n\
d0d6b7c5 850Value is t if a query was formerly required.")
4ee3e309
EN
851 (process, value)
852 register Lisp_Object process, value;
d0d6b7c5
JB
853{
854 Lisp_Object tem;
855
4ee3e309
EN
856 CHECK_PROCESS (process, 0);
857 tem = XPROCESS (process)->kill_without_query;
858 XPROCESS (process)->kill_without_query = Fnull (value);
d0d6b7c5
JB
859
860 return Fnull (tem);
861}
312c9964 862
de282a05
RS
863DEFUN ("process-contact", Fprocess_contact, Sprocess_contact,
864 1, 1, 0,
865 "Return the contact info of PROCESS; t for a real child.\n\
866For a net connection, the value is a cons cell of the form (HOST SERVICE).")
867 (process)
868 register Lisp_Object process;
869{
870 CHECK_PROCESS (process, 0);
871 return XPROCESS (process)->childp;
872}
873
312c9964
RS
874#if 0 /* Turned off because we don't currently record this info
875 in the process. Perhaps add it. */
876DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0,
877 "Return the connection type of `PROCESS'.\n\
878The value is `nil' for a pipe,\n\
879`t' or `pty' for a pty, or `stream' for a socket connection.")
880 (process)
881 Lisp_Object process;
882{
883 return XPROCESS (process)->type;
884}
885#endif
d0d6b7c5
JB
886\f
887Lisp_Object
888list_processes_1 ()
889{
890 register Lisp_Object tail, tem;
891 Lisp_Object proc, minspace, tem1;
892 register struct buffer *old = current_buffer;
893 register struct Lisp_Process *p;
894 register int state;
895 char tembuf[80];
896
22719df2 897 XSETFASTINT (minspace, 1);
d0d6b7c5
JB
898
899 set_buffer_internal (XBUFFER (Vstandard_output));
900 Fbuffer_disable_undo (Vstandard_output);
901
902 current_buffer->truncate_lines = Qt;
903
904 write_string ("\
a9fde32e
KH
905Proc Status Buffer Tty Command\n\
906---- ------ ------ --- -------\n", -1);
d0d6b7c5
JB
907
908 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
909 {
910 Lisp_Object symbol;
911
912 proc = Fcdr (Fcar (tail));
913 p = XPROCESS (proc);
914 if (NILP (p->childp))
915 continue;
916
917 Finsert (1, &p->name);
918 Findent_to (make_number (13), minspace);
919
920 if (!NILP (p->raw_status_low))
921 update_status (p);
922 symbol = p->status;
bcd69aea 923 if (CONSP (p->status))
d0d6b7c5
JB
924 symbol = XCONS (p->status)->car;
925
926
927 if (EQ (symbol, Qsignal))
928 {
929 Lisp_Object tem;
930 tem = Fcar (Fcdr (p->status));
931#ifdef VMS
932 if (XINT (tem) < NSIG)
b0310da4 933 write_string (sys_errlist [XINT (tem)], -1);
d0d6b7c5
JB
934 else
935#endif
936 Fprinc (symbol, Qnil);
937 }
938 else if (NETCONN_P (proc))
939 {
940 if (EQ (symbol, Qrun))
941 write_string ("open", -1);
942 else if (EQ (symbol, Qexit))
943 write_string ("closed", -1);
944 else
945 Fprinc (symbol, Qnil);
946 }
947 else
948 Fprinc (symbol, Qnil);
949
950 if (EQ (symbol, Qexit))
951 {
952 Lisp_Object tem;
953 tem = Fcar (Fcdr (p->status));
954 if (XFASTINT (tem))
955 {
3162bafa 956 sprintf (tembuf, " %d", (int) XFASTINT (tem));
d0d6b7c5
JB
957 write_string (tembuf, -1);
958 }
959 }
960
961 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
962 remove_process (proc);
963
964 Findent_to (make_number (22), minspace);
965 if (NILP (p->buffer))
966 insert_string ("(none)");
967 else if (NILP (XBUFFER (p->buffer)->name))
968 insert_string ("(Killed)");
969 else
970 Finsert (1, &XBUFFER (p->buffer)->name);
971
972 Findent_to (make_number (37), minspace);
973
a9fde32e
KH
974 if (STRINGP (p->tty_name))
975 Finsert (1, &p->tty_name);
976 else
977 insert_string ("(none)");
978
979 Findent_to (make_number (49), minspace);
980
d0d6b7c5
JB
981 if (NETCONN_P (proc))
982 {
983 sprintf (tembuf, "(network stream connection to %s)\n",
de282a05 984 XSTRING (XCONS (p->childp)->car)->data);
d0d6b7c5
JB
985 insert_string (tembuf);
986 }
987 else
988 {
989 tem = p->command;
990 while (1)
991 {
992 tem1 = Fcar (tem);
993 Finsert (1, &tem1);
994 tem = Fcdr (tem);
995 if (NILP (tem))
996 break;
997 insert_string (" ");
998 }
999 insert_string ("\n");
1000 }
1001 }
1002 return Qnil;
1003}
1004
1005DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 0, "",
1006 "Display a list of all processes.\n\
1007\(Any processes listed as Exited or Signaled are actually eliminated\n\
1008after the listing is made.)")
1009 ()
1010{
1011 internal_with_output_to_temp_buffer ("*Process List*",
1012 list_processes_1, Qnil);
1013 return Qnil;
1014}
1015
1016DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
1017 "Return a list of all processes.")
1018 ()
1019{
1020 return Fmapcar (Qcdr, Vprocess_alist);
1021}
1022\f
b0310da4
JB
1023/* Starting asynchronous inferior processes. */
1024
1025static Lisp_Object start_process_unwind ();
1026
d0d6b7c5
JB
1027DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
1028 "Start a program in a subprocess. Return the process object for it.\n\
1029Args are NAME BUFFER PROGRAM &rest PROGRAM-ARGS\n\
1030NAME is name for process. It is modified if necessary to make it unique.\n\
1031BUFFER is the buffer or (buffer-name) to associate with the process.\n\
1032 Process output goes at end of that buffer, unless you specify\n\
1033 an output stream or filter function to handle the output.\n\
1034 BUFFER may be also nil, meaning that this process is not associated\n\
0fa1789e 1035 with any buffer.\n\
d0d6b7c5
JB
1036Third arg is program file name. It is searched for as in the shell.\n\
1037Remaining arguments are strings to give program as arguments.")
1038 (nargs, args)
1039 int nargs;
1040 register Lisp_Object *args;
1041{
1e30af70 1042 Lisp_Object buffer, name, program, proc, current_dir, tem;
d0d6b7c5
JB
1043#ifdef VMS
1044 register unsigned char *new_argv;
1045 int len;
1046#else
1047 register unsigned char **new_argv;
1048#endif
1049 register int i;
b0310da4 1050 int count = specpdl_ptr - specpdl;
d0d6b7c5
JB
1051
1052 buffer = args[1];
1053 if (!NILP (buffer))
1054 buffer = Fget_buffer_create (buffer);
1055
1e30af70
JB
1056 /* Make sure that the child will be able to chdir to the current
1057 buffer's current directory, or its unhandled equivalent. We
1058 can't just have the child check for an error when it does the
1059 chdir, since it's in a vfork.
1060
1061 We have to GCPRO around this because Fexpand_file_name and
1062 Funhandled_file_name_directory might call a file name handling
1063 function. The argument list is protected by the caller, so all
1064 we really have to worry about is buffer. */
1065 {
1066 struct gcpro gcpro1, gcpro2;
1067
1068 current_dir = current_buffer->directory;
1069
1070 GCPRO2 (buffer, current_dir);
1071
7af71e17
RS
1072 current_dir
1073 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir),
1074 Qnil);
1e30af70
JB
1075 if (NILP (Ffile_accessible_directory_p (current_dir)))
1076 report_file_error ("Setting current directory",
1077 Fcons (current_buffer->directory, Qnil));
1078
1079 UNGCPRO;
1080 }
1081
d0d6b7c5
JB
1082 name = args[0];
1083 CHECK_STRING (name, 0);
1084
1085 program = args[2];
1086
1087 CHECK_STRING (program, 2);
1088
1089#ifdef VMS
1090 /* Make a one member argv with all args concatenated
1091 together separated by a blank. */
1092 len = XSTRING (program)->size + 2;
1093 for (i = 3; i < nargs; i++)
1094 {
1095 tem = args[i];
1096 CHECK_STRING (tem, i);
1097 len += XSTRING (tem)->size + 1; /* count the blank */
1098 }
1099 new_argv = (unsigned char *) alloca (len);
1100 strcpy (new_argv, XSTRING (program)->data);
1101 for (i = 3; i < nargs; i++)
1102 {
1103 tem = args[i];
1104 CHECK_STRING (tem, i);
1105 strcat (new_argv, " ");
1106 strcat (new_argv, XSTRING (tem)->data);
1107 }
b0310da4
JB
1108 /* Need to add code here to check for program existence on VMS */
1109
d0d6b7c5
JB
1110#else /* not VMS */
1111 new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *));
1112
d0d6b7c5 1113 /* If program file name is not absolute, search our path for it */
e98d950b
RS
1114 if (!IS_DIRECTORY_SEP (XSTRING (program)->data[0])
1115 && !(XSTRING (program)->size > 1
1116 && IS_DEVICE_SEP (XSTRING (program)->data[1])))
d0d6b7c5 1117 {
3b639868
KH
1118 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1119
d0d6b7c5 1120 tem = Qnil;
3b639868 1121 GCPRO4 (name, program, buffer, current_dir);
5437e9f9 1122 openp (Vexec_path, program, EXEC_SUFFIXES, &tem, 1);
3b639868 1123 UNGCPRO;
d0d6b7c5
JB
1124 if (NILP (tem))
1125 report_file_error ("Searching for program", Fcons (program, Qnil));
f8a87498 1126 tem = Fexpand_file_name (tem, Qnil);
d0d6b7c5
JB
1127 new_argv[0] = XSTRING (tem)->data;
1128 }
3b639868 1129 else
13373f4e
RS
1130 {
1131 if (!NILP (Ffile_directory_p (program)))
1132 error ("Specified program for new process is a directory");
1133
1134 new_argv[0] = XSTRING (program)->data;
1135 }
3b639868
KH
1136
1137 for (i = 3; i < nargs; i++)
1138 {
1139 tem = args[i];
1140 CHECK_STRING (tem, i);
1141 new_argv[i - 2] = XSTRING (tem)->data;
1142 }
1143 new_argv[i - 2] = 0;
d0d6b7c5
JB
1144#endif /* not VMS */
1145
1146 proc = make_process (name);
b0310da4
JB
1147 /* If an error occurs and we can't start the process, we want to
1148 remove it from the process list. This means that each error
1149 check in create_process doesn't need to call remove_process
1150 itself; it's all taken care of here. */
1151 record_unwind_protect (start_process_unwind, proc);
d0d6b7c5
JB
1152
1153 XPROCESS (proc)->childp = Qt;
1154 XPROCESS (proc)->command_channel_p = Qnil;
1155 XPROCESS (proc)->buffer = buffer;
1156 XPROCESS (proc)->sentinel = Qnil;
1157 XPROCESS (proc)->filter = Qnil;
1158 XPROCESS (proc)->command = Flist (nargs - 2, args + 2);
1159
7af71e17
RS
1160 /* Make the process marker point into the process buffer (if any). */
1161 if (!NILP (buffer))
d8a2934e
RS
1162 set_marker_both (XPROCESS (proc)->mark, buffer,
1163 BUF_ZV (XBUFFER (buffer)),
1164 BUF_ZV_BYTE (XBUFFER (buffer)));
7af71e17 1165
c7580538
KH
1166 if (!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters)
1167 || NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters))
1168 {
1169 XPROCESS (proc)->decode_coding_system = Qnil;
1170 XPROCESS (proc)->encode_coding_system = Qnil;
1171 }
1172 else
1173 {
1174 /* Setup coding systems for communicating with the process. */
715f7577 1175 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
c7580538
KH
1176 Lisp_Object coding_systems = Qt;
1177 Lisp_Object val, *args2;
1178 struct gcpro gcpro1;
0fa1789e 1179
11f84d7d
KH
1180 if (!NILP (Vcoding_system_for_read))
1181 val = Vcoding_system_for_read;
1182 else if (NILP (current_buffer->enable_multibyte_characters))
1183 val = Qemacs_mule;
1184 else
c7580538
KH
1185 {
1186 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
1187 args2[0] = Qstart_process;
1188 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1189 GCPRO1 (proc);
715f7577 1190 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
c7580538
KH
1191 UNGCPRO;
1192 if (CONSP (coding_systems))
1193 val = XCONS (coding_systems)->car;
83502605
KH
1194 else if (CONSP (Vdefault_process_coding_system))
1195 val = XCONS (Vdefault_process_coding_system)->car;
11f84d7d
KH
1196 else
1197 val = Qnil;
c7580538
KH
1198 }
1199 XPROCESS (proc)->decode_coding_system = val;
0fa1789e 1200
11f84d7d
KH
1201 if (!NILP (Vcoding_system_for_write))
1202 val = Vcoding_system_for_write;
1203 else if (NILP (current_buffer->enable_multibyte_characters))
1204 val = Qnil;
1205 else
c7580538
KH
1206 {
1207 if (EQ (coding_systems, Qt))
1208 {
1209 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof args2);
1210 args2[0] = Qstart_process;
1211 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1212 GCPRO1 (proc);
715f7577
KH
1213 coding_systems =
1214 Ffind_operation_coding_system (nargs + 1, args2);
c7580538
KH
1215 UNGCPRO;
1216 }
1217 if (CONSP (coding_systems))
1218 val = XCONS (coding_systems)->cdr;
83502605
KH
1219 else if (CONSP (Vdefault_process_coding_system))
1220 val = XCONS (Vdefault_process_coding_system)->cdr;
11f84d7d
KH
1221 else
1222 val = Qnil;
c7580538
KH
1223 }
1224 XPROCESS (proc)->encode_coding_system = val;
1225 }
0fa1789e
KH
1226
1227 XPROCESS (proc)->decoding_buf = make_uninit_string (0);
1228 XPROCESS (proc)->encoding_buf = make_uninit_string (0);
1229
6b53bb85 1230 create_process (proc, (char **) new_argv, current_dir);
d0d6b7c5 1231
b0310da4 1232 return unbind_to (count, proc);
d0d6b7c5
JB
1233}
1234
b0310da4 1235/* This function is the unwind_protect form for Fstart_process. If
8e6208c5 1236 PROC doesn't have its pid set, then we know someone has signaled
b0310da4
JB
1237 an error and the process wasn't started successfully, so we should
1238 remove it from the process list. */
1239static Lisp_Object
1240start_process_unwind (proc)
1241 Lisp_Object proc;
1242{
bcd69aea 1243 if (!PROCESSP (proc))
b0310da4
JB
1244 abort ();
1245
1246 /* Was PROC started successfully? */
188d6c4e 1247 if (XINT (XPROCESS (proc)->pid) <= 0)
b0310da4
JB
1248 remove_process (proc);
1249
1250 return Qnil;
1251}
1252
1253
d0d6b7c5
JB
1254SIGTYPE
1255create_process_1 (signo)
1256 int signo;
1257{
3c0ee47b 1258#if defined (USG) && !defined (POSIX_SIGNALS)
d0d6b7c5
JB
1259 /* USG systems forget handlers when they are used;
1260 must reestablish each time */
1261 signal (signo, create_process_1);
1262#endif /* USG */
1263}
1264
1265#if 0 /* This doesn't work; see the note before sigchld_handler. */
1266#ifdef USG
1267#ifdef SIGCHLD
1268/* Mimic blocking of signals on system V, which doesn't really have it. */
1269
1270/* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1271int sigchld_deferred;
1272
1273SIGTYPE
1274create_process_sigchld ()
1275{
1276 signal (SIGCHLD, create_process_sigchld);
1277
1278 sigchld_deferred = 1;
1279}
1280#endif
1281#endif
1282#endif
1283
1284#ifndef VMS /* VMS version of this function is in vmsproc.c. */
6b53bb85 1285void
1e30af70 1286create_process (process, new_argv, current_dir)
d0d6b7c5
JB
1287 Lisp_Object process;
1288 char **new_argv;
1e30af70 1289 Lisp_Object current_dir;
d0d6b7c5 1290{
ecd1f654 1291 int pid, inchannel, outchannel;
d0d6b7c5 1292 int sv[2];
0dc70c33
KH
1293#ifdef POSIX_SIGNALS
1294 sigset_t procmask;
1295 sigset_t blocked;
1296 struct sigaction sigint_action;
1297 struct sigaction sigquit_action;
1298#ifdef AIX
1299 struct sigaction sighup_action;
1300#endif
1301#else /* !POSIX_SIGNALS */
d0d6b7c5
JB
1302#ifdef SIGCHLD
1303 SIGTYPE (*sigchld)();
1304#endif
0dc70c33 1305#endif /* !POSIX_SIGNALS */
ecd1f654
KH
1306 /* Use volatile to protect variables from being clobbered by longjmp. */
1307 volatile int forkin, forkout;
1308 volatile int pty_flag = 0;
d0d6b7c5
JB
1309 extern char **environ;
1310
d0d6b7c5
JB
1311 inchannel = outchannel = -1;
1312
1313#ifdef HAVE_PTYS
fe45da4e 1314 if (!NILP (Vprocess_connection_type))
d0d6b7c5
JB
1315 outchannel = inchannel = allocate_pty ();
1316
d0d6b7c5
JB
1317 if (inchannel >= 0)
1318 {
1319#ifndef USG
1320 /* On USG systems it does not work to open the pty's tty here
1321 and then close and reopen it in the child. */
1322#ifdef O_NOCTTY
1323 /* Don't let this terminal become our controlling terminal
1324 (in case we don't have one). */
1325 forkout = forkin = open (pty_name, O_RDWR | O_NOCTTY, 0);
1326#else
1327 forkout = forkin = open (pty_name, O_RDWR, 0);
1328#endif
1329 if (forkin < 0)
1330 report_file_error ("Opening pty", Qnil);
1331#else
1332 forkin = forkout = -1;
1333#endif /* not USG */
1334 pty_flag = 1;
1335 }
1336 else
1337#endif /* HAVE_PTYS */
1338#ifdef SKTPAIR
1339 {
1340 if (socketpair (AF_UNIX, SOCK_STREAM, 0, sv) < 0)
1341 report_file_error ("Opening socketpair", Qnil);
1342 outchannel = inchannel = sv[0];
1343 forkout = forkin = sv[1];
1344 }
1345#else /* not SKTPAIR */
1346 {
1347 pipe (sv);
1348 inchannel = sv[0];
1349 forkout = sv[1];
1350 pipe (sv);
1351 outchannel = sv[1];
1352 forkin = sv[0];
1353 }
1354#endif /* not SKTPAIR */
1355
1356#if 0
1357 /* Replaced by close_process_descs */
1358 set_exclusive_use (inchannel);
1359 set_exclusive_use (outchannel);
1360#endif
1361
1362/* Stride people say it's a mystery why this is needed
1363 as well as the O_NDELAY, but that it fails without this. */
1364#if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS))
1365 {
1366 int one = 1;
1367 ioctl (inchannel, FIONBIO, &one);
1368 }
1369#endif
1370
1371#ifdef O_NONBLOCK
1372 fcntl (inchannel, F_SETFL, O_NONBLOCK);
03832893 1373 fcntl (outchannel, F_SETFL, O_NONBLOCK);
d0d6b7c5
JB
1374#else
1375#ifdef O_NDELAY
1376 fcntl (inchannel, F_SETFL, O_NDELAY);
03832893 1377 fcntl (outchannel, F_SETFL, O_NDELAY);
d0d6b7c5
JB
1378#endif
1379#endif
1380
1381 /* Record this as an active process, with its channels.
1382 As a result, child_setup will close Emacs's side of the pipes. */
1383 chan_process[inchannel] = process;
1d056e64
KH
1384 XSETINT (XPROCESS (process)->infd, inchannel);
1385 XSETINT (XPROCESS (process)->outfd, outchannel);
d0d6b7c5
JB
1386 /* Record the tty descriptor used in the subprocess. */
1387 if (forkin < 0)
1388 XPROCESS (process)->subtty = Qnil;
1389 else
22719df2 1390 XSETFASTINT (XPROCESS (process)->subtty, forkin);
d0d6b7c5
JB
1391 XPROCESS (process)->pty_flag = (pty_flag ? Qt : Qnil);
1392 XPROCESS (process)->status = Qrun;
c7580538
KH
1393 if (!proc_decode_coding_system[inchannel])
1394 proc_decode_coding_system[inchannel]
1395 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
0fa1789e 1396 setup_coding_system (XPROCESS (process)->decode_coding_system,
c7580538
KH
1397 proc_decode_coding_system[inchannel]);
1398 if (!proc_encode_coding_system[outchannel])
1399 proc_encode_coding_system[outchannel]
1400 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
0fa1789e 1401 setup_coding_system (XPROCESS (process)->encode_coding_system,
c7580538 1402 proc_encode_coding_system[outchannel]);
d0d6b7c5 1403
1a283a4c
KH
1404 if (CODING_REQUIRE_ENCODING (proc_encode_coding_system[outchannel]))
1405 {
1406 /* Here we encode arguments by the coding system used for
1407 sending data to the process. We don't support using
1408 different coding systems for encoding arguments and for
1409 encoding data sent to the process. */
1410 struct gcpro gcpro1;
1411 int i = 1;
1412 struct coding_system *coding = proc_encode_coding_system[outchannel];
1413
1414 coding->last_block = 1;
1415 GCPRO1 (process);
1416 while (new_argv[i] != 0)
1417 {
1418 int len = strlen (new_argv[i]);
1419 int size = encoding_buffer_size (coding, len);
1420 unsigned char *buf = (unsigned char *) alloca (size);
1421 int produced, dmy;
1422
1423 produced = encode_coding (coding, new_argv[i], buf, len, size, &dmy);
1424 buf[produced] = 0;
1425 /* We don't have to free new_argv[i] because it points to a
1426 Lisp string given as an argument to `start-process'. */
1427 new_argv[i++] = buf;
1428 }
1429 UNGCPRO;
1430 coding->last_block = 0;
1431 }
1432
d0d6b7c5
JB
1433 /* Delay interrupts until we have a chance to store
1434 the new fork's pid in its process structure */
0dc70c33
KH
1435#ifdef POSIX_SIGNALS
1436 sigemptyset (&blocked);
1437#ifdef SIGCHLD
1438 sigaddset (&blocked, SIGCHLD);
1439#endif
1440#ifdef HAVE_VFORK
1441 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
1442 this sets the parent's signal handlers as well as the child's.
1443 So delay all interrupts whose handlers the child might munge,
1444 and record the current handlers so they can be restored later. */
1445 sigaddset (&blocked, SIGINT ); sigaction (SIGINT , 0, &sigint_action );
1446 sigaddset (&blocked, SIGQUIT); sigaction (SIGQUIT, 0, &sigquit_action);
1447#ifdef AIX
1448 sigaddset (&blocked, SIGHUP ); sigaction (SIGHUP , 0, &sighup_action );
1449#endif
1450#endif /* HAVE_VFORK */
1451 sigprocmask (SIG_BLOCK, &blocked, &procmask);
1452#else /* !POSIX_SIGNALS */
d0d6b7c5
JB
1453#ifdef SIGCHLD
1454#ifdef BSD4_1
1455 sighold (SIGCHLD);
1456#else /* not BSD4_1 */
6df54671 1457#if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
d0d6b7c5
JB
1458 sigsetmask (sigmask (SIGCHLD));
1459#else /* ordinary USG */
1460#if 0
1461 sigchld_deferred = 0;
1462 sigchld = signal (SIGCHLD, create_process_sigchld);
1463#endif
1464#endif /* ordinary USG */
1465#endif /* not BSD4_1 */
1466#endif /* SIGCHLD */
0dc70c33 1467#endif /* !POSIX_SIGNALS */
d0d6b7c5 1468
3081bf8d 1469 FD_SET (inchannel, &input_wait_mask);
a69281ff 1470 FD_SET (inchannel, &non_keyboard_wait_mask);
3081bf8d
KH
1471 if (inchannel > max_process_desc)
1472 max_process_desc = inchannel;
1473
d0d6b7c5
JB
1474 /* Until we store the proper pid, enable sigchld_handler
1475 to recognize an unknown pid as standing for this process.
1476 It is very important not to let this `marker' value stay
1477 in the table after this function has returned; if it does
1478 it might cause call-process to hang and subsequent asynchronous
1479 processes to get their return values scrambled. */
1480 XSETINT (XPROCESS (process)->pid, -1);
1481
ececcbec
RS
1482 BLOCK_INPUT;
1483
d0d6b7c5
JB
1484 {
1485 /* child_setup must clobber environ on systems with true vfork.
1486 Protect it from permanent change. */
1487 char **save_environ = environ;
1488
a932f187
RS
1489 current_dir
1490 = Fencode_coding_string (current_dir, Vfile_name_coding_system, Qt);
1491
e98d950b 1492#ifndef WINDOWSNT
d0d6b7c5
JB
1493 pid = vfork ();
1494 if (pid == 0)
e98d950b 1495#endif /* not WINDOWSNT */
d0d6b7c5
JB
1496 {
1497 int xforkin = forkin;
1498 int xforkout = forkout;
1499
1500#if 0 /* This was probably a mistake--it duplicates code later on,
1501 but fails to handle all the cases. */
1502 /* Make sure SIGCHLD is not blocked in the child. */
1503 sigsetmask (SIGEMPTYMASK);
1504#endif
1505
1506 /* Make the pty be the controlling terminal of the process. */
1507#ifdef HAVE_PTYS
1508 /* First, disconnect its current controlling terminal. */
1509#ifdef HAVE_SETSID
7ce48618
RS
1510 /* We tried doing setsid only if pty_flag, but it caused
1511 process_set_signal to fail on SGI when using a pipe. */
1512 setsid ();
ce4c9c90 1513 /* Make the pty's terminal the controlling terminal. */
084fd64a 1514 if (pty_flag)
39e9ebcd 1515 {
39e9ebcd
RS
1516#ifdef TIOCSCTTY
1517 /* We ignore the return value
1518 because faith@cs.unc.edu says that is necessary on Linux. */
1519 ioctl (xforkin, TIOCSCTTY, 0);
ce4c9c90 1520#endif
39e9ebcd 1521 }
d0d6b7c5 1522#else /* not HAVE_SETSID */
c14e53a4 1523#ifdef USG
000ab717 1524 /* It's very important to call setpgrp here and no time
d0d6b7c5
JB
1525 afterwards. Otherwise, we lose our controlling tty which
1526 is set when we open the pty. */
1527 setpgrp ();
1528#endif /* USG */
1529#endif /* not HAVE_SETSID */
9bcf8ec6
KH
1530#if defined (HAVE_TERMIOS) && defined (LDISC1)
1531 if (pty_flag && xforkin >= 0)
1532 {
1533 struct termios t;
1534 tcgetattr (xforkin, &t);
1535 t.c_lflag = LDISC1;
1536 if (tcsetattr (xforkin, TCSANOW, &t) < 0)
1537 write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
1538 }
1539#else
aafadd9f 1540#if defined (NTTYDISC) && defined (TIOCSETD)
ff773a4e 1541 if (pty_flag && xforkin >= 0)
afc549fd
RS
1542 {
1543 /* Use new line discipline. */
1544 int ldisc = NTTYDISC;
4458f555 1545 ioctl (xforkin, TIOCSETD, &ldisc);
afc549fd 1546 }
000ab717 1547#endif
9bcf8ec6 1548#endif
d0d6b7c5
JB
1549#ifdef TIOCNOTTY
1550 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1551 can do TIOCSPGRP only to the process's controlling tty. */
1552 if (pty_flag)
1553 {
1554 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1555 I can't test it since I don't have 4.3. */
1556 int j = open ("/dev/tty", O_RDWR, 0);
1557 ioctl (j, TIOCNOTTY, 0);
1558 close (j);
5a570e37 1559#ifndef USG
d0d6b7c5
JB
1560 /* In order to get a controlling terminal on some versions
1561 of BSD, it is necessary to put the process in pgrp 0
1562 before it opens the terminal. */
99c1aeca 1563#ifdef HAVE_SETPGID
3ea1d291
RS
1564 setpgid (0, 0);
1565#else
d0d6b7c5 1566 setpgrp (0, 0);
3ea1d291 1567#endif
d0d6b7c5
JB
1568#endif
1569 }
1570#endif /* TIOCNOTTY */
1571
99153b9e 1572#if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
d0d6b7c5 1573/*** There is a suggestion that this ought to be a
99153b9e
RS
1574 conditional on TIOCSPGRP,
1575 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
1576 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
1577 that system does seem to need this code, even though
1578 both HAVE_SETSID and TIOCSCTTY are defined. */
d0d6b7c5
JB
1579 /* Now close the pty (if we had it open) and reopen it.
1580 This makes the pty the controlling terminal of the subprocess. */
1581 if (pty_flag)
1582 {
99e3d726
RS
1583#ifdef SET_CHILD_PTY_PGRP
1584 int pgrp = getpid ();
1585#endif
1586
d0d6b7c5
JB
1587 /* I wonder if close (open (pty_name, ...)) would work? */
1588 if (xforkin >= 0)
1589 close (xforkin);
1590 xforkout = xforkin = open (pty_name, O_RDWR, 0);
1591
4aa54ba8
RS
1592 if (xforkin < 0)
1593 {
1594 write (1, "Couldn't open the pty terminal ", 31);
1595 write (1, pty_name, strlen (pty_name));
1596 write (1, "\n", 1);
1597 _exit (1);
1598 }
1599
99e3d726
RS
1600#ifdef SET_CHILD_PTY_PGRP
1601 ioctl (xforkin, TIOCSPGRP, &pgrp);
1602 ioctl (xforkout, TIOCSPGRP, &pgrp);
1603#endif
d0d6b7c5 1604 }
99153b9e 1605#endif /* not UNIPLUS and not RTU and not DONT_REOPEN_PTY */
e9bf058b 1606
d0d6b7c5 1607#ifdef SETUP_SLAVE_PTY
13a72104
RS
1608 if (pty_flag)
1609 {
1610 SETUP_SLAVE_PTY;
1611 }
d0d6b7c5
JB
1612#endif /* SETUP_SLAVE_PTY */
1613#ifdef AIX
1614 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
1615 Now reenable it in the child, so it will die when we want it to. */
1616 if (pty_flag)
1617 signal (SIGHUP, SIG_DFL);
1618#endif
1619#endif /* HAVE_PTYS */
1620
0dc70c33
KH
1621 signal (SIGINT, SIG_DFL);
1622 signal (SIGQUIT, SIG_DFL);
1623
1624 /* Stop blocking signals in the child. */
1625#ifdef POSIX_SIGNALS
1626 sigprocmask (SIG_SETMASK, &procmask, 0);
1627#else /* !POSIX_SIGNALS */
d0d6b7c5
JB
1628#ifdef SIGCHLD
1629#ifdef BSD4_1
1630 sigrelse (SIGCHLD);
1631#else /* not BSD4_1 */
6df54671 1632#if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
d0d6b7c5
JB
1633 sigsetmask (SIGEMPTYMASK);
1634#else /* ordinary USG */
63528b78 1635#if 0
d0d6b7c5 1636 signal (SIGCHLD, sigchld);
63528b78 1637#endif
d0d6b7c5
JB
1638#endif /* ordinary USG */
1639#endif /* not BSD4_1 */
1640#endif /* SIGCHLD */
0dc70c33 1641#endif /* !POSIX_SIGNALS */
5e7e1da2 1642
ab01d0a8
RS
1643 if (pty_flag)
1644 child_setup_tty (xforkout);
e98d950b
RS
1645#ifdef WINDOWSNT
1646 pid = child_setup (xforkin, xforkout, xforkout,
1647 new_argv, 1, current_dir);
1648#else /* not WINDOWSNT */
d0d6b7c5 1649 child_setup (xforkin, xforkout, xforkout,
e065a56e 1650 new_argv, 1, current_dir);
e98d950b 1651#endif /* not WINDOWSNT */
d0d6b7c5
JB
1652 }
1653 environ = save_environ;
1654 }
1655
ececcbec
RS
1656 UNBLOCK_INPUT;
1657
4a127b3b 1658 /* This runs in the Emacs process. */
d0d6b7c5 1659 if (pid < 0)
6311cf58
RS
1660 {
1661 if (forkin >= 0)
1662 close (forkin);
1663 if (forkin != forkout && forkout >= 0)
1664 close (forkout);
6311cf58 1665 }
4a127b3b
KH
1666 else
1667 {
1668 /* vfork succeeded. */
1669 XSETFASTINT (XPROCESS (process)->pid, pid);
d0d6b7c5 1670
e98d950b 1671#ifdef WINDOWSNT
4a127b3b 1672 register_child (pid, inchannel);
e98d950b
RS
1673#endif /* WINDOWSNT */
1674
4a127b3b
KH
1675 /* If the subfork execv fails, and it exits,
1676 this close hangs. I don't know why.
1677 So have an interrupt jar it loose. */
1678 stop_polling ();
1679 signal (SIGALRM, create_process_1);
1680 alarm (1);
1681 XPROCESS (process)->subtty = Qnil;
1682 if (forkin >= 0)
1683 close (forkin);
1684 alarm (0);
1685 start_polling ();
1686 if (forkin != forkout && forkout >= 0)
1687 close (forkout);
d0d6b7c5 1688
875e6b94 1689#ifdef HAVE_PTYS
4a127b3b
KH
1690 if (pty_flag)
1691 XPROCESS (process)->tty_name = build_string (pty_name);
1692 else
875e6b94 1693#endif
4a127b3b
KH
1694 XPROCESS (process)->tty_name = Qnil;
1695 }
3b9a3dfa 1696
4a127b3b
KH
1697 /* Restore the signal state whether vfork succeeded or not.
1698 (We will signal an error, below, if it failed.) */
0dc70c33
KH
1699#ifdef POSIX_SIGNALS
1700#ifdef HAVE_VFORK
1701 /* Restore the parent's signal handlers. */
1702 sigaction (SIGINT, &sigint_action, 0);
1703 sigaction (SIGQUIT, &sigquit_action, 0);
1704#ifdef AIX
1705 sigaction (SIGHUP, &sighup_action, 0);
1706#endif
1707#endif /* HAVE_VFORK */
1708 /* Stop blocking signals in the parent. */
1709 sigprocmask (SIG_SETMASK, &procmask, 0);
1710#else /* !POSIX_SIGNALS */
d0d6b7c5
JB
1711#ifdef SIGCHLD
1712#ifdef BSD4_1
1713 sigrelse (SIGCHLD);
1714#else /* not BSD4_1 */
6df54671 1715#if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
d0d6b7c5
JB
1716 sigsetmask (SIGEMPTYMASK);
1717#else /* ordinary USG */
1718#if 0
1719 signal (SIGCHLD, sigchld);
1720 /* Now really handle any of these signals
1721 that came in during this function. */
1722 if (sigchld_deferred)
1723 kill (getpid (), SIGCHLD);
1724#endif
1725#endif /* ordinary USG */
1726#endif /* not BSD4_1 */
1727#endif /* SIGCHLD */
0dc70c33 1728#endif /* !POSIX_SIGNALS */
4a127b3b
KH
1729
1730 /* Now generate the error if vfork failed. */
1731 if (pid < 0)
1732 report_file_error ("Doing vfork", Qnil);
d0d6b7c5
JB
1733}
1734#endif /* not VMS */
1735
1736#ifdef HAVE_SOCKETS
1737
1738/* open a TCP network connection to a given HOST/SERVICE. Treated
1739 exactly like a normal process when reading and writing. Only
1740 differences are in status display and process deletion. A network
1741 connection has no PID; you cannot signal it. All you can do is
1742 deactivate and close it via delete-process */
1743
1744DEFUN ("open-network-stream", Fopen_network_stream, Sopen_network_stream,
1745 4, 4, 0,
1746 "Open a TCP connection for a service to a host.\n\
1747Returns a subprocess-object to represent the connection.\n\
1748Input and output work as for subprocesses; `delete-process' closes it.\n\
1749Args are NAME BUFFER HOST SERVICE.\n\
1750NAME is name for process. It is modified if necessary to make it unique.\n\
1751BUFFER is the buffer (or buffer-name) to associate with the process.\n\
1752 Process output goes at end of that buffer, unless you specify\n\
1753 an output stream or filter function to handle the output.\n\
1754 BUFFER may be also nil, meaning that this process is not associated\n\
1755 with any buffer\n\
1756Third arg is name of the host to connect to, or its IP address.\n\
1757Fourth arg SERVICE is name of the service desired, or an integer\n\
1758 specifying a port number to connect to.")
1759 (name, buffer, host, service)
1760 Lisp_Object name, buffer, host, service;
1761{
1762 Lisp_Object proc;
1763 register int i;
1764 struct sockaddr_in address;
1765 struct servent *svc_info;
1766 struct hostent *host_info_ptr, host_info;
1767 char *(addr_list[2]);
79967d5e 1768 IN_ADDR numeric_addr;
d0d6b7c5
JB
1769 int s, outch, inch;
1770 char errstring[80];
1771 int port;
1772 struct hostent host_info_fixed;
1773 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
e333e864 1774 int retry = 0;
44ade2e9 1775 int count = specpdl_ptr - specpdl;
d0d6b7c5 1776
bff3ed0a
RS
1777#ifdef WINDOWSNT
1778 /* Ensure socket support is loaded if available. */
1779 init_winsock (TRUE);
1780#endif
1781
d0d6b7c5
JB
1782 GCPRO4 (name, buffer, host, service);
1783 CHECK_STRING (name, 0);
1784 CHECK_STRING (host, 0);
bcd69aea 1785 if (INTEGERP (service))
d0d6b7c5
JB
1786 port = htons ((unsigned short) XINT (service));
1787 else
1788 {
1789 CHECK_STRING (service, 0);
1790 svc_info = getservbyname (XSTRING (service)->data, "tcp");
1791 if (svc_info == 0)
1792 error ("Unknown service \"%s\"", XSTRING (service)->data);
1793 port = svc_info->s_port;
1794 }
1795
798b64bb
KH
1796 /* Slow down polling to every ten seconds.
1797 Some kernels have a bug which causes retrying connect to fail
1798 after a connect. Polling can interfere with gethostbyname too. */
1799#ifdef POLL_FOR_INPUT
1800 bind_polling_period (10);
1801#endif
1802
1d2c16fa 1803#ifndef TERM
616da37c
RS
1804 while (1)
1805 {
5f0929a7
RS
1806#ifdef TRY_AGAIN
1807 h_errno = 0;
1808#endif
5d6c2aa3
RS
1809 immediate_quit = 1;
1810 QUIT;
616da37c 1811 host_info_ptr = gethostbyname (XSTRING (host)->data);
5d6c2aa3 1812 immediate_quit = 0;
616da37c
RS
1813#ifdef TRY_AGAIN
1814 if (! (host_info_ptr == 0 && h_errno == TRY_AGAIN))
1815#endif
1816 break;
1817 Fsleep_for (make_number (1), Qnil);
1818 }
d0d6b7c5
JB
1819 if (host_info_ptr == 0)
1820 /* Attempt to interpret host as numeric inet address */
1821 {
393a9679 1822 numeric_addr = inet_addr ((char *) XSTRING (host)->data);
79967d5e 1823 if (NUMERIC_ADDR_ERROR)
d0d6b7c5
JB
1824 error ("Unknown host \"%s\"", XSTRING (host)->data);
1825
1826 host_info_ptr = &host_info;
1827 host_info.h_name = 0;
1828 host_info.h_aliases = 0;
1829 host_info.h_addrtype = AF_INET;
39a21be6
JB
1830#ifdef h_addr
1831 /* Older machines have only one address slot called h_addr.
1832 Newer machines have h_addr_list, but #define h_addr to
1833 be its first element. */
1834 host_info.h_addr_list = &(addr_list[0]);
1835#endif
1836 host_info.h_addr = (char*)(&numeric_addr);
d0d6b7c5 1837 addr_list[1] = 0;
8777fbe2
RS
1838 /* numeric_addr isn't null-terminated; it has fixed length. */
1839 host_info.h_length = sizeof (numeric_addr);
d0d6b7c5
JB
1840 }
1841
1842 bzero (&address, sizeof address);
1843 bcopy (host_info_ptr->h_addr, (char *) &address.sin_addr,
1844 host_info_ptr->h_length);
1845 address.sin_family = host_info_ptr->h_addrtype;
1846 address.sin_port = port;
1847
1848 s = socket (host_info_ptr->h_addrtype, SOCK_STREAM, 0);
1849 if (s < 0)
1850 report_file_error ("error creating socket", Fcons (name, Qnil));
1851
457a9bee
RS
1852 /* Kernel bugs (on Ultrix at least) cause lossage (not just EINTR)
1853 when connect is interrupted. So let's not let it get interrupted.
1854 Note we do not turn off polling, because polling is only used
1855 when not interrupt_input, and thus not normally used on the systems
1856 which have this bug. On systems which use polling, there's no way
1857 to quit if polling is turned off. */
1858 if (interrupt_input)
1859 unrequest_sigio ();
1860
d0d6b7c5 1861 loop:
0f2ee0c1
RS
1862
1863 immediate_quit = 1;
1864 QUIT;
1865
e333e864
RS
1866 if (connect (s, (struct sockaddr *) &address, sizeof address) == -1
1867 && errno != EISCONN)
d0d6b7c5
JB
1868 {
1869 int xerrno = errno;
e333e864 1870
0f2ee0c1
RS
1871 immediate_quit = 0;
1872
d0d6b7c5
JB
1873 if (errno == EINTR)
1874 goto loop;
e333e864
RS
1875 if (errno == EADDRINUSE && retry < 20)
1876 {
4590788a
RS
1877 /* A delay here is needed on some FreeBSD systems,
1878 and it is harmless, since this retrying takes time anyway
1879 and should be infrequent. */
1880 Fsleep_for (make_number (1), Qnil);
e333e864
RS
1881 retry++;
1882 goto loop;
1883 }
1884
d0d6b7c5 1885 close (s);
457a9bee
RS
1886
1887 if (interrupt_input)
1888 request_sigio ();
1889
d0d6b7c5
JB
1890 errno = xerrno;
1891 report_file_error ("connection failed",
1892 Fcons (host, Fcons (name, Qnil)));
1893 }
457a9bee 1894
0f2ee0c1
RS
1895 immediate_quit = 0;
1896
44ade2e9
RS
1897#ifdef POLL_FOR_INPUT
1898 unbind_to (count, Qnil);
1899#endif
1900
457a9bee
RS
1901 if (interrupt_input)
1902 request_sigio ();
1903
1d2c16fa
RS
1904#else /* TERM */
1905 s = connect_server (0);
1906 if (s < 0)
1907 report_file_error ("error creating socket", Fcons (name, Qnil));
1908 send_command (s, C_PORT, 0, "%s:%d", XSTRING (host)->data, ntohs (port));
1909 send_command (s, C_DUMB, 1, 0);
1910#endif /* TERM */
d0d6b7c5
JB
1911
1912 inch = s;
59f23005 1913 outch = s;
d0d6b7c5
JB
1914
1915 if (!NILP (buffer))
1916 buffer = Fget_buffer_create (buffer);
1917 proc = make_process (name);
1918
1919 chan_process[inch] = proc;
1920
1921#ifdef O_NONBLOCK
1922 fcntl (inch, F_SETFL, O_NONBLOCK);
1923#else
1924#ifdef O_NDELAY
1925 fcntl (inch, F_SETFL, O_NDELAY);
1926#endif
1927#endif
1928
de282a05 1929 XPROCESS (proc)->childp = Fcons (host, Fcons (service, Qnil));
d0d6b7c5
JB
1930 XPROCESS (proc)->command_channel_p = Qnil;
1931 XPROCESS (proc)->buffer = buffer;
1932 XPROCESS (proc)->sentinel = Qnil;
1933 XPROCESS (proc)->filter = Qnil;
1934 XPROCESS (proc)->command = Qnil;
1935 XPROCESS (proc)->pid = Qnil;
7795ff9b 1936 XSETINT (XPROCESS (proc)->infd, inch);
1d056e64 1937 XSETINT (XPROCESS (proc)->outfd, outch);
d0d6b7c5
JB
1938 XPROCESS (proc)->status = Qrun;
1939 FD_SET (inch, &input_wait_mask);
a69281ff 1940 FD_SET (inch, &non_keyboard_wait_mask);
7d0e672e
RS
1941 if (inch > max_process_desc)
1942 max_process_desc = inch;
d0d6b7c5 1943
c7580538
KH
1944 if (!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters)
1945 || NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters))
1946 {
1947 XPROCESS (proc)->decode_coding_system = Qnil;
1948 XPROCESS (proc)->encode_coding_system = Qnil;
1949 }
1950 else
1951 {
1952 /* Setup coding systems for communicating with the network stream. */
1953 struct gcpro gcpro1;
715f7577 1954 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
c7580538
KH
1955 Lisp_Object coding_systems = Qt;
1956 Lisp_Object args[5], val;
0fa1789e 1957
11f84d7d
KH
1958 if (!NILP (Vcoding_system_for_read))
1959 val = Vcoding_system_for_read;
1960 else if (NILP (current_buffer->enable_multibyte_characters))
1961 /* We dare not decode end-of-line format by setting VAL to
1962 Qemacs_mule, because the existing Emacs Lisp libraries
1963 assume that they receive bare code including a sequene of
1964 CR LF. */
1965 val = Qnil;
1966 else
c7580538
KH
1967 {
1968 args[0] = Qopen_network_stream, args[1] = name,
1969 args[2] = buffer, args[3] = host, args[4] = service;
1970 GCPRO1 (proc);
715f7577 1971 coding_systems = Ffind_operation_coding_system (5, args);
c7580538 1972 UNGCPRO;
83502605
KH
1973 if (CONSP (coding_systems))
1974 val = XCONS (coding_systems)->car;
1975 else if (CONSP (Vdefault_process_coding_system))
1976 val = XCONS (Vdefault_process_coding_system)->car;
11f84d7d
KH
1977 else
1978 val = Qnil;
c7580538
KH
1979 }
1980 XPROCESS (proc)->decode_coding_system = val;
0fa1789e 1981
11f84d7d
KH
1982 if (!NILP (Vcoding_system_for_write))
1983 val = Vcoding_system_for_write;
1984 else if (NILP (current_buffer->enable_multibyte_characters))
1985 val = Qnil;
1986 else
c7580538
KH
1987 {
1988 if (EQ (coding_systems, Qt))
1989 {
1990 args[0] = Qopen_network_stream, args[1] = name,
1991 args[2] = buffer, args[3] = host, args[4] = service;
1992 GCPRO1 (proc);
715f7577 1993 coding_systems = Ffind_operation_coding_system (5, args);
c7580538
KH
1994 UNGCPRO;
1995 }
83502605
KH
1996 if (CONSP (coding_systems))
1997 val = XCONS (coding_systems)->cdr;
1998 else if (CONSP (Vdefault_process_coding_system))
1999 val = XCONS (Vdefault_process_coding_system)->cdr;
11f84d7d
KH
2000 else
2001 val = Qnil;
c7580538
KH
2002 }
2003 XPROCESS (proc)->encode_coding_system = val;
2004 }
0fa1789e 2005
c7580538
KH
2006 if (!proc_decode_coding_system[inch])
2007 proc_decode_coding_system[inch]
2008 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
0fa1789e 2009 setup_coding_system (XPROCESS (proc)->decode_coding_system,
c7580538
KH
2010 proc_decode_coding_system[inch]);
2011 if (!proc_encode_coding_system[outch])
2012 proc_encode_coding_system[outch]
2013 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
0fa1789e 2014 setup_coding_system (XPROCESS (proc)->encode_coding_system,
c7580538 2015 proc_encode_coding_system[outch]);
0fa1789e
KH
2016
2017 XPROCESS (proc)->decoding_buf = make_uninit_string (0);
2018 XPROCESS (proc)->encoding_buf = make_uninit_string (0);
2019
d0d6b7c5
JB
2020 UNGCPRO;
2021 return proc;
2022}
2023#endif /* HAVE_SOCKETS */
2024
6b53bb85 2025void
d0d6b7c5
JB
2026deactivate_process (proc)
2027 Lisp_Object proc;
2028{
2029 register int inchannel, outchannel;
2030 register struct Lisp_Process *p = XPROCESS (proc);
2031
a9f2c884
RS
2032 inchannel = XINT (p->infd);
2033 outchannel = XINT (p->outfd);
d0d6b7c5 2034
a9f2c884 2035 if (inchannel >= 0)
d0d6b7c5
JB
2036 {
2037 /* Beware SIGCHLD hereabouts. */
2038 flush_pending_output (inchannel);
2039#ifdef VMS
2040 {
2041 VMS_PROC_STUFF *get_vms_process_pointer (), *vs;
2042 sys$dassgn (outchannel);
c6c6865d 2043 vs = get_vms_process_pointer (p->pid);
d0d6b7c5
JB
2044 if (vs)
2045 give_back_vms_process_stuff (vs);
2046 }
2047#else
2048 close (inchannel);
a9f2c884 2049 if (outchannel >= 0 && outchannel != inchannel)
d0d6b7c5
JB
2050 close (outchannel);
2051#endif
2052
1d056e64
KH
2053 XSETINT (p->infd, -1);
2054 XSETINT (p->outfd, -1);
d0d6b7c5
JB
2055 chan_process[inchannel] = Qnil;
2056 FD_CLR (inchannel, &input_wait_mask);
a69281ff 2057 FD_CLR (inchannel, &non_keyboard_wait_mask);
7d0e672e
RS
2058 if (inchannel == max_process_desc)
2059 {
2060 int i;
2061 /* We just closed the highest-numbered process input descriptor,
2062 so recompute the highest-numbered one now. */
2063 max_process_desc = 0;
2064 for (i = 0; i < MAXDESC; i++)
2065 if (!NILP (chan_process[i]))
2066 max_process_desc = i;
2067 }
d0d6b7c5
JB
2068 }
2069}
2070
2071/* Close all descriptors currently in use for communication
2072 with subprocess. This is used in a newly-forked subprocess
2073 to get rid of irrelevant descriptors. */
2074
6b53bb85 2075void
d0d6b7c5
JB
2076close_process_descs ()
2077{
e98d950b 2078#ifndef WINDOWSNT
d0d6b7c5
JB
2079 int i;
2080 for (i = 0; i < MAXDESC; i++)
2081 {
2082 Lisp_Object process;
2083 process = chan_process[i];
2084 if (!NILP (process))
2085 {
a9f2c884
RS
2086 int in = XINT (XPROCESS (process)->infd);
2087 int out = XINT (XPROCESS (process)->outfd);
2088 if (in >= 0)
d0d6b7c5 2089 close (in);
a9f2c884 2090 if (out >= 0 && in != out)
d0d6b7c5
JB
2091 close (out);
2092 }
2093 }
e98d950b 2094#endif
d0d6b7c5
JB
2095}
2096\f
2097DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
2098 0, 3, 0,
2099 "Allow any pending output from subprocesses to be read by Emacs.\n\
2100It is read into the process' buffers or given to their filter functions.\n\
2101Non-nil arg PROCESS means do not return until some output has been received\n\
2102from PROCESS.\n\
2103Non-nil second arg TIMEOUT and third arg TIMEOUT-MSECS are number of\n\
2104seconds and microseconds to wait; return after that much time whether\n\
2105or not there is input.\n\
2106Return non-nil iff we received any output before the timeout expired.")
4ee3e309
EN
2107 (process, timeout, timeout_msecs)
2108 register Lisp_Object process, timeout, timeout_msecs;
d0d6b7c5
JB
2109{
2110 int seconds;
2111 int useconds;
2112
2113 if (! NILP (timeout_msecs))
2114 {
2115 CHECK_NUMBER (timeout_msecs, 2);
2116 useconds = XINT (timeout_msecs);
bcd69aea 2117 if (!INTEGERP (timeout))
1d056e64 2118 XSETINT (timeout, 0);
d0d6b7c5
JB
2119
2120 {
2121 int carry = useconds / 1000000;
2122
2123 XSETINT (timeout, XINT (timeout) + carry);
2124 useconds -= carry * 1000000;
2125
2126 /* I think this clause is necessary because C doesn't
2127 guarantee a particular rounding direction for negative
2128 integers. */
2129 if (useconds < 0)
2130 {
2131 XSETINT (timeout, XINT (timeout) - 1);
2132 useconds += 1000000;
2133 }
2134 }
2135 }
de946e5a
RS
2136 else
2137 useconds = 0;
d0d6b7c5
JB
2138
2139 if (! NILP (timeout))
2140 {
2141 CHECK_NUMBER (timeout, 1);
2142 seconds = XINT (timeout);
ada9a4fd 2143 if (seconds < 0 || (seconds == 0 && useconds == 0))
d0d6b7c5
JB
2144 seconds = -1;
2145 }
2146 else
2147 {
4ee3e309 2148 if (NILP (process))
d0d6b7c5
JB
2149 seconds = -1;
2150 else
2151 seconds = 0;
2152 }
2153
4ee3e309
EN
2154 if (NILP (process))
2155 XSETFASTINT (process, 0);
f76475ad 2156
d0d6b7c5 2157 return
4ee3e309 2158 (wait_reading_process_input (seconds, useconds, process, 0)
d0d6b7c5
JB
2159 ? Qt : Qnil);
2160}
2161
2162/* This variable is different from waiting_for_input in keyboard.c.
2163 It is used to communicate to a lisp process-filter/sentinel (via the
2164 function Fwaiting_for_user_input_p below) whether emacs was waiting
2165 for user-input when that process-filter was called.
2166 waiting_for_input cannot be used as that is by definition 0 when
d430ee71
RS
2167 lisp code is being evalled.
2168 This is also used in record_asynch_buffer_change.
2169 For that purpose, this must be 0
2170 when not inside wait_reading_process_input. */
d0d6b7c5
JB
2171static int waiting_for_user_input_p;
2172
c573ae8e
RS
2173/* This is here so breakpoints can be put on it. */
2174static
2175wait_reading_process_input_1 ()
2176{
2177}
2178
d0d6b7c5
JB
2179/* Read and dispose of subprocess output while waiting for timeout to
2180 elapse and/or keyboard input to be available.
2181
de6fd4b9 2182 TIME_LIMIT is:
d0d6b7c5
JB
2183 timeout in seconds, or
2184 zero for no limit, or
2185 -1 means gobble data immediately available but don't wait for any.
2186
de6fd4b9
RS
2187 MICROSECS is:
2188 an additional duration to wait, measured in microseconds.
2189 If this is nonzero and time_limit is 0, then the timeout
2190 consists of MICROSECS only.
6e4f3667 2191
de6fd4b9 2192 READ_KBD is a lisp value:
d0d6b7c5
JB
2193 0 to ignore keyboard input, or
2194 1 to return when input is available, or
84aa3ace 2195 -1 meaning caller will actually read the input, so don't throw to
d0d6b7c5 2196 the quit handler, or
e6194ffc 2197 a cons cell, meaning wait until its car is non-nil
de6fd4b9 2198 (and gobble terminal input into the buffer if any arrives), or
f76475ad
JB
2199 a process object, meaning wait until something arrives from that
2200 process. The return value is true iff we read some input from
2201 that process.
d0d6b7c5 2202
de6fd4b9 2203 DO_DISPLAY != 0 means redisplay should be done to show subprocess
d0d6b7c5
JB
2204 output that arrives.
2205
de6fd4b9 2206 If READ_KBD is a pointer to a struct Lisp_Process, then the
d0d6b7c5
JB
2207 function returns true iff we received input from that process
2208 before the timeout elapsed.
eb8c3be9 2209 Otherwise, return true iff we received input from any process. */
d0d6b7c5
JB
2210
2211wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
f76475ad
JB
2212 int time_limit, microsecs;
2213 Lisp_Object read_kbd;
2214 int do_display;
d0d6b7c5
JB
2215{
2216 register int channel, nfds, m;
2217 static SELECT_TYPE Available;
2218 int xerrno;
2219 Lisp_Object proc;
2220 EMACS_TIME timeout, end_time, garbage;
2221 SELECT_TYPE Atemp;
a9f2c884 2222 int wait_channel = -1;
d0d6b7c5
JB
2223 struct Lisp_Process *wait_proc = 0;
2224 int got_some_input = 0;
84aa3ace 2225 Lisp_Object *wait_for_cell = 0;
d0d6b7c5
JB
2226
2227 FD_ZERO (&Available);
2228
f76475ad
JB
2229 /* If read_kbd is a process to watch, set wait_proc and wait_channel
2230 accordingly. */
bcd69aea 2231 if (PROCESSP (read_kbd))
d0d6b7c5 2232 {
f76475ad 2233 wait_proc = XPROCESS (read_kbd);
a9f2c884 2234 wait_channel = XINT (wait_proc->infd);
22719df2 2235 XSETFASTINT (read_kbd, 0);
d0d6b7c5
JB
2236 }
2237
84aa3ace 2238 /* If waiting for non-nil in a cell, record where. */
bcd69aea 2239 if (CONSP (read_kbd))
84aa3ace
RS
2240 {
2241 wait_for_cell = &XCONS (read_kbd)->car;
22719df2 2242 XSETFASTINT (read_kbd, 0);
84aa3ace
RS
2243 }
2244
f76475ad 2245 waiting_for_user_input_p = XINT (read_kbd);
d0d6b7c5
JB
2246
2247 /* Since we may need to wait several times,
2248 compute the absolute time to return at. */
2249 if (time_limit || microsecs)
2250 {
2251 EMACS_GET_TIME (end_time);
2252 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
2253 EMACS_ADD_TIME (end_time, end_time, timeout);
2254 }
e07d5449
KH
2255#ifdef hpux
2256 /* AlainF 5-Jul-1996
2257 HP-UX 10.10 seem to have problems with signals coming in
2258 Causes "poll: interrupted system call" messages when Emacs is run
2259 in an X window
2260 Turn off periodic alarms (in case they are in use) */
2261 stop_polling ();
2262#endif
d0d6b7c5 2263
d0d6b7c5
JB
2264 while (1)
2265 {
c0239a0b
RS
2266 int timeout_reduced_for_timers = 0;
2267
d0d6b7c5
JB
2268 /* If calling from keyboard input, do not quit
2269 since we want to return C-g as an input character.
2270 Otherwise, do pending quit if requested. */
f76475ad 2271 if (XINT (read_kbd) >= 0)
d0d6b7c5
JB
2272 QUIT;
2273
889255b4
RS
2274 /* Exit now if the cell we're waiting for became non-nil. */
2275 if (wait_for_cell && ! NILP (*wait_for_cell))
2276 break;
2277
d0d6b7c5
JB
2278 /* Compute time from now till when time limit is up */
2279 /* Exit if already run out */
2280 if (time_limit == -1)
2281 {
2282 /* -1 specified for timeout means
2283 gobble output available now
2284 but don't wait at all. */
2285
2286 EMACS_SET_SECS_USECS (timeout, 0, 0);
2287 }
2288 else if (time_limit || microsecs)
2289 {
2290 EMACS_GET_TIME (timeout);
2291 EMACS_SUB_TIME (timeout, end_time, timeout);
2292 if (EMACS_TIME_NEG_P (timeout))
2293 break;
2294 }
2295 else
2296 {
2297 EMACS_SET_SECS_USECS (timeout, 100000, 0);
2298 }
2299
f854a00b
RS
2300 /* Normally we run timers here.
2301 But not if wait_for_cell; in those cases,
2302 the wait is supposed to be short,
2303 and those callers cannot handle running arbitrary Lisp code here. */
2304 if (! wait_for_cell)
fb4c3627 2305 {
c0239a0b 2306 EMACS_TIME timer_delay;
c573ae8e
RS
2307 int old_timers_run;
2308
2309 retry:
2310 old_timers_run = timers_run;
c0239a0b 2311 timer_delay = timer_check (1);
5de50bfb 2312 if (timers_run != old_timers_run && do_display)
c573ae8e
RS
2313 {
2314 redisplay_preserve_echo_area ();
2315 /* We must retry, since a timer may have requeued itself
2316 and that could alter the time_delay. */
2317 goto retry;
2318 }
2319
69645afc
RS
2320 /* If there is unread keyboard input, also return. */
2321 if (XINT (read_kbd) != 0
2322 && requeued_events_pending_p ())
2323 break;
2324
c0239a0b 2325 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
fb4c3627
RS
2326 {
2327 EMACS_TIME difference;
2328 EMACS_SUB_TIME (difference, timer_delay, timeout);
2329 if (EMACS_TIME_NEG_P (difference))
c0239a0b
RS
2330 {
2331 timeout = timer_delay;
2332 timeout_reduced_for_timers = 1;
2333 }
fb4c3627 2334 }
4abca5e7
RS
2335 /* If time_limit is -1, we are not going to wait at all. */
2336 else if (time_limit != -1)
c573ae8e
RS
2337 {
2338 /* This is so a breakpoint can be put here. */
2339 wait_reading_process_input_1 ();
2340 }
fb4c3627
RS
2341 }
2342
90ab1a81
JB
2343 /* Cause C-g and alarm signals to take immediate action,
2344 and cause input available signals to zero out timeout.
2345
2346 It is important that we do this before checking for process
2347 activity. If we get a SIGCHLD after the explicit checks for
2348 process activity, timeout is the only way we will know. */
2349 if (XINT (read_kbd) < 0)
2350 set_waiting_for_input (&timeout);
2351
6be429b1
JB
2352 /* If status of something has changed, and no input is
2353 available, notify the user of the change right away. After
2354 this explicit check, we'll let the SIGCHLD handler zap
2355 timeout to get our attention. */
2356 if (update_tick != process_tick && do_display)
2357 {
2358 Atemp = input_wait_mask;
2359 EMACS_SET_SECS_USECS (timeout, 0, 0);
0c9960e9
RS
2360 if ((select (max (max_process_desc, max_keyboard_desc) + 1,
2361 &Atemp, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
ecd1f654
KH
2362 &timeout)
2363 <= 0))
90ab1a81
JB
2364 {
2365 /* It's okay for us to do this and then continue with
a0e4d3f3 2366 the loop, since timeout has already been zeroed out. */
90ab1a81
JB
2367 clear_waiting_for_input ();
2368 status_notify ();
2369 }
6be429b1
JB
2370 }
2371
2372 /* Don't wait for output from a non-running process. */
2373 if (wait_proc != 0 && !NILP (wait_proc->raw_status_low))
2374 update_status (wait_proc);
2375 if (wait_proc != 0
2376 && ! EQ (wait_proc->status, Qrun))
9aa2a7f4 2377 {
215b45e9 2378 int nread, total_nread = 0;
7ce63188 2379
9aa2a7f4 2380 clear_waiting_for_input ();
7ce63188
RS
2381 XSETPROCESS (proc, wait_proc);
2382
2383 /* Read data from the process, until we exhaust it. */
1c0707fd 2384 while (XINT (wait_proc->infd) >= 0
97a084c1
RS
2385 && (nread
2386 = read_process_output (proc, XINT (wait_proc->infd))))
215b45e9
RS
2387 {
2388 if (0 < nread)
2389 total_nread += nread;
2390#ifdef EIO
2391 else if (nread == -1 && EIO == errno)
2392 break;
2393#endif
2394 }
7ce63188
RS
2395 if (total_nread > 0 && do_display)
2396 redisplay_preserve_echo_area ();
2397
9aa2a7f4
JB
2398 break;
2399 }
6be429b1 2400
d0d6b7c5
JB
2401 /* Wait till there is something to do */
2402
b5dc1c83
RS
2403 if (wait_for_cell)
2404 Available = non_process_wait_mask;
2405 else if (! XINT (read_kbd))
a69281ff
RS
2406 Available = non_keyboard_wait_mask;
2407 else
2408 Available = input_wait_mask;
d0d6b7c5 2409
ff11dfa1 2410 /* If frame size has changed or the window is newly mapped,
ffd56f97
JB
2411 redisplay now, before we start to wait. There is a race
2412 condition here; if a SIGIO arrives between now and the select
016899c0
JB
2413 and indicates that a frame is trashed, the select may block
2414 displaying a trashed screen. */
5164ee8e 2415 if (frame_garbaged && do_display)
7286affd
RS
2416 {
2417 clear_waiting_for_input ();
2418 redisplay_preserve_echo_area ();
2419 if (XINT (read_kbd) < 0)
7efe788e 2420 set_waiting_for_input (&timeout);
7286affd 2421 }
ffd56f97 2422
0a65b032
RS
2423 if (XINT (read_kbd) && detect_input_pending ())
2424 {
2425 nfds = 0;
2426 FD_ZERO (&Available);
2427 }
2428 else
0c9960e9
RS
2429 nfds = select (max (max_process_desc, max_keyboard_desc) + 1,
2430 &Available, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
0a65b032 2431 &timeout);
6720a7fb 2432
d0d6b7c5
JB
2433 xerrno = errno;
2434
2435 /* Make C-g and alarm signals set flags again */
2436 clear_waiting_for_input ();
2437
2438 /* If we woke up due to SIGWINCH, actually change size now. */
2439 do_pending_window_change ();
2440
c0239a0b
RS
2441 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
2442 /* We wanted the full specified time, so return now. */
d0d6b7c5
JB
2443 break;
2444 if (nfds < 0)
2445 {
2446 if (xerrno == EINTR)
2447 FD_ZERO (&Available);
b0310da4
JB
2448#ifdef ultrix
2449 /* Ultrix select seems to return ENOMEM when it is
2450 interrupted. Treat it just like EINTR. Bleah. Note
2451 that we want to test for the "ultrix" CPP symbol, not
2452 "__ultrix__"; the latter is only defined under GCC, but
2453 not by DEC's bundled CC. -JimB */
8058415c
JB
2454 else if (xerrno == ENOMEM)
2455 FD_ZERO (&Available);
2456#endif
d0d6b7c5
JB
2457#ifdef ALLIANT
2458 /* This happens for no known reason on ALLIANT.
2459 I am guessing that this is the right response. -- RMS. */
2460 else if (xerrno == EFAULT)
2461 FD_ZERO (&Available);
2462#endif
2463 else if (xerrno == EBADF)
2464 {
2465#ifdef AIX
2466 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
2467 the child's closure of the pts gives the parent a SIGHUP, and
2468 the ptc file descriptor is automatically closed,
2469 yielding EBADF here or at select() call above.
2470 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
a0e4d3f3 2471 in m/ibmrt-aix.h), and here we just ignore the select error.
d0d6b7c5 2472 Cleanup occurs c/o status_notify after SIGCLD. */
ffd56f97 2473 FD_ZERO (&Available); /* Cannot depend on values returned */
d0d6b7c5
JB
2474#else
2475 abort ();
2476#endif
2477 }
2478 else
6ed6233b 2479 error ("select error: %s", strerror (xerrno));
d0d6b7c5 2480 }
26ec91de 2481#if defined(sun) && !defined(USG5_4)
a69281ff 2482 else if (nfds > 0 && keyboard_bit_set (&Available)
dd2281ae 2483 && interrupt_input)
e0109153
JB
2484 /* System sometimes fails to deliver SIGIO.
2485
2486 David J. Mackenzie says that Emacs doesn't compile under
2487 Solaris if this code is enabled, thus the USG5_4 in the CPP
2488 conditional. "I haven't noticed any ill effects so far.
2489 If you find a Solaris expert somewhere, they might know
2490 better." */
d0d6b7c5
JB
2491 kill (getpid (), SIGIO);
2492#endif
2493
5d5beb62
RS
2494#if 0 /* When polling is used, interrupt_input is 0,
2495 so get_input_pending should read the input.
2496 So this should not be needed. */
2497 /* If we are using polling for input,
2498 and we see input available, make it get read now.
2499 Otherwise it might not actually get read for a second.
2500 And on hpux, since we turn off polling in wait_reading_process_input,
2501 it might never get read at all if we don't spend much time
2502 outside of wait_reading_process_input. */
2503 if (XINT (read_kbd) && interrupt_input
2504 && keyboard_bit_set (&Available)
2505 && input_polling_used ())
2506 kill (getpid (), SIGALRM);
2507#endif
2508
d0d6b7c5
JB
2509 /* Check for keyboard input */
2510 /* If there is any, return immediately
2511 to give it higher priority than subprocesses */
2512
77e1b3d4 2513 if (XINT (read_kbd) != 0
5d6c2aa3 2514 && detect_input_pending_run_timers (do_display))
6ed6233b
KH
2515 {
2516 swallow_events (do_display);
5d6c2aa3 2517 if (detect_input_pending_run_timers (do_display))
6ed6233b
KH
2518 break;
2519 }
2520
69645afc
RS
2521 /* If there is unread keyboard input, also return. */
2522 if (XINT (read_kbd) != 0
2523 && requeued_events_pending_p ())
2524 break;
2525
77e1b3d4
RS
2526 /* If we are not checking for keyboard input now,
2527 do process events (but don't run any timers).
2528 This is so that X events will be processed.
0c9960e9 2529 Otherwise they may have to wait until polling takes place.
77e1b3d4
RS
2530 That would causes delays in pasting selections, for example.
2531
2532 (We used to do this only if wait_for_cell.) */
2533 if (XINT (read_kbd) == 0 && detect_input_pending ())
f854a00b
RS
2534 {
2535 swallow_events (do_display);
0c9960e9 2536#if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
f854a00b
RS
2537 if (detect_input_pending ())
2538 break;
5d5beb62 2539#endif
0c9960e9 2540 }
f854a00b 2541
84aa3ace
RS
2542 /* Exit now if the cell we're waiting for became non-nil. */
2543 if (wait_for_cell && ! NILP (*wait_for_cell))
2544 break;
2545
4746118a 2546#ifdef SIGIO
5d5beb62 2547 /* If we think we have keyboard input waiting, but didn't get SIGIO,
d0d6b7c5
JB
2548 go read it. This can happen with X on BSD after logging out.
2549 In that case, there really is no input and no SIGIO,
2550 but select says there is input. */
2551
dd2281ae 2552 if (XINT (read_kbd) && interrupt_input
5d5beb62 2553 && keyboard_bit_set (&Available))
e643c5be 2554 kill (getpid (), SIGIO);
4746118a 2555#endif
d0d6b7c5 2556
d0d6b7c5
JB
2557 if (! wait_proc)
2558 got_some_input |= nfds > 0;
2559
32676c08
JB
2560 /* If checking input just got us a size-change event from X,
2561 obey it now if we should. */
97f3b3d6 2562 if (XINT (read_kbd) || wait_for_cell)
32676c08
JB
2563 do_pending_window_change ();
2564
a9f2c884
RS
2565 /* Check for data from a process. */
2566 /* Really FIRST_PROC_DESC should be 0 on Unix,
2567 but this is safer in the short run. */
a69281ff 2568 for (channel = 0; channel <= max_process_desc; channel++)
d0d6b7c5 2569 {
a69281ff
RS
2570 if (FD_ISSET (channel, &Available)
2571 && FD_ISSET (channel, &non_keyboard_wait_mask))
d0d6b7c5
JB
2572 {
2573 int nread;
2574
2575 /* If waiting for this channel, arrange to return as
2576 soon as no more input to be processed. No more
2577 waiting. */
2578 if (wait_channel == channel)
2579 {
a9f2c884 2580 wait_channel = -1;
d0d6b7c5
JB
2581 time_limit = -1;
2582 got_some_input = 1;
2583 }
2584 proc = chan_process[channel];
2585 if (NILP (proc))
2586 continue;
2587
d0d6b7c5
JB
2588 /* Read data from the process, starting with our
2589 buffered-ahead character if we have one. */
2590
2591 nread = read_process_output (proc, channel);
2592 if (nread > 0)
2593 {
2594 /* Since read_process_output can run a filter,
2595 which can call accept-process-output,
2596 don't try to read from any other processes
2597 before doing the select again. */
2598 FD_ZERO (&Available);
2599
2600 if (do_display)
2601 redisplay_preserve_echo_area ();
2602 }
2603#ifdef EWOULDBLOCK
2604 else if (nread == -1 && errno == EWOULDBLOCK)
2605 ;
0b75e9a4 2606#endif
89d7280d
RS
2607 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
2608 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
d0d6b7c5
JB
2609#ifdef O_NONBLOCK
2610 else if (nread == -1 && errno == EAGAIN)
2611 ;
2612#else
2613#ifdef O_NDELAY
2614 else if (nread == -1 && errno == EAGAIN)
2615 ;
2616 /* Note that we cannot distinguish between no input
2617 available now and a closed pipe.
2618 With luck, a closed pipe will be accompanied by
2619 subprocess termination and SIGCHLD. */
2620 else if (nread == 0 && !NETCONN_P (proc))
2621 ;
ffd56f97
JB
2622#endif /* O_NDELAY */
2623#endif /* O_NONBLOCK */
d0d6b7c5
JB
2624#ifdef HAVE_PTYS
2625 /* On some OSs with ptys, when the process on one end of
2626 a pty exits, the other end gets an error reading with
2627 errno = EIO instead of getting an EOF (0 bytes read).
2628 Therefore, if we get an error reading and errno =
2629 EIO, just continue, because the child process has
2630 exited and should clean itself up soon (e.g. when we
2631 get a SIGCHLD). */
2632 else if (nread == -1 && errno == EIO)
2633 ;
ffd56f97
JB
2634#endif /* HAVE_PTYS */
2635 /* If we can detect process termination, don't consider the process
2636 gone just because its pipe is closed. */
d0d6b7c5
JB
2637#ifdef SIGCHLD
2638 else if (nread == 0 && !NETCONN_P (proc))
2639 ;
2640#endif
2641 else
2642 {
2643 /* Preserve status of processes already terminated. */
2644 XSETINT (XPROCESS (proc)->tick, ++process_tick);
2645 deactivate_process (proc);
2646 if (!NILP (XPROCESS (proc)->raw_status_low))
2647 update_status (XPROCESS (proc));
2648 if (EQ (XPROCESS (proc)->status, Qrun))
2649 XPROCESS (proc)->status
2650 = Fcons (Qexit, Fcons (make_number (256), Qnil));
2651 }
2652 }
ffd56f97
JB
2653 } /* end for each file descriptor */
2654 } /* end while exit conditions not met */
d0d6b7c5 2655
d430ee71
RS
2656 waiting_for_user_input_p = 0;
2657
ffd56f97
JB
2658 /* If calling from keyboard input, do not quit
2659 since we want to return C-g as an input character.
2660 Otherwise, do pending quit if requested. */
f76475ad 2661 if (XINT (read_kbd) >= 0)
ffd56f97
JB
2662 {
2663 /* Prevent input_pending from remaining set if we quit. */
2664 clear_input_pending ();
2665 QUIT;
2666 }
e07d5449
KH
2667#ifdef hpux
2668 /* AlainF 5-Jul-1996
2669 HP-UX 10.10 seems to have problems with signals coming in
2670 Causes "poll: interrupted system call" messages when Emacs is run
2671 in an X window
2672 Turn periodic alarms back on */
5d5beb62 2673 start_polling ();
e07d5449
KH
2674#endif
2675
d0d6b7c5
JB
2676 return got_some_input;
2677}
2678\f
3b9a3dfa
RS
2679/* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
2680
2681static Lisp_Object
2682read_process_output_call (fun_and_args)
2683 Lisp_Object fun_and_args;
2684{
2685 return apply1 (XCONS (fun_and_args)->car, XCONS (fun_and_args)->cdr);
2686}
2687
2688static Lisp_Object
2689read_process_output_error_handler (error)
2690 Lisp_Object error;
2691{
2692 cmd_error_internal (error, "error in process filter: ");
2693 Vinhibit_quit = Qt;
2694 update_echo_area ();
833ba342 2695 Fsleep_for (make_number (2), Qnil);
3b9a3dfa
RS
2696}
2697
d0d6b7c5
JB
2698/* Read pending output from the process channel,
2699 starting with our buffered-ahead character if we have one.
0fa1789e 2700 Yield number of decoded characters read.
d0d6b7c5
JB
2701
2702 This function reads at most 1024 characters.
2703 If you want to read all available subprocess output,
0fa1789e
KH
2704 you must call it repeatedly until it returns zero.
2705
2706 The characters read are decoded according to PROC's coding-system
2707 for decoding. */
d0d6b7c5
JB
2708
2709read_process_output (proc, channel)
2710 Lisp_Object proc;
2711 register int channel;
2712{
2713 register int nchars;
d0d6b7c5 2714 char *chars;
0fa1789e
KH
2715#ifdef VMS
2716 int chars_allocated = 0; /* If 1, `chars' should be freed later. */
d0d6b7c5 2717#else
0fa1789e 2718 char buf[1024];
d0d6b7c5
JB
2719#endif
2720 register Lisp_Object outstream;
2721 register struct buffer *old = current_buffer;
2722 register struct Lisp_Process *p = XPROCESS (proc);
2723 register int opoint;
c7580538 2724 struct coding_system *coding = proc_decode_coding_system[channel];
0fa1789e
KH
2725 int chars_in_decoding_buf = 0; /* If 1, `chars' points
2726 XSTRING (p->decoding_buf)->data. */
d0d6b7c5
JB
2727
2728#ifdef VMS
2729 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
2730
2731 vs = get_vms_process_pointer (p->pid);
2732 if (vs)
2733 {
2734 if (!vs->iosb[0])
2735 return(0); /* Really weird if it does this */
2736 if (!(vs->iosb[0] & 1))
2737 return -1; /* I/O error */
2738 }
2739 else
2740 error ("Could not get VMS process pointer");
2741 chars = vs->inputBuffer;
2742 nchars = clean_vms_buffer (chars, vs->iosb[1]);
2743 if (nchars <= 0)
2744 {
2745 start_vms_process_read (vs); /* Crank up the next read on the process */
2746 return 1; /* Nothing worth printing, say we got 1 */
2747 }
0fa1789e
KH
2748 if (coding->carryover_size)
2749 {
2750 /* The data carried over in the previous decoding should be
2751 prepended to the new data read to decode all together. */
2752 char *buf = (char *) xmalloc (nchars + coding->carryover_size);
2753
2754 bcopy (coding->carryover, buf, coding->carryover_size);
2755 bcopy (chars, buf + coding->carryover_size, nchars);
2756 chars = buf;
2757 chars_allocated = 1;
2758 }
d0d6b7c5
JB
2759#else /* not VMS */
2760
0fa1789e
KH
2761 if (coding->carryover_size)
2762 /* The data carried over in the previous decoding should be
2763 prepended to the new data read to decode all together. */
2764 bcopy (coding->carryover, buf, coding->carryover_size);
2765
d0d6b7c5 2766 if (proc_buffered_char[channel] < 0)
1bac7c84
RS
2767 nchars = read (channel, buf + coding->carryover_size,
2768 (sizeof buf) - coding->carryover_size);
d0d6b7c5
JB
2769 else
2770 {
0fa1789e 2771 buf[coding->carryover_size] = proc_buffered_char[channel];
d0d6b7c5 2772 proc_buffered_char[channel] = -1;
1bac7c84
RS
2773 nchars = read (channel, buf + coding->carryover_size + 1,
2774 (sizeof buf) - coding->carryover_size - 1);
d0d6b7c5
JB
2775 if (nchars < 0)
2776 nchars = 1;
2777 else
2778 nchars = nchars + 1;
2779 }
0fa1789e 2780 chars = buf;
d0d6b7c5
JB
2781#endif /* not VMS */
2782
0fa1789e
KH
2783 /* At this point, NCHARS holds number of characters just received
2784 (including the one in proc_buffered_char[channel]). */
d0d6b7c5
JB
2785 if (nchars <= 0) return nchars;
2786
0fa1789e
KH
2787 /* Now set NCHARS how many bytes we must decode. */
2788 nchars += coding->carryover_size;
2789
1a283a4c
KH
2790 if (CODING_REQUIRE_DECODING (coding)
2791 || CODING_REQUIRE_DETECTION (coding))
0fa1789e
KH
2792 {
2793 int require = decoding_buffer_size (coding, nchars);
2794 int consumed, produced;
2795
2796 if (XSTRING (p->decoding_buf)->size < require)
2797 p->decoding_buf = make_uninit_string (require);
2798 produced = decode_coding (coding, chars, XSTRING (p->decoding_buf)->data,
2799 nchars, XSTRING (p->decoding_buf)->size,
2800 &consumed);
2801
2802 /* New coding-system might be found by `decode_coding'. */
2803 if (!EQ (p->decode_coding_system, coding->symbol))
2804 {
2805 p->decode_coding_system = coding->symbol;
77e1b3d4
RS
2806
2807 /* Don't call setup_coding_system for
2808 proc_decode_coding_system[channel] here. It is done in
2809 detect_coding called via decode_coding above. */
2810
486b111b
KH
2811 /* If coding-system for encoding is not yet decided, we set
2812 it as the same as coding-system for decoding.
2813
2814 But, before doing that we must check if
2815 proc_encode_coding_system[p->outfd] surely points to a
2816 valid memory because p->outfd will be changed once EOF is
2817 sent to the process. */
2818 if (NILP (p->encode_coding_system)
2819 && proc_encode_coding_system[p->outfd])
0fa1789e
KH
2820 {
2821 p->encode_coding_system = coding->symbol;
2822 setup_coding_system (coding->symbol,
e9c509cd 2823 proc_encode_coding_system[p->outfd]);
0fa1789e
KH
2824 }
2825 }
2826#ifdef VMS
2827 /* Now we don't need the contents of `chars'. */
2828 if (chars_allocated)
2829 free (chars);
2830#endif
2831 if (produced == 0)
2832 return 0;
d7223684 2833 chars = (char *) XSTRING (p->decoding_buf)->data;
0fa1789e
KH
2834 nchars = produced;
2835 chars_in_decoding_buf = 1;
2836 }
2837#ifdef VMS
2838 else if (chars_allocated)
2839 {
2840 /* Although we don't have to decode the received data, we must
2841 move it to an area which we don't have to free. */
2842 if (! STRINGP (p->decoding_buf)
2843 || XSTRING (p->decoding_buf)->size < nchars)
2844 p->decoding_buf = make_uninit_string (nchars);
2845 bcopy (chars, XSTRING (p->decoding_buf)->data, nchars);
2846 free (chars);
2847 chars = XSTRING (p->decoding_buf)->data;
2848 chars_in_decoding_buf = 1;
2849 }
2850#endif
2851
486b111b
KH
2852 Vlast_coding_system_used = coding->symbol;
2853
d0d6b7c5
JB
2854 outstream = p->filter;
2855 if (!NILP (outstream))
2856 {
2857 /* We inhibit quit here instead of just catching it so that
2858 hitting ^G when a filter happens to be running won't screw
2859 it up. */
2860 int count = specpdl_ptr - specpdl;
30c78175 2861 Lisp_Object odeactivate;
dfc21838 2862 Lisp_Object obuffer, okeymap;
4da2f5be 2863 int outer_running_asynch_code = running_asynch_code;
30c78175 2864
dfc21838
RS
2865 /* No need to gcpro these, because all we do with them later
2866 is test them for EQness, and none of them should be a string. */
30c78175 2867 odeactivate = Vdeactivate_mark;
dfc21838
RS
2868 XSETBUFFER (obuffer, current_buffer);
2869 okeymap = current_buffer->keymap;
30c78175 2870
d0d6b7c5 2871 specbind (Qinhibit_quit, Qt);
6545aada 2872 specbind (Qlast_nonmenu_event, Qt);
3b9a3dfa 2873
4da2f5be
RS
2874 /* In case we get recursively called,
2875 and we already saved the match data nonrecursively,
2876 save the same match data in safely recursive fashion. */
2877 if (outer_running_asynch_code)
2878 {
2879 Lisp_Object tem;
2880 /* Don't clobber the CURRENT match data, either! */
dd130227 2881 tem = Fmatch_data (Qnil, Qnil);
4da2f5be 2882 restore_match_data ();
dd130227 2883 record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil));
4da2f5be
RS
2884 Fstore_match_data (tem);
2885 }
2886
2887 /* For speed, if a search happens within this code,
2888 save the match data in a special nonrecursive fashion. */
7074fde6 2889 running_asynch_code = 1;
4da2f5be
RS
2890
2891 /* Read and dispose of the process output. */
3b9a3dfa
RS
2892 internal_condition_case_1 (read_process_output_call,
2893 Fcons (outstream,
2894 Fcons (proc,
7074fde6
FP
2895 Fcons (make_string (chars,
2896 nchars),
3b9a3dfa
RS
2897 Qnil))),
2898 !NILP (Vdebug_on_error) ? Qnil : Qerror,
2899 read_process_output_error_handler);
4da2f5be
RS
2900
2901 /* If we saved the match data nonrecursively, restore it now. */
7074fde6 2902 restore_match_data ();
4da2f5be 2903 running_asynch_code = outer_running_asynch_code;
d0d6b7c5 2904
592ce97f 2905 /* Handling the process output should not deactivate the mark. */
30c78175
RS
2906 Vdeactivate_mark = odeactivate;
2907
7973cfa8
RS
2908#if 0 /* Call record_asynch_buffer_change unconditionally,
2909 because we might have changed minor modes or other things
2910 that affect key bindings. */
dfc21838
RS
2911 if (! EQ (Fcurrent_buffer (), obuffer)
2912 || ! EQ (current_buffer->keymap, okeymap))
7973cfa8 2913#endif
927e08be
RS
2914 /* But do it only if the caller is actually going to read events.
2915 Otherwise there's no need to make him wake up, and it could
2916 cause trouble (for example it would make Fsit_for return). */
2917 if (waiting_for_user_input_p == -1)
2918 record_asynch_buffer_change ();
d72534ba 2919
d0d6b7c5
JB
2920#ifdef VMS
2921 start_vms_process_read (vs);
2922#endif
2ea6d561 2923 unbind_to (count, Qnil);
d0d6b7c5
JB
2924 return nchars;
2925 }
2926
2927 /* If no filter, write into buffer if it isn't dead. */
2928 if (!NILP (p->buffer) && !NILP (XBUFFER (p->buffer)->name))
2929 {
b0310da4 2930 Lisp_Object old_read_only;
12ca5cdf 2931 int old_begv, old_zv;
d8a2934e 2932 int old_begv_byte, old_zv_byte;
30c78175 2933 Lisp_Object odeactivate;
d8a2934e
RS
2934 int before, before_byte;
2935 int opoint_byte;
30c78175
RS
2936
2937 odeactivate = Vdeactivate_mark;
d0d6b7c5
JB
2938
2939 Fset_buffer (p->buffer);
6ec8bbd2 2940 opoint = PT;
d8a2934e 2941 opoint_byte = PT_BYTE;
b0310da4 2942 old_read_only = current_buffer->read_only;
12ca5cdf
RS
2943 old_begv = BEGV;
2944 old_zv = ZV;
d8a2934e
RS
2945 old_begv_byte = BEGV_BYTE;
2946 old_zv_byte = ZV_BYTE;
b0310da4
JB
2947
2948 current_buffer->read_only = Qnil;
d0d6b7c5
JB
2949
2950 /* Insert new output into buffer
2951 at the current end-of-output marker,
2952 thus preserving logical ordering of input and output. */
2953 if (XMARKER (p->mark)->buffer)
d8a2934e
RS
2954 SET_PT_BOTH (clip_to_bounds (BEGV, marker_position (p->mark), ZV),
2955 clip_to_bounds (BEGV_BYTE, marker_byte_position (p->mark),
2956 ZV_BYTE));
d0d6b7c5 2957 else
d8a2934e 2958 SET_PT_BOTH (ZV, ZV_BYTE);
12ca5cdf 2959 before = PT;
d8a2934e 2960 before_byte = PT_BYTE;
b0310da4
JB
2961
2962 /* If the output marker is outside of the visible region, save
2963 the restriction and widen. */
6ec8bbd2 2964 if (! (BEGV <= PT && PT <= ZV))
b0310da4
JB
2965 Fwiden ();
2966
d0d6b7c5
JB
2967 /* Insert before markers in case we are inserting where
2968 the buffer's mark is, and the user's next command is Meta-y. */
0fa1789e
KH
2969 if (chars_in_decoding_buf)
2970 insert_from_string_before_markers (p->decoding_buf, 0, nchars, 0);
2971 else
2972 insert_before_markers (chars, nchars);
d8a2934e 2973 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
b0310da4 2974
d0d6b7c5
JB
2975 update_mode_lines++;
2976
12ca5cdf
RS
2977 /* Make sure opoint and the old restrictions
2978 float ahead of any new text just as point would. */
2979 if (opoint >= before)
d8a2934e
RS
2980 {
2981 opoint += PT - before;
2982 opoint_byte += PT_BYTE - before_byte;
2983 }
12ca5cdf 2984 if (old_begv > before)
d8a2934e
RS
2985 {
2986 old_begv += PT - before;
2987 old_begv_byte += PT_BYTE - before_byte;
2988 }
12ca5cdf 2989 if (old_zv >= before)
d8a2934e
RS
2990 {
2991 old_zv += PT - before;
2992 old_zv_byte += PT_BYTE - before_byte;
2993 }
12ca5cdf 2994
b0310da4 2995 /* If the restriction isn't what it should be, set it. */
12ca5cdf
RS
2996 if (old_begv != BEGV || old_zv != ZV)
2997 Fnarrow_to_region (make_number (old_begv), make_number (old_zv));
b0310da4 2998
592ce97f 2999 /* Handling the process output should not deactivate the mark. */
30c78175
RS
3000 Vdeactivate_mark = odeactivate;
3001
b0310da4 3002 current_buffer->read_only = old_read_only;
d8a2934e 3003 SET_PT_BOTH (opoint, opoint_byte);
d0d6b7c5
JB
3004 set_buffer_internal (old);
3005 }
3006#ifdef VMS
3007 start_vms_process_read (vs);
3008#endif
3009 return nchars;
3010}
3011
3012DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p,
3013 0, 0, 0,
8b4d685f 3014 "Returns non-nil if emacs is waiting for input from the user.\n\
d0d6b7c5
JB
3015This is intended for use by asynchronous process output filters and sentinels.")
3016 ()
3017{
8b4d685f 3018 return (waiting_for_user_input_p ? Qt : Qnil);
d0d6b7c5
JB
3019}
3020\f
3021/* Sending data to subprocess */
3022
3023jmp_buf send_process_frame;
3024
3025SIGTYPE
3026send_process_trap ()
3027{
3028#ifdef BSD4_1
3029 sigrelse (SIGPIPE);
3030 sigrelse (SIGALRM);
3031#endif /* BSD4_1 */
3032 longjmp (send_process_frame, 1);
3033}
3034
4556b700
RS
3035/* Send some data to process PROC.
3036 BUF is the beginning of the data; LEN is the number of characters.
0fa1789e
KH
3037 OBJECT is the Lisp object that the data comes from.
3038
3039 The data is encoded by PROC's coding-system for encoding before it
3040 is sent. But if the data ends at the middle of multi-byte
3041 representation, that incomplete sequence of bytes are sent without
3042 being encoded. Should we store them in a buffer to prepend them to
3043 the data send later? */
4556b700
RS
3044
3045send_process (proc, buf, len, object)
ecd1f654 3046 volatile Lisp_Object proc;
b684d043 3047 unsigned char *buf;
d0d6b7c5 3048 int len;
4556b700 3049 Lisp_Object object;
d0d6b7c5 3050{
ecd1f654 3051 /* Use volatile to protect variables from being clobbered by longjmp. */
d0d6b7c5 3052 int rv;
ecd1f654 3053 volatile unsigned char *procname = XSTRING (XPROCESS (proc)->name)->data;
0fa1789e 3054 struct coding_system *coding;
6044e593
RS
3055 struct gcpro gcpro1;
3056
3057 GCPRO1 (object);
d0d6b7c5 3058
d0d6b7c5
JB
3059#ifdef VMS
3060 struct Lisp_Process *p = XPROCESS (proc);
3061 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
3062#endif /* VMS */
3063
3064 if (! NILP (XPROCESS (proc)->raw_status_low))
3065 update_status (XPROCESS (proc));
3066 if (! EQ (XPROCESS (proc)->status, Qrun))
3067 error ("Process %s not running", procname);
0fa1789e
KH
3068 if (XINT (XPROCESS (proc)->outfd) < 0)
3069 error ("Output file descriptor of %s is closed", procname);
3070
c7580538 3071 coding = proc_encode_coding_system[XINT (XPROCESS (proc)->outfd)];
486b111b
KH
3072 Vlast_coding_system_used = coding->symbol;
3073
1a283a4c 3074 if (CODING_REQUIRE_ENCODING (coding))
0fa1789e
KH
3075 {
3076 int require = encoding_buffer_size (coding, len);
3077 int offset, dummy;
b684d043 3078 unsigned char *temp_buf = NULL;
0fa1789e
KH
3079
3080 /* Remember the offset of data because a string or a buffer may
3081 be relocated. Setting OFFSET to -1 means we don't have to
3082 care relocation. */
3083 offset = (BUFFERP (object)
d8a2934e 3084 ? BUF_PTR_BYTE_POS (XBUFFER (object), buf)
0fa1789e 3085 : (STRINGP (object)
b684d043 3086 ? offset = buf - XSTRING (object)->data
0fa1789e
KH
3087 : -1));
3088
3089 if (coding->carryover_size > 0)
3090 {
b684d043 3091 temp_buf = (unsigned char *) xmalloc (len + coding->carryover_size);
0fa1789e
KH
3092
3093 if (offset >= 0)
3094 {
3095 if (BUFFERP (object))
d8a2934e 3096 buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset);
0fa1789e 3097 else if (STRINGP (object))
b684d043 3098 buf = offset + XSTRING (object)->data;
0fa1789e
KH
3099 /* Now we don't have to care relocation. */
3100 offset = -1;
3101 }
3102 bcopy (coding->carryover, temp_buf, coding->carryover_size);
3103 bcopy (buf, temp_buf + coding->carryover_size, len);
3104 buf = temp_buf;
3105 }
3106
3107 if (XSTRING (XPROCESS (proc)->encoding_buf)->size < require)
3108 {
3109 XPROCESS (proc)->encoding_buf = make_uninit_string (require);
3110
3111 if (offset >= 0)
3112 {
3113 if (BUFFERP (object))
d8a2934e 3114 buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset);
0fa1789e 3115 else if (STRINGP (object))
b684d043 3116 buf = offset + XSTRING (object)->data;
0fa1789e
KH
3117 }
3118 }
3119 object = XPROCESS (proc)->encoding_buf;
3120 len = encode_coding (coding, buf, XSTRING (object)->data,
3121 len, XSTRING (object)->size, &dummy);
3122 buf = XSTRING (object)->data;
3123 if (temp_buf)
3124 xfree (temp_buf);
3125 }
d0d6b7c5
JB
3126
3127#ifdef VMS
3128 vs = get_vms_process_pointer (p->pid);
3129 if (vs == 0)
3130 error ("Could not find this process: %x", p->pid);
3131 else if (write_to_vms_process (vs, buf, len))
3132 ;
3133#else
4556b700
RS
3134
3135 if (pty_max_bytes == 0)
3136 {
3137#if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
3138 pty_max_bytes = fpathconf (XFASTINT (XPROCESS (proc)->outfd),
3139 _PC_MAX_CANON);
3140 if (pty_max_bytes < 0)
3141 pty_max_bytes = 250;
3142#else
3143 pty_max_bytes = 250;
3144#endif
3145 /* Deduct one, to leave space for the eof. */
3146 pty_max_bytes--;
3147 }
3148
d0d6b7c5
JB
3149 if (!setjmp (send_process_frame))
3150 while (len > 0)
3151 {
3152 int this = len;
4746118a 3153 SIGTYPE (*old_sigpipe)();
93b4f699
RS
3154 int flush_pty = 0;
3155
4556b700
RS
3156 /* Decide how much data we can send in one batch.
3157 Long lines need to be split into multiple batches. */
3158 if (!NILP (XPROCESS (proc)->pty_flag))
93b4f699 3159 {
4556b700
RS
3160 /* Starting this at zero is always correct when not the first iteration
3161 because the previous iteration ended by sending C-d.
3162 It may not be correct for the first iteration
3163 if a partial line was sent in a separate send_process call.
3164 If that proves worth handling, we need to save linepos
3165 in the process object. */
3166 int linepos = 0;
b684d043
RS
3167 unsigned char *ptr = buf;
3168 unsigned char *end = buf + len;
4556b700
RS
3169
3170 /* Scan through this text for a line that is too long. */
3171 while (ptr != end && linepos < pty_max_bytes)
3172 {
3173 if (*ptr == '\n')
3174 linepos = 0;
3175 else
3176 linepos++;
3177 ptr++;
3178 }
3179 /* If we found one, break the line there
3180 and put in a C-d to force the buffer through. */
3181 this = ptr - buf;
93b4f699
RS
3182 }
3183
4556b700
RS
3184 /* Send this batch, using one or more write calls. */
3185 while (this > 0)
d0d6b7c5 3186 {
4556b700
RS
3187 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap);
3188 rv = write (XINT (XPROCESS (proc)->outfd), buf, this);
3189 signal (SIGPIPE, old_sigpipe);
3190
3191 if (rv < 0)
3192 {
3193 if (0
d0d6b7c5 3194#ifdef EWOULDBLOCK
4556b700 3195 || errno == EWOULDBLOCK
d0d6b7c5
JB
3196#endif
3197#ifdef EAGAIN
4556b700 3198 || errno == EAGAIN
d0d6b7c5 3199#endif
4556b700
RS
3200 )
3201 /* Buffer is full. Wait, accepting input;
3202 that may allow the program
3203 to finish doing output and read more. */
3204 {
3205 Lisp_Object zero;
3206 int offset;
3207
3208 /* Running filters might relocate buffers or strings.
3209 Arrange to relocate BUF. */
3210 if (BUFFERP (object))
d8a2934e 3211 offset = BUF_PTR_BYTE_POS (XBUFFER (object), buf);
4556b700 3212 else if (STRINGP (object))
b684d043 3213 offset = buf - XSTRING (object)->data;
4556b700 3214
22719df2 3215 XSETFASTINT (zero, 0);
f3e6605c
RS
3216#ifdef EMACS_HAS_USECS
3217 wait_reading_process_input (0, 20000, zero, 0);
3218#else
4556b700 3219 wait_reading_process_input (1, 0, zero, 0);
f3e6605c 3220#endif
4556b700
RS
3221
3222 if (BUFFERP (object))
d8a2934e 3223 buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset);
4556b700 3224 else if (STRINGP (object))
b684d043 3225 buf = offset + XSTRING (object)->data;
4556b700
RS
3226
3227 rv = 0;
3228 }
3229 else
3230 /* This is a real error. */
3231 report_file_error ("writing to process", Fcons (proc, Qnil));
d0d6b7c5 3232 }
4556b700
RS
3233 buf += rv;
3234 len -= rv;
3235 this -= rv;
d0d6b7c5 3236 }
f76475ad 3237
4556b700
RS
3238 /* If we sent just part of the string, put in an EOF
3239 to force it through, before we send the rest. */
3240 if (len > 0)
3241 Fprocess_send_eof (proc);
d0d6b7c5
JB
3242 }
3243#endif
3244 else
3245 {
3246 XPROCESS (proc)->raw_status_low = Qnil;
3247 XPROCESS (proc)->raw_status_high = Qnil;
3248 XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
3249 XSETINT (XPROCESS (proc)->tick, ++process_tick);
3250 deactivate_process (proc);
3251#ifdef VMS
3252 error ("Error writing to process %s; closed it", procname);
3253#else
3254 error ("SIGPIPE raised on process %s; closed it", procname);
3255#endif
3256 }
6044e593
RS
3257
3258 UNGCPRO;
d0d6b7c5
JB
3259}
3260
3261DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
3262 3, 3, 0,
3263 "Send current contents of region as input to PROCESS.\n\
ebb9e16f
JB
3264PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
3265nil, indicating the current buffer's process.\n\
d0d6b7c5
JB
3266Called from program, takes three arguments, PROCESS, START and END.\n\
3267If the region is more than 500 characters long,\n\
3268it is sent in several bunches. This may happen even for shorter regions.\n\
3269Output from processes can arrive in between bunches.")
3270 (process, start, end)
3271 Lisp_Object process, start, end;
3272{
3273 Lisp_Object proc;
d8a2934e 3274 int start1, end1;
d0d6b7c5
JB
3275
3276 proc = get_process (process);
3277 validate_region (&start, &end);
3278
3279 if (XINT (start) < GPT && XINT (end) > GPT)
4da6dec8 3280 move_gap (XINT (start));
d0d6b7c5 3281
d8a2934e
RS
3282 start1 = CHAR_TO_BYTE (XINT (start));
3283 end1 = CHAR_TO_BYTE (XINT (end));
3284 send_process (proc, BYTE_POS_ADDR (start1), end1 - start1,
4556b700 3285 Fcurrent_buffer ());
d0d6b7c5
JB
3286
3287 return Qnil;
3288}
3289
3290DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
3291 2, 2, 0,
3292 "Send PROCESS the contents of STRING as input.\n\
ebb9e16f
JB
3293PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
3294nil, indicating the current buffer's process.\n\
d0d6b7c5
JB
3295If STRING is more than 500 characters long,\n\
3296it is sent in several bunches. This may happen even for shorter strings.\n\
3297Output from processes can arrive in between bunches.")
3298 (process, string)
3299 Lisp_Object process, string;
3300{
3301 Lisp_Object proc;
3302 CHECK_STRING (string, 1);
3303 proc = get_process (process);
4556b700 3304 send_process (proc, XSTRING (string)->data, XSTRING (string)->size, string);
d0d6b7c5
JB
3305 return Qnil;
3306}
3307\f
3308/* send a signal number SIGNO to PROCESS.
3309 CURRENT_GROUP means send to the process group that currently owns
3310 the terminal being used to communicate with PROCESS.
3311 This is used for various commands in shell mode.
3312 If NOMSG is zero, insert signal-announcements into process's buffers
b0310da4
JB
3313 right away.
3314
3315 If we can, we try to signal PROCESS by sending control characters
e333e864 3316 down the pty. This allows us to signal inferiors who have changed
b0310da4 3317 their uid, for which killpg would return an EPERM error. */
d0d6b7c5 3318
f9738840 3319static void
d0d6b7c5
JB
3320process_send_signal (process, signo, current_group, nomsg)
3321 Lisp_Object process;
3322 int signo;
3323 Lisp_Object current_group;
3324 int nomsg;
3325{
3326 Lisp_Object proc;
3327 register struct Lisp_Process *p;
3328 int gid;
3329 int no_pgrp = 0;
3330
3331 proc = get_process (process);
3332 p = XPROCESS (proc);
3333
3334 if (!EQ (p->childp, Qt))
3335 error ("Process %s is not a subprocess",
3336 XSTRING (p->name)->data);
a9f2c884 3337 if (XINT (p->infd) < 0)
d0d6b7c5
JB
3338 error ("Process %s is not active",
3339 XSTRING (p->name)->data);
3340
3341 if (NILP (p->pty_flag))
3342 current_group = Qnil;
3343
d0d6b7c5
JB
3344 /* If we are using pgrps, get a pgrp number and make it negative. */
3345 if (!NILP (current_group))
3346 {
b0310da4 3347#ifdef SIGNALS_VIA_CHARACTERS
d0d6b7c5
JB
3348 /* If possible, send signals to the entire pgrp
3349 by sending an input character to it. */
b0310da4 3350
6be429b1
JB
3351 /* TERMIOS is the latest and bestest, and seems most likely to
3352 work. If the system has it, use it. */
3353#ifdef HAVE_TERMIOS
3354 struct termios t;
3355
3356 switch (signo)
3357 {
3358 case SIGINT:
a9f2c884 3359 tcgetattr (XINT (p->infd), &t);
4556b700 3360 send_process (proc, &t.c_cc[VINTR], 1, Qnil);
a87b802f 3361 return;
6be429b1
JB
3362
3363 case SIGQUIT:
a9f2c884 3364 tcgetattr (XINT (p->infd), &t);
4556b700 3365 send_process (proc, &t.c_cc[VQUIT], 1, Qnil);
a87b802f 3366 return;
6be429b1
JB
3367
3368 case SIGTSTP:
a9f2c884 3369 tcgetattr (XINT (p->infd), &t);
d0adf46f 3370#if defined (VSWTCH) && !defined (PREFER_VSUSP)
4556b700 3371 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil);
6be429b1 3372#else
4556b700 3373 send_process (proc, &t.c_cc[VSUSP], 1, Qnil);
6be429b1 3374#endif
a87b802f 3375 return;
6be429b1
JB
3376 }
3377
3378#else /* ! HAVE_TERMIOS */
3379
b0310da4
JB
3380 /* On Berkeley descendants, the following IOCTL's retrieve the
3381 current control characters. */
d0d6b7c5 3382#if defined (TIOCGLTC) && defined (TIOCGETC)
b0310da4 3383
d0d6b7c5
JB
3384 struct tchars c;
3385 struct ltchars lc;
3386
3387 switch (signo)
3388 {
3389 case SIGINT:
a9f2c884 3390 ioctl (XINT (p->infd), TIOCGETC, &c);
4556b700 3391 send_process (proc, &c.t_intrc, 1, Qnil);
f9738840 3392 return;
d0d6b7c5 3393 case SIGQUIT:
a9f2c884 3394 ioctl (XINT (p->infd), TIOCGETC, &c);
4556b700 3395 send_process (proc, &c.t_quitc, 1, Qnil);
f9738840 3396 return;
0ad77c54 3397#ifdef SIGTSTP
d0d6b7c5 3398 case SIGTSTP:
a9f2c884 3399 ioctl (XINT (p->infd), TIOCGLTC, &lc);
4556b700 3400 send_process (proc, &lc.t_suspc, 1, Qnil);
f9738840 3401 return;
b0310da4 3402#endif /* ! defined (SIGTSTP) */
d0d6b7c5 3403 }
b0310da4
JB
3404
3405#else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
3406
3407 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
3408 characters. */
3409#ifdef TCGETA
d0d6b7c5
JB
3410 struct termio t;
3411 switch (signo)
3412 {
3413 case SIGINT:
a9f2c884 3414 ioctl (XINT (p->infd), TCGETA, &t);
4556b700 3415 send_process (proc, &t.c_cc[VINTR], 1, Qnil);
f9738840 3416 return;
d0d6b7c5 3417 case SIGQUIT:
a9f2c884 3418 ioctl (XINT (p->infd), TCGETA, &t);
4556b700 3419 send_process (proc, &t.c_cc[VQUIT], 1, Qnil);
f9738840 3420 return;
7d79e3b4 3421#ifdef SIGTSTP
d0d6b7c5 3422 case SIGTSTP:
a9f2c884 3423 ioctl (XINT (p->infd), TCGETA, &t);
4556b700 3424 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil);
f9738840 3425 return;
b0310da4 3426#endif /* ! defined (SIGTSTP) */
d0d6b7c5 3427 }
b0310da4
JB
3428#else /* ! defined (TCGETA) */
3429 Your configuration files are messed up.
3430 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
3431 you'd better be using one of the alternatives above! */
3432#endif /* ! defined (TCGETA) */
3433#endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
6be429b1 3434#endif /* ! defined HAVE_TERMIOS */
b0310da4 3435#endif /* ! defined (SIGNALS_VIA_CHARACTERS) */
d0d6b7c5 3436
301c3fe4 3437#ifdef TIOCGPGRP
d0d6b7c5
JB
3438 /* Get the pgrp using the tty itself, if we have that.
3439 Otherwise, use the pty to get the pgrp.
3440 On pfa systems, saka@pfu.fujitsu.co.JP writes:
b0310da4
JB
3441 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
3442 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
d0d6b7c5
JB
3443 His patch indicates that if TIOCGPGRP returns an error, then
3444 we should just assume that p->pid is also the process group id. */
3445 {
3446 int err;
3447
3448 if (!NILP (p->subtty))
3449 err = ioctl (XFASTINT (p->subtty), TIOCGPGRP, &gid);
3450 else
a9f2c884 3451 err = ioctl (XINT (p->infd), TIOCGPGRP, &gid);
d0d6b7c5
JB
3452
3453#ifdef pfa
3454 if (err == -1)
3455 gid = - XFASTINT (p->pid);
301c3fe4 3456#endif /* ! defined (pfa) */
d0d6b7c5
JB
3457 }
3458 if (gid == -1)
3459 no_pgrp = 1;
3460 else
3461 gid = - gid;
b0310da4 3462#else /* ! defined (TIOCGPGRP ) */
301c3fe4
JB
3463 /* Can't select pgrps on this system, so we know that
3464 the child itself heads the pgrp. */
3465 gid = - XFASTINT (p->pid);
3466#endif /* ! defined (TIOCGPGRP ) */
d0d6b7c5
JB
3467 }
3468 else
3469 gid = - XFASTINT (p->pid);
d0d6b7c5
JB
3470
3471 switch (signo)
3472 {
3473#ifdef SIGCONT
3474 case SIGCONT:
3475 p->raw_status_low = Qnil;
3476 p->raw_status_high = Qnil;
3477 p->status = Qrun;
3478 XSETINT (p->tick, ++process_tick);
3479 if (!nomsg)
3480 status_notify ();
3481 break;
301c3fe4 3482#endif /* ! defined (SIGCONT) */
d0d6b7c5
JB
3483 case SIGINT:
3484#ifdef VMS
4556b700 3485 send_process (proc, "\003", 1, Qnil); /* ^C */
d0d6b7c5
JB
3486 goto whoosh;
3487#endif
3488 case SIGQUIT:
3489#ifdef VMS
4556b700 3490 send_process (proc, "\031", 1, Qnil); /* ^Y */
d0d6b7c5
JB
3491 goto whoosh;
3492#endif
3493 case SIGKILL:
3494#ifdef VMS
3495 sys$forcex (&(XFASTINT (p->pid)), 0, 1);
3496 whoosh:
3497#endif
a9f2c884 3498 flush_pending_output (XINT (p->infd));
d0d6b7c5
JB
3499 break;
3500 }
3501
3502 /* If we don't have process groups, send the signal to the immediate
3503 subprocess. That isn't really right, but it's better than any
3504 obvious alternative. */
3505 if (no_pgrp)
3506 {
3507 kill (XFASTINT (p->pid), signo);
3508 return;
3509 }
3510
3511 /* gid may be a pid, or minus a pgrp's number */
3512#ifdef TIOCSIGSEND
3513 if (!NILP (current_group))
a9f2c884 3514 ioctl (XINT (p->infd), TIOCSIGSEND, signo);
d0d6b7c5
JB
3515 else
3516 {
3517 gid = - XFASTINT (p->pid);
3518 kill (gid, signo);
3519 }
301c3fe4 3520#else /* ! defined (TIOCSIGSEND) */
d0d6b7c5 3521 EMACS_KILLPG (-gid, signo);
301c3fe4 3522#endif /* ! defined (TIOCSIGSEND) */
d0d6b7c5
JB
3523}
3524
3525DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
3526 "Interrupt process PROCESS. May be process or name of one.\n\
ebb9e16f 3527PROCESS may be a process, a buffer, or the name of a process or buffer.\n\
e333e864 3528nil or no arg means current buffer's process.\n\
d0d6b7c5
JB
3529Second arg CURRENT-GROUP non-nil means send signal to\n\
3530the current process-group of the process's controlling terminal\n\
3531rather than to the process's own process group.\n\
3532If the process is a shell, this means interrupt current subjob\n\
3533rather than the shell.")
3534 (process, current_group)
3535 Lisp_Object process, current_group;
3536{
3537 process_send_signal (process, SIGINT, current_group, 0);
3538 return process;
3539}
3540
3541DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
3542 "Kill process PROCESS. May be process or name of one.\n\
3543See function `interrupt-process' for more details on usage.")
3544 (process, current_group)
3545 Lisp_Object process, current_group;
3546{
3547 process_send_signal (process, SIGKILL, current_group, 0);
3548 return process;
3549}
3550
3551DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
3552 "Send QUIT signal to process PROCESS. May be process or name of one.\n\
3553See function `interrupt-process' for more details on usage.")
3554 (process, current_group)
3555 Lisp_Object process, current_group;
3556{
3557 process_send_signal (process, SIGQUIT, current_group, 0);
3558 return process;
3559}
3560
3561DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
3562 "Stop process PROCESS. May be process or name of one.\n\
3563See function `interrupt-process' for more details on usage.")
3564 (process, current_group)
3565 Lisp_Object process, current_group;
3566{
3567#ifndef SIGTSTP
3568 error ("no SIGTSTP support");
3569#else
3570 process_send_signal (process, SIGTSTP, current_group, 0);
3571#endif
3572 return process;
3573}
3574
3575DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
3576 "Continue process PROCESS. May be process or name of one.\n\
3577See function `interrupt-process' for more details on usage.")
3578 (process, current_group)
3579 Lisp_Object process, current_group;
3580{
3581#ifdef SIGCONT
3582 process_send_signal (process, SIGCONT, current_group, 0);
3583#else
3584 error ("no SIGCONT support");
3585#endif
3586 return process;
3587}
3588
3589DEFUN ("signal-process", Fsignal_process, Ssignal_process,
3590 2, 2, "nProcess number: \nnSignal code: ",
4766242d
RS
3591 "Send the process with process id PID the signal with code SIGCODE.\n\
3592PID must be an integer. The process need not be a child of this Emacs.\n\
3593SIGCODE may be an integer, or a symbol whose name is a signal name.")
3594 (pid, sigcode)
3595 Lisp_Object pid, sigcode;
d0d6b7c5
JB
3596{
3597 CHECK_NUMBER (pid, 0);
4766242d
RS
3598
3599#define handle_signal(NAME, VALUE) \
3600 else if (!strcmp (name, NAME)) \
3601 XSETINT (sigcode, VALUE)
3602
3603 if (INTEGERP (sigcode))
3604 ;
3605 else
3606 {
3607 unsigned char *name;
3608
3609 CHECK_SYMBOL (sigcode, 1);
3610 name = XSYMBOL (sigcode)->name->data;
3611
3612 if (0)
3613 ;
3614#ifdef SIGHUP
3615 handle_signal ("SIGHUP", SIGHUP);
3616#endif
3617#ifdef SIGINT
3618 handle_signal ("SIGINT", SIGINT);
3619#endif
3620#ifdef SIGQUIT
3621 handle_signal ("SIGQUIT", SIGQUIT);
3622#endif
3623#ifdef SIGILL
3624 handle_signal ("SIGILL", SIGILL);
3625#endif
3626#ifdef SIGABRT
3627 handle_signal ("SIGABRT", SIGABRT);
3628#endif
3629#ifdef SIGEMT
3630 handle_signal ("SIGEMT", SIGEMT);
3631#endif
3632#ifdef SIGKILL
3633 handle_signal ("SIGKILL", SIGKILL);
3634#endif
3635#ifdef SIGFPE
3636 handle_signal ("SIGFPE", SIGFPE);
3637#endif
3638#ifdef SIGBUS
3639 handle_signal ("SIGBUS", SIGBUS);
3640#endif
3641#ifdef SIGSEGV
3642 handle_signal ("SIGSEGV", SIGSEGV);
3643#endif
3644#ifdef SIGSYS
3645 handle_signal ("SIGSYS", SIGSYS);
3646#endif
3647#ifdef SIGPIPE
3648 handle_signal ("SIGPIPE", SIGPIPE);
3649#endif
3650#ifdef SIGALRM
3651 handle_signal ("SIGALRM", SIGALRM);
3652#endif
3653#ifdef SIGTERM
3654 handle_signal ("SIGTERM", SIGTERM);
3655#endif
3656#ifdef SIGURG
3657 handle_signal ("SIGURG", SIGURG);
3658#endif
3659#ifdef SIGSTOP
3660 handle_signal ("SIGSTOP", SIGSTOP);
3661#endif
3662#ifdef SIGTSTP
3663 handle_signal ("SIGTSTP", SIGTSTP);
3664#endif
3665#ifdef SIGCONT
3666 handle_signal ("SIGCONT", SIGCONT);
3667#endif
3668#ifdef SIGCHLD
3669 handle_signal ("SIGCHLD", SIGCHLD);
3670#endif
3671#ifdef SIGTTIN
3672 handle_signal ("SIGTTIN", SIGTTIN);
3673#endif
3674#ifdef SIGTTOU
3675 handle_signal ("SIGTTOU", SIGTTOU);
3676#endif
3677#ifdef SIGIO
3678 handle_signal ("SIGIO", SIGIO);
3679#endif
3680#ifdef SIGXCPU
3681 handle_signal ("SIGXCPU", SIGXCPU);
3682#endif
3683#ifdef SIGXFSZ
3684 handle_signal ("SIGXFSZ", SIGXFSZ);
3685#endif
3686#ifdef SIGVTALRM
3687 handle_signal ("SIGVTALRM", SIGVTALRM);
3688#endif
3689#ifdef SIGPROF
3690 handle_signal ("SIGPROF", SIGPROF);
3691#endif
3692#ifdef SIGWINCH
3693 handle_signal ("SIGWINCH", SIGWINCH);
3694#endif
3695#ifdef SIGINFO
3696 handle_signal ("SIGINFO", SIGINFO);
3697#endif
3698#ifdef SIGUSR1
3699 handle_signal ("SIGUSR1", SIGUSR1);
3700#endif
3701#ifdef SIGUSR2
3702 handle_signal ("SIGUSR2", SIGUSR2);
3703#endif
3704 else
9fa195a2 3705 error ("Undefined signal name %s", name);
4766242d
RS
3706 }
3707
3708#undef handle_signal
3709
4766242d 3710 return make_number (kill (XINT (pid), XINT (sigcode)));
d0d6b7c5
JB
3711}
3712
3713DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
3714 "Make PROCESS see end-of-file in its input.\n\
3715Eof comes after any text already sent to it.\n\
ebb9e16f 3716PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
d33a00f2
RS
3717nil, indicating the current buffer's process.\n\
3718If PROCESS is a network connection, or is a process communicating\n\
3719through a pipe (as opposed to a pty), then you cannot send any more\n\
3720text to PROCESS after you call this function.")
d0d6b7c5
JB
3721 (process)
3722 Lisp_Object process;
3723{
3724 Lisp_Object proc;
3725
3726 proc = get_process (process);
577d03d5
RS
3727
3728 /* Make sure the process is really alive. */
3729 if (! NILP (XPROCESS (proc)->raw_status_low))
3730 update_status (XPROCESS (proc));
3731 if (! EQ (XPROCESS (proc)->status, Qrun))
dcf970e6 3732 error ("Process %s not running", XSTRING (XPROCESS (proc)->name)->data);
577d03d5 3733
d0d6b7c5 3734#ifdef VMS
4556b700 3735 send_process (proc, "\032", 1, Qnil); /* ^z */
d0d6b7c5
JB
3736#else
3737 if (!NILP (XPROCESS (proc)->pty_flag))
4556b700 3738 send_process (proc, "\004", 1, Qnil);
d0d6b7c5
JB
3739 else
3740 {
93853f3d 3741#ifdef HAVE_SHUTDOWN
02f55c4b
RS
3742 /* If this is a network connection, or socketpair is used
3743 for communication with the subprocess, call shutdown to cause EOF.
3744 (In some old system, shutdown to socketpair doesn't work.
3745 Then we just can't win.) */
3746 if (NILP (XPROCESS (proc)->pid)
3747 || XINT (XPROCESS (proc)->outfd) == XINT (XPROCESS (proc)->infd))
3748 shutdown (XINT (XPROCESS (proc)->outfd), 1);
3749 /* In case of socketpair, outfd == infd, so don't close it. */
3750 if (XINT (XPROCESS (proc)->outfd) != XINT (XPROCESS (proc)->infd))
3751 close (XINT (XPROCESS (proc)->outfd));
93853f3d
RS
3752#else /* not HAVE_SHUTDOWN */
3753 close (XINT (XPROCESS (proc)->outfd));
3754#endif /* not HAVE_SHUTDOWN */
1d056e64 3755 XSETINT (XPROCESS (proc)->outfd, open (NULL_DEVICE, O_WRONLY));
d0d6b7c5
JB
3756 }
3757#endif /* VMS */
d0d6b7c5
JB
3758 return process;
3759}
3760
3761/* Kill all processes associated with `buffer'.
3762 If `buffer' is nil, kill all processes */
3763
6b53bb85 3764void
d0d6b7c5
JB
3765kill_buffer_processes (buffer)
3766 Lisp_Object buffer;
3767{
3768 Lisp_Object tail, proc;
3769
b5b502d6 3770 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCONS (tail)->cdr)
d0d6b7c5
JB
3771 {
3772 proc = XCONS (XCONS (tail)->car)->cdr;
b5b502d6 3773 if (GC_PROCESSP (proc)
d0d6b7c5
JB
3774 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
3775 {
3776 if (NETCONN_P (proc))
e1ab4959 3777 Fdelete_process (proc);
a9f2c884 3778 else if (XINT (XPROCESS (proc)->infd) >= 0)
d0d6b7c5
JB
3779 process_send_signal (proc, SIGHUP, Qnil, 1);
3780 }
3781 }
3782}
3783\f
3784/* On receipt of a signal that a child status has changed,
3785 loop asking about children with changed statuses until
3786 the system says there are no more.
3787 All we do is change the status;
3788 we do not run sentinels or print notifications.
3789 That is saved for the next time keyboard input is done,
3790 in order to avoid timing errors. */
3791
3792/** WARNING: this can be called during garbage collection.
3793 Therefore, it must not be fooled by the presence of mark bits in
3794 Lisp objects. */
3795
3796/** USG WARNING: Although it is not obvious from the documentation
3797 in signal(2), on a USG system the SIGCLD handler MUST NOT call
3798 signal() before executing at least one wait(), otherwise the handler
3799 will be called again, resulting in an infinite loop. The relevant
3800 portion of the documentation reads "SIGCLD signals will be queued
3801 and the signal-catching function will be continually reentered until
3802 the queue is empty". Invoking signal() causes the kernel to reexamine
3803 the SIGCLD queue. Fred Fish, UniSoft Systems Inc. */
3804
3805SIGTYPE
3806sigchld_handler (signo)
3807 int signo;
3808{
3809 int old_errno = errno;
3810 Lisp_Object proc;
3811 register struct Lisp_Process *p;
6be429b1 3812 extern EMACS_TIME *input_available_clear_time;
d0d6b7c5
JB
3813
3814#ifdef BSD4_1
3815 extern int sigheld;
3816 sigheld |= sigbit (SIGCHLD);
3817#endif
3818
3819 while (1)
3820 {
3821 register int pid;
3822 WAITTYPE w;
3823 Lisp_Object tail;
3824
3825#ifdef WNOHANG
3826#ifndef WUNTRACED
3827#define WUNTRACED 0
3828#endif /* no WUNTRACED */
3829 /* Keep trying to get a status until we get a definitive result. */
3830 do
3831 {
3832 errno = 0;
3833 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
3834 }
3835 while (pid <= 0 && errno == EINTR);
3836
3837 if (pid <= 0)
3838 {
3839 /* A real failure. We have done all our job, so return. */
3840
3841 /* USG systems forget handlers when they are used;
3842 must reestablish each time */
3c0ee47b 3843#if defined (USG) && !defined (POSIX_SIGNALS)
d0d6b7c5
JB
3844 signal (signo, sigchld_handler); /* WARNING - must come after wait3() */
3845#endif
3846#ifdef BSD4_1
3847 sigheld &= ~sigbit (SIGCHLD);
3848 sigrelse (SIGCHLD);
3849#endif
3850 errno = old_errno;
3851 return;
3852 }
3853#else
3854 pid = wait (&w);
3855#endif /* no WNOHANG */
3856
3857 /* Find the process that signaled us, and record its status. */
3858
3859 p = 0;
7968cc2d 3860 for (tail = Vprocess_alist; CONSP (tail); tail = XCONS (tail)->cdr)
d0d6b7c5
JB
3861 {
3862 proc = XCONS (XCONS (tail)->car)->cdr;
3863 p = XPROCESS (proc);
3864 if (EQ (p->childp, Qt) && XFASTINT (p->pid) == pid)
3865 break;
3866 p = 0;
3867 }
3868
3869 /* Look for an asynchronous process whose pid hasn't been filled
3870 in yet. */
3871 if (p == 0)
7968cc2d 3872 for (tail = Vprocess_alist; CONSP (tail); tail = XCONS (tail)->cdr)
d0d6b7c5
JB
3873 {
3874 proc = XCONS (XCONS (tail)->car)->cdr;
3875 p = XPROCESS (proc);
bcd69aea 3876 if (INTEGERP (p->pid) && XINT (p->pid) == -1)
d0d6b7c5
JB
3877 break;
3878 p = 0;
3879 }
3880
3881 /* Change the status of the process that was found. */
3882 if (p != 0)
3883 {
3884 union { int i; WAITTYPE wt; } u;
e98d950b 3885 int clear_desc_flag = 0;
d0d6b7c5
JB
3886
3887 XSETINT (p->tick, ++process_tick);
3888 u.wt = w;
5fc0154c
RS
3889 XSETINT (p->raw_status_low, u.i & 0xffff);
3890 XSETINT (p->raw_status_high, u.i >> 16);
d0d6b7c5
JB
3891
3892 /* If process has terminated, stop waiting for its output. */
e98d950b
RS
3893 if ((WIFSIGNALED (w) || WIFEXITED (w))
3894 && XINT (p->infd) >= 0)
3895 clear_desc_flag = 1;
3896
3897 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
3898 if (clear_desc_flag)
3899 {
3900 FD_CLR (XINT (p->infd), &input_wait_mask);
3901 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask);
3902 }
6be429b1
JB
3903
3904 /* Tell wait_reading_process_input that it needs to wake up and
3905 look around. */
3906 if (input_available_clear_time)
3907 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
d0d6b7c5
JB
3908 }
3909
3910 /* There was no asynchronous process found for that id. Check
3911 if we have a synchronous process. */
3912 else
3913 {
3914 synch_process_alive = 0;
3915
3916 /* Report the status of the synchronous process. */
3917 if (WIFEXITED (w))
3918 synch_process_retcode = WRETCODE (w);
3919 else if (WIFSIGNALED (w))
b97ad9ea
RS
3920 {
3921 int code = WTERMSIG (w);
3922 char *signame = 0;
3923
3924 if (code < NSIG)
3925 {
b0310da4 3926#ifndef VMS
ed0cae05
RS
3927 /* Suppress warning if the table has const char *. */
3928 signame = (char *) sys_siglist[code];
b0310da4 3929#else
b97ad9ea 3930 signame = sys_errlist[code];
b0310da4 3931#endif
b97ad9ea
RS
3932 }
3933 if (signame == 0)
3934 signame = "unknown";
3935
3936 synch_process_death = signame;
3937 }
6be429b1
JB
3938
3939 /* Tell wait_reading_process_input that it needs to wake up and
3940 look around. */
3941 if (input_available_clear_time)
3942 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
d0d6b7c5
JB
3943 }
3944
3945 /* On some systems, we must return right away.
3946 If any more processes want to signal us, we will
3947 get another signal.
3948 Otherwise (on systems that have WNOHANG), loop around
3949 to use up all the processes that have something to tell us. */
e98d950b 3950#if defined (USG) && ! (defined (HPUX) && defined (WNOHANG)) || defined (WINDOWSNT)
3c0ee47b 3951#if defined (USG) && ! defined (POSIX_SIGNALS)
d0d6b7c5
JB
3952 signal (signo, sigchld_handler);
3953#endif
3954 errno = old_errno;
3955 return;
3956#endif /* USG, but not HPUX with WNOHANG */
3957 }
3958}
3959\f
3960
3961static Lisp_Object
3962exec_sentinel_unwind (data)
3963 Lisp_Object data;
3964{
3965 XPROCESS (XCONS (data)->car)->sentinel = XCONS (data)->cdr;
3966 return Qnil;
3967}
3968
3b9a3dfa
RS
3969static Lisp_Object
3970exec_sentinel_error_handler (error)
3971 Lisp_Object error;
3972{
3973 cmd_error_internal (error, "error in process sentinel: ");
3974 Vinhibit_quit = Qt;
3975 update_echo_area ();
833ba342 3976 Fsleep_for (make_number (2), Qnil);
3b9a3dfa
RS
3977}
3978
d0d6b7c5
JB
3979static void
3980exec_sentinel (proc, reason)
3981 Lisp_Object proc, reason;
3982{
dfc21838 3983 Lisp_Object sentinel, obuffer, odeactivate, okeymap;
d0d6b7c5
JB
3984 register struct Lisp_Process *p = XPROCESS (proc);
3985 int count = specpdl_ptr - specpdl;
4da2f5be 3986 int outer_running_asynch_code = running_asynch_code;
d0d6b7c5 3987
dfc21838
RS
3988 /* No need to gcpro these, because all we do with them later
3989 is test them for EQness, and none of them should be a string. */
8fb3cf64 3990 odeactivate = Vdeactivate_mark;
dfc21838
RS
3991 XSETBUFFER (obuffer, current_buffer);
3992 okeymap = current_buffer->keymap;
3993
d0d6b7c5
JB
3994 sentinel = p->sentinel;
3995 if (NILP (sentinel))
3996 return;
3997
3998 /* Zilch the sentinel while it's running, to avoid recursive invocations;
3999 assure that it gets restored no matter how the sentinel exits. */
4000 p->sentinel = Qnil;
4001 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
4002 /* Inhibit quit so that random quits don't screw up a running filter. */
4003 specbind (Qinhibit_quit, Qt);
6545aada 4004 specbind (Qlast_nonmenu_event, Qt);
3b9a3dfa 4005
4da2f5be
RS
4006 /* In case we get recursively called,
4007 and we already saved the match data nonrecursively,
4008 save the same match data in safely recursive fashion. */
4009 if (outer_running_asynch_code)
4010 {
4011 Lisp_Object tem;
dd130227 4012 tem = Fmatch_data (Qnil, Qnil);
4da2f5be 4013 restore_match_data ();
dd130227 4014 record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil));
4da2f5be
RS
4015 Fstore_match_data (tem);
4016 }
4017
4018 /* For speed, if a search happens within this code,
4019 save the match data in a special nonrecursive fashion. */
7074fde6 4020 running_asynch_code = 1;
4da2f5be 4021
3b9a3dfa
RS
4022 internal_condition_case_1 (read_process_output_call,
4023 Fcons (sentinel,
4024 Fcons (proc, Fcons (reason, Qnil))),
4025 !NILP (Vdebug_on_error) ? Qnil : Qerror,
4026 exec_sentinel_error_handler);
4da2f5be
RS
4027
4028 /* If we saved the match data nonrecursively, restore it now. */
7074fde6 4029 restore_match_data ();
4da2f5be 4030 running_asynch_code = outer_running_asynch_code;
8fb3cf64
KH
4031
4032 Vdeactivate_mark = odeactivate;
7973cfa8 4033#if 0
dfc21838
RS
4034 if (! EQ (Fcurrent_buffer (), obuffer)
4035 || ! EQ (current_buffer->keymap, okeymap))
7973cfa8 4036#endif
927e08be
RS
4037 /* But do it only if the caller is actually going to read events.
4038 Otherwise there's no need to make him wake up, and it could
4039 cause trouble (for example it would make Fsit_for return). */
4040 if (waiting_for_user_input_p == -1)
4041 record_asynch_buffer_change ();
8fb3cf64 4042
2ea6d561 4043 unbind_to (count, Qnil);
d0d6b7c5
JB
4044}
4045
4046/* Report all recent events of a change in process status
4047 (either run the sentinel or output a message).
4048 This is done while Emacs is waiting for keyboard input. */
4049
6b53bb85 4050void
d0d6b7c5
JB
4051status_notify ()
4052{
4053 register Lisp_Object proc, buffer;
2e4149a8 4054 Lisp_Object tail, msg;
d0d6b7c5
JB
4055 struct gcpro gcpro1, gcpro2;
4056
2e4149a8
KH
4057 tail = Qnil;
4058 msg = Qnil;
d0d6b7c5
JB
4059 /* We need to gcpro tail; if read_process_output calls a filter
4060 which deletes a process and removes the cons to which tail points
4061 from Vprocess_alist, and then causes a GC, tail is an unprotected
4062 reference. */
4063 GCPRO2 (tail, msg);
4064
30623085
RS
4065 /* Set this now, so that if new processes are created by sentinels
4066 that we run, we get called again to handle their status changes. */
4067 update_tick = process_tick;
4068
4069 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
d0d6b7c5 4070 {
30623085
RS
4071 Lisp_Object symbol;
4072 register struct Lisp_Process *p;
4073
4074 proc = Fcdr (Fcar (tail));
4075 p = XPROCESS (proc);
4076
4077 if (XINT (p->tick) != XINT (p->update_tick))
d0d6b7c5 4078 {
30623085 4079 XSETINT (p->update_tick, XINT (p->tick));
d0d6b7c5 4080
30623085 4081 /* If process is still active, read any output that remains. */
4da2f5be
RS
4082 while (! EQ (p->filter, Qt)
4083 && XINT (p->infd) >= 0
4084 && read_process_output (proc, XINT (p->infd)) > 0);
d0d6b7c5 4085
30623085 4086 buffer = p->buffer;
d0d6b7c5 4087
30623085
RS
4088 /* Get the text to use for the message. */
4089 if (!NILP (p->raw_status_low))
4090 update_status (p);
4091 msg = status_message (p->status);
d0d6b7c5 4092
30623085
RS
4093 /* If process is terminated, deactivate it or delete it. */
4094 symbol = p->status;
4095 if (CONSP (p->status))
4096 symbol = XCONS (p->status)->car;
d0d6b7c5 4097
30623085
RS
4098 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
4099 || EQ (symbol, Qclosed))
4100 {
4101 if (delete_exited_processes)
4102 remove_process (proc);
4103 else
4104 deactivate_process (proc);
4105 }
d0d6b7c5 4106
0ad61fe7
RS
4107 /* The actions above may have further incremented p->tick.
4108 So set p->update_tick again
4109 so that an error in the sentinel will not cause
4110 this code to be run again. */
4111 XSETINT (p->update_tick, XINT (p->tick));
30623085
RS
4112 /* Now output the message suitably. */
4113 if (!NILP (p->sentinel))
4114 exec_sentinel (proc, msg);
4115 /* Don't bother with a message in the buffer
4116 when a process becomes runnable. */
4117 else if (!EQ (symbol, Qrun) && !NILP (buffer))
4118 {
4119 Lisp_Object ro, tem;
4120 struct buffer *old = current_buffer;
d8a2934e
RS
4121 int opoint, opoint_byte;
4122 int before, before_byte;
2e4149a8 4123
30623085 4124 ro = XBUFFER (buffer)->read_only;
d0d6b7c5 4125
30623085
RS
4126 /* Avoid error if buffer is deleted
4127 (probably that's why the process is dead, too) */
4128 if (NILP (XBUFFER (buffer)->name))
4129 continue;
4130 Fset_buffer (buffer);
12ca5cdf 4131
6ec8bbd2 4132 opoint = PT;
d8a2934e 4133 opoint_byte = PT_BYTE;
30623085
RS
4134 /* Insert new output into buffer
4135 at the current end-of-output marker,
4136 thus preserving logical ordering of input and output. */
4137 if (XMARKER (p->mark)->buffer)
d8a2934e 4138 Fgoto_char (p->mark);
30623085 4139 else
d8a2934e 4140 SET_PT_BOTH (ZV, ZV_BYTE);
12ca5cdf
RS
4141
4142 before = PT;
d8a2934e 4143 before_byte = PT_BYTE;
30623085
RS
4144
4145 tem = current_buffer->read_only;
4146 current_buffer->read_only = Qnil;
4147 insert_string ("\nProcess ");
4148 Finsert (1, &p->name);
4149 insert_string (" ");
4150 Finsert (1, &msg);
4151 current_buffer->read_only = tem;
d8a2934e 4152 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
30623085 4153
12ca5cdf 4154 if (opoint >= before)
d8a2934e
RS
4155 SET_PT_BOTH (opoint + (PT - before),
4156 opoint_byte + (PT_BYTE - before_byte));
12ca5cdf 4157 else
d8a2934e 4158 SET_PT_BOTH (opoint, opoint_byte);
12ca5cdf 4159
30623085 4160 set_buffer_internal (old);
d0d6b7c5 4161 }
30623085
RS
4162 }
4163 } /* end for */
d0d6b7c5
JB
4164
4165 update_mode_lines++; /* in case buffers use %s in mode-line-format */
4166 redisplay_preserve_echo_area ();
4167
d0d6b7c5
JB
4168 UNGCPRO;
4169}
0fa1789e
KH
4170
4171\f
4172DEFUN ("set-process-coding-system", Fset_process_coding_system,
4173 Sset_process_coding_system, 1, 3, 0,
a95c35f6 4174 "Set coding systems of PROCESS to DECODING (input from the process) and\n\
0fa1789e
KH
4175ENCODING (output to the process).")
4176 (proc, decoding, encoding)
4177 register Lisp_Object proc, decoding, encoding;
4178{
4179 register struct Lisp_Process *p;
4180
4181 CHECK_PROCESS (proc, 0);
4182 p = XPROCESS (proc);
4183 if (XINT (p->infd) < 0)
4184 error ("Input file descriptor of %s closed", XSTRING (p->name)->data);
4185 if (XINT (p->outfd) < 0)
4186 error ("Output file descriptor of %s closed", XSTRING (p->name)->data);
4187
4188 p->decode_coding_system = Fcheck_coding_system (decoding);
4189 p->encode_coding_system = Fcheck_coding_system (encoding);
4190 setup_coding_system (decoding,
c7580538 4191 proc_decode_coding_system[XINT (p->infd)]);
0fa1789e 4192 setup_coding_system (encoding,
c7580538 4193 proc_encode_coding_system[XINT (p->outfd)]);
0fa1789e
KH
4194
4195 return Qnil;
4196}
4197
4198DEFUN ("process-coding-system",
4199 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0,
a95c35f6 4200 "Return a cons of coding systems for decoding and encoding of PROCESS.")
0fa1789e
KH
4201 (proc)
4202 register Lisp_Object proc;
4203{
4204 CHECK_PROCESS (proc, 0);
4205 return Fcons (XPROCESS (proc)->decode_coding_system,
4206 XPROCESS (proc)->encode_coding_system);
4207}
d0d6b7c5 4208\f
a69281ff
RS
4209/* The first time this is called, assume keyboard input comes from DESC
4210 instead of from where we used to expect it.
4211 Subsequent calls mean assume input keyboard can come from DESC
4212 in addition to other places. */
4213
4214static int add_keyboard_wait_descriptor_called_flag;
4215
4216void
4217add_keyboard_wait_descriptor (desc)
4218 int desc;
4219{
4220 if (! add_keyboard_wait_descriptor_called_flag)
4221 FD_CLR (0, &input_wait_mask);
4222 add_keyboard_wait_descriptor_called_flag = 1;
4223 FD_SET (desc, &input_wait_mask);
b5dc1c83 4224 FD_SET (desc, &non_process_wait_mask);
a69281ff
RS
4225 if (desc > max_keyboard_desc)
4226 max_keyboard_desc = desc;
4227}
4228
4229/* From now on, do not expect DESC to give keyboard input. */
4230
4231void
4232delete_keyboard_wait_descriptor (desc)
4233 int desc;
4234{
4235 int fd;
4236 int lim = max_keyboard_desc;
4237
4238 FD_CLR (desc, &input_wait_mask);
b5dc1c83 4239 FD_CLR (desc, &non_process_wait_mask);
a69281ff
RS
4240
4241 if (desc == max_keyboard_desc)
4242 for (fd = 0; fd < lim; fd++)
4243 if (FD_ISSET (fd, &input_wait_mask)
4244 && !FD_ISSET (fd, &non_keyboard_wait_mask))
4245 max_keyboard_desc = fd;
4246}
4247
4248/* Return nonzero if *MASK has a bit set
4249 that corresponds to one of the keyboard input descriptors. */
4250
4251int
4252keyboard_bit_set (mask)
4253 SELECT_TYPE *mask;
4254{
4255 int fd;
4256
ee8e09af 4257 for (fd = 0; fd <= max_keyboard_desc; fd++)
a69281ff
RS
4258 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask)
4259 && !FD_ISSET (fd, &non_keyboard_wait_mask))
4260 return 1;
4261
4262 return 0;
4263}
4264\f
d0d6b7c5
JB
4265init_process ()
4266{
4267 register int i;
4268
4269#ifdef SIGCHLD
4270#ifndef CANNOT_DUMP
4271 if (! noninteractive || initialized)
4272#endif
4273 signal (SIGCHLD, sigchld_handler);
4274#endif
4275
4276 FD_ZERO (&input_wait_mask);
a69281ff 4277 FD_ZERO (&non_keyboard_wait_mask);
b5dc1c83 4278 FD_ZERO (&non_process_wait_mask);
7d0e672e 4279 max_process_desc = 0;
dd2281ae 4280
a69281ff 4281 FD_SET (0, &input_wait_mask);
dd2281ae 4282
d0d6b7c5
JB
4283 Vprocess_alist = Qnil;
4284 for (i = 0; i < MAXDESC; i++)
4285 {
4286 chan_process[i] = Qnil;
4287 proc_buffered_char[i] = -1;
4288 }
c7580538
KH
4289 bzero (proc_decode_coding_system, sizeof proc_decode_coding_system);
4290 bzero (proc_encode_coding_system, sizeof proc_encode_coding_system);
d0d6b7c5 4291}
312c9964 4292
d0d6b7c5
JB
4293syms_of_process ()
4294{
d0d6b7c5
JB
4295 Qprocessp = intern ("processp");
4296 staticpro (&Qprocessp);
4297 Qrun = intern ("run");
4298 staticpro (&Qrun);
4299 Qstop = intern ("stop");
4300 staticpro (&Qstop);
4301 Qsignal = intern ("signal");
4302 staticpro (&Qsignal);
4303
4304 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
4305 here again.
4306
4307 Qexit = intern ("exit");
4308 staticpro (&Qexit); */
4309
4310 Qopen = intern ("open");
4311 staticpro (&Qopen);
4312 Qclosed = intern ("closed");
4313 staticpro (&Qclosed);
4314
6545aada
RS
4315 Qlast_nonmenu_event = intern ("last-nonmenu-event");
4316 staticpro (&Qlast_nonmenu_event);
4317
d0d6b7c5
JB
4318 staticpro (&Vprocess_alist);
4319
4320 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
4321 "*Non-nil means delete processes immediately when they exit.\n\
4322nil means don't delete them until `list-processes' is run.");
4323
4324 delete_exited_processes = 1;
4325
4326 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type,
4327 "Control type of device used to communicate with subprocesses.\n\
e333e864
RS
4328Values are nil to use a pipe, or t or `pty' to use a pty.\n\
4329The value has no effect if the system has no ptys or if all ptys are busy:\n\
4330then a pipe is used in any case.\n\
4331The value takes effect when `start-process' is called.");
d0d6b7c5
JB
4332 Vprocess_connection_type = Qt;
4333
4334 defsubr (&Sprocessp);
4335 defsubr (&Sget_process);
4336 defsubr (&Sget_buffer_process);
4337 defsubr (&Sdelete_process);
4338 defsubr (&Sprocess_status);
4339 defsubr (&Sprocess_exit_status);
4340 defsubr (&Sprocess_id);
4341 defsubr (&Sprocess_name);
3b9a3dfa 4342 defsubr (&Sprocess_tty_name);
d0d6b7c5
JB
4343 defsubr (&Sprocess_command);
4344 defsubr (&Sset_process_buffer);
4345 defsubr (&Sprocess_buffer);
4346 defsubr (&Sprocess_mark);
4347 defsubr (&Sset_process_filter);
4348 defsubr (&Sprocess_filter);
4349 defsubr (&Sset_process_sentinel);
4350 defsubr (&Sprocess_sentinel);
de282a05 4351 defsubr (&Sset_process_window_size);
d0d6b7c5 4352 defsubr (&Sprocess_kill_without_query);
de282a05 4353 defsubr (&Sprocess_contact);
d0d6b7c5
JB
4354 defsubr (&Slist_processes);
4355 defsubr (&Sprocess_list);
4356 defsubr (&Sstart_process);
4357#ifdef HAVE_SOCKETS
4358 defsubr (&Sopen_network_stream);
4359#endif /* HAVE_SOCKETS */
4360 defsubr (&Saccept_process_output);
4361 defsubr (&Sprocess_send_region);
4362 defsubr (&Sprocess_send_string);
4363 defsubr (&Sinterrupt_process);
4364 defsubr (&Skill_process);
4365 defsubr (&Squit_process);
4366 defsubr (&Sstop_process);
4367 defsubr (&Scontinue_process);
4368 defsubr (&Sprocess_send_eof);
4369 defsubr (&Ssignal_process);
4370 defsubr (&Swaiting_for_user_input_p);
4371/* defsubr (&Sprocess_connection); */
0fa1789e
KH
4372 defsubr (&Sset_process_coding_system);
4373 defsubr (&Sprocess_coding_system);
d0d6b7c5
JB
4374}
4375
6720a7fb
JB
4376\f
4377#else /* not subprocesses */
4378
4379#include <sys/types.h>
4380#include <errno.h>
4381
4382#include "lisp.h"
4383#include "systime.h"
4384#include "termopts.h"
81afb6d1 4385#include "sysselect.h"
6720a7fb 4386
ff11dfa1 4387extern int frame_garbaged;
6720a7fb 4388
f694e5d2
KH
4389extern EMACS_TIME timer_check ();
4390extern int timers_run;
6720a7fb
JB
4391
4392/* As described above, except assuming that there are no subprocesses:
4393
4394 Wait for timeout to elapse and/or keyboard input to be available.
4395
4396 time_limit is:
4397 timeout in seconds, or
4398 zero for no limit, or
4399 -1 means gobble data immediately available but don't wait for any.
4400
f76475ad 4401 read_kbd is a Lisp_Object:
6720a7fb
JB
4402 0 to ignore keyboard input, or
4403 1 to return when input is available, or
4404 -1 means caller will actually read the input, so don't throw to
4405 the quit handler.
0a65b032
RS
4406 a cons cell, meaning wait until its car is non-nil
4407 (and gobble terminal input into the buffer if any arrives), or
6720a7fb
JB
4408 We know that read_kbd will never be a Lisp_Process, since
4409 `subprocesses' isn't defined.
4410
4411 do_display != 0 means redisplay should be done to show subprocess
5164ee8e 4412 output that arrives.
6720a7fb 4413
eb8c3be9 4414 Return true iff we received input from any process. */
6720a7fb
JB
4415
4416int
4417wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
f76475ad
JB
4418 int time_limit, microsecs;
4419 Lisp_Object read_kbd;
4420 int do_display;
6720a7fb 4421{
f694e5d2 4422 EMACS_TIME end_time, timeout;
8db121c4 4423 SELECT_TYPE waitchannels;
f694e5d2 4424 int xerrno;
0a65b032
RS
4425 Lisp_Object *wait_for_cell = 0;
4426
4427 /* If waiting for non-nil in a cell, record where. */
4428 if (CONSP (read_kbd))
4429 {
4430 wait_for_cell = &XCONS (read_kbd)->car;
4431 XSETFASTINT (read_kbd, 0);
4432 }
6720a7fb
JB
4433
4434 /* What does time_limit really mean? */
4435 if (time_limit || microsecs)
4436 {
6720a7fb
JB
4437 if (time_limit == -1)
4438 /* In fact, it's zero. */
4439 EMACS_SET_SECS_USECS (timeout, 0, 0);
4440 else
4441 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
4442
4443 /* How far in the future is that? */
4444 EMACS_GET_TIME (end_time);
4445 EMACS_ADD_TIME (end_time, end_time, timeout);
4446 }
4447 else
4448 /* It's infinite. */
f694e5d2 4449 EMACS_SET_SECS_USECS (timeout, 100000, 0);
6720a7fb
JB
4450
4451 /* Turn off periodic alarms (in case they are in use)
4452 because the select emulator uses alarms. */
4453 stop_polling ();
4454
4455 for (;;)
4456 {
4457 int nfds;
bae8d137 4458 int timeout_reduced_for_timers = 0;
6720a7fb 4459
6720a7fb
JB
4460 /* If calling from keyboard input, do not quit
4461 since we want to return C-g as an input character.
4462 Otherwise, do pending quit if requested. */
f76475ad 4463 if (XINT (read_kbd) >= 0)
6720a7fb
JB
4464 QUIT;
4465
0a65b032
RS
4466 /* Exit now if the cell we're waiting for became non-nil. */
4467 if (wait_for_cell && ! NILP (*wait_for_cell))
4468 break;
4469
bae8d137
RS
4470 /* Compute time from now till when time limit is up */
4471 /* Exit if already run out */
f694e5d2 4472 if (time_limit > 0 || microsecs)
6720a7fb 4473 {
f694e5d2
KH
4474 EMACS_GET_TIME (timeout);
4475 EMACS_SUB_TIME (timeout, end_time, timeout);
4476 if (EMACS_TIME_NEG_P (timeout))
6720a7fb
JB
4477 break;
4478 }
4479
bae8d137
RS
4480 /* If our caller will not immediately handle keyboard events,
4481 run timer events directly.
4482 (Callers that will immediately read keyboard events
4483 call timer_delay on their own.) */
f854a00b 4484 if (! wait_for_cell)
bae8d137
RS
4485 {
4486 EMACS_TIME timer_delay;
0a65b032
RS
4487 int old_timers_run;
4488
4489 retry:
4490 old_timers_run = timers_run;
bae8d137
RS
4491 timer_delay = timer_check (1);
4492 if (timers_run != old_timers_run && do_display)
0a65b032
RS
4493 {
4494 redisplay_preserve_echo_area ();
4495 /* We must retry, since a timer may have requeued itself
4496 and that could alter the time delay. */
4497 goto retry;
4498 }
4499
f694e5d2 4500 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
bae8d137
RS
4501 {
4502 EMACS_TIME difference;
f694e5d2 4503 EMACS_SUB_TIME (difference, timer_delay, timeout);
bae8d137
RS
4504 if (EMACS_TIME_NEG_P (difference))
4505 {
f694e5d2 4506 timeout = timer_delay;
bae8d137
RS
4507 timeout_reduced_for_timers = 1;
4508 }
4509 }
4510 }
4511
6720a7fb
JB
4512 /* Cause C-g and alarm signals to take immediate action,
4513 and cause input available signals to zero out timeout. */
f76475ad 4514 if (XINT (read_kbd) < 0)
6720a7fb
JB
4515 set_waiting_for_input (&timeout);
4516
0a65b032
RS
4517 /* Wait till there is something to do. */
4518
4519 if (! XINT (read_kbd) && wait_for_cell == 0)
4520 FD_ZERO (&waitchannels);
4521 else
4522 FD_SET (0, &waitchannels);
4523
ff11dfa1 4524 /* If a frame has been newly mapped and needs updating,
6720a7fb 4525 reprocess its display stuff. */
5164ee8e 4526 if (frame_garbaged && do_display)
0a65b032
RS
4527 {
4528 clear_waiting_for_input ();
4529 redisplay_preserve_echo_area ();
4530 if (XINT (read_kbd) < 0)
4531 set_waiting_for_input (&timeout);
4532 }
6720a7fb 4533
1861b214
RS
4534 if (XINT (read_kbd) && detect_input_pending ())
4535 {
4536 nfds = 0;
4537 FD_ZERO (&waitchannels);
4538 }
4539 else
4540 nfds = select (1, &waitchannels, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
4541 &timeout);
f694e5d2
KH
4542
4543 xerrno = errno;
6720a7fb
JB
4544
4545 /* Make C-g and alarm signals set flags again */
4546 clear_waiting_for_input ();
4547
4548 /* If we woke up due to SIGWINCH, actually change size now. */
4549 do_pending_window_change ();
4550
f694e5d2
KH
4551 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
4552 /* We waited the full specified time, so return now. */
4553 break;
4554
6720a7fb
JB
4555 if (nfds == -1)
4556 {
4557 /* If the system call was interrupted, then go around the
4558 loop again. */
f694e5d2 4559 if (xerrno == EINTR)
8db121c4 4560 FD_ZERO (&waitchannels);
f694e5d2
KH
4561 else
4562 error ("select error: %s", strerror (xerrno));
6720a7fb
JB
4563 }
4564#ifdef sun
4565 else if (nfds > 0 && (waitchannels & 1) && interrupt_input)
4566 /* System sometimes fails to deliver SIGIO. */
4567 kill (getpid (), SIGIO);
4568#endif
7324d660 4569#ifdef SIGIO
f76475ad 4570 if (XINT (read_kbd) && interrupt_input && (waitchannels & 1))
e643c5be 4571 kill (getpid (), SIGIO);
7324d660 4572#endif
6720a7fb 4573
f694e5d2
KH
4574 /* Check for keyboard input */
4575
f854a00b 4576 if ((XINT (read_kbd) != 0)
f694e5d2
KH
4577 && detect_input_pending_run_timers (do_display))
4578 {
4579 swallow_events (do_display);
4580 if (detect_input_pending_run_timers (do_display))
4581 break;
4582 }
0a65b032 4583
f854a00b
RS
4584 /* If wait_for_cell. check for keyboard input
4585 but don't run any timers.
4586 ??? (It seems wrong to me to check for keyboard
4587 input at all when wait_for_cell, but the code
4588 has been this way since July 1994.
4589 Try changing this after version 19.31.) */
4590 if (wait_for_cell
4591 && detect_input_pending ())
4592 {
4593 swallow_events (do_display);
4594 if (detect_input_pending ())
4595 break;
4596 }
4597
0a65b032
RS
4598 /* Exit now if the cell we're waiting for became non-nil. */
4599 if (wait_for_cell && ! NILP (*wait_for_cell))
4600 break;
6720a7fb
JB
4601 }
4602
a87b802f
JB
4603 start_polling ();
4604
6720a7fb
JB
4605 return 0;
4606}
4607
4608
4609DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
51ab806a 4610 /* Don't confuse make-docfile by having two doc strings for this function.
312c9964
RS
4611 make-docfile does not pay attention to #if, for good reason! */
4612 0)
6720a7fb
JB
4613 (name)
4614 register Lisp_Object name;
4615{
4616 return Qnil;
4617}
4618
4619/* Kill all processes associated with `buffer'.
4620 If `buffer' is nil, kill all processes.
4621 Since we have no subprocesses, this does nothing. */
4622
4623kill_buffer_processes (buffer)
4624 Lisp_Object buffer;
4625{
4626}
4627
4628init_process ()
4629{
4630}
4631
4632syms_of_process ()
4633{
4634 defsubr (&Sget_buffer_process);
4635}
4636
4637\f
4638#endif /* not subprocesses */