(XSETMARKBIT): Remove unused macro.
[emacs.git] / src / process.c
blob8fac99570cc7405230ff2b6bec4fe2185bb571d4
1 /* Asynchronous subprocess control for GNU Emacs.
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 96, 98, 1999,
3 2001, 2002, 2003 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 #include <config.h>
24 #include <signal.h>
26 /* This file is split into two parts by the following preprocessor
27 conditional. The 'then' clause contains all of the support for
28 asynchronous subprocesses. The 'else' clause contains stub
29 versions of some of the asynchronous subprocess routines that are
30 often called elsewhere in Emacs, so we don't have to #ifdef the
31 sections that call them. */
34 #ifdef subprocesses
36 #include <stdio.h>
37 #include <errno.h>
38 #include <setjmp.h>
39 #include <sys/types.h> /* some typedefs are used in sys/file.h */
40 #include <sys/file.h>
41 #include <sys/stat.h>
42 #ifdef HAVE_UNISTD_H
43 #include <unistd.h>
44 #endif
46 #if defined(WINDOWSNT) || defined(UNIX98_PTYS)
47 #include <stdlib.h>
48 #include <fcntl.h>
49 #endif /* not WINDOWSNT */
51 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
52 #include <sys/socket.h>
53 #include <netdb.h>
54 #include <netinet/in.h>
55 #include <arpa/inet.h>
56 #ifdef NEED_NET_ERRNO_H
57 #include <net/errno.h>
58 #endif /* NEED_NET_ERRNO_H */
60 /* Are local (unix) sockets supported? */
61 #if defined (HAVE_SYS_UN_H) && !defined (NO_SOCKETS_IN_FILE_SYSTEM)
62 #if !defined (AF_LOCAL) && defined (AF_UNIX)
63 #define AF_LOCAL AF_UNIX
64 #endif
65 #ifdef AF_LOCAL
66 #define HAVE_LOCAL_SOCKETS
67 #include <sys/un.h>
68 #endif
69 #endif
70 #endif /* HAVE_SOCKETS */
72 /* TERM is a poor-man's SLIP, used on GNU/Linux. */
73 #ifdef TERM
74 #include <client.h>
75 #endif
77 /* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */
78 #ifdef HAVE_BROKEN_INET_ADDR
79 #define IN_ADDR struct in_addr
80 #define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1)
81 #else
82 #define IN_ADDR unsigned long
83 #define NUMERIC_ADDR_ERROR (numeric_addr == -1)
84 #endif
86 #if defined(BSD_SYSTEM) || defined(STRIDE)
87 #include <sys/ioctl.h>
88 #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
89 #include <fcntl.h>
90 #endif /* HAVE_PTYS and no O_NDELAY */
91 #endif /* BSD_SYSTEM || STRIDE */
93 #ifdef BROKEN_O_NONBLOCK
94 #undef O_NONBLOCK
95 #endif /* BROKEN_O_NONBLOCK */
97 #ifdef NEED_BSDTTY
98 #include <bsdtty.h>
99 #endif
101 #ifdef IRIS
102 #include <sys/sysmacros.h> /* for "minor" */
103 #endif /* not IRIS */
105 #ifdef HAVE_SYS_WAIT
106 #include <sys/wait.h>
107 #endif
109 #include "systime.h"
110 #include "systty.h"
112 #include "lisp.h"
113 #include "window.h"
114 #include "buffer.h"
115 #include "charset.h"
116 #include "coding.h"
117 #include "process.h"
118 #include "termhooks.h"
119 #include "termopts.h"
120 #include "commands.h"
121 #include "keyboard.h"
122 #include "frame.h"
123 #include "blockinput.h"
124 #include "dispextern.h"
125 #include "composite.h"
126 #include "atimer.h"
128 Lisp_Object Qprocessp;
129 Lisp_Object Qrun, Qstop, Qsignal;
130 Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
131 Lisp_Object Qlocal, Qdatagram;
132 Lisp_Object QCname, QCbuffer, QChost, QCservice, QCtype;
133 Lisp_Object QClocal, QCremote, QCcoding;
134 Lisp_Object QCserver, QCnowait, QCnoquery, QCstop;
135 Lisp_Object QCsentinel, QClog, QCoptions, QCplist;
136 Lisp_Object QCfilter_multibyte;
137 Lisp_Object Qlast_nonmenu_event;
138 /* QCfamily is declared and initialized in xfaces.c,
139 QCfilter in keyboard.c. */
140 extern Lisp_Object QCfamily, QCfilter;
142 /* Qexit is declared and initialized in eval.c. */
144 /* QCfamily is defined in xfaces.c. */
145 extern Lisp_Object QCfamily;
146 /* QCfilter is defined in keyboard.c. */
147 extern Lisp_Object QCfilter;
149 /* a process object is a network connection when its childp field is neither
150 Qt nor Qnil but is instead a property list (KEY VAL ...). */
152 #ifdef HAVE_SOCKETS
153 #define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp))
154 #define NETCONN1_P(p) (GC_CONSP ((p)->childp))
155 #else
156 #define NETCONN_P(p) 0
157 #define NETCONN1_P(p) 0
158 #endif /* HAVE_SOCKETS */
160 /* Define first descriptor number available for subprocesses. */
161 #ifdef VMS
162 #define FIRST_PROC_DESC 1
163 #else /* Not VMS */
164 #define FIRST_PROC_DESC 3
165 #endif
167 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
168 testing SIGCHLD. */
170 #if !defined (SIGCHLD) && defined (SIGCLD)
171 #define SIGCHLD SIGCLD
172 #endif /* SIGCLD */
174 #include "syssignal.h"
176 #include "syswait.h"
178 extern void set_waiting_for_input P_ ((EMACS_TIME *));
180 #ifndef USE_CRT_DLL
181 extern int errno;
182 #endif
183 #ifdef VMS
184 extern char *sys_errlist[];
185 #endif
187 #ifndef HAVE_H_ERRNO
188 extern int h_errno;
189 #endif
191 /* t means use pty, nil means use a pipe,
192 maybe other values to come. */
193 static Lisp_Object Vprocess_connection_type;
195 #ifdef SKTPAIR
196 #ifndef HAVE_SOCKETS
197 #include <sys/socket.h>
198 #endif
199 #endif /* SKTPAIR */
201 /* These next two vars are non-static since sysdep.c uses them in the
202 emulation of `select'. */
203 /* Number of events of change of status of a process. */
204 int process_tick;
205 /* Number of events for which the user or sentinel has been notified. */
206 int update_tick;
208 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
210 #ifdef BROKEN_NON_BLOCKING_CONNECT
211 #undef NON_BLOCKING_CONNECT
212 #else
213 #ifndef NON_BLOCKING_CONNECT
214 #ifdef HAVE_SOCKETS
215 #ifdef HAVE_SELECT
216 #if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX)
217 #if defined (O_NONBLOCK) || defined (O_NDELAY)
218 #if defined (EWOULDBLOCK) || defined (EINPROGRESS)
219 #define NON_BLOCKING_CONNECT
220 #endif /* EWOULDBLOCK || EINPROGRESS */
221 #endif /* O_NONBLOCK || O_NDELAY */
222 #endif /* HAVE_GETPEERNAME || GNU_LINUX */
223 #endif /* HAVE_SELECT */
224 #endif /* HAVE_SOCKETS */
225 #endif /* NON_BLOCKING_CONNECT */
226 #endif /* BROKEN_NON_BLOCKING_CONNECT */
228 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on
229 this system. We need to read full packets, so we need a
230 "non-destructive" select. So we require either native select,
231 or emulation of select using FIONREAD. */
233 #ifdef BROKEN_DATAGRAM_SOCKETS
234 #undef DATAGRAM_SOCKETS
235 #else
236 #ifndef DATAGRAM_SOCKETS
237 #ifdef HAVE_SOCKETS
238 #if defined (HAVE_SELECT) || defined (FIONREAD)
239 #if defined (HAVE_SENDTO) && defined (HAVE_RECVFROM) && defined (EMSGSIZE)
240 #define DATAGRAM_SOCKETS
241 #endif /* HAVE_SENDTO && HAVE_RECVFROM && EMSGSIZE */
242 #endif /* HAVE_SELECT || FIONREAD */
243 #endif /* HAVE_SOCKETS */
244 #endif /* DATAGRAM_SOCKETS */
245 #endif /* BROKEN_DATAGRAM_SOCKETS */
247 #ifdef TERM
248 #undef NON_BLOCKING_CONNECT
249 #undef DATAGRAM_SOCKETS
250 #endif
253 #include "sysselect.h"
255 extern int keyboard_bit_set P_ ((SELECT_TYPE *));
257 /* If we support a window system, turn on the code to poll periodically
258 to detect C-g. It isn't actually used when doing interrupt input. */
259 #ifdef HAVE_WINDOW_SYSTEM
260 #define POLL_FOR_INPUT
261 #endif
263 /* Mask of bits indicating the descriptors that we wait for input on. */
265 static SELECT_TYPE input_wait_mask;
267 /* Mask that excludes keyboard input descriptor (s). */
269 static SELECT_TYPE non_keyboard_wait_mask;
271 /* Mask that excludes process input descriptor (s). */
273 static SELECT_TYPE non_process_wait_mask;
275 /* Mask of bits indicating the descriptors that we wait for connect to
276 complete on. Once they complete, they are removed from this mask
277 and added to the input_wait_mask and non_keyboard_wait_mask. */
279 static SELECT_TYPE connect_wait_mask;
281 /* Number of bits set in connect_wait_mask. */
282 static int num_pending_connects;
284 /* The largest descriptor currently in use for a process object. */
285 static int max_process_desc;
287 /* The largest descriptor currently in use for keyboard input. */
288 static int max_keyboard_desc;
290 /* Nonzero means delete a process right away if it exits. */
291 static int delete_exited_processes;
293 /* Indexed by descriptor, gives the process (if any) for that descriptor */
294 Lisp_Object chan_process[MAXDESC];
296 /* Alist of elements (NAME . PROCESS) */
297 Lisp_Object Vprocess_alist;
299 /* Buffered-ahead input char from process, indexed by channel.
300 -1 means empty (no char is buffered).
301 Used on sys V where the only way to tell if there is any
302 output from the process is to read at least one char.
303 Always -1 on systems that support FIONREAD. */
305 /* Don't make static; need to access externally. */
306 int proc_buffered_char[MAXDESC];
308 /* Table of `struct coding-system' for each process. */
309 static struct coding_system *proc_decode_coding_system[MAXDESC];
310 static struct coding_system *proc_encode_coding_system[MAXDESC];
312 #ifdef DATAGRAM_SOCKETS
313 /* Table of `partner address' for datagram sockets. */
314 struct sockaddr_and_len {
315 struct sockaddr *sa;
316 int len;
317 } datagram_address[MAXDESC];
318 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
319 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XINT (XPROCESS (proc)->infd)].sa != 0)
320 #else
321 #define DATAGRAM_CHAN_P(chan) (0)
322 #define DATAGRAM_CONN_P(proc) (0)
323 #endif
325 static Lisp_Object get_process ();
326 static void exec_sentinel ();
328 extern EMACS_TIME timer_check ();
329 extern int timers_run;
331 /* Maximum number of bytes to send to a pty without an eof. */
332 static int pty_max_bytes;
334 extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system;
336 #ifdef HAVE_PTYS
337 #ifdef HAVE_PTY_H
338 #include <pty.h>
339 #endif
340 /* The file name of the pty opened by allocate_pty. */
342 static char pty_name[24];
343 #endif
345 /* Compute the Lisp form of the process status, p->status, from
346 the numeric status that was returned by `wait'. */
348 Lisp_Object status_convert ();
350 void
351 update_status (p)
352 struct Lisp_Process *p;
354 union { int i; WAITTYPE wt; } u;
355 u.i = XFASTINT (p->raw_status_low) + (XFASTINT (p->raw_status_high) << 16);
356 p->status = status_convert (u.wt);
357 p->raw_status_low = Qnil;
358 p->raw_status_high = Qnil;
361 /* Convert a process status word in Unix format to
362 the list that we use internally. */
364 Lisp_Object
365 status_convert (w)
366 WAITTYPE w;
368 if (WIFSTOPPED (w))
369 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
370 else if (WIFEXITED (w))
371 return Fcons (Qexit, Fcons (make_number (WRETCODE (w)),
372 WCOREDUMP (w) ? Qt : Qnil));
373 else if (WIFSIGNALED (w))
374 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
375 WCOREDUMP (w) ? Qt : Qnil));
376 else
377 return Qrun;
380 /* Given a status-list, extract the three pieces of information
381 and store them individually through the three pointers. */
383 void
384 decode_status (l, symbol, code, coredump)
385 Lisp_Object l;
386 Lisp_Object *symbol;
387 int *code;
388 int *coredump;
390 Lisp_Object tem;
392 if (SYMBOLP (l))
394 *symbol = l;
395 *code = 0;
396 *coredump = 0;
398 else
400 *symbol = XCAR (l);
401 tem = XCDR (l);
402 *code = XFASTINT (XCAR (tem));
403 tem = XCDR (tem);
404 *coredump = !NILP (tem);
408 /* Return a string describing a process status list. */
410 Lisp_Object
411 status_message (status)
412 Lisp_Object status;
414 Lisp_Object symbol;
415 int code, coredump;
416 Lisp_Object string, string2;
418 decode_status (status, &symbol, &code, &coredump);
420 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
422 char *signame;
423 synchronize_system_messages_locale ();
424 signame = strsignal (code);
425 if (signame == 0)
426 signame = "unknown";
427 string = build_string (signame);
428 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
429 SSET (string, 0, DOWNCASE (SREF (string, 0)));
430 return concat2 (string, string2);
432 else if (EQ (symbol, Qexit))
434 if (code == 0)
435 return build_string ("finished\n");
436 string = Fnumber_to_string (make_number (code));
437 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
438 return concat3 (build_string ("exited abnormally with code "),
439 string, string2);
441 else if (EQ (symbol, Qfailed))
443 string = Fnumber_to_string (make_number (code));
444 string2 = build_string ("\n");
445 return concat3 (build_string ("failed with code "),
446 string, string2);
448 else
449 return Fcopy_sequence (Fsymbol_name (symbol));
452 #ifdef HAVE_PTYS
454 /* Open an available pty, returning a file descriptor.
455 Return -1 on failure.
456 The file name of the terminal corresponding to the pty
457 is left in the variable pty_name. */
460 allocate_pty ()
462 register int c, i;
463 int fd;
465 #ifdef PTY_ITERATION
466 PTY_ITERATION
467 #else
468 for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
469 for (i = 0; i < 16; i++)
470 #endif
472 struct stat stb; /* Used in some PTY_OPEN. */
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 */
479 #ifdef PTY_OPEN
480 PTY_OPEN;
481 #else /* no PTY_OPEN */
483 # ifdef IRIS
484 /* Unusual IRIS code */
485 *ptyv = emacs_open ("/dev/ptc", O_RDWR | O_NDELAY, 0);
486 if (fd < 0)
487 return -1;
488 if (fstat (fd, &stb) < 0)
489 return -1;
490 # else /* not IRIS */
491 { /* Some systems name their pseudoterminals so that there are gaps in
492 the usual sequence - for example, on HP9000/S700 systems, there
493 are no pseudoterminals with names ending in 'f'. So we wait for
494 three failures in a row before deciding that we've reached the
495 end of the ptys. */
496 int failed_count = 0;
498 if (stat (pty_name, &stb) < 0)
500 failed_count++;
501 if (failed_count >= 3)
502 return -1;
504 else
505 failed_count = 0;
507 # ifdef O_NONBLOCK
508 fd = emacs_open (pty_name, O_RDWR | O_NONBLOCK, 0);
509 # else
510 fd = emacs_open (pty_name, O_RDWR | O_NDELAY, 0);
511 # endif
512 # endif /* not IRIS */
514 #endif /* no PTY_OPEN */
516 if (fd >= 0)
518 /* check to make certain that both sides are available
519 this avoids a nasty yet stupid bug in rlogins */
520 #ifdef PTY_TTY_NAME_SPRINTF
521 PTY_TTY_NAME_SPRINTF
522 #else
523 sprintf (pty_name, "/dev/tty%c%x", c, i);
524 #endif /* no PTY_TTY_NAME_SPRINTF */
525 #ifndef UNIPLUS
526 if (access (pty_name, 6) != 0)
528 emacs_close (fd);
529 # if !defined(IRIS) && !defined(__sgi)
530 continue;
531 # else
532 return -1;
533 # endif /* IRIS */
535 #endif /* not UNIPLUS */
536 setup_pty (fd);
537 return fd;
540 return -1;
542 #endif /* HAVE_PTYS */
544 Lisp_Object
545 make_process (name)
546 Lisp_Object name;
548 register Lisp_Object val, tem, name1;
549 register struct Lisp_Process *p;
550 char suffix[10];
551 register int i;
553 p = allocate_process ();
555 XSETINT (p->infd, -1);
556 XSETINT (p->outfd, -1);
557 XSETFASTINT (p->pid, 0);
558 XSETFASTINT (p->tick, 0);
559 XSETFASTINT (p->update_tick, 0);
560 p->raw_status_low = Qnil;
561 p->raw_status_high = Qnil;
562 p->status = Qrun;
563 p->mark = Fmake_marker ();
565 /* If name is already in use, modify it until it is unused. */
567 name1 = name;
568 for (i = 1; ; i++)
570 tem = Fget_process (name1);
571 if (NILP (tem)) break;
572 sprintf (suffix, "<%d>", i);
573 name1 = concat2 (name, build_string (suffix));
575 name = name1;
576 p->name = name;
577 XSETPROCESS (val, p);
578 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
579 return val;
582 void
583 remove_process (proc)
584 register Lisp_Object proc;
586 register Lisp_Object pair;
588 pair = Frassq (proc, Vprocess_alist);
589 Vprocess_alist = Fdelq (pair, Vprocess_alist);
591 deactivate_process (proc);
594 /* Setup coding systems of PROCESS. */
596 void
597 setup_process_coding_systems (process)
598 Lisp_Object process;
600 struct Lisp_Process *p = XPROCESS (process);
601 int inch = XINT (p->infd);
602 int outch = XINT (p->outfd);
604 if (inch < 0 || outch < 0)
605 return;
607 if (!proc_decode_coding_system[inch])
608 proc_decode_coding_system[inch]
609 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
610 setup_coding_system (p->decode_coding_system,
611 proc_decode_coding_system[inch]);
612 if (! NILP (p->filter))
614 if (NILP (p->filter_multibyte))
615 setup_raw_text_coding_system (proc_decode_coding_system[inch]);
617 else if (BUFFERP (p->buffer))
619 if (NILP (XBUFFER (p->buffer)->enable_multibyte_characters))
620 setup_raw_text_coding_system (proc_decode_coding_system[inch]);
623 if (!proc_encode_coding_system[outch])
624 proc_encode_coding_system[outch]
625 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
626 setup_coding_system (p->encode_coding_system,
627 proc_encode_coding_system[outch]);
630 DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
631 doc: /* Return t if OBJECT is a process. */)
632 (object)
633 Lisp_Object object;
635 return PROCESSP (object) ? Qt : Qnil;
638 DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
639 doc: /* Return the process named NAME, or nil if there is none. */)
640 (name)
641 register Lisp_Object name;
643 if (PROCESSP (name))
644 return name;
645 CHECK_STRING (name);
646 return Fcdr (Fassoc (name, Vprocess_alist));
649 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
650 doc: /* Return the (or a) process associated with BUFFER.
651 BUFFER may be a buffer or the name of one. */)
652 (buffer)
653 register Lisp_Object buffer;
655 register Lisp_Object buf, tail, proc;
657 if (NILP (buffer)) return Qnil;
658 buf = Fget_buffer (buffer);
659 if (NILP (buf)) return Qnil;
661 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
663 proc = Fcdr (Fcar (tail));
664 if (PROCESSP (proc) && EQ (XPROCESS (proc)->buffer, buf))
665 return proc;
667 return Qnil;
670 /* This is how commands for the user decode process arguments. It
671 accepts a process, a process name, a buffer, a buffer name, or nil.
672 Buffers denote the first process in the buffer, and nil denotes the
673 current buffer. */
675 static Lisp_Object
676 get_process (name)
677 register Lisp_Object name;
679 register Lisp_Object proc, obj;
680 if (STRINGP (name))
682 obj = Fget_process (name);
683 if (NILP (obj))
684 obj = Fget_buffer (name);
685 if (NILP (obj))
686 error ("Process %s does not exist", SDATA (name));
688 else if (NILP (name))
689 obj = Fcurrent_buffer ();
690 else
691 obj = name;
693 /* Now obj should be either a buffer object or a process object.
695 if (BUFFERP (obj))
697 proc = Fget_buffer_process (obj);
698 if (NILP (proc))
699 error ("Buffer %s has no process", SDATA (XBUFFER (obj)->name));
701 else
703 CHECK_PROCESS (obj);
704 proc = obj;
706 return proc;
709 DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
710 doc: /* Delete PROCESS: kill it and forget about it immediately.
711 PROCESS may be a process, a buffer, the name of a process or buffer, or
712 nil, indicating the current buffer's process. */)
713 (process)
714 register Lisp_Object process;
716 process = get_process (process);
717 XPROCESS (process)->raw_status_low = Qnil;
718 XPROCESS (process)->raw_status_high = Qnil;
719 if (NETCONN_P (process))
721 XPROCESS (process)->status = Fcons (Qexit, Fcons (make_number (0), Qnil));
722 XSETINT (XPROCESS (process)->tick, ++process_tick);
724 else if (XINT (XPROCESS (process)->infd) >= 0)
726 Fkill_process (process, Qnil);
727 /* Do this now, since remove_process will make sigchld_handler do nothing. */
728 XPROCESS (process)->status
729 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
730 XSETINT (XPROCESS (process)->tick, ++process_tick);
731 status_notify ();
733 remove_process (process);
734 return Qnil;
737 DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
738 doc: /* Return the status of PROCESS.
739 The returned value is one of the following symbols:
740 run -- for a process that is running.
741 stop -- for a process stopped but continuable.
742 exit -- for a process that has exited.
743 signal -- for a process that has got a fatal signal.
744 open -- for a network stream connection that is open.
745 listen -- for a network stream server that is listening.
746 closed -- for a network stream connection that is closed.
747 connect -- when waiting for a non-blocking connection to complete.
748 failed -- when a non-blocking connection has failed.
749 nil -- if arg is a process name and no such process exists.
750 PROCESS may be a process, a buffer, the name of a process, or
751 nil, indicating the current buffer's process. */)
752 (process)
753 register Lisp_Object process;
755 register struct Lisp_Process *p;
756 register Lisp_Object status;
758 if (STRINGP (process))
759 process = Fget_process (process);
760 else
761 process = get_process (process);
763 if (NILP (process))
764 return process;
766 p = XPROCESS (process);
767 if (!NILP (p->raw_status_low))
768 update_status (p);
769 status = p->status;
770 if (CONSP (status))
771 status = XCAR (status);
772 if (NETCONN1_P (p))
774 if (EQ (status, Qexit))
775 status = Qclosed;
776 else if (EQ (p->command, Qt))
777 status = Qstop;
778 else if (EQ (status, Qrun))
779 status = Qopen;
781 return status;
784 DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
785 1, 1, 0,
786 doc: /* Return the exit status of PROCESS or the signal number that killed it.
787 If PROCESS has not yet exited or died, return 0. */)
788 (process)
789 register Lisp_Object process;
791 CHECK_PROCESS (process);
792 if (!NILP (XPROCESS (process)->raw_status_low))
793 update_status (XPROCESS (process));
794 if (CONSP (XPROCESS (process)->status))
795 return XCAR (XCDR (XPROCESS (process)->status));
796 return make_number (0);
799 DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
800 doc: /* Return the process id of PROCESS.
801 This is the pid of the Unix process which PROCESS uses or talks to.
802 For a network connection, this value is nil. */)
803 (process)
804 register Lisp_Object process;
806 CHECK_PROCESS (process);
807 return XPROCESS (process)->pid;
810 DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
811 doc: /* Return the name of PROCESS, as a string.
812 This is the name of the program invoked in PROCESS,
813 possibly modified to make it unique among process names. */)
814 (process)
815 register Lisp_Object process;
817 CHECK_PROCESS (process);
818 return XPROCESS (process)->name;
821 DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
822 doc: /* Return the command that was executed to start PROCESS.
823 This is a list of strings, the first string being the program executed
824 and the rest of the strings being the arguments given to it.
825 For a non-child channel, this is nil. */)
826 (process)
827 register Lisp_Object process;
829 CHECK_PROCESS (process);
830 return XPROCESS (process)->command;
833 DEFUN ("process-tty-name", Fprocess_tty_name, Sprocess_tty_name, 1, 1, 0,
834 doc: /* Return the name of the terminal PROCESS uses, or nil if none.
835 This is the terminal that the process itself reads and writes on,
836 not the name of the pty that Emacs uses to talk with that terminal. */)
837 (process)
838 register Lisp_Object process;
840 CHECK_PROCESS (process);
841 return XPROCESS (process)->tty_name;
844 DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
845 2, 2, 0,
846 doc: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil). */)
847 (process, buffer)
848 register Lisp_Object process, buffer;
850 struct Lisp_Process *p;
852 CHECK_PROCESS (process);
853 if (!NILP (buffer))
854 CHECK_BUFFER (buffer);
855 p = XPROCESS (process);
856 p->buffer = buffer;
857 if (NETCONN1_P (p))
858 p->childp = Fplist_put (p->childp, QCbuffer, buffer);
859 setup_process_coding_systems (process);
860 return buffer;
863 DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
864 1, 1, 0,
865 doc: /* Return the buffer PROCESS is associated with.
866 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
867 (process)
868 register Lisp_Object process;
870 CHECK_PROCESS (process);
871 return XPROCESS (process)->buffer;
874 DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
875 1, 1, 0,
876 doc: /* Return the marker for the end of the last output from PROCESS. */)
877 (process)
878 register Lisp_Object process;
880 CHECK_PROCESS (process);
881 return XPROCESS (process)->mark;
884 DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
885 2, 2, 0,
886 doc: /* Give PROCESS the filter function FILTER; nil means no filter.
887 t means stop accepting output from the process.
889 When a process has a filter, its buffer is not used for output.
890 Instead, each time it does output, the entire string of output is
891 passed to the filter.
893 The filter gets two arguments: the process and the string of output.
894 The string argument is normally a multibyte string, except:
895 - if the process' input coding system is no-conversion or raw-text,
896 it is a unibyte string (the non-converted input), or else
897 - if `default-enable-multibyte-characters' is nil, it is a unibyte
898 string (the result of converting the decoded input multibyte
899 string to unibyte with `string-make-unibyte'). */)
900 (process, filter)
901 register Lisp_Object process, filter;
903 struct Lisp_Process *p;
905 CHECK_PROCESS (process);
906 p = XPROCESS (process);
908 /* Don't signal an error if the process' input file descriptor
909 is closed. This could make debugging Lisp more difficult,
910 for example when doing something like
912 (setq process (start-process ...))
913 (debug)
914 (set-process-filter process ...) */
916 if (XINT (p->infd) >= 0)
918 if (EQ (filter, Qt) && !EQ (p->status, Qlisten))
920 FD_CLR (XINT (p->infd), &input_wait_mask);
921 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask);
923 else if (EQ (p->filter, Qt)
924 && !EQ (p->command, Qt)) /* Network process not stopped. */
926 FD_SET (XINT (p->infd), &input_wait_mask);
927 FD_SET (XINT (p->infd), &non_keyboard_wait_mask);
931 p->filter = filter;
932 if (NETCONN1_P (p))
933 p->childp = Fplist_put (p->childp, QCfilter, filter);
934 setup_process_coding_systems (process);
935 return filter;
938 DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
939 1, 1, 0,
940 doc: /* Returns the filter function of PROCESS; nil if none.
941 See `set-process-filter' for more info on filter functions. */)
942 (process)
943 register Lisp_Object process;
945 CHECK_PROCESS (process);
946 return XPROCESS (process)->filter;
949 DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
950 2, 2, 0,
951 doc: /* Give PROCESS the sentinel SENTINEL; nil for none.
952 The sentinel is called as a function when the process changes state.
953 It gets two arguments: the process, and a string describing the change. */)
954 (process, sentinel)
955 register Lisp_Object process, sentinel;
957 CHECK_PROCESS (process);
958 XPROCESS (process)->sentinel = sentinel;
959 return sentinel;
962 DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
963 1, 1, 0,
964 doc: /* Return the sentinel of PROCESS; nil if none.
965 See `set-process-sentinel' for more info on sentinels. */)
966 (process)
967 register Lisp_Object process;
969 CHECK_PROCESS (process);
970 return XPROCESS (process)->sentinel;
973 DEFUN ("set-process-window-size", Fset_process_window_size,
974 Sset_process_window_size, 3, 3, 0,
975 doc: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
976 (process, height, width)
977 register Lisp_Object process, height, width;
979 CHECK_PROCESS (process);
980 CHECK_NATNUM (height);
981 CHECK_NATNUM (width);
983 if (XINT (XPROCESS (process)->infd) < 0
984 || set_window_size (XINT (XPROCESS (process)->infd),
985 XINT (height), XINT (width)) <= 0)
986 return Qnil;
987 else
988 return Qt;
991 DEFUN ("set-process-inherit-coding-system-flag",
992 Fset_process_inherit_coding_system_flag,
993 Sset_process_inherit_coding_system_flag, 2, 2, 0,
994 doc: /* Determine whether buffer of PROCESS will inherit coding-system.
995 If the second argument FLAG is non-nil, then the variable
996 `buffer-file-coding-system' of the buffer associated with PROCESS
997 will be bound to the value of the coding system used to decode
998 the process output.
1000 This is useful when the coding system specified for the process buffer
1001 leaves either the character code conversion or the end-of-line conversion
1002 unspecified, or if the coding system used to decode the process output
1003 is more appropriate for saving the process buffer.
1005 Binding the variable `inherit-process-coding-system' to non-nil before
1006 starting the process is an alternative way of setting the inherit flag
1007 for the process which will run. */)
1008 (process, flag)
1009 register Lisp_Object process, flag;
1011 CHECK_PROCESS (process);
1012 XPROCESS (process)->inherit_coding_system_flag = flag;
1013 return flag;
1016 DEFUN ("process-inherit-coding-system-flag",
1017 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
1018 1, 1, 0,
1019 doc: /* Return the value of inherit-coding-system flag for PROCESS.
1020 If this flag is t, `buffer-file-coding-system' of the buffer
1021 associated with PROCESS will inherit the coding system used to decode
1022 the process output. */)
1023 (process)
1024 register Lisp_Object process;
1026 CHECK_PROCESS (process);
1027 return XPROCESS (process)->inherit_coding_system_flag;
1030 DEFUN ("set-process-query-on-exit-flag",
1031 Fset_process_query_on_exit_flag, Sset_process_query_on_exit_flag,
1032 2, 2, 0,
1033 doc: /* Specify if query is needed for PROCESS when Emacs is exited.
1034 If the second argument FLAG is non-nil, emacs will query the user before
1035 exiting if PROCESS is running. */)
1036 (process, flag)
1037 register Lisp_Object process, flag;
1039 CHECK_PROCESS (process);
1040 XPROCESS (process)->kill_without_query = Fnull (flag);
1041 return flag;
1044 DEFUN ("process-query-on-exit-flag",
1045 Fprocess_query_on_exit_flag, Sprocess_query_on_exit_flag,
1046 1, 1, 0,
1047 doc: /* Return the current value of query on exit flag for PROCESS. */)
1048 (process)
1049 register Lisp_Object process;
1051 CHECK_PROCESS (process);
1052 return Fnull (XPROCESS (process)->kill_without_query);
1055 #ifdef DATAGRAM_SOCKETS
1056 Lisp_Object Fprocess_datagram_address ();
1057 #endif
1059 DEFUN ("process-contact", Fprocess_contact, Sprocess_contact,
1060 1, 2, 0,
1061 doc: /* Return the contact info of PROCESS; t for a real child.
1062 For a net connection, the value depends on the optional KEY arg.
1063 If KEY is nil, value is a cons cell of the form (HOST SERVICE),
1064 if KEY is t, the complete contact information for the connection is
1065 returned, else the specific value for the keyword KEY is returned.
1066 See `make-network-process' for a list of keywords. */)
1067 (process, key)
1068 register Lisp_Object process, key;
1070 Lisp_Object contact;
1072 CHECK_PROCESS (process);
1073 contact = XPROCESS (process)->childp;
1075 #ifdef DATAGRAM_SOCKETS
1076 if (DATAGRAM_CONN_P (process)
1077 && (EQ (key, Qt) || EQ (key, QCremote)))
1078 contact = Fplist_put (contact, QCremote,
1079 Fprocess_datagram_address (process));
1080 #endif
1082 if (!NETCONN_P (process) || EQ (key, Qt))
1083 return contact;
1084 if (NILP (key))
1085 return Fcons (Fplist_get (contact, QChost),
1086 Fcons (Fplist_get (contact, QCservice), Qnil));
1087 return Fplist_get (contact, key);
1090 DEFUN ("process-plist", Fprocess_plist, Sprocess_plist,
1091 1, 1, 0,
1092 doc: /* Return the plist of PROCESS. */)
1093 (process)
1094 register Lisp_Object process;
1096 CHECK_PROCESS (process);
1097 return XPROCESS (process)->plist;
1100 DEFUN ("set-process-plist", Fset_process_plist, Sset_process_plist,
1101 2, 2, 0,
1102 doc: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
1103 (process, plist)
1104 register Lisp_Object process, plist;
1106 CHECK_PROCESS (process);
1107 CHECK_LIST (plist);
1109 XPROCESS (process)->plist = plist;
1110 return plist;
1113 #if 0 /* Turned off because we don't currently record this info
1114 in the process. Perhaps add it. */
1115 DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0,
1116 doc: /* Return the connection type of PROCESS.
1117 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1118 a socket connection. */)
1119 (process)
1120 Lisp_Object process;
1122 return XPROCESS (process)->type;
1124 #endif
1126 #ifdef HAVE_SOCKETS
1127 DEFUN ("format-network-address", Fformat_network_address, Sformat_network_address,
1128 1, 2, 0,
1129 doc: /* Convert network ADDRESS from internal format to a string.
1130 If optional second argument OMIT-PORT is non-nil, don't include a port
1131 number in the string; in this case, interpret a 4 element vector as an
1132 IP address. Returns nil if format of ADDRESS is invalid. */)
1133 (address, omit_port)
1134 Lisp_Object address, omit_port;
1136 if (NILP (address))
1137 return Qnil;
1139 if (STRINGP (address)) /* AF_LOCAL */
1140 return address;
1142 if (VECTORP (address)) /* AF_INET */
1144 register struct Lisp_Vector *p = XVECTOR (address);
1145 Lisp_Object args[6];
1146 int nargs, i;
1148 if (!NILP (omit_port) && (p->size == 4 || p->size == 5))
1150 args[0] = build_string ("%d.%d.%d.%d");
1151 nargs = 4;
1153 else if (p->size == 5)
1155 args[0] = build_string ("%d.%d.%d.%d:%d");
1156 nargs = 5;
1158 else
1159 return Qnil;
1161 for (i = 0; i < nargs; i++)
1162 args[i+1] = p->contents[i];
1163 return Fformat (nargs+1, args);
1166 if (CONSP (address))
1168 Lisp_Object args[2];
1169 args[0] = build_string ("<Family %d>");
1170 args[1] = Fcar (address);
1171 return Fformat (2, args);
1175 return Qnil;
1177 #endif
1179 Lisp_Object
1180 list_processes_1 (query_only)
1181 Lisp_Object query_only;
1183 register Lisp_Object tail, tem;
1184 Lisp_Object proc, minspace, tem1;
1185 register struct Lisp_Process *p;
1186 char tembuf[300];
1187 int w_proc, w_buffer, w_tty;
1188 Lisp_Object i_status, i_buffer, i_tty, i_command;
1190 w_proc = 4; /* Proc */
1191 w_buffer = 6; /* Buffer */
1192 w_tty = 0; /* Omit if no ttys */
1194 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
1196 int i;
1198 proc = Fcdr (Fcar (tail));
1199 p = XPROCESS (proc);
1200 if (NILP (p->childp))
1201 continue;
1202 if (!NILP (query_only) && !NILP (p->kill_without_query))
1203 continue;
1204 if (STRINGP (p->name)
1205 && ( i = SCHARS (p->name), (i > w_proc)))
1206 w_proc = i;
1207 if (!NILP (p->buffer))
1209 if (NILP (XBUFFER (p->buffer)->name) && w_buffer < 8)
1210 w_buffer = 8; /* (Killed) */
1211 else if ((i = SCHARS (XBUFFER (p->buffer)->name), (i > w_buffer)))
1212 w_buffer = i;
1214 if (STRINGP (p->tty_name)
1215 && (i = SCHARS (p->tty_name), (i > w_tty)))
1216 w_tty = i;
1219 XSETFASTINT (i_status, w_proc + 1);
1220 XSETFASTINT (i_buffer, XFASTINT (i_status) + 9);
1221 if (w_tty)
1223 XSETFASTINT (i_tty, XFASTINT (i_buffer) + w_buffer + 1);
1224 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_tty + 1);
1225 } else {
1226 i_tty = Qnil;
1227 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_buffer + 1);
1230 XSETFASTINT (minspace, 1);
1232 set_buffer_internal (XBUFFER (Vstandard_output));
1233 Fbuffer_disable_undo (Vstandard_output);
1235 current_buffer->truncate_lines = Qt;
1237 write_string ("Proc", -1);
1238 Findent_to (i_status, minspace); write_string ("Status", -1);
1239 Findent_to (i_buffer, minspace); write_string ("Buffer", -1);
1240 if (!NILP (i_tty))
1242 Findent_to (i_tty, minspace); write_string ("Tty", -1);
1244 Findent_to (i_command, minspace); write_string ("Command", -1);
1245 write_string ("\n", -1);
1247 write_string ("----", -1);
1248 Findent_to (i_status, minspace); write_string ("------", -1);
1249 Findent_to (i_buffer, minspace); write_string ("------", -1);
1250 if (!NILP (i_tty))
1252 Findent_to (i_tty, minspace); write_string ("---", -1);
1254 Findent_to (i_command, minspace); write_string ("-------", -1);
1255 write_string ("\n", -1);
1257 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
1259 Lisp_Object symbol;
1261 proc = Fcdr (Fcar (tail));
1262 p = XPROCESS (proc);
1263 if (NILP (p->childp))
1264 continue;
1265 if (!NILP (query_only) && !NILP (p->kill_without_query))
1266 continue;
1268 Finsert (1, &p->name);
1269 Findent_to (i_status, minspace);
1271 if (!NILP (p->raw_status_low))
1272 update_status (p);
1273 symbol = p->status;
1274 if (CONSP (p->status))
1275 symbol = XCAR (p->status);
1278 if (EQ (symbol, Qsignal))
1280 Lisp_Object tem;
1281 tem = Fcar (Fcdr (p->status));
1282 #ifdef VMS
1283 if (XINT (tem) < NSIG)
1284 write_string (sys_errlist [XINT (tem)], -1);
1285 else
1286 #endif
1287 Fprinc (symbol, Qnil);
1289 else if (NETCONN1_P (p))
1291 if (EQ (symbol, Qexit))
1292 write_string ("closed", -1);
1293 else if (EQ (p->command, Qt))
1294 write_string ("stopped", -1);
1295 else if (EQ (symbol, Qrun))
1296 write_string ("open", -1);
1297 else
1298 Fprinc (symbol, Qnil);
1300 else
1301 Fprinc (symbol, Qnil);
1303 if (EQ (symbol, Qexit))
1305 Lisp_Object tem;
1306 tem = Fcar (Fcdr (p->status));
1307 if (XFASTINT (tem))
1309 sprintf (tembuf, " %d", (int) XFASTINT (tem));
1310 write_string (tembuf, -1);
1314 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
1315 remove_process (proc);
1317 Findent_to (i_buffer, minspace);
1318 if (NILP (p->buffer))
1319 insert_string ("(none)");
1320 else if (NILP (XBUFFER (p->buffer)->name))
1321 insert_string ("(Killed)");
1322 else
1323 Finsert (1, &XBUFFER (p->buffer)->name);
1325 if (!NILP (i_tty))
1327 Findent_to (i_tty, minspace);
1328 if (STRINGP (p->tty_name))
1329 Finsert (1, &p->tty_name);
1332 Findent_to (i_command, minspace);
1334 if (EQ (p->status, Qlisten))
1336 Lisp_Object port = Fplist_get (p->childp, QCservice);
1337 if (INTEGERP (port))
1338 port = Fnumber_to_string (port);
1339 if (NILP (port))
1340 port = Fformat_network_address (Fplist_get (p->childp, QClocal), Qnil);
1341 sprintf (tembuf, "(network %s server on %s)\n",
1342 (DATAGRAM_CHAN_P (XINT (p->infd)) ? "datagram" : "stream"),
1343 (STRINGP (port) ? (char *)SDATA (port) : "?"));
1344 insert_string (tembuf);
1346 else if (NETCONN1_P (p))
1348 /* For a local socket, there is no host name,
1349 so display service instead. */
1350 Lisp_Object host = Fplist_get (p->childp, QChost);
1351 if (!STRINGP (host))
1353 host = Fplist_get (p->childp, QCservice);
1354 if (INTEGERP (host))
1355 host = Fnumber_to_string (host);
1357 if (NILP (host))
1358 host = Fformat_network_address (Fplist_get (p->childp, QCremote), Qnil);
1359 sprintf (tembuf, "(network %s connection to %s)\n",
1360 (DATAGRAM_CHAN_P (XINT (p->infd)) ? "datagram" : "stream"),
1361 (STRINGP (host) ? (char *)SDATA (host) : "?"));
1362 insert_string (tembuf);
1364 else
1366 tem = p->command;
1367 while (1)
1369 tem1 = Fcar (tem);
1370 Finsert (1, &tem1);
1371 tem = Fcdr (tem);
1372 if (NILP (tem))
1373 break;
1374 insert_string (" ");
1376 insert_string ("\n");
1379 return Qnil;
1382 DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 1, "P",
1383 doc: /* Display a list of all processes.
1384 If optional argument QUERY-ONLY is non-nil, only processes with
1385 the query-on-exit flag set will be listed.
1386 Any process listed as exited or signaled is actually eliminated
1387 after the listing is made. */)
1388 (query_only)
1389 Lisp_Object query_only;
1391 internal_with_output_to_temp_buffer ("*Process List*",
1392 list_processes_1, query_only);
1393 return Qnil;
1396 DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
1397 doc: /* Return a list of all processes. */)
1400 return Fmapcar (Qcdr, Vprocess_alist);
1403 /* Starting asynchronous inferior processes. */
1405 static Lisp_Object start_process_unwind ();
1407 DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
1408 doc: /* Start a program in a subprocess. Return the process object for it.
1409 NAME is name for process. It is modified if necessary to make it unique.
1410 BUFFER is the buffer or (buffer-name) to associate with the process.
1411 Process output goes at end of that buffer, unless you specify
1412 an output stream or filter function to handle the output.
1413 BUFFER may be also nil, meaning that this process is not associated
1414 with any buffer.
1415 Third arg is program file name. It is searched for in PATH.
1416 Remaining arguments are strings to give program as arguments.
1418 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1419 (nargs, args)
1420 int nargs;
1421 register Lisp_Object *args;
1423 Lisp_Object buffer, name, program, proc, current_dir, tem;
1424 #ifdef VMS
1425 register unsigned char *new_argv;
1426 int len;
1427 #else
1428 register unsigned char **new_argv;
1429 #endif
1430 register int i;
1431 int count = SPECPDL_INDEX ();
1433 buffer = args[1];
1434 if (!NILP (buffer))
1435 buffer = Fget_buffer_create (buffer);
1437 /* Make sure that the child will be able to chdir to the current
1438 buffer's current directory, or its unhandled equivalent. We
1439 can't just have the child check for an error when it does the
1440 chdir, since it's in a vfork.
1442 We have to GCPRO around this because Fexpand_file_name and
1443 Funhandled_file_name_directory might call a file name handling
1444 function. The argument list is protected by the caller, so all
1445 we really have to worry about is buffer. */
1447 struct gcpro gcpro1, gcpro2;
1449 current_dir = current_buffer->directory;
1451 GCPRO2 (buffer, current_dir);
1453 current_dir
1454 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir),
1455 Qnil);
1456 if (NILP (Ffile_accessible_directory_p (current_dir)))
1457 report_file_error ("Setting current directory",
1458 Fcons (current_buffer->directory, Qnil));
1460 UNGCPRO;
1463 name = args[0];
1464 CHECK_STRING (name);
1466 program = args[2];
1468 CHECK_STRING (program);
1470 proc = make_process (name);
1471 /* If an error occurs and we can't start the process, we want to
1472 remove it from the process list. This means that each error
1473 check in create_process doesn't need to call remove_process
1474 itself; it's all taken care of here. */
1475 record_unwind_protect (start_process_unwind, proc);
1477 XPROCESS (proc)->childp = Qt;
1478 XPROCESS (proc)->plist = Qnil;
1479 XPROCESS (proc)->command_channel_p = Qnil;
1480 XPROCESS (proc)->buffer = buffer;
1481 XPROCESS (proc)->sentinel = Qnil;
1482 XPROCESS (proc)->filter = Qnil;
1483 XPROCESS (proc)->filter_multibyte
1484 = buffer_defaults.enable_multibyte_characters;
1485 XPROCESS (proc)->command = Flist (nargs - 2, args + 2);
1487 /* Make the process marker point into the process buffer (if any). */
1488 if (!NILP (buffer))
1489 set_marker_both (XPROCESS (proc)->mark, buffer,
1490 BUF_ZV (XBUFFER (buffer)),
1491 BUF_ZV_BYTE (XBUFFER (buffer)));
1494 /* Decide coding systems for communicating with the process. Here
1495 we don't setup the structure coding_system nor pay attention to
1496 unibyte mode. They are done in create_process. */
1498 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1499 Lisp_Object coding_systems = Qt;
1500 Lisp_Object val, *args2;
1501 struct gcpro gcpro1, gcpro2;
1503 val = Vcoding_system_for_read;
1504 if (NILP (val))
1506 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
1507 args2[0] = Qstart_process;
1508 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1509 GCPRO2 (proc, current_dir);
1510 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1511 UNGCPRO;
1512 if (CONSP (coding_systems))
1513 val = XCAR (coding_systems);
1514 else if (CONSP (Vdefault_process_coding_system))
1515 val = XCAR (Vdefault_process_coding_system);
1517 XPROCESS (proc)->decode_coding_system = val;
1519 val = Vcoding_system_for_write;
1520 if (NILP (val))
1522 if (EQ (coding_systems, Qt))
1524 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof args2);
1525 args2[0] = Qstart_process;
1526 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1527 GCPRO2 (proc, current_dir);
1528 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1529 UNGCPRO;
1531 if (CONSP (coding_systems))
1532 val = XCDR (coding_systems);
1533 else if (CONSP (Vdefault_process_coding_system))
1534 val = XCDR (Vdefault_process_coding_system);
1536 XPROCESS (proc)->encode_coding_system = val;
1539 #ifdef VMS
1540 /* Make a one member argv with all args concatenated
1541 together separated by a blank. */
1542 len = SBYTES (program) + 2;
1543 for (i = 3; i < nargs; i++)
1545 tem = args[i];
1546 CHECK_STRING (tem);
1547 len += SBYTES (tem) + 1; /* count the blank */
1549 new_argv = (unsigned char *) alloca (len);
1550 strcpy (new_argv, SDATA (program));
1551 for (i = 3; i < nargs; i++)
1553 tem = args[i];
1554 CHECK_STRING (tem);
1555 strcat (new_argv, " ");
1556 strcat (new_argv, SDATA (tem));
1558 /* Need to add code here to check for program existence on VMS */
1560 #else /* not VMS */
1561 new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *));
1563 /* If program file name is not absolute, search our path for it.
1564 Put the name we will really use in TEM. */
1565 if (!IS_DIRECTORY_SEP (SREF (program, 0))
1566 && !(SCHARS (program) > 1
1567 && IS_DEVICE_SEP (SREF (program, 1))))
1569 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1571 tem = Qnil;
1572 GCPRO4 (name, program, buffer, current_dir);
1573 openp (Vexec_path, program, Vexec_suffixes, &tem, make_number (X_OK));
1574 UNGCPRO;
1575 if (NILP (tem))
1576 report_file_error ("Searching for program", Fcons (program, Qnil));
1577 tem = Fexpand_file_name (tem, Qnil);
1579 else
1581 if (!NILP (Ffile_directory_p (program)))
1582 error ("Specified program for new process is a directory");
1583 tem = program;
1586 /* If program file name starts with /: for quoting a magic name,
1587 discard that. */
1588 if (SBYTES (tem) > 2 && SREF (tem, 0) == '/'
1589 && SREF (tem, 1) == ':')
1590 tem = Fsubstring (tem, make_number (2), Qnil);
1592 /* Encode the file name and put it in NEW_ARGV.
1593 That's where the child will use it to execute the program. */
1594 tem = ENCODE_FILE (tem);
1595 new_argv[0] = SDATA (tem);
1597 /* Here we encode arguments by the coding system used for sending
1598 data to the process. We don't support using different coding
1599 systems for encoding arguments and for encoding data sent to the
1600 process. */
1602 for (i = 3; i < nargs; i++)
1604 tem = args[i];
1605 CHECK_STRING (tem);
1606 if (STRING_MULTIBYTE (tem))
1607 tem = (code_convert_string_norecord
1608 (tem, XPROCESS (proc)->encode_coding_system, 1));
1609 new_argv[i - 2] = SDATA (tem);
1611 new_argv[i - 2] = 0;
1612 #endif /* not VMS */
1614 XPROCESS (proc)->decoding_buf = make_uninit_string (0);
1615 XPROCESS (proc)->decoding_carryover = make_number (0);
1616 XPROCESS (proc)->encoding_buf = make_uninit_string (0);
1617 XPROCESS (proc)->encoding_carryover = make_number (0);
1619 XPROCESS (proc)->inherit_coding_system_flag
1620 = (NILP (buffer) || !inherit_process_coding_system
1621 ? Qnil : Qt);
1623 create_process (proc, (char **) new_argv, current_dir);
1625 return unbind_to (count, proc);
1628 /* This function is the unwind_protect form for Fstart_process. If
1629 PROC doesn't have its pid set, then we know someone has signaled
1630 an error and the process wasn't started successfully, so we should
1631 remove it from the process list. */
1632 static Lisp_Object
1633 start_process_unwind (proc)
1634 Lisp_Object proc;
1636 if (!PROCESSP (proc))
1637 abort ();
1639 /* Was PROC started successfully? */
1640 if (XINT (XPROCESS (proc)->pid) <= 0)
1641 remove_process (proc);
1643 return Qnil;
1646 void
1647 create_process_1 (timer)
1648 struct atimer *timer;
1650 /* Nothing to do. */
1654 #if 0 /* This doesn't work; see the note before sigchld_handler. */
1655 #ifdef USG
1656 #ifdef SIGCHLD
1657 /* Mimic blocking of signals on system V, which doesn't really have it. */
1659 /* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1660 int sigchld_deferred;
1662 SIGTYPE
1663 create_process_sigchld ()
1665 signal (SIGCHLD, create_process_sigchld);
1667 sigchld_deferred = 1;
1669 #endif
1670 #endif
1671 #endif
1673 #ifndef VMS /* VMS version of this function is in vmsproc.c. */
1674 void
1675 create_process (process, new_argv, current_dir)
1676 Lisp_Object process;
1677 char **new_argv;
1678 Lisp_Object current_dir;
1680 int pid, inchannel, outchannel;
1681 int sv[2];
1682 #ifdef POSIX_SIGNALS
1683 sigset_t procmask;
1684 sigset_t blocked;
1685 struct sigaction sigint_action;
1686 struct sigaction sigquit_action;
1687 #ifdef AIX
1688 struct sigaction sighup_action;
1689 #endif
1690 #else /* !POSIX_SIGNALS */
1691 #if 0
1692 #ifdef SIGCHLD
1693 SIGTYPE (*sigchld)();
1694 #endif
1695 #endif /* 0 */
1696 #endif /* !POSIX_SIGNALS */
1697 /* Use volatile to protect variables from being clobbered by longjmp. */
1698 volatile int forkin, forkout;
1699 volatile int pty_flag = 0;
1700 #ifndef USE_CRT_DLL
1701 extern char **environ;
1702 #endif
1704 inchannel = outchannel = -1;
1706 #ifdef HAVE_PTYS
1707 if (!NILP (Vprocess_connection_type))
1708 outchannel = inchannel = allocate_pty ();
1710 if (inchannel >= 0)
1712 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1713 /* On most USG systems it does not work to open the pty's tty here,
1714 then close it and reopen it in the child. */
1715 #ifdef O_NOCTTY
1716 /* Don't let this terminal become our controlling terminal
1717 (in case we don't have one). */
1718 forkout = forkin = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
1719 #else
1720 forkout = forkin = emacs_open (pty_name, O_RDWR, 0);
1721 #endif
1722 if (forkin < 0)
1723 report_file_error ("Opening pty", Qnil);
1724 #else
1725 forkin = forkout = -1;
1726 #endif /* not USG, or USG_SUBTTY_WORKS */
1727 pty_flag = 1;
1729 else
1730 #endif /* HAVE_PTYS */
1731 #ifdef SKTPAIR
1733 if (socketpair (AF_UNIX, SOCK_STREAM, 0, sv) < 0)
1734 report_file_error ("Opening socketpair", Qnil);
1735 outchannel = inchannel = sv[0];
1736 forkout = forkin = sv[1];
1738 #else /* not SKTPAIR */
1740 int tem;
1741 tem = pipe (sv);
1742 if (tem < 0)
1743 report_file_error ("Creating pipe", Qnil);
1744 inchannel = sv[0];
1745 forkout = sv[1];
1746 tem = pipe (sv);
1747 if (tem < 0)
1749 emacs_close (inchannel);
1750 emacs_close (forkout);
1751 report_file_error ("Creating pipe", Qnil);
1753 outchannel = sv[1];
1754 forkin = sv[0];
1756 #endif /* not SKTPAIR */
1758 #if 0
1759 /* Replaced by close_process_descs */
1760 set_exclusive_use (inchannel);
1761 set_exclusive_use (outchannel);
1762 #endif
1764 /* Stride people say it's a mystery why this is needed
1765 as well as the O_NDELAY, but that it fails without this. */
1766 #if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS))
1768 int one = 1;
1769 ioctl (inchannel, FIONBIO, &one);
1771 #endif
1773 #ifdef O_NONBLOCK
1774 fcntl (inchannel, F_SETFL, O_NONBLOCK);
1775 fcntl (outchannel, F_SETFL, O_NONBLOCK);
1776 #else
1777 #ifdef O_NDELAY
1778 fcntl (inchannel, F_SETFL, O_NDELAY);
1779 fcntl (outchannel, F_SETFL, O_NDELAY);
1780 #endif
1781 #endif
1783 /* Record this as an active process, with its channels.
1784 As a result, child_setup will close Emacs's side of the pipes. */
1785 chan_process[inchannel] = process;
1786 XSETINT (XPROCESS (process)->infd, inchannel);
1787 XSETINT (XPROCESS (process)->outfd, outchannel);
1789 /* Previously we recorded the tty descriptor used in the subprocess.
1790 It was only used for getting the foreground tty process, so now
1791 we just reopen the device (see emacs_get_tty_pgrp) as this is
1792 more portable (see USG_SUBTTY_WORKS above). */
1794 XPROCESS (process)->pty_flag = (pty_flag ? Qt : Qnil);
1795 XPROCESS (process)->status = Qrun;
1796 setup_process_coding_systems (process);
1798 /* Delay interrupts until we have a chance to store
1799 the new fork's pid in its process structure */
1800 #ifdef POSIX_SIGNALS
1801 sigemptyset (&blocked);
1802 #ifdef SIGCHLD
1803 sigaddset (&blocked, SIGCHLD);
1804 #endif
1805 #ifdef HAVE_WORKING_VFORK
1806 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
1807 this sets the parent's signal handlers as well as the child's.
1808 So delay all interrupts whose handlers the child might munge,
1809 and record the current handlers so they can be restored later. */
1810 sigaddset (&blocked, SIGINT ); sigaction (SIGINT , 0, &sigint_action );
1811 sigaddset (&blocked, SIGQUIT); sigaction (SIGQUIT, 0, &sigquit_action);
1812 #ifdef AIX
1813 sigaddset (&blocked, SIGHUP ); sigaction (SIGHUP , 0, &sighup_action );
1814 #endif
1815 #endif /* HAVE_WORKING_VFORK */
1816 sigprocmask (SIG_BLOCK, &blocked, &procmask);
1817 #else /* !POSIX_SIGNALS */
1818 #ifdef SIGCHLD
1819 #ifdef BSD4_1
1820 sighold (SIGCHLD);
1821 #else /* not BSD4_1 */
1822 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
1823 sigsetmask (sigmask (SIGCHLD));
1824 #else /* ordinary USG */
1825 #if 0
1826 sigchld_deferred = 0;
1827 sigchld = signal (SIGCHLD, create_process_sigchld);
1828 #endif
1829 #endif /* ordinary USG */
1830 #endif /* not BSD4_1 */
1831 #endif /* SIGCHLD */
1832 #endif /* !POSIX_SIGNALS */
1834 FD_SET (inchannel, &input_wait_mask);
1835 FD_SET (inchannel, &non_keyboard_wait_mask);
1836 if (inchannel > max_process_desc)
1837 max_process_desc = inchannel;
1839 /* Until we store the proper pid, enable sigchld_handler
1840 to recognize an unknown pid as standing for this process.
1841 It is very important not to let this `marker' value stay
1842 in the table after this function has returned; if it does
1843 it might cause call-process to hang and subsequent asynchronous
1844 processes to get their return values scrambled. */
1845 XSETINT (XPROCESS (process)->pid, -1);
1847 BLOCK_INPUT;
1850 /* child_setup must clobber environ on systems with true vfork.
1851 Protect it from permanent change. */
1852 char **save_environ = environ;
1854 current_dir = ENCODE_FILE (current_dir);
1856 #ifndef WINDOWSNT
1857 pid = vfork ();
1858 if (pid == 0)
1859 #endif /* not WINDOWSNT */
1861 int xforkin = forkin;
1862 int xforkout = forkout;
1864 #if 0 /* This was probably a mistake--it duplicates code later on,
1865 but fails to handle all the cases. */
1866 /* Make sure SIGCHLD is not blocked in the child. */
1867 sigsetmask (SIGEMPTYMASK);
1868 #endif
1870 /* Make the pty be the controlling terminal of the process. */
1871 #ifdef HAVE_PTYS
1872 /* First, disconnect its current controlling terminal. */
1873 #ifdef HAVE_SETSID
1874 /* We tried doing setsid only if pty_flag, but it caused
1875 process_set_signal to fail on SGI when using a pipe. */
1876 setsid ();
1877 /* Make the pty's terminal the controlling terminal. */
1878 if (pty_flag)
1880 #ifdef TIOCSCTTY
1881 /* We ignore the return value
1882 because faith@cs.unc.edu says that is necessary on Linux. */
1883 ioctl (xforkin, TIOCSCTTY, 0);
1884 #endif
1886 #else /* not HAVE_SETSID */
1887 #ifdef USG
1888 /* It's very important to call setpgrp here and no time
1889 afterwards. Otherwise, we lose our controlling tty which
1890 is set when we open the pty. */
1891 setpgrp ();
1892 #endif /* USG */
1893 #endif /* not HAVE_SETSID */
1894 #if defined (HAVE_TERMIOS) && defined (LDISC1)
1895 if (pty_flag && xforkin >= 0)
1897 struct termios t;
1898 tcgetattr (xforkin, &t);
1899 t.c_lflag = LDISC1;
1900 if (tcsetattr (xforkin, TCSANOW, &t) < 0)
1901 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
1903 #else
1904 #if defined (NTTYDISC) && defined (TIOCSETD)
1905 if (pty_flag && xforkin >= 0)
1907 /* Use new line discipline. */
1908 int ldisc = NTTYDISC;
1909 ioctl (xforkin, TIOCSETD, &ldisc);
1911 #endif
1912 #endif
1913 #ifdef TIOCNOTTY
1914 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1915 can do TIOCSPGRP only to the process's controlling tty. */
1916 if (pty_flag)
1918 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1919 I can't test it since I don't have 4.3. */
1920 int j = emacs_open ("/dev/tty", O_RDWR, 0);
1921 ioctl (j, TIOCNOTTY, 0);
1922 emacs_close (j);
1923 #ifndef USG
1924 /* In order to get a controlling terminal on some versions
1925 of BSD, it is necessary to put the process in pgrp 0
1926 before it opens the terminal. */
1927 #ifdef HAVE_SETPGID
1928 setpgid (0, 0);
1929 #else
1930 setpgrp (0, 0);
1931 #endif
1932 #endif
1934 #endif /* TIOCNOTTY */
1936 #if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
1937 /*** There is a suggestion that this ought to be a
1938 conditional on TIOCSPGRP,
1939 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
1940 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
1941 that system does seem to need this code, even though
1942 both HAVE_SETSID and TIOCSCTTY are defined. */
1943 /* Now close the pty (if we had it open) and reopen it.
1944 This makes the pty the controlling terminal of the subprocess. */
1945 if (pty_flag)
1947 #ifdef SET_CHILD_PTY_PGRP
1948 int pgrp = getpid ();
1949 #endif
1951 /* I wonder if emacs_close (emacs_open (pty_name, ...))
1952 would work? */
1953 if (xforkin >= 0)
1954 emacs_close (xforkin);
1955 xforkout = xforkin = emacs_open (pty_name, O_RDWR, 0);
1957 if (xforkin < 0)
1959 emacs_write (1, "Couldn't open the pty terminal ", 31);
1960 emacs_write (1, pty_name, strlen (pty_name));
1961 emacs_write (1, "\n", 1);
1962 _exit (1);
1965 #ifdef SET_CHILD_PTY_PGRP
1966 ioctl (xforkin, TIOCSPGRP, &pgrp);
1967 ioctl (xforkout, TIOCSPGRP, &pgrp);
1968 #endif
1970 #endif /* not UNIPLUS and not RTU and not DONT_REOPEN_PTY */
1972 #ifdef SETUP_SLAVE_PTY
1973 if (pty_flag)
1975 SETUP_SLAVE_PTY;
1977 #endif /* SETUP_SLAVE_PTY */
1978 #ifdef AIX
1979 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
1980 Now reenable it in the child, so it will die when we want it to. */
1981 if (pty_flag)
1982 signal (SIGHUP, SIG_DFL);
1983 #endif
1984 #endif /* HAVE_PTYS */
1986 signal (SIGINT, SIG_DFL);
1987 signal (SIGQUIT, SIG_DFL);
1989 /* Stop blocking signals in the child. */
1990 #ifdef POSIX_SIGNALS
1991 sigprocmask (SIG_SETMASK, &procmask, 0);
1992 #else /* !POSIX_SIGNALS */
1993 #ifdef SIGCHLD
1994 #ifdef BSD4_1
1995 sigrelse (SIGCHLD);
1996 #else /* not BSD4_1 */
1997 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
1998 sigsetmask (SIGEMPTYMASK);
1999 #else /* ordinary USG */
2000 #if 0
2001 signal (SIGCHLD, sigchld);
2002 #endif
2003 #endif /* ordinary USG */
2004 #endif /* not BSD4_1 */
2005 #endif /* SIGCHLD */
2006 #endif /* !POSIX_SIGNALS */
2008 if (pty_flag)
2009 child_setup_tty (xforkout);
2010 #ifdef WINDOWSNT
2011 pid = child_setup (xforkin, xforkout, xforkout,
2012 new_argv, 1, current_dir);
2013 #else /* not WINDOWSNT */
2014 child_setup (xforkin, xforkout, xforkout,
2015 new_argv, 1, current_dir);
2016 #endif /* not WINDOWSNT */
2018 environ = save_environ;
2021 UNBLOCK_INPUT;
2023 /* This runs in the Emacs process. */
2024 if (pid < 0)
2026 if (forkin >= 0)
2027 emacs_close (forkin);
2028 if (forkin != forkout && forkout >= 0)
2029 emacs_close (forkout);
2031 else
2033 /* vfork succeeded. */
2034 XSETFASTINT (XPROCESS (process)->pid, pid);
2036 #ifdef WINDOWSNT
2037 register_child (pid, inchannel);
2038 #endif /* WINDOWSNT */
2040 /* If the subfork execv fails, and it exits,
2041 this close hangs. I don't know why.
2042 So have an interrupt jar it loose. */
2044 struct atimer *timer;
2045 EMACS_TIME offset;
2047 stop_polling ();
2048 EMACS_SET_SECS_USECS (offset, 1, 0);
2049 timer = start_atimer (ATIMER_RELATIVE, offset, create_process_1, 0);
2051 if (forkin >= 0)
2052 emacs_close (forkin);
2054 cancel_atimer (timer);
2055 start_polling ();
2058 if (forkin != forkout && forkout >= 0)
2059 emacs_close (forkout);
2061 #ifdef HAVE_PTYS
2062 if (pty_flag)
2063 XPROCESS (process)->tty_name = build_string (pty_name);
2064 else
2065 #endif
2066 XPROCESS (process)->tty_name = Qnil;
2069 /* Restore the signal state whether vfork succeeded or not.
2070 (We will signal an error, below, if it failed.) */
2071 #ifdef POSIX_SIGNALS
2072 #ifdef HAVE_WORKING_VFORK
2073 /* Restore the parent's signal handlers. */
2074 sigaction (SIGINT, &sigint_action, 0);
2075 sigaction (SIGQUIT, &sigquit_action, 0);
2076 #ifdef AIX
2077 sigaction (SIGHUP, &sighup_action, 0);
2078 #endif
2079 #endif /* HAVE_WORKING_VFORK */
2080 /* Stop blocking signals in the parent. */
2081 sigprocmask (SIG_SETMASK, &procmask, 0);
2082 #else /* !POSIX_SIGNALS */
2083 #ifdef SIGCHLD
2084 #ifdef BSD4_1
2085 sigrelse (SIGCHLD);
2086 #else /* not BSD4_1 */
2087 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
2088 sigsetmask (SIGEMPTYMASK);
2089 #else /* ordinary USG */
2090 #if 0
2091 signal (SIGCHLD, sigchld);
2092 /* Now really handle any of these signals
2093 that came in during this function. */
2094 if (sigchld_deferred)
2095 kill (getpid (), SIGCHLD);
2096 #endif
2097 #endif /* ordinary USG */
2098 #endif /* not BSD4_1 */
2099 #endif /* SIGCHLD */
2100 #endif /* !POSIX_SIGNALS */
2102 /* Now generate the error if vfork failed. */
2103 if (pid < 0)
2104 report_file_error ("Doing vfork", Qnil);
2106 #endif /* not VMS */
2109 #ifdef HAVE_SOCKETS
2111 /* Convert an internal struct sockaddr to a lisp object (vector or string).
2112 The address family of sa is not included in the result. */
2114 static Lisp_Object
2115 conv_sockaddr_to_lisp (sa, len)
2116 struct sockaddr *sa;
2117 int len;
2119 Lisp_Object address;
2120 int i;
2121 unsigned char *cp;
2122 register struct Lisp_Vector *p;
2124 switch (sa->sa_family)
2126 case AF_INET:
2128 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2129 len = sizeof (sin->sin_addr) + 1;
2130 address = Fmake_vector (make_number (len), Qnil);
2131 p = XVECTOR (address);
2132 p->contents[--len] = make_number (ntohs (sin->sin_port));
2133 cp = (unsigned char *)&sin->sin_addr;
2134 break;
2136 #ifdef HAVE_LOCAL_SOCKETS
2137 case AF_LOCAL:
2139 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2140 for (i = 0; i < sizeof (sockun->sun_path); i++)
2141 if (sockun->sun_path[i] == 0)
2142 break;
2143 return make_unibyte_string (sockun->sun_path, i);
2145 #endif
2146 default:
2147 len -= sizeof (sa->sa_family);
2148 address = Fcons (make_number (sa->sa_family),
2149 Fmake_vector (make_number (len), Qnil));
2150 p = XVECTOR (XCDR (address));
2151 cp = (unsigned char *) sa + sizeof (sa->sa_family);
2152 break;
2155 i = 0;
2156 while (i < len)
2157 p->contents[i++] = make_number (*cp++);
2159 return address;
2163 /* Get family and required size for sockaddr structure to hold ADDRESS. */
2165 static int
2166 get_lisp_to_sockaddr_size (address, familyp)
2167 Lisp_Object address;
2168 int *familyp;
2170 register struct Lisp_Vector *p;
2172 if (VECTORP (address))
2174 p = XVECTOR (address);
2175 if (p->size == 5)
2177 *familyp = AF_INET;
2178 return sizeof (struct sockaddr_in);
2181 #ifdef HAVE_LOCAL_SOCKETS
2182 else if (STRINGP (address))
2184 *familyp = AF_LOCAL;
2185 return sizeof (struct sockaddr_un);
2187 #endif
2188 else if (CONSP (address) && INTEGERP (XCAR (address)) && VECTORP (XCDR (address)))
2190 struct sockaddr *sa;
2191 *familyp = XINT (XCAR (address));
2192 p = XVECTOR (XCDR (address));
2193 return p->size + sizeof (sa->sa_family);
2195 return 0;
2198 /* Convert an address object (vector or string) to an internal sockaddr.
2199 Format of address has already been validated by size_lisp_to_sockaddr. */
2201 static void
2202 conv_lisp_to_sockaddr (family, address, sa, len)
2203 int family;
2204 Lisp_Object address;
2205 struct sockaddr *sa;
2206 int len;
2208 register struct Lisp_Vector *p;
2209 register unsigned char *cp = NULL;
2210 register int i;
2212 bzero (sa, len);
2213 sa->sa_family = family;
2215 if (VECTORP (address))
2217 p = XVECTOR (address);
2218 if (family == AF_INET)
2220 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2221 len = sizeof (sin->sin_addr) + 1;
2222 i = XINT (p->contents[--len]);
2223 sin->sin_port = htons (i);
2224 cp = (unsigned char *)&sin->sin_addr;
2227 else if (STRINGP (address))
2229 #ifdef HAVE_LOCAL_SOCKETS
2230 if (family == AF_LOCAL)
2232 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2233 cp = SDATA (address);
2234 for (i = 0; i < sizeof (sockun->sun_path) && *cp; i++)
2235 sockun->sun_path[i] = *cp++;
2237 #endif
2238 return;
2240 else
2242 p = XVECTOR (XCDR (address));
2243 cp = (unsigned char *)sa + sizeof (sa->sa_family);
2246 for (i = 0; i < len; i++)
2247 if (INTEGERP (p->contents[i]))
2248 *cp++ = XFASTINT (p->contents[i]) & 0xff;
2251 #ifdef DATAGRAM_SOCKETS
2252 DEFUN ("process-datagram-address", Fprocess_datagram_address, Sprocess_datagram_address,
2253 1, 1, 0,
2254 doc: /* Get the current datagram address associated with PROCESS. */)
2255 (process)
2256 Lisp_Object process;
2258 int channel;
2260 CHECK_PROCESS (process);
2262 if (!DATAGRAM_CONN_P (process))
2263 return Qnil;
2265 channel = XINT (XPROCESS (process)->infd);
2266 return conv_sockaddr_to_lisp (datagram_address[channel].sa,
2267 datagram_address[channel].len);
2270 DEFUN ("set-process-datagram-address", Fset_process_datagram_address, Sset_process_datagram_address,
2271 2, 2, 0,
2272 doc: /* Set the datagram address for PROCESS to ADDRESS.
2273 Returns nil upon error setting address, ADDRESS otherwise. */)
2274 (process, address)
2275 Lisp_Object process, address;
2277 int channel;
2278 int family, len;
2280 CHECK_PROCESS (process);
2282 if (!DATAGRAM_CONN_P (process))
2283 return Qnil;
2285 channel = XINT (XPROCESS (process)->infd);
2287 len = get_lisp_to_sockaddr_size (address, &family);
2288 if (datagram_address[channel].len != len)
2289 return Qnil;
2290 conv_lisp_to_sockaddr (family, address, datagram_address[channel].sa, len);
2291 return address;
2293 #endif
2296 static struct socket_options {
2297 /* The name of this option. Should be lowercase version of option
2298 name without SO_ prefix. */
2299 char *name;
2300 /* Length of name. */
2301 int nlen;
2302 /* Option level SOL_... */
2303 int optlevel;
2304 /* Option number SO_... */
2305 int optnum;
2306 enum { SOPT_UNKNOWN, SOPT_BOOL, SOPT_INT, SOPT_STR, SOPT_LINGER } opttype;
2307 } socket_options[] =
2309 #ifdef SO_BINDTODEVICE
2310 { "bindtodevice", 12, SOL_SOCKET, SO_BINDTODEVICE, SOPT_STR },
2311 #endif
2312 #ifdef SO_BROADCAST
2313 { "broadcast", 9, SOL_SOCKET, SO_BROADCAST, SOPT_BOOL },
2314 #endif
2315 #ifdef SO_DONTROUTE
2316 { "dontroute", 9, SOL_SOCKET, SO_DONTROUTE, SOPT_BOOL },
2317 #endif
2318 #ifdef SO_KEEPALIVE
2319 { "keepalive", 9, SOL_SOCKET, SO_KEEPALIVE, SOPT_BOOL },
2320 #endif
2321 #ifdef SO_LINGER
2322 { "linger", 6, SOL_SOCKET, SO_LINGER, SOPT_LINGER },
2323 #endif
2324 #ifdef SO_OOBINLINE
2325 { "oobinline", 9, SOL_SOCKET, SO_OOBINLINE, SOPT_BOOL },
2326 #endif
2327 #ifdef SO_PRIORITY
2328 { "priority", 8, SOL_SOCKET, SO_PRIORITY, SOPT_INT },
2329 #endif
2330 #ifdef SO_REUSEADDR
2331 { "reuseaddr", 9, SOL_SOCKET, SO_REUSEADDR, SOPT_BOOL },
2332 #endif
2333 { 0, 0, 0, 0, SOPT_UNKNOWN }
2336 /* Process list of socket options OPTS on socket S.
2337 Only check if options are supported is S < 0.
2338 If NO_ERROR is non-zero, continue silently if an option
2339 cannot be set.
2341 Each element specifies one option. An element is either a string
2342 "OPTION=VALUE" or a cons (OPTION . VALUE) where OPTION is a string
2343 or a symbol. */
2345 static int
2346 set_socket_options (s, opts, no_error)
2347 int s;
2348 Lisp_Object opts;
2349 int no_error;
2351 if (!CONSP (opts))
2352 opts = Fcons (opts, Qnil);
2354 while (CONSP (opts))
2356 Lisp_Object opt;
2357 Lisp_Object val;
2358 char *name, *arg;
2359 struct socket_options *sopt;
2360 int ret = 0;
2362 opt = XCAR (opts);
2363 opts = XCDR (opts);
2365 name = 0;
2366 val = Qt;
2367 if (CONSP (opt))
2369 val = XCDR (opt);
2370 opt = XCAR (opt);
2372 if (STRINGP (opt))
2373 name = (char *) SDATA (opt);
2374 else if (SYMBOLP (opt))
2375 name = (char *) SDATA (SYMBOL_NAME (opt));
2376 else {
2377 error ("Mal-formed option list");
2378 return 0;
2381 if (strncmp (name, "no", 2) == 0)
2383 val = Qnil;
2384 name += 2;
2387 arg = 0;
2388 for (sopt = socket_options; sopt->name; sopt++)
2389 if (strncmp (name, sopt->name, sopt->nlen) == 0)
2391 if (name[sopt->nlen] == 0)
2392 break;
2393 if (name[sopt->nlen] == '=')
2395 arg = name + sopt->nlen + 1;
2396 break;
2400 switch (sopt->opttype)
2402 case SOPT_BOOL:
2404 int optval;
2405 if (s < 0)
2406 return 1;
2407 if (arg)
2408 optval = (*arg == '0' || *arg == 'n') ? 0 : 1;
2409 else if (INTEGERP (val))
2410 optval = XINT (val) == 0 ? 0 : 1;
2411 else
2412 optval = NILP (val) ? 0 : 1;
2413 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2414 &optval, sizeof (optval));
2415 break;
2418 case SOPT_INT:
2420 int optval;
2421 if (arg)
2422 optval = atoi(arg);
2423 else if (INTEGERP (val))
2424 optval = XINT (val);
2425 else
2426 error ("Bad option argument for %s", name);
2427 if (s < 0)
2428 return 1;
2429 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2430 &optval, sizeof (optval));
2431 break;
2434 case SOPT_STR:
2436 if (!arg)
2438 if (NILP (val))
2439 arg = "";
2440 else if (STRINGP (val))
2441 arg = (char *) SDATA (val);
2442 else if (XSYMBOL (val))
2443 arg = (char *) SDATA (SYMBOL_NAME (val));
2444 else
2445 error ("Invalid argument to %s option", name);
2447 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2448 arg, strlen (arg));
2451 #ifdef SO_LINGER
2452 case SOPT_LINGER:
2454 struct linger linger;
2456 linger.l_onoff = 1;
2457 linger.l_linger = 0;
2459 if (s < 0)
2460 return 1;
2462 if (arg)
2464 if (*arg == 'n' || *arg == 't' || *arg == 'y')
2465 linger.l_onoff = (*arg == 'n') ? 0 : 1;
2466 else
2467 linger.l_linger = atoi(arg);
2469 else if (INTEGERP (val))
2470 linger.l_linger = XINT (val);
2471 else
2472 linger.l_onoff = NILP (val) ? 0 : 1;
2473 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2474 &linger, sizeof (linger));
2475 break;
2477 #endif
2478 default:
2479 if (s < 0)
2480 return 0;
2481 if (no_error)
2482 continue;
2483 error ("Unsupported option: %s", name);
2485 if (ret < 0 && ! no_error)
2486 report_file_error ("Cannot set network option: %s", opt);
2488 return 1;
2491 DEFUN ("set-network-process-options",
2492 Fset_network_process_options, Sset_network_process_options,
2493 1, MANY, 0,
2494 doc: /* Set one or more options for network process PROCESS.
2495 Each option is either a string "OPT=VALUE" or a cons (OPT . VALUE).
2496 A boolean value is false if it either zero or nil, true otherwise.
2498 The following options are known. Consult the relevant system manual
2499 pages for more information.
2501 bindtodevice=NAME -- bind to interface NAME, or remove binding if nil.
2502 broadcast=BOOL -- Allow send and receive of datagram broadcasts.
2503 dontroute=BOOL -- Only send to directly connected hosts.
2504 keepalive=BOOL -- Send keep-alive messages on network stream.
2505 linger=BOOL or TIMEOUT -- Send queued messages before closing.
2506 oobinline=BOOL -- Place out-of-band data in receive data stream.
2507 priority=INT -- Set protocol defined priority for sent packets.
2508 reuseaddr=BOOL -- Allow reusing a recently used address.
2510 usage: (set-network-process-options PROCESS &rest OPTIONS) */)
2511 (nargs, args)
2512 int nargs;
2513 Lisp_Object *args;
2515 Lisp_Object process;
2516 Lisp_Object opts;
2518 process = args[0];
2519 CHECK_PROCESS (process);
2520 if (nargs > 1 && XINT (XPROCESS (process)->infd) >= 0)
2522 opts = Flist (nargs, args);
2523 set_socket_options (XINT (XPROCESS (process)->infd), opts, 0);
2525 return process;
2528 /* A version of request_sigio suitable for a record_unwind_protect. */
2530 Lisp_Object
2531 unwind_request_sigio (dummy)
2532 Lisp_Object dummy;
2534 if (interrupt_input)
2535 request_sigio ();
2536 return Qnil;
2539 /* Create a network stream/datagram client/server process. Treated
2540 exactly like a normal process when reading and writing. Primary
2541 differences are in status display and process deletion. A network
2542 connection has no PID; you cannot signal it. All you can do is
2543 stop/continue it and deactivate/close it via delete-process */
2545 DEFUN ("make-network-process", Fmake_network_process, Smake_network_process,
2546 0, MANY, 0,
2547 doc: /* Create and return a network server or client process.
2549 In Emacs, network connections are represented by process objects, so
2550 input and output work as for subprocesses and `delete-process' closes
2551 a network connection. However, a network process has no process id,
2552 it cannot be signalled, and the status codes are different from normal
2553 processes.
2555 Arguments are specified as keyword/argument pairs. The following
2556 arguments are defined:
2558 :name NAME -- NAME is name for process. It is modified if necessary
2559 to make it unique.
2561 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2562 with the process. Process output goes at end of that buffer, unless
2563 you specify an output stream or filter function to handle the output.
2564 BUFFER may be also nil, meaning that this process is not associated
2565 with any buffer.
2567 :host HOST -- HOST is name of the host to connect to, or its IP
2568 address. The symbol `local' specifies the local host. If specified
2569 for a server process, it must be a valid name or address for the local
2570 host, and only clients connecting to that address will be accepted.
2572 :service SERVICE -- SERVICE is name of the service desired, or an
2573 integer specifying a port number to connect to. If SERVICE is t,
2574 a random port number is selected for the server.
2576 :type TYPE -- TYPE is the type of connection. The default (nil) is a
2577 stream type connection, `datagram' creates a datagram type connection.
2579 :family FAMILY -- FAMILY is the address (and protocol) family for the
2580 service specified by HOST and SERVICE. The default address family is
2581 Inet (or IPv4) for the host and port number specified by HOST and
2582 SERVICE. Other address families supported are:
2583 local -- for a local (i.e. UNIX) address specified by SERVICE.
2585 :local ADDRESS -- ADDRESS is the local address used for the connection.
2586 This parameter is ignored when opening a client process. When specified
2587 for a server process, the FAMILY, HOST and SERVICE args are ignored.
2589 :remote ADDRESS -- ADDRESS is the remote partner's address for the
2590 connection. This parameter is ignored when opening a stream server
2591 process. For a datagram server process, it specifies the initial
2592 setting of the remote datagram address. When specified for a client
2593 process, the FAMILY, HOST, and SERVICE args are ignored.
2595 The format of ADDRESS depends on the address family:
2596 - An IPv4 address is represented as an vector of integers [A B C D P]
2597 corresponding to numeric IP address A.B.C.D and port number P.
2598 - A local address is represented as a string with the address in the
2599 local address space.
2600 - An "unsupported family" address is represented by a cons (F . AV)
2601 where F is the family number and AV is a vector containing the socket
2602 address data with one element per address data byte. Do not rely on
2603 this format in portable code, as it may depend on implementation
2604 defined constants, data sizes, and data structure alignment.
2606 :coding CODING -- CODING is coding system for this process.
2608 :options OPTIONS -- Set the specified options for the network process.
2609 See `set-network-process-options' for details.
2611 :nowait BOOL -- If BOOL is non-nil for a stream type client process,
2612 return without waiting for the connection to complete; instead, the
2613 sentinel function will be called with second arg matching "open" (if
2614 successful) or "failed" when the connect completes. Default is to use
2615 a blocking connect (i.e. wait) for stream type connections.
2617 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
2618 running when emacs is exited.
2620 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
2621 In the stopped state, a server process does not accept new
2622 connections, and a client process does not handle incoming traffic.
2623 The stopped state is cleared by `continue-process' and set by
2624 `stop-process'.
2626 :filter FILTER -- Install FILTER as the process filter.
2628 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
2629 process filter are multibyte, otherwise they are unibyte.
2630 If this keyword is not specified, the strings are multibyte iff
2631 `default-enable-multibyte-characters' is non-nil.
2633 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2635 :log LOG -- Install LOG as the server process log function. This
2636 function is called when the server accepts a network connection from a
2637 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
2638 is the server process, CLIENT is the new process for the connection,
2639 and MESSAGE is a string.
2641 :plist PLIST -- Install PLIST as the new process' initial plist.
2643 :server BOOL -- if BOOL is non-nil, create a server process for the
2644 specified FAMILY, SERVICE, and connection type (stream or datagram).
2645 Default is a client process.
2647 A server process will listen for and accept connections from
2648 clients. When a client connection is accepted, a new network process
2649 is created for the connection with the following parameters:
2650 - The client's process name is constructed by concatenating the server
2651 process' NAME and a client identification string.
2652 - If the FILTER argument is non-nil, the client process will not get a
2653 separate process buffer; otherwise, the client's process buffer is a newly
2654 created buffer named after the server process' BUFFER name or process
2655 NAME concatenated with the client identification string.
2656 - The connection type and the process filter and sentinel parameters are
2657 inherited from the server process' TYPE, FILTER and SENTINEL.
2658 - The client process' contact info is set according to the client's
2659 addressing information (typically an IP address and a port number).
2660 - The client process' plist is initialized from the server's plist.
2662 Notice that the FILTER and SENTINEL args are never used directly by
2663 the server process. Also, the BUFFER argument is not used directly by
2664 the server process, but via the optional :log function, accepted (and
2665 failed) connections may be logged in the server process' buffer.
2667 The original argument list, modified with the actual connection
2668 information, is available via the `process-contact' function.
2670 usage: (make-network-process &rest ARGS) */)
2671 (nargs, args)
2672 int nargs;
2673 Lisp_Object *args;
2675 Lisp_Object proc;
2676 Lisp_Object contact;
2677 struct Lisp_Process *p;
2678 #ifdef HAVE_GETADDRINFO
2679 struct addrinfo ai, *res, *lres;
2680 struct addrinfo hints;
2681 char *portstring, portbuf[128];
2682 #else /* HAVE_GETADDRINFO */
2683 struct _emacs_addrinfo
2685 int ai_family;
2686 int ai_socktype;
2687 int ai_protocol;
2688 int ai_addrlen;
2689 struct sockaddr *ai_addr;
2690 struct _emacs_addrinfo *ai_next;
2691 } ai, *res, *lres;
2692 #endif /* HAVE_GETADDRINFO */
2693 struct sockaddr_in address_in;
2694 #ifdef HAVE_LOCAL_SOCKETS
2695 struct sockaddr_un address_un;
2696 #endif
2697 int port;
2698 int ret = 0;
2699 int xerrno = 0;
2700 int s = -1, outch, inch;
2701 struct gcpro gcpro1;
2702 int retry = 0;
2703 int count = SPECPDL_INDEX ();
2704 int count1;
2705 Lisp_Object QCaddress; /* one of QClocal or QCremote */
2706 Lisp_Object tem;
2707 Lisp_Object name, buffer, host, service, address;
2708 Lisp_Object filter, sentinel;
2709 int is_non_blocking_client = 0;
2710 int is_server = 0;
2711 int socktype;
2712 int family = -1;
2714 if (nargs == 0)
2715 return Qnil;
2717 /* Save arguments for process-contact and clone-process. */
2718 contact = Flist (nargs, args);
2719 GCPRO1 (contact);
2721 #ifdef WINDOWSNT
2722 /* Ensure socket support is loaded if available. */
2723 init_winsock (TRUE);
2724 #endif
2726 /* :type TYPE (nil: stream, datagram */
2727 tem = Fplist_get (contact, QCtype);
2728 if (NILP (tem))
2729 socktype = SOCK_STREAM;
2730 #ifdef DATAGRAM_SOCKETS
2731 else if (EQ (tem, Qdatagram))
2732 socktype = SOCK_DGRAM;
2733 #endif
2734 else
2735 error ("Unsupported connection type");
2737 /* :server BOOL */
2738 tem = Fplist_get (contact, QCserver);
2739 if (!NILP (tem))
2741 /* Don't support network sockets when non-blocking mode is
2742 not available, since a blocked Emacs is not useful. */
2743 #if defined(TERM) || (!defined(O_NONBLOCK) && !defined(O_NDELAY))
2744 error ("Network servers not supported");
2745 #else
2746 is_server = 1;
2747 #endif
2750 /* Make QCaddress an alias for :local (server) or :remote (client). */
2751 QCaddress = is_server ? QClocal : QCremote;
2753 /* :wait BOOL */
2754 if (!is_server && socktype == SOCK_STREAM
2755 && (tem = Fplist_get (contact, QCnowait), !NILP (tem)))
2757 #ifndef NON_BLOCKING_CONNECT
2758 error ("Non-blocking connect not supported");
2759 #else
2760 is_non_blocking_client = 1;
2761 #endif
2764 name = Fplist_get (contact, QCname);
2765 buffer = Fplist_get (contact, QCbuffer);
2766 filter = Fplist_get (contact, QCfilter);
2767 sentinel = Fplist_get (contact, QCsentinel);
2769 CHECK_STRING (name);
2771 #ifdef TERM
2772 /* Let's handle TERM before things get complicated ... */
2773 host = Fplist_get (contact, QChost);
2774 CHECK_STRING (host);
2776 service = Fplist_get (contact, QCservice);
2777 if (INTEGERP (service))
2778 port = htons ((unsigned short) XINT (service));
2779 else
2781 struct servent *svc_info;
2782 CHECK_STRING (service);
2783 svc_info = getservbyname (SDATA (service), "tcp");
2784 if (svc_info == 0)
2785 error ("Unknown service: %s", SDATA (service));
2786 port = svc_info->s_port;
2789 s = connect_server (0);
2790 if (s < 0)
2791 report_file_error ("error creating socket", Fcons (name, Qnil));
2792 send_command (s, C_PORT, 0, "%s:%d", SDATA (host), ntohs (port));
2793 send_command (s, C_DUMB, 1, 0);
2795 #else /* not TERM */
2797 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
2798 ai.ai_socktype = socktype;
2799 ai.ai_protocol = 0;
2800 ai.ai_next = NULL;
2801 res = &ai;
2803 /* :local ADDRESS or :remote ADDRESS */
2804 address = Fplist_get (contact, QCaddress);
2805 if (!NILP (address))
2807 host = service = Qnil;
2809 if (!(ai.ai_addrlen = get_lisp_to_sockaddr_size (address, &family)))
2810 error ("Malformed :address");
2811 ai.ai_family = family;
2812 ai.ai_addr = alloca (ai.ai_addrlen);
2813 conv_lisp_to_sockaddr (family, address, ai.ai_addr, ai.ai_addrlen);
2814 goto open_socket;
2817 /* :family FAMILY -- nil (for Inet), local, or integer. */
2818 tem = Fplist_get (contact, QCfamily);
2819 if (INTEGERP (tem))
2820 family = XINT (tem);
2821 else
2823 if (NILP (tem))
2824 family = AF_INET;
2825 #ifdef HAVE_LOCAL_SOCKETS
2826 else if (EQ (tem, Qlocal))
2827 family = AF_LOCAL;
2828 #endif
2830 if (family < 0)
2831 error ("Unknown address family");
2832 ai.ai_family = family;
2834 /* :service SERVICE -- string, integer (port number), or t (random port). */
2835 service = Fplist_get (contact, QCservice);
2837 #ifdef HAVE_LOCAL_SOCKETS
2838 if (family == AF_LOCAL)
2840 /* Host is not used. */
2841 host = Qnil;
2842 CHECK_STRING (service);
2843 bzero (&address_un, sizeof address_un);
2844 address_un.sun_family = AF_LOCAL;
2845 strncpy (address_un.sun_path, SDATA (service), sizeof address_un.sun_path);
2846 ai.ai_addr = (struct sockaddr *) &address_un;
2847 ai.ai_addrlen = sizeof address_un;
2848 goto open_socket;
2850 #endif
2852 /* :host HOST -- hostname, ip address, or 'local for localhost. */
2853 host = Fplist_get (contact, QChost);
2854 if (!NILP (host))
2856 if (EQ (host, Qlocal))
2857 host = build_string ("localhost");
2858 CHECK_STRING (host);
2861 /* Slow down polling to every ten seconds.
2862 Some kernels have a bug which causes retrying connect to fail
2863 after a connect. Polling can interfere with gethostbyname too. */
2864 #ifdef POLL_FOR_INPUT
2865 if (socktype == SOCK_STREAM)
2867 record_unwind_protect (unwind_stop_other_atimers, Qnil);
2868 bind_polling_period (10);
2870 #endif
2872 #ifdef HAVE_GETADDRINFO
2873 /* If we have a host, use getaddrinfo to resolve both host and service.
2874 Otherwise, use getservbyname to lookup the service. */
2875 if (!NILP (host))
2878 /* SERVICE can either be a string or int.
2879 Convert to a C string for later use by getaddrinfo. */
2880 if (EQ (service, Qt))
2881 portstring = "0";
2882 else if (INTEGERP (service))
2884 sprintf (portbuf, "%ld", (long) XINT (service));
2885 portstring = portbuf;
2887 else
2889 CHECK_STRING (service);
2890 portstring = SDATA (service);
2893 immediate_quit = 1;
2894 QUIT;
2895 memset (&hints, 0, sizeof (hints));
2896 hints.ai_flags = 0;
2897 hints.ai_family = NILP (Fplist_member (contact, QCfamily)) ? AF_UNSPEC : family;
2898 hints.ai_socktype = socktype;
2899 hints.ai_protocol = 0;
2900 ret = getaddrinfo (SDATA (host), portstring, &hints, &res);
2901 if (ret)
2902 #ifdef HAVE_GAI_STRERROR
2903 error ("%s/%s %s", SDATA (host), portstring, gai_strerror(ret));
2904 #else
2905 error ("%s/%s getaddrinfo error %d", SDATA (host), portstring, ret);
2906 #endif
2907 immediate_quit = 0;
2909 goto open_socket;
2911 #endif /* HAVE_GETADDRINFO */
2913 /* We end up here if getaddrinfo is not defined, or in case no hostname
2914 has been specified (e.g. for a local server process). */
2916 if (EQ (service, Qt))
2917 port = 0;
2918 else if (INTEGERP (service))
2919 port = htons ((unsigned short) XINT (service));
2920 else
2922 struct servent *svc_info;
2923 CHECK_STRING (service);
2924 svc_info = getservbyname (SDATA (service),
2925 (socktype == SOCK_DGRAM ? "udp" : "tcp"));
2926 if (svc_info == 0)
2927 error ("Unknown service: %s", SDATA (service));
2928 port = svc_info->s_port;
2931 bzero (&address_in, sizeof address_in);
2932 address_in.sin_family = family;
2933 address_in.sin_addr.s_addr = INADDR_ANY;
2934 address_in.sin_port = port;
2936 #ifndef HAVE_GETADDRINFO
2937 if (!NILP (host))
2939 struct hostent *host_info_ptr;
2941 /* gethostbyname may fail with TRY_AGAIN, but we don't honour that,
2942 as it may `hang' emacs for a very long time. */
2943 immediate_quit = 1;
2944 QUIT;
2945 host_info_ptr = gethostbyname (SDATA (host));
2946 immediate_quit = 0;
2948 if (host_info_ptr)
2950 bcopy (host_info_ptr->h_addr, (char *) &address_in.sin_addr,
2951 host_info_ptr->h_length);
2952 family = host_info_ptr->h_addrtype;
2953 address_in.sin_family = family;
2955 else
2956 /* Attempt to interpret host as numeric inet address */
2958 IN_ADDR numeric_addr;
2959 numeric_addr = inet_addr ((char *) SDATA (host));
2960 if (NUMERIC_ADDR_ERROR)
2961 error ("Unknown host \"%s\"", SDATA (host));
2963 bcopy ((char *)&numeric_addr, (char *) &address_in.sin_addr,
2964 sizeof (address_in.sin_addr));
2968 #endif /* not HAVE_GETADDRINFO */
2970 ai.ai_family = family;
2971 ai.ai_addr = (struct sockaddr *) &address_in;
2972 ai.ai_addrlen = sizeof address_in;
2974 open_socket:
2976 /* Kernel bugs (on Ultrix at least) cause lossage (not just EINTR)
2977 when connect is interrupted. So let's not let it get interrupted.
2978 Note we do not turn off polling, because polling is only used
2979 when not interrupt_input, and thus not normally used on the systems
2980 which have this bug. On systems which use polling, there's no way
2981 to quit if polling is turned off. */
2982 if (interrupt_input
2983 && !is_server && socktype == SOCK_STREAM)
2985 /* Comment from KFS: The original open-network-stream code
2986 didn't unwind protect this, but it seems like the proper
2987 thing to do. In any case, I don't see how it could harm to
2988 do this -- and it makes cleanup (using unbind_to) easier. */
2989 record_unwind_protect (unwind_request_sigio, Qnil);
2990 unrequest_sigio ();
2993 /* Do this in case we never enter the for-loop below. */
2994 count1 = SPECPDL_INDEX ();
2995 s = -1;
2997 for (lres = res; lres; lres = lres->ai_next)
2999 s = socket (lres->ai_family, lres->ai_socktype, lres->ai_protocol);
3000 if (s < 0)
3002 xerrno = errno;
3003 continue;
3006 #ifdef DATAGRAM_SOCKETS
3007 if (!is_server && socktype == SOCK_DGRAM)
3008 break;
3009 #endif /* DATAGRAM_SOCKETS */
3011 #ifdef NON_BLOCKING_CONNECT
3012 if (is_non_blocking_client)
3014 #ifdef O_NONBLOCK
3015 ret = fcntl (s, F_SETFL, O_NONBLOCK);
3016 #else
3017 ret = fcntl (s, F_SETFL, O_NDELAY);
3018 #endif
3019 if (ret < 0)
3021 xerrno = errno;
3022 emacs_close (s);
3023 s = -1;
3024 continue;
3027 #endif
3029 /* Make us close S if quit. */
3030 record_unwind_protect (close_file_unwind, make_number (s));
3032 if (is_server)
3034 /* Configure as a server socket. */
3035 #ifdef HAVE_LOCAL_SOCKETS
3036 if (family != AF_LOCAL)
3037 #endif
3039 int optval = 1;
3040 if (setsockopt (s, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof optval))
3041 report_file_error ("Cannot set reuse option on server socket.", Qnil);
3044 if (bind (s, lres->ai_addr, lres->ai_addrlen))
3045 report_file_error ("Cannot bind server socket", Qnil);
3047 #ifdef HAVE_GETSOCKNAME
3048 if (EQ (service, Qt))
3050 struct sockaddr_in sa1;
3051 int len1 = sizeof (sa1);
3052 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3054 ((struct sockaddr_in *)(lres->ai_addr))->sin_port = sa1.sin_port;
3055 service = make_number (ntohs (sa1.sin_port));
3056 contact = Fplist_put (contact, QCservice, service);
3059 #endif
3061 if (socktype == SOCK_STREAM && listen (s, 5))
3062 report_file_error ("Cannot listen on server socket", Qnil);
3064 break;
3067 retry_connect:
3069 immediate_quit = 1;
3070 QUIT;
3072 /* This turns off all alarm-based interrupts; the
3073 bind_polling_period call above doesn't always turn all the
3074 short-interval ones off, especially if interrupt_input is
3075 set.
3077 It'd be nice to be able to control the connect timeout
3078 though. Would non-blocking connect calls be portable?
3080 This used to be conditioned by HAVE_GETADDRINFO. Why? */
3082 turn_on_atimers (0);
3084 ret = connect (s, lres->ai_addr, lres->ai_addrlen);
3085 xerrno = errno;
3087 turn_on_atimers (1);
3089 if (ret == 0 || xerrno == EISCONN)
3091 /* The unwind-protect will be discarded afterwards.
3092 Likewise for immediate_quit. */
3093 break;
3096 #ifdef NON_BLOCKING_CONNECT
3097 #ifdef EINPROGRESS
3098 if (is_non_blocking_client && xerrno == EINPROGRESS)
3099 break;
3100 #else
3101 #ifdef EWOULDBLOCK
3102 if (is_non_blocking_client && xerrno == EWOULDBLOCK)
3103 break;
3104 #endif
3105 #endif
3106 #endif
3108 immediate_quit = 0;
3110 if (xerrno == EINTR)
3111 goto retry_connect;
3112 if (xerrno == EADDRINUSE && retry < 20)
3114 /* A delay here is needed on some FreeBSD systems,
3115 and it is harmless, since this retrying takes time anyway
3116 and should be infrequent. */
3117 Fsleep_for (make_number (1), Qnil);
3118 retry++;
3119 goto retry_connect;
3122 /* Discard the unwind protect closing S. */
3123 specpdl_ptr = specpdl + count1;
3124 emacs_close (s);
3125 s = -1;
3128 if (s >= 0)
3130 #ifdef DATAGRAM_SOCKETS
3131 if (socktype == SOCK_DGRAM)
3133 if (datagram_address[s].sa)
3134 abort ();
3135 datagram_address[s].sa = (struct sockaddr *) xmalloc (lres->ai_addrlen);
3136 datagram_address[s].len = lres->ai_addrlen;
3137 if (is_server)
3139 Lisp_Object remote;
3140 bzero (datagram_address[s].sa, lres->ai_addrlen);
3141 if (remote = Fplist_get (contact, QCremote), !NILP (remote))
3143 int rfamily, rlen;
3144 rlen = get_lisp_to_sockaddr_size (remote, &rfamily);
3145 if (rfamily == lres->ai_family && rlen == lres->ai_addrlen)
3146 conv_lisp_to_sockaddr (rfamily, remote,
3147 datagram_address[s].sa, rlen);
3150 else
3151 bcopy (lres->ai_addr, datagram_address[s].sa, lres->ai_addrlen);
3153 #endif
3154 contact = Fplist_put (contact, QCaddress,
3155 conv_sockaddr_to_lisp (lres->ai_addr, lres->ai_addrlen));
3156 #ifdef HAVE_GETSOCKNAME
3157 if (!is_server)
3159 struct sockaddr_in sa1;
3160 int len1 = sizeof (sa1);
3161 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3162 contact = Fplist_put (contact, QClocal,
3163 conv_sockaddr_to_lisp (&sa1, len1));
3165 #endif
3168 #ifdef HAVE_GETADDRINFO
3169 if (res != &ai)
3170 freeaddrinfo (res);
3171 #endif
3173 immediate_quit = 0;
3175 /* Discard the unwind protect for closing S, if any. */
3176 specpdl_ptr = specpdl + count1;
3178 /* Unwind bind_polling_period and request_sigio. */
3179 unbind_to (count, Qnil);
3181 if (s < 0)
3183 /* If non-blocking got this far - and failed - assume non-blocking is
3184 not supported after all. This is probably a wrong assumption, but
3185 the normal blocking calls to open-network-stream handles this error
3186 better. */
3187 if (is_non_blocking_client)
3188 return Qnil;
3190 errno = xerrno;
3191 if (is_server)
3192 report_file_error ("make server process failed", contact);
3193 else
3194 report_file_error ("make client process failed", contact);
3197 tem = Fplist_get (contact, QCoptions);
3198 if (!NILP (tem))
3199 set_socket_options (s, tem, 1);
3201 #endif /* not TERM */
3203 inch = s;
3204 outch = s;
3206 if (!NILP (buffer))
3207 buffer = Fget_buffer_create (buffer);
3208 proc = make_process (name);
3210 chan_process[inch] = proc;
3212 #ifdef O_NONBLOCK
3213 fcntl (inch, F_SETFL, O_NONBLOCK);
3214 #else
3215 #ifdef O_NDELAY
3216 fcntl (inch, F_SETFL, O_NDELAY);
3217 #endif
3218 #endif
3220 p = XPROCESS (proc);
3222 p->childp = contact;
3223 p->plist = Fcopy_sequence (Fplist_get (contact, QCplist));
3225 p->buffer = buffer;
3226 p->sentinel = sentinel;
3227 p->filter = filter;
3228 p->filter_multibyte = buffer_defaults.enable_multibyte_characters;
3229 /* Override the above only if :filter-multibyte is specified. */
3230 if (! NILP (Fplist_member (contact, QCfilter_multibyte)))
3231 p->filter_multibyte = Fplist_get (contact, QCfilter_multibyte);
3232 p->log = Fplist_get (contact, QClog);
3233 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
3234 p->kill_without_query = Qt;
3235 if ((tem = Fplist_get (contact, QCstop), !NILP (tem)))
3236 p->command = Qt;
3237 p->pid = Qnil;
3238 XSETINT (p->infd, inch);
3239 XSETINT (p->outfd, outch);
3240 if (is_server && socktype == SOCK_STREAM)
3241 p->status = Qlisten;
3243 #ifdef NON_BLOCKING_CONNECT
3244 if (is_non_blocking_client)
3246 /* We may get here if connect did succeed immediately. However,
3247 in that case, we still need to signal this like a non-blocking
3248 connection. */
3249 p->status = Qconnect;
3250 if (!FD_ISSET (inch, &connect_wait_mask))
3252 FD_SET (inch, &connect_wait_mask);
3253 num_pending_connects++;
3256 else
3257 #endif
3258 /* A server may have a client filter setting of Qt, but it must
3259 still listen for incoming connects unless it is stopped. */
3260 if ((!EQ (p->filter, Qt) && !EQ (p->command, Qt))
3261 || (EQ (p->status, Qlisten) && NILP (p->command)))
3263 FD_SET (inch, &input_wait_mask);
3264 FD_SET (inch, &non_keyboard_wait_mask);
3267 if (inch > max_process_desc)
3268 max_process_desc = inch;
3270 tem = Fplist_member (contact, QCcoding);
3271 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
3272 tem = Qnil; /* No error message (too late!). */
3275 /* Setup coding systems for communicating with the network stream. */
3276 struct gcpro gcpro1;
3277 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3278 Lisp_Object coding_systems = Qt;
3279 Lisp_Object args[5], val;
3281 if (!NILP (tem))
3282 val = XCAR (XCDR (tem));
3283 else if (!NILP (Vcoding_system_for_read))
3284 val = Vcoding_system_for_read;
3285 else if ((!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters))
3286 || (NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters)))
3287 /* We dare not decode end-of-line format by setting VAL to
3288 Qraw_text, because the existing Emacs Lisp libraries
3289 assume that they receive bare code including a sequene of
3290 CR LF. */
3291 val = Qnil;
3292 else
3294 if (NILP (host) || NILP (service))
3295 coding_systems = Qnil;
3296 else
3298 args[0] = Qopen_network_stream, args[1] = name,
3299 args[2] = buffer, args[3] = host, args[4] = service;
3300 GCPRO1 (proc);
3301 coding_systems = Ffind_operation_coding_system (5, args);
3302 UNGCPRO;
3304 if (CONSP (coding_systems))
3305 val = XCAR (coding_systems);
3306 else if (CONSP (Vdefault_process_coding_system))
3307 val = XCAR (Vdefault_process_coding_system);
3308 else
3309 val = Qnil;
3311 p->decode_coding_system = val;
3313 if (!NILP (tem))
3314 val = XCAR (XCDR (tem));
3315 else if (!NILP (Vcoding_system_for_write))
3316 val = Vcoding_system_for_write;
3317 else if (NILP (current_buffer->enable_multibyte_characters))
3318 val = Qnil;
3319 else
3321 if (EQ (coding_systems, Qt))
3323 if (NILP (host) || NILP (service))
3324 coding_systems = Qnil;
3325 else
3327 args[0] = Qopen_network_stream, args[1] = name,
3328 args[2] = buffer, args[3] = host, args[4] = service;
3329 GCPRO1 (proc);
3330 coding_systems = Ffind_operation_coding_system (5, args);
3331 UNGCPRO;
3334 if (CONSP (coding_systems))
3335 val = XCDR (coding_systems);
3336 else if (CONSP (Vdefault_process_coding_system))
3337 val = XCDR (Vdefault_process_coding_system);
3338 else
3339 val = Qnil;
3341 p->encode_coding_system = val;
3343 setup_process_coding_systems (proc);
3345 p->decoding_buf = make_uninit_string (0);
3346 p->decoding_carryover = make_number (0);
3347 p->encoding_buf = make_uninit_string (0);
3348 p->encoding_carryover = make_number (0);
3350 p->inherit_coding_system_flag
3351 = (!NILP (tem) || NILP (buffer) || !inherit_process_coding_system
3352 ? Qnil : Qt);
3354 UNGCPRO;
3355 return proc;
3357 #endif /* HAVE_SOCKETS */
3359 void
3360 deactivate_process (proc)
3361 Lisp_Object proc;
3363 register int inchannel, outchannel;
3364 register struct Lisp_Process *p = XPROCESS (proc);
3366 inchannel = XINT (p->infd);
3367 outchannel = XINT (p->outfd);
3369 if (inchannel >= 0)
3371 /* Beware SIGCHLD hereabouts. */
3372 flush_pending_output (inchannel);
3373 #ifdef VMS
3375 VMS_PROC_STUFF *get_vms_process_pointer (), *vs;
3376 sys$dassgn (outchannel);
3377 vs = get_vms_process_pointer (p->pid);
3378 if (vs)
3379 give_back_vms_process_stuff (vs);
3381 #else
3382 emacs_close (inchannel);
3383 if (outchannel >= 0 && outchannel != inchannel)
3384 emacs_close (outchannel);
3385 #endif
3387 XSETINT (p->infd, -1);
3388 XSETINT (p->outfd, -1);
3389 #ifdef DATAGRAM_SOCKETS
3390 if (DATAGRAM_CHAN_P (inchannel))
3392 xfree (datagram_address[inchannel].sa);
3393 datagram_address[inchannel].sa = 0;
3394 datagram_address[inchannel].len = 0;
3396 #endif
3397 chan_process[inchannel] = Qnil;
3398 FD_CLR (inchannel, &input_wait_mask);
3399 FD_CLR (inchannel, &non_keyboard_wait_mask);
3400 if (FD_ISSET (inchannel, &connect_wait_mask))
3402 FD_CLR (inchannel, &connect_wait_mask);
3403 if (--num_pending_connects < 0)
3404 abort ();
3406 if (inchannel == max_process_desc)
3408 int i;
3409 /* We just closed the highest-numbered process input descriptor,
3410 so recompute the highest-numbered one now. */
3411 max_process_desc = 0;
3412 for (i = 0; i < MAXDESC; i++)
3413 if (!NILP (chan_process[i]))
3414 max_process_desc = i;
3419 /* Close all descriptors currently in use for communication
3420 with subprocess. This is used in a newly-forked subprocess
3421 to get rid of irrelevant descriptors. */
3423 void
3424 close_process_descs ()
3426 #ifndef WINDOWSNT
3427 int i;
3428 for (i = 0; i < MAXDESC; i++)
3430 Lisp_Object process;
3431 process = chan_process[i];
3432 if (!NILP (process))
3434 int in = XINT (XPROCESS (process)->infd);
3435 int out = XINT (XPROCESS (process)->outfd);
3436 if (in >= 0)
3437 emacs_close (in);
3438 if (out >= 0 && in != out)
3439 emacs_close (out);
3442 #endif
3445 DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
3446 0, 3, 0,
3447 doc: /* Allow any pending output from subprocesses to be read by Emacs.
3448 It is read into the process' buffers or given to their filter functions.
3449 Non-nil arg PROCESS means do not return until some output has been received
3450 from PROCESS.
3451 Non-nil second arg TIMEOUT and third arg TIMEOUT-MSECS are number of
3452 seconds and microseconds to wait; return after that much time whether
3453 or not there is input.
3454 Return non-nil iff we received any output before the timeout expired. */)
3455 (process, timeout, timeout_msecs)
3456 register Lisp_Object process, timeout, timeout_msecs;
3458 int seconds;
3459 int useconds;
3461 if (! NILP (process))
3462 CHECK_PROCESS (process);
3464 if (! NILP (timeout_msecs))
3466 CHECK_NUMBER (timeout_msecs);
3467 useconds = XINT (timeout_msecs);
3468 if (!INTEGERP (timeout))
3469 XSETINT (timeout, 0);
3472 int carry = useconds / 1000000;
3474 XSETINT (timeout, XINT (timeout) + carry);
3475 useconds -= carry * 1000000;
3477 /* I think this clause is necessary because C doesn't
3478 guarantee a particular rounding direction for negative
3479 integers. */
3480 if (useconds < 0)
3482 XSETINT (timeout, XINT (timeout) - 1);
3483 useconds += 1000000;
3487 else
3488 useconds = 0;
3490 if (! NILP (timeout))
3492 CHECK_NUMBER (timeout);
3493 seconds = XINT (timeout);
3494 if (seconds < 0 || (seconds == 0 && useconds == 0))
3495 seconds = -1;
3497 else
3498 seconds = NILP (process) ? -1 : 0;
3500 if (NILP (process))
3501 XSETFASTINT (process, 0);
3503 return
3504 (wait_reading_process_input (seconds, useconds, process, 0)
3505 ? Qt : Qnil);
3508 /* Accept a connection for server process SERVER on CHANNEL. */
3510 static int connect_counter = 0;
3512 static void
3513 server_accept_connection (server, channel)
3514 Lisp_Object server;
3515 int channel;
3517 Lisp_Object proc, caller, name, buffer;
3518 Lisp_Object contact, host, service;
3519 struct Lisp_Process *ps= XPROCESS (server);
3520 struct Lisp_Process *p;
3521 int s;
3522 union u_sockaddr {
3523 struct sockaddr sa;
3524 struct sockaddr_in in;
3525 #ifdef HAVE_LOCAL_SOCKETS
3526 struct sockaddr_un un;
3527 #endif
3528 } saddr;
3529 int len = sizeof saddr;
3531 s = accept (channel, &saddr.sa, &len);
3533 if (s < 0)
3535 int code = errno;
3537 if (code == EAGAIN)
3538 return;
3539 #ifdef EWOULDBLOCK
3540 if (code == EWOULDBLOCK)
3541 return;
3542 #endif
3544 if (!NILP (ps->log))
3545 call3 (ps->log, server, Qnil,
3546 concat3 (build_string ("accept failed with code"),
3547 Fnumber_to_string (make_number (code)),
3548 build_string ("\n")));
3549 return;
3552 connect_counter++;
3554 /* Setup a new process to handle the connection. */
3556 /* Generate a unique identification of the caller, and build contact
3557 information for this process. */
3558 host = Qt;
3559 service = Qnil;
3560 switch (saddr.sa.sa_family)
3562 case AF_INET:
3564 Lisp_Object args[5];
3565 unsigned char *ip = (unsigned char *)&saddr.in.sin_addr.s_addr;
3566 args[0] = build_string ("%d.%d.%d.%d");
3567 args[1] = make_number (*ip++);
3568 args[2] = make_number (*ip++);
3569 args[3] = make_number (*ip++);
3570 args[4] = make_number (*ip++);
3571 host = Fformat (5, args);
3572 service = make_number (ntohs (saddr.in.sin_port));
3574 args[0] = build_string (" <%s:%d>");
3575 args[1] = host;
3576 args[2] = service;
3577 caller = Fformat (3, args);
3579 break;
3581 #ifdef HAVE_LOCAL_SOCKETS
3582 case AF_LOCAL:
3583 #endif
3584 default:
3585 caller = Fnumber_to_string (make_number (connect_counter));
3586 caller = concat3 (build_string (" <*"), caller, build_string ("*>"));
3587 break;
3590 /* Create a new buffer name for this process if it doesn't have a
3591 filter. The new buffer name is based on the buffer name or
3592 process name of the server process concatenated with the caller
3593 identification. */
3595 if (!NILP (ps->filter) && !EQ (ps->filter, Qt))
3596 buffer = Qnil;
3597 else
3599 buffer = ps->buffer;
3600 if (!NILP (buffer))
3601 buffer = Fbuffer_name (buffer);
3602 else
3603 buffer = ps->name;
3604 if (!NILP (buffer))
3606 buffer = concat2 (buffer, caller);
3607 buffer = Fget_buffer_create (buffer);
3611 /* Generate a unique name for the new server process. Combine the
3612 server process name with the caller identification. */
3614 name = concat2 (ps->name, caller);
3615 proc = make_process (name);
3617 chan_process[s] = proc;
3619 #ifdef O_NONBLOCK
3620 fcntl (s, F_SETFL, O_NONBLOCK);
3621 #else
3622 #ifdef O_NDELAY
3623 fcntl (s, F_SETFL, O_NDELAY);
3624 #endif
3625 #endif
3627 p = XPROCESS (proc);
3629 /* Build new contact information for this setup. */
3630 contact = Fcopy_sequence (ps->childp);
3631 contact = Fplist_put (contact, QCserver, Qnil);
3632 contact = Fplist_put (contact, QChost, host);
3633 if (!NILP (service))
3634 contact = Fplist_put (contact, QCservice, service);
3635 contact = Fplist_put (contact, QCremote,
3636 conv_sockaddr_to_lisp (&saddr.sa, len));
3637 #ifdef HAVE_GETSOCKNAME
3638 len = sizeof saddr;
3639 if (getsockname (s, &saddr.sa, &len) == 0)
3640 contact = Fplist_put (contact, QClocal,
3641 conv_sockaddr_to_lisp (&saddr.sa, len));
3642 #endif
3644 p->childp = contact;
3645 p->plist = Fcopy_sequence (ps->plist);
3647 p->buffer = buffer;
3648 p->sentinel = ps->sentinel;
3649 p->filter = ps->filter;
3650 p->command = Qnil;
3651 p->pid = Qnil;
3652 XSETINT (p->infd, s);
3653 XSETINT (p->outfd, s);
3654 p->status = Qrun;
3656 /* Client processes for accepted connections are not stopped initially. */
3657 if (!EQ (p->filter, Qt))
3659 FD_SET (s, &input_wait_mask);
3660 FD_SET (s, &non_keyboard_wait_mask);
3663 if (s > max_process_desc)
3664 max_process_desc = s;
3666 /* Setup coding system for new process based on server process.
3667 This seems to be the proper thing to do, as the coding system
3668 of the new process should reflect the settings at the time the
3669 server socket was opened; not the current settings. */
3671 p->decode_coding_system = ps->decode_coding_system;
3672 p->encode_coding_system = ps->encode_coding_system;
3673 setup_process_coding_systems (proc);
3675 p->decoding_buf = make_uninit_string (0);
3676 p->decoding_carryover = make_number (0);
3677 p->encoding_buf = make_uninit_string (0);
3678 p->encoding_carryover = make_number (0);
3680 p->inherit_coding_system_flag
3681 = (NILP (buffer) ? Qnil : ps->inherit_coding_system_flag);
3683 if (!NILP (ps->log))
3684 call3 (ps->log, server, proc,
3685 concat3 (build_string ("accept from "),
3686 (STRINGP (host) ? host : build_string ("-")),
3687 build_string ("\n")));
3689 if (!NILP (p->sentinel))
3690 exec_sentinel (proc,
3691 concat3 (build_string ("open from "),
3692 (STRINGP (host) ? host : build_string ("-")),
3693 build_string ("\n")));
3696 /* This variable is different from waiting_for_input in keyboard.c.
3697 It is used to communicate to a lisp process-filter/sentinel (via the
3698 function Fwaiting_for_user_input_p below) whether emacs was waiting
3699 for user-input when that process-filter was called.
3700 waiting_for_input cannot be used as that is by definition 0 when
3701 lisp code is being evalled.
3702 This is also used in record_asynch_buffer_change.
3703 For that purpose, this must be 0
3704 when not inside wait_reading_process_input. */
3705 static int waiting_for_user_input_p;
3707 /* This is here so breakpoints can be put on it. */
3708 static void
3709 wait_reading_process_input_1 ()
3713 /* Read and dispose of subprocess output while waiting for timeout to
3714 elapse and/or keyboard input to be available.
3716 TIME_LIMIT is:
3717 timeout in seconds, or
3718 zero for no limit, or
3719 -1 means gobble data immediately available but don't wait for any.
3721 MICROSECS is:
3722 an additional duration to wait, measured in microseconds.
3723 If this is nonzero and time_limit is 0, then the timeout
3724 consists of MICROSECS only.
3726 READ_KBD is a lisp value:
3727 0 to ignore keyboard input, or
3728 1 to return when input is available, or
3729 -1 meaning caller will actually read the input, so don't throw to
3730 the quit handler, or
3731 a cons cell, meaning wait until its car is non-nil
3732 (and gobble terminal input into the buffer if any arrives), or
3733 a process object, meaning wait until something arrives from that
3734 process. The return value is true iff we read some input from
3735 that process.
3737 DO_DISPLAY != 0 means redisplay should be done to show subprocess
3738 output that arrives.
3740 If READ_KBD is a pointer to a struct Lisp_Process, then the
3741 function returns true iff we received input from that process
3742 before the timeout elapsed.
3743 Otherwise, return true iff we received input from any process. */
3746 wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
3747 int time_limit, microsecs;
3748 Lisp_Object read_kbd;
3749 int do_display;
3751 register int channel, nfds;
3752 static SELECT_TYPE Available;
3753 static SELECT_TYPE Connecting;
3754 int check_connect, no_avail;
3755 int xerrno;
3756 Lisp_Object proc;
3757 EMACS_TIME timeout, end_time;
3758 int wait_channel = -1;
3759 struct Lisp_Process *wait_proc = 0;
3760 int got_some_input = 0;
3761 /* Either nil or a cons cell, the car of which is of interest and
3762 may be changed outside of this routine. */
3763 Lisp_Object wait_for_cell = Qnil;
3765 FD_ZERO (&Available);
3766 FD_ZERO (&Connecting);
3768 /* If read_kbd is a process to watch, set wait_proc and wait_channel
3769 accordingly. */
3770 if (PROCESSP (read_kbd))
3772 wait_proc = XPROCESS (read_kbd);
3773 wait_channel = XINT (wait_proc->infd);
3774 XSETFASTINT (read_kbd, 0);
3777 /* If waiting for non-nil in a cell, record where. */
3778 if (CONSP (read_kbd))
3780 wait_for_cell = read_kbd;
3781 XSETFASTINT (read_kbd, 0);
3784 waiting_for_user_input_p = XINT (read_kbd);
3786 /* Since we may need to wait several times,
3787 compute the absolute time to return at. */
3788 if (time_limit || microsecs)
3790 EMACS_GET_TIME (end_time);
3791 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
3792 EMACS_ADD_TIME (end_time, end_time, timeout);
3794 #ifdef POLL_INTERRUPTED_SYS_CALL
3795 /* AlainF 5-Jul-1996
3796 HP-UX 10.10 seem to have problems with signals coming in
3797 Causes "poll: interrupted system call" messages when Emacs is run
3798 in an X window
3799 Turn off periodic alarms (in case they are in use),
3800 and then turn off any other atimers. */
3801 stop_polling ();
3802 turn_on_atimers (0);
3803 #endif /* POLL_INTERRUPTED_SYS_CALL */
3805 while (1)
3807 int timeout_reduced_for_timers = 0;
3809 /* If calling from keyboard input, do not quit
3810 since we want to return C-g as an input character.
3811 Otherwise, do pending quit if requested. */
3812 if (XINT (read_kbd) >= 0)
3813 QUIT;
3815 /* Exit now if the cell we're waiting for became non-nil. */
3816 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
3817 break;
3819 /* Compute time from now till when time limit is up */
3820 /* Exit if already run out */
3821 if (time_limit == -1)
3823 /* -1 specified for timeout means
3824 gobble output available now
3825 but don't wait at all. */
3827 EMACS_SET_SECS_USECS (timeout, 0, 0);
3829 else if (time_limit || microsecs)
3831 EMACS_GET_TIME (timeout);
3832 EMACS_SUB_TIME (timeout, end_time, timeout);
3833 if (EMACS_TIME_NEG_P (timeout))
3834 break;
3836 else
3838 EMACS_SET_SECS_USECS (timeout, 100000, 0);
3841 /* Normally we run timers here.
3842 But not if wait_for_cell; in those cases,
3843 the wait is supposed to be short,
3844 and those callers cannot handle running arbitrary Lisp code here. */
3845 if (NILP (wait_for_cell))
3847 EMACS_TIME timer_delay;
3851 int old_timers_run = timers_run;
3852 struct buffer *old_buffer = current_buffer;
3854 timer_delay = timer_check (1);
3856 /* If a timer has run, this might have changed buffers
3857 an alike. Make read_key_sequence aware of that. */
3858 if (timers_run != old_timers_run
3859 && old_buffer != current_buffer
3860 && waiting_for_user_input_p == -1)
3861 record_asynch_buffer_change ();
3863 if (timers_run != old_timers_run && do_display)
3864 /* We must retry, since a timer may have requeued itself
3865 and that could alter the time_delay. */
3866 redisplay_preserve_echo_area (9);
3867 else
3868 break;
3870 while (!detect_input_pending ());
3872 /* If there is unread keyboard input, also return. */
3873 if (XINT (read_kbd) != 0
3874 && requeued_events_pending_p ())
3875 break;
3877 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
3879 EMACS_TIME difference;
3880 EMACS_SUB_TIME (difference, timer_delay, timeout);
3881 if (EMACS_TIME_NEG_P (difference))
3883 timeout = timer_delay;
3884 timeout_reduced_for_timers = 1;
3887 /* If time_limit is -1, we are not going to wait at all. */
3888 else if (time_limit != -1)
3890 /* This is so a breakpoint can be put here. */
3891 wait_reading_process_input_1 ();
3895 /* Cause C-g and alarm signals to take immediate action,
3896 and cause input available signals to zero out timeout.
3898 It is important that we do this before checking for process
3899 activity. If we get a SIGCHLD after the explicit checks for
3900 process activity, timeout is the only way we will know. */
3901 if (XINT (read_kbd) < 0)
3902 set_waiting_for_input (&timeout);
3904 /* If status of something has changed, and no input is
3905 available, notify the user of the change right away. After
3906 this explicit check, we'll let the SIGCHLD handler zap
3907 timeout to get our attention. */
3908 if (update_tick != process_tick && do_display)
3910 SELECT_TYPE Atemp, Ctemp;
3912 Atemp = input_wait_mask;
3913 #ifdef MAC_OSX
3914 /* On Mac OS X, the SELECT system call always says input is
3915 present (for reading) at stdin, even when none is. This
3916 causes the call to SELECT below to return 1 and
3917 status_notify not to be called. As a result output of
3918 subprocesses are incorrectly discarded. */
3919 FD_CLR (0, &Atemp);
3920 #endif
3921 Ctemp = connect_wait_mask;
3922 EMACS_SET_SECS_USECS (timeout, 0, 0);
3923 if ((select (max (max_process_desc, max_keyboard_desc) + 1,
3924 &Atemp,
3925 (num_pending_connects > 0 ? &Ctemp : (SELECT_TYPE *)0),
3926 (SELECT_TYPE *)0, &timeout)
3927 <= 0))
3929 /* It's okay for us to do this and then continue with
3930 the loop, since timeout has already been zeroed out. */
3931 clear_waiting_for_input ();
3932 status_notify ();
3936 /* Don't wait for output from a non-running process. Just
3937 read whatever data has already been received. */
3938 if (wait_proc != 0 && !NILP (wait_proc->raw_status_low))
3939 update_status (wait_proc);
3940 if (wait_proc != 0
3941 && ! EQ (wait_proc->status, Qrun)
3942 && ! EQ (wait_proc->status, Qconnect))
3944 int nread, total_nread = 0;
3946 clear_waiting_for_input ();
3947 XSETPROCESS (proc, wait_proc);
3949 /* Read data from the process, until we exhaust it. */
3950 while (XINT (wait_proc->infd) >= 0)
3952 nread = read_process_output (proc, XINT (wait_proc->infd));
3954 if (nread == 0)
3955 break;
3957 if (0 < nread)
3958 total_nread += nread;
3959 #ifdef EIO
3960 else if (nread == -1 && EIO == errno)
3961 break;
3962 #endif
3963 #ifdef EAGAIN
3964 else if (nread == -1 && EAGAIN == errno)
3965 break;
3966 #endif
3967 #ifdef EWOULDBLOCK
3968 else if (nread == -1 && EWOULDBLOCK == errno)
3969 break;
3970 #endif
3972 if (total_nread > 0 && do_display)
3973 redisplay_preserve_echo_area (10);
3975 break;
3978 /* Wait till there is something to do */
3980 if (!NILP (wait_for_cell))
3982 Available = non_process_wait_mask;
3983 check_connect = 0;
3985 else
3987 if (! XINT (read_kbd))
3988 Available = non_keyboard_wait_mask;
3989 else
3990 Available = input_wait_mask;
3991 check_connect = (num_pending_connects > 0);
3994 /* If frame size has changed or the window is newly mapped,
3995 redisplay now, before we start to wait. There is a race
3996 condition here; if a SIGIO arrives between now and the select
3997 and indicates that a frame is trashed, the select may block
3998 displaying a trashed screen. */
3999 if (frame_garbaged && do_display)
4001 clear_waiting_for_input ();
4002 redisplay_preserve_echo_area (11);
4003 if (XINT (read_kbd) < 0)
4004 set_waiting_for_input (&timeout);
4007 no_avail = 0;
4008 if (XINT (read_kbd) && detect_input_pending ())
4010 nfds = 0;
4011 no_avail = 1;
4013 else
4015 if (check_connect)
4016 Connecting = connect_wait_mask;
4017 nfds = select (max (max_process_desc, max_keyboard_desc) + 1,
4018 &Available,
4019 (check_connect ? &Connecting : (SELECT_TYPE *)0),
4020 (SELECT_TYPE *)0, &timeout);
4023 xerrno = errno;
4025 /* Make C-g and alarm signals set flags again */
4026 clear_waiting_for_input ();
4028 /* If we woke up due to SIGWINCH, actually change size now. */
4029 do_pending_window_change (0);
4031 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
4032 /* We wanted the full specified time, so return now. */
4033 break;
4034 if (nfds < 0)
4036 if (xerrno == EINTR)
4037 no_avail = 1;
4038 #ifdef ultrix
4039 /* Ultrix select seems to return ENOMEM when it is
4040 interrupted. Treat it just like EINTR. Bleah. Note
4041 that we want to test for the "ultrix" CPP symbol, not
4042 "__ultrix__"; the latter is only defined under GCC, but
4043 not by DEC's bundled CC. -JimB */
4044 else if (xerrno == ENOMEM)
4045 no_avail = 1;
4046 #endif
4047 #ifdef ALLIANT
4048 /* This happens for no known reason on ALLIANT.
4049 I am guessing that this is the right response. -- RMS. */
4050 else if (xerrno == EFAULT)
4051 no_avail = 1;
4052 #endif
4053 else if (xerrno == EBADF)
4055 #ifdef AIX
4056 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
4057 the child's closure of the pts gives the parent a SIGHUP, and
4058 the ptc file descriptor is automatically closed,
4059 yielding EBADF here or at select() call above.
4060 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
4061 in m/ibmrt-aix.h), and here we just ignore the select error.
4062 Cleanup occurs c/o status_notify after SIGCLD. */
4063 no_avail = 1; /* Cannot depend on values returned */
4064 #else
4065 abort ();
4066 #endif
4068 else
4069 error ("select error: %s", emacs_strerror (xerrno));
4072 if (no_avail)
4074 FD_ZERO (&Available);
4075 check_connect = 0;
4078 #if defined(sun) && !defined(USG5_4)
4079 if (nfds > 0 && keyboard_bit_set (&Available)
4080 && interrupt_input)
4081 /* System sometimes fails to deliver SIGIO.
4083 David J. Mackenzie says that Emacs doesn't compile under
4084 Solaris if this code is enabled, thus the USG5_4 in the CPP
4085 conditional. "I haven't noticed any ill effects so far.
4086 If you find a Solaris expert somewhere, they might know
4087 better." */
4088 kill (getpid (), SIGIO);
4089 #endif
4091 #if 0 /* When polling is used, interrupt_input is 0,
4092 so get_input_pending should read the input.
4093 So this should not be needed. */
4094 /* If we are using polling for input,
4095 and we see input available, make it get read now.
4096 Otherwise it might not actually get read for a second.
4097 And on hpux, since we turn off polling in wait_reading_process_input,
4098 it might never get read at all if we don't spend much time
4099 outside of wait_reading_process_input. */
4100 if (XINT (read_kbd) && interrupt_input
4101 && keyboard_bit_set (&Available)
4102 && input_polling_used ())
4103 kill (getpid (), SIGALRM);
4104 #endif
4106 /* Check for keyboard input */
4107 /* If there is any, return immediately
4108 to give it higher priority than subprocesses */
4110 if (XINT (read_kbd) != 0)
4112 int old_timers_run = timers_run;
4113 struct buffer *old_buffer = current_buffer;
4114 int leave = 0;
4116 if (detect_input_pending_run_timers (do_display))
4118 swallow_events (do_display);
4119 if (detect_input_pending_run_timers (do_display))
4120 leave = 1;
4123 /* If a timer has run, this might have changed buffers
4124 an alike. Make read_key_sequence aware of that. */
4125 if (timers_run != old_timers_run
4126 && waiting_for_user_input_p == -1
4127 && old_buffer != current_buffer)
4128 record_asynch_buffer_change ();
4130 if (leave)
4131 break;
4134 /* If there is unread keyboard input, also return. */
4135 if (XINT (read_kbd) != 0
4136 && requeued_events_pending_p ())
4137 break;
4139 /* If we are not checking for keyboard input now,
4140 do process events (but don't run any timers).
4141 This is so that X events will be processed.
4142 Otherwise they may have to wait until polling takes place.
4143 That would causes delays in pasting selections, for example.
4145 (We used to do this only if wait_for_cell.) */
4146 if (XINT (read_kbd) == 0 && detect_input_pending ())
4148 swallow_events (do_display);
4149 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
4150 if (detect_input_pending ())
4151 break;
4152 #endif
4155 /* Exit now if the cell we're waiting for became non-nil. */
4156 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4157 break;
4159 #ifdef SIGIO
4160 /* If we think we have keyboard input waiting, but didn't get SIGIO,
4161 go read it. This can happen with X on BSD after logging out.
4162 In that case, there really is no input and no SIGIO,
4163 but select says there is input. */
4165 if (XINT (read_kbd) && interrupt_input
4166 && keyboard_bit_set (&Available) && ! noninteractive)
4167 kill (getpid (), SIGIO);
4168 #endif
4170 if (! wait_proc)
4171 got_some_input |= nfds > 0;
4173 /* If checking input just got us a size-change event from X,
4174 obey it now if we should. */
4175 if (XINT (read_kbd) || ! NILP (wait_for_cell))
4176 do_pending_window_change (0);
4178 /* Check for data from a process. */
4179 if (no_avail || nfds == 0)
4180 continue;
4182 /* Really FIRST_PROC_DESC should be 0 on Unix,
4183 but this is safer in the short run. */
4184 for (channel = 0; channel <= max_process_desc; channel++)
4186 if (FD_ISSET (channel, &Available)
4187 && FD_ISSET (channel, &non_keyboard_wait_mask))
4189 int nread;
4191 /* If waiting for this channel, arrange to return as
4192 soon as no more input to be processed. No more
4193 waiting. */
4194 if (wait_channel == channel)
4196 wait_channel = -1;
4197 time_limit = -1;
4198 got_some_input = 1;
4200 proc = chan_process[channel];
4201 if (NILP (proc))
4202 continue;
4204 /* If this is a server stream socket, accept connection. */
4205 if (EQ (XPROCESS (proc)->status, Qlisten))
4207 server_accept_connection (proc, channel);
4208 continue;
4211 /* Read data from the process, starting with our
4212 buffered-ahead character if we have one. */
4214 nread = read_process_output (proc, channel);
4215 if (nread > 0)
4217 /* Since read_process_output can run a filter,
4218 which can call accept-process-output,
4219 don't try to read from any other processes
4220 before doing the select again. */
4221 FD_ZERO (&Available);
4223 if (do_display)
4224 redisplay_preserve_echo_area (12);
4226 #ifdef EWOULDBLOCK
4227 else if (nread == -1 && errno == EWOULDBLOCK)
4229 #endif
4230 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
4231 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
4232 #ifdef O_NONBLOCK
4233 else if (nread == -1 && errno == EAGAIN)
4235 #else
4236 #ifdef O_NDELAY
4237 else if (nread == -1 && errno == EAGAIN)
4239 /* Note that we cannot distinguish between no input
4240 available now and a closed pipe.
4241 With luck, a closed pipe will be accompanied by
4242 subprocess termination and SIGCHLD. */
4243 else if (nread == 0 && !NETCONN_P (proc))
4245 #endif /* O_NDELAY */
4246 #endif /* O_NONBLOCK */
4247 #ifdef HAVE_PTYS
4248 /* On some OSs with ptys, when the process on one end of
4249 a pty exits, the other end gets an error reading with
4250 errno = EIO instead of getting an EOF (0 bytes read).
4251 Therefore, if we get an error reading and errno =
4252 EIO, just continue, because the child process has
4253 exited and should clean itself up soon (e.g. when we
4254 get a SIGCHLD).
4256 However, it has been known to happen that the SIGCHLD
4257 got lost. So raise the signl again just in case.
4258 It can't hurt. */
4259 else if (nread == -1 && errno == EIO)
4260 kill (getpid (), SIGCHLD);
4261 #endif /* HAVE_PTYS */
4262 /* If we can detect process termination, don't consider the process
4263 gone just because its pipe is closed. */
4264 #ifdef SIGCHLD
4265 else if (nread == 0 && !NETCONN_P (proc))
4267 #endif
4268 else
4270 /* Preserve status of processes already terminated. */
4271 XSETINT (XPROCESS (proc)->tick, ++process_tick);
4272 deactivate_process (proc);
4273 if (!NILP (XPROCESS (proc)->raw_status_low))
4274 update_status (XPROCESS (proc));
4275 if (EQ (XPROCESS (proc)->status, Qrun))
4276 XPROCESS (proc)->status
4277 = Fcons (Qexit, Fcons (make_number (256), Qnil));
4280 #ifdef NON_BLOCKING_CONNECT
4281 if (check_connect && FD_ISSET (channel, &Connecting))
4283 struct Lisp_Process *p;
4285 FD_CLR (channel, &connect_wait_mask);
4286 if (--num_pending_connects < 0)
4287 abort ();
4289 proc = chan_process[channel];
4290 if (NILP (proc))
4291 continue;
4293 p = XPROCESS (proc);
4295 #ifdef GNU_LINUX
4296 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
4297 So only use it on systems where it is known to work. */
4299 int xlen = sizeof(xerrno);
4300 if (getsockopt(channel, SOL_SOCKET, SO_ERROR, &xerrno, &xlen))
4301 xerrno = errno;
4303 #else
4305 struct sockaddr pname;
4306 int pnamelen = sizeof(pname);
4308 /* If connection failed, getpeername will fail. */
4309 xerrno = 0;
4310 if (getpeername(channel, &pname, &pnamelen) < 0)
4312 /* Obtain connect failure code through error slippage. */
4313 char dummy;
4314 xerrno = errno;
4315 if (errno == ENOTCONN && read(channel, &dummy, 1) < 0)
4316 xerrno = errno;
4319 #endif
4320 if (xerrno)
4322 XSETINT (p->tick, ++process_tick);
4323 p->status = Fcons (Qfailed, Fcons (make_number (xerrno), Qnil));
4324 deactivate_process (proc);
4326 else
4328 p->status = Qrun;
4329 /* Execute the sentinel here. If we had relied on
4330 status_notify to do it later, it will read input
4331 from the process before calling the sentinel. */
4332 exec_sentinel (proc, build_string ("open\n"));
4333 if (!EQ (p->filter, Qt) && !EQ (p->command, Qt))
4335 FD_SET (XINT (p->infd), &input_wait_mask);
4336 FD_SET (XINT (p->infd), &non_keyboard_wait_mask);
4340 #endif /* NON_BLOCKING_CONNECT */
4341 } /* end for each file descriptor */
4342 } /* end while exit conditions not met */
4344 waiting_for_user_input_p = 0;
4346 /* If calling from keyboard input, do not quit
4347 since we want to return C-g as an input character.
4348 Otherwise, do pending quit if requested. */
4349 if (XINT (read_kbd) >= 0)
4351 /* Prevent input_pending from remaining set if we quit. */
4352 clear_input_pending ();
4353 QUIT;
4355 #ifdef POLL_INTERRUPTED_SYS_CALL
4356 /* AlainF 5-Jul-1996
4357 HP-UX 10.10 seems to have problems with signals coming in
4358 Causes "poll: interrupted system call" messages when Emacs is run
4359 in an X window
4360 Turn periodic alarms back on */
4361 start_polling ();
4362 #endif /* POLL_INTERRUPTED_SYS_CALL */
4364 return got_some_input;
4367 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
4369 static Lisp_Object
4370 read_process_output_call (fun_and_args)
4371 Lisp_Object fun_and_args;
4373 return apply1 (XCAR (fun_and_args), XCDR (fun_and_args));
4376 static Lisp_Object
4377 read_process_output_error_handler (error)
4378 Lisp_Object error;
4380 cmd_error_internal (error, "error in process filter: ");
4381 Vinhibit_quit = Qt;
4382 update_echo_area ();
4383 Fsleep_for (make_number (2), Qnil);
4384 return Qt;
4387 /* Read pending output from the process channel,
4388 starting with our buffered-ahead character if we have one.
4389 Yield number of decoded characters read.
4391 This function reads at most 1024 characters.
4392 If you want to read all available subprocess output,
4393 you must call it repeatedly until it returns zero.
4395 The characters read are decoded according to PROC's coding-system
4396 for decoding. */
4399 read_process_output (proc, channel)
4400 Lisp_Object proc;
4401 register int channel;
4403 register int nchars, nbytes;
4404 char *chars;
4405 register Lisp_Object outstream;
4406 register struct buffer *old = current_buffer;
4407 register struct Lisp_Process *p = XPROCESS (proc);
4408 register int opoint;
4409 struct coding_system *coding = proc_decode_coding_system[channel];
4410 int carryover = XINT (p->decoding_carryover);
4411 int readmax = 1024;
4413 #ifdef VMS
4414 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
4416 vs = get_vms_process_pointer (p->pid);
4417 if (vs)
4419 if (!vs->iosb[0])
4420 return (0); /* Really weird if it does this */
4421 if (!(vs->iosb[0] & 1))
4422 return -1; /* I/O error */
4424 else
4425 error ("Could not get VMS process pointer");
4426 chars = vs->inputBuffer;
4427 nbytes = clean_vms_buffer (chars, vs->iosb[1]);
4428 if (nbytes <= 0)
4430 start_vms_process_read (vs); /* Crank up the next read on the process */
4431 return 1; /* Nothing worth printing, say we got 1 */
4433 if (carryover > 0)
4435 /* The data carried over in the previous decoding (which are at
4436 the tail of decoding buffer) should be prepended to the new
4437 data read to decode all together. */
4438 chars = (char *) alloca (nbytes + carryover);
4439 bcopy (SDATA (p->decoding_buf), buf, carryover);
4440 bcopy (vs->inputBuffer, chars + carryover, nbytes);
4442 #else /* not VMS */
4444 #ifdef DATAGRAM_SOCKETS
4445 /* A datagram is one packet; allow at least 1500+ bytes of data
4446 corresponding to the typical Ethernet frame size. */
4447 if (DATAGRAM_CHAN_P (channel))
4449 /* carryover = 0; */ /* Does carryover make sense for datagrams? */
4450 readmax += 1024;
4452 #endif
4454 chars = (char *) alloca (carryover + readmax);
4455 if (carryover)
4456 /* See the comment above. */
4457 bcopy (SDATA (p->decoding_buf), chars, carryover);
4459 #ifdef DATAGRAM_SOCKETS
4460 /* We have a working select, so proc_buffered_char is always -1. */
4461 if (DATAGRAM_CHAN_P (channel))
4463 int len = datagram_address[channel].len;
4464 nbytes = recvfrom (channel, chars + carryover, readmax - carryover,
4465 0, datagram_address[channel].sa, &len);
4467 else
4468 #endif
4469 if (proc_buffered_char[channel] < 0)
4470 nbytes = emacs_read (channel, chars + carryover, readmax - carryover);
4471 else
4473 chars[carryover] = proc_buffered_char[channel];
4474 proc_buffered_char[channel] = -1;
4475 nbytes = emacs_read (channel, chars + carryover + 1, readmax - 1 - carryover);
4476 if (nbytes < 0)
4477 nbytes = 1;
4478 else
4479 nbytes = nbytes + 1;
4481 #endif /* not VMS */
4483 XSETINT (p->decoding_carryover, 0);
4485 /* At this point, NBYTES holds number of bytes just received
4486 (including the one in proc_buffered_char[channel]). */
4487 if (nbytes <= 0)
4489 if (nbytes < 0 || coding->mode & CODING_MODE_LAST_BLOCK)
4490 return nbytes;
4491 coding->mode |= CODING_MODE_LAST_BLOCK;
4494 /* Now set NBYTES how many bytes we must decode. */
4495 nbytes += carryover;
4497 /* Read and dispose of the process output. */
4498 outstream = p->filter;
4499 if (!NILP (outstream))
4501 /* We inhibit quit here instead of just catching it so that
4502 hitting ^G when a filter happens to be running won't screw
4503 it up. */
4504 int count = SPECPDL_INDEX ();
4505 Lisp_Object odeactivate;
4506 Lisp_Object obuffer, okeymap;
4507 Lisp_Object text;
4508 int outer_running_asynch_code = running_asynch_code;
4509 int waiting = waiting_for_user_input_p;
4511 /* No need to gcpro these, because all we do with them later
4512 is test them for EQness, and none of them should be a string. */
4513 odeactivate = Vdeactivate_mark;
4514 XSETBUFFER (obuffer, current_buffer);
4515 okeymap = current_buffer->keymap;
4517 specbind (Qinhibit_quit, Qt);
4518 specbind (Qlast_nonmenu_event, Qt);
4520 /* In case we get recursively called,
4521 and we already saved the match data nonrecursively,
4522 save the same match data in safely recursive fashion. */
4523 if (outer_running_asynch_code)
4525 Lisp_Object tem;
4526 /* Don't clobber the CURRENT match data, either! */
4527 tem = Fmatch_data (Qnil, Qnil);
4528 restore_match_data ();
4529 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
4530 Fset_match_data (tem);
4533 /* For speed, if a search happens within this code,
4534 save the match data in a special nonrecursive fashion. */
4535 running_asynch_code = 1;
4537 text = decode_coding_string (make_unibyte_string (chars, nbytes),
4538 coding, 0);
4539 Vlast_coding_system_used = coding->symbol;
4540 /* A new coding system might be found. */
4541 if (!EQ (p->decode_coding_system, coding->symbol))
4543 p->decode_coding_system = coding->symbol;
4545 /* Don't call setup_coding_system for
4546 proc_decode_coding_system[channel] here. It is done in
4547 detect_coding called via decode_coding above. */
4549 /* If a coding system for encoding is not yet decided, we set
4550 it as the same as coding-system for decoding.
4552 But, before doing that we must check if
4553 proc_encode_coding_system[p->outfd] surely points to a
4554 valid memory because p->outfd will be changed once EOF is
4555 sent to the process. */
4556 if (NILP (p->encode_coding_system)
4557 && proc_encode_coding_system[XINT (p->outfd)])
4559 p->encode_coding_system = coding->symbol;
4560 setup_coding_system (coding->symbol,
4561 proc_encode_coding_system[XINT (p->outfd)]);
4565 carryover = nbytes - coding->consumed;
4566 bcopy (chars + coding->consumed, SDATA (p->decoding_buf),
4567 carryover);
4568 XSETINT (p->decoding_carryover, carryover);
4569 /* Adjust the multibyteness of TEXT to that of the filter. */
4570 if (NILP (p->filter_multibyte) != ! STRING_MULTIBYTE (text))
4571 text = (STRING_MULTIBYTE (text)
4572 ? Fstring_as_unibyte (text)
4573 : Fstring_to_multibyte (text));
4574 nbytes = SBYTES (text);
4575 nchars = SCHARS (text);
4576 if (nbytes > 0)
4577 internal_condition_case_1 (read_process_output_call,
4578 Fcons (outstream,
4579 Fcons (proc, Fcons (text, Qnil))),
4580 !NILP (Vdebug_on_error) ? Qnil : Qerror,
4581 read_process_output_error_handler);
4583 /* If we saved the match data nonrecursively, restore it now. */
4584 restore_match_data ();
4585 running_asynch_code = outer_running_asynch_code;
4587 /* Handling the process output should not deactivate the mark. */
4588 Vdeactivate_mark = odeactivate;
4590 /* Restore waiting_for_user_input_p as it was
4591 when we were called, in case the filter clobbered it. */
4592 waiting_for_user_input_p = waiting;
4594 #if 0 /* Call record_asynch_buffer_change unconditionally,
4595 because we might have changed minor modes or other things
4596 that affect key bindings. */
4597 if (! EQ (Fcurrent_buffer (), obuffer)
4598 || ! EQ (current_buffer->keymap, okeymap))
4599 #endif
4600 /* But do it only if the caller is actually going to read events.
4601 Otherwise there's no need to make him wake up, and it could
4602 cause trouble (for example it would make Fsit_for return). */
4603 if (waiting_for_user_input_p == -1)
4604 record_asynch_buffer_change ();
4606 #ifdef VMS
4607 start_vms_process_read (vs);
4608 #endif
4609 unbind_to (count, Qnil);
4610 return nchars;
4613 /* If no filter, write into buffer if it isn't dead. */
4614 if (!NILP (p->buffer) && !NILP (XBUFFER (p->buffer)->name))
4616 Lisp_Object old_read_only;
4617 int old_begv, old_zv;
4618 int old_begv_byte, old_zv_byte;
4619 Lisp_Object odeactivate;
4620 int before, before_byte;
4621 int opoint_byte;
4622 Lisp_Object text;
4623 struct buffer *b;
4625 odeactivate = Vdeactivate_mark;
4627 Fset_buffer (p->buffer);
4628 opoint = PT;
4629 opoint_byte = PT_BYTE;
4630 old_read_only = current_buffer->read_only;
4631 old_begv = BEGV;
4632 old_zv = ZV;
4633 old_begv_byte = BEGV_BYTE;
4634 old_zv_byte = ZV_BYTE;
4636 current_buffer->read_only = Qnil;
4638 /* Insert new output into buffer
4639 at the current end-of-output marker,
4640 thus preserving logical ordering of input and output. */
4641 if (XMARKER (p->mark)->buffer)
4642 SET_PT_BOTH (clip_to_bounds (BEGV, marker_position (p->mark), ZV),
4643 clip_to_bounds (BEGV_BYTE, marker_byte_position (p->mark),
4644 ZV_BYTE));
4645 else
4646 SET_PT_BOTH (ZV, ZV_BYTE);
4647 before = PT;
4648 before_byte = PT_BYTE;
4650 /* If the output marker is outside of the visible region, save
4651 the restriction and widen. */
4652 if (! (BEGV <= PT && PT <= ZV))
4653 Fwiden ();
4655 text = decode_coding_string (make_unibyte_string (chars, nbytes),
4656 coding, 0);
4657 Vlast_coding_system_used = coding->symbol;
4658 /* A new coding system might be found. See the comment in the
4659 similar code in the previous `if' block. */
4660 if (!EQ (p->decode_coding_system, coding->symbol))
4662 p->decode_coding_system = coding->symbol;
4663 if (NILP (p->encode_coding_system)
4664 && proc_encode_coding_system[XINT (p->outfd)])
4666 p->encode_coding_system = coding->symbol;
4667 setup_coding_system (coding->symbol,
4668 proc_encode_coding_system[XINT (p->outfd)]);
4671 carryover = nbytes - coding->consumed;
4672 bcopy (chars + coding->consumed, SDATA (p->decoding_buf),
4673 carryover);
4674 XSETINT (p->decoding_carryover, carryover);
4675 /* Adjust the multibyteness of TEXT to that of the buffer. */
4676 if (NILP (current_buffer->enable_multibyte_characters)
4677 != ! STRING_MULTIBYTE (text))
4678 text = (STRING_MULTIBYTE (text)
4679 ? Fstring_as_unibyte (text)
4680 : Fstring_to_multibyte (text));
4681 nbytes = SBYTES (text);
4682 nchars = SCHARS (text);
4683 /* Insert before markers in case we are inserting where
4684 the buffer's mark is, and the user's next command is Meta-y. */
4685 insert_from_string_before_markers (text, 0, 0, nchars, nbytes, 0);
4687 /* Make sure the process marker's position is valid when the
4688 process buffer is changed in the signal_after_change above.
4689 W3 is known to do that. */
4690 if (BUFFERP (p->buffer)
4691 && (b = XBUFFER (p->buffer), b != current_buffer))
4692 set_marker_both (p->mark, p->buffer, BUF_PT (b), BUF_PT_BYTE (b));
4693 else
4694 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
4696 update_mode_lines++;
4698 /* Make sure opoint and the old restrictions
4699 float ahead of any new text just as point would. */
4700 if (opoint >= before)
4702 opoint += PT - before;
4703 opoint_byte += PT_BYTE - before_byte;
4705 if (old_begv > before)
4707 old_begv += PT - before;
4708 old_begv_byte += PT_BYTE - before_byte;
4710 if (old_zv >= before)
4712 old_zv += PT - before;
4713 old_zv_byte += PT_BYTE - before_byte;
4716 /* If the restriction isn't what it should be, set it. */
4717 if (old_begv != BEGV || old_zv != ZV)
4718 Fnarrow_to_region (make_number (old_begv), make_number (old_zv));
4720 /* Handling the process output should not deactivate the mark. */
4721 Vdeactivate_mark = odeactivate;
4723 current_buffer->read_only = old_read_only;
4724 SET_PT_BOTH (opoint, opoint_byte);
4725 set_buffer_internal (old);
4727 #ifdef VMS
4728 start_vms_process_read (vs);
4729 #endif
4730 return nbytes;
4733 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p,
4734 0, 0, 0,
4735 doc: /* Returns non-nil if emacs is waiting for input from the user.
4736 This is intended for use by asynchronous process output filters and sentinels. */)
4739 return (waiting_for_user_input_p ? Qt : Qnil);
4742 /* Sending data to subprocess */
4744 jmp_buf send_process_frame;
4745 Lisp_Object process_sent_to;
4747 SIGTYPE
4748 send_process_trap ()
4750 #ifdef BSD4_1
4751 sigrelse (SIGPIPE);
4752 sigrelse (SIGALRM);
4753 #endif /* BSD4_1 */
4754 longjmp (send_process_frame, 1);
4757 /* Send some data to process PROC.
4758 BUF is the beginning of the data; LEN is the number of characters.
4759 OBJECT is the Lisp object that the data comes from. If OBJECT is
4760 nil or t, it means that the data comes from C string.
4762 If OBJECT is not nil, the data is encoded by PROC's coding-system
4763 for encoding before it is sent.
4765 This function can evaluate Lisp code and can garbage collect. */
4767 void
4768 send_process (proc, buf, len, object)
4769 volatile Lisp_Object proc;
4770 unsigned char *volatile buf;
4771 volatile int len;
4772 volatile Lisp_Object object;
4774 /* Use volatile to protect variables from being clobbered by longjmp. */
4775 int rv;
4776 struct coding_system *coding;
4777 struct gcpro gcpro1;
4779 GCPRO1 (object);
4781 #ifdef VMS
4782 struct Lisp_Process *p = XPROCESS (proc);
4783 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
4784 #endif /* VMS */
4786 if (! NILP (XPROCESS (proc)->raw_status_low))
4787 update_status (XPROCESS (proc));
4788 if (! EQ (XPROCESS (proc)->status, Qrun))
4789 error ("Process %s not running",
4790 SDATA (XPROCESS (proc)->name));
4791 if (XINT (XPROCESS (proc)->outfd) < 0)
4792 error ("Output file descriptor of %s is closed",
4793 SDATA (XPROCESS (proc)->name));
4795 coding = proc_encode_coding_system[XINT (XPROCESS (proc)->outfd)];
4796 Vlast_coding_system_used = coding->symbol;
4798 if ((STRINGP (object) && STRING_MULTIBYTE (object))
4799 || (BUFFERP (object)
4800 && !NILP (XBUFFER (object)->enable_multibyte_characters))
4801 || EQ (object, Qt))
4803 if (!EQ (coding->symbol, XPROCESS (proc)->encode_coding_system))
4804 /* The coding system for encoding was changed to raw-text
4805 because we sent a unibyte text previously. Now we are
4806 sending a multibyte text, thus we must encode it by the
4807 original coding system specified for the current
4808 process. */
4809 setup_coding_system (XPROCESS (proc)->encode_coding_system, coding);
4810 /* src_multibyte should be set to 1 _after_ a call to
4811 setup_coding_system, since it resets src_multibyte to
4812 zero. */
4813 coding->src_multibyte = 1;
4815 else
4817 /* For sending a unibyte text, character code conversion should
4818 not take place but EOL conversion should. So, setup raw-text
4819 or one of the subsidiary if we have not yet done it. */
4820 if (coding->type != coding_type_raw_text)
4822 if (CODING_REQUIRE_FLUSHING (coding))
4824 /* But, before changing the coding, we must flush out data. */
4825 coding->mode |= CODING_MODE_LAST_BLOCK;
4826 send_process (proc, "", 0, Qt);
4828 coding->src_multibyte = 0;
4829 setup_raw_text_coding_system (coding);
4832 coding->dst_multibyte = 0;
4834 if (CODING_REQUIRE_ENCODING (coding))
4836 int require = encoding_buffer_size (coding, len);
4837 int from_byte = -1, from = -1, to = -1;
4838 unsigned char *temp_buf = NULL;
4840 if (BUFFERP (object))
4842 from_byte = BUF_PTR_BYTE_POS (XBUFFER (object), buf);
4843 from = buf_bytepos_to_charpos (XBUFFER (object), from_byte);
4844 to = buf_bytepos_to_charpos (XBUFFER (object), from_byte + len);
4846 else if (STRINGP (object))
4848 from_byte = buf - SDATA (object);
4849 from = string_byte_to_char (object, from_byte);
4850 to = string_byte_to_char (object, from_byte + len);
4853 if (coding->composing != COMPOSITION_DISABLED)
4855 if (from_byte >= 0)
4856 coding_save_composition (coding, from, to, object);
4857 else
4858 coding->composing = COMPOSITION_DISABLED;
4861 if (SBYTES (XPROCESS (proc)->encoding_buf) < require)
4862 XPROCESS (proc)->encoding_buf = make_uninit_string (require);
4864 if (from_byte >= 0)
4865 buf = (BUFFERP (object)
4866 ? BUF_BYTE_ADDRESS (XBUFFER (object), from_byte)
4867 : SDATA (object) + from_byte);
4869 object = XPROCESS (proc)->encoding_buf;
4870 encode_coding (coding, (char *) buf, SDATA (object),
4871 len, SBYTES (object));
4872 len = coding->produced;
4873 buf = SDATA (object);
4874 if (temp_buf)
4875 xfree (temp_buf);
4878 #ifdef VMS
4879 vs = get_vms_process_pointer (p->pid);
4880 if (vs == 0)
4881 error ("Could not find this process: %x", p->pid);
4882 else if (write_to_vms_process (vs, buf, len))
4884 #else /* not VMS */
4886 if (pty_max_bytes == 0)
4888 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
4889 pty_max_bytes = fpathconf (XFASTINT (XPROCESS (proc)->outfd),
4890 _PC_MAX_CANON);
4891 if (pty_max_bytes < 0)
4892 pty_max_bytes = 250;
4893 #else
4894 pty_max_bytes = 250;
4895 #endif
4896 /* Deduct one, to leave space for the eof. */
4897 pty_max_bytes--;
4900 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
4901 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
4902 when returning with longjmp despite being declared volatile. */
4903 if (!setjmp (send_process_frame))
4905 process_sent_to = proc;
4906 while (len > 0)
4908 int this = len;
4909 SIGTYPE (*old_sigpipe)();
4911 /* Decide how much data we can send in one batch.
4912 Long lines need to be split into multiple batches. */
4913 if (!NILP (XPROCESS (proc)->pty_flag))
4915 /* Starting this at zero is always correct when not the first
4916 iteration because the previous iteration ended by sending C-d.
4917 It may not be correct for the first iteration
4918 if a partial line was sent in a separate send_process call.
4919 If that proves worth handling, we need to save linepos
4920 in the process object. */
4921 int linepos = 0;
4922 unsigned char *ptr = (unsigned char *) buf;
4923 unsigned char *end = (unsigned char *) buf + len;
4925 /* Scan through this text for a line that is too long. */
4926 while (ptr != end && linepos < pty_max_bytes)
4928 if (*ptr == '\n')
4929 linepos = 0;
4930 else
4931 linepos++;
4932 ptr++;
4934 /* If we found one, break the line there
4935 and put in a C-d to force the buffer through. */
4936 this = ptr - buf;
4939 /* Send this batch, using one or more write calls. */
4940 while (this > 0)
4942 int outfd = XINT (XPROCESS (proc)->outfd);
4943 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap);
4944 #ifdef DATAGRAM_SOCKETS
4945 if (DATAGRAM_CHAN_P (outfd))
4947 rv = sendto (outfd, (char *) buf, this,
4948 0, datagram_address[outfd].sa,
4949 datagram_address[outfd].len);
4950 if (rv < 0 && errno == EMSGSIZE)
4951 report_file_error ("sending datagram", Fcons (proc, Qnil));
4953 else
4954 #endif
4955 rv = emacs_write (outfd, (char *) buf, this);
4956 signal (SIGPIPE, old_sigpipe);
4958 if (rv < 0)
4960 if (0
4961 #ifdef EWOULDBLOCK
4962 || errno == EWOULDBLOCK
4963 #endif
4964 #ifdef EAGAIN
4965 || errno == EAGAIN
4966 #endif
4968 /* Buffer is full. Wait, accepting input;
4969 that may allow the program
4970 to finish doing output and read more. */
4972 Lisp_Object zero;
4973 int offset = 0;
4975 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
4976 /* A gross hack to work around a bug in FreeBSD.
4977 In the following sequence, read(2) returns
4978 bogus data:
4980 write(2) 1022 bytes
4981 write(2) 954 bytes, get EAGAIN
4982 read(2) 1024 bytes in process_read_output
4983 read(2) 11 bytes in process_read_output
4985 That is, read(2) returns more bytes than have
4986 ever been written successfully. The 1033 bytes
4987 read are the 1022 bytes written successfully
4988 after processing (for example with CRs added if
4989 the terminal is set up that way which it is
4990 here). The same bytes will be seen again in a
4991 later read(2), without the CRs. */
4993 if (errno == EAGAIN)
4995 int flags = FWRITE;
4996 ioctl (XINT (XPROCESS (proc)->outfd), TIOCFLUSH,
4997 &flags);
4999 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5001 /* Running filters might relocate buffers or strings.
5002 Arrange to relocate BUF. */
5003 if (BUFFERP (object))
5004 offset = BUF_PTR_BYTE_POS (XBUFFER (object), buf);
5005 else if (STRINGP (object))
5006 offset = buf - SDATA (object);
5008 XSETFASTINT (zero, 0);
5009 #ifdef EMACS_HAS_USECS
5010 wait_reading_process_input (0, 20000, zero, 0);
5011 #else
5012 wait_reading_process_input (1, 0, zero, 0);
5013 #endif
5015 if (BUFFERP (object))
5016 buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset);
5017 else if (STRINGP (object))
5018 buf = offset + SDATA (object);
5020 rv = 0;
5022 else
5023 /* This is a real error. */
5024 report_file_error ("writing to process", Fcons (proc, Qnil));
5026 buf += rv;
5027 len -= rv;
5028 this -= rv;
5031 /* If we sent just part of the string, put in an EOF
5032 to force it through, before we send the rest. */
5033 if (len > 0)
5034 Fprocess_send_eof (proc);
5037 #endif /* not VMS */
5038 else
5040 #ifndef VMS
5041 proc = process_sent_to;
5042 #endif
5043 XPROCESS (proc)->raw_status_low = Qnil;
5044 XPROCESS (proc)->raw_status_high = Qnil;
5045 XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
5046 XSETINT (XPROCESS (proc)->tick, ++process_tick);
5047 deactivate_process (proc);
5048 #ifdef VMS
5049 error ("Error writing to process %s; closed it",
5050 SDATA (XPROCESS (proc)->name));
5051 #else
5052 error ("SIGPIPE raised on process %s; closed it",
5053 SDATA (XPROCESS (proc)->name));
5054 #endif
5057 UNGCPRO;
5060 DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
5061 3, 3, 0,
5062 doc: /* Send current contents of region as input to PROCESS.
5063 PROCESS may be a process, a buffer, the name of a process or buffer, or
5064 nil, indicating the current buffer's process.
5065 Called from program, takes three arguments, PROCESS, START and END.
5066 If the region is more than 500 characters long,
5067 it is sent in several bunches. This may happen even for shorter regions.
5068 Output from processes can arrive in between bunches. */)
5069 (process, start, end)
5070 Lisp_Object process, start, end;
5072 Lisp_Object proc;
5073 int start1, end1;
5075 proc = get_process (process);
5076 validate_region (&start, &end);
5078 if (XINT (start) < GPT && XINT (end) > GPT)
5079 move_gap (XINT (start));
5081 start1 = CHAR_TO_BYTE (XINT (start));
5082 end1 = CHAR_TO_BYTE (XINT (end));
5083 send_process (proc, BYTE_POS_ADDR (start1), end1 - start1,
5084 Fcurrent_buffer ());
5086 return Qnil;
5089 DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
5090 2, 2, 0,
5091 doc: /* Send PROCESS the contents of STRING as input.
5092 PROCESS may be a process, a buffer, the name of a process or buffer, or
5093 nil, indicating the current buffer's process.
5094 If STRING is more than 500 characters long,
5095 it is sent in several bunches. This may happen even for shorter strings.
5096 Output from processes can arrive in between bunches. */)
5097 (process, string)
5098 Lisp_Object process, string;
5100 Lisp_Object proc;
5101 CHECK_STRING (string);
5102 proc = get_process (process);
5103 send_process (proc, SDATA (string),
5104 SBYTES (string), string);
5105 return Qnil;
5108 /* Return the foreground process group for the tty/pty that
5109 the process P uses. */
5110 static int
5111 emacs_get_tty_pgrp (p)
5112 struct Lisp_Process *p;
5114 int gid = -1;
5116 #ifdef TIOCGPGRP
5117 if (ioctl (XINT (p->infd), TIOCGPGRP, &gid) == -1 && ! NILP (p->tty_name))
5119 int fd;
5120 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
5121 master side. Try the slave side. */
5122 fd = emacs_open (XSTRING (p->tty_name)->data, O_RDONLY, 0);
5124 if (fd != -1)
5126 ioctl (fd, TIOCGPGRP, &gid);
5127 emacs_close (fd);
5130 #endif /* defined (TIOCGPGRP ) */
5132 return gid;
5135 DEFUN ("process-running-child-p", Fprocess_running_child_p,
5136 Sprocess_running_child_p, 0, 1, 0,
5137 doc: /* Return t if PROCESS has given the terminal to a child.
5138 If the operating system does not make it possible to find out,
5139 return t unconditionally. */)
5140 (process)
5141 Lisp_Object process;
5143 /* Initialize in case ioctl doesn't exist or gives an error,
5144 in a way that will cause returning t. */
5145 int gid;
5146 Lisp_Object proc;
5147 struct Lisp_Process *p;
5149 proc = get_process (process);
5150 p = XPROCESS (proc);
5152 if (!EQ (p->childp, Qt))
5153 error ("Process %s is not a subprocess",
5154 SDATA (p->name));
5155 if (XINT (p->infd) < 0)
5156 error ("Process %s is not active",
5157 SDATA (p->name));
5159 gid = emacs_get_tty_pgrp (p);
5161 if (gid == XFASTINT (p->pid))
5162 return Qnil;
5163 return Qt;
5166 /* send a signal number SIGNO to PROCESS.
5167 If CURRENT_GROUP is t, that means send to the process group
5168 that currently owns the terminal being used to communicate with PROCESS.
5169 This is used for various commands in shell mode.
5170 If CURRENT_GROUP is lambda, that means send to the process group
5171 that currently owns the terminal, but only if it is NOT the shell itself.
5173 If NOMSG is zero, insert signal-announcements into process's buffers
5174 right away.
5176 If we can, we try to signal PROCESS by sending control characters
5177 down the pty. This allows us to signal inferiors who have changed
5178 their uid, for which killpg would return an EPERM error. */
5180 static void
5181 process_send_signal (process, signo, current_group, nomsg)
5182 Lisp_Object process;
5183 int signo;
5184 Lisp_Object current_group;
5185 int nomsg;
5187 Lisp_Object proc;
5188 register struct Lisp_Process *p;
5189 int gid;
5190 int no_pgrp = 0;
5192 proc = get_process (process);
5193 p = XPROCESS (proc);
5195 if (!EQ (p->childp, Qt))
5196 error ("Process %s is not a subprocess",
5197 SDATA (p->name));
5198 if (XINT (p->infd) < 0)
5199 error ("Process %s is not active",
5200 SDATA (p->name));
5202 if (NILP (p->pty_flag))
5203 current_group = Qnil;
5205 /* If we are using pgrps, get a pgrp number and make it negative. */
5206 if (NILP (current_group))
5207 /* Send the signal to the shell's process group. */
5208 gid = XFASTINT (p->pid);
5209 else
5211 #ifdef SIGNALS_VIA_CHARACTERS
5212 /* If possible, send signals to the entire pgrp
5213 by sending an input character to it. */
5215 /* TERMIOS is the latest and bestest, and seems most likely to
5216 work. If the system has it, use it. */
5217 #ifdef HAVE_TERMIOS
5218 struct termios t;
5220 switch (signo)
5222 case SIGINT:
5223 tcgetattr (XINT (p->infd), &t);
5224 send_process (proc, &t.c_cc[VINTR], 1, Qnil);
5225 return;
5227 case SIGQUIT:
5228 tcgetattr (XINT (p->infd), &t);
5229 send_process (proc, &t.c_cc[VQUIT], 1, Qnil);
5230 return;
5232 case SIGTSTP:
5233 tcgetattr (XINT (p->infd), &t);
5234 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
5235 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil);
5236 #else
5237 send_process (proc, &t.c_cc[VSUSP], 1, Qnil);
5238 #endif
5239 return;
5242 #else /* ! HAVE_TERMIOS */
5244 /* On Berkeley descendants, the following IOCTL's retrieve the
5245 current control characters. */
5246 #if defined (TIOCGLTC) && defined (TIOCGETC)
5248 struct tchars c;
5249 struct ltchars lc;
5251 switch (signo)
5253 case SIGINT:
5254 ioctl (XINT (p->infd), TIOCGETC, &c);
5255 send_process (proc, &c.t_intrc, 1, Qnil);
5256 return;
5257 case SIGQUIT:
5258 ioctl (XINT (p->infd), TIOCGETC, &c);
5259 send_process (proc, &c.t_quitc, 1, Qnil);
5260 return;
5261 #ifdef SIGTSTP
5262 case SIGTSTP:
5263 ioctl (XINT (p->infd), TIOCGLTC, &lc);
5264 send_process (proc, &lc.t_suspc, 1, Qnil);
5265 return;
5266 #endif /* ! defined (SIGTSTP) */
5269 #else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
5271 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
5272 characters. */
5273 #ifdef TCGETA
5274 struct termio t;
5275 switch (signo)
5277 case SIGINT:
5278 ioctl (XINT (p->infd), TCGETA, &t);
5279 send_process (proc, &t.c_cc[VINTR], 1, Qnil);
5280 return;
5281 case SIGQUIT:
5282 ioctl (XINT (p->infd), TCGETA, &t);
5283 send_process (proc, &t.c_cc[VQUIT], 1, Qnil);
5284 return;
5285 #ifdef SIGTSTP
5286 case SIGTSTP:
5287 ioctl (XINT (p->infd), TCGETA, &t);
5288 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil);
5289 return;
5290 #endif /* ! defined (SIGTSTP) */
5292 #else /* ! defined (TCGETA) */
5293 Your configuration files are messed up.
5294 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
5295 you'd better be using one of the alternatives above! */
5296 #endif /* ! defined (TCGETA) */
5297 #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
5298 #endif /* ! defined HAVE_TERMIOS */
5299 abort ();
5300 /* The code above always returns from the function. */
5301 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
5303 #ifdef TIOCGPGRP
5304 /* Get the current pgrp using the tty itself, if we have that.
5305 Otherwise, use the pty to get the pgrp.
5306 On pfa systems, saka@pfu.fujitsu.co.JP writes:
5307 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
5308 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
5309 His patch indicates that if TIOCGPGRP returns an error, then
5310 we should just assume that p->pid is also the process group id. */
5312 gid = emacs_get_tty_pgrp (p);
5314 if (gid == -1)
5315 /* If we can't get the information, assume
5316 the shell owns the tty. */
5317 gid = XFASTINT (p->pid);
5319 /* It is not clear whether anything really can set GID to -1.
5320 Perhaps on some system one of those ioctls can or could do so.
5321 Or perhaps this is vestigial. */
5322 if (gid == -1)
5323 no_pgrp = 1;
5324 #else /* ! defined (TIOCGPGRP ) */
5325 /* Can't select pgrps on this system, so we know that
5326 the child itself heads the pgrp. */
5327 gid = XFASTINT (p->pid);
5328 #endif /* ! defined (TIOCGPGRP ) */
5330 /* If current_group is lambda, and the shell owns the terminal,
5331 don't send any signal. */
5332 if (EQ (current_group, Qlambda) && gid == XFASTINT (p->pid))
5333 return;
5336 switch (signo)
5338 #ifdef SIGCONT
5339 case SIGCONT:
5340 p->raw_status_low = Qnil;
5341 p->raw_status_high = Qnil;
5342 p->status = Qrun;
5343 XSETINT (p->tick, ++process_tick);
5344 if (!nomsg)
5345 status_notify ();
5346 break;
5347 #endif /* ! defined (SIGCONT) */
5348 case SIGINT:
5349 #ifdef VMS
5350 send_process (proc, "\003", 1, Qnil); /* ^C */
5351 goto whoosh;
5352 #endif
5353 case SIGQUIT:
5354 #ifdef VMS
5355 send_process (proc, "\031", 1, Qnil); /* ^Y */
5356 goto whoosh;
5357 #endif
5358 case SIGKILL:
5359 #ifdef VMS
5360 sys$forcex (&(XFASTINT (p->pid)), 0, 1);
5361 whoosh:
5362 #endif
5363 flush_pending_output (XINT (p->infd));
5364 break;
5367 /* If we don't have process groups, send the signal to the immediate
5368 subprocess. That isn't really right, but it's better than any
5369 obvious alternative. */
5370 if (no_pgrp)
5372 kill (XFASTINT (p->pid), signo);
5373 return;
5376 /* gid may be a pid, or minus a pgrp's number */
5377 #ifdef TIOCSIGSEND
5378 if (!NILP (current_group))
5380 if (ioctl (XINT (p->infd), TIOCSIGSEND, signo) == -1)
5381 EMACS_KILLPG (gid, signo);
5383 else
5385 gid = - XFASTINT (p->pid);
5386 kill (gid, signo);
5388 #else /* ! defined (TIOCSIGSEND) */
5389 EMACS_KILLPG (gid, signo);
5390 #endif /* ! defined (TIOCSIGSEND) */
5393 DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
5394 doc: /* Interrupt process PROCESS.
5395 PROCESS may be a process, a buffer, or the name of a process or buffer.
5396 nil or no arg means current buffer's process.
5397 Second arg CURRENT-GROUP non-nil means send signal to
5398 the current process-group of the process's controlling terminal
5399 rather than to the process's own process group.
5400 If the process is a shell, this means interrupt current subjob
5401 rather than the shell.
5403 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
5404 don't send the signal. */)
5405 (process, current_group)
5406 Lisp_Object process, current_group;
5408 process_send_signal (process, SIGINT, current_group, 0);
5409 return process;
5412 DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
5413 doc: /* Kill process PROCESS. May be process or name of one.
5414 See function `interrupt-process' for more details on usage. */)
5415 (process, current_group)
5416 Lisp_Object process, current_group;
5418 process_send_signal (process, SIGKILL, current_group, 0);
5419 return process;
5422 DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
5423 doc: /* Send QUIT signal to process PROCESS. May be process or name of one.
5424 See function `interrupt-process' for more details on usage. */)
5425 (process, current_group)
5426 Lisp_Object process, current_group;
5428 process_send_signal (process, SIGQUIT, current_group, 0);
5429 return process;
5432 DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
5433 doc: /* Stop process PROCESS. May be process or name of one.
5434 See function `interrupt-process' for more details on usage.
5435 If PROCESS is a network process, inhibit handling of incoming traffic. */)
5436 (process, current_group)
5437 Lisp_Object process, current_group;
5439 #ifdef HAVE_SOCKETS
5440 if (PROCESSP (process) && NETCONN_P (process))
5442 struct Lisp_Process *p;
5444 p = XPROCESS (process);
5445 if (NILP (p->command)
5446 && XINT (p->infd) >= 0)
5448 FD_CLR (XINT (p->infd), &input_wait_mask);
5449 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask);
5451 p->command = Qt;
5452 return process;
5454 #endif
5455 #ifndef SIGTSTP
5456 error ("no SIGTSTP support");
5457 #else
5458 process_send_signal (process, SIGTSTP, current_group, 0);
5459 #endif
5460 return process;
5463 DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
5464 doc: /* Continue process PROCESS. May be process or name of one.
5465 See function `interrupt-process' for more details on usage.
5466 If PROCESS is a network process, resume handling of incoming traffic. */)
5467 (process, current_group)
5468 Lisp_Object process, current_group;
5470 #ifdef HAVE_SOCKETS
5471 if (PROCESSP (process) && NETCONN_P (process))
5473 struct Lisp_Process *p;
5475 p = XPROCESS (process);
5476 if (EQ (p->command, Qt)
5477 && XINT (p->infd) >= 0
5478 && (!EQ (p->filter, Qt) || EQ (p->status, Qlisten)))
5480 FD_SET (XINT (p->infd), &input_wait_mask);
5481 FD_SET (XINT (p->infd), &non_keyboard_wait_mask);
5483 p->command = Qnil;
5484 return process;
5486 #endif
5487 #ifdef SIGCONT
5488 process_send_signal (process, SIGCONT, current_group, 0);
5489 #else
5490 error ("no SIGCONT support");
5491 #endif
5492 return process;
5495 DEFUN ("signal-process", Fsignal_process, Ssignal_process,
5496 2, 2, "sProcess (name or number): \nnSignal code: ",
5497 doc: /* Send PROCESS the signal with code SIGCODE.
5498 PROCESS may also be an integer specifying the process id of the
5499 process to signal; in this case, the process need not be a child of
5500 this Emacs.
5501 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
5502 (process, sigcode)
5503 Lisp_Object process, sigcode;
5505 Lisp_Object pid;
5507 if (INTEGERP (process))
5509 pid = process;
5510 goto got_it;
5513 if (STRINGP (process))
5515 Lisp_Object tem;
5516 if (tem = Fget_process (process), NILP (tem))
5518 pid = Fstring_to_number (process, make_number (10));
5519 if (XINT (pid) != 0)
5520 goto got_it;
5522 process = tem;
5524 else
5525 process = get_process (process);
5527 if (NILP (process))
5528 return process;
5530 CHECK_PROCESS (process);
5531 pid = XPROCESS (process)->pid;
5532 if (!INTEGERP (pid) || XINT (pid) <= 0)
5533 error ("Cannot signal process %s", SDATA (XPROCESS (process)->name));
5535 got_it:
5537 #define handle_signal(NAME, VALUE) \
5538 else if (!strcmp (name, NAME)) \
5539 XSETINT (sigcode, VALUE)
5541 if (INTEGERP (sigcode))
5543 else
5545 unsigned char *name;
5547 CHECK_SYMBOL (sigcode);
5548 name = SDATA (SYMBOL_NAME (sigcode));
5550 if (0)
5552 #ifdef SIGHUP
5553 handle_signal ("SIGHUP", SIGHUP);
5554 #endif
5555 #ifdef SIGINT
5556 handle_signal ("SIGINT", SIGINT);
5557 #endif
5558 #ifdef SIGQUIT
5559 handle_signal ("SIGQUIT", SIGQUIT);
5560 #endif
5561 #ifdef SIGILL
5562 handle_signal ("SIGILL", SIGILL);
5563 #endif
5564 #ifdef SIGABRT
5565 handle_signal ("SIGABRT", SIGABRT);
5566 #endif
5567 #ifdef SIGEMT
5568 handle_signal ("SIGEMT", SIGEMT);
5569 #endif
5570 #ifdef SIGKILL
5571 handle_signal ("SIGKILL", SIGKILL);
5572 #endif
5573 #ifdef SIGFPE
5574 handle_signal ("SIGFPE", SIGFPE);
5575 #endif
5576 #ifdef SIGBUS
5577 handle_signal ("SIGBUS", SIGBUS);
5578 #endif
5579 #ifdef SIGSEGV
5580 handle_signal ("SIGSEGV", SIGSEGV);
5581 #endif
5582 #ifdef SIGSYS
5583 handle_signal ("SIGSYS", SIGSYS);
5584 #endif
5585 #ifdef SIGPIPE
5586 handle_signal ("SIGPIPE", SIGPIPE);
5587 #endif
5588 #ifdef SIGALRM
5589 handle_signal ("SIGALRM", SIGALRM);
5590 #endif
5591 #ifdef SIGTERM
5592 handle_signal ("SIGTERM", SIGTERM);
5593 #endif
5594 #ifdef SIGURG
5595 handle_signal ("SIGURG", SIGURG);
5596 #endif
5597 #ifdef SIGSTOP
5598 handle_signal ("SIGSTOP", SIGSTOP);
5599 #endif
5600 #ifdef SIGTSTP
5601 handle_signal ("SIGTSTP", SIGTSTP);
5602 #endif
5603 #ifdef SIGCONT
5604 handle_signal ("SIGCONT", SIGCONT);
5605 #endif
5606 #ifdef SIGCHLD
5607 handle_signal ("SIGCHLD", SIGCHLD);
5608 #endif
5609 #ifdef SIGTTIN
5610 handle_signal ("SIGTTIN", SIGTTIN);
5611 #endif
5612 #ifdef SIGTTOU
5613 handle_signal ("SIGTTOU", SIGTTOU);
5614 #endif
5615 #ifdef SIGIO
5616 handle_signal ("SIGIO", SIGIO);
5617 #endif
5618 #ifdef SIGXCPU
5619 handle_signal ("SIGXCPU", SIGXCPU);
5620 #endif
5621 #ifdef SIGXFSZ
5622 handle_signal ("SIGXFSZ", SIGXFSZ);
5623 #endif
5624 #ifdef SIGVTALRM
5625 handle_signal ("SIGVTALRM", SIGVTALRM);
5626 #endif
5627 #ifdef SIGPROF
5628 handle_signal ("SIGPROF", SIGPROF);
5629 #endif
5630 #ifdef SIGWINCH
5631 handle_signal ("SIGWINCH", SIGWINCH);
5632 #endif
5633 #ifdef SIGINFO
5634 handle_signal ("SIGINFO", SIGINFO);
5635 #endif
5636 #ifdef SIGUSR1
5637 handle_signal ("SIGUSR1", SIGUSR1);
5638 #endif
5639 #ifdef SIGUSR2
5640 handle_signal ("SIGUSR2", SIGUSR2);
5641 #endif
5642 else
5643 error ("Undefined signal name %s", name);
5646 #undef handle_signal
5648 return make_number (kill (XINT (pid), XINT (sigcode)));
5651 DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
5652 doc: /* Make PROCESS see end-of-file in its input.
5653 EOF comes after any text already sent to it.
5654 PROCESS may be a process, a buffer, the name of a process or buffer, or
5655 nil, indicating the current buffer's process.
5656 If PROCESS is a network connection, or is a process communicating
5657 through a pipe (as opposed to a pty), then you cannot send any more
5658 text to PROCESS after you call this function. */)
5659 (process)
5660 Lisp_Object process;
5662 Lisp_Object proc;
5663 struct coding_system *coding;
5665 if (DATAGRAM_CONN_P (process))
5666 return process;
5668 proc = get_process (process);
5669 coding = proc_encode_coding_system[XINT (XPROCESS (proc)->outfd)];
5671 /* Make sure the process is really alive. */
5672 if (! NILP (XPROCESS (proc)->raw_status_low))
5673 update_status (XPROCESS (proc));
5674 if (! EQ (XPROCESS (proc)->status, Qrun))
5675 error ("Process %s not running", SDATA (XPROCESS (proc)->name));
5677 if (CODING_REQUIRE_FLUSHING (coding))
5679 coding->mode |= CODING_MODE_LAST_BLOCK;
5680 send_process (proc, "", 0, Qnil);
5683 #ifdef VMS
5684 send_process (proc, "\032", 1, Qnil); /* ^z */
5685 #else
5686 if (!NILP (XPROCESS (proc)->pty_flag))
5687 send_process (proc, "\004", 1, Qnil);
5688 else
5690 int old_outfd, new_outfd;
5692 #ifdef HAVE_SHUTDOWN
5693 /* If this is a network connection, or socketpair is used
5694 for communication with the subprocess, call shutdown to cause EOF.
5695 (In some old system, shutdown to socketpair doesn't work.
5696 Then we just can't win.) */
5697 if (NILP (XPROCESS (proc)->pid)
5698 || XINT (XPROCESS (proc)->outfd) == XINT (XPROCESS (proc)->infd))
5699 shutdown (XINT (XPROCESS (proc)->outfd), 1);
5700 /* In case of socketpair, outfd == infd, so don't close it. */
5701 if (XINT (XPROCESS (proc)->outfd) != XINT (XPROCESS (proc)->infd))
5702 emacs_close (XINT (XPROCESS (proc)->outfd));
5703 #else /* not HAVE_SHUTDOWN */
5704 emacs_close (XINT (XPROCESS (proc)->outfd));
5705 #endif /* not HAVE_SHUTDOWN */
5706 new_outfd = emacs_open (NULL_DEVICE, O_WRONLY, 0);
5707 old_outfd = XINT (XPROCESS (proc)->outfd);
5709 if (!proc_encode_coding_system[new_outfd])
5710 proc_encode_coding_system[new_outfd]
5711 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
5712 bcopy (proc_encode_coding_system[old_outfd],
5713 proc_encode_coding_system[new_outfd],
5714 sizeof (struct coding_system));
5715 bzero (proc_encode_coding_system[old_outfd],
5716 sizeof (struct coding_system));
5718 XSETINT (XPROCESS (proc)->outfd, new_outfd);
5720 #endif /* VMS */
5721 return process;
5724 /* Kill all processes associated with `buffer'.
5725 If `buffer' is nil, kill all processes */
5727 void
5728 kill_buffer_processes (buffer)
5729 Lisp_Object buffer;
5731 Lisp_Object tail, proc;
5733 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
5735 proc = XCDR (XCAR (tail));
5736 if (GC_PROCESSP (proc)
5737 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
5739 if (NETCONN_P (proc))
5740 Fdelete_process (proc);
5741 else if (XINT (XPROCESS (proc)->infd) >= 0)
5742 process_send_signal (proc, SIGHUP, Qnil, 1);
5747 /* On receipt of a signal that a child status has changed, loop asking
5748 about children with changed statuses until the system says there
5749 are no more.
5751 All we do is change the status; we do not run sentinels or print
5752 notifications. That is saved for the next time keyboard input is
5753 done, in order to avoid timing errors.
5755 ** WARNING: this can be called during garbage collection.
5756 Therefore, it must not be fooled by the presence of mark bits in
5757 Lisp objects.
5759 ** USG WARNING: Although it is not obvious from the documentation
5760 in signal(2), on a USG system the SIGCLD handler MUST NOT call
5761 signal() before executing at least one wait(), otherwise the
5762 handler will be called again, resulting in an infinite loop. The
5763 relevant portion of the documentation reads "SIGCLD signals will be
5764 queued and the signal-catching function will be continually
5765 reentered until the queue is empty". Invoking signal() causes the
5766 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
5767 Inc. */
5769 SIGTYPE
5770 sigchld_handler (signo)
5771 int signo;
5773 int old_errno = errno;
5774 Lisp_Object proc;
5775 register struct Lisp_Process *p;
5776 extern EMACS_TIME *input_available_clear_time;
5778 #ifdef BSD4_1
5779 extern int sigheld;
5780 sigheld |= sigbit (SIGCHLD);
5781 #endif
5783 while (1)
5785 register int pid;
5786 WAITTYPE w;
5787 Lisp_Object tail;
5789 #ifdef WNOHANG
5790 #ifndef WUNTRACED
5791 #define WUNTRACED 0
5792 #endif /* no WUNTRACED */
5793 /* Keep trying to get a status until we get a definitive result. */
5796 errno = 0;
5797 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
5799 while (pid < 0 && errno == EINTR);
5801 if (pid <= 0)
5803 /* PID == 0 means no processes found, PID == -1 means a real
5804 failure. We have done all our job, so return. */
5806 /* USG systems forget handlers when they are used;
5807 must reestablish each time */
5808 #if defined (USG) && !defined (POSIX_SIGNALS)
5809 signal (signo, sigchld_handler); /* WARNING - must come after wait3() */
5810 #endif
5811 #ifdef BSD4_1
5812 sigheld &= ~sigbit (SIGCHLD);
5813 sigrelse (SIGCHLD);
5814 #endif
5815 errno = old_errno;
5816 return;
5818 #else
5819 pid = wait (&w);
5820 #endif /* no WNOHANG */
5822 /* Find the process that signaled us, and record its status. */
5824 p = 0;
5825 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
5827 proc = XCDR (XCAR (tail));
5828 p = XPROCESS (proc);
5829 if (GC_EQ (p->childp, Qt) && XINT (p->pid) == pid)
5830 break;
5831 p = 0;
5834 /* Look for an asynchronous process whose pid hasn't been filled
5835 in yet. */
5836 if (p == 0)
5837 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
5839 proc = XCDR (XCAR (tail));
5840 p = XPROCESS (proc);
5841 if (GC_INTEGERP (p->pid) && XINT (p->pid) == -1)
5842 break;
5843 p = 0;
5846 /* Change the status of the process that was found. */
5847 if (p != 0)
5849 union { int i; WAITTYPE wt; } u;
5850 int clear_desc_flag = 0;
5852 XSETINT (p->tick, ++process_tick);
5853 u.wt = w;
5854 XSETINT (p->raw_status_low, u.i & 0xffff);
5855 XSETINT (p->raw_status_high, u.i >> 16);
5857 /* If process has terminated, stop waiting for its output. */
5858 if ((WIFSIGNALED (w) || WIFEXITED (w))
5859 && XINT (p->infd) >= 0)
5860 clear_desc_flag = 1;
5862 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
5863 if (clear_desc_flag)
5865 FD_CLR (XINT (p->infd), &input_wait_mask);
5866 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask);
5869 /* Tell wait_reading_process_input that it needs to wake up and
5870 look around. */
5871 if (input_available_clear_time)
5872 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
5875 /* There was no asynchronous process found for that id. Check
5876 if we have a synchronous process. */
5877 else
5879 synch_process_alive = 0;
5881 /* Report the status of the synchronous process. */
5882 if (WIFEXITED (w))
5883 synch_process_retcode = WRETCODE (w);
5884 else if (WIFSIGNALED (w))
5886 int code = WTERMSIG (w);
5887 char *signame;
5889 synchronize_system_messages_locale ();
5890 signame = strsignal (code);
5892 if (signame == 0)
5893 signame = "unknown";
5895 synch_process_death = signame;
5898 /* Tell wait_reading_process_input that it needs to wake up and
5899 look around. */
5900 if (input_available_clear_time)
5901 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
5904 /* On some systems, we must return right away.
5905 If any more processes want to signal us, we will
5906 get another signal.
5907 Otherwise (on systems that have WNOHANG), loop around
5908 to use up all the processes that have something to tell us. */
5909 #if (defined WINDOWSNT \
5910 || (defined USG && !defined GNU_LINUX \
5911 && !(defined HPUX && defined WNOHANG)))
5912 #if defined (USG) && ! defined (POSIX_SIGNALS)
5913 signal (signo, sigchld_handler);
5914 #endif
5915 errno = old_errno;
5916 return;
5917 #endif /* USG, but not HPUX with WNOHANG */
5922 static Lisp_Object
5923 exec_sentinel_unwind (data)
5924 Lisp_Object data;
5926 XPROCESS (XCAR (data))->sentinel = XCDR (data);
5927 return Qnil;
5930 static Lisp_Object
5931 exec_sentinel_error_handler (error)
5932 Lisp_Object error;
5934 cmd_error_internal (error, "error in process sentinel: ");
5935 Vinhibit_quit = Qt;
5936 update_echo_area ();
5937 Fsleep_for (make_number (2), Qnil);
5938 return Qt;
5941 static void
5942 exec_sentinel (proc, reason)
5943 Lisp_Object proc, reason;
5945 Lisp_Object sentinel, obuffer, odeactivate, okeymap;
5946 register struct Lisp_Process *p = XPROCESS (proc);
5947 int count = SPECPDL_INDEX ();
5948 int outer_running_asynch_code = running_asynch_code;
5949 int waiting = waiting_for_user_input_p;
5951 /* No need to gcpro these, because all we do with them later
5952 is test them for EQness, and none of them should be a string. */
5953 odeactivate = Vdeactivate_mark;
5954 XSETBUFFER (obuffer, current_buffer);
5955 okeymap = current_buffer->keymap;
5957 sentinel = p->sentinel;
5958 if (NILP (sentinel))
5959 return;
5961 /* Zilch the sentinel while it's running, to avoid recursive invocations;
5962 assure that it gets restored no matter how the sentinel exits. */
5963 p->sentinel = Qnil;
5964 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
5965 /* Inhibit quit so that random quits don't screw up a running filter. */
5966 specbind (Qinhibit_quit, Qt);
5967 specbind (Qlast_nonmenu_event, Qt);
5969 /* In case we get recursively called,
5970 and we already saved the match data nonrecursively,
5971 save the same match data in safely recursive fashion. */
5972 if (outer_running_asynch_code)
5974 Lisp_Object tem;
5975 tem = Fmatch_data (Qnil, Qnil);
5976 restore_match_data ();
5977 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
5978 Fset_match_data (tem);
5981 /* For speed, if a search happens within this code,
5982 save the match data in a special nonrecursive fashion. */
5983 running_asynch_code = 1;
5985 internal_condition_case_1 (read_process_output_call,
5986 Fcons (sentinel,
5987 Fcons (proc, Fcons (reason, Qnil))),
5988 !NILP (Vdebug_on_error) ? Qnil : Qerror,
5989 exec_sentinel_error_handler);
5991 /* If we saved the match data nonrecursively, restore it now. */
5992 restore_match_data ();
5993 running_asynch_code = outer_running_asynch_code;
5995 Vdeactivate_mark = odeactivate;
5997 /* Restore waiting_for_user_input_p as it was
5998 when we were called, in case the filter clobbered it. */
5999 waiting_for_user_input_p = waiting;
6001 #if 0
6002 if (! EQ (Fcurrent_buffer (), obuffer)
6003 || ! EQ (current_buffer->keymap, okeymap))
6004 #endif
6005 /* But do it only if the caller is actually going to read events.
6006 Otherwise there's no need to make him wake up, and it could
6007 cause trouble (for example it would make Fsit_for return). */
6008 if (waiting_for_user_input_p == -1)
6009 record_asynch_buffer_change ();
6011 unbind_to (count, Qnil);
6014 /* Report all recent events of a change in process status
6015 (either run the sentinel or output a message).
6016 This is usually done while Emacs is waiting for keyboard input
6017 but can be done at other times. */
6019 void
6020 status_notify ()
6022 register Lisp_Object proc, buffer;
6023 Lisp_Object tail, msg;
6024 struct gcpro gcpro1, gcpro2;
6026 tail = Qnil;
6027 msg = Qnil;
6028 /* We need to gcpro tail; if read_process_output calls a filter
6029 which deletes a process and removes the cons to which tail points
6030 from Vprocess_alist, and then causes a GC, tail is an unprotected
6031 reference. */
6032 GCPRO2 (tail, msg);
6034 /* Set this now, so that if new processes are created by sentinels
6035 that we run, we get called again to handle their status changes. */
6036 update_tick = process_tick;
6038 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
6040 Lisp_Object symbol;
6041 register struct Lisp_Process *p;
6043 proc = Fcdr (Fcar (tail));
6044 p = XPROCESS (proc);
6046 if (XINT (p->tick) != XINT (p->update_tick))
6048 XSETINT (p->update_tick, XINT (p->tick));
6050 /* If process is still active, read any output that remains. */
6051 while (! EQ (p->filter, Qt)
6052 && ! EQ (p->status, Qconnect)
6053 && ! EQ (p->status, Qlisten)
6054 && ! EQ (p->command, Qt) /* Network process not stopped. */
6055 && XINT (p->infd) >= 0
6056 && read_process_output (proc, XINT (p->infd)) > 0);
6058 buffer = p->buffer;
6060 /* Get the text to use for the message. */
6061 if (!NILP (p->raw_status_low))
6062 update_status (p);
6063 msg = status_message (p->status);
6065 /* If process is terminated, deactivate it or delete it. */
6066 symbol = p->status;
6067 if (CONSP (p->status))
6068 symbol = XCAR (p->status);
6070 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
6071 || EQ (symbol, Qclosed))
6073 if (delete_exited_processes)
6074 remove_process (proc);
6075 else
6076 deactivate_process (proc);
6079 /* The actions above may have further incremented p->tick.
6080 So set p->update_tick again
6081 so that an error in the sentinel will not cause
6082 this code to be run again. */
6083 XSETINT (p->update_tick, XINT (p->tick));
6084 /* Now output the message suitably. */
6085 if (!NILP (p->sentinel))
6086 exec_sentinel (proc, msg);
6087 /* Don't bother with a message in the buffer
6088 when a process becomes runnable. */
6089 else if (!EQ (symbol, Qrun) && !NILP (buffer))
6091 Lisp_Object ro, tem;
6092 struct buffer *old = current_buffer;
6093 int opoint, opoint_byte;
6094 int before, before_byte;
6096 ro = XBUFFER (buffer)->read_only;
6098 /* Avoid error if buffer is deleted
6099 (probably that's why the process is dead, too) */
6100 if (NILP (XBUFFER (buffer)->name))
6101 continue;
6102 Fset_buffer (buffer);
6104 opoint = PT;
6105 opoint_byte = PT_BYTE;
6106 /* Insert new output into buffer
6107 at the current end-of-output marker,
6108 thus preserving logical ordering of input and output. */
6109 if (XMARKER (p->mark)->buffer)
6110 Fgoto_char (p->mark);
6111 else
6112 SET_PT_BOTH (ZV, ZV_BYTE);
6114 before = PT;
6115 before_byte = PT_BYTE;
6117 tem = current_buffer->read_only;
6118 current_buffer->read_only = Qnil;
6119 insert_string ("\nProcess ");
6120 Finsert (1, &p->name);
6121 insert_string (" ");
6122 Finsert (1, &msg);
6123 current_buffer->read_only = tem;
6124 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
6126 if (opoint >= before)
6127 SET_PT_BOTH (opoint + (PT - before),
6128 opoint_byte + (PT_BYTE - before_byte));
6129 else
6130 SET_PT_BOTH (opoint, opoint_byte);
6132 set_buffer_internal (old);
6135 } /* end for */
6137 update_mode_lines++; /* in case buffers use %s in mode-line-format */
6138 redisplay_preserve_echo_area (13);
6140 UNGCPRO;
6144 DEFUN ("set-process-coding-system", Fset_process_coding_system,
6145 Sset_process_coding_system, 1, 3, 0,
6146 doc: /* Set coding systems of PROCESS to DECODING and ENCODING.
6147 DECODING will be used to decode subprocess output and ENCODING to
6148 encode subprocess input. */)
6149 (proc, decoding, encoding)
6150 register Lisp_Object proc, decoding, encoding;
6152 register struct Lisp_Process *p;
6154 CHECK_PROCESS (proc);
6155 p = XPROCESS (proc);
6156 if (XINT (p->infd) < 0)
6157 error ("Input file descriptor of %s closed", SDATA (p->name));
6158 if (XINT (p->outfd) < 0)
6159 error ("Output file descriptor of %s closed", SDATA (p->name));
6160 Fcheck_coding_system (decoding);
6161 Fcheck_coding_system (encoding);
6163 p->decode_coding_system = decoding;
6164 p->encode_coding_system = encoding;
6165 setup_process_coding_systems (proc);
6167 return Qnil;
6170 DEFUN ("process-coding-system",
6171 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0,
6172 doc: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
6173 (proc)
6174 register Lisp_Object proc;
6176 CHECK_PROCESS (proc);
6177 return Fcons (XPROCESS (proc)->decode_coding_system,
6178 XPROCESS (proc)->encode_coding_system);
6181 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte,
6182 Sset_process_filter_multibyte, 2, 2, 0,
6183 doc: /* Set multibyteness of the strings given to PROCESS's filter.
6184 If FLAG is non-nil, the filter is given multibyte strings.
6185 If FLAG is nil, the filter is given unibyte strings. In this case,
6186 all character code conversion except for end-of-line conversion is
6187 suppressed. */)
6188 (proc, flag)
6189 Lisp_Object proc, flag;
6191 register struct Lisp_Process *p;
6193 CHECK_PROCESS (proc);
6194 p = XPROCESS (proc);
6195 p->filter_multibyte = flag;
6196 setup_process_coding_systems (proc);
6198 return Qnil;
6201 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p,
6202 Sprocess_filter_multibyte_p, 1, 1, 0,
6203 doc: /* Return t if a multibyte string is given to PROCESS's filter.*/)
6204 (proc)
6205 Lisp_Object proc;
6207 register struct Lisp_Process *p;
6209 CHECK_PROCESS (proc);
6210 p = XPROCESS (proc);
6212 return (NILP (p->filter_multibyte) ? Qnil : Qt);
6217 /* The first time this is called, assume keyboard input comes from DESC
6218 instead of from where we used to expect it.
6219 Subsequent calls mean assume input keyboard can come from DESC
6220 in addition to other places. */
6222 static int add_keyboard_wait_descriptor_called_flag;
6224 void
6225 add_keyboard_wait_descriptor (desc)
6226 int desc;
6228 if (! add_keyboard_wait_descriptor_called_flag)
6229 FD_CLR (0, &input_wait_mask);
6230 add_keyboard_wait_descriptor_called_flag = 1;
6231 FD_SET (desc, &input_wait_mask);
6232 FD_SET (desc, &non_process_wait_mask);
6233 if (desc > max_keyboard_desc)
6234 max_keyboard_desc = desc;
6237 /* From now on, do not expect DESC to give keyboard input. */
6239 void
6240 delete_keyboard_wait_descriptor (desc)
6241 int desc;
6243 int fd;
6244 int lim = max_keyboard_desc;
6246 FD_CLR (desc, &input_wait_mask);
6247 FD_CLR (desc, &non_process_wait_mask);
6249 if (desc == max_keyboard_desc)
6250 for (fd = 0; fd < lim; fd++)
6251 if (FD_ISSET (fd, &input_wait_mask)
6252 && !FD_ISSET (fd, &non_keyboard_wait_mask))
6253 max_keyboard_desc = fd;
6256 /* Return nonzero if *MASK has a bit set
6257 that corresponds to one of the keyboard input descriptors. */
6260 keyboard_bit_set (mask)
6261 SELECT_TYPE *mask;
6263 int fd;
6265 for (fd = 0; fd <= max_keyboard_desc; fd++)
6266 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask)
6267 && !FD_ISSET (fd, &non_keyboard_wait_mask))
6268 return 1;
6270 return 0;
6273 void
6274 init_process ()
6276 register int i;
6278 #ifdef SIGCHLD
6279 #ifndef CANNOT_DUMP
6280 if (! noninteractive || initialized)
6281 #endif
6282 signal (SIGCHLD, sigchld_handler);
6283 #endif
6285 FD_ZERO (&input_wait_mask);
6286 FD_ZERO (&non_keyboard_wait_mask);
6287 FD_ZERO (&non_process_wait_mask);
6288 max_process_desc = 0;
6290 FD_SET (0, &input_wait_mask);
6292 Vprocess_alist = Qnil;
6293 for (i = 0; i < MAXDESC; i++)
6295 chan_process[i] = Qnil;
6296 proc_buffered_char[i] = -1;
6298 bzero (proc_decode_coding_system, sizeof proc_decode_coding_system);
6299 bzero (proc_encode_coding_system, sizeof proc_encode_coding_system);
6300 #ifdef DATAGRAM_SOCKETS
6301 bzero (datagram_address, sizeof datagram_address);
6302 #endif
6304 #ifdef HAVE_SOCKETS
6306 Lisp_Object subfeatures = Qnil;
6307 #define ADD_SUBFEATURE(key, val) \
6308 subfeatures = Fcons (Fcons (key, Fcons (val, Qnil)), subfeatures)
6310 #ifdef NON_BLOCKING_CONNECT
6311 ADD_SUBFEATURE (QCnowait, Qt);
6312 #endif
6313 #ifdef DATAGRAM_SOCKETS
6314 ADD_SUBFEATURE (QCtype, Qdatagram);
6315 #endif
6316 #ifdef HAVE_LOCAL_SOCKETS
6317 ADD_SUBFEATURE (QCfamily, Qlocal);
6318 #endif
6319 #ifdef HAVE_GETSOCKNAME
6320 ADD_SUBFEATURE (QCservice, Qt);
6321 #endif
6322 #if !defined(TERM) && (defined(O_NONBLOCK) || defined(O_NDELAY))
6323 ADD_SUBFEATURE (QCserver, Qt);
6324 #endif
6325 #ifdef SO_BINDTODEVICE
6326 ADD_SUBFEATURE (QCoptions, intern ("bindtodevice"));
6327 #endif
6328 #ifdef SO_BROADCAST
6329 ADD_SUBFEATURE (QCoptions, intern ("broadcast"));
6330 #endif
6331 #ifdef SO_DONTROUTE
6332 ADD_SUBFEATURE (QCoptions, intern ("dontroute"));
6333 #endif
6334 #ifdef SO_KEEPALIVE
6335 ADD_SUBFEATURE (QCoptions, intern ("keepalive"));
6336 #endif
6337 #ifdef SO_LINGER
6338 ADD_SUBFEATURE (QCoptions, intern ("linger"));
6339 #endif
6340 #ifdef SO_OOBINLINE
6341 ADD_SUBFEATURE (QCoptions, intern ("oobinline"));
6342 #endif
6343 #ifdef SO_PRIORITY
6344 ADD_SUBFEATURE (QCoptions, intern ("priority"));
6345 #endif
6346 #ifdef SO_REUSEADDR
6347 ADD_SUBFEATURE (QCoptions, intern ("reuseaddr"));
6348 #endif
6349 Fprovide (intern ("make-network-process"), subfeatures);
6351 #endif /* HAVE_SOCKETS */
6354 void
6355 syms_of_process ()
6357 Qprocessp = intern ("processp");
6358 staticpro (&Qprocessp);
6359 Qrun = intern ("run");
6360 staticpro (&Qrun);
6361 Qstop = intern ("stop");
6362 staticpro (&Qstop);
6363 Qsignal = intern ("signal");
6364 staticpro (&Qsignal);
6366 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
6367 here again.
6369 Qexit = intern ("exit");
6370 staticpro (&Qexit); */
6372 Qopen = intern ("open");
6373 staticpro (&Qopen);
6374 Qclosed = intern ("closed");
6375 staticpro (&Qclosed);
6376 Qconnect = intern ("connect");
6377 staticpro (&Qconnect);
6378 Qfailed = intern ("failed");
6379 staticpro (&Qfailed);
6380 Qlisten = intern ("listen");
6381 staticpro (&Qlisten);
6382 Qlocal = intern ("local");
6383 staticpro (&Qlocal);
6384 Qdatagram = intern ("datagram");
6385 staticpro (&Qdatagram);
6387 QCname = intern (":name");
6388 staticpro (&QCname);
6389 QCbuffer = intern (":buffer");
6390 staticpro (&QCbuffer);
6391 QChost = intern (":host");
6392 staticpro (&QChost);
6393 QCservice = intern (":service");
6394 staticpro (&QCservice);
6395 QCtype = intern (":type");
6396 staticpro (&QCtype);
6397 QClocal = intern (":local");
6398 staticpro (&QClocal);
6399 QCremote = intern (":remote");
6400 staticpro (&QCremote);
6401 QCcoding = intern (":coding");
6402 staticpro (&QCcoding);
6403 QCserver = intern (":server");
6404 staticpro (&QCserver);
6405 QCnowait = intern (":nowait");
6406 staticpro (&QCnowait);
6407 QCsentinel = intern (":sentinel");
6408 staticpro (&QCsentinel);
6409 QClog = intern (":log");
6410 staticpro (&QClog);
6411 QCnoquery = intern (":noquery");
6412 staticpro (&QCnoquery);
6413 QCstop = intern (":stop");
6414 staticpro (&QCstop);
6415 QCoptions = intern (":options");
6416 staticpro (&QCoptions);
6417 QCplist = intern (":plist");
6418 staticpro (&QCplist);
6419 QCfilter_multibyte = intern (":filter-multibyte");
6420 staticpro (&QCfilter_multibyte);
6422 Qlast_nonmenu_event = intern ("last-nonmenu-event");
6423 staticpro (&Qlast_nonmenu_event);
6425 staticpro (&Vprocess_alist);
6427 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
6428 doc: /* *Non-nil means delete processes immediately when they exit.
6429 nil means don't delete them until `list-processes' is run. */);
6431 delete_exited_processes = 1;
6433 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type,
6434 doc: /* Control type of device used to communicate with subprocesses.
6435 Values are nil to use a pipe, or t or `pty' to use a pty.
6436 The value has no effect if the system has no ptys or if all ptys are busy:
6437 then a pipe is used in any case.
6438 The value takes effect when `start-process' is called. */);
6439 Vprocess_connection_type = Qt;
6441 defsubr (&Sprocessp);
6442 defsubr (&Sget_process);
6443 defsubr (&Sget_buffer_process);
6444 defsubr (&Sdelete_process);
6445 defsubr (&Sprocess_status);
6446 defsubr (&Sprocess_exit_status);
6447 defsubr (&Sprocess_id);
6448 defsubr (&Sprocess_name);
6449 defsubr (&Sprocess_tty_name);
6450 defsubr (&Sprocess_command);
6451 defsubr (&Sset_process_buffer);
6452 defsubr (&Sprocess_buffer);
6453 defsubr (&Sprocess_mark);
6454 defsubr (&Sset_process_filter);
6455 defsubr (&Sprocess_filter);
6456 defsubr (&Sset_process_sentinel);
6457 defsubr (&Sprocess_sentinel);
6458 defsubr (&Sset_process_window_size);
6459 defsubr (&Sset_process_inherit_coding_system_flag);
6460 defsubr (&Sprocess_inherit_coding_system_flag);
6461 defsubr (&Sset_process_query_on_exit_flag);
6462 defsubr (&Sprocess_query_on_exit_flag);
6463 defsubr (&Sprocess_contact);
6464 defsubr (&Sprocess_plist);
6465 defsubr (&Sset_process_plist);
6466 defsubr (&Slist_processes);
6467 defsubr (&Sprocess_list);
6468 defsubr (&Sstart_process);
6469 #ifdef HAVE_SOCKETS
6470 defsubr (&Sset_network_process_options);
6471 defsubr (&Smake_network_process);
6472 defsubr (&Sformat_network_address);
6473 #endif /* HAVE_SOCKETS */
6474 #ifdef DATAGRAM_SOCKETS
6475 defsubr (&Sprocess_datagram_address);
6476 defsubr (&Sset_process_datagram_address);
6477 #endif
6478 defsubr (&Saccept_process_output);
6479 defsubr (&Sprocess_send_region);
6480 defsubr (&Sprocess_send_string);
6481 defsubr (&Sinterrupt_process);
6482 defsubr (&Skill_process);
6483 defsubr (&Squit_process);
6484 defsubr (&Sstop_process);
6485 defsubr (&Scontinue_process);
6486 defsubr (&Sprocess_running_child_p);
6487 defsubr (&Sprocess_send_eof);
6488 defsubr (&Ssignal_process);
6489 defsubr (&Swaiting_for_user_input_p);
6490 /* defsubr (&Sprocess_connection); */
6491 defsubr (&Sset_process_coding_system);
6492 defsubr (&Sprocess_coding_system);
6493 defsubr (&Sset_process_filter_multibyte);
6494 defsubr (&Sprocess_filter_multibyte_p);
6498 #else /* not subprocesses */
6500 #include <sys/types.h>
6501 #include <errno.h>
6503 #include "lisp.h"
6504 #include "systime.h"
6505 #include "charset.h"
6506 #include "coding.h"
6507 #include "termopts.h"
6508 #include "sysselect.h"
6510 extern int frame_garbaged;
6512 extern EMACS_TIME timer_check ();
6513 extern int timers_run;
6515 Lisp_Object QCtype;
6517 /* As described above, except assuming that there are no subprocesses:
6519 Wait for timeout to elapse and/or keyboard input to be available.
6521 time_limit is:
6522 timeout in seconds, or
6523 zero for no limit, or
6524 -1 means gobble data immediately available but don't wait for any.
6526 read_kbd is a Lisp_Object:
6527 0 to ignore keyboard input, or
6528 1 to return when input is available, or
6529 -1 means caller will actually read the input, so don't throw to
6530 the quit handler.
6531 a cons cell, meaning wait until its car is non-nil
6532 (and gobble terminal input into the buffer if any arrives), or
6533 We know that read_kbd will never be a Lisp_Process, since
6534 `subprocesses' isn't defined.
6536 do_display != 0 means redisplay should be done to show subprocess
6537 output that arrives.
6539 Return true iff we received input from any process. */
6542 wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
6543 int time_limit, microsecs;
6544 Lisp_Object read_kbd;
6545 int do_display;
6547 register int nfds;
6548 EMACS_TIME end_time, timeout;
6549 SELECT_TYPE waitchannels;
6550 int xerrno;
6551 /* Either nil or a cons cell, the car of which is of interest and
6552 may be changed outside of this routine. */
6553 Lisp_Object wait_for_cell;
6555 wait_for_cell = Qnil;
6557 /* If waiting for non-nil in a cell, record where. */
6558 if (CONSP (read_kbd))
6560 wait_for_cell = read_kbd;
6561 XSETFASTINT (read_kbd, 0);
6564 /* What does time_limit really mean? */
6565 if (time_limit || microsecs)
6567 EMACS_GET_TIME (end_time);
6568 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
6569 EMACS_ADD_TIME (end_time, end_time, timeout);
6572 /* Turn off periodic alarms (in case they are in use)
6573 and then turn off any other atimers,
6574 because the select emulator uses alarms. */
6575 stop_polling ();
6576 turn_on_atimers (0);
6578 while (1)
6580 int timeout_reduced_for_timers = 0;
6582 /* If calling from keyboard input, do not quit
6583 since we want to return C-g as an input character.
6584 Otherwise, do pending quit if requested. */
6585 if (XINT (read_kbd) >= 0)
6586 QUIT;
6588 /* Exit now if the cell we're waiting for became non-nil. */
6589 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
6590 break;
6592 /* Compute time from now till when time limit is up */
6593 /* Exit if already run out */
6594 if (time_limit == -1)
6596 /* -1 specified for timeout means
6597 gobble output available now
6598 but don't wait at all. */
6600 EMACS_SET_SECS_USECS (timeout, 0, 0);
6602 else if (time_limit || microsecs)
6604 EMACS_GET_TIME (timeout);
6605 EMACS_SUB_TIME (timeout, end_time, timeout);
6606 if (EMACS_TIME_NEG_P (timeout))
6607 break;
6609 else
6611 EMACS_SET_SECS_USECS (timeout, 100000, 0);
6614 /* If our caller will not immediately handle keyboard events,
6615 run timer events directly.
6616 (Callers that will immediately read keyboard events
6617 call timer_delay on their own.) */
6618 if (NILP (wait_for_cell))
6620 EMACS_TIME timer_delay;
6624 int old_timers_run = timers_run;
6625 timer_delay = timer_check (1);
6626 if (timers_run != old_timers_run && do_display)
6627 /* We must retry, since a timer may have requeued itself
6628 and that could alter the time delay. */
6629 redisplay_preserve_echo_area (14);
6630 else
6631 break;
6633 while (!detect_input_pending ());
6635 /* If there is unread keyboard input, also return. */
6636 if (XINT (read_kbd) != 0
6637 && requeued_events_pending_p ())
6638 break;
6640 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
6642 EMACS_TIME difference;
6643 EMACS_SUB_TIME (difference, timer_delay, timeout);
6644 if (EMACS_TIME_NEG_P (difference))
6646 timeout = timer_delay;
6647 timeout_reduced_for_timers = 1;
6652 /* Cause C-g and alarm signals to take immediate action,
6653 and cause input available signals to zero out timeout. */
6654 if (XINT (read_kbd) < 0)
6655 set_waiting_for_input (&timeout);
6657 /* Wait till there is something to do. */
6659 if (! XINT (read_kbd) && NILP (wait_for_cell))
6660 FD_ZERO (&waitchannels);
6661 else
6662 FD_SET (0, &waitchannels);
6664 /* If a frame has been newly mapped and needs updating,
6665 reprocess its display stuff. */
6666 if (frame_garbaged && do_display)
6668 clear_waiting_for_input ();
6669 redisplay_preserve_echo_area (15);
6670 if (XINT (read_kbd) < 0)
6671 set_waiting_for_input (&timeout);
6674 if (XINT (read_kbd) && detect_input_pending ())
6676 nfds = 0;
6677 FD_ZERO (&waitchannels);
6679 else
6680 nfds = select (1, &waitchannels, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
6681 &timeout);
6683 xerrno = errno;
6685 /* Make C-g and alarm signals set flags again */
6686 clear_waiting_for_input ();
6688 /* If we woke up due to SIGWINCH, actually change size now. */
6689 do_pending_window_change (0);
6691 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
6692 /* We waited the full specified time, so return now. */
6693 break;
6695 if (nfds == -1)
6697 /* If the system call was interrupted, then go around the
6698 loop again. */
6699 if (xerrno == EINTR)
6700 FD_ZERO (&waitchannels);
6701 else
6702 error ("select error: %s", emacs_strerror (xerrno));
6704 #ifdef sun
6705 else if (nfds > 0 && (waitchannels & 1) && interrupt_input)
6706 /* System sometimes fails to deliver SIGIO. */
6707 kill (getpid (), SIGIO);
6708 #endif
6709 #ifdef SIGIO
6710 if (XINT (read_kbd) && interrupt_input && (waitchannels & 1))
6711 kill (getpid (), SIGIO);
6712 #endif
6714 /* Check for keyboard input */
6716 if ((XINT (read_kbd) != 0)
6717 && detect_input_pending_run_timers (do_display))
6719 swallow_events (do_display);
6720 if (detect_input_pending_run_timers (do_display))
6721 break;
6724 /* If there is unread keyboard input, also return. */
6725 if (XINT (read_kbd) != 0
6726 && requeued_events_pending_p ())
6727 break;
6729 /* If wait_for_cell. check for keyboard input
6730 but don't run any timers.
6731 ??? (It seems wrong to me to check for keyboard
6732 input at all when wait_for_cell, but the code
6733 has been this way since July 1994.
6734 Try changing this after version 19.31.) */
6735 if (! NILP (wait_for_cell)
6736 && detect_input_pending ())
6738 swallow_events (do_display);
6739 if (detect_input_pending ())
6740 break;
6743 /* Exit now if the cell we're waiting for became non-nil. */
6744 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
6745 break;
6748 start_polling ();
6750 return 0;
6754 /* Don't confuse make-docfile by having two doc strings for this function.
6755 make-docfile does not pay attention to #if, for good reason! */
6756 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
6758 (name)
6759 register Lisp_Object name;
6761 return Qnil;
6764 /* Don't confuse make-docfile by having two doc strings for this function.
6765 make-docfile does not pay attention to #if, for good reason! */
6766 DEFUN ("process-inherit-coding-system-flag",
6767 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
6768 1, 1, 0,
6770 (process)
6771 register Lisp_Object process;
6773 /* Ignore the argument and return the value of
6774 inherit-process-coding-system. */
6775 return inherit_process_coding_system ? Qt : Qnil;
6778 /* Kill all processes associated with `buffer'.
6779 If `buffer' is nil, kill all processes.
6780 Since we have no subprocesses, this does nothing. */
6782 void
6783 kill_buffer_processes (buffer)
6784 Lisp_Object buffer;
6788 void
6789 init_process ()
6793 void
6794 syms_of_process ()
6796 QCtype = intern (":type");
6797 staticpro (&QCtype);
6799 defsubr (&Sget_buffer_process);
6800 defsubr (&Sprocess_inherit_coding_system_flag);
6804 #endif /* not subprocesses */