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