1 /* Asynchronous subprocess control for GNU Emacs.
3 Copyright (C) 1985-1988, 1993-1996, 1998-1999, 2001-2011
4 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 of the License, or
11 (at your option) any later version.
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. If not, see <http://www.gnu.org/licenses/>. */
27 #include <sys/types.h> /* some typedefs are used in sys/file.h */
31 #ifdef HAVE_INTTYPES_H
38 /* Only MS-DOS does not define `subprocesses'. */
41 #include <sys/socket.h>
43 #include <netinet/in.h>
44 #include <arpa/inet.h>
46 /* Are local (unix) sockets supported? */
47 #if defined (HAVE_SYS_UN_H)
48 #if !defined (AF_LOCAL) && defined (AF_UNIX)
49 #define AF_LOCAL AF_UNIX
52 #define HAVE_LOCAL_SOCKETS
57 #include <sys/ioctl.h>
58 #if defined(HAVE_NET_IF_H)
60 #endif /* HAVE_NET_IF_H */
67 #include <netinet/in.h>
68 #include <arpa/nameser.h>
80 #endif /* subprocesses */
88 #include "character.h"
92 #include "termhooks.h"
96 #include "blockinput.h"
97 #include "dispextern.h"
98 #include "composite.h"
100 #include "sysselect.h"
101 #include "syssignal.h"
107 #if defined (USE_GTK) || defined (HAVE_GCONF)
108 #include "xgselect.h"
109 #endif /* defined (USE_GTK) || defined (HAVE_GCONF) */
114 Lisp_Object Qeuid
, Qegid
, Qcomm
, Qstate
, Qppid
, Qpgrp
, Qsess
, Qttname
, Qtpgid
;
115 Lisp_Object Qminflt
, Qmajflt
, Qcminflt
, Qcmajflt
, Qutime
, Qstime
, Qcstime
;
116 Lisp_Object Qcutime
, Qpri
, Qnice
, Qthcount
, Qstart
, Qvsize
, Qrss
, Qargs
;
117 Lisp_Object Quser
, Qgroup
, Qetime
, Qpcpu
, Qpmem
, Qtime
, Qctime
;
118 Lisp_Object QCname
, QCtype
;
120 /* Non-zero if keyboard input is on hold, zero otherwise. */
122 static int kbd_is_on_hold
;
124 /* Nonzero means don't run process sentinels. This is used
126 int inhibit_sentinels
;
130 Lisp_Object Qprocessp
;
131 Lisp_Object Qrun
, Qstop
, Qsignal
;
132 Lisp_Object Qopen
, Qclosed
, Qconnect
, Qfailed
, Qlisten
;
133 Lisp_Object Qlocal
, Qipv4
, Qdatagram
, Qseqpacket
;
134 Lisp_Object Qreal
, Qnetwork
, Qserial
;
138 Lisp_Object QCport
, QCspeed
, QCprocess
;
139 Lisp_Object QCbytesize
, QCstopbits
, QCparity
, Qodd
, Qeven
;
140 Lisp_Object QCflowcontrol
, Qhw
, Qsw
, QCsummary
;
141 Lisp_Object QCbuffer
, QChost
, QCservice
;
142 Lisp_Object QClocal
, QCremote
, QCcoding
;
143 Lisp_Object QCserver
, QCnowait
, QCnoquery
, QCstop
;
144 Lisp_Object QCsentinel
, QClog
, QCoptions
, QCplist
;
145 Lisp_Object Qlast_nonmenu_event
;
146 /* QCfamily is declared and initialized in xfaces.c,
147 QCfilter in keyboard.c. */
148 extern Lisp_Object QCfamily
, QCfilter
;
150 /* Qexit is declared and initialized in eval.c. */
152 /* QCfamily is defined in xfaces.c. */
153 extern Lisp_Object QCfamily
;
154 /* QCfilter is defined in keyboard.c. */
155 extern Lisp_Object QCfilter
;
157 #define NETCONN_P(p) (EQ (XPROCESS (p)->type, Qnetwork))
158 #define NETCONN1_P(p) (EQ ((p)->type, Qnetwork))
159 #define SERIALCONN_P(p) (EQ (XPROCESS (p)->type, Qserial))
160 #define SERIALCONN1_P(p) (EQ ((p)->type, Qserial))
162 /* Define first descriptor number available for subprocesses. */
163 #define FIRST_PROC_DESC 3
165 extern const char *get_operating_system_release (void);
167 /* From sysdep.c or w32.c */
168 extern int serial_open (char *port
);
169 extern void serial_configure (struct Lisp_Process
*p
, Lisp_Object contact
);
175 /* These next two vars are non-static since sysdep.c uses them in the
176 emulation of `select'. */
177 /* Number of events of change of status of a process. */
179 /* Number of events for which the user or sentinel has been notified. */
182 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
184 /* Only W32 has this, it really means that select can't take write mask. */
185 #ifdef BROKEN_NON_BLOCKING_CONNECT
186 #undef NON_BLOCKING_CONNECT
187 #define SELECT_CANT_DO_WRITE_MASK
189 #ifndef NON_BLOCKING_CONNECT
191 #if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX)
192 #if defined (O_NONBLOCK) || defined (O_NDELAY)
193 #if defined (EWOULDBLOCK) || defined (EINPROGRESS)
194 #define NON_BLOCKING_CONNECT
195 #endif /* EWOULDBLOCK || EINPROGRESS */
196 #endif /* O_NONBLOCK || O_NDELAY */
197 #endif /* HAVE_GETPEERNAME || GNU_LINUX */
198 #endif /* HAVE_SELECT */
199 #endif /* NON_BLOCKING_CONNECT */
200 #endif /* BROKEN_NON_BLOCKING_CONNECT */
202 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on
203 this system. We need to read full packets, so we need a
204 "non-destructive" select. So we require either native select,
205 or emulation of select using FIONREAD. */
207 #ifdef BROKEN_DATAGRAM_SOCKETS
208 #undef DATAGRAM_SOCKETS
210 #ifndef DATAGRAM_SOCKETS
211 #if defined (HAVE_SELECT) || defined (FIONREAD)
212 #if defined (HAVE_SENDTO) && defined (HAVE_RECVFROM) && defined (EMSGSIZE)
213 #define DATAGRAM_SOCKETS
214 #endif /* HAVE_SENDTO && HAVE_RECVFROM && EMSGSIZE */
215 #endif /* HAVE_SELECT || FIONREAD */
216 #endif /* DATAGRAM_SOCKETS */
217 #endif /* BROKEN_DATAGRAM_SOCKETS */
219 #if defined HAVE_LOCAL_SOCKETS && defined DATAGRAM_SOCKETS
220 # define HAVE_SEQPACKET
223 #if !defined (ADAPTIVE_READ_BUFFERING) && !defined (NO_ADAPTIVE_READ_BUFFERING)
224 #ifdef EMACS_HAS_USECS
225 #define ADAPTIVE_READ_BUFFERING
229 #ifdef ADAPTIVE_READ_BUFFERING
230 #define READ_OUTPUT_DELAY_INCREMENT 10000
231 #define READ_OUTPUT_DELAY_MAX (READ_OUTPUT_DELAY_INCREMENT * 5)
232 #define READ_OUTPUT_DELAY_MAX_MAX (READ_OUTPUT_DELAY_INCREMENT * 7)
234 /* Number of processes which have a non-zero read_output_delay,
235 and therefore might be delayed for adaptive read buffering. */
237 static int process_output_delay_count
;
239 /* Non-zero if any process has non-nil read_output_skip. */
241 static int process_output_skip
;
244 #define process_output_delay_count 0
247 static int keyboard_bit_set (SELECT_TYPE
*);
248 static void deactivate_process (Lisp_Object
);
249 static void status_notify (struct Lisp_Process
*);
250 static int read_process_output (Lisp_Object
, int);
251 static void create_pty (Lisp_Object
);
253 /* If we support a window system, turn on the code to poll periodically
254 to detect C-g. It isn't actually used when doing interrupt input. */
255 #ifdef HAVE_WINDOW_SYSTEM
256 #define POLL_FOR_INPUT
259 static Lisp_Object
get_process (register Lisp_Object name
);
260 static void exec_sentinel (Lisp_Object proc
, Lisp_Object reason
);
262 /* Mask of bits indicating the descriptors that we wait for input on. */
264 static SELECT_TYPE input_wait_mask
;
266 /* Mask that excludes keyboard input descriptor(s). */
268 static SELECT_TYPE non_keyboard_wait_mask
;
270 /* Mask that excludes process input descriptor(s). */
272 static SELECT_TYPE non_process_wait_mask
;
274 /* Mask for selecting for write. */
276 static SELECT_TYPE write_mask
;
278 #ifdef NON_BLOCKING_CONNECT
279 /* Mask of bits indicating the descriptors that we wait for connect to
280 complete on. Once they complete, they are removed from this mask
281 and added to the input_wait_mask and non_keyboard_wait_mask. */
283 static SELECT_TYPE connect_wait_mask
;
285 /* Number of bits set in connect_wait_mask. */
286 static int num_pending_connects
;
288 #define IF_NON_BLOCKING_CONNECT(s) s
289 #else /* NON_BLOCKING_CONNECT */
290 #define IF_NON_BLOCKING_CONNECT(s)
291 #endif /* NON_BLOCKING_CONNECT */
293 /* The largest descriptor currently in use for a process object. */
294 static int max_process_desc
;
296 /* The largest descriptor currently in use for input. */
297 static int max_input_desc
;
299 /* Indexed by descriptor, gives the process (if any) for that descriptor */
300 Lisp_Object chan_process
[MAXDESC
];
302 /* Alist of elements (NAME . PROCESS) */
303 Lisp_Object Vprocess_alist
;
305 /* Buffered-ahead input char from process, indexed by channel.
306 -1 means empty (no char is buffered).
307 Used on sys V where the only way to tell if there is any
308 output from the process is to read at least one char.
309 Always -1 on systems that support FIONREAD. */
311 /* Don't make static; need to access externally. */
312 int proc_buffered_char
[MAXDESC
];
314 /* Table of `struct coding-system' for each process. */
315 static struct coding_system
*proc_decode_coding_system
[MAXDESC
];
316 static struct coding_system
*proc_encode_coding_system
[MAXDESC
];
318 #ifdef DATAGRAM_SOCKETS
319 /* Table of `partner address' for datagram sockets. */
320 struct sockaddr_and_len
{
323 } datagram_address
[MAXDESC
];
324 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
325 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XPROCESS (proc)->infd].sa != 0)
327 #define DATAGRAM_CHAN_P(chan) (0)
328 #define DATAGRAM_CONN_P(proc) (0)
331 /* Maximum number of bytes to send to a pty without an eof. */
332 static int pty_max_bytes
;
336 struct fd_callback_data
342 int condition
; /* mask of the defines above. */
343 } fd_callback_info
[MAXDESC
];
346 /* Add a file descriptor FD to be monitored for when read is possible.
347 When read is possible, call FUNC with argument DATA. */
350 add_read_fd (int fd
, fd_callback func
, void *data
)
352 xassert (fd
< MAXDESC
);
353 add_keyboard_wait_descriptor (fd
);
355 fd_callback_info
[fd
].func
= func
;
356 fd_callback_info
[fd
].data
= data
;
357 fd_callback_info
[fd
].condition
|= FOR_READ
;
360 /* Stop monitoring file descriptor FD for when read is possible. */
363 delete_read_fd (int fd
)
365 xassert (fd
< MAXDESC
);
366 delete_keyboard_wait_descriptor (fd
);
368 fd_callback_info
[fd
].condition
&= ~FOR_READ
;
369 if (fd_callback_info
[fd
].condition
== 0)
371 fd_callback_info
[fd
].func
= 0;
372 fd_callback_info
[fd
].data
= 0;
376 /* Add a file descriptor FD to be monitored for when write is possible.
377 When write is possible, call FUNC with argument DATA. */
380 add_write_fd (int fd
, fd_callback func
, void *data
)
382 xassert (fd
< MAXDESC
);
383 FD_SET (fd
, &write_mask
);
384 if (fd
> max_input_desc
)
387 fd_callback_info
[fd
].func
= func
;
388 fd_callback_info
[fd
].data
= data
;
389 fd_callback_info
[fd
].condition
|= FOR_WRITE
;
392 /* Stop monitoring file descriptor FD for when write is possible. */
395 delete_write_fd (int fd
)
397 int lim
= max_input_desc
;
399 xassert (fd
< MAXDESC
);
400 FD_CLR (fd
, &write_mask
);
401 fd_callback_info
[fd
].condition
&= ~FOR_WRITE
;
402 if (fd_callback_info
[fd
].condition
== 0)
404 fd_callback_info
[fd
].func
= 0;
405 fd_callback_info
[fd
].data
= 0;
407 if (fd
== max_input_desc
)
408 for (fd
= lim
; fd
>= 0; fd
--)
409 if (FD_ISSET (fd
, &input_wait_mask
) || FD_ISSET (fd
, &write_mask
))
419 /* Compute the Lisp form of the process status, p->status, from
420 the numeric status that was returned by `wait'. */
422 static Lisp_Object
status_convert (int);
425 update_status (struct Lisp_Process
*p
)
427 eassert (p
->raw_status_new
);
428 p
->status
= status_convert (p
->raw_status
);
429 p
->raw_status_new
= 0;
432 /* Convert a process status word in Unix format to
433 the list that we use internally. */
436 status_convert (int w
)
439 return Fcons (Qstop
, Fcons (make_number (WSTOPSIG (w
)), Qnil
));
440 else if (WIFEXITED (w
))
441 return Fcons (Qexit
, Fcons (make_number (WRETCODE (w
)),
442 WCOREDUMP (w
) ? Qt
: Qnil
));
443 else if (WIFSIGNALED (w
))
444 return Fcons (Qsignal
, Fcons (make_number (WTERMSIG (w
)),
445 WCOREDUMP (w
) ? Qt
: Qnil
));
450 /* Given a status-list, extract the three pieces of information
451 and store them individually through the three pointers. */
454 decode_status (Lisp_Object l
, Lisp_Object
*symbol
, int *code
, int *coredump
)
468 *code
= XFASTINT (XCAR (tem
));
470 *coredump
= !NILP (tem
);
474 /* Return a string describing a process status list. */
477 status_message (struct Lisp_Process
*p
)
479 Lisp_Object status
= p
->status
;
482 Lisp_Object string
, string2
;
484 decode_status (status
, &symbol
, &code
, &coredump
);
486 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qstop
))
489 synchronize_system_messages_locale ();
490 signame
= strsignal (code
);
492 string
= build_string ("unknown");
497 string
= make_unibyte_string (signame
, strlen (signame
));
498 if (! NILP (Vlocale_coding_system
))
499 string
= (code_convert_string_norecord
500 (string
, Vlocale_coding_system
, 0));
501 c1
= STRING_CHAR (SDATA (string
));
504 Faset (string
, make_number (0), make_number (c2
));
506 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
507 return concat2 (string
, string2
);
509 else if (EQ (symbol
, Qexit
))
512 return build_string (code
== 0 ? "deleted\n" : "connection broken by remote peer\n");
514 return build_string ("finished\n");
515 string
= Fnumber_to_string (make_number (code
));
516 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
517 return concat3 (build_string ("exited abnormally with code "),
520 else if (EQ (symbol
, Qfailed
))
522 string
= Fnumber_to_string (make_number (code
));
523 string2
= build_string ("\n");
524 return concat3 (build_string ("failed with code "),
528 return Fcopy_sequence (Fsymbol_name (symbol
));
533 /* The file name of the pty opened by allocate_pty. */
534 static char pty_name
[24];
536 /* Open an available pty, returning a file descriptor.
537 Return -1 on failure.
538 The file name of the terminal corresponding to the pty
539 is left in the variable pty_name. */
550 for (c
= FIRST_PTY_LETTER
; c
<= 'z'; c
++)
551 for (i
= 0; i
< 16; i
++)
554 struct stat stb
; /* Used in some PTY_OPEN. */
555 #ifdef PTY_NAME_SPRINTF
558 sprintf (pty_name
, "/dev/pty%c%x", c
, i
);
559 #endif /* no PTY_NAME_SPRINTF */
563 #else /* no PTY_OPEN */
565 { /* Some systems name their pseudoterminals so that there are gaps in
566 the usual sequence - for example, on HP9000/S700 systems, there
567 are no pseudoterminals with names ending in 'f'. So we wait for
568 three failures in a row before deciding that we've reached the
570 int failed_count
= 0;
572 if (stat (pty_name
, &stb
) < 0)
575 if (failed_count
>= 3)
582 fd
= emacs_open (pty_name
, O_RDWR
| O_NONBLOCK
, 0);
584 fd
= emacs_open (pty_name
, O_RDWR
| O_NDELAY
, 0);
587 #endif /* no PTY_OPEN */
591 /* check to make certain that both sides are available
592 this avoids a nasty yet stupid bug in rlogins */
593 #ifdef PTY_TTY_NAME_SPRINTF
596 sprintf (pty_name
, "/dev/tty%c%x", c
, i
);
597 #endif /* no PTY_TTY_NAME_SPRINTF */
598 if (access (pty_name
, 6) != 0)
613 #endif /* HAVE_PTYS */
616 make_process (Lisp_Object name
)
618 register Lisp_Object val
, tem
, name1
;
619 register struct Lisp_Process
*p
;
623 p
= allocate_process ();
631 p
->raw_status_new
= 0;
633 p
->mark
= Fmake_marker ();
634 p
->kill_without_query
= 0;
636 #ifdef ADAPTIVE_READ_BUFFERING
637 p
->adaptive_read_buffering
= 0;
638 p
->read_output_delay
= 0;
639 p
->read_output_skip
= 0;
643 p
->gnutls_initstage
= GNUTLS_STAGE_EMPTY
;
644 p
->gnutls_log_level
= 0;
648 /* If name is already in use, modify it until it is unused. */
653 tem
= Fget_process (name1
);
654 if (NILP (tem
)) break;
655 sprintf (suffix
, "<%d>", i
);
656 name1
= concat2 (name
, build_string (suffix
));
660 XSETPROCESS (val
, p
);
661 Vprocess_alist
= Fcons (Fcons (name
, val
), Vprocess_alist
);
666 remove_process (register Lisp_Object proc
)
668 register Lisp_Object pair
;
670 pair
= Frassq (proc
, Vprocess_alist
);
671 Vprocess_alist
= Fdelq (pair
, Vprocess_alist
);
673 deactivate_process (proc
);
677 DEFUN ("processp", Fprocessp
, Sprocessp
, 1, 1, 0,
678 doc
: /* Return t if OBJECT is a process. */)
681 return PROCESSP (object
) ? Qt
: Qnil
;
684 DEFUN ("get-process", Fget_process
, Sget_process
, 1, 1, 0,
685 doc
: /* Return the process named NAME, or nil if there is none. */)
686 (register Lisp_Object name
)
691 return Fcdr (Fassoc (name
, Vprocess_alist
));
694 /* This is how commands for the user decode process arguments. It
695 accepts a process, a process name, a buffer, a buffer name, or nil.
696 Buffers denote the first process in the buffer, and nil denotes the
700 get_process (register Lisp_Object name
)
702 register Lisp_Object proc
, obj
;
705 obj
= Fget_process (name
);
707 obj
= Fget_buffer (name
);
709 error ("Process %s does not exist", SDATA (name
));
711 else if (NILP (name
))
712 obj
= Fcurrent_buffer ();
716 /* Now obj should be either a buffer object or a process object.
720 proc
= Fget_buffer_process (obj
);
722 error ("Buffer %s has no process", SDATA (XBUFFER (obj
)->name
));
734 /* Fdelete_process promises to immediately forget about the process, but in
735 reality, Emacs needs to remember those processes until they have been
736 treated by sigchld_handler; otherwise this handler would consider the
737 process as being synchronous and say that the synchronous process is
739 static Lisp_Object deleted_pid_list
;
742 DEFUN ("delete-process", Fdelete_process
, Sdelete_process
, 1, 1, 0,
743 doc
: /* Delete PROCESS: kill it and forget about it immediately.
744 PROCESS may be a process, a buffer, the name of a process or buffer, or
745 nil, indicating the current buffer's process. */)
746 (register Lisp_Object process
)
748 register struct Lisp_Process
*p
;
750 process
= get_process (process
);
751 p
= XPROCESS (process
);
753 p
->raw_status_new
= 0;
754 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
756 p
->status
= Fcons (Qexit
, Fcons (make_number (0), Qnil
));
757 p
->tick
= ++process_tick
;
759 redisplay_preserve_echo_area (13);
761 else if (p
->infd
>= 0)
765 /* Assignment to EMACS_INT stops GCC whining about limited range
767 EMACS_INT pid
= p
->pid
;
769 /* No problem storing the pid here, as it is still in Vprocess_alist. */
770 deleted_pid_list
= Fcons (make_fixnum_or_float (pid
),
771 /* GC treated elements set to nil. */
772 Fdelq (Qnil
, deleted_pid_list
));
773 /* If the process has already signaled, remove it from the list. */
774 if (p
->raw_status_new
)
777 if (CONSP (p
->status
))
778 symbol
= XCAR (p
->status
);
779 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
))
781 = Fdelete (make_fixnum_or_float (pid
), deleted_pid_list
);
785 Fkill_process (process
, Qnil
);
786 /* Do this now, since remove_process will make sigchld_handler do nothing. */
788 = Fcons (Qsignal
, Fcons (make_number (SIGKILL
), Qnil
));
789 p
->tick
= ++process_tick
;
791 redisplay_preserve_echo_area (13);
794 remove_process (process
);
798 DEFUN ("process-status", Fprocess_status
, Sprocess_status
, 1, 1, 0,
799 doc
: /* Return the status of PROCESS.
800 The returned value is one of the following symbols:
801 run -- for a process that is running.
802 stop -- for a process stopped but continuable.
803 exit -- for a process that has exited.
804 signal -- for a process that has got a fatal signal.
805 open -- for a network stream connection that is open.
806 listen -- for a network stream server that is listening.
807 closed -- for a network stream connection that is closed.
808 connect -- when waiting for a non-blocking connection to complete.
809 failed -- when a non-blocking connection has failed.
810 nil -- if arg is a process name and no such process exists.
811 PROCESS may be a process, a buffer, the name of a process, or
812 nil, indicating the current buffer's process. */)
813 (register Lisp_Object process
)
815 register struct Lisp_Process
*p
;
816 register Lisp_Object status
;
818 if (STRINGP (process
))
819 process
= Fget_process (process
);
821 process
= get_process (process
);
826 p
= XPROCESS (process
);
827 if (p
->raw_status_new
)
831 status
= XCAR (status
);
832 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
834 if (EQ (status
, Qexit
))
836 else if (EQ (p
->command
, Qt
))
838 else if (EQ (status
, Qrun
))
844 DEFUN ("process-exit-status", Fprocess_exit_status
, Sprocess_exit_status
,
846 doc
: /* Return the exit status of PROCESS or the signal number that killed it.
847 If PROCESS has not yet exited or died, return 0. */)
848 (register Lisp_Object process
)
850 CHECK_PROCESS (process
);
851 if (XPROCESS (process
)->raw_status_new
)
852 update_status (XPROCESS (process
));
853 if (CONSP (XPROCESS (process
)->status
))
854 return XCAR (XCDR (XPROCESS (process
)->status
));
855 return make_number (0);
858 DEFUN ("process-id", Fprocess_id
, Sprocess_id
, 1, 1, 0,
859 doc
: /* Return the process id of PROCESS.
860 This is the pid of the external process which PROCESS uses or talks to.
861 For a network connection, this value is nil. */)
862 (register Lisp_Object process
)
864 /* Assignment to EMACS_INT stops GCC whining about limited range of
868 CHECK_PROCESS (process
);
869 pid
= XPROCESS (process
)->pid
;
870 return (pid
? make_fixnum_or_float (pid
) : Qnil
);
873 DEFUN ("process-name", Fprocess_name
, Sprocess_name
, 1, 1, 0,
874 doc
: /* Return the name of PROCESS, as a string.
875 This is the name of the program invoked in PROCESS,
876 possibly modified to make it unique among process names. */)
877 (register Lisp_Object process
)
879 CHECK_PROCESS (process
);
880 return XPROCESS (process
)->name
;
883 DEFUN ("process-command", Fprocess_command
, Sprocess_command
, 1, 1, 0,
884 doc
: /* Return the command that was executed to start PROCESS.
885 This is a list of strings, the first string being the program executed
886 and the rest of the strings being the arguments given to it.
887 For a network or serial process, this is nil (process is running) or t
888 \(process is stopped). */)
889 (register Lisp_Object process
)
891 CHECK_PROCESS (process
);
892 return XPROCESS (process
)->command
;
895 DEFUN ("process-tty-name", Fprocess_tty_name
, Sprocess_tty_name
, 1, 1, 0,
896 doc
: /* Return the name of the terminal PROCESS uses, or nil if none.
897 This is the terminal that the process itself reads and writes on,
898 not the name of the pty that Emacs uses to talk with that terminal. */)
899 (register Lisp_Object process
)
901 CHECK_PROCESS (process
);
902 return XPROCESS (process
)->tty_name
;
905 DEFUN ("set-process-buffer", Fset_process_buffer
, Sset_process_buffer
,
907 doc
: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil). */)
908 (register Lisp_Object process
, Lisp_Object buffer
)
910 struct Lisp_Process
*p
;
912 CHECK_PROCESS (process
);
914 CHECK_BUFFER (buffer
);
915 p
= XPROCESS (process
);
917 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
918 p
->childp
= Fplist_put (p
->childp
, QCbuffer
, buffer
);
919 setup_process_coding_systems (process
);
923 DEFUN ("process-buffer", Fprocess_buffer
, Sprocess_buffer
,
925 doc
: /* Return the buffer PROCESS is associated with.
926 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
927 (register Lisp_Object process
)
929 CHECK_PROCESS (process
);
930 return XPROCESS (process
)->buffer
;
933 DEFUN ("process-mark", Fprocess_mark
, Sprocess_mark
,
935 doc
: /* Return the marker for the end of the last output from PROCESS. */)
936 (register Lisp_Object process
)
938 CHECK_PROCESS (process
);
939 return XPROCESS (process
)->mark
;
942 DEFUN ("set-process-filter", Fset_process_filter
, Sset_process_filter
,
944 doc
: /* Give PROCESS the filter function FILTER; nil means no filter.
945 A value of t means stop accepting output from the process.
947 When a process has a filter, its buffer is not used for output.
948 Instead, each time it does output, the entire string of output is
949 passed to the filter.
951 The filter gets two arguments: the process and the string of output.
952 The string argument is normally a multibyte string, except:
953 - if the process' input coding system is no-conversion or raw-text,
954 it is a unibyte string (the non-converted input), or else
955 - if `default-enable-multibyte-characters' is nil, it is a unibyte
956 string (the result of converting the decoded input multibyte
957 string to unibyte with `string-make-unibyte'). */)
958 (register Lisp_Object process
, Lisp_Object filter
)
960 struct Lisp_Process
*p
;
962 CHECK_PROCESS (process
);
963 p
= XPROCESS (process
);
965 /* Don't signal an error if the process' input file descriptor
966 is closed. This could make debugging Lisp more difficult,
967 for example when doing something like
969 (setq process (start-process ...))
971 (set-process-filter process ...) */
975 if (EQ (filter
, Qt
) && !EQ (p
->status
, Qlisten
))
977 FD_CLR (p
->infd
, &input_wait_mask
);
978 FD_CLR (p
->infd
, &non_keyboard_wait_mask
);
980 else if (EQ (p
->filter
, Qt
)
981 /* Network or serial process not stopped: */
982 && !EQ (p
->command
, Qt
))
984 FD_SET (p
->infd
, &input_wait_mask
);
985 FD_SET (p
->infd
, &non_keyboard_wait_mask
);
990 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
991 p
->childp
= Fplist_put (p
->childp
, QCfilter
, filter
);
992 setup_process_coding_systems (process
);
996 DEFUN ("process-filter", Fprocess_filter
, Sprocess_filter
,
998 doc
: /* Returns the filter function of PROCESS; nil if none.
999 See `set-process-filter' for more info on filter functions. */)
1000 (register Lisp_Object process
)
1002 CHECK_PROCESS (process
);
1003 return XPROCESS (process
)->filter
;
1006 DEFUN ("set-process-sentinel", Fset_process_sentinel
, Sset_process_sentinel
,
1008 doc
: /* Give PROCESS the sentinel SENTINEL; nil for none.
1009 The sentinel is called as a function when the process changes state.
1010 It gets two arguments: the process, and a string describing the change. */)
1011 (register Lisp_Object process
, Lisp_Object sentinel
)
1013 struct Lisp_Process
*p
;
1015 CHECK_PROCESS (process
);
1016 p
= XPROCESS (process
);
1018 p
->sentinel
= sentinel
;
1019 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
1020 p
->childp
= Fplist_put (p
->childp
, QCsentinel
, sentinel
);
1024 DEFUN ("process-sentinel", Fprocess_sentinel
, Sprocess_sentinel
,
1026 doc
: /* Return the sentinel of PROCESS; nil if none.
1027 See `set-process-sentinel' for more info on sentinels. */)
1028 (register Lisp_Object process
)
1030 CHECK_PROCESS (process
);
1031 return XPROCESS (process
)->sentinel
;
1034 DEFUN ("set-process-window-size", Fset_process_window_size
,
1035 Sset_process_window_size
, 3, 3, 0,
1036 doc
: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
1037 (register Lisp_Object process
, Lisp_Object height
, Lisp_Object width
)
1039 CHECK_PROCESS (process
);
1040 CHECK_NATNUM (height
);
1041 CHECK_NATNUM (width
);
1043 if (XPROCESS (process
)->infd
< 0
1044 || set_window_size (XPROCESS (process
)->infd
,
1045 XINT (height
), XINT (width
)) <= 0)
1051 DEFUN ("set-process-inherit-coding-system-flag",
1052 Fset_process_inherit_coding_system_flag
,
1053 Sset_process_inherit_coding_system_flag
, 2, 2, 0,
1054 doc
: /* Determine whether buffer of PROCESS will inherit coding-system.
1055 If the second argument FLAG is non-nil, then the variable
1056 `buffer-file-coding-system' of the buffer associated with PROCESS
1057 will be bound to the value of the coding system used to decode
1060 This is useful when the coding system specified for the process buffer
1061 leaves either the character code conversion or the end-of-line conversion
1062 unspecified, or if the coding system used to decode the process output
1063 is more appropriate for saving the process buffer.
1065 Binding the variable `inherit-process-coding-system' to non-nil before
1066 starting the process is an alternative way of setting the inherit flag
1067 for the process which will run. */)
1068 (register Lisp_Object process
, Lisp_Object flag
)
1070 CHECK_PROCESS (process
);
1071 XPROCESS (process
)->inherit_coding_system_flag
= !NILP (flag
);
1075 DEFUN ("set-process-query-on-exit-flag",
1076 Fset_process_query_on_exit_flag
, Sset_process_query_on_exit_flag
,
1078 doc
: /* Specify if query is needed for PROCESS when Emacs is exited.
1079 If the second argument FLAG is non-nil, Emacs will query the user before
1080 exiting or killing a buffer if PROCESS is running. */)
1081 (register Lisp_Object process
, Lisp_Object flag
)
1083 CHECK_PROCESS (process
);
1084 XPROCESS (process
)->kill_without_query
= NILP (flag
);
1088 DEFUN ("process-query-on-exit-flag",
1089 Fprocess_query_on_exit_flag
, Sprocess_query_on_exit_flag
,
1091 doc
: /* Return the current value of query-on-exit flag for PROCESS. */)
1092 (register Lisp_Object process
)
1094 CHECK_PROCESS (process
);
1095 return (XPROCESS (process
)->kill_without_query
? Qnil
: Qt
);
1098 #ifdef DATAGRAM_SOCKETS
1099 Lisp_Object
Fprocess_datagram_address (Lisp_Object process
);
1102 DEFUN ("process-contact", Fprocess_contact
, Sprocess_contact
,
1104 doc
: /* Return the contact info of PROCESS; t for a real child.
1105 For a network or serial connection, the value depends on the optional
1106 KEY arg. If KEY is nil, value is a cons cell of the form (HOST
1107 SERVICE) for a network connection or (PORT SPEED) for a serial
1108 connection. If KEY is t, the complete contact information for the
1109 connection is returned, else the specific value for the keyword KEY is
1110 returned. See `make-network-process' or `make-serial-process' for a
1111 list of keywords. */)
1112 (register Lisp_Object process
, Lisp_Object key
)
1114 Lisp_Object contact
;
1116 CHECK_PROCESS (process
);
1117 contact
= XPROCESS (process
)->childp
;
1119 #ifdef DATAGRAM_SOCKETS
1120 if (DATAGRAM_CONN_P (process
)
1121 && (EQ (key
, Qt
) || EQ (key
, QCremote
)))
1122 contact
= Fplist_put (contact
, QCremote
,
1123 Fprocess_datagram_address (process
));
1126 if ((!NETCONN_P (process
) && !SERIALCONN_P (process
)) || EQ (key
, Qt
))
1128 if (NILP (key
) && NETCONN_P (process
))
1129 return Fcons (Fplist_get (contact
, QChost
),
1130 Fcons (Fplist_get (contact
, QCservice
), Qnil
));
1131 if (NILP (key
) && SERIALCONN_P (process
))
1132 return Fcons (Fplist_get (contact
, QCport
),
1133 Fcons (Fplist_get (contact
, QCspeed
), Qnil
));
1134 return Fplist_get (contact
, key
);
1137 DEFUN ("process-plist", Fprocess_plist
, Sprocess_plist
,
1139 doc
: /* Return the plist of PROCESS. */)
1140 (register Lisp_Object process
)
1142 CHECK_PROCESS (process
);
1143 return XPROCESS (process
)->plist
;
1146 DEFUN ("set-process-plist", Fset_process_plist
, Sset_process_plist
,
1148 doc
: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
1149 (register Lisp_Object process
, Lisp_Object plist
)
1151 CHECK_PROCESS (process
);
1154 XPROCESS (process
)->plist
= plist
;
1158 #if 0 /* Turned off because we don't currently record this info
1159 in the process. Perhaps add it. */
1160 DEFUN ("process-connection", Fprocess_connection
, Sprocess_connection
, 1, 1, 0,
1161 doc
: /* Return the connection type of PROCESS.
1162 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1163 a socket connection. */)
1164 (Lisp_Object process
)
1166 return XPROCESS (process
)->type
;
1170 DEFUN ("process-type", Fprocess_type
, Sprocess_type
, 1, 1, 0,
1171 doc
: /* Return the connection type of PROCESS.
1172 The value is either the symbol `real', `network', or `serial'.
1173 PROCESS may be a process, a buffer, the name of a process or buffer, or
1174 nil, indicating the current buffer's process. */)
1175 (Lisp_Object process
)
1178 proc
= get_process (process
);
1179 return XPROCESS (proc
)->type
;
1182 DEFUN ("format-network-address", Fformat_network_address
, Sformat_network_address
,
1184 doc
: /* Convert network ADDRESS from internal format to a string.
1185 A 4 or 5 element vector represents an IPv4 address (with port number).
1186 An 8 or 9 element vector represents an IPv6 address (with port number).
1187 If optional second argument OMIT-PORT is non-nil, don't include a port
1188 number in the string, even when present in ADDRESS.
1189 Returns nil if format of ADDRESS is invalid. */)
1190 (Lisp_Object address
, Lisp_Object omit_port
)
1195 if (STRINGP (address
)) /* AF_LOCAL */
1198 if (VECTORP (address
)) /* AF_INET or AF_INET6 */
1200 register struct Lisp_Vector
*p
= XVECTOR (address
);
1201 Lisp_Object args
[10];
1204 if (p
->size
== 4 || (p
->size
== 5 && !NILP (omit_port
)))
1206 args
[0] = build_string ("%d.%d.%d.%d");
1209 else if (p
->size
== 5)
1211 args
[0] = build_string ("%d.%d.%d.%d:%d");
1214 else if (p
->size
== 8 || (p
->size
== 9 && !NILP (omit_port
)))
1216 args
[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
1219 else if (p
->size
== 9)
1221 args
[0] = build_string ("[%x:%x:%x:%x:%x:%x:%x:%x]:%d");
1227 for (i
= 0; i
< nargs
; i
++)
1229 EMACS_INT element
= XINT (p
->contents
[i
]);
1231 if (element
< 0 || element
> 65535)
1234 if (nargs
<= 5 /* IPv4 */
1235 && i
< 4 /* host, not port */
1239 args
[i
+1] = p
->contents
[i
];
1242 return Fformat (nargs
+1, args
);
1245 if (CONSP (address
))
1247 Lisp_Object args
[2];
1248 args
[0] = build_string ("<Family %d>");
1249 args
[1] = Fcar (address
);
1250 return Fformat (2, args
);
1257 list_processes_1 (Lisp_Object query_only
)
1259 register Lisp_Object tail
, tem
;
1260 Lisp_Object proc
, minspace
, tem1
;
1261 register struct Lisp_Process
*p
;
1263 int w_proc
, w_buffer
, w_tty
;
1265 Lisp_Object i_status
, i_buffer
, i_tty
, i_command
;
1267 w_proc
= 4; /* Proc */
1268 w_buffer
= 6; /* Buffer */
1269 w_tty
= 0; /* Omit if no ttys */
1271 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
1275 proc
= Fcdr (XCAR (tail
));
1276 p
= XPROCESS (proc
);
1279 if (!NILP (query_only
) && p
->kill_without_query
)
1281 if (STRINGP (p
->name
)
1282 && ( i
= SCHARS (p
->name
), (i
> w_proc
)))
1284 if (!NILP (p
->buffer
))
1286 if (NILP (XBUFFER (p
->buffer
)->name
))
1289 w_buffer
= 8; /* (Killed) */
1291 else if ((i
= SCHARS (XBUFFER (p
->buffer
)->name
), (i
> w_buffer
)))
1294 if (STRINGP (p
->tty_name
)
1295 && (i
= SCHARS (p
->tty_name
), (i
> w_tty
)))
1299 XSETFASTINT (i_status
, w_proc
+ 1);
1300 XSETFASTINT (i_buffer
, XFASTINT (i_status
) + 9);
1303 XSETFASTINT (i_tty
, XFASTINT (i_buffer
) + w_buffer
+ 1);
1304 XSETFASTINT (i_command
, XFASTINT (i_tty
) + w_tty
+ 1);
1309 XSETFASTINT (i_command
, XFASTINT (i_buffer
) + w_buffer
+ 1);
1312 XSETFASTINT (minspace
, 1);
1314 set_buffer_internal (XBUFFER (Vstandard_output
));
1315 current_buffer
->undo_list
= Qt
;
1317 current_buffer
->truncate_lines
= Qt
;
1319 write_string ("Proc", -1);
1320 Findent_to (i_status
, minspace
); write_string ("Status", -1);
1321 Findent_to (i_buffer
, minspace
); write_string ("Buffer", -1);
1324 Findent_to (i_tty
, minspace
); write_string ("Tty", -1);
1326 Findent_to (i_command
, minspace
); write_string ("Command", -1);
1327 write_string ("\n", -1);
1329 write_string ("----", -1);
1330 Findent_to (i_status
, minspace
); write_string ("------", -1);
1331 Findent_to (i_buffer
, minspace
); write_string ("------", -1);
1334 Findent_to (i_tty
, minspace
); write_string ("---", -1);
1336 Findent_to (i_command
, minspace
); write_string ("-------", -1);
1337 write_string ("\n", -1);
1339 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
1343 proc
= Fcdr (XCAR (tail
));
1344 p
= XPROCESS (proc
);
1347 if (!NILP (query_only
) && p
->kill_without_query
)
1350 Finsert (1, &p
->name
);
1351 Findent_to (i_status
, minspace
);
1353 if (p
->raw_status_new
)
1356 if (CONSP (p
->status
))
1357 symbol
= XCAR (p
->status
);
1359 if (EQ (symbol
, Qsignal
))
1362 tem
= Fcar (Fcdr (p
->status
));
1363 Fprinc (symbol
, Qnil
);
1365 else if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
1367 if (EQ (symbol
, Qexit
))
1368 write_string ("closed", -1);
1369 else if (EQ (p
->command
, Qt
))
1370 write_string ("stopped", -1);
1371 else if (EQ (symbol
, Qrun
))
1372 write_string ("open", -1);
1374 Fprinc (symbol
, Qnil
);
1376 else if (SERIALCONN1_P (p
))
1378 write_string ("running", -1);
1381 Fprinc (symbol
, Qnil
);
1383 if (EQ (symbol
, Qexit
))
1386 tem
= Fcar (Fcdr (p
->status
));
1389 sprintf (tembuf
, " %d", (int) XFASTINT (tem
));
1390 write_string (tembuf
, -1);
1394 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
) || EQ (symbol
, Qclosed
))
1397 Findent_to (i_buffer
, minspace
);
1398 if (NILP (p
->buffer
))
1399 insert_string ("(none)");
1400 else if (NILP (XBUFFER (p
->buffer
)->name
))
1401 insert_string ("(Killed)");
1403 Finsert (1, &XBUFFER (p
->buffer
)->name
);
1407 Findent_to (i_tty
, minspace
);
1408 if (STRINGP (p
->tty_name
))
1409 Finsert (1, &p
->tty_name
);
1412 Findent_to (i_command
, minspace
);
1414 if (EQ (p
->status
, Qlisten
))
1416 Lisp_Object port
= Fplist_get (p
->childp
, QCservice
);
1417 if (INTEGERP (port
))
1418 port
= Fnumber_to_string (port
);
1420 port
= Fformat_network_address (Fplist_get (p
->childp
, QClocal
), Qnil
);
1421 sprintf (tembuf
, "(network %s server on %s)\n",
1422 (DATAGRAM_CHAN_P (p
->infd
) ? "datagram" : "stream"),
1423 (STRINGP (port
) ? SSDATA (port
) : "?"));
1424 insert_string (tembuf
);
1426 else if (NETCONN1_P (p
))
1428 /* For a local socket, there is no host name,
1429 so display service instead. */
1430 Lisp_Object host
= Fplist_get (p
->childp
, QChost
);
1431 if (!STRINGP (host
))
1433 host
= Fplist_get (p
->childp
, QCservice
);
1434 if (INTEGERP (host
))
1435 host
= Fnumber_to_string (host
);
1438 host
= Fformat_network_address (Fplist_get (p
->childp
, QCremote
), Qnil
);
1439 sprintf (tembuf
, "(network %s connection to %s)\n",
1440 (DATAGRAM_CHAN_P (p
->infd
) ? "datagram" : "stream"),
1441 (STRINGP (host
) ? SSDATA (host
) : "?"));
1442 insert_string (tembuf
);
1444 else if (SERIALCONN1_P (p
))
1446 Lisp_Object port
= Fplist_get (p
->childp
, QCport
);
1447 Lisp_Object speed
= Fplist_get (p
->childp
, QCspeed
);
1448 insert_string ("(serial port ");
1450 insert_string (SSDATA (port
));
1452 insert_string ("?");
1453 if (INTEGERP (speed
))
1455 sprintf (tembuf
, " at %ld b/s", (long) XINT (speed
));
1456 insert_string (tembuf
);
1458 insert_string (")\n");
1472 insert_string (" ");
1474 insert_string ("\n");
1479 status_notify (NULL
);
1480 redisplay_preserve_echo_area (13);
1485 DEFUN ("list-processes", Flist_processes
, Slist_processes
, 0, 1, "P",
1486 doc
: /* Display a list of all processes.
1487 If optional argument QUERY-ONLY is non-nil, only processes with
1488 the query-on-exit flag set will be listed.
1489 Any process listed as exited or signaled is actually eliminated
1490 after the listing is made. */)
1491 (Lisp_Object query_only
)
1493 internal_with_output_to_temp_buffer ("*Process List*",
1494 list_processes_1
, query_only
);
1498 DEFUN ("process-list", Fprocess_list
, Sprocess_list
, 0, 0, 0,
1499 doc
: /* Return a list of all processes. */)
1502 return Fmapcar (Qcdr
, Vprocess_alist
);
1505 /* Starting asynchronous inferior processes. */
1507 static Lisp_Object
start_process_unwind (Lisp_Object proc
);
1509 DEFUN ("start-process", Fstart_process
, Sstart_process
, 3, MANY
, 0,
1510 doc
: /* Start a program in a subprocess. Return the process object for it.
1511 NAME is name for process. It is modified if necessary to make it unique.
1512 BUFFER is the buffer (or buffer name) to associate with the process.
1514 Process output (both standard output and standard error streams) goes
1515 at end of BUFFER, unless you specify an output stream or filter
1516 function to handle the output. BUFFER may also be nil, meaning that
1517 this process is not associated with any buffer.
1519 PROGRAM is the program file name. It is searched for in PATH. If
1520 nil, just associate a pty with the buffer. Remaining arguments are
1521 strings to give program as arguments.
1523 If you want to separate standard output from standard error, invoke
1524 the command through a shell and redirect one of them using the shell
1527 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1528 (int nargs
, register Lisp_Object
*args
)
1530 Lisp_Object buffer
, name
, program
, proc
, current_dir
, tem
;
1531 register unsigned char **new_argv
;
1533 int count
= SPECPDL_INDEX ();
1537 buffer
= Fget_buffer_create (buffer
);
1539 /* Make sure that the child will be able to chdir to the current
1540 buffer's current directory, or its unhandled equivalent. We
1541 can't just have the child check for an error when it does the
1542 chdir, since it's in a vfork.
1544 We have to GCPRO around this because Fexpand_file_name and
1545 Funhandled_file_name_directory might call a file name handling
1546 function. The argument list is protected by the caller, so all
1547 we really have to worry about is buffer. */
1549 struct gcpro gcpro1
, gcpro2
;
1551 current_dir
= current_buffer
->directory
;
1553 GCPRO2 (buffer
, current_dir
);
1555 current_dir
= Funhandled_file_name_directory (current_dir
);
1556 if (NILP (current_dir
))
1557 /* If the file name handler says that current_dir is unreachable, use
1558 a sensible default. */
1559 current_dir
= build_string ("~/");
1560 current_dir
= expand_and_dir_to_file (current_dir
, Qnil
);
1561 if (NILP (Ffile_accessible_directory_p (current_dir
)))
1562 report_file_error ("Setting current directory",
1563 Fcons (current_buffer
->directory
, Qnil
));
1569 CHECK_STRING (name
);
1573 if (!NILP (program
))
1574 CHECK_STRING (program
);
1576 proc
= make_process (name
);
1577 /* If an error occurs and we can't start the process, we want to
1578 remove it from the process list. This means that each error
1579 check in create_process doesn't need to call remove_process
1580 itself; it's all taken care of here. */
1581 record_unwind_protect (start_process_unwind
, proc
);
1583 XPROCESS (proc
)->childp
= Qt
;
1584 XPROCESS (proc
)->plist
= Qnil
;
1585 XPROCESS (proc
)->type
= Qreal
;
1586 XPROCESS (proc
)->buffer
= buffer
;
1587 XPROCESS (proc
)->sentinel
= Qnil
;
1588 XPROCESS (proc
)->filter
= Qnil
;
1589 XPROCESS (proc
)->command
= Flist (nargs
- 2, args
+ 2);
1592 /* AKA GNUTLS_INITSTAGE(proc). */
1593 XPROCESS (proc
)->gnutls_initstage
= GNUTLS_STAGE_EMPTY
;
1594 XPROCESS (proc
)->gnutls_cred_type
= Qnil
;
1597 #ifdef ADAPTIVE_READ_BUFFERING
1598 XPROCESS (proc
)->adaptive_read_buffering
1599 = (NILP (Vprocess_adaptive_read_buffering
) ? 0
1600 : EQ (Vprocess_adaptive_read_buffering
, Qt
) ? 1 : 2);
1603 /* Make the process marker point into the process buffer (if any). */
1604 if (BUFFERP (buffer
))
1605 set_marker_both (XPROCESS (proc
)->mark
, buffer
,
1606 BUF_ZV (XBUFFER (buffer
)),
1607 BUF_ZV_BYTE (XBUFFER (buffer
)));
1610 /* Decide coding systems for communicating with the process. Here
1611 we don't setup the structure coding_system nor pay attention to
1612 unibyte mode. They are done in create_process. */
1614 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1615 Lisp_Object coding_systems
= Qt
;
1616 Lisp_Object val
, *args2
;
1617 struct gcpro gcpro1
, gcpro2
;
1619 val
= Vcoding_system_for_read
;
1622 args2
= (Lisp_Object
*) alloca ((nargs
+ 1) * sizeof *args2
);
1623 args2
[0] = Qstart_process
;
1624 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1625 GCPRO2 (proc
, current_dir
);
1626 if (!NILP (program
))
1627 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1629 if (CONSP (coding_systems
))
1630 val
= XCAR (coding_systems
);
1631 else if (CONSP (Vdefault_process_coding_system
))
1632 val
= XCAR (Vdefault_process_coding_system
);
1634 XPROCESS (proc
)->decode_coding_system
= val
;
1636 val
= Vcoding_system_for_write
;
1639 if (EQ (coding_systems
, Qt
))
1641 args2
= (Lisp_Object
*) alloca ((nargs
+ 1) * sizeof args2
);
1642 args2
[0] = Qstart_process
;
1643 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1644 GCPRO2 (proc
, current_dir
);
1645 if (!NILP (program
))
1646 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1649 if (CONSP (coding_systems
))
1650 val
= XCDR (coding_systems
);
1651 else if (CONSP (Vdefault_process_coding_system
))
1652 val
= XCDR (Vdefault_process_coding_system
);
1654 XPROCESS (proc
)->encode_coding_system
= val
;
1655 /* Note: At this momemnt, the above coding system may leave
1656 text-conversion or eol-conversion unspecified. They will be
1657 decided after we read output from the process and decode it by
1658 some coding system, or just before we actually send a text to
1663 XPROCESS (proc
)->decoding_buf
= make_uninit_string (0);
1664 XPROCESS (proc
)->decoding_carryover
= 0;
1665 XPROCESS (proc
)->encoding_buf
= make_uninit_string (0);
1667 XPROCESS (proc
)->inherit_coding_system_flag
1668 = !(NILP (buffer
) || !inherit_process_coding_system
);
1670 if (!NILP (program
))
1672 /* If program file name is not absolute, search our path for it.
1673 Put the name we will really use in TEM. */
1674 if (!IS_DIRECTORY_SEP (SREF (program
, 0))
1675 && !(SCHARS (program
) > 1
1676 && IS_DEVICE_SEP (SREF (program
, 1))))
1678 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1681 GCPRO4 (name
, program
, buffer
, current_dir
);
1682 openp (Vexec_path
, program
, Vexec_suffixes
, &tem
, make_number (X_OK
));
1685 report_file_error ("Searching for program", Fcons (program
, Qnil
));
1686 tem
= Fexpand_file_name (tem
, Qnil
);
1690 if (!NILP (Ffile_directory_p (program
)))
1691 error ("Specified program for new process is a directory");
1695 /* If program file name starts with /: for quoting a magic name,
1697 if (SBYTES (tem
) > 2 && SREF (tem
, 0) == '/'
1698 && SREF (tem
, 1) == ':')
1699 tem
= Fsubstring (tem
, make_number (2), Qnil
);
1702 Lisp_Object arg_encoding
= Qnil
;
1703 struct gcpro gcpro1
;
1706 /* Encode the file name and put it in NEW_ARGV.
1707 That's where the child will use it to execute the program. */
1708 tem
= Fcons (ENCODE_FILE (tem
), Qnil
);
1710 /* Here we encode arguments by the coding system used for sending
1711 data to the process. We don't support using different coding
1712 systems for encoding arguments and for encoding data sent to the
1715 for (i
= 3; i
< nargs
; i
++)
1717 tem
= Fcons (args
[i
], tem
);
1718 CHECK_STRING (XCAR (tem
));
1719 if (STRING_MULTIBYTE (XCAR (tem
)))
1721 if (NILP (arg_encoding
))
1722 arg_encoding
= (complement_process_encoding_system
1723 (XPROCESS (proc
)->encode_coding_system
));
1725 code_convert_string_norecord
1726 (XCAR (tem
), arg_encoding
, 1));
1733 /* Now that everything is encoded we can collect the strings into
1735 new_argv
= (unsigned char **) alloca ((nargs
- 1) * sizeof (char *));
1736 new_argv
[nargs
- 2] = 0;
1738 for (i
= nargs
- 3; i
>= 0; i
--)
1740 new_argv
[i
] = SDATA (XCAR (tem
));
1744 create_process (proc
, (char **) new_argv
, current_dir
);
1749 return unbind_to (count
, proc
);
1752 /* This function is the unwind_protect form for Fstart_process. If
1753 PROC doesn't have its pid set, then we know someone has signaled
1754 an error and the process wasn't started successfully, so we should
1755 remove it from the process list. */
1757 start_process_unwind (Lisp_Object proc
)
1759 if (!PROCESSP (proc
))
1762 /* Was PROC started successfully? */
1763 if (XPROCESS (proc
)->pid
== -1)
1764 remove_process (proc
);
1770 create_process_1 (struct atimer
*timer
)
1772 /* Nothing to do. */
1777 create_process (Lisp_Object process
, char **new_argv
, Lisp_Object current_dir
)
1779 int inchannel
, outchannel
;
1782 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
1783 int wait_child_setup
[2];
1787 struct sigaction sigint_action
;
1788 struct sigaction sigquit_action
;
1790 struct sigaction sighup_action
;
1792 /* Use volatile to protect variables from being clobbered by longjmp. */
1793 volatile int forkin
, forkout
;
1794 volatile int pty_flag
= 0;
1796 extern char **environ
;
1799 inchannel
= outchannel
= -1;
1802 if (!NILP (Vprocess_connection_type
))
1803 outchannel
= inchannel
= allocate_pty ();
1807 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1808 /* On most USG systems it does not work to open the pty's tty here,
1809 then close it and reopen it in the child. */
1811 /* Don't let this terminal become our controlling terminal
1812 (in case we don't have one). */
1813 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
| O_NOCTTY
, 0);
1815 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
, 0);
1818 report_file_error ("Opening pty", Qnil
);
1820 forkin
= forkout
= -1;
1821 #endif /* not USG, or USG_SUBTTY_WORKS */
1825 #endif /* HAVE_PTYS */
1830 report_file_error ("Creating pipe", Qnil
);
1836 emacs_close (inchannel
);
1837 emacs_close (forkout
);
1838 report_file_error ("Creating pipe", Qnil
);
1844 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
1848 tem
= pipe (wait_child_setup
);
1850 report_file_error ("Creating pipe", Qnil
);
1851 tem
= fcntl (wait_child_setup
[1], F_GETFD
, 0);
1853 tem
= fcntl (wait_child_setup
[1], F_SETFD
, tem
| FD_CLOEXEC
);
1856 emacs_close (wait_child_setup
[0]);
1857 emacs_close (wait_child_setup
[1]);
1858 report_file_error ("Setting file descriptor flags", Qnil
);
1864 fcntl (inchannel
, F_SETFL
, O_NONBLOCK
);
1865 fcntl (outchannel
, F_SETFL
, O_NONBLOCK
);
1868 fcntl (inchannel
, F_SETFL
, O_NDELAY
);
1869 fcntl (outchannel
, F_SETFL
, O_NDELAY
);
1873 /* Record this as an active process, with its channels.
1874 As a result, child_setup will close Emacs's side of the pipes. */
1875 chan_process
[inchannel
] = process
;
1876 XPROCESS (process
)->infd
= inchannel
;
1877 XPROCESS (process
)->outfd
= outchannel
;
1879 /* Previously we recorded the tty descriptor used in the subprocess.
1880 It was only used for getting the foreground tty process, so now
1881 we just reopen the device (see emacs_get_tty_pgrp) as this is
1882 more portable (see USG_SUBTTY_WORKS above). */
1884 XPROCESS (process
)->pty_flag
= pty_flag
;
1885 XPROCESS (process
)->status
= Qrun
;
1886 setup_process_coding_systems (process
);
1888 /* Delay interrupts until we have a chance to store
1889 the new fork's pid in its process structure */
1890 sigemptyset (&blocked
);
1892 sigaddset (&blocked
, SIGCHLD
);
1894 #ifdef HAVE_WORKING_VFORK
1895 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
1896 this sets the parent's signal handlers as well as the child's.
1897 So delay all interrupts whose handlers the child might munge,
1898 and record the current handlers so they can be restored later. */
1899 sigaddset (&blocked
, SIGINT
); sigaction (SIGINT
, 0, &sigint_action
);
1900 sigaddset (&blocked
, SIGQUIT
); sigaction (SIGQUIT
, 0, &sigquit_action
);
1902 sigaddset (&blocked
, SIGHUP
); sigaction (SIGHUP
, 0, &sighup_action
);
1904 #endif /* HAVE_WORKING_VFORK */
1905 sigprocmask (SIG_BLOCK
, &blocked
, &procmask
);
1907 FD_SET (inchannel
, &input_wait_mask
);
1908 FD_SET (inchannel
, &non_keyboard_wait_mask
);
1909 if (inchannel
> max_process_desc
)
1910 max_process_desc
= inchannel
;
1912 /* Until we store the proper pid, enable sigchld_handler
1913 to recognize an unknown pid as standing for this process.
1914 It is very important not to let this `marker' value stay
1915 in the table after this function has returned; if it does
1916 it might cause call-process to hang and subsequent asynchronous
1917 processes to get their return values scrambled. */
1918 XPROCESS (process
)->pid
= -1;
1923 /* child_setup must clobber environ on systems with true vfork.
1924 Protect it from permanent change. */
1925 char **save_environ
= environ
;
1927 current_dir
= ENCODE_FILE (current_dir
);
1932 #endif /* not WINDOWSNT */
1934 int xforkin
= forkin
;
1935 int xforkout
= forkout
;
1937 #if 0 /* This was probably a mistake--it duplicates code later on,
1938 but fails to handle all the cases. */
1939 /* Make sure SIGCHLD is not blocked in the child. */
1940 sigsetmask (SIGEMPTYMASK
);
1943 /* Make the pty be the controlling terminal of the process. */
1945 /* First, disconnect its current controlling terminal. */
1947 /* We tried doing setsid only if pty_flag, but it caused
1948 process_set_signal to fail on SGI when using a pipe. */
1950 /* Make the pty's terminal the controlling terminal. */
1951 if (pty_flag
&& xforkin
>= 0)
1954 /* We ignore the return value
1955 because faith@cs.unc.edu says that is necessary on Linux. */
1956 ioctl (xforkin
, TIOCSCTTY
, 0);
1959 #else /* not HAVE_SETSID */
1961 /* It's very important to call setpgrp here and no time
1962 afterwards. Otherwise, we lose our controlling tty which
1963 is set when we open the pty. */
1966 #endif /* not HAVE_SETSID */
1967 #if defined (LDISC1)
1968 if (pty_flag
&& xforkin
>= 0)
1971 tcgetattr (xforkin
, &t
);
1973 if (tcsetattr (xforkin
, TCSANOW
, &t
) < 0)
1974 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
1977 #if defined (NTTYDISC) && defined (TIOCSETD)
1978 if (pty_flag
&& xforkin
>= 0)
1980 /* Use new line discipline. */
1981 int ldisc
= NTTYDISC
;
1982 ioctl (xforkin
, TIOCSETD
, &ldisc
);
1987 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1988 can do TIOCSPGRP only to the process's controlling tty. */
1991 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1992 I can't test it since I don't have 4.3. */
1993 int j
= emacs_open ("/dev/tty", O_RDWR
, 0);
1996 ioctl (j
, TIOCNOTTY
, 0);
2000 /* In order to get a controlling terminal on some versions
2001 of BSD, it is necessary to put the process in pgrp 0
2002 before it opens the terminal. */
2010 #endif /* TIOCNOTTY */
2012 #if !defined (DONT_REOPEN_PTY)
2013 /*** There is a suggestion that this ought to be a
2014 conditional on TIOCSPGRP,
2015 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
2016 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
2017 that system does seem to need this code, even though
2018 both HAVE_SETSID and TIOCSCTTY are defined. */
2019 /* Now close the pty (if we had it open) and reopen it.
2020 This makes the pty the controlling terminal of the subprocess. */
2024 /* I wonder if emacs_close (emacs_open (pty_name, ...))
2027 emacs_close (xforkin
);
2028 xforkout
= xforkin
= emacs_open (pty_name
, O_RDWR
, 0);
2032 emacs_write (1, "Couldn't open the pty terminal ", 31);
2033 emacs_write (1, pty_name
, strlen (pty_name
));
2034 emacs_write (1, "\n", 1);
2039 #endif /* not DONT_REOPEN_PTY */
2041 #ifdef SETUP_SLAVE_PTY
2046 #endif /* SETUP_SLAVE_PTY */
2048 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
2049 Now reenable it in the child, so it will die when we want it to. */
2051 signal (SIGHUP
, SIG_DFL
);
2053 #endif /* HAVE_PTYS */
2055 signal (SIGINT
, SIG_DFL
);
2056 signal (SIGQUIT
, SIG_DFL
);
2058 /* Stop blocking signals in the child. */
2059 sigprocmask (SIG_SETMASK
, &procmask
, 0);
2062 child_setup_tty (xforkout
);
2064 pid
= child_setup (xforkin
, xforkout
, xforkout
,
2065 new_argv
, 1, current_dir
);
2066 #else /* not WINDOWSNT */
2068 emacs_close (wait_child_setup
[0]);
2070 child_setup (xforkin
, xforkout
, xforkout
,
2071 new_argv
, 1, current_dir
);
2072 #endif /* not WINDOWSNT */
2074 environ
= save_environ
;
2079 /* This runs in the Emacs process. */
2083 emacs_close (forkin
);
2084 if (forkin
!= forkout
&& forkout
>= 0)
2085 emacs_close (forkout
);
2089 /* vfork succeeded. */
2090 XPROCESS (process
)->pid
= pid
;
2093 register_child (pid
, inchannel
);
2094 #endif /* WINDOWSNT */
2096 /* If the subfork execv fails, and it exits,
2097 this close hangs. I don't know why.
2098 So have an interrupt jar it loose. */
2100 struct atimer
*timer
;
2104 EMACS_SET_SECS_USECS (offset
, 1, 0);
2105 timer
= start_atimer (ATIMER_RELATIVE
, offset
, create_process_1
, 0);
2108 emacs_close (forkin
);
2110 cancel_atimer (timer
);
2114 if (forkin
!= forkout
&& forkout
>= 0)
2115 emacs_close (forkout
);
2119 XPROCESS (process
)->tty_name
= build_string (pty_name
);
2122 XPROCESS (process
)->tty_name
= Qnil
;
2124 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
2125 /* Wait for child_setup to complete in case that vfork is
2126 actually defined as fork. The descriptor wait_child_setup[1]
2127 of a pipe is closed at the child side either by close-on-exec
2128 on successful execvp or the _exit call in child_setup. */
2132 emacs_close (wait_child_setup
[1]);
2133 emacs_read (wait_child_setup
[0], &dummy
, 1);
2134 emacs_close (wait_child_setup
[0]);
2139 /* Restore the signal state whether vfork succeeded or not.
2140 (We will signal an error, below, if it failed.) */
2141 #ifdef HAVE_WORKING_VFORK
2142 /* Restore the parent's signal handlers. */
2143 sigaction (SIGINT
, &sigint_action
, 0);
2144 sigaction (SIGQUIT
, &sigquit_action
, 0);
2146 sigaction (SIGHUP
, &sighup_action
, 0);
2148 #endif /* HAVE_WORKING_VFORK */
2149 /* Stop blocking signals in the parent. */
2150 sigprocmask (SIG_SETMASK
, &procmask
, 0);
2152 /* Now generate the error if vfork failed. */
2154 report_file_error ("Doing vfork", Qnil
);
2158 create_pty (Lisp_Object process
)
2160 int inchannel
, outchannel
;
2162 /* Use volatile to protect variables from being clobbered by longjmp. */
2163 volatile int forkin
, forkout
;
2164 volatile int pty_flag
= 0;
2166 inchannel
= outchannel
= -1;
2169 if (!NILP (Vprocess_connection_type
))
2170 outchannel
= inchannel
= allocate_pty ();
2174 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
2175 /* On most USG systems it does not work to open the pty's tty here,
2176 then close it and reopen it in the child. */
2178 /* Don't let this terminal become our controlling terminal
2179 (in case we don't have one). */
2180 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
| O_NOCTTY
, 0);
2182 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
, 0);
2185 report_file_error ("Opening pty", Qnil
);
2186 #if defined (DONT_REOPEN_PTY)
2187 /* In the case that vfork is defined as fork, the parent process
2188 (Emacs) may send some data before the child process completes
2189 tty options setup. So we setup tty before forking. */
2190 child_setup_tty (forkout
);
2191 #endif /* DONT_REOPEN_PTY */
2193 forkin
= forkout
= -1;
2194 #endif /* not USG, or USG_SUBTTY_WORKS */
2197 #endif /* HAVE_PTYS */
2200 fcntl (inchannel
, F_SETFL
, O_NONBLOCK
);
2201 fcntl (outchannel
, F_SETFL
, O_NONBLOCK
);
2204 fcntl (inchannel
, F_SETFL
, O_NDELAY
);
2205 fcntl (outchannel
, F_SETFL
, O_NDELAY
);
2209 /* Record this as an active process, with its channels.
2210 As a result, child_setup will close Emacs's side of the pipes. */
2211 chan_process
[inchannel
] = process
;
2212 XPROCESS (process
)->infd
= inchannel
;
2213 XPROCESS (process
)->outfd
= outchannel
;
2215 /* Previously we recorded the tty descriptor used in the subprocess.
2216 It was only used for getting the foreground tty process, so now
2217 we just reopen the device (see emacs_get_tty_pgrp) as this is
2218 more portable (see USG_SUBTTY_WORKS above). */
2220 XPROCESS (process
)->pty_flag
= pty_flag
;
2221 XPROCESS (process
)->status
= Qrun
;
2222 setup_process_coding_systems (process
);
2224 FD_SET (inchannel
, &input_wait_mask
);
2225 FD_SET (inchannel
, &non_keyboard_wait_mask
);
2226 if (inchannel
> max_process_desc
)
2227 max_process_desc
= inchannel
;
2229 XPROCESS (process
)->pid
= -2;
2232 XPROCESS (process
)->tty_name
= build_string (pty_name
);
2235 XPROCESS (process
)->tty_name
= Qnil
;
2239 /* Convert an internal struct sockaddr to a lisp object (vector or string).
2240 The address family of sa is not included in the result. */
2243 conv_sockaddr_to_lisp (struct sockaddr
*sa
, int len
)
2245 Lisp_Object address
;
2248 register struct Lisp_Vector
*p
;
2250 /* Workaround for a bug in getsockname on BSD: Names bound to
2251 sockets in the UNIX domain are inaccessible; getsockname returns
2252 a zero length name. */
2253 if (len
< offsetof (struct sockaddr
, sa_family
) + sizeof (sa
->sa_family
))
2254 return empty_unibyte_string
;
2256 switch (sa
->sa_family
)
2260 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
2261 len
= sizeof (sin
->sin_addr
) + 1;
2262 address
= Fmake_vector (make_number (len
), Qnil
);
2263 p
= XVECTOR (address
);
2264 p
->contents
[--len
] = make_number (ntohs (sin
->sin_port
));
2265 cp
= (unsigned char *) &sin
->sin_addr
;
2271 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*) sa
;
2272 uint16_t *ip6
= (uint16_t *) &sin6
->sin6_addr
;
2273 len
= sizeof (sin6
->sin6_addr
)/2 + 1;
2274 address
= Fmake_vector (make_number (len
), Qnil
);
2275 p
= XVECTOR (address
);
2276 p
->contents
[--len
] = make_number (ntohs (sin6
->sin6_port
));
2277 for (i
= 0; i
< len
; i
++)
2278 p
->contents
[i
] = make_number (ntohs (ip6
[i
]));
2282 #ifdef HAVE_LOCAL_SOCKETS
2285 struct sockaddr_un
*sockun
= (struct sockaddr_un
*) sa
;
2286 for (i
= 0; i
< sizeof (sockun
->sun_path
); i
++)
2287 if (sockun
->sun_path
[i
] == 0)
2289 return make_unibyte_string (sockun
->sun_path
, i
);
2293 len
-= offsetof (struct sockaddr
, sa_family
) + sizeof (sa
->sa_family
);
2294 address
= Fcons (make_number (sa
->sa_family
),
2295 Fmake_vector (make_number (len
), Qnil
));
2296 p
= XVECTOR (XCDR (address
));
2297 cp
= (unsigned char *) &sa
->sa_family
+ sizeof (sa
->sa_family
);
2303 p
->contents
[i
++] = make_number (*cp
++);
2309 /* Get family and required size for sockaddr structure to hold ADDRESS. */
2312 get_lisp_to_sockaddr_size (Lisp_Object address
, int *familyp
)
2314 register struct Lisp_Vector
*p
;
2316 if (VECTORP (address
))
2318 p
= XVECTOR (address
);
2322 return sizeof (struct sockaddr_in
);
2325 else if (p
->size
== 9)
2327 *familyp
= AF_INET6
;
2328 return sizeof (struct sockaddr_in6
);
2332 #ifdef HAVE_LOCAL_SOCKETS
2333 else if (STRINGP (address
))
2335 *familyp
= AF_LOCAL
;
2336 return sizeof (struct sockaddr_un
);
2339 else if (CONSP (address
) && INTEGERP (XCAR (address
)) && VECTORP (XCDR (address
)))
2341 struct sockaddr
*sa
;
2342 *familyp
= XINT (XCAR (address
));
2343 p
= XVECTOR (XCDR (address
));
2344 return p
->size
+ sizeof (sa
->sa_family
);
2349 /* Convert an address object (vector or string) to an internal sockaddr.
2351 The address format has been basically validated by
2352 get_lisp_to_sockaddr_size, but this does not mean FAMILY is valid;
2353 it could have come from user data. So if FAMILY is not valid,
2354 we return after zeroing *SA. */
2357 conv_lisp_to_sockaddr (int family
, Lisp_Object address
, struct sockaddr
*sa
, int len
)
2359 register struct Lisp_Vector
*p
;
2360 register unsigned char *cp
= NULL
;
2363 memset (sa
, 0, len
);
2365 if (VECTORP (address
))
2367 p
= XVECTOR (address
);
2368 if (family
== AF_INET
)
2370 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
2371 len
= sizeof (sin
->sin_addr
) + 1;
2372 i
= XINT (p
->contents
[--len
]);
2373 sin
->sin_port
= htons (i
);
2374 cp
= (unsigned char *)&sin
->sin_addr
;
2375 sa
->sa_family
= family
;
2378 else if (family
== AF_INET6
)
2380 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*) sa
;
2381 uint16_t *ip6
= (uint16_t *)&sin6
->sin6_addr
;
2382 len
= sizeof (sin6
->sin6_addr
) + 1;
2383 i
= XINT (p
->contents
[--len
]);
2384 sin6
->sin6_port
= htons (i
);
2385 for (i
= 0; i
< len
; i
++)
2386 if (INTEGERP (p
->contents
[i
]))
2388 int j
= XFASTINT (p
->contents
[i
]) & 0xffff;
2391 sa
->sa_family
= family
;
2398 else if (STRINGP (address
))
2400 #ifdef HAVE_LOCAL_SOCKETS
2401 if (family
== AF_LOCAL
)
2403 struct sockaddr_un
*sockun
= (struct sockaddr_un
*) sa
;
2404 cp
= SDATA (address
);
2405 for (i
= 0; i
< sizeof (sockun
->sun_path
) && *cp
; i
++)
2406 sockun
->sun_path
[i
] = *cp
++;
2407 sa
->sa_family
= family
;
2414 p
= XVECTOR (XCDR (address
));
2415 cp
= (unsigned char *)sa
+ sizeof (sa
->sa_family
);
2418 for (i
= 0; i
< len
; i
++)
2419 if (INTEGERP (p
->contents
[i
]))
2420 *cp
++ = XFASTINT (p
->contents
[i
]) & 0xff;
2423 #ifdef DATAGRAM_SOCKETS
2424 DEFUN ("process-datagram-address", Fprocess_datagram_address
, Sprocess_datagram_address
,
2426 doc
: /* Get the current datagram address associated with PROCESS. */)
2427 (Lisp_Object process
)
2431 CHECK_PROCESS (process
);
2433 if (!DATAGRAM_CONN_P (process
))
2436 channel
= XPROCESS (process
)->infd
;
2437 return conv_sockaddr_to_lisp (datagram_address
[channel
].sa
,
2438 datagram_address
[channel
].len
);
2441 DEFUN ("set-process-datagram-address", Fset_process_datagram_address
, Sset_process_datagram_address
,
2443 doc
: /* Set the datagram address for PROCESS to ADDRESS.
2444 Returns nil upon error setting address, ADDRESS otherwise. */)
2445 (Lisp_Object process
, Lisp_Object address
)
2450 CHECK_PROCESS (process
);
2452 if (!DATAGRAM_CONN_P (process
))
2455 channel
= XPROCESS (process
)->infd
;
2457 len
= get_lisp_to_sockaddr_size (address
, &family
);
2458 if (datagram_address
[channel
].len
!= len
)
2460 conv_lisp_to_sockaddr (family
, address
, datagram_address
[channel
].sa
, len
);
2466 static const struct socket_options
{
2467 /* The name of this option. Should be lowercase version of option
2468 name without SO_ prefix. */
2470 /* Option level SOL_... */
2472 /* Option number SO_... */
2474 enum { SOPT_UNKNOWN
, SOPT_BOOL
, SOPT_INT
, SOPT_IFNAME
, SOPT_LINGER
} opttype
;
2475 enum { OPIX_NONE
=0, OPIX_MISC
=1, OPIX_REUSEADDR
=2 } optbit
;
2476 } socket_options
[] =
2478 #ifdef SO_BINDTODEVICE
2479 { ":bindtodevice", SOL_SOCKET
, SO_BINDTODEVICE
, SOPT_IFNAME
, OPIX_MISC
},
2482 { ":broadcast", SOL_SOCKET
, SO_BROADCAST
, SOPT_BOOL
, OPIX_MISC
},
2485 { ":dontroute", SOL_SOCKET
, SO_DONTROUTE
, SOPT_BOOL
, OPIX_MISC
},
2488 { ":keepalive", SOL_SOCKET
, SO_KEEPALIVE
, SOPT_BOOL
, OPIX_MISC
},
2491 { ":linger", SOL_SOCKET
, SO_LINGER
, SOPT_LINGER
, OPIX_MISC
},
2494 { ":oobinline", SOL_SOCKET
, SO_OOBINLINE
, SOPT_BOOL
, OPIX_MISC
},
2497 { ":priority", SOL_SOCKET
, SO_PRIORITY
, SOPT_INT
, OPIX_MISC
},
2500 { ":reuseaddr", SOL_SOCKET
, SO_REUSEADDR
, SOPT_BOOL
, OPIX_REUSEADDR
},
2502 { 0, 0, 0, SOPT_UNKNOWN
, OPIX_NONE
}
2505 /* Set option OPT to value VAL on socket S.
2507 Returns (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
2508 Signals an error if setting a known option fails.
2512 set_socket_option (int s
, Lisp_Object opt
, Lisp_Object val
)
2515 const struct socket_options
*sopt
;
2520 name
= SSDATA (SYMBOL_NAME (opt
));
2521 for (sopt
= socket_options
; sopt
->name
; sopt
++)
2522 if (strcmp (name
, sopt
->name
) == 0)
2525 switch (sopt
->opttype
)
2530 optval
= NILP (val
) ? 0 : 1;
2531 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2532 &optval
, sizeof (optval
));
2540 optval
= XINT (val
);
2542 error ("Bad option value for %s", name
);
2543 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2544 &optval
, sizeof (optval
));
2548 #ifdef SO_BINDTODEVICE
2551 char devname
[IFNAMSIZ
+1];
2553 /* This is broken, at least in the Linux 2.4 kernel.
2554 To unbind, the arg must be a zero integer, not the empty string.
2555 This should work on all systems. KFS. 2003-09-23. */
2556 memset (devname
, 0, sizeof devname
);
2559 char *arg
= SSDATA (val
);
2560 int len
= min (strlen (arg
), IFNAMSIZ
);
2561 memcpy (devname
, arg
, len
);
2563 else if (!NILP (val
))
2564 error ("Bad option value for %s", name
);
2565 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2574 struct linger linger
;
2577 linger
.l_linger
= 0;
2579 linger
.l_linger
= XINT (val
);
2581 linger
.l_onoff
= NILP (val
) ? 0 : 1;
2582 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2583 &linger
, sizeof (linger
));
2593 report_file_error ("Cannot set network option",
2594 Fcons (opt
, Fcons (val
, Qnil
)));
2595 return (1 << sopt
->optbit
);
2599 DEFUN ("set-network-process-option",
2600 Fset_network_process_option
, Sset_network_process_option
,
2602 doc
: /* For network process PROCESS set option OPTION to value VALUE.
2603 See `make-network-process' for a list of options and values.
2604 If optional fourth arg NO-ERROR is non-nil, don't signal an error if
2605 OPTION is not a supported option, return nil instead; otherwise return t. */)
2606 (Lisp_Object process
, Lisp_Object option
, Lisp_Object value
, Lisp_Object no_error
)
2609 struct Lisp_Process
*p
;
2611 CHECK_PROCESS (process
);
2612 p
= XPROCESS (process
);
2613 if (!NETCONN1_P (p
))
2614 error ("Process is not a network process");
2618 error ("Process is not running");
2620 if (set_socket_option (s
, option
, value
))
2622 p
->childp
= Fplist_put (p
->childp
, option
, value
);
2626 if (NILP (no_error
))
2627 error ("Unknown or unsupported option");
2633 DEFUN ("serial-process-configure",
2634 Fserial_process_configure
,
2635 Sserial_process_configure
,
2637 doc
: /* Configure speed, bytesize, etc. of a serial process.
2639 Arguments are specified as keyword/argument pairs. Attributes that
2640 are not given are re-initialized from the process's current
2641 configuration (available via the function `process-contact') or set to
2642 reasonable default values. The following arguments are defined:
2648 -- Any of these arguments can be given to identify the process that is
2649 to be configured. If none of these arguments is given, the current
2650 buffer's process is used.
2652 :speed SPEED -- SPEED is the speed of the serial port in bits per
2653 second, also called baud rate. Any value can be given for SPEED, but
2654 most serial ports work only at a few defined values between 1200 and
2655 115200, with 9600 being the most common value. If SPEED is nil, the
2656 serial port is not configured any further, i.e., all other arguments
2657 are ignored. This may be useful for special serial ports such as
2658 Bluetooth-to-serial converters which can only be configured through AT
2659 commands. A value of nil for SPEED can be used only when passed
2660 through `make-serial-process' or `serial-term'.
2662 :bytesize BYTESIZE -- BYTESIZE is the number of bits per byte, which
2663 can be 7 or 8. If BYTESIZE is not given or nil, a value of 8 is used.
2665 :parity PARITY -- PARITY can be nil (don't use parity), the symbol
2666 `odd' (use odd parity), or the symbol `even' (use even parity). If
2667 PARITY is not given, no parity is used.
2669 :stopbits STOPBITS -- STOPBITS is the number of stopbits used to
2670 terminate a byte transmission. STOPBITS can be 1 or 2. If STOPBITS
2671 is not given or nil, 1 stopbit is used.
2673 :flowcontrol FLOWCONTROL -- FLOWCONTROL determines the type of
2674 flowcontrol to be used, which is either nil (don't use flowcontrol),
2675 the symbol `hw' (use RTS/CTS hardware flowcontrol), or the symbol `sw'
2676 \(use XON/XOFF software flowcontrol). If FLOWCONTROL is not given, no
2677 flowcontrol is used.
2679 `serial-process-configure' is called by `make-serial-process' for the
2680 initial configuration of the serial port.
2684 \(serial-process-configure :process "/dev/ttyS0" :speed 1200)
2686 \(serial-process-configure
2687 :buffer "COM1" :stopbits 1 :parity 'odd :flowcontrol 'hw)
2689 \(serial-process-configure :port "\\\\.\\COM13" :bytesize 7)
2691 usage: (serial-process-configure &rest ARGS) */)
2692 (int nargs
, Lisp_Object
*args
)
2694 struct Lisp_Process
*p
;
2695 Lisp_Object contact
= Qnil
;
2696 Lisp_Object proc
= Qnil
;
2697 struct gcpro gcpro1
;
2699 contact
= Flist (nargs
, args
);
2702 proc
= Fplist_get (contact
, QCprocess
);
2704 proc
= Fplist_get (contact
, QCname
);
2706 proc
= Fplist_get (contact
, QCbuffer
);
2708 proc
= Fplist_get (contact
, QCport
);
2709 proc
= get_process (proc
);
2710 p
= XPROCESS (proc
);
2711 if (!EQ (p
->type
, Qserial
))
2712 error ("Not a serial process");
2714 if (NILP (Fplist_get (p
->childp
, QCspeed
)))
2720 serial_configure (p
, contact
);
2726 /* Used by make-serial-process to recover from errors. */
2727 Lisp_Object
make_serial_process_unwind (Lisp_Object proc
)
2729 if (!PROCESSP (proc
))
2731 remove_process (proc
);
2735 DEFUN ("make-serial-process", Fmake_serial_process
, Smake_serial_process
,
2737 doc
: /* Create and return a serial port process.
2739 In Emacs, serial port connections are represented by process objects,
2740 so input and output work as for subprocesses, and `delete-process'
2741 closes a serial port connection. However, a serial process has no
2742 process id, it cannot be signaled, and the status codes are different
2743 from normal processes.
2745 `make-serial-process' creates a process and a buffer, on which you
2746 probably want to use `process-send-string'. Try \\[serial-term] for
2747 an interactive terminal. See below for examples.
2749 Arguments are specified as keyword/argument pairs. The following
2750 arguments are defined:
2752 :port PORT -- (mandatory) PORT is the path or name of the serial port.
2753 For example, this could be "/dev/ttyS0" on Unix. On Windows, this
2754 could be "COM1", or "\\\\.\\COM10" for ports higher than COM9 (double
2755 the backslashes in strings).
2757 :speed SPEED -- (mandatory) is handled by `serial-process-configure',
2758 which is called by `make-serial-process'.
2760 :name NAME -- NAME is the name of the process. If NAME is not given,
2761 the value of PORT is used.
2763 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2764 with the process. Process output goes at the end of that buffer,
2765 unless you specify an output stream or filter function to handle the
2766 output. If BUFFER is not given, the value of NAME is used.
2768 :coding CODING -- If CODING is a symbol, it specifies the coding
2769 system used for both reading and writing for this process. If CODING
2770 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2771 ENCODING is used for writing.
2773 :noquery BOOL -- When exiting Emacs, query the user if BOOL is nil and
2774 the process is running. If BOOL is not given, query before exiting.
2776 :stop BOOL -- Start process in the `stopped' state if BOOL is non-nil.
2777 In the stopped state, a serial process does not accept incoming data,
2778 but you can send outgoing data. The stopped state is cleared by
2779 `continue-process' and set by `stop-process'.
2781 :filter FILTER -- Install FILTER as the process filter.
2783 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2785 :plist PLIST -- Install PLIST as the initial plist of the process.
2792 -- These arguments are handled by `serial-process-configure', which is
2793 called by `make-serial-process'.
2795 The original argument list, possibly modified by later configuration,
2796 is available via the function `process-contact'.
2800 \(make-serial-process :port "/dev/ttyS0" :speed 9600)
2802 \(make-serial-process :port "COM1" :speed 115200 :stopbits 2)
2804 \(make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity 'odd)
2806 \(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil)
2808 usage: (make-serial-process &rest ARGS) */)
2809 (int nargs
, Lisp_Object
*args
)
2812 Lisp_Object proc
, contact
, port
;
2813 struct Lisp_Process
*p
;
2814 struct gcpro gcpro1
;
2815 Lisp_Object name
, buffer
;
2816 Lisp_Object tem
, val
;
2817 int specpdl_count
= -1;
2822 contact
= Flist (nargs
, args
);
2825 port
= Fplist_get (contact
, QCport
);
2827 error ("No port specified");
2828 CHECK_STRING (port
);
2830 if (NILP (Fplist_member (contact
, QCspeed
)))
2831 error (":speed not specified");
2832 if (!NILP (Fplist_get (contact
, QCspeed
)))
2833 CHECK_NUMBER (Fplist_get (contact
, QCspeed
));
2835 name
= Fplist_get (contact
, QCname
);
2838 CHECK_STRING (name
);
2839 proc
= make_process (name
);
2840 specpdl_count
= SPECPDL_INDEX ();
2841 record_unwind_protect (make_serial_process_unwind
, proc
);
2842 p
= XPROCESS (proc
);
2844 fd
= serial_open (SSDATA (port
));
2847 if (fd
> max_process_desc
)
2848 max_process_desc
= fd
;
2849 chan_process
[fd
] = proc
;
2851 buffer
= Fplist_get (contact
, QCbuffer
);
2854 buffer
= Fget_buffer_create (buffer
);
2857 p
->childp
= contact
;
2858 p
->plist
= Fcopy_sequence (Fplist_get (contact
, QCplist
));
2860 p
->sentinel
= Fplist_get (contact
, QCsentinel
);
2861 p
->filter
= Fplist_get (contact
, QCfilter
);
2863 if (tem
= Fplist_get (contact
, QCnoquery
), !NILP (tem
))
2864 p
->kill_without_query
= 1;
2865 if (tem
= Fplist_get (contact
, QCstop
), !NILP (tem
))
2869 if (!EQ (p
->command
, Qt
))
2871 FD_SET (fd
, &input_wait_mask
);
2872 FD_SET (fd
, &non_keyboard_wait_mask
);
2875 if (BUFFERP (buffer
))
2877 set_marker_both (p
->mark
, buffer
,
2878 BUF_ZV (XBUFFER (buffer
)),
2879 BUF_ZV_BYTE (XBUFFER (buffer
)));
2882 tem
= Fplist_member (contact
, QCcoding
);
2883 if (!NILP (tem
) && (!CONSP (tem
) || !CONSP (XCDR (tem
))))
2889 val
= XCAR (XCDR (tem
));
2893 else if (!NILP (Vcoding_system_for_read
))
2894 val
= Vcoding_system_for_read
;
2895 else if ((!NILP (buffer
) && NILP (XBUFFER (buffer
)->enable_multibyte_characters
))
2896 || (NILP (buffer
) && NILP (buffer_defaults
.enable_multibyte_characters
)))
2898 p
->decode_coding_system
= val
;
2903 val
= XCAR (XCDR (tem
));
2907 else if (!NILP (Vcoding_system_for_write
))
2908 val
= Vcoding_system_for_write
;
2909 else if ((!NILP (buffer
) && NILP (XBUFFER (buffer
)->enable_multibyte_characters
))
2910 || (NILP (buffer
) && NILP (buffer_defaults
.enable_multibyte_characters
)))
2912 p
->encode_coding_system
= val
;
2914 setup_process_coding_systems (proc
);
2915 p
->decoding_buf
= make_uninit_string (0);
2916 p
->decoding_carryover
= 0;
2917 p
->encoding_buf
= make_uninit_string (0);
2918 p
->inherit_coding_system_flag
2919 = !(!NILP (tem
) || NILP (buffer
) || !inherit_process_coding_system
);
2921 Fserial_process_configure (nargs
, args
);
2923 specpdl_ptr
= specpdl
+ specpdl_count
;
2929 /* Create a network stream/datagram client/server process. Treated
2930 exactly like a normal process when reading and writing. Primary
2931 differences are in status display and process deletion. A network
2932 connection has no PID; you cannot signal it. All you can do is
2933 stop/continue it and deactivate/close it via delete-process */
2935 DEFUN ("make-network-process", Fmake_network_process
, Smake_network_process
,
2937 doc
: /* Create and return a network server or client process.
2939 In Emacs, network connections are represented by process objects, so
2940 input and output work as for subprocesses and `delete-process' closes
2941 a network connection. However, a network process has no process id,
2942 it cannot be signaled, and the status codes are different from normal
2945 Arguments are specified as keyword/argument pairs. The following
2946 arguments are defined:
2948 :name NAME -- NAME is name for process. It is modified if necessary
2951 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2952 with the process. Process output goes at end of that buffer, unless
2953 you specify an output stream or filter function to handle the output.
2954 BUFFER may be also nil, meaning that this process is not associated
2957 :host HOST -- HOST is name of the host to connect to, or its IP
2958 address. The symbol `local' specifies the local host. If specified
2959 for a server process, it must be a valid name or address for the local
2960 host, and only clients connecting to that address will be accepted.
2962 :service SERVICE -- SERVICE is name of the service desired, or an
2963 integer specifying a port number to connect to. If SERVICE is t,
2964 a random port number is selected for the server. (If Emacs was
2965 compiled with getaddrinfo, a port number can also be specified as a
2966 string, e.g. "80", as well as an integer. This is not portable.)
2968 :type TYPE -- TYPE is the type of connection. The default (nil) is a
2969 stream type connection, `datagram' creates a datagram type connection,
2970 `seqpacket' creates a reliable datagram connection.
2972 :family FAMILY -- FAMILY is the address (and protocol) family for the
2973 service specified by HOST and SERVICE. The default (nil) is to use
2974 whatever address family (IPv4 or IPv6) that is defined for the host
2975 and port number specified by HOST and SERVICE. Other address families
2977 local -- for a local (i.e. UNIX) address specified by SERVICE.
2978 ipv4 -- use IPv4 address family only.
2979 ipv6 -- use IPv6 address family only.
2981 :local ADDRESS -- ADDRESS is the local address used for the connection.
2982 This parameter is ignored when opening a client process. When specified
2983 for a server process, the FAMILY, HOST and SERVICE args are ignored.
2985 :remote ADDRESS -- ADDRESS is the remote partner's address for the
2986 connection. This parameter is ignored when opening a stream server
2987 process. For a datagram server process, it specifies the initial
2988 setting of the remote datagram address. When specified for a client
2989 process, the FAMILY, HOST, and SERVICE args are ignored.
2991 The format of ADDRESS depends on the address family:
2992 - An IPv4 address is represented as an vector of integers [A B C D P]
2993 corresponding to numeric IP address A.B.C.D and port number P.
2994 - A local address is represented as a string with the address in the
2995 local address space.
2996 - An "unsupported family" address is represented by a cons (F . AV)
2997 where F is the family number and AV is a vector containing the socket
2998 address data with one element per address data byte. Do not rely on
2999 this format in portable code, as it may depend on implementation
3000 defined constants, data sizes, and data structure alignment.
3002 :coding CODING -- If CODING is a symbol, it specifies the coding
3003 system used for both reading and writing for this process. If CODING
3004 is a cons (DECODING . ENCODING), DECODING is used for reading, and
3005 ENCODING is used for writing.
3007 :nowait BOOL -- If BOOL is non-nil for a stream type client process,
3008 return without waiting for the connection to complete; instead, the
3009 sentinel function will be called with second arg matching "open" (if
3010 successful) or "failed" when the connect completes. Default is to use
3011 a blocking connect (i.e. wait) for stream type connections.
3013 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
3014 running when Emacs is exited.
3016 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
3017 In the stopped state, a server process does not accept new
3018 connections, and a client process does not handle incoming traffic.
3019 The stopped state is cleared by `continue-process' and set by
3022 :filter FILTER -- Install FILTER as the process filter.
3024 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
3025 process filter are multibyte, otherwise they are unibyte.
3026 If this keyword is not specified, the strings are multibyte if
3027 `default-enable-multibyte-characters' is non-nil.
3029 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
3031 :log LOG -- Install LOG as the server process log function. This
3032 function is called when the server accepts a network connection from a
3033 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
3034 is the server process, CLIENT is the new process for the connection,
3035 and MESSAGE is a string.
3037 :plist PLIST -- Install PLIST as the new process' initial plist.
3039 :server QLEN -- if QLEN is non-nil, create a server process for the
3040 specified FAMILY, SERVICE, and connection type (stream or datagram).
3041 If QLEN is an integer, it is used as the max. length of the server's
3042 pending connection queue (also known as the backlog); the default
3043 queue length is 5. Default is to create a client process.
3045 The following network options can be specified for this connection:
3047 :broadcast BOOL -- Allow send and receive of datagram broadcasts.
3048 :dontroute BOOL -- Only send to directly connected hosts.
3049 :keepalive BOOL -- Send keep-alive messages on network stream.
3050 :linger BOOL or TIMEOUT -- Send queued messages before closing.
3051 :oobinline BOOL -- Place out-of-band data in receive data stream.
3052 :priority INT -- Set protocol defined priority for sent packets.
3053 :reuseaddr BOOL -- Allow reusing a recently used local address
3054 (this is allowed by default for a server process).
3055 :bindtodevice NAME -- bind to interface NAME. Using this may require
3056 special privileges on some systems.
3058 Consult the relevant system programmer's manual pages for more
3059 information on using these options.
3062 A server process will listen for and accept connections from clients.
3063 When a client connection is accepted, a new network process is created
3064 for the connection with the following parameters:
3066 - The client's process name is constructed by concatenating the server
3067 process' NAME and a client identification string.
3068 - If the FILTER argument is non-nil, the client process will not get a
3069 separate process buffer; otherwise, the client's process buffer is a newly
3070 created buffer named after the server process' BUFFER name or process
3071 NAME concatenated with the client identification string.
3072 - The connection type and the process filter and sentinel parameters are
3073 inherited from the server process' TYPE, FILTER and SENTINEL.
3074 - The client process' contact info is set according to the client's
3075 addressing information (typically an IP address and a port number).
3076 - The client process' plist is initialized from the server's plist.
3078 Notice that the FILTER and SENTINEL args are never used directly by
3079 the server process. Also, the BUFFER argument is not used directly by
3080 the server process, but via the optional :log function, accepted (and
3081 failed) connections may be logged in the server process' buffer.
3083 The original argument list, modified with the actual connection
3084 information, is available via the `process-contact' function.
3086 usage: (make-network-process &rest ARGS) */)
3087 (int nargs
, Lisp_Object
*args
)
3090 Lisp_Object contact
;
3091 struct Lisp_Process
*p
;
3092 #ifdef HAVE_GETADDRINFO
3093 struct addrinfo ai
, *res
, *lres
;
3094 struct addrinfo hints
;
3095 const char *portstring
;
3097 #else /* HAVE_GETADDRINFO */
3098 struct _emacs_addrinfo
3104 struct sockaddr
*ai_addr
;
3105 struct _emacs_addrinfo
*ai_next
;
3107 #endif /* HAVE_GETADDRINFO */
3108 struct sockaddr_in address_in
;
3109 #ifdef HAVE_LOCAL_SOCKETS
3110 struct sockaddr_un address_un
;
3115 int s
= -1, outch
, inch
;
3116 struct gcpro gcpro1
;
3117 int count
= SPECPDL_INDEX ();
3119 Lisp_Object QCaddress
; /* one of QClocal or QCremote */
3121 Lisp_Object name
, buffer
, host
, service
, address
;
3122 Lisp_Object filter
, sentinel
;
3123 int is_non_blocking_client
= 0;
3124 int is_server
= 0, backlog
= 5;
3131 /* Save arguments for process-contact and clone-process. */
3132 contact
= Flist (nargs
, args
);
3136 /* Ensure socket support is loaded if available. */
3137 init_winsock (TRUE
);
3140 /* :type TYPE (nil: stream, datagram */
3141 tem
= Fplist_get (contact
, QCtype
);
3143 socktype
= SOCK_STREAM
;
3144 #ifdef DATAGRAM_SOCKETS
3145 else if (EQ (tem
, Qdatagram
))
3146 socktype
= SOCK_DGRAM
;
3148 #ifdef HAVE_SEQPACKET
3149 else if (EQ (tem
, Qseqpacket
))
3150 socktype
= SOCK_SEQPACKET
;
3153 error ("Unsupported connection type");
3156 tem
= Fplist_get (contact
, QCserver
);
3159 /* Don't support network sockets when non-blocking mode is
3160 not available, since a blocked Emacs is not useful. */
3161 #if !defined(O_NONBLOCK) && !defined(O_NDELAY)
3162 error ("Network servers not supported");
3166 backlog
= XINT (tem
);
3170 /* Make QCaddress an alias for :local (server) or :remote (client). */
3171 QCaddress
= is_server
? QClocal
: QCremote
;
3174 if (!is_server
&& socktype
!= SOCK_DGRAM
3175 && (tem
= Fplist_get (contact
, QCnowait
), !NILP (tem
)))
3177 #ifndef NON_BLOCKING_CONNECT
3178 error ("Non-blocking connect not supported");
3180 is_non_blocking_client
= 1;
3184 name
= Fplist_get (contact
, QCname
);
3185 buffer
= Fplist_get (contact
, QCbuffer
);
3186 filter
= Fplist_get (contact
, QCfilter
);
3187 sentinel
= Fplist_get (contact
, QCsentinel
);
3189 CHECK_STRING (name
);
3191 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
3192 ai
.ai_socktype
= socktype
;
3197 /* :local ADDRESS or :remote ADDRESS */
3198 address
= Fplist_get (contact
, QCaddress
);
3199 if (!NILP (address
))
3201 host
= service
= Qnil
;
3203 if (!(ai
.ai_addrlen
= get_lisp_to_sockaddr_size (address
, &family
)))
3204 error ("Malformed :address");
3205 ai
.ai_family
= family
;
3206 ai
.ai_addr
= alloca (ai
.ai_addrlen
);
3207 conv_lisp_to_sockaddr (family
, address
, ai
.ai_addr
, ai
.ai_addrlen
);
3211 /* :family FAMILY -- nil (for Inet), local, or integer. */
3212 tem
= Fplist_get (contact
, QCfamily
);
3215 #if defined(HAVE_GETADDRINFO) && defined(AF_INET6)
3221 #ifdef HAVE_LOCAL_SOCKETS
3222 else if (EQ (tem
, Qlocal
))
3226 else if (EQ (tem
, Qipv6
))
3229 else if (EQ (tem
, Qipv4
))
3231 else if (INTEGERP (tem
))
3232 family
= XINT (tem
);
3234 error ("Unknown address family");
3236 ai
.ai_family
= family
;
3238 /* :service SERVICE -- string, integer (port number), or t (random port). */
3239 service
= Fplist_get (contact
, QCservice
);
3241 /* :host HOST -- hostname, ip address, or 'local for localhost. */
3242 host
= Fplist_get (contact
, QChost
);
3245 if (EQ (host
, Qlocal
))
3246 /* Depending on setup, "localhost" may map to different IPv4 and/or
3247 IPv6 addresses, so it's better to be explicit. (Bug#6781) */
3248 host
= build_string ("127.0.0.1");
3249 CHECK_STRING (host
);
3252 #ifdef HAVE_LOCAL_SOCKETS
3253 if (family
== AF_LOCAL
)
3257 message (":family local ignores the :host \"%s\" property",
3259 contact
= Fplist_put (contact
, QChost
, Qnil
);
3262 CHECK_STRING (service
);
3263 memset (&address_un
, 0, sizeof address_un
);
3264 address_un
.sun_family
= AF_LOCAL
;
3265 strncpy (address_un
.sun_path
, SSDATA (service
), sizeof address_un
.sun_path
);
3266 ai
.ai_addr
= (struct sockaddr
*) &address_un
;
3267 ai
.ai_addrlen
= sizeof address_un
;
3272 /* Slow down polling to every ten seconds.
3273 Some kernels have a bug which causes retrying connect to fail
3274 after a connect. Polling can interfere with gethostbyname too. */
3275 #ifdef POLL_FOR_INPUT
3276 if (socktype
!= SOCK_DGRAM
)
3278 record_unwind_protect (unwind_stop_other_atimers
, Qnil
);
3279 bind_polling_period (10);
3283 #ifdef HAVE_GETADDRINFO
3284 /* If we have a host, use getaddrinfo to resolve both host and service.
3285 Otherwise, use getservbyname to lookup the service. */
3289 /* SERVICE can either be a string or int.
3290 Convert to a C string for later use by getaddrinfo. */
3291 if (EQ (service
, Qt
))
3293 else if (INTEGERP (service
))
3295 sprintf (portbuf
, "%ld", (long) XINT (service
));
3296 portstring
= portbuf
;
3300 CHECK_STRING (service
);
3301 portstring
= SSDATA (service
);
3306 memset (&hints
, 0, sizeof (hints
));
3308 hints
.ai_family
= family
;
3309 hints
.ai_socktype
= socktype
;
3310 hints
.ai_protocol
= 0;
3312 #ifdef HAVE_RES_INIT
3316 ret
= getaddrinfo (SSDATA (host
), portstring
, &hints
, &res
);
3318 #ifdef HAVE_GAI_STRERROR
3319 error ("%s/%s %s", SSDATA (host
), portstring
, gai_strerror (ret
));
3321 error ("%s/%s getaddrinfo error %d", SSDATA (host
), portstring
, ret
);
3327 #endif /* HAVE_GETADDRINFO */
3329 /* We end up here if getaddrinfo is not defined, or in case no hostname
3330 has been specified (e.g. for a local server process). */
3332 if (EQ (service
, Qt
))
3334 else if (INTEGERP (service
))
3335 port
= htons ((unsigned short) XINT (service
));
3338 struct servent
*svc_info
;
3339 CHECK_STRING (service
);
3340 svc_info
= getservbyname (SSDATA (service
),
3341 (socktype
== SOCK_DGRAM
? "udp" : "tcp"));
3343 error ("Unknown service: %s", SDATA (service
));
3344 port
= svc_info
->s_port
;
3347 memset (&address_in
, 0, sizeof address_in
);
3348 address_in
.sin_family
= family
;
3349 address_in
.sin_addr
.s_addr
= INADDR_ANY
;
3350 address_in
.sin_port
= port
;
3352 #ifndef HAVE_GETADDRINFO
3355 struct hostent
*host_info_ptr
;
3357 /* gethostbyname may fail with TRY_AGAIN, but we don't honour that,
3358 as it may `hang' Emacs for a very long time. */
3362 #ifdef HAVE_RES_INIT
3366 host_info_ptr
= gethostbyname (SDATA (host
));
3371 memcpy (&address_in
.sin_addr
, host_info_ptr
->h_addr
,
3372 host_info_ptr
->h_length
);
3373 family
= host_info_ptr
->h_addrtype
;
3374 address_in
.sin_family
= family
;
3377 /* Attempt to interpret host as numeric inet address */
3379 unsigned long numeric_addr
;
3380 numeric_addr
= inet_addr (SSDATA (host
));
3381 if (numeric_addr
== -1)
3382 error ("Unknown host \"%s\"", SDATA (host
));
3384 memcpy (&address_in
.sin_addr
, &numeric_addr
,
3385 sizeof (address_in
.sin_addr
));
3389 #endif /* not HAVE_GETADDRINFO */
3391 ai
.ai_family
= family
;
3392 ai
.ai_addr
= (struct sockaddr
*) &address_in
;
3393 ai
.ai_addrlen
= sizeof address_in
;
3397 /* Do this in case we never enter the for-loop below. */
3398 count1
= SPECPDL_INDEX ();
3401 for (lres
= res
; lres
; lres
= lres
->ai_next
)
3407 s
= socket (lres
->ai_family
, lres
->ai_socktype
, lres
->ai_protocol
);
3414 #ifdef DATAGRAM_SOCKETS
3415 if (!is_server
&& socktype
== SOCK_DGRAM
)
3417 #endif /* DATAGRAM_SOCKETS */
3419 #ifdef NON_BLOCKING_CONNECT
3420 if (is_non_blocking_client
)
3423 ret
= fcntl (s
, F_SETFL
, O_NONBLOCK
);
3425 ret
= fcntl (s
, F_SETFL
, O_NDELAY
);
3437 /* Make us close S if quit. */
3438 record_unwind_protect (close_file_unwind
, make_number (s
));
3440 /* Parse network options in the arg list.
3441 We simply ignore anything which isn't a known option (including other keywords).
3442 An error is signaled if setting a known option fails. */
3443 for (optn
= optbits
= 0; optn
< nargs
-1; optn
+= 2)
3444 optbits
|= set_socket_option (s
, args
[optn
], args
[optn
+1]);
3448 /* Configure as a server socket. */
3450 /* SO_REUSEADDR = 1 is default for server sockets; must specify
3451 explicit :reuseaddr key to override this. */
3452 #ifdef HAVE_LOCAL_SOCKETS
3453 if (family
!= AF_LOCAL
)
3455 if (!(optbits
& (1 << OPIX_REUSEADDR
)))
3458 if (setsockopt (s
, SOL_SOCKET
, SO_REUSEADDR
, &optval
, sizeof optval
))
3459 report_file_error ("Cannot set reuse option on server socket", Qnil
);
3462 if (bind (s
, lres
->ai_addr
, lres
->ai_addrlen
))
3463 report_file_error ("Cannot bind server socket", Qnil
);
3465 #ifdef HAVE_GETSOCKNAME
3466 if (EQ (service
, Qt
))
3468 struct sockaddr_in sa1
;
3469 int len1
= sizeof (sa1
);
3470 if (getsockname (s
, (struct sockaddr
*)&sa1
, &len1
) == 0)
3472 ((struct sockaddr_in
*)(lres
->ai_addr
))->sin_port
= sa1
.sin_port
;
3473 service
= make_number (ntohs (sa1
.sin_port
));
3474 contact
= Fplist_put (contact
, QCservice
, service
);
3479 if (socktype
!= SOCK_DGRAM
&& listen (s
, backlog
))
3480 report_file_error ("Cannot listen on server socket", Qnil
);
3488 ret
= connect (s
, lres
->ai_addr
, lres
->ai_addrlen
);
3491 if (ret
== 0 || xerrno
== EISCONN
)
3493 /* The unwind-protect will be discarded afterwards.
3494 Likewise for immediate_quit. */
3498 #ifdef NON_BLOCKING_CONNECT
3500 if (is_non_blocking_client
&& xerrno
== EINPROGRESS
)
3504 if (is_non_blocking_client
&& xerrno
== EWOULDBLOCK
)
3511 if (xerrno
== EINTR
)
3513 /* Unlike most other syscalls connect() cannot be called
3514 again. (That would return EALREADY.) The proper way to
3515 wait for completion is select(). */
3522 sc
= select (s
+ 1, (SELECT_TYPE
*)0, &fdset
, (SELECT_TYPE
*)0,
3529 report_file_error ("select failed", Qnil
);
3533 len
= sizeof xerrno
;
3534 eassert (FD_ISSET (s
, &fdset
));
3535 if (getsockopt (s
, SOL_SOCKET
, SO_ERROR
, &xerrno
, &len
) == -1)
3536 report_file_error ("getsockopt failed", Qnil
);
3538 errno
= xerrno
, report_file_error ("error during connect", Qnil
);
3542 #endif /* !WINDOWSNT */
3546 /* Discard the unwind protect closing S. */
3547 specpdl_ptr
= specpdl
+ count1
;
3552 if (xerrno
== EINTR
)
3559 #ifdef DATAGRAM_SOCKETS
3560 if (socktype
== SOCK_DGRAM
)
3562 if (datagram_address
[s
].sa
)
3564 datagram_address
[s
].sa
= (struct sockaddr
*) xmalloc (lres
->ai_addrlen
);
3565 datagram_address
[s
].len
= lres
->ai_addrlen
;
3569 memset (datagram_address
[s
].sa
, 0, lres
->ai_addrlen
);
3570 if (remote
= Fplist_get (contact
, QCremote
), !NILP (remote
))
3573 rlen
= get_lisp_to_sockaddr_size (remote
, &rfamily
);
3574 if (rfamily
== lres
->ai_family
&& rlen
== lres
->ai_addrlen
)
3575 conv_lisp_to_sockaddr (rfamily
, remote
,
3576 datagram_address
[s
].sa
, rlen
);
3580 memcpy (datagram_address
[s
].sa
, lres
->ai_addr
, lres
->ai_addrlen
);
3583 contact
= Fplist_put (contact
, QCaddress
,
3584 conv_sockaddr_to_lisp (lres
->ai_addr
, lres
->ai_addrlen
));
3585 #ifdef HAVE_GETSOCKNAME
3588 struct sockaddr_in sa1
;
3589 int len1
= sizeof (sa1
);
3590 if (getsockname (s
, (struct sockaddr
*)&sa1
, &len1
) == 0)
3591 contact
= Fplist_put (contact
, QClocal
,
3592 conv_sockaddr_to_lisp ((struct sockaddr
*)&sa1
, len1
));
3599 #ifdef HAVE_GETADDRINFO
3608 /* Discard the unwind protect for closing S, if any. */
3609 specpdl_ptr
= specpdl
+ count1
;
3611 /* Unwind bind_polling_period and request_sigio. */
3612 unbind_to (count
, Qnil
);
3616 /* If non-blocking got this far - and failed - assume non-blocking is
3617 not supported after all. This is probably a wrong assumption, but
3618 the normal blocking calls to open-network-stream handles this error
3620 if (is_non_blocking_client
)
3625 report_file_error ("make server process failed", contact
);
3627 report_file_error ("make client process failed", contact
);
3634 buffer
= Fget_buffer_create (buffer
);
3635 proc
= make_process (name
);
3637 chan_process
[inch
] = proc
;
3640 fcntl (inch
, F_SETFL
, O_NONBLOCK
);
3643 fcntl (inch
, F_SETFL
, O_NDELAY
);
3647 p
= XPROCESS (proc
);
3649 p
->childp
= contact
;
3650 p
->plist
= Fcopy_sequence (Fplist_get (contact
, QCplist
));
3654 p
->sentinel
= sentinel
;
3656 p
->log
= Fplist_get (contact
, QClog
);
3657 if (tem
= Fplist_get (contact
, QCnoquery
), !NILP (tem
))
3658 p
->kill_without_query
= 1;
3659 if ((tem
= Fplist_get (contact
, QCstop
), !NILP (tem
)))
3664 if (is_server
&& socktype
!= SOCK_DGRAM
)
3665 p
->status
= Qlisten
;
3667 /* Make the process marker point into the process buffer (if any). */
3668 if (BUFFERP (buffer
))
3669 set_marker_both (p
->mark
, buffer
,
3670 BUF_ZV (XBUFFER (buffer
)),
3671 BUF_ZV_BYTE (XBUFFER (buffer
)));
3673 #ifdef NON_BLOCKING_CONNECT
3674 if (is_non_blocking_client
)
3676 /* We may get here if connect did succeed immediately. However,
3677 in that case, we still need to signal this like a non-blocking
3679 p
->status
= Qconnect
;
3680 if (!FD_ISSET (inch
, &connect_wait_mask
))
3682 FD_SET (inch
, &connect_wait_mask
);
3683 FD_SET (inch
, &write_mask
);
3684 num_pending_connects
++;
3689 /* A server may have a client filter setting of Qt, but it must
3690 still listen for incoming connects unless it is stopped. */
3691 if ((!EQ (p
->filter
, Qt
) && !EQ (p
->command
, Qt
))
3692 || (EQ (p
->status
, Qlisten
) && NILP (p
->command
)))
3694 FD_SET (inch
, &input_wait_mask
);
3695 FD_SET (inch
, &non_keyboard_wait_mask
);
3698 if (inch
> max_process_desc
)
3699 max_process_desc
= inch
;
3701 tem
= Fplist_member (contact
, QCcoding
);
3702 if (!NILP (tem
) && (!CONSP (tem
) || !CONSP (XCDR (tem
))))
3703 tem
= Qnil
; /* No error message (too late!). */
3706 /* Setup coding systems for communicating with the network stream. */
3707 struct gcpro gcpro1
;
3708 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3709 Lisp_Object coding_systems
= Qt
;
3710 Lisp_Object args
[5], val
;
3714 val
= XCAR (XCDR (tem
));
3718 else if (!NILP (Vcoding_system_for_read
))
3719 val
= Vcoding_system_for_read
;
3720 else if ((!NILP (buffer
) && NILP (XBUFFER (buffer
)->enable_multibyte_characters
))
3721 || (NILP (buffer
) && NILP (buffer_defaults
.enable_multibyte_characters
)))
3722 /* We dare not decode end-of-line format by setting VAL to
3723 Qraw_text, because the existing Emacs Lisp libraries
3724 assume that they receive bare code including a sequene of
3729 if (NILP (host
) || NILP (service
))
3730 coding_systems
= Qnil
;
3733 args
[0] = Qopen_network_stream
, args
[1] = name
,
3734 args
[2] = buffer
, args
[3] = host
, args
[4] = service
;
3736 coding_systems
= Ffind_operation_coding_system (5, args
);
3739 if (CONSP (coding_systems
))
3740 val
= XCAR (coding_systems
);
3741 else if (CONSP (Vdefault_process_coding_system
))
3742 val
= XCAR (Vdefault_process_coding_system
);
3746 p
->decode_coding_system
= val
;
3750 val
= XCAR (XCDR (tem
));
3754 else if (!NILP (Vcoding_system_for_write
))
3755 val
= Vcoding_system_for_write
;
3756 else if (NILP (current_buffer
->enable_multibyte_characters
))
3760 if (EQ (coding_systems
, Qt
))
3762 if (NILP (host
) || NILP (service
))
3763 coding_systems
= Qnil
;
3766 args
[0] = Qopen_network_stream
, args
[1] = name
,
3767 args
[2] = buffer
, args
[3] = host
, args
[4] = service
;
3769 coding_systems
= Ffind_operation_coding_system (5, args
);
3773 if (CONSP (coding_systems
))
3774 val
= XCDR (coding_systems
);
3775 else if (CONSP (Vdefault_process_coding_system
))
3776 val
= XCDR (Vdefault_process_coding_system
);
3780 p
->encode_coding_system
= val
;
3782 setup_process_coding_systems (proc
);
3784 p
->decoding_buf
= make_uninit_string (0);
3785 p
->decoding_carryover
= 0;
3786 p
->encoding_buf
= make_uninit_string (0);
3788 p
->inherit_coding_system_flag
3789 = !(!NILP (tem
) || NILP (buffer
) || !inherit_process_coding_system
);
3796 #if defined(HAVE_NET_IF_H)
3799 DEFUN ("network-interface-list", Fnetwork_interface_list
, Snetwork_interface_list
, 0, 0, 0,
3800 doc
: /* Return an alist of all network interfaces and their network address.
3801 Each element is a cons, the car of which is a string containing the
3802 interface name, and the cdr is the network address in internal
3803 format; see the description of ADDRESS in `make-network-process'. */)
3806 struct ifconf ifconf
;
3807 struct ifreq
*ifreqs
= NULL
;
3812 s
= socket (AF_INET
, SOCK_STREAM
, 0);
3818 buf_size
= ifaces
* sizeof (ifreqs
[0]);
3819 ifreqs
= (struct ifreq
*)xrealloc(ifreqs
, buf_size
);
3826 ifconf
.ifc_len
= buf_size
;
3827 ifconf
.ifc_req
= ifreqs
;
3828 if (ioctl (s
, SIOCGIFCONF
, &ifconf
))
3834 if (ifconf
.ifc_len
== buf_size
)
3838 ifaces
= ifconf
.ifc_len
/ sizeof (ifreqs
[0]);
3841 while (--ifaces
>= 0)
3843 struct ifreq
*ifq
= &ifreqs
[ifaces
];
3844 char namebuf
[sizeof (ifq
->ifr_name
) + 1];
3845 if (ifq
->ifr_addr
.sa_family
!= AF_INET
)
3847 memcpy (namebuf
, ifq
->ifr_name
, sizeof (ifq
->ifr_name
));
3848 namebuf
[sizeof (ifq
->ifr_name
)] = 0;
3849 res
= Fcons (Fcons (build_string (namebuf
),
3850 conv_sockaddr_to_lisp (&ifq
->ifr_addr
,
3851 sizeof (struct sockaddr
))),
3857 #endif /* SIOCGIFCONF */
3859 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
3863 const char *flag_sym
;
3866 static const struct ifflag_def ifflag_table
[] = {
3870 #ifdef IFF_BROADCAST
3871 { IFF_BROADCAST
, "broadcast" },
3874 { IFF_DEBUG
, "debug" },
3877 { IFF_LOOPBACK
, "loopback" },
3879 #ifdef IFF_POINTOPOINT
3880 { IFF_POINTOPOINT
, "pointopoint" },
3883 { IFF_RUNNING
, "running" },
3886 { IFF_NOARP
, "noarp" },
3889 { IFF_PROMISC
, "promisc" },
3891 #ifdef IFF_NOTRAILERS
3892 { IFF_NOTRAILERS
, "notrailers" },
3895 { IFF_ALLMULTI
, "allmulti" },
3898 { IFF_MASTER
, "master" },
3901 { IFF_SLAVE
, "slave" },
3903 #ifdef IFF_MULTICAST
3904 { IFF_MULTICAST
, "multicast" },
3907 { IFF_PORTSEL
, "portsel" },
3909 #ifdef IFF_AUTOMEDIA
3910 { IFF_AUTOMEDIA
, "automedia" },
3913 { IFF_DYNAMIC
, "dynamic" },
3916 { IFF_OACTIVE
, "oactive" }, /* OpenBSD: transmission in progress */
3919 { IFF_SIMPLEX
, "simplex" }, /* OpenBSD: can't hear own transmissions */
3922 { IFF_LINK0
, "link0" }, /* OpenBSD: per link layer defined bit */
3925 { IFF_LINK1
, "link1" }, /* OpenBSD: per link layer defined bit */
3928 { IFF_LINK2
, "link2" }, /* OpenBSD: per link layer defined bit */
3933 DEFUN ("network-interface-info", Fnetwork_interface_info
, Snetwork_interface_info
, 1, 1, 0,
3934 doc
: /* Return information about network interface named IFNAME.
3935 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
3936 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
3937 NETMASK is the layer 3 network mask, HWADDR is the layer 2 addres, and
3938 FLAGS is the current flags of the interface. */)
3939 (Lisp_Object ifname
)
3942 Lisp_Object res
= Qnil
;
3947 CHECK_STRING (ifname
);
3949 memset (rq
.ifr_name
, 0, sizeof rq
.ifr_name
);
3950 strncpy (rq
.ifr_name
, SDATA (ifname
), sizeof (rq
.ifr_name
));
3952 s
= socket (AF_INET
, SOCK_STREAM
, 0);
3957 #if defined(SIOCGIFFLAGS) && defined(HAVE_STRUCT_IFREQ_IFR_FLAGS)
3958 if (ioctl (s
, SIOCGIFFLAGS
, &rq
) == 0)
3960 int flags
= rq
.ifr_flags
;
3961 const struct ifflag_def
*fp
;
3965 for (fp
= ifflag_table
; flags
!= 0 && fp
->flag_sym
; fp
++)
3967 if (flags
& fp
->flag_bit
)
3969 elt
= Fcons (intern (fp
->flag_sym
), elt
);
3970 flags
-= fp
->flag_bit
;
3973 for (fnum
= 0; flags
&& fnum
< 32; fnum
++)
3975 if (flags
& (1 << fnum
))
3977 elt
= Fcons (make_number (fnum
), elt
);
3982 res
= Fcons (elt
, res
);
3985 #if defined(SIOCGIFHWADDR) && defined(HAVE_STRUCT_IFREQ_IFR_HWADDR)
3986 if (ioctl (s
, SIOCGIFHWADDR
, &rq
) == 0)
3988 Lisp_Object hwaddr
= Fmake_vector (make_number (6), Qnil
);
3989 register struct Lisp_Vector
*p
= XVECTOR (hwaddr
);
3993 for (n
= 0; n
< 6; n
++)
3994 p
->contents
[n
] = make_number (((unsigned char *)&rq
.ifr_hwaddr
.sa_data
[0])[n
]);
3995 elt
= Fcons (make_number (rq
.ifr_hwaddr
.sa_family
), hwaddr
);
3998 res
= Fcons (elt
, res
);
4001 #if defined(SIOCGIFNETMASK) && (defined(HAVE_STRUCT_IFREQ_IFR_NETMASK) || defined(HAVE_STRUCT_IFREQ_IFR_ADDR))
4002 if (ioctl (s
, SIOCGIFNETMASK
, &rq
) == 0)
4005 #ifdef HAVE_STRUCT_IFREQ_IFR_NETMASK
4006 elt
= conv_sockaddr_to_lisp (&rq
.ifr_netmask
, sizeof (rq
.ifr_netmask
));
4008 elt
= conv_sockaddr_to_lisp (&rq
.ifr_addr
, sizeof (rq
.ifr_addr
));
4012 res
= Fcons (elt
, res
);
4015 #if defined(SIOCGIFBRDADDR) && defined(HAVE_STRUCT_IFREQ_IFR_BROADADDR)
4016 if (ioctl (s
, SIOCGIFBRDADDR
, &rq
) == 0)
4019 elt
= conv_sockaddr_to_lisp (&rq
.ifr_broadaddr
, sizeof (rq
.ifr_broadaddr
));
4022 res
= Fcons (elt
, res
);
4025 #if defined(SIOCGIFADDR) && defined(HAVE_STRUCT_IFREQ_IFR_ADDR)
4026 if (ioctl (s
, SIOCGIFADDR
, &rq
) == 0)
4029 elt
= conv_sockaddr_to_lisp (&rq
.ifr_addr
, sizeof (rq
.ifr_addr
));
4032 res
= Fcons (elt
, res
);
4036 return any
? res
: Qnil
;
4039 #endif /* defined(HAVE_NET_IF_H) */
4041 /* Turn off input and output for process PROC. */
4044 deactivate_process (Lisp_Object proc
)
4046 register int inchannel
, outchannel
;
4047 register struct Lisp_Process
*p
= XPROCESS (proc
);
4049 inchannel
= p
->infd
;
4050 outchannel
= p
->outfd
;
4052 #ifdef ADAPTIVE_READ_BUFFERING
4053 if (p
->read_output_delay
> 0)
4055 if (--process_output_delay_count
< 0)
4056 process_output_delay_count
= 0;
4057 p
->read_output_delay
= 0;
4058 p
->read_output_skip
= 0;
4064 /* Beware SIGCHLD hereabouts. */
4065 flush_pending_output (inchannel
);
4066 emacs_close (inchannel
);
4067 if (outchannel
>= 0 && outchannel
!= inchannel
)
4068 emacs_close (outchannel
);
4072 #ifdef DATAGRAM_SOCKETS
4073 if (DATAGRAM_CHAN_P (inchannel
))
4075 xfree (datagram_address
[inchannel
].sa
);
4076 datagram_address
[inchannel
].sa
= 0;
4077 datagram_address
[inchannel
].len
= 0;
4080 chan_process
[inchannel
] = Qnil
;
4081 FD_CLR (inchannel
, &input_wait_mask
);
4082 FD_CLR (inchannel
, &non_keyboard_wait_mask
);
4083 #ifdef NON_BLOCKING_CONNECT
4084 if (FD_ISSET (inchannel
, &connect_wait_mask
))
4086 FD_CLR (inchannel
, &connect_wait_mask
);
4087 FD_CLR (inchannel
, &write_mask
);
4088 if (--num_pending_connects
< 0)
4092 if (inchannel
== max_process_desc
)
4095 /* We just closed the highest-numbered process input descriptor,
4096 so recompute the highest-numbered one now. */
4097 max_process_desc
= 0;
4098 for (i
= 0; i
< MAXDESC
; i
++)
4099 if (!NILP (chan_process
[i
]))
4100 max_process_desc
= i
;
4106 DEFUN ("accept-process-output", Faccept_process_output
, Saccept_process_output
,
4108 doc
: /* Allow any pending output from subprocesses to be read by Emacs.
4109 It is read into the process' buffers or given to their filter functions.
4110 Non-nil arg PROCESS means do not return until some output has been received
4113 Non-nil second arg SECONDS and third arg MILLISEC are number of seconds
4114 and milliseconds to wait; return after that much time whether or not
4115 there is any subprocess output. If SECONDS is a floating point number,
4116 it specifies a fractional number of seconds to wait.
4117 The MILLISEC argument is obsolete and should be avoided.
4119 If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
4120 from PROCESS, suspending reading output from other processes.
4121 If JUST-THIS-ONE is an integer, don't run any timers either.
4122 Return non-nil if we received any output before the timeout expired. */)
4123 (register Lisp_Object process
, Lisp_Object seconds
, Lisp_Object millisec
, Lisp_Object just_this_one
)
4125 int secs
, usecs
= 0;
4127 if (! NILP (process
))
4128 CHECK_PROCESS (process
);
4130 just_this_one
= Qnil
;
4132 if (!NILP (millisec
))
4133 { /* Obsolete calling convention using integers rather than floats. */
4134 CHECK_NUMBER (millisec
);
4136 seconds
= make_float (XINT (millisec
) / 1000.0);
4139 CHECK_NUMBER (seconds
);
4140 seconds
= make_float (XINT (millisec
) / 1000.0 + XINT (seconds
));
4144 if (!NILP (seconds
))
4146 if (INTEGERP (seconds
))
4147 secs
= XINT (seconds
);
4148 else if (FLOATP (seconds
))
4150 double timeout
= XFLOAT_DATA (seconds
);
4151 secs
= (int) timeout
;
4152 usecs
= (int) ((timeout
- (double) secs
) * 1000000);
4155 wrong_type_argument (Qnumberp
, seconds
);
4157 if (secs
< 0 || (secs
== 0 && usecs
== 0))
4158 secs
= -1, usecs
= 0;
4161 secs
= NILP (process
) ? -1 : 0;
4164 (wait_reading_process_output (secs
, usecs
, 0, 0,
4166 !NILP (process
) ? XPROCESS (process
) : NULL
,
4167 NILP (just_this_one
) ? 0 :
4168 !INTEGERP (just_this_one
) ? 1 : -1)
4172 /* Accept a connection for server process SERVER on CHANNEL. */
4174 static int connect_counter
= 0;
4177 server_accept_connection (Lisp_Object server
, int channel
)
4179 Lisp_Object proc
, caller
, name
, buffer
;
4180 Lisp_Object contact
, host
, service
;
4181 struct Lisp_Process
*ps
= XPROCESS (server
);
4182 struct Lisp_Process
*p
;
4186 struct sockaddr_in in
;
4188 struct sockaddr_in6 in6
;
4190 #ifdef HAVE_LOCAL_SOCKETS
4191 struct sockaddr_un un
;
4194 int len
= sizeof saddr
;
4196 s
= accept (channel
, &saddr
.sa
, &len
);
4205 if (code
== EWOULDBLOCK
)
4209 if (!NILP (ps
->log
))
4210 call3 (ps
->log
, server
, Qnil
,
4211 concat3 (build_string ("accept failed with code"),
4212 Fnumber_to_string (make_number (code
)),
4213 build_string ("\n")));
4219 /* Setup a new process to handle the connection. */
4221 /* Generate a unique identification of the caller, and build contact
4222 information for this process. */
4225 switch (saddr
.sa
.sa_family
)
4229 Lisp_Object args
[5];
4230 unsigned char *ip
= (unsigned char *)&saddr
.in
.sin_addr
.s_addr
;
4231 args
[0] = build_string ("%d.%d.%d.%d");
4232 args
[1] = make_number (*ip
++);
4233 args
[2] = make_number (*ip
++);
4234 args
[3] = make_number (*ip
++);
4235 args
[4] = make_number (*ip
++);
4236 host
= Fformat (5, args
);
4237 service
= make_number (ntohs (saddr
.in
.sin_port
));
4239 args
[0] = build_string (" <%s:%d>");
4242 caller
= Fformat (3, args
);
4249 Lisp_Object args
[9];
4250 uint16_t *ip6
= (uint16_t *)&saddr
.in6
.sin6_addr
;
4252 args
[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
4253 for (i
= 0; i
< 8; i
++)
4254 args
[i
+1] = make_number (ntohs (ip6
[i
]));
4255 host
= Fformat (9, args
);
4256 service
= make_number (ntohs (saddr
.in
.sin_port
));
4258 args
[0] = build_string (" <[%s]:%d>");
4261 caller
= Fformat (3, args
);
4266 #ifdef HAVE_LOCAL_SOCKETS
4270 caller
= Fnumber_to_string (make_number (connect_counter
));
4271 caller
= concat3 (build_string (" <"), caller
, build_string (">"));
4275 /* Create a new buffer name for this process if it doesn't have a
4276 filter. The new buffer name is based on the buffer name or
4277 process name of the server process concatenated with the caller
4280 if (!NILP (ps
->filter
) && !EQ (ps
->filter
, Qt
))
4284 buffer
= ps
->buffer
;
4286 buffer
= Fbuffer_name (buffer
);
4291 buffer
= concat2 (buffer
, caller
);
4292 buffer
= Fget_buffer_create (buffer
);
4296 /* Generate a unique name for the new server process. Combine the
4297 server process name with the caller identification. */
4299 name
= concat2 (ps
->name
, caller
);
4300 proc
= make_process (name
);
4302 chan_process
[s
] = proc
;
4305 fcntl (s
, F_SETFL
, O_NONBLOCK
);
4308 fcntl (s
, F_SETFL
, O_NDELAY
);
4312 p
= XPROCESS (proc
);
4314 /* Build new contact information for this setup. */
4315 contact
= Fcopy_sequence (ps
->childp
);
4316 contact
= Fplist_put (contact
, QCserver
, Qnil
);
4317 contact
= Fplist_put (contact
, QChost
, host
);
4318 if (!NILP (service
))
4319 contact
= Fplist_put (contact
, QCservice
, service
);
4320 contact
= Fplist_put (contact
, QCremote
,
4321 conv_sockaddr_to_lisp (&saddr
.sa
, len
));
4322 #ifdef HAVE_GETSOCKNAME
4324 if (getsockname (s
, &saddr
.sa
, &len
) == 0)
4325 contact
= Fplist_put (contact
, QClocal
,
4326 conv_sockaddr_to_lisp (&saddr
.sa
, len
));
4329 p
->childp
= contact
;
4330 p
->plist
= Fcopy_sequence (ps
->plist
);
4334 p
->sentinel
= ps
->sentinel
;
4335 p
->filter
= ps
->filter
;
4342 /* Client processes for accepted connections are not stopped initially. */
4343 if (!EQ (p
->filter
, Qt
))
4345 FD_SET (s
, &input_wait_mask
);
4346 FD_SET (s
, &non_keyboard_wait_mask
);
4349 if (s
> max_process_desc
)
4350 max_process_desc
= s
;
4352 /* Setup coding system for new process based on server process.
4353 This seems to be the proper thing to do, as the coding system
4354 of the new process should reflect the settings at the time the
4355 server socket was opened; not the current settings. */
4357 p
->decode_coding_system
= ps
->decode_coding_system
;
4358 p
->encode_coding_system
= ps
->encode_coding_system
;
4359 setup_process_coding_systems (proc
);
4361 p
->decoding_buf
= make_uninit_string (0);
4362 p
->decoding_carryover
= 0;
4363 p
->encoding_buf
= make_uninit_string (0);
4365 p
->inherit_coding_system_flag
4366 = (NILP (buffer
) ? 0 : ps
->inherit_coding_system_flag
);
4368 if (!NILP (ps
->log
))
4369 call3 (ps
->log
, server
, proc
,
4370 concat3 (build_string ("accept from "),
4371 (STRINGP (host
) ? host
: build_string ("-")),
4372 build_string ("\n")));
4374 if (!NILP (p
->sentinel
))
4375 exec_sentinel (proc
,
4376 concat3 (build_string ("open from "),
4377 (STRINGP (host
) ? host
: build_string ("-")),
4378 build_string ("\n")));
4381 /* This variable is different from waiting_for_input in keyboard.c.
4382 It is used to communicate to a lisp process-filter/sentinel (via the
4383 function Fwaiting_for_user_input_p below) whether Emacs was waiting
4384 for user-input when that process-filter was called.
4385 waiting_for_input cannot be used as that is by definition 0 when
4386 lisp code is being evalled.
4387 This is also used in record_asynch_buffer_change.
4388 For that purpose, this must be 0
4389 when not inside wait_reading_process_output. */
4390 static int waiting_for_user_input_p
;
4393 wait_reading_process_output_unwind (Lisp_Object data
)
4395 waiting_for_user_input_p
= XINT (data
);
4399 /* This is here so breakpoints can be put on it. */
4401 wait_reading_process_output_1 (void)
4405 /* Use a wrapper around select to work around a bug in gdb 5.3.
4406 Normally, the wrapper is optimized away by inlining.
4408 If emacs is stopped inside select, the gdb backtrace doesn't
4409 show the function which called select, so it is practically
4410 impossible to step through wait_reading_process_output. */
4414 select_wrapper (int n
, fd_set
*rfd
, fd_set
*wfd
, fd_set
*xfd
, struct timeval
*tmo
)
4416 return select (n
, rfd
, wfd
, xfd
, tmo
);
4418 #define select select_wrapper
4421 /* Read and dispose of subprocess output while waiting for timeout to
4422 elapse and/or keyboard input to be available.
4425 timeout in seconds, or
4426 zero for no limit, or
4427 -1 means gobble data immediately available but don't wait for any.
4430 an additional duration to wait, measured in microseconds.
4431 If this is nonzero and time_limit is 0, then the timeout
4432 consists of MICROSECS only.
4434 READ_KBD is a lisp value:
4435 0 to ignore keyboard input, or
4436 1 to return when input is available, or
4437 -1 meaning caller will actually read the input, so don't throw to
4438 the quit handler, or
4440 DO_DISPLAY != 0 means redisplay should be done to show subprocess
4441 output that arrives.
4443 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4444 (and gobble terminal input into the buffer if any arrives).
4446 If WAIT_PROC is specified, wait until something arrives from that
4447 process. The return value is true if we read some input from
4450 If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC
4451 (suspending output from other processes). A negative value
4452 means don't run any timers either.
4454 If WAIT_PROC is specified, then the function returns true if we
4455 received input from that process before the timeout elapsed.
4456 Otherwise, return true if we received input from any process. */
4459 wait_reading_process_output (int time_limit
, int microsecs
, int read_kbd
,
4461 Lisp_Object wait_for_cell
,
4462 struct Lisp_Process
*wait_proc
, int just_wait_proc
)
4464 register int channel
, nfds
;
4465 SELECT_TYPE Available
;
4466 SELECT_TYPE Writeok
;
4468 int check_delay
, no_avail
;
4471 EMACS_TIME timeout
, end_time
;
4472 int wait_channel
= -1;
4473 int got_some_input
= 0;
4474 int count
= SPECPDL_INDEX ();
4476 FD_ZERO (&Available
);
4479 if (time_limit
== 0 && microsecs
== 0 && wait_proc
&& !NILP (Vinhibit_quit
)
4480 && !(CONSP (wait_proc
->status
) && EQ (XCAR (wait_proc
->status
), Qexit
)))
4481 message ("Blocking call to accept-process-output with quit inhibited!!");
4483 /* If wait_proc is a process to watch, set wait_channel accordingly. */
4484 if (wait_proc
!= NULL
)
4485 wait_channel
= wait_proc
->infd
;
4487 record_unwind_protect (wait_reading_process_output_unwind
,
4488 make_number (waiting_for_user_input_p
));
4489 waiting_for_user_input_p
= read_kbd
;
4491 /* Since we may need to wait several times,
4492 compute the absolute time to return at. */
4493 if (time_limit
|| microsecs
)
4495 EMACS_GET_TIME (end_time
);
4496 EMACS_SET_SECS_USECS (timeout
, time_limit
, microsecs
);
4497 EMACS_ADD_TIME (end_time
, end_time
, timeout
);
4502 int timeout_reduced_for_timers
= 0;
4504 /* If calling from keyboard input, do not quit
4505 since we want to return C-g as an input character.
4506 Otherwise, do pending quit if requested. */
4511 process_pending_signals ();
4514 /* Exit now if the cell we're waiting for became non-nil. */
4515 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
4518 /* Compute time from now till when time limit is up */
4519 /* Exit if already run out */
4520 if (time_limit
== -1)
4522 /* -1 specified for timeout means
4523 gobble output available now
4524 but don't wait at all. */
4526 EMACS_SET_SECS_USECS (timeout
, 0, 0);
4528 else if (time_limit
|| microsecs
)
4530 EMACS_GET_TIME (timeout
);
4531 EMACS_SUB_TIME (timeout
, end_time
, timeout
);
4532 if (EMACS_TIME_NEG_P (timeout
))
4537 EMACS_SET_SECS_USECS (timeout
, 100000, 0);
4540 /* Normally we run timers here.
4541 But not if wait_for_cell; in those cases,
4542 the wait is supposed to be short,
4543 and those callers cannot handle running arbitrary Lisp code here. */
4544 if (NILP (wait_for_cell
)
4545 && just_wait_proc
>= 0)
4547 EMACS_TIME timer_delay
;
4551 int old_timers_run
= timers_run
;
4552 struct buffer
*old_buffer
= current_buffer
;
4553 Lisp_Object old_window
= selected_window
;
4555 timer_delay
= timer_check (1);
4557 /* If a timer has run, this might have changed buffers
4558 an alike. Make read_key_sequence aware of that. */
4559 if (timers_run
!= old_timers_run
4560 && (old_buffer
!= current_buffer
4561 || !EQ (old_window
, selected_window
))
4562 && waiting_for_user_input_p
== -1)
4563 record_asynch_buffer_change ();
4565 if (timers_run
!= old_timers_run
&& do_display
)
4566 /* We must retry, since a timer may have requeued itself
4567 and that could alter the time_delay. */
4568 redisplay_preserve_echo_area (9);
4572 while (!detect_input_pending ());
4574 /* If there is unread keyboard input, also return. */
4576 && requeued_events_pending_p ())
4579 if (! EMACS_TIME_NEG_P (timer_delay
) && time_limit
!= -1)
4581 EMACS_TIME difference
;
4582 EMACS_SUB_TIME (difference
, timer_delay
, timeout
);
4583 if (EMACS_TIME_NEG_P (difference
))
4585 timeout
= timer_delay
;
4586 timeout_reduced_for_timers
= 1;
4589 /* If time_limit is -1, we are not going to wait at all. */
4590 else if (time_limit
!= -1)
4592 /* This is so a breakpoint can be put here. */
4593 wait_reading_process_output_1 ();
4597 /* Cause C-g and alarm signals to take immediate action,
4598 and cause input available signals to zero out timeout.
4600 It is important that we do this before checking for process
4601 activity. If we get a SIGCHLD after the explicit checks for
4602 process activity, timeout is the only way we will know. */
4604 set_waiting_for_input (&timeout
);
4606 /* If status of something has changed, and no input is
4607 available, notify the user of the change right away. After
4608 this explicit check, we'll let the SIGCHLD handler zap
4609 timeout to get our attention. */
4610 if (update_tick
!= process_tick
)
4615 if (kbd_on_hold_p ())
4618 Atemp
= input_wait_mask
;
4621 EMACS_SET_SECS_USECS (timeout
, 0, 0);
4622 if ((select (max (max_process_desc
, max_input_desc
) + 1,
4624 #ifdef NON_BLOCKING_CONNECT
4625 (num_pending_connects
> 0 ? &Ctemp
: (SELECT_TYPE
*)0),
4629 (SELECT_TYPE
*)0, &timeout
)
4632 /* It's okay for us to do this and then continue with
4633 the loop, since timeout has already been zeroed out. */
4634 clear_waiting_for_input ();
4635 status_notify (NULL
);
4636 if (do_display
) redisplay_preserve_echo_area (13);
4640 /* Don't wait for output from a non-running process. Just
4641 read whatever data has already been received. */
4642 if (wait_proc
&& wait_proc
->raw_status_new
)
4643 update_status (wait_proc
);
4645 && ! EQ (wait_proc
->status
, Qrun
)
4646 && ! EQ (wait_proc
->status
, Qconnect
))
4648 int nread
, total_nread
= 0;
4650 clear_waiting_for_input ();
4651 XSETPROCESS (proc
, wait_proc
);
4653 /* Read data from the process, until we exhaust it. */
4654 while (wait_proc
->infd
>= 0)
4656 nread
= read_process_output (proc
, wait_proc
->infd
);
4663 total_nread
+= nread
;
4667 else if (nread
== -1 && EIO
== errno
)
4671 else if (nread
== -1 && EAGAIN
== errno
)
4675 else if (nread
== -1 && EWOULDBLOCK
== errno
)
4679 if (total_nread
> 0 && do_display
)
4680 redisplay_preserve_echo_area (10);
4685 /* Wait till there is something to do */
4687 if (wait_proc
&& just_wait_proc
)
4689 if (wait_proc
->infd
< 0) /* Terminated */
4691 FD_SET (wait_proc
->infd
, &Available
);
4695 else if (!NILP (wait_for_cell
))
4697 Available
= non_process_wait_mask
;
4704 Available
= non_keyboard_wait_mask
;
4706 Available
= input_wait_mask
;
4707 Writeok
= write_mask
;
4708 #ifdef SELECT_CANT_DO_WRITE_MASK
4713 check_delay
= wait_channel
>= 0 ? 0 : process_output_delay_count
;
4716 /* If frame size has changed or the window is newly mapped,
4717 redisplay now, before we start to wait. There is a race
4718 condition here; if a SIGIO arrives between now and the select
4719 and indicates that a frame is trashed, the select may block
4720 displaying a trashed screen. */
4721 if (frame_garbaged
&& do_display
)
4723 clear_waiting_for_input ();
4724 redisplay_preserve_echo_area (11);
4726 set_waiting_for_input (&timeout
);
4730 if (read_kbd
&& detect_input_pending ())
4738 #ifdef ADAPTIVE_READ_BUFFERING
4739 /* Set the timeout for adaptive read buffering if any
4740 process has non-zero read_output_skip and non-zero
4741 read_output_delay, and we are not reading output for a
4742 specific wait_channel. It is not executed if
4743 Vprocess_adaptive_read_buffering is nil. */
4744 if (process_output_skip
&& check_delay
> 0)
4746 int usecs
= EMACS_USECS (timeout
);
4747 if (EMACS_SECS (timeout
) > 0 || usecs
> READ_OUTPUT_DELAY_MAX
)
4748 usecs
= READ_OUTPUT_DELAY_MAX
;
4749 for (channel
= 0; check_delay
> 0 && channel
<= max_process_desc
; channel
++)
4751 proc
= chan_process
[channel
];
4754 /* Find minimum non-zero read_output_delay among the
4755 processes with non-zero read_output_skip. */
4756 if (XPROCESS (proc
)->read_output_delay
> 0)
4759 if (!XPROCESS (proc
)->read_output_skip
)
4761 FD_CLR (channel
, &Available
);
4762 XPROCESS (proc
)->read_output_skip
= 0;
4763 if (XPROCESS (proc
)->read_output_delay
< usecs
)
4764 usecs
= XPROCESS (proc
)->read_output_delay
;
4767 EMACS_SET_SECS_USECS (timeout
, 0, usecs
);
4768 process_output_skip
= 0;
4771 #if defined (USE_GTK) || defined (HAVE_GCONF)
4773 #elif defined (HAVE_NS)
4778 (max (max_process_desc
, max_input_desc
) + 1,
4780 (check_write
? &Writeok
: (SELECT_TYPE
*)0),
4781 (SELECT_TYPE
*)0, &timeout
);
4786 /* Make C-g and alarm signals set flags again */
4787 clear_waiting_for_input ();
4789 /* If we woke up due to SIGWINCH, actually change size now. */
4790 do_pending_window_change (0);
4792 if (time_limit
&& nfds
== 0 && ! timeout_reduced_for_timers
)
4793 /* We wanted the full specified time, so return now. */
4797 if (xerrno
== EINTR
)
4799 else if (xerrno
== EBADF
)
4802 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
4803 the child's closure of the pts gives the parent a SIGHUP, and
4804 the ptc file descriptor is automatically closed,
4805 yielding EBADF here or at select() call above.
4806 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
4807 in m/ibmrt-aix.h), and here we just ignore the select error.
4808 Cleanup occurs c/o status_notify after SIGCLD. */
4809 no_avail
= 1; /* Cannot depend on values returned */
4815 error ("select error: %s", emacs_strerror (xerrno
));
4820 FD_ZERO (&Available
);
4824 #if 0 /* When polling is used, interrupt_input is 0,
4825 so get_input_pending should read the input.
4826 So this should not be needed. */
4827 /* If we are using polling for input,
4828 and we see input available, make it get read now.
4829 Otherwise it might not actually get read for a second.
4830 And on hpux, since we turn off polling in wait_reading_process_output,
4831 it might never get read at all if we don't spend much time
4832 outside of wait_reading_process_output. */
4833 if (read_kbd
&& interrupt_input
4834 && keyboard_bit_set (&Available
)
4835 && input_polling_used ())
4836 kill (getpid (), SIGALRM
);
4839 /* Check for keyboard input */
4840 /* If there is any, return immediately
4841 to give it higher priority than subprocesses */
4845 int old_timers_run
= timers_run
;
4846 struct buffer
*old_buffer
= current_buffer
;
4847 Lisp_Object old_window
= selected_window
;
4850 if (detect_input_pending_run_timers (do_display
))
4852 swallow_events (do_display
);
4853 if (detect_input_pending_run_timers (do_display
))
4857 /* If a timer has run, this might have changed buffers
4858 an alike. Make read_key_sequence aware of that. */
4859 if (timers_run
!= old_timers_run
4860 && waiting_for_user_input_p
== -1
4861 && (old_buffer
!= current_buffer
4862 || !EQ (old_window
, selected_window
)))
4863 record_asynch_buffer_change ();
4869 /* If there is unread keyboard input, also return. */
4871 && requeued_events_pending_p ())
4874 /* If we are not checking for keyboard input now,
4875 do process events (but don't run any timers).
4876 This is so that X events will be processed.
4877 Otherwise they may have to wait until polling takes place.
4878 That would causes delays in pasting selections, for example.
4880 (We used to do this only if wait_for_cell.) */
4881 if (read_kbd
== 0 && detect_input_pending ())
4883 swallow_events (do_display
);
4884 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
4885 if (detect_input_pending ())
4890 /* Exit now if the cell we're waiting for became non-nil. */
4891 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
4895 /* If we think we have keyboard input waiting, but didn't get SIGIO,
4896 go read it. This can happen with X on BSD after logging out.
4897 In that case, there really is no input and no SIGIO,
4898 but select says there is input. */
4900 if (read_kbd
&& interrupt_input
4901 && keyboard_bit_set (&Available
) && ! noninteractive
)
4902 kill (getpid (), SIGIO
);
4906 got_some_input
|= nfds
> 0;
4908 /* If checking input just got us a size-change event from X,
4909 obey it now if we should. */
4910 if (read_kbd
|| ! NILP (wait_for_cell
))
4911 do_pending_window_change (0);
4913 /* Check for data from a process. */
4914 if (no_avail
|| nfds
== 0)
4917 for (channel
= 0; channel
<= max_input_desc
; ++channel
)
4919 struct fd_callback_data
*d
= &fd_callback_info
[channel
];
4920 if (FD_ISSET (channel
, &Available
)
4922 && (d
->condition
& FOR_READ
) != 0)
4923 d
->func (channel
, d
->data
, 1);
4924 if (FD_ISSET (channel
, &write_mask
)
4926 && (d
->condition
& FOR_WRITE
) != 0)
4927 d
->func (channel
, d
->data
, 0);
4930 /* Really FIRST_PROC_DESC should be 0 on Unix,
4931 but this is safer in the short run. */
4932 for (channel
= 0; channel
<= max_process_desc
; channel
++)
4934 if (FD_ISSET (channel
, &Available
)
4935 && FD_ISSET (channel
, &non_keyboard_wait_mask
)
4936 && !FD_ISSET (channel
, &non_process_wait_mask
))
4940 /* If waiting for this channel, arrange to return as
4941 soon as no more input to be processed. No more
4943 if (wait_channel
== channel
)
4949 proc
= chan_process
[channel
];
4953 /* If this is a server stream socket, accept connection. */
4954 if (EQ (XPROCESS (proc
)->status
, Qlisten
))
4956 server_accept_connection (proc
, channel
);
4960 /* Read data from the process, starting with our
4961 buffered-ahead character if we have one. */
4963 nread
= read_process_output (proc
, channel
);
4966 /* Since read_process_output can run a filter,
4967 which can call accept-process-output,
4968 don't try to read from any other processes
4969 before doing the select again. */
4970 FD_ZERO (&Available
);
4973 redisplay_preserve_echo_area (12);
4976 else if (nread
== -1 && errno
== EWOULDBLOCK
)
4979 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
4980 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
4982 else if (nread
== -1 && errno
== EAGAIN
)
4986 else if (nread
== -1 && errno
== EAGAIN
)
4988 /* Note that we cannot distinguish between no input
4989 available now and a closed pipe.
4990 With luck, a closed pipe will be accompanied by
4991 subprocess termination and SIGCHLD. */
4992 else if (nread
== 0 && !NETCONN_P (proc
) && !SERIALCONN_P (proc
))
4994 #endif /* O_NDELAY */
4995 #endif /* O_NONBLOCK */
4997 /* On some OSs with ptys, when the process on one end of
4998 a pty exits, the other end gets an error reading with
4999 errno = EIO instead of getting an EOF (0 bytes read).
5000 Therefore, if we get an error reading and errno =
5001 EIO, just continue, because the child process has
5002 exited and should clean itself up soon (e.g. when we
5005 However, it has been known to happen that the SIGCHLD
5006 got lost. So raise the signal again just in case.
5008 else if (nread
== -1 && errno
== EIO
)
5010 /* Clear the descriptor now, so we only raise the
5011 signal once. Don't do this if `process' is only
5013 if (XPROCESS (proc
)->pid
!= -2)
5015 FD_CLR (channel
, &input_wait_mask
);
5016 FD_CLR (channel
, &non_keyboard_wait_mask
);
5018 kill (getpid (), SIGCHLD
);
5021 #endif /* HAVE_PTYS */
5022 /* If we can detect process termination, don't consider the process
5023 gone just because its pipe is closed. */
5025 else if (nread
== 0 && !NETCONN_P (proc
) && !SERIALCONN_P (proc
))
5030 /* Preserve status of processes already terminated. */
5031 XPROCESS (proc
)->tick
= ++process_tick
;
5032 deactivate_process (proc
);
5033 if (XPROCESS (proc
)->raw_status_new
)
5034 update_status (XPROCESS (proc
));
5035 if (EQ (XPROCESS (proc
)->status
, Qrun
))
5036 XPROCESS (proc
)->status
5037 = Fcons (Qexit
, Fcons (make_number (256), Qnil
));
5040 #ifdef NON_BLOCKING_CONNECT
5041 if (FD_ISSET (channel
, &Writeok
)
5042 && FD_ISSET (channel
, &connect_wait_mask
))
5044 struct Lisp_Process
*p
;
5046 FD_CLR (channel
, &connect_wait_mask
);
5047 FD_CLR (channel
, &write_mask
);
5048 if (--num_pending_connects
< 0)
5051 proc
= chan_process
[channel
];
5055 p
= XPROCESS (proc
);
5058 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
5059 So only use it on systems where it is known to work. */
5061 int xlen
= sizeof (xerrno
);
5062 if (getsockopt (channel
, SOL_SOCKET
, SO_ERROR
, &xerrno
, &xlen
))
5067 struct sockaddr pname
;
5068 int pnamelen
= sizeof (pname
);
5070 /* If connection failed, getpeername will fail. */
5072 if (getpeername (channel
, &pname
, &pnamelen
) < 0)
5074 /* Obtain connect failure code through error slippage. */
5077 if (errno
== ENOTCONN
&& read (channel
, &dummy
, 1) < 0)
5084 p
->tick
= ++process_tick
;
5085 p
->status
= Fcons (Qfailed
, Fcons (make_number (xerrno
), Qnil
));
5086 deactivate_process (proc
);
5091 /* Execute the sentinel here. If we had relied on
5092 status_notify to do it later, it will read input
5093 from the process before calling the sentinel. */
5094 exec_sentinel (proc
, build_string ("open\n"));
5095 if (!EQ (p
->filter
, Qt
) && !EQ (p
->command
, Qt
))
5097 FD_SET (p
->infd
, &input_wait_mask
);
5098 FD_SET (p
->infd
, &non_keyboard_wait_mask
);
5102 #endif /* NON_BLOCKING_CONNECT */
5103 } /* end for each file descriptor */
5104 } /* end while exit conditions not met */
5106 unbind_to (count
, Qnil
);
5108 /* If calling from keyboard input, do not quit
5109 since we want to return C-g as an input character.
5110 Otherwise, do pending quit if requested. */
5113 /* Prevent input_pending from remaining set if we quit. */
5114 clear_input_pending ();
5118 return got_some_input
;
5121 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
5124 read_process_output_call (Lisp_Object fun_and_args
)
5126 return apply1 (XCAR (fun_and_args
), XCDR (fun_and_args
));
5130 read_process_output_error_handler (Lisp_Object error
)
5132 cmd_error_internal (error
, "error in process filter: ");
5134 update_echo_area ();
5135 Fsleep_for (make_number (2), Qnil
);
5139 /* Read pending output from the process channel,
5140 starting with our buffered-ahead character if we have one.
5141 Yield number of decoded characters read.
5143 This function reads at most 4096 characters.
5144 If you want to read all available subprocess output,
5145 you must call it repeatedly until it returns zero.
5147 The characters read are decoded according to PROC's coding-system
5151 read_process_output (Lisp_Object proc
, register int channel
)
5153 register int nbytes
;
5155 register Lisp_Object outstream
;
5156 register struct Lisp_Process
*p
= XPROCESS (proc
);
5157 register EMACS_INT opoint
;
5158 struct coding_system
*coding
= proc_decode_coding_system
[channel
];
5159 int carryover
= p
->decoding_carryover
;
5161 int count
= SPECPDL_INDEX ();
5162 Lisp_Object odeactivate
;
5164 chars
= (char *) alloca (carryover
+ readmax
);
5166 /* See the comment above. */
5167 memcpy (chars
, SDATA (p
->decoding_buf
), carryover
);
5169 #ifdef DATAGRAM_SOCKETS
5170 /* We have a working select, so proc_buffered_char is always -1. */
5171 if (DATAGRAM_CHAN_P (channel
))
5173 int len
= datagram_address
[channel
].len
;
5174 nbytes
= recvfrom (channel
, chars
+ carryover
, readmax
,
5175 0, datagram_address
[channel
].sa
, &len
);
5179 if (proc_buffered_char
[channel
] < 0)
5182 if (XPROCESS (proc
)->gnutls_p
)
5183 nbytes
= emacs_gnutls_read (channel
, XPROCESS (proc
),
5184 chars
+ carryover
, readmax
);
5187 nbytes
= emacs_read (channel
, chars
+ carryover
, readmax
);
5188 #ifdef ADAPTIVE_READ_BUFFERING
5189 if (nbytes
> 0 && p
->adaptive_read_buffering
)
5191 int delay
= p
->read_output_delay
;
5194 if (delay
< READ_OUTPUT_DELAY_MAX_MAX
)
5197 process_output_delay_count
++;
5198 delay
+= READ_OUTPUT_DELAY_INCREMENT
* 2;
5201 else if (delay
> 0 && (nbytes
== readmax
))
5203 delay
-= READ_OUTPUT_DELAY_INCREMENT
;
5205 process_output_delay_count
--;
5207 p
->read_output_delay
= delay
;
5210 p
->read_output_skip
= 1;
5211 process_output_skip
= 1;
5218 chars
[carryover
] = proc_buffered_char
[channel
];
5219 proc_buffered_char
[channel
] = -1;
5221 if (XPROCESS (proc
)->gnutls_p
)
5222 nbytes
= emacs_gnutls_read (channel
, XPROCESS (proc
),
5223 chars
+ carryover
+ 1, readmax
- 1);
5226 nbytes
= emacs_read (channel
, chars
+ carryover
+ 1, readmax
- 1);
5230 nbytes
= nbytes
+ 1;
5233 p
->decoding_carryover
= 0;
5235 /* At this point, NBYTES holds number of bytes just received
5236 (including the one in proc_buffered_char[channel]). */
5239 if (nbytes
< 0 || coding
->mode
& CODING_MODE_LAST_BLOCK
)
5241 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
5244 /* Now set NBYTES how many bytes we must decode. */
5245 nbytes
+= carryover
;
5247 odeactivate
= Vdeactivate_mark
;
5248 /* There's no good reason to let process filters change the current
5249 buffer, and many callers of accept-process-output, sit-for, and
5250 friends don't expect current-buffer to be changed from under them. */
5251 record_unwind_protect (set_buffer_if_live
, Fcurrent_buffer ());
5253 /* Read and dispose of the process output. */
5254 outstream
= p
->filter
;
5255 if (!NILP (outstream
))
5257 Lisp_Object obuffer
, okeymap
;
5259 int outer_running_asynch_code
= running_asynch_code
;
5260 int waiting
= waiting_for_user_input_p
;
5262 /* No need to gcpro these, because all we do with them later
5263 is test them for EQness, and none of them should be a string. */
5264 XSETBUFFER (obuffer
, current_buffer
);
5265 okeymap
= current_buffer
->keymap
;
5267 /* We inhibit quit here instead of just catching it so that
5268 hitting ^G when a filter happens to be running won't screw
5270 specbind (Qinhibit_quit
, Qt
);
5271 specbind (Qlast_nonmenu_event
, Qt
);
5273 /* In case we get recursively called,
5274 and we already saved the match data nonrecursively,
5275 save the same match data in safely recursive fashion. */
5276 if (outer_running_asynch_code
)
5279 /* Don't clobber the CURRENT match data, either! */
5280 tem
= Fmatch_data (Qnil
, Qnil
, Qnil
);
5281 restore_search_regs ();
5282 record_unwind_save_match_data ();
5283 Fset_match_data (tem
, Qt
);
5286 /* For speed, if a search happens within this code,
5287 save the match data in a special nonrecursive fashion. */
5288 running_asynch_code
= 1;
5290 decode_coding_c_string (coding
, chars
, nbytes
, Qt
);
5291 text
= coding
->dst_object
;
5292 Vlast_coding_system_used
= CODING_ID_NAME (coding
->id
);
5293 /* A new coding system might be found. */
5294 if (!EQ (p
->decode_coding_system
, Vlast_coding_system_used
))
5296 p
->decode_coding_system
= Vlast_coding_system_used
;
5298 /* Don't call setup_coding_system for
5299 proc_decode_coding_system[channel] here. It is done in
5300 detect_coding called via decode_coding above. */
5302 /* If a coding system for encoding is not yet decided, we set
5303 it as the same as coding-system for decoding.
5305 But, before doing that we must check if
5306 proc_encode_coding_system[p->outfd] surely points to a
5307 valid memory because p->outfd will be changed once EOF is
5308 sent to the process. */
5309 if (NILP (p
->encode_coding_system
)
5310 && proc_encode_coding_system
[p
->outfd
])
5312 p
->encode_coding_system
5313 = coding_inherit_eol_type (Vlast_coding_system_used
, Qnil
);
5314 setup_coding_system (p
->encode_coding_system
,
5315 proc_encode_coding_system
[p
->outfd
]);
5319 if (coding
->carryover_bytes
> 0)
5321 if (SCHARS (p
->decoding_buf
) < coding
->carryover_bytes
)
5322 p
->decoding_buf
= make_uninit_string (coding
->carryover_bytes
);
5323 memcpy (SDATA (p
->decoding_buf
), coding
->carryover
,
5324 coding
->carryover_bytes
);
5325 p
->decoding_carryover
= coding
->carryover_bytes
;
5327 if (SBYTES (text
) > 0)
5328 internal_condition_case_1 (read_process_output_call
,
5330 Fcons (proc
, Fcons (text
, Qnil
))),
5331 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
5332 read_process_output_error_handler
);
5334 /* If we saved the match data nonrecursively, restore it now. */
5335 restore_search_regs ();
5336 running_asynch_code
= outer_running_asynch_code
;
5338 /* Restore waiting_for_user_input_p as it was
5339 when we were called, in case the filter clobbered it. */
5340 waiting_for_user_input_p
= waiting
;
5342 #if 0 /* Call record_asynch_buffer_change unconditionally,
5343 because we might have changed minor modes or other things
5344 that affect key bindings. */
5345 if (! EQ (Fcurrent_buffer (), obuffer
)
5346 || ! EQ (current_buffer
->keymap
, okeymap
))
5348 /* But do it only if the caller is actually going to read events.
5349 Otherwise there's no need to make him wake up, and it could
5350 cause trouble (for example it would make sit_for return). */
5351 if (waiting_for_user_input_p
== -1)
5352 record_asynch_buffer_change ();
5355 /* If no filter, write into buffer if it isn't dead. */
5356 else if (!NILP (p
->buffer
) && !NILP (XBUFFER (p
->buffer
)->name
))
5358 Lisp_Object old_read_only
;
5359 EMACS_INT old_begv
, old_zv
;
5360 EMACS_INT old_begv_byte
, old_zv_byte
;
5361 EMACS_INT before
, before_byte
;
5362 EMACS_INT opoint_byte
;
5366 Fset_buffer (p
->buffer
);
5368 opoint_byte
= PT_BYTE
;
5369 old_read_only
= current_buffer
->read_only
;
5372 old_begv_byte
= BEGV_BYTE
;
5373 old_zv_byte
= ZV_BYTE
;
5375 current_buffer
->read_only
= Qnil
;
5377 /* Insert new output into buffer
5378 at the current end-of-output marker,
5379 thus preserving logical ordering of input and output. */
5380 if (XMARKER (p
->mark
)->buffer
)
5381 SET_PT_BOTH (clip_to_bounds (BEGV
, marker_position (p
->mark
), ZV
),
5382 clip_to_bounds (BEGV_BYTE
, marker_byte_position (p
->mark
),
5385 SET_PT_BOTH (ZV
, ZV_BYTE
);
5387 before_byte
= PT_BYTE
;
5389 /* If the output marker is outside of the visible region, save
5390 the restriction and widen. */
5391 if (! (BEGV
<= PT
&& PT
<= ZV
))
5394 decode_coding_c_string (coding
, chars
, nbytes
, Qt
);
5395 text
= coding
->dst_object
;
5396 Vlast_coding_system_used
= CODING_ID_NAME (coding
->id
);
5397 /* A new coding system might be found. See the comment in the
5398 similar code in the previous `if' block. */
5399 if (!EQ (p
->decode_coding_system
, Vlast_coding_system_used
))
5401 p
->decode_coding_system
= Vlast_coding_system_used
;
5402 if (NILP (p
->encode_coding_system
)
5403 && proc_encode_coding_system
[p
->outfd
])
5405 p
->encode_coding_system
5406 = coding_inherit_eol_type (Vlast_coding_system_used
, Qnil
);
5407 setup_coding_system (p
->encode_coding_system
,
5408 proc_encode_coding_system
[p
->outfd
]);
5411 if (coding
->carryover_bytes
> 0)
5413 if (SCHARS (p
->decoding_buf
) < coding
->carryover_bytes
)
5414 p
->decoding_buf
= make_uninit_string (coding
->carryover_bytes
);
5415 memcpy (SDATA (p
->decoding_buf
), coding
->carryover
,
5416 coding
->carryover_bytes
);
5417 p
->decoding_carryover
= coding
->carryover_bytes
;
5419 /* Adjust the multibyteness of TEXT to that of the buffer. */
5420 if (NILP (current_buffer
->enable_multibyte_characters
)
5421 != ! STRING_MULTIBYTE (text
))
5422 text
= (STRING_MULTIBYTE (text
)
5423 ? Fstring_as_unibyte (text
)
5424 : Fstring_to_multibyte (text
));
5425 /* Insert before markers in case we are inserting where
5426 the buffer's mark is, and the user's next command is Meta-y. */
5427 insert_from_string_before_markers (text
, 0, 0,
5428 SCHARS (text
), SBYTES (text
), 0);
5430 /* Make sure the process marker's position is valid when the
5431 process buffer is changed in the signal_after_change above.
5432 W3 is known to do that. */
5433 if (BUFFERP (p
->buffer
)
5434 && (b
= XBUFFER (p
->buffer
), b
!= current_buffer
))
5435 set_marker_both (p
->mark
, p
->buffer
, BUF_PT (b
), BUF_PT_BYTE (b
));
5437 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
5439 update_mode_lines
++;
5441 /* Make sure opoint and the old restrictions
5442 float ahead of any new text just as point would. */
5443 if (opoint
>= before
)
5445 opoint
+= PT
- before
;
5446 opoint_byte
+= PT_BYTE
- before_byte
;
5448 if (old_begv
> before
)
5450 old_begv
+= PT
- before
;
5451 old_begv_byte
+= PT_BYTE
- before_byte
;
5453 if (old_zv
>= before
)
5455 old_zv
+= PT
- before
;
5456 old_zv_byte
+= PT_BYTE
- before_byte
;
5459 /* If the restriction isn't what it should be, set it. */
5460 if (old_begv
!= BEGV
|| old_zv
!= ZV
)
5461 Fnarrow_to_region (make_number (old_begv
), make_number (old_zv
));
5464 current_buffer
->read_only
= old_read_only
;
5465 SET_PT_BOTH (opoint
, opoint_byte
);
5467 /* Handling the process output should not deactivate the mark. */
5468 Vdeactivate_mark
= odeactivate
;
5470 unbind_to (count
, Qnil
);
5474 /* Sending data to subprocess */
5476 jmp_buf send_process_frame
;
5477 Lisp_Object process_sent_to
;
5480 send_process_trap (int ignore
)
5482 SIGNAL_THREAD_CHECK (SIGPIPE
);
5483 sigunblock (sigmask (SIGPIPE
));
5484 longjmp (send_process_frame
, 1);
5487 /* Send some data to process PROC.
5488 BUF is the beginning of the data; LEN is the number of characters.
5489 OBJECT is the Lisp object that the data comes from. If OBJECT is
5490 nil or t, it means that the data comes from C string.
5492 If OBJECT is not nil, the data is encoded by PROC's coding-system
5493 for encoding before it is sent.
5495 This function can evaluate Lisp code and can garbage collect. */
5498 send_process (volatile Lisp_Object proc
, const unsigned char *volatile buf
,
5499 volatile EMACS_INT len
, volatile Lisp_Object object
)
5501 /* Use volatile to protect variables from being clobbered by longjmp. */
5502 struct Lisp_Process
*p
= XPROCESS (proc
);
5504 struct coding_system
*coding
;
5505 struct gcpro gcpro1
;
5506 SIGTYPE (*volatile old_sigpipe
) (int);
5510 if (p
->raw_status_new
)
5512 if (! EQ (p
->status
, Qrun
))
5513 error ("Process %s not running", SDATA (p
->name
));
5515 error ("Output file descriptor of %s is closed", SDATA (p
->name
));
5517 coding
= proc_encode_coding_system
[p
->outfd
];
5518 Vlast_coding_system_used
= CODING_ID_NAME (coding
->id
);
5520 if ((STRINGP (object
) && STRING_MULTIBYTE (object
))
5521 || (BUFFERP (object
)
5522 && !NILP (XBUFFER (object
)->enable_multibyte_characters
))
5525 p
->encode_coding_system
5526 = complement_process_encoding_system (p
->encode_coding_system
);
5527 if (!EQ (Vlast_coding_system_used
, p
->encode_coding_system
))
5529 /* The coding system for encoding was changed to raw-text
5530 because we sent a unibyte text previously. Now we are
5531 sending a multibyte text, thus we must encode it by the
5532 original coding system specified for the current process.
5534 Another reason we comming here is that the coding system
5535 was just complemented and new one was returned by
5536 complement_process_encoding_system. */
5537 setup_coding_system (p
->encode_coding_system
, coding
);
5538 Vlast_coding_system_used
= p
->encode_coding_system
;
5540 coding
->src_multibyte
= 1;
5544 /* For sending a unibyte text, character code conversion should
5545 not take place but EOL conversion should. So, setup raw-text
5546 or one of the subsidiary if we have not yet done it. */
5547 if (CODING_REQUIRE_ENCODING (coding
))
5549 if (CODING_REQUIRE_FLUSHING (coding
))
5551 /* But, before changing the coding, we must flush out data. */
5552 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
5553 send_process (proc
, "", 0, Qt
);
5554 coding
->mode
&= CODING_MODE_LAST_BLOCK
;
5556 setup_coding_system (raw_text_coding_system
5557 (Vlast_coding_system_used
),
5559 coding
->src_multibyte
= 0;
5562 coding
->dst_multibyte
= 0;
5564 if (CODING_REQUIRE_ENCODING (coding
))
5566 coding
->dst_object
= Qt
;
5567 if (BUFFERP (object
))
5569 EMACS_INT from_byte
, from
, to
;
5570 EMACS_INT save_pt
, save_pt_byte
;
5571 struct buffer
*cur
= current_buffer
;
5573 set_buffer_internal (XBUFFER (object
));
5574 save_pt
= PT
, save_pt_byte
= PT_BYTE
;
5576 from_byte
= PTR_BYTE_POS (buf
);
5577 from
= BYTE_TO_CHAR (from_byte
);
5578 to
= BYTE_TO_CHAR (from_byte
+ len
);
5579 TEMP_SET_PT_BOTH (from
, from_byte
);
5580 encode_coding_object (coding
, object
, from
, from_byte
,
5581 to
, from_byte
+ len
, Qt
);
5582 TEMP_SET_PT_BOTH (save_pt
, save_pt_byte
);
5583 set_buffer_internal (cur
);
5585 else if (STRINGP (object
))
5587 encode_coding_object (coding
, object
, 0, 0, SCHARS (object
),
5588 SBYTES (object
), Qt
);
5592 coding
->dst_object
= make_unibyte_string (buf
, len
);
5593 coding
->produced
= len
;
5596 len
= coding
->produced
;
5597 object
= coding
->dst_object
;
5598 buf
= SDATA (object
);
5601 if (pty_max_bytes
== 0)
5603 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
5604 pty_max_bytes
= fpathconf (p
->outfd
, _PC_MAX_CANON
);
5605 if (pty_max_bytes
< 0)
5606 pty_max_bytes
= 250;
5608 pty_max_bytes
= 250;
5610 /* Deduct one, to leave space for the eof. */
5614 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
5615 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
5616 when returning with longjmp despite being declared volatile. */
5617 if (!setjmp (send_process_frame
))
5619 process_sent_to
= proc
;
5622 EMACS_INT
this = len
;
5624 /* Send this batch, using one or more write calls. */
5627 int outfd
= p
->outfd
;
5628 old_sigpipe
= (SIGTYPE (*) (int)) signal (SIGPIPE
, send_process_trap
);
5629 #ifdef DATAGRAM_SOCKETS
5630 if (DATAGRAM_CHAN_P (outfd
))
5632 rv
= sendto (outfd
, (char *) buf
, this,
5633 0, datagram_address
[outfd
].sa
,
5634 datagram_address
[outfd
].len
);
5635 if (rv
< 0 && errno
== EMSGSIZE
)
5637 signal (SIGPIPE
, old_sigpipe
);
5638 report_file_error ("sending datagram",
5639 Fcons (proc
, Qnil
));
5646 if (XPROCESS (proc
)->gnutls_p
)
5647 rv
= emacs_gnutls_write (outfd
,
5649 (char *) buf
, this);
5652 rv
= emacs_write (outfd
, (char *) buf
, this);
5653 #ifdef ADAPTIVE_READ_BUFFERING
5654 if (p
->read_output_delay
> 0
5655 && p
->adaptive_read_buffering
== 1)
5657 p
->read_output_delay
= 0;
5658 process_output_delay_count
--;
5659 p
->read_output_skip
= 0;
5663 signal (SIGPIPE
, old_sigpipe
);
5669 || errno
== EWOULDBLOCK
5675 /* Buffer is full. Wait, accepting input;
5676 that may allow the program
5677 to finish doing output and read more. */
5681 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
5682 /* A gross hack to work around a bug in FreeBSD.
5683 In the following sequence, read(2) returns
5687 write(2) 954 bytes, get EAGAIN
5688 read(2) 1024 bytes in process_read_output
5689 read(2) 11 bytes in process_read_output
5691 That is, read(2) returns more bytes than have
5692 ever been written successfully. The 1033 bytes
5693 read are the 1022 bytes written successfully
5694 after processing (for example with CRs added if
5695 the terminal is set up that way which it is
5696 here). The same bytes will be seen again in a
5697 later read(2), without the CRs. */
5699 if (errno
== EAGAIN
)
5702 ioctl (p
->outfd
, TIOCFLUSH
, &flags
);
5704 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5706 /* Running filters might relocate buffers or strings.
5707 Arrange to relocate BUF. */
5708 if (BUFFERP (object
))
5709 offset
= BUF_PTR_BYTE_POS (XBUFFER (object
), buf
);
5710 else if (STRINGP (object
))
5711 offset
= buf
- SDATA (object
);
5713 #ifdef EMACS_HAS_USECS
5714 wait_reading_process_output (0, 20000, 0, 0, Qnil
, NULL
, 0);
5716 wait_reading_process_output (1, 0, 0, 0, Qnil
, NULL
, 0);
5719 if (BUFFERP (object
))
5720 buf
= BUF_BYTE_ADDRESS (XBUFFER (object
), offset
);
5721 else if (STRINGP (object
))
5722 buf
= offset
+ SDATA (object
);
5727 /* This is a real error. */
5728 report_file_error ("writing to process", Fcons (proc
, Qnil
));
5738 signal (SIGPIPE
, old_sigpipe
);
5739 proc
= process_sent_to
;
5740 p
= XPROCESS (proc
);
5741 p
->raw_status_new
= 0;
5742 p
->status
= Fcons (Qexit
, Fcons (make_number (256), Qnil
));
5743 p
->tick
= ++process_tick
;
5744 deactivate_process (proc
);
5745 error ("SIGPIPE raised on process %s; closed it", SDATA (p
->name
));
5751 DEFUN ("process-send-region", Fprocess_send_region
, Sprocess_send_region
,
5753 doc
: /* Send current contents of region as input to PROCESS.
5754 PROCESS may be a process, a buffer, the name of a process or buffer, or
5755 nil, indicating the current buffer's process.
5756 Called from program, takes three arguments, PROCESS, START and END.
5757 If the region is more than 500 characters long,
5758 it is sent in several bunches. This may happen even for shorter regions.
5759 Output from processes can arrive in between bunches. */)
5760 (Lisp_Object process
, Lisp_Object start
, Lisp_Object end
)
5763 EMACS_INT start1
, end1
;
5765 proc
= get_process (process
);
5766 validate_region (&start
, &end
);
5768 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
5769 move_gap (XINT (start
));
5771 start1
= CHAR_TO_BYTE (XINT (start
));
5772 end1
= CHAR_TO_BYTE (XINT (end
));
5773 send_process (proc
, BYTE_POS_ADDR (start1
), end1
- start1
,
5774 Fcurrent_buffer ());
5779 DEFUN ("process-send-string", Fprocess_send_string
, Sprocess_send_string
,
5781 doc
: /* Send PROCESS the contents of STRING as input.
5782 PROCESS may be a process, a buffer, the name of a process or buffer, or
5783 nil, indicating the current buffer's process.
5784 If STRING is more than 500 characters long,
5785 it is sent in several bunches. This may happen even for shorter strings.
5786 Output from processes can arrive in between bunches. */)
5787 (Lisp_Object process
, Lisp_Object string
)
5790 CHECK_STRING (string
);
5791 proc
= get_process (process
);
5792 send_process (proc
, SDATA (string
),
5793 SBYTES (string
), string
);
5797 /* Return the foreground process group for the tty/pty that
5798 the process P uses. */
5800 emacs_get_tty_pgrp (struct Lisp_Process
*p
)
5805 if (ioctl (p
->infd
, TIOCGPGRP
, &gid
) == -1 && ! NILP (p
->tty_name
))
5808 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
5809 master side. Try the slave side. */
5810 fd
= emacs_open (SSDATA (p
->tty_name
), O_RDONLY
, 0);
5814 ioctl (fd
, TIOCGPGRP
, &gid
);
5818 #endif /* defined (TIOCGPGRP ) */
5823 DEFUN ("process-running-child-p", Fprocess_running_child_p
,
5824 Sprocess_running_child_p
, 0, 1, 0,
5825 doc
: /* Return t if PROCESS has given the terminal to a child.
5826 If the operating system does not make it possible to find out,
5827 return t unconditionally. */)
5828 (Lisp_Object process
)
5830 /* Initialize in case ioctl doesn't exist or gives an error,
5831 in a way that will cause returning t. */
5834 struct Lisp_Process
*p
;
5836 proc
= get_process (process
);
5837 p
= XPROCESS (proc
);
5839 if (!EQ (p
->type
, Qreal
))
5840 error ("Process %s is not a subprocess",
5843 error ("Process %s is not active",
5846 gid
= emacs_get_tty_pgrp (p
);
5853 /* send a signal number SIGNO to PROCESS.
5854 If CURRENT_GROUP is t, that means send to the process group
5855 that currently owns the terminal being used to communicate with PROCESS.
5856 This is used for various commands in shell mode.
5857 If CURRENT_GROUP is lambda, that means send to the process group
5858 that currently owns the terminal, but only if it is NOT the shell itself.
5860 If NOMSG is zero, insert signal-announcements into process's buffers
5863 If we can, we try to signal PROCESS by sending control characters
5864 down the pty. This allows us to signal inferiors who have changed
5865 their uid, for which killpg would return an EPERM error. */
5868 process_send_signal (Lisp_Object process
, int signo
, Lisp_Object current_group
,
5872 register struct Lisp_Process
*p
;
5876 proc
= get_process (process
);
5877 p
= XPROCESS (proc
);
5879 if (!EQ (p
->type
, Qreal
))
5880 error ("Process %s is not a subprocess",
5883 error ("Process %s is not active",
5887 current_group
= Qnil
;
5889 /* If we are using pgrps, get a pgrp number and make it negative. */
5890 if (NILP (current_group
))
5891 /* Send the signal to the shell's process group. */
5895 #ifdef SIGNALS_VIA_CHARACTERS
5896 /* If possible, send signals to the entire pgrp
5897 by sending an input character to it. */
5900 cc_t
*sig_char
= NULL
;
5902 tcgetattr (p
->infd
, &t
);
5907 sig_char
= &t
.c_cc
[VINTR
];
5911 sig_char
= &t
.c_cc
[VQUIT
];
5915 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
5916 sig_char
= &t
.c_cc
[VSWTCH
];
5918 sig_char
= &t
.c_cc
[VSUSP
];
5923 if (sig_char
&& *sig_char
!= CDISABLE
)
5925 send_process (proc
, sig_char
, 1, Qnil
);
5928 /* If we can't send the signal with a character,
5929 fall through and send it another way. */
5931 /* The code above may fall through if it can't
5932 handle the signal. */
5933 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
5936 /* Get the current pgrp using the tty itself, if we have that.
5937 Otherwise, use the pty to get the pgrp.
5938 On pfa systems, saka@pfu.fujitsu.co.JP writes:
5939 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
5940 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
5941 His patch indicates that if TIOCGPGRP returns an error, then
5942 we should just assume that p->pid is also the process group id. */
5944 gid
= emacs_get_tty_pgrp (p
);
5947 /* If we can't get the information, assume
5948 the shell owns the tty. */
5951 /* It is not clear whether anything really can set GID to -1.
5952 Perhaps on some system one of those ioctls can or could do so.
5953 Or perhaps this is vestigial. */
5956 #else /* ! defined (TIOCGPGRP ) */
5957 /* Can't select pgrps on this system, so we know that
5958 the child itself heads the pgrp. */
5960 #endif /* ! defined (TIOCGPGRP ) */
5962 /* If current_group is lambda, and the shell owns the terminal,
5963 don't send any signal. */
5964 if (EQ (current_group
, Qlambda
) && gid
== p
->pid
)
5972 p
->raw_status_new
= 0;
5974 p
->tick
= ++process_tick
;
5977 status_notify (NULL
);
5978 redisplay_preserve_echo_area (13);
5981 #endif /* ! defined (SIGCONT) */
5985 flush_pending_output (p
->infd
);
5989 /* If we don't have process groups, send the signal to the immediate
5990 subprocess. That isn't really right, but it's better than any
5991 obvious alternative. */
5994 kill (p
->pid
, signo
);
5998 /* gid may be a pid, or minus a pgrp's number */
6000 if (!NILP (current_group
))
6002 if (ioctl (p
->infd
, TIOCSIGSEND
, signo
) == -1)
6003 EMACS_KILLPG (gid
, signo
);
6010 #else /* ! defined (TIOCSIGSEND) */
6011 EMACS_KILLPG (gid
, signo
);
6012 #endif /* ! defined (TIOCSIGSEND) */
6015 DEFUN ("interrupt-process", Finterrupt_process
, Sinterrupt_process
, 0, 2, 0,
6016 doc
: /* Interrupt process PROCESS.
6017 PROCESS may be a process, a buffer, or the name of a process or buffer.
6018 No arg or nil means current buffer's process.
6019 Second arg CURRENT-GROUP non-nil means send signal to
6020 the current process-group of the process's controlling terminal
6021 rather than to the process's own process group.
6022 If the process is a shell, this means interrupt current subjob
6023 rather than the shell.
6025 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
6026 don't send the signal. */)
6027 (Lisp_Object process
, Lisp_Object current_group
)
6029 process_send_signal (process
, SIGINT
, current_group
, 0);
6033 DEFUN ("kill-process", Fkill_process
, Skill_process
, 0, 2, 0,
6034 doc
: /* Kill process PROCESS. May be process or name of one.
6035 See function `interrupt-process' for more details on usage. */)
6036 (Lisp_Object process
, Lisp_Object current_group
)
6038 process_send_signal (process
, SIGKILL
, current_group
, 0);
6042 DEFUN ("quit-process", Fquit_process
, Squit_process
, 0, 2, 0,
6043 doc
: /* Send QUIT signal to process PROCESS. May be process or name of one.
6044 See function `interrupt-process' for more details on usage. */)
6045 (Lisp_Object process
, Lisp_Object current_group
)
6047 process_send_signal (process
, SIGQUIT
, current_group
, 0);
6051 DEFUN ("stop-process", Fstop_process
, Sstop_process
, 0, 2, 0,
6052 doc
: /* Stop process PROCESS. May be process or name of one.
6053 See function `interrupt-process' for more details on usage.
6054 If PROCESS is a network or serial process, inhibit handling of incoming
6056 (Lisp_Object process
, Lisp_Object current_group
)
6058 if (PROCESSP (process
) && (NETCONN_P (process
) || SERIALCONN_P (process
)))
6060 struct Lisp_Process
*p
;
6062 p
= XPROCESS (process
);
6063 if (NILP (p
->command
)
6066 FD_CLR (p
->infd
, &input_wait_mask
);
6067 FD_CLR (p
->infd
, &non_keyboard_wait_mask
);
6073 error ("No SIGTSTP support");
6075 process_send_signal (process
, SIGTSTP
, current_group
, 0);
6080 DEFUN ("continue-process", Fcontinue_process
, Scontinue_process
, 0, 2, 0,
6081 doc
: /* Continue process PROCESS. May be process or name of one.
6082 See function `interrupt-process' for more details on usage.
6083 If PROCESS is a network or serial process, resume handling of incoming
6085 (Lisp_Object process
, Lisp_Object current_group
)
6087 if (PROCESSP (process
) && (NETCONN_P (process
) || SERIALCONN_P (process
)))
6089 struct Lisp_Process
*p
;
6091 p
= XPROCESS (process
);
6092 if (EQ (p
->command
, Qt
)
6094 && (!EQ (p
->filter
, Qt
) || EQ (p
->status
, Qlisten
)))
6096 FD_SET (p
->infd
, &input_wait_mask
);
6097 FD_SET (p
->infd
, &non_keyboard_wait_mask
);
6099 if (fd_info
[ p
->infd
].flags
& FILE_SERIAL
)
6100 PurgeComm (fd_info
[ p
->infd
].hnd
, PURGE_RXABORT
| PURGE_RXCLEAR
);
6101 #else /* not WINDOWSNT */
6102 tcflush (p
->infd
, TCIFLUSH
);
6103 #endif /* not WINDOWSNT */
6109 process_send_signal (process
, SIGCONT
, current_group
, 0);
6111 error ("No SIGCONT support");
6116 DEFUN ("signal-process", Fsignal_process
, Ssignal_process
,
6117 2, 2, "sProcess (name or number): \nnSignal code: ",
6118 doc
: /* Send PROCESS the signal with code SIGCODE.
6119 PROCESS may also be a number specifying the process id of the
6120 process to signal; in this case, the process need not be a child of
6122 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
6123 (Lisp_Object process
, Lisp_Object sigcode
)
6127 if (INTEGERP (process
))
6129 pid
= XINT (process
);
6133 if (FLOATP (process
))
6135 pid
= (pid_t
) XFLOAT_DATA (process
);
6139 if (STRINGP (process
))
6142 if (tem
= Fget_process (process
), NILP (tem
))
6144 pid
= XINT (Fstring_to_number (process
, make_number (10)));
6151 process
= get_process (process
);
6156 CHECK_PROCESS (process
);
6157 pid
= XPROCESS (process
)->pid
;
6159 error ("Cannot signal process %s", SDATA (XPROCESS (process
)->name
));
6163 #define parse_signal(NAME, VALUE) \
6164 else if (!xstrcasecmp (name, NAME)) \
6165 XSETINT (sigcode, VALUE)
6167 if (INTEGERP (sigcode
))
6171 unsigned char *name
;
6173 CHECK_SYMBOL (sigcode
);
6174 name
= SDATA (SYMBOL_NAME (sigcode
));
6176 if (!strncmp (name
, "SIG", 3) || !strncmp (name
, "sig", 3))
6182 parse_signal ("usr1", SIGUSR1
);
6185 parse_signal ("usr2", SIGUSR2
);
6188 parse_signal ("term", SIGTERM
);
6191 parse_signal ("hup", SIGHUP
);
6194 parse_signal ("int", SIGINT
);
6197 parse_signal ("quit", SIGQUIT
);
6200 parse_signal ("ill", SIGILL
);
6203 parse_signal ("abrt", SIGABRT
);
6206 parse_signal ("emt", SIGEMT
);
6209 parse_signal ("kill", SIGKILL
);
6212 parse_signal ("fpe", SIGFPE
);
6215 parse_signal ("bus", SIGBUS
);
6218 parse_signal ("segv", SIGSEGV
);
6221 parse_signal ("sys", SIGSYS
);
6224 parse_signal ("pipe", SIGPIPE
);
6227 parse_signal ("alrm", SIGALRM
);
6230 parse_signal ("urg", SIGURG
);
6233 parse_signal ("stop", SIGSTOP
);
6236 parse_signal ("tstp", SIGTSTP
);
6239 parse_signal ("cont", SIGCONT
);
6242 parse_signal ("chld", SIGCHLD
);
6245 parse_signal ("ttin", SIGTTIN
);
6248 parse_signal ("ttou", SIGTTOU
);
6251 parse_signal ("io", SIGIO
);
6254 parse_signal ("xcpu", SIGXCPU
);
6257 parse_signal ("xfsz", SIGXFSZ
);
6260 parse_signal ("vtalrm", SIGVTALRM
);
6263 parse_signal ("prof", SIGPROF
);
6266 parse_signal ("winch", SIGWINCH
);
6269 parse_signal ("info", SIGINFO
);
6272 error ("Undefined signal name %s", name
);
6277 return make_number (kill (pid
, XINT (sigcode
)));
6280 DEFUN ("process-send-eof", Fprocess_send_eof
, Sprocess_send_eof
, 0, 1, 0,
6281 doc
: /* Make PROCESS see end-of-file in its input.
6282 EOF comes after any text already sent to it.
6283 PROCESS may be a process, a buffer, the name of a process or buffer, or
6284 nil, indicating the current buffer's process.
6285 If PROCESS is a network connection, or is a process communicating
6286 through a pipe (as opposed to a pty), then you cannot send any more
6287 text to PROCESS after you call this function.
6288 If PROCESS is a serial process, wait until all output written to the
6289 process has been transmitted to the serial port. */)
6290 (Lisp_Object process
)
6293 struct coding_system
*coding
;
6295 if (DATAGRAM_CONN_P (process
))
6298 proc
= get_process (process
);
6299 coding
= proc_encode_coding_system
[XPROCESS (proc
)->outfd
];
6301 /* Make sure the process is really alive. */
6302 if (XPROCESS (proc
)->raw_status_new
)
6303 update_status (XPROCESS (proc
));
6304 if (! EQ (XPROCESS (proc
)->status
, Qrun
))
6305 error ("Process %s not running", SDATA (XPROCESS (proc
)->name
));
6307 if (CODING_REQUIRE_FLUSHING (coding
))
6309 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
6310 send_process (proc
, "", 0, Qnil
);
6313 if (XPROCESS (proc
)->pty_flag
)
6314 send_process (proc
, "\004", 1, Qnil
);
6315 else if (EQ (XPROCESS (proc
)->type
, Qserial
))
6318 if (tcdrain (XPROCESS (proc
)->outfd
) != 0)
6319 error ("tcdrain() failed: %s", emacs_strerror (errno
));
6320 #endif /* not WINDOWSNT */
6321 /* Do nothing on Windows because writes are blocking. */
6325 int old_outfd
, new_outfd
;
6327 #ifdef HAVE_SHUTDOWN
6328 /* If this is a network connection, or socketpair is used
6329 for communication with the subprocess, call shutdown to cause EOF.
6330 (In some old system, shutdown to socketpair doesn't work.
6331 Then we just can't win.) */
6332 if (EQ (XPROCESS (proc
)->type
, Qnetwork
)
6333 || XPROCESS (proc
)->outfd
== XPROCESS (proc
)->infd
)
6334 shutdown (XPROCESS (proc
)->outfd
, 1);
6335 /* In case of socketpair, outfd == infd, so don't close it. */
6336 if (XPROCESS (proc
)->outfd
!= XPROCESS (proc
)->infd
)
6337 emacs_close (XPROCESS (proc
)->outfd
);
6338 #else /* not HAVE_SHUTDOWN */
6339 emacs_close (XPROCESS (proc
)->outfd
);
6340 #endif /* not HAVE_SHUTDOWN */
6341 new_outfd
= emacs_open (NULL_DEVICE
, O_WRONLY
, 0);
6344 old_outfd
= XPROCESS (proc
)->outfd
;
6346 if (!proc_encode_coding_system
[new_outfd
])
6347 proc_encode_coding_system
[new_outfd
]
6348 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
6349 memcpy (proc_encode_coding_system
[new_outfd
],
6350 proc_encode_coding_system
[old_outfd
],
6351 sizeof (struct coding_system
));
6352 memset (proc_encode_coding_system
[old_outfd
], 0,
6353 sizeof (struct coding_system
));
6355 XPROCESS (proc
)->outfd
= new_outfd
;
6360 /* On receipt of a signal that a child status has changed, loop asking
6361 about children with changed statuses until the system says there
6364 All we do is change the status; we do not run sentinels or print
6365 notifications. That is saved for the next time keyboard input is
6366 done, in order to avoid timing errors.
6368 ** WARNING: this can be called during garbage collection.
6369 Therefore, it must not be fooled by the presence of mark bits in
6372 ** USG WARNING: Although it is not obvious from the documentation
6373 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6374 signal() before executing at least one wait(), otherwise the
6375 handler will be called again, resulting in an infinite loop. The
6376 relevant portion of the documentation reads "SIGCLD signals will be
6377 queued and the signal-catching function will be continually
6378 reentered until the queue is empty". Invoking signal() causes the
6379 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6382 ** Malloc WARNING: This should never call malloc either directly or
6383 indirectly; if it does, that is a bug */
6387 sigchld_handler (int signo
)
6389 int old_errno
= errno
;
6391 struct Lisp_Process
*p
;
6393 SIGNAL_THREAD_CHECK (signo
);
6404 #endif /* no WUNTRACED */
6405 /* Keep trying to get a status until we get a definitive result. */
6409 pid
= wait3 (&w
, WNOHANG
| WUNTRACED
, 0);
6411 while (pid
< 0 && errno
== EINTR
);
6415 /* PID == 0 means no processes found, PID == -1 means a real
6416 failure. We have done all our job, so return. */
6423 #endif /* no WNOHANG */
6425 /* Find the process that signaled us, and record its status. */
6427 /* The process can have been deleted by Fdelete_process. */
6428 for (tail
= deleted_pid_list
; CONSP (tail
); tail
= XCDR (tail
))
6430 Lisp_Object xpid
= XCAR (tail
);
6431 if ((INTEGERP (xpid
) && pid
== (pid_t
) XINT (xpid
))
6432 || (FLOATP (xpid
) && pid
== (pid_t
) XFLOAT_DATA (xpid
)))
6434 XSETCAR (tail
, Qnil
);
6435 goto sigchld_end_of_loop
;
6439 /* Otherwise, if it is asynchronous, it is in Vprocess_alist. */
6441 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6443 proc
= XCDR (XCAR (tail
));
6444 p
= XPROCESS (proc
);
6445 if (EQ (p
->type
, Qreal
) && p
->pid
== pid
)
6450 /* Look for an asynchronous process whose pid hasn't been filled
6453 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6455 proc
= XCDR (XCAR (tail
));
6456 p
= XPROCESS (proc
);
6462 /* Change the status of the process that was found. */
6465 int clear_desc_flag
= 0;
6467 p
->tick
= ++process_tick
;
6469 p
->raw_status_new
= 1;
6471 /* If process has terminated, stop waiting for its output. */
6472 if ((WIFSIGNALED (w
) || WIFEXITED (w
))
6474 clear_desc_flag
= 1;
6476 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
6477 if (clear_desc_flag
)
6479 FD_CLR (p
->infd
, &input_wait_mask
);
6480 FD_CLR (p
->infd
, &non_keyboard_wait_mask
);
6483 /* Tell wait_reading_process_output that it needs to wake up and
6485 if (input_available_clear_time
)
6486 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
6489 /* There was no asynchronous process found for that pid: we have
6490 a synchronous process. */
6493 synch_process_alive
= 0;
6495 /* Report the status of the synchronous process. */
6497 synch_process_retcode
= WRETCODE (w
);
6498 else if (WIFSIGNALED (w
))
6499 synch_process_termsig
= WTERMSIG (w
);
6501 /* Tell wait_reading_process_output that it needs to wake up and
6503 if (input_available_clear_time
)
6504 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
6507 sigchld_end_of_loop
:
6510 /* On some systems, we must return right away.
6511 If any more processes want to signal us, we will
6513 Otherwise (on systems that have WNOHANG), loop around
6514 to use up all the processes that have something to tell us. */
6515 #if (defined WINDOWSNT \
6516 || (defined USG && !defined GNU_LINUX \
6517 && !(defined HPUX && defined WNOHANG)))
6520 #endif /* USG, but not HPUX with WNOHANG */
6523 #endif /* SIGCHLD */
6527 exec_sentinel_unwind (Lisp_Object data
)
6529 XPROCESS (XCAR (data
))->sentinel
= XCDR (data
);
6534 exec_sentinel_error_handler (Lisp_Object error
)
6536 cmd_error_internal (error
, "error in process sentinel: ");
6538 update_echo_area ();
6539 Fsleep_for (make_number (2), Qnil
);
6544 exec_sentinel (Lisp_Object proc
, Lisp_Object reason
)
6546 Lisp_Object sentinel
, obuffer
, odeactivate
, okeymap
;
6547 register struct Lisp_Process
*p
= XPROCESS (proc
);
6548 int count
= SPECPDL_INDEX ();
6549 int outer_running_asynch_code
= running_asynch_code
;
6550 int waiting
= waiting_for_user_input_p
;
6552 if (inhibit_sentinels
)
6555 /* No need to gcpro these, because all we do with them later
6556 is test them for EQness, and none of them should be a string. */
6557 odeactivate
= Vdeactivate_mark
;
6558 XSETBUFFER (obuffer
, current_buffer
);
6559 okeymap
= current_buffer
->keymap
;
6561 /* There's no good reason to let sentinels change the current
6562 buffer, and many callers of accept-process-output, sit-for, and
6563 friends don't expect current-buffer to be changed from under them. */
6564 record_unwind_protect (set_buffer_if_live
, Fcurrent_buffer ());
6566 sentinel
= p
->sentinel
;
6567 if (NILP (sentinel
))
6570 /* Zilch the sentinel while it's running, to avoid recursive invocations;
6571 assure that it gets restored no matter how the sentinel exits. */
6573 record_unwind_protect (exec_sentinel_unwind
, Fcons (proc
, sentinel
));
6574 /* Inhibit quit so that random quits don't screw up a running filter. */
6575 specbind (Qinhibit_quit
, Qt
);
6576 specbind (Qlast_nonmenu_event
, Qt
); /* Why? --Stef */
6578 /* In case we get recursively called,
6579 and we already saved the match data nonrecursively,
6580 save the same match data in safely recursive fashion. */
6581 if (outer_running_asynch_code
)
6584 tem
= Fmatch_data (Qnil
, Qnil
, Qnil
);
6585 restore_search_regs ();
6586 record_unwind_save_match_data ();
6587 Fset_match_data (tem
, Qt
);
6590 /* For speed, if a search happens within this code,
6591 save the match data in a special nonrecursive fashion. */
6592 running_asynch_code
= 1;
6594 internal_condition_case_1 (read_process_output_call
,
6596 Fcons (proc
, Fcons (reason
, Qnil
))),
6597 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
6598 exec_sentinel_error_handler
);
6600 /* If we saved the match data nonrecursively, restore it now. */
6601 restore_search_regs ();
6602 running_asynch_code
= outer_running_asynch_code
;
6604 Vdeactivate_mark
= odeactivate
;
6606 /* Restore waiting_for_user_input_p as it was
6607 when we were called, in case the filter clobbered it. */
6608 waiting_for_user_input_p
= waiting
;
6611 if (! EQ (Fcurrent_buffer (), obuffer
)
6612 || ! EQ (current_buffer
->keymap
, okeymap
))
6614 /* But do it only if the caller is actually going to read events.
6615 Otherwise there's no need to make him wake up, and it could
6616 cause trouble (for example it would make sit_for return). */
6617 if (waiting_for_user_input_p
== -1)
6618 record_asynch_buffer_change ();
6620 unbind_to (count
, Qnil
);
6623 /* Report all recent events of a change in process status
6624 (either run the sentinel or output a message).
6625 This is usually done while Emacs is waiting for keyboard input
6626 but can be done at other times. */
6629 status_notify (struct Lisp_Process
*deleting_process
)
6631 register Lisp_Object proc
, buffer
;
6632 Lisp_Object tail
, msg
;
6633 struct gcpro gcpro1
, gcpro2
;
6637 /* We need to gcpro tail; if read_process_output calls a filter
6638 which deletes a process and removes the cons to which tail points
6639 from Vprocess_alist, and then causes a GC, tail is an unprotected
6643 /* Set this now, so that if new processes are created by sentinels
6644 that we run, we get called again to handle their status changes. */
6645 update_tick
= process_tick
;
6647 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6650 register struct Lisp_Process
*p
;
6652 proc
= Fcdr (XCAR (tail
));
6653 p
= XPROCESS (proc
);
6655 if (p
->tick
!= p
->update_tick
)
6657 p
->update_tick
= p
->tick
;
6659 /* If process is still active, read any output that remains. */
6660 while (! EQ (p
->filter
, Qt
)
6661 && ! EQ (p
->status
, Qconnect
)
6662 && ! EQ (p
->status
, Qlisten
)
6663 /* Network or serial process not stopped: */
6664 && ! EQ (p
->command
, Qt
)
6666 && p
!= deleting_process
6667 && read_process_output (proc
, p
->infd
) > 0);
6671 /* Get the text to use for the message. */
6672 if (p
->raw_status_new
)
6674 msg
= status_message (p
);
6676 /* If process is terminated, deactivate it or delete it. */
6678 if (CONSP (p
->status
))
6679 symbol
= XCAR (p
->status
);
6681 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
)
6682 || EQ (symbol
, Qclosed
))
6684 if (delete_exited_processes
)
6685 remove_process (proc
);
6687 deactivate_process (proc
);
6690 /* The actions above may have further incremented p->tick.
6691 So set p->update_tick again
6692 so that an error in the sentinel will not cause
6693 this code to be run again. */
6694 p
->update_tick
= p
->tick
;
6695 /* Now output the message suitably. */
6696 if (!NILP (p
->sentinel
))
6697 exec_sentinel (proc
, msg
);
6698 /* Don't bother with a message in the buffer
6699 when a process becomes runnable. */
6700 else if (!EQ (symbol
, Qrun
) && !NILP (buffer
))
6703 struct buffer
*old
= current_buffer
;
6704 EMACS_INT opoint
, opoint_byte
;
6705 EMACS_INT before
, before_byte
;
6707 /* Avoid error if buffer is deleted
6708 (probably that's why the process is dead, too) */
6709 if (NILP (XBUFFER (buffer
)->name
))
6711 Fset_buffer (buffer
);
6714 opoint_byte
= PT_BYTE
;
6715 /* Insert new output into buffer
6716 at the current end-of-output marker,
6717 thus preserving logical ordering of input and output. */
6718 if (XMARKER (p
->mark
)->buffer
)
6719 Fgoto_char (p
->mark
);
6721 SET_PT_BOTH (ZV
, ZV_BYTE
);
6724 before_byte
= PT_BYTE
;
6726 tem
= current_buffer
->read_only
;
6727 current_buffer
->read_only
= Qnil
;
6728 insert_string ("\nProcess ");
6729 Finsert (1, &p
->name
);
6730 insert_string (" ");
6732 current_buffer
->read_only
= tem
;
6733 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
6735 if (opoint
>= before
)
6736 SET_PT_BOTH (opoint
+ (PT
- before
),
6737 opoint_byte
+ (PT_BYTE
- before_byte
));
6739 SET_PT_BOTH (opoint
, opoint_byte
);
6741 set_buffer_internal (old
);
6746 update_mode_lines
++; /* in case buffers use %s in mode-line-format */
6751 DEFUN ("set-process-coding-system", Fset_process_coding_system
,
6752 Sset_process_coding_system
, 1, 3, 0,
6753 doc
: /* Set coding systems of PROCESS to DECODING and ENCODING.
6754 DECODING will be used to decode subprocess output and ENCODING to
6755 encode subprocess input. */)
6756 (register Lisp_Object process
, Lisp_Object decoding
, Lisp_Object encoding
)
6758 register struct Lisp_Process
*p
;
6760 CHECK_PROCESS (process
);
6761 p
= XPROCESS (process
);
6763 error ("Input file descriptor of %s closed", SDATA (p
->name
));
6765 error ("Output file descriptor of %s closed", SDATA (p
->name
));
6766 Fcheck_coding_system (decoding
);
6767 Fcheck_coding_system (encoding
);
6768 encoding
= coding_inherit_eol_type (encoding
, Qnil
);
6769 p
->decode_coding_system
= decoding
;
6770 p
->encode_coding_system
= encoding
;
6771 setup_process_coding_systems (process
);
6776 DEFUN ("process-coding-system",
6777 Fprocess_coding_system
, Sprocess_coding_system
, 1, 1, 0,
6778 doc
: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
6779 (register Lisp_Object process
)
6781 CHECK_PROCESS (process
);
6782 return Fcons (XPROCESS (process
)->decode_coding_system
,
6783 XPROCESS (process
)->encode_coding_system
);
6786 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte
,
6787 Sset_process_filter_multibyte
, 2, 2, 0,
6788 doc
: /* Set multibyteness of the strings given to PROCESS's filter.
6789 If FLAG is non-nil, the filter is given multibyte strings.
6790 If FLAG is nil, the filter is given unibyte strings. In this case,
6791 all character code conversion except for end-of-line conversion is
6793 (Lisp_Object process
, Lisp_Object flag
)
6795 register struct Lisp_Process
*p
;
6797 CHECK_PROCESS (process
);
6798 p
= XPROCESS (process
);
6800 p
->decode_coding_system
= raw_text_coding_system (p
->decode_coding_system
);
6801 setup_process_coding_systems (process
);
6806 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p
,
6807 Sprocess_filter_multibyte_p
, 1, 1, 0,
6808 doc
: /* Return t if a multibyte string is given to PROCESS's filter.*/)
6809 (Lisp_Object process
)
6811 register struct Lisp_Process
*p
;
6812 struct coding_system
*coding
;
6814 CHECK_PROCESS (process
);
6815 p
= XPROCESS (process
);
6816 coding
= proc_decode_coding_system
[p
->infd
];
6817 return (CODING_FOR_UNIBYTE (coding
) ? Qnil
: Qt
);
6824 add_gpm_wait_descriptor (int desc
)
6826 add_keyboard_wait_descriptor (desc
);
6830 delete_gpm_wait_descriptor (int desc
)
6832 delete_keyboard_wait_descriptor (desc
);
6835 /* Return nonzero if *MASK has a bit set
6836 that corresponds to one of the keyboard input descriptors. */
6839 keyboard_bit_set (fd_set
*mask
)
6843 for (fd
= 0; fd
<= max_input_desc
; fd
++)
6844 if (FD_ISSET (fd
, mask
) && FD_ISSET (fd
, &input_wait_mask
)
6845 && !FD_ISSET (fd
, &non_keyboard_wait_mask
))
6851 #else /* not subprocesses */
6853 /* Defined on msdos.c. */
6854 extern int sys_select (int, SELECT_TYPE
*, SELECT_TYPE
*, SELECT_TYPE
*,
6857 /* Implementation of wait_reading_process_output, assuming that there
6858 are no subprocesses. Used only by the MS-DOS build.
6860 Wait for timeout to elapse and/or keyboard input to be available.
6863 timeout in seconds, or
6864 zero for no limit, or
6865 -1 means gobble data immediately available but don't wait for any.
6867 read_kbd is a Lisp_Object:
6868 0 to ignore keyboard input, or
6869 1 to return when input is available, or
6870 -1 means caller will actually read the input, so don't throw to
6873 see full version for other parameters. We know that wait_proc will
6874 always be NULL, since `subprocesses' isn't defined.
6876 do_display != 0 means redisplay should be done to show subprocess
6877 output that arrives.
6879 Return true if we received input from any process. */
6882 wait_reading_process_output (int time_limit
, int microsecs
, int read_kbd
,
6884 Lisp_Object wait_for_cell
,
6885 struct Lisp_Process
*wait_proc
, int just_wait_proc
)
6888 EMACS_TIME end_time
, timeout
;
6889 SELECT_TYPE waitchannels
;
6892 /* What does time_limit really mean? */
6893 if (time_limit
|| microsecs
)
6895 EMACS_GET_TIME (end_time
);
6896 EMACS_SET_SECS_USECS (timeout
, time_limit
, microsecs
);
6897 EMACS_ADD_TIME (end_time
, end_time
, timeout
);
6900 /* Turn off periodic alarms (in case they are in use)
6901 and then turn off any other atimers,
6902 because the select emulator uses alarms. */
6904 turn_on_atimers (0);
6908 int timeout_reduced_for_timers
= 0;
6910 /* If calling from keyboard input, do not quit
6911 since we want to return C-g as an input character.
6912 Otherwise, do pending quit if requested. */
6916 /* Exit now if the cell we're waiting for became non-nil. */
6917 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
6920 /* Compute time from now till when time limit is up */
6921 /* Exit if already run out */
6922 if (time_limit
== -1)
6924 /* -1 specified for timeout means
6925 gobble output available now
6926 but don't wait at all. */
6928 EMACS_SET_SECS_USECS (timeout
, 0, 0);
6930 else if (time_limit
|| microsecs
)
6932 EMACS_GET_TIME (timeout
);
6933 EMACS_SUB_TIME (timeout
, end_time
, timeout
);
6934 if (EMACS_TIME_NEG_P (timeout
))
6939 EMACS_SET_SECS_USECS (timeout
, 100000, 0);
6942 /* If our caller will not immediately handle keyboard events,
6943 run timer events directly.
6944 (Callers that will immediately read keyboard events
6945 call timer_delay on their own.) */
6946 if (NILP (wait_for_cell
))
6948 EMACS_TIME timer_delay
;
6952 int old_timers_run
= timers_run
;
6953 timer_delay
= timer_check (1);
6954 if (timers_run
!= old_timers_run
&& do_display
)
6955 /* We must retry, since a timer may have requeued itself
6956 and that could alter the time delay. */
6957 redisplay_preserve_echo_area (14);
6961 while (!detect_input_pending ());
6963 /* If there is unread keyboard input, also return. */
6965 && requeued_events_pending_p ())
6968 if (! EMACS_TIME_NEG_P (timer_delay
) && time_limit
!= -1)
6970 EMACS_TIME difference
;
6971 EMACS_SUB_TIME (difference
, timer_delay
, timeout
);
6972 if (EMACS_TIME_NEG_P (difference
))
6974 timeout
= timer_delay
;
6975 timeout_reduced_for_timers
= 1;
6980 /* Cause C-g and alarm signals to take immediate action,
6981 and cause input available signals to zero out timeout. */
6983 set_waiting_for_input (&timeout
);
6985 /* Wait till there is something to do. */
6987 if (! read_kbd
&& NILP (wait_for_cell
))
6988 FD_ZERO (&waitchannels
);
6990 FD_SET (0, &waitchannels
);
6992 /* If a frame has been newly mapped and needs updating,
6993 reprocess its display stuff. */
6994 if (frame_garbaged
&& do_display
)
6996 clear_waiting_for_input ();
6997 redisplay_preserve_echo_area (15);
6999 set_waiting_for_input (&timeout
);
7002 if (read_kbd
&& detect_input_pending ())
7005 FD_ZERO (&waitchannels
);
7008 nfds
= select (1, &waitchannels
, (SELECT_TYPE
*)0, (SELECT_TYPE
*)0,
7013 /* Make C-g and alarm signals set flags again */
7014 clear_waiting_for_input ();
7016 /* If we woke up due to SIGWINCH, actually change size now. */
7017 do_pending_window_change (0);
7019 if (time_limit
&& nfds
== 0 && ! timeout_reduced_for_timers
)
7020 /* We waited the full specified time, so return now. */
7025 /* If the system call was interrupted, then go around the
7027 if (xerrno
== EINTR
)
7028 FD_ZERO (&waitchannels
);
7030 error ("select error: %s", emacs_strerror (xerrno
));
7033 /* Check for keyboard input */
7036 && detect_input_pending_run_timers (do_display
))
7038 swallow_events (do_display
);
7039 if (detect_input_pending_run_timers (do_display
))
7043 /* If there is unread keyboard input, also return. */
7045 && requeued_events_pending_p ())
7048 /* If wait_for_cell. check for keyboard input
7049 but don't run any timers.
7050 ??? (It seems wrong to me to check for keyboard
7051 input at all when wait_for_cell, but the code
7052 has been this way since July 1994.
7053 Try changing this after version 19.31.) */
7054 if (! NILP (wait_for_cell
)
7055 && detect_input_pending ())
7057 swallow_events (do_display
);
7058 if (detect_input_pending ())
7062 /* Exit now if the cell we're waiting for became non-nil. */
7063 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
7072 #endif /* not subprocesses */
7074 /* The following functions are needed even if async subprocesses are
7075 not supported. Some of them are no-op stubs in that case. */
7077 /* Add DESC to the set of keyboard input descriptors. */
7080 add_keyboard_wait_descriptor (int desc
)
7082 #ifdef subprocesses /* actually means "not MSDOS" */
7083 FD_SET (desc
, &input_wait_mask
);
7084 FD_SET (desc
, &non_process_wait_mask
);
7085 if (desc
> max_input_desc
)
7086 max_input_desc
= desc
;
7090 /* From now on, do not expect DESC to give keyboard input. */
7093 delete_keyboard_wait_descriptor (int desc
)
7097 int lim
= max_input_desc
;
7099 FD_CLR (desc
, &input_wait_mask
);
7100 FD_CLR (desc
, &non_process_wait_mask
);
7102 if (desc
== max_input_desc
)
7103 for (fd
= 0; fd
< lim
; fd
++)
7104 if (FD_ISSET (fd
, &input_wait_mask
) || FD_ISSET (fd
, &write_mask
))
7105 max_input_desc
= fd
;
7109 /* Setup coding systems of PROCESS. */
7112 setup_process_coding_systems (Lisp_Object process
)
7115 struct Lisp_Process
*p
= XPROCESS (process
);
7117 int outch
= p
->outfd
;
7118 Lisp_Object coding_system
;
7120 if (inch
< 0 || outch
< 0)
7123 if (!proc_decode_coding_system
[inch
])
7124 proc_decode_coding_system
[inch
]
7125 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
7126 coding_system
= p
->decode_coding_system
;
7127 if (! NILP (p
->filter
))
7129 else if (BUFFERP (p
->buffer
))
7131 if (NILP (XBUFFER (p
->buffer
)->enable_multibyte_characters
))
7132 coding_system
= raw_text_coding_system (coding_system
);
7134 setup_coding_system (coding_system
, proc_decode_coding_system
[inch
]);
7136 if (!proc_encode_coding_system
[outch
])
7137 proc_encode_coding_system
[outch
]
7138 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
7139 setup_coding_system (p
->encode_coding_system
,
7140 proc_encode_coding_system
[outch
]);
7144 /* Close all descriptors currently in use for communication
7145 with subprocess. This is used in a newly-forked subprocess
7146 to get rid of irrelevant descriptors. */
7149 close_process_descs (void)
7153 for (i
= 0; i
< MAXDESC
; i
++)
7155 Lisp_Object process
;
7156 process
= chan_process
[i
];
7157 if (!NILP (process
))
7159 int in
= XPROCESS (process
)->infd
;
7160 int out
= XPROCESS (process
)->outfd
;
7163 if (out
>= 0 && in
!= out
)
7170 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
7171 doc
: /* Return the (or a) process associated with BUFFER.
7172 BUFFER may be a buffer or the name of one. */)
7173 (register Lisp_Object buffer
)
7176 register Lisp_Object buf
, tail
, proc
;
7178 if (NILP (buffer
)) return Qnil
;
7179 buf
= Fget_buffer (buffer
);
7180 if (NILP (buf
)) return Qnil
;
7182 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
7184 proc
= Fcdr (XCAR (tail
));
7185 if (PROCESSP (proc
) && EQ (XPROCESS (proc
)->buffer
, buf
))
7188 #endif /* subprocesses */
7192 DEFUN ("process-inherit-coding-system-flag",
7193 Fprocess_inherit_coding_system_flag
, Sprocess_inherit_coding_system_flag
,
7195 doc
: /* Return the value of inherit-coding-system flag for PROCESS.
7196 If this flag is t, `buffer-file-coding-system' of the buffer
7197 associated with PROCESS will inherit the coding system used to decode
7198 the process output. */)
7199 (register Lisp_Object process
)
7202 CHECK_PROCESS (process
);
7203 return XPROCESS (process
)->inherit_coding_system_flag
? Qt
: Qnil
;
7205 /* Ignore the argument and return the value of
7206 inherit-process-coding-system. */
7207 return inherit_process_coding_system
? Qt
: Qnil
;
7211 /* Kill all processes associated with `buffer'.
7212 If `buffer' is nil, kill all processes */
7215 kill_buffer_processes (Lisp_Object buffer
)
7218 Lisp_Object tail
, proc
;
7220 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
7222 proc
= XCDR (XCAR (tail
));
7224 && (NILP (buffer
) || EQ (XPROCESS (proc
)->buffer
, buffer
)))
7226 if (NETCONN_P (proc
) || SERIALCONN_P (proc
))
7227 Fdelete_process (proc
);
7228 else if (XPROCESS (proc
)->infd
>= 0)
7229 process_send_signal (proc
, SIGHUP
, Qnil
, 1);
7232 #else /* subprocesses */
7233 /* Since we have no subprocesses, this does nothing. */
7234 #endif /* subprocesses */
7237 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p
, Swaiting_for_user_input_p
,
7239 doc
: /* Returns non-nil if Emacs is waiting for input from the user.
7240 This is intended for use by asynchronous process output filters and sentinels. */)
7244 return (waiting_for_user_input_p
? Qt
: Qnil
);
7250 /* Stop reading input from keyboard sources. */
7253 hold_keyboard_input (void)
7258 /* Resume reading input from keyboard sources. */
7261 unhold_keyboard_input (void)
7266 /* Return non-zero if keyboard input is on hold, zero otherwise. */
7269 kbd_on_hold_p (void)
7271 return kbd_is_on_hold
;
7275 /* Enumeration of and access to system processes a-la ps(1). */
7277 DEFUN ("list-system-processes", Flist_system_processes
, Slist_system_processes
,
7279 doc
: /* Return a list of numerical process IDs of all running processes.
7280 If this functionality is unsupported, return nil.
7282 See `process-attributes' for getting attributes of a process given its ID. */)
7285 return list_system_processes ();
7288 DEFUN ("process-attributes", Fprocess_attributes
,
7289 Sprocess_attributes
, 1, 1, 0,
7290 doc
: /* Return attributes of the process given by its PID, a number.
7292 Value is an alist where each element is a cons cell of the form
7296 If this functionality is unsupported, the value is nil.
7298 See `list-system-processes' for getting a list of all process IDs.
7300 The KEYs of the attributes that this function may return are listed
7301 below, together with the type of the associated VALUE (in parentheses).
7302 Not all platforms support all of these attributes; unsupported
7303 attributes will not appear in the returned alist.
7304 Unless explicitly indicated otherwise, numbers can have either
7305 integer or floating point values.
7307 euid -- Effective user User ID of the process (number)
7308 user -- User name corresponding to euid (string)
7309 egid -- Effective user Group ID of the process (number)
7310 group -- Group name corresponding to egid (string)
7311 comm -- Command name (executable name only) (string)
7312 state -- Process state code, such as "S", "R", or "T" (string)
7313 ppid -- Parent process ID (number)
7314 pgrp -- Process group ID (number)
7315 sess -- Session ID, i.e. process ID of session leader (number)
7316 ttname -- Controlling tty name (string)
7317 tpgid -- ID of foreground process group on the process's tty (number)
7318 minflt -- number of minor page faults (number)
7319 majflt -- number of major page faults (number)
7320 cminflt -- cumulative number of minor page faults (number)
7321 cmajflt -- cumulative number of major page faults (number)
7322 utime -- user time used by the process, in the (HIGH LOW USEC) format
7323 stime -- system time used by the process, in the (HIGH LOW USEC) format
7324 time -- sum of utime and stime, in the (HIGH LOW USEC) format
7325 cutime -- user time used by the process and its children, (HIGH LOW USEC)
7326 cstime -- system time used by the process and its children, (HIGH LOW USEC)
7327 ctime -- sum of cutime and cstime, in the (HIGH LOW USEC) format
7328 pri -- priority of the process (number)
7329 nice -- nice value of the process (number)
7330 thcount -- process thread count (number)
7331 start -- time the process started, in the (HIGH LOW USEC) format
7332 vsize -- virtual memory size of the process in KB's (number)
7333 rss -- resident set size of the process in KB's (number)
7334 etime -- elapsed time the process is running, in (HIGH LOW USEC) format
7335 pcpu -- percents of CPU time used by the process (floating-point number)
7336 pmem -- percents of total physical memory used by process's resident set
7337 (floating-point number)
7338 args -- command line which invoked the process (string). */)
7341 return system_process_attributes (pid
);
7351 inhibit_sentinels
= 0;
7355 if (! noninteractive
|| initialized
)
7357 signal (SIGCHLD
, sigchld_handler
);
7360 FD_ZERO (&input_wait_mask
);
7361 FD_ZERO (&non_keyboard_wait_mask
);
7362 FD_ZERO (&non_process_wait_mask
);
7363 FD_ZERO (&write_mask
);
7364 max_process_desc
= 0;
7365 memset (fd_callback_info
, 0, sizeof (fd_callback_info
));
7367 #ifdef NON_BLOCKING_CONNECT
7368 FD_ZERO (&connect_wait_mask
);
7369 num_pending_connects
= 0;
7372 #ifdef ADAPTIVE_READ_BUFFERING
7373 process_output_delay_count
= 0;
7374 process_output_skip
= 0;
7377 /* Don't do this, it caused infinite select loops. The display
7378 method should call add_keyboard_wait_descriptor on stdin if it
7381 FD_SET (0, &input_wait_mask
);
7384 Vprocess_alist
= Qnil
;
7386 deleted_pid_list
= Qnil
;
7388 for (i
= 0; i
< MAXDESC
; i
++)
7390 chan_process
[i
] = Qnil
;
7391 proc_buffered_char
[i
] = -1;
7393 memset (proc_decode_coding_system
, 0, sizeof proc_decode_coding_system
);
7394 memset (proc_encode_coding_system
, 0, sizeof proc_encode_coding_system
);
7395 #ifdef DATAGRAM_SOCKETS
7396 memset (datagram_address
, 0, sizeof datagram_address
);
7400 Lisp_Object subfeatures
= Qnil
;
7401 const struct socket_options
*sopt
;
7403 #define ADD_SUBFEATURE(key, val) \
7404 subfeatures = pure_cons (pure_cons (key, pure_cons (val, Qnil)), subfeatures)
7406 #ifdef NON_BLOCKING_CONNECT
7407 ADD_SUBFEATURE (QCnowait
, Qt
);
7409 #ifdef DATAGRAM_SOCKETS
7410 ADD_SUBFEATURE (QCtype
, Qdatagram
);
7412 #ifdef HAVE_SEQPACKET
7413 ADD_SUBFEATURE (QCtype
, Qseqpacket
);
7415 #ifdef HAVE_LOCAL_SOCKETS
7416 ADD_SUBFEATURE (QCfamily
, Qlocal
);
7418 ADD_SUBFEATURE (QCfamily
, Qipv4
);
7420 ADD_SUBFEATURE (QCfamily
, Qipv6
);
7422 #ifdef HAVE_GETSOCKNAME
7423 ADD_SUBFEATURE (QCservice
, Qt
);
7425 #if defined(O_NONBLOCK) || defined(O_NDELAY)
7426 ADD_SUBFEATURE (QCserver
, Qt
);
7429 for (sopt
= socket_options
; sopt
->name
; sopt
++)
7430 subfeatures
= pure_cons (intern_c_string (sopt
->name
), subfeatures
);
7432 Fprovide (intern_c_string ("make-network-process"), subfeatures
);
7435 #if defined (DARWIN_OS)
7436 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
7437 processes. As such, we only change the default value. */
7440 const char *release
= get_operating_system_release ();
7441 if (!release
|| !release
[0] || (release
[0] < MIN_PTY_KERNEL_VERSION
7442 && release
[1] == '.')) {
7443 Vprocess_connection_type
= Qnil
;
7447 #endif /* subprocesses */
7452 syms_of_process (void)
7456 Qprocessp
= intern_c_string ("processp");
7457 staticpro (&Qprocessp
);
7458 Qrun
= intern_c_string ("run");
7460 Qstop
= intern_c_string ("stop");
7462 Qsignal
= intern_c_string ("signal");
7463 staticpro (&Qsignal
);
7465 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
7468 Qexit = intern_c_string ("exit");
7469 staticpro (&Qexit); */
7471 Qopen
= intern_c_string ("open");
7473 Qclosed
= intern_c_string ("closed");
7474 staticpro (&Qclosed
);
7475 Qconnect
= intern_c_string ("connect");
7476 staticpro (&Qconnect
);
7477 Qfailed
= intern_c_string ("failed");
7478 staticpro (&Qfailed
);
7479 Qlisten
= intern_c_string ("listen");
7480 staticpro (&Qlisten
);
7481 Qlocal
= intern_c_string ("local");
7482 staticpro (&Qlocal
);
7483 Qipv4
= intern_c_string ("ipv4");
7486 Qipv6
= intern_c_string ("ipv6");
7489 Qdatagram
= intern_c_string ("datagram");
7490 staticpro (&Qdatagram
);
7491 Qseqpacket
= intern_c_string ("seqpacket");
7492 staticpro (&Qseqpacket
);
7494 QCport
= intern_c_string (":port");
7495 staticpro (&QCport
);
7496 QCspeed
= intern_c_string (":speed");
7497 staticpro (&QCspeed
);
7498 QCprocess
= intern_c_string (":process");
7499 staticpro (&QCprocess
);
7501 QCbytesize
= intern_c_string (":bytesize");
7502 staticpro (&QCbytesize
);
7503 QCstopbits
= intern_c_string (":stopbits");
7504 staticpro (&QCstopbits
);
7505 QCparity
= intern_c_string (":parity");
7506 staticpro (&QCparity
);
7507 Qodd
= intern_c_string ("odd");
7509 Qeven
= intern_c_string ("even");
7511 QCflowcontrol
= intern_c_string (":flowcontrol");
7512 staticpro (&QCflowcontrol
);
7513 Qhw
= intern_c_string ("hw");
7515 Qsw
= intern_c_string ("sw");
7517 QCsummary
= intern_c_string (":summary");
7518 staticpro (&QCsummary
);
7520 Qreal
= intern_c_string ("real");
7522 Qnetwork
= intern_c_string ("network");
7523 staticpro (&Qnetwork
);
7524 Qserial
= intern_c_string ("serial");
7525 staticpro (&Qserial
);
7526 QCbuffer
= intern_c_string (":buffer");
7527 staticpro (&QCbuffer
);
7528 QChost
= intern_c_string (":host");
7529 staticpro (&QChost
);
7530 QCservice
= intern_c_string (":service");
7531 staticpro (&QCservice
);
7532 QClocal
= intern_c_string (":local");
7533 staticpro (&QClocal
);
7534 QCremote
= intern_c_string (":remote");
7535 staticpro (&QCremote
);
7536 QCcoding
= intern_c_string (":coding");
7537 staticpro (&QCcoding
);
7538 QCserver
= intern_c_string (":server");
7539 staticpro (&QCserver
);
7540 QCnowait
= intern_c_string (":nowait");
7541 staticpro (&QCnowait
);
7542 QCsentinel
= intern_c_string (":sentinel");
7543 staticpro (&QCsentinel
);
7544 QClog
= intern_c_string (":log");
7546 QCnoquery
= intern_c_string (":noquery");
7547 staticpro (&QCnoquery
);
7548 QCstop
= intern_c_string (":stop");
7549 staticpro (&QCstop
);
7550 QCoptions
= intern_c_string (":options");
7551 staticpro (&QCoptions
);
7552 QCplist
= intern_c_string (":plist");
7553 staticpro (&QCplist
);
7555 Qlast_nonmenu_event
= intern_c_string ("last-nonmenu-event");
7556 staticpro (&Qlast_nonmenu_event
);
7558 staticpro (&Vprocess_alist
);
7560 staticpro (&deleted_pid_list
);
7563 #endif /* subprocesses */
7565 QCname
= intern_c_string (":name");
7566 staticpro (&QCname
);
7567 QCtype
= intern_c_string (":type");
7568 staticpro (&QCtype
);
7570 Qeuid
= intern_c_string ("euid");
7572 Qegid
= intern_c_string ("egid");
7574 Quser
= intern_c_string ("user");
7576 Qgroup
= intern_c_string ("group");
7577 staticpro (&Qgroup
);
7578 Qcomm
= intern_c_string ("comm");
7580 Qstate
= intern_c_string ("state");
7581 staticpro (&Qstate
);
7582 Qppid
= intern_c_string ("ppid");
7584 Qpgrp
= intern_c_string ("pgrp");
7586 Qsess
= intern_c_string ("sess");
7588 Qttname
= intern_c_string ("ttname");
7589 staticpro (&Qttname
);
7590 Qtpgid
= intern_c_string ("tpgid");
7591 staticpro (&Qtpgid
);
7592 Qminflt
= intern_c_string ("minflt");
7593 staticpro (&Qminflt
);
7594 Qmajflt
= intern_c_string ("majflt");
7595 staticpro (&Qmajflt
);
7596 Qcminflt
= intern_c_string ("cminflt");
7597 staticpro (&Qcminflt
);
7598 Qcmajflt
= intern_c_string ("cmajflt");
7599 staticpro (&Qcmajflt
);
7600 Qutime
= intern_c_string ("utime");
7601 staticpro (&Qutime
);
7602 Qstime
= intern_c_string ("stime");
7603 staticpro (&Qstime
);
7604 Qtime
= intern_c_string ("time");
7606 Qcutime
= intern_c_string ("cutime");
7607 staticpro (&Qcutime
);
7608 Qcstime
= intern_c_string ("cstime");
7609 staticpro (&Qcstime
);
7610 Qctime
= intern_c_string ("ctime");
7611 staticpro (&Qctime
);
7612 Qpri
= intern_c_string ("pri");
7614 Qnice
= intern_c_string ("nice");
7616 Qthcount
= intern_c_string ("thcount");
7617 staticpro (&Qthcount
);
7618 Qstart
= intern_c_string ("start");
7619 staticpro (&Qstart
);
7620 Qvsize
= intern_c_string ("vsize");
7621 staticpro (&Qvsize
);
7622 Qrss
= intern_c_string ("rss");
7624 Qetime
= intern_c_string ("etime");
7625 staticpro (&Qetime
);
7626 Qpcpu
= intern_c_string ("pcpu");
7628 Qpmem
= intern_c_string ("pmem");
7630 Qargs
= intern_c_string ("args");
7633 DEFVAR_BOOL ("delete-exited-processes", delete_exited_processes
,
7634 doc
: /* *Non-nil means delete processes immediately when they exit.
7635 A value of nil means don't delete them until `list-processes' is run. */);
7637 delete_exited_processes
= 1;
7640 DEFVAR_LISP ("process-connection-type", Vprocess_connection_type
,
7641 doc
: /* Control type of device used to communicate with subprocesses.
7642 Values are nil to use a pipe, or t or `pty' to use a pty.
7643 The value has no effect if the system has no ptys or if all ptys are busy:
7644 then a pipe is used in any case.
7645 The value takes effect when `start-process' is called. */);
7646 Vprocess_connection_type
= Qt
;
7648 #ifdef ADAPTIVE_READ_BUFFERING
7649 DEFVAR_LISP ("process-adaptive-read-buffering", Vprocess_adaptive_read_buffering
,
7650 doc
: /* If non-nil, improve receive buffering by delaying after short reads.
7651 On some systems, when Emacs reads the output from a subprocess, the output data
7652 is read in very small blocks, potentially resulting in very poor performance.
7653 This behavior can be remedied to some extent by setting this variable to a
7654 non-nil value, as it will automatically delay reading from such processes, to
7655 allow them to produce more output before Emacs tries to read it.
7656 If the value is t, the delay is reset after each write to the process; any other
7657 non-nil value means that the delay is not reset on write.
7658 The variable takes effect when `start-process' is called. */);
7659 Vprocess_adaptive_read_buffering
= Qt
;
7662 defsubr (&Sprocessp
);
7663 defsubr (&Sget_process
);
7664 defsubr (&Sdelete_process
);
7665 defsubr (&Sprocess_status
);
7666 defsubr (&Sprocess_exit_status
);
7667 defsubr (&Sprocess_id
);
7668 defsubr (&Sprocess_name
);
7669 defsubr (&Sprocess_tty_name
);
7670 defsubr (&Sprocess_command
);
7671 defsubr (&Sset_process_buffer
);
7672 defsubr (&Sprocess_buffer
);
7673 defsubr (&Sprocess_mark
);
7674 defsubr (&Sset_process_filter
);
7675 defsubr (&Sprocess_filter
);
7676 defsubr (&Sset_process_sentinel
);
7677 defsubr (&Sprocess_sentinel
);
7678 defsubr (&Sset_process_window_size
);
7679 defsubr (&Sset_process_inherit_coding_system_flag
);
7680 defsubr (&Sset_process_query_on_exit_flag
);
7681 defsubr (&Sprocess_query_on_exit_flag
);
7682 defsubr (&Sprocess_contact
);
7683 defsubr (&Sprocess_plist
);
7684 defsubr (&Sset_process_plist
);
7685 defsubr (&Slist_processes
);
7686 defsubr (&Sprocess_list
);
7687 defsubr (&Sstart_process
);
7688 defsubr (&Sserial_process_configure
);
7689 defsubr (&Smake_serial_process
);
7690 defsubr (&Sset_network_process_option
);
7691 defsubr (&Smake_network_process
);
7692 defsubr (&Sformat_network_address
);
7693 #if defined(HAVE_NET_IF_H)
7695 defsubr (&Snetwork_interface_list
);
7697 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
7698 defsubr (&Snetwork_interface_info
);
7700 #endif /* defined(HAVE_NET_IF_H) */
7701 #ifdef DATAGRAM_SOCKETS
7702 defsubr (&Sprocess_datagram_address
);
7703 defsubr (&Sset_process_datagram_address
);
7705 defsubr (&Saccept_process_output
);
7706 defsubr (&Sprocess_send_region
);
7707 defsubr (&Sprocess_send_string
);
7708 defsubr (&Sinterrupt_process
);
7709 defsubr (&Skill_process
);
7710 defsubr (&Squit_process
);
7711 defsubr (&Sstop_process
);
7712 defsubr (&Scontinue_process
);
7713 defsubr (&Sprocess_running_child_p
);
7714 defsubr (&Sprocess_send_eof
);
7715 defsubr (&Ssignal_process
);
7716 defsubr (&Swaiting_for_user_input_p
);
7717 defsubr (&Sprocess_type
);
7718 defsubr (&Sset_process_coding_system
);
7719 defsubr (&Sprocess_coding_system
);
7720 defsubr (&Sset_process_filter_multibyte
);
7721 defsubr (&Sprocess_filter_multibyte_p
);
7723 #endif /* subprocesses */
7725 defsubr (&Sget_buffer_process
);
7726 defsubr (&Sprocess_inherit_coding_system_flag
);
7727 defsubr (&Slist_system_processes
);
7728 defsubr (&Sprocess_attributes
);