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