1 /* Asynchronous subprocess control for GNU Emacs.
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 96, 98, 1999,
3 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
26 /* This file is split into two parts by the following preprocessor
27 conditional. The 'then' clause contains all of the support for
28 asynchronous subprocesses. The 'else' clause contains stub
29 versions of some of the asynchronous subprocess routines that are
30 often called elsewhere in Emacs, so we don't have to #ifdef the
31 sections that call them. */
39 #include <sys/types.h> /* some typedefs are used in sys/file.h */
46 #if defined(WINDOWSNT) || defined(UNIX98_PTYS)
49 #endif /* not WINDOWSNT */
51 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
52 #include <sys/socket.h>
54 #include <netinet/in.h>
55 #include <arpa/inet.h>
56 #ifdef NEED_NET_ERRNO_H
57 #include <net/errno.h>
58 #endif /* NEED_NET_ERRNO_H */
60 /* Are local (unix) sockets supported? */
61 #if defined (HAVE_SYS_UN_H) && !defined (NO_SOCKETS_IN_FILE_SYSTEM)
62 #if !defined (AF_LOCAL) && defined (AF_UNIX)
63 #define AF_LOCAL AF_UNIX
66 #define HAVE_LOCAL_SOCKETS
70 #endif /* HAVE_SOCKETS */
72 /* TERM is a poor-man's SLIP, used on GNU/Linux. */
77 /* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */
78 #ifdef HAVE_BROKEN_INET_ADDR
79 #define IN_ADDR struct in_addr
80 #define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1)
82 #define IN_ADDR unsigned long
83 #define NUMERIC_ADDR_ERROR (numeric_addr == -1)
86 #if defined(BSD_SYSTEM) || defined(STRIDE)
87 #include <sys/ioctl.h>
88 #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
90 #endif /* HAVE_PTYS and no O_NDELAY */
91 #endif /* BSD_SYSTEM || STRIDE */
93 #ifdef BROKEN_O_NONBLOCK
95 #endif /* BROKEN_O_NONBLOCK */
101 /* Can we use SIOCGIFCONF and/or SIOCGIFADDR */
103 #if defined(HAVE_SYS_IOCTL_H) && defined(HAVE_NET_IF_H)
104 /* sys/ioctl.h may have been included already */
106 #include <sys/ioctl.h>
113 #include <sys/sysmacros.h> /* for "minor" */
114 #endif /* not IRIS */
117 #include <sys/wait.h>
129 #include "termhooks.h"
130 #include "termopts.h"
131 #include "commands.h"
132 #include "keyboard.h"
134 #include "blockinput.h"
135 #include "dispextern.h"
136 #include "composite.h"
139 Lisp_Object Qprocessp
;
140 Lisp_Object Qrun
, Qstop
, Qsignal
;
141 Lisp_Object Qopen
, Qclosed
, Qconnect
, Qfailed
, Qlisten
;
142 Lisp_Object Qlocal
, Qdatagram
;
143 Lisp_Object QCname
, QCbuffer
, QChost
, QCservice
, QCtype
;
144 Lisp_Object QClocal
, QCremote
, QCcoding
;
145 Lisp_Object QCserver
, QCnowait
, QCnoquery
, QCstop
;
146 Lisp_Object QCsentinel
, QClog
, QCoptions
, QCplist
;
147 Lisp_Object QCfilter_multibyte
;
148 Lisp_Object Qlast_nonmenu_event
;
149 /* QCfamily is declared and initialized in xfaces.c,
150 QCfilter in keyboard.c. */
151 extern Lisp_Object QCfamily
, QCfilter
;
153 /* Qexit is declared and initialized in eval.c. */
155 /* QCfamily is defined in xfaces.c. */
156 extern Lisp_Object QCfamily
;
157 /* QCfilter is defined in keyboard.c. */
158 extern Lisp_Object QCfilter
;
160 /* a process object is a network connection when its childp field is neither
161 Qt nor Qnil but is instead a property list (KEY VAL ...). */
164 #define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp))
165 #define NETCONN1_P(p) (GC_CONSP ((p)->childp))
167 #define NETCONN_P(p) 0
168 #define NETCONN1_P(p) 0
169 #endif /* HAVE_SOCKETS */
171 /* Define first descriptor number available for subprocesses. */
173 #define FIRST_PROC_DESC 1
175 #define FIRST_PROC_DESC 3
178 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
181 #if !defined (SIGCHLD) && defined (SIGCLD)
182 #define SIGCHLD SIGCLD
185 #include "syssignal.h"
189 extern void set_waiting_for_input
P_ ((EMACS_TIME
*));
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 might be delayed. */
277 static int process_output_delay_count
;
279 /* Non-zero if any process has non-nil process_output_skip. */
281 static int process_output_skip
;
283 /* Non-nil means to delay reading process output to improve buffering.
284 A value of t means that delay is reset after each send, any other
285 non-nil value does not reset the delay. */
286 static Lisp_Object Vprocess_adaptive_read_buffering
;
288 #define process_output_delay_count 0
292 #include "sysselect.h"
294 extern int keyboard_bit_set
P_ ((SELECT_TYPE
*));
296 /* If we support a window system, turn on the code to poll periodically
297 to detect C-g. It isn't actually used when doing interrupt input. */
298 #ifdef HAVE_WINDOW_SYSTEM
299 #define POLL_FOR_INPUT
302 /* Mask of bits indicating the descriptors that we wait for input on. */
304 static SELECT_TYPE input_wait_mask
;
306 /* Mask that excludes keyboard input descriptor (s). */
308 static SELECT_TYPE non_keyboard_wait_mask
;
310 /* Mask that excludes process input descriptor (s). */
312 static SELECT_TYPE non_process_wait_mask
;
314 #ifdef NON_BLOCKING_CONNECT
315 /* Mask of bits indicating the descriptors that we wait for connect to
316 complete on. Once they complete, they are removed from this mask
317 and added to the input_wait_mask and non_keyboard_wait_mask. */
319 static SELECT_TYPE connect_wait_mask
;
321 /* Number of bits set in connect_wait_mask. */
322 static int num_pending_connects
;
324 #define IF_NON_BLOCKING_CONNECT(s) s
326 #define IF_NON_BLOCKING_CONNECT(s)
329 /* The largest descriptor currently in use for a process object. */
330 static int max_process_desc
;
332 /* The largest descriptor currently in use for keyboard input. */
333 static int max_keyboard_desc
;
335 /* Nonzero means delete a process right away if it exits. */
336 static int delete_exited_processes
;
338 /* Indexed by descriptor, gives the process (if any) for that descriptor */
339 Lisp_Object chan_process
[MAXDESC
];
341 /* Alist of elements (NAME . PROCESS) */
342 Lisp_Object Vprocess_alist
;
344 /* Buffered-ahead input char from process, indexed by channel.
345 -1 means empty (no char is buffered).
346 Used on sys V where the only way to tell if there is any
347 output from the process is to read at least one char.
348 Always -1 on systems that support FIONREAD. */
350 /* Don't make static; need to access externally. */
351 int proc_buffered_char
[MAXDESC
];
353 /* Table of `struct coding-system' for each process. */
354 static struct coding_system
*proc_decode_coding_system
[MAXDESC
];
355 static struct coding_system
*proc_encode_coding_system
[MAXDESC
];
357 #ifdef DATAGRAM_SOCKETS
358 /* Table of `partner address' for datagram sockets. */
359 struct sockaddr_and_len
{
362 } datagram_address
[MAXDESC
];
363 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
364 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XINT (XPROCESS (proc)->infd)].sa != 0)
366 #define DATAGRAM_CHAN_P(chan) (0)
367 #define DATAGRAM_CONN_P(proc) (0)
370 static Lisp_Object
get_process ();
371 static void exec_sentinel ();
373 extern EMACS_TIME
timer_check ();
374 extern int timers_run
;
376 /* Maximum number of bytes to send to a pty without an eof. */
377 static int pty_max_bytes
;
379 extern Lisp_Object Vfile_name_coding_system
, Vdefault_file_name_coding_system
;
385 /* The file name of the pty opened by allocate_pty. */
387 static char pty_name
[24];
390 /* Compute the Lisp form of the process status, p->status, from
391 the numeric status that was returned by `wait'. */
393 Lisp_Object
status_convert ();
397 struct Lisp_Process
*p
;
399 union { int i
; WAITTYPE wt
; } u
;
400 u
.i
= XFASTINT (p
->raw_status_low
) + (XFASTINT (p
->raw_status_high
) << 16);
401 p
->status
= status_convert (u
.wt
);
402 p
->raw_status_low
= Qnil
;
403 p
->raw_status_high
= Qnil
;
406 /* Convert a process status word in Unix format to
407 the list that we use internally. */
414 return Fcons (Qstop
, Fcons (make_number (WSTOPSIG (w
)), Qnil
));
415 else if (WIFEXITED (w
))
416 return Fcons (Qexit
, Fcons (make_number (WRETCODE (w
)),
417 WCOREDUMP (w
) ? Qt
: Qnil
));
418 else if (WIFSIGNALED (w
))
419 return Fcons (Qsignal
, Fcons (make_number (WTERMSIG (w
)),
420 WCOREDUMP (w
) ? Qt
: Qnil
));
425 /* Given a status-list, extract the three pieces of information
426 and store them individually through the three pointers. */
429 decode_status (l
, symbol
, code
, coredump
)
447 *code
= XFASTINT (XCAR (tem
));
449 *coredump
= !NILP (tem
);
453 /* Return a string describing a process status list. */
457 struct Lisp_Process
*p
;
459 Lisp_Object status
= p
->status
;
462 Lisp_Object string
, string2
;
464 decode_status (status
, &symbol
, &code
, &coredump
);
466 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qstop
))
469 synchronize_system_messages_locale ();
470 signame
= strsignal (code
);
473 string
= build_string (signame
);
474 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
475 SSET (string
, 0, DOWNCASE (SREF (string
, 0)));
476 return concat2 (string
, string2
);
478 else if (EQ (symbol
, Qexit
))
481 return build_string (code
== 0 ? "deleted\n" : "connection broken by remote peer\n");
483 return build_string ("finished\n");
484 string
= Fnumber_to_string (make_number (code
));
485 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
486 return concat3 (build_string ("exited abnormally with code "),
489 else if (EQ (symbol
, Qfailed
))
491 string
= Fnumber_to_string (make_number (code
));
492 string2
= build_string ("\n");
493 return concat3 (build_string ("failed with code "),
497 return Fcopy_sequence (Fsymbol_name (symbol
));
502 /* Open an available pty, returning a file descriptor.
503 Return -1 on failure.
504 The file name of the terminal corresponding to the pty
505 is left in the variable pty_name. */
516 for (c
= FIRST_PTY_LETTER
; c
<= 'z'; c
++)
517 for (i
= 0; i
< 16; i
++)
520 struct stat stb
; /* Used in some PTY_OPEN. */
521 #ifdef PTY_NAME_SPRINTF
524 sprintf (pty_name
, "/dev/pty%c%x", c
, i
);
525 #endif /* no PTY_NAME_SPRINTF */
529 #else /* no PTY_OPEN */
532 /* Unusual IRIS code */
533 *ptyv
= emacs_open ("/dev/ptc", O_RDWR
| O_NDELAY
, 0);
536 if (fstat (fd
, &stb
) < 0)
538 # else /* not IRIS */
539 { /* Some systems name their pseudoterminals so that there are gaps in
540 the usual sequence - for example, on HP9000/S700 systems, there
541 are no pseudoterminals with names ending in 'f'. So we wait for
542 three failures in a row before deciding that we've reached the
544 int failed_count
= 0;
546 if (stat (pty_name
, &stb
) < 0)
549 if (failed_count
>= 3)
556 fd
= emacs_open (pty_name
, O_RDWR
| O_NONBLOCK
, 0);
558 fd
= emacs_open (pty_name
, O_RDWR
| O_NDELAY
, 0);
560 # endif /* not IRIS */
562 #endif /* no PTY_OPEN */
566 /* check to make certain that both sides are available
567 this avoids a nasty yet stupid bug in rlogins */
568 #ifdef PTY_TTY_NAME_SPRINTF
571 sprintf (pty_name
, "/dev/tty%c%x", c
, i
);
572 #endif /* no PTY_TTY_NAME_SPRINTF */
574 if (access (pty_name
, 6) != 0)
577 # if !defined(IRIS) && !defined(__sgi)
583 #endif /* not UNIPLUS */
590 #endif /* HAVE_PTYS */
596 register Lisp_Object val
, tem
, name1
;
597 register struct Lisp_Process
*p
;
601 p
= allocate_process ();
603 XSETINT (p
->infd
, -1);
604 XSETINT (p
->outfd
, -1);
605 XSETFASTINT (p
->pid
, 0);
606 XSETFASTINT (p
->tick
, 0);
607 XSETFASTINT (p
->update_tick
, 0);
608 p
->raw_status_low
= Qnil
;
609 p
->raw_status_high
= Qnil
;
611 p
->mark
= Fmake_marker ();
613 #ifdef ADAPTIVE_READ_BUFFERING
614 p
->adaptive_read_buffering
= Qnil
;
615 XSETFASTINT (p
->read_output_delay
, 0);
616 p
->read_output_skip
= Qnil
;
619 /* If name is already in use, modify it until it is unused. */
624 tem
= Fget_process (name1
);
625 if (NILP (tem
)) break;
626 sprintf (suffix
, "<%d>", i
);
627 name1
= concat2 (name
, build_string (suffix
));
631 XSETPROCESS (val
, p
);
632 Vprocess_alist
= Fcons (Fcons (name
, val
), Vprocess_alist
);
637 remove_process (proc
)
638 register Lisp_Object proc
;
640 register Lisp_Object pair
;
642 pair
= Frassq (proc
, Vprocess_alist
);
643 Vprocess_alist
= Fdelq (pair
, Vprocess_alist
);
645 deactivate_process (proc
);
648 /* Setup coding systems of PROCESS. */
651 setup_process_coding_systems (process
)
654 struct Lisp_Process
*p
= XPROCESS (process
);
655 int inch
= XINT (p
->infd
);
656 int outch
= XINT (p
->outfd
);
658 if (inch
< 0 || outch
< 0)
661 if (!proc_decode_coding_system
[inch
])
662 proc_decode_coding_system
[inch
]
663 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
664 setup_coding_system (p
->decode_coding_system
,
665 proc_decode_coding_system
[inch
]);
666 if (! NILP (p
->filter
))
668 if (NILP (p
->filter_multibyte
))
669 setup_raw_text_coding_system (proc_decode_coding_system
[inch
]);
671 else if (BUFFERP (p
->buffer
))
673 if (NILP (XBUFFER (p
->buffer
)->enable_multibyte_characters
))
674 setup_raw_text_coding_system (proc_decode_coding_system
[inch
]);
677 if (!proc_encode_coding_system
[outch
])
678 proc_encode_coding_system
[outch
]
679 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
680 setup_coding_system (p
->encode_coding_system
,
681 proc_encode_coding_system
[outch
]);
684 DEFUN ("processp", Fprocessp
, Sprocessp
, 1, 1, 0,
685 doc
: /* Return t if OBJECT is a process. */)
689 return PROCESSP (object
) ? Qt
: Qnil
;
692 DEFUN ("get-process", Fget_process
, Sget_process
, 1, 1, 0,
693 doc
: /* Return the process named NAME, or nil if there is none. */)
695 register Lisp_Object name
;
700 return Fcdr (Fassoc (name
, Vprocess_alist
));
703 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
704 doc
: /* Return the (or a) process associated with BUFFER.
705 BUFFER may be a buffer or the name of one. */)
707 register Lisp_Object buffer
;
709 register Lisp_Object buf
, tail
, proc
;
711 if (NILP (buffer
)) return Qnil
;
712 buf
= Fget_buffer (buffer
);
713 if (NILP (buf
)) return Qnil
;
715 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
717 proc
= Fcdr (Fcar (tail
));
718 if (PROCESSP (proc
) && EQ (XPROCESS (proc
)->buffer
, buf
))
724 /* This is how commands for the user decode process arguments. It
725 accepts a process, a process name, a buffer, a buffer name, or nil.
726 Buffers denote the first process in the buffer, and nil denotes the
731 register Lisp_Object name
;
733 register Lisp_Object proc
, obj
;
736 obj
= Fget_process (name
);
738 obj
= Fget_buffer (name
);
740 error ("Process %s does not exist", SDATA (name
));
742 else if (NILP (name
))
743 obj
= Fcurrent_buffer ();
747 /* Now obj should be either a buffer object or a process object.
751 proc
= Fget_buffer_process (obj
);
753 error ("Buffer %s has no process", SDATA (XBUFFER (obj
)->name
));
763 DEFUN ("delete-process", Fdelete_process
, Sdelete_process
, 1, 1, 0,
764 doc
: /* Delete PROCESS: kill it and forget about it immediately.
765 PROCESS may be a process, a buffer, the name of a process or buffer, or
766 nil, indicating the current buffer's process. */)
768 register Lisp_Object process
;
770 process
= get_process (process
);
771 XPROCESS (process
)->raw_status_low
= Qnil
;
772 XPROCESS (process
)->raw_status_high
= Qnil
;
773 if (NETCONN_P (process
))
775 XPROCESS (process
)->status
= Fcons (Qexit
, Fcons (make_number (0), Qnil
));
776 XSETINT (XPROCESS (process
)->tick
, ++process_tick
);
779 else if (XINT (XPROCESS (process
)->infd
) >= 0)
781 Fkill_process (process
, Qnil
);
782 /* Do this now, since remove_process will make sigchld_handler do nothing. */
783 XPROCESS (process
)->status
784 = Fcons (Qsignal
, Fcons (make_number (SIGKILL
), Qnil
));
785 XSETINT (XPROCESS (process
)->tick
, ++process_tick
);
788 remove_process (process
);
792 DEFUN ("process-status", Fprocess_status
, Sprocess_status
, 1, 1, 0,
793 doc
: /* Return the status of PROCESS.
794 The returned value is one of the following symbols:
795 run -- for a process that is running.
796 stop -- for a process stopped but continuable.
797 exit -- for a process that has exited.
798 signal -- for a process that has got a fatal signal.
799 open -- for a network stream connection that is open.
800 listen -- for a network stream server that is listening.
801 closed -- for a network stream connection that is closed.
802 connect -- when waiting for a non-blocking connection to complete.
803 failed -- when a non-blocking connection has failed.
804 nil -- if arg is a process name and no such process exists.
805 PROCESS may be a process, a buffer, the name of a process, or
806 nil, indicating the current buffer's process. */)
808 register Lisp_Object process
;
810 register struct Lisp_Process
*p
;
811 register Lisp_Object status
;
813 if (STRINGP (process
))
814 process
= Fget_process (process
);
816 process
= get_process (process
);
821 p
= XPROCESS (process
);
822 if (!NILP (p
->raw_status_low
))
826 status
= XCAR (status
);
829 if (EQ (status
, Qexit
))
831 else if (EQ (p
->command
, Qt
))
833 else if (EQ (status
, Qrun
))
839 DEFUN ("process-exit-status", Fprocess_exit_status
, Sprocess_exit_status
,
841 doc
: /* Return the exit status of PROCESS or the signal number that killed it.
842 If PROCESS has not yet exited or died, return 0. */)
844 register Lisp_Object process
;
846 CHECK_PROCESS (process
);
847 if (!NILP (XPROCESS (process
)->raw_status_low
))
848 update_status (XPROCESS (process
));
849 if (CONSP (XPROCESS (process
)->status
))
850 return XCAR (XCDR (XPROCESS (process
)->status
));
851 return make_number (0);
854 DEFUN ("process-id", Fprocess_id
, Sprocess_id
, 1, 1, 0,
855 doc
: /* Return the process id of PROCESS.
856 This is the pid of the external process which PROCESS uses or talks to.
857 For a network connection, this value is nil. */)
859 register Lisp_Object process
;
861 CHECK_PROCESS (process
);
862 return XPROCESS (process
)->pid
;
865 DEFUN ("process-name", Fprocess_name
, Sprocess_name
, 1, 1, 0,
866 doc
: /* Return the name of PROCESS, as a string.
867 This is the name of the program invoked in PROCESS,
868 possibly modified to make it unique among process names. */)
870 register Lisp_Object process
;
872 CHECK_PROCESS (process
);
873 return XPROCESS (process
)->name
;
876 DEFUN ("process-command", Fprocess_command
, Sprocess_command
, 1, 1, 0,
877 doc
: /* Return the command that was executed to start PROCESS.
878 This is a list of strings, the first string being the program executed
879 and the rest of the strings being the arguments given to it.
880 For a non-child channel, this is nil. */)
882 register Lisp_Object process
;
884 CHECK_PROCESS (process
);
885 return XPROCESS (process
)->command
;
888 DEFUN ("process-tty-name", Fprocess_tty_name
, Sprocess_tty_name
, 1, 1, 0,
889 doc
: /* Return the name of the terminal PROCESS uses, or nil if none.
890 This is the terminal that the process itself reads and writes on,
891 not the name of the pty that Emacs uses to talk with that terminal. */)
893 register Lisp_Object process
;
895 CHECK_PROCESS (process
);
896 return XPROCESS (process
)->tty_name
;
899 DEFUN ("set-process-buffer", Fset_process_buffer
, Sset_process_buffer
,
901 doc
: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil). */)
903 register Lisp_Object process
, buffer
;
905 struct Lisp_Process
*p
;
907 CHECK_PROCESS (process
);
909 CHECK_BUFFER (buffer
);
910 p
= XPROCESS (process
);
913 p
->childp
= Fplist_put (p
->childp
, QCbuffer
, buffer
);
914 setup_process_coding_systems (process
);
918 DEFUN ("process-buffer", Fprocess_buffer
, Sprocess_buffer
,
920 doc
: /* Return the buffer PROCESS is associated with.
921 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
923 register Lisp_Object process
;
925 CHECK_PROCESS (process
);
926 return XPROCESS (process
)->buffer
;
929 DEFUN ("process-mark", Fprocess_mark
, Sprocess_mark
,
931 doc
: /* Return the marker for the end of the last output from PROCESS. */)
933 register Lisp_Object process
;
935 CHECK_PROCESS (process
);
936 return XPROCESS (process
)->mark
;
939 DEFUN ("set-process-filter", Fset_process_filter
, Sset_process_filter
,
941 doc
: /* Give PROCESS the filter function FILTER; nil means no filter.
942 t means stop accepting output from the process.
944 When a process has a filter, its buffer is not used for output.
945 Instead, each time it does output, the entire string of output is
946 passed to the filter.
948 The filter gets two arguments: the process and the string of output.
949 The string argument is normally a multibyte string, except:
950 - if the process' input coding system is no-conversion or raw-text,
951 it is a unibyte string (the non-converted input), or else
952 - if `default-enable-multibyte-characters' is nil, it is a unibyte
953 string (the result of converting the decoded input multibyte
954 string to unibyte with `string-make-unibyte'). */)
956 register Lisp_Object process
, filter
;
958 struct Lisp_Process
*p
;
960 CHECK_PROCESS (process
);
961 p
= XPROCESS (process
);
963 /* Don't signal an error if the process' input file descriptor
964 is closed. This could make debugging Lisp more difficult,
965 for example when doing something like
967 (setq process (start-process ...))
969 (set-process-filter process ...) */
971 if (XINT (p
->infd
) >= 0)
973 if (EQ (filter
, Qt
) && !EQ (p
->status
, Qlisten
))
975 FD_CLR (XINT (p
->infd
), &input_wait_mask
);
976 FD_CLR (XINT (p
->infd
), &non_keyboard_wait_mask
);
978 else if (EQ (p
->filter
, Qt
)
979 && !EQ (p
->command
, Qt
)) /* Network process not stopped. */
981 FD_SET (XINT (p
->infd
), &input_wait_mask
);
982 FD_SET (XINT (p
->infd
), &non_keyboard_wait_mask
);
988 p
->childp
= Fplist_put (p
->childp
, QCfilter
, filter
);
989 setup_process_coding_systems (process
);
993 DEFUN ("process-filter", Fprocess_filter
, Sprocess_filter
,
995 doc
: /* Returns the filter function of PROCESS; nil if none.
996 See `set-process-filter' for more info on filter functions. */)
998 register Lisp_Object process
;
1000 CHECK_PROCESS (process
);
1001 return XPROCESS (process
)->filter
;
1004 DEFUN ("set-process-sentinel", Fset_process_sentinel
, Sset_process_sentinel
,
1006 doc
: /* Give PROCESS the sentinel SENTINEL; nil for none.
1007 The sentinel is called as a function when the process changes state.
1008 It gets two arguments: the process, and a string describing the change. */)
1010 register Lisp_Object process
, sentinel
;
1012 struct Lisp_Process
*p
;
1014 CHECK_PROCESS (process
);
1015 p
= XPROCESS (process
);
1017 p
->sentinel
= sentinel
;
1019 p
->childp
= Fplist_put (p
->childp
, QCsentinel
, sentinel
);
1023 DEFUN ("process-sentinel", Fprocess_sentinel
, Sprocess_sentinel
,
1025 doc
: /* Return the sentinel of PROCESS; nil if none.
1026 See `set-process-sentinel' for more info on sentinels. */)
1028 register Lisp_Object process
;
1030 CHECK_PROCESS (process
);
1031 return XPROCESS (process
)->sentinel
;
1034 DEFUN ("set-process-window-size", Fset_process_window_size
,
1035 Sset_process_window_size
, 3, 3, 0,
1036 doc
: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
1037 (process
, height
, width
)
1038 register Lisp_Object process
, height
, width
;
1040 CHECK_PROCESS (process
);
1041 CHECK_NATNUM (height
);
1042 CHECK_NATNUM (width
);
1044 if (XINT (XPROCESS (process
)->infd
) < 0
1045 || set_window_size (XINT (XPROCESS (process
)->infd
),
1046 XINT (height
), XINT (width
)) <= 0)
1052 DEFUN ("set-process-inherit-coding-system-flag",
1053 Fset_process_inherit_coding_system_flag
,
1054 Sset_process_inherit_coding_system_flag
, 2, 2, 0,
1055 doc
: /* Determine whether buffer of PROCESS will inherit coding-system.
1056 If the second argument FLAG is non-nil, then the variable
1057 `buffer-file-coding-system' of the buffer associated with PROCESS
1058 will be bound to the value of the coding system used to decode
1061 This is useful when the coding system specified for the process buffer
1062 leaves either the character code conversion or the end-of-line conversion
1063 unspecified, or if the coding system used to decode the process output
1064 is more appropriate for saving the process buffer.
1066 Binding the variable `inherit-process-coding-system' to non-nil before
1067 starting the process is an alternative way of setting the inherit flag
1068 for the process which will run. */)
1070 register Lisp_Object process
, flag
;
1072 CHECK_PROCESS (process
);
1073 XPROCESS (process
)->inherit_coding_system_flag
= flag
;
1077 DEFUN ("process-inherit-coding-system-flag",
1078 Fprocess_inherit_coding_system_flag
, Sprocess_inherit_coding_system_flag
,
1080 doc
: /* Return the value of inherit-coding-system flag for PROCESS.
1081 If this flag is t, `buffer-file-coding-system' of the buffer
1082 associated with PROCESS will inherit the coding system used to decode
1083 the process output. */)
1085 register Lisp_Object process
;
1087 CHECK_PROCESS (process
);
1088 return XPROCESS (process
)->inherit_coding_system_flag
;
1091 DEFUN ("set-process-query-on-exit-flag",
1092 Fset_process_query_on_exit_flag
, Sset_process_query_on_exit_flag
,
1094 doc
: /* Specify if query is needed for PROCESS when Emacs is exited.
1095 If the second argument FLAG is non-nil, Emacs will query the user before
1096 exiting if PROCESS is running. */)
1098 register Lisp_Object process
, flag
;
1100 CHECK_PROCESS (process
);
1101 XPROCESS (process
)->kill_without_query
= Fnull (flag
);
1105 DEFUN ("process-query-on-exit-flag",
1106 Fprocess_query_on_exit_flag
, Sprocess_query_on_exit_flag
,
1108 doc
: /* Return the current value of query-on-exit flag for PROCESS. */)
1110 register Lisp_Object process
;
1112 CHECK_PROCESS (process
);
1113 return Fnull (XPROCESS (process
)->kill_without_query
);
1116 #ifdef DATAGRAM_SOCKETS
1117 Lisp_Object
Fprocess_datagram_address ();
1120 DEFUN ("process-contact", Fprocess_contact
, Sprocess_contact
,
1122 doc
: /* Return the contact info of PROCESS; t for a real child.
1123 For a net connection, the value depends on the optional KEY arg.
1124 If KEY is nil, value is a cons cell of the form (HOST SERVICE),
1125 if KEY is t, the complete contact information for the connection is
1126 returned, else the specific value for the keyword KEY is returned.
1127 See `make-network-process' for a list of keywords. */)
1129 register Lisp_Object process
, key
;
1131 Lisp_Object contact
;
1133 CHECK_PROCESS (process
);
1134 contact
= XPROCESS (process
)->childp
;
1136 #ifdef DATAGRAM_SOCKETS
1137 if (DATAGRAM_CONN_P (process
)
1138 && (EQ (key
, Qt
) || EQ (key
, QCremote
)))
1139 contact
= Fplist_put (contact
, QCremote
,
1140 Fprocess_datagram_address (process
));
1143 if (!NETCONN_P (process
) || EQ (key
, Qt
))
1146 return Fcons (Fplist_get (contact
, QChost
),
1147 Fcons (Fplist_get (contact
, QCservice
), Qnil
));
1148 return Fplist_get (contact
, key
);
1151 DEFUN ("process-plist", Fprocess_plist
, Sprocess_plist
,
1153 doc
: /* Return the plist of PROCESS. */)
1155 register Lisp_Object process
;
1157 CHECK_PROCESS (process
);
1158 return XPROCESS (process
)->plist
;
1161 DEFUN ("set-process-plist", Fset_process_plist
, Sset_process_plist
,
1163 doc
: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
1165 register Lisp_Object process
, plist
;
1167 CHECK_PROCESS (process
);
1170 XPROCESS (process
)->plist
= plist
;
1174 #if 0 /* Turned off because we don't currently record this info
1175 in the process. Perhaps add it. */
1176 DEFUN ("process-connection", Fprocess_connection
, Sprocess_connection
, 1, 1, 0,
1177 doc
: /* Return the connection type of PROCESS.
1178 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1179 a socket connection. */)
1181 Lisp_Object process
;
1183 return XPROCESS (process
)->type
;
1188 DEFUN ("format-network-address", Fformat_network_address
, Sformat_network_address
,
1190 doc
: /* Convert network ADDRESS from internal format to a string.
1191 If optional second argument OMIT-PORT is non-nil, don't include a port
1192 number in the string; in this case, interpret a 4 element vector as an
1193 IP address. Returns nil if format of ADDRESS is invalid. */)
1194 (address
, omit_port
)
1195 Lisp_Object address
, omit_port
;
1200 if (STRINGP (address
)) /* AF_LOCAL */
1203 if (VECTORP (address
)) /* AF_INET */
1205 register struct Lisp_Vector
*p
= XVECTOR (address
);
1206 Lisp_Object args
[6];
1209 if (!NILP (omit_port
) && (p
->size
== 4 || p
->size
== 5))
1211 args
[0] = build_string ("%d.%d.%d.%d");
1214 else if (p
->size
== 5)
1216 args
[0] = build_string ("%d.%d.%d.%d:%d");
1222 for (i
= 0; i
< nargs
; i
++)
1223 args
[i
+1] = p
->contents
[i
];
1224 return Fformat (nargs
+1, args
);
1227 if (CONSP (address
))
1229 Lisp_Object args
[2];
1230 args
[0] = build_string ("<Family %d>");
1231 args
[1] = Fcar (address
);
1232 return Fformat (2, args
);
1241 list_processes_1 (query_only
)
1242 Lisp_Object query_only
;
1244 register Lisp_Object tail
, tem
;
1245 Lisp_Object proc
, minspace
, tem1
;
1246 register struct Lisp_Process
*p
;
1248 int w_proc
, w_buffer
, w_tty
;
1249 Lisp_Object i_status
, i_buffer
, i_tty
, i_command
;
1251 w_proc
= 4; /* Proc */
1252 w_buffer
= 6; /* Buffer */
1253 w_tty
= 0; /* Omit if no ttys */
1255 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
1259 proc
= Fcdr (Fcar (tail
));
1260 p
= XPROCESS (proc
);
1261 if (NILP (p
->childp
))
1263 if (!NILP (query_only
) && !NILP (p
->kill_without_query
))
1265 if (STRINGP (p
->name
)
1266 && ( i
= SCHARS (p
->name
), (i
> w_proc
)))
1268 if (!NILP (p
->buffer
))
1270 if (NILP (XBUFFER (p
->buffer
)->name
) && w_buffer
< 8)
1271 w_buffer
= 8; /* (Killed) */
1272 else if ((i
= SCHARS (XBUFFER (p
->buffer
)->name
), (i
> w_buffer
)))
1275 if (STRINGP (p
->tty_name
)
1276 && (i
= SCHARS (p
->tty_name
), (i
> w_tty
)))
1280 XSETFASTINT (i_status
, w_proc
+ 1);
1281 XSETFASTINT (i_buffer
, XFASTINT (i_status
) + 9);
1284 XSETFASTINT (i_tty
, XFASTINT (i_buffer
) + w_buffer
+ 1);
1285 XSETFASTINT (i_command
, XFASTINT (i_buffer
) + w_tty
+ 1);
1288 XSETFASTINT (i_command
, XFASTINT (i_buffer
) + w_buffer
+ 1);
1291 XSETFASTINT (minspace
, 1);
1293 set_buffer_internal (XBUFFER (Vstandard_output
));
1294 current_buffer
->undo_list
= Qt
;
1296 current_buffer
->truncate_lines
= Qt
;
1298 write_string ("Proc", -1);
1299 Findent_to (i_status
, minspace
); write_string ("Status", -1);
1300 Findent_to (i_buffer
, minspace
); write_string ("Buffer", -1);
1303 Findent_to (i_tty
, minspace
); write_string ("Tty", -1);
1305 Findent_to (i_command
, minspace
); write_string ("Command", -1);
1306 write_string ("\n", -1);
1308 write_string ("----", -1);
1309 Findent_to (i_status
, minspace
); write_string ("------", -1);
1310 Findent_to (i_buffer
, minspace
); write_string ("------", -1);
1313 Findent_to (i_tty
, minspace
); write_string ("---", -1);
1315 Findent_to (i_command
, minspace
); write_string ("-------", -1);
1316 write_string ("\n", -1);
1318 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
1322 proc
= Fcdr (Fcar (tail
));
1323 p
= XPROCESS (proc
);
1324 if (NILP (p
->childp
))
1326 if (!NILP (query_only
) && !NILP (p
->kill_without_query
))
1329 Finsert (1, &p
->name
);
1330 Findent_to (i_status
, minspace
);
1332 if (!NILP (p
->raw_status_low
))
1335 if (CONSP (p
->status
))
1336 symbol
= XCAR (p
->status
);
1339 if (EQ (symbol
, Qsignal
))
1342 tem
= Fcar (Fcdr (p
->status
));
1344 if (XINT (tem
) < NSIG
)
1345 write_string (sys_errlist
[XINT (tem
)], -1);
1348 Fprinc (symbol
, Qnil
);
1350 else if (NETCONN1_P (p
))
1352 if (EQ (symbol
, Qexit
))
1353 write_string ("closed", -1);
1354 else if (EQ (p
->command
, Qt
))
1355 write_string ("stopped", -1);
1356 else if (EQ (symbol
, Qrun
))
1357 write_string ("open", -1);
1359 Fprinc (symbol
, Qnil
);
1362 Fprinc (symbol
, Qnil
);
1364 if (EQ (symbol
, Qexit
))
1367 tem
= Fcar (Fcdr (p
->status
));
1370 sprintf (tembuf
, " %d", (int) XFASTINT (tem
));
1371 write_string (tembuf
, -1);
1375 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
))
1376 remove_process (proc
);
1378 Findent_to (i_buffer
, minspace
);
1379 if (NILP (p
->buffer
))
1380 insert_string ("(none)");
1381 else if (NILP (XBUFFER (p
->buffer
)->name
))
1382 insert_string ("(Killed)");
1384 Finsert (1, &XBUFFER (p
->buffer
)->name
);
1388 Findent_to (i_tty
, minspace
);
1389 if (STRINGP (p
->tty_name
))
1390 Finsert (1, &p
->tty_name
);
1393 Findent_to (i_command
, minspace
);
1395 if (EQ (p
->status
, Qlisten
))
1397 Lisp_Object port
= Fplist_get (p
->childp
, QCservice
);
1398 if (INTEGERP (port
))
1399 port
= Fnumber_to_string (port
);
1401 port
= Fformat_network_address (Fplist_get (p
->childp
, QClocal
), Qnil
);
1402 sprintf (tembuf
, "(network %s server on %s)\n",
1403 (DATAGRAM_CHAN_P (XINT (p
->infd
)) ? "datagram" : "stream"),
1404 (STRINGP (port
) ? (char *)SDATA (port
) : "?"));
1405 insert_string (tembuf
);
1407 else if (NETCONN1_P (p
))
1409 /* For a local socket, there is no host name,
1410 so display service instead. */
1411 Lisp_Object host
= Fplist_get (p
->childp
, QChost
);
1412 if (!STRINGP (host
))
1414 host
= Fplist_get (p
->childp
, QCservice
);
1415 if (INTEGERP (host
))
1416 host
= Fnumber_to_string (host
);
1419 host
= Fformat_network_address (Fplist_get (p
->childp
, QCremote
), Qnil
);
1420 sprintf (tembuf
, "(network %s connection to %s)\n",
1421 (DATAGRAM_CHAN_P (XINT (p
->infd
)) ? "datagram" : "stream"),
1422 (STRINGP (host
) ? (char *)SDATA (host
) : "?"));
1423 insert_string (tembuf
);
1435 insert_string (" ");
1437 insert_string ("\n");
1443 DEFUN ("list-processes", Flist_processes
, Slist_processes
, 0, 1, "P",
1444 doc
: /* Display a list of all processes.
1445 If optional argument QUERY-ONLY is non-nil, only processes with
1446 the query-on-exit flag set will be listed.
1447 Any process listed as exited or signaled is actually eliminated
1448 after the listing is made. */)
1450 Lisp_Object query_only
;
1452 internal_with_output_to_temp_buffer ("*Process List*",
1453 list_processes_1
, query_only
);
1457 DEFUN ("process-list", Fprocess_list
, Sprocess_list
, 0, 0, 0,
1458 doc
: /* Return a list of all processes. */)
1461 return Fmapcar (Qcdr
, Vprocess_alist
);
1464 /* Starting asynchronous inferior processes. */
1466 static Lisp_Object
start_process_unwind ();
1468 DEFUN ("start-process", Fstart_process
, Sstart_process
, 3, MANY
, 0,
1469 doc
: /* Start a program in a subprocess. Return the process object for it.
1470 NAME is name for process. It is modified if necessary to make it unique.
1471 BUFFER is the buffer (or buffer name) to associate with the process.
1472 Process output goes at end of that buffer, unless you specify
1473 an output stream or filter function to handle the output.
1474 BUFFER may be also nil, meaning that this process is not associated
1476 PROGRAM is the program file name. It is searched for in PATH.
1477 Remaining arguments are strings to give program as arguments.
1479 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1482 register Lisp_Object
*args
;
1484 Lisp_Object buffer
, name
, program
, proc
, current_dir
, tem
;
1486 register unsigned char *new_argv
;
1489 register unsigned char **new_argv
;
1492 int count
= SPECPDL_INDEX ();
1496 buffer
= Fget_buffer_create (buffer
);
1498 /* Make sure that the child will be able to chdir to the current
1499 buffer's current directory, or its unhandled equivalent. We
1500 can't just have the child check for an error when it does the
1501 chdir, since it's in a vfork.
1503 We have to GCPRO around this because Fexpand_file_name and
1504 Funhandled_file_name_directory might call a file name handling
1505 function. The argument list is protected by the caller, so all
1506 we really have to worry about is buffer. */
1508 struct gcpro gcpro1
, gcpro2
;
1510 current_dir
= current_buffer
->directory
;
1512 GCPRO2 (buffer
, current_dir
);
1515 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir
),
1517 if (NILP (Ffile_accessible_directory_p (current_dir
)))
1518 report_file_error ("Setting current directory",
1519 Fcons (current_buffer
->directory
, Qnil
));
1525 CHECK_STRING (name
);
1529 CHECK_STRING (program
);
1531 proc
= make_process (name
);
1532 /* If an error occurs and we can't start the process, we want to
1533 remove it from the process list. This means that each error
1534 check in create_process doesn't need to call remove_process
1535 itself; it's all taken care of here. */
1536 record_unwind_protect (start_process_unwind
, proc
);
1538 XPROCESS (proc
)->childp
= Qt
;
1539 XPROCESS (proc
)->plist
= Qnil
;
1540 XPROCESS (proc
)->command_channel_p
= Qnil
;
1541 XPROCESS (proc
)->buffer
= buffer
;
1542 XPROCESS (proc
)->sentinel
= Qnil
;
1543 XPROCESS (proc
)->filter
= Qnil
;
1544 XPROCESS (proc
)->filter_multibyte
1545 = buffer_defaults
.enable_multibyte_characters
;
1546 XPROCESS (proc
)->command
= Flist (nargs
- 2, args
+ 2);
1548 #ifdef ADAPTIVE_READ_BUFFERING
1549 XPROCESS (proc
)->adaptive_read_buffering
= Vprocess_adaptive_read_buffering
;
1552 /* Make the process marker point into the process buffer (if any). */
1554 set_marker_both (XPROCESS (proc
)->mark
, buffer
,
1555 BUF_ZV (XBUFFER (buffer
)),
1556 BUF_ZV_BYTE (XBUFFER (buffer
)));
1559 /* Decide coding systems for communicating with the process. Here
1560 we don't setup the structure coding_system nor pay attention to
1561 unibyte mode. They are done in create_process. */
1563 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1564 Lisp_Object coding_systems
= Qt
;
1565 Lisp_Object val
, *args2
;
1566 struct gcpro gcpro1
, gcpro2
;
1568 val
= Vcoding_system_for_read
;
1571 args2
= (Lisp_Object
*) alloca ((nargs
+ 1) * sizeof *args2
);
1572 args2
[0] = Qstart_process
;
1573 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1574 GCPRO2 (proc
, current_dir
);
1575 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1577 if (CONSP (coding_systems
))
1578 val
= XCAR (coding_systems
);
1579 else if (CONSP (Vdefault_process_coding_system
))
1580 val
= XCAR (Vdefault_process_coding_system
);
1582 XPROCESS (proc
)->decode_coding_system
= val
;
1584 val
= Vcoding_system_for_write
;
1587 if (EQ (coding_systems
, Qt
))
1589 args2
= (Lisp_Object
*) alloca ((nargs
+ 1) * sizeof args2
);
1590 args2
[0] = Qstart_process
;
1591 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1592 GCPRO2 (proc
, current_dir
);
1593 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1596 if (CONSP (coding_systems
))
1597 val
= XCDR (coding_systems
);
1598 else if (CONSP (Vdefault_process_coding_system
))
1599 val
= XCDR (Vdefault_process_coding_system
);
1601 XPROCESS (proc
)->encode_coding_system
= val
;
1605 /* Make a one member argv with all args concatenated
1606 together separated by a blank. */
1607 len
= SBYTES (program
) + 2;
1608 for (i
= 3; i
< nargs
; i
++)
1612 len
+= SBYTES (tem
) + 1; /* count the blank */
1614 new_argv
= (unsigned char *) alloca (len
);
1615 strcpy (new_argv
, SDATA (program
));
1616 for (i
= 3; i
< nargs
; i
++)
1620 strcat (new_argv
, " ");
1621 strcat (new_argv
, SDATA (tem
));
1623 /* Need to add code here to check for program existence on VMS */
1626 new_argv
= (unsigned char **) alloca ((nargs
- 1) * sizeof (char *));
1628 /* If program file name is not absolute, search our path for it.
1629 Put the name we will really use in TEM. */
1630 if (!IS_DIRECTORY_SEP (SREF (program
, 0))
1631 && !(SCHARS (program
) > 1
1632 && IS_DEVICE_SEP (SREF (program
, 1))))
1634 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1637 GCPRO4 (name
, program
, buffer
, current_dir
);
1638 openp (Vexec_path
, program
, Vexec_suffixes
, &tem
, make_number (X_OK
));
1641 report_file_error ("Searching for program", Fcons (program
, Qnil
));
1642 tem
= Fexpand_file_name (tem
, Qnil
);
1646 if (!NILP (Ffile_directory_p (program
)))
1647 error ("Specified program for new process is a directory");
1651 /* If program file name starts with /: for quoting a magic name,
1653 if (SBYTES (tem
) > 2 && SREF (tem
, 0) == '/'
1654 && SREF (tem
, 1) == ':')
1655 tem
= Fsubstring (tem
, make_number (2), Qnil
);
1657 /* Encode the file name and put it in NEW_ARGV.
1658 That's where the child will use it to execute the program. */
1659 tem
= ENCODE_FILE (tem
);
1660 new_argv
[0] = SDATA (tem
);
1662 /* Here we encode arguments by the coding system used for sending
1663 data to the process. We don't support using different coding
1664 systems for encoding arguments and for encoding data sent to the
1667 for (i
= 3; i
< nargs
; i
++)
1671 if (STRING_MULTIBYTE (tem
))
1672 tem
= (code_convert_string_norecord
1673 (tem
, XPROCESS (proc
)->encode_coding_system
, 1));
1674 new_argv
[i
- 2] = SDATA (tem
);
1676 new_argv
[i
- 2] = 0;
1677 #endif /* not VMS */
1679 XPROCESS (proc
)->decoding_buf
= make_uninit_string (0);
1680 XPROCESS (proc
)->decoding_carryover
= make_number (0);
1681 XPROCESS (proc
)->encoding_buf
= make_uninit_string (0);
1682 XPROCESS (proc
)->encoding_carryover
= make_number (0);
1684 XPROCESS (proc
)->inherit_coding_system_flag
1685 = (NILP (buffer
) || !inherit_process_coding_system
1688 create_process (proc
, (char **) new_argv
, current_dir
);
1690 return unbind_to (count
, proc
);
1693 /* This function is the unwind_protect form for Fstart_process. If
1694 PROC doesn't have its pid set, then we know someone has signaled
1695 an error and the process wasn't started successfully, so we should
1696 remove it from the process list. */
1698 start_process_unwind (proc
)
1701 if (!PROCESSP (proc
))
1704 /* Was PROC started successfully? */
1705 if (XINT (XPROCESS (proc
)->pid
) <= 0)
1706 remove_process (proc
);
1712 create_process_1 (timer
)
1713 struct atimer
*timer
;
1715 /* Nothing to do. */
1719 #if 0 /* This doesn't work; see the note before sigchld_handler. */
1722 /* Mimic blocking of signals on system V, which doesn't really have it. */
1724 /* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1725 int sigchld_deferred
;
1728 create_process_sigchld ()
1730 signal (SIGCHLD
, create_process_sigchld
);
1732 sigchld_deferred
= 1;
1738 #ifndef VMS /* VMS version of this function is in vmsproc.c. */
1740 create_process (process
, new_argv
, current_dir
)
1741 Lisp_Object process
;
1743 Lisp_Object current_dir
;
1745 int pid
, inchannel
, outchannel
;
1747 #ifdef POSIX_SIGNALS
1750 struct sigaction sigint_action
;
1751 struct sigaction sigquit_action
;
1753 struct sigaction sighup_action
;
1755 #else /* !POSIX_SIGNALS */
1758 SIGTYPE (*sigchld
)();
1761 #endif /* !POSIX_SIGNALS */
1762 /* Use volatile to protect variables from being clobbered by longjmp. */
1763 volatile int forkin
, forkout
;
1764 volatile int pty_flag
= 0;
1766 extern char **environ
;
1769 inchannel
= outchannel
= -1;
1772 if (!NILP (Vprocess_connection_type
))
1773 outchannel
= inchannel
= allocate_pty ();
1777 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1778 /* On most USG systems it does not work to open the pty's tty here,
1779 then close it and reopen it in the child. */
1781 /* Don't let this terminal become our controlling terminal
1782 (in case we don't have one). */
1783 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
| O_NOCTTY
, 0);
1785 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
, 0);
1788 report_file_error ("Opening pty", Qnil
);
1790 forkin
= forkout
= -1;
1791 #endif /* not USG, or USG_SUBTTY_WORKS */
1795 #endif /* HAVE_PTYS */
1798 if (socketpair (AF_UNIX
, SOCK_STREAM
, 0, sv
) < 0)
1799 report_file_error ("Opening socketpair", Qnil
);
1800 outchannel
= inchannel
= sv
[0];
1801 forkout
= forkin
= sv
[1];
1803 #else /* not SKTPAIR */
1808 report_file_error ("Creating pipe", Qnil
);
1814 emacs_close (inchannel
);
1815 emacs_close (forkout
);
1816 report_file_error ("Creating pipe", Qnil
);
1821 #endif /* not SKTPAIR */
1824 /* Replaced by close_process_descs */
1825 set_exclusive_use (inchannel
);
1826 set_exclusive_use (outchannel
);
1829 /* Stride people say it's a mystery why this is needed
1830 as well as the O_NDELAY, but that it fails without this. */
1831 #if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS))
1834 ioctl (inchannel
, FIONBIO
, &one
);
1839 fcntl (inchannel
, F_SETFL
, O_NONBLOCK
);
1840 fcntl (outchannel
, F_SETFL
, O_NONBLOCK
);
1843 fcntl (inchannel
, F_SETFL
, O_NDELAY
);
1844 fcntl (outchannel
, F_SETFL
, O_NDELAY
);
1848 /* Record this as an active process, with its channels.
1849 As a result, child_setup will close Emacs's side of the pipes. */
1850 chan_process
[inchannel
] = process
;
1851 XSETINT (XPROCESS (process
)->infd
, inchannel
);
1852 XSETINT (XPROCESS (process
)->outfd
, outchannel
);
1854 /* Previously we recorded the tty descriptor used in the subprocess.
1855 It was only used for getting the foreground tty process, so now
1856 we just reopen the device (see emacs_get_tty_pgrp) as this is
1857 more portable (see USG_SUBTTY_WORKS above). */
1859 XPROCESS (process
)->pty_flag
= (pty_flag
? Qt
: Qnil
);
1860 XPROCESS (process
)->status
= Qrun
;
1861 setup_process_coding_systems (process
);
1863 /* Delay interrupts until we have a chance to store
1864 the new fork's pid in its process structure */
1865 #ifdef POSIX_SIGNALS
1866 sigemptyset (&blocked
);
1868 sigaddset (&blocked
, SIGCHLD
);
1870 #ifdef HAVE_WORKING_VFORK
1871 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
1872 this sets the parent's signal handlers as well as the child's.
1873 So delay all interrupts whose handlers the child might munge,
1874 and record the current handlers so they can be restored later. */
1875 sigaddset (&blocked
, SIGINT
); sigaction (SIGINT
, 0, &sigint_action
);
1876 sigaddset (&blocked
, SIGQUIT
); sigaction (SIGQUIT
, 0, &sigquit_action
);
1878 sigaddset (&blocked
, SIGHUP
); sigaction (SIGHUP
, 0, &sighup_action
);
1880 #endif /* HAVE_WORKING_VFORK */
1881 sigprocmask (SIG_BLOCK
, &blocked
, &procmask
);
1882 #else /* !POSIX_SIGNALS */
1886 #else /* not BSD4_1 */
1887 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
1888 sigsetmask (sigmask (SIGCHLD
));
1889 #else /* ordinary USG */
1891 sigchld_deferred
= 0;
1892 sigchld
= signal (SIGCHLD
, create_process_sigchld
);
1894 #endif /* ordinary USG */
1895 #endif /* not BSD4_1 */
1896 #endif /* SIGCHLD */
1897 #endif /* !POSIX_SIGNALS */
1899 FD_SET (inchannel
, &input_wait_mask
);
1900 FD_SET (inchannel
, &non_keyboard_wait_mask
);
1901 if (inchannel
> max_process_desc
)
1902 max_process_desc
= inchannel
;
1904 /* Until we store the proper pid, enable sigchld_handler
1905 to recognize an unknown pid as standing for this process.
1906 It is very important not to let this `marker' value stay
1907 in the table after this function has returned; if it does
1908 it might cause call-process to hang and subsequent asynchronous
1909 processes to get their return values scrambled. */
1910 XSETINT (XPROCESS (process
)->pid
, -1);
1915 /* child_setup must clobber environ on systems with true vfork.
1916 Protect it from permanent change. */
1917 char **save_environ
= environ
;
1919 current_dir
= ENCODE_FILE (current_dir
);
1924 #endif /* not WINDOWSNT */
1926 int xforkin
= forkin
;
1927 int xforkout
= forkout
;
1929 #if 0 /* This was probably a mistake--it duplicates code later on,
1930 but fails to handle all the cases. */
1931 /* Make sure SIGCHLD is not blocked in the child. */
1932 sigsetmask (SIGEMPTYMASK
);
1935 /* Make the pty be the controlling terminal of the process. */
1937 /* First, disconnect its current controlling terminal. */
1939 /* We tried doing setsid only if pty_flag, but it caused
1940 process_set_signal to fail on SGI when using a pipe. */
1942 /* Make the pty's terminal the controlling terminal. */
1946 /* We ignore the return value
1947 because faith@cs.unc.edu says that is necessary on Linux. */
1948 ioctl (xforkin
, TIOCSCTTY
, 0);
1951 #else /* not HAVE_SETSID */
1953 /* It's very important to call setpgrp here and no time
1954 afterwards. Otherwise, we lose our controlling tty which
1955 is set when we open the pty. */
1958 #endif /* not HAVE_SETSID */
1959 #if defined (HAVE_TERMIOS) && defined (LDISC1)
1960 if (pty_flag
&& xforkin
>= 0)
1963 tcgetattr (xforkin
, &t
);
1965 if (tcsetattr (xforkin
, TCSANOW
, &t
) < 0)
1966 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
1969 #if defined (NTTYDISC) && defined (TIOCSETD)
1970 if (pty_flag
&& xforkin
>= 0)
1972 /* Use new line discipline. */
1973 int ldisc
= NTTYDISC
;
1974 ioctl (xforkin
, TIOCSETD
, &ldisc
);
1979 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1980 can do TIOCSPGRP only to the process's controlling tty. */
1983 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1984 I can't test it since I don't have 4.3. */
1985 int j
= emacs_open ("/dev/tty", O_RDWR
, 0);
1986 ioctl (j
, TIOCNOTTY
, 0);
1989 /* In order to get a controlling terminal on some versions
1990 of BSD, it is necessary to put the process in pgrp 0
1991 before it opens the terminal. */
1999 #endif /* TIOCNOTTY */
2001 #if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
2002 /*** There is a suggestion that this ought to be a
2003 conditional on TIOCSPGRP,
2004 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
2005 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
2006 that system does seem to need this code, even though
2007 both HAVE_SETSID and TIOCSCTTY are defined. */
2008 /* Now close the pty (if we had it open) and reopen it.
2009 This makes the pty the controlling terminal of the subprocess. */
2012 #ifdef SET_CHILD_PTY_PGRP
2013 int pgrp
= getpid ();
2016 /* I wonder if emacs_close (emacs_open (pty_name, ...))
2019 emacs_close (xforkin
);
2020 xforkout
= xforkin
= emacs_open (pty_name
, O_RDWR
, 0);
2024 emacs_write (1, "Couldn't open the pty terminal ", 31);
2025 emacs_write (1, pty_name
, strlen (pty_name
));
2026 emacs_write (1, "\n", 1);
2030 #ifdef SET_CHILD_PTY_PGRP
2031 ioctl (xforkin
, TIOCSPGRP
, &pgrp
);
2032 ioctl (xforkout
, TIOCSPGRP
, &pgrp
);
2035 #endif /* not UNIPLUS and not RTU and not DONT_REOPEN_PTY */
2037 #ifdef SETUP_SLAVE_PTY
2042 #endif /* SETUP_SLAVE_PTY */
2044 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
2045 Now reenable it in the child, so it will die when we want it to. */
2047 signal (SIGHUP
, SIG_DFL
);
2049 #endif /* HAVE_PTYS */
2051 signal (SIGINT
, SIG_DFL
);
2052 signal (SIGQUIT
, SIG_DFL
);
2054 /* Stop blocking signals in the child. */
2055 #ifdef POSIX_SIGNALS
2056 sigprocmask (SIG_SETMASK
, &procmask
, 0);
2057 #else /* !POSIX_SIGNALS */
2061 #else /* not BSD4_1 */
2062 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
2063 sigsetmask (SIGEMPTYMASK
);
2064 #else /* ordinary USG */
2066 signal (SIGCHLD
, sigchld
);
2068 #endif /* ordinary USG */
2069 #endif /* not BSD4_1 */
2070 #endif /* SIGCHLD */
2071 #endif /* !POSIX_SIGNALS */
2074 child_setup_tty (xforkout
);
2076 pid
= child_setup (xforkin
, xforkout
, xforkout
,
2077 new_argv
, 1, current_dir
);
2078 #else /* not WINDOWSNT */
2079 child_setup (xforkin
, xforkout
, xforkout
,
2080 new_argv
, 1, current_dir
);
2081 #endif /* not WINDOWSNT */
2083 environ
= save_environ
;
2088 /* This runs in the Emacs process. */
2092 emacs_close (forkin
);
2093 if (forkin
!= forkout
&& forkout
>= 0)
2094 emacs_close (forkout
);
2098 /* vfork succeeded. */
2099 XSETFASTINT (XPROCESS (process
)->pid
, pid
);
2102 register_child (pid
, inchannel
);
2103 #endif /* WINDOWSNT */
2105 /* If the subfork execv fails, and it exits,
2106 this close hangs. I don't know why.
2107 So have an interrupt jar it loose. */
2109 struct atimer
*timer
;
2113 EMACS_SET_SECS_USECS (offset
, 1, 0);
2114 timer
= start_atimer (ATIMER_RELATIVE
, offset
, create_process_1
, 0);
2117 emacs_close (forkin
);
2119 cancel_atimer (timer
);
2123 if (forkin
!= forkout
&& forkout
>= 0)
2124 emacs_close (forkout
);
2128 XPROCESS (process
)->tty_name
= build_string (pty_name
);
2131 XPROCESS (process
)->tty_name
= Qnil
;
2134 /* Restore the signal state whether vfork succeeded or not.
2135 (We will signal an error, below, if it failed.) */
2136 #ifdef POSIX_SIGNALS
2137 #ifdef HAVE_WORKING_VFORK
2138 /* Restore the parent's signal handlers. */
2139 sigaction (SIGINT
, &sigint_action
, 0);
2140 sigaction (SIGQUIT
, &sigquit_action
, 0);
2142 sigaction (SIGHUP
, &sighup_action
, 0);
2144 #endif /* HAVE_WORKING_VFORK */
2145 /* Stop blocking signals in the parent. */
2146 sigprocmask (SIG_SETMASK
, &procmask
, 0);
2147 #else /* !POSIX_SIGNALS */
2151 #else /* not BSD4_1 */
2152 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
2153 sigsetmask (SIGEMPTYMASK
);
2154 #else /* ordinary USG */
2156 signal (SIGCHLD
, sigchld
);
2157 /* Now really handle any of these signals
2158 that came in during this function. */
2159 if (sigchld_deferred
)
2160 kill (getpid (), SIGCHLD
);
2162 #endif /* ordinary USG */
2163 #endif /* not BSD4_1 */
2164 #endif /* SIGCHLD */
2165 #endif /* !POSIX_SIGNALS */
2167 /* Now generate the error if vfork failed. */
2169 report_file_error ("Doing vfork", Qnil
);
2171 #endif /* not VMS */
2176 /* Convert an internal struct sockaddr to a lisp object (vector or string).
2177 The address family of sa is not included in the result. */
2180 conv_sockaddr_to_lisp (sa
, len
)
2181 struct sockaddr
*sa
;
2184 Lisp_Object address
;
2187 register struct Lisp_Vector
*p
;
2189 switch (sa
->sa_family
)
2193 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
2194 len
= sizeof (sin
->sin_addr
) + 1;
2195 address
= Fmake_vector (make_number (len
), Qnil
);
2196 p
= XVECTOR (address
);
2197 p
->contents
[--len
] = make_number (ntohs (sin
->sin_port
));
2198 cp
= (unsigned char *)&sin
->sin_addr
;
2201 #ifdef HAVE_LOCAL_SOCKETS
2204 struct sockaddr_un
*sockun
= (struct sockaddr_un
*) sa
;
2205 for (i
= 0; i
< sizeof (sockun
->sun_path
); i
++)
2206 if (sockun
->sun_path
[i
] == 0)
2208 return make_unibyte_string (sockun
->sun_path
, i
);
2212 len
-= sizeof (sa
->sa_family
);
2213 address
= Fcons (make_number (sa
->sa_family
),
2214 Fmake_vector (make_number (len
), Qnil
));
2215 p
= XVECTOR (XCDR (address
));
2216 cp
= (unsigned char *) sa
+ sizeof (sa
->sa_family
);
2222 p
->contents
[i
++] = make_number (*cp
++);
2228 /* Get family and required size for sockaddr structure to hold ADDRESS. */
2231 get_lisp_to_sockaddr_size (address
, familyp
)
2232 Lisp_Object address
;
2235 register struct Lisp_Vector
*p
;
2237 if (VECTORP (address
))
2239 p
= XVECTOR (address
);
2243 return sizeof (struct sockaddr_in
);
2246 #ifdef HAVE_LOCAL_SOCKETS
2247 else if (STRINGP (address
))
2249 *familyp
= AF_LOCAL
;
2250 return sizeof (struct sockaddr_un
);
2253 else if (CONSP (address
) && INTEGERP (XCAR (address
)) && VECTORP (XCDR (address
)))
2255 struct sockaddr
*sa
;
2256 *familyp
= XINT (XCAR (address
));
2257 p
= XVECTOR (XCDR (address
));
2258 return p
->size
+ sizeof (sa
->sa_family
);
2263 /* Convert an address object (vector or string) to an internal sockaddr.
2264 Format of address has already been validated by size_lisp_to_sockaddr. */
2267 conv_lisp_to_sockaddr (family
, address
, sa
, len
)
2269 Lisp_Object address
;
2270 struct sockaddr
*sa
;
2273 register struct Lisp_Vector
*p
;
2274 register unsigned char *cp
= NULL
;
2278 sa
->sa_family
= family
;
2280 if (VECTORP (address
))
2282 p
= XVECTOR (address
);
2283 if (family
== AF_INET
)
2285 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
2286 len
= sizeof (sin
->sin_addr
) + 1;
2287 i
= XINT (p
->contents
[--len
]);
2288 sin
->sin_port
= htons (i
);
2289 cp
= (unsigned char *)&sin
->sin_addr
;
2292 else if (STRINGP (address
))
2294 #ifdef HAVE_LOCAL_SOCKETS
2295 if (family
== AF_LOCAL
)
2297 struct sockaddr_un
*sockun
= (struct sockaddr_un
*) sa
;
2298 cp
= SDATA (address
);
2299 for (i
= 0; i
< sizeof (sockun
->sun_path
) && *cp
; i
++)
2300 sockun
->sun_path
[i
] = *cp
++;
2307 p
= XVECTOR (XCDR (address
));
2308 cp
= (unsigned char *)sa
+ sizeof (sa
->sa_family
);
2311 for (i
= 0; i
< len
; i
++)
2312 if (INTEGERP (p
->contents
[i
]))
2313 *cp
++ = XFASTINT (p
->contents
[i
]) & 0xff;
2316 #ifdef DATAGRAM_SOCKETS
2317 DEFUN ("process-datagram-address", Fprocess_datagram_address
, Sprocess_datagram_address
,
2319 doc
: /* Get the current datagram address associated with PROCESS. */)
2321 Lisp_Object process
;
2325 CHECK_PROCESS (process
);
2327 if (!DATAGRAM_CONN_P (process
))
2330 channel
= XINT (XPROCESS (process
)->infd
);
2331 return conv_sockaddr_to_lisp (datagram_address
[channel
].sa
,
2332 datagram_address
[channel
].len
);
2335 DEFUN ("set-process-datagram-address", Fset_process_datagram_address
, Sset_process_datagram_address
,
2337 doc
: /* Set the datagram address for PROCESS to ADDRESS.
2338 Returns nil upon error setting address, ADDRESS otherwise. */)
2340 Lisp_Object process
, address
;
2345 CHECK_PROCESS (process
);
2347 if (!DATAGRAM_CONN_P (process
))
2350 channel
= XINT (XPROCESS (process
)->infd
);
2352 len
= get_lisp_to_sockaddr_size (address
, &family
);
2353 if (datagram_address
[channel
].len
!= len
)
2355 conv_lisp_to_sockaddr (family
, address
, datagram_address
[channel
].sa
, len
);
2361 static struct socket_options
{
2362 /* The name of this option. Should be lowercase version of option
2363 name without SO_ prefix. */
2365 /* Option level SOL_... */
2367 /* Option number SO_... */
2369 enum { SOPT_UNKNOWN
, SOPT_BOOL
, SOPT_INT
, SOPT_IFNAME
, SOPT_LINGER
} opttype
;
2370 enum { OPIX_NONE
=0, OPIX_MISC
=1, OPIX_REUSEADDR
=2 } optbit
;
2371 } socket_options
[] =
2373 #ifdef SO_BINDTODEVICE
2374 { ":bindtodevice", SOL_SOCKET
, SO_BINDTODEVICE
, SOPT_IFNAME
, OPIX_MISC
},
2377 { ":broadcast", SOL_SOCKET
, SO_BROADCAST
, SOPT_BOOL
, OPIX_MISC
},
2380 { ":dontroute", SOL_SOCKET
, SO_DONTROUTE
, SOPT_BOOL
, OPIX_MISC
},
2383 { ":keepalive", SOL_SOCKET
, SO_KEEPALIVE
, SOPT_BOOL
, OPIX_MISC
},
2386 { ":linger", SOL_SOCKET
, SO_LINGER
, SOPT_LINGER
, OPIX_MISC
},
2389 { ":oobinline", SOL_SOCKET
, SO_OOBINLINE
, SOPT_BOOL
, OPIX_MISC
},
2392 { ":priority", SOL_SOCKET
, SO_PRIORITY
, SOPT_INT
, OPIX_MISC
},
2395 { ":reuseaddr", SOL_SOCKET
, SO_REUSEADDR
, SOPT_BOOL
, OPIX_REUSEADDR
},
2397 { 0, 0, 0, SOPT_UNKNOWN
, OPIX_NONE
}
2400 /* Set option OPT to value VAL on socket S.
2402 Returns (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
2403 Signals an error if setting a known option fails.
2407 set_socket_option (s
, opt
, val
)
2409 Lisp_Object opt
, val
;
2412 struct socket_options
*sopt
;
2417 name
= (char *) SDATA (SYMBOL_NAME (opt
));
2418 for (sopt
= socket_options
; sopt
->name
; sopt
++)
2419 if (strcmp (name
, sopt
->name
) == 0)
2422 switch (sopt
->opttype
)
2427 optval
= NILP (val
) ? 0 : 1;
2428 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2429 &optval
, sizeof (optval
));
2437 optval
= XINT (val
);
2439 error ("Bad option value for %s", name
);
2440 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2441 &optval
, sizeof (optval
));
2445 #ifdef SO_BINDTODEVICE
2448 char devname
[IFNAMSIZ
+1];
2450 /* This is broken, at least in the Linux 2.4 kernel.
2451 To unbind, the arg must be a zero integer, not the empty string.
2452 This should work on all systems. KFS. 2003-09-23. */
2453 bzero (devname
, sizeof devname
);
2456 char *arg
= (char *) SDATA (val
);
2457 int len
= min (strlen (arg
), IFNAMSIZ
);
2458 bcopy (arg
, devname
, len
);
2460 else if (!NILP (val
))
2461 error ("Bad option value for %s", name
);
2462 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2471 struct linger linger
;
2474 linger
.l_linger
= 0;
2476 linger
.l_linger
= XINT (val
);
2478 linger
.l_onoff
= NILP (val
) ? 0 : 1;
2479 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2480 &linger
, sizeof (linger
));
2490 report_file_error ("Cannot set network option",
2491 Fcons (opt
, Fcons (val
, Qnil
)));
2492 return (1 << sopt
->optbit
);
2496 DEFUN ("set-network-process-option",
2497 Fset_network_process_option
, Sset_network_process_option
,
2499 doc
: /* For network process PROCESS set option OPTION to value VALUE.
2500 See `make-network-process' for a list of options and values.
2501 If optional fourth arg NO-ERROR is non-nil, don't signal an error if
2502 OPTION is not a supported option, return nil instead; otherwise return t. */)
2503 (process
, option
, value
, no_error
)
2504 Lisp_Object process
, option
, value
;
2505 Lisp_Object no_error
;
2508 struct Lisp_Process
*p
;
2510 CHECK_PROCESS (process
);
2511 p
= XPROCESS (process
);
2512 if (!NETCONN1_P (p
))
2513 error ("Process is not a network process");
2517 error ("Process is not running");
2519 if (set_socket_option (s
, option
, value
))
2521 p
->childp
= Fplist_put (p
->childp
, option
, value
);
2525 if (NILP (no_error
))
2526 error ("Unknown or unsupported option");
2532 /* A version of request_sigio suitable for a record_unwind_protect. */
2535 unwind_request_sigio (dummy
)
2538 if (interrupt_input
)
2543 /* Create a network stream/datagram client/server process. Treated
2544 exactly like a normal process when reading and writing. Primary
2545 differences are in status display and process deletion. A network
2546 connection has no PID; you cannot signal it. All you can do is
2547 stop/continue it and deactivate/close it via delete-process */
2549 DEFUN ("make-network-process", Fmake_network_process
, Smake_network_process
,
2551 doc
: /* Create and return a network server or client process.
2553 In Emacs, network connections are represented by process objects, so
2554 input and output work as for subprocesses and `delete-process' closes
2555 a network connection. However, a network process has no process id,
2556 it cannot be signalled, and the status codes are different from normal
2559 Arguments are specified as keyword/argument pairs. The following
2560 arguments are defined:
2562 :name NAME -- NAME is name for process. It is modified if necessary
2565 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2566 with the process. Process output goes at end of that buffer, unless
2567 you specify an output stream or filter function to handle the output.
2568 BUFFER may be also nil, meaning that this process is not associated
2571 :host HOST -- HOST is name of the host to connect to, or its IP
2572 address. The symbol `local' specifies the local host. If specified
2573 for a server process, it must be a valid name or address for the local
2574 host, and only clients connecting to that address will be accepted.
2576 :service SERVICE -- SERVICE is name of the service desired, or an
2577 integer specifying a port number to connect to. If SERVICE is t,
2578 a random port number is selected for the server.
2580 :type TYPE -- TYPE is the type of connection. The default (nil) is a
2581 stream type connection, `datagram' creates a datagram type connection.
2583 :family FAMILY -- FAMILY is the address (and protocol) family for the
2584 service specified by HOST and SERVICE. The default address family is
2585 Inet (or IPv4) for the host and port number specified by HOST and
2586 SERVICE. Other address families supported are:
2587 local -- for a local (i.e. UNIX) address specified by SERVICE.
2589 :local ADDRESS -- ADDRESS is the local address used for the connection.
2590 This parameter is ignored when opening a client process. When specified
2591 for a server process, the FAMILY, HOST and SERVICE args are ignored.
2593 :remote ADDRESS -- ADDRESS is the remote partner's address for the
2594 connection. This parameter is ignored when opening a stream server
2595 process. For a datagram server process, it specifies the initial
2596 setting of the remote datagram address. When specified for a client
2597 process, the FAMILY, HOST, and SERVICE args are ignored.
2599 The format of ADDRESS depends on the address family:
2600 - An IPv4 address is represented as an vector of integers [A B C D P]
2601 corresponding to numeric IP address A.B.C.D and port number P.
2602 - A local address is represented as a string with the address in the
2603 local address space.
2604 - An "unsupported family" address is represented by a cons (F . AV)
2605 where F is the family number and AV is a vector containing the socket
2606 address data with one element per address data byte. Do not rely on
2607 this format in portable code, as it may depend on implementation
2608 defined constants, data sizes, and data structure alignment.
2610 :coding CODING -- If CODING is a symbol, it specifies the coding
2611 system used for both reading and writing for this process. If CODING
2612 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2613 ENCODING is used for writing.
2615 :nowait BOOL -- If BOOL is non-nil for a stream type client process,
2616 return without waiting for the connection to complete; instead, the
2617 sentinel function will be called with second arg matching "open" (if
2618 successful) or "failed" when the connect completes. Default is to use
2619 a blocking connect (i.e. wait) for stream type connections.
2621 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
2622 running when Emacs is exited.
2624 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
2625 In the stopped state, a server process does not accept new
2626 connections, and a client process does not handle incoming traffic.
2627 The stopped state is cleared by `continue-process' and set by
2630 :filter FILTER -- Install FILTER as the process filter.
2632 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
2633 process filter are multibyte, otherwise they are unibyte.
2634 If this keyword is not specified, the strings are multibyte iff
2635 `default-enable-multibyte-characters' is non-nil.
2637 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2639 :log LOG -- Install LOG as the server process log function. This
2640 function is called when the server accepts a network connection from a
2641 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
2642 is the server process, CLIENT is the new process for the connection,
2643 and MESSAGE is a string.
2645 :plist PLIST -- Install PLIST as the new process' initial plist.
2647 :server QLEN -- if QLEN is non-nil, create a server process for the
2648 specified FAMILY, SERVICE, and connection type (stream or datagram).
2649 If QLEN is an integer, it is used as the max. length of the server's
2650 pending connection queue (also known as the backlog); the default
2651 queue length is 5. Default is to create a client process.
2653 The following network options can be specified for this connection:
2655 :broadcast BOOL -- Allow send and receive of datagram broadcasts.
2656 :dontroute BOOL -- Only send to directly connected hosts.
2657 :keepalive BOOL -- Send keep-alive messages on network stream.
2658 :linger BOOL or TIMEOUT -- Send queued messages before closing.
2659 :oobinline BOOL -- Place out-of-band data in receive data stream.
2660 :priority INT -- Set protocol defined priority for sent packets.
2661 :reuseaddr BOOL -- Allow reusing a recently used local address
2662 (this is allowed by default for a server process).
2663 :bindtodevice NAME -- bind to interface NAME. Using this may require
2664 special privileges on some systems.
2666 Consult the relevant system programmer's manual pages for more
2667 information on using these options.
2670 A server process will listen for and accept connections from clients.
2671 When a client connection is accepted, a new network process is created
2672 for the connection with the following parameters:
2674 - The client's process name is constructed by concatenating the server
2675 process' NAME and a client identification string.
2676 - If the FILTER argument is non-nil, the client process will not get a
2677 separate process buffer; otherwise, the client's process buffer is a newly
2678 created buffer named after the server process' BUFFER name or process
2679 NAME concatenated with the client identification string.
2680 - The connection type and the process filter and sentinel parameters are
2681 inherited from the server process' TYPE, FILTER and SENTINEL.
2682 - The client process' contact info is set according to the client's
2683 addressing information (typically an IP address and a port number).
2684 - The client process' plist is initialized from the server's plist.
2686 Notice that the FILTER and SENTINEL args are never used directly by
2687 the server process. Also, the BUFFER argument is not used directly by
2688 the server process, but via the optional :log function, accepted (and
2689 failed) connections may be logged in the server process' buffer.
2691 The original argument list, modified with the actual connection
2692 information, is available via the `process-contact' function.
2694 usage: (make-network-process &rest ARGS) */)
2700 Lisp_Object contact
;
2701 struct Lisp_Process
*p
;
2702 #ifdef HAVE_GETADDRINFO
2703 struct addrinfo ai
, *res
, *lres
;
2704 struct addrinfo hints
;
2705 char *portstring
, portbuf
[128];
2706 #else /* HAVE_GETADDRINFO */
2707 struct _emacs_addrinfo
2713 struct sockaddr
*ai_addr
;
2714 struct _emacs_addrinfo
*ai_next
;
2716 #endif /* HAVE_GETADDRINFO */
2717 struct sockaddr_in address_in
;
2718 #ifdef HAVE_LOCAL_SOCKETS
2719 struct sockaddr_un address_un
;
2724 int s
= -1, outch
, inch
;
2725 struct gcpro gcpro1
;
2726 int count
= SPECPDL_INDEX ();
2728 Lisp_Object QCaddress
; /* one of QClocal or QCremote */
2730 Lisp_Object name
, buffer
, host
, service
, address
;
2731 Lisp_Object filter
, sentinel
;
2732 int is_non_blocking_client
= 0;
2733 int is_server
= 0, backlog
= 5;
2740 /* Save arguments for process-contact and clone-process. */
2741 contact
= Flist (nargs
, args
);
2745 /* Ensure socket support is loaded if available. */
2746 init_winsock (TRUE
);
2749 /* :type TYPE (nil: stream, datagram */
2750 tem
= Fplist_get (contact
, QCtype
);
2752 socktype
= SOCK_STREAM
;
2753 #ifdef DATAGRAM_SOCKETS
2754 else if (EQ (tem
, Qdatagram
))
2755 socktype
= SOCK_DGRAM
;
2758 error ("Unsupported connection type");
2761 tem
= Fplist_get (contact
, QCserver
);
2764 /* Don't support network sockets when non-blocking mode is
2765 not available, since a blocked Emacs is not useful. */
2766 #if defined(TERM) || (!defined(O_NONBLOCK) && !defined(O_NDELAY))
2767 error ("Network servers not supported");
2771 backlog
= XINT (tem
);
2775 /* Make QCaddress an alias for :local (server) or :remote (client). */
2776 QCaddress
= is_server
? QClocal
: QCremote
;
2779 if (!is_server
&& socktype
== SOCK_STREAM
2780 && (tem
= Fplist_get (contact
, QCnowait
), !NILP (tem
)))
2782 #ifndef NON_BLOCKING_CONNECT
2783 error ("Non-blocking connect not supported");
2785 is_non_blocking_client
= 1;
2789 name
= Fplist_get (contact
, QCname
);
2790 buffer
= Fplist_get (contact
, QCbuffer
);
2791 filter
= Fplist_get (contact
, QCfilter
);
2792 sentinel
= Fplist_get (contact
, QCsentinel
);
2794 CHECK_STRING (name
);
2797 /* Let's handle TERM before things get complicated ... */
2798 host
= Fplist_get (contact
, QChost
);
2799 CHECK_STRING (host
);
2801 service
= Fplist_get (contact
, QCservice
);
2802 if (INTEGERP (service
))
2803 port
= htons ((unsigned short) XINT (service
));
2806 struct servent
*svc_info
;
2807 CHECK_STRING (service
);
2808 svc_info
= getservbyname (SDATA (service
), "tcp");
2810 error ("Unknown service: %s", SDATA (service
));
2811 port
= svc_info
->s_port
;
2814 s
= connect_server (0);
2816 report_file_error ("error creating socket", Fcons (name
, Qnil
));
2817 send_command (s
, C_PORT
, 0, "%s:%d", SDATA (host
), ntohs (port
));
2818 send_command (s
, C_DUMB
, 1, 0);
2820 #else /* not TERM */
2822 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
2823 ai
.ai_socktype
= socktype
;
2828 /* :local ADDRESS or :remote ADDRESS */
2829 address
= Fplist_get (contact
, QCaddress
);
2830 if (!NILP (address
))
2832 host
= service
= Qnil
;
2834 if (!(ai
.ai_addrlen
= get_lisp_to_sockaddr_size (address
, &family
)))
2835 error ("Malformed :address");
2836 ai
.ai_family
= family
;
2837 ai
.ai_addr
= alloca (ai
.ai_addrlen
);
2838 conv_lisp_to_sockaddr (family
, address
, ai
.ai_addr
, ai
.ai_addrlen
);
2842 /* :family FAMILY -- nil (for Inet), local, or integer. */
2843 tem
= Fplist_get (contact
, QCfamily
);
2845 family
= XINT (tem
);
2850 #ifdef HAVE_LOCAL_SOCKETS
2851 else if (EQ (tem
, Qlocal
))
2856 error ("Unknown address family");
2857 ai
.ai_family
= family
;
2859 /* :service SERVICE -- string, integer (port number), or t (random port). */
2860 service
= Fplist_get (contact
, QCservice
);
2862 #ifdef HAVE_LOCAL_SOCKETS
2863 if (family
== AF_LOCAL
)
2865 /* Host is not used. */
2867 CHECK_STRING (service
);
2868 bzero (&address_un
, sizeof address_un
);
2869 address_un
.sun_family
= AF_LOCAL
;
2870 strncpy (address_un
.sun_path
, SDATA (service
), sizeof address_un
.sun_path
);
2871 ai
.ai_addr
= (struct sockaddr
*) &address_un
;
2872 ai
.ai_addrlen
= sizeof address_un
;
2877 /* :host HOST -- hostname, ip address, or 'local for localhost. */
2878 host
= Fplist_get (contact
, QChost
);
2881 if (EQ (host
, Qlocal
))
2882 host
= build_string ("localhost");
2883 CHECK_STRING (host
);
2886 /* Slow down polling to every ten seconds.
2887 Some kernels have a bug which causes retrying connect to fail
2888 after a connect. Polling can interfere with gethostbyname too. */
2889 #ifdef POLL_FOR_INPUT
2890 if (socktype
== SOCK_STREAM
)
2892 record_unwind_protect (unwind_stop_other_atimers
, Qnil
);
2893 bind_polling_period (10);
2897 #ifdef HAVE_GETADDRINFO
2898 /* If we have a host, use getaddrinfo to resolve both host and service.
2899 Otherwise, use getservbyname to lookup the service. */
2903 /* SERVICE can either be a string or int.
2904 Convert to a C string for later use by getaddrinfo. */
2905 if (EQ (service
, Qt
))
2907 else if (INTEGERP (service
))
2909 sprintf (portbuf
, "%ld", (long) XINT (service
));
2910 portstring
= portbuf
;
2914 CHECK_STRING (service
);
2915 portstring
= SDATA (service
);
2920 memset (&hints
, 0, sizeof (hints
));
2922 hints
.ai_family
= NILP (Fplist_member (contact
, QCfamily
)) ? AF_UNSPEC
: family
;
2923 hints
.ai_socktype
= socktype
;
2924 hints
.ai_protocol
= 0;
2925 ret
= getaddrinfo (SDATA (host
), portstring
, &hints
, &res
);
2927 #ifdef HAVE_GAI_STRERROR
2928 error ("%s/%s %s", SDATA (host
), portstring
, gai_strerror(ret
));
2930 error ("%s/%s getaddrinfo error %d", SDATA (host
), portstring
, ret
);
2936 #endif /* HAVE_GETADDRINFO */
2938 /* We end up here if getaddrinfo is not defined, or in case no hostname
2939 has been specified (e.g. for a local server process). */
2941 if (EQ (service
, Qt
))
2943 else if (INTEGERP (service
))
2944 port
= htons ((unsigned short) XINT (service
));
2947 struct servent
*svc_info
;
2948 CHECK_STRING (service
);
2949 svc_info
= getservbyname (SDATA (service
),
2950 (socktype
== SOCK_DGRAM
? "udp" : "tcp"));
2952 error ("Unknown service: %s", SDATA (service
));
2953 port
= svc_info
->s_port
;
2956 bzero (&address_in
, sizeof address_in
);
2957 address_in
.sin_family
= family
;
2958 address_in
.sin_addr
.s_addr
= INADDR_ANY
;
2959 address_in
.sin_port
= port
;
2961 #ifndef HAVE_GETADDRINFO
2964 struct hostent
*host_info_ptr
;
2966 /* gethostbyname may fail with TRY_AGAIN, but we don't honour that,
2967 as it may `hang' Emacs for a very long time. */
2970 host_info_ptr
= gethostbyname (SDATA (host
));
2975 bcopy (host_info_ptr
->h_addr
, (char *) &address_in
.sin_addr
,
2976 host_info_ptr
->h_length
);
2977 family
= host_info_ptr
->h_addrtype
;
2978 address_in
.sin_family
= family
;
2981 /* Attempt to interpret host as numeric inet address */
2983 IN_ADDR numeric_addr
;
2984 numeric_addr
= inet_addr ((char *) SDATA (host
));
2985 if (NUMERIC_ADDR_ERROR
)
2986 error ("Unknown host \"%s\"", SDATA (host
));
2988 bcopy ((char *)&numeric_addr
, (char *) &address_in
.sin_addr
,
2989 sizeof (address_in
.sin_addr
));
2993 #endif /* not HAVE_GETADDRINFO */
2995 ai
.ai_family
= family
;
2996 ai
.ai_addr
= (struct sockaddr
*) &address_in
;
2997 ai
.ai_addrlen
= sizeof address_in
;
3001 /* Kernel bugs (on Ultrix at least) cause lossage (not just EINTR)
3002 when connect is interrupted. So let's not let it get interrupted.
3003 Note we do not turn off polling, because polling is only used
3004 when not interrupt_input, and thus not normally used on the systems
3005 which have this bug. On systems which use polling, there's no way
3006 to quit if polling is turned off. */
3008 && !is_server
&& socktype
== SOCK_STREAM
)
3010 /* Comment from KFS: The original open-network-stream code
3011 didn't unwind protect this, but it seems like the proper
3012 thing to do. In any case, I don't see how it could harm to
3013 do this -- and it makes cleanup (using unbind_to) easier. */
3014 record_unwind_protect (unwind_request_sigio
, Qnil
);
3018 /* Do this in case we never enter the for-loop below. */
3019 count1
= SPECPDL_INDEX ();
3022 for (lres
= res
; lres
; lres
= lres
->ai_next
)
3028 s
= socket (lres
->ai_family
, lres
->ai_socktype
, lres
->ai_protocol
);
3035 #ifdef DATAGRAM_SOCKETS
3036 if (!is_server
&& socktype
== SOCK_DGRAM
)
3038 #endif /* DATAGRAM_SOCKETS */
3040 #ifdef NON_BLOCKING_CONNECT
3041 if (is_non_blocking_client
)
3044 ret
= fcntl (s
, F_SETFL
, O_NONBLOCK
);
3046 ret
= fcntl (s
, F_SETFL
, O_NDELAY
);
3058 /* Make us close S if quit. */
3059 record_unwind_protect (close_file_unwind
, make_number (s
));
3061 /* Parse network options in the arg list.
3062 We simply ignore anything which isn't a known option (including other keywords).
3063 An error is signalled if setting a known option fails. */
3064 for (optn
= optbits
= 0; optn
< nargs
-1; optn
+= 2)
3065 optbits
|= set_socket_option (s
, args
[optn
], args
[optn
+1]);
3069 /* Configure as a server socket. */
3071 /* SO_REUSEADDR = 1 is default for server sockets; must specify
3072 explicit :reuseaddr key to override this. */
3073 #ifdef HAVE_LOCAL_SOCKETS
3074 if (family
!= AF_LOCAL
)
3076 if (!(optbits
& (1 << OPIX_REUSEADDR
)))
3079 if (setsockopt (s
, SOL_SOCKET
, SO_REUSEADDR
, &optval
, sizeof optval
))
3080 report_file_error ("Cannot set reuse option on server socket", Qnil
);
3083 if (bind (s
, lres
->ai_addr
, lres
->ai_addrlen
))
3084 report_file_error ("Cannot bind server socket", Qnil
);
3086 #ifdef HAVE_GETSOCKNAME
3087 if (EQ (service
, Qt
))
3089 struct sockaddr_in sa1
;
3090 int len1
= sizeof (sa1
);
3091 if (getsockname (s
, (struct sockaddr
*)&sa1
, &len1
) == 0)
3093 ((struct sockaddr_in
*)(lres
->ai_addr
))->sin_port
= sa1
.sin_port
;
3094 service
= make_number (ntohs (sa1
.sin_port
));
3095 contact
= Fplist_put (contact
, QCservice
, service
);
3100 if (socktype
== SOCK_STREAM
&& listen (s
, backlog
))
3101 report_file_error ("Cannot listen on server socket", Qnil
);
3109 /* This turns off all alarm-based interrupts; the
3110 bind_polling_period call above doesn't always turn all the
3111 short-interval ones off, especially if interrupt_input is
3114 It'd be nice to be able to control the connect timeout
3115 though. Would non-blocking connect calls be portable?
3117 This used to be conditioned by HAVE_GETADDRINFO. Why? */
3119 turn_on_atimers (0);
3121 ret
= connect (s
, lres
->ai_addr
, lres
->ai_addrlen
);
3124 turn_on_atimers (1);
3126 if (ret
== 0 || xerrno
== EISCONN
)
3128 /* The unwind-protect will be discarded afterwards.
3129 Likewise for immediate_quit. */
3133 #ifdef NON_BLOCKING_CONNECT
3135 if (is_non_blocking_client
&& xerrno
== EINPROGRESS
)
3139 if (is_non_blocking_client
&& xerrno
== EWOULDBLOCK
)
3147 /* Discard the unwind protect closing S. */
3148 specpdl_ptr
= specpdl
+ count1
;
3152 if (xerrno
== EINTR
)
3158 #ifdef DATAGRAM_SOCKETS
3159 if (socktype
== SOCK_DGRAM
)
3161 if (datagram_address
[s
].sa
)
3163 datagram_address
[s
].sa
= (struct sockaddr
*) xmalloc (lres
->ai_addrlen
);
3164 datagram_address
[s
].len
= lres
->ai_addrlen
;
3168 bzero (datagram_address
[s
].sa
, lres
->ai_addrlen
);
3169 if (remote
= Fplist_get (contact
, QCremote
), !NILP (remote
))
3172 rlen
= get_lisp_to_sockaddr_size (remote
, &rfamily
);
3173 if (rfamily
== lres
->ai_family
&& rlen
== lres
->ai_addrlen
)
3174 conv_lisp_to_sockaddr (rfamily
, remote
,
3175 datagram_address
[s
].sa
, rlen
);
3179 bcopy (lres
->ai_addr
, datagram_address
[s
].sa
, lres
->ai_addrlen
);
3182 contact
= Fplist_put (contact
, QCaddress
,
3183 conv_sockaddr_to_lisp (lres
->ai_addr
, lres
->ai_addrlen
));
3184 #ifdef HAVE_GETSOCKNAME
3187 struct sockaddr_in sa1
;
3188 int len1
= sizeof (sa1
);
3189 if (getsockname (s
, (struct sockaddr
*)&sa1
, &len1
) == 0)
3190 contact
= Fplist_put (contact
, QClocal
,
3191 conv_sockaddr_to_lisp (&sa1
, len1
));
3196 #ifdef HAVE_GETADDRINFO
3203 /* Discard the unwind protect for closing S, if any. */
3204 specpdl_ptr
= specpdl
+ count1
;
3206 /* Unwind bind_polling_period and request_sigio. */
3207 unbind_to (count
, Qnil
);
3211 /* If non-blocking got this far - and failed - assume non-blocking is
3212 not supported after all. This is probably a wrong assumption, but
3213 the normal blocking calls to open-network-stream handles this error
3215 if (is_non_blocking_client
)
3220 report_file_error ("make server process failed", contact
);
3222 report_file_error ("make client process failed", contact
);
3225 #endif /* not TERM */
3231 buffer
= Fget_buffer_create (buffer
);
3232 proc
= make_process (name
);
3234 chan_process
[inch
] = proc
;
3237 fcntl (inch
, F_SETFL
, O_NONBLOCK
);
3240 fcntl (inch
, F_SETFL
, O_NDELAY
);
3244 p
= XPROCESS (proc
);
3246 p
->childp
= contact
;
3247 p
->plist
= Fcopy_sequence (Fplist_get (contact
, QCplist
));
3250 p
->sentinel
= sentinel
;
3252 p
->filter_multibyte
= buffer_defaults
.enable_multibyte_characters
;
3253 /* Override the above only if :filter-multibyte is specified. */
3254 if (! NILP (Fplist_member (contact
, QCfilter_multibyte
)))
3255 p
->filter_multibyte
= Fplist_get (contact
, QCfilter_multibyte
);
3256 p
->log
= Fplist_get (contact
, QClog
);
3257 if (tem
= Fplist_get (contact
, QCnoquery
), !NILP (tem
))
3258 p
->kill_without_query
= Qt
;
3259 if ((tem
= Fplist_get (contact
, QCstop
), !NILP (tem
)))
3262 XSETINT (p
->infd
, inch
);
3263 XSETINT (p
->outfd
, outch
);
3264 if (is_server
&& socktype
== SOCK_STREAM
)
3265 p
->status
= Qlisten
;
3267 #ifdef NON_BLOCKING_CONNECT
3268 if (is_non_blocking_client
)
3270 /* We may get here if connect did succeed immediately. However,
3271 in that case, we still need to signal this like a non-blocking
3273 p
->status
= Qconnect
;
3274 if (!FD_ISSET (inch
, &connect_wait_mask
))
3276 FD_SET (inch
, &connect_wait_mask
);
3277 num_pending_connects
++;
3282 /* A server may have a client filter setting of Qt, but it must
3283 still listen for incoming connects unless it is stopped. */
3284 if ((!EQ (p
->filter
, Qt
) && !EQ (p
->command
, Qt
))
3285 || (EQ (p
->status
, Qlisten
) && NILP (p
->command
)))
3287 FD_SET (inch
, &input_wait_mask
);
3288 FD_SET (inch
, &non_keyboard_wait_mask
);
3291 if (inch
> max_process_desc
)
3292 max_process_desc
= inch
;
3294 tem
= Fplist_member (contact
, QCcoding
);
3295 if (!NILP (tem
) && (!CONSP (tem
) || !CONSP (XCDR (tem
))))
3296 tem
= Qnil
; /* No error message (too late!). */
3299 /* Setup coding systems for communicating with the network stream. */
3300 struct gcpro gcpro1
;
3301 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3302 Lisp_Object coding_systems
= Qt
;
3303 Lisp_Object args
[5], val
;
3307 val
= XCAR (XCDR (tem
));
3311 else if (!NILP (Vcoding_system_for_read
))
3312 val
= Vcoding_system_for_read
;
3313 else if ((!NILP (buffer
) && NILP (XBUFFER (buffer
)->enable_multibyte_characters
))
3314 || (NILP (buffer
) && NILP (buffer_defaults
.enable_multibyte_characters
)))
3315 /* We dare not decode end-of-line format by setting VAL to
3316 Qraw_text, because the existing Emacs Lisp libraries
3317 assume that they receive bare code including a sequene of
3322 if (NILP (host
) || NILP (service
))
3323 coding_systems
= Qnil
;
3326 args
[0] = Qopen_network_stream
, args
[1] = name
,
3327 args
[2] = buffer
, args
[3] = host
, args
[4] = service
;
3329 coding_systems
= Ffind_operation_coding_system (5, args
);
3332 if (CONSP (coding_systems
))
3333 val
= XCAR (coding_systems
);
3334 else if (CONSP (Vdefault_process_coding_system
))
3335 val
= XCAR (Vdefault_process_coding_system
);
3339 p
->decode_coding_system
= val
;
3343 val
= XCAR (XCDR (tem
));
3347 else if (!NILP (Vcoding_system_for_write
))
3348 val
= Vcoding_system_for_write
;
3349 else if (NILP (current_buffer
->enable_multibyte_characters
))
3353 if (EQ (coding_systems
, Qt
))
3355 if (NILP (host
) || NILP (service
))
3356 coding_systems
= Qnil
;
3359 args
[0] = Qopen_network_stream
, args
[1] = name
,
3360 args
[2] = buffer
, args
[3] = host
, args
[4] = service
;
3362 coding_systems
= Ffind_operation_coding_system (5, args
);
3366 if (CONSP (coding_systems
))
3367 val
= XCDR (coding_systems
);
3368 else if (CONSP (Vdefault_process_coding_system
))
3369 val
= XCDR (Vdefault_process_coding_system
);
3373 p
->encode_coding_system
= val
;
3375 setup_process_coding_systems (proc
);
3377 p
->decoding_buf
= make_uninit_string (0);
3378 p
->decoding_carryover
= make_number (0);
3379 p
->encoding_buf
= make_uninit_string (0);
3380 p
->encoding_carryover
= make_number (0);
3382 p
->inherit_coding_system_flag
3383 = (!NILP (tem
) || NILP (buffer
) || !inherit_process_coding_system
3389 #endif /* HAVE_SOCKETS */
3392 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
3395 DEFUN ("network-interface-list", Fnetwork_interface_list
, Snetwork_interface_list
, 0, 0, 0,
3396 doc
: /* Return an alist of all network interfaces and their network address.
3397 Each element is a cons, the car of which is a string containing the
3398 interface name, and the cdr is the network address in internal
3399 format; see the description of ADDRESS in `make-network-process'. */)
3402 struct ifconf ifconf
;
3403 struct ifreq
*ifreqs
= NULL
;
3408 s
= socket (AF_INET
, SOCK_STREAM
, 0);
3414 buf_size
= ifaces
* sizeof(ifreqs
[0]);
3415 ifreqs
= (struct ifreq
*)xrealloc(ifreqs
, buf_size
);
3422 ifconf
.ifc_len
= buf_size
;
3423 ifconf
.ifc_req
= ifreqs
;
3424 if (ioctl (s
, SIOCGIFCONF
, &ifconf
))
3430 if (ifconf
.ifc_len
== buf_size
)
3434 ifaces
= ifconf
.ifc_len
/ sizeof (ifreqs
[0]);
3437 while (--ifaces
>= 0)
3439 struct ifreq
*ifq
= &ifreqs
[ifaces
];
3440 char namebuf
[sizeof (ifq
->ifr_name
) + 1];
3441 if (ifq
->ifr_addr
.sa_family
!= AF_INET
)
3443 bcopy (ifq
->ifr_name
, namebuf
, sizeof (ifq
->ifr_name
));
3444 namebuf
[sizeof (ifq
->ifr_name
)] = 0;
3445 res
= Fcons (Fcons (build_string (namebuf
),
3446 conv_sockaddr_to_lisp (&ifq
->ifr_addr
,
3447 sizeof (struct sockaddr
))),
3453 #endif /* SIOCGIFCONF */
3455 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
3462 static struct ifflag_def ifflag_table
[] = {
3466 #ifdef IFF_BROADCAST
3467 { IFF_BROADCAST
, "broadcast" },
3470 { IFF_DEBUG
, "debug" },
3473 { IFF_LOOPBACK
, "loopback" },
3475 #ifdef IFF_POINTOPOINT
3476 { IFF_POINTOPOINT
, "pointopoint" },
3479 { IFF_RUNNING
, "running" },
3482 { IFF_NOARP
, "noarp" },
3485 { IFF_PROMISC
, "promisc" },
3487 #ifdef IFF_NOTRAILERS
3488 { IFF_NOTRAILERS
, "notrailers" },
3491 { IFF_ALLMULTI
, "allmulti" },
3494 { IFF_MASTER
, "master" },
3497 { IFF_SLAVE
, "slave" },
3499 #ifdef IFF_MULTICAST
3500 { IFF_MULTICAST
, "multicast" },
3503 { IFF_PORTSEL
, "portsel" },
3505 #ifdef IFF_AUTOMEDIA
3506 { IFF_AUTOMEDIA
, "automedia" },
3509 { IFF_DYNAMIC
, "dynamic" },
3514 DEFUN ("network-interface-info", Fnetwork_interface_info
, Snetwork_interface_info
, 1, 1, 0,
3515 doc
: /* Return information about network interface named IFNAME.
3516 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
3517 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
3518 NETMASK is the layer 3 network mask, HWADDR is the layer 2 addres, and
3519 FLAGS is the current flags of the interface. */)
3524 Lisp_Object res
= Qnil
;
3529 CHECK_STRING (ifname
);
3531 bzero (rq
.ifr_name
, sizeof rq
.ifr_name
);
3532 strncpy (rq
.ifr_name
, SDATA (ifname
), sizeof (rq
.ifr_name
));
3534 s
= socket (AF_INET
, SOCK_STREAM
, 0);
3539 #if defined(SIOCGIFFLAGS) && defined(HAVE_STRUCT_IFREQ_IFR_FLAGS)
3540 if (ioctl (s
, SIOCGIFFLAGS
, &rq
) == 0)
3542 int flags
= rq
.ifr_flags
;
3543 struct ifflag_def
*fp
;
3547 for (fp
= ifflag_table
; flags
!= 0 && fp
; fp
++)
3549 if (flags
& fp
->flag_bit
)
3551 elt
= Fcons (intern (fp
->flag_sym
), elt
);
3552 flags
-= fp
->flag_bit
;
3555 for (fnum
= 0; flags
&& fnum
< 32; fnum
++)
3557 if (flags
& (1 << fnum
))
3559 elt
= Fcons (make_number (fnum
), elt
);
3564 res
= Fcons (elt
, res
);
3567 #if defined(SIOCGIFHWADDR) && defined(HAVE_STRUCT_IFREQ_IFR_HWADDR)
3568 if (ioctl (s
, SIOCGIFHWADDR
, &rq
) == 0)
3570 Lisp_Object hwaddr
= Fmake_vector (make_number (6), Qnil
);
3571 register struct Lisp_Vector
*p
= XVECTOR (hwaddr
);
3575 for (n
= 0; n
< 6; n
++)
3576 p
->contents
[n
] = make_number (((unsigned char *)&rq
.ifr_hwaddr
.sa_data
[0])[n
]);
3577 elt
= Fcons (make_number (rq
.ifr_hwaddr
.sa_family
), hwaddr
);
3580 res
= Fcons (elt
, res
);
3583 #if defined(SIOCGIFNETMASK) && defined(ifr_netmask)
3584 if (ioctl (s
, SIOCGIFNETMASK
, &rq
) == 0)
3587 elt
= conv_sockaddr_to_lisp (&rq
.ifr_netmask
, sizeof (rq
.ifr_netmask
));
3590 res
= Fcons (elt
, res
);
3593 #if defined(SIOCGIFBRDADDR) && defined(HAVE_STRUCT_IFREQ_IFR_BROADADDR)
3594 if (ioctl (s
, SIOCGIFBRDADDR
, &rq
) == 0)
3597 elt
= conv_sockaddr_to_lisp (&rq
.ifr_broadaddr
, sizeof (rq
.ifr_broadaddr
));
3600 res
= Fcons (elt
, res
);
3603 #if defined(SIOCGIFADDR) && defined(HAVE_STRUCT_IFREQ_IFR_ADDR)
3604 if (ioctl (s
, SIOCGIFADDR
, &rq
) == 0)
3607 elt
= conv_sockaddr_to_lisp (&rq
.ifr_addr
, sizeof (rq
.ifr_addr
));
3610 res
= Fcons (elt
, res
);
3614 return any
? res
: Qnil
;
3617 #endif /* HAVE_SOCKETS */
3619 /* Turn off input and output for process PROC. */
3622 deactivate_process (proc
)
3625 register int inchannel
, outchannel
;
3626 register struct Lisp_Process
*p
= XPROCESS (proc
);
3628 inchannel
= XINT (p
->infd
);
3629 outchannel
= XINT (p
->outfd
);
3631 #ifdef ADAPTIVE_READ_BUFFERING
3632 if (XINT (p
->read_output_delay
) > 0)
3634 if (--process_output_delay_count
< 0)
3635 process_output_delay_count
= 0;
3636 XSETINT (p
->read_output_delay
, 0);
3637 p
->read_output_skip
= Qnil
;
3643 /* Beware SIGCHLD hereabouts. */
3644 flush_pending_output (inchannel
);
3647 VMS_PROC_STUFF
*get_vms_process_pointer (), *vs
;
3648 sys$
dassgn (outchannel
);
3649 vs
= get_vms_process_pointer (p
->pid
);
3651 give_back_vms_process_stuff (vs
);
3654 emacs_close (inchannel
);
3655 if (outchannel
>= 0 && outchannel
!= inchannel
)
3656 emacs_close (outchannel
);
3659 XSETINT (p
->infd
, -1);
3660 XSETINT (p
->outfd
, -1);
3661 #ifdef DATAGRAM_SOCKETS
3662 if (DATAGRAM_CHAN_P (inchannel
))
3664 xfree (datagram_address
[inchannel
].sa
);
3665 datagram_address
[inchannel
].sa
= 0;
3666 datagram_address
[inchannel
].len
= 0;
3669 chan_process
[inchannel
] = Qnil
;
3670 FD_CLR (inchannel
, &input_wait_mask
);
3671 FD_CLR (inchannel
, &non_keyboard_wait_mask
);
3672 #ifdef NON_BLOCKING_CONNECT
3673 if (FD_ISSET (inchannel
, &connect_wait_mask
))
3675 FD_CLR (inchannel
, &connect_wait_mask
);
3676 if (--num_pending_connects
< 0)
3680 if (inchannel
== max_process_desc
)
3683 /* We just closed the highest-numbered process input descriptor,
3684 so recompute the highest-numbered one now. */
3685 max_process_desc
= 0;
3686 for (i
= 0; i
< MAXDESC
; i
++)
3687 if (!NILP (chan_process
[i
]))
3688 max_process_desc
= i
;
3693 /* Close all descriptors currently in use for communication
3694 with subprocess. This is used in a newly-forked subprocess
3695 to get rid of irrelevant descriptors. */
3698 close_process_descs ()
3702 for (i
= 0; i
< MAXDESC
; i
++)
3704 Lisp_Object process
;
3705 process
= chan_process
[i
];
3706 if (!NILP (process
))
3708 int in
= XINT (XPROCESS (process
)->infd
);
3709 int out
= XINT (XPROCESS (process
)->outfd
);
3712 if (out
>= 0 && in
!= out
)
3719 DEFUN ("accept-process-output", Faccept_process_output
, Saccept_process_output
,
3721 doc
: /* Allow any pending output from subprocesses to be read by Emacs.
3722 It is read into the process' buffers or given to their filter functions.
3723 Non-nil arg PROCESS means do not return until some output has been received
3725 Non-nil second arg TIMEOUT and third arg TIMEOUT-MSECS are number of
3726 seconds and microseconds to wait; return after that much time whether
3727 or not there is input.
3728 If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
3729 from PROCESS, suspending reading output from other processes.
3730 If JUST-THIS-ONE is an integer, don't run any timers either.
3731 Return non-nil iff we received any output before the timeout expired. */)
3732 (process
, timeout
, timeout_msecs
, just_this_one
)
3733 register Lisp_Object process
, timeout
, timeout_msecs
, just_this_one
;
3738 if (! NILP (process
))
3739 CHECK_PROCESS (process
);
3741 just_this_one
= Qnil
;
3743 if (! NILP (timeout_msecs
))
3745 CHECK_NUMBER (timeout_msecs
);
3746 useconds
= XINT (timeout_msecs
);
3747 if (!INTEGERP (timeout
))
3748 XSETINT (timeout
, 0);
3751 int carry
= useconds
/ 1000000;
3753 XSETINT (timeout
, XINT (timeout
) + carry
);
3754 useconds
-= carry
* 1000000;
3756 /* I think this clause is necessary because C doesn't
3757 guarantee a particular rounding direction for negative
3761 XSETINT (timeout
, XINT (timeout
) - 1);
3762 useconds
+= 1000000;
3769 if (! NILP (timeout
))
3771 CHECK_NUMBER (timeout
);
3772 seconds
= XINT (timeout
);
3773 if (seconds
< 0 || (seconds
== 0 && useconds
== 0))
3777 seconds
= NILP (process
) ? -1 : 0;
3780 (wait_reading_process_output (seconds
, useconds
, 0, 0,
3782 !NILP (process
) ? XPROCESS (process
) : NULL
,
3783 NILP (just_this_one
) ? 0 :
3784 !INTEGERP (just_this_one
) ? 1 : -1)
3788 /* Accept a connection for server process SERVER on CHANNEL. */
3790 static int connect_counter
= 0;
3793 server_accept_connection (server
, channel
)
3797 Lisp_Object proc
, caller
, name
, buffer
;
3798 Lisp_Object contact
, host
, service
;
3799 struct Lisp_Process
*ps
= XPROCESS (server
);
3800 struct Lisp_Process
*p
;
3804 struct sockaddr_in in
;
3805 #ifdef HAVE_LOCAL_SOCKETS
3806 struct sockaddr_un un
;
3809 int len
= sizeof saddr
;
3811 s
= accept (channel
, &saddr
.sa
, &len
);
3820 if (code
== EWOULDBLOCK
)
3824 if (!NILP (ps
->log
))
3825 call3 (ps
->log
, server
, Qnil
,
3826 concat3 (build_string ("accept failed with code"),
3827 Fnumber_to_string (make_number (code
)),
3828 build_string ("\n")));
3834 /* Setup a new process to handle the connection. */
3836 /* Generate a unique identification of the caller, and build contact
3837 information for this process. */
3840 switch (saddr
.sa
.sa_family
)
3844 Lisp_Object args
[5];
3845 unsigned char *ip
= (unsigned char *)&saddr
.in
.sin_addr
.s_addr
;
3846 args
[0] = build_string ("%d.%d.%d.%d");
3847 args
[1] = make_number (*ip
++);
3848 args
[2] = make_number (*ip
++);
3849 args
[3] = make_number (*ip
++);
3850 args
[4] = make_number (*ip
++);
3851 host
= Fformat (5, args
);
3852 service
= make_number (ntohs (saddr
.in
.sin_port
));
3854 args
[0] = build_string (" <%s:%d>");
3857 caller
= Fformat (3, args
);
3861 #ifdef HAVE_LOCAL_SOCKETS
3865 caller
= Fnumber_to_string (make_number (connect_counter
));
3866 caller
= concat3 (build_string (" <*"), caller
, build_string ("*>"));
3870 /* Create a new buffer name for this process if it doesn't have a
3871 filter. The new buffer name is based on the buffer name or
3872 process name of the server process concatenated with the caller
3875 if (!NILP (ps
->filter
) && !EQ (ps
->filter
, Qt
))
3879 buffer
= ps
->buffer
;
3881 buffer
= Fbuffer_name (buffer
);
3886 buffer
= concat2 (buffer
, caller
);
3887 buffer
= Fget_buffer_create (buffer
);
3891 /* Generate a unique name for the new server process. Combine the
3892 server process name with the caller identification. */
3894 name
= concat2 (ps
->name
, caller
);
3895 proc
= make_process (name
);
3897 chan_process
[s
] = proc
;
3900 fcntl (s
, F_SETFL
, O_NONBLOCK
);
3903 fcntl (s
, F_SETFL
, O_NDELAY
);
3907 p
= XPROCESS (proc
);
3909 /* Build new contact information for this setup. */
3910 contact
= Fcopy_sequence (ps
->childp
);
3911 contact
= Fplist_put (contact
, QCserver
, Qnil
);
3912 contact
= Fplist_put (contact
, QChost
, host
);
3913 if (!NILP (service
))
3914 contact
= Fplist_put (contact
, QCservice
, service
);
3915 contact
= Fplist_put (contact
, QCremote
,
3916 conv_sockaddr_to_lisp (&saddr
.sa
, len
));
3917 #ifdef HAVE_GETSOCKNAME
3919 if (getsockname (s
, &saddr
.sa
, &len
) == 0)
3920 contact
= Fplist_put (contact
, QClocal
,
3921 conv_sockaddr_to_lisp (&saddr
.sa
, len
));
3924 p
->childp
= contact
;
3925 p
->plist
= Fcopy_sequence (ps
->plist
);
3928 p
->sentinel
= ps
->sentinel
;
3929 p
->filter
= ps
->filter
;
3932 XSETINT (p
->infd
, s
);
3933 XSETINT (p
->outfd
, s
);
3936 /* Client processes for accepted connections are not stopped initially. */
3937 if (!EQ (p
->filter
, Qt
))
3939 FD_SET (s
, &input_wait_mask
);
3940 FD_SET (s
, &non_keyboard_wait_mask
);
3943 if (s
> max_process_desc
)
3944 max_process_desc
= s
;
3946 /* Setup coding system for new process based on server process.
3947 This seems to be the proper thing to do, as the coding system
3948 of the new process should reflect the settings at the time the
3949 server socket was opened; not the current settings. */
3951 p
->decode_coding_system
= ps
->decode_coding_system
;
3952 p
->encode_coding_system
= ps
->encode_coding_system
;
3953 setup_process_coding_systems (proc
);
3955 p
->decoding_buf
= make_uninit_string (0);
3956 p
->decoding_carryover
= make_number (0);
3957 p
->encoding_buf
= make_uninit_string (0);
3958 p
->encoding_carryover
= make_number (0);
3960 p
->inherit_coding_system_flag
3961 = (NILP (buffer
) ? Qnil
: ps
->inherit_coding_system_flag
);
3963 if (!NILP (ps
->log
))
3964 call3 (ps
->log
, server
, proc
,
3965 concat3 (build_string ("accept from "),
3966 (STRINGP (host
) ? host
: build_string ("-")),
3967 build_string ("\n")));
3969 if (!NILP (p
->sentinel
))
3970 exec_sentinel (proc
,
3971 concat3 (build_string ("open from "),
3972 (STRINGP (host
) ? host
: build_string ("-")),
3973 build_string ("\n")));
3976 /* This variable is different from waiting_for_input in keyboard.c.
3977 It is used to communicate to a lisp process-filter/sentinel (via the
3978 function Fwaiting_for_user_input_p below) whether Emacs was waiting
3979 for user-input when that process-filter was called.
3980 waiting_for_input cannot be used as that is by definition 0 when
3981 lisp code is being evalled.
3982 This is also used in record_asynch_buffer_change.
3983 For that purpose, this must be 0
3984 when not inside wait_reading_process_output. */
3985 static int waiting_for_user_input_p
;
3987 /* This is here so breakpoints can be put on it. */
3989 wait_reading_process_output_1 ()
3993 /* Read and dispose of subprocess output while waiting for timeout to
3994 elapse and/or keyboard input to be available.
3997 timeout in seconds, or
3998 zero for no limit, or
3999 -1 means gobble data immediately available but don't wait for any.
4002 an additional duration to wait, measured in microseconds.
4003 If this is nonzero and time_limit is 0, then the timeout
4004 consists of MICROSECS only.
4006 READ_KBD is a lisp value:
4007 0 to ignore keyboard input, or
4008 1 to return when input is available, or
4009 -1 meaning caller will actually read the input, so don't throw to
4010 the quit handler, or
4012 DO_DISPLAY != 0 means redisplay should be done to show subprocess
4013 output that arrives.
4015 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4016 (and gobble terminal input into the buffer if any arrives).
4018 If WAIT_PROC is specified, wait until something arrives from that
4019 process. The return value is true iff we read some input from
4022 If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC
4023 (suspending output from other processes). A negative value
4024 means don't run any timers either.
4026 If WAIT_PROC is specified, then the function returns true iff we
4027 received input from that process before the timeout elapsed.
4028 Otherwise, return true iff we received input from any process. */
4031 wait_reading_process_output (time_limit
, microsecs
, read_kbd
, do_display
,
4032 wait_for_cell
, wait_proc
, just_wait_proc
)
4033 int time_limit
, microsecs
, read_kbd
, do_display
;
4034 Lisp_Object wait_for_cell
;
4035 struct Lisp_Process
*wait_proc
;
4038 register int channel
, nfds
;
4039 SELECT_TYPE Available
;
4040 #ifdef NON_BLOCKING_CONNECT
4041 SELECT_TYPE Connecting
;
4044 int check_delay
, no_avail
;
4047 EMACS_TIME timeout
, end_time
;
4048 int wait_channel
= -1;
4049 int got_some_input
= 0;
4050 /* Either nil or a cons cell, the car of which is of interest and
4051 may be changed outside of this routine. */
4052 int saved_waiting_for_user_input_p
= waiting_for_user_input_p
;
4054 FD_ZERO (&Available
);
4055 #ifdef NON_BLOCKING_CONNECT
4056 FD_ZERO (&Connecting
);
4059 /* If wait_proc is a process to watch, set wait_channel accordingly. */
4060 if (wait_proc
!= NULL
)
4061 wait_channel
= XINT (wait_proc
->infd
);
4063 waiting_for_user_input_p
= read_kbd
;
4065 /* Since we may need to wait several times,
4066 compute the absolute time to return at. */
4067 if (time_limit
|| microsecs
)
4069 EMACS_GET_TIME (end_time
);
4070 EMACS_SET_SECS_USECS (timeout
, time_limit
, microsecs
);
4071 EMACS_ADD_TIME (end_time
, end_time
, timeout
);
4073 #ifdef POLL_INTERRUPTED_SYS_CALL
4074 /* AlainF 5-Jul-1996
4075 HP-UX 10.10 seem to have problems with signals coming in
4076 Causes "poll: interrupted system call" messages when Emacs is run
4078 Turn off periodic alarms (in case they are in use),
4079 and then turn off any other atimers. */
4081 turn_on_atimers (0);
4082 #endif /* POLL_INTERRUPTED_SYS_CALL */
4086 int timeout_reduced_for_timers
= 0;
4088 /* If calling from keyboard input, do not quit
4089 since we want to return C-g as an input character.
4090 Otherwise, do pending quit if requested. */
4094 else if (interrupt_input_pending
)
4095 handle_async_input ();
4098 /* Exit now if the cell we're waiting for became non-nil. */
4099 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
4102 /* Compute time from now till when time limit is up */
4103 /* Exit if already run out */
4104 if (time_limit
== -1)
4106 /* -1 specified for timeout means
4107 gobble output available now
4108 but don't wait at all. */
4110 EMACS_SET_SECS_USECS (timeout
, 0, 0);
4112 else if (time_limit
|| microsecs
)
4114 EMACS_GET_TIME (timeout
);
4115 EMACS_SUB_TIME (timeout
, end_time
, timeout
);
4116 if (EMACS_TIME_NEG_P (timeout
))
4121 EMACS_SET_SECS_USECS (timeout
, 100000, 0);
4124 /* Normally we run timers here.
4125 But not if wait_for_cell; in those cases,
4126 the wait is supposed to be short,
4127 and those callers cannot handle running arbitrary Lisp code here. */
4128 if (NILP (wait_for_cell
)
4129 && just_wait_proc
>= 0)
4131 EMACS_TIME timer_delay
;
4135 int old_timers_run
= timers_run
;
4136 struct buffer
*old_buffer
= current_buffer
;
4138 timer_delay
= timer_check (1);
4140 /* If a timer has run, this might have changed buffers
4141 an alike. Make read_key_sequence aware of that. */
4142 if (timers_run
!= old_timers_run
4143 && old_buffer
!= current_buffer
4144 && waiting_for_user_input_p
== -1)
4145 record_asynch_buffer_change ();
4147 if (timers_run
!= old_timers_run
&& do_display
)
4148 /* We must retry, since a timer may have requeued itself
4149 and that could alter the time_delay. */
4150 redisplay_preserve_echo_area (9);
4154 while (!detect_input_pending ());
4156 /* If there is unread keyboard input, also return. */
4158 && requeued_events_pending_p ())
4161 if (! EMACS_TIME_NEG_P (timer_delay
) && time_limit
!= -1)
4163 EMACS_TIME difference
;
4164 EMACS_SUB_TIME (difference
, timer_delay
, timeout
);
4165 if (EMACS_TIME_NEG_P (difference
))
4167 timeout
= timer_delay
;
4168 timeout_reduced_for_timers
= 1;
4171 /* If time_limit is -1, we are not going to wait at all. */
4172 else if (time_limit
!= -1)
4174 /* This is so a breakpoint can be put here. */
4175 wait_reading_process_output_1 ();
4179 /* Cause C-g and alarm signals to take immediate action,
4180 and cause input available signals to zero out timeout.
4182 It is important that we do this before checking for process
4183 activity. If we get a SIGCHLD after the explicit checks for
4184 process activity, timeout is the only way we will know. */
4186 set_waiting_for_input (&timeout
);
4188 /* If status of something has changed, and no input is
4189 available, notify the user of the change right away. After
4190 this explicit check, we'll let the SIGCHLD handler zap
4191 timeout to get our attention. */
4192 if (update_tick
!= process_tick
&& do_display
)
4195 #ifdef NON_BLOCKING_CONNECT
4199 Atemp
= input_wait_mask
;
4201 /* On Mac OS X 10.0, the SELECT system call always says input is
4202 present (for reading) at stdin, even when none is. This
4203 causes the call to SELECT below to return 1 and
4204 status_notify not to be called. As a result output of
4205 subprocesses are incorrectly discarded.
4209 IF_NON_BLOCKING_CONNECT (Ctemp
= connect_wait_mask
);
4211 EMACS_SET_SECS_USECS (timeout
, 0, 0);
4212 if ((select (max (max_process_desc
, max_keyboard_desc
) + 1,
4214 #ifdef NON_BLOCKING_CONNECT
4215 (num_pending_connects
> 0 ? &Ctemp
: (SELECT_TYPE
*)0),
4219 (SELECT_TYPE
*)0, &timeout
)
4222 /* It's okay for us to do this and then continue with
4223 the loop, since timeout has already been zeroed out. */
4224 clear_waiting_for_input ();
4229 /* Don't wait for output from a non-running process. Just
4230 read whatever data has already been received. */
4231 if (wait_proc
!= 0 && !NILP (wait_proc
->raw_status_low
))
4232 update_status (wait_proc
);
4234 && ! EQ (wait_proc
->status
, Qrun
)
4235 && ! EQ (wait_proc
->status
, Qconnect
))
4237 int nread
, total_nread
= 0;
4239 clear_waiting_for_input ();
4240 XSETPROCESS (proc
, wait_proc
);
4242 /* Read data from the process, until we exhaust it. */
4243 while (XINT (wait_proc
->infd
) >= 0)
4245 nread
= read_process_output (proc
, XINT (wait_proc
->infd
));
4251 total_nread
+= nread
;
4253 else if (nread
== -1 && EIO
== errno
)
4257 else if (nread
== -1 && EAGAIN
== errno
)
4261 else if (nread
== -1 && EWOULDBLOCK
== errno
)
4265 if (total_nread
> 0 && do_display
)
4266 redisplay_preserve_echo_area (10);
4271 /* Wait till there is something to do */
4273 if (wait_proc
&& just_wait_proc
)
4275 if (XINT (wait_proc
->infd
) < 0) /* Terminated */
4277 FD_SET (XINT (wait_proc
->infd
), &Available
);
4279 IF_NON_BLOCKING_CONNECT (check_connect
= 0);
4281 else if (!NILP (wait_for_cell
))
4283 Available
= non_process_wait_mask
;
4285 IF_NON_BLOCKING_CONNECT (check_connect
= 0);
4290 Available
= non_keyboard_wait_mask
;
4292 Available
= input_wait_mask
;
4293 IF_NON_BLOCKING_CONNECT (check_connect
= (num_pending_connects
> 0));
4294 check_delay
= wait_channel
>= 0 ? 0 : process_output_delay_count
;
4297 /* If frame size has changed or the window is newly mapped,
4298 redisplay now, before we start to wait. There is a race
4299 condition here; if a SIGIO arrives between now and the select
4300 and indicates that a frame is trashed, the select may block
4301 displaying a trashed screen. */
4302 if (frame_garbaged
&& do_display
)
4304 clear_waiting_for_input ();
4305 redisplay_preserve_echo_area (11);
4307 set_waiting_for_input (&timeout
);
4311 if (read_kbd
&& detect_input_pending ())
4318 #ifdef NON_BLOCKING_CONNECT
4320 Connecting
= connect_wait_mask
;
4323 #ifdef ADAPTIVE_READ_BUFFERING
4324 if (process_output_skip
&& check_delay
> 0)
4326 int usecs
= EMACS_USECS (timeout
);
4327 if (EMACS_SECS (timeout
) > 0 || usecs
> READ_OUTPUT_DELAY_MAX
)
4328 usecs
= READ_OUTPUT_DELAY_MAX
;
4329 for (channel
= 0; check_delay
> 0 && channel
<= max_process_desc
; channel
++)
4331 proc
= chan_process
[channel
];
4334 if (XINT (XPROCESS (proc
)->read_output_delay
) > 0)
4337 if (NILP (XPROCESS (proc
)->read_output_skip
))
4339 FD_CLR (channel
, &Available
);
4340 XPROCESS (proc
)->read_output_skip
= Qnil
;
4341 if (XINT (XPROCESS (proc
)->read_output_delay
) < usecs
)
4342 usecs
= XINT (XPROCESS (proc
)->read_output_delay
);
4345 EMACS_SET_SECS_USECS (timeout
, 0, usecs
);
4346 process_output_skip
= 0;
4350 nfds
= select (max (max_process_desc
, max_keyboard_desc
) + 1,
4352 #ifdef NON_BLOCKING_CONNECT
4353 (check_connect
? &Connecting
: (SELECT_TYPE
*)0),
4357 (SELECT_TYPE
*)0, &timeout
);
4362 /* Make C-g and alarm signals set flags again */
4363 clear_waiting_for_input ();
4365 /* If we woke up due to SIGWINCH, actually change size now. */
4366 do_pending_window_change (0);
4368 if (time_limit
&& nfds
== 0 && ! timeout_reduced_for_timers
)
4369 /* We wanted the full specified time, so return now. */
4373 if (xerrno
== EINTR
)
4376 /* Ultrix select seems to return ENOMEM when it is
4377 interrupted. Treat it just like EINTR. Bleah. Note
4378 that we want to test for the "ultrix" CPP symbol, not
4379 "__ultrix__"; the latter is only defined under GCC, but
4380 not by DEC's bundled CC. -JimB */
4381 else if (xerrno
== ENOMEM
)
4385 /* This happens for no known reason on ALLIANT.
4386 I am guessing that this is the right response. -- RMS. */
4387 else if (xerrno
== EFAULT
)
4390 else if (xerrno
== EBADF
)
4393 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
4394 the child's closure of the pts gives the parent a SIGHUP, and
4395 the ptc file descriptor is automatically closed,
4396 yielding EBADF here or at select() call above.
4397 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
4398 in m/ibmrt-aix.h), and here we just ignore the select error.
4399 Cleanup occurs c/o status_notify after SIGCLD. */
4400 no_avail
= 1; /* Cannot depend on values returned */
4406 error ("select error: %s", emacs_strerror (xerrno
));
4411 FD_ZERO (&Available
);
4412 IF_NON_BLOCKING_CONNECT (check_connect
= 0);
4415 #if defined(sun) && !defined(USG5_4)
4416 if (nfds
> 0 && keyboard_bit_set (&Available
)
4418 /* System sometimes fails to deliver SIGIO.
4420 David J. Mackenzie says that Emacs doesn't compile under
4421 Solaris if this code is enabled, thus the USG5_4 in the CPP
4422 conditional. "I haven't noticed any ill effects so far.
4423 If you find a Solaris expert somewhere, they might know
4425 kill (getpid (), SIGIO
);
4428 #if 0 /* When polling is used, interrupt_input is 0,
4429 so get_input_pending should read the input.
4430 So this should not be needed. */
4431 /* If we are using polling for input,
4432 and we see input available, make it get read now.
4433 Otherwise it might not actually get read for a second.
4434 And on hpux, since we turn off polling in wait_reading_process_output,
4435 it might never get read at all if we don't spend much time
4436 outside of wait_reading_process_output. */
4437 if (read_kbd
&& interrupt_input
4438 && keyboard_bit_set (&Available
)
4439 && input_polling_used ())
4440 kill (getpid (), SIGALRM
);
4443 /* Check for keyboard input */
4444 /* If there is any, return immediately
4445 to give it higher priority than subprocesses */
4449 int old_timers_run
= timers_run
;
4450 struct buffer
*old_buffer
= current_buffer
;
4453 if (detect_input_pending_run_timers (do_display
))
4455 swallow_events (do_display
);
4456 if (detect_input_pending_run_timers (do_display
))
4460 /* If a timer has run, this might have changed buffers
4461 an alike. Make read_key_sequence aware of that. */
4462 if (timers_run
!= old_timers_run
4463 && waiting_for_user_input_p
== -1
4464 && old_buffer
!= current_buffer
)
4465 record_asynch_buffer_change ();
4471 /* If there is unread keyboard input, also return. */
4473 && requeued_events_pending_p ())
4476 /* If we are not checking for keyboard input now,
4477 do process events (but don't run any timers).
4478 This is so that X events will be processed.
4479 Otherwise they may have to wait until polling takes place.
4480 That would causes delays in pasting selections, for example.
4482 (We used to do this only if wait_for_cell.) */
4483 if (read_kbd
== 0 && detect_input_pending ())
4485 swallow_events (do_display
);
4486 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
4487 if (detect_input_pending ())
4492 /* Exit now if the cell we're waiting for became non-nil. */
4493 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
4497 /* If we think we have keyboard input waiting, but didn't get SIGIO,
4498 go read it. This can happen with X on BSD after logging out.
4499 In that case, there really is no input and no SIGIO,
4500 but select says there is input. */
4502 if (read_kbd
&& interrupt_input
4503 && keyboard_bit_set (&Available
) && ! noninteractive
)
4504 kill (getpid (), SIGIO
);
4508 got_some_input
|= nfds
> 0;
4510 /* If checking input just got us a size-change event from X,
4511 obey it now if we should. */
4512 if (read_kbd
|| ! NILP (wait_for_cell
))
4513 do_pending_window_change (0);
4515 /* Check for data from a process. */
4516 if (no_avail
|| nfds
== 0)
4519 /* Really FIRST_PROC_DESC should be 0 on Unix,
4520 but this is safer in the short run. */
4521 for (channel
= 0; channel
<= max_process_desc
; channel
++)
4523 if (FD_ISSET (channel
, &Available
)
4524 && FD_ISSET (channel
, &non_keyboard_wait_mask
))
4528 /* If waiting for this channel, arrange to return as
4529 soon as no more input to be processed. No more
4531 if (wait_channel
== channel
)
4537 proc
= chan_process
[channel
];
4541 /* If this is a server stream socket, accept connection. */
4542 if (EQ (XPROCESS (proc
)->status
, Qlisten
))
4544 server_accept_connection (proc
, channel
);
4548 /* Read data from the process, starting with our
4549 buffered-ahead character if we have one. */
4551 nread
= read_process_output (proc
, channel
);
4554 /* Since read_process_output can run a filter,
4555 which can call accept-process-output,
4556 don't try to read from any other processes
4557 before doing the select again. */
4558 FD_ZERO (&Available
);
4561 redisplay_preserve_echo_area (12);
4564 else if (nread
== -1 && errno
== EWOULDBLOCK
)
4567 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
4568 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
4570 else if (nread
== -1 && errno
== EAGAIN
)
4574 else if (nread
== -1 && errno
== EAGAIN
)
4576 /* Note that we cannot distinguish between no input
4577 available now and a closed pipe.
4578 With luck, a closed pipe will be accompanied by
4579 subprocess termination and SIGCHLD. */
4580 else if (nread
== 0 && !NETCONN_P (proc
))
4582 #endif /* O_NDELAY */
4583 #endif /* O_NONBLOCK */
4585 /* On some OSs with ptys, when the process on one end of
4586 a pty exits, the other end gets an error reading with
4587 errno = EIO instead of getting an EOF (0 bytes read).
4588 Therefore, if we get an error reading and errno =
4589 EIO, just continue, because the child process has
4590 exited and should clean itself up soon (e.g. when we
4593 However, it has been known to happen that the SIGCHLD
4594 got lost. So raise the signl again just in case.
4596 else if (nread
== -1 && errno
== EIO
)
4597 kill (getpid (), SIGCHLD
);
4598 #endif /* HAVE_PTYS */
4599 /* If we can detect process termination, don't consider the process
4600 gone just because its pipe is closed. */
4602 else if (nread
== 0 && !NETCONN_P (proc
))
4607 /* Preserve status of processes already terminated. */
4608 XSETINT (XPROCESS (proc
)->tick
, ++process_tick
);
4609 deactivate_process (proc
);
4610 if (!NILP (XPROCESS (proc
)->raw_status_low
))
4611 update_status (XPROCESS (proc
));
4612 if (EQ (XPROCESS (proc
)->status
, Qrun
))
4613 XPROCESS (proc
)->status
4614 = Fcons (Qexit
, Fcons (make_number (256), Qnil
));
4617 #ifdef NON_BLOCKING_CONNECT
4618 if (check_connect
&& FD_ISSET (channel
, &Connecting
)
4619 && FD_ISSET (channel
, &connect_wait_mask
))
4621 struct Lisp_Process
*p
;
4623 FD_CLR (channel
, &connect_wait_mask
);
4624 if (--num_pending_connects
< 0)
4627 proc
= chan_process
[channel
];
4631 p
= XPROCESS (proc
);
4634 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
4635 So only use it on systems where it is known to work. */
4637 int xlen
= sizeof(xerrno
);
4638 if (getsockopt(channel
, SOL_SOCKET
, SO_ERROR
, &xerrno
, &xlen
))
4643 struct sockaddr pname
;
4644 int pnamelen
= sizeof(pname
);
4646 /* If connection failed, getpeername will fail. */
4648 if (getpeername(channel
, &pname
, &pnamelen
) < 0)
4650 /* Obtain connect failure code through error slippage. */
4653 if (errno
== ENOTCONN
&& read(channel
, &dummy
, 1) < 0)
4660 XSETINT (p
->tick
, ++process_tick
);
4661 p
->status
= Fcons (Qfailed
, Fcons (make_number (xerrno
), Qnil
));
4662 deactivate_process (proc
);
4667 /* Execute the sentinel here. If we had relied on
4668 status_notify to do it later, it will read input
4669 from the process before calling the sentinel. */
4670 exec_sentinel (proc
, build_string ("open\n"));
4671 if (!EQ (p
->filter
, Qt
) && !EQ (p
->command
, Qt
))
4673 FD_SET (XINT (p
->infd
), &input_wait_mask
);
4674 FD_SET (XINT (p
->infd
), &non_keyboard_wait_mask
);
4678 #endif /* NON_BLOCKING_CONNECT */
4679 } /* end for each file descriptor */
4680 } /* end while exit conditions not met */
4682 waiting_for_user_input_p
= saved_waiting_for_user_input_p
;
4684 /* If calling from keyboard input, do not quit
4685 since we want to return C-g as an input character.
4686 Otherwise, do pending quit if requested. */
4689 /* Prevent input_pending from remaining set if we quit. */
4690 clear_input_pending ();
4693 #ifdef POLL_INTERRUPTED_SYS_CALL
4694 /* AlainF 5-Jul-1996
4695 HP-UX 10.10 seems to have problems with signals coming in
4696 Causes "poll: interrupted system call" messages when Emacs is run
4698 Turn periodic alarms back on */
4700 #endif /* POLL_INTERRUPTED_SYS_CALL */
4702 return got_some_input
;
4705 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
4708 read_process_output_call (fun_and_args
)
4709 Lisp_Object fun_and_args
;
4711 return apply1 (XCAR (fun_and_args
), XCDR (fun_and_args
));
4715 read_process_output_error_handler (error
)
4718 cmd_error_internal (error
, "error in process filter: ");
4720 update_echo_area ();
4721 Fsleep_for (make_number (2), Qnil
);
4725 /* Read pending output from the process channel,
4726 starting with our buffered-ahead character if we have one.
4727 Yield number of decoded characters read.
4729 This function reads at most 4096 characters.
4730 If you want to read all available subprocess output,
4731 you must call it repeatedly until it returns zero.
4733 The characters read are decoded according to PROC's coding-system
4737 read_process_output (proc
, channel
)
4739 register int channel
;
4741 register int nbytes
;
4743 register Lisp_Object outstream
;
4744 register struct buffer
*old
= current_buffer
;
4745 register struct Lisp_Process
*p
= XPROCESS (proc
);
4746 register int opoint
;
4747 struct coding_system
*coding
= proc_decode_coding_system
[channel
];
4748 int carryover
= XINT (p
->decoding_carryover
);
4752 VMS_PROC_STUFF
*vs
, *get_vms_process_pointer();
4754 vs
= get_vms_process_pointer (p
->pid
);
4758 return (0); /* Really weird if it does this */
4759 if (!(vs
->iosb
[0] & 1))
4760 return -1; /* I/O error */
4763 error ("Could not get VMS process pointer");
4764 chars
= vs
->inputBuffer
;
4765 nbytes
= clean_vms_buffer (chars
, vs
->iosb
[1]);
4768 start_vms_process_read (vs
); /* Crank up the next read on the process */
4769 return 1; /* Nothing worth printing, say we got 1 */
4773 /* The data carried over in the previous decoding (which are at
4774 the tail of decoding buffer) should be prepended to the new
4775 data read to decode all together. */
4776 chars
= (char *) alloca (nbytes
+ carryover
);
4777 bcopy (SDATA (p
->decoding_buf
), buf
, carryover
);
4778 bcopy (vs
->inputBuffer
, chars
+ carryover
, nbytes
);
4782 chars
= (char *) alloca (carryover
+ readmax
);
4784 /* See the comment above. */
4785 bcopy (SDATA (p
->decoding_buf
), chars
, carryover
);
4787 #ifdef DATAGRAM_SOCKETS
4788 /* We have a working select, so proc_buffered_char is always -1. */
4789 if (DATAGRAM_CHAN_P (channel
))
4791 int len
= datagram_address
[channel
].len
;
4792 nbytes
= recvfrom (channel
, chars
+ carryover
, readmax
,
4793 0, datagram_address
[channel
].sa
, &len
);
4797 if (proc_buffered_char
[channel
] < 0)
4799 nbytes
= emacs_read (channel
, chars
+ carryover
, readmax
);
4800 #ifdef ADAPTIVE_READ_BUFFERING
4801 if (nbytes
> 0 && !NILP (p
->adaptive_read_buffering
))
4803 int delay
= XINT (p
->read_output_delay
);
4806 if (delay
< READ_OUTPUT_DELAY_MAX_MAX
)
4809 process_output_delay_count
++;
4810 delay
+= READ_OUTPUT_DELAY_INCREMENT
* 2;
4813 else if (delay
> 0 && (nbytes
== readmax
))
4815 delay
-= READ_OUTPUT_DELAY_INCREMENT
;
4817 process_output_delay_count
--;
4819 XSETINT (p
->read_output_delay
, delay
);
4822 p
->read_output_skip
= Qt
;
4823 process_output_skip
= 1;
4830 chars
[carryover
] = proc_buffered_char
[channel
];
4831 proc_buffered_char
[channel
] = -1;
4832 nbytes
= emacs_read (channel
, chars
+ carryover
+ 1, readmax
- 1);
4836 nbytes
= nbytes
+ 1;
4838 #endif /* not VMS */
4840 XSETINT (p
->decoding_carryover
, 0);
4842 /* At this point, NBYTES holds number of bytes just received
4843 (including the one in proc_buffered_char[channel]). */
4846 if (nbytes
< 0 || coding
->mode
& CODING_MODE_LAST_BLOCK
)
4848 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
4851 /* Now set NBYTES how many bytes we must decode. */
4852 nbytes
+= carryover
;
4854 /* Read and dispose of the process output. */
4855 outstream
= p
->filter
;
4856 if (!NILP (outstream
))
4858 /* We inhibit quit here instead of just catching it so that
4859 hitting ^G when a filter happens to be running won't screw
4861 int count
= SPECPDL_INDEX ();
4862 Lisp_Object odeactivate
;
4863 Lisp_Object obuffer
, okeymap
;
4865 int outer_running_asynch_code
= running_asynch_code
;
4866 int waiting
= waiting_for_user_input_p
;
4868 /* No need to gcpro these, because all we do with them later
4869 is test them for EQness, and none of them should be a string. */
4870 odeactivate
= Vdeactivate_mark
;
4871 XSETBUFFER (obuffer
, current_buffer
);
4872 okeymap
= current_buffer
->keymap
;
4874 specbind (Qinhibit_quit
, Qt
);
4875 specbind (Qlast_nonmenu_event
, Qt
);
4877 /* In case we get recursively called,
4878 and we already saved the match data nonrecursively,
4879 save the same match data in safely recursive fashion. */
4880 if (outer_running_asynch_code
)
4883 /* Don't clobber the CURRENT match data, either! */
4884 tem
= Fmatch_data (Qnil
, Qnil
);
4885 restore_match_data ();
4886 record_unwind_protect (Fset_match_data
, Fmatch_data (Qnil
, Qnil
));
4887 Fset_match_data (tem
);
4890 /* For speed, if a search happens within this code,
4891 save the match data in a special nonrecursive fashion. */
4892 running_asynch_code
= 1;
4894 text
= decode_coding_string (make_unibyte_string (chars
, nbytes
),
4896 Vlast_coding_system_used
= coding
->symbol
;
4897 /* A new coding system might be found. */
4898 if (!EQ (p
->decode_coding_system
, coding
->symbol
))
4900 p
->decode_coding_system
= coding
->symbol
;
4902 /* Don't call setup_coding_system for
4903 proc_decode_coding_system[channel] here. It is done in
4904 detect_coding called via decode_coding above. */
4906 /* If a coding system for encoding is not yet decided, we set
4907 it as the same as coding-system for decoding.
4909 But, before doing that we must check if
4910 proc_encode_coding_system[p->outfd] surely points to a
4911 valid memory because p->outfd will be changed once EOF is
4912 sent to the process. */
4913 if (NILP (p
->encode_coding_system
)
4914 && proc_encode_coding_system
[XINT (p
->outfd
)])
4916 p
->encode_coding_system
= coding
->symbol
;
4917 setup_coding_system (coding
->symbol
,
4918 proc_encode_coding_system
[XINT (p
->outfd
)]);
4922 carryover
= nbytes
- coding
->consumed
;
4923 if (SCHARS (p
->decoding_buf
) < carryover
)
4924 p
->decoding_buf
= make_uninit_string (carryover
);
4925 bcopy (chars
+ coding
->consumed
, SDATA (p
->decoding_buf
),
4927 XSETINT (p
->decoding_carryover
, carryover
);
4928 /* Adjust the multibyteness of TEXT to that of the filter. */
4929 if (NILP (p
->filter_multibyte
) != ! STRING_MULTIBYTE (text
))
4930 text
= (STRING_MULTIBYTE (text
)
4931 ? Fstring_as_unibyte (text
)
4932 : Fstring_to_multibyte (text
));
4933 if (SBYTES (text
) > 0)
4934 internal_condition_case_1 (read_process_output_call
,
4936 Fcons (proc
, Fcons (text
, Qnil
))),
4937 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
4938 read_process_output_error_handler
);
4940 /* If we saved the match data nonrecursively, restore it now. */
4941 restore_match_data ();
4942 running_asynch_code
= outer_running_asynch_code
;
4944 /* Handling the process output should not deactivate the mark. */
4945 Vdeactivate_mark
= odeactivate
;
4947 /* Restore waiting_for_user_input_p as it was
4948 when we were called, in case the filter clobbered it. */
4949 waiting_for_user_input_p
= waiting
;
4951 #if 0 /* Call record_asynch_buffer_change unconditionally,
4952 because we might have changed minor modes or other things
4953 that affect key bindings. */
4954 if (! EQ (Fcurrent_buffer (), obuffer
)
4955 || ! EQ (current_buffer
->keymap
, okeymap
))
4957 /* But do it only if the caller is actually going to read events.
4958 Otherwise there's no need to make him wake up, and it could
4959 cause trouble (for example it would make Fsit_for return). */
4960 if (waiting_for_user_input_p
== -1)
4961 record_asynch_buffer_change ();
4964 start_vms_process_read (vs
);
4966 unbind_to (count
, Qnil
);
4970 /* If no filter, write into buffer if it isn't dead. */
4971 if (!NILP (p
->buffer
) && !NILP (XBUFFER (p
->buffer
)->name
))
4973 Lisp_Object old_read_only
;
4974 int old_begv
, old_zv
;
4975 int old_begv_byte
, old_zv_byte
;
4976 Lisp_Object odeactivate
;
4977 int before
, before_byte
;
4982 odeactivate
= Vdeactivate_mark
;
4984 Fset_buffer (p
->buffer
);
4986 opoint_byte
= PT_BYTE
;
4987 old_read_only
= current_buffer
->read_only
;
4990 old_begv_byte
= BEGV_BYTE
;
4991 old_zv_byte
= ZV_BYTE
;
4993 current_buffer
->read_only
= Qnil
;
4995 /* Insert new output into buffer
4996 at the current end-of-output marker,
4997 thus preserving logical ordering of input and output. */
4998 if (XMARKER (p
->mark
)->buffer
)
4999 SET_PT_BOTH (clip_to_bounds (BEGV
, marker_position (p
->mark
), ZV
),
5000 clip_to_bounds (BEGV_BYTE
, marker_byte_position (p
->mark
),
5003 SET_PT_BOTH (ZV
, ZV_BYTE
);
5005 before_byte
= PT_BYTE
;
5007 /* If the output marker is outside of the visible region, save
5008 the restriction and widen. */
5009 if (! (BEGV
<= PT
&& PT
<= ZV
))
5012 text
= decode_coding_string (make_unibyte_string (chars
, nbytes
),
5014 Vlast_coding_system_used
= coding
->symbol
;
5015 /* A new coding system might be found. See the comment in the
5016 similar code in the previous `if' block. */
5017 if (!EQ (p
->decode_coding_system
, coding
->symbol
))
5019 p
->decode_coding_system
= coding
->symbol
;
5020 if (NILP (p
->encode_coding_system
)
5021 && proc_encode_coding_system
[XINT (p
->outfd
)])
5023 p
->encode_coding_system
= coding
->symbol
;
5024 setup_coding_system (coding
->symbol
,
5025 proc_encode_coding_system
[XINT (p
->outfd
)]);
5028 carryover
= nbytes
- coding
->consumed
;
5029 if (SCHARS (p
->decoding_buf
) < carryover
)
5030 p
->decoding_buf
= make_uninit_string (carryover
);
5031 bcopy (chars
+ coding
->consumed
, SDATA (p
->decoding_buf
),
5033 XSETINT (p
->decoding_carryover
, carryover
);
5034 /* Adjust the multibyteness of TEXT to that of the buffer. */
5035 if (NILP (current_buffer
->enable_multibyte_characters
)
5036 != ! STRING_MULTIBYTE (text
))
5037 text
= (STRING_MULTIBYTE (text
)
5038 ? Fstring_as_unibyte (text
)
5039 : Fstring_to_multibyte (text
));
5040 /* Insert before markers in case we are inserting where
5041 the buffer's mark is, and the user's next command is Meta-y. */
5042 insert_from_string_before_markers (text
, 0, 0,
5043 SCHARS (text
), SBYTES (text
), 0);
5045 /* Make sure the process marker's position is valid when the
5046 process buffer is changed in the signal_after_change above.
5047 W3 is known to do that. */
5048 if (BUFFERP (p
->buffer
)
5049 && (b
= XBUFFER (p
->buffer
), b
!= current_buffer
))
5050 set_marker_both (p
->mark
, p
->buffer
, BUF_PT (b
), BUF_PT_BYTE (b
));
5052 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
5054 update_mode_lines
++;
5056 /* Make sure opoint and the old restrictions
5057 float ahead of any new text just as point would. */
5058 if (opoint
>= before
)
5060 opoint
+= PT
- before
;
5061 opoint_byte
+= PT_BYTE
- before_byte
;
5063 if (old_begv
> before
)
5065 old_begv
+= PT
- before
;
5066 old_begv_byte
+= PT_BYTE
- before_byte
;
5068 if (old_zv
>= before
)
5070 old_zv
+= PT
- before
;
5071 old_zv_byte
+= PT_BYTE
- before_byte
;
5074 /* If the restriction isn't what it should be, set it. */
5075 if (old_begv
!= BEGV
|| old_zv
!= ZV
)
5076 Fnarrow_to_region (make_number (old_begv
), make_number (old_zv
));
5078 /* Handling the process output should not deactivate the mark. */
5079 Vdeactivate_mark
= odeactivate
;
5081 current_buffer
->read_only
= old_read_only
;
5082 SET_PT_BOTH (opoint
, opoint_byte
);
5083 set_buffer_internal (old
);
5086 start_vms_process_read (vs
);
5091 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p
, Swaiting_for_user_input_p
,
5093 doc
: /* Returns non-nil if Emacs is waiting for input from the user.
5094 This is intended for use by asynchronous process output filters and sentinels. */)
5097 return (waiting_for_user_input_p
? Qt
: Qnil
);
5100 /* Sending data to subprocess */
5102 jmp_buf send_process_frame
;
5103 Lisp_Object process_sent_to
;
5106 send_process_trap ()
5108 SIGNAL_THREAD_CHECK (SIGPIPE
);
5113 longjmp (send_process_frame
, 1);
5116 /* Send some data to process PROC.
5117 BUF is the beginning of the data; LEN is the number of characters.
5118 OBJECT is the Lisp object that the data comes from. If OBJECT is
5119 nil or t, it means that the data comes from C string.
5121 If OBJECT is not nil, the data is encoded by PROC's coding-system
5122 for encoding before it is sent.
5124 This function can evaluate Lisp code and can garbage collect. */
5127 send_process (proc
, buf
, len
, object
)
5128 volatile Lisp_Object proc
;
5129 unsigned char *volatile buf
;
5131 volatile Lisp_Object object
;
5133 /* Use volatile to protect variables from being clobbered by longjmp. */
5134 struct Lisp_Process
*p
= XPROCESS (proc
);
5136 struct coding_system
*coding
;
5137 struct gcpro gcpro1
;
5142 VMS_PROC_STUFF
*vs
, *get_vms_process_pointer();
5145 if (! NILP (p
->raw_status_low
))
5147 if (! EQ (p
->status
, Qrun
))
5148 error ("Process %s not running", SDATA (p
->name
));
5149 if (XINT (p
->outfd
) < 0)
5150 error ("Output file descriptor of %s is closed", SDATA (p
->name
));
5152 coding
= proc_encode_coding_system
[XINT (p
->outfd
)];
5153 Vlast_coding_system_used
= coding
->symbol
;
5155 if ((STRINGP (object
) && STRING_MULTIBYTE (object
))
5156 || (BUFFERP (object
)
5157 && !NILP (XBUFFER (object
)->enable_multibyte_characters
))
5160 if (!EQ (coding
->symbol
, p
->encode_coding_system
))
5161 /* The coding system for encoding was changed to raw-text
5162 because we sent a unibyte text previously. Now we are
5163 sending a multibyte text, thus we must encode it by the
5164 original coding system specified for the current process. */
5165 setup_coding_system (p
->encode_coding_system
, coding
);
5166 /* src_multibyte should be set to 1 _after_ a call to
5167 setup_coding_system, since it resets src_multibyte to
5169 coding
->src_multibyte
= 1;
5173 /* For sending a unibyte text, character code conversion should
5174 not take place but EOL conversion should. So, setup raw-text
5175 or one of the subsidiary if we have not yet done it. */
5176 if (coding
->type
!= coding_type_raw_text
)
5178 if (CODING_REQUIRE_FLUSHING (coding
))
5180 /* But, before changing the coding, we must flush out data. */
5181 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
5182 send_process (proc
, "", 0, Qt
);
5184 coding
->src_multibyte
= 0;
5185 setup_raw_text_coding_system (coding
);
5188 coding
->dst_multibyte
= 0;
5190 if (CODING_REQUIRE_ENCODING (coding
))
5192 int require
= encoding_buffer_size (coding
, len
);
5193 int from_byte
= -1, from
= -1, to
= -1;
5195 if (BUFFERP (object
))
5197 from_byte
= BUF_PTR_BYTE_POS (XBUFFER (object
), buf
);
5198 from
= buf_bytepos_to_charpos (XBUFFER (object
), from_byte
);
5199 to
= buf_bytepos_to_charpos (XBUFFER (object
), from_byte
+ len
);
5201 else if (STRINGP (object
))
5203 from_byte
= buf
- SDATA (object
);
5204 from
= string_byte_to_char (object
, from_byte
);
5205 to
= string_byte_to_char (object
, from_byte
+ len
);
5208 if (coding
->composing
!= COMPOSITION_DISABLED
)
5211 coding_save_composition (coding
, from
, to
, object
);
5213 coding
->composing
= COMPOSITION_DISABLED
;
5216 if (SBYTES (p
->encoding_buf
) < require
)
5217 p
->encoding_buf
= make_uninit_string (require
);
5220 buf
= (BUFFERP (object
)
5221 ? BUF_BYTE_ADDRESS (XBUFFER (object
), from_byte
)
5222 : SDATA (object
) + from_byte
);
5224 object
= p
->encoding_buf
;
5225 encode_coding (coding
, (char *) buf
, SDATA (object
),
5226 len
, SBYTES (object
));
5227 coding_free_composition_data (coding
);
5228 len
= coding
->produced
;
5229 buf
= SDATA (object
);
5233 vs
= get_vms_process_pointer (p
->pid
);
5235 error ("Could not find this process: %x", p
->pid
);
5236 else if (write_to_vms_process (vs
, buf
, len
))
5240 if (pty_max_bytes
== 0)
5242 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
5243 pty_max_bytes
= fpathconf (XFASTINT (p
->outfd
), _PC_MAX_CANON
);
5244 if (pty_max_bytes
< 0)
5245 pty_max_bytes
= 250;
5247 pty_max_bytes
= 250;
5249 /* Deduct one, to leave space for the eof. */
5253 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
5254 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
5255 when returning with longjmp despite being declared volatile. */
5256 if (!setjmp (send_process_frame
))
5258 process_sent_to
= proc
;
5262 SIGTYPE (*old_sigpipe
)();
5264 /* Decide how much data we can send in one batch.
5265 Long lines need to be split into multiple batches. */
5266 if (!NILP (p
->pty_flag
))
5268 /* Starting this at zero is always correct when not the first
5269 iteration because the previous iteration ended by sending C-d.
5270 It may not be correct for the first iteration
5271 if a partial line was sent in a separate send_process call.
5272 If that proves worth handling, we need to save linepos
5273 in the process object. */
5275 unsigned char *ptr
= (unsigned char *) buf
;
5276 unsigned char *end
= (unsigned char *) buf
+ len
;
5278 /* Scan through this text for a line that is too long. */
5279 while (ptr
!= end
&& linepos
< pty_max_bytes
)
5287 /* If we found one, break the line there
5288 and put in a C-d to force the buffer through. */
5292 /* Send this batch, using one or more write calls. */
5295 int outfd
= XINT (p
->outfd
);
5296 old_sigpipe
= (SIGTYPE (*) ()) signal (SIGPIPE
, send_process_trap
);
5297 #ifdef DATAGRAM_SOCKETS
5298 if (DATAGRAM_CHAN_P (outfd
))
5300 rv
= sendto (outfd
, (char *) buf
, this,
5301 0, datagram_address
[outfd
].sa
,
5302 datagram_address
[outfd
].len
);
5303 if (rv
< 0 && errno
== EMSGSIZE
)
5304 report_file_error ("sending datagram", Fcons (proc
, Qnil
));
5309 rv
= emacs_write (outfd
, (char *) buf
, this);
5310 #ifdef ADAPTIVE_READ_BUFFERING
5311 if (XINT (p
->read_output_delay
) > 0
5312 && EQ (p
->adaptive_read_buffering
, Qt
))
5314 XSETFASTINT (p
->read_output_delay
, 0);
5315 process_output_delay_count
--;
5316 p
->read_output_skip
= Qnil
;
5320 signal (SIGPIPE
, old_sigpipe
);
5326 || errno
== EWOULDBLOCK
5332 /* Buffer is full. Wait, accepting input;
5333 that may allow the program
5334 to finish doing output and read more. */
5338 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
5339 /* A gross hack to work around a bug in FreeBSD.
5340 In the following sequence, read(2) returns
5344 write(2) 954 bytes, get EAGAIN
5345 read(2) 1024 bytes in process_read_output
5346 read(2) 11 bytes in process_read_output
5348 That is, read(2) returns more bytes than have
5349 ever been written successfully. The 1033 bytes
5350 read are the 1022 bytes written successfully
5351 after processing (for example with CRs added if
5352 the terminal is set up that way which it is
5353 here). The same bytes will be seen again in a
5354 later read(2), without the CRs. */
5356 if (errno
== EAGAIN
)
5359 ioctl (XINT (p
->outfd
), TIOCFLUSH
, &flags
);
5361 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5363 /* Running filters might relocate buffers or strings.
5364 Arrange to relocate BUF. */
5365 if (BUFFERP (object
))
5366 offset
= BUF_PTR_BYTE_POS (XBUFFER (object
), buf
);
5367 else if (STRINGP (object
))
5368 offset
= buf
- SDATA (object
);
5370 #ifdef EMACS_HAS_USECS
5371 wait_reading_process_output (0, 20000, 0, 0, Qnil
, NULL
, 0);
5373 wait_reading_process_output (1, 0, 0, 0, Qnil
, NULL
, 0);
5376 if (BUFFERP (object
))
5377 buf
= BUF_BYTE_ADDRESS (XBUFFER (object
), offset
);
5378 else if (STRINGP (object
))
5379 buf
= offset
+ SDATA (object
);
5384 /* This is a real error. */
5385 report_file_error ("writing to process", Fcons (proc
, Qnil
));
5392 /* If we sent just part of the string, put in an EOF
5393 to force it through, before we send the rest. */
5395 Fprocess_send_eof (proc
);
5398 #endif /* not VMS */
5402 proc
= process_sent_to
;
5403 p
= XPROCESS (proc
);
5405 p
->raw_status_low
= Qnil
;
5406 p
->raw_status_high
= Qnil
;
5407 p
->status
= Fcons (Qexit
, Fcons (make_number (256), Qnil
));
5408 XSETINT (p
->tick
, ++process_tick
);
5409 deactivate_process (proc
);
5411 error ("Error writing to process %s; closed it", SDATA (p
->name
));
5413 error ("SIGPIPE raised on process %s; closed it", SDATA (p
->name
));
5420 DEFUN ("process-send-region", Fprocess_send_region
, Sprocess_send_region
,
5422 doc
: /* Send current contents of region as input to PROCESS.
5423 PROCESS may be a process, a buffer, the name of a process or buffer, or
5424 nil, indicating the current buffer's process.
5425 Called from program, takes three arguments, PROCESS, START and END.
5426 If the region is more than 500 characters long,
5427 it is sent in several bunches. This may happen even for shorter regions.
5428 Output from processes can arrive in between bunches. */)
5429 (process
, start
, end
)
5430 Lisp_Object process
, start
, end
;
5435 proc
= get_process (process
);
5436 validate_region (&start
, &end
);
5438 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
5439 move_gap (XINT (start
));
5441 start1
= CHAR_TO_BYTE (XINT (start
));
5442 end1
= CHAR_TO_BYTE (XINT (end
));
5443 send_process (proc
, BYTE_POS_ADDR (start1
), end1
- start1
,
5444 Fcurrent_buffer ());
5449 DEFUN ("process-send-string", Fprocess_send_string
, Sprocess_send_string
,
5451 doc
: /* Send PROCESS the contents of STRING as input.
5452 PROCESS may be a process, a buffer, the name of a process or buffer, or
5453 nil, indicating the current buffer's process.
5454 If STRING is more than 500 characters long,
5455 it is sent in several bunches. This may happen even for shorter strings.
5456 Output from processes can arrive in between bunches. */)
5458 Lisp_Object process
, string
;
5461 CHECK_STRING (string
);
5462 proc
= get_process (process
);
5463 send_process (proc
, SDATA (string
),
5464 SBYTES (string
), string
);
5468 /* Return the foreground process group for the tty/pty that
5469 the process P uses. */
5471 emacs_get_tty_pgrp (p
)
5472 struct Lisp_Process
*p
;
5477 if (ioctl (XINT (p
->infd
), TIOCGPGRP
, &gid
) == -1 && ! NILP (p
->tty_name
))
5480 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
5481 master side. Try the slave side. */
5482 fd
= emacs_open (XSTRING (p
->tty_name
)->data
, O_RDONLY
, 0);
5486 ioctl (fd
, TIOCGPGRP
, &gid
);
5490 #endif /* defined (TIOCGPGRP ) */
5495 DEFUN ("process-running-child-p", Fprocess_running_child_p
,
5496 Sprocess_running_child_p
, 0, 1, 0,
5497 doc
: /* Return t if PROCESS has given the terminal to a child.
5498 If the operating system does not make it possible to find out,
5499 return t unconditionally. */)
5501 Lisp_Object process
;
5503 /* Initialize in case ioctl doesn't exist or gives an error,
5504 in a way that will cause returning t. */
5507 struct Lisp_Process
*p
;
5509 proc
= get_process (process
);
5510 p
= XPROCESS (proc
);
5512 if (!EQ (p
->childp
, Qt
))
5513 error ("Process %s is not a subprocess",
5515 if (XINT (p
->infd
) < 0)
5516 error ("Process %s is not active",
5519 gid
= emacs_get_tty_pgrp (p
);
5521 if (gid
== XFASTINT (p
->pid
))
5526 /* send a signal number SIGNO to PROCESS.
5527 If CURRENT_GROUP is t, that means send to the process group
5528 that currently owns the terminal being used to communicate with PROCESS.
5529 This is used for various commands in shell mode.
5530 If CURRENT_GROUP is lambda, that means send to the process group
5531 that currently owns the terminal, but only if it is NOT the shell itself.
5533 If NOMSG is zero, insert signal-announcements into process's buffers
5536 If we can, we try to signal PROCESS by sending control characters
5537 down the pty. This allows us to signal inferiors who have changed
5538 their uid, for which killpg would return an EPERM error. */
5541 process_send_signal (process
, signo
, current_group
, nomsg
)
5542 Lisp_Object process
;
5544 Lisp_Object current_group
;
5548 register struct Lisp_Process
*p
;
5552 proc
= get_process (process
);
5553 p
= XPROCESS (proc
);
5555 if (!EQ (p
->childp
, Qt
))
5556 error ("Process %s is not a subprocess",
5558 if (XINT (p
->infd
) < 0)
5559 error ("Process %s is not active",
5562 if (NILP (p
->pty_flag
))
5563 current_group
= Qnil
;
5565 /* If we are using pgrps, get a pgrp number and make it negative. */
5566 if (NILP (current_group
))
5567 /* Send the signal to the shell's process group. */
5568 gid
= XFASTINT (p
->pid
);
5571 #ifdef SIGNALS_VIA_CHARACTERS
5572 /* If possible, send signals to the entire pgrp
5573 by sending an input character to it. */
5575 /* TERMIOS is the latest and bestest, and seems most likely to
5576 work. If the system has it, use it. */
5579 cc_t
*sig_char
= NULL
;
5581 tcgetattr (XINT (p
->infd
), &t
);
5586 sig_char
= &t
.c_cc
[VINTR
];
5590 sig_char
= &t
.c_cc
[VQUIT
];
5594 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
5595 sig_char
= &t
.c_cc
[VSWTCH
];
5597 sig_char
= &t
.c_cc
[VSUSP
];
5602 if (sig_char
&& *sig_char
!= CDISABLE
)
5604 send_process (proc
, sig_char
, 1, Qnil
);
5607 /* If we can't send the signal with a character,
5608 fall through and send it another way. */
5609 #else /* ! HAVE_TERMIOS */
5611 /* On Berkeley descendants, the following IOCTL's retrieve the
5612 current control characters. */
5613 #if defined (TIOCGLTC) && defined (TIOCGETC)
5621 ioctl (XINT (p
->infd
), TIOCGETC
, &c
);
5622 send_process (proc
, &c
.t_intrc
, 1, Qnil
);
5625 ioctl (XINT (p
->infd
), TIOCGETC
, &c
);
5626 send_process (proc
, &c
.t_quitc
, 1, Qnil
);
5630 ioctl (XINT (p
->infd
), TIOCGLTC
, &lc
);
5631 send_process (proc
, &lc
.t_suspc
, 1, Qnil
);
5633 #endif /* ! defined (SIGTSTP) */
5636 #else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
5638 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
5645 ioctl (XINT (p
->infd
), TCGETA
, &t
);
5646 send_process (proc
, &t
.c_cc
[VINTR
], 1, Qnil
);
5649 ioctl (XINT (p
->infd
), TCGETA
, &t
);
5650 send_process (proc
, &t
.c_cc
[VQUIT
], 1, Qnil
);
5654 ioctl (XINT (p
->infd
), TCGETA
, &t
);
5655 send_process (proc
, &t
.c_cc
[VSWTCH
], 1, Qnil
);
5657 #endif /* ! defined (SIGTSTP) */
5659 #else /* ! defined (TCGETA) */
5660 Your configuration files are messed up
.
5661 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
5662 you'd better be using one of the alternatives above! */
5663 #endif /* ! defined (TCGETA) */
5664 #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
5665 /* In this case, the code above should alway returns. */
5667 #endif /* ! defined HAVE_TERMIOS */
5669 /* The code above may fall through if it can't
5670 handle the signal. */
5671 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
5674 /* Get the current pgrp using the tty itself, if we have that.
5675 Otherwise, use the pty to get the pgrp.
5676 On pfa systems, saka@pfu.fujitsu.co.JP writes:
5677 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
5678 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
5679 His patch indicates that if TIOCGPGRP returns an error, then
5680 we should just assume that p->pid is also the process group id. */
5682 gid
= emacs_get_tty_pgrp (p
);
5685 /* If we can't get the information, assume
5686 the shell owns the tty. */
5687 gid
= XFASTINT (p
->pid
);
5689 /* It is not clear whether anything really can set GID to -1.
5690 Perhaps on some system one of those ioctls can or could do so.
5691 Or perhaps this is vestigial. */
5694 #else /* ! defined (TIOCGPGRP ) */
5695 /* Can't select pgrps on this system, so we know that
5696 the child itself heads the pgrp. */
5697 gid
= XFASTINT (p
->pid
);
5698 #endif /* ! defined (TIOCGPGRP ) */
5700 /* If current_group is lambda, and the shell owns the terminal,
5701 don't send any signal. */
5702 if (EQ (current_group
, Qlambda
) && gid
== XFASTINT (p
->pid
))
5710 p
->raw_status_low
= Qnil
;
5711 p
->raw_status_high
= Qnil
;
5713 XSETINT (p
->tick
, ++process_tick
);
5717 #endif /* ! defined (SIGCONT) */
5720 send_process (proc
, "\003", 1, Qnil
); /* ^C */
5725 send_process (proc
, "\031", 1, Qnil
); /* ^Y */
5730 sys$
forcex (&(XFASTINT (p
->pid
)), 0, 1);
5733 flush_pending_output (XINT (p
->infd
));
5737 /* If we don't have process groups, send the signal to the immediate
5738 subprocess. That isn't really right, but it's better than any
5739 obvious alternative. */
5742 kill (XFASTINT (p
->pid
), signo
);
5746 /* gid may be a pid, or minus a pgrp's number */
5748 if (!NILP (current_group
))
5750 if (ioctl (XINT (p
->infd
), TIOCSIGSEND
, signo
) == -1)
5751 EMACS_KILLPG (gid
, signo
);
5755 gid
= - XFASTINT (p
->pid
);
5758 #else /* ! defined (TIOCSIGSEND) */
5759 EMACS_KILLPG (gid
, signo
);
5760 #endif /* ! defined (TIOCSIGSEND) */
5763 DEFUN ("interrupt-process", Finterrupt_process
, Sinterrupt_process
, 0, 2, 0,
5764 doc
: /* Interrupt process PROCESS.
5765 PROCESS may be a process, a buffer, or the name of a process or buffer.
5766 No arg or nil means current buffer's process.
5767 Second arg CURRENT-GROUP non-nil means send signal to
5768 the current process-group of the process's controlling terminal
5769 rather than to the process's own process group.
5770 If the process is a shell, this means interrupt current subjob
5771 rather than the shell.
5773 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
5774 don't send the signal. */)
5775 (process
, current_group
)
5776 Lisp_Object process
, current_group
;
5778 process_send_signal (process
, SIGINT
, current_group
, 0);
5782 DEFUN ("kill-process", Fkill_process
, Skill_process
, 0, 2, 0,
5783 doc
: /* Kill process PROCESS. May be process or name of one.
5784 See function `interrupt-process' for more details on usage. */)
5785 (process
, current_group
)
5786 Lisp_Object process
, current_group
;
5788 process_send_signal (process
, SIGKILL
, current_group
, 0);
5792 DEFUN ("quit-process", Fquit_process
, Squit_process
, 0, 2, 0,
5793 doc
: /* Send QUIT signal to process PROCESS. May be process or name of one.
5794 See function `interrupt-process' for more details on usage. */)
5795 (process
, current_group
)
5796 Lisp_Object process
, current_group
;
5798 process_send_signal (process
, SIGQUIT
, current_group
, 0);
5802 DEFUN ("stop-process", Fstop_process
, Sstop_process
, 0, 2, 0,
5803 doc
: /* Stop process PROCESS. May be process or name of one.
5804 See function `interrupt-process' for more details on usage.
5805 If PROCESS is a network process, inhibit handling of incoming traffic. */)
5806 (process
, current_group
)
5807 Lisp_Object process
, current_group
;
5810 if (PROCESSP (process
) && NETCONN_P (process
))
5812 struct Lisp_Process
*p
;
5814 p
= XPROCESS (process
);
5815 if (NILP (p
->command
)
5816 && XINT (p
->infd
) >= 0)
5818 FD_CLR (XINT (p
->infd
), &input_wait_mask
);
5819 FD_CLR (XINT (p
->infd
), &non_keyboard_wait_mask
);
5826 error ("no SIGTSTP support");
5828 process_send_signal (process
, SIGTSTP
, current_group
, 0);
5833 DEFUN ("continue-process", Fcontinue_process
, Scontinue_process
, 0, 2, 0,
5834 doc
: /* Continue process PROCESS. May be process or name of one.
5835 See function `interrupt-process' for more details on usage.
5836 If PROCESS is a network process, resume handling of incoming traffic. */)
5837 (process
, current_group
)
5838 Lisp_Object process
, current_group
;
5841 if (PROCESSP (process
) && NETCONN_P (process
))
5843 struct Lisp_Process
*p
;
5845 p
= XPROCESS (process
);
5846 if (EQ (p
->command
, Qt
)
5847 && XINT (p
->infd
) >= 0
5848 && (!EQ (p
->filter
, Qt
) || EQ (p
->status
, Qlisten
)))
5850 FD_SET (XINT (p
->infd
), &input_wait_mask
);
5851 FD_SET (XINT (p
->infd
), &non_keyboard_wait_mask
);
5858 process_send_signal (process
, SIGCONT
, current_group
, 0);
5860 error ("no SIGCONT support");
5865 DEFUN ("signal-process", Fsignal_process
, Ssignal_process
,
5866 2, 2, "sProcess (name or number): \nnSignal code: ",
5867 doc
: /* Send PROCESS the signal with code SIGCODE.
5868 PROCESS may also be an integer specifying the process id of the
5869 process to signal; in this case, the process need not be a child of
5871 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
5873 Lisp_Object process
, sigcode
;
5877 if (INTEGERP (process
))
5883 if (STRINGP (process
))
5886 if (tem
= Fget_process (process
), NILP (tem
))
5888 pid
= Fstring_to_number (process
, make_number (10));
5889 if (XINT (pid
) != 0)
5895 process
= get_process (process
);
5900 CHECK_PROCESS (process
);
5901 pid
= XPROCESS (process
)->pid
;
5902 if (!INTEGERP (pid
) || XINT (pid
) <= 0)
5903 error ("Cannot signal process %s", SDATA (XPROCESS (process
)->name
));
5907 #define handle_signal(NAME, VALUE) \
5908 else if (!strcmp (name, NAME)) \
5909 XSETINT (sigcode, VALUE)
5911 if (INTEGERP (sigcode
))
5915 unsigned char *name
;
5917 CHECK_SYMBOL (sigcode
);
5918 name
= SDATA (SYMBOL_NAME (sigcode
));
5923 handle_signal ("SIGHUP", SIGHUP
);
5926 handle_signal ("SIGINT", SIGINT
);
5929 handle_signal ("SIGQUIT", SIGQUIT
);
5932 handle_signal ("SIGILL", SIGILL
);
5935 handle_signal ("SIGABRT", SIGABRT
);
5938 handle_signal ("SIGEMT", SIGEMT
);
5941 handle_signal ("SIGKILL", SIGKILL
);
5944 handle_signal ("SIGFPE", SIGFPE
);
5947 handle_signal ("SIGBUS", SIGBUS
);
5950 handle_signal ("SIGSEGV", SIGSEGV
);
5953 handle_signal ("SIGSYS", SIGSYS
);
5956 handle_signal ("SIGPIPE", SIGPIPE
);
5959 handle_signal ("SIGALRM", SIGALRM
);
5962 handle_signal ("SIGTERM", SIGTERM
);
5965 handle_signal ("SIGURG", SIGURG
);
5968 handle_signal ("SIGSTOP", SIGSTOP
);
5971 handle_signal ("SIGTSTP", SIGTSTP
);
5974 handle_signal ("SIGCONT", SIGCONT
);
5977 handle_signal ("SIGCHLD", SIGCHLD
);
5980 handle_signal ("SIGTTIN", SIGTTIN
);
5983 handle_signal ("SIGTTOU", SIGTTOU
);
5986 handle_signal ("SIGIO", SIGIO
);
5989 handle_signal ("SIGXCPU", SIGXCPU
);
5992 handle_signal ("SIGXFSZ", SIGXFSZ
);
5995 handle_signal ("SIGVTALRM", SIGVTALRM
);
5998 handle_signal ("SIGPROF", SIGPROF
);
6001 handle_signal ("SIGWINCH", SIGWINCH
);
6004 handle_signal ("SIGINFO", SIGINFO
);
6007 handle_signal ("SIGUSR1", SIGUSR1
);
6010 handle_signal ("SIGUSR2", SIGUSR2
);
6013 error ("Undefined signal name %s", name
);
6016 #undef handle_signal
6018 return make_number (kill (XINT (pid
), XINT (sigcode
)));
6021 DEFUN ("process-send-eof", Fprocess_send_eof
, Sprocess_send_eof
, 0, 1, 0,
6022 doc
: /* Make PROCESS see end-of-file in its input.
6023 EOF comes after any text already sent to it.
6024 PROCESS may be a process, a buffer, the name of a process or buffer, or
6025 nil, indicating the current buffer's process.
6026 If PROCESS is a network connection, or is a process communicating
6027 through a pipe (as opposed to a pty), then you cannot send any more
6028 text to PROCESS after you call this function. */)
6030 Lisp_Object process
;
6033 struct coding_system
*coding
;
6035 if (DATAGRAM_CONN_P (process
))
6038 proc
= get_process (process
);
6039 coding
= proc_encode_coding_system
[XINT (XPROCESS (proc
)->outfd
)];
6041 /* Make sure the process is really alive. */
6042 if (! NILP (XPROCESS (proc
)->raw_status_low
))
6043 update_status (XPROCESS (proc
));
6044 if (! EQ (XPROCESS (proc
)->status
, Qrun
))
6045 error ("Process %s not running", SDATA (XPROCESS (proc
)->name
));
6047 if (CODING_REQUIRE_FLUSHING (coding
))
6049 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
6050 send_process (proc
, "", 0, Qnil
);
6054 send_process (proc
, "\032", 1, Qnil
); /* ^z */
6056 if (!NILP (XPROCESS (proc
)->pty_flag
))
6057 send_process (proc
, "\004", 1, Qnil
);
6060 int old_outfd
, new_outfd
;
6062 #ifdef HAVE_SHUTDOWN
6063 /* If this is a network connection, or socketpair is used
6064 for communication with the subprocess, call shutdown to cause EOF.
6065 (In some old system, shutdown to socketpair doesn't work.
6066 Then we just can't win.) */
6067 if (NILP (XPROCESS (proc
)->pid
)
6068 || XINT (XPROCESS (proc
)->outfd
) == XINT (XPROCESS (proc
)->infd
))
6069 shutdown (XINT (XPROCESS (proc
)->outfd
), 1);
6070 /* In case of socketpair, outfd == infd, so don't close it. */
6071 if (XINT (XPROCESS (proc
)->outfd
) != XINT (XPROCESS (proc
)->infd
))
6072 emacs_close (XINT (XPROCESS (proc
)->outfd
));
6073 #else /* not HAVE_SHUTDOWN */
6074 emacs_close (XINT (XPROCESS (proc
)->outfd
));
6075 #endif /* not HAVE_SHUTDOWN */
6076 new_outfd
= emacs_open (NULL_DEVICE
, O_WRONLY
, 0);
6077 old_outfd
= XINT (XPROCESS (proc
)->outfd
);
6079 if (!proc_encode_coding_system
[new_outfd
])
6080 proc_encode_coding_system
[new_outfd
]
6081 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
6082 bcopy (proc_encode_coding_system
[old_outfd
],
6083 proc_encode_coding_system
[new_outfd
],
6084 sizeof (struct coding_system
));
6085 bzero (proc_encode_coding_system
[old_outfd
],
6086 sizeof (struct coding_system
));
6088 XSETINT (XPROCESS (proc
)->outfd
, new_outfd
);
6094 /* Kill all processes associated with `buffer'.
6095 If `buffer' is nil, kill all processes */
6098 kill_buffer_processes (buffer
)
6101 Lisp_Object tail
, proc
;
6103 for (tail
= Vprocess_alist
; GC_CONSP (tail
); tail
= XCDR (tail
))
6105 proc
= XCDR (XCAR (tail
));
6106 if (GC_PROCESSP (proc
)
6107 && (NILP (buffer
) || EQ (XPROCESS (proc
)->buffer
, buffer
)))
6109 if (NETCONN_P (proc
))
6110 Fdelete_process (proc
);
6111 else if (XINT (XPROCESS (proc
)->infd
) >= 0)
6112 process_send_signal (proc
, SIGHUP
, Qnil
, 1);
6117 /* On receipt of a signal that a child status has changed, loop asking
6118 about children with changed statuses until the system says there
6121 All we do is change the status; we do not run sentinels or print
6122 notifications. That is saved for the next time keyboard input is
6123 done, in order to avoid timing errors.
6125 ** WARNING: this can be called during garbage collection.
6126 Therefore, it must not be fooled by the presence of mark bits in
6129 ** USG WARNING: Although it is not obvious from the documentation
6130 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6131 signal() before executing at least one wait(), otherwise the
6132 handler will be called again, resulting in an infinite loop. The
6133 relevant portion of the documentation reads "SIGCLD signals will be
6134 queued and the signal-catching function will be continually
6135 reentered until the queue is empty". Invoking signal() causes the
6136 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6139 ** Malloc WARNING: This should never call malloc either directly or
6140 indirectly; if it does, that is a bug */
6143 sigchld_handler (signo
)
6146 int old_errno
= errno
;
6148 register struct Lisp_Process
*p
;
6149 extern EMACS_TIME
*input_available_clear_time
;
6151 SIGNAL_THREAD_CHECK (signo
);
6155 sigheld
|= sigbit (SIGCHLD
);
6167 #endif /* no WUNTRACED */
6168 /* Keep trying to get a status until we get a definitive result. */
6172 pid
= wait3 (&w
, WNOHANG
| WUNTRACED
, 0);
6174 while (pid
< 0 && errno
== EINTR
);
6178 /* PID == 0 means no processes found, PID == -1 means a real
6179 failure. We have done all our job, so return. */
6181 /* USG systems forget handlers when they are used;
6182 must reestablish each time */
6183 #if defined (USG) && !defined (POSIX_SIGNALS)
6184 signal (signo
, sigchld_handler
); /* WARNING - must come after wait3() */
6187 sigheld
&= ~sigbit (SIGCHLD
);
6195 #endif /* no WNOHANG */
6197 /* Find the process that signaled us, and record its status. */
6200 for (tail
= Vprocess_alist
; GC_CONSP (tail
); tail
= XCDR (tail
))
6202 proc
= XCDR (XCAR (tail
));
6203 p
= XPROCESS (proc
);
6204 if (GC_EQ (p
->childp
, Qt
) && XINT (p
->pid
) == pid
)
6209 /* Look for an asynchronous process whose pid hasn't been filled
6212 for (tail
= Vprocess_alist
; GC_CONSP (tail
); tail
= XCDR (tail
))
6214 proc
= XCDR (XCAR (tail
));
6215 p
= XPROCESS (proc
);
6216 if (GC_INTEGERP (p
->pid
) && XINT (p
->pid
) == -1)
6221 /* Change the status of the process that was found. */
6224 union { int i
; WAITTYPE wt
; } u
;
6225 int clear_desc_flag
= 0;
6227 XSETINT (p
->tick
, ++process_tick
);
6229 XSETINT (p
->raw_status_low
, u
.i
& 0xffff);
6230 XSETINT (p
->raw_status_high
, u
.i
>> 16);
6232 /* If process has terminated, stop waiting for its output. */
6233 if ((WIFSIGNALED (w
) || WIFEXITED (w
))
6234 && XINT (p
->infd
) >= 0)
6235 clear_desc_flag
= 1;
6237 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
6238 if (clear_desc_flag
)
6240 FD_CLR (XINT (p
->infd
), &input_wait_mask
);
6241 FD_CLR (XINT (p
->infd
), &non_keyboard_wait_mask
);
6244 /* Tell wait_reading_process_output that it needs to wake up and
6246 if (input_available_clear_time
)
6247 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
6250 /* There was no asynchronous process found for that id. Check
6251 if we have a synchronous process. */
6254 synch_process_alive
= 0;
6256 /* Report the status of the synchronous process. */
6258 synch_process_retcode
= WRETCODE (w
);
6259 else if (WIFSIGNALED (w
))
6260 synch_process_termsig
= WTERMSIG (w
);
6262 /* Tell wait_reading_process_output that it needs to wake up and
6264 if (input_available_clear_time
)
6265 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
6268 /* On some systems, we must return right away.
6269 If any more processes want to signal us, we will
6271 Otherwise (on systems that have WNOHANG), loop around
6272 to use up all the processes that have something to tell us. */
6273 #if (defined WINDOWSNT \
6274 || (defined USG && !defined GNU_LINUX \
6275 && !(defined HPUX && defined WNOHANG)))
6276 #if defined (USG) && ! defined (POSIX_SIGNALS)
6277 signal (signo
, sigchld_handler
);
6281 #endif /* USG, but not HPUX with WNOHANG */
6287 exec_sentinel_unwind (data
)
6290 XPROCESS (XCAR (data
))->sentinel
= XCDR (data
);
6295 exec_sentinel_error_handler (error
)
6298 cmd_error_internal (error
, "error in process sentinel: ");
6300 update_echo_area ();
6301 Fsleep_for (make_number (2), Qnil
);
6306 exec_sentinel (proc
, reason
)
6307 Lisp_Object proc
, reason
;
6309 Lisp_Object sentinel
, obuffer
, odeactivate
, okeymap
;
6310 register struct Lisp_Process
*p
= XPROCESS (proc
);
6311 int count
= SPECPDL_INDEX ();
6312 int outer_running_asynch_code
= running_asynch_code
;
6313 int waiting
= waiting_for_user_input_p
;
6315 /* No need to gcpro these, because all we do with them later
6316 is test them for EQness, and none of them should be a string. */
6317 odeactivate
= Vdeactivate_mark
;
6318 XSETBUFFER (obuffer
, current_buffer
);
6319 okeymap
= current_buffer
->keymap
;
6321 sentinel
= p
->sentinel
;
6322 if (NILP (sentinel
))
6325 /* Zilch the sentinel while it's running, to avoid recursive invocations;
6326 assure that it gets restored no matter how the sentinel exits. */
6328 record_unwind_protect (exec_sentinel_unwind
, Fcons (proc
, sentinel
));
6329 /* Inhibit quit so that random quits don't screw up a running filter. */
6330 specbind (Qinhibit_quit
, Qt
);
6331 specbind (Qlast_nonmenu_event
, Qt
);
6333 /* In case we get recursively called,
6334 and we already saved the match data nonrecursively,
6335 save the same match data in safely recursive fashion. */
6336 if (outer_running_asynch_code
)
6339 tem
= Fmatch_data (Qnil
, Qnil
);
6340 restore_match_data ();
6341 record_unwind_protect (Fset_match_data
, Fmatch_data (Qnil
, Qnil
));
6342 Fset_match_data (tem
);
6345 /* For speed, if a search happens within this code,
6346 save the match data in a special nonrecursive fashion. */
6347 running_asynch_code
= 1;
6349 internal_condition_case_1 (read_process_output_call
,
6351 Fcons (proc
, Fcons (reason
, Qnil
))),
6352 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
6353 exec_sentinel_error_handler
);
6355 /* If we saved the match data nonrecursively, restore it now. */
6356 restore_match_data ();
6357 running_asynch_code
= outer_running_asynch_code
;
6359 Vdeactivate_mark
= odeactivate
;
6361 /* Restore waiting_for_user_input_p as it was
6362 when we were called, in case the filter clobbered it. */
6363 waiting_for_user_input_p
= waiting
;
6366 if (! EQ (Fcurrent_buffer (), obuffer
)
6367 || ! EQ (current_buffer
->keymap
, okeymap
))
6369 /* But do it only if the caller is actually going to read events.
6370 Otherwise there's no need to make him wake up, and it could
6371 cause trouble (for example it would make Fsit_for return). */
6372 if (waiting_for_user_input_p
== -1)
6373 record_asynch_buffer_change ();
6375 unbind_to (count
, Qnil
);
6378 /* Report all recent events of a change in process status
6379 (either run the sentinel or output a message).
6380 This is usually done while Emacs is waiting for keyboard input
6381 but can be done at other times. */
6386 register Lisp_Object proc
, buffer
;
6387 Lisp_Object tail
, msg
;
6388 struct gcpro gcpro1
, gcpro2
;
6392 /* We need to gcpro tail; if read_process_output calls a filter
6393 which deletes a process and removes the cons to which tail points
6394 from Vprocess_alist, and then causes a GC, tail is an unprotected
6398 /* Set this now, so that if new processes are created by sentinels
6399 that we run, we get called again to handle their status changes. */
6400 update_tick
= process_tick
;
6402 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
6405 register struct Lisp_Process
*p
;
6407 proc
= Fcdr (Fcar (tail
));
6408 p
= XPROCESS (proc
);
6410 if (XINT (p
->tick
) != XINT (p
->update_tick
))
6412 XSETINT (p
->update_tick
, XINT (p
->tick
));
6414 /* If process is still active, read any output that remains. */
6415 while (! EQ (p
->filter
, Qt
)
6416 && ! EQ (p
->status
, Qconnect
)
6417 && ! EQ (p
->status
, Qlisten
)
6418 && ! EQ (p
->command
, Qt
) /* Network process not stopped. */
6419 && XINT (p
->infd
) >= 0
6420 && read_process_output (proc
, XINT (p
->infd
)) > 0);
6424 /* Get the text to use for the message. */
6425 if (!NILP (p
->raw_status_low
))
6427 msg
= status_message (p
);
6429 /* If process is terminated, deactivate it or delete it. */
6431 if (CONSP (p
->status
))
6432 symbol
= XCAR (p
->status
);
6434 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
)
6435 || EQ (symbol
, Qclosed
))
6437 if (delete_exited_processes
)
6438 remove_process (proc
);
6440 deactivate_process (proc
);
6443 /* The actions above may have further incremented p->tick.
6444 So set p->update_tick again
6445 so that an error in the sentinel will not cause
6446 this code to be run again. */
6447 XSETINT (p
->update_tick
, XINT (p
->tick
));
6448 /* Now output the message suitably. */
6449 if (!NILP (p
->sentinel
))
6450 exec_sentinel (proc
, msg
);
6451 /* Don't bother with a message in the buffer
6452 when a process becomes runnable. */
6453 else if (!EQ (symbol
, Qrun
) && !NILP (buffer
))
6455 Lisp_Object ro
, tem
;
6456 struct buffer
*old
= current_buffer
;
6457 int opoint
, opoint_byte
;
6458 int before
, before_byte
;
6460 ro
= XBUFFER (buffer
)->read_only
;
6462 /* Avoid error if buffer is deleted
6463 (probably that's why the process is dead, too) */
6464 if (NILP (XBUFFER (buffer
)->name
))
6466 Fset_buffer (buffer
);
6469 opoint_byte
= PT_BYTE
;
6470 /* Insert new output into buffer
6471 at the current end-of-output marker,
6472 thus preserving logical ordering of input and output. */
6473 if (XMARKER (p
->mark
)->buffer
)
6474 Fgoto_char (p
->mark
);
6476 SET_PT_BOTH (ZV
, ZV_BYTE
);
6479 before_byte
= PT_BYTE
;
6481 tem
= current_buffer
->read_only
;
6482 current_buffer
->read_only
= Qnil
;
6483 insert_string ("\nProcess ");
6484 Finsert (1, &p
->name
);
6485 insert_string (" ");
6487 current_buffer
->read_only
= tem
;
6488 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
6490 if (opoint
>= before
)
6491 SET_PT_BOTH (opoint
+ (PT
- before
),
6492 opoint_byte
+ (PT_BYTE
- before_byte
));
6494 SET_PT_BOTH (opoint
, opoint_byte
);
6496 set_buffer_internal (old
);
6501 update_mode_lines
++; /* in case buffers use %s in mode-line-format */
6502 redisplay_preserve_echo_area (13);
6508 DEFUN ("set-process-coding-system", Fset_process_coding_system
,
6509 Sset_process_coding_system
, 1, 3, 0,
6510 doc
: /* Set coding systems of PROCESS to DECODING and ENCODING.
6511 DECODING will be used to decode subprocess output and ENCODING to
6512 encode subprocess input. */)
6513 (process
, decoding
, encoding
)
6514 register Lisp_Object process
, decoding
, encoding
;
6516 register struct Lisp_Process
*p
;
6518 CHECK_PROCESS (process
);
6519 p
= XPROCESS (process
);
6520 if (XINT (p
->infd
) < 0)
6521 error ("Input file descriptor of %s closed", SDATA (p
->name
));
6522 if (XINT (p
->outfd
) < 0)
6523 error ("Output file descriptor of %s closed", SDATA (p
->name
));
6524 Fcheck_coding_system (decoding
);
6525 Fcheck_coding_system (encoding
);
6527 p
->decode_coding_system
= decoding
;
6528 p
->encode_coding_system
= encoding
;
6529 setup_process_coding_systems (process
);
6534 DEFUN ("process-coding-system",
6535 Fprocess_coding_system
, Sprocess_coding_system
, 1, 1, 0,
6536 doc
: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
6538 register Lisp_Object process
;
6540 CHECK_PROCESS (process
);
6541 return Fcons (XPROCESS (process
)->decode_coding_system
,
6542 XPROCESS (process
)->encode_coding_system
);
6545 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte
,
6546 Sset_process_filter_multibyte
, 2, 2, 0,
6547 doc
: /* Set multibyteness of the strings given to PROCESS's filter.
6548 If FLAG is non-nil, the filter is given multibyte strings.
6549 If FLAG is nil, the filter is given unibyte strings. In this case,
6550 all character code conversion except for end-of-line conversion is
6553 Lisp_Object process
, flag
;
6555 register struct Lisp_Process
*p
;
6557 CHECK_PROCESS (process
);
6558 p
= XPROCESS (process
);
6559 p
->filter_multibyte
= flag
;
6560 setup_process_coding_systems (process
);
6565 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p
,
6566 Sprocess_filter_multibyte_p
, 1, 1, 0,
6567 doc
: /* Return t if a multibyte string is given to PROCESS's filter.*/)
6569 Lisp_Object process
;
6571 register struct Lisp_Process
*p
;
6573 CHECK_PROCESS (process
);
6574 p
= XPROCESS (process
);
6576 return (NILP (p
->filter_multibyte
) ? Qnil
: Qt
);
6581 /* The first time this is called, assume keyboard input comes from DESC
6582 instead of from where we used to expect it.
6583 Subsequent calls mean assume input keyboard can come from DESC
6584 in addition to other places. */
6586 static int add_keyboard_wait_descriptor_called_flag
;
6589 add_keyboard_wait_descriptor (desc
)
6592 if (! add_keyboard_wait_descriptor_called_flag
)
6593 FD_CLR (0, &input_wait_mask
);
6594 add_keyboard_wait_descriptor_called_flag
= 1;
6595 FD_SET (desc
, &input_wait_mask
);
6596 FD_SET (desc
, &non_process_wait_mask
);
6597 if (desc
> max_keyboard_desc
)
6598 max_keyboard_desc
= desc
;
6601 /* From now on, do not expect DESC to give keyboard input. */
6604 delete_keyboard_wait_descriptor (desc
)
6608 int lim
= max_keyboard_desc
;
6610 FD_CLR (desc
, &input_wait_mask
);
6611 FD_CLR (desc
, &non_process_wait_mask
);
6613 if (desc
== max_keyboard_desc
)
6614 for (fd
= 0; fd
< lim
; fd
++)
6615 if (FD_ISSET (fd
, &input_wait_mask
)
6616 && !FD_ISSET (fd
, &non_keyboard_wait_mask
))
6617 max_keyboard_desc
= fd
;
6620 /* Return nonzero if *MASK has a bit set
6621 that corresponds to one of the keyboard input descriptors. */
6624 keyboard_bit_set (mask
)
6629 for (fd
= 0; fd
<= max_keyboard_desc
; fd
++)
6630 if (FD_ISSET (fd
, mask
) && FD_ISSET (fd
, &input_wait_mask
)
6631 && !FD_ISSET (fd
, &non_keyboard_wait_mask
))
6644 if (! noninteractive
|| initialized
)
6646 signal (SIGCHLD
, sigchld_handler
);
6649 FD_ZERO (&input_wait_mask
);
6650 FD_ZERO (&non_keyboard_wait_mask
);
6651 FD_ZERO (&non_process_wait_mask
);
6652 max_process_desc
= 0;
6654 #ifdef NON_BLOCKING_CONNECT
6655 FD_ZERO (&connect_wait_mask
);
6656 num_pending_connects
= 0;
6659 #ifdef ADAPTIVE_READ_BUFFERING
6660 process_output_delay_count
= 0;
6661 process_output_skip
= 0;
6664 FD_SET (0, &input_wait_mask
);
6666 Vprocess_alist
= Qnil
;
6667 for (i
= 0; i
< MAXDESC
; i
++)
6669 chan_process
[i
] = Qnil
;
6670 proc_buffered_char
[i
] = -1;
6672 bzero (proc_decode_coding_system
, sizeof proc_decode_coding_system
);
6673 bzero (proc_encode_coding_system
, sizeof proc_encode_coding_system
);
6674 #ifdef DATAGRAM_SOCKETS
6675 bzero (datagram_address
, sizeof datagram_address
);
6680 Lisp_Object subfeatures
= Qnil
;
6681 struct socket_options
*sopt
;
6683 #define ADD_SUBFEATURE(key, val) \
6684 subfeatures = Fcons (Fcons (key, Fcons (val, Qnil)), subfeatures)
6686 #ifdef NON_BLOCKING_CONNECT
6687 ADD_SUBFEATURE (QCnowait
, Qt
);
6689 #ifdef DATAGRAM_SOCKETS
6690 ADD_SUBFEATURE (QCtype
, Qdatagram
);
6692 #ifdef HAVE_LOCAL_SOCKETS
6693 ADD_SUBFEATURE (QCfamily
, Qlocal
);
6695 #ifdef HAVE_GETSOCKNAME
6696 ADD_SUBFEATURE (QCservice
, Qt
);
6698 #if !defined(TERM) && (defined(O_NONBLOCK) || defined(O_NDELAY))
6699 ADD_SUBFEATURE (QCserver
, Qt
);
6702 for (sopt
= socket_options
; sopt
->name
; sopt
++)
6703 subfeatures
= Fcons (intern (sopt
->name
), subfeatures
);
6705 Fprovide (intern ("make-network-process"), subfeatures
);
6707 #endif /* HAVE_SOCKETS */
6710 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
6711 processes. As such, we only change the default value. */
6714 char *release
= get_operating_system_release();
6715 if (!release
|| !release
[0] || (release
[0] < MIN_PTY_KERNEL_VERSION
6716 && release
[1] == '.')) {
6717 Vprocess_connection_type
= Qnil
;
6726 Qprocessp
= intern ("processp");
6727 staticpro (&Qprocessp
);
6728 Qrun
= intern ("run");
6730 Qstop
= intern ("stop");
6732 Qsignal
= intern ("signal");
6733 staticpro (&Qsignal
);
6735 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
6738 Qexit = intern ("exit");
6739 staticpro (&Qexit); */
6741 Qopen
= intern ("open");
6743 Qclosed
= intern ("closed");
6744 staticpro (&Qclosed
);
6745 Qconnect
= intern ("connect");
6746 staticpro (&Qconnect
);
6747 Qfailed
= intern ("failed");
6748 staticpro (&Qfailed
);
6749 Qlisten
= intern ("listen");
6750 staticpro (&Qlisten
);
6751 Qlocal
= intern ("local");
6752 staticpro (&Qlocal
);
6753 Qdatagram
= intern ("datagram");
6754 staticpro (&Qdatagram
);
6756 QCname
= intern (":name");
6757 staticpro (&QCname
);
6758 QCbuffer
= intern (":buffer");
6759 staticpro (&QCbuffer
);
6760 QChost
= intern (":host");
6761 staticpro (&QChost
);
6762 QCservice
= intern (":service");
6763 staticpro (&QCservice
);
6764 QCtype
= intern (":type");
6765 staticpro (&QCtype
);
6766 QClocal
= intern (":local");
6767 staticpro (&QClocal
);
6768 QCremote
= intern (":remote");
6769 staticpro (&QCremote
);
6770 QCcoding
= intern (":coding");
6771 staticpro (&QCcoding
);
6772 QCserver
= intern (":server");
6773 staticpro (&QCserver
);
6774 QCnowait
= intern (":nowait");
6775 staticpro (&QCnowait
);
6776 QCsentinel
= intern (":sentinel");
6777 staticpro (&QCsentinel
);
6778 QClog
= intern (":log");
6780 QCnoquery
= intern (":noquery");
6781 staticpro (&QCnoquery
);
6782 QCstop
= intern (":stop");
6783 staticpro (&QCstop
);
6784 QCoptions
= intern (":options");
6785 staticpro (&QCoptions
);
6786 QCplist
= intern (":plist");
6787 staticpro (&QCplist
);
6788 QCfilter_multibyte
= intern (":filter-multibyte");
6789 staticpro (&QCfilter_multibyte
);
6791 Qlast_nonmenu_event
= intern ("last-nonmenu-event");
6792 staticpro (&Qlast_nonmenu_event
);
6794 staticpro (&Vprocess_alist
);
6796 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes
,
6797 doc
: /* *Non-nil means delete processes immediately when they exit.
6798 nil means don't delete them until `list-processes' is run. */);
6800 delete_exited_processes
= 1;
6802 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type
,
6803 doc
: /* Control type of device used to communicate with subprocesses.
6804 Values are nil to use a pipe, or t or `pty' to use a pty.
6805 The value has no effect if the system has no ptys or if all ptys are busy:
6806 then a pipe is used in any case.
6807 The value takes effect when `start-process' is called. */);
6808 Vprocess_connection_type
= Qt
;
6810 #ifdef ADAPTIVE_READ_BUFFERING
6811 DEFVAR_LISP ("process-adaptive-read-buffering", &Vprocess_adaptive_read_buffering
,
6812 doc
: /* If non-nil, improve receive buffering by delaying after short reads.
6813 On some systems, when Emacs reads the output from a subprocess, the output data
6814 is read in very small blocks, potentially resulting in very poor performance.
6815 This behaviour can be remedied to some extent by setting this variable to a
6816 non-nil value, as it will automatically delay reading from such processes, to
6817 allowing them to produce more output before Emacs tries to read it.
6818 If the value is t, the delay is reset after each write to the process; any other
6819 non-nil value means that the delay is not reset on write.
6820 The variable takes effect when `start-process' is called. */);
6821 Vprocess_adaptive_read_buffering
= Qt
;
6824 defsubr (&Sprocessp
);
6825 defsubr (&Sget_process
);
6826 defsubr (&Sget_buffer_process
);
6827 defsubr (&Sdelete_process
);
6828 defsubr (&Sprocess_status
);
6829 defsubr (&Sprocess_exit_status
);
6830 defsubr (&Sprocess_id
);
6831 defsubr (&Sprocess_name
);
6832 defsubr (&Sprocess_tty_name
);
6833 defsubr (&Sprocess_command
);
6834 defsubr (&Sset_process_buffer
);
6835 defsubr (&Sprocess_buffer
);
6836 defsubr (&Sprocess_mark
);
6837 defsubr (&Sset_process_filter
);
6838 defsubr (&Sprocess_filter
);
6839 defsubr (&Sset_process_sentinel
);
6840 defsubr (&Sprocess_sentinel
);
6841 defsubr (&Sset_process_window_size
);
6842 defsubr (&Sset_process_inherit_coding_system_flag
);
6843 defsubr (&Sprocess_inherit_coding_system_flag
);
6844 defsubr (&Sset_process_query_on_exit_flag
);
6845 defsubr (&Sprocess_query_on_exit_flag
);
6846 defsubr (&Sprocess_contact
);
6847 defsubr (&Sprocess_plist
);
6848 defsubr (&Sset_process_plist
);
6849 defsubr (&Slist_processes
);
6850 defsubr (&Sprocess_list
);
6851 defsubr (&Sstart_process
);
6853 defsubr (&Sset_network_process_option
);
6854 defsubr (&Smake_network_process
);
6855 defsubr (&Sformat_network_address
);
6856 #endif /* HAVE_SOCKETS */
6857 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
6859 defsubr (&Snetwork_interface_list
);
6861 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
6862 defsubr (&Snetwork_interface_info
);
6864 #endif /* HAVE_SOCKETS ... */
6865 #ifdef DATAGRAM_SOCKETS
6866 defsubr (&Sprocess_datagram_address
);
6867 defsubr (&Sset_process_datagram_address
);
6869 defsubr (&Saccept_process_output
);
6870 defsubr (&Sprocess_send_region
);
6871 defsubr (&Sprocess_send_string
);
6872 defsubr (&Sinterrupt_process
);
6873 defsubr (&Skill_process
);
6874 defsubr (&Squit_process
);
6875 defsubr (&Sstop_process
);
6876 defsubr (&Scontinue_process
);
6877 defsubr (&Sprocess_running_child_p
);
6878 defsubr (&Sprocess_send_eof
);
6879 defsubr (&Ssignal_process
);
6880 defsubr (&Swaiting_for_user_input_p
);
6881 /* defsubr (&Sprocess_connection); */
6882 defsubr (&Sset_process_coding_system
);
6883 defsubr (&Sprocess_coding_system
);
6884 defsubr (&Sset_process_filter_multibyte
);
6885 defsubr (&Sprocess_filter_multibyte_p
);
6889 #else /* not subprocesses */
6891 #include <sys/types.h>
6895 #include "systime.h"
6896 #include "charset.h"
6898 #include "termopts.h"
6899 #include "sysselect.h"
6901 extern int frame_garbaged
;
6903 extern EMACS_TIME
timer_check ();
6904 extern int timers_run
;
6908 /* As described above, except assuming that there are no subprocesses:
6910 Wait for timeout to elapse and/or keyboard input to be available.
6913 timeout in seconds, or
6914 zero for no limit, or
6915 -1 means gobble data immediately available but don't wait for any.
6917 read_kbd is a Lisp_Object:
6918 0 to ignore keyboard input, or
6919 1 to return when input is available, or
6920 -1 means caller will actually read the input, so don't throw to
6923 see full version for other parameters. We know that wait_proc will
6924 always be NULL, since `subprocesses' isn't defined.
6926 do_display != 0 means redisplay should be done to show subprocess
6927 output that arrives.
6929 Return true iff we received input from any process. */
6932 wait_reading_process_output (time_limit
, microsecs
, read_kbd
, do_display
,
6933 wait_for_cell
, wait_proc
, just_wait_proc
)
6934 int time_limit
, microsecs
, read_kbd
, do_display
;
6935 Lisp_Object wait_for_cell
;
6936 struct Lisp_Process
*wait_proc
;
6940 EMACS_TIME end_time
, timeout
;
6941 SELECT_TYPE waitchannels
;
6944 /* What does time_limit really mean? */
6945 if (time_limit
|| microsecs
)
6947 EMACS_GET_TIME (end_time
);
6948 EMACS_SET_SECS_USECS (timeout
, time_limit
, microsecs
);
6949 EMACS_ADD_TIME (end_time
, end_time
, timeout
);
6952 /* Turn off periodic alarms (in case they are in use)
6953 and then turn off any other atimers,
6954 because the select emulator uses alarms. */
6956 turn_on_atimers (0);
6960 int timeout_reduced_for_timers
= 0;
6962 /* If calling from keyboard input, do not quit
6963 since we want to return C-g as an input character.
6964 Otherwise, do pending quit if requested. */
6968 /* Exit now if the cell we're waiting for became non-nil. */
6969 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
6972 /* Compute time from now till when time limit is up */
6973 /* Exit if already run out */
6974 if (time_limit
== -1)
6976 /* -1 specified for timeout means
6977 gobble output available now
6978 but don't wait at all. */
6980 EMACS_SET_SECS_USECS (timeout
, 0, 0);
6982 else if (time_limit
|| microsecs
)
6984 EMACS_GET_TIME (timeout
);
6985 EMACS_SUB_TIME (timeout
, end_time
, timeout
);
6986 if (EMACS_TIME_NEG_P (timeout
))
6991 EMACS_SET_SECS_USECS (timeout
, 100000, 0);
6994 /* If our caller will not immediately handle keyboard events,
6995 run timer events directly.
6996 (Callers that will immediately read keyboard events
6997 call timer_delay on their own.) */
6998 if (NILP (wait_for_cell
))
7000 EMACS_TIME timer_delay
;
7004 int old_timers_run
= timers_run
;
7005 timer_delay
= timer_check (1);
7006 if (timers_run
!= old_timers_run
&& do_display
)
7007 /* We must retry, since a timer may have requeued itself
7008 and that could alter the time delay. */
7009 redisplay_preserve_echo_area (14);
7013 while (!detect_input_pending ());
7015 /* If there is unread keyboard input, also return. */
7017 && requeued_events_pending_p ())
7020 if (! EMACS_TIME_NEG_P (timer_delay
) && time_limit
!= -1)
7022 EMACS_TIME difference
;
7023 EMACS_SUB_TIME (difference
, timer_delay
, timeout
);
7024 if (EMACS_TIME_NEG_P (difference
))
7026 timeout
= timer_delay
;
7027 timeout_reduced_for_timers
= 1;
7032 /* Cause C-g and alarm signals to take immediate action,
7033 and cause input available signals to zero out timeout. */
7035 set_waiting_for_input (&timeout
);
7037 /* Wait till there is something to do. */
7039 if (! read_kbd
&& NILP (wait_for_cell
))
7040 FD_ZERO (&waitchannels
);
7042 FD_SET (0, &waitchannels
);
7044 /* If a frame has been newly mapped and needs updating,
7045 reprocess its display stuff. */
7046 if (frame_garbaged
&& do_display
)
7048 clear_waiting_for_input ();
7049 redisplay_preserve_echo_area (15);
7051 set_waiting_for_input (&timeout
);
7054 if (read_kbd
&& detect_input_pending ())
7057 FD_ZERO (&waitchannels
);
7060 nfds
= select (1, &waitchannels
, (SELECT_TYPE
*)0, (SELECT_TYPE
*)0,
7065 /* Make C-g and alarm signals set flags again */
7066 clear_waiting_for_input ();
7068 /* If we woke up due to SIGWINCH, actually change size now. */
7069 do_pending_window_change (0);
7071 if (time_limit
&& nfds
== 0 && ! timeout_reduced_for_timers
)
7072 /* We waited the full specified time, so return now. */
7077 /* If the system call was interrupted, then go around the
7079 if (xerrno
== EINTR
)
7080 FD_ZERO (&waitchannels
);
7082 error ("select error: %s", emacs_strerror (xerrno
));
7085 else if (nfds
> 0 && (waitchannels
& 1) && interrupt_input
)
7086 /* System sometimes fails to deliver SIGIO. */
7087 kill (getpid (), SIGIO
);
7090 if (read_kbd
&& interrupt_input
&& (waitchannels
& 1))
7091 kill (getpid (), SIGIO
);
7094 /* Check for keyboard input */
7097 && detect_input_pending_run_timers (do_display
))
7099 swallow_events (do_display
);
7100 if (detect_input_pending_run_timers (do_display
))
7104 /* If there is unread keyboard input, also return. */
7106 && requeued_events_pending_p ())
7109 /* If wait_for_cell. check for keyboard input
7110 but don't run any timers.
7111 ??? (It seems wrong to me to check for keyboard
7112 input at all when wait_for_cell, but the code
7113 has been this way since July 1994.
7114 Try changing this after version 19.31.) */
7115 if (! NILP (wait_for_cell
)
7116 && detect_input_pending ())
7118 swallow_events (do_display
);
7119 if (detect_input_pending ())
7123 /* Exit now if the cell we're waiting for became non-nil. */
7124 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
7134 /* Don't confuse make-docfile by having two doc strings for this function.
7135 make-docfile does not pay attention to #if, for good reason! */
7136 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
7139 register Lisp_Object name
;
7144 /* Don't confuse make-docfile by having two doc strings for this function.
7145 make-docfile does not pay attention to #if, for good reason! */
7146 DEFUN ("process-inherit-coding-system-flag",
7147 Fprocess_inherit_coding_system_flag
, Sprocess_inherit_coding_system_flag
,
7151 register Lisp_Object process
;
7153 /* Ignore the argument and return the value of
7154 inherit-process-coding-system. */
7155 return inherit_process_coding_system
? Qt
: Qnil
;
7158 /* Kill all processes associated with `buffer'.
7159 If `buffer' is nil, kill all processes.
7160 Since we have no subprocesses, this does nothing. */
7163 kill_buffer_processes (buffer
)
7176 QCtype
= intern (":type");
7177 staticpro (&QCtype
);
7179 defsubr (&Sget_buffer_process
);
7180 defsubr (&Sprocess_inherit_coding_system_flag
);
7184 #endif /* not subprocesses */
7186 /* arch-tag: 3706c011-7b9a-4117-bd4f-59e7f701a4c4
7187 (do not change this comment) */