1 /* Asynchronous subprocess control for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995,
3 1996, 1998, 1999, 2001, 2002, 2003, 2004,
4 2005 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
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. */
40 #include <sys/types.h> /* some typedefs are used in sys/file.h */
47 #if defined(WINDOWSNT) || defined(UNIX98_PTYS)
50 #endif /* not WINDOWSNT */
52 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
53 #include <sys/socket.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 */
61 /* Are local (unix) sockets supported? */
62 #if defined (HAVE_SYS_UN_H) && !defined (NO_SOCKETS_IN_FILE_SYSTEM)
63 #if !defined (AF_LOCAL) && defined (AF_UNIX)
64 #define AF_LOCAL AF_UNIX
67 #define HAVE_LOCAL_SOCKETS
71 #endif /* HAVE_SOCKETS */
73 /* TERM is a poor-man's SLIP, used on GNU/Linux. */
78 /* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */
79 #ifdef HAVE_BROKEN_INET_ADDR
80 #define IN_ADDR struct in_addr
81 #define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1)
83 #define IN_ADDR unsigned long
84 #define NUMERIC_ADDR_ERROR (numeric_addr == -1)
87 #if defined(BSD_SYSTEM) || defined(STRIDE)
88 #include <sys/ioctl.h>
89 #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
91 #endif /* HAVE_PTYS and no O_NDELAY */
92 #endif /* BSD_SYSTEM || STRIDE */
94 #ifdef BROKEN_O_NONBLOCK
96 #endif /* BROKEN_O_NONBLOCK */
102 /* Can we use SIOCGIFCONF and/or SIOCGIFADDR */
104 #if defined(HAVE_SYS_IOCTL_H) && defined(HAVE_NET_IF_H)
105 /* sys/ioctl.h may have been included already */
107 #include <sys/ioctl.h>
114 #include <sys/sysmacros.h> /* for "minor" */
115 #endif /* not IRIS */
118 #include <sys/wait.h>
130 #include "termhooks.h"
131 #include "termopts.h"
132 #include "commands.h"
133 #include "keyboard.h"
135 #include "blockinput.h"
136 #include "dispextern.h"
137 #include "composite.h"
140 Lisp_Object Qprocessp
;
141 Lisp_Object Qrun
, Qstop
, Qsignal
;
142 Lisp_Object Qopen
, Qclosed
, Qconnect
, Qfailed
, Qlisten
;
143 Lisp_Object Qlocal
, Qdatagram
;
144 Lisp_Object QCname
, QCbuffer
, QChost
, QCservice
, QCtype
;
145 Lisp_Object QClocal
, QCremote
, QCcoding
;
146 Lisp_Object QCserver
, QCnowait
, QCnoquery
, QCstop
;
147 Lisp_Object QCsentinel
, QClog
, QCoptions
, QCplist
;
148 Lisp_Object QCfilter_multibyte
;
149 Lisp_Object Qlast_nonmenu_event
;
150 /* QCfamily is declared and initialized in xfaces.c,
151 QCfilter in keyboard.c. */
152 extern Lisp_Object QCfamily
, QCfilter
;
154 /* Qexit is declared and initialized in eval.c. */
156 /* QCfamily is defined in xfaces.c. */
157 extern Lisp_Object QCfamily
;
158 /* QCfilter is defined in keyboard.c. */
159 extern Lisp_Object QCfilter
;
161 /* a process object is a network connection when its childp field is neither
162 Qt nor Qnil but is instead a property list (KEY VAL ...). */
165 #define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp))
166 #define NETCONN1_P(p) (GC_CONSP ((p)->childp))
168 #define NETCONN_P(p) 0
169 #define NETCONN1_P(p) 0
170 #endif /* HAVE_SOCKETS */
172 /* Define first descriptor number available for subprocesses. */
174 #define FIRST_PROC_DESC 1
176 #define FIRST_PROC_DESC 3
179 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
182 #if !defined (SIGCHLD) && defined (SIGCLD)
183 #define SIGCHLD SIGCLD
186 #include "syssignal.h"
190 extern char *get_operating_system_release ();
196 extern char *sys_errlist
[];
203 /* t means use pty, nil means use a pipe,
204 maybe other values to come. */
205 static Lisp_Object Vprocess_connection_type
;
209 #include <sys/socket.h>
213 /* These next two vars are non-static since sysdep.c uses them in the
214 emulation of `select'. */
215 /* Number of events of change of status of a process. */
217 /* Number of events for which the user or sentinel has been notified. */
220 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
222 #ifdef BROKEN_NON_BLOCKING_CONNECT
223 #undef NON_BLOCKING_CONNECT
225 #ifndef NON_BLOCKING_CONNECT
228 #if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX)
229 #if defined (O_NONBLOCK) || defined (O_NDELAY)
230 #if defined (EWOULDBLOCK) || defined (EINPROGRESS)
231 #define NON_BLOCKING_CONNECT
232 #endif /* EWOULDBLOCK || EINPROGRESS */
233 #endif /* O_NONBLOCK || O_NDELAY */
234 #endif /* HAVE_GETPEERNAME || GNU_LINUX */
235 #endif /* HAVE_SELECT */
236 #endif /* HAVE_SOCKETS */
237 #endif /* NON_BLOCKING_CONNECT */
238 #endif /* BROKEN_NON_BLOCKING_CONNECT */
240 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on
241 this system. We need to read full packets, so we need a
242 "non-destructive" select. So we require either native select,
243 or emulation of select using FIONREAD. */
245 #ifdef BROKEN_DATAGRAM_SOCKETS
246 #undef DATAGRAM_SOCKETS
248 #ifndef DATAGRAM_SOCKETS
250 #if defined (HAVE_SELECT) || defined (FIONREAD)
251 #if defined (HAVE_SENDTO) && defined (HAVE_RECVFROM) && defined (EMSGSIZE)
252 #define DATAGRAM_SOCKETS
253 #endif /* HAVE_SENDTO && HAVE_RECVFROM && EMSGSIZE */
254 #endif /* HAVE_SELECT || FIONREAD */
255 #endif /* HAVE_SOCKETS */
256 #endif /* DATAGRAM_SOCKETS */
257 #endif /* BROKEN_DATAGRAM_SOCKETS */
260 #undef NON_BLOCKING_CONNECT
261 #undef DATAGRAM_SOCKETS
264 #if !defined (ADAPTIVE_READ_BUFFERING) && !defined (NO_ADAPTIVE_READ_BUFFERING)
265 #ifdef EMACS_HAS_USECS
266 #define ADAPTIVE_READ_BUFFERING
270 #ifdef ADAPTIVE_READ_BUFFERING
271 #define READ_OUTPUT_DELAY_INCREMENT 10000
272 #define READ_OUTPUT_DELAY_MAX (READ_OUTPUT_DELAY_INCREMENT * 5)
273 #define READ_OUTPUT_DELAY_MAX_MAX (READ_OUTPUT_DELAY_INCREMENT * 7)
275 /* Number of processes which have a non-zero read_output_delay,
276 and therefore might be delayed for adaptive read buffering. */
278 static int process_output_delay_count
;
280 /* Non-zero if any process has non-nil read_output_skip. */
282 static int process_output_skip
;
284 /* Non-nil means to delay reading process output to improve buffering.
285 A value of t means that delay is reset after each send, any other
286 non-nil value does not reset the delay. A value of nil disables
287 adaptive read buffering completely. */
288 static Lisp_Object Vprocess_adaptive_read_buffering
;
290 #define process_output_delay_count 0
294 #include "sysselect.h"
296 static int keyboard_bit_set
P_ ((SELECT_TYPE
*));
297 static void deactivate_process
P_ ((Lisp_Object
));
298 static void status_notify
P_ ((struct Lisp_Process
*));
299 static int read_process_output
P_ ((Lisp_Object
, int));
301 /* If we support a window system, turn on the code to poll periodically
302 to detect C-g. It isn't actually used when doing interrupt input. */
303 #ifdef HAVE_WINDOW_SYSTEM
304 #define POLL_FOR_INPUT
307 /* Mask of bits indicating the descriptors that we wait for input on. */
309 static SELECT_TYPE input_wait_mask
;
311 /* Mask that excludes keyboard input descriptor (s). */
313 static SELECT_TYPE non_keyboard_wait_mask
;
315 /* Mask that excludes process input descriptor (s). */
317 static SELECT_TYPE non_process_wait_mask
;
319 #ifdef NON_BLOCKING_CONNECT
320 /* Mask of bits indicating the descriptors that we wait for connect to
321 complete on. Once they complete, they are removed from this mask
322 and added to the input_wait_mask and non_keyboard_wait_mask. */
324 static SELECT_TYPE connect_wait_mask
;
326 /* Number of bits set in connect_wait_mask. */
327 static int num_pending_connects
;
329 #define IF_NON_BLOCKING_CONNECT(s) s
331 #define IF_NON_BLOCKING_CONNECT(s)
334 /* The largest descriptor currently in use for a process object. */
335 static int max_process_desc
;
337 /* The largest descriptor currently in use for keyboard input. */
338 static int max_keyboard_desc
;
340 /* Nonzero means delete a process right away if it exits. */
341 static int delete_exited_processes
;
343 /* Indexed by descriptor, gives the process (if any) for that descriptor */
344 Lisp_Object chan_process
[MAXDESC
];
346 /* Alist of elements (NAME . PROCESS) */
347 Lisp_Object Vprocess_alist
;
349 /* Buffered-ahead input char from process, indexed by channel.
350 -1 means empty (no char is buffered).
351 Used on sys V where the only way to tell if there is any
352 output from the process is to read at least one char.
353 Always -1 on systems that support FIONREAD. */
355 /* Don't make static; need to access externally. */
356 int proc_buffered_char
[MAXDESC
];
358 /* Table of `struct coding-system' for each process. */
359 static struct coding_system
*proc_decode_coding_system
[MAXDESC
];
360 static struct coding_system
*proc_encode_coding_system
[MAXDESC
];
362 #ifdef DATAGRAM_SOCKETS
363 /* Table of `partner address' for datagram sockets. */
364 struct sockaddr_and_len
{
367 } datagram_address
[MAXDESC
];
368 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
369 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XINT (XPROCESS (proc)->infd)].sa != 0)
371 #define DATAGRAM_CHAN_P(chan) (0)
372 #define DATAGRAM_CONN_P(proc) (0)
375 static Lisp_Object
get_process ();
376 static void exec_sentinel ();
378 extern EMACS_TIME
timer_check ();
379 extern int timers_run
;
381 /* Maximum number of bytes to send to a pty without an eof. */
382 static int pty_max_bytes
;
388 /* The file name of the pty opened by allocate_pty. */
390 static char pty_name
[24];
393 /* Compute the Lisp form of the process status, p->status, from
394 the numeric status that was returned by `wait'. */
396 static Lisp_Object
status_convert ();
400 struct Lisp_Process
*p
;
402 union { int i
; WAITTYPE wt
; } u
;
403 u
.i
= XFASTINT (p
->raw_status_low
) + (XFASTINT (p
->raw_status_high
) << 16);
404 p
->status
= status_convert (u
.wt
);
405 p
->raw_status_low
= Qnil
;
406 p
->raw_status_high
= Qnil
;
409 /* Convert a process status word in Unix format to
410 the list that we use internally. */
417 return Fcons (Qstop
, Fcons (make_number (WSTOPSIG (w
)), Qnil
));
418 else if (WIFEXITED (w
))
419 return Fcons (Qexit
, Fcons (make_number (WRETCODE (w
)),
420 WCOREDUMP (w
) ? Qt
: Qnil
));
421 else if (WIFSIGNALED (w
))
422 return Fcons (Qsignal
, Fcons (make_number (WTERMSIG (w
)),
423 WCOREDUMP (w
) ? Qt
: Qnil
));
428 /* Given a status-list, extract the three pieces of information
429 and store them individually through the three pointers. */
432 decode_status (l
, symbol
, code
, coredump
)
450 *code
= XFASTINT (XCAR (tem
));
452 *coredump
= !NILP (tem
);
456 /* Return a string describing a process status list. */
460 struct Lisp_Process
*p
;
462 Lisp_Object status
= p
->status
;
465 Lisp_Object string
, string2
;
467 decode_status (status
, &symbol
, &code
, &coredump
);
469 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qstop
))
472 synchronize_system_messages_locale ();
473 signame
= strsignal (code
);
476 string
= build_string (signame
);
477 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
478 SSET (string
, 0, DOWNCASE (SREF (string
, 0)));
479 return concat2 (string
, string2
);
481 else if (EQ (symbol
, Qexit
))
484 return build_string (code
== 0 ? "deleted\n" : "connection broken by remote peer\n");
486 return build_string ("finished\n");
487 string
= Fnumber_to_string (make_number (code
));
488 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
489 return concat3 (build_string ("exited abnormally with code "),
492 else if (EQ (symbol
, Qfailed
))
494 string
= Fnumber_to_string (make_number (code
));
495 string2
= build_string ("\n");
496 return concat3 (build_string ("failed with code "),
500 return Fcopy_sequence (Fsymbol_name (symbol
));
505 /* Open an available pty, returning a file descriptor.
506 Return -1 on failure.
507 The file name of the terminal corresponding to the pty
508 is left in the variable pty_name. */
519 for (c
= FIRST_PTY_LETTER
; c
<= 'z'; c
++)
520 for (i
= 0; i
< 16; i
++)
523 struct stat stb
; /* Used in some PTY_OPEN. */
524 #ifdef PTY_NAME_SPRINTF
527 sprintf (pty_name
, "/dev/pty%c%x", c
, i
);
528 #endif /* no PTY_NAME_SPRINTF */
532 #else /* no PTY_OPEN */
535 /* Unusual IRIS code */
536 *ptyv
= emacs_open ("/dev/ptc", O_RDWR
| O_NDELAY
, 0);
539 if (fstat (fd
, &stb
) < 0)
541 # else /* not IRIS */
542 { /* Some systems name their pseudoterminals so that there are gaps in
543 the usual sequence - for example, on HP9000/S700 systems, there
544 are no pseudoterminals with names ending in 'f'. So we wait for
545 three failures in a row before deciding that we've reached the
547 int failed_count
= 0;
549 if (stat (pty_name
, &stb
) < 0)
552 if (failed_count
>= 3)
559 fd
= emacs_open (pty_name
, O_RDWR
| O_NONBLOCK
, 0);
561 fd
= emacs_open (pty_name
, O_RDWR
| O_NDELAY
, 0);
563 # endif /* not IRIS */
565 #endif /* no PTY_OPEN */
569 /* check to make certain that both sides are available
570 this avoids a nasty yet stupid bug in rlogins */
571 #ifdef PTY_TTY_NAME_SPRINTF
574 sprintf (pty_name
, "/dev/tty%c%x", c
, i
);
575 #endif /* no PTY_TTY_NAME_SPRINTF */
577 if (access (pty_name
, 6) != 0)
580 # if !defined(IRIS) && !defined(__sgi)
586 #endif /* not UNIPLUS */
593 #endif /* HAVE_PTYS */
599 register Lisp_Object val
, tem
, name1
;
600 register struct Lisp_Process
*p
;
604 p
= allocate_process ();
606 XSETINT (p
->infd
, -1);
607 XSETINT (p
->outfd
, -1);
608 XSETFASTINT (p
->pid
, 0);
609 XSETFASTINT (p
->tick
, 0);
610 XSETFASTINT (p
->update_tick
, 0);
611 p
->raw_status_low
= Qnil
;
612 p
->raw_status_high
= Qnil
;
614 p
->mark
= Fmake_marker ();
616 #ifdef ADAPTIVE_READ_BUFFERING
617 p
->adaptive_read_buffering
= Qnil
;
618 XSETFASTINT (p
->read_output_delay
, 0);
619 p
->read_output_skip
= Qnil
;
622 /* If name is already in use, modify it until it is unused. */
627 tem
= Fget_process (name1
);
628 if (NILP (tem
)) break;
629 sprintf (suffix
, "<%d>", i
);
630 name1
= concat2 (name
, build_string (suffix
));
634 XSETPROCESS (val
, p
);
635 Vprocess_alist
= Fcons (Fcons (name
, val
), Vprocess_alist
);
640 remove_process (proc
)
641 register Lisp_Object proc
;
643 register Lisp_Object pair
;
645 pair
= Frassq (proc
, Vprocess_alist
);
646 Vprocess_alist
= Fdelq (pair
, Vprocess_alist
);
648 deactivate_process (proc
);
651 /* Setup coding systems of PROCESS. */
654 setup_process_coding_systems (process
)
657 struct Lisp_Process
*p
= XPROCESS (process
);
658 int inch
= XINT (p
->infd
);
659 int outch
= XINT (p
->outfd
);
661 if (inch
< 0 || outch
< 0)
664 if (!proc_decode_coding_system
[inch
])
665 proc_decode_coding_system
[inch
]
666 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
667 setup_coding_system (p
->decode_coding_system
,
668 proc_decode_coding_system
[inch
]);
669 if (! NILP (p
->filter
))
671 if (NILP (p
->filter_multibyte
))
672 setup_raw_text_coding_system (proc_decode_coding_system
[inch
]);
674 else if (BUFFERP (p
->buffer
))
676 if (NILP (XBUFFER (p
->buffer
)->enable_multibyte_characters
))
677 setup_raw_text_coding_system (proc_decode_coding_system
[inch
]);
680 if (!proc_encode_coding_system
[outch
])
681 proc_encode_coding_system
[outch
]
682 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
683 setup_coding_system (p
->encode_coding_system
,
684 proc_encode_coding_system
[outch
]);
687 DEFUN ("processp", Fprocessp
, Sprocessp
, 1, 1, 0,
688 doc
: /* Return t if OBJECT is a process. */)
692 return PROCESSP (object
) ? Qt
: Qnil
;
695 DEFUN ("get-process", Fget_process
, Sget_process
, 1, 1, 0,
696 doc
: /* Return the process named NAME, or nil if there is none. */)
698 register Lisp_Object name
;
703 return Fcdr (Fassoc (name
, Vprocess_alist
));
706 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
707 doc
: /* Return the (or a) process associated with BUFFER.
708 BUFFER may be a buffer or the name of one. */)
710 register Lisp_Object buffer
;
712 register Lisp_Object buf
, tail
, proc
;
714 if (NILP (buffer
)) return Qnil
;
715 buf
= Fget_buffer (buffer
);
716 if (NILP (buf
)) return Qnil
;
718 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
720 proc
= Fcdr (Fcar (tail
));
721 if (PROCESSP (proc
) && EQ (XPROCESS (proc
)->buffer
, buf
))
727 /* This is how commands for the user decode process arguments. It
728 accepts a process, a process name, a buffer, a buffer name, or nil.
729 Buffers denote the first process in the buffer, and nil denotes the
734 register Lisp_Object name
;
736 register Lisp_Object proc
, obj
;
739 obj
= Fget_process (name
);
741 obj
= Fget_buffer (name
);
743 error ("Process %s does not exist", SDATA (name
));
745 else if (NILP (name
))
746 obj
= Fcurrent_buffer ();
750 /* Now obj should be either a buffer object or a process object.
754 proc
= Fget_buffer_process (obj
);
756 error ("Buffer %s has no process", SDATA (XBUFFER (obj
)->name
));
766 DEFUN ("delete-process", Fdelete_process
, Sdelete_process
, 1, 1, 0,
767 doc
: /* Delete PROCESS: kill it and forget about it immediately.
768 PROCESS may be a process, a buffer, the name of a process or buffer, or
769 nil, indicating the current buffer's process. */)
771 register Lisp_Object process
;
773 register struct Lisp_Process
*p
;
775 process
= get_process (process
);
776 p
= XPROCESS (process
);
778 p
->raw_status_low
= Qnil
;
779 p
->raw_status_high
= Qnil
;
782 p
->status
= Fcons (Qexit
, Fcons (make_number (0), Qnil
));
783 XSETINT (p
->tick
, ++process_tick
);
786 else if (XINT (p
->infd
) >= 0)
788 Fkill_process (process
, Qnil
);
789 /* Do this now, since remove_process will make sigchld_handler do nothing. */
791 = Fcons (Qsignal
, Fcons (make_number (SIGKILL
), Qnil
));
792 XSETINT (p
->tick
, ++process_tick
);
795 remove_process (process
);
799 DEFUN ("process-status", Fprocess_status
, Sprocess_status
, 1, 1, 0,
800 doc
: /* Return the status of PROCESS.
801 The returned value is one of the following symbols:
802 run -- for a process that is running.
803 stop -- for a process stopped but continuable.
804 exit -- for a process that has exited.
805 signal -- for a process that has got a fatal signal.
806 open -- for a network stream connection that is open.
807 listen -- for a network stream server that is listening.
808 closed -- for a network stream connection that is closed.
809 connect -- when waiting for a non-blocking connection to complete.
810 failed -- when a non-blocking connection has failed.
811 nil -- if arg is a process name and no such process exists.
812 PROCESS may be a process, a buffer, the name of a process, or
813 nil, indicating the current buffer's process. */)
815 register Lisp_Object process
;
817 register struct Lisp_Process
*p
;
818 register Lisp_Object status
;
820 if (STRINGP (process
))
821 process
= Fget_process (process
);
823 process
= get_process (process
);
828 p
= XPROCESS (process
);
829 if (!NILP (p
->raw_status_low
))
833 status
= XCAR (status
);
836 if (EQ (status
, Qexit
))
838 else if (EQ (p
->command
, Qt
))
840 else if (EQ (status
, Qrun
))
846 DEFUN ("process-exit-status", Fprocess_exit_status
, Sprocess_exit_status
,
848 doc
: /* Return the exit status of PROCESS or the signal number that killed it.
849 If PROCESS has not yet exited or died, return 0. */)
851 register Lisp_Object process
;
853 CHECK_PROCESS (process
);
854 if (!NILP (XPROCESS (process
)->raw_status_low
))
855 update_status (XPROCESS (process
));
856 if (CONSP (XPROCESS (process
)->status
))
857 return XCAR (XCDR (XPROCESS (process
)->status
));
858 return make_number (0);
861 DEFUN ("process-id", Fprocess_id
, Sprocess_id
, 1, 1, 0,
862 doc
: /* Return the process id of PROCESS.
863 This is the pid of the external process which PROCESS uses or talks to.
864 For a network connection, this value is nil. */)
866 register Lisp_Object process
;
868 CHECK_PROCESS (process
);
869 return XPROCESS (process
)->pid
;
872 DEFUN ("process-name", Fprocess_name
, Sprocess_name
, 1, 1, 0,
873 doc
: /* Return the name of PROCESS, as a string.
874 This is the name of the program invoked in PROCESS,
875 possibly modified to make it unique among process names. */)
877 register Lisp_Object process
;
879 CHECK_PROCESS (process
);
880 return XPROCESS (process
)->name
;
883 DEFUN ("process-command", Fprocess_command
, Sprocess_command
, 1, 1, 0,
884 doc
: /* Return the command that was executed to start PROCESS.
885 This is a list of strings, the first string being the program executed
886 and the rest of the strings being the arguments given to it.
887 For a non-child channel, this is nil. */)
889 register Lisp_Object process
;
891 CHECK_PROCESS (process
);
892 return XPROCESS (process
)->command
;
895 DEFUN ("process-tty-name", Fprocess_tty_name
, Sprocess_tty_name
, 1, 1, 0,
896 doc
: /* Return the name of the terminal PROCESS uses, or nil if none.
897 This is the terminal that the process itself reads and writes on,
898 not the name of the pty that Emacs uses to talk with that terminal. */)
900 register Lisp_Object process
;
902 CHECK_PROCESS (process
);
903 return XPROCESS (process
)->tty_name
;
906 DEFUN ("set-process-buffer", Fset_process_buffer
, Sset_process_buffer
,
908 doc
: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil). */)
910 register Lisp_Object process
, buffer
;
912 struct Lisp_Process
*p
;
914 CHECK_PROCESS (process
);
916 CHECK_BUFFER (buffer
);
917 p
= XPROCESS (process
);
920 p
->childp
= Fplist_put (p
->childp
, QCbuffer
, buffer
);
921 setup_process_coding_systems (process
);
925 DEFUN ("process-buffer", Fprocess_buffer
, Sprocess_buffer
,
927 doc
: /* Return the buffer PROCESS is associated with.
928 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
930 register Lisp_Object process
;
932 CHECK_PROCESS (process
);
933 return XPROCESS (process
)->buffer
;
936 DEFUN ("process-mark", Fprocess_mark
, Sprocess_mark
,
938 doc
: /* Return the marker for the end of the last output from PROCESS. */)
940 register Lisp_Object process
;
942 CHECK_PROCESS (process
);
943 return XPROCESS (process
)->mark
;
946 DEFUN ("set-process-filter", Fset_process_filter
, Sset_process_filter
,
948 doc
: /* Give PROCESS the filter function FILTER; nil means no filter.
949 t means stop accepting output from the process.
951 When a process has a filter, its buffer is not used for output.
952 Instead, each time it does output, the entire string of output is
953 passed to the filter.
955 The filter gets two arguments: the process and the string of output.
956 The string argument is normally a multibyte string, except:
957 - if the process' input coding system is no-conversion or raw-text,
958 it is a unibyte string (the non-converted input), or else
959 - if `default-enable-multibyte-characters' is nil, it is a unibyte
960 string (the result of converting the decoded input multibyte
961 string to unibyte with `string-make-unibyte'). */)
963 register Lisp_Object process
, filter
;
965 struct Lisp_Process
*p
;
967 CHECK_PROCESS (process
);
968 p
= XPROCESS (process
);
970 /* Don't signal an error if the process' input file descriptor
971 is closed. This could make debugging Lisp more difficult,
972 for example when doing something like
974 (setq process (start-process ...))
976 (set-process-filter process ...) */
978 if (XINT (p
->infd
) >= 0)
980 if (EQ (filter
, Qt
) && !EQ (p
->status
, Qlisten
))
982 FD_CLR (XINT (p
->infd
), &input_wait_mask
);
983 FD_CLR (XINT (p
->infd
), &non_keyboard_wait_mask
);
985 else if (EQ (p
->filter
, Qt
)
986 && !EQ (p
->command
, Qt
)) /* Network process not stopped. */
988 FD_SET (XINT (p
->infd
), &input_wait_mask
);
989 FD_SET (XINT (p
->infd
), &non_keyboard_wait_mask
);
995 p
->childp
= Fplist_put (p
->childp
, QCfilter
, filter
);
996 setup_process_coding_systems (process
);
1000 DEFUN ("process-filter", Fprocess_filter
, Sprocess_filter
,
1002 doc
: /* Returns the filter function of PROCESS; nil if none.
1003 See `set-process-filter' for more info on filter functions. */)
1005 register Lisp_Object process
;
1007 CHECK_PROCESS (process
);
1008 return XPROCESS (process
)->filter
;
1011 DEFUN ("set-process-sentinel", Fset_process_sentinel
, Sset_process_sentinel
,
1013 doc
: /* Give PROCESS the sentinel SENTINEL; nil for none.
1014 The sentinel is called as a function when the process changes state.
1015 It gets two arguments: the process, and a string describing the change. */)
1017 register Lisp_Object process
, sentinel
;
1019 struct Lisp_Process
*p
;
1021 CHECK_PROCESS (process
);
1022 p
= XPROCESS (process
);
1024 p
->sentinel
= sentinel
;
1026 p
->childp
= Fplist_put (p
->childp
, QCsentinel
, sentinel
);
1030 DEFUN ("process-sentinel", Fprocess_sentinel
, Sprocess_sentinel
,
1032 doc
: /* Return the sentinel of PROCESS; nil if none.
1033 See `set-process-sentinel' for more info on sentinels. */)
1035 register Lisp_Object process
;
1037 CHECK_PROCESS (process
);
1038 return XPROCESS (process
)->sentinel
;
1041 DEFUN ("set-process-window-size", Fset_process_window_size
,
1042 Sset_process_window_size
, 3, 3, 0,
1043 doc
: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
1044 (process
, height
, width
)
1045 register Lisp_Object process
, height
, width
;
1047 CHECK_PROCESS (process
);
1048 CHECK_NATNUM (height
);
1049 CHECK_NATNUM (width
);
1051 if (XINT (XPROCESS (process
)->infd
) < 0
1052 || set_window_size (XINT (XPROCESS (process
)->infd
),
1053 XINT (height
), XINT (width
)) <= 0)
1059 DEFUN ("set-process-inherit-coding-system-flag",
1060 Fset_process_inherit_coding_system_flag
,
1061 Sset_process_inherit_coding_system_flag
, 2, 2, 0,
1062 doc
: /* Determine whether buffer of PROCESS will inherit coding-system.
1063 If the second argument FLAG is non-nil, then the variable
1064 `buffer-file-coding-system' of the buffer associated with PROCESS
1065 will be bound to the value of the coding system used to decode
1068 This is useful when the coding system specified for the process buffer
1069 leaves either the character code conversion or the end-of-line conversion
1070 unspecified, or if the coding system used to decode the process output
1071 is more appropriate for saving the process buffer.
1073 Binding the variable `inherit-process-coding-system' to non-nil before
1074 starting the process is an alternative way of setting the inherit flag
1075 for the process which will run. */)
1077 register Lisp_Object process
, flag
;
1079 CHECK_PROCESS (process
);
1080 XPROCESS (process
)->inherit_coding_system_flag
= flag
;
1084 DEFUN ("process-inherit-coding-system-flag",
1085 Fprocess_inherit_coding_system_flag
, Sprocess_inherit_coding_system_flag
,
1087 doc
: /* Return the value of inherit-coding-system flag for PROCESS.
1088 If this flag is t, `buffer-file-coding-system' of the buffer
1089 associated with PROCESS will inherit the coding system used to decode
1090 the process output. */)
1092 register Lisp_Object process
;
1094 CHECK_PROCESS (process
);
1095 return XPROCESS (process
)->inherit_coding_system_flag
;
1098 DEFUN ("set-process-query-on-exit-flag",
1099 Fset_process_query_on_exit_flag
, Sset_process_query_on_exit_flag
,
1101 doc
: /* Specify if query is needed for PROCESS when Emacs is exited.
1102 If the second argument FLAG is non-nil, Emacs will query the user before
1103 exiting if PROCESS is running. */)
1105 register Lisp_Object process
, flag
;
1107 CHECK_PROCESS (process
);
1108 XPROCESS (process
)->kill_without_query
= Fnull (flag
);
1112 DEFUN ("process-query-on-exit-flag",
1113 Fprocess_query_on_exit_flag
, Sprocess_query_on_exit_flag
,
1115 doc
: /* Return the current value of query-on-exit flag for PROCESS. */)
1117 register Lisp_Object process
;
1119 CHECK_PROCESS (process
);
1120 return Fnull (XPROCESS (process
)->kill_without_query
);
1123 #ifdef DATAGRAM_SOCKETS
1124 Lisp_Object
Fprocess_datagram_address ();
1127 DEFUN ("process-contact", Fprocess_contact
, Sprocess_contact
,
1129 doc
: /* Return the contact info of PROCESS; t for a real child.
1130 For a net connection, the value depends on the optional KEY arg.
1131 If KEY is nil, value is a cons cell of the form (HOST SERVICE),
1132 if KEY is t, the complete contact information for the connection is
1133 returned, else the specific value for the keyword KEY is returned.
1134 See `make-network-process' for a list of keywords. */)
1136 register Lisp_Object process
, key
;
1138 Lisp_Object contact
;
1140 CHECK_PROCESS (process
);
1141 contact
= XPROCESS (process
)->childp
;
1143 #ifdef DATAGRAM_SOCKETS
1144 if (DATAGRAM_CONN_P (process
)
1145 && (EQ (key
, Qt
) || EQ (key
, QCremote
)))
1146 contact
= Fplist_put (contact
, QCremote
,
1147 Fprocess_datagram_address (process
));
1150 if (!NETCONN_P (process
) || EQ (key
, Qt
))
1153 return Fcons (Fplist_get (contact
, QChost
),
1154 Fcons (Fplist_get (contact
, QCservice
), Qnil
));
1155 return Fplist_get (contact
, key
);
1158 DEFUN ("process-plist", Fprocess_plist
, Sprocess_plist
,
1160 doc
: /* Return the plist of PROCESS. */)
1162 register Lisp_Object process
;
1164 CHECK_PROCESS (process
);
1165 return XPROCESS (process
)->plist
;
1168 DEFUN ("set-process-plist", Fset_process_plist
, Sset_process_plist
,
1170 doc
: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
1172 register Lisp_Object process
, plist
;
1174 CHECK_PROCESS (process
);
1177 XPROCESS (process
)->plist
= plist
;
1181 #if 0 /* Turned off because we don't currently record this info
1182 in the process. Perhaps add it. */
1183 DEFUN ("process-connection", Fprocess_connection
, Sprocess_connection
, 1, 1, 0,
1184 doc
: /* Return the connection type of PROCESS.
1185 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1186 a socket connection. */)
1188 Lisp_Object process
;
1190 return XPROCESS (process
)->type
;
1195 DEFUN ("format-network-address", Fformat_network_address
, Sformat_network_address
,
1197 doc
: /* Convert network ADDRESS from internal format to a string.
1198 If optional second argument OMIT-PORT is non-nil, don't include a port
1199 number in the string; in this case, interpret a 4 element vector as an
1200 IP address. Returns nil if format of ADDRESS is invalid. */)
1201 (address
, omit_port
)
1202 Lisp_Object address
, omit_port
;
1207 if (STRINGP (address
)) /* AF_LOCAL */
1210 if (VECTORP (address
)) /* AF_INET */
1212 register struct Lisp_Vector
*p
= XVECTOR (address
);
1213 Lisp_Object args
[6];
1216 if (!NILP (omit_port
) && (p
->size
== 4 || p
->size
== 5))
1218 args
[0] = build_string ("%d.%d.%d.%d");
1221 else if (p
->size
== 5)
1223 args
[0] = build_string ("%d.%d.%d.%d:%d");
1229 for (i
= 0; i
< nargs
; i
++)
1230 args
[i
+1] = p
->contents
[i
];
1231 return Fformat (nargs
+1, args
);
1234 if (CONSP (address
))
1236 Lisp_Object args
[2];
1237 args
[0] = build_string ("<Family %d>");
1238 args
[1] = Fcar (address
);
1239 return Fformat (2, args
);
1248 list_processes_1 (query_only
)
1249 Lisp_Object query_only
;
1251 register Lisp_Object tail
, tem
;
1252 Lisp_Object proc
, minspace
, tem1
;
1253 register struct Lisp_Process
*p
;
1255 int w_proc
, w_buffer
, w_tty
;
1256 Lisp_Object i_status
, i_buffer
, i_tty
, i_command
;
1258 w_proc
= 4; /* Proc */
1259 w_buffer
= 6; /* Buffer */
1260 w_tty
= 0; /* Omit if no ttys */
1262 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
1266 proc
= Fcdr (Fcar (tail
));
1267 p
= XPROCESS (proc
);
1268 if (NILP (p
->childp
))
1270 if (!NILP (query_only
) && !NILP (p
->kill_without_query
))
1272 if (STRINGP (p
->name
)
1273 && ( i
= SCHARS (p
->name
), (i
> w_proc
)))
1275 if (!NILP (p
->buffer
))
1277 if (NILP (XBUFFER (p
->buffer
)->name
) && w_buffer
< 8)
1278 w_buffer
= 8; /* (Killed) */
1279 else if ((i
= SCHARS (XBUFFER (p
->buffer
)->name
), (i
> w_buffer
)))
1282 if (STRINGP (p
->tty_name
)
1283 && (i
= SCHARS (p
->tty_name
), (i
> w_tty
)))
1287 XSETFASTINT (i_status
, w_proc
+ 1);
1288 XSETFASTINT (i_buffer
, XFASTINT (i_status
) + 9);
1291 XSETFASTINT (i_tty
, XFASTINT (i_buffer
) + w_buffer
+ 1);
1292 XSETFASTINT (i_command
, XFASTINT (i_buffer
) + w_tty
+ 1);
1295 XSETFASTINT (i_command
, XFASTINT (i_buffer
) + w_buffer
+ 1);
1298 XSETFASTINT (minspace
, 1);
1300 set_buffer_internal (XBUFFER (Vstandard_output
));
1301 current_buffer
->undo_list
= Qt
;
1303 current_buffer
->truncate_lines
= Qt
;
1305 write_string ("Proc", -1);
1306 Findent_to (i_status
, minspace
); write_string ("Status", -1);
1307 Findent_to (i_buffer
, minspace
); write_string ("Buffer", -1);
1310 Findent_to (i_tty
, minspace
); write_string ("Tty", -1);
1312 Findent_to (i_command
, minspace
); write_string ("Command", -1);
1313 write_string ("\n", -1);
1315 write_string ("----", -1);
1316 Findent_to (i_status
, minspace
); write_string ("------", -1);
1317 Findent_to (i_buffer
, minspace
); write_string ("------", -1);
1320 Findent_to (i_tty
, minspace
); write_string ("---", -1);
1322 Findent_to (i_command
, minspace
); write_string ("-------", -1);
1323 write_string ("\n", -1);
1325 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
1329 proc
= Fcdr (Fcar (tail
));
1330 p
= XPROCESS (proc
);
1331 if (NILP (p
->childp
))
1333 if (!NILP (query_only
) && !NILP (p
->kill_without_query
))
1336 Finsert (1, &p
->name
);
1337 Findent_to (i_status
, minspace
);
1339 if (!NILP (p
->raw_status_low
))
1342 if (CONSP (p
->status
))
1343 symbol
= XCAR (p
->status
);
1346 if (EQ (symbol
, Qsignal
))
1349 tem
= Fcar (Fcdr (p
->status
));
1351 if (XINT (tem
) < NSIG
)
1352 write_string (sys_errlist
[XINT (tem
)], -1);
1355 Fprinc (symbol
, Qnil
);
1357 else if (NETCONN1_P (p
))
1359 if (EQ (symbol
, Qexit
))
1360 write_string ("closed", -1);
1361 else if (EQ (p
->command
, Qt
))
1362 write_string ("stopped", -1);
1363 else if (EQ (symbol
, Qrun
))
1364 write_string ("open", -1);
1366 Fprinc (symbol
, Qnil
);
1369 Fprinc (symbol
, Qnil
);
1371 if (EQ (symbol
, Qexit
))
1374 tem
= Fcar (Fcdr (p
->status
));
1377 sprintf (tembuf
, " %d", (int) XFASTINT (tem
));
1378 write_string (tembuf
, -1);
1382 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
))
1383 remove_process (proc
);
1385 Findent_to (i_buffer
, minspace
);
1386 if (NILP (p
->buffer
))
1387 insert_string ("(none)");
1388 else if (NILP (XBUFFER (p
->buffer
)->name
))
1389 insert_string ("(Killed)");
1391 Finsert (1, &XBUFFER (p
->buffer
)->name
);
1395 Findent_to (i_tty
, minspace
);
1396 if (STRINGP (p
->tty_name
))
1397 Finsert (1, &p
->tty_name
);
1400 Findent_to (i_command
, minspace
);
1402 if (EQ (p
->status
, Qlisten
))
1404 Lisp_Object port
= Fplist_get (p
->childp
, QCservice
);
1405 if (INTEGERP (port
))
1406 port
= Fnumber_to_string (port
);
1408 port
= Fformat_network_address (Fplist_get (p
->childp
, QClocal
), Qnil
);
1409 sprintf (tembuf
, "(network %s server on %s)\n",
1410 (DATAGRAM_CHAN_P (XINT (p
->infd
)) ? "datagram" : "stream"),
1411 (STRINGP (port
) ? (char *)SDATA (port
) : "?"));
1412 insert_string (tembuf
);
1414 else if (NETCONN1_P (p
))
1416 /* For a local socket, there is no host name,
1417 so display service instead. */
1418 Lisp_Object host
= Fplist_get (p
->childp
, QChost
);
1419 if (!STRINGP (host
))
1421 host
= Fplist_get (p
->childp
, QCservice
);
1422 if (INTEGERP (host
))
1423 host
= Fnumber_to_string (host
);
1426 host
= Fformat_network_address (Fplist_get (p
->childp
, QCremote
), Qnil
);
1427 sprintf (tembuf
, "(network %s connection to %s)\n",
1428 (DATAGRAM_CHAN_P (XINT (p
->infd
)) ? "datagram" : "stream"),
1429 (STRINGP (host
) ? (char *)SDATA (host
) : "?"));
1430 insert_string (tembuf
);
1442 insert_string (" ");
1444 insert_string ("\n");
1450 DEFUN ("list-processes", Flist_processes
, Slist_processes
, 0, 1, "P",
1451 doc
: /* Display a list of all processes.
1452 If optional argument QUERY-ONLY is non-nil, only processes with
1453 the query-on-exit flag set will be listed.
1454 Any process listed as exited or signaled is actually eliminated
1455 after the listing is made. */)
1457 Lisp_Object query_only
;
1459 internal_with_output_to_temp_buffer ("*Process List*",
1460 list_processes_1
, query_only
);
1464 DEFUN ("process-list", Fprocess_list
, Sprocess_list
, 0, 0, 0,
1465 doc
: /* Return a list of all processes. */)
1468 return Fmapcar (Qcdr
, Vprocess_alist
);
1471 /* Starting asynchronous inferior processes. */
1473 static Lisp_Object
start_process_unwind ();
1475 DEFUN ("start-process", Fstart_process
, Sstart_process
, 3, MANY
, 0,
1476 doc
: /* Start a program in a subprocess. Return the process object for it.
1477 NAME is name for process. It is modified if necessary to make it unique.
1478 BUFFER is the buffer (or buffer name) to associate with the process.
1479 Process output goes at end of that buffer, unless you specify
1480 an output stream or filter function to handle the output.
1481 BUFFER may be also nil, meaning that this process is not associated
1483 PROGRAM is the program file name. It is searched for in PATH.
1484 Remaining arguments are strings to give program as arguments.
1486 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1489 register Lisp_Object
*args
;
1491 Lisp_Object buffer
, name
, program
, proc
, current_dir
, tem
;
1493 register unsigned char *new_argv
;
1496 register unsigned char **new_argv
;
1499 int count
= SPECPDL_INDEX ();
1503 buffer
= Fget_buffer_create (buffer
);
1505 /* Make sure that the child will be able to chdir to the current
1506 buffer's current directory, or its unhandled equivalent. We
1507 can't just have the child check for an error when it does the
1508 chdir, since it's in a vfork.
1510 We have to GCPRO around this because Fexpand_file_name and
1511 Funhandled_file_name_directory might call a file name handling
1512 function. The argument list is protected by the caller, so all
1513 we really have to worry about is buffer. */
1515 struct gcpro gcpro1
, gcpro2
;
1517 current_dir
= current_buffer
->directory
;
1519 GCPRO2 (buffer
, current_dir
);
1522 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir
),
1524 if (NILP (Ffile_accessible_directory_p (current_dir
)))
1525 report_file_error ("Setting current directory",
1526 Fcons (current_buffer
->directory
, Qnil
));
1532 CHECK_STRING (name
);
1536 CHECK_STRING (program
);
1538 proc
= make_process (name
);
1539 /* If an error occurs and we can't start the process, we want to
1540 remove it from the process list. This means that each error
1541 check in create_process doesn't need to call remove_process
1542 itself; it's all taken care of here. */
1543 record_unwind_protect (start_process_unwind
, proc
);
1545 XPROCESS (proc
)->childp
= Qt
;
1546 XPROCESS (proc
)->plist
= Qnil
;
1547 XPROCESS (proc
)->buffer
= buffer
;
1548 XPROCESS (proc
)->sentinel
= Qnil
;
1549 XPROCESS (proc
)->filter
= Qnil
;
1550 XPROCESS (proc
)->filter_multibyte
1551 = buffer_defaults
.enable_multibyte_characters
;
1552 XPROCESS (proc
)->command
= Flist (nargs
- 2, args
+ 2);
1554 #ifdef ADAPTIVE_READ_BUFFERING
1555 XPROCESS (proc
)->adaptive_read_buffering
= Vprocess_adaptive_read_buffering
;
1558 /* Make the process marker point into the process buffer (if any). */
1560 set_marker_both (XPROCESS (proc
)->mark
, buffer
,
1561 BUF_ZV (XBUFFER (buffer
)),
1562 BUF_ZV_BYTE (XBUFFER (buffer
)));
1565 /* Decide coding systems for communicating with the process. Here
1566 we don't setup the structure coding_system nor pay attention to
1567 unibyte mode. They are done in create_process. */
1569 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1570 Lisp_Object coding_systems
= Qt
;
1571 Lisp_Object val
, *args2
;
1572 struct gcpro gcpro1
, gcpro2
;
1574 val
= Vcoding_system_for_read
;
1577 args2
= (Lisp_Object
*) alloca ((nargs
+ 1) * sizeof *args2
);
1578 args2
[0] = Qstart_process
;
1579 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1580 GCPRO2 (proc
, current_dir
);
1581 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1583 if (CONSP (coding_systems
))
1584 val
= XCAR (coding_systems
);
1585 else if (CONSP (Vdefault_process_coding_system
))
1586 val
= XCAR (Vdefault_process_coding_system
);
1588 XPROCESS (proc
)->decode_coding_system
= val
;
1590 val
= Vcoding_system_for_write
;
1593 if (EQ (coding_systems
, Qt
))
1595 args2
= (Lisp_Object
*) alloca ((nargs
+ 1) * sizeof args2
);
1596 args2
[0] = Qstart_process
;
1597 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1598 GCPRO2 (proc
, current_dir
);
1599 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1602 if (CONSP (coding_systems
))
1603 val
= XCDR (coding_systems
);
1604 else if (CONSP (Vdefault_process_coding_system
))
1605 val
= XCDR (Vdefault_process_coding_system
);
1607 XPROCESS (proc
)->encode_coding_system
= val
;
1611 /* Make a one member argv with all args concatenated
1612 together separated by a blank. */
1613 len
= SBYTES (program
) + 2;
1614 for (i
= 3; i
< nargs
; i
++)
1618 len
+= SBYTES (tem
) + 1; /* count the blank */
1620 new_argv
= (unsigned char *) alloca (len
);
1621 strcpy (new_argv
, SDATA (program
));
1622 for (i
= 3; i
< nargs
; i
++)
1626 strcat (new_argv
, " ");
1627 strcat (new_argv
, SDATA (tem
));
1629 /* Need to add code here to check for program existence on VMS */
1632 new_argv
= (unsigned char **) alloca ((nargs
- 1) * sizeof (char *));
1634 /* If program file name is not absolute, search our path for it.
1635 Put the name we will really use in TEM. */
1636 if (!IS_DIRECTORY_SEP (SREF (program
, 0))
1637 && !(SCHARS (program
) > 1
1638 && IS_DEVICE_SEP (SREF (program
, 1))))
1640 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1643 GCPRO4 (name
, program
, buffer
, current_dir
);
1644 openp (Vexec_path
, program
, Vexec_suffixes
, &tem
, make_number (X_OK
));
1647 report_file_error ("Searching for program", Fcons (program
, Qnil
));
1648 tem
= Fexpand_file_name (tem
, Qnil
);
1652 if (!NILP (Ffile_directory_p (program
)))
1653 error ("Specified program for new process is a directory");
1657 /* If program file name starts with /: for quoting a magic name,
1659 if (SBYTES (tem
) > 2 && SREF (tem
, 0) == '/'
1660 && SREF (tem
, 1) == ':')
1661 tem
= Fsubstring (tem
, make_number (2), Qnil
);
1663 /* Encode the file name and put it in NEW_ARGV.
1664 That's where the child will use it to execute the program. */
1665 tem
= ENCODE_FILE (tem
);
1666 new_argv
[0] = SDATA (tem
);
1668 /* Here we encode arguments by the coding system used for sending
1669 data to the process. We don't support using different coding
1670 systems for encoding arguments and for encoding data sent to the
1673 for (i
= 3; i
< nargs
; i
++)
1677 if (STRING_MULTIBYTE (tem
))
1678 tem
= (code_convert_string_norecord
1679 (tem
, XPROCESS (proc
)->encode_coding_system
, 1));
1680 new_argv
[i
- 2] = SDATA (tem
);
1682 new_argv
[i
- 2] = 0;
1683 #endif /* not VMS */
1685 XPROCESS (proc
)->decoding_buf
= make_uninit_string (0);
1686 XPROCESS (proc
)->decoding_carryover
= make_number (0);
1687 XPROCESS (proc
)->encoding_buf
= make_uninit_string (0);
1688 XPROCESS (proc
)->encoding_carryover
= make_number (0);
1690 XPROCESS (proc
)->inherit_coding_system_flag
1691 = (NILP (buffer
) || !inherit_process_coding_system
1694 create_process (proc
, (char **) new_argv
, current_dir
);
1696 return unbind_to (count
, proc
);
1699 /* This function is the unwind_protect form for Fstart_process. If
1700 PROC doesn't have its pid set, then we know someone has signaled
1701 an error and the process wasn't started successfully, so we should
1702 remove it from the process list. */
1704 start_process_unwind (proc
)
1707 if (!PROCESSP (proc
))
1710 /* Was PROC started successfully? */
1711 if (XINT (XPROCESS (proc
)->pid
) <= 0)
1712 remove_process (proc
);
1718 create_process_1 (timer
)
1719 struct atimer
*timer
;
1721 /* Nothing to do. */
1725 #if 0 /* This doesn't work; see the note before sigchld_handler. */
1728 /* Mimic blocking of signals on system V, which doesn't really have it. */
1730 /* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1731 int sigchld_deferred
;
1734 create_process_sigchld ()
1736 signal (SIGCHLD
, create_process_sigchld
);
1738 sigchld_deferred
= 1;
1744 #ifndef VMS /* VMS version of this function is in vmsproc.c. */
1746 create_process (process
, new_argv
, current_dir
)
1747 Lisp_Object process
;
1749 Lisp_Object current_dir
;
1751 int pid
, inchannel
, outchannel
;
1753 #ifdef POSIX_SIGNALS
1756 struct sigaction sigint_action
;
1757 struct sigaction sigquit_action
;
1759 struct sigaction sighup_action
;
1761 #else /* !POSIX_SIGNALS */
1764 SIGTYPE (*sigchld
)();
1767 #endif /* !POSIX_SIGNALS */
1768 /* Use volatile to protect variables from being clobbered by longjmp. */
1769 volatile int forkin
, forkout
;
1770 volatile int pty_flag
= 0;
1772 extern char **environ
;
1775 inchannel
= outchannel
= -1;
1778 if (!NILP (Vprocess_connection_type
))
1779 outchannel
= inchannel
= allocate_pty ();
1783 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1784 /* On most USG systems it does not work to open the pty's tty here,
1785 then close it and reopen it in the child. */
1787 /* Don't let this terminal become our controlling terminal
1788 (in case we don't have one). */
1789 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
| O_NOCTTY
, 0);
1791 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
, 0);
1794 report_file_error ("Opening pty", Qnil
);
1795 #if defined (RTU) || defined (UNIPLUS) || defined (DONT_REOPEN_PTY)
1796 /* In the case that vfork is defined as fork, the parent process
1797 (Emacs) may send some data before the child process completes
1798 tty options setup. So we setup tty before forking. */
1799 child_setup_tty (forkout
);
1800 #endif /* RTU or UNIPLUS or DONT_REOPEN_PTY */
1802 forkin
= forkout
= -1;
1803 #endif /* not USG, or USG_SUBTTY_WORKS */
1807 #endif /* HAVE_PTYS */
1810 if (socketpair (AF_UNIX
, SOCK_STREAM
, 0, sv
) < 0)
1811 report_file_error ("Opening socketpair", Qnil
);
1812 outchannel
= inchannel
= sv
[0];
1813 forkout
= forkin
= sv
[1];
1815 #else /* not SKTPAIR */
1820 report_file_error ("Creating pipe", Qnil
);
1826 emacs_close (inchannel
);
1827 emacs_close (forkout
);
1828 report_file_error ("Creating pipe", Qnil
);
1833 #endif /* not SKTPAIR */
1836 /* Replaced by close_process_descs */
1837 set_exclusive_use (inchannel
);
1838 set_exclusive_use (outchannel
);
1841 /* Stride people say it's a mystery why this is needed
1842 as well as the O_NDELAY, but that it fails without this. */
1843 #if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS))
1846 ioctl (inchannel
, FIONBIO
, &one
);
1851 fcntl (inchannel
, F_SETFL
, O_NONBLOCK
);
1852 fcntl (outchannel
, F_SETFL
, O_NONBLOCK
);
1855 fcntl (inchannel
, F_SETFL
, O_NDELAY
);
1856 fcntl (outchannel
, F_SETFL
, O_NDELAY
);
1860 /* Record this as an active process, with its channels.
1861 As a result, child_setup will close Emacs's side of the pipes. */
1862 chan_process
[inchannel
] = process
;
1863 XSETINT (XPROCESS (process
)->infd
, inchannel
);
1864 XSETINT (XPROCESS (process
)->outfd
, outchannel
);
1866 /* Previously we recorded the tty descriptor used in the subprocess.
1867 It was only used for getting the foreground tty process, so now
1868 we just reopen the device (see emacs_get_tty_pgrp) as this is
1869 more portable (see USG_SUBTTY_WORKS above). */
1871 XPROCESS (process
)->pty_flag
= (pty_flag
? Qt
: Qnil
);
1872 XPROCESS (process
)->status
= Qrun
;
1873 setup_process_coding_systems (process
);
1875 /* Delay interrupts until we have a chance to store
1876 the new fork's pid in its process structure */
1877 #ifdef POSIX_SIGNALS
1878 sigemptyset (&blocked
);
1880 sigaddset (&blocked
, SIGCHLD
);
1882 #ifdef HAVE_WORKING_VFORK
1883 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
1884 this sets the parent's signal handlers as well as the child's.
1885 So delay all interrupts whose handlers the child might munge,
1886 and record the current handlers so they can be restored later. */
1887 sigaddset (&blocked
, SIGINT
); sigaction (SIGINT
, 0, &sigint_action
);
1888 sigaddset (&blocked
, SIGQUIT
); sigaction (SIGQUIT
, 0, &sigquit_action
);
1890 sigaddset (&blocked
, SIGHUP
); sigaction (SIGHUP
, 0, &sighup_action
);
1892 #endif /* HAVE_WORKING_VFORK */
1893 sigprocmask (SIG_BLOCK
, &blocked
, &procmask
);
1894 #else /* !POSIX_SIGNALS */
1898 #else /* not BSD4_1 */
1899 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
1900 sigsetmask (sigmask (SIGCHLD
));
1901 #else /* ordinary USG */
1903 sigchld_deferred
= 0;
1904 sigchld
= signal (SIGCHLD
, create_process_sigchld
);
1906 #endif /* ordinary USG */
1907 #endif /* not BSD4_1 */
1908 #endif /* SIGCHLD */
1909 #endif /* !POSIX_SIGNALS */
1911 FD_SET (inchannel
, &input_wait_mask
);
1912 FD_SET (inchannel
, &non_keyboard_wait_mask
);
1913 if (inchannel
> max_process_desc
)
1914 max_process_desc
= inchannel
;
1916 /* Until we store the proper pid, enable sigchld_handler
1917 to recognize an unknown pid as standing for this process.
1918 It is very important not to let this `marker' value stay
1919 in the table after this function has returned; if it does
1920 it might cause call-process to hang and subsequent asynchronous
1921 processes to get their return values scrambled. */
1922 XSETINT (XPROCESS (process
)->pid
, -1);
1927 /* child_setup must clobber environ on systems with true vfork.
1928 Protect it from permanent change. */
1929 char **save_environ
= environ
;
1931 current_dir
= ENCODE_FILE (current_dir
);
1936 #endif /* not WINDOWSNT */
1938 int xforkin
= forkin
;
1939 int xforkout
= forkout
;
1941 #if 0 /* This was probably a mistake--it duplicates code later on,
1942 but fails to handle all the cases. */
1943 /* Make sure SIGCHLD is not blocked in the child. */
1944 sigsetmask (SIGEMPTYMASK
);
1947 /* Make the pty be the controlling terminal of the process. */
1949 /* First, disconnect its current controlling terminal. */
1951 /* We tried doing setsid only if pty_flag, but it caused
1952 process_set_signal to fail on SGI when using a pipe. */
1954 /* Make the pty's terminal the controlling terminal. */
1958 /* We ignore the return value
1959 because faith@cs.unc.edu says that is necessary on Linux. */
1960 ioctl (xforkin
, TIOCSCTTY
, 0);
1963 #else /* not HAVE_SETSID */
1965 /* It's very important to call setpgrp here and no time
1966 afterwards. Otherwise, we lose our controlling tty which
1967 is set when we open the pty. */
1970 #endif /* not HAVE_SETSID */
1971 #if defined (HAVE_TERMIOS) && defined (LDISC1)
1972 if (pty_flag
&& xforkin
>= 0)
1975 tcgetattr (xforkin
, &t
);
1977 if (tcsetattr (xforkin
, TCSANOW
, &t
) < 0)
1978 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
1981 #if defined (NTTYDISC) && defined (TIOCSETD)
1982 if (pty_flag
&& xforkin
>= 0)
1984 /* Use new line discipline. */
1985 int ldisc
= NTTYDISC
;
1986 ioctl (xforkin
, TIOCSETD
, &ldisc
);
1991 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1992 can do TIOCSPGRP only to the process's controlling tty. */
1995 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1996 I can't test it since I don't have 4.3. */
1997 int j
= emacs_open ("/dev/tty", O_RDWR
, 0);
1998 ioctl (j
, TIOCNOTTY
, 0);
2001 /* In order to get a controlling terminal on some versions
2002 of BSD, it is necessary to put the process in pgrp 0
2003 before it opens the terminal. */
2011 #endif /* TIOCNOTTY */
2013 #if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
2014 /*** There is a suggestion that this ought to be a
2015 conditional on TIOCSPGRP,
2016 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
2017 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
2018 that system does seem to need this code, even though
2019 both HAVE_SETSID and TIOCSCTTY are defined. */
2020 /* Now close the pty (if we had it open) and reopen it.
2021 This makes the pty the controlling terminal of the subprocess. */
2024 #ifdef SET_CHILD_PTY_PGRP
2025 int pgrp
= getpid ();
2028 /* I wonder if emacs_close (emacs_open (pty_name, ...))
2031 emacs_close (xforkin
);
2032 xforkout
= xforkin
= emacs_open (pty_name
, O_RDWR
, 0);
2036 emacs_write (1, "Couldn't open the pty terminal ", 31);
2037 emacs_write (1, pty_name
, strlen (pty_name
));
2038 emacs_write (1, "\n", 1);
2042 #ifdef SET_CHILD_PTY_PGRP
2043 ioctl (xforkin
, TIOCSPGRP
, &pgrp
);
2044 ioctl (xforkout
, TIOCSPGRP
, &pgrp
);
2047 #endif /* not UNIPLUS and not RTU and not DONT_REOPEN_PTY */
2049 #ifdef SETUP_SLAVE_PTY
2054 #endif /* SETUP_SLAVE_PTY */
2056 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
2057 Now reenable it in the child, so it will die when we want it to. */
2059 signal (SIGHUP
, SIG_DFL
);
2061 #endif /* HAVE_PTYS */
2063 signal (SIGINT
, SIG_DFL
);
2064 signal (SIGQUIT
, SIG_DFL
);
2066 /* Stop blocking signals in the child. */
2067 #ifdef POSIX_SIGNALS
2068 sigprocmask (SIG_SETMASK
, &procmask
, 0);
2069 #else /* !POSIX_SIGNALS */
2073 #else /* not BSD4_1 */
2074 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
2075 sigsetmask (SIGEMPTYMASK
);
2076 #else /* ordinary USG */
2078 signal (SIGCHLD
, sigchld
);
2080 #endif /* ordinary USG */
2081 #endif /* not BSD4_1 */
2082 #endif /* SIGCHLD */
2083 #endif /* !POSIX_SIGNALS */
2085 #if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
2087 child_setup_tty (xforkout
);
2088 #endif /* not RTU and not UNIPLUS and not DONT_REOPEN_PTY */
2090 pid
= child_setup (xforkin
, xforkout
, xforkout
,
2091 new_argv
, 1, current_dir
);
2092 #else /* not WINDOWSNT */
2093 child_setup (xforkin
, xforkout
, xforkout
,
2094 new_argv
, 1, current_dir
);
2095 #endif /* not WINDOWSNT */
2097 environ
= save_environ
;
2102 /* This runs in the Emacs process. */
2106 emacs_close (forkin
);
2107 if (forkin
!= forkout
&& forkout
>= 0)
2108 emacs_close (forkout
);
2112 /* vfork succeeded. */
2113 XSETFASTINT (XPROCESS (process
)->pid
, pid
);
2116 register_child (pid
, inchannel
);
2117 #endif /* WINDOWSNT */
2119 /* If the subfork execv fails, and it exits,
2120 this close hangs. I don't know why.
2121 So have an interrupt jar it loose. */
2123 struct atimer
*timer
;
2127 EMACS_SET_SECS_USECS (offset
, 1, 0);
2128 timer
= start_atimer (ATIMER_RELATIVE
, offset
, create_process_1
, 0);
2131 emacs_close (forkin
);
2133 cancel_atimer (timer
);
2137 if (forkin
!= forkout
&& forkout
>= 0)
2138 emacs_close (forkout
);
2142 XPROCESS (process
)->tty_name
= build_string (pty_name
);
2145 XPROCESS (process
)->tty_name
= Qnil
;
2148 /* Restore the signal state whether vfork succeeded or not.
2149 (We will signal an error, below, if it failed.) */
2150 #ifdef POSIX_SIGNALS
2151 #ifdef HAVE_WORKING_VFORK
2152 /* Restore the parent's signal handlers. */
2153 sigaction (SIGINT
, &sigint_action
, 0);
2154 sigaction (SIGQUIT
, &sigquit_action
, 0);
2156 sigaction (SIGHUP
, &sighup_action
, 0);
2158 #endif /* HAVE_WORKING_VFORK */
2159 /* Stop blocking signals in the parent. */
2160 sigprocmask (SIG_SETMASK
, &procmask
, 0);
2161 #else /* !POSIX_SIGNALS */
2165 #else /* not BSD4_1 */
2166 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
2167 sigsetmask (SIGEMPTYMASK
);
2168 #else /* ordinary USG */
2170 signal (SIGCHLD
, sigchld
);
2171 /* Now really handle any of these signals
2172 that came in during this function. */
2173 if (sigchld_deferred
)
2174 kill (getpid (), SIGCHLD
);
2176 #endif /* ordinary USG */
2177 #endif /* not BSD4_1 */
2178 #endif /* SIGCHLD */
2179 #endif /* !POSIX_SIGNALS */
2181 /* Now generate the error if vfork failed. */
2183 report_file_error ("Doing vfork", Qnil
);
2185 #endif /* not VMS */
2190 /* Convert an internal struct sockaddr to a lisp object (vector or string).
2191 The address family of sa is not included in the result. */
2194 conv_sockaddr_to_lisp (sa
, len
)
2195 struct sockaddr
*sa
;
2198 Lisp_Object address
;
2201 register struct Lisp_Vector
*p
;
2203 switch (sa
->sa_family
)
2207 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
2208 len
= sizeof (sin
->sin_addr
) + 1;
2209 address
= Fmake_vector (make_number (len
), Qnil
);
2210 p
= XVECTOR (address
);
2211 p
->contents
[--len
] = make_number (ntohs (sin
->sin_port
));
2212 cp
= (unsigned char *)&sin
->sin_addr
;
2215 #ifdef HAVE_LOCAL_SOCKETS
2218 struct sockaddr_un
*sockun
= (struct sockaddr_un
*) sa
;
2219 for (i
= 0; i
< sizeof (sockun
->sun_path
); i
++)
2220 if (sockun
->sun_path
[i
] == 0)
2222 return make_unibyte_string (sockun
->sun_path
, i
);
2226 len
-= sizeof (sa
->sa_family
);
2227 address
= Fcons (make_number (sa
->sa_family
),
2228 Fmake_vector (make_number (len
), Qnil
));
2229 p
= XVECTOR (XCDR (address
));
2230 cp
= (unsigned char *) sa
+ sizeof (sa
->sa_family
);
2236 p
->contents
[i
++] = make_number (*cp
++);
2242 /* Get family and required size for sockaddr structure to hold ADDRESS. */
2245 get_lisp_to_sockaddr_size (address
, familyp
)
2246 Lisp_Object address
;
2249 register struct Lisp_Vector
*p
;
2251 if (VECTORP (address
))
2253 p
= XVECTOR (address
);
2257 return sizeof (struct sockaddr_in
);
2260 #ifdef HAVE_LOCAL_SOCKETS
2261 else if (STRINGP (address
))
2263 *familyp
= AF_LOCAL
;
2264 return sizeof (struct sockaddr_un
);
2267 else if (CONSP (address
) && INTEGERP (XCAR (address
)) && VECTORP (XCDR (address
)))
2269 struct sockaddr
*sa
;
2270 *familyp
= XINT (XCAR (address
));
2271 p
= XVECTOR (XCDR (address
));
2272 return p
->size
+ sizeof (sa
->sa_family
);
2277 /* Convert an address object (vector or string) to an internal sockaddr.
2278 Format of address has already been validated by size_lisp_to_sockaddr. */
2281 conv_lisp_to_sockaddr (family
, address
, sa
, len
)
2283 Lisp_Object address
;
2284 struct sockaddr
*sa
;
2287 register struct Lisp_Vector
*p
;
2288 register unsigned char *cp
= NULL
;
2292 sa
->sa_family
= family
;
2294 if (VECTORP (address
))
2296 p
= XVECTOR (address
);
2297 if (family
== AF_INET
)
2299 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
2300 len
= sizeof (sin
->sin_addr
) + 1;
2301 i
= XINT (p
->contents
[--len
]);
2302 sin
->sin_port
= htons (i
);
2303 cp
= (unsigned char *)&sin
->sin_addr
;
2306 else if (STRINGP (address
))
2308 #ifdef HAVE_LOCAL_SOCKETS
2309 if (family
== AF_LOCAL
)
2311 struct sockaddr_un
*sockun
= (struct sockaddr_un
*) sa
;
2312 cp
= SDATA (address
);
2313 for (i
= 0; i
< sizeof (sockun
->sun_path
) && *cp
; i
++)
2314 sockun
->sun_path
[i
] = *cp
++;
2321 p
= XVECTOR (XCDR (address
));
2322 cp
= (unsigned char *)sa
+ sizeof (sa
->sa_family
);
2325 for (i
= 0; i
< len
; i
++)
2326 if (INTEGERP (p
->contents
[i
]))
2327 *cp
++ = XFASTINT (p
->contents
[i
]) & 0xff;
2330 #ifdef DATAGRAM_SOCKETS
2331 DEFUN ("process-datagram-address", Fprocess_datagram_address
, Sprocess_datagram_address
,
2333 doc
: /* Get the current datagram address associated with PROCESS. */)
2335 Lisp_Object process
;
2339 CHECK_PROCESS (process
);
2341 if (!DATAGRAM_CONN_P (process
))
2344 channel
= XINT (XPROCESS (process
)->infd
);
2345 return conv_sockaddr_to_lisp (datagram_address
[channel
].sa
,
2346 datagram_address
[channel
].len
);
2349 DEFUN ("set-process-datagram-address", Fset_process_datagram_address
, Sset_process_datagram_address
,
2351 doc
: /* Set the datagram address for PROCESS to ADDRESS.
2352 Returns nil upon error setting address, ADDRESS otherwise. */)
2354 Lisp_Object process
, address
;
2359 CHECK_PROCESS (process
);
2361 if (!DATAGRAM_CONN_P (process
))
2364 channel
= XINT (XPROCESS (process
)->infd
);
2366 len
= get_lisp_to_sockaddr_size (address
, &family
);
2367 if (datagram_address
[channel
].len
!= len
)
2369 conv_lisp_to_sockaddr (family
, address
, datagram_address
[channel
].sa
, len
);
2375 static struct socket_options
{
2376 /* The name of this option. Should be lowercase version of option
2377 name without SO_ prefix. */
2379 /* Option level SOL_... */
2381 /* Option number SO_... */
2383 enum { SOPT_UNKNOWN
, SOPT_BOOL
, SOPT_INT
, SOPT_IFNAME
, SOPT_LINGER
} opttype
;
2384 enum { OPIX_NONE
=0, OPIX_MISC
=1, OPIX_REUSEADDR
=2 } optbit
;
2385 } socket_options
[] =
2387 #ifdef SO_BINDTODEVICE
2388 { ":bindtodevice", SOL_SOCKET
, SO_BINDTODEVICE
, SOPT_IFNAME
, OPIX_MISC
},
2391 { ":broadcast", SOL_SOCKET
, SO_BROADCAST
, SOPT_BOOL
, OPIX_MISC
},
2394 { ":dontroute", SOL_SOCKET
, SO_DONTROUTE
, SOPT_BOOL
, OPIX_MISC
},
2397 { ":keepalive", SOL_SOCKET
, SO_KEEPALIVE
, SOPT_BOOL
, OPIX_MISC
},
2400 { ":linger", SOL_SOCKET
, SO_LINGER
, SOPT_LINGER
, OPIX_MISC
},
2403 { ":oobinline", SOL_SOCKET
, SO_OOBINLINE
, SOPT_BOOL
, OPIX_MISC
},
2406 { ":priority", SOL_SOCKET
, SO_PRIORITY
, SOPT_INT
, OPIX_MISC
},
2409 { ":reuseaddr", SOL_SOCKET
, SO_REUSEADDR
, SOPT_BOOL
, OPIX_REUSEADDR
},
2411 { 0, 0, 0, SOPT_UNKNOWN
, OPIX_NONE
}
2414 /* Set option OPT to value VAL on socket S.
2416 Returns (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
2417 Signals an error if setting a known option fails.
2421 set_socket_option (s
, opt
, val
)
2423 Lisp_Object opt
, val
;
2426 struct socket_options
*sopt
;
2431 name
= (char *) SDATA (SYMBOL_NAME (opt
));
2432 for (sopt
= socket_options
; sopt
->name
; sopt
++)
2433 if (strcmp (name
, sopt
->name
) == 0)
2436 switch (sopt
->opttype
)
2441 optval
= NILP (val
) ? 0 : 1;
2442 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2443 &optval
, sizeof (optval
));
2451 optval
= XINT (val
);
2453 error ("Bad option value for %s", name
);
2454 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2455 &optval
, sizeof (optval
));
2459 #ifdef SO_BINDTODEVICE
2462 char devname
[IFNAMSIZ
+1];
2464 /* This is broken, at least in the Linux 2.4 kernel.
2465 To unbind, the arg must be a zero integer, not the empty string.
2466 This should work on all systems. KFS. 2003-09-23. */
2467 bzero (devname
, sizeof devname
);
2470 char *arg
= (char *) SDATA (val
);
2471 int len
= min (strlen (arg
), IFNAMSIZ
);
2472 bcopy (arg
, devname
, len
);
2474 else if (!NILP (val
))
2475 error ("Bad option value for %s", name
);
2476 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2485 struct linger linger
;
2488 linger
.l_linger
= 0;
2490 linger
.l_linger
= XINT (val
);
2492 linger
.l_onoff
= NILP (val
) ? 0 : 1;
2493 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2494 &linger
, sizeof (linger
));
2504 report_file_error ("Cannot set network option",
2505 Fcons (opt
, Fcons (val
, Qnil
)));
2506 return (1 << sopt
->optbit
);
2510 DEFUN ("set-network-process-option",
2511 Fset_network_process_option
, Sset_network_process_option
,
2513 doc
: /* For network process PROCESS set option OPTION to value VALUE.
2514 See `make-network-process' for a list of options and values.
2515 If optional fourth arg NO-ERROR is non-nil, don't signal an error if
2516 OPTION is not a supported option, return nil instead; otherwise return t. */)
2517 (process
, option
, value
, no_error
)
2518 Lisp_Object process
, option
, value
;
2519 Lisp_Object no_error
;
2522 struct Lisp_Process
*p
;
2524 CHECK_PROCESS (process
);
2525 p
= XPROCESS (process
);
2526 if (!NETCONN1_P (p
))
2527 error ("Process is not a network process");
2531 error ("Process is not running");
2533 if (set_socket_option (s
, option
, value
))
2535 p
->childp
= Fplist_put (p
->childp
, option
, value
);
2539 if (NILP (no_error
))
2540 error ("Unknown or unsupported option");
2546 /* A version of request_sigio suitable for a record_unwind_protect. */
2549 unwind_request_sigio (dummy
)
2552 if (interrupt_input
)
2557 /* Create a network stream/datagram client/server process. Treated
2558 exactly like a normal process when reading and writing. Primary
2559 differences are in status display and process deletion. A network
2560 connection has no PID; you cannot signal it. All you can do is
2561 stop/continue it and deactivate/close it via delete-process */
2563 DEFUN ("make-network-process", Fmake_network_process
, Smake_network_process
,
2565 doc
: /* Create and return a network server or client process.
2567 In Emacs, network connections are represented by process objects, so
2568 input and output work as for subprocesses and `delete-process' closes
2569 a network connection. However, a network process has no process id,
2570 it cannot be signaled, and the status codes are different from normal
2573 Arguments are specified as keyword/argument pairs. The following
2574 arguments are defined:
2576 :name NAME -- NAME is name for process. It is modified if necessary
2579 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2580 with the process. Process output goes at end of that buffer, unless
2581 you specify an output stream or filter function to handle the output.
2582 BUFFER may be also nil, meaning that this process is not associated
2585 :host HOST -- HOST is name of the host to connect to, or its IP
2586 address. The symbol `local' specifies the local host. If specified
2587 for a server process, it must be a valid name or address for the local
2588 host, and only clients connecting to that address will be accepted.
2590 :service SERVICE -- SERVICE is name of the service desired, or an
2591 integer specifying a port number to connect to. If SERVICE is t,
2592 a random port number is selected for the server.
2594 :type TYPE -- TYPE is the type of connection. The default (nil) is a
2595 stream type connection, `datagram' creates a datagram type connection.
2597 :family FAMILY -- FAMILY is the address (and protocol) family for the
2598 service specified by HOST and SERVICE. The default address family is
2599 Inet (or IPv4) for the host and port number specified by HOST and
2600 SERVICE. Other address families supported are:
2601 local -- for a local (i.e. UNIX) address specified by SERVICE.
2603 :local ADDRESS -- ADDRESS is the local address used for the connection.
2604 This parameter is ignored when opening a client process. When specified
2605 for a server process, the FAMILY, HOST and SERVICE args are ignored.
2607 :remote ADDRESS -- ADDRESS is the remote partner's address for the
2608 connection. This parameter is ignored when opening a stream server
2609 process. For a datagram server process, it specifies the initial
2610 setting of the remote datagram address. When specified for a client
2611 process, the FAMILY, HOST, and SERVICE args are ignored.
2613 The format of ADDRESS depends on the address family:
2614 - An IPv4 address is represented as an vector of integers [A B C D P]
2615 corresponding to numeric IP address A.B.C.D and port number P.
2616 - A local address is represented as a string with the address in the
2617 local address space.
2618 - An "unsupported family" address is represented by a cons (F . AV)
2619 where F is the family number and AV is a vector containing the socket
2620 address data with one element per address data byte. Do not rely on
2621 this format in portable code, as it may depend on implementation
2622 defined constants, data sizes, and data structure alignment.
2624 :coding CODING -- If CODING is a symbol, it specifies the coding
2625 system used for both reading and writing for this process. If CODING
2626 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2627 ENCODING is used for writing.
2629 :nowait BOOL -- If BOOL is non-nil for a stream type client process,
2630 return without waiting for the connection to complete; instead, the
2631 sentinel function will be called with second arg matching "open" (if
2632 successful) or "failed" when the connect completes. Default is to use
2633 a blocking connect (i.e. wait) for stream type connections.
2635 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
2636 running when Emacs is exited.
2638 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
2639 In the stopped state, a server process does not accept new
2640 connections, and a client process does not handle incoming traffic.
2641 The stopped state is cleared by `continue-process' and set by
2644 :filter FILTER -- Install FILTER as the process filter.
2646 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
2647 process filter are multibyte, otherwise they are unibyte.
2648 If this keyword is not specified, the strings are multibyte iff
2649 `default-enable-multibyte-characters' is non-nil.
2651 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2653 :log LOG -- Install LOG as the server process log function. This
2654 function is called when the server accepts a network connection from a
2655 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
2656 is the server process, CLIENT is the new process for the connection,
2657 and MESSAGE is a string.
2659 :plist PLIST -- Install PLIST as the new process' initial plist.
2661 :server QLEN -- if QLEN is non-nil, create a server process for the
2662 specified FAMILY, SERVICE, and connection type (stream or datagram).
2663 If QLEN is an integer, it is used as the max. length of the server's
2664 pending connection queue (also known as the backlog); the default
2665 queue length is 5. Default is to create a client process.
2667 The following network options can be specified for this connection:
2669 :broadcast BOOL -- Allow send and receive of datagram broadcasts.
2670 :dontroute BOOL -- Only send to directly connected hosts.
2671 :keepalive BOOL -- Send keep-alive messages on network stream.
2672 :linger BOOL or TIMEOUT -- Send queued messages before closing.
2673 :oobinline BOOL -- Place out-of-band data in receive data stream.
2674 :priority INT -- Set protocol defined priority for sent packets.
2675 :reuseaddr BOOL -- Allow reusing a recently used local address
2676 (this is allowed by default for a server process).
2677 :bindtodevice NAME -- bind to interface NAME. Using this may require
2678 special privileges on some systems.
2680 Consult the relevant system programmer's manual pages for more
2681 information on using these options.
2684 A server process will listen for and accept connections from clients.
2685 When a client connection is accepted, a new network process is created
2686 for the connection with the following parameters:
2688 - The client's process name is constructed by concatenating the server
2689 process' NAME and a client identification string.
2690 - If the FILTER argument is non-nil, the client process will not get a
2691 separate process buffer; otherwise, the client's process buffer is a newly
2692 created buffer named after the server process' BUFFER name or process
2693 NAME concatenated with the client identification string.
2694 - The connection type and the process filter and sentinel parameters are
2695 inherited from the server process' TYPE, FILTER and SENTINEL.
2696 - The client process' contact info is set according to the client's
2697 addressing information (typically an IP address and a port number).
2698 - The client process' plist is initialized from the server's plist.
2700 Notice that the FILTER and SENTINEL args are never used directly by
2701 the server process. Also, the BUFFER argument is not used directly by
2702 the server process, but via the optional :log function, accepted (and
2703 failed) connections may be logged in the server process' buffer.
2705 The original argument list, modified with the actual connection
2706 information, is available via the `process-contact' function.
2708 usage: (make-network-process &rest ARGS) */)
2714 Lisp_Object contact
;
2715 struct Lisp_Process
*p
;
2716 #ifdef HAVE_GETADDRINFO
2717 struct addrinfo ai
, *res
, *lres
;
2718 struct addrinfo hints
;
2719 char *portstring
, portbuf
[128];
2720 #else /* HAVE_GETADDRINFO */
2721 struct _emacs_addrinfo
2727 struct sockaddr
*ai_addr
;
2728 struct _emacs_addrinfo
*ai_next
;
2730 #endif /* HAVE_GETADDRINFO */
2731 struct sockaddr_in address_in
;
2732 #ifdef HAVE_LOCAL_SOCKETS
2733 struct sockaddr_un address_un
;
2738 int s
= -1, outch
, inch
;
2739 struct gcpro gcpro1
;
2740 int count
= SPECPDL_INDEX ();
2742 Lisp_Object QCaddress
; /* one of QClocal or QCremote */
2744 Lisp_Object name
, buffer
, host
, service
, address
;
2745 Lisp_Object filter
, sentinel
;
2746 int is_non_blocking_client
= 0;
2747 int is_server
= 0, backlog
= 5;
2754 /* Save arguments for process-contact and clone-process. */
2755 contact
= Flist (nargs
, args
);
2759 /* Ensure socket support is loaded if available. */
2760 init_winsock (TRUE
);
2763 /* :type TYPE (nil: stream, datagram */
2764 tem
= Fplist_get (contact
, QCtype
);
2766 socktype
= SOCK_STREAM
;
2767 #ifdef DATAGRAM_SOCKETS
2768 else if (EQ (tem
, Qdatagram
))
2769 socktype
= SOCK_DGRAM
;
2772 error ("Unsupported connection type");
2775 tem
= Fplist_get (contact
, QCserver
);
2778 /* Don't support network sockets when non-blocking mode is
2779 not available, since a blocked Emacs is not useful. */
2780 #if defined(TERM) || (!defined(O_NONBLOCK) && !defined(O_NDELAY))
2781 error ("Network servers not supported");
2785 backlog
= XINT (tem
);
2789 /* Make QCaddress an alias for :local (server) or :remote (client). */
2790 QCaddress
= is_server
? QClocal
: QCremote
;
2793 if (!is_server
&& socktype
== SOCK_STREAM
2794 && (tem
= Fplist_get (contact
, QCnowait
), !NILP (tem
)))
2796 #ifndef NON_BLOCKING_CONNECT
2797 error ("Non-blocking connect not supported");
2799 is_non_blocking_client
= 1;
2803 name
= Fplist_get (contact
, QCname
);
2804 buffer
= Fplist_get (contact
, QCbuffer
);
2805 filter
= Fplist_get (contact
, QCfilter
);
2806 sentinel
= Fplist_get (contact
, QCsentinel
);
2808 CHECK_STRING (name
);
2811 /* Let's handle TERM before things get complicated ... */
2812 host
= Fplist_get (contact
, QChost
);
2813 CHECK_STRING (host
);
2815 service
= Fplist_get (contact
, QCservice
);
2816 if (INTEGERP (service
))
2817 port
= htons ((unsigned short) XINT (service
));
2820 struct servent
*svc_info
;
2821 CHECK_STRING (service
);
2822 svc_info
= getservbyname (SDATA (service
), "tcp");
2824 error ("Unknown service: %s", SDATA (service
));
2825 port
= svc_info
->s_port
;
2828 s
= connect_server (0);
2830 report_file_error ("error creating socket", Fcons (name
, Qnil
));
2831 send_command (s
, C_PORT
, 0, "%s:%d", SDATA (host
), ntohs (port
));
2832 send_command (s
, C_DUMB
, 1, 0);
2834 #else /* not TERM */
2836 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
2837 ai
.ai_socktype
= socktype
;
2842 /* :local ADDRESS or :remote ADDRESS */
2843 address
= Fplist_get (contact
, QCaddress
);
2844 if (!NILP (address
))
2846 host
= service
= Qnil
;
2848 if (!(ai
.ai_addrlen
= get_lisp_to_sockaddr_size (address
, &family
)))
2849 error ("Malformed :address");
2850 ai
.ai_family
= family
;
2851 ai
.ai_addr
= alloca (ai
.ai_addrlen
);
2852 conv_lisp_to_sockaddr (family
, address
, ai
.ai_addr
, ai
.ai_addrlen
);
2856 /* :family FAMILY -- nil (for Inet), local, or integer. */
2857 tem
= Fplist_get (contact
, QCfamily
);
2859 family
= XINT (tem
);
2864 #ifdef HAVE_LOCAL_SOCKETS
2865 else if (EQ (tem
, Qlocal
))
2870 error ("Unknown address family");
2871 ai
.ai_family
= family
;
2873 /* :service SERVICE -- string, integer (port number), or t (random port). */
2874 service
= Fplist_get (contact
, QCservice
);
2876 #ifdef HAVE_LOCAL_SOCKETS
2877 if (family
== AF_LOCAL
)
2879 /* Host is not used. */
2881 CHECK_STRING (service
);
2882 bzero (&address_un
, sizeof address_un
);
2883 address_un
.sun_family
= AF_LOCAL
;
2884 strncpy (address_un
.sun_path
, SDATA (service
), sizeof address_un
.sun_path
);
2885 ai
.ai_addr
= (struct sockaddr
*) &address_un
;
2886 ai
.ai_addrlen
= sizeof address_un
;
2891 /* :host HOST -- hostname, ip address, or 'local for localhost. */
2892 host
= Fplist_get (contact
, QChost
);
2895 if (EQ (host
, Qlocal
))
2896 host
= build_string ("localhost");
2897 CHECK_STRING (host
);
2900 /* Slow down polling to every ten seconds.
2901 Some kernels have a bug which causes retrying connect to fail
2902 after a connect. Polling can interfere with gethostbyname too. */
2903 #ifdef POLL_FOR_INPUT
2904 if (socktype
== SOCK_STREAM
)
2906 record_unwind_protect (unwind_stop_other_atimers
, Qnil
);
2907 bind_polling_period (10);
2911 #ifdef HAVE_GETADDRINFO
2912 /* If we have a host, use getaddrinfo to resolve both host and service.
2913 Otherwise, use getservbyname to lookup the service. */
2917 /* SERVICE can either be a string or int.
2918 Convert to a C string for later use by getaddrinfo. */
2919 if (EQ (service
, Qt
))
2921 else if (INTEGERP (service
))
2923 sprintf (portbuf
, "%ld", (long) XINT (service
));
2924 portstring
= portbuf
;
2928 CHECK_STRING (service
);
2929 portstring
= SDATA (service
);
2934 memset (&hints
, 0, sizeof (hints
));
2936 hints
.ai_family
= NILP (Fplist_member (contact
, QCfamily
)) ? AF_UNSPEC
: family
;
2937 hints
.ai_socktype
= socktype
;
2938 hints
.ai_protocol
= 0;
2939 ret
= getaddrinfo (SDATA (host
), portstring
, &hints
, &res
);
2941 #ifdef HAVE_GAI_STRERROR
2942 error ("%s/%s %s", SDATA (host
), portstring
, gai_strerror(ret
));
2944 error ("%s/%s getaddrinfo error %d", SDATA (host
), portstring
, ret
);
2950 #endif /* HAVE_GETADDRINFO */
2952 /* We end up here if getaddrinfo is not defined, or in case no hostname
2953 has been specified (e.g. for a local server process). */
2955 if (EQ (service
, Qt
))
2957 else if (INTEGERP (service
))
2958 port
= htons ((unsigned short) XINT (service
));
2961 struct servent
*svc_info
;
2962 CHECK_STRING (service
);
2963 svc_info
= getservbyname (SDATA (service
),
2964 (socktype
== SOCK_DGRAM
? "udp" : "tcp"));
2966 error ("Unknown service: %s", SDATA (service
));
2967 port
= svc_info
->s_port
;
2970 bzero (&address_in
, sizeof address_in
);
2971 address_in
.sin_family
= family
;
2972 address_in
.sin_addr
.s_addr
= INADDR_ANY
;
2973 address_in
.sin_port
= port
;
2975 #ifndef HAVE_GETADDRINFO
2978 struct hostent
*host_info_ptr
;
2980 /* gethostbyname may fail with TRY_AGAIN, but we don't honour that,
2981 as it may `hang' Emacs for a very long time. */
2984 host_info_ptr
= gethostbyname (SDATA (host
));
2989 bcopy (host_info_ptr
->h_addr
, (char *) &address_in
.sin_addr
,
2990 host_info_ptr
->h_length
);
2991 family
= host_info_ptr
->h_addrtype
;
2992 address_in
.sin_family
= family
;
2995 /* Attempt to interpret host as numeric inet address */
2997 IN_ADDR numeric_addr
;
2998 numeric_addr
= inet_addr ((char *) SDATA (host
));
2999 if (NUMERIC_ADDR_ERROR
)
3000 error ("Unknown host \"%s\"", SDATA (host
));
3002 bcopy ((char *)&numeric_addr
, (char *) &address_in
.sin_addr
,
3003 sizeof (address_in
.sin_addr
));
3007 #endif /* not HAVE_GETADDRINFO */
3009 ai
.ai_family
= family
;
3010 ai
.ai_addr
= (struct sockaddr
*) &address_in
;
3011 ai
.ai_addrlen
= sizeof address_in
;
3015 /* Kernel bugs (on Ultrix at least) cause lossage (not just EINTR)
3016 when connect is interrupted. So let's not let it get interrupted.
3017 Note we do not turn off polling, because polling is only used
3018 when not interrupt_input, and thus not normally used on the systems
3019 which have this bug. On systems which use polling, there's no way
3020 to quit if polling is turned off. */
3022 && !is_server
&& socktype
== SOCK_STREAM
)
3024 /* Comment from KFS: The original open-network-stream code
3025 didn't unwind protect this, but it seems like the proper
3026 thing to do. In any case, I don't see how it could harm to
3027 do this -- and it makes cleanup (using unbind_to) easier. */
3028 record_unwind_protect (unwind_request_sigio
, Qnil
);
3032 /* Do this in case we never enter the for-loop below. */
3033 count1
= SPECPDL_INDEX ();
3036 for (lres
= res
; lres
; lres
= lres
->ai_next
)
3042 s
= socket (lres
->ai_family
, lres
->ai_socktype
, lres
->ai_protocol
);
3049 #ifdef DATAGRAM_SOCKETS
3050 if (!is_server
&& socktype
== SOCK_DGRAM
)
3052 #endif /* DATAGRAM_SOCKETS */
3054 #ifdef NON_BLOCKING_CONNECT
3055 if (is_non_blocking_client
)
3058 ret
= fcntl (s
, F_SETFL
, O_NONBLOCK
);
3060 ret
= fcntl (s
, F_SETFL
, O_NDELAY
);
3072 /* Make us close S if quit. */
3073 record_unwind_protect (close_file_unwind
, make_number (s
));
3075 /* Parse network options in the arg list.
3076 We simply ignore anything which isn't a known option (including other keywords).
3077 An error is signalled if setting a known option fails. */
3078 for (optn
= optbits
= 0; optn
< nargs
-1; optn
+= 2)
3079 optbits
|= set_socket_option (s
, args
[optn
], args
[optn
+1]);
3083 /* Configure as a server socket. */
3085 /* SO_REUSEADDR = 1 is default for server sockets; must specify
3086 explicit :reuseaddr key to override this. */
3087 #ifdef HAVE_LOCAL_SOCKETS
3088 if (family
!= AF_LOCAL
)
3090 if (!(optbits
& (1 << OPIX_REUSEADDR
)))
3093 if (setsockopt (s
, SOL_SOCKET
, SO_REUSEADDR
, &optval
, sizeof optval
))
3094 report_file_error ("Cannot set reuse option on server socket", Qnil
);
3097 if (bind (s
, lres
->ai_addr
, lres
->ai_addrlen
))
3098 report_file_error ("Cannot bind server socket", Qnil
);
3100 #ifdef HAVE_GETSOCKNAME
3101 if (EQ (service
, Qt
))
3103 struct sockaddr_in sa1
;
3104 int len1
= sizeof (sa1
);
3105 if (getsockname (s
, (struct sockaddr
*)&sa1
, &len1
) == 0)
3107 ((struct sockaddr_in
*)(lres
->ai_addr
))->sin_port
= sa1
.sin_port
;
3108 service
= make_number (ntohs (sa1
.sin_port
));
3109 contact
= Fplist_put (contact
, QCservice
, service
);
3114 if (socktype
== SOCK_STREAM
&& listen (s
, backlog
))
3115 report_file_error ("Cannot listen on server socket", Qnil
);
3123 /* This turns off all alarm-based interrupts; the
3124 bind_polling_period call above doesn't always turn all the
3125 short-interval ones off, especially if interrupt_input is
3128 It'd be nice to be able to control the connect timeout
3129 though. Would non-blocking connect calls be portable?
3131 This used to be conditioned by HAVE_GETADDRINFO. Why? */
3133 turn_on_atimers (0);
3135 ret
= connect (s
, lres
->ai_addr
, lres
->ai_addrlen
);
3138 turn_on_atimers (1);
3140 if (ret
== 0 || xerrno
== EISCONN
)
3142 /* The unwind-protect will be discarded afterwards.
3143 Likewise for immediate_quit. */
3147 #ifdef NON_BLOCKING_CONNECT
3149 if (is_non_blocking_client
&& xerrno
== EINPROGRESS
)
3153 if (is_non_blocking_client
&& xerrno
== EWOULDBLOCK
)
3161 /* Discard the unwind protect closing S. */
3162 specpdl_ptr
= specpdl
+ count1
;
3166 if (xerrno
== EINTR
)
3172 #ifdef DATAGRAM_SOCKETS
3173 if (socktype
== SOCK_DGRAM
)
3175 if (datagram_address
[s
].sa
)
3177 datagram_address
[s
].sa
= (struct sockaddr
*) xmalloc (lres
->ai_addrlen
);
3178 datagram_address
[s
].len
= lres
->ai_addrlen
;
3182 bzero (datagram_address
[s
].sa
, lres
->ai_addrlen
);
3183 if (remote
= Fplist_get (contact
, QCremote
), !NILP (remote
))
3186 rlen
= get_lisp_to_sockaddr_size (remote
, &rfamily
);
3187 if (rfamily
== lres
->ai_family
&& rlen
== lres
->ai_addrlen
)
3188 conv_lisp_to_sockaddr (rfamily
, remote
,
3189 datagram_address
[s
].sa
, rlen
);
3193 bcopy (lres
->ai_addr
, datagram_address
[s
].sa
, lres
->ai_addrlen
);
3196 contact
= Fplist_put (contact
, QCaddress
,
3197 conv_sockaddr_to_lisp (lres
->ai_addr
, lres
->ai_addrlen
));
3198 #ifdef HAVE_GETSOCKNAME
3201 struct sockaddr_in sa1
;
3202 int len1
= sizeof (sa1
);
3203 if (getsockname (s
, (struct sockaddr
*)&sa1
, &len1
) == 0)
3204 contact
= Fplist_put (contact
, QClocal
,
3205 conv_sockaddr_to_lisp (&sa1
, len1
));
3210 #ifdef HAVE_GETADDRINFO
3217 /* Discard the unwind protect for closing S, if any. */
3218 specpdl_ptr
= specpdl
+ count1
;
3220 /* Unwind bind_polling_period and request_sigio. */
3221 unbind_to (count
, Qnil
);
3225 /* If non-blocking got this far - and failed - assume non-blocking is
3226 not supported after all. This is probably a wrong assumption, but
3227 the normal blocking calls to open-network-stream handles this error
3229 if (is_non_blocking_client
)
3234 report_file_error ("make server process failed", contact
);
3236 report_file_error ("make client process failed", contact
);
3239 #endif /* not TERM */
3245 buffer
= Fget_buffer_create (buffer
);
3246 proc
= make_process (name
);
3248 chan_process
[inch
] = proc
;
3251 fcntl (inch
, F_SETFL
, O_NONBLOCK
);
3254 fcntl (inch
, F_SETFL
, O_NDELAY
);
3258 p
= XPROCESS (proc
);
3260 p
->childp
= contact
;
3261 p
->plist
= Fcopy_sequence (Fplist_get (contact
, QCplist
));
3264 p
->sentinel
= sentinel
;
3266 p
->filter_multibyte
= buffer_defaults
.enable_multibyte_characters
;
3267 /* Override the above only if :filter-multibyte is specified. */
3268 if (! NILP (Fplist_member (contact
, QCfilter_multibyte
)))
3269 p
->filter_multibyte
= Fplist_get (contact
, QCfilter_multibyte
);
3270 p
->log
= Fplist_get (contact
, QClog
);
3271 if (tem
= Fplist_get (contact
, QCnoquery
), !NILP (tem
))
3272 p
->kill_without_query
= Qt
;
3273 if ((tem
= Fplist_get (contact
, QCstop
), !NILP (tem
)))
3276 XSETINT (p
->infd
, inch
);
3277 XSETINT (p
->outfd
, outch
);
3278 if (is_server
&& socktype
== SOCK_STREAM
)
3279 p
->status
= Qlisten
;
3281 #ifdef NON_BLOCKING_CONNECT
3282 if (is_non_blocking_client
)
3284 /* We may get here if connect did succeed immediately. However,
3285 in that case, we still need to signal this like a non-blocking
3287 p
->status
= Qconnect
;
3288 if (!FD_ISSET (inch
, &connect_wait_mask
))
3290 FD_SET (inch
, &connect_wait_mask
);
3291 num_pending_connects
++;
3296 /* A server may have a client filter setting of Qt, but it must
3297 still listen for incoming connects unless it is stopped. */
3298 if ((!EQ (p
->filter
, Qt
) && !EQ (p
->command
, Qt
))
3299 || (EQ (p
->status
, Qlisten
) && NILP (p
->command
)))
3301 FD_SET (inch
, &input_wait_mask
);
3302 FD_SET (inch
, &non_keyboard_wait_mask
);
3305 if (inch
> max_process_desc
)
3306 max_process_desc
= inch
;
3308 tem
= Fplist_member (contact
, QCcoding
);
3309 if (!NILP (tem
) && (!CONSP (tem
) || !CONSP (XCDR (tem
))))
3310 tem
= Qnil
; /* No error message (too late!). */
3313 /* Setup coding systems for communicating with the network stream. */
3314 struct gcpro gcpro1
;
3315 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3316 Lisp_Object coding_systems
= Qt
;
3317 Lisp_Object args
[5], val
;
3321 val
= XCAR (XCDR (tem
));
3325 else if (!NILP (Vcoding_system_for_read
))
3326 val
= Vcoding_system_for_read
;
3327 else if ((!NILP (buffer
) && NILP (XBUFFER (buffer
)->enable_multibyte_characters
))
3328 || (NILP (buffer
) && NILP (buffer_defaults
.enable_multibyte_characters
)))
3329 /* We dare not decode end-of-line format by setting VAL to
3330 Qraw_text, because the existing Emacs Lisp libraries
3331 assume that they receive bare code including a sequene of
3336 if (NILP (host
) || NILP (service
))
3337 coding_systems
= Qnil
;
3340 args
[0] = Qopen_network_stream
, args
[1] = name
,
3341 args
[2] = buffer
, args
[3] = host
, args
[4] = service
;
3343 coding_systems
= Ffind_operation_coding_system (5, args
);
3346 if (CONSP (coding_systems
))
3347 val
= XCAR (coding_systems
);
3348 else if (CONSP (Vdefault_process_coding_system
))
3349 val
= XCAR (Vdefault_process_coding_system
);
3353 p
->decode_coding_system
= val
;
3357 val
= XCAR (XCDR (tem
));
3361 else if (!NILP (Vcoding_system_for_write
))
3362 val
= Vcoding_system_for_write
;
3363 else if (NILP (current_buffer
->enable_multibyte_characters
))
3367 if (EQ (coding_systems
, Qt
))
3369 if (NILP (host
) || NILP (service
))
3370 coding_systems
= Qnil
;
3373 args
[0] = Qopen_network_stream
, args
[1] = name
,
3374 args
[2] = buffer
, args
[3] = host
, args
[4] = service
;
3376 coding_systems
= Ffind_operation_coding_system (5, args
);
3380 if (CONSP (coding_systems
))
3381 val
= XCDR (coding_systems
);
3382 else if (CONSP (Vdefault_process_coding_system
))
3383 val
= XCDR (Vdefault_process_coding_system
);
3387 p
->encode_coding_system
= val
;
3389 setup_process_coding_systems (proc
);
3391 p
->decoding_buf
= make_uninit_string (0);
3392 p
->decoding_carryover
= make_number (0);
3393 p
->encoding_buf
= make_uninit_string (0);
3394 p
->encoding_carryover
= make_number (0);
3396 p
->inherit_coding_system_flag
3397 = (!NILP (tem
) || NILP (buffer
) || !inherit_process_coding_system
3403 #endif /* HAVE_SOCKETS */
3406 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
3409 DEFUN ("network-interface-list", Fnetwork_interface_list
, Snetwork_interface_list
, 0, 0, 0,
3410 doc
: /* Return an alist of all network interfaces and their network address.
3411 Each element is a cons, the car of which is a string containing the
3412 interface name, and the cdr is the network address in internal
3413 format; see the description of ADDRESS in `make-network-process'. */)
3416 struct ifconf ifconf
;
3417 struct ifreq
*ifreqs
= NULL
;
3422 s
= socket (AF_INET
, SOCK_STREAM
, 0);
3428 buf_size
= ifaces
* sizeof(ifreqs
[0]);
3429 ifreqs
= (struct ifreq
*)xrealloc(ifreqs
, buf_size
);
3436 ifconf
.ifc_len
= buf_size
;
3437 ifconf
.ifc_req
= ifreqs
;
3438 if (ioctl (s
, SIOCGIFCONF
, &ifconf
))
3444 if (ifconf
.ifc_len
== buf_size
)
3448 ifaces
= ifconf
.ifc_len
/ sizeof (ifreqs
[0]);
3451 while (--ifaces
>= 0)
3453 struct ifreq
*ifq
= &ifreqs
[ifaces
];
3454 char namebuf
[sizeof (ifq
->ifr_name
) + 1];
3455 if (ifq
->ifr_addr
.sa_family
!= AF_INET
)
3457 bcopy (ifq
->ifr_name
, namebuf
, sizeof (ifq
->ifr_name
));
3458 namebuf
[sizeof (ifq
->ifr_name
)] = 0;
3459 res
= Fcons (Fcons (build_string (namebuf
),
3460 conv_sockaddr_to_lisp (&ifq
->ifr_addr
,
3461 sizeof (struct sockaddr
))),
3467 #endif /* SIOCGIFCONF */
3469 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
3476 static struct ifflag_def ifflag_table
[] = {
3480 #ifdef IFF_BROADCAST
3481 { IFF_BROADCAST
, "broadcast" },
3484 { IFF_DEBUG
, "debug" },
3487 { IFF_LOOPBACK
, "loopback" },
3489 #ifdef IFF_POINTOPOINT
3490 { IFF_POINTOPOINT
, "pointopoint" },
3493 { IFF_RUNNING
, "running" },
3496 { IFF_NOARP
, "noarp" },
3499 { IFF_PROMISC
, "promisc" },
3501 #ifdef IFF_NOTRAILERS
3502 { IFF_NOTRAILERS
, "notrailers" },
3505 { IFF_ALLMULTI
, "allmulti" },
3508 { IFF_MASTER
, "master" },
3511 { IFF_SLAVE
, "slave" },
3513 #ifdef IFF_MULTICAST
3514 { IFF_MULTICAST
, "multicast" },
3517 { IFF_PORTSEL
, "portsel" },
3519 #ifdef IFF_AUTOMEDIA
3520 { IFF_AUTOMEDIA
, "automedia" },
3523 { IFF_DYNAMIC
, "dynamic" },
3528 DEFUN ("network-interface-info", Fnetwork_interface_info
, Snetwork_interface_info
, 1, 1, 0,
3529 doc
: /* Return information about network interface named IFNAME.
3530 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
3531 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
3532 NETMASK is the layer 3 network mask, HWADDR is the layer 2 addres, and
3533 FLAGS is the current flags of the interface. */)
3538 Lisp_Object res
= Qnil
;
3543 CHECK_STRING (ifname
);
3545 bzero (rq
.ifr_name
, sizeof rq
.ifr_name
);
3546 strncpy (rq
.ifr_name
, SDATA (ifname
), sizeof (rq
.ifr_name
));
3548 s
= socket (AF_INET
, SOCK_STREAM
, 0);
3553 #if defined(SIOCGIFFLAGS) && defined(HAVE_STRUCT_IFREQ_IFR_FLAGS)
3554 if (ioctl (s
, SIOCGIFFLAGS
, &rq
) == 0)
3556 int flags
= rq
.ifr_flags
;
3557 struct ifflag_def
*fp
;
3561 for (fp
= ifflag_table
; flags
!= 0 && fp
; fp
++)
3563 if (flags
& fp
->flag_bit
)
3565 elt
= Fcons (intern (fp
->flag_sym
), elt
);
3566 flags
-= fp
->flag_bit
;
3569 for (fnum
= 0; flags
&& fnum
< 32; fnum
++)
3571 if (flags
& (1 << fnum
))
3573 elt
= Fcons (make_number (fnum
), elt
);
3578 res
= Fcons (elt
, res
);
3581 #if defined(SIOCGIFHWADDR) && defined(HAVE_STRUCT_IFREQ_IFR_HWADDR)
3582 if (ioctl (s
, SIOCGIFHWADDR
, &rq
) == 0)
3584 Lisp_Object hwaddr
= Fmake_vector (make_number (6), Qnil
);
3585 register struct Lisp_Vector
*p
= XVECTOR (hwaddr
);
3589 for (n
= 0; n
< 6; n
++)
3590 p
->contents
[n
] = make_number (((unsigned char *)&rq
.ifr_hwaddr
.sa_data
[0])[n
]);
3591 elt
= Fcons (make_number (rq
.ifr_hwaddr
.sa_family
), hwaddr
);
3594 res
= Fcons (elt
, res
);
3597 #if defined(SIOCGIFNETMASK) && defined(ifr_netmask)
3598 if (ioctl (s
, SIOCGIFNETMASK
, &rq
) == 0)
3601 elt
= conv_sockaddr_to_lisp (&rq
.ifr_netmask
, sizeof (rq
.ifr_netmask
));
3604 res
= Fcons (elt
, res
);
3607 #if defined(SIOCGIFBRDADDR) && defined(HAVE_STRUCT_IFREQ_IFR_BROADADDR)
3608 if (ioctl (s
, SIOCGIFBRDADDR
, &rq
) == 0)
3611 elt
= conv_sockaddr_to_lisp (&rq
.ifr_broadaddr
, sizeof (rq
.ifr_broadaddr
));
3614 res
= Fcons (elt
, res
);
3617 #if defined(SIOCGIFADDR) && defined(HAVE_STRUCT_IFREQ_IFR_ADDR)
3618 if (ioctl (s
, SIOCGIFADDR
, &rq
) == 0)
3621 elt
= conv_sockaddr_to_lisp (&rq
.ifr_addr
, sizeof (rq
.ifr_addr
));
3624 res
= Fcons (elt
, res
);
3628 return any
? res
: Qnil
;
3631 #endif /* HAVE_SOCKETS */
3633 /* Turn off input and output for process PROC. */
3636 deactivate_process (proc
)
3639 register int inchannel
, outchannel
;
3640 register struct Lisp_Process
*p
= XPROCESS (proc
);
3642 inchannel
= XINT (p
->infd
);
3643 outchannel
= XINT (p
->outfd
);
3645 #ifdef ADAPTIVE_READ_BUFFERING
3646 if (XINT (p
->read_output_delay
) > 0)
3648 if (--process_output_delay_count
< 0)
3649 process_output_delay_count
= 0;
3650 XSETINT (p
->read_output_delay
, 0);
3651 p
->read_output_skip
= Qnil
;
3657 /* Beware SIGCHLD hereabouts. */
3658 flush_pending_output (inchannel
);
3661 VMS_PROC_STUFF
*get_vms_process_pointer (), *vs
;
3662 sys$
dassgn (outchannel
);
3663 vs
= get_vms_process_pointer (p
->pid
);
3665 give_back_vms_process_stuff (vs
);
3668 emacs_close (inchannel
);
3669 if (outchannel
>= 0 && outchannel
!= inchannel
)
3670 emacs_close (outchannel
);
3673 XSETINT (p
->infd
, -1);
3674 XSETINT (p
->outfd
, -1);
3675 #ifdef DATAGRAM_SOCKETS
3676 if (DATAGRAM_CHAN_P (inchannel
))
3678 xfree (datagram_address
[inchannel
].sa
);
3679 datagram_address
[inchannel
].sa
= 0;
3680 datagram_address
[inchannel
].len
= 0;
3683 chan_process
[inchannel
] = Qnil
;
3684 FD_CLR (inchannel
, &input_wait_mask
);
3685 FD_CLR (inchannel
, &non_keyboard_wait_mask
);
3686 #ifdef NON_BLOCKING_CONNECT
3687 if (FD_ISSET (inchannel
, &connect_wait_mask
))
3689 FD_CLR (inchannel
, &connect_wait_mask
);
3690 if (--num_pending_connects
< 0)
3694 if (inchannel
== max_process_desc
)
3697 /* We just closed the highest-numbered process input descriptor,
3698 so recompute the highest-numbered one now. */
3699 max_process_desc
= 0;
3700 for (i
= 0; i
< MAXDESC
; i
++)
3701 if (!NILP (chan_process
[i
]))
3702 max_process_desc
= i
;
3707 /* Close all descriptors currently in use for communication
3708 with subprocess. This is used in a newly-forked subprocess
3709 to get rid of irrelevant descriptors. */
3712 close_process_descs ()
3716 for (i
= 0; i
< MAXDESC
; i
++)
3718 Lisp_Object process
;
3719 process
= chan_process
[i
];
3720 if (!NILP (process
))
3722 int in
= XINT (XPROCESS (process
)->infd
);
3723 int out
= XINT (XPROCESS (process
)->outfd
);
3726 if (out
>= 0 && in
!= out
)
3733 DEFUN ("accept-process-output", Faccept_process_output
, Saccept_process_output
,
3735 doc
: /* Allow any pending output from subprocesses to be read by Emacs.
3736 It is read into the process' buffers or given to their filter functions.
3737 Non-nil arg PROCESS means do not return until some output has been received
3739 Non-nil second arg TIMEOUT and third arg TIMEOUT-MSECS are number of
3740 seconds and microseconds to wait; return after that much time whether
3741 or not there is input.
3742 If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
3743 from PROCESS, suspending reading output from other processes.
3744 If JUST-THIS-ONE is an integer, don't run any timers either.
3745 Return non-nil iff we received any output before the timeout expired. */)
3746 (process
, timeout
, timeout_msecs
, just_this_one
)
3747 register Lisp_Object process
, timeout
, timeout_msecs
, just_this_one
;
3752 if (! NILP (process
))
3753 CHECK_PROCESS (process
);
3755 just_this_one
= Qnil
;
3757 if (! NILP (timeout_msecs
))
3759 CHECK_NUMBER (timeout_msecs
);
3760 useconds
= XINT (timeout_msecs
);
3761 if (!INTEGERP (timeout
))
3762 XSETINT (timeout
, 0);
3765 int carry
= useconds
/ 1000000;
3767 XSETINT (timeout
, XINT (timeout
) + carry
);
3768 useconds
-= carry
* 1000000;
3770 /* I think this clause is necessary because C doesn't
3771 guarantee a particular rounding direction for negative
3775 XSETINT (timeout
, XINT (timeout
) - 1);
3776 useconds
+= 1000000;
3783 if (! NILP (timeout
))
3785 CHECK_NUMBER (timeout
);
3786 seconds
= XINT (timeout
);
3787 if (seconds
< 0 || (seconds
== 0 && useconds
== 0))
3791 seconds
= NILP (process
) ? -1 : 0;
3794 (wait_reading_process_output (seconds
, useconds
, 0, 0,
3796 !NILP (process
) ? XPROCESS (process
) : NULL
,
3797 NILP (just_this_one
) ? 0 :
3798 !INTEGERP (just_this_one
) ? 1 : -1)
3802 /* Accept a connection for server process SERVER on CHANNEL. */
3804 static int connect_counter
= 0;
3807 server_accept_connection (server
, channel
)
3811 Lisp_Object proc
, caller
, name
, buffer
;
3812 Lisp_Object contact
, host
, service
;
3813 struct Lisp_Process
*ps
= XPROCESS (server
);
3814 struct Lisp_Process
*p
;
3818 struct sockaddr_in in
;
3819 #ifdef HAVE_LOCAL_SOCKETS
3820 struct sockaddr_un un
;
3823 int len
= sizeof saddr
;
3825 s
= accept (channel
, &saddr
.sa
, &len
);
3834 if (code
== EWOULDBLOCK
)
3838 if (!NILP (ps
->log
))
3839 call3 (ps
->log
, server
, Qnil
,
3840 concat3 (build_string ("accept failed with code"),
3841 Fnumber_to_string (make_number (code
)),
3842 build_string ("\n")));
3848 /* Setup a new process to handle the connection. */
3850 /* Generate a unique identification of the caller, and build contact
3851 information for this process. */
3854 switch (saddr
.sa
.sa_family
)
3858 Lisp_Object args
[5];
3859 unsigned char *ip
= (unsigned char *)&saddr
.in
.sin_addr
.s_addr
;
3860 args
[0] = build_string ("%d.%d.%d.%d");
3861 args
[1] = make_number (*ip
++);
3862 args
[2] = make_number (*ip
++);
3863 args
[3] = make_number (*ip
++);
3864 args
[4] = make_number (*ip
++);
3865 host
= Fformat (5, args
);
3866 service
= make_number (ntohs (saddr
.in
.sin_port
));
3868 args
[0] = build_string (" <%s:%d>");
3871 caller
= Fformat (3, args
);
3875 #ifdef HAVE_LOCAL_SOCKETS
3879 caller
= Fnumber_to_string (make_number (connect_counter
));
3880 caller
= concat3 (build_string (" <*"), caller
, build_string ("*>"));
3884 /* Create a new buffer name for this process if it doesn't have a
3885 filter. The new buffer name is based on the buffer name or
3886 process name of the server process concatenated with the caller
3889 if (!NILP (ps
->filter
) && !EQ (ps
->filter
, Qt
))
3893 buffer
= ps
->buffer
;
3895 buffer
= Fbuffer_name (buffer
);
3900 buffer
= concat2 (buffer
, caller
);
3901 buffer
= Fget_buffer_create (buffer
);
3905 /* Generate a unique name for the new server process. Combine the
3906 server process name with the caller identification. */
3908 name
= concat2 (ps
->name
, caller
);
3909 proc
= make_process (name
);
3911 chan_process
[s
] = proc
;
3914 fcntl (s
, F_SETFL
, O_NONBLOCK
);
3917 fcntl (s
, F_SETFL
, O_NDELAY
);
3921 p
= XPROCESS (proc
);
3923 /* Build new contact information for this setup. */
3924 contact
= Fcopy_sequence (ps
->childp
);
3925 contact
= Fplist_put (contact
, QCserver
, Qnil
);
3926 contact
= Fplist_put (contact
, QChost
, host
);
3927 if (!NILP (service
))
3928 contact
= Fplist_put (contact
, QCservice
, service
);
3929 contact
= Fplist_put (contact
, QCremote
,
3930 conv_sockaddr_to_lisp (&saddr
.sa
, len
));
3931 #ifdef HAVE_GETSOCKNAME
3933 if (getsockname (s
, &saddr
.sa
, &len
) == 0)
3934 contact
= Fplist_put (contact
, QClocal
,
3935 conv_sockaddr_to_lisp (&saddr
.sa
, len
));
3938 p
->childp
= contact
;
3939 p
->plist
= Fcopy_sequence (ps
->plist
);
3942 p
->sentinel
= ps
->sentinel
;
3943 p
->filter
= ps
->filter
;
3946 XSETINT (p
->infd
, s
);
3947 XSETINT (p
->outfd
, s
);
3950 /* Client processes for accepted connections are not stopped initially. */
3951 if (!EQ (p
->filter
, Qt
))
3953 FD_SET (s
, &input_wait_mask
);
3954 FD_SET (s
, &non_keyboard_wait_mask
);
3957 if (s
> max_process_desc
)
3958 max_process_desc
= s
;
3960 /* Setup coding system for new process based on server process.
3961 This seems to be the proper thing to do, as the coding system
3962 of the new process should reflect the settings at the time the
3963 server socket was opened; not the current settings. */
3965 p
->decode_coding_system
= ps
->decode_coding_system
;
3966 p
->encode_coding_system
= ps
->encode_coding_system
;
3967 setup_process_coding_systems (proc
);
3969 p
->decoding_buf
= make_uninit_string (0);
3970 p
->decoding_carryover
= make_number (0);
3971 p
->encoding_buf
= make_uninit_string (0);
3972 p
->encoding_carryover
= make_number (0);
3974 p
->inherit_coding_system_flag
3975 = (NILP (buffer
) ? Qnil
: ps
->inherit_coding_system_flag
);
3977 if (!NILP (ps
->log
))
3978 call3 (ps
->log
, server
, proc
,
3979 concat3 (build_string ("accept from "),
3980 (STRINGP (host
) ? host
: build_string ("-")),
3981 build_string ("\n")));
3983 if (!NILP (p
->sentinel
))
3984 exec_sentinel (proc
,
3985 concat3 (build_string ("open from "),
3986 (STRINGP (host
) ? host
: build_string ("-")),
3987 build_string ("\n")));
3990 /* This variable is different from waiting_for_input in keyboard.c.
3991 It is used to communicate to a lisp process-filter/sentinel (via the
3992 function Fwaiting_for_user_input_p below) whether Emacs was waiting
3993 for user-input when that process-filter was called.
3994 waiting_for_input cannot be used as that is by definition 0 when
3995 lisp code is being evalled.
3996 This is also used in record_asynch_buffer_change.
3997 For that purpose, this must be 0
3998 when not inside wait_reading_process_output. */
3999 static int waiting_for_user_input_p
;
4001 /* This is here so breakpoints can be put on it. */
4003 wait_reading_process_output_1 ()
4007 /* Read and dispose of subprocess output while waiting for timeout to
4008 elapse and/or keyboard input to be available.
4011 timeout in seconds, or
4012 zero for no limit, or
4013 -1 means gobble data immediately available but don't wait for any.
4016 an additional duration to wait, measured in microseconds.
4017 If this is nonzero and time_limit is 0, then the timeout
4018 consists of MICROSECS only.
4020 READ_KBD is a lisp value:
4021 0 to ignore keyboard input, or
4022 1 to return when input is available, or
4023 -1 meaning caller will actually read the input, so don't throw to
4024 the quit handler, or
4026 DO_DISPLAY != 0 means redisplay should be done to show subprocess
4027 output that arrives.
4029 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4030 (and gobble terminal input into the buffer if any arrives).
4032 If WAIT_PROC is specified, wait until something arrives from that
4033 process. The return value is true iff we read some input from
4036 If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC
4037 (suspending output from other processes). A negative value
4038 means don't run any timers either.
4040 If WAIT_PROC is specified, then the function returns true iff we
4041 received input from that process before the timeout elapsed.
4042 Otherwise, return true iff we received input from any process. */
4045 wait_reading_process_output (time_limit
, microsecs
, read_kbd
, do_display
,
4046 wait_for_cell
, wait_proc
, just_wait_proc
)
4047 int time_limit
, microsecs
, read_kbd
, do_display
;
4048 Lisp_Object wait_for_cell
;
4049 struct Lisp_Process
*wait_proc
;
4052 register int channel
, nfds
;
4053 SELECT_TYPE Available
;
4054 #ifdef NON_BLOCKING_CONNECT
4055 SELECT_TYPE Connecting
;
4058 int check_delay
, no_avail
;
4061 EMACS_TIME timeout
, end_time
;
4062 int wait_channel
= -1;
4063 int got_some_input
= 0;
4064 /* Either nil or a cons cell, the car of which is of interest and
4065 may be changed outside of this routine. */
4066 int saved_waiting_for_user_input_p
= waiting_for_user_input_p
;
4068 FD_ZERO (&Available
);
4069 #ifdef NON_BLOCKING_CONNECT
4070 FD_ZERO (&Connecting
);
4073 /* If wait_proc is a process to watch, set wait_channel accordingly. */
4074 if (wait_proc
!= NULL
)
4075 wait_channel
= XINT (wait_proc
->infd
);
4077 waiting_for_user_input_p
= read_kbd
;
4079 /* Since we may need to wait several times,
4080 compute the absolute time to return at. */
4081 if (time_limit
|| microsecs
)
4083 EMACS_GET_TIME (end_time
);
4084 EMACS_SET_SECS_USECS (timeout
, time_limit
, microsecs
);
4085 EMACS_ADD_TIME (end_time
, end_time
, timeout
);
4087 #ifdef POLL_INTERRUPTED_SYS_CALL
4088 /* AlainF 5-Jul-1996
4089 HP-UX 10.10 seem to have problems with signals coming in
4090 Causes "poll: interrupted system call" messages when Emacs is run
4092 Turn off periodic alarms (in case they are in use),
4093 and then turn off any other atimers. */
4095 turn_on_atimers (0);
4096 #endif /* POLL_INTERRUPTED_SYS_CALL */
4100 int timeout_reduced_for_timers
= 0;
4102 /* If calling from keyboard input, do not quit
4103 since we want to return C-g as an input character.
4104 Otherwise, do pending quit if requested. */
4108 else if (interrupt_input_pending
)
4109 handle_async_input ();
4112 /* Exit now if the cell we're waiting for became non-nil. */
4113 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
4116 /* Compute time from now till when time limit is up */
4117 /* Exit if already run out */
4118 if (time_limit
== -1)
4120 /* -1 specified for timeout means
4121 gobble output available now
4122 but don't wait at all. */
4124 EMACS_SET_SECS_USECS (timeout
, 0, 0);
4126 else if (time_limit
|| microsecs
)
4128 EMACS_GET_TIME (timeout
);
4129 EMACS_SUB_TIME (timeout
, end_time
, timeout
);
4130 if (EMACS_TIME_NEG_P (timeout
))
4135 EMACS_SET_SECS_USECS (timeout
, 100000, 0);
4138 /* Normally we run timers here.
4139 But not if wait_for_cell; in those cases,
4140 the wait is supposed to be short,
4141 and those callers cannot handle running arbitrary Lisp code here. */
4142 if (NILP (wait_for_cell
)
4143 && just_wait_proc
>= 0)
4145 EMACS_TIME timer_delay
;
4149 int old_timers_run
= timers_run
;
4150 struct buffer
*old_buffer
= current_buffer
;
4152 timer_delay
= timer_check (1);
4154 /* If a timer has run, this might have changed buffers
4155 an alike. Make read_key_sequence aware of that. */
4156 if (timers_run
!= old_timers_run
4157 && old_buffer
!= current_buffer
4158 && waiting_for_user_input_p
== -1)
4159 record_asynch_buffer_change ();
4161 if (timers_run
!= old_timers_run
&& do_display
)
4162 /* We must retry, since a timer may have requeued itself
4163 and that could alter the time_delay. */
4164 redisplay_preserve_echo_area (9);
4168 while (!detect_input_pending ());
4170 /* If there is unread keyboard input, also return. */
4172 && requeued_events_pending_p ())
4175 if (! EMACS_TIME_NEG_P (timer_delay
) && time_limit
!= -1)
4177 EMACS_TIME difference
;
4178 EMACS_SUB_TIME (difference
, timer_delay
, timeout
);
4179 if (EMACS_TIME_NEG_P (difference
))
4181 timeout
= timer_delay
;
4182 timeout_reduced_for_timers
= 1;
4185 /* If time_limit is -1, we are not going to wait at all. */
4186 else if (time_limit
!= -1)
4188 /* This is so a breakpoint can be put here. */
4189 wait_reading_process_output_1 ();
4193 /* Cause C-g and alarm signals to take immediate action,
4194 and cause input available signals to zero out timeout.
4196 It is important that we do this before checking for process
4197 activity. If we get a SIGCHLD after the explicit checks for
4198 process activity, timeout is the only way we will know. */
4200 set_waiting_for_input (&timeout
);
4202 /* If status of something has changed, and no input is
4203 available, notify the user of the change right away. After
4204 this explicit check, we'll let the SIGCHLD handler zap
4205 timeout to get our attention. */
4206 if (update_tick
!= process_tick
&& do_display
)
4209 #ifdef NON_BLOCKING_CONNECT
4213 Atemp
= input_wait_mask
;
4215 /* On Mac OS X 10.0, the SELECT system call always says input is
4216 present (for reading) at stdin, even when none is. This
4217 causes the call to SELECT below to return 1 and
4218 status_notify not to be called. As a result output of
4219 subprocesses are incorrectly discarded.
4223 IF_NON_BLOCKING_CONNECT (Ctemp
= connect_wait_mask
);
4225 EMACS_SET_SECS_USECS (timeout
, 0, 0);
4226 if ((select (max (max_process_desc
, max_keyboard_desc
) + 1,
4228 #ifdef NON_BLOCKING_CONNECT
4229 (num_pending_connects
> 0 ? &Ctemp
: (SELECT_TYPE
*)0),
4233 (SELECT_TYPE
*)0, &timeout
)
4236 /* It's okay for us to do this and then continue with
4237 the loop, since timeout has already been zeroed out. */
4238 clear_waiting_for_input ();
4239 status_notify (NULL
);
4243 /* Don't wait for output from a non-running process. Just
4244 read whatever data has already been received. */
4245 if (wait_proc
!= 0 && !NILP (wait_proc
->raw_status_low
))
4246 update_status (wait_proc
);
4248 && ! EQ (wait_proc
->status
, Qrun
)
4249 && ! EQ (wait_proc
->status
, Qconnect
))
4251 int nread
, total_nread
= 0;
4253 clear_waiting_for_input ();
4254 XSETPROCESS (proc
, wait_proc
);
4256 /* Read data from the process, until we exhaust it. */
4257 while (XINT (wait_proc
->infd
) >= 0)
4259 nread
= read_process_output (proc
, XINT (wait_proc
->infd
));
4265 total_nread
+= nread
;
4267 else if (nread
== -1 && EIO
== errno
)
4271 else if (nread
== -1 && EAGAIN
== errno
)
4275 else if (nread
== -1 && EWOULDBLOCK
== errno
)
4279 if (total_nread
> 0 && do_display
)
4280 redisplay_preserve_echo_area (10);
4285 /* Wait till there is something to do */
4287 if (wait_proc
&& just_wait_proc
)
4289 if (XINT (wait_proc
->infd
) < 0) /* Terminated */
4291 FD_SET (XINT (wait_proc
->infd
), &Available
);
4293 IF_NON_BLOCKING_CONNECT (check_connect
= 0);
4295 else if (!NILP (wait_for_cell
))
4297 Available
= non_process_wait_mask
;
4299 IF_NON_BLOCKING_CONNECT (check_connect
= 0);
4304 Available
= non_keyboard_wait_mask
;
4306 Available
= input_wait_mask
;
4307 IF_NON_BLOCKING_CONNECT (check_connect
= (num_pending_connects
> 0));
4308 check_delay
= wait_channel
>= 0 ? 0 : process_output_delay_count
;
4311 /* If frame size has changed or the window is newly mapped,
4312 redisplay now, before we start to wait. There is a race
4313 condition here; if a SIGIO arrives between now and the select
4314 and indicates that a frame is trashed, the select may block
4315 displaying a trashed screen. */
4316 if (frame_garbaged
&& do_display
)
4318 clear_waiting_for_input ();
4319 redisplay_preserve_echo_area (11);
4321 set_waiting_for_input (&timeout
);
4325 if (read_kbd
&& detect_input_pending ())
4332 #ifdef NON_BLOCKING_CONNECT
4334 Connecting
= connect_wait_mask
;
4337 #ifdef ADAPTIVE_READ_BUFFERING
4338 /* Set the timeout for adaptive read buffering if any
4339 process has non-nil read_output_skip and non-zero
4340 read_output_delay, and we are not reading output for a
4341 specific wait_channel. It is not executed if
4342 Vprocess_adaptive_read_buffering is nil. */
4343 if (process_output_skip
&& check_delay
> 0)
4345 int usecs
= EMACS_USECS (timeout
);
4346 if (EMACS_SECS (timeout
) > 0 || usecs
> READ_OUTPUT_DELAY_MAX
)
4347 usecs
= READ_OUTPUT_DELAY_MAX
;
4348 for (channel
= 0; check_delay
> 0 && channel
<= max_process_desc
; channel
++)
4350 proc
= chan_process
[channel
];
4353 /* Find minimum non-zero read_output_delay among the
4354 processes with non-nil read_output_skip. */
4355 if (XINT (XPROCESS (proc
)->read_output_delay
) > 0)
4358 if (NILP (XPROCESS (proc
)->read_output_skip
))
4360 FD_CLR (channel
, &Available
);
4361 XPROCESS (proc
)->read_output_skip
= Qnil
;
4362 if (XINT (XPROCESS (proc
)->read_output_delay
) < usecs
)
4363 usecs
= XINT (XPROCESS (proc
)->read_output_delay
);
4366 EMACS_SET_SECS_USECS (timeout
, 0, usecs
);
4367 process_output_skip
= 0;
4371 nfds
= select (max (max_process_desc
, max_keyboard_desc
) + 1,
4373 #ifdef NON_BLOCKING_CONNECT
4374 (check_connect
? &Connecting
: (SELECT_TYPE
*)0),
4378 (SELECT_TYPE
*)0, &timeout
);
4383 /* Make C-g and alarm signals set flags again */
4384 clear_waiting_for_input ();
4386 /* If we woke up due to SIGWINCH, actually change size now. */
4387 do_pending_window_change (0);
4389 if (time_limit
&& nfds
== 0 && ! timeout_reduced_for_timers
)
4390 /* We wanted the full specified time, so return now. */
4394 if (xerrno
== EINTR
)
4397 /* Ultrix select seems to return ENOMEM when it is
4398 interrupted. Treat it just like EINTR. Bleah. Note
4399 that we want to test for the "ultrix" CPP symbol, not
4400 "__ultrix__"; the latter is only defined under GCC, but
4401 not by DEC's bundled CC. -JimB */
4402 else if (xerrno
== ENOMEM
)
4406 /* This happens for no known reason on ALLIANT.
4407 I am guessing that this is the right response. -- RMS. */
4408 else if (xerrno
== EFAULT
)
4411 else if (xerrno
== EBADF
)
4414 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
4415 the child's closure of the pts gives the parent a SIGHUP, and
4416 the ptc file descriptor is automatically closed,
4417 yielding EBADF here or at select() call above.
4418 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
4419 in m/ibmrt-aix.h), and here we just ignore the select error.
4420 Cleanup occurs c/o status_notify after SIGCLD. */
4421 no_avail
= 1; /* Cannot depend on values returned */
4427 error ("select error: %s", emacs_strerror (xerrno
));
4432 FD_ZERO (&Available
);
4433 IF_NON_BLOCKING_CONNECT (check_connect
= 0);
4436 #if defined(sun) && !defined(USG5_4)
4437 if (nfds
> 0 && keyboard_bit_set (&Available
)
4439 /* System sometimes fails to deliver SIGIO.
4441 David J. Mackenzie says that Emacs doesn't compile under
4442 Solaris if this code is enabled, thus the USG5_4 in the CPP
4443 conditional. "I haven't noticed any ill effects so far.
4444 If you find a Solaris expert somewhere, they might know
4446 kill (getpid (), SIGIO
);
4449 #if 0 /* When polling is used, interrupt_input is 0,
4450 so get_input_pending should read the input.
4451 So this should not be needed. */
4452 /* If we are using polling for input,
4453 and we see input available, make it get read now.
4454 Otherwise it might not actually get read for a second.
4455 And on hpux, since we turn off polling in wait_reading_process_output,
4456 it might never get read at all if we don't spend much time
4457 outside of wait_reading_process_output. */
4458 if (read_kbd
&& interrupt_input
4459 && keyboard_bit_set (&Available
)
4460 && input_polling_used ())
4461 kill (getpid (), SIGALRM
);
4464 /* Check for keyboard input */
4465 /* If there is any, return immediately
4466 to give it higher priority than subprocesses */
4470 int old_timers_run
= timers_run
;
4471 struct buffer
*old_buffer
= current_buffer
;
4474 if (detect_input_pending_run_timers (do_display
))
4476 swallow_events (do_display
);
4477 if (detect_input_pending_run_timers (do_display
))
4481 /* If a timer has run, this might have changed buffers
4482 an alike. Make read_key_sequence aware of that. */
4483 if (timers_run
!= old_timers_run
4484 && waiting_for_user_input_p
== -1
4485 && old_buffer
!= current_buffer
)
4486 record_asynch_buffer_change ();
4492 /* If there is unread keyboard input, also return. */
4494 && requeued_events_pending_p ())
4497 /* If we are not checking for keyboard input now,
4498 do process events (but don't run any timers).
4499 This is so that X events will be processed.
4500 Otherwise they may have to wait until polling takes place.
4501 That would causes delays in pasting selections, for example.
4503 (We used to do this only if wait_for_cell.) */
4504 if (read_kbd
== 0 && detect_input_pending ())
4506 swallow_events (do_display
);
4507 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
4508 if (detect_input_pending ())
4513 /* Exit now if the cell we're waiting for became non-nil. */
4514 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
4518 /* If we think we have keyboard input waiting, but didn't get SIGIO,
4519 go read it. This can happen with X on BSD after logging out.
4520 In that case, there really is no input and no SIGIO,
4521 but select says there is input. */
4523 if (read_kbd
&& interrupt_input
4524 && keyboard_bit_set (&Available
) && ! noninteractive
)
4525 kill (getpid (), SIGIO
);
4529 got_some_input
|= nfds
> 0;
4531 /* If checking input just got us a size-change event from X,
4532 obey it now if we should. */
4533 if (read_kbd
|| ! NILP (wait_for_cell
))
4534 do_pending_window_change (0);
4536 /* Check for data from a process. */
4537 if (no_avail
|| nfds
== 0)
4540 /* Really FIRST_PROC_DESC should be 0 on Unix,
4541 but this is safer in the short run. */
4542 for (channel
= 0; channel
<= max_process_desc
; channel
++)
4544 if (FD_ISSET (channel
, &Available
)
4545 && FD_ISSET (channel
, &non_keyboard_wait_mask
))
4549 /* If waiting for this channel, arrange to return as
4550 soon as no more input to be processed. No more
4552 if (wait_channel
== channel
)
4558 proc
= chan_process
[channel
];
4562 /* If this is a server stream socket, accept connection. */
4563 if (EQ (XPROCESS (proc
)->status
, Qlisten
))
4565 server_accept_connection (proc
, channel
);
4569 /* Read data from the process, starting with our
4570 buffered-ahead character if we have one. */
4572 nread
= read_process_output (proc
, channel
);
4575 /* Since read_process_output can run a filter,
4576 which can call accept-process-output,
4577 don't try to read from any other processes
4578 before doing the select again. */
4579 FD_ZERO (&Available
);
4582 redisplay_preserve_echo_area (12);
4585 else if (nread
== -1 && errno
== EWOULDBLOCK
)
4588 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
4589 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
4591 else if (nread
== -1 && errno
== EAGAIN
)
4595 else if (nread
== -1 && errno
== EAGAIN
)
4597 /* Note that we cannot distinguish between no input
4598 available now and a closed pipe.
4599 With luck, a closed pipe will be accompanied by
4600 subprocess termination and SIGCHLD. */
4601 else if (nread
== 0 && !NETCONN_P (proc
))
4603 #endif /* O_NDELAY */
4604 #endif /* O_NONBLOCK */
4606 /* On some OSs with ptys, when the process on one end of
4607 a pty exits, the other end gets an error reading with
4608 errno = EIO instead of getting an EOF (0 bytes read).
4609 Therefore, if we get an error reading and errno =
4610 EIO, just continue, because the child process has
4611 exited and should clean itself up soon (e.g. when we
4614 However, it has been known to happen that the SIGCHLD
4615 got lost. So raise the signl again just in case.
4617 else if (nread
== -1 && errno
== EIO
)
4618 kill (getpid (), SIGCHLD
);
4619 #endif /* HAVE_PTYS */
4620 /* If we can detect process termination, don't consider the process
4621 gone just because its pipe is closed. */
4623 else if (nread
== 0 && !NETCONN_P (proc
))
4628 /* Preserve status of processes already terminated. */
4629 XSETINT (XPROCESS (proc
)->tick
, ++process_tick
);
4630 deactivate_process (proc
);
4631 if (!NILP (XPROCESS (proc
)->raw_status_low
))
4632 update_status (XPROCESS (proc
));
4633 if (EQ (XPROCESS (proc
)->status
, Qrun
))
4634 XPROCESS (proc
)->status
4635 = Fcons (Qexit
, Fcons (make_number (256), Qnil
));
4638 #ifdef NON_BLOCKING_CONNECT
4639 if (check_connect
&& FD_ISSET (channel
, &Connecting
)
4640 && FD_ISSET (channel
, &connect_wait_mask
))
4642 struct Lisp_Process
*p
;
4644 FD_CLR (channel
, &connect_wait_mask
);
4645 if (--num_pending_connects
< 0)
4648 proc
= chan_process
[channel
];
4652 p
= XPROCESS (proc
);
4655 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
4656 So only use it on systems where it is known to work. */
4658 int xlen
= sizeof(xerrno
);
4659 if (getsockopt(channel
, SOL_SOCKET
, SO_ERROR
, &xerrno
, &xlen
))
4664 struct sockaddr pname
;
4665 int pnamelen
= sizeof(pname
);
4667 /* If connection failed, getpeername will fail. */
4669 if (getpeername(channel
, &pname
, &pnamelen
) < 0)
4671 /* Obtain connect failure code through error slippage. */
4674 if (errno
== ENOTCONN
&& read(channel
, &dummy
, 1) < 0)
4681 XSETINT (p
->tick
, ++process_tick
);
4682 p
->status
= Fcons (Qfailed
, Fcons (make_number (xerrno
), Qnil
));
4683 deactivate_process (proc
);
4688 /* Execute the sentinel here. If we had relied on
4689 status_notify to do it later, it will read input
4690 from the process before calling the sentinel. */
4691 exec_sentinel (proc
, build_string ("open\n"));
4692 if (!EQ (p
->filter
, Qt
) && !EQ (p
->command
, Qt
))
4694 FD_SET (XINT (p
->infd
), &input_wait_mask
);
4695 FD_SET (XINT (p
->infd
), &non_keyboard_wait_mask
);
4699 #endif /* NON_BLOCKING_CONNECT */
4700 } /* end for each file descriptor */
4701 } /* end while exit conditions not met */
4703 waiting_for_user_input_p
= saved_waiting_for_user_input_p
;
4705 /* If calling from keyboard input, do not quit
4706 since we want to return C-g as an input character.
4707 Otherwise, do pending quit if requested. */
4710 /* Prevent input_pending from remaining set if we quit. */
4711 clear_input_pending ();
4714 #ifdef POLL_INTERRUPTED_SYS_CALL
4715 /* AlainF 5-Jul-1996
4716 HP-UX 10.10 seems to have problems with signals coming in
4717 Causes "poll: interrupted system call" messages when Emacs is run
4719 Turn periodic alarms back on */
4721 #endif /* POLL_INTERRUPTED_SYS_CALL */
4723 return got_some_input
;
4726 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
4729 read_process_output_call (fun_and_args
)
4730 Lisp_Object fun_and_args
;
4732 return apply1 (XCAR (fun_and_args
), XCDR (fun_and_args
));
4736 read_process_output_error_handler (error
)
4739 cmd_error_internal (error
, "error in process filter: ");
4741 update_echo_area ();
4742 Fsleep_for (make_number (2), Qnil
);
4746 /* Read pending output from the process channel,
4747 starting with our buffered-ahead character if we have one.
4748 Yield number of decoded characters read.
4750 This function reads at most 4096 characters.
4751 If you want to read all available subprocess output,
4752 you must call it repeatedly until it returns zero.
4754 The characters read are decoded according to PROC's coding-system
4758 read_process_output (proc
, channel
)
4760 register int channel
;
4762 register int nbytes
;
4764 register Lisp_Object outstream
;
4765 register struct buffer
*old
= current_buffer
;
4766 register struct Lisp_Process
*p
= XPROCESS (proc
);
4767 register int opoint
;
4768 struct coding_system
*coding
= proc_decode_coding_system
[channel
];
4769 int carryover
= XINT (p
->decoding_carryover
);
4773 VMS_PROC_STUFF
*vs
, *get_vms_process_pointer();
4775 vs
= get_vms_process_pointer (p
->pid
);
4779 return (0); /* Really weird if it does this */
4780 if (!(vs
->iosb
[0] & 1))
4781 return -1; /* I/O error */
4784 error ("Could not get VMS process pointer");
4785 chars
= vs
->inputBuffer
;
4786 nbytes
= clean_vms_buffer (chars
, vs
->iosb
[1]);
4789 start_vms_process_read (vs
); /* Crank up the next read on the process */
4790 return 1; /* Nothing worth printing, say we got 1 */
4794 /* The data carried over in the previous decoding (which are at
4795 the tail of decoding buffer) should be prepended to the new
4796 data read to decode all together. */
4797 chars
= (char *) alloca (nbytes
+ carryover
);
4798 bcopy (SDATA (p
->decoding_buf
), buf
, carryover
);
4799 bcopy (vs
->inputBuffer
, chars
+ carryover
, nbytes
);
4803 chars
= (char *) alloca (carryover
+ readmax
);
4805 /* See the comment above. */
4806 bcopy (SDATA (p
->decoding_buf
), chars
, carryover
);
4808 #ifdef DATAGRAM_SOCKETS
4809 /* We have a working select, so proc_buffered_char is always -1. */
4810 if (DATAGRAM_CHAN_P (channel
))
4812 int len
= datagram_address
[channel
].len
;
4813 nbytes
= recvfrom (channel
, chars
+ carryover
, readmax
,
4814 0, datagram_address
[channel
].sa
, &len
);
4818 if (proc_buffered_char
[channel
] < 0)
4820 nbytes
= emacs_read (channel
, chars
+ carryover
, readmax
);
4821 #ifdef ADAPTIVE_READ_BUFFERING
4822 if (nbytes
> 0 && !NILP (p
->adaptive_read_buffering
))
4824 int delay
= XINT (p
->read_output_delay
);
4827 if (delay
< READ_OUTPUT_DELAY_MAX_MAX
)
4830 process_output_delay_count
++;
4831 delay
+= READ_OUTPUT_DELAY_INCREMENT
* 2;
4834 else if (delay
> 0 && (nbytes
== readmax
))
4836 delay
-= READ_OUTPUT_DELAY_INCREMENT
;
4838 process_output_delay_count
--;
4840 XSETINT (p
->read_output_delay
, delay
);
4843 p
->read_output_skip
= Qt
;
4844 process_output_skip
= 1;
4851 chars
[carryover
] = proc_buffered_char
[channel
];
4852 proc_buffered_char
[channel
] = -1;
4853 nbytes
= emacs_read (channel
, chars
+ carryover
+ 1, readmax
- 1);
4857 nbytes
= nbytes
+ 1;
4859 #endif /* not VMS */
4861 XSETINT (p
->decoding_carryover
, 0);
4863 /* At this point, NBYTES holds number of bytes just received
4864 (including the one in proc_buffered_char[channel]). */
4867 if (nbytes
< 0 || coding
->mode
& CODING_MODE_LAST_BLOCK
)
4869 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
4872 /* Now set NBYTES how many bytes we must decode. */
4873 nbytes
+= carryover
;
4875 /* Read and dispose of the process output. */
4876 outstream
= p
->filter
;
4877 if (!NILP (outstream
))
4879 /* We inhibit quit here instead of just catching it so that
4880 hitting ^G when a filter happens to be running won't screw
4882 int count
= SPECPDL_INDEX ();
4883 Lisp_Object odeactivate
;
4884 Lisp_Object obuffer
, okeymap
;
4886 int outer_running_asynch_code
= running_asynch_code
;
4887 int waiting
= waiting_for_user_input_p
;
4889 /* No need to gcpro these, because all we do with them later
4890 is test them for EQness, and none of them should be a string. */
4891 odeactivate
= Vdeactivate_mark
;
4892 XSETBUFFER (obuffer
, current_buffer
);
4893 okeymap
= current_buffer
->keymap
;
4895 specbind (Qinhibit_quit
, Qt
);
4896 specbind (Qlast_nonmenu_event
, Qt
);
4898 /* In case we get recursively called,
4899 and we already saved the match data nonrecursively,
4900 save the same match data in safely recursive fashion. */
4901 if (outer_running_asynch_code
)
4904 /* Don't clobber the CURRENT match data, either! */
4905 tem
= Fmatch_data (Qnil
, Qnil
, Qnil
);
4906 restore_search_regs ();
4907 record_unwind_save_match_data ();
4908 Fset_match_data (tem
, Qt
);
4911 /* For speed, if a search happens within this code,
4912 save the match data in a special nonrecursive fashion. */
4913 running_asynch_code
= 1;
4915 text
= decode_coding_string (make_unibyte_string (chars
, nbytes
),
4917 Vlast_coding_system_used
= coding
->symbol
;
4918 /* A new coding system might be found. */
4919 if (!EQ (p
->decode_coding_system
, coding
->symbol
))
4921 p
->decode_coding_system
= coding
->symbol
;
4923 /* Don't call setup_coding_system for
4924 proc_decode_coding_system[channel] here. It is done in
4925 detect_coding called via decode_coding above. */
4927 /* If a coding system for encoding is not yet decided, we set
4928 it as the same as coding-system for decoding.
4930 But, before doing that we must check if
4931 proc_encode_coding_system[p->outfd] surely points to a
4932 valid memory because p->outfd will be changed once EOF is
4933 sent to the process. */
4934 if (NILP (p
->encode_coding_system
)
4935 && proc_encode_coding_system
[XINT (p
->outfd
)])
4937 p
->encode_coding_system
= coding
->symbol
;
4938 setup_coding_system (coding
->symbol
,
4939 proc_encode_coding_system
[XINT (p
->outfd
)]);
4943 carryover
= nbytes
- coding
->consumed
;
4944 if (SCHARS (p
->decoding_buf
) < carryover
)
4945 p
->decoding_buf
= make_uninit_string (carryover
);
4946 bcopy (chars
+ coding
->consumed
, SDATA (p
->decoding_buf
),
4948 XSETINT (p
->decoding_carryover
, carryover
);
4949 /* Adjust the multibyteness of TEXT to that of the filter. */
4950 if (NILP (p
->filter_multibyte
) != ! STRING_MULTIBYTE (text
))
4951 text
= (STRING_MULTIBYTE (text
)
4952 ? Fstring_as_unibyte (text
)
4953 : Fstring_to_multibyte (text
));
4954 if (SBYTES (text
) > 0)
4955 internal_condition_case_1 (read_process_output_call
,
4957 Fcons (proc
, Fcons (text
, Qnil
))),
4958 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
4959 read_process_output_error_handler
);
4961 /* If we saved the match data nonrecursively, restore it now. */
4962 restore_search_regs ();
4963 running_asynch_code
= outer_running_asynch_code
;
4965 /* Handling the process output should not deactivate the mark. */
4966 Vdeactivate_mark
= odeactivate
;
4968 /* Restore waiting_for_user_input_p as it was
4969 when we were called, in case the filter clobbered it. */
4970 waiting_for_user_input_p
= waiting
;
4972 #if 0 /* Call record_asynch_buffer_change unconditionally,
4973 because we might have changed minor modes or other things
4974 that affect key bindings. */
4975 if (! EQ (Fcurrent_buffer (), obuffer
)
4976 || ! EQ (current_buffer
->keymap
, okeymap
))
4978 /* But do it only if the caller is actually going to read events.
4979 Otherwise there's no need to make him wake up, and it could
4980 cause trouble (for example it would make Fsit_for return). */
4981 if (waiting_for_user_input_p
== -1)
4982 record_asynch_buffer_change ();
4985 start_vms_process_read (vs
);
4987 unbind_to (count
, Qnil
);
4991 /* If no filter, write into buffer if it isn't dead. */
4992 if (!NILP (p
->buffer
) && !NILP (XBUFFER (p
->buffer
)->name
))
4994 Lisp_Object old_read_only
;
4995 int old_begv
, old_zv
;
4996 int old_begv_byte
, old_zv_byte
;
4997 Lisp_Object odeactivate
;
4998 int before
, before_byte
;
5003 odeactivate
= Vdeactivate_mark
;
5005 Fset_buffer (p
->buffer
);
5007 opoint_byte
= PT_BYTE
;
5008 old_read_only
= current_buffer
->read_only
;
5011 old_begv_byte
= BEGV_BYTE
;
5012 old_zv_byte
= ZV_BYTE
;
5014 current_buffer
->read_only
= Qnil
;
5016 /* Insert new output into buffer
5017 at the current end-of-output marker,
5018 thus preserving logical ordering of input and output. */
5019 if (XMARKER (p
->mark
)->buffer
)
5020 SET_PT_BOTH (clip_to_bounds (BEGV
, marker_position (p
->mark
), ZV
),
5021 clip_to_bounds (BEGV_BYTE
, marker_byte_position (p
->mark
),
5024 SET_PT_BOTH (ZV
, ZV_BYTE
);
5026 before_byte
= PT_BYTE
;
5028 /* If the output marker is outside of the visible region, save
5029 the restriction and widen. */
5030 if (! (BEGV
<= PT
&& PT
<= ZV
))
5033 text
= decode_coding_string (make_unibyte_string (chars
, nbytes
),
5035 Vlast_coding_system_used
= coding
->symbol
;
5036 /* A new coding system might be found. See the comment in the
5037 similar code in the previous `if' block. */
5038 if (!EQ (p
->decode_coding_system
, coding
->symbol
))
5040 p
->decode_coding_system
= coding
->symbol
;
5041 if (NILP (p
->encode_coding_system
)
5042 && proc_encode_coding_system
[XINT (p
->outfd
)])
5044 p
->encode_coding_system
= coding
->symbol
;
5045 setup_coding_system (coding
->symbol
,
5046 proc_encode_coding_system
[XINT (p
->outfd
)]);
5049 carryover
= nbytes
- coding
->consumed
;
5050 if (SCHARS (p
->decoding_buf
) < carryover
)
5051 p
->decoding_buf
= make_uninit_string (carryover
);
5052 bcopy (chars
+ coding
->consumed
, SDATA (p
->decoding_buf
),
5054 XSETINT (p
->decoding_carryover
, carryover
);
5055 /* Adjust the multibyteness of TEXT to that of the buffer. */
5056 if (NILP (current_buffer
->enable_multibyte_characters
)
5057 != ! STRING_MULTIBYTE (text
))
5058 text
= (STRING_MULTIBYTE (text
)
5059 ? Fstring_as_unibyte (text
)
5060 : Fstring_to_multibyte (text
));
5061 /* Insert before markers in case we are inserting where
5062 the buffer's mark is, and the user's next command is Meta-y. */
5063 insert_from_string_before_markers (text
, 0, 0,
5064 SCHARS (text
), SBYTES (text
), 0);
5066 /* Make sure the process marker's position is valid when the
5067 process buffer is changed in the signal_after_change above.
5068 W3 is known to do that. */
5069 if (BUFFERP (p
->buffer
)
5070 && (b
= XBUFFER (p
->buffer
), b
!= current_buffer
))
5071 set_marker_both (p
->mark
, p
->buffer
, BUF_PT (b
), BUF_PT_BYTE (b
));
5073 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
5075 update_mode_lines
++;
5077 /* Make sure opoint and the old restrictions
5078 float ahead of any new text just as point would. */
5079 if (opoint
>= before
)
5081 opoint
+= PT
- before
;
5082 opoint_byte
+= PT_BYTE
- before_byte
;
5084 if (old_begv
> before
)
5086 old_begv
+= PT
- before
;
5087 old_begv_byte
+= PT_BYTE
- before_byte
;
5089 if (old_zv
>= before
)
5091 old_zv
+= PT
- before
;
5092 old_zv_byte
+= PT_BYTE
- before_byte
;
5095 /* If the restriction isn't what it should be, set it. */
5096 if (old_begv
!= BEGV
|| old_zv
!= ZV
)
5097 Fnarrow_to_region (make_number (old_begv
), make_number (old_zv
));
5099 /* Handling the process output should not deactivate the mark. */
5100 Vdeactivate_mark
= odeactivate
;
5102 current_buffer
->read_only
= old_read_only
;
5103 SET_PT_BOTH (opoint
, opoint_byte
);
5104 set_buffer_internal (old
);
5107 start_vms_process_read (vs
);
5112 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p
, Swaiting_for_user_input_p
,
5114 doc
: /* Returns non-nil if Emacs is waiting for input from the user.
5115 This is intended for use by asynchronous process output filters and sentinels. */)
5118 return (waiting_for_user_input_p
? Qt
: Qnil
);
5121 /* Sending data to subprocess */
5123 jmp_buf send_process_frame
;
5124 Lisp_Object process_sent_to
;
5127 send_process_trap ()
5129 SIGNAL_THREAD_CHECK (SIGPIPE
);
5134 sigunblock (sigmask (SIGPIPE
));
5135 longjmp (send_process_frame
, 1);
5138 /* Send some data to process PROC.
5139 BUF is the beginning of the data; LEN is the number of characters.
5140 OBJECT is the Lisp object that the data comes from. If OBJECT is
5141 nil or t, it means that the data comes from C string.
5143 If OBJECT is not nil, the data is encoded by PROC's coding-system
5144 for encoding before it is sent.
5146 This function can evaluate Lisp code and can garbage collect. */
5149 send_process (proc
, buf
, len
, object
)
5150 volatile Lisp_Object proc
;
5151 unsigned char *volatile buf
;
5153 volatile Lisp_Object object
;
5155 /* Use volatile to protect variables from being clobbered by longjmp. */
5156 struct Lisp_Process
*p
= XPROCESS (proc
);
5158 struct coding_system
*coding
;
5159 struct gcpro gcpro1
;
5160 SIGTYPE (*volatile old_sigpipe
) ();
5165 VMS_PROC_STUFF
*vs
, *get_vms_process_pointer();
5168 if (! NILP (p
->raw_status_low
))
5170 if (! EQ (p
->status
, Qrun
))
5171 error ("Process %s not running", SDATA (p
->name
));
5172 if (XINT (p
->outfd
) < 0)
5173 error ("Output file descriptor of %s is closed", SDATA (p
->name
));
5175 coding
= proc_encode_coding_system
[XINT (p
->outfd
)];
5176 Vlast_coding_system_used
= coding
->symbol
;
5178 if ((STRINGP (object
) && STRING_MULTIBYTE (object
))
5179 || (BUFFERP (object
)
5180 && !NILP (XBUFFER (object
)->enable_multibyte_characters
))
5183 if (!EQ (coding
->symbol
, p
->encode_coding_system
))
5184 /* The coding system for encoding was changed to raw-text
5185 because we sent a unibyte text previously. Now we are
5186 sending a multibyte text, thus we must encode it by the
5187 original coding system specified for the current process. */
5188 setup_coding_system (p
->encode_coding_system
, coding
);
5189 /* src_multibyte should be set to 1 _after_ a call to
5190 setup_coding_system, since it resets src_multibyte to
5192 coding
->src_multibyte
= 1;
5196 /* For sending a unibyte text, character code conversion should
5197 not take place but EOL conversion should. So, setup raw-text
5198 or one of the subsidiary if we have not yet done it. */
5199 if (coding
->type
!= coding_type_raw_text
)
5201 if (CODING_REQUIRE_FLUSHING (coding
))
5203 /* But, before changing the coding, we must flush out data. */
5204 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
5205 send_process (proc
, "", 0, Qt
);
5207 coding
->src_multibyte
= 0;
5208 setup_raw_text_coding_system (coding
);
5211 coding
->dst_multibyte
= 0;
5213 if (CODING_REQUIRE_ENCODING (coding
))
5215 int require
= encoding_buffer_size (coding
, len
);
5216 int from_byte
= -1, from
= -1, to
= -1;
5218 if (BUFFERP (object
))
5220 from_byte
= BUF_PTR_BYTE_POS (XBUFFER (object
), buf
);
5221 from
= buf_bytepos_to_charpos (XBUFFER (object
), from_byte
);
5222 to
= buf_bytepos_to_charpos (XBUFFER (object
), from_byte
+ len
);
5224 else if (STRINGP (object
))
5226 from_byte
= buf
- SDATA (object
);
5227 from
= string_byte_to_char (object
, from_byte
);
5228 to
= string_byte_to_char (object
, from_byte
+ len
);
5231 if (coding
->composing
!= COMPOSITION_DISABLED
)
5234 coding_save_composition (coding
, from
, to
, object
);
5236 coding
->composing
= COMPOSITION_DISABLED
;
5239 if (SBYTES (p
->encoding_buf
) < require
)
5240 p
->encoding_buf
= make_uninit_string (require
);
5243 buf
= (BUFFERP (object
)
5244 ? BUF_BYTE_ADDRESS (XBUFFER (object
), from_byte
)
5245 : SDATA (object
) + from_byte
);
5247 object
= p
->encoding_buf
;
5248 encode_coding (coding
, (char *) buf
, SDATA (object
),
5249 len
, SBYTES (object
));
5250 coding_free_composition_data (coding
);
5251 len
= coding
->produced
;
5252 buf
= SDATA (object
);
5256 vs
= get_vms_process_pointer (p
->pid
);
5258 error ("Could not find this process: %x", p
->pid
);
5259 else if (write_to_vms_process (vs
, buf
, len
))
5263 if (pty_max_bytes
== 0)
5265 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
5266 pty_max_bytes
= fpathconf (XFASTINT (p
->outfd
), _PC_MAX_CANON
);
5267 if (pty_max_bytes
< 0)
5268 pty_max_bytes
= 250;
5270 pty_max_bytes
= 250;
5272 /* Deduct one, to leave space for the eof. */
5276 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
5277 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
5278 when returning with longjmp despite being declared volatile. */
5279 if (!setjmp (send_process_frame
))
5281 process_sent_to
= proc
;
5286 /* Decide how much data we can send in one batch.
5287 Long lines need to be split into multiple batches. */
5288 if (!NILP (p
->pty_flag
))
5290 /* Starting this at zero is always correct when not the first
5291 iteration because the previous iteration ended by sending C-d.
5292 It may not be correct for the first iteration
5293 if a partial line was sent in a separate send_process call.
5294 If that proves worth handling, we need to save linepos
5295 in the process object. */
5297 unsigned char *ptr
= (unsigned char *) buf
;
5298 unsigned char *end
= (unsigned char *) buf
+ len
;
5300 /* Scan through this text for a line that is too long. */
5301 while (ptr
!= end
&& linepos
< pty_max_bytes
)
5309 /* If we found one, break the line there
5310 and put in a C-d to force the buffer through. */
5314 /* Send this batch, using one or more write calls. */
5317 int outfd
= XINT (p
->outfd
);
5318 old_sigpipe
= (SIGTYPE (*) ()) signal (SIGPIPE
, send_process_trap
);
5319 #ifdef DATAGRAM_SOCKETS
5320 if (DATAGRAM_CHAN_P (outfd
))
5322 rv
= sendto (outfd
, (char *) buf
, this,
5323 0, datagram_address
[outfd
].sa
,
5324 datagram_address
[outfd
].len
);
5325 if (rv
< 0 && errno
== EMSGSIZE
)
5327 signal (SIGPIPE
, old_sigpipe
);
5328 report_file_error ("sending datagram",
5329 Fcons (proc
, Qnil
));
5335 rv
= emacs_write (outfd
, (char *) buf
, this);
5336 #ifdef ADAPTIVE_READ_BUFFERING
5337 if (XINT (p
->read_output_delay
) > 0
5338 && EQ (p
->adaptive_read_buffering
, Qt
))
5340 XSETFASTINT (p
->read_output_delay
, 0);
5341 process_output_delay_count
--;
5342 p
->read_output_skip
= Qnil
;
5346 signal (SIGPIPE
, old_sigpipe
);
5352 || errno
== EWOULDBLOCK
5358 /* Buffer is full. Wait, accepting input;
5359 that may allow the program
5360 to finish doing output and read more. */
5364 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
5365 /* A gross hack to work around a bug in FreeBSD.
5366 In the following sequence, read(2) returns
5370 write(2) 954 bytes, get EAGAIN
5371 read(2) 1024 bytes in process_read_output
5372 read(2) 11 bytes in process_read_output
5374 That is, read(2) returns more bytes than have
5375 ever been written successfully. The 1033 bytes
5376 read are the 1022 bytes written successfully
5377 after processing (for example with CRs added if
5378 the terminal is set up that way which it is
5379 here). The same bytes will be seen again in a
5380 later read(2), without the CRs. */
5382 if (errno
== EAGAIN
)
5385 ioctl (XINT (p
->outfd
), TIOCFLUSH
, &flags
);
5387 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5389 /* Running filters might relocate buffers or strings.
5390 Arrange to relocate BUF. */
5391 if (BUFFERP (object
))
5392 offset
= BUF_PTR_BYTE_POS (XBUFFER (object
), buf
);
5393 else if (STRINGP (object
))
5394 offset
= buf
- SDATA (object
);
5396 #ifdef EMACS_HAS_USECS
5397 wait_reading_process_output (0, 20000, 0, 0, Qnil
, NULL
, 0);
5399 wait_reading_process_output (1, 0, 0, 0, Qnil
, NULL
, 0);
5402 if (BUFFERP (object
))
5403 buf
= BUF_BYTE_ADDRESS (XBUFFER (object
), offset
);
5404 else if (STRINGP (object
))
5405 buf
= offset
+ SDATA (object
);
5410 /* This is a real error. */
5411 report_file_error ("writing to process", Fcons (proc
, Qnil
));
5418 /* If we sent just part of the string, put in an EOF
5419 to force it through, before we send the rest. */
5421 Fprocess_send_eof (proc
);
5424 #endif /* not VMS */
5427 signal (SIGPIPE
, old_sigpipe
);
5429 proc
= process_sent_to
;
5430 p
= XPROCESS (proc
);
5432 p
->raw_status_low
= Qnil
;
5433 p
->raw_status_high
= Qnil
;
5434 p
->status
= Fcons (Qexit
, Fcons (make_number (256), Qnil
));
5435 XSETINT (p
->tick
, ++process_tick
);
5436 deactivate_process (proc
);
5438 error ("Error writing to process %s; closed it", SDATA (p
->name
));
5440 error ("SIGPIPE raised on process %s; closed it", SDATA (p
->name
));
5447 DEFUN ("process-send-region", Fprocess_send_region
, Sprocess_send_region
,
5449 doc
: /* Send current contents of region as input to PROCESS.
5450 PROCESS may be a process, a buffer, the name of a process or buffer, or
5451 nil, indicating the current buffer's process.
5452 Called from program, takes three arguments, PROCESS, START and END.
5453 If the region is more than 500 characters long,
5454 it is sent in several bunches. This may happen even for shorter regions.
5455 Output from processes can arrive in between bunches. */)
5456 (process
, start
, end
)
5457 Lisp_Object process
, start
, end
;
5462 proc
= get_process (process
);
5463 validate_region (&start
, &end
);
5465 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
5466 move_gap (XINT (start
));
5468 start1
= CHAR_TO_BYTE (XINT (start
));
5469 end1
= CHAR_TO_BYTE (XINT (end
));
5470 send_process (proc
, BYTE_POS_ADDR (start1
), end1
- start1
,
5471 Fcurrent_buffer ());
5476 DEFUN ("process-send-string", Fprocess_send_string
, Sprocess_send_string
,
5478 doc
: /* Send PROCESS the contents of STRING as input.
5479 PROCESS may be a process, a buffer, the name of a process or buffer, or
5480 nil, indicating the current buffer's process.
5481 If STRING is more than 500 characters long,
5482 it is sent in several bunches. This may happen even for shorter strings.
5483 Output from processes can arrive in between bunches. */)
5485 Lisp_Object process
, string
;
5488 CHECK_STRING (string
);
5489 proc
= get_process (process
);
5490 send_process (proc
, SDATA (string
),
5491 SBYTES (string
), string
);
5495 /* Return the foreground process group for the tty/pty that
5496 the process P uses. */
5498 emacs_get_tty_pgrp (p
)
5499 struct Lisp_Process
*p
;
5504 if (ioctl (XINT (p
->infd
), TIOCGPGRP
, &gid
) == -1 && ! NILP (p
->tty_name
))
5507 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
5508 master side. Try the slave side. */
5509 fd
= emacs_open (XSTRING (p
->tty_name
)->data
, O_RDONLY
, 0);
5513 ioctl (fd
, TIOCGPGRP
, &gid
);
5517 #endif /* defined (TIOCGPGRP ) */
5522 DEFUN ("process-running-child-p", Fprocess_running_child_p
,
5523 Sprocess_running_child_p
, 0, 1, 0,
5524 doc
: /* Return t if PROCESS has given the terminal to a child.
5525 If the operating system does not make it possible to find out,
5526 return t unconditionally. */)
5528 Lisp_Object process
;
5530 /* Initialize in case ioctl doesn't exist or gives an error,
5531 in a way that will cause returning t. */
5534 struct Lisp_Process
*p
;
5536 proc
= get_process (process
);
5537 p
= XPROCESS (proc
);
5539 if (!EQ (p
->childp
, Qt
))
5540 error ("Process %s is not a subprocess",
5542 if (XINT (p
->infd
) < 0)
5543 error ("Process %s is not active",
5546 gid
= emacs_get_tty_pgrp (p
);
5548 if (gid
== XFASTINT (p
->pid
))
5553 /* send a signal number SIGNO to PROCESS.
5554 If CURRENT_GROUP is t, that means send to the process group
5555 that currently owns the terminal being used to communicate with PROCESS.
5556 This is used for various commands in shell mode.
5557 If CURRENT_GROUP is lambda, that means send to the process group
5558 that currently owns the terminal, but only if it is NOT the shell itself.
5560 If NOMSG is zero, insert signal-announcements into process's buffers
5563 If we can, we try to signal PROCESS by sending control characters
5564 down the pty. This allows us to signal inferiors who have changed
5565 their uid, for which killpg would return an EPERM error. */
5568 process_send_signal (process
, signo
, current_group
, nomsg
)
5569 Lisp_Object process
;
5571 Lisp_Object current_group
;
5575 register struct Lisp_Process
*p
;
5579 proc
= get_process (process
);
5580 p
= XPROCESS (proc
);
5582 if (!EQ (p
->childp
, Qt
))
5583 error ("Process %s is not a subprocess",
5585 if (XINT (p
->infd
) < 0)
5586 error ("Process %s is not active",
5589 if (NILP (p
->pty_flag
))
5590 current_group
= Qnil
;
5592 /* If we are using pgrps, get a pgrp number and make it negative. */
5593 if (NILP (current_group
))
5594 /* Send the signal to the shell's process group. */
5595 gid
= XFASTINT (p
->pid
);
5598 #ifdef SIGNALS_VIA_CHARACTERS
5599 /* If possible, send signals to the entire pgrp
5600 by sending an input character to it. */
5602 /* TERMIOS is the latest and bestest, and seems most likely to
5603 work. If the system has it, use it. */
5606 cc_t
*sig_char
= NULL
;
5608 tcgetattr (XINT (p
->infd
), &t
);
5613 sig_char
= &t
.c_cc
[VINTR
];
5617 sig_char
= &t
.c_cc
[VQUIT
];
5621 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
5622 sig_char
= &t
.c_cc
[VSWTCH
];
5624 sig_char
= &t
.c_cc
[VSUSP
];
5629 if (sig_char
&& *sig_char
!= CDISABLE
)
5631 send_process (proc
, sig_char
, 1, Qnil
);
5634 /* If we can't send the signal with a character,
5635 fall through and send it another way. */
5636 #else /* ! HAVE_TERMIOS */
5638 /* On Berkeley descendants, the following IOCTL's retrieve the
5639 current control characters. */
5640 #if defined (TIOCGLTC) && defined (TIOCGETC)
5648 ioctl (XINT (p
->infd
), TIOCGETC
, &c
);
5649 send_process (proc
, &c
.t_intrc
, 1, Qnil
);
5652 ioctl (XINT (p
->infd
), TIOCGETC
, &c
);
5653 send_process (proc
, &c
.t_quitc
, 1, Qnil
);
5657 ioctl (XINT (p
->infd
), TIOCGLTC
, &lc
);
5658 send_process (proc
, &lc
.t_suspc
, 1, Qnil
);
5660 #endif /* ! defined (SIGTSTP) */
5663 #else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
5665 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
5672 ioctl (XINT (p
->infd
), TCGETA
, &t
);
5673 send_process (proc
, &t
.c_cc
[VINTR
], 1, Qnil
);
5676 ioctl (XINT (p
->infd
), TCGETA
, &t
);
5677 send_process (proc
, &t
.c_cc
[VQUIT
], 1, Qnil
);
5681 ioctl (XINT (p
->infd
), TCGETA
, &t
);
5682 send_process (proc
, &t
.c_cc
[VSWTCH
], 1, Qnil
);
5684 #endif /* ! defined (SIGTSTP) */
5686 #else /* ! defined (TCGETA) */
5687 Your configuration files are messed up
.
5688 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
5689 you'd better be using one of the alternatives above! */
5690 #endif /* ! defined (TCGETA) */
5691 #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
5692 /* In this case, the code above should alway returns. */
5694 #endif /* ! defined HAVE_TERMIOS */
5696 /* The code above may fall through if it can't
5697 handle the signal. */
5698 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
5701 /* Get the current pgrp using the tty itself, if we have that.
5702 Otherwise, use the pty to get the pgrp.
5703 On pfa systems, saka@pfu.fujitsu.co.JP writes:
5704 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
5705 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
5706 His patch indicates that if TIOCGPGRP returns an error, then
5707 we should just assume that p->pid is also the process group id. */
5709 gid
= emacs_get_tty_pgrp (p
);
5712 /* If we can't get the information, assume
5713 the shell owns the tty. */
5714 gid
= XFASTINT (p
->pid
);
5716 /* It is not clear whether anything really can set GID to -1.
5717 Perhaps on some system one of those ioctls can or could do so.
5718 Or perhaps this is vestigial. */
5721 #else /* ! defined (TIOCGPGRP ) */
5722 /* Can't select pgrps on this system, so we know that
5723 the child itself heads the pgrp. */
5724 gid
= XFASTINT (p
->pid
);
5725 #endif /* ! defined (TIOCGPGRP ) */
5727 /* If current_group is lambda, and the shell owns the terminal,
5728 don't send any signal. */
5729 if (EQ (current_group
, Qlambda
) && gid
== XFASTINT (p
->pid
))
5737 p
->raw_status_low
= Qnil
;
5738 p
->raw_status_high
= Qnil
;
5740 XSETINT (p
->tick
, ++process_tick
);
5742 status_notify (NULL
);
5744 #endif /* ! defined (SIGCONT) */
5747 send_process (proc
, "\003", 1, Qnil
); /* ^C */
5752 send_process (proc
, "\031", 1, Qnil
); /* ^Y */
5757 sys$
forcex (&(XFASTINT (p
->pid
)), 0, 1);
5760 flush_pending_output (XINT (p
->infd
));
5764 /* If we don't have process groups, send the signal to the immediate
5765 subprocess. That isn't really right, but it's better than any
5766 obvious alternative. */
5769 kill (XFASTINT (p
->pid
), signo
);
5773 /* gid may be a pid, or minus a pgrp's number */
5775 if (!NILP (current_group
))
5777 if (ioctl (XINT (p
->infd
), TIOCSIGSEND
, signo
) == -1)
5778 EMACS_KILLPG (gid
, signo
);
5782 gid
= - XFASTINT (p
->pid
);
5785 #else /* ! defined (TIOCSIGSEND) */
5786 EMACS_KILLPG (gid
, signo
);
5787 #endif /* ! defined (TIOCSIGSEND) */
5790 DEFUN ("interrupt-process", Finterrupt_process
, Sinterrupt_process
, 0, 2, 0,
5791 doc
: /* Interrupt process PROCESS.
5792 PROCESS may be a process, a buffer, or the name of a process or buffer.
5793 No arg or nil means current buffer's process.
5794 Second arg CURRENT-GROUP non-nil means send signal to
5795 the current process-group of the process's controlling terminal
5796 rather than to the process's own process group.
5797 If the process is a shell, this means interrupt current subjob
5798 rather than the shell.
5800 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
5801 don't send the signal. */)
5802 (process
, current_group
)
5803 Lisp_Object process
, current_group
;
5805 process_send_signal (process
, SIGINT
, current_group
, 0);
5809 DEFUN ("kill-process", Fkill_process
, Skill_process
, 0, 2, 0,
5810 doc
: /* Kill process PROCESS. May be process or name of one.
5811 See function `interrupt-process' for more details on usage. */)
5812 (process
, current_group
)
5813 Lisp_Object process
, current_group
;
5815 process_send_signal (process
, SIGKILL
, current_group
, 0);
5819 DEFUN ("quit-process", Fquit_process
, Squit_process
, 0, 2, 0,
5820 doc
: /* Send QUIT signal to process PROCESS. May be process or name of one.
5821 See function `interrupt-process' for more details on usage. */)
5822 (process
, current_group
)
5823 Lisp_Object process
, current_group
;
5825 process_send_signal (process
, SIGQUIT
, current_group
, 0);
5829 DEFUN ("stop-process", Fstop_process
, Sstop_process
, 0, 2, 0,
5830 doc
: /* Stop process PROCESS. May be process or name of one.
5831 See function `interrupt-process' for more details on usage.
5832 If PROCESS is a network process, inhibit handling of incoming traffic. */)
5833 (process
, current_group
)
5834 Lisp_Object process
, current_group
;
5837 if (PROCESSP (process
) && NETCONN_P (process
))
5839 struct Lisp_Process
*p
;
5841 p
= XPROCESS (process
);
5842 if (NILP (p
->command
)
5843 && XINT (p
->infd
) >= 0)
5845 FD_CLR (XINT (p
->infd
), &input_wait_mask
);
5846 FD_CLR (XINT (p
->infd
), &non_keyboard_wait_mask
);
5853 error ("No SIGTSTP support");
5855 process_send_signal (process
, SIGTSTP
, current_group
, 0);
5860 DEFUN ("continue-process", Fcontinue_process
, Scontinue_process
, 0, 2, 0,
5861 doc
: /* Continue process PROCESS. May be process or name of one.
5862 See function `interrupt-process' for more details on usage.
5863 If PROCESS is a network process, resume handling of incoming traffic. */)
5864 (process
, current_group
)
5865 Lisp_Object process
, current_group
;
5868 if (PROCESSP (process
) && NETCONN_P (process
))
5870 struct Lisp_Process
*p
;
5872 p
= XPROCESS (process
);
5873 if (EQ (p
->command
, Qt
)
5874 && XINT (p
->infd
) >= 0
5875 && (!EQ (p
->filter
, Qt
) || EQ (p
->status
, Qlisten
)))
5877 FD_SET (XINT (p
->infd
), &input_wait_mask
);
5878 FD_SET (XINT (p
->infd
), &non_keyboard_wait_mask
);
5885 process_send_signal (process
, SIGCONT
, current_group
, 0);
5887 error ("No SIGCONT support");
5892 DEFUN ("signal-process", Fsignal_process
, Ssignal_process
,
5893 2, 2, "sProcess (name or number): \nnSignal code: ",
5894 doc
: /* Send PROCESS the signal with code SIGCODE.
5895 PROCESS may also be an integer specifying the process id of the
5896 process to signal; in this case, the process need not be a child of
5898 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
5900 Lisp_Object process
, sigcode
;
5904 if (INTEGERP (process
))
5910 if (STRINGP (process
))
5913 if (tem
= Fget_process (process
), NILP (tem
))
5915 pid
= Fstring_to_number (process
, make_number (10));
5916 if (XINT (pid
) != 0)
5922 process
= get_process (process
);
5927 CHECK_PROCESS (process
);
5928 pid
= XPROCESS (process
)->pid
;
5929 if (!INTEGERP (pid
) || XINT (pid
) <= 0)
5930 error ("Cannot signal process %s", SDATA (XPROCESS (process
)->name
));
5934 #define handle_signal(NAME, VALUE) \
5935 else if (!strcmp (name, NAME)) \
5936 XSETINT (sigcode, VALUE)
5938 if (INTEGERP (sigcode
))
5942 unsigned char *name
;
5944 CHECK_SYMBOL (sigcode
);
5945 name
= SDATA (SYMBOL_NAME (sigcode
));
5950 handle_signal ("SIGHUP", SIGHUP
);
5953 handle_signal ("SIGINT", SIGINT
);
5956 handle_signal ("SIGQUIT", SIGQUIT
);
5959 handle_signal ("SIGILL", SIGILL
);
5962 handle_signal ("SIGABRT", SIGABRT
);
5965 handle_signal ("SIGEMT", SIGEMT
);
5968 handle_signal ("SIGKILL", SIGKILL
);
5971 handle_signal ("SIGFPE", SIGFPE
);
5974 handle_signal ("SIGBUS", SIGBUS
);
5977 handle_signal ("SIGSEGV", SIGSEGV
);
5980 handle_signal ("SIGSYS", SIGSYS
);
5983 handle_signal ("SIGPIPE", SIGPIPE
);
5986 handle_signal ("SIGALRM", SIGALRM
);
5989 handle_signal ("SIGTERM", SIGTERM
);
5992 handle_signal ("SIGURG", SIGURG
);
5995 handle_signal ("SIGSTOP", SIGSTOP
);
5998 handle_signal ("SIGTSTP", SIGTSTP
);
6001 handle_signal ("SIGCONT", SIGCONT
);
6004 handle_signal ("SIGCHLD", SIGCHLD
);
6007 handle_signal ("SIGTTIN", SIGTTIN
);
6010 handle_signal ("SIGTTOU", SIGTTOU
);
6013 handle_signal ("SIGIO", SIGIO
);
6016 handle_signal ("SIGXCPU", SIGXCPU
);
6019 handle_signal ("SIGXFSZ", SIGXFSZ
);
6022 handle_signal ("SIGVTALRM", SIGVTALRM
);
6025 handle_signal ("SIGPROF", SIGPROF
);
6028 handle_signal ("SIGWINCH", SIGWINCH
);
6031 handle_signal ("SIGINFO", SIGINFO
);
6034 handle_signal ("SIGUSR1", SIGUSR1
);
6037 handle_signal ("SIGUSR2", SIGUSR2
);
6040 error ("Undefined signal name %s", name
);
6043 #undef handle_signal
6045 return make_number (kill (XINT (pid
), XINT (sigcode
)));
6048 DEFUN ("process-send-eof", Fprocess_send_eof
, Sprocess_send_eof
, 0, 1, 0,
6049 doc
: /* Make PROCESS see end-of-file in its input.
6050 EOF comes after any text already sent to it.
6051 PROCESS may be a process, a buffer, the name of a process or buffer, or
6052 nil, indicating the current buffer's process.
6053 If PROCESS is a network connection, or is a process communicating
6054 through a pipe (as opposed to a pty), then you cannot send any more
6055 text to PROCESS after you call this function. */)
6057 Lisp_Object process
;
6060 struct coding_system
*coding
;
6062 if (DATAGRAM_CONN_P (process
))
6065 proc
= get_process (process
);
6066 coding
= proc_encode_coding_system
[XINT (XPROCESS (proc
)->outfd
)];
6068 /* Make sure the process is really alive. */
6069 if (! NILP (XPROCESS (proc
)->raw_status_low
))
6070 update_status (XPROCESS (proc
));
6071 if (! EQ (XPROCESS (proc
)->status
, Qrun
))
6072 error ("Process %s not running", SDATA (XPROCESS (proc
)->name
));
6074 if (CODING_REQUIRE_FLUSHING (coding
))
6076 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
6077 send_process (proc
, "", 0, Qnil
);
6081 send_process (proc
, "\032", 1, Qnil
); /* ^z */
6083 if (!NILP (XPROCESS (proc
)->pty_flag
))
6084 send_process (proc
, "\004", 1, Qnil
);
6087 int old_outfd
, new_outfd
;
6089 #ifdef HAVE_SHUTDOWN
6090 /* If this is a network connection, or socketpair is used
6091 for communication with the subprocess, call shutdown to cause EOF.
6092 (In some old system, shutdown to socketpair doesn't work.
6093 Then we just can't win.) */
6094 if (NILP (XPROCESS (proc
)->pid
)
6095 || XINT (XPROCESS (proc
)->outfd
) == XINT (XPROCESS (proc
)->infd
))
6096 shutdown (XINT (XPROCESS (proc
)->outfd
), 1);
6097 /* In case of socketpair, outfd == infd, so don't close it. */
6098 if (XINT (XPROCESS (proc
)->outfd
) != XINT (XPROCESS (proc
)->infd
))
6099 emacs_close (XINT (XPROCESS (proc
)->outfd
));
6100 #else /* not HAVE_SHUTDOWN */
6101 emacs_close (XINT (XPROCESS (proc
)->outfd
));
6102 #endif /* not HAVE_SHUTDOWN */
6103 new_outfd
= emacs_open (NULL_DEVICE
, O_WRONLY
, 0);
6104 old_outfd
= XINT (XPROCESS (proc
)->outfd
);
6106 if (!proc_encode_coding_system
[new_outfd
])
6107 proc_encode_coding_system
[new_outfd
]
6108 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
6109 bcopy (proc_encode_coding_system
[old_outfd
],
6110 proc_encode_coding_system
[new_outfd
],
6111 sizeof (struct coding_system
));
6112 bzero (proc_encode_coding_system
[old_outfd
],
6113 sizeof (struct coding_system
));
6115 XSETINT (XPROCESS (proc
)->outfd
, new_outfd
);
6121 /* Kill all processes associated with `buffer'.
6122 If `buffer' is nil, kill all processes */
6125 kill_buffer_processes (buffer
)
6128 Lisp_Object tail
, proc
;
6130 for (tail
= Vprocess_alist
; GC_CONSP (tail
); tail
= XCDR (tail
))
6132 proc
= XCDR (XCAR (tail
));
6133 if (GC_PROCESSP (proc
)
6134 && (NILP (buffer
) || EQ (XPROCESS (proc
)->buffer
, buffer
)))
6136 if (NETCONN_P (proc
))
6137 Fdelete_process (proc
);
6138 else if (XINT (XPROCESS (proc
)->infd
) >= 0)
6139 process_send_signal (proc
, SIGHUP
, Qnil
, 1);
6144 /* On receipt of a signal that a child status has changed, loop asking
6145 about children with changed statuses until the system says there
6148 All we do is change the status; we do not run sentinels or print
6149 notifications. That is saved for the next time keyboard input is
6150 done, in order to avoid timing errors.
6152 ** WARNING: this can be called during garbage collection.
6153 Therefore, it must not be fooled by the presence of mark bits in
6156 ** USG WARNING: Although it is not obvious from the documentation
6157 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6158 signal() before executing at least one wait(), otherwise the
6159 handler will be called again, resulting in an infinite loop. The
6160 relevant portion of the documentation reads "SIGCLD signals will be
6161 queued and the signal-catching function will be continually
6162 reentered until the queue is empty". Invoking signal() causes the
6163 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6166 ** Malloc WARNING: This should never call malloc either directly or
6167 indirectly; if it does, that is a bug */
6170 sigchld_handler (signo
)
6173 int old_errno
= errno
;
6175 register struct Lisp_Process
*p
;
6176 extern EMACS_TIME
*input_available_clear_time
;
6178 SIGNAL_THREAD_CHECK (signo
);
6182 sigheld
|= sigbit (SIGCHLD
);
6194 #endif /* no WUNTRACED */
6195 /* Keep trying to get a status until we get a definitive result. */
6199 pid
= wait3 (&w
, WNOHANG
| WUNTRACED
, 0);
6201 while (pid
< 0 && errno
== EINTR
);
6205 /* PID == 0 means no processes found, PID == -1 means a real
6206 failure. We have done all our job, so return. */
6208 /* USG systems forget handlers when they are used;
6209 must reestablish each time */
6210 #if defined (USG) && !defined (POSIX_SIGNALS)
6211 signal (signo
, sigchld_handler
); /* WARNING - must come after wait3() */
6214 sigheld
&= ~sigbit (SIGCHLD
);
6222 #endif /* no WNOHANG */
6224 /* Find the process that signaled us, and record its status. */
6227 for (tail
= Vprocess_alist
; GC_CONSP (tail
); tail
= XCDR (tail
))
6229 proc
= XCDR (XCAR (tail
));
6230 p
= XPROCESS (proc
);
6231 if (GC_EQ (p
->childp
, Qt
) && XINT (p
->pid
) == pid
)
6236 /* Look for an asynchronous process whose pid hasn't been filled
6239 for (tail
= Vprocess_alist
; GC_CONSP (tail
); tail
= XCDR (tail
))
6241 proc
= XCDR (XCAR (tail
));
6242 p
= XPROCESS (proc
);
6243 if (GC_INTEGERP (p
->pid
) && XINT (p
->pid
) == -1)
6248 /* Change the status of the process that was found. */
6251 union { int i
; WAITTYPE wt
; } u
;
6252 int clear_desc_flag
= 0;
6254 XSETINT (p
->tick
, ++process_tick
);
6256 XSETINT (p
->raw_status_low
, u
.i
& 0xffff);
6257 XSETINT (p
->raw_status_high
, u
.i
>> 16);
6259 /* If process has terminated, stop waiting for its output. */
6260 if ((WIFSIGNALED (w
) || WIFEXITED (w
))
6261 && XINT (p
->infd
) >= 0)
6262 clear_desc_flag
= 1;
6264 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
6265 if (clear_desc_flag
)
6267 FD_CLR (XINT (p
->infd
), &input_wait_mask
);
6268 FD_CLR (XINT (p
->infd
), &non_keyboard_wait_mask
);
6271 /* Tell wait_reading_process_output that it needs to wake up and
6273 if (input_available_clear_time
)
6274 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
6277 /* There was no asynchronous process found for that id. Check
6278 if we have a synchronous process. */
6281 synch_process_alive
= 0;
6283 /* Report the status of the synchronous process. */
6285 synch_process_retcode
= WRETCODE (w
);
6286 else if (WIFSIGNALED (w
))
6287 synch_process_termsig
= WTERMSIG (w
);
6289 /* Tell wait_reading_process_output that it needs to wake up and
6291 if (input_available_clear_time
)
6292 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
6295 /* On some systems, we must return right away.
6296 If any more processes want to signal us, we will
6298 Otherwise (on systems that have WNOHANG), loop around
6299 to use up all the processes that have something to tell us. */
6300 #if (defined WINDOWSNT \
6301 || (defined USG && !defined GNU_LINUX \
6302 && !(defined HPUX && defined WNOHANG)))
6303 #if defined (USG) && ! defined (POSIX_SIGNALS)
6304 signal (signo
, sigchld_handler
);
6308 #endif /* USG, but not HPUX with WNOHANG */
6314 exec_sentinel_unwind (data
)
6317 XPROCESS (XCAR (data
))->sentinel
= XCDR (data
);
6322 exec_sentinel_error_handler (error
)
6325 cmd_error_internal (error
, "error in process sentinel: ");
6327 update_echo_area ();
6328 Fsleep_for (make_number (2), Qnil
);
6333 exec_sentinel (proc
, reason
)
6334 Lisp_Object proc
, reason
;
6336 Lisp_Object sentinel
, obuffer
, odeactivate
, okeymap
;
6337 register struct Lisp_Process
*p
= XPROCESS (proc
);
6338 int count
= SPECPDL_INDEX ();
6339 int outer_running_asynch_code
= running_asynch_code
;
6340 int waiting
= waiting_for_user_input_p
;
6342 /* No need to gcpro these, because all we do with them later
6343 is test them for EQness, and none of them should be a string. */
6344 odeactivate
= Vdeactivate_mark
;
6345 XSETBUFFER (obuffer
, current_buffer
);
6346 okeymap
= current_buffer
->keymap
;
6348 sentinel
= p
->sentinel
;
6349 if (NILP (sentinel
))
6352 /* Zilch the sentinel while it's running, to avoid recursive invocations;
6353 assure that it gets restored no matter how the sentinel exits. */
6355 record_unwind_protect (exec_sentinel_unwind
, Fcons (proc
, sentinel
));
6356 /* Inhibit quit so that random quits don't screw up a running filter. */
6357 specbind (Qinhibit_quit
, Qt
);
6358 specbind (Qlast_nonmenu_event
, Qt
);
6360 /* In case we get recursively called,
6361 and we already saved the match data nonrecursively,
6362 save the same match data in safely recursive fashion. */
6363 if (outer_running_asynch_code
)
6366 tem
= Fmatch_data (Qnil
, Qnil
, Qnil
);
6367 restore_search_regs ();
6368 record_unwind_save_match_data ();
6369 Fset_match_data (tem
, Qt
);
6372 /* For speed, if a search happens within this code,
6373 save the match data in a special nonrecursive fashion. */
6374 running_asynch_code
= 1;
6376 internal_condition_case_1 (read_process_output_call
,
6378 Fcons (proc
, Fcons (reason
, Qnil
))),
6379 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
6380 exec_sentinel_error_handler
);
6382 /* If we saved the match data nonrecursively, restore it now. */
6383 restore_search_regs ();
6384 running_asynch_code
= outer_running_asynch_code
;
6386 Vdeactivate_mark
= odeactivate
;
6388 /* Restore waiting_for_user_input_p as it was
6389 when we were called, in case the filter clobbered it. */
6390 waiting_for_user_input_p
= waiting
;
6393 if (! EQ (Fcurrent_buffer (), obuffer
)
6394 || ! EQ (current_buffer
->keymap
, okeymap
))
6396 /* But do it only if the caller is actually going to read events.
6397 Otherwise there's no need to make him wake up, and it could
6398 cause trouble (for example it would make Fsit_for return). */
6399 if (waiting_for_user_input_p
== -1)
6400 record_asynch_buffer_change ();
6402 unbind_to (count
, Qnil
);
6405 /* Report all recent events of a change in process status
6406 (either run the sentinel or output a message).
6407 This is usually done while Emacs is waiting for keyboard input
6408 but can be done at other times. */
6411 status_notify (deleting_process
)
6412 struct Lisp_Process
*deleting_process
;
6414 register Lisp_Object proc
, buffer
;
6415 Lisp_Object tail
, msg
;
6416 struct gcpro gcpro1
, gcpro2
;
6420 /* We need to gcpro tail; if read_process_output calls a filter
6421 which deletes a process and removes the cons to which tail points
6422 from Vprocess_alist, and then causes a GC, tail is an unprotected
6426 /* Set this now, so that if new processes are created by sentinels
6427 that we run, we get called again to handle their status changes. */
6428 update_tick
= process_tick
;
6430 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
6433 register struct Lisp_Process
*p
;
6435 proc
= Fcdr (Fcar (tail
));
6436 p
= XPROCESS (proc
);
6438 if (XINT (p
->tick
) != XINT (p
->update_tick
))
6440 XSETINT (p
->update_tick
, XINT (p
->tick
));
6442 /* If process is still active, read any output that remains. */
6443 while (! EQ (p
->filter
, Qt
)
6444 && ! EQ (p
->status
, Qconnect
)
6445 && ! EQ (p
->status
, Qlisten
)
6446 && ! EQ (p
->command
, Qt
) /* Network process not stopped. */
6447 && XINT (p
->infd
) >= 0
6448 && p
!= deleting_process
6449 && read_process_output (proc
, XINT (p
->infd
)) > 0);
6453 /* Get the text to use for the message. */
6454 if (!NILP (p
->raw_status_low
))
6456 msg
= status_message (p
);
6458 /* If process is terminated, deactivate it or delete it. */
6460 if (CONSP (p
->status
))
6461 symbol
= XCAR (p
->status
);
6463 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
)
6464 || EQ (symbol
, Qclosed
))
6466 if (delete_exited_processes
)
6467 remove_process (proc
);
6469 deactivate_process (proc
);
6472 /* The actions above may have further incremented p->tick.
6473 So set p->update_tick again
6474 so that an error in the sentinel will not cause
6475 this code to be run again. */
6476 XSETINT (p
->update_tick
, XINT (p
->tick
));
6477 /* Now output the message suitably. */
6478 if (!NILP (p
->sentinel
))
6479 exec_sentinel (proc
, msg
);
6480 /* Don't bother with a message in the buffer
6481 when a process becomes runnable. */
6482 else if (!EQ (symbol
, Qrun
) && !NILP (buffer
))
6484 Lisp_Object ro
, tem
;
6485 struct buffer
*old
= current_buffer
;
6486 int opoint
, opoint_byte
;
6487 int before
, before_byte
;
6489 ro
= XBUFFER (buffer
)->read_only
;
6491 /* Avoid error if buffer is deleted
6492 (probably that's why the process is dead, too) */
6493 if (NILP (XBUFFER (buffer
)->name
))
6495 Fset_buffer (buffer
);
6498 opoint_byte
= PT_BYTE
;
6499 /* Insert new output into buffer
6500 at the current end-of-output marker,
6501 thus preserving logical ordering of input and output. */
6502 if (XMARKER (p
->mark
)->buffer
)
6503 Fgoto_char (p
->mark
);
6505 SET_PT_BOTH (ZV
, ZV_BYTE
);
6508 before_byte
= PT_BYTE
;
6510 tem
= current_buffer
->read_only
;
6511 current_buffer
->read_only
= Qnil
;
6512 insert_string ("\nProcess ");
6513 Finsert (1, &p
->name
);
6514 insert_string (" ");
6516 current_buffer
->read_only
= tem
;
6517 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
6519 if (opoint
>= before
)
6520 SET_PT_BOTH (opoint
+ (PT
- before
),
6521 opoint_byte
+ (PT_BYTE
- before_byte
));
6523 SET_PT_BOTH (opoint
, opoint_byte
);
6525 set_buffer_internal (old
);
6530 update_mode_lines
++; /* in case buffers use %s in mode-line-format */
6531 redisplay_preserve_echo_area (13);
6537 DEFUN ("set-process-coding-system", Fset_process_coding_system
,
6538 Sset_process_coding_system
, 1, 3, 0,
6539 doc
: /* Set coding systems of PROCESS to DECODING and ENCODING.
6540 DECODING will be used to decode subprocess output and ENCODING to
6541 encode subprocess input. */)
6542 (process
, decoding
, encoding
)
6543 register Lisp_Object process
, decoding
, encoding
;
6545 register struct Lisp_Process
*p
;
6547 CHECK_PROCESS (process
);
6548 p
= XPROCESS (process
);
6549 if (XINT (p
->infd
) < 0)
6550 error ("Input file descriptor of %s closed", SDATA (p
->name
));
6551 if (XINT (p
->outfd
) < 0)
6552 error ("Output file descriptor of %s closed", SDATA (p
->name
));
6553 Fcheck_coding_system (decoding
);
6554 Fcheck_coding_system (encoding
);
6556 p
->decode_coding_system
= decoding
;
6557 p
->encode_coding_system
= encoding
;
6558 setup_process_coding_systems (process
);
6563 DEFUN ("process-coding-system",
6564 Fprocess_coding_system
, Sprocess_coding_system
, 1, 1, 0,
6565 doc
: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
6567 register Lisp_Object process
;
6569 CHECK_PROCESS (process
);
6570 return Fcons (XPROCESS (process
)->decode_coding_system
,
6571 XPROCESS (process
)->encode_coding_system
);
6574 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte
,
6575 Sset_process_filter_multibyte
, 2, 2, 0,
6576 doc
: /* Set multibyteness of the strings given to PROCESS's filter.
6577 If FLAG is non-nil, the filter is given multibyte strings.
6578 If FLAG is nil, the filter is given unibyte strings. In this case,
6579 all character code conversion except for end-of-line conversion is
6582 Lisp_Object process
, flag
;
6584 register struct Lisp_Process
*p
;
6586 CHECK_PROCESS (process
);
6587 p
= XPROCESS (process
);
6588 p
->filter_multibyte
= flag
;
6589 setup_process_coding_systems (process
);
6594 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p
,
6595 Sprocess_filter_multibyte_p
, 1, 1, 0,
6596 doc
: /* Return t if a multibyte string is given to PROCESS's filter.*/)
6598 Lisp_Object process
;
6600 register struct Lisp_Process
*p
;
6602 CHECK_PROCESS (process
);
6603 p
= XPROCESS (process
);
6605 return (NILP (p
->filter_multibyte
) ? Qnil
: Qt
);
6610 /* The first time this is called, assume keyboard input comes from DESC
6611 instead of from where we used to expect it.
6612 Subsequent calls mean assume input keyboard can come from DESC
6613 in addition to other places. */
6615 static int add_keyboard_wait_descriptor_called_flag
;
6618 add_keyboard_wait_descriptor (desc
)
6621 if (! add_keyboard_wait_descriptor_called_flag
)
6622 FD_CLR (0, &input_wait_mask
);
6623 add_keyboard_wait_descriptor_called_flag
= 1;
6624 FD_SET (desc
, &input_wait_mask
);
6625 FD_SET (desc
, &non_process_wait_mask
);
6626 if (desc
> max_keyboard_desc
)
6627 max_keyboard_desc
= desc
;
6630 /* From now on, do not expect DESC to give keyboard input. */
6633 delete_keyboard_wait_descriptor (desc
)
6637 int lim
= max_keyboard_desc
;
6639 FD_CLR (desc
, &input_wait_mask
);
6640 FD_CLR (desc
, &non_process_wait_mask
);
6642 if (desc
== max_keyboard_desc
)
6643 for (fd
= 0; fd
< lim
; fd
++)
6644 if (FD_ISSET (fd
, &input_wait_mask
)
6645 && !FD_ISSET (fd
, &non_keyboard_wait_mask
))
6646 max_keyboard_desc
= fd
;
6649 /* Return nonzero if *MASK has a bit set
6650 that corresponds to one of the keyboard input descriptors. */
6653 keyboard_bit_set (mask
)
6658 for (fd
= 0; fd
<= max_keyboard_desc
; fd
++)
6659 if (FD_ISSET (fd
, mask
) && FD_ISSET (fd
, &input_wait_mask
)
6660 && !FD_ISSET (fd
, &non_keyboard_wait_mask
))
6673 if (! noninteractive
|| initialized
)
6675 signal (SIGCHLD
, sigchld_handler
);
6678 FD_ZERO (&input_wait_mask
);
6679 FD_ZERO (&non_keyboard_wait_mask
);
6680 FD_ZERO (&non_process_wait_mask
);
6681 max_process_desc
= 0;
6683 #ifdef NON_BLOCKING_CONNECT
6684 FD_ZERO (&connect_wait_mask
);
6685 num_pending_connects
= 0;
6688 #ifdef ADAPTIVE_READ_BUFFERING
6689 process_output_delay_count
= 0;
6690 process_output_skip
= 0;
6693 FD_SET (0, &input_wait_mask
);
6695 Vprocess_alist
= Qnil
;
6696 for (i
= 0; i
< MAXDESC
; i
++)
6698 chan_process
[i
] = Qnil
;
6699 proc_buffered_char
[i
] = -1;
6701 bzero (proc_decode_coding_system
, sizeof proc_decode_coding_system
);
6702 bzero (proc_encode_coding_system
, sizeof proc_encode_coding_system
);
6703 #ifdef DATAGRAM_SOCKETS
6704 bzero (datagram_address
, sizeof datagram_address
);
6709 Lisp_Object subfeatures
= Qnil
;
6710 struct socket_options
*sopt
;
6712 #define ADD_SUBFEATURE(key, val) \
6713 subfeatures = Fcons (Fcons (key, Fcons (val, Qnil)), subfeatures)
6715 #ifdef NON_BLOCKING_CONNECT
6716 ADD_SUBFEATURE (QCnowait
, Qt
);
6718 #ifdef DATAGRAM_SOCKETS
6719 ADD_SUBFEATURE (QCtype
, Qdatagram
);
6721 #ifdef HAVE_LOCAL_SOCKETS
6722 ADD_SUBFEATURE (QCfamily
, Qlocal
);
6724 #ifdef HAVE_GETSOCKNAME
6725 ADD_SUBFEATURE (QCservice
, Qt
);
6727 #if !defined(TERM) && (defined(O_NONBLOCK) || defined(O_NDELAY))
6728 ADD_SUBFEATURE (QCserver
, Qt
);
6731 for (sopt
= socket_options
; sopt
->name
; sopt
++)
6732 subfeatures
= Fcons (intern (sopt
->name
), subfeatures
);
6734 Fprovide (intern ("make-network-process"), subfeatures
);
6736 #endif /* HAVE_SOCKETS */
6738 #if defined (DARWIN) || defined (MAC_OSX)
6739 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
6740 processes. As such, we only change the default value. */
6743 char *release
= get_operating_system_release();
6744 if (!release
|| !release
[0] || (release
[0] < MIN_PTY_KERNEL_VERSION
6745 && release
[1] == '.')) {
6746 Vprocess_connection_type
= Qnil
;
6755 Qprocessp
= intern ("processp");
6756 staticpro (&Qprocessp
);
6757 Qrun
= intern ("run");
6759 Qstop
= intern ("stop");
6761 Qsignal
= intern ("signal");
6762 staticpro (&Qsignal
);
6764 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
6767 Qexit = intern ("exit");
6768 staticpro (&Qexit); */
6770 Qopen
= intern ("open");
6772 Qclosed
= intern ("closed");
6773 staticpro (&Qclosed
);
6774 Qconnect
= intern ("connect");
6775 staticpro (&Qconnect
);
6776 Qfailed
= intern ("failed");
6777 staticpro (&Qfailed
);
6778 Qlisten
= intern ("listen");
6779 staticpro (&Qlisten
);
6780 Qlocal
= intern ("local");
6781 staticpro (&Qlocal
);
6782 Qdatagram
= intern ("datagram");
6783 staticpro (&Qdatagram
);
6785 QCname
= intern (":name");
6786 staticpro (&QCname
);
6787 QCbuffer
= intern (":buffer");
6788 staticpro (&QCbuffer
);
6789 QChost
= intern (":host");
6790 staticpro (&QChost
);
6791 QCservice
= intern (":service");
6792 staticpro (&QCservice
);
6793 QCtype
= intern (":type");
6794 staticpro (&QCtype
);
6795 QClocal
= intern (":local");
6796 staticpro (&QClocal
);
6797 QCremote
= intern (":remote");
6798 staticpro (&QCremote
);
6799 QCcoding
= intern (":coding");
6800 staticpro (&QCcoding
);
6801 QCserver
= intern (":server");
6802 staticpro (&QCserver
);
6803 QCnowait
= intern (":nowait");
6804 staticpro (&QCnowait
);
6805 QCsentinel
= intern (":sentinel");
6806 staticpro (&QCsentinel
);
6807 QClog
= intern (":log");
6809 QCnoquery
= intern (":noquery");
6810 staticpro (&QCnoquery
);
6811 QCstop
= intern (":stop");
6812 staticpro (&QCstop
);
6813 QCoptions
= intern (":options");
6814 staticpro (&QCoptions
);
6815 QCplist
= intern (":plist");
6816 staticpro (&QCplist
);
6817 QCfilter_multibyte
= intern (":filter-multibyte");
6818 staticpro (&QCfilter_multibyte
);
6820 Qlast_nonmenu_event
= intern ("last-nonmenu-event");
6821 staticpro (&Qlast_nonmenu_event
);
6823 staticpro (&Vprocess_alist
);
6825 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes
,
6826 doc
: /* *Non-nil means delete processes immediately when they exit.
6827 nil means don't delete them until `list-processes' is run. */);
6829 delete_exited_processes
= 1;
6831 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type
,
6832 doc
: /* Control type of device used to communicate with subprocesses.
6833 Values are nil to use a pipe, or t or `pty' to use a pty.
6834 The value has no effect if the system has no ptys or if all ptys are busy:
6835 then a pipe is used in any case.
6836 The value takes effect when `start-process' is called. */);
6837 Vprocess_connection_type
= Qt
;
6839 #ifdef ADAPTIVE_READ_BUFFERING
6840 DEFVAR_LISP ("process-adaptive-read-buffering", &Vprocess_adaptive_read_buffering
,
6841 doc
: /* If non-nil, improve receive buffering by delaying after short reads.
6842 On some systems, when Emacs reads the output from a subprocess, the output data
6843 is read in very small blocks, potentially resulting in very poor performance.
6844 This behavior can be remedied to some extent by setting this variable to a
6845 non-nil value, as it will automatically delay reading from such processes, to
6846 allowing them to produce more output before Emacs tries to read it.
6847 If the value is t, the delay is reset after each write to the process; any other
6848 non-nil value means that the delay is not reset on write.
6849 The variable takes effect when `start-process' is called. */);
6850 Vprocess_adaptive_read_buffering
= Qt
;
6853 defsubr (&Sprocessp
);
6854 defsubr (&Sget_process
);
6855 defsubr (&Sget_buffer_process
);
6856 defsubr (&Sdelete_process
);
6857 defsubr (&Sprocess_status
);
6858 defsubr (&Sprocess_exit_status
);
6859 defsubr (&Sprocess_id
);
6860 defsubr (&Sprocess_name
);
6861 defsubr (&Sprocess_tty_name
);
6862 defsubr (&Sprocess_command
);
6863 defsubr (&Sset_process_buffer
);
6864 defsubr (&Sprocess_buffer
);
6865 defsubr (&Sprocess_mark
);
6866 defsubr (&Sset_process_filter
);
6867 defsubr (&Sprocess_filter
);
6868 defsubr (&Sset_process_sentinel
);
6869 defsubr (&Sprocess_sentinel
);
6870 defsubr (&Sset_process_window_size
);
6871 defsubr (&Sset_process_inherit_coding_system_flag
);
6872 defsubr (&Sprocess_inherit_coding_system_flag
);
6873 defsubr (&Sset_process_query_on_exit_flag
);
6874 defsubr (&Sprocess_query_on_exit_flag
);
6875 defsubr (&Sprocess_contact
);
6876 defsubr (&Sprocess_plist
);
6877 defsubr (&Sset_process_plist
);
6878 defsubr (&Slist_processes
);
6879 defsubr (&Sprocess_list
);
6880 defsubr (&Sstart_process
);
6882 defsubr (&Sset_network_process_option
);
6883 defsubr (&Smake_network_process
);
6884 defsubr (&Sformat_network_address
);
6885 #endif /* HAVE_SOCKETS */
6886 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
6888 defsubr (&Snetwork_interface_list
);
6890 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
6891 defsubr (&Snetwork_interface_info
);
6893 #endif /* HAVE_SOCKETS ... */
6894 #ifdef DATAGRAM_SOCKETS
6895 defsubr (&Sprocess_datagram_address
);
6896 defsubr (&Sset_process_datagram_address
);
6898 defsubr (&Saccept_process_output
);
6899 defsubr (&Sprocess_send_region
);
6900 defsubr (&Sprocess_send_string
);
6901 defsubr (&Sinterrupt_process
);
6902 defsubr (&Skill_process
);
6903 defsubr (&Squit_process
);
6904 defsubr (&Sstop_process
);
6905 defsubr (&Scontinue_process
);
6906 defsubr (&Sprocess_running_child_p
);
6907 defsubr (&Sprocess_send_eof
);
6908 defsubr (&Ssignal_process
);
6909 defsubr (&Swaiting_for_user_input_p
);
6910 /* defsubr (&Sprocess_connection); */
6911 defsubr (&Sset_process_coding_system
);
6912 defsubr (&Sprocess_coding_system
);
6913 defsubr (&Sset_process_filter_multibyte
);
6914 defsubr (&Sprocess_filter_multibyte_p
);
6918 #else /* not subprocesses */
6920 #include <sys/types.h>
6924 #include "systime.h"
6925 #include "charset.h"
6927 #include "termopts.h"
6928 #include "sysselect.h"
6930 extern int frame_garbaged
;
6932 extern EMACS_TIME
timer_check ();
6933 extern int timers_run
;
6937 /* As described above, except assuming that there are no subprocesses:
6939 Wait for timeout to elapse and/or keyboard input to be available.
6942 timeout in seconds, or
6943 zero for no limit, or
6944 -1 means gobble data immediately available but don't wait for any.
6946 read_kbd is a Lisp_Object:
6947 0 to ignore keyboard input, or
6948 1 to return when input is available, or
6949 -1 means caller will actually read the input, so don't throw to
6952 see full version for other parameters. We know that wait_proc will
6953 always be NULL, since `subprocesses' isn't defined.
6955 do_display != 0 means redisplay should be done to show subprocess
6956 output that arrives.
6958 Return true iff we received input from any process. */
6961 wait_reading_process_output (time_limit
, microsecs
, read_kbd
, do_display
,
6962 wait_for_cell
, wait_proc
, just_wait_proc
)
6963 int time_limit
, microsecs
, read_kbd
, do_display
;
6964 Lisp_Object wait_for_cell
;
6965 struct Lisp_Process
*wait_proc
;
6969 EMACS_TIME end_time
, timeout
;
6970 SELECT_TYPE waitchannels
;
6973 /* What does time_limit really mean? */
6974 if (time_limit
|| microsecs
)
6976 EMACS_GET_TIME (end_time
);
6977 EMACS_SET_SECS_USECS (timeout
, time_limit
, microsecs
);
6978 EMACS_ADD_TIME (end_time
, end_time
, timeout
);
6981 /* Turn off periodic alarms (in case they are in use)
6982 and then turn off any other atimers,
6983 because the select emulator uses alarms. */
6985 turn_on_atimers (0);
6989 int timeout_reduced_for_timers
= 0;
6991 /* If calling from keyboard input, do not quit
6992 since we want to return C-g as an input character.
6993 Otherwise, do pending quit if requested. */
6997 /* Exit now if the cell we're waiting for became non-nil. */
6998 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
7001 /* Compute time from now till when time limit is up */
7002 /* Exit if already run out */
7003 if (time_limit
== -1)
7005 /* -1 specified for timeout means
7006 gobble output available now
7007 but don't wait at all. */
7009 EMACS_SET_SECS_USECS (timeout
, 0, 0);
7011 else if (time_limit
|| microsecs
)
7013 EMACS_GET_TIME (timeout
);
7014 EMACS_SUB_TIME (timeout
, end_time
, timeout
);
7015 if (EMACS_TIME_NEG_P (timeout
))
7020 EMACS_SET_SECS_USECS (timeout
, 100000, 0);
7023 /* If our caller will not immediately handle keyboard events,
7024 run timer events directly.
7025 (Callers that will immediately read keyboard events
7026 call timer_delay on their own.) */
7027 if (NILP (wait_for_cell
))
7029 EMACS_TIME timer_delay
;
7033 int old_timers_run
= timers_run
;
7034 timer_delay
= timer_check (1);
7035 if (timers_run
!= old_timers_run
&& do_display
)
7036 /* We must retry, since a timer may have requeued itself
7037 and that could alter the time delay. */
7038 redisplay_preserve_echo_area (14);
7042 while (!detect_input_pending ());
7044 /* If there is unread keyboard input, also return. */
7046 && requeued_events_pending_p ())
7049 if (! EMACS_TIME_NEG_P (timer_delay
) && time_limit
!= -1)
7051 EMACS_TIME difference
;
7052 EMACS_SUB_TIME (difference
, timer_delay
, timeout
);
7053 if (EMACS_TIME_NEG_P (difference
))
7055 timeout
= timer_delay
;
7056 timeout_reduced_for_timers
= 1;
7061 /* Cause C-g and alarm signals to take immediate action,
7062 and cause input available signals to zero out timeout. */
7064 set_waiting_for_input (&timeout
);
7066 /* Wait till there is something to do. */
7068 if (! read_kbd
&& NILP (wait_for_cell
))
7069 FD_ZERO (&waitchannels
);
7071 FD_SET (0, &waitchannels
);
7073 /* If a frame has been newly mapped and needs updating,
7074 reprocess its display stuff. */
7075 if (frame_garbaged
&& do_display
)
7077 clear_waiting_for_input ();
7078 redisplay_preserve_echo_area (15);
7080 set_waiting_for_input (&timeout
);
7083 if (read_kbd
&& detect_input_pending ())
7086 FD_ZERO (&waitchannels
);
7089 nfds
= select (1, &waitchannels
, (SELECT_TYPE
*)0, (SELECT_TYPE
*)0,
7094 /* Make C-g and alarm signals set flags again */
7095 clear_waiting_for_input ();
7097 /* If we woke up due to SIGWINCH, actually change size now. */
7098 do_pending_window_change (0);
7100 if (time_limit
&& nfds
== 0 && ! timeout_reduced_for_timers
)
7101 /* We waited the full specified time, so return now. */
7106 /* If the system call was interrupted, then go around the
7108 if (xerrno
== EINTR
)
7109 FD_ZERO (&waitchannels
);
7111 error ("select error: %s", emacs_strerror (xerrno
));
7114 else if (nfds
> 0 && (waitchannels
& 1) && interrupt_input
)
7115 /* System sometimes fails to deliver SIGIO. */
7116 kill (getpid (), SIGIO
);
7119 if (read_kbd
&& interrupt_input
&& (waitchannels
& 1))
7120 kill (getpid (), SIGIO
);
7123 /* Check for keyboard input */
7126 && detect_input_pending_run_timers (do_display
))
7128 swallow_events (do_display
);
7129 if (detect_input_pending_run_timers (do_display
))
7133 /* If there is unread keyboard input, also return. */
7135 && requeued_events_pending_p ())
7138 /* If wait_for_cell. check for keyboard input
7139 but don't run any timers.
7140 ??? (It seems wrong to me to check for keyboard
7141 input at all when wait_for_cell, but the code
7142 has been this way since July 1994.
7143 Try changing this after version 19.31.) */
7144 if (! NILP (wait_for_cell
)
7145 && detect_input_pending ())
7147 swallow_events (do_display
);
7148 if (detect_input_pending ())
7152 /* Exit now if the cell we're waiting for became non-nil. */
7153 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
7163 /* Don't confuse make-docfile by having two doc strings for this function.
7164 make-docfile does not pay attention to #if, for good reason! */
7165 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
7168 register Lisp_Object name
;
7173 /* Don't confuse make-docfile by having two doc strings for this function.
7174 make-docfile does not pay attention to #if, for good reason! */
7175 DEFUN ("process-inherit-coding-system-flag",
7176 Fprocess_inherit_coding_system_flag
, Sprocess_inherit_coding_system_flag
,
7180 register Lisp_Object process
;
7182 /* Ignore the argument and return the value of
7183 inherit-process-coding-system. */
7184 return inherit_process_coding_system
? Qt
: Qnil
;
7187 /* Kill all processes associated with `buffer'.
7188 If `buffer' is nil, kill all processes.
7189 Since we have no subprocesses, this does nothing. */
7192 kill_buffer_processes (buffer
)
7205 QCtype
= intern (":type");
7206 staticpro (&QCtype
);
7208 defsubr (&Sget_buffer_process
);
7209 defsubr (&Sprocess_inherit_coding_system_flag
);
7213 #endif /* not subprocesses */
7215 /* arch-tag: 3706c011-7b9a-4117-bd4f-59e7f701a4c4
7216 (do not change this comment) */