1 /* Asynchronous subprocess control for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995,
3 1996, 1998, 1999, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
27 /* This file is split into two parts by the following preprocessor
28 conditional. The 'then' clause contains all of the support for
29 asynchronous subprocesses. The 'else' clause contains stub
30 versions of some of the asynchronous subprocess routines that are
31 often called elsewhere in Emacs, so we don't have to #ifdef the
32 sections that call them. */
40 #include <sys/types.h> /* some typedefs are used in sys/file.h */
43 #ifdef HAVE_INTTYPES_H
50 #if defined(WINDOWSNT) || defined(UNIX98_PTYS)
53 #endif /* not WINDOWSNT */
55 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
56 #include <sys/socket.h>
58 #include <netinet/in.h>
59 #include <arpa/inet.h>
60 #ifdef NEED_NET_ERRNO_H
61 #include <net/errno.h>
62 #endif /* NEED_NET_ERRNO_H */
64 /* Are local (unix) sockets supported? */
65 #if defined (HAVE_SYS_UN_H) && !defined (NO_SOCKETS_IN_FILE_SYSTEM)
66 #if !defined (AF_LOCAL) && defined (AF_UNIX)
67 #define AF_LOCAL AF_UNIX
70 #define HAVE_LOCAL_SOCKETS
74 #endif /* HAVE_SOCKETS */
76 /* TERM is a poor-man's SLIP, used on GNU/Linux. */
81 /* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */
82 #ifdef HAVE_BROKEN_INET_ADDR
83 #define IN_ADDR struct in_addr
84 #define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1)
86 #define IN_ADDR unsigned long
87 #define NUMERIC_ADDR_ERROR (numeric_addr == -1)
90 #if defined(BSD_SYSTEM) || defined(STRIDE)
91 #include <sys/ioctl.h>
92 #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
94 #endif /* HAVE_PTYS and no O_NDELAY */
95 #endif /* BSD_SYSTEM || STRIDE */
97 #ifdef BROKEN_O_NONBLOCK
99 #endif /* BROKEN_O_NONBLOCK */
105 /* Can we use SIOCGIFCONF and/or SIOCGIFADDR */
107 #if defined(HAVE_SYS_IOCTL_H) && defined(HAVE_NET_IF_H)
108 /* sys/ioctl.h may have been included already */
110 #include <sys/ioctl.h>
117 #include <sys/sysmacros.h> /* for "minor" */
118 #endif /* not IRIS */
121 #include <sys/wait.h>
124 /* Disable IPv6 support for w32 until someone figures out how to do it
141 #include "termhooks.h"
142 #include "termopts.h"
143 #include "commands.h"
144 #include "keyboard.h"
146 #include "blockinput.h"
147 #include "dispextern.h"
148 #include "composite.h"
151 Lisp_Object Qprocessp
;
152 Lisp_Object Qrun
, Qstop
, Qsignal
;
153 Lisp_Object Qopen
, Qclosed
, Qconnect
, Qfailed
, Qlisten
;
154 Lisp_Object Qlocal
, Qipv4
, Qdatagram
;
158 Lisp_Object QCname
, QCbuffer
, QChost
, QCservice
, QCtype
;
159 Lisp_Object QClocal
, QCremote
, QCcoding
;
160 Lisp_Object QCserver
, QCnowait
, QCnoquery
, QCstop
;
161 Lisp_Object QCsentinel
, QClog
, QCoptions
, QCplist
;
162 Lisp_Object QCfilter_multibyte
;
163 Lisp_Object Qlast_nonmenu_event
;
164 /* QCfamily is declared and initialized in xfaces.c,
165 QCfilter in keyboard.c. */
166 extern Lisp_Object QCfamily
, QCfilter
;
168 /* Qexit is declared and initialized in eval.c. */
170 /* QCfamily is defined in xfaces.c. */
171 extern Lisp_Object QCfamily
;
172 /* QCfilter is defined in keyboard.c. */
173 extern Lisp_Object QCfilter
;
175 /* a process object is a network connection when its childp field is neither
176 Qt nor Qnil but is instead a property list (KEY VAL ...). */
179 #define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp))
180 #define NETCONN1_P(p) (GC_CONSP ((p)->childp))
182 #define NETCONN_P(p) 0
183 #define NETCONN1_P(p) 0
184 #endif /* HAVE_SOCKETS */
186 /* Define first descriptor number available for subprocesses. */
188 #define FIRST_PROC_DESC 1
190 #define FIRST_PROC_DESC 3
193 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
196 #if !defined (SIGCHLD) && defined (SIGCLD)
197 #define SIGCHLD SIGCLD
200 #include "syssignal.h"
204 extern char *get_operating_system_release ();
210 extern char *sys_errlist
[];
217 /* t means use pty, nil means use a pipe,
218 maybe other values to come. */
219 static Lisp_Object Vprocess_connection_type
;
223 #include <sys/socket.h>
227 /* These next two vars are non-static since sysdep.c uses them in the
228 emulation of `select'. */
229 /* Number of events of change of status of a process. */
231 /* Number of events for which the user or sentinel has been notified. */
234 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
236 #ifdef BROKEN_NON_BLOCKING_CONNECT
237 #undef NON_BLOCKING_CONNECT
239 #ifndef NON_BLOCKING_CONNECT
242 #if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX)
243 #if defined (O_NONBLOCK) || defined (O_NDELAY)
244 #if defined (EWOULDBLOCK) || defined (EINPROGRESS)
245 #define NON_BLOCKING_CONNECT
246 #endif /* EWOULDBLOCK || EINPROGRESS */
247 #endif /* O_NONBLOCK || O_NDELAY */
248 #endif /* HAVE_GETPEERNAME || GNU_LINUX */
249 #endif /* HAVE_SELECT */
250 #endif /* HAVE_SOCKETS */
251 #endif /* NON_BLOCKING_CONNECT */
252 #endif /* BROKEN_NON_BLOCKING_CONNECT */
254 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on
255 this system. We need to read full packets, so we need a
256 "non-destructive" select. So we require either native select,
257 or emulation of select using FIONREAD. */
259 #ifdef BROKEN_DATAGRAM_SOCKETS
260 #undef DATAGRAM_SOCKETS
262 #ifndef DATAGRAM_SOCKETS
264 #if defined (HAVE_SELECT) || defined (FIONREAD)
265 #if defined (HAVE_SENDTO) && defined (HAVE_RECVFROM) && defined (EMSGSIZE)
266 #define DATAGRAM_SOCKETS
267 #endif /* HAVE_SENDTO && HAVE_RECVFROM && EMSGSIZE */
268 #endif /* HAVE_SELECT || FIONREAD */
269 #endif /* HAVE_SOCKETS */
270 #endif /* DATAGRAM_SOCKETS */
271 #endif /* BROKEN_DATAGRAM_SOCKETS */
274 #undef NON_BLOCKING_CONNECT
275 #undef DATAGRAM_SOCKETS
278 #if !defined (ADAPTIVE_READ_BUFFERING) && !defined (NO_ADAPTIVE_READ_BUFFERING)
279 #ifdef EMACS_HAS_USECS
280 #define ADAPTIVE_READ_BUFFERING
284 #ifdef ADAPTIVE_READ_BUFFERING
285 #define READ_OUTPUT_DELAY_INCREMENT 10000
286 #define READ_OUTPUT_DELAY_MAX (READ_OUTPUT_DELAY_INCREMENT * 5)
287 #define READ_OUTPUT_DELAY_MAX_MAX (READ_OUTPUT_DELAY_INCREMENT * 7)
289 /* Number of processes which have a non-zero read_output_delay,
290 and therefore might be delayed for adaptive read buffering. */
292 static int process_output_delay_count
;
294 /* Non-zero if any process has non-nil read_output_skip. */
296 static int process_output_skip
;
298 /* Non-nil means to delay reading process output to improve buffering.
299 A value of t means that delay is reset after each send, any other
300 non-nil value does not reset the delay. A value of nil disables
301 adaptive read buffering completely. */
302 static Lisp_Object Vprocess_adaptive_read_buffering
;
304 #define process_output_delay_count 0
308 #include "sysselect.h"
310 static int keyboard_bit_set
P_ ((SELECT_TYPE
*));
311 static void deactivate_process
P_ ((Lisp_Object
));
312 static void status_notify
P_ ((struct Lisp_Process
*));
313 static int read_process_output
P_ ((Lisp_Object
, int));
315 /* If we support a window system, turn on the code to poll periodically
316 to detect C-g. It isn't actually used when doing interrupt input. */
317 #ifdef HAVE_WINDOW_SYSTEM
318 #define POLL_FOR_INPUT
321 static Lisp_Object
get_process ();
322 static void exec_sentinel ();
324 extern EMACS_TIME
timer_check ();
325 extern int timers_run
;
327 /* Mask of bits indicating the descriptors that we wait for input on. */
329 static SELECT_TYPE input_wait_mask
;
331 /* Mask that excludes keyboard input descriptor (s). */
333 static SELECT_TYPE non_keyboard_wait_mask
;
335 /* Mask that excludes process input descriptor (s). */
337 static SELECT_TYPE non_process_wait_mask
;
339 #ifdef NON_BLOCKING_CONNECT
340 /* Mask of bits indicating the descriptors that we wait for connect to
341 complete on. Once they complete, they are removed from this mask
342 and added to the input_wait_mask and non_keyboard_wait_mask. */
344 static SELECT_TYPE connect_wait_mask
;
346 /* Number of bits set in connect_wait_mask. */
347 static int num_pending_connects
;
349 #define IF_NON_BLOCKING_CONNECT(s) s
351 #define IF_NON_BLOCKING_CONNECT(s)
354 /* The largest descriptor currently in use for a process object. */
355 static int max_process_desc
;
357 /* The largest descriptor currently in use for keyboard input. */
358 static int max_keyboard_desc
;
360 /* Nonzero means delete a process right away if it exits. */
361 static int delete_exited_processes
;
363 /* Indexed by descriptor, gives the process (if any) for that descriptor */
364 Lisp_Object chan_process
[MAXDESC
];
366 /* Alist of elements (NAME . PROCESS) */
367 Lisp_Object Vprocess_alist
;
369 /* Buffered-ahead input char from process, indexed by channel.
370 -1 means empty (no char is buffered).
371 Used on sys V where the only way to tell if there is any
372 output from the process is to read at least one char.
373 Always -1 on systems that support FIONREAD. */
375 /* Don't make static; need to access externally. */
376 int proc_buffered_char
[MAXDESC
];
378 /* Table of `struct coding-system' for each process. */
379 static struct coding_system
*proc_decode_coding_system
[MAXDESC
];
380 static struct coding_system
*proc_encode_coding_system
[MAXDESC
];
382 #ifdef DATAGRAM_SOCKETS
383 /* Table of `partner address' for datagram sockets. */
384 struct sockaddr_and_len
{
387 } datagram_address
[MAXDESC
];
388 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
389 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XINT (XPROCESS (proc)->infd)].sa != 0)
391 #define DATAGRAM_CHAN_P(chan) (0)
392 #define DATAGRAM_CONN_P(proc) (0)
395 /* Maximum number of bytes to send to a pty without an eof. */
396 static int pty_max_bytes
;
398 /* Nonzero means don't run process sentinels. This is used
400 int inhibit_sentinels
;
406 /* The file name of the pty opened by allocate_pty. */
408 static char pty_name
[24];
411 /* Compute the Lisp form of the process status, p->status, from
412 the numeric status that was returned by `wait'. */
414 static Lisp_Object
status_convert ();
418 struct Lisp_Process
*p
;
420 union { int i
; WAITTYPE wt
; } u
;
421 eassert (p
->raw_status_new
);
423 p
->status
= status_convert (u
.wt
);
424 p
->raw_status_new
= 0;
427 /* Convert a process status word in Unix format to
428 the list that we use internally. */
435 return Fcons (Qstop
, Fcons (make_number (WSTOPSIG (w
)), Qnil
));
436 else if (WIFEXITED (w
))
437 return Fcons (Qexit
, Fcons (make_number (WRETCODE (w
)),
438 WCOREDUMP (w
) ? Qt
: Qnil
));
439 else if (WIFSIGNALED (w
))
440 return Fcons (Qsignal
, Fcons (make_number (WTERMSIG (w
)),
441 WCOREDUMP (w
) ? Qt
: Qnil
));
446 /* Given a status-list, extract the three pieces of information
447 and store them individually through the three pointers. */
450 decode_status (l
, symbol
, code
, coredump
)
468 *code
= XFASTINT (XCAR (tem
));
470 *coredump
= !NILP (tem
);
474 /* Return a string describing a process status list. */
478 struct Lisp_Process
*p
;
480 Lisp_Object status
= p
->status
;
483 Lisp_Object string
, string2
;
485 decode_status (status
, &symbol
, &code
, &coredump
);
487 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qstop
))
490 synchronize_system_messages_locale ();
491 signame
= strsignal (code
);
494 string
= build_string (signame
);
495 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
496 SSET (string
, 0, DOWNCASE (SREF (string
, 0)));
497 return concat2 (string
, string2
);
499 else if (EQ (symbol
, Qexit
))
502 return build_string (code
== 0 ? "deleted\n" : "connection broken by remote peer\n");
504 return build_string ("finished\n");
505 string
= Fnumber_to_string (make_number (code
));
506 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
507 return concat3 (build_string ("exited abnormally with code "),
510 else if (EQ (symbol
, Qfailed
))
512 string
= Fnumber_to_string (make_number (code
));
513 string2
= build_string ("\n");
514 return concat3 (build_string ("failed with code "),
518 return Fcopy_sequence (Fsymbol_name (symbol
));
523 /* Open an available pty, returning a file descriptor.
524 Return -1 on failure.
525 The file name of the terminal corresponding to the pty
526 is left in the variable pty_name. */
537 for (c
= FIRST_PTY_LETTER
; c
<= 'z'; c
++)
538 for (i
= 0; i
< 16; i
++)
541 struct stat stb
; /* Used in some PTY_OPEN. */
542 #ifdef PTY_NAME_SPRINTF
545 sprintf (pty_name
, "/dev/pty%c%x", c
, i
);
546 #endif /* no PTY_NAME_SPRINTF */
550 #else /* no PTY_OPEN */
553 /* Unusual IRIS code */
554 *ptyv
= emacs_open ("/dev/ptc", O_RDWR
| O_NDELAY
, 0);
557 if (fstat (fd
, &stb
) < 0)
559 # else /* not IRIS */
560 { /* Some systems name their pseudoterminals so that there are gaps in
561 the usual sequence - for example, on HP9000/S700 systems, there
562 are no pseudoterminals with names ending in 'f'. So we wait for
563 three failures in a row before deciding that we've reached the
565 int failed_count
= 0;
567 if (stat (pty_name
, &stb
) < 0)
570 if (failed_count
>= 3)
577 fd
= emacs_open (pty_name
, O_RDWR
| O_NONBLOCK
, 0);
579 fd
= emacs_open (pty_name
, O_RDWR
| O_NDELAY
, 0);
581 # endif /* not IRIS */
583 #endif /* no PTY_OPEN */
587 /* check to make certain that both sides are available
588 this avoids a nasty yet stupid bug in rlogins */
589 #ifdef PTY_TTY_NAME_SPRINTF
592 sprintf (pty_name
, "/dev/tty%c%x", c
, i
);
593 #endif /* no PTY_TTY_NAME_SPRINTF */
595 if (access (pty_name
, 6) != 0)
598 # if !defined(IRIS) && !defined(__sgi)
604 #endif /* not UNIPLUS */
611 #endif /* HAVE_PTYS */
617 register Lisp_Object val
, tem
, name1
;
618 register struct Lisp_Process
*p
;
622 p
= allocate_process ();
624 XSETINT (p
->infd
, -1);
625 XSETINT (p
->outfd
, -1);
626 XSETFASTINT (p
->tick
, 0);
627 XSETFASTINT (p
->update_tick
, 0);
630 p
->raw_status_new
= 0;
632 p
->mark
= Fmake_marker ();
634 #ifdef ADAPTIVE_READ_BUFFERING
635 p
->adaptive_read_buffering
= Qnil
;
636 XSETFASTINT (p
->read_output_delay
, 0);
637 p
->read_output_skip
= Qnil
;
640 /* If name is already in use, modify it until it is unused. */
645 tem
= Fget_process (name1
);
646 if (NILP (tem
)) break;
647 sprintf (suffix
, "<%d>", i
);
648 name1
= concat2 (name
, build_string (suffix
));
652 XSETPROCESS (val
, p
);
653 Vprocess_alist
= Fcons (Fcons (name
, val
), Vprocess_alist
);
658 remove_process (proc
)
659 register Lisp_Object proc
;
661 register Lisp_Object pair
;
663 pair
= Frassq (proc
, Vprocess_alist
);
664 Vprocess_alist
= Fdelq (pair
, Vprocess_alist
);
666 deactivate_process (proc
);
669 /* Setup coding systems of PROCESS. */
672 setup_process_coding_systems (process
)
675 struct Lisp_Process
*p
= XPROCESS (process
);
676 int inch
= XINT (p
->infd
);
677 int outch
= XINT (p
->outfd
);
679 if (inch
< 0 || outch
< 0)
682 if (!proc_decode_coding_system
[inch
])
683 proc_decode_coding_system
[inch
]
684 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
685 setup_coding_system (p
->decode_coding_system
,
686 proc_decode_coding_system
[inch
]);
687 if (! NILP (p
->filter
))
689 if (NILP (p
->filter_multibyte
))
690 setup_raw_text_coding_system (proc_decode_coding_system
[inch
]);
692 else if (BUFFERP (p
->buffer
))
694 if (NILP (XBUFFER (p
->buffer
)->enable_multibyte_characters
))
695 setup_raw_text_coding_system (proc_decode_coding_system
[inch
]);
698 if (!proc_encode_coding_system
[outch
])
699 proc_encode_coding_system
[outch
]
700 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
701 setup_coding_system (p
->encode_coding_system
,
702 proc_encode_coding_system
[outch
]);
703 if (proc_encode_coding_system
[outch
]->eol_type
== CODING_EOL_UNDECIDED
)
704 proc_encode_coding_system
[outch
]->eol_type
= system_eol_type
;
707 DEFUN ("processp", Fprocessp
, Sprocessp
, 1, 1, 0,
708 doc
: /* Return t if OBJECT is a process. */)
712 return PROCESSP (object
) ? Qt
: Qnil
;
715 DEFUN ("get-process", Fget_process
, Sget_process
, 1, 1, 0,
716 doc
: /* Return the process named NAME, or nil if there is none. */)
718 register Lisp_Object name
;
723 return Fcdr (Fassoc (name
, Vprocess_alist
));
726 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
727 doc
: /* Return the (or a) process associated with BUFFER.
728 BUFFER may be a buffer or the name of one. */)
730 register Lisp_Object buffer
;
732 register Lisp_Object buf
, tail
, proc
;
734 if (NILP (buffer
)) return Qnil
;
735 buf
= Fget_buffer (buffer
);
736 if (NILP (buf
)) return Qnil
;
738 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
740 proc
= Fcdr (Fcar (tail
));
741 if (PROCESSP (proc
) && EQ (XPROCESS (proc
)->buffer
, buf
))
747 /* This is how commands for the user decode process arguments. It
748 accepts a process, a process name, a buffer, a buffer name, or nil.
749 Buffers denote the first process in the buffer, and nil denotes the
754 register Lisp_Object name
;
756 register Lisp_Object proc
, obj
;
759 obj
= Fget_process (name
);
761 obj
= Fget_buffer (name
);
763 error ("Process %s does not exist", SDATA (name
));
765 else if (NILP (name
))
766 obj
= Fcurrent_buffer ();
770 /* Now obj should be either a buffer object or a process object.
774 proc
= Fget_buffer_process (obj
);
776 error ("Buffer %s has no process", SDATA (XBUFFER (obj
)->name
));
788 /* Fdelete_process promises to immediately forget about the process, but in
789 reality, Emacs needs to remember those processes until they have been
790 treated by sigchld_handler; otherwise this handler would consider the
791 process as being synchronous and say that the synchronous process is
793 static Lisp_Object deleted_pid_list
;
796 DEFUN ("delete-process", Fdelete_process
, Sdelete_process
, 1, 1, 0,
797 doc
: /* Delete PROCESS: kill it and forget about it immediately.
798 PROCESS may be a process, a buffer, the name of a process or buffer, or
799 nil, indicating the current buffer's process. */)
801 register Lisp_Object process
;
803 register struct Lisp_Process
*p
;
805 process
= get_process (process
);
806 p
= XPROCESS (process
);
808 p
->raw_status_new
= 0;
811 p
->status
= Fcons (Qexit
, Fcons (make_number (0), Qnil
));
812 XSETINT (p
->tick
, ++process_tick
);
815 else if (XINT (p
->infd
) >= 0)
819 /* Assignment to EMACS_INT stops GCC whining about limited range
821 EMACS_INT pid
= p
->pid
;
823 /* No problem storing the pid here, as it is still in Vprocess_alist. */
824 deleted_pid_list
= Fcons (make_fixnum_or_float (pid
),
825 /* GC treated elements set to nil. */
826 Fdelq (Qnil
, deleted_pid_list
));
827 /* If the process has already signaled, remove it from the list. */
828 if (p
->raw_status_new
)
831 if (CONSP (p
->status
))
832 symbol
= XCAR (p
->status
);
833 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
))
835 = Fdelete (make_fixnum_or_float (pid
), deleted_pid_list
);
839 Fkill_process (process
, Qnil
);
840 /* Do this now, since remove_process will make sigchld_handler do nothing. */
842 = Fcons (Qsignal
, Fcons (make_number (SIGKILL
), Qnil
));
843 XSETINT (p
->tick
, ++process_tick
);
847 remove_process (process
);
851 DEFUN ("process-status", Fprocess_status
, Sprocess_status
, 1, 1, 0,
852 doc
: /* Return the status of PROCESS.
853 The returned value is one of the following symbols:
854 run -- for a process that is running.
855 stop -- for a process stopped but continuable.
856 exit -- for a process that has exited.
857 signal -- for a process that has got a fatal signal.
858 open -- for a network stream connection that is open.
859 listen -- for a network stream server that is listening.
860 closed -- for a network stream connection that is closed.
861 connect -- when waiting for a non-blocking connection to complete.
862 failed -- when a non-blocking connection has failed.
863 nil -- if arg is a process name and no such process exists.
864 PROCESS may be a process, a buffer, the name of a process, or
865 nil, indicating the current buffer's process. */)
867 register Lisp_Object process
;
869 register struct Lisp_Process
*p
;
870 register Lisp_Object status
;
872 if (STRINGP (process
))
873 process
= Fget_process (process
);
875 process
= get_process (process
);
880 p
= XPROCESS (process
);
881 if (p
->raw_status_new
)
885 status
= XCAR (status
);
888 if (EQ (status
, Qexit
))
890 else if (EQ (p
->command
, Qt
))
892 else if (EQ (status
, Qrun
))
898 DEFUN ("process-exit-status", Fprocess_exit_status
, Sprocess_exit_status
,
900 doc
: /* Return the exit status of PROCESS or the signal number that killed it.
901 If PROCESS has not yet exited or died, return 0. */)
903 register Lisp_Object process
;
905 CHECK_PROCESS (process
);
906 if (XPROCESS (process
)->raw_status_new
)
907 update_status (XPROCESS (process
));
908 if (CONSP (XPROCESS (process
)->status
))
909 return XCAR (XCDR (XPROCESS (process
)->status
));
910 return make_number (0);
913 DEFUN ("process-id", Fprocess_id
, Sprocess_id
, 1, 1, 0,
914 doc
: /* Return the process id of PROCESS.
915 This is the pid of the external process which PROCESS uses or talks to.
916 For a network connection, this value is nil. */)
918 register Lisp_Object process
;
920 /* Assignment to EMACS_INT stops GCC whining about limited range of
924 CHECK_PROCESS (process
);
925 pid
= XPROCESS (process
)->pid
;
926 return (pid
? make_fixnum_or_float (pid
) : Qnil
);
929 DEFUN ("process-name", Fprocess_name
, Sprocess_name
, 1, 1, 0,
930 doc
: /* Return the name of PROCESS, as a string.
931 This is the name of the program invoked in PROCESS,
932 possibly modified to make it unique among process names. */)
934 register Lisp_Object process
;
936 CHECK_PROCESS (process
);
937 return XPROCESS (process
)->name
;
940 DEFUN ("process-command", Fprocess_command
, Sprocess_command
, 1, 1, 0,
941 doc
: /* Return the command that was executed to start PROCESS.
942 This is a list of strings, the first string being the program executed
943 and the rest of the strings being the arguments given to it.
944 For a non-child channel, this is nil. */)
946 register Lisp_Object process
;
948 CHECK_PROCESS (process
);
949 return XPROCESS (process
)->command
;
952 DEFUN ("process-tty-name", Fprocess_tty_name
, Sprocess_tty_name
, 1, 1, 0,
953 doc
: /* Return the name of the terminal PROCESS uses, or nil if none.
954 This is the terminal that the process itself reads and writes on,
955 not the name of the pty that Emacs uses to talk with that terminal. */)
957 register Lisp_Object process
;
959 CHECK_PROCESS (process
);
960 return XPROCESS (process
)->tty_name
;
963 DEFUN ("set-process-buffer", Fset_process_buffer
, Sset_process_buffer
,
965 doc
: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil). */)
967 register Lisp_Object process
, buffer
;
969 struct Lisp_Process
*p
;
971 CHECK_PROCESS (process
);
973 CHECK_BUFFER (buffer
);
974 p
= XPROCESS (process
);
977 p
->childp
= Fplist_put (p
->childp
, QCbuffer
, buffer
);
978 setup_process_coding_systems (process
);
982 DEFUN ("process-buffer", Fprocess_buffer
, Sprocess_buffer
,
984 doc
: /* Return the buffer PROCESS is associated with.
985 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
987 register Lisp_Object process
;
989 CHECK_PROCESS (process
);
990 return XPROCESS (process
)->buffer
;
993 DEFUN ("process-mark", Fprocess_mark
, Sprocess_mark
,
995 doc
: /* Return the marker for the end of the last output from PROCESS. */)
997 register Lisp_Object process
;
999 CHECK_PROCESS (process
);
1000 return XPROCESS (process
)->mark
;
1003 DEFUN ("set-process-filter", Fset_process_filter
, Sset_process_filter
,
1005 doc
: /* Give PROCESS the filter function FILTER; nil means no filter.
1006 A value of t means stop accepting output from the process.
1008 When a process has a filter, its buffer is not used for output.
1009 Instead, each time it does output, the entire string of output is
1010 passed to the filter.
1012 The filter gets two arguments: the process and the string of output.
1013 The string argument is normally a multibyte string, except:
1014 - if the process' input coding system is no-conversion or raw-text,
1015 it is a unibyte string (the non-converted input), or else
1016 - if `default-enable-multibyte-characters' is nil, it is a unibyte
1017 string (the result of converting the decoded input multibyte
1018 string to unibyte with `string-make-unibyte'). */)
1020 register Lisp_Object process
, filter
;
1022 struct Lisp_Process
*p
;
1024 CHECK_PROCESS (process
);
1025 p
= XPROCESS (process
);
1027 /* Don't signal an error if the process' input file descriptor
1028 is closed. This could make debugging Lisp more difficult,
1029 for example when doing something like
1031 (setq process (start-process ...))
1033 (set-process-filter process ...) */
1035 if (XINT (p
->infd
) >= 0)
1037 if (EQ (filter
, Qt
) && !EQ (p
->status
, Qlisten
))
1039 FD_CLR (XINT (p
->infd
), &input_wait_mask
);
1040 FD_CLR (XINT (p
->infd
), &non_keyboard_wait_mask
);
1042 else if (EQ (p
->filter
, Qt
)
1043 && !EQ (p
->command
, Qt
)) /* Network process not stopped. */
1045 FD_SET (XINT (p
->infd
), &input_wait_mask
);
1046 FD_SET (XINT (p
->infd
), &non_keyboard_wait_mask
);
1052 p
->childp
= Fplist_put (p
->childp
, QCfilter
, filter
);
1053 setup_process_coding_systems (process
);
1057 DEFUN ("process-filter", Fprocess_filter
, Sprocess_filter
,
1059 doc
: /* Returns the filter function of PROCESS; nil if none.
1060 See `set-process-filter' for more info on filter functions. */)
1062 register Lisp_Object process
;
1064 CHECK_PROCESS (process
);
1065 return XPROCESS (process
)->filter
;
1068 DEFUN ("set-process-sentinel", Fset_process_sentinel
, Sset_process_sentinel
,
1070 doc
: /* Give PROCESS the sentinel SENTINEL; nil for none.
1071 The sentinel is called as a function when the process changes state.
1072 It gets two arguments: the process, and a string describing the change. */)
1074 register Lisp_Object process
, sentinel
;
1076 struct Lisp_Process
*p
;
1078 CHECK_PROCESS (process
);
1079 p
= XPROCESS (process
);
1081 p
->sentinel
= sentinel
;
1083 p
->childp
= Fplist_put (p
->childp
, QCsentinel
, sentinel
);
1087 DEFUN ("process-sentinel", Fprocess_sentinel
, Sprocess_sentinel
,
1089 doc
: /* Return the sentinel of PROCESS; nil if none.
1090 See `set-process-sentinel' for more info on sentinels. */)
1092 register Lisp_Object process
;
1094 CHECK_PROCESS (process
);
1095 return XPROCESS (process
)->sentinel
;
1098 DEFUN ("set-process-window-size", Fset_process_window_size
,
1099 Sset_process_window_size
, 3, 3, 0,
1100 doc
: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
1101 (process
, height
, width
)
1102 register Lisp_Object process
, height
, width
;
1104 CHECK_PROCESS (process
);
1105 CHECK_NATNUM (height
);
1106 CHECK_NATNUM (width
);
1108 if (XINT (XPROCESS (process
)->infd
) < 0
1109 || set_window_size (XINT (XPROCESS (process
)->infd
),
1110 XINT (height
), XINT (width
)) <= 0)
1116 DEFUN ("set-process-inherit-coding-system-flag",
1117 Fset_process_inherit_coding_system_flag
,
1118 Sset_process_inherit_coding_system_flag
, 2, 2, 0,
1119 doc
: /* Determine whether buffer of PROCESS will inherit coding-system.
1120 If the second argument FLAG is non-nil, then the variable
1121 `buffer-file-coding-system' of the buffer associated with PROCESS
1122 will be bound to the value of the coding system used to decode
1125 This is useful when the coding system specified for the process buffer
1126 leaves either the character code conversion or the end-of-line conversion
1127 unspecified, or if the coding system used to decode the process output
1128 is more appropriate for saving the process buffer.
1130 Binding the variable `inherit-process-coding-system' to non-nil before
1131 starting the process is an alternative way of setting the inherit flag
1132 for the process which will run. */)
1134 register Lisp_Object process
, flag
;
1136 CHECK_PROCESS (process
);
1137 XPROCESS (process
)->inherit_coding_system_flag
= flag
;
1141 DEFUN ("process-inherit-coding-system-flag",
1142 Fprocess_inherit_coding_system_flag
, Sprocess_inherit_coding_system_flag
,
1144 doc
: /* Return the value of inherit-coding-system flag for PROCESS.
1145 If this flag is t, `buffer-file-coding-system' of the buffer
1146 associated with PROCESS will inherit the coding system used to decode
1147 the process output. */)
1149 register Lisp_Object process
;
1151 CHECK_PROCESS (process
);
1152 return XPROCESS (process
)->inherit_coding_system_flag
;
1155 DEFUN ("set-process-query-on-exit-flag",
1156 Fset_process_query_on_exit_flag
, Sset_process_query_on_exit_flag
,
1158 doc
: /* Specify if query is needed for PROCESS when Emacs is exited.
1159 If the second argument FLAG is non-nil, Emacs will query the user before
1160 exiting if PROCESS is running. */)
1162 register Lisp_Object process
, flag
;
1164 CHECK_PROCESS (process
);
1165 XPROCESS (process
)->kill_without_query
= Fnull (flag
);
1169 DEFUN ("process-query-on-exit-flag",
1170 Fprocess_query_on_exit_flag
, Sprocess_query_on_exit_flag
,
1172 doc
: /* Return the current value of query-on-exit flag for PROCESS. */)
1174 register Lisp_Object process
;
1176 CHECK_PROCESS (process
);
1177 return Fnull (XPROCESS (process
)->kill_without_query
);
1180 #ifdef DATAGRAM_SOCKETS
1181 Lisp_Object
Fprocess_datagram_address ();
1184 DEFUN ("process-contact", Fprocess_contact
, Sprocess_contact
,
1186 doc
: /* Return the contact info of PROCESS; t for a real child.
1187 For a net connection, the value depends on the optional KEY arg.
1188 If KEY is nil, value is a cons cell of the form (HOST SERVICE),
1189 if KEY is t, the complete contact information for the connection is
1190 returned, else the specific value for the keyword KEY is returned.
1191 See `make-network-process' for a list of keywords. */)
1193 register Lisp_Object process
, key
;
1195 Lisp_Object contact
;
1197 CHECK_PROCESS (process
);
1198 contact
= XPROCESS (process
)->childp
;
1200 #ifdef DATAGRAM_SOCKETS
1201 if (DATAGRAM_CONN_P (process
)
1202 && (EQ (key
, Qt
) || EQ (key
, QCremote
)))
1203 contact
= Fplist_put (contact
, QCremote
,
1204 Fprocess_datagram_address (process
));
1207 if (!NETCONN_P (process
) || EQ (key
, Qt
))
1210 return Fcons (Fplist_get (contact
, QChost
),
1211 Fcons (Fplist_get (contact
, QCservice
), Qnil
));
1212 return Fplist_get (contact
, key
);
1215 DEFUN ("process-plist", Fprocess_plist
, Sprocess_plist
,
1217 doc
: /* Return the plist of PROCESS. */)
1219 register Lisp_Object process
;
1221 CHECK_PROCESS (process
);
1222 return XPROCESS (process
)->plist
;
1225 DEFUN ("set-process-plist", Fset_process_plist
, Sset_process_plist
,
1227 doc
: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
1229 register Lisp_Object process
, plist
;
1231 CHECK_PROCESS (process
);
1234 XPROCESS (process
)->plist
= plist
;
1238 #if 0 /* Turned off because we don't currently record this info
1239 in the process. Perhaps add it. */
1240 DEFUN ("process-connection", Fprocess_connection
, Sprocess_connection
, 1, 1, 0,
1241 doc
: /* Return the connection type of PROCESS.
1242 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1243 a socket connection. */)
1245 Lisp_Object process
;
1247 return XPROCESS (process
)->type
;
1252 DEFUN ("format-network-address", Fformat_network_address
, Sformat_network_address
,
1254 doc
: /* Convert network ADDRESS from internal format to a string.
1255 A 4 or 5 element vector represents an IPv4 address (with port number).
1256 An 8 or 9 element vector represents an IPv6 address (with port number).
1257 If optional second argument OMIT-PORT is non-nil, don't include a port
1258 number in the string, even when present in ADDRESS.
1259 Returns nil if format of ADDRESS is invalid. */)
1260 (address
, omit_port
)
1261 Lisp_Object address
, omit_port
;
1266 if (STRINGP (address
)) /* AF_LOCAL */
1269 if (VECTORP (address
)) /* AF_INET or AF_INET6 */
1271 register struct Lisp_Vector
*p
= XVECTOR (address
);
1272 Lisp_Object args
[10];
1275 if (p
->size
== 4 || (p
->size
== 5 && !NILP (omit_port
)))
1277 args
[0] = build_string ("%d.%d.%d.%d");
1280 else if (p
->size
== 5)
1282 args
[0] = build_string ("%d.%d.%d.%d:%d");
1285 else if (p
->size
== 8 || (p
->size
== 9 && !NILP (omit_port
)))
1287 args
[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
1290 else if (p
->size
== 9)
1292 args
[0] = build_string ("[%x:%x:%x:%x:%x:%x:%x:%x]:%d");
1298 for (i
= 0; i
< nargs
; i
++)
1300 EMACS_INT element
= XINT (p
->contents
[i
]);
1302 if (element
< 0 || element
> 65535)
1305 if (nargs
<= 5 /* IPv4 */
1306 && i
< 4 /* host, not port */
1310 args
[i
+1] = p
->contents
[i
];
1313 return Fformat (nargs
+1, args
);
1316 if (CONSP (address
))
1318 Lisp_Object args
[2];
1319 args
[0] = build_string ("<Family %d>");
1320 args
[1] = Fcar (address
);
1321 return Fformat (2, args
);
1329 list_processes_1 (query_only
)
1330 Lisp_Object query_only
;
1332 register Lisp_Object tail
, tem
;
1333 Lisp_Object proc
, minspace
, tem1
;
1334 register struct Lisp_Process
*p
;
1336 int w_proc
, w_buffer
, w_tty
;
1338 Lisp_Object i_status
, i_buffer
, i_tty
, i_command
;
1340 w_proc
= 4; /* Proc */
1341 w_buffer
= 6; /* Buffer */
1342 w_tty
= 0; /* Omit if no ttys */
1344 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
1348 proc
= Fcdr (Fcar (tail
));
1349 p
= XPROCESS (proc
);
1350 if (NILP (p
->childp
))
1352 if (!NILP (query_only
) && !NILP (p
->kill_without_query
))
1354 if (STRINGP (p
->name
)
1355 && ( i
= SCHARS (p
->name
), (i
> w_proc
)))
1357 if (!NILP (p
->buffer
))
1359 if (NILP (XBUFFER (p
->buffer
)->name
) && w_buffer
< 8)
1360 w_buffer
= 8; /* (Killed) */
1361 else if ((i
= SCHARS (XBUFFER (p
->buffer
)->name
), (i
> w_buffer
)))
1364 if (STRINGP (p
->tty_name
)
1365 && (i
= SCHARS (p
->tty_name
), (i
> w_tty
)))
1369 XSETFASTINT (i_status
, w_proc
+ 1);
1370 XSETFASTINT (i_buffer
, XFASTINT (i_status
) + 9);
1373 XSETFASTINT (i_tty
, XFASTINT (i_buffer
) + w_buffer
+ 1);
1374 XSETFASTINT (i_command
, XFASTINT (i_tty
) + w_tty
+ 1);
1379 XSETFASTINT (i_command
, XFASTINT (i_buffer
) + w_buffer
+ 1);
1382 XSETFASTINT (minspace
, 1);
1384 set_buffer_internal (XBUFFER (Vstandard_output
));
1385 current_buffer
->undo_list
= Qt
;
1387 current_buffer
->truncate_lines
= Qt
;
1389 write_string ("Proc", -1);
1390 Findent_to (i_status
, minspace
); write_string ("Status", -1);
1391 Findent_to (i_buffer
, minspace
); write_string ("Buffer", -1);
1394 Findent_to (i_tty
, minspace
); write_string ("Tty", -1);
1396 Findent_to (i_command
, minspace
); write_string ("Command", -1);
1397 write_string ("\n", -1);
1399 write_string ("----", -1);
1400 Findent_to (i_status
, minspace
); write_string ("------", -1);
1401 Findent_to (i_buffer
, minspace
); write_string ("------", -1);
1404 Findent_to (i_tty
, minspace
); write_string ("---", -1);
1406 Findent_to (i_command
, minspace
); write_string ("-------", -1);
1407 write_string ("\n", -1);
1409 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
1413 proc
= Fcdr (Fcar (tail
));
1414 p
= XPROCESS (proc
);
1415 if (NILP (p
->childp
))
1417 if (!NILP (query_only
) && !NILP (p
->kill_without_query
))
1420 Finsert (1, &p
->name
);
1421 Findent_to (i_status
, minspace
);
1423 if (p
->raw_status_new
)
1426 if (CONSP (p
->status
))
1427 symbol
= XCAR (p
->status
);
1429 if (EQ (symbol
, Qsignal
))
1432 tem
= Fcar (Fcdr (p
->status
));
1434 if (XINT (tem
) < NSIG
)
1435 write_string (sys_errlist
[XINT (tem
)], -1);
1438 Fprinc (symbol
, Qnil
);
1440 else if (NETCONN1_P (p
))
1442 if (EQ (symbol
, Qexit
))
1443 write_string ("closed", -1);
1444 else if (EQ (p
->command
, Qt
))
1445 write_string ("stopped", -1);
1446 else if (EQ (symbol
, Qrun
))
1447 write_string ("open", -1);
1449 Fprinc (symbol
, Qnil
);
1452 Fprinc (symbol
, Qnil
);
1454 if (EQ (symbol
, Qexit
))
1457 tem
= Fcar (Fcdr (p
->status
));
1460 sprintf (tembuf
, " %d", (int) XFASTINT (tem
));
1461 write_string (tembuf
, -1);
1465 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
) || EQ (symbol
, Qclosed
))
1468 Findent_to (i_buffer
, minspace
);
1469 if (NILP (p
->buffer
))
1470 insert_string ("(none)");
1471 else if (NILP (XBUFFER (p
->buffer
)->name
))
1472 insert_string ("(Killed)");
1474 Finsert (1, &XBUFFER (p
->buffer
)->name
);
1478 Findent_to (i_tty
, minspace
);
1479 if (STRINGP (p
->tty_name
))
1480 Finsert (1, &p
->tty_name
);
1483 Findent_to (i_command
, minspace
);
1485 if (EQ (p
->status
, Qlisten
))
1487 Lisp_Object port
= Fplist_get (p
->childp
, QCservice
);
1488 if (INTEGERP (port
))
1489 port
= Fnumber_to_string (port
);
1491 port
= Fformat_network_address (Fplist_get (p
->childp
, QClocal
), Qnil
);
1492 sprintf (tembuf
, "(network %s server on %s)\n",
1493 (DATAGRAM_CHAN_P (XINT (p
->infd
)) ? "datagram" : "stream"),
1494 (STRINGP (port
) ? (char *)SDATA (port
) : "?"));
1495 insert_string (tembuf
);
1497 else if (NETCONN1_P (p
))
1499 /* For a local socket, there is no host name,
1500 so display service instead. */
1501 Lisp_Object host
= Fplist_get (p
->childp
, QChost
);
1502 if (!STRINGP (host
))
1504 host
= Fplist_get (p
->childp
, QCservice
);
1505 if (INTEGERP (host
))
1506 host
= Fnumber_to_string (host
);
1509 host
= Fformat_network_address (Fplist_get (p
->childp
, QCremote
), Qnil
);
1510 sprintf (tembuf
, "(network %s connection to %s)\n",
1511 (DATAGRAM_CHAN_P (XINT (p
->infd
)) ? "datagram" : "stream"),
1512 (STRINGP (host
) ? (char *)SDATA (host
) : "?"));
1513 insert_string (tembuf
);
1525 insert_string (" ");
1527 insert_string ("\n");
1531 status_notify (NULL
);
1535 DEFUN ("list-processes", Flist_processes
, Slist_processes
, 0, 1, "P",
1536 doc
: /* Display a list of all processes.
1537 If optional argument QUERY-ONLY is non-nil, only processes with
1538 the query-on-exit flag set will be listed.
1539 Any process listed as exited or signaled is actually eliminated
1540 after the listing is made. */)
1542 Lisp_Object query_only
;
1544 internal_with_output_to_temp_buffer ("*Process List*",
1545 list_processes_1
, query_only
);
1549 DEFUN ("process-list", Fprocess_list
, Sprocess_list
, 0, 0, 0,
1550 doc
: /* Return a list of all processes. */)
1553 return Fmapcar (Qcdr
, Vprocess_alist
);
1556 /* Starting asynchronous inferior processes. */
1558 static Lisp_Object
start_process_unwind ();
1560 DEFUN ("start-process", Fstart_process
, Sstart_process
, 3, MANY
, 0,
1561 doc
: /* Start a program in a subprocess. Return the process object for it.
1562 NAME is name for process. It is modified if necessary to make it unique.
1563 BUFFER is the buffer (or buffer name) to associate with the process.
1565 Process output (both standard output and standard error streams) goes
1566 at end of BUFFER, unless you specify an output stream or filter
1567 function to handle the output. BUFFER may also be nil, meaning that
1568 this process is not associated with any buffer.
1570 PROGRAM is the program file name. It is searched for in PATH.
1571 Remaining arguments are strings to give program as arguments.
1573 If you want to separate standard output from standard error, invoke
1574 the command through a shell and redirect one of them using the shell
1577 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1580 register Lisp_Object
*args
;
1582 Lisp_Object buffer
, name
, program
, proc
, current_dir
, tem
;
1584 register unsigned char *new_argv
;
1587 register unsigned char **new_argv
;
1590 int count
= SPECPDL_INDEX ();
1594 buffer
= Fget_buffer_create (buffer
);
1596 /* Make sure that the child will be able to chdir to the current
1597 buffer's current directory, or its unhandled equivalent. We
1598 can't just have the child check for an error when it does the
1599 chdir, since it's in a vfork.
1601 We have to GCPRO around this because Fexpand_file_name and
1602 Funhandled_file_name_directory might call a file name handling
1603 function. The argument list is protected by the caller, so all
1604 we really have to worry about is buffer. */
1606 struct gcpro gcpro1
, gcpro2
;
1608 current_dir
= current_buffer
->directory
;
1610 GCPRO2 (buffer
, current_dir
);
1613 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir
),
1615 if (NILP (Ffile_accessible_directory_p (current_dir
)))
1616 report_file_error ("Setting current directory",
1617 Fcons (current_buffer
->directory
, Qnil
));
1623 CHECK_STRING (name
);
1627 CHECK_STRING (program
);
1629 proc
= make_process (name
);
1630 /* If an error occurs and we can't start the process, we want to
1631 remove it from the process list. This means that each error
1632 check in create_process doesn't need to call remove_process
1633 itself; it's all taken care of here. */
1634 record_unwind_protect (start_process_unwind
, proc
);
1636 XPROCESS (proc
)->childp
= Qt
;
1637 XPROCESS (proc
)->plist
= Qnil
;
1638 XPROCESS (proc
)->buffer
= buffer
;
1639 XPROCESS (proc
)->sentinel
= Qnil
;
1640 XPROCESS (proc
)->filter
= Qnil
;
1641 XPROCESS (proc
)->filter_multibyte
1642 = buffer_defaults
.enable_multibyte_characters
;
1643 XPROCESS (proc
)->command
= Flist (nargs
- 2, args
+ 2);
1645 #ifdef ADAPTIVE_READ_BUFFERING
1646 XPROCESS (proc
)->adaptive_read_buffering
= Vprocess_adaptive_read_buffering
;
1649 /* Make the process marker point into the process buffer (if any). */
1650 if (BUFFERP (buffer
))
1651 set_marker_both (XPROCESS (proc
)->mark
, buffer
,
1652 BUF_ZV (XBUFFER (buffer
)),
1653 BUF_ZV_BYTE (XBUFFER (buffer
)));
1656 /* Decide coding systems for communicating with the process. Here
1657 we don't setup the structure coding_system nor pay attention to
1658 unibyte mode. They are done in create_process. */
1660 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1661 Lisp_Object coding_systems
= Qt
;
1662 Lisp_Object val
, *args2
;
1663 struct gcpro gcpro1
, gcpro2
;
1665 val
= Vcoding_system_for_read
;
1668 args2
= (Lisp_Object
*) alloca ((nargs
+ 1) * sizeof *args2
);
1669 args2
[0] = Qstart_process
;
1670 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1671 GCPRO2 (proc
, current_dir
);
1672 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1674 if (CONSP (coding_systems
))
1675 val
= XCAR (coding_systems
);
1676 else if (CONSP (Vdefault_process_coding_system
))
1677 val
= XCAR (Vdefault_process_coding_system
);
1679 XPROCESS (proc
)->decode_coding_system
= val
;
1681 val
= Vcoding_system_for_write
;
1684 if (EQ (coding_systems
, Qt
))
1686 args2
= (Lisp_Object
*) alloca ((nargs
+ 1) * sizeof args2
);
1687 args2
[0] = Qstart_process
;
1688 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1689 GCPRO2 (proc
, current_dir
);
1690 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1693 if (CONSP (coding_systems
))
1694 val
= XCDR (coding_systems
);
1695 else if (CONSP (Vdefault_process_coding_system
))
1696 val
= XCDR (Vdefault_process_coding_system
);
1698 XPROCESS (proc
)->encode_coding_system
= val
;
1702 /* Make a one member argv with all args concatenated
1703 together separated by a blank. */
1704 len
= SBYTES (program
) + 2;
1705 for (i
= 3; i
< nargs
; i
++)
1709 len
+= SBYTES (tem
) + 1; /* count the blank */
1711 new_argv
= (unsigned char *) alloca (len
);
1712 strcpy (new_argv
, SDATA (program
));
1713 for (i
= 3; i
< nargs
; i
++)
1717 strcat (new_argv
, " ");
1718 strcat (new_argv
, SDATA (tem
));
1720 /* Need to add code here to check for program existence on VMS */
1723 new_argv
= (unsigned char **) alloca ((nargs
- 1) * sizeof (char *));
1725 /* If program file name is not absolute, search our path for it.
1726 Put the name we will really use in TEM. */
1727 if (!IS_DIRECTORY_SEP (SREF (program
, 0))
1728 && !(SCHARS (program
) > 1
1729 && IS_DEVICE_SEP (SREF (program
, 1))))
1731 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1734 GCPRO4 (name
, program
, buffer
, current_dir
);
1735 openp (Vexec_path
, program
, Vexec_suffixes
, &tem
, make_number (X_OK
));
1738 report_file_error ("Searching for program", Fcons (program
, Qnil
));
1739 tem
= Fexpand_file_name (tem
, Qnil
);
1743 if (!NILP (Ffile_directory_p (program
)))
1744 error ("Specified program for new process is a directory");
1748 /* If program file name starts with /: for quoting a magic name,
1750 if (SBYTES (tem
) > 2 && SREF (tem
, 0) == '/'
1751 && SREF (tem
, 1) == ':')
1752 tem
= Fsubstring (tem
, make_number (2), Qnil
);
1754 /* Encode the file name and put it in NEW_ARGV.
1755 That's where the child will use it to execute the program. */
1756 tem
= ENCODE_FILE (tem
);
1757 new_argv
[0] = SDATA (tem
);
1759 /* Here we encode arguments by the coding system used for sending
1760 data to the process. We don't support using different coding
1761 systems for encoding arguments and for encoding data sent to the
1764 for (i
= 3; i
< nargs
; i
++)
1768 if (STRING_MULTIBYTE (tem
))
1769 tem
= (code_convert_string_norecord
1770 (tem
, XPROCESS (proc
)->encode_coding_system
, 1));
1771 new_argv
[i
- 2] = SDATA (tem
);
1773 new_argv
[i
- 2] = 0;
1774 #endif /* not VMS */
1776 XPROCESS (proc
)->decoding_buf
= make_uninit_string (0);
1777 XPROCESS (proc
)->decoding_carryover
= make_number (0);
1778 XPROCESS (proc
)->encoding_buf
= make_uninit_string (0);
1779 XPROCESS (proc
)->encoding_carryover
= make_number (0);
1781 XPROCESS (proc
)->inherit_coding_system_flag
1782 = (NILP (buffer
) || !inherit_process_coding_system
1785 create_process (proc
, (char **) new_argv
, current_dir
);
1787 return unbind_to (count
, proc
);
1790 /* This function is the unwind_protect form for Fstart_process. If
1791 PROC doesn't have its pid set, then we know someone has signaled
1792 an error and the process wasn't started successfully, so we should
1793 remove it from the process list. */
1795 start_process_unwind (proc
)
1798 if (!PROCESSP (proc
))
1801 /* Was PROC started successfully? */
1802 if (XPROCESS (proc
)->pid
<= 0)
1803 remove_process (proc
);
1809 create_process_1 (timer
)
1810 struct atimer
*timer
;
1812 /* Nothing to do. */
1816 #if 0 /* This doesn't work; see the note before sigchld_handler. */
1819 /* Mimic blocking of signals on system V, which doesn't really have it. */
1821 /* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1822 int sigchld_deferred
;
1825 create_process_sigchld ()
1827 signal (SIGCHLD
, create_process_sigchld
);
1829 sigchld_deferred
= 1;
1835 #ifndef VMS /* VMS version of this function is in vmsproc.c. */
1837 create_process (process
, new_argv
, current_dir
)
1838 Lisp_Object process
;
1840 Lisp_Object current_dir
;
1842 int inchannel
, outchannel
;
1845 #ifdef POSIX_SIGNALS
1848 struct sigaction sigint_action
;
1849 struct sigaction sigquit_action
;
1851 struct sigaction sighup_action
;
1853 #else /* !POSIX_SIGNALS */
1856 SIGTYPE (*sigchld
)();
1859 #endif /* !POSIX_SIGNALS */
1860 /* Use volatile to protect variables from being clobbered by longjmp. */
1861 volatile int forkin
, forkout
;
1862 volatile int pty_flag
= 0;
1864 extern char **environ
;
1867 inchannel
= outchannel
= -1;
1870 if (!NILP (Vprocess_connection_type
))
1871 outchannel
= inchannel
= allocate_pty ();
1875 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1876 /* On most USG systems it does not work to open the pty's tty here,
1877 then close it and reopen it in the child. */
1879 /* Don't let this terminal become our controlling terminal
1880 (in case we don't have one). */
1881 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
| O_NOCTTY
, 0);
1883 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
, 0);
1886 report_file_error ("Opening pty", Qnil
);
1887 #if defined (RTU) || defined (UNIPLUS) || defined (DONT_REOPEN_PTY)
1888 /* In the case that vfork is defined as fork, the parent process
1889 (Emacs) may send some data before the child process completes
1890 tty options setup. So we setup tty before forking. */
1891 child_setup_tty (forkout
);
1892 #endif /* RTU or UNIPLUS or DONT_REOPEN_PTY */
1894 forkin
= forkout
= -1;
1895 #endif /* not USG, or USG_SUBTTY_WORKS */
1899 #endif /* HAVE_PTYS */
1902 if (socketpair (AF_UNIX
, SOCK_STREAM
, 0, sv
) < 0)
1903 report_file_error ("Opening socketpair", Qnil
);
1904 outchannel
= inchannel
= sv
[0];
1905 forkout
= forkin
= sv
[1];
1907 #else /* not SKTPAIR */
1912 report_file_error ("Creating pipe", Qnil
);
1918 emacs_close (inchannel
);
1919 emacs_close (forkout
);
1920 report_file_error ("Creating pipe", Qnil
);
1925 #endif /* not SKTPAIR */
1928 /* Replaced by close_process_descs */
1929 set_exclusive_use (inchannel
);
1930 set_exclusive_use (outchannel
);
1933 /* Stride people say it's a mystery why this is needed
1934 as well as the O_NDELAY, but that it fails without this. */
1935 #if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS))
1938 ioctl (inchannel
, FIONBIO
, &one
);
1943 fcntl (inchannel
, F_SETFL
, O_NONBLOCK
);
1944 fcntl (outchannel
, F_SETFL
, O_NONBLOCK
);
1947 fcntl (inchannel
, F_SETFL
, O_NDELAY
);
1948 fcntl (outchannel
, F_SETFL
, O_NDELAY
);
1952 /* Record this as an active process, with its channels.
1953 As a result, child_setup will close Emacs's side of the pipes. */
1954 chan_process
[inchannel
] = process
;
1955 XSETINT (XPROCESS (process
)->infd
, inchannel
);
1956 XSETINT (XPROCESS (process
)->outfd
, outchannel
);
1958 /* Previously we recorded the tty descriptor used in the subprocess.
1959 It was only used for getting the foreground tty process, so now
1960 we just reopen the device (see emacs_get_tty_pgrp) as this is
1961 more portable (see USG_SUBTTY_WORKS above). */
1963 XPROCESS (process
)->pty_flag
= (pty_flag
? Qt
: Qnil
);
1964 XPROCESS (process
)->status
= Qrun
;
1965 setup_process_coding_systems (process
);
1967 /* Delay interrupts until we have a chance to store
1968 the new fork's pid in its process structure */
1969 #ifdef POSIX_SIGNALS
1970 sigemptyset (&blocked
);
1972 sigaddset (&blocked
, SIGCHLD
);
1974 #ifdef HAVE_WORKING_VFORK
1975 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
1976 this sets the parent's signal handlers as well as the child's.
1977 So delay all interrupts whose handlers the child might munge,
1978 and record the current handlers so they can be restored later. */
1979 sigaddset (&blocked
, SIGINT
); sigaction (SIGINT
, 0, &sigint_action
);
1980 sigaddset (&blocked
, SIGQUIT
); sigaction (SIGQUIT
, 0, &sigquit_action
);
1982 sigaddset (&blocked
, SIGHUP
); sigaction (SIGHUP
, 0, &sighup_action
);
1984 #endif /* HAVE_WORKING_VFORK */
1985 sigprocmask (SIG_BLOCK
, &blocked
, &procmask
);
1986 #else /* !POSIX_SIGNALS */
1990 #else /* not BSD4_1 */
1991 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
1992 sigsetmask (sigmask (SIGCHLD
));
1993 #else /* ordinary USG */
1995 sigchld_deferred
= 0;
1996 sigchld
= signal (SIGCHLD
, create_process_sigchld
);
1998 #endif /* ordinary USG */
1999 #endif /* not BSD4_1 */
2000 #endif /* SIGCHLD */
2001 #endif /* !POSIX_SIGNALS */
2003 FD_SET (inchannel
, &input_wait_mask
);
2004 FD_SET (inchannel
, &non_keyboard_wait_mask
);
2005 if (inchannel
> max_process_desc
)
2006 max_process_desc
= inchannel
;
2008 /* Until we store the proper pid, enable sigchld_handler
2009 to recognize an unknown pid as standing for this process.
2010 It is very important not to let this `marker' value stay
2011 in the table after this function has returned; if it does
2012 it might cause call-process to hang and subsequent asynchronous
2013 processes to get their return values scrambled. */
2014 XPROCESS (process
)->pid
= -1;
2019 /* child_setup must clobber environ on systems with true vfork.
2020 Protect it from permanent change. */
2021 char **save_environ
= environ
;
2023 current_dir
= ENCODE_FILE (current_dir
);
2028 #endif /* not WINDOWSNT */
2030 int xforkin
= forkin
;
2031 int xforkout
= forkout
;
2033 #if 0 /* This was probably a mistake--it duplicates code later on,
2034 but fails to handle all the cases. */
2035 /* Make sure SIGCHLD is not blocked in the child. */
2036 sigsetmask (SIGEMPTYMASK
);
2039 /* Make the pty be the controlling terminal of the process. */
2041 /* First, disconnect its current controlling terminal. */
2043 /* We tried doing setsid only if pty_flag, but it caused
2044 process_set_signal to fail on SGI when using a pipe. */
2046 /* Make the pty's terminal the controlling terminal. */
2050 /* We ignore the return value
2051 because faith@cs.unc.edu says that is necessary on Linux. */
2052 ioctl (xforkin
, TIOCSCTTY
, 0);
2055 #else /* not HAVE_SETSID */
2057 /* It's very important to call setpgrp here and no time
2058 afterwards. Otherwise, we lose our controlling tty which
2059 is set when we open the pty. */
2062 #endif /* not HAVE_SETSID */
2063 #if defined (HAVE_TERMIOS) && defined (LDISC1)
2064 if (pty_flag
&& xforkin
>= 0)
2067 tcgetattr (xforkin
, &t
);
2069 if (tcsetattr (xforkin
, TCSANOW
, &t
) < 0)
2070 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
2073 #if defined (NTTYDISC) && defined (TIOCSETD)
2074 if (pty_flag
&& xforkin
>= 0)
2076 /* Use new line discipline. */
2077 int ldisc
= NTTYDISC
;
2078 ioctl (xforkin
, TIOCSETD
, &ldisc
);
2083 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
2084 can do TIOCSPGRP only to the process's controlling tty. */
2087 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
2088 I can't test it since I don't have 4.3. */
2089 int j
= emacs_open ("/dev/tty", O_RDWR
, 0);
2090 ioctl (j
, TIOCNOTTY
, 0);
2093 /* In order to get a controlling terminal on some versions
2094 of BSD, it is necessary to put the process in pgrp 0
2095 before it opens the terminal. */
2103 #endif /* TIOCNOTTY */
2105 #if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
2106 /*** There is a suggestion that this ought to be a
2107 conditional on TIOCSPGRP,
2108 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
2109 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
2110 that system does seem to need this code, even though
2111 both HAVE_SETSID and TIOCSCTTY are defined. */
2112 /* Now close the pty (if we had it open) and reopen it.
2113 This makes the pty the controlling terminal of the subprocess. */
2116 #ifdef SET_CHILD_PTY_PGRP
2117 int pgrp
= getpid ();
2120 /* I wonder if emacs_close (emacs_open (pty_name, ...))
2123 emacs_close (xforkin
);
2124 xforkout
= xforkin
= emacs_open (pty_name
, O_RDWR
, 0);
2128 emacs_write (1, "Couldn't open the pty terminal ", 31);
2129 emacs_write (1, pty_name
, strlen (pty_name
));
2130 emacs_write (1, "\n", 1);
2134 #ifdef SET_CHILD_PTY_PGRP
2135 ioctl (xforkin
, TIOCSPGRP
, &pgrp
);
2136 ioctl (xforkout
, TIOCSPGRP
, &pgrp
);
2139 #endif /* not UNIPLUS and not RTU and not DONT_REOPEN_PTY */
2141 #ifdef SETUP_SLAVE_PTY
2146 #endif /* SETUP_SLAVE_PTY */
2148 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
2149 Now reenable it in the child, so it will die when we want it to. */
2151 signal (SIGHUP
, SIG_DFL
);
2153 #endif /* HAVE_PTYS */
2155 signal (SIGINT
, SIG_DFL
);
2156 signal (SIGQUIT
, SIG_DFL
);
2158 /* Stop blocking signals in the child. */
2159 #ifdef POSIX_SIGNALS
2160 sigprocmask (SIG_SETMASK
, &procmask
, 0);
2161 #else /* !POSIX_SIGNALS */
2165 #else /* not BSD4_1 */
2166 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
2167 sigsetmask (SIGEMPTYMASK
);
2168 #else /* ordinary USG */
2170 signal (SIGCHLD
, sigchld
);
2172 #endif /* ordinary USG */
2173 #endif /* not BSD4_1 */
2174 #endif /* SIGCHLD */
2175 #endif /* !POSIX_SIGNALS */
2177 #if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
2179 child_setup_tty (xforkout
);
2180 #endif /* not RTU and not UNIPLUS and not DONT_REOPEN_PTY */
2182 pid
= child_setup (xforkin
, xforkout
, xforkout
,
2183 new_argv
, 1, current_dir
);
2184 #else /* not WINDOWSNT */
2185 child_setup (xforkin
, xforkout
, xforkout
,
2186 new_argv
, 1, current_dir
);
2187 #endif /* not WINDOWSNT */
2189 environ
= save_environ
;
2194 /* This runs in the Emacs process. */
2198 emacs_close (forkin
);
2199 if (forkin
!= forkout
&& forkout
>= 0)
2200 emacs_close (forkout
);
2204 /* vfork succeeded. */
2205 XPROCESS (process
)->pid
= pid
;
2208 register_child (pid
, inchannel
);
2209 #endif /* WINDOWSNT */
2211 /* If the subfork execv fails, and it exits,
2212 this close hangs. I don't know why.
2213 So have an interrupt jar it loose. */
2215 struct atimer
*timer
;
2219 EMACS_SET_SECS_USECS (offset
, 1, 0);
2220 timer
= start_atimer (ATIMER_RELATIVE
, offset
, create_process_1
, 0);
2223 emacs_close (forkin
);
2225 cancel_atimer (timer
);
2229 if (forkin
!= forkout
&& forkout
>= 0)
2230 emacs_close (forkout
);
2234 XPROCESS (process
)->tty_name
= build_string (pty_name
);
2237 XPROCESS (process
)->tty_name
= Qnil
;
2240 /* Restore the signal state whether vfork succeeded or not.
2241 (We will signal an error, below, if it failed.) */
2242 #ifdef POSIX_SIGNALS
2243 #ifdef HAVE_WORKING_VFORK
2244 /* Restore the parent's signal handlers. */
2245 sigaction (SIGINT
, &sigint_action
, 0);
2246 sigaction (SIGQUIT
, &sigquit_action
, 0);
2248 sigaction (SIGHUP
, &sighup_action
, 0);
2250 #endif /* HAVE_WORKING_VFORK */
2251 /* Stop blocking signals in the parent. */
2252 sigprocmask (SIG_SETMASK
, &procmask
, 0);
2253 #else /* !POSIX_SIGNALS */
2257 #else /* not BSD4_1 */
2258 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
2259 sigsetmask (SIGEMPTYMASK
);
2260 #else /* ordinary USG */
2262 signal (SIGCHLD
, sigchld
);
2263 /* Now really handle any of these signals
2264 that came in during this function. */
2265 if (sigchld_deferred
)
2266 kill (getpid (), SIGCHLD
);
2268 #endif /* ordinary USG */
2269 #endif /* not BSD4_1 */
2270 #endif /* SIGCHLD */
2271 #endif /* !POSIX_SIGNALS */
2273 /* Now generate the error if vfork failed. */
2275 report_file_error ("Doing vfork", Qnil
);
2277 #endif /* not VMS */
2282 /* Convert an internal struct sockaddr to a lisp object (vector or string).
2283 The address family of sa is not included in the result. */
2286 conv_sockaddr_to_lisp (sa
, len
)
2287 struct sockaddr
*sa
;
2290 Lisp_Object address
;
2293 register struct Lisp_Vector
*p
;
2295 switch (sa
->sa_family
)
2299 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
2300 len
= sizeof (sin
->sin_addr
) + 1;
2301 address
= Fmake_vector (make_number (len
), Qnil
);
2302 p
= XVECTOR (address
);
2303 p
->contents
[--len
] = make_number (ntohs (sin
->sin_port
));
2304 cp
= (unsigned char *)&sin
->sin_addr
;
2310 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*) sa
;
2311 uint16_t *ip6
= (uint16_t *)&sin6
->sin6_addr
;
2312 len
= sizeof (sin6
->sin6_addr
)/2 + 1;
2313 address
= Fmake_vector (make_number (len
), Qnil
);
2314 p
= XVECTOR (address
);
2315 p
->contents
[--len
] = make_number (ntohs (sin6
->sin6_port
));
2316 for (i
= 0; i
< len
; i
++)
2317 p
->contents
[i
] = make_number (ntohs (ip6
[i
]));
2321 #ifdef HAVE_LOCAL_SOCKETS
2324 struct sockaddr_un
*sockun
= (struct sockaddr_un
*) sa
;
2325 for (i
= 0; i
< sizeof (sockun
->sun_path
); i
++)
2326 if (sockun
->sun_path
[i
] == 0)
2328 return make_unibyte_string (sockun
->sun_path
, i
);
2332 len
-= sizeof (sa
->sa_family
);
2333 address
= Fcons (make_number (sa
->sa_family
),
2334 Fmake_vector (make_number (len
), Qnil
));
2335 p
= XVECTOR (XCDR (address
));
2336 cp
= (unsigned char *) sa
+ sizeof (sa
->sa_family
);
2342 p
->contents
[i
++] = make_number (*cp
++);
2348 /* Get family and required size for sockaddr structure to hold ADDRESS. */
2351 get_lisp_to_sockaddr_size (address
, familyp
)
2352 Lisp_Object address
;
2355 register struct Lisp_Vector
*p
;
2357 if (VECTORP (address
))
2359 p
= XVECTOR (address
);
2363 return sizeof (struct sockaddr_in
);
2366 else if (p
->size
== 9)
2368 *familyp
= AF_INET6
;
2369 return sizeof (struct sockaddr_in6
);
2373 #ifdef HAVE_LOCAL_SOCKETS
2374 else if (STRINGP (address
))
2376 *familyp
= AF_LOCAL
;
2377 return sizeof (struct sockaddr_un
);
2380 else if (CONSP (address
) && INTEGERP (XCAR (address
)) && VECTORP (XCDR (address
)))
2382 struct sockaddr
*sa
;
2383 *familyp
= XINT (XCAR (address
));
2384 p
= XVECTOR (XCDR (address
));
2385 return p
->size
+ sizeof (sa
->sa_family
);
2390 /* Convert an address object (vector or string) to an internal sockaddr.
2392 The address format has been basically validated by
2393 get_lisp_to_sockaddr_size, but this does not mean FAMILY is valid;
2394 it could have come from user data. So if FAMILY is not valid,
2395 we return after zeroing *SA. */
2398 conv_lisp_to_sockaddr (family
, address
, sa
, len
)
2400 Lisp_Object address
;
2401 struct sockaddr
*sa
;
2404 register struct Lisp_Vector
*p
;
2405 register unsigned char *cp
= NULL
;
2410 if (VECTORP (address
))
2412 p
= XVECTOR (address
);
2413 if (family
== AF_INET
)
2415 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
2416 len
= sizeof (sin
->sin_addr
) + 1;
2417 i
= XINT (p
->contents
[--len
]);
2418 sin
->sin_port
= htons (i
);
2419 cp
= (unsigned char *)&sin
->sin_addr
;
2420 sa
->sa_family
= family
;
2423 else if (family
== AF_INET6
)
2425 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*) sa
;
2426 uint16_t *ip6
= (uint16_t *)&sin6
->sin6_addr
;
2427 len
= sizeof (sin6
->sin6_addr
) + 1;
2428 i
= XINT (p
->contents
[--len
]);
2429 sin6
->sin6_port
= htons (i
);
2430 for (i
= 0; i
< len
; i
++)
2431 if (INTEGERP (p
->contents
[i
]))
2433 int j
= XFASTINT (p
->contents
[i
]) & 0xffff;
2436 sa
->sa_family
= family
;
2441 else if (STRINGP (address
))
2443 #ifdef HAVE_LOCAL_SOCKETS
2444 if (family
== AF_LOCAL
)
2446 struct sockaddr_un
*sockun
= (struct sockaddr_un
*) sa
;
2447 cp
= SDATA (address
);
2448 for (i
= 0; i
< sizeof (sockun
->sun_path
) && *cp
; i
++)
2449 sockun
->sun_path
[i
] = *cp
++;
2450 sa
->sa_family
= family
;
2457 p
= XVECTOR (XCDR (address
));
2458 cp
= (unsigned char *)sa
+ sizeof (sa
->sa_family
);
2461 for (i
= 0; i
< len
; i
++)
2462 if (INTEGERP (p
->contents
[i
]))
2463 *cp
++ = XFASTINT (p
->contents
[i
]) & 0xff;
2466 #ifdef DATAGRAM_SOCKETS
2467 DEFUN ("process-datagram-address", Fprocess_datagram_address
, Sprocess_datagram_address
,
2469 doc
: /* Get the current datagram address associated with PROCESS. */)
2471 Lisp_Object process
;
2475 CHECK_PROCESS (process
);
2477 if (!DATAGRAM_CONN_P (process
))
2480 channel
= XINT (XPROCESS (process
)->infd
);
2481 return conv_sockaddr_to_lisp (datagram_address
[channel
].sa
,
2482 datagram_address
[channel
].len
);
2485 DEFUN ("set-process-datagram-address", Fset_process_datagram_address
, Sset_process_datagram_address
,
2487 doc
: /* Set the datagram address for PROCESS to ADDRESS.
2488 Returns nil upon error setting address, ADDRESS otherwise. */)
2490 Lisp_Object process
, address
;
2495 CHECK_PROCESS (process
);
2497 if (!DATAGRAM_CONN_P (process
))
2500 channel
= XINT (XPROCESS (process
)->infd
);
2502 len
= get_lisp_to_sockaddr_size (address
, &family
);
2503 if (datagram_address
[channel
].len
!= len
)
2505 conv_lisp_to_sockaddr (family
, address
, datagram_address
[channel
].sa
, len
);
2511 static struct socket_options
{
2512 /* The name of this option. Should be lowercase version of option
2513 name without SO_ prefix. */
2515 /* Option level SOL_... */
2517 /* Option number SO_... */
2519 enum { SOPT_UNKNOWN
, SOPT_BOOL
, SOPT_INT
, SOPT_IFNAME
, SOPT_LINGER
} opttype
;
2520 enum { OPIX_NONE
=0, OPIX_MISC
=1, OPIX_REUSEADDR
=2 } optbit
;
2521 } socket_options
[] =
2523 #ifdef SO_BINDTODEVICE
2524 { ":bindtodevice", SOL_SOCKET
, SO_BINDTODEVICE
, SOPT_IFNAME
, OPIX_MISC
},
2527 { ":broadcast", SOL_SOCKET
, SO_BROADCAST
, SOPT_BOOL
, OPIX_MISC
},
2530 { ":dontroute", SOL_SOCKET
, SO_DONTROUTE
, SOPT_BOOL
, OPIX_MISC
},
2533 { ":keepalive", SOL_SOCKET
, SO_KEEPALIVE
, SOPT_BOOL
, OPIX_MISC
},
2536 { ":linger", SOL_SOCKET
, SO_LINGER
, SOPT_LINGER
, OPIX_MISC
},
2539 { ":oobinline", SOL_SOCKET
, SO_OOBINLINE
, SOPT_BOOL
, OPIX_MISC
},
2542 { ":priority", SOL_SOCKET
, SO_PRIORITY
, SOPT_INT
, OPIX_MISC
},
2545 { ":reuseaddr", SOL_SOCKET
, SO_REUSEADDR
, SOPT_BOOL
, OPIX_REUSEADDR
},
2547 { 0, 0, 0, SOPT_UNKNOWN
, OPIX_NONE
}
2550 /* Set option OPT to value VAL on socket S.
2552 Returns (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
2553 Signals an error if setting a known option fails.
2557 set_socket_option (s
, opt
, val
)
2559 Lisp_Object opt
, val
;
2562 struct socket_options
*sopt
;
2567 name
= (char *) SDATA (SYMBOL_NAME (opt
));
2568 for (sopt
= socket_options
; sopt
->name
; sopt
++)
2569 if (strcmp (name
, sopt
->name
) == 0)
2572 switch (sopt
->opttype
)
2577 optval
= NILP (val
) ? 0 : 1;
2578 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2579 &optval
, sizeof (optval
));
2587 optval
= XINT (val
);
2589 error ("Bad option value for %s", name
);
2590 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2591 &optval
, sizeof (optval
));
2595 #ifdef SO_BINDTODEVICE
2598 char devname
[IFNAMSIZ
+1];
2600 /* This is broken, at least in the Linux 2.4 kernel.
2601 To unbind, the arg must be a zero integer, not the empty string.
2602 This should work on all systems. KFS. 2003-09-23. */
2603 bzero (devname
, sizeof devname
);
2606 char *arg
= (char *) SDATA (val
);
2607 int len
= min (strlen (arg
), IFNAMSIZ
);
2608 bcopy (arg
, devname
, len
);
2610 else if (!NILP (val
))
2611 error ("Bad option value for %s", name
);
2612 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2621 struct linger linger
;
2624 linger
.l_linger
= 0;
2626 linger
.l_linger
= XINT (val
);
2628 linger
.l_onoff
= NILP (val
) ? 0 : 1;
2629 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2630 &linger
, sizeof (linger
));
2640 report_file_error ("Cannot set network option",
2641 Fcons (opt
, Fcons (val
, Qnil
)));
2642 return (1 << sopt
->optbit
);
2646 DEFUN ("set-network-process-option",
2647 Fset_network_process_option
, Sset_network_process_option
,
2649 doc
: /* For network process PROCESS set option OPTION to value VALUE.
2650 See `make-network-process' for a list of options and values.
2651 If optional fourth arg NO-ERROR is non-nil, don't signal an error if
2652 OPTION is not a supported option, return nil instead; otherwise return t. */)
2653 (process
, option
, value
, no_error
)
2654 Lisp_Object process
, option
, value
;
2655 Lisp_Object no_error
;
2658 struct Lisp_Process
*p
;
2660 CHECK_PROCESS (process
);
2661 p
= XPROCESS (process
);
2662 if (!NETCONN1_P (p
))
2663 error ("Process is not a network process");
2667 error ("Process is not running");
2669 if (set_socket_option (s
, option
, value
))
2671 p
->childp
= Fplist_put (p
->childp
, option
, value
);
2675 if (NILP (no_error
))
2676 error ("Unknown or unsupported option");
2682 /* A version of request_sigio suitable for a record_unwind_protect. */
2685 unwind_request_sigio (dummy
)
2688 if (interrupt_input
)
2693 /* Create a network stream/datagram client/server process. Treated
2694 exactly like a normal process when reading and writing. Primary
2695 differences are in status display and process deletion. A network
2696 connection has no PID; you cannot signal it. All you can do is
2697 stop/continue it and deactivate/close it via delete-process */
2699 DEFUN ("make-network-process", Fmake_network_process
, Smake_network_process
,
2701 doc
: /* Create and return a network server or client process.
2703 In Emacs, network connections are represented by process objects, so
2704 input and output work as for subprocesses and `delete-process' closes
2705 a network connection. However, a network process has no process id,
2706 it cannot be signaled, and the status codes are different from normal
2709 Arguments are specified as keyword/argument pairs. The following
2710 arguments are defined:
2712 :name NAME -- NAME is name for process. It is modified if necessary
2715 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2716 with the process. Process output goes at end of that buffer, unless
2717 you specify an output stream or filter function to handle the output.
2718 BUFFER may be also nil, meaning that this process is not associated
2721 :host HOST -- HOST is name of the host to connect to, or its IP
2722 address. The symbol `local' specifies the local host. If specified
2723 for a server process, it must be a valid name or address for the local
2724 host, and only clients connecting to that address will be accepted.
2726 :service SERVICE -- SERVICE is name of the service desired, or an
2727 integer specifying a port number to connect to. If SERVICE is t,
2728 a random port number is selected for the server. (If Emacs was
2729 compiled with getaddrinfo, a port number can also be specified as a
2730 string, e.g. "80", as well as an integer. This is not portable.)
2732 :type TYPE -- TYPE is the type of connection. The default (nil) is a
2733 stream type connection, `datagram' creates a datagram type connection.
2735 :family FAMILY -- FAMILY is the address (and protocol) family for the
2736 service specified by HOST and SERVICE. The default (nil) is to use
2737 whatever address family (IPv4 or IPv6) that is defined for the host
2738 and port number specified by HOST and SERVICE. Other address families
2740 local -- for a local (i.e. UNIX) address specified by SERVICE.
2741 ipv4 -- use IPv4 address family only.
2742 ipv6 -- use IPv6 address family only.
2744 :local ADDRESS -- ADDRESS is the local address used for the connection.
2745 This parameter is ignored when opening a client process. When specified
2746 for a server process, the FAMILY, HOST and SERVICE args are ignored.
2748 :remote ADDRESS -- ADDRESS is the remote partner's address for the
2749 connection. This parameter is ignored when opening a stream server
2750 process. For a datagram server process, it specifies the initial
2751 setting of the remote datagram address. When specified for a client
2752 process, the FAMILY, HOST, and SERVICE args are ignored.
2754 The format of ADDRESS depends on the address family:
2755 - An IPv4 address is represented as an vector of integers [A B C D P]
2756 corresponding to numeric IP address A.B.C.D and port number P.
2757 - A local address is represented as a string with the address in the
2758 local address space.
2759 - An "unsupported family" address is represented by a cons (F . AV)
2760 where F is the family number and AV is a vector containing the socket
2761 address data with one element per address data byte. Do not rely on
2762 this format in portable code, as it may depend on implementation
2763 defined constants, data sizes, and data structure alignment.
2765 :coding CODING -- If CODING is a symbol, it specifies the coding
2766 system used for both reading and writing for this process. If CODING
2767 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2768 ENCODING is used for writing.
2770 :nowait BOOL -- If BOOL is non-nil for a stream type client process,
2771 return without waiting for the connection to complete; instead, the
2772 sentinel function will be called with second arg matching "open" (if
2773 successful) or "failed" when the connect completes. Default is to use
2774 a blocking connect (i.e. wait) for stream type connections.
2776 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
2777 running when Emacs is exited.
2779 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
2780 In the stopped state, a server process does not accept new
2781 connections, and a client process does not handle incoming traffic.
2782 The stopped state is cleared by `continue-process' and set by
2785 :filter FILTER -- Install FILTER as the process filter.
2787 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
2788 process filter are multibyte, otherwise they are unibyte.
2789 If this keyword is not specified, the strings are multibyte if
2790 `default-enable-multibyte-characters' is non-nil.
2792 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2794 :log LOG -- Install LOG as the server process log function. This
2795 function is called when the server accepts a network connection from a
2796 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
2797 is the server process, CLIENT is the new process for the connection,
2798 and MESSAGE is a string.
2800 :plist PLIST -- Install PLIST as the new process' initial plist.
2802 :server QLEN -- if QLEN is non-nil, create a server process for the
2803 specified FAMILY, SERVICE, and connection type (stream or datagram).
2804 If QLEN is an integer, it is used as the max. length of the server's
2805 pending connection queue (also known as the backlog); the default
2806 queue length is 5. Default is to create a client process.
2808 The following network options can be specified for this connection:
2810 :broadcast BOOL -- Allow send and receive of datagram broadcasts.
2811 :dontroute BOOL -- Only send to directly connected hosts.
2812 :keepalive BOOL -- Send keep-alive messages on network stream.
2813 :linger BOOL or TIMEOUT -- Send queued messages before closing.
2814 :oobinline BOOL -- Place out-of-band data in receive data stream.
2815 :priority INT -- Set protocol defined priority for sent packets.
2816 :reuseaddr BOOL -- Allow reusing a recently used local address
2817 (this is allowed by default for a server process).
2818 :bindtodevice NAME -- bind to interface NAME. Using this may require
2819 special privileges on some systems.
2821 Consult the relevant system programmer's manual pages for more
2822 information on using these options.
2825 A server process will listen for and accept connections from clients.
2826 When a client connection is accepted, a new network process is created
2827 for the connection with the following parameters:
2829 - The client's process name is constructed by concatenating the server
2830 process' NAME and a client identification string.
2831 - If the FILTER argument is non-nil, the client process will not get a
2832 separate process buffer; otherwise, the client's process buffer is a newly
2833 created buffer named after the server process' BUFFER name or process
2834 NAME concatenated with the client identification string.
2835 - The connection type and the process filter and sentinel parameters are
2836 inherited from the server process' TYPE, FILTER and SENTINEL.
2837 - The client process' contact info is set according to the client's
2838 addressing information (typically an IP address and a port number).
2839 - The client process' plist is initialized from the server's plist.
2841 Notice that the FILTER and SENTINEL args are never used directly by
2842 the server process. Also, the BUFFER argument is not used directly by
2843 the server process, but via the optional :log function, accepted (and
2844 failed) connections may be logged in the server process' buffer.
2846 The original argument list, modified with the actual connection
2847 information, is available via the `process-contact' function.
2849 usage: (make-network-process &rest ARGS) */)
2855 Lisp_Object contact
;
2856 struct Lisp_Process
*p
;
2857 #ifdef HAVE_GETADDRINFO
2858 struct addrinfo ai
, *res
, *lres
;
2859 struct addrinfo hints
;
2860 char *portstring
, portbuf
[128];
2861 #else /* HAVE_GETADDRINFO */
2862 struct _emacs_addrinfo
2868 struct sockaddr
*ai_addr
;
2869 struct _emacs_addrinfo
*ai_next
;
2871 #endif /* HAVE_GETADDRINFO */
2872 struct sockaddr_in address_in
;
2873 #ifdef HAVE_LOCAL_SOCKETS
2874 struct sockaddr_un address_un
;
2879 int s
= -1, outch
, inch
;
2880 struct gcpro gcpro1
;
2881 int count
= SPECPDL_INDEX ();
2883 Lisp_Object QCaddress
; /* one of QClocal or QCremote */
2885 Lisp_Object name
, buffer
, host
, service
, address
;
2886 Lisp_Object filter
, sentinel
;
2887 int is_non_blocking_client
= 0;
2888 int is_server
= 0, backlog
= 5;
2895 /* Save arguments for process-contact and clone-process. */
2896 contact
= Flist (nargs
, args
);
2900 /* Ensure socket support is loaded if available. */
2901 init_winsock (TRUE
);
2904 /* :type TYPE (nil: stream, datagram */
2905 tem
= Fplist_get (contact
, QCtype
);
2907 socktype
= SOCK_STREAM
;
2908 #ifdef DATAGRAM_SOCKETS
2909 else if (EQ (tem
, Qdatagram
))
2910 socktype
= SOCK_DGRAM
;
2913 error ("Unsupported connection type");
2916 tem
= Fplist_get (contact
, QCserver
);
2919 /* Don't support network sockets when non-blocking mode is
2920 not available, since a blocked Emacs is not useful. */
2921 #if defined(TERM) || (!defined(O_NONBLOCK) && !defined(O_NDELAY))
2922 error ("Network servers not supported");
2926 backlog
= XINT (tem
);
2930 /* Make QCaddress an alias for :local (server) or :remote (client). */
2931 QCaddress
= is_server
? QClocal
: QCremote
;
2934 if (!is_server
&& socktype
== SOCK_STREAM
2935 && (tem
= Fplist_get (contact
, QCnowait
), !NILP (tem
)))
2937 #ifndef NON_BLOCKING_CONNECT
2938 error ("Non-blocking connect not supported");
2940 is_non_blocking_client
= 1;
2944 name
= Fplist_get (contact
, QCname
);
2945 buffer
= Fplist_get (contact
, QCbuffer
);
2946 filter
= Fplist_get (contact
, QCfilter
);
2947 sentinel
= Fplist_get (contact
, QCsentinel
);
2949 CHECK_STRING (name
);
2952 /* Let's handle TERM before things get complicated ... */
2953 host
= Fplist_get (contact
, QChost
);
2954 CHECK_STRING (host
);
2956 service
= Fplist_get (contact
, QCservice
);
2957 if (INTEGERP (service
))
2958 port
= htons ((unsigned short) XINT (service
));
2961 struct servent
*svc_info
;
2962 CHECK_STRING (service
);
2963 svc_info
= getservbyname (SDATA (service
), "tcp");
2965 error ("Unknown service: %s", SDATA (service
));
2966 port
= svc_info
->s_port
;
2969 s
= connect_server (0);
2971 report_file_error ("error creating socket", Fcons (name
, Qnil
));
2972 send_command (s
, C_PORT
, 0, "%s:%d", SDATA (host
), ntohs (port
));
2973 send_command (s
, C_DUMB
, 1, 0);
2975 #else /* not TERM */
2977 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
2978 ai
.ai_socktype
= socktype
;
2983 /* :local ADDRESS or :remote ADDRESS */
2984 address
= Fplist_get (contact
, QCaddress
);
2985 if (!NILP (address
))
2987 host
= service
= Qnil
;
2989 if (!(ai
.ai_addrlen
= get_lisp_to_sockaddr_size (address
, &family
)))
2990 error ("Malformed :address");
2991 ai
.ai_family
= family
;
2992 ai
.ai_addr
= alloca (ai
.ai_addrlen
);
2993 conv_lisp_to_sockaddr (family
, address
, ai
.ai_addr
, ai
.ai_addrlen
);
2997 /* :family FAMILY -- nil (for Inet), local, or integer. */
2998 tem
= Fplist_get (contact
, QCfamily
);
3001 #if defined(HAVE_GETADDRINFO) && defined(AF_INET6)
3007 #ifdef HAVE_LOCAL_SOCKETS
3008 else if (EQ (tem
, Qlocal
))
3012 else if (EQ (tem
, Qipv6
))
3015 else if (EQ (tem
, Qipv4
))
3017 else if (INTEGERP (tem
))
3018 family
= XINT (tem
);
3020 error ("Unknown address family");
3022 ai
.ai_family
= family
;
3024 /* :service SERVICE -- string, integer (port number), or t (random port). */
3025 service
= Fplist_get (contact
, QCservice
);
3027 #ifdef HAVE_LOCAL_SOCKETS
3028 if (family
== AF_LOCAL
)
3030 /* Host is not used. */
3032 CHECK_STRING (service
);
3033 bzero (&address_un
, sizeof address_un
);
3034 address_un
.sun_family
= AF_LOCAL
;
3035 strncpy (address_un
.sun_path
, SDATA (service
), sizeof address_un
.sun_path
);
3036 ai
.ai_addr
= (struct sockaddr
*) &address_un
;
3037 ai
.ai_addrlen
= sizeof address_un
;
3042 /* :host HOST -- hostname, ip address, or 'local for localhost. */
3043 host
= Fplist_get (contact
, QChost
);
3046 if (EQ (host
, Qlocal
))
3047 host
= build_string ("localhost");
3048 CHECK_STRING (host
);
3051 /* Slow down polling to every ten seconds.
3052 Some kernels have a bug which causes retrying connect to fail
3053 after a connect. Polling can interfere with gethostbyname too. */
3054 #ifdef POLL_FOR_INPUT
3055 if (socktype
== SOCK_STREAM
)
3057 record_unwind_protect (unwind_stop_other_atimers
, Qnil
);
3058 bind_polling_period (10);
3062 #ifdef HAVE_GETADDRINFO
3063 /* If we have a host, use getaddrinfo to resolve both host and service.
3064 Otherwise, use getservbyname to lookup the service. */
3068 /* SERVICE can either be a string or int.
3069 Convert to a C string for later use by getaddrinfo. */
3070 if (EQ (service
, Qt
))
3072 else if (INTEGERP (service
))
3074 sprintf (portbuf
, "%ld", (long) XINT (service
));
3075 portstring
= portbuf
;
3079 CHECK_STRING (service
);
3080 portstring
= SDATA (service
);
3085 memset (&hints
, 0, sizeof (hints
));
3087 hints
.ai_family
= family
;
3088 hints
.ai_socktype
= socktype
;
3089 hints
.ai_protocol
= 0;
3090 ret
= getaddrinfo (SDATA (host
), portstring
, &hints
, &res
);
3092 #ifdef HAVE_GAI_STRERROR
3093 error ("%s/%s %s", SDATA (host
), portstring
, gai_strerror(ret
));
3095 error ("%s/%s getaddrinfo error %d", SDATA (host
), portstring
, ret
);
3101 #endif /* HAVE_GETADDRINFO */
3103 /* We end up here if getaddrinfo is not defined, or in case no hostname
3104 has been specified (e.g. for a local server process). */
3106 if (EQ (service
, Qt
))
3108 else if (INTEGERP (service
))
3109 port
= htons ((unsigned short) XINT (service
));
3112 struct servent
*svc_info
;
3113 CHECK_STRING (service
);
3114 svc_info
= getservbyname (SDATA (service
),
3115 (socktype
== SOCK_DGRAM
? "udp" : "tcp"));
3117 error ("Unknown service: %s", SDATA (service
));
3118 port
= svc_info
->s_port
;
3121 bzero (&address_in
, sizeof address_in
);
3122 address_in
.sin_family
= family
;
3123 address_in
.sin_addr
.s_addr
= INADDR_ANY
;
3124 address_in
.sin_port
= port
;
3126 #ifndef HAVE_GETADDRINFO
3129 struct hostent
*host_info_ptr
;
3131 /* gethostbyname may fail with TRY_AGAIN, but we don't honour that,
3132 as it may `hang' Emacs for a very long time. */
3135 host_info_ptr
= gethostbyname (SDATA (host
));
3140 bcopy (host_info_ptr
->h_addr
, (char *) &address_in
.sin_addr
,
3141 host_info_ptr
->h_length
);
3142 family
= host_info_ptr
->h_addrtype
;
3143 address_in
.sin_family
= family
;
3146 /* Attempt to interpret host as numeric inet address */
3148 IN_ADDR numeric_addr
;
3149 numeric_addr
= inet_addr ((char *) SDATA (host
));
3150 if (NUMERIC_ADDR_ERROR
)
3151 error ("Unknown host \"%s\"", SDATA (host
));
3153 bcopy ((char *)&numeric_addr
, (char *) &address_in
.sin_addr
,
3154 sizeof (address_in
.sin_addr
));
3158 #endif /* not HAVE_GETADDRINFO */
3160 ai
.ai_family
= family
;
3161 ai
.ai_addr
= (struct sockaddr
*) &address_in
;
3162 ai
.ai_addrlen
= sizeof address_in
;
3166 /* Kernel bugs (on Ultrix at least) cause lossage (not just EINTR)
3167 when connect is interrupted. So let's not let it get interrupted.
3168 Note we do not turn off polling, because polling is only used
3169 when not interrupt_input, and thus not normally used on the systems
3170 which have this bug. On systems which use polling, there's no way
3171 to quit if polling is turned off. */
3173 && !is_server
&& socktype
== SOCK_STREAM
)
3175 /* Comment from KFS: The original open-network-stream code
3176 didn't unwind protect this, but it seems like the proper
3177 thing to do. In any case, I don't see how it could harm to
3178 do this -- and it makes cleanup (using unbind_to) easier. */
3179 record_unwind_protect (unwind_request_sigio
, Qnil
);
3183 /* Do this in case we never enter the for-loop below. */
3184 count1
= SPECPDL_INDEX ();
3187 for (lres
= res
; lres
; lres
= lres
->ai_next
)
3193 s
= socket (lres
->ai_family
, lres
->ai_socktype
, lres
->ai_protocol
);
3200 #ifdef DATAGRAM_SOCKETS
3201 if (!is_server
&& socktype
== SOCK_DGRAM
)
3203 #endif /* DATAGRAM_SOCKETS */
3205 #ifdef NON_BLOCKING_CONNECT
3206 if (is_non_blocking_client
)
3209 ret
= fcntl (s
, F_SETFL
, O_NONBLOCK
);
3211 ret
= fcntl (s
, F_SETFL
, O_NDELAY
);
3223 /* Make us close S if quit. */
3224 record_unwind_protect (close_file_unwind
, make_number (s
));
3226 /* Parse network options in the arg list.
3227 We simply ignore anything which isn't a known option (including other keywords).
3228 An error is signalled if setting a known option fails. */
3229 for (optn
= optbits
= 0; optn
< nargs
-1; optn
+= 2)
3230 optbits
|= set_socket_option (s
, args
[optn
], args
[optn
+1]);
3234 /* Configure as a server socket. */
3236 /* SO_REUSEADDR = 1 is default for server sockets; must specify
3237 explicit :reuseaddr key to override this. */
3238 #ifdef HAVE_LOCAL_SOCKETS
3239 if (family
!= AF_LOCAL
)
3241 if (!(optbits
& (1 << OPIX_REUSEADDR
)))
3244 if (setsockopt (s
, SOL_SOCKET
, SO_REUSEADDR
, &optval
, sizeof optval
))
3245 report_file_error ("Cannot set reuse option on server socket", Qnil
);
3248 if (bind (s
, lres
->ai_addr
, lres
->ai_addrlen
))
3249 report_file_error ("Cannot bind server socket", Qnil
);
3251 #ifdef HAVE_GETSOCKNAME
3252 if (EQ (service
, Qt
))
3254 struct sockaddr_in sa1
;
3255 int len1
= sizeof (sa1
);
3256 if (getsockname (s
, (struct sockaddr
*)&sa1
, &len1
) == 0)
3258 ((struct sockaddr_in
*)(lres
->ai_addr
))->sin_port
= sa1
.sin_port
;
3259 service
= make_number (ntohs (sa1
.sin_port
));
3260 contact
= Fplist_put (contact
, QCservice
, service
);
3265 if (socktype
== SOCK_STREAM
&& listen (s
, backlog
))
3266 report_file_error ("Cannot listen on server socket", Qnil
);
3274 /* This turns off all alarm-based interrupts; the
3275 bind_polling_period call above doesn't always turn all the
3276 short-interval ones off, especially if interrupt_input is
3279 It'd be nice to be able to control the connect timeout
3280 though. Would non-blocking connect calls be portable?
3282 This used to be conditioned by HAVE_GETADDRINFO. Why? */
3284 turn_on_atimers (0);
3286 ret
= connect (s
, lres
->ai_addr
, lres
->ai_addrlen
);
3289 turn_on_atimers (1);
3291 if (ret
== 0 || xerrno
== EISCONN
)
3293 /* The unwind-protect will be discarded afterwards.
3294 Likewise for immediate_quit. */
3298 #ifdef NON_BLOCKING_CONNECT
3300 if (is_non_blocking_client
&& xerrno
== EINPROGRESS
)
3304 if (is_non_blocking_client
&& xerrno
== EWOULDBLOCK
)
3312 /* Discard the unwind protect closing S. */
3313 specpdl_ptr
= specpdl
+ count1
;
3317 if (xerrno
== EINTR
)
3323 #ifdef DATAGRAM_SOCKETS
3324 if (socktype
== SOCK_DGRAM
)
3326 if (datagram_address
[s
].sa
)
3328 datagram_address
[s
].sa
= (struct sockaddr
*) xmalloc (lres
->ai_addrlen
);
3329 datagram_address
[s
].len
= lres
->ai_addrlen
;
3333 bzero (datagram_address
[s
].sa
, lres
->ai_addrlen
);
3334 if (remote
= Fplist_get (contact
, QCremote
), !NILP (remote
))
3337 rlen
= get_lisp_to_sockaddr_size (remote
, &rfamily
);
3338 if (rfamily
== lres
->ai_family
&& rlen
== lres
->ai_addrlen
)
3339 conv_lisp_to_sockaddr (rfamily
, remote
,
3340 datagram_address
[s
].sa
, rlen
);
3344 bcopy (lres
->ai_addr
, datagram_address
[s
].sa
, lres
->ai_addrlen
);
3347 contact
= Fplist_put (contact
, QCaddress
,
3348 conv_sockaddr_to_lisp (lres
->ai_addr
, lres
->ai_addrlen
));
3349 #ifdef HAVE_GETSOCKNAME
3352 struct sockaddr_in sa1
;
3353 int len1
= sizeof (sa1
);
3354 if (getsockname (s
, (struct sockaddr
*)&sa1
, &len1
) == 0)
3355 contact
= Fplist_put (contact
, QClocal
,
3356 conv_sockaddr_to_lisp (&sa1
, len1
));
3363 #ifdef HAVE_GETADDRINFO
3372 /* Discard the unwind protect for closing S, if any. */
3373 specpdl_ptr
= specpdl
+ count1
;
3375 /* Unwind bind_polling_period and request_sigio. */
3376 unbind_to (count
, Qnil
);
3380 /* If non-blocking got this far - and failed - assume non-blocking is
3381 not supported after all. This is probably a wrong assumption, but
3382 the normal blocking calls to open-network-stream handles this error
3384 if (is_non_blocking_client
)
3389 report_file_error ("make server process failed", contact
);
3391 report_file_error ("make client process failed", contact
);
3394 #endif /* not TERM */
3400 buffer
= Fget_buffer_create (buffer
);
3401 proc
= make_process (name
);
3403 chan_process
[inch
] = proc
;
3406 fcntl (inch
, F_SETFL
, O_NONBLOCK
);
3409 fcntl (inch
, F_SETFL
, O_NDELAY
);
3413 p
= XPROCESS (proc
);
3415 p
->childp
= contact
;
3416 p
->plist
= Fcopy_sequence (Fplist_get (contact
, QCplist
));
3419 p
->sentinel
= sentinel
;
3421 p
->filter_multibyte
= buffer_defaults
.enable_multibyte_characters
;
3422 /* Override the above only if :filter-multibyte is specified. */
3423 if (! NILP (Fplist_member (contact
, QCfilter_multibyte
)))
3424 p
->filter_multibyte
= Fplist_get (contact
, QCfilter_multibyte
);
3425 p
->log
= Fplist_get (contact
, QClog
);
3426 if (tem
= Fplist_get (contact
, QCnoquery
), !NILP (tem
))
3427 p
->kill_without_query
= Qt
;
3428 if ((tem
= Fplist_get (contact
, QCstop
), !NILP (tem
)))
3431 XSETINT (p
->infd
, inch
);
3432 XSETINT (p
->outfd
, outch
);
3433 if (is_server
&& socktype
== SOCK_STREAM
)
3434 p
->status
= Qlisten
;
3436 /* Make the process marker point into the process buffer (if any). */
3437 if (BUFFERP (buffer
))
3438 set_marker_both (p
->mark
, buffer
,
3439 BUF_ZV (XBUFFER (buffer
)),
3440 BUF_ZV_BYTE (XBUFFER (buffer
)));
3442 #ifdef NON_BLOCKING_CONNECT
3443 if (is_non_blocking_client
)
3445 /* We may get here if connect did succeed immediately. However,
3446 in that case, we still need to signal this like a non-blocking
3448 p
->status
= Qconnect
;
3449 if (!FD_ISSET (inch
, &connect_wait_mask
))
3451 FD_SET (inch
, &connect_wait_mask
);
3452 num_pending_connects
++;
3457 /* A server may have a client filter setting of Qt, but it must
3458 still listen for incoming connects unless it is stopped. */
3459 if ((!EQ (p
->filter
, Qt
) && !EQ (p
->command
, Qt
))
3460 || (EQ (p
->status
, Qlisten
) && NILP (p
->command
)))
3462 FD_SET (inch
, &input_wait_mask
);
3463 FD_SET (inch
, &non_keyboard_wait_mask
);
3466 if (inch
> max_process_desc
)
3467 max_process_desc
= inch
;
3469 tem
= Fplist_member (contact
, QCcoding
);
3470 if (!NILP (tem
) && (!CONSP (tem
) || !CONSP (XCDR (tem
))))
3471 tem
= Qnil
; /* No error message (too late!). */
3474 /* Setup coding systems for communicating with the network stream. */
3475 struct gcpro gcpro1
;
3476 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3477 Lisp_Object coding_systems
= Qt
;
3478 Lisp_Object args
[5], val
;
3482 val
= XCAR (XCDR (tem
));
3486 else if (!NILP (Vcoding_system_for_read
))
3487 val
= Vcoding_system_for_read
;
3488 else if ((!NILP (buffer
) && NILP (XBUFFER (buffer
)->enable_multibyte_characters
))
3489 || (NILP (buffer
) && NILP (buffer_defaults
.enable_multibyte_characters
)))
3490 /* We dare not decode end-of-line format by setting VAL to
3491 Qraw_text, because the existing Emacs Lisp libraries
3492 assume that they receive bare code including a sequene of
3497 if (NILP (host
) || NILP (service
))
3498 coding_systems
= Qnil
;
3501 args
[0] = Qopen_network_stream
, args
[1] = name
,
3502 args
[2] = buffer
, args
[3] = host
, args
[4] = service
;
3504 coding_systems
= Ffind_operation_coding_system (5, args
);
3507 if (CONSP (coding_systems
))
3508 val
= XCAR (coding_systems
);
3509 else if (CONSP (Vdefault_process_coding_system
))
3510 val
= XCAR (Vdefault_process_coding_system
);
3514 p
->decode_coding_system
= val
;
3518 val
= XCAR (XCDR (tem
));
3522 else if (!NILP (Vcoding_system_for_write
))
3523 val
= Vcoding_system_for_write
;
3524 else if (NILP (current_buffer
->enable_multibyte_characters
))
3528 if (EQ (coding_systems
, Qt
))
3530 if (NILP (host
) || NILP (service
))
3531 coding_systems
= Qnil
;
3534 args
[0] = Qopen_network_stream
, args
[1] = name
,
3535 args
[2] = buffer
, args
[3] = host
, args
[4] = service
;
3537 coding_systems
= Ffind_operation_coding_system (5, args
);
3541 if (CONSP (coding_systems
))
3542 val
= XCDR (coding_systems
);
3543 else if (CONSP (Vdefault_process_coding_system
))
3544 val
= XCDR (Vdefault_process_coding_system
);
3548 p
->encode_coding_system
= val
;
3550 setup_process_coding_systems (proc
);
3552 p
->decoding_buf
= make_uninit_string (0);
3553 p
->decoding_carryover
= make_number (0);
3554 p
->encoding_buf
= make_uninit_string (0);
3555 p
->encoding_carryover
= make_number (0);
3557 p
->inherit_coding_system_flag
3558 = (!NILP (tem
) || NILP (buffer
) || !inherit_process_coding_system
3564 #endif /* HAVE_SOCKETS */
3567 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
3570 DEFUN ("network-interface-list", Fnetwork_interface_list
, Snetwork_interface_list
, 0, 0, 0,
3571 doc
: /* Return an alist of all network interfaces and their network address.
3572 Each element is a cons, the car of which is a string containing the
3573 interface name, and the cdr is the network address in internal
3574 format; see the description of ADDRESS in `make-network-process'. */)
3577 struct ifconf ifconf
;
3578 struct ifreq
*ifreqs
= NULL
;
3583 s
= socket (AF_INET
, SOCK_STREAM
, 0);
3589 buf_size
= ifaces
* sizeof(ifreqs
[0]);
3590 ifreqs
= (struct ifreq
*)xrealloc(ifreqs
, buf_size
);
3597 ifconf
.ifc_len
= buf_size
;
3598 ifconf
.ifc_req
= ifreqs
;
3599 if (ioctl (s
, SIOCGIFCONF
, &ifconf
))
3605 if (ifconf
.ifc_len
== buf_size
)
3609 ifaces
= ifconf
.ifc_len
/ sizeof (ifreqs
[0]);
3612 while (--ifaces
>= 0)
3614 struct ifreq
*ifq
= &ifreqs
[ifaces
];
3615 char namebuf
[sizeof (ifq
->ifr_name
) + 1];
3616 if (ifq
->ifr_addr
.sa_family
!= AF_INET
)
3618 bcopy (ifq
->ifr_name
, namebuf
, sizeof (ifq
->ifr_name
));
3619 namebuf
[sizeof (ifq
->ifr_name
)] = 0;
3620 res
= Fcons (Fcons (build_string (namebuf
),
3621 conv_sockaddr_to_lisp (&ifq
->ifr_addr
,
3622 sizeof (struct sockaddr
))),
3628 #endif /* SIOCGIFCONF */
3630 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
3637 static struct ifflag_def ifflag_table
[] = {
3641 #ifdef IFF_BROADCAST
3642 { IFF_BROADCAST
, "broadcast" },
3645 { IFF_DEBUG
, "debug" },
3648 { IFF_LOOPBACK
, "loopback" },
3650 #ifdef IFF_POINTOPOINT
3651 { IFF_POINTOPOINT
, "pointopoint" },
3654 { IFF_RUNNING
, "running" },
3657 { IFF_NOARP
, "noarp" },
3660 { IFF_PROMISC
, "promisc" },
3662 #ifdef IFF_NOTRAILERS
3663 { IFF_NOTRAILERS
, "notrailers" },
3666 { IFF_ALLMULTI
, "allmulti" },
3669 { IFF_MASTER
, "master" },
3672 { IFF_SLAVE
, "slave" },
3674 #ifdef IFF_MULTICAST
3675 { IFF_MULTICAST
, "multicast" },
3678 { IFF_PORTSEL
, "portsel" },
3680 #ifdef IFF_AUTOMEDIA
3681 { IFF_AUTOMEDIA
, "automedia" },
3684 { IFF_DYNAMIC
, "dynamic" },
3687 { IFF_OACTIVE
, "oactive" }, /* OpenBSD: transmission in progress */
3690 { IFF_SIMPLEX
, "simplex" }, /* OpenBSD: can't hear own transmissions */
3693 { IFF_LINK0
, "link0" }, /* OpenBSD: per link layer defined bit */
3696 { IFF_LINK1
, "link1" }, /* OpenBSD: per link layer defined bit */
3699 { IFF_LINK2
, "link2" }, /* OpenBSD: per link layer defined bit */
3704 DEFUN ("network-interface-info", Fnetwork_interface_info
, Snetwork_interface_info
, 1, 1, 0,
3705 doc
: /* Return information about network interface named IFNAME.
3706 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
3707 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
3708 NETMASK is the layer 3 network mask, HWADDR is the layer 2 addres, and
3709 FLAGS is the current flags of the interface. */)
3714 Lisp_Object res
= Qnil
;
3719 CHECK_STRING (ifname
);
3721 bzero (rq
.ifr_name
, sizeof rq
.ifr_name
);
3722 strncpy (rq
.ifr_name
, SDATA (ifname
), sizeof (rq
.ifr_name
));
3724 s
= socket (AF_INET
, SOCK_STREAM
, 0);
3729 #if defined(SIOCGIFFLAGS) && defined(HAVE_STRUCT_IFREQ_IFR_FLAGS)
3730 if (ioctl (s
, SIOCGIFFLAGS
, &rq
) == 0)
3732 int flags
= rq
.ifr_flags
;
3733 struct ifflag_def
*fp
;
3737 for (fp
= ifflag_table
; flags
!= 0 && fp
->flag_sym
; fp
++)
3739 if (flags
& fp
->flag_bit
)
3741 elt
= Fcons (intern (fp
->flag_sym
), elt
);
3742 flags
-= fp
->flag_bit
;
3745 for (fnum
= 0; flags
&& fnum
< 32; fnum
++)
3747 if (flags
& (1 << fnum
))
3749 elt
= Fcons (make_number (fnum
), elt
);
3754 res
= Fcons (elt
, res
);
3757 #if defined(SIOCGIFHWADDR) && defined(HAVE_STRUCT_IFREQ_IFR_HWADDR)
3758 if (ioctl (s
, SIOCGIFHWADDR
, &rq
) == 0)
3760 Lisp_Object hwaddr
= Fmake_vector (make_number (6), Qnil
);
3761 register struct Lisp_Vector
*p
= XVECTOR (hwaddr
);
3765 for (n
= 0; n
< 6; n
++)
3766 p
->contents
[n
] = make_number (((unsigned char *)&rq
.ifr_hwaddr
.sa_data
[0])[n
]);
3767 elt
= Fcons (make_number (rq
.ifr_hwaddr
.sa_family
), hwaddr
);
3770 res
= Fcons (elt
, res
);
3773 #if defined(SIOCGIFNETMASK) && (defined(HAVE_STRUCT_IFREQ_IFR_NETMASK) || defined(HAVE_STRUCT_IFREQ_IFR_ADDR))
3774 if (ioctl (s
, SIOCGIFNETMASK
, &rq
) == 0)
3777 #ifdef HAVE_STRUCT_IFREQ_IFR_NETMASK
3778 elt
= conv_sockaddr_to_lisp (&rq
.ifr_netmask
, sizeof (rq
.ifr_netmask
));
3780 elt
= conv_sockaddr_to_lisp (&rq
.ifr_addr
, sizeof (rq
.ifr_addr
));
3784 res
= Fcons (elt
, res
);
3787 #if defined(SIOCGIFBRDADDR) && defined(HAVE_STRUCT_IFREQ_IFR_BROADADDR)
3788 if (ioctl (s
, SIOCGIFBRDADDR
, &rq
) == 0)
3791 elt
= conv_sockaddr_to_lisp (&rq
.ifr_broadaddr
, sizeof (rq
.ifr_broadaddr
));
3794 res
= Fcons (elt
, res
);
3797 #if defined(SIOCGIFADDR) && defined(HAVE_STRUCT_IFREQ_IFR_ADDR)
3798 if (ioctl (s
, SIOCGIFADDR
, &rq
) == 0)
3801 elt
= conv_sockaddr_to_lisp (&rq
.ifr_addr
, sizeof (rq
.ifr_addr
));
3804 res
= Fcons (elt
, res
);
3808 return any
? res
: Qnil
;
3811 #endif /* HAVE_SOCKETS */
3813 /* Turn off input and output for process PROC. */
3816 deactivate_process (proc
)
3819 register int inchannel
, outchannel
;
3820 register struct Lisp_Process
*p
= XPROCESS (proc
);
3822 inchannel
= XINT (p
->infd
);
3823 outchannel
= XINT (p
->outfd
);
3825 #ifdef ADAPTIVE_READ_BUFFERING
3826 if (XINT (p
->read_output_delay
) > 0)
3828 if (--process_output_delay_count
< 0)
3829 process_output_delay_count
= 0;
3830 XSETINT (p
->read_output_delay
, 0);
3831 p
->read_output_skip
= Qnil
;
3837 /* Beware SIGCHLD hereabouts. */
3838 flush_pending_output (inchannel
);
3841 VMS_PROC_STUFF
*get_vms_process_pointer (), *vs
;
3842 sys$
dassgn (outchannel
);
3843 vs
= get_vms_process_pointer (p
->pid
);
3845 give_back_vms_process_stuff (vs
);
3848 emacs_close (inchannel
);
3849 if (outchannel
>= 0 && outchannel
!= inchannel
)
3850 emacs_close (outchannel
);
3853 XSETINT (p
->infd
, -1);
3854 XSETINT (p
->outfd
, -1);
3855 #ifdef DATAGRAM_SOCKETS
3856 if (DATAGRAM_CHAN_P (inchannel
))
3858 xfree (datagram_address
[inchannel
].sa
);
3859 datagram_address
[inchannel
].sa
= 0;
3860 datagram_address
[inchannel
].len
= 0;
3863 chan_process
[inchannel
] = Qnil
;
3864 FD_CLR (inchannel
, &input_wait_mask
);
3865 FD_CLR (inchannel
, &non_keyboard_wait_mask
);
3866 #ifdef NON_BLOCKING_CONNECT
3867 if (FD_ISSET (inchannel
, &connect_wait_mask
))
3869 FD_CLR (inchannel
, &connect_wait_mask
);
3870 if (--num_pending_connects
< 0)
3874 if (inchannel
== max_process_desc
)
3877 /* We just closed the highest-numbered process input descriptor,
3878 so recompute the highest-numbered one now. */
3879 max_process_desc
= 0;
3880 for (i
= 0; i
< MAXDESC
; i
++)
3881 if (!NILP (chan_process
[i
]))
3882 max_process_desc
= i
;
3887 /* Close all descriptors currently in use for communication
3888 with subprocess. This is used in a newly-forked subprocess
3889 to get rid of irrelevant descriptors. */
3892 close_process_descs ()
3896 for (i
= 0; i
< MAXDESC
; i
++)
3898 Lisp_Object process
;
3899 process
= chan_process
[i
];
3900 if (!NILP (process
))
3902 int in
= XINT (XPROCESS (process
)->infd
);
3903 int out
= XINT (XPROCESS (process
)->outfd
);
3906 if (out
>= 0 && in
!= out
)
3913 DEFUN ("accept-process-output", Faccept_process_output
, Saccept_process_output
,
3915 doc
: /* Allow any pending output from subprocesses to be read by Emacs.
3916 It is read into the process' buffers or given to their filter functions.
3917 Non-nil arg PROCESS means do not return until some output has been received
3920 Non-nil second arg SECONDS and third arg MILLISEC are number of
3921 seconds and milliseconds to wait; return after that much time whether
3922 or not there is input. If SECONDS is a floating point number,
3923 it specifies a fractional number of seconds to wait.
3925 If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
3926 from PROCESS, suspending reading output from other processes.
3927 If JUST-THIS-ONE is an integer, don't run any timers either.
3928 Return non-nil if we received any output before the timeout expired. */)
3929 (process
, seconds
, millisec
, just_this_one
)
3930 register Lisp_Object process
, seconds
, millisec
, just_this_one
;
3932 int secs
, usecs
= 0;
3934 if (! NILP (process
))
3935 CHECK_PROCESS (process
);
3937 just_this_one
= Qnil
;
3939 if (!NILP (seconds
))
3941 if (INTEGERP (seconds
))
3942 secs
= XINT (seconds
);
3943 else if (FLOATP (seconds
))
3945 double timeout
= XFLOAT_DATA (seconds
);
3946 secs
= (int) timeout
;
3947 usecs
= (int) ((timeout
- (double) secs
) * 1000000);
3950 wrong_type_argument (Qnumberp
, seconds
);
3952 if (INTEGERP (millisec
))
3955 usecs
+= XINT (millisec
) * 1000;
3956 carry
= usecs
/ 1000000;
3958 if ((usecs
-= carry
* 1000000) < 0)
3965 if (secs
< 0 || (secs
== 0 && usecs
== 0))
3966 secs
= -1, usecs
= 0;
3969 secs
= NILP (process
) ? -1 : 0;
3972 (wait_reading_process_output (secs
, usecs
, 0, 0,
3974 !NILP (process
) ? XPROCESS (process
) : NULL
,
3975 NILP (just_this_one
) ? 0 :
3976 !INTEGERP (just_this_one
) ? 1 : -1)
3980 /* Accept a connection for server process SERVER on CHANNEL. */
3982 static int connect_counter
= 0;
3985 server_accept_connection (server
, channel
)
3989 Lisp_Object proc
, caller
, name
, buffer
;
3990 Lisp_Object contact
, host
, service
;
3991 struct Lisp_Process
*ps
= XPROCESS (server
);
3992 struct Lisp_Process
*p
;
3996 struct sockaddr_in in
;
3998 struct sockaddr_in6 in6
;
4000 #ifdef HAVE_LOCAL_SOCKETS
4001 struct sockaddr_un un
;
4004 int len
= sizeof saddr
;
4006 s
= accept (channel
, &saddr
.sa
, &len
);
4015 if (code
== EWOULDBLOCK
)
4019 if (!NILP (ps
->log
))
4020 call3 (ps
->log
, server
, Qnil
,
4021 concat3 (build_string ("accept failed with code"),
4022 Fnumber_to_string (make_number (code
)),
4023 build_string ("\n")));
4029 /* Setup a new process to handle the connection. */
4031 /* Generate a unique identification of the caller, and build contact
4032 information for this process. */
4035 switch (saddr
.sa
.sa_family
)
4039 Lisp_Object args
[5];
4040 unsigned char *ip
= (unsigned char *)&saddr
.in
.sin_addr
.s_addr
;
4041 args
[0] = build_string ("%d.%d.%d.%d");
4042 args
[1] = make_number (*ip
++);
4043 args
[2] = make_number (*ip
++);
4044 args
[3] = make_number (*ip
++);
4045 args
[4] = make_number (*ip
++);
4046 host
= Fformat (5, args
);
4047 service
= make_number (ntohs (saddr
.in
.sin_port
));
4049 args
[0] = build_string (" <%s:%d>");
4052 caller
= Fformat (3, args
);
4059 Lisp_Object args
[9];
4060 uint16_t *ip6
= (uint16_t *)&saddr
.in6
.sin6_addr
;
4062 args
[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
4063 for (i
= 0; i
< 8; i
++)
4064 args
[i
+1] = make_number (ntohs(ip6
[i
]));
4065 host
= Fformat (9, args
);
4066 service
= make_number (ntohs (saddr
.in
.sin_port
));
4068 args
[0] = build_string (" <[%s]:%d>");
4071 caller
= Fformat (3, args
);
4076 #ifdef HAVE_LOCAL_SOCKETS
4080 caller
= Fnumber_to_string (make_number (connect_counter
));
4081 caller
= concat3 (build_string (" <*"), caller
, build_string ("*>"));
4085 /* Create a new buffer name for this process if it doesn't have a
4086 filter. The new buffer name is based on the buffer name or
4087 process name of the server process concatenated with the caller
4090 if (!NILP (ps
->filter
) && !EQ (ps
->filter
, Qt
))
4094 buffer
= ps
->buffer
;
4096 buffer
= Fbuffer_name (buffer
);
4101 buffer
= concat2 (buffer
, caller
);
4102 buffer
= Fget_buffer_create (buffer
);
4106 /* Generate a unique name for the new server process. Combine the
4107 server process name with the caller identification. */
4109 name
= concat2 (ps
->name
, caller
);
4110 proc
= make_process (name
);
4112 chan_process
[s
] = proc
;
4115 fcntl (s
, F_SETFL
, O_NONBLOCK
);
4118 fcntl (s
, F_SETFL
, O_NDELAY
);
4122 p
= XPROCESS (proc
);
4124 /* Build new contact information for this setup. */
4125 contact
= Fcopy_sequence (ps
->childp
);
4126 contact
= Fplist_put (contact
, QCserver
, Qnil
);
4127 contact
= Fplist_put (contact
, QChost
, host
);
4128 if (!NILP (service
))
4129 contact
= Fplist_put (contact
, QCservice
, service
);
4130 contact
= Fplist_put (contact
, QCremote
,
4131 conv_sockaddr_to_lisp (&saddr
.sa
, len
));
4132 #ifdef HAVE_GETSOCKNAME
4134 if (getsockname (s
, &saddr
.sa
, &len
) == 0)
4135 contact
= Fplist_put (contact
, QClocal
,
4136 conv_sockaddr_to_lisp (&saddr
.sa
, len
));
4139 p
->childp
= contact
;
4140 p
->plist
= Fcopy_sequence (ps
->plist
);
4143 p
->sentinel
= ps
->sentinel
;
4144 p
->filter
= ps
->filter
;
4147 XSETINT (p
->infd
, s
);
4148 XSETINT (p
->outfd
, s
);
4151 /* Client processes for accepted connections are not stopped initially. */
4152 if (!EQ (p
->filter
, Qt
))
4154 FD_SET (s
, &input_wait_mask
);
4155 FD_SET (s
, &non_keyboard_wait_mask
);
4158 if (s
> max_process_desc
)
4159 max_process_desc
= s
;
4161 /* Setup coding system for new process based on server process.
4162 This seems to be the proper thing to do, as the coding system
4163 of the new process should reflect the settings at the time the
4164 server socket was opened; not the current settings. */
4166 p
->decode_coding_system
= ps
->decode_coding_system
;
4167 p
->encode_coding_system
= ps
->encode_coding_system
;
4168 setup_process_coding_systems (proc
);
4170 p
->decoding_buf
= make_uninit_string (0);
4171 p
->decoding_carryover
= make_number (0);
4172 p
->encoding_buf
= make_uninit_string (0);
4173 p
->encoding_carryover
= make_number (0);
4175 p
->inherit_coding_system_flag
4176 = (NILP (buffer
) ? Qnil
: ps
->inherit_coding_system_flag
);
4178 if (!NILP (ps
->log
))
4179 call3 (ps
->log
, server
, proc
,
4180 concat3 (build_string ("accept from "),
4181 (STRINGP (host
) ? host
: build_string ("-")),
4182 build_string ("\n")));
4184 if (!NILP (p
->sentinel
))
4185 exec_sentinel (proc
,
4186 concat3 (build_string ("open from "),
4187 (STRINGP (host
) ? host
: build_string ("-")),
4188 build_string ("\n")));
4191 /* This variable is different from waiting_for_input in keyboard.c.
4192 It is used to communicate to a lisp process-filter/sentinel (via the
4193 function Fwaiting_for_user_input_p below) whether Emacs was waiting
4194 for user-input when that process-filter was called.
4195 waiting_for_input cannot be used as that is by definition 0 when
4196 lisp code is being evalled.
4197 This is also used in record_asynch_buffer_change.
4198 For that purpose, this must be 0
4199 when not inside wait_reading_process_output. */
4200 static int waiting_for_user_input_p
;
4203 wait_reading_process_output_unwind (data
)
4206 waiting_for_user_input_p
= XINT (data
);
4210 /* This is here so breakpoints can be put on it. */
4212 wait_reading_process_output_1 ()
4216 /* Use a wrapper around select to work around a bug in gdb 5.3.
4217 Normally, the wrapper is optimzed away by inlining.
4219 If emacs is stopped inside select, the gdb backtrace doesn't
4220 show the function which called select, so it is practically
4221 impossible to step through wait_reading_process_output. */
4225 select_wrapper (n
, rfd
, wfd
, xfd
, tmo
)
4227 SELECT_TYPE
*rfd
, *wfd
, *xfd
;
4230 return select (n
, rfd
, wfd
, xfd
, tmo
);
4232 #define select select_wrapper
4235 /* Read and dispose of subprocess output while waiting for timeout to
4236 elapse and/or keyboard input to be available.
4239 timeout in seconds, or
4240 zero for no limit, or
4241 -1 means gobble data immediately available but don't wait for any.
4244 an additional duration to wait, measured in microseconds.
4245 If this is nonzero and time_limit is 0, then the timeout
4246 consists of MICROSECS only.
4248 READ_KBD is a lisp value:
4249 0 to ignore keyboard input, or
4250 1 to return when input is available, or
4251 -1 meaning caller will actually read the input, so don't throw to
4252 the quit handler, or
4254 DO_DISPLAY != 0 means redisplay should be done to show subprocess
4255 output that arrives.
4257 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4258 (and gobble terminal input into the buffer if any arrives).
4260 If WAIT_PROC is specified, wait until something arrives from that
4261 process. The return value is true if we read some input from
4264 If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC
4265 (suspending output from other processes). A negative value
4266 means don't run any timers either.
4268 If WAIT_PROC is specified, then the function returns true if we
4269 received input from that process before the timeout elapsed.
4270 Otherwise, return true if we received input from any process. */
4273 wait_reading_process_output (time_limit
, microsecs
, read_kbd
, do_display
,
4274 wait_for_cell
, wait_proc
, just_wait_proc
)
4275 int time_limit
, microsecs
, read_kbd
, do_display
;
4276 Lisp_Object wait_for_cell
;
4277 struct Lisp_Process
*wait_proc
;
4280 register int channel
, nfds
;
4281 SELECT_TYPE Available
;
4282 #ifdef NON_BLOCKING_CONNECT
4283 SELECT_TYPE Connecting
;
4286 int check_delay
, no_avail
;
4289 EMACS_TIME timeout
, end_time
;
4290 int wait_channel
= -1;
4291 int got_some_input
= 0;
4292 int count
= SPECPDL_INDEX ();
4294 FD_ZERO (&Available
);
4295 #ifdef NON_BLOCKING_CONNECT
4296 FD_ZERO (&Connecting
);
4299 /* If wait_proc is a process to watch, set wait_channel accordingly. */
4300 if (wait_proc
!= NULL
)
4301 wait_channel
= XINT (wait_proc
->infd
);
4303 record_unwind_protect (wait_reading_process_output_unwind
,
4304 make_number (waiting_for_user_input_p
));
4305 waiting_for_user_input_p
= read_kbd
;
4307 /* Since we may need to wait several times,
4308 compute the absolute time to return at. */
4309 if (time_limit
|| microsecs
)
4311 EMACS_GET_TIME (end_time
);
4312 EMACS_SET_SECS_USECS (timeout
, time_limit
, microsecs
);
4313 EMACS_ADD_TIME (end_time
, end_time
, timeout
);
4315 #ifdef POLL_INTERRUPTED_SYS_CALL
4316 /* AlainF 5-Jul-1996
4317 HP-UX 10.10 seem to have problems with signals coming in
4318 Causes "poll: interrupted system call" messages when Emacs is run
4320 Turn off periodic alarms (in case they are in use),
4321 and then turn off any other atimers. */
4323 turn_on_atimers (0);
4324 #endif /* POLL_INTERRUPTED_SYS_CALL */
4328 int timeout_reduced_for_timers
= 0;
4330 /* If calling from keyboard input, do not quit
4331 since we want to return C-g as an input character.
4332 Otherwise, do pending quit if requested. */
4336 else if (interrupt_input_pending
)
4337 handle_async_input ();
4340 /* Exit now if the cell we're waiting for became non-nil. */
4341 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
4344 /* Compute time from now till when time limit is up */
4345 /* Exit if already run out */
4346 if (time_limit
== -1)
4348 /* -1 specified for timeout means
4349 gobble output available now
4350 but don't wait at all. */
4352 EMACS_SET_SECS_USECS (timeout
, 0, 0);
4354 else if (time_limit
|| microsecs
)
4356 EMACS_GET_TIME (timeout
);
4357 EMACS_SUB_TIME (timeout
, end_time
, timeout
);
4358 if (EMACS_TIME_NEG_P (timeout
))
4363 EMACS_SET_SECS_USECS (timeout
, 100000, 0);
4366 /* Normally we run timers here.
4367 But not if wait_for_cell; in those cases,
4368 the wait is supposed to be short,
4369 and those callers cannot handle running arbitrary Lisp code here. */
4370 if (NILP (wait_for_cell
)
4371 && just_wait_proc
>= 0)
4373 EMACS_TIME timer_delay
;
4377 int old_timers_run
= timers_run
;
4378 struct buffer
*old_buffer
= current_buffer
;
4379 Lisp_Object old_window
= selected_window
;
4381 timer_delay
= timer_check (1);
4383 /* If a timer has run, this might have changed buffers
4384 an alike. Make read_key_sequence aware of that. */
4385 if (timers_run
!= old_timers_run
4386 && (old_buffer
!= current_buffer
4387 || !EQ (old_window
, selected_window
))
4388 && waiting_for_user_input_p
== -1)
4389 record_asynch_buffer_change ();
4391 if (timers_run
!= old_timers_run
&& do_display
)
4392 /* We must retry, since a timer may have requeued itself
4393 and that could alter the time_delay. */
4394 redisplay_preserve_echo_area (9);
4398 while (!detect_input_pending ());
4400 /* If there is unread keyboard input, also return. */
4402 && requeued_events_pending_p ())
4405 if (! EMACS_TIME_NEG_P (timer_delay
) && time_limit
!= -1)
4407 EMACS_TIME difference
;
4408 EMACS_SUB_TIME (difference
, timer_delay
, timeout
);
4409 if (EMACS_TIME_NEG_P (difference
))
4411 timeout
= timer_delay
;
4412 timeout_reduced_for_timers
= 1;
4415 /* If time_limit is -1, we are not going to wait at all. */
4416 else if (time_limit
!= -1)
4418 /* This is so a breakpoint can be put here. */
4419 wait_reading_process_output_1 ();
4423 /* Cause C-g and alarm signals to take immediate action,
4424 and cause input available signals to zero out timeout.
4426 It is important that we do this before checking for process
4427 activity. If we get a SIGCHLD after the explicit checks for
4428 process activity, timeout is the only way we will know. */
4430 set_waiting_for_input (&timeout
);
4432 /* If status of something has changed, and no input is
4433 available, notify the user of the change right away. After
4434 this explicit check, we'll let the SIGCHLD handler zap
4435 timeout to get our attention. */
4436 if (update_tick
!= process_tick
&& do_display
)
4439 #ifdef NON_BLOCKING_CONNECT
4443 Atemp
= input_wait_mask
;
4445 /* On Mac OS X 10.0, the SELECT system call always says input is
4446 present (for reading) at stdin, even when none is. This
4447 causes the call to SELECT below to return 1 and
4448 status_notify not to be called. As a result output of
4449 subprocesses are incorrectly discarded.
4453 IF_NON_BLOCKING_CONNECT (Ctemp
= connect_wait_mask
);
4455 EMACS_SET_SECS_USECS (timeout
, 0, 0);
4456 if ((select (max (max_process_desc
, max_keyboard_desc
) + 1,
4458 #ifdef NON_BLOCKING_CONNECT
4459 (num_pending_connects
> 0 ? &Ctemp
: (SELECT_TYPE
*)0),
4463 (SELECT_TYPE
*)0, &timeout
)
4466 /* It's okay for us to do this and then continue with
4467 the loop, since timeout has already been zeroed out. */
4468 clear_waiting_for_input ();
4469 status_notify (NULL
);
4473 /* Don't wait for output from a non-running process. Just
4474 read whatever data has already been received. */
4475 if (wait_proc
&& wait_proc
->raw_status_new
)
4476 update_status (wait_proc
);
4478 && ! EQ (wait_proc
->status
, Qrun
)
4479 && ! EQ (wait_proc
->status
, Qconnect
))
4481 int nread
, total_nread
= 0;
4483 clear_waiting_for_input ();
4484 XSETPROCESS (proc
, wait_proc
);
4486 /* Read data from the process, until we exhaust it. */
4487 while (XINT (wait_proc
->infd
) >= 0)
4489 nread
= read_process_output (proc
, XINT (wait_proc
->infd
));
4495 total_nread
+= nread
;
4497 else if (nread
== -1 && EIO
== errno
)
4501 else if (nread
== -1 && EAGAIN
== errno
)
4505 else if (nread
== -1 && EWOULDBLOCK
== errno
)
4509 if (total_nread
> 0 && do_display
)
4510 redisplay_preserve_echo_area (10);
4515 /* Wait till there is something to do */
4517 if (wait_proc
&& just_wait_proc
)
4519 if (XINT (wait_proc
->infd
) < 0) /* Terminated */
4521 FD_SET (XINT (wait_proc
->infd
), &Available
);
4523 IF_NON_BLOCKING_CONNECT (check_connect
= 0);
4525 else if (!NILP (wait_for_cell
))
4527 Available
= non_process_wait_mask
;
4529 IF_NON_BLOCKING_CONNECT (check_connect
= 0);
4534 Available
= non_keyboard_wait_mask
;
4536 Available
= input_wait_mask
;
4537 IF_NON_BLOCKING_CONNECT (check_connect
= (num_pending_connects
> 0));
4538 check_delay
= wait_channel
>= 0 ? 0 : process_output_delay_count
;
4541 /* If frame size has changed or the window is newly mapped,
4542 redisplay now, before we start to wait. There is a race
4543 condition here; if a SIGIO arrives between now and the select
4544 and indicates that a frame is trashed, the select may block
4545 displaying a trashed screen. */
4546 if (frame_garbaged
&& do_display
)
4548 clear_waiting_for_input ();
4549 redisplay_preserve_echo_area (11);
4551 set_waiting_for_input (&timeout
);
4555 if (read_kbd
&& detect_input_pending ())
4562 #ifdef NON_BLOCKING_CONNECT
4564 Connecting
= connect_wait_mask
;
4567 #ifdef ADAPTIVE_READ_BUFFERING
4568 /* Set the timeout for adaptive read buffering if any
4569 process has non-nil read_output_skip and non-zero
4570 read_output_delay, and we are not reading output for a
4571 specific wait_channel. It is not executed if
4572 Vprocess_adaptive_read_buffering is nil. */
4573 if (process_output_skip
&& check_delay
> 0)
4575 int usecs
= EMACS_USECS (timeout
);
4576 if (EMACS_SECS (timeout
) > 0 || usecs
> READ_OUTPUT_DELAY_MAX
)
4577 usecs
= READ_OUTPUT_DELAY_MAX
;
4578 for (channel
= 0; check_delay
> 0 && channel
<= max_process_desc
; channel
++)
4580 proc
= chan_process
[channel
];
4583 /* Find minimum non-zero read_output_delay among the
4584 processes with non-nil read_output_skip. */
4585 if (XINT (XPROCESS (proc
)->read_output_delay
) > 0)
4588 if (NILP (XPROCESS (proc
)->read_output_skip
))
4590 FD_CLR (channel
, &Available
);
4591 XPROCESS (proc
)->read_output_skip
= Qnil
;
4592 if (XINT (XPROCESS (proc
)->read_output_delay
) < usecs
)
4593 usecs
= XINT (XPROCESS (proc
)->read_output_delay
);
4596 EMACS_SET_SECS_USECS (timeout
, 0, usecs
);
4597 process_output_skip
= 0;
4601 nfds
= select (max (max_process_desc
, max_keyboard_desc
) + 1,
4603 #ifdef NON_BLOCKING_CONNECT
4604 (check_connect
? &Connecting
: (SELECT_TYPE
*)0),
4608 (SELECT_TYPE
*)0, &timeout
);
4613 /* Make C-g and alarm signals set flags again */
4614 clear_waiting_for_input ();
4616 /* If we woke up due to SIGWINCH, actually change size now. */
4617 do_pending_window_change (0);
4619 if (time_limit
&& nfds
== 0 && ! timeout_reduced_for_timers
)
4620 /* We wanted the full specified time, so return now. */
4624 if (xerrno
== EINTR
)
4627 /* Ultrix select seems to return ENOMEM when it is
4628 interrupted. Treat it just like EINTR. Bleah. Note
4629 that we want to test for the "ultrix" CPP symbol, not
4630 "__ultrix__"; the latter is only defined under GCC, but
4631 not by DEC's bundled CC. -JimB */
4632 else if (xerrno
== ENOMEM
)
4636 /* This happens for no known reason on ALLIANT.
4637 I am guessing that this is the right response. -- RMS. */
4638 else if (xerrno
== EFAULT
)
4641 else if (xerrno
== EBADF
)
4644 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
4645 the child's closure of the pts gives the parent a SIGHUP, and
4646 the ptc file descriptor is automatically closed,
4647 yielding EBADF here or at select() call above.
4648 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
4649 in m/ibmrt-aix.h), and here we just ignore the select error.
4650 Cleanup occurs c/o status_notify after SIGCLD. */
4651 no_avail
= 1; /* Cannot depend on values returned */
4657 error ("select error: %s", emacs_strerror (xerrno
));
4662 FD_ZERO (&Available
);
4663 IF_NON_BLOCKING_CONNECT (check_connect
= 0);
4666 #if defined(sun) && !defined(USG5_4)
4667 if (nfds
> 0 && keyboard_bit_set (&Available
)
4669 /* System sometimes fails to deliver SIGIO.
4671 David J. Mackenzie says that Emacs doesn't compile under
4672 Solaris if this code is enabled, thus the USG5_4 in the CPP
4673 conditional. "I haven't noticed any ill effects so far.
4674 If you find a Solaris expert somewhere, they might know
4676 kill (getpid (), SIGIO
);
4679 #if 0 /* When polling is used, interrupt_input is 0,
4680 so get_input_pending should read the input.
4681 So this should not be needed. */
4682 /* If we are using polling for input,
4683 and we see input available, make it get read now.
4684 Otherwise it might not actually get read for a second.
4685 And on hpux, since we turn off polling in wait_reading_process_output,
4686 it might never get read at all if we don't spend much time
4687 outside of wait_reading_process_output. */
4688 if (read_kbd
&& interrupt_input
4689 && keyboard_bit_set (&Available
)
4690 && input_polling_used ())
4691 kill (getpid (), SIGALRM
);
4694 /* Check for keyboard input */
4695 /* If there is any, return immediately
4696 to give it higher priority than subprocesses */
4700 int old_timers_run
= timers_run
;
4701 struct buffer
*old_buffer
= current_buffer
;
4702 Lisp_Object old_window
= selected_window
;
4705 if (detect_input_pending_run_timers (do_display
))
4707 swallow_events (do_display
);
4708 if (detect_input_pending_run_timers (do_display
))
4712 /* If a timer has run, this might have changed buffers
4713 an alike. Make read_key_sequence aware of that. */
4714 if (timers_run
!= old_timers_run
4715 && waiting_for_user_input_p
== -1
4716 && (old_buffer
!= current_buffer
4717 || !EQ (old_window
, selected_window
)))
4718 record_asynch_buffer_change ();
4724 /* If there is unread keyboard input, also return. */
4726 && requeued_events_pending_p ())
4729 /* If we are not checking for keyboard input now,
4730 do process events (but don't run any timers).
4731 This is so that X events will be processed.
4732 Otherwise they may have to wait until polling takes place.
4733 That would causes delays in pasting selections, for example.
4735 (We used to do this only if wait_for_cell.) */
4736 if (read_kbd
== 0 && detect_input_pending ())
4738 swallow_events (do_display
);
4739 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
4740 if (detect_input_pending ())
4745 /* Exit now if the cell we're waiting for became non-nil. */
4746 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
4750 /* If we think we have keyboard input waiting, but didn't get SIGIO,
4751 go read it. This can happen with X on BSD after logging out.
4752 In that case, there really is no input and no SIGIO,
4753 but select says there is input. */
4755 if (read_kbd
&& interrupt_input
4756 && keyboard_bit_set (&Available
) && ! noninteractive
)
4757 kill (getpid (), SIGIO
);
4761 got_some_input
|= nfds
> 0;
4763 /* If checking input just got us a size-change event from X,
4764 obey it now if we should. */
4765 if (read_kbd
|| ! NILP (wait_for_cell
))
4766 do_pending_window_change (0);
4768 /* Check for data from a process. */
4769 if (no_avail
|| nfds
== 0)
4772 /* Really FIRST_PROC_DESC should be 0 on Unix,
4773 but this is safer in the short run. */
4774 for (channel
= 0; channel
<= max_process_desc
; channel
++)
4776 if (FD_ISSET (channel
, &Available
)
4777 && FD_ISSET (channel
, &non_keyboard_wait_mask
))
4781 /* If waiting for this channel, arrange to return as
4782 soon as no more input to be processed. No more
4784 if (wait_channel
== channel
)
4790 proc
= chan_process
[channel
];
4794 /* If this is a server stream socket, accept connection. */
4795 if (EQ (XPROCESS (proc
)->status
, Qlisten
))
4797 server_accept_connection (proc
, channel
);
4801 /* Read data from the process, starting with our
4802 buffered-ahead character if we have one. */
4804 nread
= read_process_output (proc
, channel
);
4807 /* Since read_process_output can run a filter,
4808 which can call accept-process-output,
4809 don't try to read from any other processes
4810 before doing the select again. */
4811 FD_ZERO (&Available
);
4814 redisplay_preserve_echo_area (12);
4817 else if (nread
== -1 && errno
== EWOULDBLOCK
)
4820 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
4821 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
4823 else if (nread
== -1 && errno
== EAGAIN
)
4827 else if (nread
== -1 && errno
== EAGAIN
)
4829 /* Note that we cannot distinguish between no input
4830 available now and a closed pipe.
4831 With luck, a closed pipe will be accompanied by
4832 subprocess termination and SIGCHLD. */
4833 else if (nread
== 0 && !NETCONN_P (proc
))
4835 #endif /* O_NDELAY */
4836 #endif /* O_NONBLOCK */
4838 /* On some OSs with ptys, when the process on one end of
4839 a pty exits, the other end gets an error reading with
4840 errno = EIO instead of getting an EOF (0 bytes read).
4841 Therefore, if we get an error reading and errno =
4842 EIO, just continue, because the child process has
4843 exited and should clean itself up soon (e.g. when we
4846 However, it has been known to happen that the SIGCHLD
4847 got lost. So raise the signal again just in case.
4849 else if (nread
== -1 && errno
== EIO
)
4851 /* Clear the descriptor now, so we only raise the signal once. */
4852 FD_CLR (channel
, &input_wait_mask
);
4853 FD_CLR (channel
, &non_keyboard_wait_mask
);
4855 kill (getpid (), SIGCHLD
);
4857 #endif /* HAVE_PTYS */
4858 /* If we can detect process termination, don't consider the process
4859 gone just because its pipe is closed. */
4861 else if (nread
== 0 && !NETCONN_P (proc
))
4866 /* Preserve status of processes already terminated. */
4867 XSETINT (XPROCESS (proc
)->tick
, ++process_tick
);
4868 deactivate_process (proc
);
4869 if (XPROCESS (proc
)->raw_status_new
)
4870 update_status (XPROCESS (proc
));
4871 if (EQ (XPROCESS (proc
)->status
, Qrun
))
4872 XPROCESS (proc
)->status
4873 = Fcons (Qexit
, Fcons (make_number (256), Qnil
));
4876 #ifdef NON_BLOCKING_CONNECT
4877 if (check_connect
&& FD_ISSET (channel
, &Connecting
)
4878 && FD_ISSET (channel
, &connect_wait_mask
))
4880 struct Lisp_Process
*p
;
4882 FD_CLR (channel
, &connect_wait_mask
);
4883 if (--num_pending_connects
< 0)
4886 proc
= chan_process
[channel
];
4890 p
= XPROCESS (proc
);
4893 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
4894 So only use it on systems where it is known to work. */
4896 int xlen
= sizeof(xerrno
);
4897 if (getsockopt(channel
, SOL_SOCKET
, SO_ERROR
, &xerrno
, &xlen
))
4902 struct sockaddr pname
;
4903 int pnamelen
= sizeof(pname
);
4905 /* If connection failed, getpeername will fail. */
4907 if (getpeername(channel
, &pname
, &pnamelen
) < 0)
4909 /* Obtain connect failure code through error slippage. */
4912 if (errno
== ENOTCONN
&& read(channel
, &dummy
, 1) < 0)
4919 XSETINT (p
->tick
, ++process_tick
);
4920 p
->status
= Fcons (Qfailed
, Fcons (make_number (xerrno
), Qnil
));
4921 deactivate_process (proc
);
4926 /* Execute the sentinel here. If we had relied on
4927 status_notify to do it later, it will read input
4928 from the process before calling the sentinel. */
4929 exec_sentinel (proc
, build_string ("open\n"));
4930 if (!EQ (p
->filter
, Qt
) && !EQ (p
->command
, Qt
))
4932 FD_SET (XINT (p
->infd
), &input_wait_mask
);
4933 FD_SET (XINT (p
->infd
), &non_keyboard_wait_mask
);
4937 #endif /* NON_BLOCKING_CONNECT */
4938 } /* end for each file descriptor */
4939 } /* end while exit conditions not met */
4941 unbind_to (count
, Qnil
);
4943 /* If calling from keyboard input, do not quit
4944 since we want to return C-g as an input character.
4945 Otherwise, do pending quit if requested. */
4948 /* Prevent input_pending from remaining set if we quit. */
4949 clear_input_pending ();
4952 #ifdef POLL_INTERRUPTED_SYS_CALL
4953 /* AlainF 5-Jul-1996
4954 HP-UX 10.10 seems to have problems with signals coming in
4955 Causes "poll: interrupted system call" messages when Emacs is run
4957 Turn periodic alarms back on */
4959 #endif /* POLL_INTERRUPTED_SYS_CALL */
4961 return got_some_input
;
4964 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
4967 read_process_output_call (fun_and_args
)
4968 Lisp_Object fun_and_args
;
4970 return apply1 (XCAR (fun_and_args
), XCDR (fun_and_args
));
4974 read_process_output_error_handler (error
)
4977 cmd_error_internal (error
, "error in process filter: ");
4979 update_echo_area ();
4980 Fsleep_for (make_number (2), Qnil
);
4984 /* Read pending output from the process channel,
4985 starting with our buffered-ahead character if we have one.
4986 Yield number of decoded characters read.
4988 This function reads at most 4096 characters.
4989 If you want to read all available subprocess output,
4990 you must call it repeatedly until it returns zero.
4992 The characters read are decoded according to PROC's coding-system
4996 read_process_output (proc
, channel
)
4998 register int channel
;
5000 register int nbytes
;
5002 register Lisp_Object outstream
;
5003 register struct buffer
*old
= current_buffer
;
5004 register struct Lisp_Process
*p
= XPROCESS (proc
);
5005 register int opoint
;
5006 struct coding_system
*coding
= proc_decode_coding_system
[channel
];
5007 int carryover
= XINT (p
->decoding_carryover
);
5011 VMS_PROC_STUFF
*vs
, *get_vms_process_pointer();
5013 vs
= get_vms_process_pointer (p
->pid
);
5017 return (0); /* Really weird if it does this */
5018 if (!(vs
->iosb
[0] & 1))
5019 return -1; /* I/O error */
5022 error ("Could not get VMS process pointer");
5023 chars
= vs
->inputBuffer
;
5024 nbytes
= clean_vms_buffer (chars
, vs
->iosb
[1]);
5027 start_vms_process_read (vs
); /* Crank up the next read on the process */
5028 return 1; /* Nothing worth printing, say we got 1 */
5032 /* The data carried over in the previous decoding (which are at
5033 the tail of decoding buffer) should be prepended to the new
5034 data read to decode all together. */
5035 chars
= (char *) alloca (nbytes
+ carryover
);
5036 bcopy (SDATA (p
->decoding_buf
), buf
, carryover
);
5037 bcopy (vs
->inputBuffer
, chars
+ carryover
, nbytes
);
5041 chars
= (char *) alloca (carryover
+ readmax
);
5043 /* See the comment above. */
5044 bcopy (SDATA (p
->decoding_buf
), chars
, carryover
);
5046 #ifdef DATAGRAM_SOCKETS
5047 /* We have a working select, so proc_buffered_char is always -1. */
5048 if (DATAGRAM_CHAN_P (channel
))
5050 int len
= datagram_address
[channel
].len
;
5051 nbytes
= recvfrom (channel
, chars
+ carryover
, readmax
,
5052 0, datagram_address
[channel
].sa
, &len
);
5056 if (proc_buffered_char
[channel
] < 0)
5058 nbytes
= emacs_read (channel
, chars
+ carryover
, readmax
);
5059 #ifdef ADAPTIVE_READ_BUFFERING
5060 if (nbytes
> 0 && !NILP (p
->adaptive_read_buffering
))
5062 int delay
= XINT (p
->read_output_delay
);
5065 if (delay
< READ_OUTPUT_DELAY_MAX_MAX
)
5068 process_output_delay_count
++;
5069 delay
+= READ_OUTPUT_DELAY_INCREMENT
* 2;
5072 else if (delay
> 0 && (nbytes
== readmax
))
5074 delay
-= READ_OUTPUT_DELAY_INCREMENT
;
5076 process_output_delay_count
--;
5078 XSETINT (p
->read_output_delay
, delay
);
5081 p
->read_output_skip
= Qt
;
5082 process_output_skip
= 1;
5089 chars
[carryover
] = proc_buffered_char
[channel
];
5090 proc_buffered_char
[channel
] = -1;
5091 nbytes
= emacs_read (channel
, chars
+ carryover
+ 1, readmax
- 1);
5095 nbytes
= nbytes
+ 1;
5097 #endif /* not VMS */
5099 XSETINT (p
->decoding_carryover
, 0);
5101 /* At this point, NBYTES holds number of bytes just received
5102 (including the one in proc_buffered_char[channel]). */
5105 if (nbytes
< 0 || coding
->mode
& CODING_MODE_LAST_BLOCK
)
5107 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
5110 /* Now set NBYTES how many bytes we must decode. */
5111 nbytes
+= carryover
;
5113 /* Read and dispose of the process output. */
5114 outstream
= p
->filter
;
5115 if (!NILP (outstream
))
5117 /* We inhibit quit here instead of just catching it so that
5118 hitting ^G when a filter happens to be running won't screw
5120 int count
= SPECPDL_INDEX ();
5121 Lisp_Object odeactivate
;
5122 Lisp_Object obuffer
, okeymap
;
5124 int outer_running_asynch_code
= running_asynch_code
;
5125 int waiting
= waiting_for_user_input_p
;
5127 /* No need to gcpro these, because all we do with them later
5128 is test them for EQness, and none of them should be a string. */
5129 odeactivate
= Vdeactivate_mark
;
5130 XSETBUFFER (obuffer
, current_buffer
);
5131 okeymap
= current_buffer
->keymap
;
5133 specbind (Qinhibit_quit
, Qt
);
5134 specbind (Qlast_nonmenu_event
, Qt
);
5136 /* In case we get recursively called,
5137 and we already saved the match data nonrecursively,
5138 save the same match data in safely recursive fashion. */
5139 if (outer_running_asynch_code
)
5142 /* Don't clobber the CURRENT match data, either! */
5143 tem
= Fmatch_data (Qnil
, Qnil
, Qnil
);
5144 restore_search_regs ();
5145 record_unwind_save_match_data ();
5146 Fset_match_data (tem
, Qt
);
5149 /* For speed, if a search happens within this code,
5150 save the match data in a special nonrecursive fashion. */
5151 running_asynch_code
= 1;
5153 text
= decode_coding_string (make_unibyte_string (chars
, nbytes
),
5155 Vlast_coding_system_used
= coding
->symbol
;
5156 /* A new coding system might be found. */
5157 if (!EQ (p
->decode_coding_system
, coding
->symbol
))
5159 p
->decode_coding_system
= coding
->symbol
;
5161 /* Don't call setup_coding_system for
5162 proc_decode_coding_system[channel] here. It is done in
5163 detect_coding called via decode_coding above. */
5165 /* If a coding system for encoding is not yet decided, we set
5166 it as the same as coding-system for decoding.
5168 But, before doing that we must check if
5169 proc_encode_coding_system[p->outfd] surely points to a
5170 valid memory because p->outfd will be changed once EOF is
5171 sent to the process. */
5172 if (NILP (p
->encode_coding_system
)
5173 && proc_encode_coding_system
[XINT (p
->outfd
)])
5175 p
->encode_coding_system
= coding
->symbol
;
5176 setup_coding_system (coding
->symbol
,
5177 proc_encode_coding_system
[XINT (p
->outfd
)]);
5178 if (proc_encode_coding_system
[XINT (p
->outfd
)]->eol_type
5179 == CODING_EOL_UNDECIDED
)
5180 proc_encode_coding_system
[XINT (p
->outfd
)]->eol_type
5185 carryover
= nbytes
- coding
->consumed
;
5189 if (SCHARS (p
->decoding_buf
) < carryover
)
5190 p
->decoding_buf
= make_uninit_string (carryover
);
5191 bcopy (chars
+ coding
->consumed
, SDATA (p
->decoding_buf
),
5193 XSETINT (p
->decoding_carryover
, carryover
);
5194 /* Adjust the multibyteness of TEXT to that of the filter. */
5195 if (NILP (p
->filter_multibyte
) != ! STRING_MULTIBYTE (text
))
5196 text
= (STRING_MULTIBYTE (text
)
5197 ? Fstring_as_unibyte (text
)
5198 : Fstring_to_multibyte (text
));
5199 if (SBYTES (text
) > 0)
5200 internal_condition_case_1 (read_process_output_call
,
5202 Fcons (proc
, Fcons (text
, Qnil
))),
5203 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
5204 read_process_output_error_handler
);
5206 /* If we saved the match data nonrecursively, restore it now. */
5207 restore_search_regs ();
5208 running_asynch_code
= outer_running_asynch_code
;
5210 /* Handling the process output should not deactivate the mark. */
5211 Vdeactivate_mark
= odeactivate
;
5213 /* Restore waiting_for_user_input_p as it was
5214 when we were called, in case the filter clobbered it. */
5215 waiting_for_user_input_p
= waiting
;
5217 #if 0 /* Call record_asynch_buffer_change unconditionally,
5218 because we might have changed minor modes or other things
5219 that affect key bindings. */
5220 if (! EQ (Fcurrent_buffer (), obuffer
)
5221 || ! EQ (current_buffer
->keymap
, okeymap
))
5223 /* But do it only if the caller is actually going to read events.
5224 Otherwise there's no need to make him wake up, and it could
5225 cause trouble (for example it would make sit_for return). */
5226 if (waiting_for_user_input_p
== -1)
5227 record_asynch_buffer_change ();
5230 start_vms_process_read (vs
);
5232 unbind_to (count
, Qnil
);
5236 /* If no filter, write into buffer if it isn't dead. */
5237 if (!NILP (p
->buffer
) && !NILP (XBUFFER (p
->buffer
)->name
))
5239 Lisp_Object old_read_only
;
5240 int old_begv
, old_zv
;
5241 int old_begv_byte
, old_zv_byte
;
5242 Lisp_Object odeactivate
;
5243 int before
, before_byte
;
5248 odeactivate
= Vdeactivate_mark
;
5250 Fset_buffer (p
->buffer
);
5252 opoint_byte
= PT_BYTE
;
5253 old_read_only
= current_buffer
->read_only
;
5256 old_begv_byte
= BEGV_BYTE
;
5257 old_zv_byte
= ZV_BYTE
;
5259 current_buffer
->read_only
= Qnil
;
5261 /* Insert new output into buffer
5262 at the current end-of-output marker,
5263 thus preserving logical ordering of input and output. */
5264 if (XMARKER (p
->mark
)->buffer
)
5265 SET_PT_BOTH (clip_to_bounds (BEGV
, marker_position (p
->mark
), ZV
),
5266 clip_to_bounds (BEGV_BYTE
, marker_byte_position (p
->mark
),
5269 SET_PT_BOTH (ZV
, ZV_BYTE
);
5271 before_byte
= PT_BYTE
;
5273 /* If the output marker is outside of the visible region, save
5274 the restriction and widen. */
5275 if (! (BEGV
<= PT
&& PT
<= ZV
))
5278 text
= decode_coding_string (make_unibyte_string (chars
, nbytes
),
5280 Vlast_coding_system_used
= coding
->symbol
;
5281 /* A new coding system might be found. See the comment in the
5282 similar code in the previous `if' block. */
5283 if (!EQ (p
->decode_coding_system
, coding
->symbol
))
5285 p
->decode_coding_system
= coding
->symbol
;
5286 if (NILP (p
->encode_coding_system
)
5287 && proc_encode_coding_system
[XINT (p
->outfd
)])
5289 p
->encode_coding_system
= coding
->symbol
;
5290 setup_coding_system (coding
->symbol
,
5291 proc_encode_coding_system
[XINT (p
->outfd
)]);
5292 if (proc_encode_coding_system
[XINT (p
->outfd
)]->eol_type
5293 == CODING_EOL_UNDECIDED
)
5294 proc_encode_coding_system
[XINT (p
->outfd
)]->eol_type
5298 carryover
= nbytes
- coding
->consumed
;
5302 if (SCHARS (p
->decoding_buf
) < carryover
)
5303 p
->decoding_buf
= make_uninit_string (carryover
);
5304 bcopy (chars
+ coding
->consumed
, SDATA (p
->decoding_buf
),
5306 XSETINT (p
->decoding_carryover
, carryover
);
5308 /* Adjust the multibyteness of TEXT to that of the buffer. */
5309 if (NILP (current_buffer
->enable_multibyte_characters
)
5310 != ! STRING_MULTIBYTE (text
))
5311 text
= (STRING_MULTIBYTE (text
)
5312 ? Fstring_as_unibyte (text
)
5313 : Fstring_to_multibyte (text
));
5314 /* Insert before markers in case we are inserting where
5315 the buffer's mark is, and the user's next command is Meta-y. */
5316 insert_from_string_before_markers (text
, 0, 0,
5317 SCHARS (text
), SBYTES (text
), 0);
5319 /* Make sure the process marker's position is valid when the
5320 process buffer is changed in the signal_after_change above.
5321 W3 is known to do that. */
5322 if (BUFFERP (p
->buffer
)
5323 && (b
= XBUFFER (p
->buffer
), b
!= current_buffer
))
5324 set_marker_both (p
->mark
, p
->buffer
, BUF_PT (b
), BUF_PT_BYTE (b
));
5326 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
5328 update_mode_lines
++;
5330 /* Make sure opoint and the old restrictions
5331 float ahead of any new text just as point would. */
5332 if (opoint
>= before
)
5334 opoint
+= PT
- before
;
5335 opoint_byte
+= PT_BYTE
- before_byte
;
5337 if (old_begv
> before
)
5339 old_begv
+= PT
- before
;
5340 old_begv_byte
+= PT_BYTE
- before_byte
;
5342 if (old_zv
>= before
)
5344 old_zv
+= PT
- before
;
5345 old_zv_byte
+= PT_BYTE
- before_byte
;
5348 /* If the restriction isn't what it should be, set it. */
5349 if (old_begv
!= BEGV
|| old_zv
!= ZV
)
5350 Fnarrow_to_region (make_number (old_begv
), make_number (old_zv
));
5352 /* Handling the process output should not deactivate the mark. */
5353 Vdeactivate_mark
= odeactivate
;
5355 current_buffer
->read_only
= old_read_only
;
5356 SET_PT_BOTH (opoint
, opoint_byte
);
5357 set_buffer_internal (old
);
5360 start_vms_process_read (vs
);
5365 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p
, Swaiting_for_user_input_p
,
5367 doc
: /* Returns non-nil if Emacs is waiting for input from the user.
5368 This is intended for use by asynchronous process output filters and sentinels. */)
5371 return (waiting_for_user_input_p
? Qt
: Qnil
);
5374 /* Sending data to subprocess */
5376 jmp_buf send_process_frame
;
5377 Lisp_Object process_sent_to
;
5380 send_process_trap ()
5382 SIGNAL_THREAD_CHECK (SIGPIPE
);
5387 sigunblock (sigmask (SIGPIPE
));
5388 longjmp (send_process_frame
, 1);
5391 /* Send some data to process PROC.
5392 BUF is the beginning of the data; LEN is the number of characters.
5393 OBJECT is the Lisp object that the data comes from. If OBJECT is
5394 nil or t, it means that the data comes from C string.
5396 If OBJECT is not nil, the data is encoded by PROC's coding-system
5397 for encoding before it is sent.
5399 This function can evaluate Lisp code and can garbage collect. */
5402 send_process (proc
, buf
, len
, object
)
5403 volatile Lisp_Object proc
;
5404 unsigned char *volatile buf
;
5406 volatile Lisp_Object object
;
5408 /* Use volatile to protect variables from being clobbered by longjmp. */
5409 struct Lisp_Process
*p
= XPROCESS (proc
);
5411 struct coding_system
*coding
;
5412 struct gcpro gcpro1
;
5413 SIGTYPE (*volatile old_sigpipe
) ();
5418 VMS_PROC_STUFF
*vs
, *get_vms_process_pointer();
5421 if (p
->raw_status_new
)
5423 if (! EQ (p
->status
, Qrun
))
5424 error ("Process %s not running", SDATA (p
->name
));
5425 if (XINT (p
->outfd
) < 0)
5426 error ("Output file descriptor of %s is closed", SDATA (p
->name
));
5428 coding
= proc_encode_coding_system
[XINT (p
->outfd
)];
5429 Vlast_coding_system_used
= coding
->symbol
;
5431 if ((STRINGP (object
) && STRING_MULTIBYTE (object
))
5432 || (BUFFERP (object
)
5433 && !NILP (XBUFFER (object
)->enable_multibyte_characters
))
5436 if (!EQ (coding
->symbol
, p
->encode_coding_system
))
5437 /* The coding system for encoding was changed to raw-text
5438 because we sent a unibyte text previously. Now we are
5439 sending a multibyte text, thus we must encode it by the
5440 original coding system specified for the current process. */
5441 setup_coding_system (p
->encode_coding_system
, coding
);
5442 if (coding
->eol_type
== CODING_EOL_UNDECIDED
)
5443 coding
->eol_type
= system_eol_type
;
5444 /* src_multibyte should be set to 1 _after_ a call to
5445 setup_coding_system, since it resets src_multibyte to
5447 coding
->src_multibyte
= 1;
5451 /* For sending a unibyte text, character code conversion should
5452 not take place but EOL conversion should. So, setup raw-text
5453 or one of the subsidiary if we have not yet done it. */
5454 if (coding
->type
!= coding_type_raw_text
)
5456 if (CODING_REQUIRE_FLUSHING (coding
))
5458 /* But, before changing the coding, we must flush out data. */
5459 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
5460 send_process (proc
, "", 0, Qt
);
5462 coding
->src_multibyte
= 0;
5463 setup_raw_text_coding_system (coding
);
5466 coding
->dst_multibyte
= 0;
5468 if (CODING_REQUIRE_ENCODING (coding
))
5470 int require
= encoding_buffer_size (coding
, len
);
5471 int from_byte
= -1, from
= -1, to
= -1;
5473 if (BUFFERP (object
))
5475 from_byte
= BUF_PTR_BYTE_POS (XBUFFER (object
), buf
);
5476 from
= buf_bytepos_to_charpos (XBUFFER (object
), from_byte
);
5477 to
= buf_bytepos_to_charpos (XBUFFER (object
), from_byte
+ len
);
5479 else if (STRINGP (object
))
5481 from_byte
= buf
- SDATA (object
);
5482 from
= string_byte_to_char (object
, from_byte
);
5483 to
= string_byte_to_char (object
, from_byte
+ len
);
5486 if (coding
->composing
!= COMPOSITION_DISABLED
)
5489 coding_save_composition (coding
, from
, to
, object
);
5491 coding
->composing
= COMPOSITION_DISABLED
;
5494 if (SBYTES (p
->encoding_buf
) < require
)
5495 p
->encoding_buf
= make_uninit_string (require
);
5498 buf
= (BUFFERP (object
)
5499 ? BUF_BYTE_ADDRESS (XBUFFER (object
), from_byte
)
5500 : SDATA (object
) + from_byte
);
5502 object
= p
->encoding_buf
;
5503 encode_coding (coding
, (char *) buf
, SDATA (object
),
5504 len
, SBYTES (object
));
5505 coding_free_composition_data (coding
);
5506 len
= coding
->produced
;
5507 buf
= SDATA (object
);
5511 vs
= get_vms_process_pointer (p
->pid
);
5513 error ("Could not find this process: %x", p
->pid
);
5514 else if (write_to_vms_process (vs
, buf
, len
))
5518 if (pty_max_bytes
== 0)
5520 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
5521 pty_max_bytes
= fpathconf (XFASTINT (p
->outfd
), _PC_MAX_CANON
);
5522 if (pty_max_bytes
< 0)
5523 pty_max_bytes
= 250;
5525 pty_max_bytes
= 250;
5527 /* Deduct one, to leave space for the eof. */
5531 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
5532 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
5533 when returning with longjmp despite being declared volatile. */
5534 if (!setjmp (send_process_frame
))
5536 process_sent_to
= proc
;
5541 /* Decide how much data we can send in one batch.
5542 Long lines need to be split into multiple batches. */
5543 if (!NILP (p
->pty_flag
))
5545 /* Starting this at zero is always correct when not the first
5546 iteration because the previous iteration ended by sending C-d.
5547 It may not be correct for the first iteration
5548 if a partial line was sent in a separate send_process call.
5549 If that proves worth handling, we need to save linepos
5550 in the process object. */
5552 unsigned char *ptr
= (unsigned char *) buf
;
5553 unsigned char *end
= (unsigned char *) buf
+ len
;
5555 /* Scan through this text for a line that is too long. */
5556 while (ptr
!= end
&& linepos
< pty_max_bytes
)
5564 /* If we found one, break the line there
5565 and put in a C-d to force the buffer through. */
5569 /* Send this batch, using one or more write calls. */
5572 int outfd
= XINT (p
->outfd
);
5573 old_sigpipe
= (SIGTYPE (*) ()) signal (SIGPIPE
, send_process_trap
);
5574 #ifdef DATAGRAM_SOCKETS
5575 if (DATAGRAM_CHAN_P (outfd
))
5577 rv
= sendto (outfd
, (char *) buf
, this,
5578 0, datagram_address
[outfd
].sa
,
5579 datagram_address
[outfd
].len
);
5580 if (rv
< 0 && errno
== EMSGSIZE
)
5582 signal (SIGPIPE
, old_sigpipe
);
5583 report_file_error ("sending datagram",
5584 Fcons (proc
, Qnil
));
5590 rv
= emacs_write (outfd
, (char *) buf
, this);
5591 #ifdef ADAPTIVE_READ_BUFFERING
5592 if (XINT (p
->read_output_delay
) > 0
5593 && EQ (p
->adaptive_read_buffering
, Qt
))
5595 XSETFASTINT (p
->read_output_delay
, 0);
5596 process_output_delay_count
--;
5597 p
->read_output_skip
= Qnil
;
5601 signal (SIGPIPE
, old_sigpipe
);
5607 || errno
== EWOULDBLOCK
5613 /* Buffer is full. Wait, accepting input;
5614 that may allow the program
5615 to finish doing output and read more. */
5619 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
5620 /* A gross hack to work around a bug in FreeBSD.
5621 In the following sequence, read(2) returns
5625 write(2) 954 bytes, get EAGAIN
5626 read(2) 1024 bytes in process_read_output
5627 read(2) 11 bytes in process_read_output
5629 That is, read(2) returns more bytes than have
5630 ever been written successfully. The 1033 bytes
5631 read are the 1022 bytes written successfully
5632 after processing (for example with CRs added if
5633 the terminal is set up that way which it is
5634 here). The same bytes will be seen again in a
5635 later read(2), without the CRs. */
5637 if (errno
== EAGAIN
)
5640 ioctl (XINT (p
->outfd
), TIOCFLUSH
, &flags
);
5642 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5644 /* Running filters might relocate buffers or strings.
5645 Arrange to relocate BUF. */
5646 if (BUFFERP (object
))
5647 offset
= BUF_PTR_BYTE_POS (XBUFFER (object
), buf
);
5648 else if (STRINGP (object
))
5649 offset
= buf
- SDATA (object
);
5651 #ifdef EMACS_HAS_USECS
5652 wait_reading_process_output (0, 20000, 0, 0, Qnil
, NULL
, 0);
5654 wait_reading_process_output (1, 0, 0, 0, Qnil
, NULL
, 0);
5657 if (BUFFERP (object
))
5658 buf
= BUF_BYTE_ADDRESS (XBUFFER (object
), offset
);
5659 else if (STRINGP (object
))
5660 buf
= offset
+ SDATA (object
);
5665 /* This is a real error. */
5666 report_file_error ("writing to process", Fcons (proc
, Qnil
));
5673 /* If we sent just part of the string, put in an EOF
5674 to force it through, before we send the rest. */
5676 Fprocess_send_eof (proc
);
5679 #endif /* not VMS */
5682 signal (SIGPIPE
, old_sigpipe
);
5684 proc
= process_sent_to
;
5685 p
= XPROCESS (proc
);
5687 p
->raw_status_new
= 0;
5688 p
->status
= Fcons (Qexit
, Fcons (make_number (256), Qnil
));
5689 XSETINT (p
->tick
, ++process_tick
);
5690 deactivate_process (proc
);
5692 error ("Error writing to process %s; closed it", SDATA (p
->name
));
5694 error ("SIGPIPE raised on process %s; closed it", SDATA (p
->name
));
5702 send_process_object_unwind (buf
)
5707 if (XBUFFER (buf
) == current_buffer
)
5709 tembuf
= Fcurrent_buffer ();
5711 Fkill_buffer (tembuf
);
5715 /* Send current contents of region between START and END to PROC.
5716 If START is a string, send it instead.
5717 This function can evaluate Lisp code and can garbage collect. */
5720 send_process_object (proc
, start
, end
)
5721 Lisp_Object proc
, start
, end
;
5723 int count
= SPECPDL_INDEX ();
5724 Lisp_Object object
= STRINGP (start
) ? start
: Fcurrent_buffer ();
5725 struct buffer
*given_buffer
= current_buffer
;
5729 record_unwind_protect (send_process_object_unwind
, Fcurrent_buffer ());
5731 if (STRINGP (object
) ? STRING_MULTIBYTE (object
)
5732 : ! NILP (XBUFFER (object
)->enable_multibyte_characters
))
5734 struct Lisp_Process
*p
= XPROCESS (proc
);
5735 struct coding_system
*coding
;
5737 if (p
->raw_status_new
)
5739 if (! EQ (p
->status
, Qrun
))
5740 error ("Process %s not running", SDATA (p
->name
));
5741 if (XINT (p
->outfd
) < 0)
5742 error ("Output file descriptor of %s is closed", SDATA (p
->name
));
5744 coding
= proc_encode_coding_system
[XINT (p
->outfd
)];
5745 if (! EQ (coding
->symbol
, p
->encode_coding_system
))
5746 /* The coding system for encoding was changed to raw-text
5747 because we sent a unibyte text previously. Now we are
5748 sending a multibyte text, thus we must encode it by the
5749 original coding system specified for the current process. */
5750 setup_coding_system (p
->encode_coding_system
, coding
);
5751 if (! NILP (coding
->pre_write_conversion
))
5753 struct gcpro gcpro1
, gcpro2
;
5755 GCPRO2 (proc
, object
);
5756 call2 (coding
->pre_write_conversion
, start
, end
);
5758 if (given_buffer
!= current_buffer
)
5760 start
= make_number (BEGV
), end
= make_number (ZV
);
5761 object
= Fcurrent_buffer ();
5766 if (BUFFERP (object
))
5768 EMACS_INT start_byte
;
5770 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
5771 move_gap (XINT (end
));
5772 start_byte
= CHAR_TO_BYTE (XINT (start
));
5773 buf
= BYTE_POS_ADDR (start_byte
);
5774 len
= CHAR_TO_BYTE (XINT (end
)) - start_byte
;
5778 buf
= SDATA (object
);
5779 len
= SBYTES (object
);
5781 send_process (proc
, buf
, len
, object
);
5783 unbind_to (count
, Qnil
);
5786 DEFUN ("process-send-region", Fprocess_send_region
, Sprocess_send_region
,
5788 doc
: /* Send current contents of region as input to PROCESS.
5789 PROCESS may be a process, a buffer, the name of a process or buffer, or
5790 nil, indicating the current buffer's process.
5791 Called from program, takes three arguments, PROCESS, START and END.
5792 If the region is more than 500 characters long,
5793 it is sent in several bunches. This may happen even for shorter regions.
5794 Output from processes can arrive in between bunches. */)
5795 (process
, start
, end
)
5796 Lisp_Object process
, start
, end
;
5800 proc
= get_process (process
);
5801 validate_region (&start
, &end
);
5802 send_process_object (proc
, start
, end
);
5806 DEFUN ("process-send-string", Fprocess_send_string
, Sprocess_send_string
,
5808 doc
: /* Send PROCESS the contents of STRING as input.
5809 PROCESS may be a process, a buffer, the name of a process or buffer, or
5810 nil, indicating the current buffer's process.
5811 If STRING is more than 500 characters long,
5812 it is sent in several bunches. This may happen even for shorter strings.
5813 Output from processes can arrive in between bunches. */)
5815 Lisp_Object process
, string
;
5818 CHECK_STRING (string
);
5819 proc
= get_process (process
);
5820 send_process_object (proc
, string
, Qnil
);
5824 /* Return the foreground process group for the tty/pty that
5825 the process P uses. */
5827 emacs_get_tty_pgrp (p
)
5828 struct Lisp_Process
*p
;
5833 if (ioctl (XINT (p
->infd
), TIOCGPGRP
, &gid
) == -1 && ! NILP (p
->tty_name
))
5836 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
5837 master side. Try the slave side. */
5838 fd
= emacs_open (XSTRING (p
->tty_name
)->data
, O_RDONLY
, 0);
5842 ioctl (fd
, TIOCGPGRP
, &gid
);
5846 #endif /* defined (TIOCGPGRP ) */
5851 DEFUN ("process-running-child-p", Fprocess_running_child_p
,
5852 Sprocess_running_child_p
, 0, 1, 0,
5853 doc
: /* Return t if PROCESS has given the terminal to a child.
5854 If the operating system does not make it possible to find out,
5855 return t unconditionally. */)
5857 Lisp_Object process
;
5859 /* Initialize in case ioctl doesn't exist or gives an error,
5860 in a way that will cause returning t. */
5863 struct Lisp_Process
*p
;
5865 proc
= get_process (process
);
5866 p
= XPROCESS (proc
);
5868 if (!EQ (p
->childp
, Qt
))
5869 error ("Process %s is not a subprocess",
5871 if (XINT (p
->infd
) < 0)
5872 error ("Process %s is not active",
5875 gid
= emacs_get_tty_pgrp (p
);
5882 /* send a signal number SIGNO to PROCESS.
5883 If CURRENT_GROUP is t, that means send to the process group
5884 that currently owns the terminal being used to communicate with PROCESS.
5885 This is used for various commands in shell mode.
5886 If CURRENT_GROUP is lambda, that means send to the process group
5887 that currently owns the terminal, but only if it is NOT the shell itself.
5889 If NOMSG is zero, insert signal-announcements into process's buffers
5892 If we can, we try to signal PROCESS by sending control characters
5893 down the pty. This allows us to signal inferiors who have changed
5894 their uid, for which killpg would return an EPERM error. */
5897 process_send_signal (process
, signo
, current_group
, nomsg
)
5898 Lisp_Object process
;
5900 Lisp_Object current_group
;
5904 register struct Lisp_Process
*p
;
5908 proc
= get_process (process
);
5909 p
= XPROCESS (proc
);
5911 if (!EQ (p
->childp
, Qt
))
5912 error ("Process %s is not a subprocess",
5914 if (XINT (p
->infd
) < 0)
5915 error ("Process %s is not active",
5918 if (NILP (p
->pty_flag
))
5919 current_group
= Qnil
;
5921 /* If we are using pgrps, get a pgrp number and make it negative. */
5922 if (NILP (current_group
))
5923 /* Send the signal to the shell's process group. */
5927 #ifdef SIGNALS_VIA_CHARACTERS
5928 /* If possible, send signals to the entire pgrp
5929 by sending an input character to it. */
5931 /* TERMIOS is the latest and bestest, and seems most likely to
5932 work. If the system has it, use it. */
5935 cc_t
*sig_char
= NULL
;
5937 tcgetattr (XINT (p
->infd
), &t
);
5942 sig_char
= &t
.c_cc
[VINTR
];
5946 sig_char
= &t
.c_cc
[VQUIT
];
5950 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
5951 sig_char
= &t
.c_cc
[VSWTCH
];
5953 sig_char
= &t
.c_cc
[VSUSP
];
5958 if (sig_char
&& *sig_char
!= CDISABLE
)
5960 send_process (proc
, sig_char
, 1, Qnil
);
5963 /* If we can't send the signal with a character,
5964 fall through and send it another way. */
5965 #else /* ! HAVE_TERMIOS */
5967 /* On Berkeley descendants, the following IOCTL's retrieve the
5968 current control characters. */
5969 #if defined (TIOCGLTC) && defined (TIOCGETC)
5977 ioctl (XINT (p
->infd
), TIOCGETC
, &c
);
5978 send_process (proc
, &c
.t_intrc
, 1, Qnil
);
5981 ioctl (XINT (p
->infd
), TIOCGETC
, &c
);
5982 send_process (proc
, &c
.t_quitc
, 1, Qnil
);
5986 ioctl (XINT (p
->infd
), TIOCGLTC
, &lc
);
5987 send_process (proc
, &lc
.t_suspc
, 1, Qnil
);
5989 #endif /* ! defined (SIGTSTP) */
5992 #else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
5994 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
6001 ioctl (XINT (p
->infd
), TCGETA
, &t
);
6002 send_process (proc
, &t
.c_cc
[VINTR
], 1, Qnil
);
6005 ioctl (XINT (p
->infd
), TCGETA
, &t
);
6006 send_process (proc
, &t
.c_cc
[VQUIT
], 1, Qnil
);
6010 ioctl (XINT (p
->infd
), TCGETA
, &t
);
6011 send_process (proc
, &t
.c_cc
[VSWTCH
], 1, Qnil
);
6013 #endif /* ! defined (SIGTSTP) */
6015 #else /* ! defined (TCGETA) */
6016 Your configuration files are messed up
.
6017 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
6018 you'd better be using one of the alternatives above! */
6019 #endif /* ! defined (TCGETA) */
6020 #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
6021 /* In this case, the code above should alway returns. */
6023 #endif /* ! defined HAVE_TERMIOS */
6025 /* The code above may fall through if it can't
6026 handle the signal. */
6027 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
6030 /* Get the current pgrp using the tty itself, if we have that.
6031 Otherwise, use the pty to get the pgrp.
6032 On pfa systems, saka@pfu.fujitsu.co.JP writes:
6033 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
6034 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
6035 His patch indicates that if TIOCGPGRP returns an error, then
6036 we should just assume that p->pid is also the process group id. */
6038 gid
= emacs_get_tty_pgrp (p
);
6041 /* If we can't get the information, assume
6042 the shell owns the tty. */
6045 /* It is not clear whether anything really can set GID to -1.
6046 Perhaps on some system one of those ioctls can or could do so.
6047 Or perhaps this is vestigial. */
6050 #else /* ! defined (TIOCGPGRP ) */
6051 /* Can't select pgrps on this system, so we know that
6052 the child itself heads the pgrp. */
6054 #endif /* ! defined (TIOCGPGRP ) */
6056 /* If current_group is lambda, and the shell owns the terminal,
6057 don't send any signal. */
6058 if (EQ (current_group
, Qlambda
) && gid
== p
->pid
)
6066 p
->raw_status_new
= 0;
6068 XSETINT (p
->tick
, ++process_tick
);
6070 status_notify (NULL
);
6072 #endif /* ! defined (SIGCONT) */
6075 send_process (proc
, "\003", 1, Qnil
); /* ^C */
6080 send_process (proc
, "\031", 1, Qnil
); /* ^Y */
6085 sys$
forcex (&(p
->pid
), 0, 1);
6088 flush_pending_output (XINT (p
->infd
));
6092 /* If we don't have process groups, send the signal to the immediate
6093 subprocess. That isn't really right, but it's better than any
6094 obvious alternative. */
6097 kill (p
->pid
, signo
);
6101 /* gid may be a pid, or minus a pgrp's number */
6103 if (!NILP (current_group
))
6105 if (ioctl (XINT (p
->infd
), TIOCSIGSEND
, signo
) == -1)
6106 EMACS_KILLPG (gid
, signo
);
6113 #else /* ! defined (TIOCSIGSEND) */
6114 EMACS_KILLPG (gid
, signo
);
6115 #endif /* ! defined (TIOCSIGSEND) */
6118 DEFUN ("interrupt-process", Finterrupt_process
, Sinterrupt_process
, 0, 2, 0,
6119 doc
: /* Interrupt process PROCESS.
6120 PROCESS may be a process, a buffer, or the name of a process or buffer.
6121 No arg or nil means current buffer's process.
6122 Second arg CURRENT-GROUP non-nil means send signal to
6123 the current process-group of the process's controlling terminal
6124 rather than to the process's own process group.
6125 If the process is a shell, this means interrupt current subjob
6126 rather than the shell.
6128 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
6129 don't send the signal. */)
6130 (process
, current_group
)
6131 Lisp_Object process
, current_group
;
6133 process_send_signal (process
, SIGINT
, current_group
, 0);
6137 DEFUN ("kill-process", Fkill_process
, Skill_process
, 0, 2, 0,
6138 doc
: /* Kill process PROCESS. May be process or name of one.
6139 See function `interrupt-process' for more details on usage. */)
6140 (process
, current_group
)
6141 Lisp_Object process
, current_group
;
6143 process_send_signal (process
, SIGKILL
, current_group
, 0);
6147 DEFUN ("quit-process", Fquit_process
, Squit_process
, 0, 2, 0,
6148 doc
: /* Send QUIT signal to process PROCESS. May be process or name of one.
6149 See function `interrupt-process' for more details on usage. */)
6150 (process
, current_group
)
6151 Lisp_Object process
, current_group
;
6153 process_send_signal (process
, SIGQUIT
, current_group
, 0);
6157 DEFUN ("stop-process", Fstop_process
, Sstop_process
, 0, 2, 0,
6158 doc
: /* Stop process PROCESS. May be process or name of one.
6159 See function `interrupt-process' for more details on usage.
6160 If PROCESS is a network process, inhibit handling of incoming traffic. */)
6161 (process
, current_group
)
6162 Lisp_Object process
, current_group
;
6165 if (PROCESSP (process
) && NETCONN_P (process
))
6167 struct Lisp_Process
*p
;
6169 p
= XPROCESS (process
);
6170 if (NILP (p
->command
)
6171 && XINT (p
->infd
) >= 0)
6173 FD_CLR (XINT (p
->infd
), &input_wait_mask
);
6174 FD_CLR (XINT (p
->infd
), &non_keyboard_wait_mask
);
6181 error ("No SIGTSTP support");
6183 process_send_signal (process
, SIGTSTP
, current_group
, 0);
6188 DEFUN ("continue-process", Fcontinue_process
, Scontinue_process
, 0, 2, 0,
6189 doc
: /* Continue process PROCESS. May be process or name of one.
6190 See function `interrupt-process' for more details on usage.
6191 If PROCESS is a network process, resume handling of incoming traffic. */)
6192 (process
, current_group
)
6193 Lisp_Object process
, current_group
;
6196 if (PROCESSP (process
) && NETCONN_P (process
))
6198 struct Lisp_Process
*p
;
6200 p
= XPROCESS (process
);
6201 if (EQ (p
->command
, Qt
)
6202 && XINT (p
->infd
) >= 0
6203 && (!EQ (p
->filter
, Qt
) || EQ (p
->status
, Qlisten
)))
6205 FD_SET (XINT (p
->infd
), &input_wait_mask
);
6206 FD_SET (XINT (p
->infd
), &non_keyboard_wait_mask
);
6213 process_send_signal (process
, SIGCONT
, current_group
, 0);
6215 error ("No SIGCONT support");
6220 DEFUN ("signal-process", Fsignal_process
, Ssignal_process
,
6221 2, 2, "sProcess (name or number): \nnSignal code: ",
6222 doc
: /* Send PROCESS the signal with code SIGCODE.
6223 PROCESS may also be a number specifying the process id of the
6224 process to signal; in this case, the process need not be a child of
6226 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
6228 Lisp_Object process
, sigcode
;
6232 if (INTEGERP (process
))
6234 pid
= XINT (process
);
6238 if (FLOATP (process
))
6240 pid
= (pid_t
) XFLOAT_DATA (process
);
6244 if (STRINGP (process
))
6247 if (tem
= Fget_process (process
), NILP (tem
))
6249 pid
= XINT (Fstring_to_number (process
, make_number (10)));
6256 process
= get_process (process
);
6261 CHECK_PROCESS (process
);
6262 pid
= XPROCESS (process
)->pid
;
6264 error ("Cannot signal process %s", SDATA (XPROCESS (process
)->name
));
6268 #define parse_signal(NAME, VALUE) \
6269 else if (!xstricmp (name, NAME)) \
6270 XSETINT (sigcode, VALUE)
6272 if (INTEGERP (sigcode
))
6276 unsigned char *name
;
6278 CHECK_SYMBOL (sigcode
);
6279 name
= SDATA (SYMBOL_NAME (sigcode
));
6281 if (!strncmp(name
, "SIG", 3) || !strncmp(name
, "sig", 3))
6287 parse_signal ("usr1", SIGUSR1
);
6290 parse_signal ("usr2", SIGUSR2
);
6293 parse_signal ("term", SIGTERM
);
6296 parse_signal ("hup", SIGHUP
);
6299 parse_signal ("int", SIGINT
);
6302 parse_signal ("quit", SIGQUIT
);
6305 parse_signal ("ill", SIGILL
);
6308 parse_signal ("abrt", SIGABRT
);
6311 parse_signal ("emt", SIGEMT
);
6314 parse_signal ("kill", SIGKILL
);
6317 parse_signal ("fpe", SIGFPE
);
6320 parse_signal ("bus", SIGBUS
);
6323 parse_signal ("segv", SIGSEGV
);
6326 parse_signal ("sys", SIGSYS
);
6329 parse_signal ("pipe", SIGPIPE
);
6332 parse_signal ("alrm", SIGALRM
);
6335 parse_signal ("urg", SIGURG
);
6338 parse_signal ("stop", SIGSTOP
);
6341 parse_signal ("tstp", SIGTSTP
);
6344 parse_signal ("cont", SIGCONT
);
6347 parse_signal ("chld", SIGCHLD
);
6350 parse_signal ("ttin", SIGTTIN
);
6353 parse_signal ("ttou", SIGTTOU
);
6356 parse_signal ("io", SIGIO
);
6359 parse_signal ("xcpu", SIGXCPU
);
6362 parse_signal ("xfsz", SIGXFSZ
);
6365 parse_signal ("vtalrm", SIGVTALRM
);
6368 parse_signal ("prof", SIGPROF
);
6371 parse_signal ("winch", SIGWINCH
);
6374 parse_signal ("info", SIGINFO
);
6377 error ("Undefined signal name %s", name
);
6382 return make_number (kill (pid
, XINT (sigcode
)));
6385 DEFUN ("process-send-eof", Fprocess_send_eof
, Sprocess_send_eof
, 0, 1, 0,
6386 doc
: /* Make PROCESS see end-of-file in its input.
6387 EOF comes after any text already sent to it.
6388 PROCESS may be a process, a buffer, the name of a process or buffer, or
6389 nil, indicating the current buffer's process.
6390 If PROCESS is a network connection, or is a process communicating
6391 through a pipe (as opposed to a pty), then you cannot send any more
6392 text to PROCESS after you call this function. */)
6394 Lisp_Object process
;
6397 struct coding_system
*coding
;
6399 if (DATAGRAM_CONN_P (process
))
6402 proc
= get_process (process
);
6403 coding
= proc_encode_coding_system
[XINT (XPROCESS (proc
)->outfd
)];
6405 /* Make sure the process is really alive. */
6406 if (XPROCESS (proc
)->raw_status_new
)
6407 update_status (XPROCESS (proc
));
6408 if (! EQ (XPROCESS (proc
)->status
, Qrun
))
6409 error ("Process %s not running", SDATA (XPROCESS (proc
)->name
));
6411 if (CODING_REQUIRE_FLUSHING (coding
))
6413 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
6414 send_process (proc
, "", 0, Qnil
);
6418 send_process (proc
, "\032", 1, Qnil
); /* ^z */
6420 if (!NILP (XPROCESS (proc
)->pty_flag
))
6421 send_process (proc
, "\004", 1, Qnil
);
6424 int old_outfd
, new_outfd
;
6426 #ifdef HAVE_SHUTDOWN
6427 /* If this is a network connection, or socketpair is used
6428 for communication with the subprocess, call shutdown to cause EOF.
6429 (In some old system, shutdown to socketpair doesn't work.
6430 Then we just can't win.) */
6431 if (XPROCESS (proc
)->pid
== 0
6432 || XINT (XPROCESS (proc
)->outfd
) == XINT (XPROCESS (proc
)->infd
))
6433 shutdown (XINT (XPROCESS (proc
)->outfd
), 1);
6434 /* In case of socketpair, outfd == infd, so don't close it. */
6435 if (XINT (XPROCESS (proc
)->outfd
) != XINT (XPROCESS (proc
)->infd
))
6436 emacs_close (XINT (XPROCESS (proc
)->outfd
));
6437 #else /* not HAVE_SHUTDOWN */
6438 emacs_close (XINT (XPROCESS (proc
)->outfd
));
6439 #endif /* not HAVE_SHUTDOWN */
6440 new_outfd
= emacs_open (NULL_DEVICE
, O_WRONLY
, 0);
6443 old_outfd
= XINT (XPROCESS (proc
)->outfd
);
6445 if (!proc_encode_coding_system
[new_outfd
])
6446 proc_encode_coding_system
[new_outfd
]
6447 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
6448 bcopy (proc_encode_coding_system
[old_outfd
],
6449 proc_encode_coding_system
[new_outfd
],
6450 sizeof (struct coding_system
));
6451 bzero (proc_encode_coding_system
[old_outfd
],
6452 sizeof (struct coding_system
));
6454 XSETINT (XPROCESS (proc
)->outfd
, new_outfd
);
6460 /* Kill all processes associated with `buffer'.
6461 If `buffer' is nil, kill all processes */
6464 kill_buffer_processes (buffer
)
6467 Lisp_Object tail
, proc
;
6469 for (tail
= Vprocess_alist
; GC_CONSP (tail
); tail
= XCDR (tail
))
6471 proc
= XCDR (XCAR (tail
));
6472 if (GC_PROCESSP (proc
)
6473 && (NILP (buffer
) || EQ (XPROCESS (proc
)->buffer
, buffer
)))
6475 if (NETCONN_P (proc
))
6476 Fdelete_process (proc
);
6477 else if (XINT (XPROCESS (proc
)->infd
) >= 0)
6478 process_send_signal (proc
, SIGHUP
, Qnil
, 1);
6483 /* On receipt of a signal that a child status has changed, loop asking
6484 about children with changed statuses until the system says there
6487 All we do is change the status; we do not run sentinels or print
6488 notifications. That is saved for the next time keyboard input is
6489 done, in order to avoid timing errors.
6491 ** WARNING: this can be called during garbage collection.
6492 Therefore, it must not be fooled by the presence of mark bits in
6495 ** USG WARNING: Although it is not obvious from the documentation
6496 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6497 signal() before executing at least one wait(), otherwise the
6498 handler will be called again, resulting in an infinite loop. The
6499 relevant portion of the documentation reads "SIGCLD signals will be
6500 queued and the signal-catching function will be continually
6501 reentered until the queue is empty". Invoking signal() causes the
6502 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6505 ** Malloc WARNING: This should never call malloc either directly or
6506 indirectly; if it does, that is a bug */
6510 sigchld_handler (signo
)
6513 int old_errno
= errno
;
6515 register struct Lisp_Process
*p
;
6516 extern EMACS_TIME
*input_available_clear_time
;
6518 SIGNAL_THREAD_CHECK (signo
);
6522 sigheld
|= sigbit (SIGCHLD
);
6534 #endif /* no WUNTRACED */
6535 /* Keep trying to get a status until we get a definitive result. */
6539 pid
= wait3 (&w
, WNOHANG
| WUNTRACED
, 0);
6541 while (pid
< 0 && errno
== EINTR
);
6545 /* PID == 0 means no processes found, PID == -1 means a real
6546 failure. We have done all our job, so return. */
6548 /* USG systems forget handlers when they are used;
6549 must reestablish each time */
6550 #if defined (USG) && !defined (POSIX_SIGNALS)
6551 signal (signo
, sigchld_handler
); /* WARNING - must come after wait3() */
6554 sigheld
&= ~sigbit (SIGCHLD
);
6562 #endif /* no WNOHANG */
6564 /* Find the process that signaled us, and record its status. */
6566 /* The process can have been deleted by Fdelete_process. */
6567 for (tail
= deleted_pid_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
6569 Lisp_Object xpid
= XCAR (tail
);
6570 if ((GC_INTEGERP (xpid
) && pid
== (pid_t
) XINT (xpid
))
6571 || (GC_FLOATP (xpid
) && pid
== (pid_t
) XFLOAT_DATA (xpid
)))
6573 XSETCAR (tail
, Qnil
);
6574 goto sigchld_end_of_loop
;
6578 /* Otherwise, if it is asynchronous, it is in Vprocess_alist. */
6580 for (tail
= Vprocess_alist
; GC_CONSP (tail
); tail
= XCDR (tail
))
6582 proc
= XCDR (XCAR (tail
));
6583 p
= XPROCESS (proc
);
6584 if (GC_EQ (p
->childp
, Qt
) && p
->pid
== pid
)
6589 /* Look for an asynchronous process whose pid hasn't been filled
6592 for (tail
= Vprocess_alist
; GC_CONSP (tail
); tail
= XCDR (tail
))
6594 proc
= XCDR (XCAR (tail
));
6595 p
= XPROCESS (proc
);
6601 /* Change the status of the process that was found. */
6604 union { int i
; WAITTYPE wt
; } u
;
6605 int clear_desc_flag
= 0;
6607 XSETINT (p
->tick
, ++process_tick
);
6609 p
->raw_status
= u
.i
;
6610 p
->raw_status_new
= 1;
6612 /* If process has terminated, stop waiting for its output. */
6613 if ((WIFSIGNALED (w
) || WIFEXITED (w
))
6614 && XINT (p
->infd
) >= 0)
6615 clear_desc_flag
= 1;
6617 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
6618 if (clear_desc_flag
)
6620 FD_CLR (XINT (p
->infd
), &input_wait_mask
);
6621 FD_CLR (XINT (p
->infd
), &non_keyboard_wait_mask
);
6624 /* Tell wait_reading_process_output that it needs to wake up and
6626 if (input_available_clear_time
)
6627 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
6630 /* There was no asynchronous process found for that pid: we have
6631 a synchronous process. */
6634 synch_process_alive
= 0;
6636 /* Report the status of the synchronous process. */
6638 synch_process_retcode
= WRETCODE (w
);
6639 else if (WIFSIGNALED (w
))
6640 synch_process_termsig
= WTERMSIG (w
);
6642 /* Tell wait_reading_process_output that it needs to wake up and
6644 if (input_available_clear_time
)
6645 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
6648 sigchld_end_of_loop
:
6651 /* On some systems, we must return right away.
6652 If any more processes want to signal us, we will
6654 Otherwise (on systems that have WNOHANG), loop around
6655 to use up all the processes that have something to tell us. */
6656 #if (defined WINDOWSNT \
6657 || (defined USG && !defined GNU_LINUX \
6658 && !(defined HPUX && defined WNOHANG)))
6659 #if defined (USG) && ! defined (POSIX_SIGNALS)
6660 signal (signo
, sigchld_handler
);
6664 #endif /* USG, but not HPUX with WNOHANG */
6667 #endif /* SIGCHLD */
6671 exec_sentinel_unwind (data
)
6674 XPROCESS (XCAR (data
))->sentinel
= XCDR (data
);
6679 exec_sentinel_error_handler (error
)
6682 cmd_error_internal (error
, "error in process sentinel: ");
6684 update_echo_area ();
6685 Fsleep_for (make_number (2), Qnil
);
6690 exec_sentinel (proc
, reason
)
6691 Lisp_Object proc
, reason
;
6693 Lisp_Object sentinel
, obuffer
, odeactivate
, okeymap
;
6694 register struct Lisp_Process
*p
= XPROCESS (proc
);
6695 int count
= SPECPDL_INDEX ();
6696 int outer_running_asynch_code
= running_asynch_code
;
6697 int waiting
= waiting_for_user_input_p
;
6699 if (inhibit_sentinels
)
6702 /* No need to gcpro these, because all we do with them later
6703 is test them for EQness, and none of them should be a string. */
6704 odeactivate
= Vdeactivate_mark
;
6705 XSETBUFFER (obuffer
, current_buffer
);
6706 okeymap
= current_buffer
->keymap
;
6708 sentinel
= p
->sentinel
;
6709 if (NILP (sentinel
))
6712 /* Zilch the sentinel while it's running, to avoid recursive invocations;
6713 assure that it gets restored no matter how the sentinel exits. */
6715 record_unwind_protect (exec_sentinel_unwind
, Fcons (proc
, sentinel
));
6716 /* Inhibit quit so that random quits don't screw up a running filter. */
6717 specbind (Qinhibit_quit
, Qt
);
6718 specbind (Qlast_nonmenu_event
, Qt
);
6720 /* In case we get recursively called,
6721 and we already saved the match data nonrecursively,
6722 save the same match data in safely recursive fashion. */
6723 if (outer_running_asynch_code
)
6726 tem
= Fmatch_data (Qnil
, Qnil
, Qnil
);
6727 restore_search_regs ();
6728 record_unwind_save_match_data ();
6729 Fset_match_data (tem
, Qt
);
6732 /* For speed, if a search happens within this code,
6733 save the match data in a special nonrecursive fashion. */
6734 running_asynch_code
= 1;
6736 internal_condition_case_1 (read_process_output_call
,
6738 Fcons (proc
, Fcons (reason
, Qnil
))),
6739 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
6740 exec_sentinel_error_handler
);
6742 /* If we saved the match data nonrecursively, restore it now. */
6743 restore_search_regs ();
6744 running_asynch_code
= outer_running_asynch_code
;
6746 Vdeactivate_mark
= odeactivate
;
6748 /* Restore waiting_for_user_input_p as it was
6749 when we were called, in case the filter clobbered it. */
6750 waiting_for_user_input_p
= waiting
;
6753 if (! EQ (Fcurrent_buffer (), obuffer
)
6754 || ! EQ (current_buffer
->keymap
, okeymap
))
6756 /* But do it only if the caller is actually going to read events.
6757 Otherwise there's no need to make him wake up, and it could
6758 cause trouble (for example it would make sit_for return). */
6759 if (waiting_for_user_input_p
== -1)
6760 record_asynch_buffer_change ();
6762 unbind_to (count
, Qnil
);
6765 /* Report all recent events of a change in process status
6766 (either run the sentinel or output a message).
6767 This is usually done while Emacs is waiting for keyboard input
6768 but can be done at other times. */
6771 status_notify (deleting_process
)
6772 struct Lisp_Process
*deleting_process
;
6774 register Lisp_Object proc
, buffer
;
6775 Lisp_Object tail
, msg
;
6776 struct gcpro gcpro1
, gcpro2
;
6780 /* We need to gcpro tail; if read_process_output calls a filter
6781 which deletes a process and removes the cons to which tail points
6782 from Vprocess_alist, and then causes a GC, tail is an unprotected
6786 /* Set this now, so that if new processes are created by sentinels
6787 that we run, we get called again to handle their status changes. */
6788 update_tick
= process_tick
;
6790 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
6793 register struct Lisp_Process
*p
;
6795 proc
= Fcdr (Fcar (tail
));
6796 p
= XPROCESS (proc
);
6798 if (XINT (p
->tick
) != XINT (p
->update_tick
))
6800 XSETINT (p
->update_tick
, XINT (p
->tick
));
6802 /* If process is still active, read any output that remains. */
6803 while (! EQ (p
->filter
, Qt
)
6804 && ! EQ (p
->status
, Qconnect
)
6805 && ! EQ (p
->status
, Qlisten
)
6806 && ! EQ (p
->command
, Qt
) /* Network process not stopped. */
6807 && XINT (p
->infd
) >= 0
6808 && p
!= deleting_process
6809 && read_process_output (proc
, XINT (p
->infd
)) > 0);
6813 /* Get the text to use for the message. */
6814 if (p
->raw_status_new
)
6816 msg
= status_message (p
);
6818 /* If process is terminated, deactivate it or delete it. */
6820 if (CONSP (p
->status
))
6821 symbol
= XCAR (p
->status
);
6823 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
)
6824 || EQ (symbol
, Qclosed
))
6826 if (delete_exited_processes
)
6827 remove_process (proc
);
6829 deactivate_process (proc
);
6832 /* The actions above may have further incremented p->tick.
6833 So set p->update_tick again
6834 so that an error in the sentinel will not cause
6835 this code to be run again. */
6836 XSETINT (p
->update_tick
, XINT (p
->tick
));
6837 /* Now output the message suitably. */
6838 if (!NILP (p
->sentinel
))
6839 exec_sentinel (proc
, msg
);
6840 /* Don't bother with a message in the buffer
6841 when a process becomes runnable. */
6842 else if (!EQ (symbol
, Qrun
) && !NILP (buffer
))
6844 Lisp_Object ro
, tem
;
6845 struct buffer
*old
= current_buffer
;
6846 int opoint
, opoint_byte
;
6847 int before
, before_byte
;
6849 ro
= XBUFFER (buffer
)->read_only
;
6851 /* Avoid error if buffer is deleted
6852 (probably that's why the process is dead, too) */
6853 if (NILP (XBUFFER (buffer
)->name
))
6855 Fset_buffer (buffer
);
6858 opoint_byte
= PT_BYTE
;
6859 /* Insert new output into buffer
6860 at the current end-of-output marker,
6861 thus preserving logical ordering of input and output. */
6862 if (XMARKER (p
->mark
)->buffer
)
6863 Fgoto_char (p
->mark
);
6865 SET_PT_BOTH (ZV
, ZV_BYTE
);
6868 before_byte
= PT_BYTE
;
6870 tem
= current_buffer
->read_only
;
6871 current_buffer
->read_only
= Qnil
;
6872 insert_string ("\nProcess ");
6873 Finsert (1, &p
->name
);
6874 insert_string (" ");
6876 current_buffer
->read_only
= tem
;
6877 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
6879 if (opoint
>= before
)
6880 SET_PT_BOTH (opoint
+ (PT
- before
),
6881 opoint_byte
+ (PT_BYTE
- before_byte
));
6883 SET_PT_BOTH (opoint
, opoint_byte
);
6885 set_buffer_internal (old
);
6890 update_mode_lines
++; /* in case buffers use %s in mode-line-format */
6891 redisplay_preserve_echo_area (13);
6897 DEFUN ("set-process-coding-system", Fset_process_coding_system
,
6898 Sset_process_coding_system
, 1, 3, 0,
6899 doc
: /* Set coding systems of PROCESS to DECODING and ENCODING.
6900 DECODING will be used to decode subprocess output and ENCODING to
6901 encode subprocess input. */)
6902 (process
, decoding
, encoding
)
6903 register Lisp_Object process
, decoding
, encoding
;
6905 register struct Lisp_Process
*p
;
6907 CHECK_PROCESS (process
);
6908 p
= XPROCESS (process
);
6909 if (XINT (p
->infd
) < 0)
6910 error ("Input file descriptor of %s closed", SDATA (p
->name
));
6911 if (XINT (p
->outfd
) < 0)
6912 error ("Output file descriptor of %s closed", SDATA (p
->name
));
6913 Fcheck_coding_system (decoding
);
6914 Fcheck_coding_system (encoding
);
6916 p
->decode_coding_system
= decoding
;
6917 p
->encode_coding_system
= encoding
;
6918 setup_process_coding_systems (process
);
6923 DEFUN ("process-coding-system",
6924 Fprocess_coding_system
, Sprocess_coding_system
, 1, 1, 0,
6925 doc
: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
6927 register Lisp_Object process
;
6929 CHECK_PROCESS (process
);
6930 return Fcons (XPROCESS (process
)->decode_coding_system
,
6931 XPROCESS (process
)->encode_coding_system
);
6934 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte
,
6935 Sset_process_filter_multibyte
, 2, 2, 0,
6936 doc
: /* Set multibyteness of the strings given to PROCESS's filter.
6937 If FLAG is non-nil, the filter is given multibyte strings.
6938 If FLAG is nil, the filter is given unibyte strings. In this case,
6939 all character code conversion except for end-of-line conversion is
6942 Lisp_Object process
, flag
;
6944 register struct Lisp_Process
*p
;
6946 CHECK_PROCESS (process
);
6947 p
= XPROCESS (process
);
6948 p
->filter_multibyte
= flag
;
6949 setup_process_coding_systems (process
);
6954 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p
,
6955 Sprocess_filter_multibyte_p
, 1, 1, 0,
6956 doc
: /* Return t if a multibyte string is given to PROCESS's filter.*/)
6958 Lisp_Object process
;
6960 register struct Lisp_Process
*p
;
6962 CHECK_PROCESS (process
);
6963 p
= XPROCESS (process
);
6965 return (NILP (p
->filter_multibyte
) ? Qnil
: Qt
);
6970 /* The first time this is called, assume keyboard input comes from DESC
6971 instead of from where we used to expect it.
6972 Subsequent calls mean assume input keyboard can come from DESC
6973 in addition to other places. */
6975 static int add_keyboard_wait_descriptor_called_flag
;
6978 add_keyboard_wait_descriptor (desc
)
6981 if (! add_keyboard_wait_descriptor_called_flag
)
6982 FD_CLR (0, &input_wait_mask
);
6983 add_keyboard_wait_descriptor_called_flag
= 1;
6984 FD_SET (desc
, &input_wait_mask
);
6985 FD_SET (desc
, &non_process_wait_mask
);
6986 if (desc
> max_keyboard_desc
)
6987 max_keyboard_desc
= desc
;
6990 /* From now on, do not expect DESC to give keyboard input. */
6993 delete_keyboard_wait_descriptor (desc
)
6997 int lim
= max_keyboard_desc
;
6999 FD_CLR (desc
, &input_wait_mask
);
7000 FD_CLR (desc
, &non_process_wait_mask
);
7002 if (desc
== max_keyboard_desc
)
7003 for (fd
= 0; fd
< lim
; fd
++)
7004 if (FD_ISSET (fd
, &input_wait_mask
)
7005 && !FD_ISSET (fd
, &non_keyboard_wait_mask
))
7006 max_keyboard_desc
= fd
;
7009 /* Return nonzero if *MASK has a bit set
7010 that corresponds to one of the keyboard input descriptors. */
7013 keyboard_bit_set (mask
)
7018 for (fd
= 0; fd
<= max_keyboard_desc
; fd
++)
7019 if (FD_ISSET (fd
, mask
) && FD_ISSET (fd
, &input_wait_mask
)
7020 && !FD_ISSET (fd
, &non_keyboard_wait_mask
))
7031 inhibit_sentinels
= 0;
7035 if (! noninteractive
|| initialized
)
7037 signal (SIGCHLD
, sigchld_handler
);
7040 FD_ZERO (&input_wait_mask
);
7041 FD_ZERO (&non_keyboard_wait_mask
);
7042 FD_ZERO (&non_process_wait_mask
);
7043 max_process_desc
= 0;
7045 #ifdef NON_BLOCKING_CONNECT
7046 FD_ZERO (&connect_wait_mask
);
7047 num_pending_connects
= 0;
7050 #ifdef ADAPTIVE_READ_BUFFERING
7051 process_output_delay_count
= 0;
7052 process_output_skip
= 0;
7055 FD_SET (0, &input_wait_mask
);
7057 Vprocess_alist
= Qnil
;
7059 deleted_pid_list
= Qnil
;
7061 for (i
= 0; i
< MAXDESC
; i
++)
7063 chan_process
[i
] = Qnil
;
7064 proc_buffered_char
[i
] = -1;
7066 bzero (proc_decode_coding_system
, sizeof proc_decode_coding_system
);
7067 bzero (proc_encode_coding_system
, sizeof proc_encode_coding_system
);
7068 #ifdef DATAGRAM_SOCKETS
7069 bzero (datagram_address
, sizeof datagram_address
);
7074 Lisp_Object subfeatures
= Qnil
;
7075 struct socket_options
*sopt
;
7077 #define ADD_SUBFEATURE(key, val) \
7078 subfeatures = Fcons (Fcons (key, Fcons (val, Qnil)), subfeatures)
7080 #ifdef NON_BLOCKING_CONNECT
7081 ADD_SUBFEATURE (QCnowait
, Qt
);
7083 #ifdef DATAGRAM_SOCKETS
7084 ADD_SUBFEATURE (QCtype
, Qdatagram
);
7086 #ifdef HAVE_LOCAL_SOCKETS
7087 ADD_SUBFEATURE (QCfamily
, Qlocal
);
7089 ADD_SUBFEATURE (QCfamily
, Qipv4
);
7091 ADD_SUBFEATURE (QCfamily
, Qipv6
);
7093 #ifdef HAVE_GETSOCKNAME
7094 ADD_SUBFEATURE (QCservice
, Qt
);
7096 #if !defined(TERM) && (defined(O_NONBLOCK) || defined(O_NDELAY))
7097 ADD_SUBFEATURE (QCserver
, Qt
);
7100 for (sopt
= socket_options
; sopt
->name
; sopt
++)
7101 subfeatures
= Fcons (intern (sopt
->name
), subfeatures
);
7103 Fprovide (intern ("make-network-process"), subfeatures
);
7105 #endif /* HAVE_SOCKETS */
7107 #if defined (DARWIN) || defined (MAC_OSX)
7108 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
7109 processes. As such, we only change the default value. */
7112 char *release
= get_operating_system_release();
7113 if (!release
|| !release
[0] || (release
[0] < MIN_PTY_KERNEL_VERSION
7114 && release
[1] == '.')) {
7115 Vprocess_connection_type
= Qnil
;
7124 Qprocessp
= intern ("processp");
7125 staticpro (&Qprocessp
);
7126 Qrun
= intern ("run");
7128 Qstop
= intern ("stop");
7130 Qsignal
= intern ("signal");
7131 staticpro (&Qsignal
);
7133 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
7136 Qexit = intern ("exit");
7137 staticpro (&Qexit); */
7139 Qopen
= intern ("open");
7141 Qclosed
= intern ("closed");
7142 staticpro (&Qclosed
);
7143 Qconnect
= intern ("connect");
7144 staticpro (&Qconnect
);
7145 Qfailed
= intern ("failed");
7146 staticpro (&Qfailed
);
7147 Qlisten
= intern ("listen");
7148 staticpro (&Qlisten
);
7149 Qlocal
= intern ("local");
7150 staticpro (&Qlocal
);
7151 Qipv4
= intern ("ipv4");
7154 Qipv6
= intern ("ipv6");
7157 Qdatagram
= intern ("datagram");
7158 staticpro (&Qdatagram
);
7160 QCname
= intern (":name");
7161 staticpro (&QCname
);
7162 QCbuffer
= intern (":buffer");
7163 staticpro (&QCbuffer
);
7164 QChost
= intern (":host");
7165 staticpro (&QChost
);
7166 QCservice
= intern (":service");
7167 staticpro (&QCservice
);
7168 QCtype
= intern (":type");
7169 staticpro (&QCtype
);
7170 QClocal
= intern (":local");
7171 staticpro (&QClocal
);
7172 QCremote
= intern (":remote");
7173 staticpro (&QCremote
);
7174 QCcoding
= intern (":coding");
7175 staticpro (&QCcoding
);
7176 QCserver
= intern (":server");
7177 staticpro (&QCserver
);
7178 QCnowait
= intern (":nowait");
7179 staticpro (&QCnowait
);
7180 QCsentinel
= intern (":sentinel");
7181 staticpro (&QCsentinel
);
7182 QClog
= intern (":log");
7184 QCnoquery
= intern (":noquery");
7185 staticpro (&QCnoquery
);
7186 QCstop
= intern (":stop");
7187 staticpro (&QCstop
);
7188 QCoptions
= intern (":options");
7189 staticpro (&QCoptions
);
7190 QCplist
= intern (":plist");
7191 staticpro (&QCplist
);
7192 QCfilter_multibyte
= intern (":filter-multibyte");
7193 staticpro (&QCfilter_multibyte
);
7195 Qlast_nonmenu_event
= intern ("last-nonmenu-event");
7196 staticpro (&Qlast_nonmenu_event
);
7198 staticpro (&Vprocess_alist
);
7200 staticpro (&deleted_pid_list
);
7203 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes
,
7204 doc
: /* *Non-nil means delete processes immediately when they exit.
7205 A value of nil means don't delete them until `list-processes' is run. */);
7207 delete_exited_processes
= 1;
7209 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type
,
7210 doc
: /* Control type of device used to communicate with subprocesses.
7211 Values are nil to use a pipe, or t or `pty' to use a pty.
7212 The value has no effect if the system has no ptys or if all ptys are busy:
7213 then a pipe is used in any case.
7214 The value takes effect when `start-process' is called. */);
7215 Vprocess_connection_type
= Qt
;
7217 #ifdef ADAPTIVE_READ_BUFFERING
7218 DEFVAR_LISP ("process-adaptive-read-buffering", &Vprocess_adaptive_read_buffering
,
7219 doc
: /* If non-nil, improve receive buffering by delaying after short reads.
7220 On some systems, when Emacs reads the output from a subprocess, the output data
7221 is read in very small blocks, potentially resulting in very poor performance.
7222 This behavior can be remedied to some extent by setting this variable to a
7223 non-nil value, as it will automatically delay reading from such processes, to
7224 allow them to produce more output before Emacs tries to read it.
7225 If the value is t, the delay is reset after each write to the process; any other
7226 non-nil value means that the delay is not reset on write.
7227 The variable takes effect when `start-process' is called. */);
7228 Vprocess_adaptive_read_buffering
= Qt
;
7231 defsubr (&Sprocessp
);
7232 defsubr (&Sget_process
);
7233 defsubr (&Sget_buffer_process
);
7234 defsubr (&Sdelete_process
);
7235 defsubr (&Sprocess_status
);
7236 defsubr (&Sprocess_exit_status
);
7237 defsubr (&Sprocess_id
);
7238 defsubr (&Sprocess_name
);
7239 defsubr (&Sprocess_tty_name
);
7240 defsubr (&Sprocess_command
);
7241 defsubr (&Sset_process_buffer
);
7242 defsubr (&Sprocess_buffer
);
7243 defsubr (&Sprocess_mark
);
7244 defsubr (&Sset_process_filter
);
7245 defsubr (&Sprocess_filter
);
7246 defsubr (&Sset_process_sentinel
);
7247 defsubr (&Sprocess_sentinel
);
7248 defsubr (&Sset_process_window_size
);
7249 defsubr (&Sset_process_inherit_coding_system_flag
);
7250 defsubr (&Sprocess_inherit_coding_system_flag
);
7251 defsubr (&Sset_process_query_on_exit_flag
);
7252 defsubr (&Sprocess_query_on_exit_flag
);
7253 defsubr (&Sprocess_contact
);
7254 defsubr (&Sprocess_plist
);
7255 defsubr (&Sset_process_plist
);
7256 defsubr (&Slist_processes
);
7257 defsubr (&Sprocess_list
);
7258 defsubr (&Sstart_process
);
7260 defsubr (&Sset_network_process_option
);
7261 defsubr (&Smake_network_process
);
7262 defsubr (&Sformat_network_address
);
7263 #endif /* HAVE_SOCKETS */
7264 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
7266 defsubr (&Snetwork_interface_list
);
7268 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
7269 defsubr (&Snetwork_interface_info
);
7271 #endif /* HAVE_SOCKETS ... */
7272 #ifdef DATAGRAM_SOCKETS
7273 defsubr (&Sprocess_datagram_address
);
7274 defsubr (&Sset_process_datagram_address
);
7276 defsubr (&Saccept_process_output
);
7277 defsubr (&Sprocess_send_region
);
7278 defsubr (&Sprocess_send_string
);
7279 defsubr (&Sinterrupt_process
);
7280 defsubr (&Skill_process
);
7281 defsubr (&Squit_process
);
7282 defsubr (&Sstop_process
);
7283 defsubr (&Scontinue_process
);
7284 defsubr (&Sprocess_running_child_p
);
7285 defsubr (&Sprocess_send_eof
);
7286 defsubr (&Ssignal_process
);
7287 defsubr (&Swaiting_for_user_input_p
);
7288 /* defsubr (&Sprocess_connection); */
7289 defsubr (&Sset_process_coding_system
);
7290 defsubr (&Sprocess_coding_system
);
7291 defsubr (&Sset_process_filter_multibyte
);
7292 defsubr (&Sprocess_filter_multibyte_p
);
7296 #else /* not subprocesses */
7298 #include <sys/types.h>
7302 #include "systime.h"
7303 #include "charset.h"
7305 #include "termopts.h"
7306 #include "sysselect.h"
7308 extern int frame_garbaged
;
7310 extern EMACS_TIME
timer_check ();
7311 extern int timers_run
;
7315 /* As described above, except assuming that there are no subprocesses:
7317 Wait for timeout to elapse and/or keyboard input to be available.
7320 timeout in seconds, or
7321 zero for no limit, or
7322 -1 means gobble data immediately available but don't wait for any.
7324 read_kbd is a Lisp_Object:
7325 0 to ignore keyboard input, or
7326 1 to return when input is available, or
7327 -1 means caller will actually read the input, so don't throw to
7330 see full version for other parameters. We know that wait_proc will
7331 always be NULL, since `subprocesses' isn't defined.
7333 do_display != 0 means redisplay should be done to show subprocess
7334 output that arrives.
7336 Return true if we received input from any process. */
7339 wait_reading_process_output (time_limit
, microsecs
, read_kbd
, do_display
,
7340 wait_for_cell
, wait_proc
, just_wait_proc
)
7341 int time_limit
, microsecs
, read_kbd
, do_display
;
7342 Lisp_Object wait_for_cell
;
7343 struct Lisp_Process
*wait_proc
;
7347 EMACS_TIME end_time
, timeout
;
7348 SELECT_TYPE waitchannels
;
7351 /* What does time_limit really mean? */
7352 if (time_limit
|| microsecs
)
7354 EMACS_GET_TIME (end_time
);
7355 EMACS_SET_SECS_USECS (timeout
, time_limit
, microsecs
);
7356 EMACS_ADD_TIME (end_time
, end_time
, timeout
);
7359 /* Turn off periodic alarms (in case they are in use)
7360 and then turn off any other atimers,
7361 because the select emulator uses alarms. */
7363 turn_on_atimers (0);
7367 int timeout_reduced_for_timers
= 0;
7369 /* If calling from keyboard input, do not quit
7370 since we want to return C-g as an input character.
7371 Otherwise, do pending quit if requested. */
7375 /* Exit now if the cell we're waiting for became non-nil. */
7376 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
7379 /* Compute time from now till when time limit is up */
7380 /* Exit if already run out */
7381 if (time_limit
== -1)
7383 /* -1 specified for timeout means
7384 gobble output available now
7385 but don't wait at all. */
7387 EMACS_SET_SECS_USECS (timeout
, 0, 0);
7389 else if (time_limit
|| microsecs
)
7391 EMACS_GET_TIME (timeout
);
7392 EMACS_SUB_TIME (timeout
, end_time
, timeout
);
7393 if (EMACS_TIME_NEG_P (timeout
))
7398 EMACS_SET_SECS_USECS (timeout
, 100000, 0);
7401 /* If our caller will not immediately handle keyboard events,
7402 run timer events directly.
7403 (Callers that will immediately read keyboard events
7404 call timer_delay on their own.) */
7405 if (NILP (wait_for_cell
))
7407 EMACS_TIME timer_delay
;
7411 int old_timers_run
= timers_run
;
7412 timer_delay
= timer_check (1);
7413 if (timers_run
!= old_timers_run
&& do_display
)
7414 /* We must retry, since a timer may have requeued itself
7415 and that could alter the time delay. */
7416 redisplay_preserve_echo_area (14);
7420 while (!detect_input_pending ());
7422 /* If there is unread keyboard input, also return. */
7424 && requeued_events_pending_p ())
7427 if (! EMACS_TIME_NEG_P (timer_delay
) && time_limit
!= -1)
7429 EMACS_TIME difference
;
7430 EMACS_SUB_TIME (difference
, timer_delay
, timeout
);
7431 if (EMACS_TIME_NEG_P (difference
))
7433 timeout
= timer_delay
;
7434 timeout_reduced_for_timers
= 1;
7439 /* Cause C-g and alarm signals to take immediate action,
7440 and cause input available signals to zero out timeout. */
7442 set_waiting_for_input (&timeout
);
7444 /* Wait till there is something to do. */
7446 if (! read_kbd
&& NILP (wait_for_cell
))
7447 FD_ZERO (&waitchannels
);
7449 FD_SET (0, &waitchannels
);
7451 /* If a frame has been newly mapped and needs updating,
7452 reprocess its display stuff. */
7453 if (frame_garbaged
&& do_display
)
7455 clear_waiting_for_input ();
7456 redisplay_preserve_echo_area (15);
7458 set_waiting_for_input (&timeout
);
7461 if (read_kbd
&& detect_input_pending ())
7464 FD_ZERO (&waitchannels
);
7467 nfds
= select (1, &waitchannels
, (SELECT_TYPE
*)0, (SELECT_TYPE
*)0,
7472 /* Make C-g and alarm signals set flags again */
7473 clear_waiting_for_input ();
7475 /* If we woke up due to SIGWINCH, actually change size now. */
7476 do_pending_window_change (0);
7478 if (time_limit
&& nfds
== 0 && ! timeout_reduced_for_timers
)
7479 /* We waited the full specified time, so return now. */
7484 /* If the system call was interrupted, then go around the
7486 if (xerrno
== EINTR
)
7487 FD_ZERO (&waitchannels
);
7489 error ("select error: %s", emacs_strerror (xerrno
));
7492 else if (nfds
> 0 && (waitchannels
& 1) && interrupt_input
)
7493 /* System sometimes fails to deliver SIGIO. */
7494 kill (getpid (), SIGIO
);
7497 if (read_kbd
&& interrupt_input
&& (waitchannels
& 1))
7498 kill (getpid (), SIGIO
);
7501 /* Check for keyboard input */
7504 && detect_input_pending_run_timers (do_display
))
7506 swallow_events (do_display
);
7507 if (detect_input_pending_run_timers (do_display
))
7511 /* If there is unread keyboard input, also return. */
7513 && requeued_events_pending_p ())
7516 /* If wait_for_cell. check for keyboard input
7517 but don't run any timers.
7518 ??? (It seems wrong to me to check for keyboard
7519 input at all when wait_for_cell, but the code
7520 has been this way since July 1994.
7521 Try changing this after version 19.31.) */
7522 if (! NILP (wait_for_cell
)
7523 && detect_input_pending ())
7525 swallow_events (do_display
);
7526 if (detect_input_pending ())
7530 /* Exit now if the cell we're waiting for became non-nil. */
7531 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
7541 /* Don't confuse make-docfile by having two doc strings for this function.
7542 make-docfile does not pay attention to #if, for good reason! */
7543 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
7546 register Lisp_Object name
;
7551 /* Don't confuse make-docfile by having two doc strings for this function.
7552 make-docfile does not pay attention to #if, for good reason! */
7553 DEFUN ("process-inherit-coding-system-flag",
7554 Fprocess_inherit_coding_system_flag
, Sprocess_inherit_coding_system_flag
,
7558 register Lisp_Object process
;
7560 /* Ignore the argument and return the value of
7561 inherit-process-coding-system. */
7562 return inherit_process_coding_system
? Qt
: Qnil
;
7565 /* Kill all processes associated with `buffer'.
7566 If `buffer' is nil, kill all processes.
7567 Since we have no subprocesses, this does nothing. */
7570 kill_buffer_processes (buffer
)
7583 QCtype
= intern (":type");
7584 staticpro (&QCtype
);
7586 defsubr (&Sget_buffer_process
);
7587 defsubr (&Sprocess_inherit_coding_system_flag
);
7591 #endif /* not subprocesses */
7593 /* arch-tag: 3706c011-7b9a-4117-bd4f-59e7f701a4c4
7594 (do not change this comment) */