(ido-make-merged-file-list): Fix last change again.
[bpt/emacs.git] / src / process.c
... / ...
CommitLineData
1/* Asynchronous subprocess control for GNU Emacs.
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 96, 98, 1999,
3 2001, 2002 Free Software Foundation, Inc.
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
9the Free Software Foundation; either version 2, or (at your option)
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
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
21
22
23#define _GNU_SOURCE /* to get strsignal declared with glibc 2 */
24#include <config.h>
25#include <signal.h>
26
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
35#ifdef subprocesses
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>
43#ifdef HAVE_UNISTD_H
44#include <unistd.h>
45#endif
46
47#if defined(WINDOWSNT) || defined(UNIX98_PTYS)
48#include <stdlib.h>
49#include <fcntl.h>
50#endif /* not WINDOWSNT */
51
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>
57#ifdef NEED_NET_ERRNO_H
58#include <net/errno.h>
59#endif /* NEED_NET_ERRNO_H */
60
61/* Are local (unix) sockets supported? */
62#if defined (HAVE_SYS_UN_H) && !defined (NO_SOCKETS_IN_FILE_SYSTEM)
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
71#endif /* HAVE_SOCKETS */
72
73/* TERM is a poor-man's SLIP, used on GNU/Linux. */
74#ifdef TERM
75#include <client.h>
76#endif
77
78/* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */
79#ifdef HAVE_BROKEN_INET_ADDR
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
87#if defined(BSD_SYSTEM) || defined(STRIDE)
88#include <sys/ioctl.h>
89#if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
90#include <fcntl.h>
91#endif /* HAVE_PTYS and no O_NDELAY */
92#endif /* BSD_SYSTEM || STRIDE */
93
94#ifdef BROKEN_O_NONBLOCK
95#undef O_NONBLOCK
96#endif /* BROKEN_O_NONBLOCK */
97
98#ifdef NEED_BSDTTY
99#include <bsdtty.h>
100#endif
101
102#ifdef IRIS
103#include <sys/sysmacros.h> /* for "minor" */
104#endif /* not IRIS */
105
106#include "systime.h"
107#include "systty.h"
108
109#include "lisp.h"
110#include "window.h"
111#include "buffer.h"
112#include "charset.h"
113#include "coding.h"
114#include "process.h"
115#include "termhooks.h"
116#include "termopts.h"
117#include "commands.h"
118#include "keyboard.h"
119#include "frame.h"
120#include "blockinput.h"
121#include "dispextern.h"
122#include "composite.h"
123#include "atimer.h"
124
125Lisp_Object Qprocessp;
126Lisp_Object Qrun, Qstop, Qsignal;
127Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
128Lisp_Object Qlocal, Qdatagram;
129Lisp_Object QCname, QCbuffer, QChost, QCservice, QCtype;
130Lisp_Object QClocal, QCremote, QCcoding;
131Lisp_Object QCserver, QCnowait, QCnoquery, QCstop;
132Lisp_Object QCsentinel, QClog, QCoptions;
133Lisp_Object Qlast_nonmenu_event;
134/* QCfamily is declared and initialized in xfaces.c,
135 QCfilter in keyboard.c. */
136extern Lisp_Object QCfamily, QCfilter;
137
138/* Qexit is declared and initialized in eval.c. */
139
140/* QCfamily is defined in xfaces.c. */
141extern Lisp_Object QCfamily;
142/* QCfilter is defined in keyboard.c. */
143extern Lisp_Object QCfilter;
144
145/* a process object is a network connection when its childp field is neither
146 Qt nor Qnil but is instead a cons cell (HOSTNAME PORTNUM). */
147
148#ifdef HAVE_SOCKETS
149#define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp))
150#define NETCONN1_P(p) (GC_CONSP ((p)->childp))
151#else
152#define NETCONN_P(p) 0
153#define NETCONN1_P(p) 0
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
172#include "syswait.h"
173
174extern void set_waiting_for_input P_ ((EMACS_TIME *));
175
176#ifndef USE_CRT_DLL
177extern int errno;
178#endif
179#ifdef VMS
180extern char *sys_errlist[];
181#endif
182
183#ifndef HAVE_H_ERRNO
184extern int h_errno;
185#endif
186
187/* t means use pty, nil means use a pipe,
188 maybe other values to come. */
189static Lisp_Object Vprocess_connection_type;
190
191#ifdef SKTPAIR
192#ifndef HAVE_SOCKETS
193#include <sys/socket.h>
194#endif
195#endif /* SKTPAIR */
196
197/* These next two vars are non-static since sysdep.c uses them in the
198 emulation of `select'. */
199/* Number of events of change of status of a process. */
200int process_tick;
201/* Number of events for which the user or sentinel has been notified. */
202int update_tick;
203
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
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
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
243#ifdef TERM
244#undef NON_BLOCKING_CONNECT
245#undef DATAGRAM_SOCKETS
246#endif
247
248
249#include "sysselect.h"
250
251extern int keyboard_bit_set P_ ((SELECT_TYPE *));
252
253/* If we support a window system, turn on the code to poll periodically
254 to detect C-g. It isn't actually used when doing interrupt input. */
255#ifdef HAVE_WINDOW_SYSTEM
256#define POLL_FOR_INPUT
257#endif
258
259/* Mask of bits indicating the descriptors that we wait for input on. */
260
261static SELECT_TYPE input_wait_mask;
262
263/* Mask that excludes keyboard input descriptor (s). */
264
265static SELECT_TYPE non_keyboard_wait_mask;
266
267/* Mask that excludes process input descriptor (s). */
268
269static SELECT_TYPE non_process_wait_mask;
270
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
280/* The largest descriptor currently in use for a process object. */
281static int max_process_desc;
282
283/* The largest descriptor currently in use for keyboard input. */
284static int max_keyboard_desc;
285
286/* Nonzero means delete a process right away if it exits. */
287static int delete_exited_processes;
288
289/* Indexed by descriptor, gives the process (if any) for that descriptor */
290Lisp_Object chan_process[MAXDESC];
291
292/* Alist of elements (NAME . PROCESS) */
293Lisp_Object Vprocess_alist;
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
301/* Don't make static; need to access externally. */
302int proc_buffered_char[MAXDESC];
303
304/* Table of `struct coding-system' for each process. */
305static struct coding_system *proc_decode_coding_system[MAXDESC];
306static struct coding_system *proc_encode_coding_system[MAXDESC];
307
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)
315#define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XINT (XPROCESS (proc)->infd)].sa != 0)
316#else
317#define DATAGRAM_CHAN_P(chan) (0)
318#define DATAGRAM_CONN_P(proc) (0)
319#endif
320
321static Lisp_Object get_process ();
322static void exec_sentinel ();
323
324extern EMACS_TIME timer_check ();
325extern int timers_run;
326
327/* Maximum number of bytes to send to a pty without an eof. */
328static int pty_max_bytes;
329
330extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system;
331
332#ifdef HAVE_PTYS
333/* The file name of the pty opened by allocate_pty. */
334
335static char pty_name[24];
336#endif
337\f
338/* Compute the Lisp form of the process status, p->status, from
339 the numeric status that was returned by `wait'. */
340
341Lisp_Object status_convert ();
342
343void
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
354/* Convert a process status word in Unix format to
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
385 if (SYMBOLP (l))
386 {
387 *symbol = l;
388 *code = 0;
389 *coredump = 0;
390 }
391 else
392 {
393 *symbol = XCAR (l);
394 tem = XCDR (l);
395 *code = XFASTINT (XCAR (tem));
396 tem = XCDR (tem);
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 {
415 char *signame;
416 synchronize_system_messages_locale ();
417 signame = strsignal (code);
418 if (signame == 0)
419 signame = "unknown";
420 string = build_string (signame);
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");
429 string = Fnumber_to_string (make_number (code));
430 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
431 return concat3 (build_string ("exited abnormally with code "),
432 string, string2);
433 }
434 else if (EQ (symbol, Qfailed))
435 {
436 string = Fnumber_to_string (make_number (code));
437 string2 = build_string ("\n");
438 return concat3 (build_string ("failed with code "),
439 string, string2);
440 }
441 else
442 return Fcopy_sequence (Fsymbol_name (symbol));
443}
444\f
445#ifdef HAVE_PTYS
446
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
452int
453allocate_pty ()
454{
455 struct stat stb;
456 register int c, i;
457 int fd;
458
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
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
475#else
476 sprintf (pty_name, "/dev/pty%c%x", c, i);
477#endif /* no PTY_NAME_SPRINTF */
478
479#ifdef PTY_OPEN
480 PTY_OPEN;
481#else /* no PTY_OPEN */
482#ifdef IRIS
483 /* Unusual IRIS code */
484 *ptyv = emacs_open ("/dev/ptc", O_RDWR | O_NDELAY, 0);
485 if (fd < 0)
486 return -1;
487 if (fstat (fd, &stb) < 0)
488 return -1;
489#else /* not IRIS */
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;
498#ifdef O_NONBLOCK
499 fd = emacs_open (pty_name, O_RDWR | O_NONBLOCK, 0);
500#else
501 fd = emacs_open (pty_name, O_RDWR | O_NDELAY, 0);
502#endif
503#endif /* not IRIS */
504#endif /* no PTY_OPEN */
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
512#else
513 sprintf (pty_name, "/dev/tty%c%x", c, i);
514#endif /* no PTY_TTY_NAME_SPRINTF */
515#ifndef UNIPLUS
516 if (access (pty_name, 6) != 0)
517 {
518 emacs_close (fd);
519#if !defined(IRIS) && !defined(__sgi)
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
543 p = allocate_process ();
544
545 XSETINT (p->infd, -1);
546 XSETINT (p->outfd, -1);
547 XSETFASTINT (p->pid, 0);
548 XSETFASTINT (p->tick, 0);
549 XSETFASTINT (p->update_tick, 0);
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;
567 XSETPROCESS (val, p);
568 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
569 return val;
570}
571
572void
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);
580
581 deactivate_process (proc);
582}
583\f
584DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
585 doc: /* Return t if OBJECT is a process. */)
586 (object)
587 Lisp_Object object;
588{
589 return PROCESSP (object) ? Qt : Qnil;
590}
591
592DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
593 doc: /* Return the process named NAME, or nil if there is none. */)
594 (name)
595 register Lisp_Object name;
596{
597 if (PROCESSP (name))
598 return name;
599 CHECK_STRING (name);
600 return Fcdr (Fassoc (name, Vprocess_alist));
601}
602
603DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
604 doc: /* Return the (or a) process associated with BUFFER.
605BUFFER may be a buffer or the name of one. */)
606 (buffer)
607 register Lisp_Object buffer;
608{
609 register Lisp_Object buf, tail, proc;
610
611 if (NILP (buffer)) return Qnil;
612 buf = Fget_buffer (buffer);
613 if (NILP (buf)) return Qnil;
614
615 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
616 {
617 proc = Fcdr (Fcar (tail));
618 if (PROCESSP (proc) && EQ (XPROCESS (proc)->buffer, buf))
619 return proc;
620 }
621 return Qnil;
622}
623
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. */
628
629static Lisp_Object
630get_process (name)
631 register Lisp_Object name;
632{
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 ();
644 else
645 obj = name;
646
647 /* Now obj should be either a buffer object or a process object.
648 */
649 if (BUFFERP (obj))
650 {
651 proc = Fget_buffer_process (obj);
652 if (NILP (proc))
653 error ("Buffer %s has no process", XSTRING (XBUFFER (obj)->name)->data);
654 }
655 else
656 {
657 CHECK_PROCESS (obj);
658 proc = obj;
659 }
660 return proc;
661}
662
663DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
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)
668 register Lisp_Object process;
669{
670 process = get_process (process);
671 XPROCESS (process)->raw_status_low = Qnil;
672 XPROCESS (process)->raw_status_high = Qnil;
673 if (NETCONN_P (process))
674 {
675 XPROCESS (process)->status = Fcons (Qexit, Fcons (make_number (0), Qnil));
676 XSETINT (XPROCESS (process)->tick, ++process_tick);
677 }
678 else if (XINT (XPROCESS (process)->infd) >= 0)
679 {
680 Fkill_process (process, Qnil);
681 /* Do this now, since remove_process will make sigchld_handler do nothing. */
682 XPROCESS (process)->status
683 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
684 XSETINT (XPROCESS (process)->tick, ++process_tick);
685 status_notify ();
686 }
687 remove_process (process);
688 return Qnil;
689}
690\f
691DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
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.
699listen -- for a network stream server that is listening.
700closed -- for a network stream connection that is closed.
701connect -- when waiting for a non-blocking connection to complete.
702failed -- when a non-blocking connection has failed.
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)
707 register Lisp_Object process;
708{
709 register struct Lisp_Process *p;
710 register Lisp_Object status;
711
712 if (STRINGP (process))
713 process = Fget_process (process);
714 else
715 process = get_process (process);
716
717 if (NILP (process))
718 return process;
719
720 p = XPROCESS (process);
721 if (!NILP (p->raw_status_low))
722 update_status (p);
723 status = p->status;
724 if (CONSP (status))
725 status = XCAR (status);
726 if (NETCONN1_P (p))
727 {
728 if (EQ (status, Qexit))
729 status = Qclosed;
730 else if (EQ (p->command, Qt))
731 status = Qstop;
732 else if (EQ (status, Qrun))
733 status = Qopen;
734 }
735 return status;
736}
737
738DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
739 1, 1, 0,
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)
743 register Lisp_Object process;
744{
745 CHECK_PROCESS (process);
746 if (!NILP (XPROCESS (process)->raw_status_low))
747 update_status (XPROCESS (process));
748 if (CONSP (XPROCESS (process)->status))
749 return XCAR (XCDR (XPROCESS (process)->status));
750 return make_number (0);
751}
752
753DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
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)
758 register Lisp_Object process;
759{
760 CHECK_PROCESS (process);
761 return XPROCESS (process)->pid;
762}
763
764DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
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)
769 register Lisp_Object process;
770{
771 CHECK_PROCESS (process);
772 return XPROCESS (process)->name;
773}
774
775DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
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)
781 register Lisp_Object process;
782{
783 CHECK_PROCESS (process);
784 return XPROCESS (process)->command;
785}
786
787DEFUN ("process-tty-name", Fprocess_tty_name, Sprocess_tty_name, 1, 1, 0,
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)
792 register Lisp_Object process;
793{
794 CHECK_PROCESS (process);
795 return XPROCESS (process)->tty_name;
796}
797
798DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
799 2, 2, 0,
800 doc: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil). */)
801 (process, buffer)
802 register Lisp_Object process, buffer;
803{
804 struct Lisp_Process *p;
805
806 CHECK_PROCESS (process);
807 if (!NILP (buffer))
808 CHECK_BUFFER (buffer);
809 p = XPROCESS (process);
810 p->buffer = buffer;
811 if (NETCONN1_P (p))
812 p->childp = Fplist_put (p->childp, QCbuffer, buffer);
813 return buffer;
814}
815
816DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
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)
821 register Lisp_Object process;
822{
823 CHECK_PROCESS (process);
824 return XPROCESS (process)->buffer;
825}
826
827DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
828 1, 1, 0,
829 doc: /* Return the marker for the end of the last output from PROCESS. */)
830 (process)
831 register Lisp_Object process;
832{
833 CHECK_PROCESS (process);
834 return XPROCESS (process)->mark;
835}
836
837DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
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)
846 register Lisp_Object process, filter;
847{
848 struct Lisp_Process *p;
849
850 CHECK_PROCESS (process);
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)
862 {
863 if (EQ (filter, Qt) && !EQ (p->status, Qlisten))
864 {
865 FD_CLR (XINT (p->infd), &input_wait_mask);
866 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask);
867 }
868 else if (EQ (p->filter, Qt)
869 && !EQ (p->command, Qt)) /* Network process not stopped. */
870 {
871 FD_SET (XINT (p->infd), &input_wait_mask);
872 FD_SET (XINT (p->infd), &non_keyboard_wait_mask);
873 }
874 }
875
876 p->filter = filter;
877 if (NETCONN1_P (p))
878 p->childp = Fplist_put (p->childp, QCfilter, filter);
879 return filter;
880}
881
882DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
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)
887 register Lisp_Object process;
888{
889 CHECK_PROCESS (process);
890 return XPROCESS (process)->filter;
891}
892
893DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
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)
899 register Lisp_Object process, sentinel;
900{
901 CHECK_PROCESS (process);
902 XPROCESS (process)->sentinel = sentinel;
903 return sentinel;
904}
905
906DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
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)
911 register Lisp_Object process;
912{
913 CHECK_PROCESS (process);
914 return XPROCESS (process)->sentinel;
915}
916
917DEFUN ("set-process-window-size", Fset_process_window_size,
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)
921 register Lisp_Object process, height, width;
922{
923 CHECK_PROCESS (process);
924 CHECK_NATNUM (height);
925 CHECK_NATNUM (width);
926
927 if (XINT (XPROCESS (process)->infd) < 0
928 || set_window_size (XINT (XPROCESS (process)->infd),
929 XINT (height), XINT (width)) <= 0)
930 return Qnil;
931 else
932 return Qt;
933}
934
935DEFUN ("set-process-inherit-coding-system-flag",
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)
953 register Lisp_Object process, flag;
954{
955 CHECK_PROCESS (process);
956 XPROCESS (process)->inherit_coding_system_flag = flag;
957 return flag;
958}
959
960DEFUN ("process-inherit-coding-system-flag",
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)
968 register Lisp_Object process;
969{
970 CHECK_PROCESS (process);
971 return XPROCESS (process)->inherit_coding_system_flag;
972}
973
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;
982{
983 CHECK_PROCESS (process);
984 XPROCESS (process)->kill_without_query = Fnull (flag);
985 return flag;
986}
987
988DEFUN ("process-query-on-exit-flag",
989 Fprocess_query_on_exit_flag, Sprocess_query_on_exit_flag,
990 1, 1, 0,
991 doc: /* Return the current value of query on exit flag for PROCESS. */)
992 (process)
993 register Lisp_Object process;
994{
995 CHECK_PROCESS (process);
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);
1032}
1033
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,
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)
1041 Lisp_Object process;
1042{
1043 return XPROCESS (process)->type;
1044}
1045#endif
1046\f
1047Lisp_Object
1048list_processes_1 (query_only)
1049 Lisp_Object query_only;
1050{
1051 register Lisp_Object tail, tem;
1052 Lisp_Object proc, minspace, tem1;
1053 register struct Lisp_Process *p;
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 }
1097
1098 XSETFASTINT (minspace, 1);
1099
1100 set_buffer_internal (XBUFFER (Vstandard_output));
1101 Fbuffer_disable_undo (Vstandard_output);
1102
1103 current_buffer->truncate_lines = Qt;
1104
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);
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;
1133 if (!NILP (query_only) && !NILP (p->kill_without_query))
1134 continue;
1135
1136 Finsert (1, &p->name);
1137 Findent_to (i_status, minspace);
1138
1139 if (!NILP (p->raw_status_low))
1140 update_status (p);
1141 symbol = p->status;
1142 if (CONSP (p->status))
1143 symbol = XCAR (p->status);
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)
1152 write_string (sys_errlist [XINT (tem)], -1);
1153 else
1154#endif
1155 Fprinc (symbol, Qnil);
1156 }
1157 else if (NETCONN1_P (p))
1158 {
1159 if (EQ (symbol, Qexit))
1160 write_string ("closed", -1);
1161 else if (EQ (p->command, Qt))
1162 write_string ("stopped", -1);
1163 else if (EQ (symbol, Qrun))
1164 write_string ("open", -1);
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 {
1177 sprintf (tembuf, " %d", (int) XFASTINT (tem));
1178 write_string (tembuf, -1);
1179 }
1180 }
1181
1182 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
1183 remove_process (proc);
1184
1185 Findent_to (i_buffer, minspace);
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
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 }
1199
1200 Findent_to (i_command, minspace);
1201
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",
1208 (DATAGRAM_CHAN_P (XINT (p->infd)) ? "datagram" : "stream"),
1209 XSTRING (port)->data);
1210 insert_string (tembuf);
1211 }
1212 else if (NETCONN1_P (p))
1213 {
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",
1224 (DATAGRAM_CHAN_P (XINT (p->infd)) ? "datagram" : "stream"),
1225 XSTRING (host)->data);
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
1246DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 1, "P",
1247 doc: /* Display a list of all processes.
1248If optional argument QUERY-ONLY is non-nil, only processes with
1249the query-on-exit flag set will be listed.
1250Any process listed as exited or signaled is actually eliminated
1251after the listing is made. */)
1252 (query_only)
1253 Lisp_Object query_only;
1254{
1255 internal_with_output_to_temp_buffer ("*Process List*",
1256 list_processes_1, query_only);
1257 return Qnil;
1258}
1259
1260DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
1261 doc: /* Return a list of all processes. */)
1262 ()
1263{
1264 return Fmapcar (Qcdr, Vprocess_alist);
1265}
1266\f
1267/* Starting asynchronous inferior processes. */
1268
1269static Lisp_Object start_process_unwind ();
1270
1271DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
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.
1280Remaining arguments are strings to give program as arguments.
1281
1282usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1283 (nargs, args)
1284 int nargs;
1285 register Lisp_Object *args;
1286{
1287 Lisp_Object buffer, name, program, proc, current_dir, tem;
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;
1295 int count = specpdl_ptr - specpdl;
1296
1297 buffer = args[1];
1298 if (!NILP (buffer))
1299 buffer = Fget_buffer_create (buffer);
1300
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
1317 current_dir
1318 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir),
1319 Qnil);
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
1327 name = args[0];
1328 CHECK_STRING (name);
1329
1330 program = args[2];
1331
1332 CHECK_STRING (program);
1333
1334 proc = make_process (name);
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);
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
1348 /* Make the process marker point into the process buffer (if any). */
1349 if (!NILP (buffer))
1350 set_marker_both (XPROCESS (proc)->mark, buffer,
1351 BUF_ZV (XBUFFER (buffer)),
1352 BUF_ZV_BYTE (XBUFFER (buffer)));
1353
1354 {
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
1359 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1360 Lisp_Object coding_systems = Qt;
1361 Lisp_Object val, *args2;
1362 struct gcpro gcpro1, gcpro2;
1363
1364 val = Vcoding_system_for_read;
1365 if (NILP (val))
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];
1370 GCPRO2 (proc, current_dir);
1371 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1372 UNGCPRO;
1373 if (CONSP (coding_systems))
1374 val = XCAR (coding_systems);
1375 else if (CONSP (Vdefault_process_coding_system))
1376 val = XCAR (Vdefault_process_coding_system);
1377 }
1378 XPROCESS (proc)->decode_coding_system = val;
1379
1380 val = Vcoding_system_for_write;
1381 if (NILP (val))
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];
1388 GCPRO2 (proc, current_dir);
1389 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1390 UNGCPRO;
1391 }
1392 if (CONSP (coding_systems))
1393 val = XCDR (coding_systems);
1394 else if (CONSP (Vdefault_process_coding_system))
1395 val = XCDR (Vdefault_process_coding_system);
1396 }
1397 XPROCESS (proc)->encode_coding_system = val;
1398 }
1399
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];
1407 CHECK_STRING (tem);
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];
1415 CHECK_STRING (tem);
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);
1433 openp (Vexec_path, program, Vexec_suffixes, &tem, make_number (X_OK));
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];
1458 CHECK_STRING (tem);
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
1467 XPROCESS (proc)->decoding_buf = make_uninit_string (0);
1468 XPROCESS (proc)->decoding_carryover = make_number (0);
1469 XPROCESS (proc)->encoding_buf = make_uninit_string (0);
1470 XPROCESS (proc)->encoding_carryover = make_number (0);
1471
1472 XPROCESS (proc)->inherit_coding_system_flag
1473 = (NILP (buffer) || !inherit_process_coding_system
1474 ? Qnil : Qt);
1475
1476 create_process (proc, (char **) new_argv, current_dir);
1477
1478 return unbind_to (count, proc);
1479}
1480
1481/* This function is the unwind_protect form for Fstart_process. If
1482 PROC doesn't have its pid set, then we know someone has signaled
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{
1489 if (!PROCESSP (proc))
1490 abort ();
1491
1492 /* Was PROC started successfully? */
1493 if (XINT (XPROCESS (proc)->pid) <= 0)
1494 remove_process (proc);
1495
1496 return Qnil;
1497}
1498
1499void
1500create_process_1 (timer)
1501 struct atimer *timer;
1502{
1503 /* Nothing to do. */
1504}
1505
1506
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. */
1527void
1528create_process (process, new_argv, current_dir)
1529 Lisp_Object process;
1530 char **new_argv;
1531 Lisp_Object current_dir;
1532{
1533 int pid, inchannel, outchannel;
1534 int sv[2];
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 */
1544#if 0
1545#ifdef SIGCHLD
1546 SIGTYPE (*sigchld)();
1547#endif
1548#endif /* 0 */
1549#endif /* !POSIX_SIGNALS */
1550 /* Use volatile to protect variables from being clobbered by longjmp. */
1551 volatile int forkin, forkout;
1552 volatile int pty_flag = 0;
1553#ifndef USE_CRT_DLL
1554 extern char **environ;
1555#endif
1556
1557 inchannel = outchannel = -1;
1558
1559#ifdef HAVE_PTYS
1560 if (!NILP (Vprocess_connection_type))
1561 outchannel = inchannel = allocate_pty ();
1562
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). */
1571 forkout = forkin = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
1572#else
1573 forkout = forkin = emacs_open (pty_name, O_RDWR, 0);
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 {
1593 int tem;
1594 tem = pipe (sv);
1595 if (tem < 0)
1596 report_file_error ("Creating pipe", Qnil);
1597 inchannel = sv[0];
1598 forkout = sv[1];
1599 tem = pipe (sv);
1600 if (tem < 0)
1601 {
1602 emacs_close (inchannel);
1603 emacs_close (forkout);
1604 report_file_error ("Creating pipe", Qnil);
1605 }
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);
1628 fcntl (outchannel, F_SETFL, O_NONBLOCK);
1629#else
1630#ifdef O_NDELAY
1631 fcntl (inchannel, F_SETFL, O_NDELAY);
1632 fcntl (outchannel, F_SETFL, O_NDELAY);
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;
1639 XSETINT (XPROCESS (process)->infd, inchannel);
1640 XSETINT (XPROCESS (process)->outfd, outchannel);
1641 /* Record the tty descriptor used in the subprocess. */
1642 if (forkin < 0)
1643 XPROCESS (process)->subtty = Qnil;
1644 else
1645 XSETFASTINT (XPROCESS (process)->subtty, forkin);
1646 XPROCESS (process)->pty_flag = (pty_flag ? Qt : Qnil);
1647 XPROCESS (process)->status = Qrun;
1648 if (!proc_decode_coding_system[inchannel])
1649 proc_decode_coding_system[inchannel]
1650 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
1651 setup_coding_system (XPROCESS (process)->decode_coding_system,
1652 proc_decode_coding_system[inchannel]);
1653 if (!proc_encode_coding_system[outchannel])
1654 proc_encode_coding_system[outchannel]
1655 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
1656 setup_coding_system (XPROCESS (process)->encode_coding_system,
1657 proc_encode_coding_system[outchannel]);
1658
1659 /* Delay interrupts until we have a chance to store
1660 the new fork's pid in its process structure */
1661#ifdef POSIX_SIGNALS
1662 sigemptyset (&blocked);
1663#ifdef SIGCHLD
1664 sigaddset (&blocked, SIGCHLD);
1665#endif
1666#ifdef HAVE_WORKING_VFORK
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
1676#endif /* HAVE_WORKING_VFORK */
1677 sigprocmask (SIG_BLOCK, &blocked, &procmask);
1678#else /* !POSIX_SIGNALS */
1679#ifdef SIGCHLD
1680#ifdef BSD4_1
1681 sighold (SIGCHLD);
1682#else /* not BSD4_1 */
1683#if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
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 */
1693#endif /* !POSIX_SIGNALS */
1694
1695 FD_SET (inchannel, &input_wait_mask);
1696 FD_SET (inchannel, &non_keyboard_wait_mask);
1697 if (inchannel > max_process_desc)
1698 max_process_desc = inchannel;
1699
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
1708 BLOCK_INPUT;
1709
1710 {
1711 /* child_setup must clobber environ on systems with true vfork.
1712 Protect it from permanent change. */
1713 char **save_environ = environ;
1714
1715 current_dir = ENCODE_FILE (current_dir);
1716
1717#ifndef WINDOWSNT
1718 pid = vfork ();
1719 if (pid == 0)
1720#endif /* not WINDOWSNT */
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
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 ();
1738 /* Make the pty's terminal the controlling terminal. */
1739 if (pty_flag)
1740 {
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);
1745#endif
1746 }
1747#else /* not HAVE_SETSID */
1748#ifdef USG
1749 /* It's very important to call setpgrp here and no time
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 */
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)
1762 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
1763 }
1764#else
1765#if defined (NTTYDISC) && defined (TIOCSETD)
1766 if (pty_flag && xforkin >= 0)
1767 {
1768 /* Use new line discipline. */
1769 int ldisc = NTTYDISC;
1770 ioctl (xforkin, TIOCSETD, &ldisc);
1771 }
1772#endif
1773#endif
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. */
1781 int j = emacs_open ("/dev/tty", O_RDWR, 0);
1782 ioctl (j, TIOCNOTTY, 0);
1783 emacs_close (j);
1784#ifndef USG
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. */
1788#ifdef HAVE_SETPGID
1789 setpgid (0, 0);
1790#else
1791 setpgrp (0, 0);
1792#endif
1793#endif
1794 }
1795#endif /* TIOCNOTTY */
1796
1797#if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
1798/*** There is a suggestion that this ought to be a
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. */
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 {
1808#ifdef SET_CHILD_PTY_PGRP
1809 int pgrp = getpid ();
1810#endif
1811
1812 /* I wonder if emacs_close (emacs_open (pty_name, ...))
1813 would work? */
1814 if (xforkin >= 0)
1815 emacs_close (xforkin);
1816 xforkout = xforkin = emacs_open (pty_name, O_RDWR, 0);
1817
1818 if (xforkin < 0)
1819 {
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);
1823 _exit (1);
1824 }
1825
1826#ifdef SET_CHILD_PTY_PGRP
1827 ioctl (xforkin, TIOCSPGRP, &pgrp);
1828 ioctl (xforkout, TIOCSPGRP, &pgrp);
1829#endif
1830 }
1831#endif /* not UNIPLUS and not RTU and not DONT_REOPEN_PTY */
1832
1833#ifdef SETUP_SLAVE_PTY
1834 if (pty_flag)
1835 {
1836 SETUP_SLAVE_PTY;
1837 }
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
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 */
1854#ifdef SIGCHLD
1855#ifdef BSD4_1
1856 sigrelse (SIGCHLD);
1857#else /* not BSD4_1 */
1858#if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
1859 sigsetmask (SIGEMPTYMASK);
1860#else /* ordinary USG */
1861#if 0
1862 signal (SIGCHLD, sigchld);
1863#endif
1864#endif /* ordinary USG */
1865#endif /* not BSD4_1 */
1866#endif /* SIGCHLD */
1867#endif /* !POSIX_SIGNALS */
1868
1869 if (pty_flag)
1870 child_setup_tty (xforkout);
1871#ifdef WINDOWSNT
1872 pid = child_setup (xforkin, xforkout, xforkout,
1873 new_argv, 1, current_dir);
1874#else /* not WINDOWSNT */
1875 child_setup (xforkin, xforkout, xforkout,
1876 new_argv, 1, current_dir);
1877#endif /* not WINDOWSNT */
1878 }
1879 environ = save_environ;
1880 }
1881
1882 UNBLOCK_INPUT;
1883
1884 /* This runs in the Emacs process. */
1885 if (pid < 0)
1886 {
1887 if (forkin >= 0)
1888 emacs_close (forkin);
1889 if (forkin != forkout && forkout >= 0)
1890 emacs_close (forkout);
1891 }
1892 else
1893 {
1894 /* vfork succeeded. */
1895 XSETFASTINT (XPROCESS (process)->pid, pid);
1896
1897#ifdef WINDOWSNT
1898 register_child (pid, inchannel);
1899#endif /* WINDOWSNT */
1900
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. */
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
1920 if (forkin != forkout && forkout >= 0)
1921 emacs_close (forkout);
1922
1923#ifdef HAVE_PTYS
1924 if (pty_flag)
1925 XPROCESS (process)->tty_name = build_string (pty_name);
1926 else
1927#endif
1928 XPROCESS (process)->tty_name = Qnil;
1929 }
1930
1931 /* Restore the signal state whether vfork succeeded or not.
1932 (We will signal an error, below, if it failed.) */
1933#ifdef POSIX_SIGNALS
1934#ifdef HAVE_WORKING_VFORK
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
1941#endif /* HAVE_WORKING_VFORK */
1942 /* Stop blocking signals in the parent. */
1943 sigprocmask (SIG_SETMASK, &procmask, 0);
1944#else /* !POSIX_SIGNALS */
1945#ifdef SIGCHLD
1946#ifdef BSD4_1
1947 sigrelse (SIGCHLD);
1948#else /* not BSD4_1 */
1949#if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
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 */
1962#endif /* !POSIX_SIGNALS */
1963
1964 /* Now generate the error if vfork failed. */
1965 if (pid < 0)
1966 report_file_error ("Doing vfork", Qnil);
1967}
1968#endif /* not VMS */
1969
1970\f
1971#ifdef HAVE_SOCKETS
1972
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 {
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)
2004 break;
2005 return make_unibyte_string (sockun->sun_path, i);
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 {
2094 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2095 cp = XSTRING (address)->data;
2096 for (i = 0; i < sizeof (sockun->sun_path) && *cp; i++)
2097 sockun->sun_path[i] = *cp++;
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
2127 channel = XINT (XPROCESS (process)->infd);
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
2147 channel = XINT (XPROCESS (process)->infd);
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;
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 *) XSTRING (SYMBOL_NAME (opt))->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 *) XSTRING (SYMBOL_NAME (val))->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.
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.
2370reuseaddr=BOOL -- Allow reusing a recently used address.
2371
2372usage: (set-network-process-options PROCESS &rest OPTIONS) */)
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);
2382 if (nargs > 1 && XINT (XPROCESS (process)->infd) >= 0)
2383 {
2384 opts = Flist (nargs, args);
2385 set_socket_options (XINT (XPROCESS (process)->infd), opts, 0);
2386 }
2387 return process;
2388}
2389\f
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
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
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
2411In Emacs, network connections are represented by process objects, so
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
2438:type TYPE -- TYPE is the type of connection. The default (nil) is a
2439stream type connection, `datagram' creates a datagram type connection.
2440
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
2470:options OPTIONS -- Set the specified options for the network process.
2471See `set-network-process-options' for details.
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
2522usage: (make-network-process &rest ARGS) */)
2523 (nargs, args)
2524 int nargs;
2525 Lisp_Object *args;
2526{
2527 Lisp_Object proc;
2528 Lisp_Object contact;
2529 struct Lisp_Process *p;
2530#ifdef HAVE_GETADDRINFO
2531 struct addrinfo ai, *res, *lres;
2532 struct addrinfo hints;
2533 char *portstring, portbuf[128];
2534#else /* HAVE_GETADDRINFO */
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;
2544#endif /* HAVE_GETADDRINFO */
2545 struct sockaddr_in address_in;
2546#ifdef HAVE_LOCAL_SOCKETS
2547 struct sockaddr_un address_un;
2548#endif
2549 int port;
2550 int ret = 0;
2551 int xerrno = 0;
2552 int s = -1, outch, inch;
2553 struct gcpro gcpro1;
2554 int retry = 0;
2555 int count = specpdl_ptr - specpdl;
2556 int count1;
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;
2563 int socktype;
2564 int family = -1;
2565
2566 if (nargs == 0)
2567 return Qnil;
2568
2569 /* Save arguments for process-contact and clone-process. */
2570 contact = Flist (nargs, args);
2571 GCPRO1 (contact);
2572
2573#ifdef WINDOWSNT
2574 /* Ensure socket support is loaded if available. */
2575 init_winsock (TRUE);
2576#endif
2577
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;
2585#endif
2586 else
2587 error ("Unsupported connection type");
2588
2589 /* :server BOOL */
2590 tem = Fplist_get (contact, QCserver);
2591 if (!NILP (tem))
2592 {
2593 /* Don't support network sockets when non-blocking mode is
2594 not available, since a blocked Emacs is not useful. */
2595#if defined(TERM) || (!defined(O_NONBLOCK) && !defined(O_NDELAY))
2596 error ("Network servers not supported");
2597#else
2598 is_server = 1;
2599#endif
2600 }
2601
2602 /* Make QCaddress an alias for :local (server) or :remote (client). */
2603 QCaddress = is_server ? QClocal : QCremote;
2604
2605 /* :wait BOOL */
2606 if (!is_server && socktype == SOCK_STREAM
2607 && (tem = Fplist_get (contact, QCnowait), !NILP (tem)))
2608 {
2609#ifndef NON_BLOCKING_CONNECT
2610 error ("Non-blocking connect not supported");
2611#else
2612 is_non_blocking_client = 1;
2613#endif
2614 }
2615
2616 name = Fplist_get (contact, QCname);
2617 buffer = Fplist_get (contact, QCbuffer);
2618 filter = Fplist_get (contact, QCfilter);
2619 sentinel = Fplist_get (contact, QCsentinel);
2620
2621 CHECK_STRING (name);
2622
2623#ifdef TERM
2624 /* Let's handle TERM before things get complicated ... */
2625 host = Fplist_get (contact, QChost);
2626 CHECK_STRING (host);
2627
2628 service = Fplist_get (contact, QCservice);
2629 if (INTEGERP (service))
2630 port = htons ((unsigned short) XINT (service));
2631 else
2632 {
2633 struct servent *svc_info;
2634 CHECK_STRING (service);
2635 svc_info = getservbyname (XSTRING (service)->data, "tcp");
2636 if (svc_info == 0)
2637 error ("Unknown service: %s", XSTRING (service)->data);
2638 port = svc_info->s_port;
2639 }
2640
2641 s = connect_server (0);
2642 if (s < 0)
2643 report_file_error ("error creating socket", Fcons (name, Qnil));
2644 send_command (s, C_PORT, 0, "%s:%d", XSTRING (host)->data, ntohs (port));
2645 send_command (s, C_DUMB, 1, 0);
2646
2647#else /* not TERM */
2648
2649 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
2650 ai.ai_socktype = socktype;
2651 ai.ai_protocol = 0;
2652 ai.ai_next = NULL;
2653 res = &ai;
2654
2655 /* :local ADDRESS or :remote ADDRESS */
2656 address = Fplist_get (contact, QCaddress);
2657 if (!NILP (address))
2658 {
2659 host = service = Qnil;
2660
2661 if (!(ai.ai_addrlen = get_lisp_to_sockaddr_size (address, &family)))
2662 error ("Malformed :address");
2663 ai.ai_family = family;
2664 ai.ai_addr = alloca (ai.ai_addrlen);
2665 conv_lisp_to_sockaddr (family, address, ai.ai_addr, ai.ai_addrlen);
2666 goto open_socket;
2667 }
2668
2669 /* :family FAMILY -- nil (for Inet), local, or integer. */
2670 tem = Fplist_get (contact, QCfamily);
2671 if (INTEGERP (tem))
2672 family = XINT (tem);
2673 else
2674 {
2675 if (NILP (tem))
2676 family = AF_INET;
2677#ifdef HAVE_LOCAL_SOCKETS
2678 else if (EQ (tem, Qlocal))
2679 family = AF_LOCAL;
2680#endif
2681 }
2682 if (family < 0)
2683 error ("Unknown address family");
2684 ai.ai_family = family;
2685
2686 /* :service SERVICE -- string, integer (port number), or t (random port). */
2687 service = Fplist_get (contact, QCservice);
2688
2689#ifdef HAVE_LOCAL_SOCKETS
2690 if (family == AF_LOCAL)
2691 {
2692 /* Host is not used. */
2693 host = Qnil;
2694 CHECK_STRING (service);
2695 bzero (&address_un, sizeof address_un);
2696 address_un.sun_family = AF_LOCAL;
2697 strncpy (address_un.sun_path, XSTRING (service)->data, sizeof address_un.sun_path);
2698 ai.ai_addr = (struct sockaddr *) &address_un;
2699 ai.ai_addrlen = sizeof address_un;
2700 goto open_socket;
2701 }
2702#endif
2703
2704 /* :host HOST -- hostname, ip address, or 'local for localhost. */
2705 host = Fplist_get (contact, QChost);
2706 if (!NILP (host))
2707 {
2708 if (EQ (host, Qlocal))
2709 host = build_string ("localhost");
2710 CHECK_STRING (host);
2711 }
2712
2713 /* Slow down polling to every ten seconds.
2714 Some kernels have a bug which causes retrying connect to fail
2715 after a connect. Polling can interfere with gethostbyname too. */
2716#ifdef POLL_FOR_INPUT
2717 if (socktype == SOCK_STREAM)
2718 {
2719 record_unwind_protect (unwind_stop_other_atimers, Qnil);
2720 bind_polling_period (10);
2721 }
2722#endif
2723
2724#ifdef HAVE_GETADDRINFO
2725 /* If we have a host, use getaddrinfo to resolve both host and service.
2726 Otherwise, use getservbyname to lookup the service. */
2727 if (!NILP (host))
2728 {
2729
2730 /* SERVICE can either be a string or int.
2731 Convert to a C string for later use by getaddrinfo. */
2732 if (EQ (service, Qt))
2733 portstring = "0";
2734 else if (INTEGERP (service))
2735 {
2736 sprintf (portbuf, "%ld", (long) XINT (service));
2737 portstring = portbuf;
2738 }
2739 else
2740 {
2741 CHECK_STRING (service);
2742 portstring = XSTRING (service)->data;
2743 }
2744
2745 immediate_quit = 1;
2746 QUIT;
2747 memset (&hints, 0, sizeof (hints));
2748 hints.ai_flags = 0;
2749 hints.ai_family = NILP (Fplist_member (contact, QCfamily)) ? AF_UNSPEC : family;
2750 hints.ai_socktype = socktype;
2751 hints.ai_protocol = 0;
2752 ret = getaddrinfo (XSTRING (host)->data, portstring, &hints, &res);
2753 if (ret)
2754#ifdef HAVE_GAI_STRERROR
2755 error ("%s/%s %s", XSTRING (host)->data, portstring, gai_strerror(ret));
2756#else
2757 error ("%s/%s getaddrinfo error %d", XSTRING (host)->data, portstring, ret);
2758#endif
2759 immediate_quit = 0;
2760
2761 goto open_socket;
2762 }
2763#endif /* HAVE_GETADDRINFO */
2764
2765 /* We end up here if getaddrinfo is not defined, or in case no hostname
2766 has been specified (e.g. for a local server process). */
2767
2768 if (EQ (service, Qt))
2769 port = 0;
2770 else if (INTEGERP (service))
2771 port = htons ((unsigned short) XINT (service));
2772 else
2773 {
2774 struct servent *svc_info;
2775 CHECK_STRING (service);
2776 svc_info = getservbyname (XSTRING (service)->data,
2777 (socktype == SOCK_DGRAM ? "udp" : "tcp"));
2778 if (svc_info == 0)
2779 error ("Unknown service: %s", XSTRING (service)->data);
2780 port = svc_info->s_port;
2781 }
2782
2783 bzero (&address_in, sizeof address_in);
2784 address_in.sin_family = family;
2785 address_in.sin_addr.s_addr = INADDR_ANY;
2786 address_in.sin_port = port;
2787
2788#ifndef HAVE_GETADDRINFO
2789 if (!NILP (host))
2790 {
2791 struct hostent *host_info_ptr;
2792
2793 /* gethostbyname may fail with TRY_AGAIN, but we don't honour that,
2794 as it may `hang' emacs for a very long time. */
2795 immediate_quit = 1;
2796 QUIT;
2797 host_info_ptr = gethostbyname (XSTRING (host)->data);
2798 immediate_quit = 0;
2799
2800 if (host_info_ptr)
2801 {
2802 bcopy (host_info_ptr->h_addr, (char *) &address_in.sin_addr,
2803 host_info_ptr->h_length);
2804 family = host_info_ptr->h_addrtype;
2805 address_in.sin_family = family;
2806 }
2807 else
2808 /* Attempt to interpret host as numeric inet address */
2809 {
2810 IN_ADDR numeric_addr;
2811 numeric_addr = inet_addr ((char *) XSTRING (host)->data);
2812 if (NUMERIC_ADDR_ERROR)
2813 error ("Unknown host \"%s\"", XSTRING (host)->data);
2814
2815 bcopy ((char *)&numeric_addr, (char *) &address_in.sin_addr,
2816 sizeof (address_in.sin_addr));
2817 }
2818
2819 }
2820#endif /* not HAVE_GETADDRINFO */
2821
2822 ai.ai_family = family;
2823 ai.ai_addr = (struct sockaddr *) &address_in;
2824 ai.ai_addrlen = sizeof address_in;
2825
2826 open_socket:
2827
2828 /* Kernel bugs (on Ultrix at least) cause lossage (not just EINTR)
2829 when connect is interrupted. So let's not let it get interrupted.
2830 Note we do not turn off polling, because polling is only used
2831 when not interrupt_input, and thus not normally used on the systems
2832 which have this bug. On systems which use polling, there's no way
2833 to quit if polling is turned off. */
2834 if (interrupt_input
2835 && !is_server && socktype == SOCK_STREAM)
2836 {
2837 /* Comment from KFS: The original open-network-stream code
2838 didn't unwind protect this, but it seems like the proper
2839 thing to do. In any case, I don't see how it could harm to
2840 do this -- and it makes cleanup (using unbind_to) easier. */
2841 record_unwind_protect (unwind_request_sigio, Qnil);
2842 unrequest_sigio ();
2843 }
2844
2845 /* Do this in case we never enter the for-loop below. */
2846 count1 = specpdl_ptr - specpdl;
2847 s = -1;
2848
2849 for (lres = res; lres; lres = lres->ai_next)
2850 {
2851 s = socket (lres->ai_family, lres->ai_socktype, lres->ai_protocol);
2852 if (s < 0)
2853 {
2854 xerrno = errno;
2855 continue;
2856 }
2857
2858#ifdef DATAGRAM_SOCKETS
2859 if (!is_server && socktype == SOCK_DGRAM)
2860 break;
2861#endif /* DATAGRAM_SOCKETS */
2862
2863#ifdef NON_BLOCKING_CONNECT
2864 if (is_non_blocking_client)
2865 {
2866#ifdef O_NONBLOCK
2867 ret = fcntl (s, F_SETFL, O_NONBLOCK);
2868#else
2869 ret = fcntl (s, F_SETFL, O_NDELAY);
2870#endif
2871 if (ret < 0)
2872 {
2873 xerrno = errno;
2874 emacs_close (s);
2875 s = -1;
2876 continue;
2877 }
2878 }
2879#endif
2880
2881 /* Make us close S if quit. */
2882 record_unwind_protect (close_file_unwind, make_number (s));
2883
2884 if (is_server)
2885 {
2886 /* Configure as a server socket. */
2887#ifdef HAVE_LOCAL_SOCKETS
2888 if (family != AF_LOCAL)
2889#endif
2890 {
2891 int optval = 1;
2892 if (setsockopt (s, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof optval))
2893 report_file_error ("Cannot set reuse option on server socket.", Qnil);
2894 }
2895
2896 if (bind (s, lres->ai_addr, lres->ai_addrlen))
2897 report_file_error ("Cannot bind server socket", Qnil);
2898
2899#ifdef HAVE_GETSOCKNAME
2900 if (EQ (service, Qt))
2901 {
2902 struct sockaddr_in sa1;
2903 int len1 = sizeof (sa1);
2904 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
2905 {
2906 ((struct sockaddr_in *)(lres->ai_addr))->sin_port = sa1.sin_port;
2907 service = make_number (sa1.sin_port);
2908 contact = Fplist_put (contact, QCservice, service);
2909 }
2910 }
2911#endif
2912
2913 if (socktype == SOCK_STREAM && listen (s, 5))
2914 report_file_error ("Cannot listen on server socket", Qnil);
2915
2916 break;
2917 }
2918
2919 retry_connect:
2920
2921 immediate_quit = 1;
2922 QUIT;
2923
2924 /* This turns off all alarm-based interrupts; the
2925 bind_polling_period call above doesn't always turn all the
2926 short-interval ones off, especially if interrupt_input is
2927 set.
2928
2929 It'd be nice to be able to control the connect timeout
2930 though. Would non-blocking connect calls be portable?
2931
2932 This used to be conditioned by HAVE_GETADDRINFO. Why? */
2933
2934 turn_on_atimers (0);
2935
2936 ret = connect (s, lres->ai_addr, lres->ai_addrlen);
2937 xerrno = errno;
2938
2939 turn_on_atimers (1);
2940
2941 if (ret == 0 || xerrno == EISCONN)
2942 {
2943 /* The unwind-protect will be discarded afterwards.
2944 Likewise for immediate_quit. */
2945 break;
2946 }
2947
2948#ifdef NON_BLOCKING_CONNECT
2949#ifdef EINPROGRESS
2950 if (is_non_blocking_client && xerrno == EINPROGRESS)
2951 break;
2952#else
2953#ifdef EWOULDBLOCK
2954 if (is_non_blocking_client && xerrno == EWOULDBLOCK)
2955 break;
2956#endif
2957#endif
2958#endif
2959
2960 immediate_quit = 0;
2961
2962 if (xerrno == EINTR)
2963 goto retry_connect;
2964 if (xerrno == EADDRINUSE && retry < 20)
2965 {
2966 /* A delay here is needed on some FreeBSD systems,
2967 and it is harmless, since this retrying takes time anyway
2968 and should be infrequent. */
2969 Fsleep_for (make_number (1), Qnil);
2970 retry++;
2971 goto retry_connect;
2972 }
2973
2974 /* Discard the unwind protect closing S. */
2975 specpdl_ptr = specpdl + count1;
2976 emacs_close (s);
2977 s = -1;
2978 }
2979
2980 if (s >= 0)
2981 {
2982#ifdef DATAGRAM_SOCKETS
2983 if (socktype == SOCK_DGRAM)
2984 {
2985 if (datagram_address[s].sa)
2986 abort ();
2987 datagram_address[s].sa = (struct sockaddr *) xmalloc (lres->ai_addrlen);
2988 datagram_address[s].len = lres->ai_addrlen;
2989 if (is_server)
2990 {
2991 Lisp_Object remote;
2992 bzero (datagram_address[s].sa, lres->ai_addrlen);
2993 if (remote = Fplist_get (contact, QCremote), !NILP (remote))
2994 {
2995 int rfamily, rlen;
2996 rlen = get_lisp_to_sockaddr_size (remote, &rfamily);
2997 if (rfamily == lres->ai_family && rlen == lres->ai_addrlen)
2998 conv_lisp_to_sockaddr (rfamily, remote,
2999 datagram_address[s].sa, rlen);
3000 }
3001 }
3002 else
3003 bcopy (lres->ai_addr, datagram_address[s].sa, lres->ai_addrlen);
3004 }
3005#endif
3006 contact = Fplist_put (contact, QCaddress,
3007 conv_sockaddr_to_lisp (lres->ai_addr, lres->ai_addrlen));
3008 }
3009
3010#ifdef HAVE_GETADDRINFO
3011 if (res != &ai)
3012 freeaddrinfo (res);
3013#endif
3014
3015 immediate_quit = 0;
3016
3017 /* Discard the unwind protect for closing S, if any. */
3018 specpdl_ptr = specpdl + count1;
3019
3020 /* Unwind bind_polling_period and request_sigio. */
3021 unbind_to (count, Qnil);
3022
3023 if (s < 0)
3024 {
3025 /* If non-blocking got this far - and failed - assume non-blocking is
3026 not supported after all. This is probably a wrong assumption, but
3027 the normal blocking calls to open-network-stream handles this error
3028 better. */
3029 if (is_non_blocking_client)
3030 return Qnil;
3031
3032 errno = xerrno;
3033 if (is_server)
3034 report_file_error ("make server process failed", contact);
3035 else
3036 report_file_error ("make client process failed", contact);
3037 }
3038
3039 tem = Fplist_get (contact, QCoptions);
3040 if (!NILP (tem))
3041 set_socket_options (s, tem, 1);
3042
3043#endif /* not TERM */
3044
3045 inch = s;
3046 outch = s;
3047
3048 if (!NILP (buffer))
3049 buffer = Fget_buffer_create (buffer);
3050 proc = make_process (name);
3051
3052 chan_process[inch] = proc;
3053
3054#ifdef O_NONBLOCK
3055 fcntl (inch, F_SETFL, O_NONBLOCK);
3056#else
3057#ifdef O_NDELAY
3058 fcntl (inch, F_SETFL, O_NDELAY);
3059#endif
3060#endif
3061
3062 p = XPROCESS (proc);
3063
3064 p->childp = contact;
3065 p->buffer = buffer;
3066 p->sentinel = sentinel;
3067 p->filter = filter;
3068 p->log = Fplist_get (contact, QClog);
3069 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
3070 p->kill_without_query = Qt;
3071 if ((tem = Fplist_get (contact, QCstop), !NILP (tem)))
3072 p->command = Qt;
3073 p->pid = Qnil;
3074 XSETINT (p->infd, inch);
3075 XSETINT (p->outfd, outch);
3076 if (is_server && socktype == SOCK_STREAM)
3077 p->status = Qlisten;
3078
3079#ifdef NON_BLOCKING_CONNECT
3080 if (is_non_blocking_client)
3081 {
3082 /* We may get here if connect did succeed immediately. However,
3083 in that case, we still need to signal this like a non-blocking
3084 connection. */
3085 p->status = Qconnect;
3086 if (!FD_ISSET (inch, &connect_wait_mask))
3087 {
3088 FD_SET (inch, &connect_wait_mask);
3089 num_pending_connects++;
3090 }
3091 }
3092 else
3093#endif
3094 /* A server may have a client filter setting of Qt, but it must
3095 still listen for incoming connects unless it is stopped. */
3096 if ((!EQ (p->filter, Qt) && !EQ (p->command, Qt))
3097 || (EQ (p->status, Qlisten) && NILP (p->command)))
3098 {
3099 FD_SET (inch, &input_wait_mask);
3100 FD_SET (inch, &non_keyboard_wait_mask);
3101 }
3102
3103 if (inch > max_process_desc)
3104 max_process_desc = inch;
3105
3106 tem = Fplist_member (contact, QCcoding);
3107 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
3108 tem = Qnil; /* No error message (too late!). */
3109
3110 {
3111 /* Setup coding systems for communicating with the network stream. */
3112 struct gcpro gcpro1;
3113 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3114 Lisp_Object coding_systems = Qt;
3115 Lisp_Object args[5], val;
3116
3117 if (!NILP (tem))
3118 val = XCAR (XCDR (tem));
3119 else if (!NILP (Vcoding_system_for_read))
3120 val = Vcoding_system_for_read;
3121 else if ((!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters))
3122 || (NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters)))
3123 /* We dare not decode end-of-line format by setting VAL to
3124 Qraw_text, because the existing Emacs Lisp libraries
3125 assume that they receive bare code including a sequene of
3126 CR LF. */
3127 val = Qnil;
3128 else
3129 {
3130 args[0] = Qopen_network_stream, args[1] = name,
3131 args[2] = buffer, args[3] = host, args[4] = service;
3132 GCPRO1 (proc);
3133 coding_systems = Ffind_operation_coding_system (5, args);
3134 UNGCPRO;
3135 if (CONSP (coding_systems))
3136 val = XCAR (coding_systems);
3137 else if (CONSP (Vdefault_process_coding_system))
3138 val = XCAR (Vdefault_process_coding_system);
3139 else
3140 val = Qnil;
3141 }
3142 p->decode_coding_system = val;
3143
3144 if (!NILP (tem))
3145 val = XCAR (XCDR (tem));
3146 else if (!NILP (Vcoding_system_for_write))
3147 val = Vcoding_system_for_write;
3148 else if (NILP (current_buffer->enable_multibyte_characters))
3149 val = Qnil;
3150 else
3151 {
3152 if (EQ (coding_systems, Qt))
3153 {
3154 args[0] = Qopen_network_stream, args[1] = name,
3155 args[2] = buffer, args[3] = host, args[4] = service;
3156 GCPRO1 (proc);
3157 coding_systems = Ffind_operation_coding_system (5, args);
3158 UNGCPRO;
3159 }
3160 if (CONSP (coding_systems))
3161 val = XCDR (coding_systems);
3162 else if (CONSP (Vdefault_process_coding_system))
3163 val = XCDR (Vdefault_process_coding_system);
3164 else
3165 val = Qnil;
3166 }
3167 p->encode_coding_system = val;
3168 }
3169
3170 if (!proc_decode_coding_system[inch])
3171 proc_decode_coding_system[inch]
3172 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
3173 setup_coding_system (p->decode_coding_system,
3174 proc_decode_coding_system[inch]);
3175 if (!proc_encode_coding_system[outch])
3176 proc_encode_coding_system[outch]
3177 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
3178 setup_coding_system (p->encode_coding_system,
3179 proc_encode_coding_system[outch]);
3180
3181 p->decoding_buf = make_uninit_string (0);
3182 p->decoding_carryover = make_number (0);
3183 p->encoding_buf = make_uninit_string (0);
3184 p->encoding_carryover = make_number (0);
3185
3186 p->inherit_coding_system_flag
3187 = (!NILP (tem) || NILP (buffer) || !inherit_process_coding_system
3188 ? Qnil : Qt);
3189
3190 UNGCPRO;
3191 return proc;
3192}
3193#endif /* HAVE_SOCKETS */
3194
3195void
3196deactivate_process (proc)
3197 Lisp_Object proc;
3198{
3199 register int inchannel, outchannel;
3200 register struct Lisp_Process *p = XPROCESS (proc);
3201
3202 inchannel = XINT (p->infd);
3203 outchannel = XINT (p->outfd);
3204
3205 if (inchannel >= 0)
3206 {
3207 /* Beware SIGCHLD hereabouts. */
3208 flush_pending_output (inchannel);
3209#ifdef VMS
3210 {
3211 VMS_PROC_STUFF *get_vms_process_pointer (), *vs;
3212 sys$dassgn (outchannel);
3213 vs = get_vms_process_pointer (p->pid);
3214 if (vs)
3215 give_back_vms_process_stuff (vs);
3216 }
3217#else
3218 emacs_close (inchannel);
3219 if (outchannel >= 0 && outchannel != inchannel)
3220 emacs_close (outchannel);
3221#endif
3222
3223 XSETINT (p->infd, -1);
3224 XSETINT (p->outfd, -1);
3225#ifdef DATAGRAM_SOCKETS
3226 if (DATAGRAM_CHAN_P (inchannel))
3227 {
3228 xfree (datagram_address[inchannel].sa);
3229 datagram_address[inchannel].sa = 0;
3230 datagram_address[inchannel].len = 0;
3231 }
3232#endif
3233 chan_process[inchannel] = Qnil;
3234 FD_CLR (inchannel, &input_wait_mask);
3235 FD_CLR (inchannel, &non_keyboard_wait_mask);
3236 if (FD_ISSET (inchannel, &connect_wait_mask))
3237 {
3238 FD_CLR (inchannel, &connect_wait_mask);
3239 if (--num_pending_connects < 0)
3240 abort ();
3241 }
3242 if (inchannel == max_process_desc)
3243 {
3244 int i;
3245 /* We just closed the highest-numbered process input descriptor,
3246 so recompute the highest-numbered one now. */
3247 max_process_desc = 0;
3248 for (i = 0; i < MAXDESC; i++)
3249 if (!NILP (chan_process[i]))
3250 max_process_desc = i;
3251 }
3252 }
3253}
3254
3255/* Close all descriptors currently in use for communication
3256 with subprocess. This is used in a newly-forked subprocess
3257 to get rid of irrelevant descriptors. */
3258
3259void
3260close_process_descs ()
3261{
3262#ifndef WINDOWSNT
3263 int i;
3264 for (i = 0; i < MAXDESC; i++)
3265 {
3266 Lisp_Object process;
3267 process = chan_process[i];
3268 if (!NILP (process))
3269 {
3270 int in = XINT (XPROCESS (process)->infd);
3271 int out = XINT (XPROCESS (process)->outfd);
3272 if (in >= 0)
3273 emacs_close (in);
3274 if (out >= 0 && in != out)
3275 emacs_close (out);
3276 }
3277 }
3278#endif
3279}
3280\f
3281DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
3282 0, 3, 0,
3283 doc: /* Allow any pending output from subprocesses to be read by Emacs.
3284It is read into the process' buffers or given to their filter functions.
3285Non-nil arg PROCESS means do not return until some output has been received
3286from PROCESS.
3287Non-nil second arg TIMEOUT and third arg TIMEOUT-MSECS are number of
3288seconds and microseconds to wait; return after that much time whether
3289or not there is input.
3290Return non-nil iff we received any output before the timeout expired. */)
3291 (process, timeout, timeout_msecs)
3292 register Lisp_Object process, timeout, timeout_msecs;
3293{
3294 int seconds;
3295 int useconds;
3296
3297 if (! NILP (process))
3298 CHECK_PROCESS (process);
3299
3300 if (! NILP (timeout_msecs))
3301 {
3302 CHECK_NUMBER (timeout_msecs);
3303 useconds = XINT (timeout_msecs);
3304 if (!INTEGERP (timeout))
3305 XSETINT (timeout, 0);
3306
3307 {
3308 int carry = useconds / 1000000;
3309
3310 XSETINT (timeout, XINT (timeout) + carry);
3311 useconds -= carry * 1000000;
3312
3313 /* I think this clause is necessary because C doesn't
3314 guarantee a particular rounding direction for negative
3315 integers. */
3316 if (useconds < 0)
3317 {
3318 XSETINT (timeout, XINT (timeout) - 1);
3319 useconds += 1000000;
3320 }
3321 }
3322 }
3323 else
3324 useconds = 0;
3325
3326 if (! NILP (timeout))
3327 {
3328 CHECK_NUMBER (timeout);
3329 seconds = XINT (timeout);
3330 if (seconds < 0 || (seconds == 0 && useconds == 0))
3331 seconds = -1;
3332 }
3333 else
3334 {
3335 if (NILP (process))
3336 seconds = -1;
3337 else
3338 seconds = 0;
3339 }
3340
3341 if (NILP (process))
3342 XSETFASTINT (process, 0);
3343
3344 return
3345 (wait_reading_process_input (seconds, useconds, process, 0)
3346 ? Qt : Qnil);
3347}
3348
3349/* Accept a connection for server process SERVER on CHANNEL. */
3350
3351static int connect_counter = 0;
3352
3353static void
3354server_accept_connection (server, channel)
3355 Lisp_Object server;
3356 int channel;
3357{
3358 Lisp_Object proc, caller, name, buffer;
3359 Lisp_Object contact, host, service;
3360 struct Lisp_Process *ps= XPROCESS (server);
3361 struct Lisp_Process *p;
3362 int s;
3363 union u_sockaddr {
3364 struct sockaddr sa;
3365 struct sockaddr_in in;
3366#ifdef HAVE_LOCAL_SOCKETS
3367 struct sockaddr_un un;
3368#endif
3369 } saddr;
3370 int len = sizeof saddr;
3371
3372 s = accept (channel, &saddr.sa, &len);
3373
3374 if (s < 0)
3375 {
3376 int code = errno;
3377
3378 if (code == EAGAIN)
3379 return;
3380#ifdef EWOULDBLOCK
3381 if (code == EWOULDBLOCK)
3382 return;
3383#endif
3384
3385 if (!NILP (ps->log))
3386 call3 (ps->log, server, Qnil,
3387 concat3 (build_string ("accept failed with code"),
3388 Fnumber_to_string (make_number (code)),
3389 build_string ("\n")));
3390 return;
3391 }
3392
3393 connect_counter++;
3394
3395 /* Setup a new process to handle the connection. */
3396
3397 /* Generate a unique identification of the caller, and build contact
3398 information for this process. */
3399 host = Qt;
3400 service = Qnil;
3401 switch (saddr.sa.sa_family)
3402 {
3403 case AF_INET:
3404 {
3405 Lisp_Object args[5];
3406 unsigned char *ip = (unsigned char *)&saddr.in.sin_addr.s_addr;
3407 args[0] = build_string ("%d.%d.%d.%d");
3408 args[1] = make_number (*ip++);
3409 args[2] = make_number (*ip++);
3410 args[3] = make_number (*ip++);
3411 args[4] = make_number (*ip++);
3412 host = Fformat (5, args);
3413 service = make_number (ntohs (saddr.in.sin_port));
3414
3415 args[0] = build_string (" <%s:%d>");
3416 args[1] = host;
3417 args[2] = service;
3418 caller = Fformat (3, args);
3419 }
3420 break;
3421
3422#ifdef HAVE_LOCAL_SOCKETS
3423 case AF_LOCAL:
3424#endif
3425 default:
3426 caller = Fnumber_to_string (make_number (connect_counter));
3427 caller = concat3 (build_string (" <*"), caller, build_string ("*>"));
3428 break;
3429 }
3430
3431 /* Create a new buffer name for this process if it doesn't have a
3432 filter. The new buffer name is based on the buffer name or
3433 process name of the server process concatenated with the caller
3434 identification. */
3435
3436 if (!NILP (ps->filter) && !EQ (ps->filter, Qt))
3437 buffer = Qnil;
3438 else
3439 {
3440 buffer = ps->buffer;
3441 if (!NILP (buffer))
3442 buffer = Fbuffer_name (buffer);
3443 else
3444 buffer = ps->name;
3445 if (!NILP (buffer))
3446 {
3447 buffer = concat2 (buffer, caller);
3448 buffer = Fget_buffer_create (buffer);
3449 }
3450 }
3451
3452 /* Generate a unique name for the new server process. Combine the
3453 server process name with the caller identification. */
3454
3455 name = concat2 (ps->name, caller);
3456 proc = make_process (name);
3457
3458 chan_process[s] = proc;
3459
3460#ifdef O_NONBLOCK
3461 fcntl (s, F_SETFL, O_NONBLOCK);
3462#else
3463#ifdef O_NDELAY
3464 fcntl (s, F_SETFL, O_NDELAY);
3465#endif
3466#endif
3467
3468 p = XPROCESS (proc);
3469
3470 /* Build new contact information for this setup. */
3471 contact = Fcopy_sequence (ps->childp);
3472 contact = Fplist_put (contact, QCserver, Qnil);
3473 contact = Fplist_put (contact, QChost, host);
3474 if (!NILP (service))
3475 contact = Fplist_put (contact, QCservice, service);
3476 contact = Fplist_put (contact, QCremote,
3477 conv_sockaddr_to_lisp (&saddr.sa, len));
3478#ifdef HAVE_GETSOCKNAME
3479 len = sizeof saddr;
3480 if (getsockname (channel, &saddr.sa, &len) == 0)
3481 contact = Fplist_put (contact, QClocal,
3482 conv_sockaddr_to_lisp (&saddr.sa, len));
3483#endif
3484
3485 p->childp = contact;
3486 p->buffer = buffer;
3487 p->sentinel = ps->sentinel;
3488 p->filter = ps->filter;
3489 p->command = Qnil;
3490 p->pid = Qnil;
3491 XSETINT (p->infd, s);
3492 XSETINT (p->outfd, s);
3493 p->status = Qrun;
3494
3495 /* Client processes for accepted connections are not stopped initially. */
3496 if (!EQ (p->filter, Qt))
3497 {
3498 FD_SET (s, &input_wait_mask);
3499 FD_SET (s, &non_keyboard_wait_mask);
3500 }
3501
3502 if (s > max_process_desc)
3503 max_process_desc = s;
3504
3505 /* Setup coding system for new process based on server process.
3506 This seems to be the proper thing to do, as the coding system
3507 of the new process should reflect the settings at the time the
3508 server socket was opened; not the current settings. */
3509
3510 p->decode_coding_system = ps->decode_coding_system;
3511 p->encode_coding_system = ps->encode_coding_system;
3512
3513 if (!proc_decode_coding_system[s])
3514 proc_decode_coding_system[s]
3515 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
3516 setup_coding_system (p->decode_coding_system,
3517 proc_decode_coding_system[s]);
3518 if (!proc_encode_coding_system[s])
3519 proc_encode_coding_system[s]
3520 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
3521 setup_coding_system (p->encode_coding_system,
3522 proc_encode_coding_system[s]);
3523
3524 p->decoding_buf = make_uninit_string (0);
3525 p->decoding_carryover = make_number (0);
3526 p->encoding_buf = make_uninit_string (0);
3527 p->encoding_carryover = make_number (0);
3528
3529 p->inherit_coding_system_flag
3530 = (NILP (buffer) ? Qnil : ps->inherit_coding_system_flag);
3531
3532 if (!NILP (ps->log))
3533 call3 (ps->log, server, proc,
3534 concat3 (build_string ("accept from "),
3535 (STRINGP (host) ? host : build_string ("-")),
3536 build_string ("\n")));
3537
3538 if (!NILP (p->sentinel))
3539 exec_sentinel (proc,
3540 concat3 (build_string ("open from "),
3541 (STRINGP (host) ? host : build_string ("-")),
3542 build_string ("\n")));
3543}
3544
3545/* This variable is different from waiting_for_input in keyboard.c.
3546 It is used to communicate to a lisp process-filter/sentinel (via the
3547 function Fwaiting_for_user_input_p below) whether emacs was waiting
3548 for user-input when that process-filter was called.
3549 waiting_for_input cannot be used as that is by definition 0 when
3550 lisp code is being evalled.
3551 This is also used in record_asynch_buffer_change.
3552 For that purpose, this must be 0
3553 when not inside wait_reading_process_input. */
3554static int waiting_for_user_input_p;
3555
3556/* This is here so breakpoints can be put on it. */
3557static void
3558wait_reading_process_input_1 ()
3559{
3560}
3561
3562/* Read and dispose of subprocess output while waiting for timeout to
3563 elapse and/or keyboard input to be available.
3564
3565 TIME_LIMIT is:
3566 timeout in seconds, or
3567 zero for no limit, or
3568 -1 means gobble data immediately available but don't wait for any.
3569
3570 MICROSECS is:
3571 an additional duration to wait, measured in microseconds.
3572 If this is nonzero and time_limit is 0, then the timeout
3573 consists of MICROSECS only.
3574
3575 READ_KBD is a lisp value:
3576 0 to ignore keyboard input, or
3577 1 to return when input is available, or
3578 -1 meaning caller will actually read the input, so don't throw to
3579 the quit handler, or
3580 a cons cell, meaning wait until its car is non-nil
3581 (and gobble terminal input into the buffer if any arrives), or
3582 a process object, meaning wait until something arrives from that
3583 process. The return value is true iff we read some input from
3584 that process.
3585
3586 DO_DISPLAY != 0 means redisplay should be done to show subprocess
3587 output that arrives.
3588
3589 If READ_KBD is a pointer to a struct Lisp_Process, then the
3590 function returns true iff we received input from that process
3591 before the timeout elapsed.
3592 Otherwise, return true iff we received input from any process. */
3593
3594int
3595wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
3596 int time_limit, microsecs;
3597 Lisp_Object read_kbd;
3598 int do_display;
3599{
3600 register int channel, nfds;
3601 static SELECT_TYPE Available;
3602 static SELECT_TYPE Connecting;
3603 int check_connect, no_avail;
3604 int xerrno;
3605 Lisp_Object proc;
3606 EMACS_TIME timeout, end_time;
3607 int wait_channel = -1;
3608 struct Lisp_Process *wait_proc = 0;
3609 int got_some_input = 0;
3610 /* Either nil or a cons cell, the car of which is of interest and
3611 may be changed outside of this routine. */
3612 Lisp_Object wait_for_cell = Qnil;
3613
3614 FD_ZERO (&Available);
3615 FD_ZERO (&Connecting);
3616
3617 /* If read_kbd is a process to watch, set wait_proc and wait_channel
3618 accordingly. */
3619 if (PROCESSP (read_kbd))
3620 {
3621 wait_proc = XPROCESS (read_kbd);
3622 wait_channel = XINT (wait_proc->infd);
3623 XSETFASTINT (read_kbd, 0);
3624 }
3625
3626 /* If waiting for non-nil in a cell, record where. */
3627 if (CONSP (read_kbd))
3628 {
3629 wait_for_cell = read_kbd;
3630 XSETFASTINT (read_kbd, 0);
3631 }
3632
3633 waiting_for_user_input_p = XINT (read_kbd);
3634
3635 /* Since we may need to wait several times,
3636 compute the absolute time to return at. */
3637 if (time_limit || microsecs)
3638 {
3639 EMACS_GET_TIME (end_time);
3640 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
3641 EMACS_ADD_TIME (end_time, end_time, timeout);
3642 }
3643#ifdef hpux
3644 /* AlainF 5-Jul-1996
3645 HP-UX 10.10 seem to have problems with signals coming in
3646 Causes "poll: interrupted system call" messages when Emacs is run
3647 in an X window
3648 Turn off periodic alarms (in case they are in use) */
3649 turn_on_atimers (0);
3650#endif
3651
3652 while (1)
3653 {
3654 int timeout_reduced_for_timers = 0;
3655
3656 /* If calling from keyboard input, do not quit
3657 since we want to return C-g as an input character.
3658 Otherwise, do pending quit if requested. */
3659 if (XINT (read_kbd) >= 0)
3660 QUIT;
3661
3662 /* Exit now if the cell we're waiting for became non-nil. */
3663 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
3664 break;
3665
3666 /* Compute time from now till when time limit is up */
3667 /* Exit if already run out */
3668 if (time_limit == -1)
3669 {
3670 /* -1 specified for timeout means
3671 gobble output available now
3672 but don't wait at all. */
3673
3674 EMACS_SET_SECS_USECS (timeout, 0, 0);
3675 }
3676 else if (time_limit || microsecs)
3677 {
3678 EMACS_GET_TIME (timeout);
3679 EMACS_SUB_TIME (timeout, end_time, timeout);
3680 if (EMACS_TIME_NEG_P (timeout))
3681 break;
3682 }
3683 else
3684 {
3685 EMACS_SET_SECS_USECS (timeout, 100000, 0);
3686 }
3687
3688 /* Normally we run timers here.
3689 But not if wait_for_cell; in those cases,
3690 the wait is supposed to be short,
3691 and those callers cannot handle running arbitrary Lisp code here. */
3692 if (NILP (wait_for_cell))
3693 {
3694 EMACS_TIME timer_delay;
3695
3696 do
3697 {
3698 int old_timers_run = timers_run;
3699 struct buffer *old_buffer = current_buffer;
3700
3701 timer_delay = timer_check (1);
3702
3703 /* If a timer has run, this might have changed buffers
3704 an alike. Make read_key_sequence aware of that. */
3705 if (timers_run != old_timers_run
3706 && old_buffer != current_buffer
3707 && waiting_for_user_input_p == -1)
3708 record_asynch_buffer_change ();
3709
3710 if (timers_run != old_timers_run && do_display)
3711 /* We must retry, since a timer may have requeued itself
3712 and that could alter the time_delay. */
3713 redisplay_preserve_echo_area (9);
3714 else
3715 break;
3716 }
3717 while (!detect_input_pending ());
3718
3719 /* If there is unread keyboard input, also return. */
3720 if (XINT (read_kbd) != 0
3721 && requeued_events_pending_p ())
3722 break;
3723
3724 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
3725 {
3726 EMACS_TIME difference;
3727 EMACS_SUB_TIME (difference, timer_delay, timeout);
3728 if (EMACS_TIME_NEG_P (difference))
3729 {
3730 timeout = timer_delay;
3731 timeout_reduced_for_timers = 1;
3732 }
3733 }
3734 /* If time_limit is -1, we are not going to wait at all. */
3735 else if (time_limit != -1)
3736 {
3737 /* This is so a breakpoint can be put here. */
3738 wait_reading_process_input_1 ();
3739 }
3740 }
3741
3742 /* Cause C-g and alarm signals to take immediate action,
3743 and cause input available signals to zero out timeout.
3744
3745 It is important that we do this before checking for process
3746 activity. If we get a SIGCHLD after the explicit checks for
3747 process activity, timeout is the only way we will know. */
3748 if (XINT (read_kbd) < 0)
3749 set_waiting_for_input (&timeout);
3750
3751 /* If status of something has changed, and no input is
3752 available, notify the user of the change right away. After
3753 this explicit check, we'll let the SIGCHLD handler zap
3754 timeout to get our attention. */
3755 if (update_tick != process_tick && do_display)
3756 {
3757 SELECT_TYPE Atemp, Ctemp;
3758
3759 Atemp = input_wait_mask;
3760#ifdef MAC_OSX
3761 /* On Mac OS X, the SELECT system call always says input is
3762 present (for reading) at stdin, even when none is. This
3763 causes the call to SELECT below to return 1 and
3764 status_notify not to be called. As a result output of
3765 subprocesses are incorrectly discarded. */
3766 FD_CLR (0, &Atemp);
3767#endif
3768 Ctemp = connect_wait_mask;
3769 EMACS_SET_SECS_USECS (timeout, 0, 0);
3770 if ((select (max (max_process_desc, max_keyboard_desc) + 1,
3771 &Atemp,
3772 (num_pending_connects > 0 ? &Ctemp : (SELECT_TYPE *)0),
3773 (SELECT_TYPE *)0, &timeout)
3774 <= 0))
3775 {
3776 /* It's okay for us to do this and then continue with
3777 the loop, since timeout has already been zeroed out. */
3778 clear_waiting_for_input ();
3779 status_notify ();
3780 }
3781 }
3782
3783 /* Don't wait for output from a non-running process. Just
3784 read whatever data has already been received. */
3785 if (wait_proc != 0 && !NILP (wait_proc->raw_status_low))
3786 update_status (wait_proc);
3787 if (wait_proc != 0
3788 && ! EQ (wait_proc->status, Qrun)
3789 && ! EQ (wait_proc->status, Qconnect))
3790 {
3791 int nread, total_nread = 0;
3792
3793 clear_waiting_for_input ();
3794 XSETPROCESS (proc, wait_proc);
3795
3796 /* Read data from the process, until we exhaust it. */
3797 while (XINT (wait_proc->infd) >= 0)
3798 {
3799 nread = read_process_output (proc, XINT (wait_proc->infd));
3800
3801 if (nread == 0)
3802 break;
3803
3804 if (0 < nread)
3805 total_nread += nread;
3806#ifdef EIO
3807 else if (nread == -1 && EIO == errno)
3808 break;
3809#endif
3810#ifdef EAGAIN
3811 else if (nread == -1 && EAGAIN == errno)
3812 break;
3813#endif
3814#ifdef EWOULDBLOCK
3815 else if (nread == -1 && EWOULDBLOCK == errno)
3816 break;
3817#endif
3818 }
3819 if (total_nread > 0 && do_display)
3820 redisplay_preserve_echo_area (10);
3821
3822 break;
3823 }
3824
3825 /* Wait till there is something to do */
3826
3827 if (!NILP (wait_for_cell))
3828 {
3829 Available = non_process_wait_mask;
3830 check_connect = 0;
3831 }
3832 else
3833 {
3834 if (! XINT (read_kbd))
3835 Available = non_keyboard_wait_mask;
3836 else
3837 Available = input_wait_mask;
3838 check_connect = (num_pending_connects > 0);
3839 }
3840
3841 /* If frame size has changed or the window is newly mapped,
3842 redisplay now, before we start to wait. There is a race
3843 condition here; if a SIGIO arrives between now and the select
3844 and indicates that a frame is trashed, the select may block
3845 displaying a trashed screen. */
3846 if (frame_garbaged && do_display)
3847 {
3848 clear_waiting_for_input ();
3849 redisplay_preserve_echo_area (11);
3850 if (XINT (read_kbd) < 0)
3851 set_waiting_for_input (&timeout);
3852 }
3853
3854 no_avail = 0;
3855 if (XINT (read_kbd) && detect_input_pending ())
3856 {
3857 nfds = 0;
3858 no_avail = 1;
3859 }
3860 else
3861 {
3862 if (check_connect)
3863 Connecting = connect_wait_mask;
3864 nfds = select (max (max_process_desc, max_keyboard_desc) + 1,
3865 &Available,
3866 (check_connect ? &Connecting : (SELECT_TYPE *)0),
3867 (SELECT_TYPE *)0, &timeout);
3868 }
3869
3870 xerrno = errno;
3871
3872 /* Make C-g and alarm signals set flags again */
3873 clear_waiting_for_input ();
3874
3875 /* If we woke up due to SIGWINCH, actually change size now. */
3876 do_pending_window_change (0);
3877
3878 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
3879 /* We wanted the full specified time, so return now. */
3880 break;
3881 if (nfds < 0)
3882 {
3883 if (xerrno == EINTR)
3884 no_avail = 1;
3885#ifdef ultrix
3886 /* Ultrix select seems to return ENOMEM when it is
3887 interrupted. Treat it just like EINTR. Bleah. Note
3888 that we want to test for the "ultrix" CPP symbol, not
3889 "__ultrix__"; the latter is only defined under GCC, but
3890 not by DEC's bundled CC. -JimB */
3891 else if (xerrno == ENOMEM)
3892 no_avail = 1;
3893#endif
3894#ifdef ALLIANT
3895 /* This happens for no known reason on ALLIANT.
3896 I am guessing that this is the right response. -- RMS. */
3897 else if (xerrno == EFAULT)
3898 no_avail = 1;
3899#endif
3900 else if (xerrno == EBADF)
3901 {
3902#ifdef AIX
3903 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
3904 the child's closure of the pts gives the parent a SIGHUP, and
3905 the ptc file descriptor is automatically closed,
3906 yielding EBADF here or at select() call above.
3907 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
3908 in m/ibmrt-aix.h), and here we just ignore the select error.
3909 Cleanup occurs c/o status_notify after SIGCLD. */
3910 no_avail = 1; /* Cannot depend on values returned */
3911#else
3912 abort ();
3913#endif
3914 }
3915 else
3916 error ("select error: %s", emacs_strerror (xerrno));
3917 }
3918
3919 if (no_avail)
3920 {
3921 FD_ZERO (&Available);
3922 check_connect = 0;
3923 }
3924
3925#if defined(sun) && !defined(USG5_4)
3926 if (nfds > 0 && keyboard_bit_set (&Available)
3927 && interrupt_input)
3928 /* System sometimes fails to deliver SIGIO.
3929
3930 David J. Mackenzie says that Emacs doesn't compile under
3931 Solaris if this code is enabled, thus the USG5_4 in the CPP
3932 conditional. "I haven't noticed any ill effects so far.
3933 If you find a Solaris expert somewhere, they might know
3934 better." */
3935 kill (getpid (), SIGIO);
3936#endif
3937
3938#if 0 /* When polling is used, interrupt_input is 0,
3939 so get_input_pending should read the input.
3940 So this should not be needed. */
3941 /* If we are using polling for input,
3942 and we see input available, make it get read now.
3943 Otherwise it might not actually get read for a second.
3944 And on hpux, since we turn off polling in wait_reading_process_input,
3945 it might never get read at all if we don't spend much time
3946 outside of wait_reading_process_input. */
3947 if (XINT (read_kbd) && interrupt_input
3948 && keyboard_bit_set (&Available)
3949 && input_polling_used ())
3950 kill (getpid (), SIGALRM);
3951#endif
3952
3953 /* Check for keyboard input */
3954 /* If there is any, return immediately
3955 to give it higher priority than subprocesses */
3956
3957 if (XINT (read_kbd) != 0)
3958 {
3959 int old_timers_run = timers_run;
3960 struct buffer *old_buffer = current_buffer;
3961 int leave = 0;
3962
3963 if (detect_input_pending_run_timers (do_display))
3964 {
3965 swallow_events (do_display);
3966 if (detect_input_pending_run_timers (do_display))
3967 leave = 1;
3968 }
3969
3970 /* If a timer has run, this might have changed buffers
3971 an alike. Make read_key_sequence aware of that. */
3972 if (timers_run != old_timers_run
3973 && waiting_for_user_input_p == -1
3974 && old_buffer != current_buffer)
3975 record_asynch_buffer_change ();
3976
3977 if (leave)
3978 break;
3979 }
3980
3981 /* If there is unread keyboard input, also return. */
3982 if (XINT (read_kbd) != 0
3983 && requeued_events_pending_p ())
3984 break;
3985
3986 /* If we are not checking for keyboard input now,
3987 do process events (but don't run any timers).
3988 This is so that X events will be processed.
3989 Otherwise they may have to wait until polling takes place.
3990 That would causes delays in pasting selections, for example.
3991
3992 (We used to do this only if wait_for_cell.) */
3993 if (XINT (read_kbd) == 0 && detect_input_pending ())
3994 {
3995 swallow_events (do_display);
3996#if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
3997 if (detect_input_pending ())
3998 break;
3999#endif
4000 }
4001
4002 /* Exit now if the cell we're waiting for became non-nil. */
4003 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4004 break;
4005
4006#ifdef SIGIO
4007 /* If we think we have keyboard input waiting, but didn't get SIGIO,
4008 go read it. This can happen with X on BSD after logging out.
4009 In that case, there really is no input and no SIGIO,
4010 but select says there is input. */
4011
4012 if (XINT (read_kbd) && interrupt_input
4013 && keyboard_bit_set (&Available))
4014 kill (getpid (), SIGIO);
4015#endif
4016
4017 if (! wait_proc)
4018 got_some_input |= nfds > 0;
4019
4020 /* If checking input just got us a size-change event from X,
4021 obey it now if we should. */
4022 if (XINT (read_kbd) || ! NILP (wait_for_cell))
4023 do_pending_window_change (0);
4024
4025 /* Check for data from a process. */
4026 if (no_avail || nfds == 0)
4027 continue;
4028
4029 /* Really FIRST_PROC_DESC should be 0 on Unix,
4030 but this is safer in the short run. */
4031 for (channel = 0; channel <= max_process_desc; channel++)
4032 {
4033 if (FD_ISSET (channel, &Available)
4034 && FD_ISSET (channel, &non_keyboard_wait_mask))
4035 {
4036 int nread;
4037
4038 /* If waiting for this channel, arrange to return as
4039 soon as no more input to be processed. No more
4040 waiting. */
4041 if (wait_channel == channel)
4042 {
4043 wait_channel = -1;
4044 time_limit = -1;
4045 got_some_input = 1;
4046 }
4047 proc = chan_process[channel];
4048 if (NILP (proc))
4049 continue;
4050
4051 /* If this is a server stream socket, accept connection. */
4052 if (EQ (XPROCESS (proc)->status, Qlisten))
4053 {
4054 server_accept_connection (proc, channel);
4055 continue;
4056 }
4057
4058 /* Read data from the process, starting with our
4059 buffered-ahead character if we have one. */
4060
4061 nread = read_process_output (proc, channel);
4062 if (nread > 0)
4063 {
4064 /* Since read_process_output can run a filter,
4065 which can call accept-process-output,
4066 don't try to read from any other processes
4067 before doing the select again. */
4068 FD_ZERO (&Available);
4069
4070 if (do_display)
4071 redisplay_preserve_echo_area (12);
4072 }
4073#ifdef EWOULDBLOCK
4074 else if (nread == -1 && errno == EWOULDBLOCK)
4075 ;
4076#endif
4077 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
4078 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
4079#ifdef O_NONBLOCK
4080 else if (nread == -1 && errno == EAGAIN)
4081 ;
4082#else
4083#ifdef O_NDELAY
4084 else if (nread == -1 && errno == EAGAIN)
4085 ;
4086 /* Note that we cannot distinguish between no input
4087 available now and a closed pipe.
4088 With luck, a closed pipe will be accompanied by
4089 subprocess termination and SIGCHLD. */
4090 else if (nread == 0 && !NETCONN_P (proc))
4091 ;
4092#endif /* O_NDELAY */
4093#endif /* O_NONBLOCK */
4094#ifdef HAVE_PTYS
4095 /* On some OSs with ptys, when the process on one end of
4096 a pty exits, the other end gets an error reading with
4097 errno = EIO instead of getting an EOF (0 bytes read).
4098 Therefore, if we get an error reading and errno =
4099 EIO, just continue, because the child process has
4100 exited and should clean itself up soon (e.g. when we
4101 get a SIGCHLD).
4102
4103 However, it has been known to happen that the SIGCHLD
4104 got lost. So raise the signl again just in case.
4105 It can't hurt. */
4106 else if (nread == -1 && errno == EIO)
4107 kill (getpid (), SIGCHLD);
4108#endif /* HAVE_PTYS */
4109 /* If we can detect process termination, don't consider the process
4110 gone just because its pipe is closed. */
4111#ifdef SIGCHLD
4112 else if (nread == 0 && !NETCONN_P (proc))
4113 ;
4114#endif
4115 else
4116 {
4117 /* Preserve status of processes already terminated. */
4118 XSETINT (XPROCESS (proc)->tick, ++process_tick);
4119 deactivate_process (proc);
4120 if (!NILP (XPROCESS (proc)->raw_status_low))
4121 update_status (XPROCESS (proc));
4122 if (EQ (XPROCESS (proc)->status, Qrun))
4123 XPROCESS (proc)->status
4124 = Fcons (Qexit, Fcons (make_number (256), Qnil));
4125 }
4126 }
4127#ifdef NON_BLOCKING_CONNECT
4128 if (check_connect && FD_ISSET (channel, &Connecting))
4129 {
4130 struct Lisp_Process *p;
4131
4132 FD_CLR (channel, &connect_wait_mask);
4133 if (--num_pending_connects < 0)
4134 abort ();
4135
4136 proc = chan_process[channel];
4137 if (NILP (proc))
4138 continue;
4139
4140 p = XPROCESS (proc);
4141
4142#ifdef GNU_LINUX
4143 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
4144 So only use it on systems where it is known to work. */
4145 {
4146 int xlen = sizeof(xerrno);
4147 if (getsockopt(channel, SOL_SOCKET, SO_ERROR, &xerrno, &xlen))
4148 xerrno = errno;
4149 }
4150#else
4151 {
4152 struct sockaddr pname;
4153 int pnamelen = sizeof(pname);
4154
4155 /* If connection failed, getpeername will fail. */
4156 xerrno = 0;
4157 if (getpeername(channel, &pname, &pnamelen) < 0)
4158 {
4159 /* Obtain connect failure code through error slippage. */
4160 char dummy;
4161 xerrno = errno;
4162 if (errno == ENOTCONN && read(channel, &dummy, 1) < 0)
4163 xerrno = errno;
4164 }
4165 }
4166#endif
4167 if (xerrno)
4168 {
4169 XSETINT (p->tick, ++process_tick);
4170 p->status = Fcons (Qfailed, Fcons (make_number (xerrno), Qnil));
4171 deactivate_process (proc);
4172 }
4173 else
4174 {
4175 p->status = Qrun;
4176 /* Execute the sentinel here. If we had relied on
4177 status_notify to do it later, it will read input
4178 from the process before calling the sentinel. */
4179 exec_sentinel (proc, build_string ("open\n"));
4180 if (!EQ (p->filter, Qt) && !EQ (p->command, Qt))
4181 {
4182 FD_SET (XINT (p->infd), &input_wait_mask);
4183 FD_SET (XINT (p->infd), &non_keyboard_wait_mask);
4184 }
4185 }
4186 }
4187#endif /* NON_BLOCKING_CONNECT */
4188 } /* end for each file descriptor */
4189 } /* end while exit conditions not met */
4190
4191 waiting_for_user_input_p = 0;
4192
4193 /* If calling from keyboard input, do not quit
4194 since we want to return C-g as an input character.
4195 Otherwise, do pending quit if requested. */
4196 if (XINT (read_kbd) >= 0)
4197 {
4198 /* Prevent input_pending from remaining set if we quit. */
4199 clear_input_pending ();
4200 QUIT;
4201 }
4202#ifdef hpux
4203 /* AlainF 5-Jul-1996
4204 HP-UX 10.10 seems to have problems with signals coming in
4205 Causes "poll: interrupted system call" messages when Emacs is run
4206 in an X window
4207 Turn periodic alarms back on */
4208 start_polling ();
4209#endif
4210
4211 return got_some_input;
4212}
4213\f
4214/* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
4215
4216static Lisp_Object
4217read_process_output_call (fun_and_args)
4218 Lisp_Object fun_and_args;
4219{
4220 return apply1 (XCAR (fun_and_args), XCDR (fun_and_args));
4221}
4222
4223static Lisp_Object
4224read_process_output_error_handler (error)
4225 Lisp_Object error;
4226{
4227 cmd_error_internal (error, "error in process filter: ");
4228 Vinhibit_quit = Qt;
4229 update_echo_area ();
4230 Fsleep_for (make_number (2), Qnil);
4231 return Qt;
4232}
4233
4234/* Read pending output from the process channel,
4235 starting with our buffered-ahead character if we have one.
4236 Yield number of decoded characters read.
4237
4238 This function reads at most 1024 characters.
4239 If you want to read all available subprocess output,
4240 you must call it repeatedly until it returns zero.
4241
4242 The characters read are decoded according to PROC's coding-system
4243 for decoding. */
4244
4245int
4246read_process_output (proc, channel)
4247 Lisp_Object proc;
4248 register int channel;
4249{
4250 register int nchars, nbytes;
4251 char *chars;
4252 register Lisp_Object outstream;
4253 register struct buffer *old = current_buffer;
4254 register struct Lisp_Process *p = XPROCESS (proc);
4255 register int opoint;
4256 struct coding_system *coding = proc_decode_coding_system[channel];
4257 int carryover = XINT (p->decoding_carryover);
4258 int readmax = 1024;
4259
4260#ifdef VMS
4261 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
4262
4263 vs = get_vms_process_pointer (p->pid);
4264 if (vs)
4265 {
4266 if (!vs->iosb[0])
4267 return (0); /* Really weird if it does this */
4268 if (!(vs->iosb[0] & 1))
4269 return -1; /* I/O error */
4270 }
4271 else
4272 error ("Could not get VMS process pointer");
4273 chars = vs->inputBuffer;
4274 nbytes = clean_vms_buffer (chars, vs->iosb[1]);
4275 if (nbytes <= 0)
4276 {
4277 start_vms_process_read (vs); /* Crank up the next read on the process */
4278 return 1; /* Nothing worth printing, say we got 1 */
4279 }
4280 if (carryover > 0)
4281 {
4282 /* The data carried over in the previous decoding (which are at
4283 the tail of decoding buffer) should be prepended to the new
4284 data read to decode all together. */
4285 chars = (char *) alloca (nbytes + carryover);
4286 bcopy (XSTRING (p->decoding_buf)->data, buf, carryover);
4287 bcopy (vs->inputBuffer, chars + carryover, nbytes);
4288 }
4289#else /* not VMS */
4290
4291#ifdef DATAGRAM_SOCKETS
4292 /* A datagram is one packet; allow at least 1500+ bytes of data
4293 corresponding to the typical Ethernet frame size. */
4294 if (DATAGRAM_CHAN_P (channel))
4295 {
4296 /* carryover = 0; */ /* Does carryover make sense for datagrams? */
4297 readmax += 1024;
4298 }
4299#endif
4300
4301 chars = (char *) alloca (carryover + readmax);
4302 if (carryover)
4303 /* See the comment above. */
4304 bcopy (XSTRING (p->decoding_buf)->data, chars, carryover);
4305
4306#ifdef DATAGRAM_SOCKETS
4307 /* We have a working select, so proc_buffered_char is always -1. */
4308 if (DATAGRAM_CHAN_P (channel))
4309 {
4310 int len = datagram_address[channel].len;
4311 nbytes = recvfrom (channel, chars + carryover, readmax - carryover,
4312 0, datagram_address[channel].sa, &len);
4313 }
4314 else
4315#endif
4316 if (proc_buffered_char[channel] < 0)
4317 nbytes = emacs_read (channel, chars + carryover, readmax - carryover);
4318 else
4319 {
4320 chars[carryover] = proc_buffered_char[channel];
4321 proc_buffered_char[channel] = -1;
4322 nbytes = emacs_read (channel, chars + carryover + 1, readmax - 1 - carryover);
4323 if (nbytes < 0)
4324 nbytes = 1;
4325 else
4326 nbytes = nbytes + 1;
4327 }
4328#endif /* not VMS */
4329
4330 XSETINT (p->decoding_carryover, 0);
4331
4332 /* At this point, NBYTES holds number of bytes just received
4333 (including the one in proc_buffered_char[channel]). */
4334 if (nbytes <= 0)
4335 {
4336 if (nbytes < 0 || coding->mode & CODING_MODE_LAST_BLOCK)
4337 return nbytes;
4338 coding->mode |= CODING_MODE_LAST_BLOCK;
4339 }
4340
4341 /* Now set NBYTES how many bytes we must decode. */
4342 nbytes += carryover;
4343
4344 /* Read and dispose of the process output. */
4345 outstream = p->filter;
4346 if (!NILP (outstream))
4347 {
4348 /* We inhibit quit here instead of just catching it so that
4349 hitting ^G when a filter happens to be running won't screw
4350 it up. */
4351 int count = specpdl_ptr - specpdl;
4352 Lisp_Object odeactivate;
4353 Lisp_Object obuffer, okeymap;
4354 Lisp_Object text;
4355 int outer_running_asynch_code = running_asynch_code;
4356 int waiting = waiting_for_user_input_p;
4357
4358 /* No need to gcpro these, because all we do with them later
4359 is test them for EQness, and none of them should be a string. */
4360 odeactivate = Vdeactivate_mark;
4361 XSETBUFFER (obuffer, current_buffer);
4362 okeymap = current_buffer->keymap;
4363
4364 specbind (Qinhibit_quit, Qt);
4365 specbind (Qlast_nonmenu_event, Qt);
4366
4367 /* In case we get recursively called,
4368 and we already saved the match data nonrecursively,
4369 save the same match data in safely recursive fashion. */
4370 if (outer_running_asynch_code)
4371 {
4372 Lisp_Object tem;
4373 /* Don't clobber the CURRENT match data, either! */
4374 tem = Fmatch_data (Qnil, Qnil);
4375 restore_match_data ();
4376 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
4377 Fset_match_data (tem);
4378 }
4379
4380 /* For speed, if a search happens within this code,
4381 save the match data in a special nonrecursive fashion. */
4382 running_asynch_code = 1;
4383
4384 text = decode_coding_string (make_unibyte_string (chars, nbytes),
4385 coding, 0);
4386 if (NILP (buffer_defaults.enable_multibyte_characters))
4387 /* We had better return unibyte string. */
4388 text = string_make_unibyte (text);
4389
4390 Vlast_coding_system_used = coding->symbol;
4391 /* A new coding system might be found. */
4392 if (!EQ (p->decode_coding_system, coding->symbol))
4393 {
4394 p->decode_coding_system = coding->symbol;
4395
4396 /* Don't call setup_coding_system for
4397 proc_decode_coding_system[channel] here. It is done in
4398 detect_coding called via decode_coding above. */
4399
4400 /* If a coding system for encoding is not yet decided, we set
4401 it as the same as coding-system for decoding.
4402
4403 But, before doing that we must check if
4404 proc_encode_coding_system[p->outfd] surely points to a
4405 valid memory because p->outfd will be changed once EOF is
4406 sent to the process. */
4407 if (NILP (p->encode_coding_system)
4408 && proc_encode_coding_system[XINT (p->outfd)])
4409 {
4410 p->encode_coding_system = coding->symbol;
4411 setup_coding_system (coding->symbol,
4412 proc_encode_coding_system[XINT (p->outfd)]);
4413 }
4414 }
4415
4416 carryover = nbytes - coding->consumed;
4417 bcopy (chars + coding->consumed, XSTRING (p->decoding_buf)->data,
4418 carryover);
4419 XSETINT (p->decoding_carryover, carryover);
4420 nbytes = STRING_BYTES (XSTRING (text));
4421 nchars = XSTRING (text)->size;
4422 if (nbytes > 0)
4423 internal_condition_case_1 (read_process_output_call,
4424 Fcons (outstream,
4425 Fcons (proc, Fcons (text, Qnil))),
4426 !NILP (Vdebug_on_error) ? Qnil : Qerror,
4427 read_process_output_error_handler);
4428
4429 /* If we saved the match data nonrecursively, restore it now. */
4430 restore_match_data ();
4431 running_asynch_code = outer_running_asynch_code;
4432
4433 /* Handling the process output should not deactivate the mark. */
4434 Vdeactivate_mark = odeactivate;
4435
4436 /* Restore waiting_for_user_input_p as it was
4437 when we were called, in case the filter clobbered it. */
4438 waiting_for_user_input_p = waiting;
4439
4440#if 0 /* Call record_asynch_buffer_change unconditionally,
4441 because we might have changed minor modes or other things
4442 that affect key bindings. */
4443 if (! EQ (Fcurrent_buffer (), obuffer)
4444 || ! EQ (current_buffer->keymap, okeymap))
4445#endif
4446 /* But do it only if the caller is actually going to read events.
4447 Otherwise there's no need to make him wake up, and it could
4448 cause trouble (for example it would make Fsit_for return). */
4449 if (waiting_for_user_input_p == -1)
4450 record_asynch_buffer_change ();
4451
4452#ifdef VMS
4453 start_vms_process_read (vs);
4454#endif
4455 unbind_to (count, Qnil);
4456 return nchars;
4457 }
4458
4459 /* If no filter, write into buffer if it isn't dead. */
4460 if (!NILP (p->buffer) && !NILP (XBUFFER (p->buffer)->name))
4461 {
4462 Lisp_Object old_read_only;
4463 int old_begv, old_zv;
4464 int old_begv_byte, old_zv_byte;
4465 Lisp_Object odeactivate;
4466 int before, before_byte;
4467 int opoint_byte;
4468 Lisp_Object text;
4469 struct buffer *b;
4470
4471 odeactivate = Vdeactivate_mark;
4472
4473 Fset_buffer (p->buffer);
4474 opoint = PT;
4475 opoint_byte = PT_BYTE;
4476 old_read_only = current_buffer->read_only;
4477 old_begv = BEGV;
4478 old_zv = ZV;
4479 old_begv_byte = BEGV_BYTE;
4480 old_zv_byte = ZV_BYTE;
4481
4482 current_buffer->read_only = Qnil;
4483
4484 /* Insert new output into buffer
4485 at the current end-of-output marker,
4486 thus preserving logical ordering of input and output. */
4487 if (XMARKER (p->mark)->buffer)
4488 SET_PT_BOTH (clip_to_bounds (BEGV, marker_position (p->mark), ZV),
4489 clip_to_bounds (BEGV_BYTE, marker_byte_position (p->mark),
4490 ZV_BYTE));
4491 else
4492 SET_PT_BOTH (ZV, ZV_BYTE);
4493 before = PT;
4494 before_byte = PT_BYTE;
4495
4496 /* If the output marker is outside of the visible region, save
4497 the restriction and widen. */
4498 if (! (BEGV <= PT && PT <= ZV))
4499 Fwiden ();
4500
4501 text = decode_coding_string (make_unibyte_string (chars, nbytes),
4502 coding, 0);
4503 Vlast_coding_system_used = coding->symbol;
4504 /* A new coding system might be found. See the comment in the
4505 similar code in the previous `if' block. */
4506 if (!EQ (p->decode_coding_system, coding->symbol))
4507 {
4508 p->decode_coding_system = coding->symbol;
4509 if (NILP (p->encode_coding_system)
4510 && proc_encode_coding_system[XINT (p->outfd)])
4511 {
4512 p->encode_coding_system = coding->symbol;
4513 setup_coding_system (coding->symbol,
4514 proc_encode_coding_system[XINT (p->outfd)]);
4515 }
4516 }
4517 carryover = nbytes - coding->consumed;
4518 bcopy (chars + coding->consumed, XSTRING (p->decoding_buf)->data,
4519 carryover);
4520 XSETINT (p->decoding_carryover, carryover);
4521 /* Adjust the multibyteness of TEXT to that of the buffer. */
4522 if (NILP (current_buffer->enable_multibyte_characters)
4523 != ! STRING_MULTIBYTE (text))
4524 text = (STRING_MULTIBYTE (text)
4525 ? Fstring_as_unibyte (text)
4526 : Fstring_as_multibyte (text));
4527 nbytes = STRING_BYTES (XSTRING (text));
4528 nchars = XSTRING (text)->size;
4529 /* Insert before markers in case we are inserting where
4530 the buffer's mark is, and the user's next command is Meta-y. */
4531 insert_from_string_before_markers (text, 0, 0, nchars, nbytes, 0);
4532
4533 /* Make sure the process marker's position is valid when the
4534 process buffer is changed in the signal_after_change above.
4535 W3 is known to do that. */
4536 if (BUFFERP (p->buffer)
4537 && (b = XBUFFER (p->buffer), b != current_buffer))
4538 set_marker_both (p->mark, p->buffer, BUF_PT (b), BUF_PT_BYTE (b));
4539 else
4540 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
4541
4542 update_mode_lines++;
4543
4544 /* Make sure opoint and the old restrictions
4545 float ahead of any new text just as point would. */
4546 if (opoint >= before)
4547 {
4548 opoint += PT - before;
4549 opoint_byte += PT_BYTE - before_byte;
4550 }
4551 if (old_begv > before)
4552 {
4553 old_begv += PT - before;
4554 old_begv_byte += PT_BYTE - before_byte;
4555 }
4556 if (old_zv >= before)
4557 {
4558 old_zv += PT - before;
4559 old_zv_byte += PT_BYTE - before_byte;
4560 }
4561
4562 /* If the restriction isn't what it should be, set it. */
4563 if (old_begv != BEGV || old_zv != ZV)
4564 Fnarrow_to_region (make_number (old_begv), make_number (old_zv));
4565
4566 /* Handling the process output should not deactivate the mark. */
4567 Vdeactivate_mark = odeactivate;
4568
4569 current_buffer->read_only = old_read_only;
4570 SET_PT_BOTH (opoint, opoint_byte);
4571 set_buffer_internal (old);
4572 }
4573#ifdef VMS
4574 start_vms_process_read (vs);
4575#endif
4576 return nbytes;
4577}
4578
4579DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p,
4580 0, 0, 0,
4581 doc: /* Returns non-nil if emacs is waiting for input from the user.
4582This is intended for use by asynchronous process output filters and sentinels. */)
4583 ()
4584{
4585 return (waiting_for_user_input_p ? Qt : Qnil);
4586}
4587\f
4588/* Sending data to subprocess */
4589
4590jmp_buf send_process_frame;
4591Lisp_Object process_sent_to;
4592
4593SIGTYPE
4594send_process_trap ()
4595{
4596#ifdef BSD4_1
4597 sigrelse (SIGPIPE);
4598 sigrelse (SIGALRM);
4599#endif /* BSD4_1 */
4600 longjmp (send_process_frame, 1);
4601}
4602
4603/* Send some data to process PROC.
4604 BUF is the beginning of the data; LEN is the number of characters.
4605 OBJECT is the Lisp object that the data comes from. If OBJECT is
4606 nil or t, it means that the data comes from C string.
4607
4608 If OBJECT is not nil, the data is encoded by PROC's coding-system
4609 for encoding before it is sent.
4610
4611 This function can evaluate Lisp code and can garbage collect. */
4612
4613void
4614send_process (proc, buf, len, object)
4615 volatile Lisp_Object proc;
4616 unsigned char *volatile buf;
4617 volatile int len;
4618 volatile Lisp_Object object;
4619{
4620 /* Use volatile to protect variables from being clobbered by longjmp. */
4621 int rv;
4622 struct coding_system *coding;
4623 struct gcpro gcpro1;
4624
4625 GCPRO1 (object);
4626
4627#ifdef VMS
4628 struct Lisp_Process *p = XPROCESS (proc);
4629 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
4630#endif /* VMS */
4631
4632 if (! NILP (XPROCESS (proc)->raw_status_low))
4633 update_status (XPROCESS (proc));
4634 if (! EQ (XPROCESS (proc)->status, Qrun))
4635 error ("Process %s not running",
4636 XSTRING (XPROCESS (proc)->name)->data);
4637 if (XINT (XPROCESS (proc)->outfd) < 0)
4638 error ("Output file descriptor of %s is closed",
4639 XSTRING (XPROCESS (proc)->name)->data);
4640
4641 coding = proc_encode_coding_system[XINT (XPROCESS (proc)->outfd)];
4642 Vlast_coding_system_used = coding->symbol;
4643
4644 if ((STRINGP (object) && STRING_MULTIBYTE (object))
4645 || (BUFFERP (object)
4646 && !NILP (XBUFFER (object)->enable_multibyte_characters))
4647 || EQ (object, Qt))
4648 {
4649 if (!EQ (coding->symbol, XPROCESS (proc)->encode_coding_system))
4650 /* The coding system for encoding was changed to raw-text
4651 because we sent a unibyte text previously. Now we are
4652 sending a multibyte text, thus we must encode it by the
4653 original coding system specified for the current
4654 process. */
4655 setup_coding_system (XPROCESS (proc)->encode_coding_system, coding);
4656 /* src_multibyte should be set to 1 _after_ a call to
4657 setup_coding_system, since it resets src_multibyte to
4658 zero. */
4659 coding->src_multibyte = 1;
4660 }
4661 else
4662 {
4663 /* For sending a unibyte text, character code conversion should
4664 not take place but EOL conversion should. So, setup raw-text
4665 or one of the subsidiary if we have not yet done it. */
4666 if (coding->type != coding_type_raw_text)
4667 {
4668 if (CODING_REQUIRE_FLUSHING (coding))
4669 {
4670 /* But, before changing the coding, we must flush out data. */
4671 coding->mode |= CODING_MODE_LAST_BLOCK;
4672 send_process (proc, "", 0, Qt);
4673 }
4674 coding->src_multibyte = 0;
4675 setup_raw_text_coding_system (coding);
4676 }
4677 }
4678 coding->dst_multibyte = 0;
4679
4680 if (CODING_REQUIRE_ENCODING (coding))
4681 {
4682 int require = encoding_buffer_size (coding, len);
4683 int from_byte = -1, from = -1, to = -1;
4684 unsigned char *temp_buf = NULL;
4685
4686 if (BUFFERP (object))
4687 {
4688 from_byte = BUF_PTR_BYTE_POS (XBUFFER (object), buf);
4689 from = buf_bytepos_to_charpos (XBUFFER (object), from_byte);
4690 to = buf_bytepos_to_charpos (XBUFFER (object), from_byte + len);
4691 }
4692 else if (STRINGP (object))
4693 {
4694 from_byte = buf - XSTRING (object)->data;
4695 from = string_byte_to_char (object, from_byte);
4696 to = string_byte_to_char (object, from_byte + len);
4697 }
4698
4699 if (coding->composing != COMPOSITION_DISABLED)
4700 {
4701 if (from_byte >= 0)
4702 coding_save_composition (coding, from, to, object);
4703 else
4704 coding->composing = COMPOSITION_DISABLED;
4705 }
4706
4707 if (STRING_BYTES (XSTRING (XPROCESS (proc)->encoding_buf)) < require)
4708 XPROCESS (proc)->encoding_buf = make_uninit_string (require);
4709
4710 if (from_byte >= 0)
4711 buf = (BUFFERP (object)
4712 ? BUF_BYTE_ADDRESS (XBUFFER (object), from_byte)
4713 : XSTRING (object)->data + from_byte);
4714
4715 object = XPROCESS (proc)->encoding_buf;
4716 encode_coding (coding, (char *) buf, XSTRING (object)->data,
4717 len, STRING_BYTES (XSTRING (object)));
4718 len = coding->produced;
4719 buf = XSTRING (object)->data;
4720 if (temp_buf)
4721 xfree (temp_buf);
4722 }
4723
4724#ifdef VMS
4725 vs = get_vms_process_pointer (p->pid);
4726 if (vs == 0)
4727 error ("Could not find this process: %x", p->pid);
4728 else if (write_to_vms_process (vs, buf, len))
4729 ;
4730#else /* not VMS */
4731
4732 if (pty_max_bytes == 0)
4733 {
4734#if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
4735 pty_max_bytes = fpathconf (XFASTINT (XPROCESS (proc)->outfd),
4736 _PC_MAX_CANON);
4737 if (pty_max_bytes < 0)
4738 pty_max_bytes = 250;
4739#else
4740 pty_max_bytes = 250;
4741#endif
4742 /* Deduct one, to leave space for the eof. */
4743 pty_max_bytes--;
4744 }
4745
4746 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
4747 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
4748 when returning with longjmp despite being declared volatile. */
4749 if (!setjmp (send_process_frame))
4750 {
4751 process_sent_to = proc;
4752 while (len > 0)
4753 {
4754 int this = len;
4755 SIGTYPE (*old_sigpipe)();
4756
4757 /* Decide how much data we can send in one batch.
4758 Long lines need to be split into multiple batches. */
4759 if (!NILP (XPROCESS (proc)->pty_flag))
4760 {
4761 /* Starting this at zero is always correct when not the first
4762 iteration because the previous iteration ended by sending C-d.
4763 It may not be correct for the first iteration
4764 if a partial line was sent in a separate send_process call.
4765 If that proves worth handling, we need to save linepos
4766 in the process object. */
4767 int linepos = 0;
4768 unsigned char *ptr = (unsigned char *) buf;
4769 unsigned char *end = (unsigned char *) buf + len;
4770
4771 /* Scan through this text for a line that is too long. */
4772 while (ptr != end && linepos < pty_max_bytes)
4773 {
4774 if (*ptr == '\n')
4775 linepos = 0;
4776 else
4777 linepos++;
4778 ptr++;
4779 }
4780 /* If we found one, break the line there
4781 and put in a C-d to force the buffer through. */
4782 this = ptr - buf;
4783 }
4784
4785 /* Send this batch, using one or more write calls. */
4786 while (this > 0)
4787 {
4788 int outfd = XINT (XPROCESS (proc)->outfd);
4789 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap);
4790#ifdef DATAGRAM_SOCKETS
4791 if (DATAGRAM_CHAN_P (outfd))
4792 {
4793 rv = sendto (outfd, (char *) buf, this,
4794 0, datagram_address[outfd].sa,
4795 datagram_address[outfd].len);
4796 if (rv < 0 && errno == EMSGSIZE)
4797 report_file_error ("sending datagram", Fcons (proc, Qnil));
4798 }
4799 else
4800#endif
4801 rv = emacs_write (outfd, (char *) buf, this);
4802 signal (SIGPIPE, old_sigpipe);
4803
4804 if (rv < 0)
4805 {
4806 if (0
4807#ifdef EWOULDBLOCK
4808 || errno == EWOULDBLOCK
4809#endif
4810#ifdef EAGAIN
4811 || errno == EAGAIN
4812#endif
4813 )
4814 /* Buffer is full. Wait, accepting input;
4815 that may allow the program
4816 to finish doing output and read more. */
4817 {
4818 Lisp_Object zero;
4819 int offset = 0;
4820
4821#ifdef BROKEN_PTY_READ_AFTER_EAGAIN
4822 /* A gross hack to work around a bug in FreeBSD.
4823 In the following sequence, read(2) returns
4824 bogus data:
4825
4826 write(2) 1022 bytes
4827 write(2) 954 bytes, get EAGAIN
4828 read(2) 1024 bytes in process_read_output
4829 read(2) 11 bytes in process_read_output
4830
4831 That is, read(2) returns more bytes than have
4832 ever been written successfully. The 1033 bytes
4833 read are the 1022 bytes written successfully
4834 after processing (for example with CRs added if
4835 the terminal is set up that way which it is
4836 here). The same bytes will be seen again in a
4837 later read(2), without the CRs. */
4838
4839 if (errno == EAGAIN)
4840 {
4841 int flags = FWRITE;
4842 ioctl (XINT (XPROCESS (proc)->outfd), TIOCFLUSH,
4843 &flags);
4844 }
4845#endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
4846
4847 /* Running filters might relocate buffers or strings.
4848 Arrange to relocate BUF. */
4849 if (BUFFERP (object))
4850 offset = BUF_PTR_BYTE_POS (XBUFFER (object), buf);
4851 else if (STRINGP (object))
4852 offset = buf - XSTRING (object)->data;
4853
4854 XSETFASTINT (zero, 0);
4855#ifdef EMACS_HAS_USECS
4856 wait_reading_process_input (0, 20000, zero, 0);
4857#else
4858 wait_reading_process_input (1, 0, zero, 0);
4859#endif
4860
4861 if (BUFFERP (object))
4862 buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset);
4863 else if (STRINGP (object))
4864 buf = offset + XSTRING (object)->data;
4865
4866 rv = 0;
4867 }
4868 else
4869 /* This is a real error. */
4870 report_file_error ("writing to process", Fcons (proc, Qnil));
4871 }
4872 buf += rv;
4873 len -= rv;
4874 this -= rv;
4875 }
4876
4877 /* If we sent just part of the string, put in an EOF
4878 to force it through, before we send the rest. */
4879 if (len > 0)
4880 Fprocess_send_eof (proc);
4881 }
4882 }
4883#endif /* not VMS */
4884 else
4885 {
4886#ifndef VMS
4887 proc = process_sent_to;
4888#endif
4889 XPROCESS (proc)->raw_status_low = Qnil;
4890 XPROCESS (proc)->raw_status_high = Qnil;
4891 XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
4892 XSETINT (XPROCESS (proc)->tick, ++process_tick);
4893 deactivate_process (proc);
4894#ifdef VMS
4895 error ("Error writing to process %s; closed it",
4896 XSTRING (XPROCESS (proc)->name)->data);
4897#else
4898 error ("SIGPIPE raised on process %s; closed it",
4899 XSTRING (XPROCESS (proc)->name)->data);
4900#endif
4901 }
4902
4903 UNGCPRO;
4904}
4905
4906DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
4907 3, 3, 0,
4908 doc: /* Send current contents of region as input to PROCESS.
4909PROCESS may be a process, a buffer, the name of a process or buffer, or
4910nil, indicating the current buffer's process.
4911Called from program, takes three arguments, PROCESS, START and END.
4912If the region is more than 500 characters long,
4913it is sent in several bunches. This may happen even for shorter regions.
4914Output from processes can arrive in between bunches. */)
4915 (process, start, end)
4916 Lisp_Object process, start, end;
4917{
4918 Lisp_Object proc;
4919 int start1, end1;
4920
4921 proc = get_process (process);
4922 validate_region (&start, &end);
4923
4924 if (XINT (start) < GPT && XINT (end) > GPT)
4925 move_gap (XINT (start));
4926
4927 start1 = CHAR_TO_BYTE (XINT (start));
4928 end1 = CHAR_TO_BYTE (XINT (end));
4929 send_process (proc, BYTE_POS_ADDR (start1), end1 - start1,
4930 Fcurrent_buffer ());
4931
4932 return Qnil;
4933}
4934
4935DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
4936 2, 2, 0,
4937 doc: /* Send PROCESS the contents of STRING as input.
4938PROCESS may be a process, a buffer, the name of a process or buffer, or
4939nil, indicating the current buffer's process.
4940If STRING is more than 500 characters long,
4941it is sent in several bunches. This may happen even for shorter strings.
4942Output from processes can arrive in between bunches. */)
4943 (process, string)
4944 Lisp_Object process, string;
4945{
4946 Lisp_Object proc;
4947 CHECK_STRING (string);
4948 proc = get_process (process);
4949 send_process (proc, XSTRING (string)->data,
4950 STRING_BYTES (XSTRING (string)), string);
4951 return Qnil;
4952}
4953\f
4954DEFUN ("process-running-child-p", Fprocess_running_child_p,
4955 Sprocess_running_child_p, 0, 1, 0,
4956 doc: /* Return t if PROCESS has given the terminal to a child.
4957If the operating system does not make it possible to find out,
4958return t unconditionally. */)
4959 (process)
4960 Lisp_Object process;
4961{
4962 /* Initialize in case ioctl doesn't exist or gives an error,
4963 in a way that will cause returning t. */
4964 int gid = 0;
4965 Lisp_Object proc;
4966 struct Lisp_Process *p;
4967
4968 proc = get_process (process);
4969 p = XPROCESS (proc);
4970
4971 if (!EQ (p->childp, Qt))
4972 error ("Process %s is not a subprocess",
4973 XSTRING (p->name)->data);
4974 if (XINT (p->infd) < 0)
4975 error ("Process %s is not active",
4976 XSTRING (p->name)->data);
4977
4978#ifdef TIOCGPGRP
4979 if (!NILP (p->subtty))
4980 ioctl (XFASTINT (p->subtty), TIOCGPGRP, &gid);
4981 else
4982 ioctl (XINT (p->infd), TIOCGPGRP, &gid);
4983#endif /* defined (TIOCGPGRP ) */
4984
4985 if (gid == XFASTINT (p->pid))
4986 return Qnil;
4987 return Qt;
4988}
4989\f
4990/* send a signal number SIGNO to PROCESS.
4991 If CURRENT_GROUP is t, that means send to the process group
4992 that currently owns the terminal being used to communicate with PROCESS.
4993 This is used for various commands in shell mode.
4994 If CURRENT_GROUP is lambda, that means send to the process group
4995 that currently owns the terminal, but only if it is NOT the shell itself.
4996
4997 If NOMSG is zero, insert signal-announcements into process's buffers
4998 right away.
4999
5000 If we can, we try to signal PROCESS by sending control characters
5001 down the pty. This allows us to signal inferiors who have changed
5002 their uid, for which killpg would return an EPERM error. */
5003
5004static void
5005process_send_signal (process, signo, current_group, nomsg)
5006 Lisp_Object process;
5007 int signo;
5008 Lisp_Object current_group;
5009 int nomsg;
5010{
5011 Lisp_Object proc;
5012 register struct Lisp_Process *p;
5013 int gid;
5014 int no_pgrp = 0;
5015
5016 proc = get_process (process);
5017 p = XPROCESS (proc);
5018
5019 if (!EQ (p->childp, Qt))
5020 error ("Process %s is not a subprocess",
5021 XSTRING (p->name)->data);
5022 if (XINT (p->infd) < 0)
5023 error ("Process %s is not active",
5024 XSTRING (p->name)->data);
5025
5026 if (NILP (p->pty_flag))
5027 current_group = Qnil;
5028
5029 /* If we are using pgrps, get a pgrp number and make it negative. */
5030 if (!NILP (current_group))
5031 {
5032#ifdef SIGNALS_VIA_CHARACTERS
5033 /* If possible, send signals to the entire pgrp
5034 by sending an input character to it. */
5035
5036 /* TERMIOS is the latest and bestest, and seems most likely to
5037 work. If the system has it, use it. */
5038#ifdef HAVE_TERMIOS
5039 struct termios t;
5040
5041 switch (signo)
5042 {
5043 case SIGINT:
5044 tcgetattr (XINT (p->infd), &t);
5045 send_process (proc, &t.c_cc[VINTR], 1, Qnil);
5046 return;
5047
5048 case SIGQUIT:
5049 tcgetattr (XINT (p->infd), &t);
5050 send_process (proc, &t.c_cc[VQUIT], 1, Qnil);
5051 return;
5052
5053 case SIGTSTP:
5054 tcgetattr (XINT (p->infd), &t);
5055#if defined (VSWTCH) && !defined (PREFER_VSUSP)
5056 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil);
5057#else
5058 send_process (proc, &t.c_cc[VSUSP], 1, Qnil);
5059#endif
5060 return;
5061 }
5062
5063#else /* ! HAVE_TERMIOS */
5064
5065 /* On Berkeley descendants, the following IOCTL's retrieve the
5066 current control characters. */
5067#if defined (TIOCGLTC) && defined (TIOCGETC)
5068
5069 struct tchars c;
5070 struct ltchars lc;
5071
5072 switch (signo)
5073 {
5074 case SIGINT:
5075 ioctl (XINT (p->infd), TIOCGETC, &c);
5076 send_process (proc, &c.t_intrc, 1, Qnil);
5077 return;
5078 case SIGQUIT:
5079 ioctl (XINT (p->infd), TIOCGETC, &c);
5080 send_process (proc, &c.t_quitc, 1, Qnil);
5081 return;
5082#ifdef SIGTSTP
5083 case SIGTSTP:
5084 ioctl (XINT (p->infd), TIOCGLTC, &lc);
5085 send_process (proc, &lc.t_suspc, 1, Qnil);
5086 return;
5087#endif /* ! defined (SIGTSTP) */
5088 }
5089
5090#else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
5091
5092 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
5093 characters. */
5094#ifdef TCGETA
5095 struct termio t;
5096 switch (signo)
5097 {
5098 case SIGINT:
5099 ioctl (XINT (p->infd), TCGETA, &t);
5100 send_process (proc, &t.c_cc[VINTR], 1, Qnil);
5101 return;
5102 case SIGQUIT:
5103 ioctl (XINT (p->infd), TCGETA, &t);
5104 send_process (proc, &t.c_cc[VQUIT], 1, Qnil);
5105 return;
5106#ifdef SIGTSTP
5107 case SIGTSTP:
5108 ioctl (XINT (p->infd), TCGETA, &t);
5109 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil);
5110 return;
5111#endif /* ! defined (SIGTSTP) */
5112 }
5113#else /* ! defined (TCGETA) */
5114 Your configuration files are messed up.
5115 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
5116 you'd better be using one of the alternatives above! */
5117#endif /* ! defined (TCGETA) */
5118#endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
5119#endif /* ! defined HAVE_TERMIOS */
5120#endif /* ! defined (SIGNALS_VIA_CHARACTERS) */
5121
5122#ifdef TIOCGPGRP
5123 /* Get the pgrp using the tty itself, if we have that.
5124 Otherwise, use the pty to get the pgrp.
5125 On pfa systems, saka@pfu.fujitsu.co.JP writes:
5126 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
5127 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
5128 His patch indicates that if TIOCGPGRP returns an error, then
5129 we should just assume that p->pid is also the process group id. */
5130 {
5131 int err;
5132
5133 if (!NILP (p->subtty))
5134 err = ioctl (XFASTINT (p->subtty), TIOCGPGRP, &gid);
5135 else
5136 err = ioctl (XINT (p->infd), TIOCGPGRP, &gid);
5137
5138#ifdef pfa
5139 if (err == -1)
5140 gid = - XFASTINT (p->pid);
5141#endif /* ! defined (pfa) */
5142 }
5143 if (gid == -1)
5144 no_pgrp = 1;
5145 else
5146 gid = - gid;
5147#else /* ! defined (TIOCGPGRP ) */
5148 /* Can't select pgrps on this system, so we know that
5149 the child itself heads the pgrp. */
5150 gid = - XFASTINT (p->pid);
5151#endif /* ! defined (TIOCGPGRP ) */
5152
5153 /* If current_group is lambda, and the shell owns the terminal,
5154 don't send any signal. */
5155 if (EQ (current_group, Qlambda) && gid == - XFASTINT (p->pid))
5156 return;
5157 }
5158 else
5159 gid = - XFASTINT (p->pid);
5160
5161 switch (signo)
5162 {
5163#ifdef SIGCONT
5164 case SIGCONT:
5165 p->raw_status_low = Qnil;
5166 p->raw_status_high = Qnil;
5167 p->status = Qrun;
5168 XSETINT (p->tick, ++process_tick);
5169 if (!nomsg)
5170 status_notify ();
5171 break;
5172#endif /* ! defined (SIGCONT) */
5173 case SIGINT:
5174#ifdef VMS
5175 send_process (proc, "\003", 1, Qnil); /* ^C */
5176 goto whoosh;
5177#endif
5178 case SIGQUIT:
5179#ifdef VMS
5180 send_process (proc, "\031", 1, Qnil); /* ^Y */
5181 goto whoosh;
5182#endif
5183 case SIGKILL:
5184#ifdef VMS
5185 sys$forcex (&(XFASTINT (p->pid)), 0, 1);
5186 whoosh:
5187#endif
5188 flush_pending_output (XINT (p->infd));
5189 break;
5190 }
5191
5192 /* If we don't have process groups, send the signal to the immediate
5193 subprocess. That isn't really right, but it's better than any
5194 obvious alternative. */
5195 if (no_pgrp)
5196 {
5197 kill (XFASTINT (p->pid), signo);
5198 return;
5199 }
5200
5201 /* gid may be a pid, or minus a pgrp's number */
5202#ifdef TIOCSIGSEND
5203 if (!NILP (current_group))
5204 ioctl (XINT (p->infd), TIOCSIGSEND, signo);
5205 else
5206 {
5207 gid = - XFASTINT (p->pid);
5208 kill (gid, signo);
5209 }
5210#else /* ! defined (TIOCSIGSEND) */
5211 EMACS_KILLPG (-gid, signo);
5212#endif /* ! defined (TIOCSIGSEND) */
5213}
5214
5215DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
5216 doc: /* Interrupt process PROCESS.
5217PROCESS may be a process, a buffer, or the name of a process or buffer.
5218nil or no arg means current buffer's process.
5219Second arg CURRENT-GROUP non-nil means send signal to
5220the current process-group of the process's controlling terminal
5221rather than to the process's own process group.
5222If the process is a shell, this means interrupt current subjob
5223rather than the shell.
5224
5225If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
5226don't send the signal. */)
5227 (process, current_group)
5228 Lisp_Object process, current_group;
5229{
5230 process_send_signal (process, SIGINT, current_group, 0);
5231 return process;
5232}
5233
5234DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
5235 doc: /* Kill process PROCESS. May be process or name of one.
5236See function `interrupt-process' for more details on usage. */)
5237 (process, current_group)
5238 Lisp_Object process, current_group;
5239{
5240 process_send_signal (process, SIGKILL, current_group, 0);
5241 return process;
5242}
5243
5244DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
5245 doc: /* Send QUIT signal to process PROCESS. May be process or name of one.
5246See function `interrupt-process' for more details on usage. */)
5247 (process, current_group)
5248 Lisp_Object process, current_group;
5249{
5250 process_send_signal (process, SIGQUIT, current_group, 0);
5251 return process;
5252}
5253
5254DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
5255 doc: /* Stop process PROCESS. May be process or name of one.
5256See function `interrupt-process' for more details on usage.
5257If PROCESS is a network process, inhibit handling of incoming traffic. */)
5258 (process, current_group)
5259 Lisp_Object process, current_group;
5260{
5261#ifdef HAVE_SOCKETS
5262 if (PROCESSP (process) && NETCONN_P (process))
5263 {
5264 struct Lisp_Process *p;
5265
5266 p = XPROCESS (process);
5267 if (NILP (p->command)
5268 && XINT (p->infd) >= 0)
5269 {
5270 FD_CLR (XINT (p->infd), &input_wait_mask);
5271 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask);
5272 }
5273 p->command = Qt;
5274 return process;
5275 }
5276#endif
5277#ifndef SIGTSTP
5278 error ("no SIGTSTP support");
5279#else
5280 process_send_signal (process, SIGTSTP, current_group, 0);
5281#endif
5282 return process;
5283}
5284
5285DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
5286 doc: /* Continue process PROCESS. May be process or name of one.
5287See function `interrupt-process' for more details on usage.
5288If PROCESS is a network process, resume handling of incoming traffic. */)
5289 (process, current_group)
5290 Lisp_Object process, current_group;
5291{
5292#ifdef HAVE_SOCKETS
5293 if (PROCESSP (process) && NETCONN_P (process))
5294 {
5295 struct Lisp_Process *p;
5296
5297 p = XPROCESS (process);
5298 if (EQ (p->command, Qt)
5299 && XINT (p->infd) >= 0
5300 && (!EQ (p->filter, Qt) || EQ (p->status, Qlisten)))
5301 {
5302 FD_SET (XINT (p->infd), &input_wait_mask);
5303 FD_SET (XINT (p->infd), &non_keyboard_wait_mask);
5304 }
5305 p->command = Qnil;
5306 return process;
5307 }
5308#endif
5309#ifdef SIGCONT
5310 process_send_signal (process, SIGCONT, current_group, 0);
5311#else
5312 error ("no SIGCONT support");
5313#endif
5314 return process;
5315}
5316
5317DEFUN ("signal-process", Fsignal_process, Ssignal_process,
5318 2, 2, "nProcess number: \nnSignal code: ",
5319 doc: /* Send the process with process id PID the signal with code SIGCODE.
5320PID must be an integer. The process need not be a child of this Emacs.
5321SIGCODE may be an integer, or a symbol whose name is a signal name. */)
5322 (pid, sigcode)
5323 Lisp_Object pid, sigcode;
5324{
5325 CHECK_NUMBER (pid);
5326
5327#define handle_signal(NAME, VALUE) \
5328 else if (!strcmp (name, NAME)) \
5329 XSETINT (sigcode, VALUE)
5330
5331 if (INTEGERP (sigcode))
5332 ;
5333 else
5334 {
5335 unsigned char *name;
5336
5337 CHECK_SYMBOL (sigcode);
5338 name = XSTRING (SYMBOL_NAME (sigcode))->data;
5339
5340 if (0)
5341 ;
5342#ifdef SIGHUP
5343 handle_signal ("SIGHUP", SIGHUP);
5344#endif
5345#ifdef SIGINT
5346 handle_signal ("SIGINT", SIGINT);
5347#endif
5348#ifdef SIGQUIT
5349 handle_signal ("SIGQUIT", SIGQUIT);
5350#endif
5351#ifdef SIGILL
5352 handle_signal ("SIGILL", SIGILL);
5353#endif
5354#ifdef SIGABRT
5355 handle_signal ("SIGABRT", SIGABRT);
5356#endif
5357#ifdef SIGEMT
5358 handle_signal ("SIGEMT", SIGEMT);
5359#endif
5360#ifdef SIGKILL
5361 handle_signal ("SIGKILL", SIGKILL);
5362#endif
5363#ifdef SIGFPE
5364 handle_signal ("SIGFPE", SIGFPE);
5365#endif
5366#ifdef SIGBUS
5367 handle_signal ("SIGBUS", SIGBUS);
5368#endif
5369#ifdef SIGSEGV
5370 handle_signal ("SIGSEGV", SIGSEGV);
5371#endif
5372#ifdef SIGSYS
5373 handle_signal ("SIGSYS", SIGSYS);
5374#endif
5375#ifdef SIGPIPE
5376 handle_signal ("SIGPIPE", SIGPIPE);
5377#endif
5378#ifdef SIGALRM
5379 handle_signal ("SIGALRM", SIGALRM);
5380#endif
5381#ifdef SIGTERM
5382 handle_signal ("SIGTERM", SIGTERM);
5383#endif
5384#ifdef SIGURG
5385 handle_signal ("SIGURG", SIGURG);
5386#endif
5387#ifdef SIGSTOP
5388 handle_signal ("SIGSTOP", SIGSTOP);
5389#endif
5390#ifdef SIGTSTP
5391 handle_signal ("SIGTSTP", SIGTSTP);
5392#endif
5393#ifdef SIGCONT
5394 handle_signal ("SIGCONT", SIGCONT);
5395#endif
5396#ifdef SIGCHLD
5397 handle_signal ("SIGCHLD", SIGCHLD);
5398#endif
5399#ifdef SIGTTIN
5400 handle_signal ("SIGTTIN", SIGTTIN);
5401#endif
5402#ifdef SIGTTOU
5403 handle_signal ("SIGTTOU", SIGTTOU);
5404#endif
5405#ifdef SIGIO
5406 handle_signal ("SIGIO", SIGIO);
5407#endif
5408#ifdef SIGXCPU
5409 handle_signal ("SIGXCPU", SIGXCPU);
5410#endif
5411#ifdef SIGXFSZ
5412 handle_signal ("SIGXFSZ", SIGXFSZ);
5413#endif
5414#ifdef SIGVTALRM
5415 handle_signal ("SIGVTALRM", SIGVTALRM);
5416#endif
5417#ifdef SIGPROF
5418 handle_signal ("SIGPROF", SIGPROF);
5419#endif
5420#ifdef SIGWINCH
5421 handle_signal ("SIGWINCH", SIGWINCH);
5422#endif
5423#ifdef SIGINFO
5424 handle_signal ("SIGINFO", SIGINFO);
5425#endif
5426#ifdef SIGUSR1
5427 handle_signal ("SIGUSR1", SIGUSR1);
5428#endif
5429#ifdef SIGUSR2
5430 handle_signal ("SIGUSR2", SIGUSR2);
5431#endif
5432 else
5433 error ("Undefined signal name %s", name);
5434 }
5435
5436#undef handle_signal
5437
5438 return make_number (kill (XINT (pid), XINT (sigcode)));
5439}
5440
5441DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
5442 doc: /* Make PROCESS see end-of-file in its input.
5443EOF comes after any text already sent to it.
5444PROCESS may be a process, a buffer, the name of a process or buffer, or
5445nil, indicating the current buffer's process.
5446If PROCESS is a network connection, or is a process communicating
5447through a pipe (as opposed to a pty), then you cannot send any more
5448text to PROCESS after you call this function. */)
5449 (process)
5450 Lisp_Object process;
5451{
5452 Lisp_Object proc;
5453 struct coding_system *coding;
5454
5455 if (DATAGRAM_CONN_P (process))
5456 return process;
5457
5458 proc = get_process (process);
5459 coding = proc_encode_coding_system[XINT (XPROCESS (proc)->outfd)];
5460
5461 /* Make sure the process is really alive. */
5462 if (! NILP (XPROCESS (proc)->raw_status_low))
5463 update_status (XPROCESS (proc));
5464 if (! EQ (XPROCESS (proc)->status, Qrun))
5465 error ("Process %s not running", XSTRING (XPROCESS (proc)->name)->data);
5466
5467 if (CODING_REQUIRE_FLUSHING (coding))
5468 {
5469 coding->mode |= CODING_MODE_LAST_BLOCK;
5470 send_process (proc, "", 0, Qnil);
5471 }
5472
5473#ifdef VMS
5474 send_process (proc, "\032", 1, Qnil); /* ^z */
5475#else
5476 if (!NILP (XPROCESS (proc)->pty_flag))
5477 send_process (proc, "\004", 1, Qnil);
5478 else
5479 {
5480 int old_outfd, new_outfd;
5481
5482#ifdef HAVE_SHUTDOWN
5483 /* If this is a network connection, or socketpair is used
5484 for communication with the subprocess, call shutdown to cause EOF.
5485 (In some old system, shutdown to socketpair doesn't work.
5486 Then we just can't win.) */
5487 if (NILP (XPROCESS (proc)->pid)
5488 || XINT (XPROCESS (proc)->outfd) == XINT (XPROCESS (proc)->infd))
5489 shutdown (XINT (XPROCESS (proc)->outfd), 1);
5490 /* In case of socketpair, outfd == infd, so don't close it. */
5491 if (XINT (XPROCESS (proc)->outfd) != XINT (XPROCESS (proc)->infd))
5492 emacs_close (XINT (XPROCESS (proc)->outfd));
5493#else /* not HAVE_SHUTDOWN */
5494 emacs_close (XINT (XPROCESS (proc)->outfd));
5495#endif /* not HAVE_SHUTDOWN */
5496 new_outfd = emacs_open (NULL_DEVICE, O_WRONLY, 0);
5497 old_outfd = XINT (XPROCESS (proc)->outfd);
5498
5499 if (!proc_encode_coding_system[new_outfd])
5500 proc_encode_coding_system[new_outfd]
5501 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
5502 bcopy (proc_encode_coding_system[old_outfd],
5503 proc_encode_coding_system[new_outfd],
5504 sizeof (struct coding_system));
5505 bzero (proc_encode_coding_system[old_outfd],
5506 sizeof (struct coding_system));
5507
5508 XSETINT (XPROCESS (proc)->outfd, new_outfd);
5509 }
5510#endif /* VMS */
5511 return process;
5512}
5513
5514/* Kill all processes associated with `buffer'.
5515 If `buffer' is nil, kill all processes */
5516
5517void
5518kill_buffer_processes (buffer)
5519 Lisp_Object buffer;
5520{
5521 Lisp_Object tail, proc;
5522
5523 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
5524 {
5525 proc = XCDR (XCAR (tail));
5526 if (GC_PROCESSP (proc)
5527 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
5528 {
5529 if (NETCONN_P (proc))
5530 Fdelete_process (proc);
5531 else if (XINT (XPROCESS (proc)->infd) >= 0)
5532 process_send_signal (proc, SIGHUP, Qnil, 1);
5533 }
5534 }
5535}
5536\f
5537/* On receipt of a signal that a child status has changed, loop asking
5538 about children with changed statuses until the system says there
5539 are no more.
5540
5541 All we do is change the status; we do not run sentinels or print
5542 notifications. That is saved for the next time keyboard input is
5543 done, in order to avoid timing errors.
5544
5545 ** WARNING: this can be called during garbage collection.
5546 Therefore, it must not be fooled by the presence of mark bits in
5547 Lisp objects.
5548
5549 ** USG WARNING: Although it is not obvious from the documentation
5550 in signal(2), on a USG system the SIGCLD handler MUST NOT call
5551 signal() before executing at least one wait(), otherwise the
5552 handler will be called again, resulting in an infinite loop. The
5553 relevant portion of the documentation reads "SIGCLD signals will be
5554 queued and the signal-catching function will be continually
5555 reentered until the queue is empty". Invoking signal() causes the
5556 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
5557 Inc. */
5558
5559SIGTYPE
5560sigchld_handler (signo)
5561 int signo;
5562{
5563 int old_errno = errno;
5564 Lisp_Object proc;
5565 register struct Lisp_Process *p;
5566 extern EMACS_TIME *input_available_clear_time;
5567
5568#ifdef BSD4_1
5569 extern int sigheld;
5570 sigheld |= sigbit (SIGCHLD);
5571#endif
5572
5573 while (1)
5574 {
5575 register int pid;
5576 WAITTYPE w;
5577 Lisp_Object tail;
5578
5579#ifdef WNOHANG
5580#ifndef WUNTRACED
5581#define WUNTRACED 0
5582#endif /* no WUNTRACED */
5583 /* Keep trying to get a status until we get a definitive result. */
5584 do
5585 {
5586 errno = 0;
5587 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
5588 }
5589 while (pid < 0 && errno == EINTR);
5590
5591 if (pid <= 0)
5592 {
5593 /* PID == 0 means no processes found, PID == -1 means a real
5594 failure. We have done all our job, so return. */
5595
5596 /* USG systems forget handlers when they are used;
5597 must reestablish each time */
5598#if defined (USG) && !defined (POSIX_SIGNALS)
5599 signal (signo, sigchld_handler); /* WARNING - must come after wait3() */
5600#endif
5601#ifdef BSD4_1
5602 sigheld &= ~sigbit (SIGCHLD);
5603 sigrelse (SIGCHLD);
5604#endif
5605 errno = old_errno;
5606 return;
5607 }
5608#else
5609 pid = wait (&w);
5610#endif /* no WNOHANG */
5611
5612 /* Find the process that signaled us, and record its status. */
5613
5614 p = 0;
5615 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
5616 {
5617 proc = XCDR (XCAR (tail));
5618 p = XPROCESS (proc);
5619 if (GC_EQ (p->childp, Qt) && XINT (p->pid) == pid)
5620 break;
5621 p = 0;
5622 }
5623
5624 /* Look for an asynchronous process whose pid hasn't been filled
5625 in yet. */
5626 if (p == 0)
5627 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
5628 {
5629 proc = XCDR (XCAR (tail));
5630 p = XPROCESS (proc);
5631 if (GC_INTEGERP (p->pid) && XINT (p->pid) == -1)
5632 break;
5633 p = 0;
5634 }
5635
5636 /* Change the status of the process that was found. */
5637 if (p != 0)
5638 {
5639 union { int i; WAITTYPE wt; } u;
5640 int clear_desc_flag = 0;
5641
5642 XSETINT (p->tick, ++process_tick);
5643 u.wt = w;
5644 XSETINT (p->raw_status_low, u.i & 0xffff);
5645 XSETINT (p->raw_status_high, u.i >> 16);
5646
5647 /* If process has terminated, stop waiting for its output. */
5648 if ((WIFSIGNALED (w) || WIFEXITED (w))
5649 && XINT (p->infd) >= 0)
5650 clear_desc_flag = 1;
5651
5652 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
5653 if (clear_desc_flag)
5654 {
5655 FD_CLR (XINT (p->infd), &input_wait_mask);
5656 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask);
5657 }
5658
5659 /* Tell wait_reading_process_input that it needs to wake up and
5660 look around. */
5661 if (input_available_clear_time)
5662 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
5663 }
5664
5665 /* There was no asynchronous process found for that id. Check
5666 if we have a synchronous process. */
5667 else
5668 {
5669 synch_process_alive = 0;
5670
5671 /* Report the status of the synchronous process. */
5672 if (WIFEXITED (w))
5673 synch_process_retcode = WRETCODE (w);
5674 else if (WIFSIGNALED (w))
5675 {
5676 int code = WTERMSIG (w);
5677 char *signame;
5678
5679 synchronize_system_messages_locale ();
5680 signame = strsignal (code);
5681
5682 if (signame == 0)
5683 signame = "unknown";
5684
5685 synch_process_death = signame;
5686 }
5687
5688 /* Tell wait_reading_process_input that it needs to wake up and
5689 look around. */
5690 if (input_available_clear_time)
5691 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
5692 }
5693
5694 /* On some systems, we must return right away.
5695 If any more processes want to signal us, we will
5696 get another signal.
5697 Otherwise (on systems that have WNOHANG), loop around
5698 to use up all the processes that have something to tell us. */
5699#if (defined WINDOWSNT \
5700 || (defined USG && !defined GNU_LINUX \
5701 && !(defined HPUX && defined WNOHANG)))
5702#if defined (USG) && ! defined (POSIX_SIGNALS)
5703 signal (signo, sigchld_handler);
5704#endif
5705 errno = old_errno;
5706 return;
5707#endif /* USG, but not HPUX with WNOHANG */
5708 }
5709}
5710\f
5711
5712static Lisp_Object
5713exec_sentinel_unwind (data)
5714 Lisp_Object data;
5715{
5716 XPROCESS (XCAR (data))->sentinel = XCDR (data);
5717 return Qnil;
5718}
5719
5720static Lisp_Object
5721exec_sentinel_error_handler (error)
5722 Lisp_Object error;
5723{
5724 cmd_error_internal (error, "error in process sentinel: ");
5725 Vinhibit_quit = Qt;
5726 update_echo_area ();
5727 Fsleep_for (make_number (2), Qnil);
5728 return Qt;
5729}
5730
5731static void
5732exec_sentinel (proc, reason)
5733 Lisp_Object proc, reason;
5734{
5735 Lisp_Object sentinel, obuffer, odeactivate, okeymap;
5736 register struct Lisp_Process *p = XPROCESS (proc);
5737 int count = specpdl_ptr - specpdl;
5738 int outer_running_asynch_code = running_asynch_code;
5739 int waiting = waiting_for_user_input_p;
5740
5741 /* No need to gcpro these, because all we do with them later
5742 is test them for EQness, and none of them should be a string. */
5743 odeactivate = Vdeactivate_mark;
5744 XSETBUFFER (obuffer, current_buffer);
5745 okeymap = current_buffer->keymap;
5746
5747 sentinel = p->sentinel;
5748 if (NILP (sentinel))
5749 return;
5750
5751 /* Zilch the sentinel while it's running, to avoid recursive invocations;
5752 assure that it gets restored no matter how the sentinel exits. */
5753 p->sentinel = Qnil;
5754 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
5755 /* Inhibit quit so that random quits don't screw up a running filter. */
5756 specbind (Qinhibit_quit, Qt);
5757 specbind (Qlast_nonmenu_event, Qt);
5758
5759 /* In case we get recursively called,
5760 and we already saved the match data nonrecursively,
5761 save the same match data in safely recursive fashion. */
5762 if (outer_running_asynch_code)
5763 {
5764 Lisp_Object tem;
5765 tem = Fmatch_data (Qnil, Qnil);
5766 restore_match_data ();
5767 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
5768 Fset_match_data (tem);
5769 }
5770
5771 /* For speed, if a search happens within this code,
5772 save the match data in a special nonrecursive fashion. */
5773 running_asynch_code = 1;
5774
5775 internal_condition_case_1 (read_process_output_call,
5776 Fcons (sentinel,
5777 Fcons (proc, Fcons (reason, Qnil))),
5778 !NILP (Vdebug_on_error) ? Qnil : Qerror,
5779 exec_sentinel_error_handler);
5780
5781 /* If we saved the match data nonrecursively, restore it now. */
5782 restore_match_data ();
5783 running_asynch_code = outer_running_asynch_code;
5784
5785 Vdeactivate_mark = odeactivate;
5786
5787 /* Restore waiting_for_user_input_p as it was
5788 when we were called, in case the filter clobbered it. */
5789 waiting_for_user_input_p = waiting;
5790
5791#if 0
5792 if (! EQ (Fcurrent_buffer (), obuffer)
5793 || ! EQ (current_buffer->keymap, okeymap))
5794#endif
5795 /* But do it only if the caller is actually going to read events.
5796 Otherwise there's no need to make him wake up, and it could
5797 cause trouble (for example it would make Fsit_for return). */
5798 if (waiting_for_user_input_p == -1)
5799 record_asynch_buffer_change ();
5800
5801 unbind_to (count, Qnil);
5802}
5803
5804/* Report all recent events of a change in process status
5805 (either run the sentinel or output a message).
5806 This is usually done while Emacs is waiting for keyboard input
5807 but can be done at other times. */
5808
5809void
5810status_notify ()
5811{
5812 register Lisp_Object proc, buffer;
5813 Lisp_Object tail, msg;
5814 struct gcpro gcpro1, gcpro2;
5815
5816 tail = Qnil;
5817 msg = Qnil;
5818 /* We need to gcpro tail; if read_process_output calls a filter
5819 which deletes a process and removes the cons to which tail points
5820 from Vprocess_alist, and then causes a GC, tail is an unprotected
5821 reference. */
5822 GCPRO2 (tail, msg);
5823
5824 /* Set this now, so that if new processes are created by sentinels
5825 that we run, we get called again to handle their status changes. */
5826 update_tick = process_tick;
5827
5828 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
5829 {
5830 Lisp_Object symbol;
5831 register struct Lisp_Process *p;
5832
5833 proc = Fcdr (Fcar (tail));
5834 p = XPROCESS (proc);
5835
5836 if (XINT (p->tick) != XINT (p->update_tick))
5837 {
5838 XSETINT (p->update_tick, XINT (p->tick));
5839
5840 /* If process is still active, read any output that remains. */
5841 while (! EQ (p->filter, Qt)
5842 && ! EQ (p->status, Qconnect)
5843 && ! EQ (p->status, Qlisten)
5844 && ! EQ (p->command, Qt) /* Network process not stopped. */
5845 && XINT (p->infd) >= 0
5846 && read_process_output (proc, XINT (p->infd)) > 0);
5847
5848 buffer = p->buffer;
5849
5850 /* Get the text to use for the message. */
5851 if (!NILP (p->raw_status_low))
5852 update_status (p);
5853 msg = status_message (p->status);
5854
5855 /* If process is terminated, deactivate it or delete it. */
5856 symbol = p->status;
5857 if (CONSP (p->status))
5858 symbol = XCAR (p->status);
5859
5860 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
5861 || EQ (symbol, Qclosed))
5862 {
5863 if (delete_exited_processes)
5864 remove_process (proc);
5865 else
5866 deactivate_process (proc);
5867 }
5868
5869 /* The actions above may have further incremented p->tick.
5870 So set p->update_tick again
5871 so that an error in the sentinel will not cause
5872 this code to be run again. */
5873 XSETINT (p->update_tick, XINT (p->tick));
5874 /* Now output the message suitably. */
5875 if (!NILP (p->sentinel))
5876 exec_sentinel (proc, msg);
5877 /* Don't bother with a message in the buffer
5878 when a process becomes runnable. */
5879 else if (!EQ (symbol, Qrun) && !NILP (buffer))
5880 {
5881 Lisp_Object ro, tem;
5882 struct buffer *old = current_buffer;
5883 int opoint, opoint_byte;
5884 int before, before_byte;
5885
5886 ro = XBUFFER (buffer)->read_only;
5887
5888 /* Avoid error if buffer is deleted
5889 (probably that's why the process is dead, too) */
5890 if (NILP (XBUFFER (buffer)->name))
5891 continue;
5892 Fset_buffer (buffer);
5893
5894 opoint = PT;
5895 opoint_byte = PT_BYTE;
5896 /* Insert new output into buffer
5897 at the current end-of-output marker,
5898 thus preserving logical ordering of input and output. */
5899 if (XMARKER (p->mark)->buffer)
5900 Fgoto_char (p->mark);
5901 else
5902 SET_PT_BOTH (ZV, ZV_BYTE);
5903
5904 before = PT;
5905 before_byte = PT_BYTE;
5906
5907 tem = current_buffer->read_only;
5908 current_buffer->read_only = Qnil;
5909 insert_string ("\nProcess ");
5910 Finsert (1, &p->name);
5911 insert_string (" ");
5912 Finsert (1, &msg);
5913 current_buffer->read_only = tem;
5914 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
5915
5916 if (opoint >= before)
5917 SET_PT_BOTH (opoint + (PT - before),
5918 opoint_byte + (PT_BYTE - before_byte));
5919 else
5920 SET_PT_BOTH (opoint, opoint_byte);
5921
5922 set_buffer_internal (old);
5923 }
5924 }
5925 } /* end for */
5926
5927 update_mode_lines++; /* in case buffers use %s in mode-line-format */
5928 redisplay_preserve_echo_area (13);
5929
5930 UNGCPRO;
5931}
5932
5933\f
5934DEFUN ("set-process-coding-system", Fset_process_coding_system,
5935 Sset_process_coding_system, 1, 3, 0,
5936 doc: /* Set coding systems of PROCESS to DECODING and ENCODING.
5937DECODING will be used to decode subprocess output and ENCODING to
5938encode subprocess input. */)
5939 (proc, decoding, encoding)
5940 register Lisp_Object proc, decoding, encoding;
5941{
5942 register struct Lisp_Process *p;
5943
5944 CHECK_PROCESS (proc);
5945 p = XPROCESS (proc);
5946 if (XINT (p->infd) < 0)
5947 error ("Input file descriptor of %s closed", XSTRING (p->name)->data);
5948 if (XINT (p->outfd) < 0)
5949 error ("Output file descriptor of %s closed", XSTRING (p->name)->data);
5950
5951 p->decode_coding_system = Fcheck_coding_system (decoding);
5952 p->encode_coding_system = Fcheck_coding_system (encoding);
5953 setup_coding_system (decoding,
5954 proc_decode_coding_system[XINT (p->infd)]);
5955 setup_coding_system (encoding,
5956 proc_encode_coding_system[XINT (p->outfd)]);
5957
5958 return Qnil;
5959}
5960
5961DEFUN ("process-coding-system",
5962 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0,
5963 doc: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
5964 (proc)
5965 register Lisp_Object proc;
5966{
5967 CHECK_PROCESS (proc);
5968 return Fcons (XPROCESS (proc)->decode_coding_system,
5969 XPROCESS (proc)->encode_coding_system);
5970}
5971\f
5972/* The first time this is called, assume keyboard input comes from DESC
5973 instead of from where we used to expect it.
5974 Subsequent calls mean assume input keyboard can come from DESC
5975 in addition to other places. */
5976
5977static int add_keyboard_wait_descriptor_called_flag;
5978
5979void
5980add_keyboard_wait_descriptor (desc)
5981 int desc;
5982{
5983 if (! add_keyboard_wait_descriptor_called_flag)
5984 FD_CLR (0, &input_wait_mask);
5985 add_keyboard_wait_descriptor_called_flag = 1;
5986 FD_SET (desc, &input_wait_mask);
5987 FD_SET (desc, &non_process_wait_mask);
5988 if (desc > max_keyboard_desc)
5989 max_keyboard_desc = desc;
5990}
5991
5992/* From now on, do not expect DESC to give keyboard input. */
5993
5994void
5995delete_keyboard_wait_descriptor (desc)
5996 int desc;
5997{
5998 int fd;
5999 int lim = max_keyboard_desc;
6000
6001 FD_CLR (desc, &input_wait_mask);
6002 FD_CLR (desc, &non_process_wait_mask);
6003
6004 if (desc == max_keyboard_desc)
6005 for (fd = 0; fd < lim; fd++)
6006 if (FD_ISSET (fd, &input_wait_mask)
6007 && !FD_ISSET (fd, &non_keyboard_wait_mask))
6008 max_keyboard_desc = fd;
6009}
6010
6011/* Return nonzero if *MASK has a bit set
6012 that corresponds to one of the keyboard input descriptors. */
6013
6014int
6015keyboard_bit_set (mask)
6016 SELECT_TYPE *mask;
6017{
6018 int fd;
6019
6020 for (fd = 0; fd <= max_keyboard_desc; fd++)
6021 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask)
6022 && !FD_ISSET (fd, &non_keyboard_wait_mask))
6023 return 1;
6024
6025 return 0;
6026}
6027\f
6028void
6029init_process ()
6030{
6031 register int i;
6032
6033#ifdef SIGCHLD
6034#ifndef CANNOT_DUMP
6035 if (! noninteractive || initialized)
6036#endif
6037 signal (SIGCHLD, sigchld_handler);
6038#endif
6039
6040 FD_ZERO (&input_wait_mask);
6041 FD_ZERO (&non_keyboard_wait_mask);
6042 FD_ZERO (&non_process_wait_mask);
6043 max_process_desc = 0;
6044
6045 FD_SET (0, &input_wait_mask);
6046
6047 Vprocess_alist = Qnil;
6048 for (i = 0; i < MAXDESC; i++)
6049 {
6050 chan_process[i] = Qnil;
6051 proc_buffered_char[i] = -1;
6052 }
6053 bzero (proc_decode_coding_system, sizeof proc_decode_coding_system);
6054 bzero (proc_encode_coding_system, sizeof proc_encode_coding_system);
6055#ifdef DATAGRAM_SOCKETS
6056 bzero (datagram_address, sizeof datagram_address);
6057#endif
6058
6059#ifdef HAVE_SOCKETS
6060 {
6061 Lisp_Object subfeatures = Qnil;
6062#define ADD_SUBFEATURE(key, val) \
6063 subfeatures = Fcons (Fcons (key, Fcons (val, Qnil)), subfeatures)
6064
6065#ifdef NON_BLOCKING_CONNECT
6066 ADD_SUBFEATURE (QCnowait, Qt);
6067#endif
6068#ifdef DATAGRAM_SOCKETS
6069 ADD_SUBFEATURE (QCtype, Qdatagram);
6070#endif
6071#ifdef HAVE_LOCAL_SOCKETS
6072 ADD_SUBFEATURE (QCfamily, Qlocal);
6073#endif
6074#ifdef HAVE_GETSOCKNAME
6075 ADD_SUBFEATURE (QCservice, Qt);
6076#endif
6077#if !defined(TERM) && (defined(O_NONBLOCK) || defined(O_NDELAY))
6078 ADD_SUBFEATURE (QCserver, Qt);
6079#endif
6080#ifdef SO_BINDTODEVICE
6081 ADD_SUBFEATURE (QCoptions, intern ("bindtodevice"));
6082#endif
6083#ifdef SO_BROADCAST
6084 ADD_SUBFEATURE (QCoptions, intern ("broadcast"));
6085#endif
6086#ifdef SO_DONTROUTE
6087 ADD_SUBFEATURE (QCoptions, intern ("dontroute"));
6088#endif
6089#ifdef SO_KEEPALIVE
6090 ADD_SUBFEATURE (QCoptions, intern ("keepalive"));
6091#endif
6092#ifdef SO_LINGER
6093 ADD_SUBFEATURE (QCoptions, intern ("linger"));
6094#endif
6095#ifdef SO_OOBINLINE
6096 ADD_SUBFEATURE (QCoptions, intern ("oobinline"));
6097#endif
6098#ifdef SO_PRIORITY
6099 ADD_SUBFEATURE (QCoptions, intern ("priority"));
6100#endif
6101#ifdef SO_REUSEADDR
6102 ADD_SUBFEATURE (QCoptions, intern ("reuseaddr"));
6103#endif
6104 Fprovide (intern ("make-network-process"), subfeatures);
6105 }
6106#endif /* HAVE_SOCKETS */
6107}
6108
6109void
6110syms_of_process ()
6111{
6112 Qprocessp = intern ("processp");
6113 staticpro (&Qprocessp);
6114 Qrun = intern ("run");
6115 staticpro (&Qrun);
6116 Qstop = intern ("stop");
6117 staticpro (&Qstop);
6118 Qsignal = intern ("signal");
6119 staticpro (&Qsignal);
6120
6121 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
6122 here again.
6123
6124 Qexit = intern ("exit");
6125 staticpro (&Qexit); */
6126
6127 Qopen = intern ("open");
6128 staticpro (&Qopen);
6129 Qclosed = intern ("closed");
6130 staticpro (&Qclosed);
6131 Qconnect = intern ("connect");
6132 staticpro (&Qconnect);
6133 Qfailed = intern ("failed");
6134 staticpro (&Qfailed);
6135 Qlisten = intern ("listen");
6136 staticpro (&Qlisten);
6137 Qlocal = intern ("local");
6138 staticpro (&Qlocal);
6139 Qdatagram = intern ("datagram");
6140 staticpro (&Qdatagram);
6141
6142 QCname = intern (":name");
6143 staticpro (&QCname);
6144 QCbuffer = intern (":buffer");
6145 staticpro (&QCbuffer);
6146 QChost = intern (":host");
6147 staticpro (&QChost);
6148 QCservice = intern (":service");
6149 staticpro (&QCservice);
6150 QCtype = intern (":type");
6151 staticpro (&QCtype);
6152 QClocal = intern (":local");
6153 staticpro (&QClocal);
6154 QCremote = intern (":remote");
6155 staticpro (&QCremote);
6156 QCcoding = intern (":coding");
6157 staticpro (&QCcoding);
6158 QCserver = intern (":server");
6159 staticpro (&QCserver);
6160 QCnowait = intern (":nowait");
6161 staticpro (&QCnowait);
6162 QCsentinel = intern (":sentinel");
6163 staticpro (&QCsentinel);
6164 QClog = intern (":log");
6165 staticpro (&QClog);
6166 QCnoquery = intern (":noquery");
6167 staticpro (&QCnoquery);
6168 QCstop = intern (":stop");
6169 staticpro (&QCstop);
6170 QCoptions = intern (":options");
6171 staticpro (&QCoptions);
6172
6173 Qlast_nonmenu_event = intern ("last-nonmenu-event");
6174 staticpro (&Qlast_nonmenu_event);
6175
6176 staticpro (&Vprocess_alist);
6177
6178 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
6179 doc: /* *Non-nil means delete processes immediately when they exit.
6180nil means don't delete them until `list-processes' is run. */);
6181
6182 delete_exited_processes = 1;
6183
6184 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type,
6185 doc: /* Control type of device used to communicate with subprocesses.
6186Values are nil to use a pipe, or t or `pty' to use a pty.
6187The value has no effect if the system has no ptys or if all ptys are busy:
6188then a pipe is used in any case.
6189The value takes effect when `start-process' is called. */);
6190 Vprocess_connection_type = Qt;
6191
6192 defsubr (&Sprocessp);
6193 defsubr (&Sget_process);
6194 defsubr (&Sget_buffer_process);
6195 defsubr (&Sdelete_process);
6196 defsubr (&Sprocess_status);
6197 defsubr (&Sprocess_exit_status);
6198 defsubr (&Sprocess_id);
6199 defsubr (&Sprocess_name);
6200 defsubr (&Sprocess_tty_name);
6201 defsubr (&Sprocess_command);
6202 defsubr (&Sset_process_buffer);
6203 defsubr (&Sprocess_buffer);
6204 defsubr (&Sprocess_mark);
6205 defsubr (&Sset_process_filter);
6206 defsubr (&Sprocess_filter);
6207 defsubr (&Sset_process_sentinel);
6208 defsubr (&Sprocess_sentinel);
6209 defsubr (&Sset_process_window_size);
6210 defsubr (&Sset_process_inherit_coding_system_flag);
6211 defsubr (&Sprocess_inherit_coding_system_flag);
6212 defsubr (&Sset_process_query_on_exit_flag);
6213 defsubr (&Sprocess_query_on_exit_flag);
6214 defsubr (&Sprocess_contact);
6215 defsubr (&Slist_processes);
6216 defsubr (&Sprocess_list);
6217 defsubr (&Sstart_process);
6218#ifdef HAVE_SOCKETS
6219 defsubr (&Sset_network_process_options);
6220 defsubr (&Smake_network_process);
6221#endif /* HAVE_SOCKETS */
6222#ifdef DATAGRAM_SOCKETS
6223 defsubr (&Sprocess_datagram_address);
6224 defsubr (&Sset_process_datagram_address);
6225#endif
6226 defsubr (&Saccept_process_output);
6227 defsubr (&Sprocess_send_region);
6228 defsubr (&Sprocess_send_string);
6229 defsubr (&Sinterrupt_process);
6230 defsubr (&Skill_process);
6231 defsubr (&Squit_process);
6232 defsubr (&Sstop_process);
6233 defsubr (&Scontinue_process);
6234 defsubr (&Sprocess_running_child_p);
6235 defsubr (&Sprocess_send_eof);
6236 defsubr (&Ssignal_process);
6237 defsubr (&Swaiting_for_user_input_p);
6238/* defsubr (&Sprocess_connection); */
6239 defsubr (&Sset_process_coding_system);
6240 defsubr (&Sprocess_coding_system);
6241}
6242
6243\f
6244#else /* not subprocesses */
6245
6246#include <sys/types.h>
6247#include <errno.h>
6248
6249#include "lisp.h"
6250#include "systime.h"
6251#include "charset.h"
6252#include "coding.h"
6253#include "termopts.h"
6254#include "sysselect.h"
6255
6256extern int frame_garbaged;
6257
6258extern EMACS_TIME timer_check ();
6259extern int timers_run;
6260
6261Lisp_Object QCtype;
6262
6263/* As described above, except assuming that there are no subprocesses:
6264
6265 Wait for timeout to elapse and/or keyboard input to be available.
6266
6267 time_limit is:
6268 timeout in seconds, or
6269 zero for no limit, or
6270 -1 means gobble data immediately available but don't wait for any.
6271
6272 read_kbd is a Lisp_Object:
6273 0 to ignore keyboard input, or
6274 1 to return when input is available, or
6275 -1 means caller will actually read the input, so don't throw to
6276 the quit handler.
6277 a cons cell, meaning wait until its car is non-nil
6278 (and gobble terminal input into the buffer if any arrives), or
6279 We know that read_kbd will never be a Lisp_Process, since
6280 `subprocesses' isn't defined.
6281
6282 do_display != 0 means redisplay should be done to show subprocess
6283 output that arrives.
6284
6285 Return true iff we received input from any process. */
6286
6287int
6288wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
6289 int time_limit, microsecs;
6290 Lisp_Object read_kbd;
6291 int do_display;
6292{
6293 register int nfds;
6294 EMACS_TIME end_time, timeout;
6295 SELECT_TYPE waitchannels;
6296 int xerrno;
6297 /* Either nil or a cons cell, the car of which is of interest and
6298 may be changed outside of this routine. */
6299 Lisp_Object wait_for_cell = Qnil;
6300
6301 /* If waiting for non-nil in a cell, record where. */
6302 if (CONSP (read_kbd))
6303 {
6304 wait_for_cell = read_kbd;
6305 XSETFASTINT (read_kbd, 0);
6306 }
6307
6308 /* What does time_limit really mean? */
6309 if (time_limit || microsecs)
6310 {
6311 EMACS_GET_TIME (end_time);
6312 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
6313 EMACS_ADD_TIME (end_time, end_time, timeout);
6314 }
6315
6316 /* Turn off periodic alarms (in case they are in use)
6317 because the select emulator uses alarms. */
6318 turn_on_atimers (0);
6319
6320 while (1)
6321 {
6322 int timeout_reduced_for_timers = 0;
6323
6324 /* If calling from keyboard input, do not quit
6325 since we want to return C-g as an input character.
6326 Otherwise, do pending quit if requested. */
6327 if (XINT (read_kbd) >= 0)
6328 QUIT;
6329
6330 /* Exit now if the cell we're waiting for became non-nil. */
6331 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
6332 break;
6333
6334 /* Compute time from now till when time limit is up */
6335 /* Exit if already run out */
6336 if (time_limit == -1)
6337 {
6338 /* -1 specified for timeout means
6339 gobble output available now
6340 but don't wait at all. */
6341
6342 EMACS_SET_SECS_USECS (timeout, 0, 0);
6343 }
6344 else if (time_limit || microsecs)
6345 {
6346 EMACS_GET_TIME (timeout);
6347 EMACS_SUB_TIME (timeout, end_time, timeout);
6348 if (EMACS_TIME_NEG_P (timeout))
6349 break;
6350 }
6351 else
6352 {
6353 EMACS_SET_SECS_USECS (timeout, 100000, 0);
6354 }
6355
6356 /* If our caller will not immediately handle keyboard events,
6357 run timer events directly.
6358 (Callers that will immediately read keyboard events
6359 call timer_delay on their own.) */
6360 if (NILP (wait_for_cell))
6361 {
6362 EMACS_TIME timer_delay;
6363
6364 do
6365 {
6366 int old_timers_run = timers_run;
6367 timer_delay = timer_check (1);
6368 if (timers_run != old_timers_run && do_display)
6369 /* We must retry, since a timer may have requeued itself
6370 and that could alter the time delay. */
6371 redisplay_preserve_echo_area (14);
6372 else
6373 break;
6374 }
6375 while (!detect_input_pending ());
6376
6377 /* If there is unread keyboard input, also return. */
6378 if (XINT (read_kbd) != 0
6379 && requeued_events_pending_p ())
6380 break;
6381
6382 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
6383 {
6384 EMACS_TIME difference;
6385 EMACS_SUB_TIME (difference, timer_delay, timeout);
6386 if (EMACS_TIME_NEG_P (difference))
6387 {
6388 timeout = timer_delay;
6389 timeout_reduced_for_timers = 1;
6390 }
6391 }
6392 }
6393
6394 /* Cause C-g and alarm signals to take immediate action,
6395 and cause input available signals to zero out timeout. */
6396 if (XINT (read_kbd) < 0)
6397 set_waiting_for_input (&timeout);
6398
6399 /* Wait till there is something to do. */
6400
6401 if (! XINT (read_kbd) && NILP (wait_for_cell))
6402 FD_ZERO (&waitchannels);
6403 else
6404 FD_SET (0, &waitchannels);
6405
6406 /* If a frame has been newly mapped and needs updating,
6407 reprocess its display stuff. */
6408 if (frame_garbaged && do_display)
6409 {
6410 clear_waiting_for_input ();
6411 redisplay_preserve_echo_area (15);
6412 if (XINT (read_kbd) < 0)
6413 set_waiting_for_input (&timeout);
6414 }
6415
6416 if (XINT (read_kbd) && detect_input_pending ())
6417 {
6418 nfds = 0;
6419 FD_ZERO (&waitchannels);
6420 }
6421 else
6422 nfds = select (1, &waitchannels, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
6423 &timeout);
6424
6425 xerrno = errno;
6426
6427 /* Make C-g and alarm signals set flags again */
6428 clear_waiting_for_input ();
6429
6430 /* If we woke up due to SIGWINCH, actually change size now. */
6431 do_pending_window_change (0);
6432
6433 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
6434 /* We waited the full specified time, so return now. */
6435 break;
6436
6437 if (nfds == -1)
6438 {
6439 /* If the system call was interrupted, then go around the
6440 loop again. */
6441 if (xerrno == EINTR)
6442 FD_ZERO (&waitchannels);
6443 else
6444 error ("select error: %s", emacs_strerror (xerrno));
6445 }
6446#ifdef sun
6447 else if (nfds > 0 && (waitchannels & 1) && interrupt_input)
6448 /* System sometimes fails to deliver SIGIO. */
6449 kill (getpid (), SIGIO);
6450#endif
6451#ifdef SIGIO
6452 if (XINT (read_kbd) && interrupt_input && (waitchannels & 1))
6453 kill (getpid (), SIGIO);
6454#endif
6455
6456 /* Check for keyboard input */
6457
6458 if ((XINT (read_kbd) != 0)
6459 && detect_input_pending_run_timers (do_display))
6460 {
6461 swallow_events (do_display);
6462 if (detect_input_pending_run_timers (do_display))
6463 break;
6464 }
6465
6466 /* If there is unread keyboard input, also return. */
6467 if (XINT (read_kbd) != 0
6468 && requeued_events_pending_p ())
6469 break;
6470
6471 /* If wait_for_cell. check for keyboard input
6472 but don't run any timers.
6473 ??? (It seems wrong to me to check for keyboard
6474 input at all when wait_for_cell, but the code
6475 has been this way since July 1994.
6476 Try changing this after version 19.31.) */
6477 if (! NILP (wait_for_cell)
6478 && detect_input_pending ())
6479 {
6480 swallow_events (do_display);
6481 if (detect_input_pending ())
6482 break;
6483 }
6484
6485 /* Exit now if the cell we're waiting for became non-nil. */
6486 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
6487 break;
6488 }
6489
6490 start_polling ();
6491
6492 return 0;
6493}
6494
6495
6496/* Don't confuse make-docfile by having two doc strings for this function.
6497 make-docfile does not pay attention to #if, for good reason! */
6498DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
6499 0)
6500 (name)
6501 register Lisp_Object name;
6502{
6503 return Qnil;
6504}
6505
6506 /* Don't confuse make-docfile by having two doc strings for this function.
6507 make-docfile does not pay attention to #if, for good reason! */
6508DEFUN ("process-inherit-coding-system-flag",
6509 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
6510 1, 1, 0,
6511 0)
6512 (process)
6513 register Lisp_Object process;
6514{
6515 /* Ignore the argument and return the value of
6516 inherit-process-coding-system. */
6517 return inherit_process_coding_system ? Qt : Qnil;
6518}
6519
6520/* Kill all processes associated with `buffer'.
6521 If `buffer' is nil, kill all processes.
6522 Since we have no subprocesses, this does nothing. */
6523
6524void
6525kill_buffer_processes (buffer)
6526 Lisp_Object buffer;
6527{
6528}
6529
6530void
6531init_process ()
6532{
6533}
6534
6535void
6536syms_of_process ()
6537{
6538 QCtype = intern (":type");
6539 staticpro (&QCtype);
6540
6541 defsubr (&Sget_buffer_process);
6542 defsubr (&Sprocess_inherit_coding_system_flag);
6543}
6544
6545\f
6546#endif /* not subprocesses */