1 /* Asynchronous subprocess control for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995,
3 1996, 1998, 1999, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007, 2008, 2009, 2010, 2011 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/>. */
25 /* This file is split into two parts by the following preprocessor
26 conditional. The 'then' clause contains all of the support for
27 asynchronous subprocesses. The 'else' clause contains stub
28 versions of some of the asynchronous subprocess routines that are
29 often called elsewhere in Emacs, so we don't have to #ifdef the
30 sections that call them. */
38 #include <sys/types.h> /* some typedefs are used in sys/file.h */
42 #ifdef HAVE_INTTYPES_H
54 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
55 #include <sys/socket.h>
57 #include <netinet/in.h>
58 #include <arpa/inet.h>
60 /* Are local (unix) sockets supported? */
61 #if defined (HAVE_SYS_UN_H)
62 #if !defined (AF_LOCAL) && defined (AF_UNIX)
63 #define AF_LOCAL AF_UNIX
66 #define HAVE_LOCAL_SOCKETS
70 #endif /* HAVE_SOCKETS */
72 #if defined(BSD_SYSTEM)
73 #include <sys/ioctl.h>
74 #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
76 #endif /* HAVE_PTYS and no O_NDELAY */
77 #endif /* BSD_SYSTEM */
83 /* Can we use SIOCGIFCONF and/or SIOCGIFADDR */
85 #if defined(HAVE_SYS_IOCTL_H) && defined(HAVE_NET_IF_H)
86 /* sys/ioctl.h may have been included already */
88 #include <sys/ioctl.h>
99 #include <netinet/in.h>
100 #include <arpa/nameser.h>
110 #include "character.h"
114 #include "termhooks.h"
115 #include "termopts.h"
116 #include "commands.h"
117 #include "keyboard.h"
118 #include "blockinput.h"
119 #include "dispextern.h"
120 #include "composite.h"
123 #if defined (USE_GTK) || defined (HAVE_GCONF)
124 #include "xgselect.h"
125 #endif /* defined (USE_GTK) || defined (HAVE_GCONF) */
127 Lisp_Object Qprocessp
;
128 Lisp_Object Qrun
, Qstop
, Qsignal
;
129 Lisp_Object Qopen
, Qclosed
, Qconnect
, Qfailed
, Qlisten
;
130 Lisp_Object Qlocal
, Qipv4
, Qdatagram
, Qseqpacket
;
131 Lisp_Object Qreal
, Qnetwork
, Qserial
;
135 Lisp_Object QCport
, QCspeed
, QCprocess
;
136 Lisp_Object QCbytesize
, QCstopbits
, QCparity
, Qodd
, Qeven
;
137 Lisp_Object QCflowcontrol
, Qhw
, Qsw
, QCsummary
;
138 Lisp_Object QCname
, QCbuffer
, QChost
, QCservice
, QCtype
;
139 Lisp_Object QClocal
, QCremote
, QCcoding
;
140 Lisp_Object QCserver
, QCnowait
, QCnoquery
, QCstop
;
141 Lisp_Object QCsentinel
, QClog
, QCoptions
, QCplist
;
142 Lisp_Object Qlast_nonmenu_event
;
143 /* QCfamily is declared and initialized in xfaces.c,
144 QCfilter in keyboard.c. */
145 extern Lisp_Object QCfamily
, QCfilter
;
147 /* Qexit is declared and initialized in eval.c. */
149 /* QCfamily is defined in xfaces.c. */
150 extern Lisp_Object QCfamily
;
151 /* QCfilter is defined in keyboard.c. */
152 extern Lisp_Object QCfilter
;
154 Lisp_Object Qeuid
, Qegid
, Qcomm
, Qstate
, Qppid
, Qpgrp
, Qsess
, Qttname
, Qtpgid
;
155 Lisp_Object Qminflt
, Qmajflt
, Qcminflt
, Qcmajflt
, Qutime
, Qstime
, Qcstime
;
156 Lisp_Object Qcutime
, Qpri
, Qnice
, Qthcount
, Qstart
, Qvsize
, Qrss
, Qargs
;
157 Lisp_Object Quser
, Qgroup
, Qetime
, Qpcpu
, Qpmem
, Qtime
, Qctime
;
160 #define NETCONN_P(p) (EQ (XPROCESS (p)->type, Qnetwork))
161 #define NETCONN1_P(p) (EQ ((p)->type, Qnetwork))
162 #define SERIALCONN_P(p) (EQ (XPROCESS (p)->type, Qserial))
163 #define SERIALCONN1_P(p) (EQ ((p)->type, Qserial))
165 #define NETCONN_P(p) 0
166 #define NETCONN1_P(p) 0
167 #define SERIALCONN_P(p) 0
168 #define SERIALCONN1_P(p) 0
169 #endif /* HAVE_SOCKETS */
171 /* Define first descriptor number available for subprocesses. */
172 #define FIRST_PROC_DESC 3
174 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
177 #if !defined (SIGCHLD) && defined (SIGCLD)
178 #define SIGCHLD SIGCLD
181 #include "syssignal.h"
185 extern char *get_operating_system_release ();
187 /* Serial processes require termios or Windows. */
188 #if defined (HAVE_TERMIOS) || defined (WINDOWSNT)
193 /* From sysdep.c or w32.c */
194 extern int serial_open (char *port
);
195 extern void serial_configure (struct Lisp_Process
*p
, Lisp_Object contact
);
206 /* t means use pty, nil means use a pipe,
207 maybe other values to come. */
208 static Lisp_Object Vprocess_connection_type
;
210 /* These next two vars are non-static since sysdep.c uses them in the
211 emulation of `select'. */
212 /* Number of events of change of status of a process. */
214 /* Number of events for which the user or sentinel has been notified. */
217 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
219 #ifdef BROKEN_NON_BLOCKING_CONNECT
220 #undef NON_BLOCKING_CONNECT
222 #ifndef NON_BLOCKING_CONNECT
225 #if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX)
226 #if defined (O_NONBLOCK) || defined (O_NDELAY)
227 #if defined (EWOULDBLOCK) || defined (EINPROGRESS)
228 #define NON_BLOCKING_CONNECT
229 #endif /* EWOULDBLOCK || EINPROGRESS */
230 #endif /* O_NONBLOCK || O_NDELAY */
231 #endif /* HAVE_GETPEERNAME || GNU_LINUX */
232 #endif /* HAVE_SELECT */
233 #endif /* HAVE_SOCKETS */
234 #endif /* NON_BLOCKING_CONNECT */
235 #endif /* BROKEN_NON_BLOCKING_CONNECT */
237 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on
238 this system. We need to read full packets, so we need a
239 "non-destructive" select. So we require either native select,
240 or emulation of select using FIONREAD. */
242 #ifdef BROKEN_DATAGRAM_SOCKETS
243 #undef DATAGRAM_SOCKETS
245 #ifndef DATAGRAM_SOCKETS
247 #if defined (HAVE_SELECT) || defined (FIONREAD)
248 #if defined (HAVE_SENDTO) && defined (HAVE_RECVFROM) && defined (EMSGSIZE)
249 #define DATAGRAM_SOCKETS
250 #endif /* HAVE_SENDTO && HAVE_RECVFROM && EMSGSIZE */
251 #endif /* HAVE_SELECT || FIONREAD */
252 #endif /* HAVE_SOCKETS */
253 #endif /* DATAGRAM_SOCKETS */
254 #endif /* BROKEN_DATAGRAM_SOCKETS */
256 #if defined HAVE_LOCAL_SOCKETS && defined DATAGRAM_SOCKETS
257 # define HAVE_SEQPACKET
260 #if !defined (ADAPTIVE_READ_BUFFERING) && !defined (NO_ADAPTIVE_READ_BUFFERING)
261 #ifdef EMACS_HAS_USECS
262 #define ADAPTIVE_READ_BUFFERING
266 #ifdef ADAPTIVE_READ_BUFFERING
267 #define READ_OUTPUT_DELAY_INCREMENT 10000
268 #define READ_OUTPUT_DELAY_MAX (READ_OUTPUT_DELAY_INCREMENT * 5)
269 #define READ_OUTPUT_DELAY_MAX_MAX (READ_OUTPUT_DELAY_INCREMENT * 7)
271 /* Number of processes which have a non-zero read_output_delay,
272 and therefore might be delayed for adaptive read buffering. */
274 static int process_output_delay_count
;
276 /* Non-zero if any process has non-nil read_output_skip. */
278 static int process_output_skip
;
280 /* Non-nil means to delay reading process output to improve buffering.
281 A value of t means that delay is reset after each send, any other
282 non-nil value does not reset the delay. A value of nil disables
283 adaptive read buffering completely. */
284 static Lisp_Object Vprocess_adaptive_read_buffering
;
286 #define process_output_delay_count 0
290 #include "sysselect.h"
292 static int keyboard_bit_set
P_ ((SELECT_TYPE
*));
293 static void deactivate_process
P_ ((Lisp_Object
));
294 static void status_notify
P_ ((struct Lisp_Process
*));
295 static int read_process_output
P_ ((Lisp_Object
, int));
296 static void create_pty
P_ ((Lisp_Object
));
298 /* If we support a window system, turn on the code to poll periodically
299 to detect C-g. It isn't actually used when doing interrupt input. */
300 #ifdef HAVE_WINDOW_SYSTEM
301 #define POLL_FOR_INPUT
304 static Lisp_Object
get_process ();
305 static void exec_sentinel ();
307 extern int timers_run
;
309 /* Mask of bits indicating the descriptors that we wait for input on. */
311 static SELECT_TYPE input_wait_mask
;
313 /* Mask that excludes keyboard input descriptor(s). */
315 static SELECT_TYPE non_keyboard_wait_mask
;
317 /* Mask that excludes process input descriptor(s). */
319 static SELECT_TYPE non_process_wait_mask
;
321 /* Mask for the gpm mouse input descriptor. */
323 static SELECT_TYPE gpm_wait_mask
;
325 #ifdef NON_BLOCKING_CONNECT
326 /* Mask of bits indicating the descriptors that we wait for connect to
327 complete on. Once they complete, they are removed from this mask
328 and added to the input_wait_mask and non_keyboard_wait_mask. */
330 static SELECT_TYPE connect_wait_mask
;
332 /* Number of bits set in connect_wait_mask. */
333 static int num_pending_connects
;
335 #define IF_NON_BLOCKING_CONNECT(s) s
337 #define IF_NON_BLOCKING_CONNECT(s)
340 /* The largest descriptor currently in use for a process object. */
341 static int max_process_desc
;
343 /* The largest descriptor currently in use for keyboard input. */
344 static int max_keyboard_desc
;
346 /* The largest descriptor currently in use for gpm mouse input. */
347 static int max_gpm_desc
;
349 /* Non-zero if keyboard input is on hold, zero otherwise. */
350 static int kbd_is_on_hold
;
352 /* Nonzero means delete a process right away if it exits. */
353 static int delete_exited_processes
;
355 /* Indexed by descriptor, gives the process (if any) for that descriptor */
356 Lisp_Object chan_process
[MAXDESC
];
358 /* Alist of elements (NAME . PROCESS) */
359 Lisp_Object Vprocess_alist
;
361 /* Buffered-ahead input char from process, indexed by channel.
362 -1 means empty (no char is buffered).
363 Used on sys V where the only way to tell if there is any
364 output from the process is to read at least one char.
365 Always -1 on systems that support FIONREAD. */
367 /* Don't make static; need to access externally. */
368 int proc_buffered_char
[MAXDESC
];
370 /* Table of `struct coding-system' for each process. */
371 static struct coding_system
*proc_decode_coding_system
[MAXDESC
];
372 static struct coding_system
*proc_encode_coding_system
[MAXDESC
];
374 #ifdef DATAGRAM_SOCKETS
375 /* Table of `partner address' for datagram sockets. */
376 struct sockaddr_and_len
{
379 } datagram_address
[MAXDESC
];
380 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
381 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XPROCESS (proc)->infd].sa != 0)
383 #define DATAGRAM_CHAN_P(chan) (0)
384 #define DATAGRAM_CONN_P(proc) (0)
387 /* Maximum number of bytes to send to a pty without an eof. */
388 static int pty_max_bytes
;
390 /* Nonzero means don't run process sentinels. This is used
392 int inhibit_sentinels
;
398 /* The file name of the pty opened by allocate_pty. */
400 static char pty_name
[24];
403 /* Compute the Lisp form of the process status, p->status, from
404 the numeric status that was returned by `wait'. */
406 static Lisp_Object
status_convert (int);
410 struct Lisp_Process
*p
;
412 eassert (p
->raw_status_new
);
413 p
->status
= status_convert (p
->raw_status
);
414 p
->raw_status_new
= 0;
417 /* Convert a process status word in Unix format to
418 the list that we use internally. */
421 status_convert (int w
)
424 return Fcons (Qstop
, Fcons (make_number (WSTOPSIG (w
)), Qnil
));
425 else if (WIFEXITED (w
))
426 return Fcons (Qexit
, Fcons (make_number (WRETCODE (w
)),
427 WCOREDUMP (w
) ? Qt
: Qnil
));
428 else if (WIFSIGNALED (w
))
429 return Fcons (Qsignal
, Fcons (make_number (WTERMSIG (w
)),
430 WCOREDUMP (w
) ? Qt
: Qnil
));
435 /* Given a status-list, extract the three pieces of information
436 and store them individually through the three pointers. */
439 decode_status (l
, symbol
, code
, coredump
)
457 *code
= XFASTINT (XCAR (tem
));
459 *coredump
= !NILP (tem
);
463 /* Return a string describing a process status list. */
467 struct Lisp_Process
*p
;
469 Lisp_Object status
= p
->status
;
472 Lisp_Object string
, string2
;
474 decode_status (status
, &symbol
, &code
, &coredump
);
476 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qstop
))
479 synchronize_system_messages_locale ();
480 signame
= strsignal (code
);
482 string
= build_string ("unknown");
487 string
= make_unibyte_string (signame
, strlen (signame
));
488 if (! NILP (Vlocale_coding_system
))
489 string
= (code_convert_string_norecord
490 (string
, Vlocale_coding_system
, 0));
491 c1
= STRING_CHAR ((char *) SDATA (string
));
494 Faset (string
, make_number (0), make_number (c2
));
496 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
497 return concat2 (string
, string2
);
499 else if (EQ (symbol
, Qexit
))
502 return build_string (code
== 0 ? "deleted\n" : "connection broken by remote peer\n");
504 return build_string ("finished\n");
505 string
= Fnumber_to_string (make_number (code
));
506 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
507 return concat3 (build_string ("exited abnormally with code "),
510 else if (EQ (symbol
, Qfailed
))
512 string
= Fnumber_to_string (make_number (code
));
513 string2
= build_string ("\n");
514 return concat3 (build_string ("failed with code "),
518 return Fcopy_sequence (Fsymbol_name (symbol
));
523 /* Open an available pty, returning a file descriptor.
524 Return -1 on failure.
525 The file name of the terminal corresponding to the pty
526 is left in the variable pty_name. */
537 for (c
= FIRST_PTY_LETTER
; c
<= 'z'; c
++)
538 for (i
= 0; i
< 16; i
++)
541 struct stat stb
; /* Used in some PTY_OPEN. */
542 #ifdef PTY_NAME_SPRINTF
545 sprintf (pty_name
, "/dev/pty%c%x", c
, i
);
546 #endif /* no PTY_NAME_SPRINTF */
550 #else /* no PTY_OPEN */
552 { /* Some systems name their pseudoterminals so that there are gaps in
553 the usual sequence - for example, on HP9000/S700 systems, there
554 are no pseudoterminals with names ending in 'f'. So we wait for
555 three failures in a row before deciding that we've reached the
557 int failed_count
= 0;
559 if (stat (pty_name
, &stb
) < 0)
562 if (failed_count
>= 3)
569 fd
= emacs_open (pty_name
, O_RDWR
| O_NONBLOCK
, 0);
571 fd
= emacs_open (pty_name
, O_RDWR
| O_NDELAY
, 0);
574 #endif /* no PTY_OPEN */
578 /* check to make certain that both sides are available
579 this avoids a nasty yet stupid bug in rlogins */
580 #ifdef PTY_TTY_NAME_SPRINTF
583 sprintf (pty_name
, "/dev/tty%c%x", c
, i
);
584 #endif /* no PTY_TTY_NAME_SPRINTF */
585 if (access (pty_name
, 6) != 0)
600 #endif /* HAVE_PTYS */
606 register Lisp_Object val
, tem
, name1
;
607 register struct Lisp_Process
*p
;
611 p
= allocate_process ();
619 p
->raw_status_new
= 0;
621 p
->mark
= Fmake_marker ();
622 p
->kill_without_query
= 0;
624 #ifdef ADAPTIVE_READ_BUFFERING
625 p
->adaptive_read_buffering
= 0;
626 p
->read_output_delay
= 0;
627 p
->read_output_skip
= 0;
630 /* If name is already in use, modify it until it is unused. */
635 tem
= Fget_process (name1
);
636 if (NILP (tem
)) break;
637 sprintf (suffix
, "<%d>", i
);
638 name1
= concat2 (name
, build_string (suffix
));
642 XSETPROCESS (val
, p
);
643 Vprocess_alist
= Fcons (Fcons (name
, val
), Vprocess_alist
);
648 remove_process (proc
)
649 register Lisp_Object proc
;
651 register Lisp_Object pair
;
653 pair
= Frassq (proc
, Vprocess_alist
);
654 Vprocess_alist
= Fdelq (pair
, Vprocess_alist
);
656 deactivate_process (proc
);
659 /* Setup coding systems of PROCESS. */
662 setup_process_coding_systems (process
)
665 struct Lisp_Process
*p
= XPROCESS (process
);
667 int outch
= p
->outfd
;
668 Lisp_Object coding_system
;
670 if (inch
< 0 || outch
< 0)
673 if (!proc_decode_coding_system
[inch
])
674 proc_decode_coding_system
[inch
]
675 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
676 coding_system
= p
->decode_coding_system
;
677 if (! NILP (p
->filter
))
679 else if (BUFFERP (p
->buffer
))
681 if (NILP (XBUFFER (p
->buffer
)->enable_multibyte_characters
))
682 coding_system
= raw_text_coding_system (coding_system
);
684 setup_coding_system (coding_system
, proc_decode_coding_system
[inch
]);
686 if (!proc_encode_coding_system
[outch
])
687 proc_encode_coding_system
[outch
]
688 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
689 setup_coding_system (p
->encode_coding_system
,
690 proc_encode_coding_system
[outch
]);
693 DEFUN ("processp", Fprocessp
, Sprocessp
, 1, 1, 0,
694 doc
: /* Return t if OBJECT is a process. */)
698 return PROCESSP (object
) ? Qt
: Qnil
;
701 DEFUN ("get-process", Fget_process
, Sget_process
, 1, 1, 0,
702 doc
: /* Return the process named NAME, or nil if there is none. */)
704 register Lisp_Object name
;
709 return Fcdr (Fassoc (name
, Vprocess_alist
));
712 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
713 doc
: /* Return the (or a) process associated with BUFFER.
714 BUFFER may be a buffer or the name of one. */)
716 register Lisp_Object buffer
;
718 register Lisp_Object buf
, tail
, proc
;
720 if (NILP (buffer
)) return Qnil
;
721 buf
= Fget_buffer (buffer
);
722 if (NILP (buf
)) return Qnil
;
724 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
726 proc
= Fcdr (XCAR (tail
));
727 if (PROCESSP (proc
) && EQ (XPROCESS (proc
)->buffer
, buf
))
733 /* This is how commands for the user decode process arguments. It
734 accepts a process, a process name, a buffer, a buffer name, or nil.
735 Buffers denote the first process in the buffer, and nil denotes the
740 register Lisp_Object name
;
742 register Lisp_Object proc
, obj
;
745 obj
= Fget_process (name
);
747 obj
= Fget_buffer (name
);
749 error ("Process %s does not exist", SDATA (name
));
751 else if (NILP (name
))
752 obj
= Fcurrent_buffer ();
756 /* Now obj should be either a buffer object or a process object.
760 proc
= Fget_buffer_process (obj
);
762 error ("Buffer %s has no process", SDATA (XBUFFER (obj
)->name
));
774 /* Fdelete_process promises to immediately forget about the process, but in
775 reality, Emacs needs to remember those processes until they have been
776 treated by sigchld_handler; otherwise this handler would consider the
777 process as being synchronous and say that the synchronous process is
779 static Lisp_Object deleted_pid_list
;
782 DEFUN ("delete-process", Fdelete_process
, Sdelete_process
, 1, 1, 0,
783 doc
: /* Delete PROCESS: kill it and forget about it immediately.
784 PROCESS may be a process, a buffer, the name of a process or buffer, or
785 nil, indicating the current buffer's process. */)
787 register Lisp_Object process
;
789 register struct Lisp_Process
*p
;
791 process
= get_process (process
);
792 p
= XPROCESS (process
);
794 p
->raw_status_new
= 0;
795 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
797 p
->status
= Fcons (Qexit
, Fcons (make_number (0), Qnil
));
798 p
->tick
= ++process_tick
;
800 redisplay_preserve_echo_area (13);
802 else if (p
->infd
>= 0)
806 /* Assignment to EMACS_INT stops GCC whining about limited range
808 EMACS_INT pid
= p
->pid
;
810 /* No problem storing the pid here, as it is still in Vprocess_alist. */
811 deleted_pid_list
= Fcons (make_fixnum_or_float (pid
),
812 /* GC treated elements set to nil. */
813 Fdelq (Qnil
, deleted_pid_list
));
814 /* If the process has already signaled, remove it from the list. */
815 if (p
->raw_status_new
)
818 if (CONSP (p
->status
))
819 symbol
= XCAR (p
->status
);
820 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
))
822 = Fdelete (make_fixnum_or_float (pid
), deleted_pid_list
);
826 Fkill_process (process
, Qnil
);
827 /* Do this now, since remove_process will make sigchld_handler do nothing. */
829 = Fcons (Qsignal
, Fcons (make_number (SIGKILL
), Qnil
));
830 p
->tick
= ++process_tick
;
832 redisplay_preserve_echo_area (13);
835 remove_process (process
);
839 DEFUN ("process-status", Fprocess_status
, Sprocess_status
, 1, 1, 0,
840 doc
: /* Return the status of PROCESS.
841 The returned value is one of the following symbols:
842 run -- for a process that is running.
843 stop -- for a process stopped but continuable.
844 exit -- for a process that has exited.
845 signal -- for a process that has got a fatal signal.
846 open -- for a network stream connection that is open.
847 listen -- for a network stream server that is listening.
848 closed -- for a network stream connection that is closed.
849 connect -- when waiting for a non-blocking connection to complete.
850 failed -- when a non-blocking connection has failed.
851 nil -- if arg is a process name and no such process exists.
852 PROCESS may be a process, a buffer, the name of a process, or
853 nil, indicating the current buffer's process. */)
855 register Lisp_Object process
;
857 register struct Lisp_Process
*p
;
858 register Lisp_Object status
;
860 if (STRINGP (process
))
861 process
= Fget_process (process
);
863 process
= get_process (process
);
868 p
= XPROCESS (process
);
869 if (p
->raw_status_new
)
873 status
= XCAR (status
);
874 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
876 if (EQ (status
, Qexit
))
878 else if (EQ (p
->command
, Qt
))
880 else if (EQ (status
, Qrun
))
886 DEFUN ("process-exit-status", Fprocess_exit_status
, Sprocess_exit_status
,
888 doc
: /* Return the exit status of PROCESS or the signal number that killed it.
889 If PROCESS has not yet exited or died, return 0. */)
891 register Lisp_Object process
;
893 CHECK_PROCESS (process
);
894 if (XPROCESS (process
)->raw_status_new
)
895 update_status (XPROCESS (process
));
896 if (CONSP (XPROCESS (process
)->status
))
897 return XCAR (XCDR (XPROCESS (process
)->status
));
898 return make_number (0);
901 DEFUN ("process-id", Fprocess_id
, Sprocess_id
, 1, 1, 0,
902 doc
: /* Return the process id of PROCESS.
903 This is the pid of the external process which PROCESS uses or talks to.
904 For a network connection, this value is nil. */)
906 register Lisp_Object process
;
908 /* Assignment to EMACS_INT stops GCC whining about limited range of
912 CHECK_PROCESS (process
);
913 pid
= XPROCESS (process
)->pid
;
914 return (pid
? make_fixnum_or_float (pid
) : Qnil
);
917 DEFUN ("process-name", Fprocess_name
, Sprocess_name
, 1, 1, 0,
918 doc
: /* Return the name of PROCESS, as a string.
919 This is the name of the program invoked in PROCESS,
920 possibly modified to make it unique among process names. */)
922 register Lisp_Object process
;
924 CHECK_PROCESS (process
);
925 return XPROCESS (process
)->name
;
928 DEFUN ("process-command", Fprocess_command
, Sprocess_command
, 1, 1, 0,
929 doc
: /* Return the command that was executed to start PROCESS.
930 This is a list of strings, the first string being the program executed
931 and the rest of the strings being the arguments given to it.
932 For a network or serial process, this is nil (process is running) or t
933 \(process is stopped). */)
935 register Lisp_Object process
;
937 CHECK_PROCESS (process
);
938 return XPROCESS (process
)->command
;
941 DEFUN ("process-tty-name", Fprocess_tty_name
, Sprocess_tty_name
, 1, 1, 0,
942 doc
: /* Return the name of the terminal PROCESS uses, or nil if none.
943 This is the terminal that the process itself reads and writes on,
944 not the name of the pty that Emacs uses to talk with that terminal. */)
946 register Lisp_Object process
;
948 CHECK_PROCESS (process
);
949 return XPROCESS (process
)->tty_name
;
952 DEFUN ("set-process-buffer", Fset_process_buffer
, Sset_process_buffer
,
954 doc
: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil). */)
956 register Lisp_Object process
, buffer
;
958 struct Lisp_Process
*p
;
960 CHECK_PROCESS (process
);
962 CHECK_BUFFER (buffer
);
963 p
= XPROCESS (process
);
965 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
966 p
->childp
= Fplist_put (p
->childp
, QCbuffer
, buffer
);
967 setup_process_coding_systems (process
);
971 DEFUN ("process-buffer", Fprocess_buffer
, Sprocess_buffer
,
973 doc
: /* Return the buffer PROCESS is associated with.
974 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
976 register Lisp_Object process
;
978 CHECK_PROCESS (process
);
979 return XPROCESS (process
)->buffer
;
982 DEFUN ("process-mark", Fprocess_mark
, Sprocess_mark
,
984 doc
: /* Return the marker for the end of the last output from PROCESS. */)
986 register Lisp_Object process
;
988 CHECK_PROCESS (process
);
989 return XPROCESS (process
)->mark
;
992 DEFUN ("set-process-filter", Fset_process_filter
, Sset_process_filter
,
994 doc
: /* Give PROCESS the filter function FILTER; nil means no filter.
995 A value of t means stop accepting output from the process.
997 When a process has a filter, its buffer is not used for output.
998 Instead, each time it does output, the entire string of output is
999 passed to the filter.
1001 The filter gets two arguments: the process and the string of output.
1002 The string argument is normally a multibyte string, except:
1003 - if the process' input coding system is no-conversion or raw-text,
1004 it is a unibyte string (the non-converted input), or else
1005 - if `default-enable-multibyte-characters' is nil, it is a unibyte
1006 string (the result of converting the decoded input multibyte
1007 string to unibyte with `string-make-unibyte'). */)
1009 register Lisp_Object process
, filter
;
1011 struct Lisp_Process
*p
;
1013 CHECK_PROCESS (process
);
1014 p
= XPROCESS (process
);
1016 /* Don't signal an error if the process' input file descriptor
1017 is closed. This could make debugging Lisp more difficult,
1018 for example when doing something like
1020 (setq process (start-process ...))
1022 (set-process-filter process ...) */
1026 if (EQ (filter
, Qt
) && !EQ (p
->status
, Qlisten
))
1028 FD_CLR (p
->infd
, &input_wait_mask
);
1029 FD_CLR (p
->infd
, &non_keyboard_wait_mask
);
1031 else if (EQ (p
->filter
, Qt
)
1032 /* Network or serial process not stopped: */
1033 && !EQ (p
->command
, Qt
))
1035 FD_SET (p
->infd
, &input_wait_mask
);
1036 FD_SET (p
->infd
, &non_keyboard_wait_mask
);
1041 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
1042 p
->childp
= Fplist_put (p
->childp
, QCfilter
, filter
);
1043 setup_process_coding_systems (process
);
1047 DEFUN ("process-filter", Fprocess_filter
, Sprocess_filter
,
1049 doc
: /* Returns the filter function of PROCESS; nil if none.
1050 See `set-process-filter' for more info on filter functions. */)
1052 register Lisp_Object process
;
1054 CHECK_PROCESS (process
);
1055 return XPROCESS (process
)->filter
;
1058 DEFUN ("set-process-sentinel", Fset_process_sentinel
, Sset_process_sentinel
,
1060 doc
: /* Give PROCESS the sentinel SENTINEL; nil for none.
1061 The sentinel is called as a function when the process changes state.
1062 It gets two arguments: the process, and a string describing the change. */)
1064 register Lisp_Object process
, sentinel
;
1066 struct Lisp_Process
*p
;
1068 CHECK_PROCESS (process
);
1069 p
= XPROCESS (process
);
1071 p
->sentinel
= sentinel
;
1072 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
1073 p
->childp
= Fplist_put (p
->childp
, QCsentinel
, sentinel
);
1077 DEFUN ("process-sentinel", Fprocess_sentinel
, Sprocess_sentinel
,
1079 doc
: /* Return the sentinel of PROCESS; nil if none.
1080 See `set-process-sentinel' for more info on sentinels. */)
1082 register Lisp_Object process
;
1084 CHECK_PROCESS (process
);
1085 return XPROCESS (process
)->sentinel
;
1088 DEFUN ("set-process-window-size", Fset_process_window_size
,
1089 Sset_process_window_size
, 3, 3, 0,
1090 doc
: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
1091 (process
, height
, width
)
1092 register Lisp_Object process
, height
, width
;
1094 CHECK_PROCESS (process
);
1095 CHECK_NATNUM (height
);
1096 CHECK_NATNUM (width
);
1098 if (XPROCESS (process
)->infd
< 0
1099 || set_window_size (XPROCESS (process
)->infd
,
1100 XINT (height
), XINT (width
)) <= 0)
1106 DEFUN ("set-process-inherit-coding-system-flag",
1107 Fset_process_inherit_coding_system_flag
,
1108 Sset_process_inherit_coding_system_flag
, 2, 2, 0,
1109 doc
: /* Determine whether buffer of PROCESS will inherit coding-system.
1110 If the second argument FLAG is non-nil, then the variable
1111 `buffer-file-coding-system' of the buffer associated with PROCESS
1112 will be bound to the value of the coding system used to decode
1115 This is useful when the coding system specified for the process buffer
1116 leaves either the character code conversion or the end-of-line conversion
1117 unspecified, or if the coding system used to decode the process output
1118 is more appropriate for saving the process buffer.
1120 Binding the variable `inherit-process-coding-system' to non-nil before
1121 starting the process is an alternative way of setting the inherit flag
1122 for the process which will run. */)
1124 register Lisp_Object process
, flag
;
1126 CHECK_PROCESS (process
);
1127 XPROCESS (process
)->inherit_coding_system_flag
= !NILP (flag
);
1131 DEFUN ("process-inherit-coding-system-flag",
1132 Fprocess_inherit_coding_system_flag
, Sprocess_inherit_coding_system_flag
,
1134 doc
: /* Return the value of inherit-coding-system flag for PROCESS.
1135 If this flag is t, `buffer-file-coding-system' of the buffer
1136 associated with PROCESS will inherit the coding system used to decode
1137 the process output. */)
1139 register Lisp_Object process
;
1141 CHECK_PROCESS (process
);
1142 return XPROCESS (process
)->inherit_coding_system_flag
? Qt
: Qnil
;
1145 DEFUN ("set-process-query-on-exit-flag",
1146 Fset_process_query_on_exit_flag
, Sset_process_query_on_exit_flag
,
1148 doc
: /* Specify if query is needed for PROCESS when Emacs is exited.
1149 If the second argument FLAG is non-nil, Emacs will query the user before
1150 exiting or killing a buffer if PROCESS is running. */)
1152 register Lisp_Object process
, flag
;
1154 CHECK_PROCESS (process
);
1155 XPROCESS (process
)->kill_without_query
= NILP (flag
);
1159 DEFUN ("process-query-on-exit-flag",
1160 Fprocess_query_on_exit_flag
, Sprocess_query_on_exit_flag
,
1162 doc
: /* Return the current value of query-on-exit flag for PROCESS. */)
1164 register Lisp_Object process
;
1166 CHECK_PROCESS (process
);
1167 return (XPROCESS (process
)->kill_without_query
? Qnil
: Qt
);
1170 #ifdef DATAGRAM_SOCKETS
1171 Lisp_Object
Fprocess_datagram_address ();
1174 DEFUN ("process-contact", Fprocess_contact
, Sprocess_contact
,
1176 doc
: /* Return the contact info of PROCESS; t for a real child.
1177 For a network or serial connection, the value depends on the optional
1178 KEY arg. If KEY is nil, value is a cons cell of the form (HOST
1179 SERVICE) for a network connection or (PORT SPEED) for a serial
1180 connection. If KEY is t, the complete contact information for the
1181 connection is returned, else the specific value for the keyword KEY is
1182 returned. See `make-network-process' or `make-serial-process' for a
1183 list of keywords. */)
1185 register Lisp_Object process
, key
;
1187 Lisp_Object contact
;
1189 CHECK_PROCESS (process
);
1190 contact
= XPROCESS (process
)->childp
;
1192 #ifdef DATAGRAM_SOCKETS
1193 if (DATAGRAM_CONN_P (process
)
1194 && (EQ (key
, Qt
) || EQ (key
, QCremote
)))
1195 contact
= Fplist_put (contact
, QCremote
,
1196 Fprocess_datagram_address (process
));
1199 if ((!NETCONN_P (process
) && !SERIALCONN_P (process
)) || EQ (key
, Qt
))
1201 if (NILP (key
) && NETCONN_P (process
))
1202 return Fcons (Fplist_get (contact
, QChost
),
1203 Fcons (Fplist_get (contact
, QCservice
), Qnil
));
1204 if (NILP (key
) && SERIALCONN_P (process
))
1205 return Fcons (Fplist_get (contact
, QCport
),
1206 Fcons (Fplist_get (contact
, QCspeed
), Qnil
));
1207 return Fplist_get (contact
, key
);
1210 DEFUN ("process-plist", Fprocess_plist
, Sprocess_plist
,
1212 doc
: /* Return the plist of PROCESS. */)
1214 register Lisp_Object process
;
1216 CHECK_PROCESS (process
);
1217 return XPROCESS (process
)->plist
;
1220 DEFUN ("set-process-plist", Fset_process_plist
, Sset_process_plist
,
1222 doc
: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
1224 register Lisp_Object process
, plist
;
1226 CHECK_PROCESS (process
);
1229 XPROCESS (process
)->plist
= plist
;
1233 #if 0 /* Turned off because we don't currently record this info
1234 in the process. Perhaps add it. */
1235 DEFUN ("process-connection", Fprocess_connection
, Sprocess_connection
, 1, 1, 0,
1236 doc
: /* Return the connection type of PROCESS.
1237 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1238 a socket connection. */)
1240 Lisp_Object process
;
1242 return XPROCESS (process
)->type
;
1246 DEFUN ("process-type", Fprocess_type
, Sprocess_type
, 1, 1, 0,
1247 doc
: /* Return the connection type of PROCESS.
1248 The value is either the symbol `real', `network', or `serial'.
1249 PROCESS may be a process, a buffer, the name of a process or buffer, or
1250 nil, indicating the current buffer's process. */)
1252 Lisp_Object process
;
1255 proc
= get_process (process
);
1256 return XPROCESS (proc
)->type
;
1260 DEFUN ("format-network-address", Fformat_network_address
, Sformat_network_address
,
1262 doc
: /* Convert network ADDRESS from internal format to a string.
1263 A 4 or 5 element vector represents an IPv4 address (with port number).
1264 An 8 or 9 element vector represents an IPv6 address (with port number).
1265 If optional second argument OMIT-PORT is non-nil, don't include a port
1266 number in the string, even when present in ADDRESS.
1267 Returns nil if format of ADDRESS is invalid. */)
1268 (address
, omit_port
)
1269 Lisp_Object address
, omit_port
;
1274 if (STRINGP (address
)) /* AF_LOCAL */
1277 if (VECTORP (address
)) /* AF_INET or AF_INET6 */
1279 register struct Lisp_Vector
*p
= XVECTOR (address
);
1280 EMACS_UINT size
= p
->header
.size
;
1281 Lisp_Object args
[10];
1284 if (size
== 4 || (size
== 5 && !NILP (omit_port
)))
1286 args
[0] = build_string ("%d.%d.%d.%d");
1291 args
[0] = build_string ("%d.%d.%d.%d:%d");
1294 else if (size
== 8 || (size
== 9 && !NILP (omit_port
)))
1296 args
[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
1301 args
[0] = build_string ("[%x:%x:%x:%x:%x:%x:%x:%x]:%d");
1307 for (i
= 0; i
< nargs
; i
++)
1309 EMACS_INT element
= XINT (p
->contents
[i
]);
1311 if (element
< 0 || element
> 65535)
1314 if (nargs
<= 5 /* IPv4 */
1315 && i
< 4 /* host, not port */
1319 args
[i
+1] = p
->contents
[i
];
1322 return Fformat (nargs
+1, args
);
1325 if (CONSP (address
))
1327 Lisp_Object args
[2];
1328 args
[0] = build_string ("<Family %d>");
1329 args
[1] = Fcar (address
);
1330 return Fformat (2, args
);
1338 list_processes_1 (query_only
)
1339 Lisp_Object query_only
;
1341 register Lisp_Object tail
, tem
;
1342 Lisp_Object proc
, minspace
, tem1
;
1343 register struct Lisp_Process
*p
;
1345 int w_proc
, w_buffer
, w_tty
;
1347 Lisp_Object i_status
, i_buffer
, i_tty
, i_command
;
1349 w_proc
= 4; /* Proc */
1350 w_buffer
= 6; /* Buffer */
1351 w_tty
= 0; /* Omit if no ttys */
1353 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
1357 proc
= Fcdr (XCAR (tail
));
1358 p
= XPROCESS (proc
);
1361 if (!NILP (query_only
) && p
->kill_without_query
)
1363 if (STRINGP (p
->name
)
1364 && ( i
= SCHARS (p
->name
), (i
> w_proc
)))
1366 if (!NILP (p
->buffer
))
1368 if (NILP (XBUFFER (p
->buffer
)->name
))
1371 w_buffer
= 8; /* (Killed) */
1373 else if ((i
= SCHARS (XBUFFER (p
->buffer
)->name
), (i
> w_buffer
)))
1376 if (STRINGP (p
->tty_name
)
1377 && (i
= SCHARS (p
->tty_name
), (i
> w_tty
)))
1381 XSETFASTINT (i_status
, w_proc
+ 1);
1382 XSETFASTINT (i_buffer
, XFASTINT (i_status
) + 9);
1385 XSETFASTINT (i_tty
, XFASTINT (i_buffer
) + w_buffer
+ 1);
1386 XSETFASTINT (i_command
, XFASTINT (i_tty
) + w_tty
+ 1);
1391 XSETFASTINT (i_command
, XFASTINT (i_buffer
) + w_buffer
+ 1);
1394 XSETFASTINT (minspace
, 1);
1396 set_buffer_internal (XBUFFER (Vstandard_output
));
1397 current_buffer
->undo_list
= Qt
;
1399 current_buffer
->truncate_lines
= Qt
;
1401 write_string ("Proc", -1);
1402 Findent_to (i_status
, minspace
); write_string ("Status", -1);
1403 Findent_to (i_buffer
, minspace
); write_string ("Buffer", -1);
1406 Findent_to (i_tty
, minspace
); write_string ("Tty", -1);
1408 Findent_to (i_command
, minspace
); write_string ("Command", -1);
1409 write_string ("\n", -1);
1411 write_string ("----", -1);
1412 Findent_to (i_status
, minspace
); write_string ("------", -1);
1413 Findent_to (i_buffer
, minspace
); write_string ("------", -1);
1416 Findent_to (i_tty
, minspace
); write_string ("---", -1);
1418 Findent_to (i_command
, minspace
); write_string ("-------", -1);
1419 write_string ("\n", -1);
1421 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
1425 proc
= Fcdr (XCAR (tail
));
1426 p
= XPROCESS (proc
);
1429 if (!NILP (query_only
) && p
->kill_without_query
)
1432 Finsert (1, &p
->name
);
1433 Findent_to (i_status
, minspace
);
1435 if (p
->raw_status_new
)
1438 if (CONSP (p
->status
))
1439 symbol
= XCAR (p
->status
);
1441 if (EQ (symbol
, Qsignal
))
1444 tem
= Fcar (Fcdr (p
->status
));
1445 Fprinc (symbol
, Qnil
);
1447 else if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
1449 if (EQ (symbol
, Qexit
))
1450 write_string ("closed", -1);
1451 else if (EQ (p
->command
, Qt
))
1452 write_string ("stopped", -1);
1453 else if (EQ (symbol
, Qrun
))
1454 write_string ("open", -1);
1456 Fprinc (symbol
, Qnil
);
1458 else if (SERIALCONN1_P (p
))
1460 write_string ("running", -1);
1463 Fprinc (symbol
, Qnil
);
1465 if (EQ (symbol
, Qexit
))
1468 tem
= Fcar (Fcdr (p
->status
));
1471 sprintf (tembuf
, " %d", (int) XFASTINT (tem
));
1472 write_string (tembuf
, -1);
1476 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
) || EQ (symbol
, Qclosed
))
1479 Findent_to (i_buffer
, minspace
);
1480 if (NILP (p
->buffer
))
1481 insert_string ("(none)");
1482 else if (NILP (XBUFFER (p
->buffer
)->name
))
1483 insert_string ("(Killed)");
1485 Finsert (1, &XBUFFER (p
->buffer
)->name
);
1489 Findent_to (i_tty
, minspace
);
1490 if (STRINGP (p
->tty_name
))
1491 Finsert (1, &p
->tty_name
);
1494 Findent_to (i_command
, minspace
);
1496 if (EQ (p
->status
, Qlisten
))
1498 Lisp_Object port
= Fplist_get (p
->childp
, QCservice
);
1499 if (INTEGERP (port
))
1500 port
= Fnumber_to_string (port
);
1502 port
= Fformat_network_address (Fplist_get (p
->childp
, QClocal
), Qnil
);
1503 sprintf (tembuf
, "(network %s server on %s)\n",
1504 (DATAGRAM_CHAN_P (p
->infd
) ? "datagram" : "stream"),
1505 (STRINGP (port
) ? (char *)SDATA (port
) : "?"));
1506 insert_string (tembuf
);
1508 else if (NETCONN1_P (p
))
1510 /* For a local socket, there is no host name,
1511 so display service instead. */
1512 Lisp_Object host
= Fplist_get (p
->childp
, QChost
);
1513 if (!STRINGP (host
))
1515 host
= Fplist_get (p
->childp
, QCservice
);
1516 if (INTEGERP (host
))
1517 host
= Fnumber_to_string (host
);
1520 host
= Fformat_network_address (Fplist_get (p
->childp
, QCremote
), Qnil
);
1521 sprintf (tembuf
, "(network %s connection to %s)\n",
1522 (DATAGRAM_CHAN_P (p
->infd
) ? "datagram" : "stream"),
1523 (STRINGP (host
) ? (char *)SDATA (host
) : "?"));
1524 insert_string (tembuf
);
1526 else if (SERIALCONN1_P (p
))
1528 Lisp_Object port
= Fplist_get (p
->childp
, QCport
);
1529 Lisp_Object speed
= Fplist_get (p
->childp
, QCspeed
);
1530 insert_string ("(serial port ");
1532 insert_string (SDATA (port
));
1534 insert_string ("?");
1535 if (INTEGERP (speed
))
1537 sprintf (tembuf
, " at %ld b/s", (long) XINT (speed
));
1538 insert_string (tembuf
);
1540 insert_string (")\n");
1554 insert_string (" ");
1556 insert_string ("\n");
1561 status_notify (NULL
);
1562 redisplay_preserve_echo_area (13);
1567 DEFUN ("list-processes", Flist_processes
, Slist_processes
, 0, 1, "P",
1568 doc
: /* Display a list of all processes.
1569 If optional argument QUERY-ONLY is non-nil, only processes with
1570 the query-on-exit flag set will be listed.
1571 Any process listed as exited or signaled is actually eliminated
1572 after the listing is made. */)
1574 Lisp_Object query_only
;
1576 internal_with_output_to_temp_buffer ("*Process List*",
1577 list_processes_1
, query_only
);
1581 DEFUN ("process-list", Fprocess_list
, Sprocess_list
, 0, 0, 0,
1582 doc
: /* Return a list of all processes. */)
1585 return Fmapcar (Qcdr
, Vprocess_alist
);
1588 /* Starting asynchronous inferior processes. */
1590 static Lisp_Object
start_process_unwind ();
1592 DEFUN ("start-process", Fstart_process
, Sstart_process
, 3, MANY
, 0,
1593 doc
: /* Start a program in a subprocess. Return the process object for it.
1594 NAME is name for process. It is modified if necessary to make it unique.
1595 BUFFER is the buffer (or buffer name) to associate with the process.
1597 Process output (both standard output and standard error streams) goes
1598 at end of BUFFER, unless you specify an output stream or filter
1599 function to handle the output. BUFFER may also be nil, meaning that
1600 this process is not associated with any buffer.
1602 PROGRAM is the program file name. It is searched for in `exec-path'
1603 (which see). If nil, just associate a pty with the buffer. Remaining
1604 arguments are strings to give program as arguments.
1606 If you want to separate standard output from standard error, invoke
1607 the command through a shell and redirect one of them using the shell
1610 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1613 register Lisp_Object
*args
;
1615 Lisp_Object buffer
, name
, program
, proc
, current_dir
, tem
;
1616 register unsigned char **new_argv
;
1618 int count
= SPECPDL_INDEX ();
1622 buffer
= Fget_buffer_create (buffer
);
1624 /* Make sure that the child will be able to chdir to the current
1625 buffer's current directory, or its unhandled equivalent. We
1626 can't just have the child check for an error when it does the
1627 chdir, since it's in a vfork.
1629 We have to GCPRO around this because Fexpand_file_name and
1630 Funhandled_file_name_directory might call a file name handling
1631 function. The argument list is protected by the caller, so all
1632 we really have to worry about is buffer. */
1634 struct gcpro gcpro1
, gcpro2
;
1636 current_dir
= current_buffer
->directory
;
1638 GCPRO2 (buffer
, current_dir
);
1640 current_dir
= Funhandled_file_name_directory (current_dir
);
1641 if (NILP (current_dir
))
1642 /* If the file name handler says that current_dir is unreachable, use
1643 a sensible default. */
1644 current_dir
= build_string ("~/");
1645 current_dir
= expand_and_dir_to_file (current_dir
, Qnil
);
1646 if (NILP (Ffile_accessible_directory_p (current_dir
)))
1647 report_file_error ("Setting current directory",
1648 Fcons (current_buffer
->directory
, Qnil
));
1654 CHECK_STRING (name
);
1658 if (!NILP (program
))
1659 CHECK_STRING (program
);
1661 proc
= make_process (name
);
1662 /* If an error occurs and we can't start the process, we want to
1663 remove it from the process list. This means that each error
1664 check in create_process doesn't need to call remove_process
1665 itself; it's all taken care of here. */
1666 record_unwind_protect (start_process_unwind
, proc
);
1668 XPROCESS (proc
)->childp
= Qt
;
1669 XPROCESS (proc
)->plist
= Qnil
;
1670 XPROCESS (proc
)->type
= Qreal
;
1671 XPROCESS (proc
)->buffer
= buffer
;
1672 XPROCESS (proc
)->sentinel
= Qnil
;
1673 XPROCESS (proc
)->filter
= Qnil
;
1674 XPROCESS (proc
)->command
= Flist (nargs
- 2, args
+ 2);
1676 #ifdef ADAPTIVE_READ_BUFFERING
1677 XPROCESS (proc
)->adaptive_read_buffering
1678 = (NILP (Vprocess_adaptive_read_buffering
) ? 0
1679 : EQ (Vprocess_adaptive_read_buffering
, Qt
) ? 1 : 2);
1682 /* Make the process marker point into the process buffer (if any). */
1683 if (BUFFERP (buffer
))
1684 set_marker_both (XPROCESS (proc
)->mark
, buffer
,
1685 BUF_ZV (XBUFFER (buffer
)),
1686 BUF_ZV_BYTE (XBUFFER (buffer
)));
1689 /* Decide coding systems for communicating with the process. Here
1690 we don't setup the structure coding_system nor pay attention to
1691 unibyte mode. They are done in create_process. */
1693 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1694 Lisp_Object coding_systems
= Qt
;
1695 Lisp_Object val
, *args2
;
1696 struct gcpro gcpro1
, gcpro2
;
1698 val
= Vcoding_system_for_read
;
1701 args2
= (Lisp_Object
*) alloca ((nargs
+ 1) * sizeof *args2
);
1702 args2
[0] = Qstart_process
;
1703 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1704 GCPRO2 (proc
, current_dir
);
1705 if (!NILP (program
))
1706 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1708 if (CONSP (coding_systems
))
1709 val
= XCAR (coding_systems
);
1710 else if (CONSP (Vdefault_process_coding_system
))
1711 val
= XCAR (Vdefault_process_coding_system
);
1713 XPROCESS (proc
)->decode_coding_system
= val
;
1715 val
= Vcoding_system_for_write
;
1718 if (EQ (coding_systems
, Qt
))
1720 args2
= (Lisp_Object
*) alloca ((nargs
+ 1) * sizeof args2
);
1721 args2
[0] = Qstart_process
;
1722 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1723 GCPRO2 (proc
, current_dir
);
1724 if (!NILP (program
))
1725 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1728 if (CONSP (coding_systems
))
1729 val
= XCDR (coding_systems
);
1730 else if (CONSP (Vdefault_process_coding_system
))
1731 val
= XCDR (Vdefault_process_coding_system
);
1733 XPROCESS (proc
)->encode_coding_system
= val
;
1734 /* Note: At this momemnt, the above coding system may leave
1735 text-conversion or eol-conversion unspecified. They will be
1736 decided after we read output from the process and decode it by
1737 some coding system, or just before we actually send a text to
1742 XPROCESS (proc
)->decoding_buf
= make_uninit_string (0);
1743 XPROCESS (proc
)->decoding_carryover
= 0;
1744 XPROCESS (proc
)->encoding_buf
= make_uninit_string (0);
1746 XPROCESS (proc
)->inherit_coding_system_flag
1747 = !(NILP (buffer
) || !inherit_process_coding_system
);
1749 if (!NILP (program
))
1751 /* If program file name is not absolute, search our path for it.
1752 Put the name we will really use in TEM. */
1753 if (!IS_DIRECTORY_SEP (SREF (program
, 0))
1754 && !(SCHARS (program
) > 1
1755 && IS_DEVICE_SEP (SREF (program
, 1))))
1757 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1760 GCPRO4 (name
, program
, buffer
, current_dir
);
1761 openp (Vexec_path
, program
, Vexec_suffixes
, &tem
, make_number (X_OK
));
1764 report_file_error ("Searching for program", Fcons (program
, Qnil
));
1765 tem
= Fexpand_file_name (tem
, Qnil
);
1769 if (!NILP (Ffile_directory_p (program
)))
1770 error ("Specified program for new process is a directory");
1774 /* If program file name starts with /: for quoting a magic name,
1776 if (SBYTES (tem
) > 2 && SREF (tem
, 0) == '/'
1777 && SREF (tem
, 1) == ':')
1778 tem
= Fsubstring (tem
, make_number (2), Qnil
);
1781 Lisp_Object arg_encoding
= Qnil
;
1782 struct gcpro gcpro1
;
1785 /* Encode the file name and put it in NEW_ARGV.
1786 That's where the child will use it to execute the program. */
1787 tem
= Fcons (ENCODE_FILE (tem
), Qnil
);
1789 /* Here we encode arguments by the coding system used for sending
1790 data to the process. We don't support using different coding
1791 systems for encoding arguments and for encoding data sent to the
1794 for (i
= 3; i
< nargs
; i
++)
1796 tem
= Fcons (args
[i
], tem
);
1797 CHECK_STRING (XCAR (tem
));
1798 if (STRING_MULTIBYTE (XCAR (tem
)))
1800 if (NILP (arg_encoding
))
1801 arg_encoding
= (complement_process_encoding_system
1802 (XPROCESS (proc
)->encode_coding_system
));
1804 code_convert_string_norecord
1805 (XCAR (tem
), arg_encoding
, 1));
1812 /* Now that everything is encoded we can collect the strings into
1814 new_argv
= (unsigned char **) alloca ((nargs
- 1) * sizeof (char *));
1815 new_argv
[nargs
- 2] = 0;
1817 for (i
= nargs
- 3; i
>= 0; i
--)
1819 new_argv
[i
] = SDATA (XCAR (tem
));
1823 create_process (proc
, (char **) new_argv
, current_dir
);
1828 return unbind_to (count
, proc
);
1831 /* This function is the unwind_protect form for Fstart_process. If
1832 PROC doesn't have its pid set, then we know someone has signaled
1833 an error and the process wasn't started successfully, so we should
1834 remove it from the process list. */
1836 start_process_unwind (proc
)
1839 if (!PROCESSP (proc
))
1842 /* Was PROC started successfully? */
1843 if (XPROCESS (proc
)->pid
== -1)
1844 remove_process (proc
);
1850 create_process_1 (timer
)
1851 struct atimer
*timer
;
1853 /* Nothing to do. */
1857 #if 0 /* This doesn't work; see the note before sigchld_handler. */
1860 /* Mimic blocking of signals on system V, which doesn't really have it. */
1862 /* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1863 int sigchld_deferred
;
1866 create_process_sigchld ()
1868 signal (SIGCHLD
, create_process_sigchld
);
1870 sigchld_deferred
= 1;
1877 create_process (process
, new_argv
, current_dir
)
1878 Lisp_Object process
;
1880 Lisp_Object current_dir
;
1882 int inchannel
, outchannel
;
1885 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
1886 int wait_child_setup
[2];
1888 #ifdef POSIX_SIGNALS
1891 struct sigaction sigint_action
;
1892 struct sigaction sigquit_action
;
1894 struct sigaction sighup_action
;
1896 #else /* !POSIX_SIGNALS */
1899 SIGTYPE (*sigchld
)();
1902 #endif /* !POSIX_SIGNALS */
1903 /* Use volatile to protect variables from being clobbered by longjmp. */
1904 volatile int forkin
, forkout
;
1905 volatile int pty_flag
= 0;
1907 extern char **environ
;
1910 inchannel
= outchannel
= -1;
1913 if (!NILP (Vprocess_connection_type
))
1914 outchannel
= inchannel
= allocate_pty ();
1918 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1919 /* On most USG systems it does not work to open the pty's tty here,
1920 then close it and reopen it in the child. */
1922 /* Don't let this terminal become our controlling terminal
1923 (in case we don't have one). */
1924 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
| O_NOCTTY
, 0);
1926 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
, 0);
1929 report_file_error ("Opening pty", Qnil
);
1931 forkin
= forkout
= -1;
1932 #endif /* not USG, or USG_SUBTTY_WORKS */
1936 #endif /* HAVE_PTYS */
1941 report_file_error ("Creating pipe", Qnil
);
1947 emacs_close (inchannel
);
1948 emacs_close (forkout
);
1949 report_file_error ("Creating pipe", Qnil
);
1955 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
1959 tem
= pipe (wait_child_setup
);
1961 report_file_error ("Creating pipe", Qnil
);
1962 tem
= fcntl (wait_child_setup
[1], F_GETFD
, 0);
1964 tem
= fcntl (wait_child_setup
[1], F_SETFD
, tem
| FD_CLOEXEC
);
1967 emacs_close (wait_child_setup
[0]);
1968 emacs_close (wait_child_setup
[1]);
1969 report_file_error ("Setting file descriptor flags", Qnil
);
1975 /* Replaced by close_process_descs */
1976 set_exclusive_use (inchannel
);
1977 set_exclusive_use (outchannel
);
1981 fcntl (inchannel
, F_SETFL
, O_NONBLOCK
);
1982 fcntl (outchannel
, F_SETFL
, O_NONBLOCK
);
1985 fcntl (inchannel
, F_SETFL
, O_NDELAY
);
1986 fcntl (outchannel
, F_SETFL
, O_NDELAY
);
1990 /* Record this as an active process, with its channels.
1991 As a result, child_setup will close Emacs's side of the pipes. */
1992 chan_process
[inchannel
] = process
;
1993 XPROCESS (process
)->infd
= inchannel
;
1994 XPROCESS (process
)->outfd
= outchannel
;
1996 /* Previously we recorded the tty descriptor used in the subprocess.
1997 It was only used for getting the foreground tty process, so now
1998 we just reopen the device (see emacs_get_tty_pgrp) as this is
1999 more portable (see USG_SUBTTY_WORKS above). */
2001 XPROCESS (process
)->pty_flag
= pty_flag
;
2002 XPROCESS (process
)->status
= Qrun
;
2003 setup_process_coding_systems (process
);
2005 /* Delay interrupts until we have a chance to store
2006 the new fork's pid in its process structure */
2007 #ifdef POSIX_SIGNALS
2008 sigemptyset (&blocked
);
2010 sigaddset (&blocked
, SIGCHLD
);
2012 #ifdef HAVE_WORKING_VFORK
2013 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
2014 this sets the parent's signal handlers as well as the child's.
2015 So delay all interrupts whose handlers the child might munge,
2016 and record the current handlers so they can be restored later. */
2017 sigaddset (&blocked
, SIGINT
); sigaction (SIGINT
, 0, &sigint_action
);
2018 sigaddset (&blocked
, SIGQUIT
); sigaction (SIGQUIT
, 0, &sigquit_action
);
2020 sigaddset (&blocked
, SIGHUP
); sigaction (SIGHUP
, 0, &sighup_action
);
2022 #endif /* HAVE_WORKING_VFORK */
2023 sigprocmask (SIG_BLOCK
, &blocked
, &procmask
);
2024 #else /* !POSIX_SIGNALS */
2026 #if defined (BSD_SYSTEM) || defined (HPUX)
2027 sigsetmask (sigmask (SIGCHLD
));
2028 #else /* ordinary USG */
2030 sigchld_deferred
= 0;
2031 sigchld
= signal (SIGCHLD
, create_process_sigchld
);
2033 #endif /* ordinary USG */
2034 #endif /* SIGCHLD */
2035 #endif /* !POSIX_SIGNALS */
2037 FD_SET (inchannel
, &input_wait_mask
);
2038 FD_SET (inchannel
, &non_keyboard_wait_mask
);
2039 if (inchannel
> max_process_desc
)
2040 max_process_desc
= inchannel
;
2042 /* Until we store the proper pid, enable sigchld_handler
2043 to recognize an unknown pid as standing for this process.
2044 It is very important not to let this `marker' value stay
2045 in the table after this function has returned; if it does
2046 it might cause call-process to hang and subsequent asynchronous
2047 processes to get their return values scrambled. */
2048 XPROCESS (process
)->pid
= -1;
2053 /* child_setup must clobber environ on systems with true vfork.
2054 Protect it from permanent change. */
2055 char **save_environ
= environ
;
2057 current_dir
= ENCODE_FILE (current_dir
);
2062 #endif /* not WINDOWSNT */
2064 int xforkin
= forkin
;
2065 int xforkout
= forkout
;
2067 #if 0 /* This was probably a mistake--it duplicates code later on,
2068 but fails to handle all the cases. */
2069 /* Make sure SIGCHLD is not blocked in the child. */
2070 sigsetmask (SIGEMPTYMASK
);
2073 /* Make the pty be the controlling terminal of the process. */
2075 /* First, disconnect its current controlling terminal. */
2077 /* We tried doing setsid only if pty_flag, but it caused
2078 process_set_signal to fail on SGI when using a pipe. */
2080 /* Make the pty's terminal the controlling terminal. */
2084 /* We ignore the return value
2085 because faith@cs.unc.edu says that is necessary on Linux. */
2086 ioctl (xforkin
, TIOCSCTTY
, 0);
2089 #else /* not HAVE_SETSID */
2091 /* It's very important to call setpgrp here and no time
2092 afterwards. Otherwise, we lose our controlling tty which
2093 is set when we open the pty. */
2096 #endif /* not HAVE_SETSID */
2097 #if defined (HAVE_TERMIOS) && defined (LDISC1)
2098 if (pty_flag
&& xforkin
>= 0)
2101 tcgetattr (xforkin
, &t
);
2103 if (tcsetattr (xforkin
, TCSANOW
, &t
) < 0)
2104 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
2107 #if defined (NTTYDISC) && defined (TIOCSETD)
2108 if (pty_flag
&& xforkin
>= 0)
2110 /* Use new line discipline. */
2111 int ldisc
= NTTYDISC
;
2112 ioctl (xforkin
, TIOCSETD
, &ldisc
);
2117 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
2118 can do TIOCSPGRP only to the process's controlling tty. */
2121 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
2122 I can't test it since I don't have 4.3. */
2123 int j
= emacs_open ("/dev/tty", O_RDWR
, 0);
2124 ioctl (j
, TIOCNOTTY
, 0);
2127 /* In order to get a controlling terminal on some versions
2128 of BSD, it is necessary to put the process in pgrp 0
2129 before it opens the terminal. */
2137 #endif /* TIOCNOTTY */
2139 #if !defined (DONT_REOPEN_PTY)
2140 /*** There is a suggestion that this ought to be a
2141 conditional on TIOCSPGRP,
2142 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
2143 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
2144 that system does seem to need this code, even though
2145 both HAVE_SETSID and TIOCSCTTY are defined. */
2146 /* Now close the pty (if we had it open) and reopen it.
2147 This makes the pty the controlling terminal of the subprocess. */
2151 /* I wonder if emacs_close (emacs_open (pty_name, ...))
2154 emacs_close (xforkin
);
2155 xforkout
= xforkin
= emacs_open (pty_name
, O_RDWR
, 0);
2159 emacs_write (1, "Couldn't open the pty terminal ", 31);
2160 emacs_write (1, pty_name
, strlen (pty_name
));
2161 emacs_write (1, "\n", 1);
2166 #endif /* not DONT_REOPEN_PTY */
2168 #ifdef SETUP_SLAVE_PTY
2173 #endif /* SETUP_SLAVE_PTY */
2175 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
2176 Now reenable it in the child, so it will die when we want it to. */
2178 signal (SIGHUP
, SIG_DFL
);
2180 #endif /* HAVE_PTYS */
2182 signal (SIGINT
, SIG_DFL
);
2183 signal (SIGQUIT
, SIG_DFL
);
2185 /* Stop blocking signals in the child. */
2186 #ifdef POSIX_SIGNALS
2187 sigprocmask (SIG_SETMASK
, &procmask
, 0);
2188 #else /* !POSIX_SIGNALS */
2190 #if defined (BSD_SYSTEM) || defined (HPUX)
2191 sigsetmask (SIGEMPTYMASK
);
2192 #else /* ordinary USG */
2194 signal (SIGCHLD
, sigchld
);
2196 #endif /* ordinary USG */
2197 #endif /* SIGCHLD */
2198 #endif /* !POSIX_SIGNALS */
2201 child_setup_tty (xforkout
);
2203 pid
= child_setup (xforkin
, xforkout
, xforkout
,
2204 new_argv
, 1, current_dir
);
2205 #else /* not WINDOWSNT */
2207 emacs_close (wait_child_setup
[0]);
2209 child_setup (xforkin
, xforkout
, xforkout
,
2210 new_argv
, 1, current_dir
);
2211 #endif /* not WINDOWSNT */
2213 environ
= save_environ
;
2218 /* This runs in the Emacs process. */
2222 emacs_close (forkin
);
2223 if (forkin
!= forkout
&& forkout
>= 0)
2224 emacs_close (forkout
);
2228 /* vfork succeeded. */
2229 XPROCESS (process
)->pid
= pid
;
2232 register_child (pid
, inchannel
);
2233 #endif /* WINDOWSNT */
2235 /* If the subfork execv fails, and it exits,
2236 this close hangs. I don't know why.
2237 So have an interrupt jar it loose. */
2239 struct atimer
*timer
;
2243 EMACS_SET_SECS_USECS (offset
, 1, 0);
2244 timer
= start_atimer (ATIMER_RELATIVE
, offset
, create_process_1
, 0);
2247 emacs_close (forkin
);
2249 cancel_atimer (timer
);
2253 if (forkin
!= forkout
&& forkout
>= 0)
2254 emacs_close (forkout
);
2258 XPROCESS (process
)->tty_name
= build_string (pty_name
);
2261 XPROCESS (process
)->tty_name
= Qnil
;
2263 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
2264 /* Wait for child_setup to complete in case that vfork is
2265 actually defined as fork. The descriptor wait_child_setup[1]
2266 of a pipe is closed at the child side either by close-on-exec
2267 on successful execvp or the _exit call in child_setup. */
2271 emacs_close (wait_child_setup
[1]);
2272 emacs_read (wait_child_setup
[0], &dummy
, 1);
2273 emacs_close (wait_child_setup
[0]);
2278 /* Restore the signal state whether vfork succeeded or not.
2279 (We will signal an error, below, if it failed.) */
2280 #ifdef POSIX_SIGNALS
2281 #ifdef HAVE_WORKING_VFORK
2282 /* Restore the parent's signal handlers. */
2283 sigaction (SIGINT
, &sigint_action
, 0);
2284 sigaction (SIGQUIT
, &sigquit_action
, 0);
2286 sigaction (SIGHUP
, &sighup_action
, 0);
2288 #endif /* HAVE_WORKING_VFORK */
2289 /* Stop blocking signals in the parent. */
2290 sigprocmask (SIG_SETMASK
, &procmask
, 0);
2291 #else /* !POSIX_SIGNALS */
2293 #if defined (BSD_SYSTEM) || defined (HPUX)
2294 sigsetmask (SIGEMPTYMASK
);
2295 #else /* ordinary USG */
2297 signal (SIGCHLD
, sigchld
);
2298 /* Now really handle any of these signals
2299 that came in during this function. */
2300 if (sigchld_deferred
)
2301 kill (getpid (), SIGCHLD
);
2303 #endif /* ordinary USG */
2304 #endif /* SIGCHLD */
2305 #endif /* !POSIX_SIGNALS */
2307 /* Now generate the error if vfork failed. */
2309 report_file_error ("Doing vfork", Qnil
);
2313 create_pty (process
)
2314 Lisp_Object process
;
2316 int inchannel
, outchannel
;
2318 /* Use volatile to protect variables from being clobbered by longjmp. */
2319 volatile int forkin
, forkout
;
2320 volatile int pty_flag
= 0;
2322 inchannel
= outchannel
= -1;
2325 if (!NILP (Vprocess_connection_type
))
2326 outchannel
= inchannel
= allocate_pty ();
2330 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
2331 /* On most USG systems it does not work to open the pty's tty here,
2332 then close it and reopen it in the child. */
2334 /* Don't let this terminal become our controlling terminal
2335 (in case we don't have one). */
2336 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
| O_NOCTTY
, 0);
2338 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
, 0);
2341 report_file_error ("Opening pty", Qnil
);
2342 #if defined (DONT_REOPEN_PTY)
2343 /* In the case that vfork is defined as fork, the parent process
2344 (Emacs) may send some data before the child process completes
2345 tty options setup. So we setup tty before forking. */
2346 child_setup_tty (forkout
);
2347 #endif /* DONT_REOPEN_PTY */
2349 forkin
= forkout
= -1;
2350 #endif /* not USG, or USG_SUBTTY_WORKS */
2353 #endif /* HAVE_PTYS */
2356 fcntl (inchannel
, F_SETFL
, O_NONBLOCK
);
2357 fcntl (outchannel
, F_SETFL
, O_NONBLOCK
);
2360 fcntl (inchannel
, F_SETFL
, O_NDELAY
);
2361 fcntl (outchannel
, F_SETFL
, O_NDELAY
);
2365 /* Record this as an active process, with its channels.
2366 As a result, child_setup will close Emacs's side of the pipes. */
2367 chan_process
[inchannel
] = process
;
2368 XPROCESS (process
)->infd
= inchannel
;
2369 XPROCESS (process
)->outfd
= outchannel
;
2371 /* Previously we recorded the tty descriptor used in the subprocess.
2372 It was only used for getting the foreground tty process, so now
2373 we just reopen the device (see emacs_get_tty_pgrp) as this is
2374 more portable (see USG_SUBTTY_WORKS above). */
2376 XPROCESS (process
)->pty_flag
= pty_flag
;
2377 XPROCESS (process
)->status
= Qrun
;
2378 setup_process_coding_systems (process
);
2380 FD_SET (inchannel
, &input_wait_mask
);
2381 FD_SET (inchannel
, &non_keyboard_wait_mask
);
2382 if (inchannel
> max_process_desc
)
2383 max_process_desc
= inchannel
;
2385 XPROCESS (process
)->pid
= -2;
2388 XPROCESS (process
)->tty_name
= build_string (pty_name
);
2391 XPROCESS (process
)->tty_name
= Qnil
;
2397 /* Convert an internal struct sockaddr to a lisp object (vector or string).
2398 The address family of sa is not included in the result. */
2401 conv_sockaddr_to_lisp (sa
, len
)
2402 struct sockaddr
*sa
;
2405 Lisp_Object address
;
2408 register struct Lisp_Vector
*p
;
2410 /* Workaround for a bug in getsockname on BSD: Names bound to
2411 sockets in the UNIX domain are inaccessible; getsockname returns
2412 a zero length name. */
2413 if (len
< OFFSETOF (struct sockaddr
, sa_family
) + sizeof (sa
->sa_family
))
2414 return empty_unibyte_string
;
2416 switch (sa
->sa_family
)
2420 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
2421 len
= sizeof (sin
->sin_addr
) + 1;
2422 address
= Fmake_vector (make_number (len
), Qnil
);
2423 p
= XVECTOR (address
);
2424 p
->contents
[--len
] = make_number (ntohs (sin
->sin_port
));
2425 cp
= (unsigned char *) &sin
->sin_addr
;
2431 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*) sa
;
2432 uint16_t *ip6
= (uint16_t *) &sin6
->sin6_addr
;
2433 len
= sizeof (sin6
->sin6_addr
)/2 + 1;
2434 address
= Fmake_vector (make_number (len
), Qnil
);
2435 p
= XVECTOR (address
);
2436 p
->contents
[--len
] = make_number (ntohs (sin6
->sin6_port
));
2437 for (i
= 0; i
< len
; i
++)
2438 p
->contents
[i
] = make_number (ntohs (ip6
[i
]));
2442 #ifdef HAVE_LOCAL_SOCKETS
2445 struct sockaddr_un
*sockun
= (struct sockaddr_un
*) sa
;
2446 for (i
= 0; i
< sizeof (sockun
->sun_path
); i
++)
2447 if (sockun
->sun_path
[i
] == 0)
2449 return make_unibyte_string (sockun
->sun_path
, i
);
2453 len
-= OFFSETOF (struct sockaddr
, sa_family
) + sizeof (sa
->sa_family
);
2454 address
= Fcons (make_number (sa
->sa_family
),
2455 Fmake_vector (make_number (len
), Qnil
));
2456 p
= XVECTOR (XCDR (address
));
2457 cp
= (unsigned char *) &sa
->sa_family
+ sizeof (sa
->sa_family
);
2463 p
->contents
[i
++] = make_number (*cp
++);
2469 /* Get family and required size for sockaddr structure to hold ADDRESS. */
2472 get_lisp_to_sockaddr_size (address
, familyp
)
2473 Lisp_Object address
;
2476 register struct Lisp_Vector
*p
;
2478 if (VECTORP (address
))
2480 p
= XVECTOR (address
);
2481 if (p
->header
.size
== 5)
2484 return sizeof (struct sockaddr_in
);
2487 else if (p
->header
.size
== 9)
2489 *familyp
= AF_INET6
;
2490 return sizeof (struct sockaddr_in6
);
2494 #ifdef HAVE_LOCAL_SOCKETS
2495 else if (STRINGP (address
))
2497 *familyp
= AF_LOCAL
;
2498 return sizeof (struct sockaddr_un
);
2501 else if (CONSP (address
) && INTEGERP (XCAR (address
)) && VECTORP (XCDR (address
)))
2503 struct sockaddr
*sa
;
2504 *familyp
= XINT (XCAR (address
));
2505 p
= XVECTOR (XCDR (address
));
2506 return p
->header
.size
+ sizeof (sa
->sa_family
);
2511 /* Convert an address object (vector or string) to an internal sockaddr.
2513 The address format has been basically validated by
2514 get_lisp_to_sockaddr_size, but this does not mean FAMILY is valid;
2515 it could have come from user data. So if FAMILY is not valid,
2516 we return after zeroing *SA. */
2519 conv_lisp_to_sockaddr (family
, address
, sa
, len
)
2521 Lisp_Object address
;
2522 struct sockaddr
*sa
;
2525 register struct Lisp_Vector
*p
;
2526 register unsigned char *cp
= NULL
;
2531 if (VECTORP (address
))
2533 p
= XVECTOR (address
);
2534 if (family
== AF_INET
)
2536 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
2537 len
= sizeof (sin
->sin_addr
) + 1;
2538 i
= XINT (p
->contents
[--len
]);
2539 sin
->sin_port
= htons (i
);
2540 cp
= (unsigned char *)&sin
->sin_addr
;
2541 sa
->sa_family
= family
;
2544 else if (family
== AF_INET6
)
2546 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*) sa
;
2547 uint16_t *ip6
= (uint16_t *)&sin6
->sin6_addr
;
2548 len
= sizeof (sin6
->sin6_addr
) + 1;
2549 i
= XINT (p
->contents
[--len
]);
2550 sin6
->sin6_port
= htons (i
);
2551 for (i
= 0; i
< len
; i
++)
2552 if (INTEGERP (p
->contents
[i
]))
2554 int j
= XFASTINT (p
->contents
[i
]) & 0xffff;
2557 sa
->sa_family
= family
;
2564 else if (STRINGP (address
))
2566 #ifdef HAVE_LOCAL_SOCKETS
2567 if (family
== AF_LOCAL
)
2569 struct sockaddr_un
*sockun
= (struct sockaddr_un
*) sa
;
2570 cp
= SDATA (address
);
2571 for (i
= 0; i
< sizeof (sockun
->sun_path
) && *cp
; i
++)
2572 sockun
->sun_path
[i
] = *cp
++;
2573 sa
->sa_family
= family
;
2580 p
= XVECTOR (XCDR (address
));
2581 cp
= (unsigned char *)sa
+ sizeof (sa
->sa_family
);
2584 for (i
= 0; i
< len
; i
++)
2585 if (INTEGERP (p
->contents
[i
]))
2586 *cp
++ = XFASTINT (p
->contents
[i
]) & 0xff;
2589 #ifdef DATAGRAM_SOCKETS
2590 DEFUN ("process-datagram-address", Fprocess_datagram_address
, Sprocess_datagram_address
,
2592 doc
: /* Get the current datagram address associated with PROCESS. */)
2594 Lisp_Object process
;
2598 CHECK_PROCESS (process
);
2600 if (!DATAGRAM_CONN_P (process
))
2603 channel
= XPROCESS (process
)->infd
;
2604 return conv_sockaddr_to_lisp (datagram_address
[channel
].sa
,
2605 datagram_address
[channel
].len
);
2608 DEFUN ("set-process-datagram-address", Fset_process_datagram_address
, Sset_process_datagram_address
,
2610 doc
: /* Set the datagram address for PROCESS to ADDRESS.
2611 Returns nil upon error setting address, ADDRESS otherwise. */)
2613 Lisp_Object process
, address
;
2618 CHECK_PROCESS (process
);
2620 if (!DATAGRAM_CONN_P (process
))
2623 channel
= XPROCESS (process
)->infd
;
2625 len
= get_lisp_to_sockaddr_size (address
, &family
);
2626 if (datagram_address
[channel
].len
!= len
)
2628 conv_lisp_to_sockaddr (family
, address
, datagram_address
[channel
].sa
, len
);
2634 static const struct socket_options
{
2635 /* The name of this option. Should be lowercase version of option
2636 name without SO_ prefix. */
2638 /* Option level SOL_... */
2640 /* Option number SO_... */
2642 enum { SOPT_UNKNOWN
, SOPT_BOOL
, SOPT_INT
, SOPT_IFNAME
, SOPT_LINGER
} opttype
;
2643 enum { OPIX_NONE
=0, OPIX_MISC
=1, OPIX_REUSEADDR
=2 } optbit
;
2644 } socket_options
[] =
2646 #ifdef SO_BINDTODEVICE
2647 { ":bindtodevice", SOL_SOCKET
, SO_BINDTODEVICE
, SOPT_IFNAME
, OPIX_MISC
},
2650 { ":broadcast", SOL_SOCKET
, SO_BROADCAST
, SOPT_BOOL
, OPIX_MISC
},
2653 { ":dontroute", SOL_SOCKET
, SO_DONTROUTE
, SOPT_BOOL
, OPIX_MISC
},
2656 { ":keepalive", SOL_SOCKET
, SO_KEEPALIVE
, SOPT_BOOL
, OPIX_MISC
},
2659 { ":linger", SOL_SOCKET
, SO_LINGER
, SOPT_LINGER
, OPIX_MISC
},
2662 { ":oobinline", SOL_SOCKET
, SO_OOBINLINE
, SOPT_BOOL
, OPIX_MISC
},
2665 { ":priority", SOL_SOCKET
, SO_PRIORITY
, SOPT_INT
, OPIX_MISC
},
2668 { ":reuseaddr", SOL_SOCKET
, SO_REUSEADDR
, SOPT_BOOL
, OPIX_REUSEADDR
},
2670 { 0, 0, 0, SOPT_UNKNOWN
, OPIX_NONE
}
2673 /* Set option OPT to value VAL on socket S.
2675 Returns (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
2676 Signals an error if setting a known option fails.
2680 set_socket_option (s
, opt
, val
)
2682 Lisp_Object opt
, val
;
2685 const struct socket_options
*sopt
;
2690 name
= (char *) SDATA (SYMBOL_NAME (opt
));
2691 for (sopt
= socket_options
; sopt
->name
; sopt
++)
2692 if (strcmp (name
, sopt
->name
) == 0)
2695 switch (sopt
->opttype
)
2700 optval
= NILP (val
) ? 0 : 1;
2701 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2702 &optval
, sizeof (optval
));
2710 optval
= XINT (val
);
2712 error ("Bad option value for %s", name
);
2713 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2714 &optval
, sizeof (optval
));
2718 #ifdef SO_BINDTODEVICE
2721 char devname
[IFNAMSIZ
+1];
2723 /* This is broken, at least in the Linux 2.4 kernel.
2724 To unbind, the arg must be a zero integer, not the empty string.
2725 This should work on all systems. KFS. 2003-09-23. */
2726 bzero (devname
, sizeof devname
);
2729 char *arg
= (char *) SDATA (val
);
2730 int len
= min (strlen (arg
), IFNAMSIZ
);
2731 bcopy (arg
, devname
, len
);
2733 else if (!NILP (val
))
2734 error ("Bad option value for %s", name
);
2735 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2744 struct linger linger
;
2747 linger
.l_linger
= 0;
2749 linger
.l_linger
= XINT (val
);
2751 linger
.l_onoff
= NILP (val
) ? 0 : 1;
2752 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2753 &linger
, sizeof (linger
));
2763 report_file_error ("Cannot set network option",
2764 Fcons (opt
, Fcons (val
, Qnil
)));
2765 return (1 << sopt
->optbit
);
2769 DEFUN ("set-network-process-option",
2770 Fset_network_process_option
, Sset_network_process_option
,
2772 doc
: /* For network process PROCESS set option OPTION to value VALUE.
2773 See `make-network-process' for a list of options and values.
2774 If optional fourth arg NO-ERROR is non-nil, don't signal an error if
2775 OPTION is not a supported option, return nil instead; otherwise return t. */)
2776 (process
, option
, value
, no_error
)
2777 Lisp_Object process
, option
, value
;
2778 Lisp_Object no_error
;
2781 struct Lisp_Process
*p
;
2783 CHECK_PROCESS (process
);
2784 p
= XPROCESS (process
);
2785 if (!NETCONN1_P (p
))
2786 error ("Process is not a network process");
2790 error ("Process is not running");
2792 if (set_socket_option (s
, option
, value
))
2794 p
->childp
= Fplist_put (p
->childp
, option
, value
);
2798 if (NILP (no_error
))
2799 error ("Unknown or unsupported option");
2806 DEFUN ("serial-process-configure",
2807 Fserial_process_configure
,
2808 Sserial_process_configure
,
2810 doc
: /* Configure speed, bytesize, etc. of a serial process.
2812 Arguments are specified as keyword/argument pairs. Attributes that
2813 are not given are re-initialized from the process's current
2814 configuration (available via the function `process-contact') or set to
2815 reasonable default values. The following arguments are defined:
2821 -- Any of these arguments can be given to identify the process that is
2822 to be configured. If none of these arguments is given, the current
2823 buffer's process is used.
2825 :speed SPEED -- SPEED is the speed of the serial port in bits per
2826 second, also called baud rate. Any value can be given for SPEED, but
2827 most serial ports work only at a few defined values between 1200 and
2828 115200, with 9600 being the most common value. If SPEED is nil, the
2829 serial port is not configured any further, i.e., all other arguments
2830 are ignored. This may be useful for special serial ports such as
2831 Bluetooth-to-serial converters which can only be configured through AT
2832 commands. A value of nil for SPEED can be used only when passed
2833 through `make-serial-process' or `serial-term'.
2835 :bytesize BYTESIZE -- BYTESIZE is the number of bits per byte, which
2836 can be 7 or 8. If BYTESIZE is not given or nil, a value of 8 is used.
2838 :parity PARITY -- PARITY can be nil (don't use parity), the symbol
2839 `odd' (use odd parity), or the symbol `even' (use even parity). If
2840 PARITY is not given, no parity is used.
2842 :stopbits STOPBITS -- STOPBITS is the number of stopbits used to
2843 terminate a byte transmission. STOPBITS can be 1 or 2. If STOPBITS
2844 is not given or nil, 1 stopbit is used.
2846 :flowcontrol FLOWCONTROL -- FLOWCONTROL determines the type of
2847 flowcontrol to be used, which is either nil (don't use flowcontrol),
2848 the symbol `hw' (use RTS/CTS hardware flowcontrol), or the symbol `sw'
2849 \(use XON/XOFF software flowcontrol). If FLOWCONTROL is not given, no
2850 flowcontrol is used.
2852 `serial-process-configure' is called by `make-serial-process' for the
2853 initial configuration of the serial port.
2857 \(serial-process-configure :process "/dev/ttyS0" :speed 1200)
2859 \(serial-process-configure
2860 :buffer "COM1" :stopbits 1 :parity 'odd :flowcontrol 'hw)
2862 \(serial-process-configure :port "\\\\.\\COM13" :bytesize 7)
2864 usage: (serial-process-configure &rest ARGS) */)
2869 struct Lisp_Process
*p
;
2870 Lisp_Object contact
= Qnil
;
2871 Lisp_Object proc
= Qnil
;
2872 struct gcpro gcpro1
;
2874 contact
= Flist (nargs
, args
);
2877 proc
= Fplist_get (contact
, QCprocess
);
2879 proc
= Fplist_get (contact
, QCname
);
2881 proc
= Fplist_get (contact
, QCbuffer
);
2883 proc
= Fplist_get (contact
, QCport
);
2884 proc
= get_process (proc
);
2885 p
= XPROCESS (proc
);
2886 if (!EQ (p
->type
, Qserial
))
2887 error ("Not a serial process");
2889 if (NILP (Fplist_get (p
->childp
, QCspeed
)))
2895 serial_configure (p
, contact
);
2901 /* Used by make-serial-process to recover from errors. */
2902 Lisp_Object
make_serial_process_unwind (Lisp_Object proc
)
2904 if (!PROCESSP (proc
))
2906 remove_process (proc
);
2910 DEFUN ("make-serial-process", Fmake_serial_process
, Smake_serial_process
,
2912 doc
: /* Create and return a serial port process.
2914 In Emacs, serial port connections are represented by process objects,
2915 so input and output work as for subprocesses, and `delete-process'
2916 closes a serial port connection. However, a serial process has no
2917 process id, it cannot be signaled, and the status codes are different
2918 from normal processes.
2920 `make-serial-process' creates a process and a buffer, on which you
2921 probably want to use `process-send-string'. Try \\[serial-term] for
2922 an interactive terminal. See below for examples.
2924 Arguments are specified as keyword/argument pairs. The following
2925 arguments are defined:
2927 :port PORT -- (mandatory) PORT is the path or name of the serial port.
2928 For example, this could be "/dev/ttyS0" on Unix. On Windows, this
2929 could be "COM1", or "\\\\.\\COM10" for ports higher than COM9 (double
2930 the backslashes in strings).
2932 :speed SPEED -- (mandatory) is handled by `serial-process-configure',
2933 which is called by `make-serial-process'.
2935 :name NAME -- NAME is the name of the process. If NAME is not given,
2936 the value of PORT is used.
2938 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2939 with the process. Process output goes at the end of that buffer,
2940 unless you specify an output stream or filter function to handle the
2941 output. If BUFFER is not given, the value of NAME is used.
2943 :coding CODING -- If CODING is a symbol, it specifies the coding
2944 system used for both reading and writing for this process. If CODING
2945 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2946 ENCODING is used for writing.
2948 :noquery BOOL -- When exiting Emacs, query the user if BOOL is nil and
2949 the process is running. If BOOL is not given, query before exiting.
2951 :stop BOOL -- Start process in the `stopped' state if BOOL is non-nil.
2952 In the stopped state, a serial process does not accept incoming data,
2953 but you can send outgoing data. The stopped state is cleared by
2954 `continue-process' and set by `stop-process'.
2956 :filter FILTER -- Install FILTER as the process filter.
2958 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2960 :plist PLIST -- Install PLIST as the initial plist of the process.
2967 -- These arguments are handled by `serial-process-configure', which is
2968 called by `make-serial-process'.
2970 The original argument list, possibly modified by later configuration,
2971 is available via the function `process-contact'.
2975 \(make-serial-process :port "/dev/ttyS0" :speed 9600)
2977 \(make-serial-process :port "COM1" :speed 115200 :stopbits 2)
2979 \(make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity 'odd)
2981 \(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil)
2983 usage: (make-serial-process &rest ARGS) */)
2989 Lisp_Object proc
, contact
, port
;
2990 struct Lisp_Process
*p
;
2991 struct gcpro gcpro1
;
2992 Lisp_Object name
, buffer
;
2993 Lisp_Object tem
, val
;
2994 int specpdl_count
= -1;
2999 contact
= Flist (nargs
, args
);
3002 port
= Fplist_get (contact
, QCport
);
3004 error ("No port specified");
3005 CHECK_STRING (port
);
3007 if (NILP (Fplist_member (contact
, QCspeed
)))
3008 error (":speed not specified");
3009 if (!NILP (Fplist_get (contact
, QCspeed
)))
3010 CHECK_NUMBER (Fplist_get (contact
, QCspeed
));
3012 name
= Fplist_get (contact
, QCname
);
3015 CHECK_STRING (name
);
3016 proc
= make_process (name
);
3017 specpdl_count
= SPECPDL_INDEX ();
3018 record_unwind_protect (make_serial_process_unwind
, proc
);
3019 p
= XPROCESS (proc
);
3021 fd
= serial_open ((char*) SDATA (port
));
3024 if (fd
> max_process_desc
)
3025 max_process_desc
= fd
;
3026 chan_process
[fd
] = proc
;
3028 buffer
= Fplist_get (contact
, QCbuffer
);
3031 buffer
= Fget_buffer_create (buffer
);
3034 p
->childp
= contact
;
3035 p
->plist
= Fcopy_sequence (Fplist_get (contact
, QCplist
));
3037 p
->sentinel
= Fplist_get (contact
, QCsentinel
);
3038 p
->filter
= Fplist_get (contact
, QCfilter
);
3040 if (tem
= Fplist_get (contact
, QCnoquery
), !NILP (tem
))
3041 p
->kill_without_query
= 1;
3042 if (tem
= Fplist_get (contact
, QCstop
), !NILP (tem
))
3046 if (!EQ (p
->command
, Qt
))
3048 FD_SET (fd
, &input_wait_mask
);
3049 FD_SET (fd
, &non_keyboard_wait_mask
);
3052 if (BUFFERP (buffer
))
3054 set_marker_both (p
->mark
, buffer
,
3055 BUF_ZV (XBUFFER (buffer
)),
3056 BUF_ZV_BYTE (XBUFFER (buffer
)));
3059 tem
= Fplist_member (contact
, QCcoding
);
3060 if (!NILP (tem
) && (!CONSP (tem
) || !CONSP (XCDR (tem
))))
3066 val
= XCAR (XCDR (tem
));
3070 else if (!NILP (Vcoding_system_for_read
))
3071 val
= Vcoding_system_for_read
;
3072 else if ((!NILP (buffer
) && NILP (XBUFFER (buffer
)->enable_multibyte_characters
))
3073 || (NILP (buffer
) && NILP (buffer_defaults
.enable_multibyte_characters
)))
3075 p
->decode_coding_system
= val
;
3080 val
= XCAR (XCDR (tem
));
3084 else if (!NILP (Vcoding_system_for_write
))
3085 val
= Vcoding_system_for_write
;
3086 else if ((!NILP (buffer
) && NILP (XBUFFER (buffer
)->enable_multibyte_characters
))
3087 || (NILP (buffer
) && NILP (buffer_defaults
.enable_multibyte_characters
)))
3089 p
->encode_coding_system
= val
;
3091 setup_process_coding_systems (proc
);
3092 p
->decoding_buf
= make_uninit_string (0);
3093 p
->decoding_carryover
= 0;
3094 p
->encoding_buf
= make_uninit_string (0);
3095 p
->inherit_coding_system_flag
3096 = !(!NILP (tem
) || NILP (buffer
) || !inherit_process_coding_system
);
3098 Fserial_process_configure(nargs
, args
);
3100 specpdl_ptr
= specpdl
+ specpdl_count
;
3105 #endif /* HAVE_SERIAL */
3107 /* Create a network stream/datagram client/server process. Treated
3108 exactly like a normal process when reading and writing. Primary
3109 differences are in status display and process deletion. A network
3110 connection has no PID; you cannot signal it. All you can do is
3111 stop/continue it and deactivate/close it via delete-process */
3113 DEFUN ("make-network-process", Fmake_network_process
, Smake_network_process
,
3115 doc
: /* Create and return a network server or client process.
3117 In Emacs, network connections are represented by process objects, so
3118 input and output work as for subprocesses and `delete-process' closes
3119 a network connection. However, a network process has no process id,
3120 it cannot be signaled, and the status codes are different from normal
3123 Arguments are specified as keyword/argument pairs. The following
3124 arguments are defined:
3126 :name NAME -- NAME is name for process. It is modified if necessary
3129 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
3130 with the process. Process output goes at end of that buffer, unless
3131 you specify an output stream or filter function to handle the output.
3132 BUFFER may be also nil, meaning that this process is not associated
3135 :host HOST -- HOST is name of the host to connect to, or its IP
3136 address. The symbol `local' specifies the local host. If specified
3137 for a server process, it must be a valid name or address for the local
3138 host, and only clients connecting to that address will be accepted.
3140 :service SERVICE -- SERVICE is name of the service desired, or an
3141 integer specifying a port number to connect to. If SERVICE is t,
3142 a random port number is selected for the server. (If Emacs was
3143 compiled with getaddrinfo, a port number can also be specified as a
3144 string, e.g. "80", as well as an integer. This is not portable.)
3146 :type TYPE -- TYPE is the type of connection. The default (nil) is a
3147 stream type connection, `datagram' creates a datagram type connection,
3148 `seqpacket' creates a reliable datagram connection.
3150 :family FAMILY -- FAMILY is the address (and protocol) family for the
3151 service specified by HOST and SERVICE. The default (nil) is to use
3152 whatever address family (IPv4 or IPv6) that is defined for the host
3153 and port number specified by HOST and SERVICE. Other address families
3155 local -- for a local (i.e. UNIX) address specified by SERVICE.
3156 ipv4 -- use IPv4 address family only.
3157 ipv6 -- use IPv6 address family only.
3159 :local ADDRESS -- ADDRESS is the local address used for the connection.
3160 This parameter is ignored when opening a client process. When specified
3161 for a server process, the FAMILY, HOST and SERVICE args are ignored.
3163 :remote ADDRESS -- ADDRESS is the remote partner's address for the
3164 connection. This parameter is ignored when opening a stream server
3165 process. For a datagram server process, it specifies the initial
3166 setting of the remote datagram address. When specified for a client
3167 process, the FAMILY, HOST, and SERVICE args are ignored.
3169 The format of ADDRESS depends on the address family:
3170 - An IPv4 address is represented as an vector of integers [A B C D P]
3171 corresponding to numeric IP address A.B.C.D and port number P.
3172 - A local address is represented as a string with the address in the
3173 local address space.
3174 - An "unsupported family" address is represented by a cons (F . AV)
3175 where F is the family number and AV is a vector containing the socket
3176 address data with one element per address data byte. Do not rely on
3177 this format in portable code, as it may depend on implementation
3178 defined constants, data sizes, and data structure alignment.
3180 :coding CODING -- If CODING is a symbol, it specifies the coding
3181 system used for both reading and writing for this process. If CODING
3182 is a cons (DECODING . ENCODING), DECODING is used for reading, and
3183 ENCODING is used for writing.
3185 :nowait BOOL -- If BOOL is non-nil for a stream type client process,
3186 return without waiting for the connection to complete; instead, the
3187 sentinel function will be called with second arg matching "open" (if
3188 successful) or "failed" when the connect completes. Default is to use
3189 a blocking connect (i.e. wait) for stream type connections.
3191 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
3192 running when Emacs is exited.
3194 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
3195 In the stopped state, a server process does not accept new
3196 connections, and a client process does not handle incoming traffic.
3197 The stopped state is cleared by `continue-process' and set by
3200 :filter FILTER -- Install FILTER as the process filter.
3202 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
3203 process filter are multibyte, otherwise they are unibyte.
3204 If this keyword is not specified, the strings are multibyte if
3205 `default-enable-multibyte-characters' is non-nil.
3207 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
3209 :log LOG -- Install LOG as the server process log function. This
3210 function is called when the server accepts a network connection from a
3211 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
3212 is the server process, CLIENT is the new process for the connection,
3213 and MESSAGE is a string.
3215 :plist PLIST -- Install PLIST as the new process' initial plist.
3217 :server QLEN -- if QLEN is non-nil, create a server process for the
3218 specified FAMILY, SERVICE, and connection type (stream or datagram).
3219 If QLEN is an integer, it is used as the max. length of the server's
3220 pending connection queue (also known as the backlog); the default
3221 queue length is 5. Default is to create a client process.
3223 The following network options can be specified for this connection:
3225 :broadcast BOOL -- Allow send and receive of datagram broadcasts.
3226 :dontroute BOOL -- Only send to directly connected hosts.
3227 :keepalive BOOL -- Send keep-alive messages on network stream.
3228 :linger BOOL or TIMEOUT -- Send queued messages before closing.
3229 :oobinline BOOL -- Place out-of-band data in receive data stream.
3230 :priority INT -- Set protocol defined priority for sent packets.
3231 :reuseaddr BOOL -- Allow reusing a recently used local address
3232 (this is allowed by default for a server process).
3233 :bindtodevice NAME -- bind to interface NAME. Using this may require
3234 special privileges on some systems.
3236 Consult the relevant system programmer's manual pages for more
3237 information on using these options.
3240 A server process will listen for and accept connections from clients.
3241 When a client connection is accepted, a new network process is created
3242 for the connection with the following parameters:
3244 - The client's process name is constructed by concatenating the server
3245 process' NAME and a client identification string.
3246 - If the FILTER argument is non-nil, the client process will not get a
3247 separate process buffer; otherwise, the client's process buffer is a newly
3248 created buffer named after the server process' BUFFER name or process
3249 NAME concatenated with the client identification string.
3250 - The connection type and the process filter and sentinel parameters are
3251 inherited from the server process' TYPE, FILTER and SENTINEL.
3252 - The client process' contact info is set according to the client's
3253 addressing information (typically an IP address and a port number).
3254 - The client process' plist is initialized from the server's plist.
3256 Notice that the FILTER and SENTINEL args are never used directly by
3257 the server process. Also, the BUFFER argument is not used directly by
3258 the server process, but via the optional :log function, accepted (and
3259 failed) connections may be logged in the server process' buffer.
3261 The original argument list, modified with the actual connection
3262 information, is available via the `process-contact' function.
3264 usage: (make-network-process &rest ARGS) */)
3270 Lisp_Object contact
;
3271 struct Lisp_Process
*p
;
3272 #ifdef HAVE_GETADDRINFO
3273 struct addrinfo ai
, *res
, *lres
;
3274 struct addrinfo hints
;
3275 char *portstring
, portbuf
[128];
3276 #else /* HAVE_GETADDRINFO */
3277 struct _emacs_addrinfo
3283 struct sockaddr
*ai_addr
;
3284 struct _emacs_addrinfo
*ai_next
;
3286 #endif /* HAVE_GETADDRINFO */
3287 struct sockaddr_in address_in
;
3288 #ifdef HAVE_LOCAL_SOCKETS
3289 struct sockaddr_un address_un
;
3294 int s
= -1, outch
, inch
;
3295 struct gcpro gcpro1
;
3296 int count
= SPECPDL_INDEX ();
3298 Lisp_Object QCaddress
; /* one of QClocal or QCremote */
3300 Lisp_Object name
, buffer
, host
, service
, address
;
3301 Lisp_Object filter
, sentinel
;
3302 int is_non_blocking_client
= 0;
3303 int is_server
= 0, backlog
= 5;
3310 /* Save arguments for process-contact and clone-process. */
3311 contact
= Flist (nargs
, args
);
3315 /* Ensure socket support is loaded if available. */
3316 init_winsock (TRUE
);
3319 /* :type TYPE (nil: stream, datagram */
3320 tem
= Fplist_get (contact
, QCtype
);
3322 socktype
= SOCK_STREAM
;
3323 #ifdef DATAGRAM_SOCKETS
3324 else if (EQ (tem
, Qdatagram
))
3325 socktype
= SOCK_DGRAM
;
3327 #ifdef HAVE_SEQPACKET
3328 else if (EQ (tem
, Qseqpacket
))
3329 socktype
= SOCK_SEQPACKET
;
3332 error ("Unsupported connection type");
3335 tem
= Fplist_get (contact
, QCserver
);
3338 /* Don't support network sockets when non-blocking mode is
3339 not available, since a blocked Emacs is not useful. */
3340 #if !defined(O_NONBLOCK) && !defined(O_NDELAY)
3341 error ("Network servers not supported");
3345 backlog
= XINT (tem
);
3349 /* Make QCaddress an alias for :local (server) or :remote (client). */
3350 QCaddress
= is_server
? QClocal
: QCremote
;
3353 if (!is_server
&& socktype
!= SOCK_DGRAM
3354 && (tem
= Fplist_get (contact
, QCnowait
), !NILP (tem
)))
3356 #ifndef NON_BLOCKING_CONNECT
3357 error ("Non-blocking connect not supported");
3359 is_non_blocking_client
= 1;
3363 name
= Fplist_get (contact
, QCname
);
3364 buffer
= Fplist_get (contact
, QCbuffer
);
3365 filter
= Fplist_get (contact
, QCfilter
);
3366 sentinel
= Fplist_get (contact
, QCsentinel
);
3368 CHECK_STRING (name
);
3370 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
3371 ai
.ai_socktype
= socktype
;
3376 /* :local ADDRESS or :remote ADDRESS */
3377 address
= Fplist_get (contact
, QCaddress
);
3378 if (!NILP (address
))
3380 host
= service
= Qnil
;
3382 if (!(ai
.ai_addrlen
= get_lisp_to_sockaddr_size (address
, &family
)))
3383 error ("Malformed :address");
3384 ai
.ai_family
= family
;
3385 ai
.ai_addr
= alloca (ai
.ai_addrlen
);
3386 conv_lisp_to_sockaddr (family
, address
, ai
.ai_addr
, ai
.ai_addrlen
);
3390 /* :family FAMILY -- nil (for Inet), local, or integer. */
3391 tem
= Fplist_get (contact
, QCfamily
);
3394 #if defined(HAVE_GETADDRINFO) && defined(AF_INET6)
3400 #ifdef HAVE_LOCAL_SOCKETS
3401 else if (EQ (tem
, Qlocal
))
3405 else if (EQ (tem
, Qipv6
))
3408 else if (EQ (tem
, Qipv4
))
3410 else if (INTEGERP (tem
))
3411 family
= XINT (tem
);
3413 error ("Unknown address family");
3415 ai
.ai_family
= family
;
3417 /* :service SERVICE -- string, integer (port number), or t (random port). */
3418 service
= Fplist_get (contact
, QCservice
);
3420 #ifdef HAVE_LOCAL_SOCKETS
3421 if (family
== AF_LOCAL
)
3423 /* Host is not used. */
3425 CHECK_STRING (service
);
3426 bzero (&address_un
, sizeof address_un
);
3427 address_un
.sun_family
= AF_LOCAL
;
3428 strncpy (address_un
.sun_path
, SDATA (service
), sizeof address_un
.sun_path
);
3429 ai
.ai_addr
= (struct sockaddr
*) &address_un
;
3430 ai
.ai_addrlen
= sizeof address_un
;
3435 /* :host HOST -- hostname, ip address, or 'local for localhost. */
3436 host
= Fplist_get (contact
, QChost
);
3439 if (EQ (host
, Qlocal
))
3440 host
= build_string ("localhost");
3441 CHECK_STRING (host
);
3444 /* Slow down polling to every ten seconds.
3445 Some kernels have a bug which causes retrying connect to fail
3446 after a connect. Polling can interfere with gethostbyname too. */
3447 #ifdef POLL_FOR_INPUT
3448 if (socktype
!= SOCK_DGRAM
)
3450 record_unwind_protect (unwind_stop_other_atimers
, Qnil
);
3451 bind_polling_period (10);
3455 #ifdef HAVE_GETADDRINFO
3456 /* If we have a host, use getaddrinfo to resolve both host and service.
3457 Otherwise, use getservbyname to lookup the service. */
3461 /* SERVICE can either be a string or int.
3462 Convert to a C string for later use by getaddrinfo. */
3463 if (EQ (service
, Qt
))
3465 else if (INTEGERP (service
))
3467 sprintf (portbuf
, "%ld", (long) XINT (service
));
3468 portstring
= portbuf
;
3472 CHECK_STRING (service
);
3473 portstring
= SDATA (service
);
3478 memset (&hints
, 0, sizeof (hints
));
3480 hints
.ai_family
= family
;
3481 hints
.ai_socktype
= socktype
;
3482 hints
.ai_protocol
= 0;
3484 #ifdef HAVE_RES_INIT
3488 ret
= getaddrinfo (SDATA (host
), portstring
, &hints
, &res
);
3490 #ifdef HAVE_GAI_STRERROR
3491 error ("%s/%s %s", SDATA (host
), portstring
, gai_strerror(ret
));
3493 error ("%s/%s getaddrinfo error %d", SDATA (host
), portstring
, ret
);
3499 #endif /* HAVE_GETADDRINFO */
3501 /* We end up here if getaddrinfo is not defined, or in case no hostname
3502 has been specified (e.g. for a local server process). */
3504 if (EQ (service
, Qt
))
3506 else if (INTEGERP (service
))
3507 port
= htons ((unsigned short) XINT (service
));
3510 struct servent
*svc_info
;
3511 CHECK_STRING (service
);
3512 svc_info
= getservbyname (SDATA (service
),
3513 (socktype
== SOCK_DGRAM
? "udp" : "tcp"));
3515 error ("Unknown service: %s", SDATA (service
));
3516 port
= svc_info
->s_port
;
3519 bzero (&address_in
, sizeof address_in
);
3520 address_in
.sin_family
= family
;
3521 address_in
.sin_addr
.s_addr
= INADDR_ANY
;
3522 address_in
.sin_port
= port
;
3524 #ifndef HAVE_GETADDRINFO
3527 struct hostent
*host_info_ptr
;
3529 /* gethostbyname may fail with TRY_AGAIN, but we don't honour that,
3530 as it may `hang' Emacs for a very long time. */
3534 #ifdef HAVE_RES_INIT
3538 host_info_ptr
= gethostbyname (SDATA (host
));
3543 bcopy (host_info_ptr
->h_addr
, (char *) &address_in
.sin_addr
,
3544 host_info_ptr
->h_length
);
3545 family
= host_info_ptr
->h_addrtype
;
3546 address_in
.sin_family
= family
;
3549 /* Attempt to interpret host as numeric inet address */
3551 unsigned long numeric_addr
;
3552 numeric_addr
= inet_addr ((char *) SDATA (host
));
3553 if (numeric_addr
== -1)
3554 error ("Unknown host \"%s\"", SDATA (host
));
3556 bcopy ((char *)&numeric_addr
, (char *) &address_in
.sin_addr
,
3557 sizeof (address_in
.sin_addr
));
3561 #endif /* not HAVE_GETADDRINFO */
3563 ai
.ai_family
= family
;
3564 ai
.ai_addr
= (struct sockaddr
*) &address_in
;
3565 ai
.ai_addrlen
= sizeof address_in
;
3569 /* Do this in case we never enter the for-loop below. */
3570 count1
= SPECPDL_INDEX ();
3573 for (lres
= res
; lres
; lres
= lres
->ai_next
)
3579 s
= socket (lres
->ai_family
, lres
->ai_socktype
, lres
->ai_protocol
);
3586 #ifdef DATAGRAM_SOCKETS
3587 if (!is_server
&& socktype
== SOCK_DGRAM
)
3589 #endif /* DATAGRAM_SOCKETS */
3591 #ifdef NON_BLOCKING_CONNECT
3592 if (is_non_blocking_client
)
3595 ret
= fcntl (s
, F_SETFL
, O_NONBLOCK
);
3597 ret
= fcntl (s
, F_SETFL
, O_NDELAY
);
3609 /* Make us close S if quit. */
3610 record_unwind_protect (close_file_unwind
, make_number (s
));
3612 /* Parse network options in the arg list.
3613 We simply ignore anything which isn't a known option (including other keywords).
3614 An error is signaled if setting a known option fails. */
3615 for (optn
= optbits
= 0; optn
< nargs
-1; optn
+= 2)
3616 optbits
|= set_socket_option (s
, args
[optn
], args
[optn
+1]);
3620 /* Configure as a server socket. */
3622 /* SO_REUSEADDR = 1 is default for server sockets; must specify
3623 explicit :reuseaddr key to override this. */
3624 #ifdef HAVE_LOCAL_SOCKETS
3625 if (family
!= AF_LOCAL
)
3627 if (!(optbits
& (1 << OPIX_REUSEADDR
)))
3630 if (setsockopt (s
, SOL_SOCKET
, SO_REUSEADDR
, &optval
, sizeof optval
))
3631 report_file_error ("Cannot set reuse option on server socket", Qnil
);
3634 if (bind (s
, lres
->ai_addr
, lres
->ai_addrlen
))
3635 report_file_error ("Cannot bind server socket", Qnil
);
3637 #ifdef HAVE_GETSOCKNAME
3638 if (EQ (service
, Qt
))
3640 struct sockaddr_in sa1
;
3641 int len1
= sizeof (sa1
);
3642 if (getsockname (s
, (struct sockaddr
*)&sa1
, &len1
) == 0)
3644 ((struct sockaddr_in
*)(lres
->ai_addr
))->sin_port
= sa1
.sin_port
;
3645 service
= make_number (ntohs (sa1
.sin_port
));
3646 contact
= Fplist_put (contact
, QCservice
, service
);
3651 if (socktype
!= SOCK_DGRAM
&& listen (s
, backlog
))
3652 report_file_error ("Cannot listen on server socket", Qnil
);
3660 ret
= connect (s
, lres
->ai_addr
, lres
->ai_addrlen
);
3663 if (ret
== 0 || xerrno
== EISCONN
)
3665 /* The unwind-protect will be discarded afterwards.
3666 Likewise for immediate_quit. */
3670 #ifdef NON_BLOCKING_CONNECT
3672 if (is_non_blocking_client
&& xerrno
== EINPROGRESS
)
3676 if (is_non_blocking_client
&& xerrno
== EWOULDBLOCK
)
3683 if (xerrno
== EINTR
)
3685 /* Unlike most other syscalls connect() cannot be called
3686 again. (That would return EALREADY.) The proper way to
3687 wait for completion is select(). */
3694 sc
= select (s
+ 1, (SELECT_TYPE
*)0, &fdset
, (SELECT_TYPE
*)0,
3701 report_file_error ("select failed", Qnil
);
3705 len
= sizeof xerrno
;
3706 eassert (FD_ISSET (s
, &fdset
));
3707 if (getsockopt (s
, SOL_SOCKET
, SO_ERROR
, &xerrno
, &len
) == -1)
3708 report_file_error ("getsockopt failed", Qnil
);
3710 errno
= xerrno
, report_file_error ("error during connect", Qnil
);
3714 #endif /* !WINDOWSNT */
3718 /* Discard the unwind protect closing S. */
3719 specpdl_ptr
= specpdl
+ count1
;
3724 if (xerrno
== EINTR
)
3731 #ifdef DATAGRAM_SOCKETS
3732 if (socktype
== SOCK_DGRAM
)
3734 if (datagram_address
[s
].sa
)
3736 datagram_address
[s
].sa
= (struct sockaddr
*) xmalloc (lres
->ai_addrlen
);
3737 datagram_address
[s
].len
= lres
->ai_addrlen
;
3741 bzero (datagram_address
[s
].sa
, lres
->ai_addrlen
);
3742 if (remote
= Fplist_get (contact
, QCremote
), !NILP (remote
))
3745 rlen
= get_lisp_to_sockaddr_size (remote
, &rfamily
);
3746 if (rfamily
== lres
->ai_family
&& rlen
== lres
->ai_addrlen
)
3747 conv_lisp_to_sockaddr (rfamily
, remote
,
3748 datagram_address
[s
].sa
, rlen
);
3752 bcopy (lres
->ai_addr
, datagram_address
[s
].sa
, lres
->ai_addrlen
);
3755 contact
= Fplist_put (contact
, QCaddress
,
3756 conv_sockaddr_to_lisp (lres
->ai_addr
, lres
->ai_addrlen
));
3757 #ifdef HAVE_GETSOCKNAME
3760 struct sockaddr_in sa1
;
3761 int len1
= sizeof (sa1
);
3762 if (getsockname (s
, (struct sockaddr
*)&sa1
, &len1
) == 0)
3763 contact
= Fplist_put (contact
, QClocal
,
3764 conv_sockaddr_to_lisp (&sa1
, len1
));
3771 #ifdef HAVE_GETADDRINFO
3780 /* Discard the unwind protect for closing S, if any. */
3781 specpdl_ptr
= specpdl
+ count1
;
3783 /* Unwind bind_polling_period and request_sigio. */
3784 unbind_to (count
, Qnil
);
3788 /* If non-blocking got this far - and failed - assume non-blocking is
3789 not supported after all. This is probably a wrong assumption, but
3790 the normal blocking calls to open-network-stream handles this error
3792 if (is_non_blocking_client
)
3797 report_file_error ("make server process failed", contact
);
3799 report_file_error ("make client process failed", contact
);
3806 buffer
= Fget_buffer_create (buffer
);
3807 proc
= make_process (name
);
3809 chan_process
[inch
] = proc
;
3812 fcntl (inch
, F_SETFL
, O_NONBLOCK
);
3815 fcntl (inch
, F_SETFL
, O_NDELAY
);
3819 p
= XPROCESS (proc
);
3821 p
->childp
= contact
;
3822 p
->plist
= Fcopy_sequence (Fplist_get (contact
, QCplist
));
3826 p
->sentinel
= sentinel
;
3828 p
->log
= Fplist_get (contact
, QClog
);
3829 if (tem
= Fplist_get (contact
, QCnoquery
), !NILP (tem
))
3830 p
->kill_without_query
= 1;
3831 if ((tem
= Fplist_get (contact
, QCstop
), !NILP (tem
)))
3836 if (is_server
&& socktype
!= SOCK_DGRAM
)
3837 p
->status
= Qlisten
;
3839 /* Make the process marker point into the process buffer (if any). */
3840 if (BUFFERP (buffer
))
3841 set_marker_both (p
->mark
, buffer
,
3842 BUF_ZV (XBUFFER (buffer
)),
3843 BUF_ZV_BYTE (XBUFFER (buffer
)));
3845 #ifdef NON_BLOCKING_CONNECT
3846 if (is_non_blocking_client
)
3848 /* We may get here if connect did succeed immediately. However,
3849 in that case, we still need to signal this like a non-blocking
3851 p
->status
= Qconnect
;
3852 if (!FD_ISSET (inch
, &connect_wait_mask
))
3854 FD_SET (inch
, &connect_wait_mask
);
3855 num_pending_connects
++;
3860 /* A server may have a client filter setting of Qt, but it must
3861 still listen for incoming connects unless it is stopped. */
3862 if ((!EQ (p
->filter
, Qt
) && !EQ (p
->command
, Qt
))
3863 || (EQ (p
->status
, Qlisten
) && NILP (p
->command
)))
3865 FD_SET (inch
, &input_wait_mask
);
3866 FD_SET (inch
, &non_keyboard_wait_mask
);
3869 if (inch
> max_process_desc
)
3870 max_process_desc
= inch
;
3872 tem
= Fplist_member (contact
, QCcoding
);
3873 if (!NILP (tem
) && (!CONSP (tem
) || !CONSP (XCDR (tem
))))
3874 tem
= Qnil
; /* No error message (too late!). */
3877 /* Setup coding systems for communicating with the network stream. */
3878 struct gcpro gcpro1
;
3879 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3880 Lisp_Object coding_systems
= Qt
;
3881 Lisp_Object args
[5], val
;
3885 val
= XCAR (XCDR (tem
));
3889 else if (!NILP (Vcoding_system_for_read
))
3890 val
= Vcoding_system_for_read
;
3891 else if ((!NILP (buffer
) && NILP (XBUFFER (buffer
)->enable_multibyte_characters
))
3892 || (NILP (buffer
) && NILP (buffer_defaults
.enable_multibyte_characters
)))
3893 /* We dare not decode end-of-line format by setting VAL to
3894 Qraw_text, because the existing Emacs Lisp libraries
3895 assume that they receive bare code including a sequene of
3900 if (NILP (host
) || NILP (service
))
3901 coding_systems
= Qnil
;
3904 args
[0] = Qopen_network_stream
, args
[1] = name
,
3905 args
[2] = buffer
, args
[3] = host
, args
[4] = service
;
3907 coding_systems
= Ffind_operation_coding_system (5, args
);
3910 if (CONSP (coding_systems
))
3911 val
= XCAR (coding_systems
);
3912 else if (CONSP (Vdefault_process_coding_system
))
3913 val
= XCAR (Vdefault_process_coding_system
);
3917 p
->decode_coding_system
= val
;
3921 val
= XCAR (XCDR (tem
));
3925 else if (!NILP (Vcoding_system_for_write
))
3926 val
= Vcoding_system_for_write
;
3927 else if (NILP (current_buffer
->enable_multibyte_characters
))
3931 if (EQ (coding_systems
, Qt
))
3933 if (NILP (host
) || NILP (service
))
3934 coding_systems
= Qnil
;
3937 args
[0] = Qopen_network_stream
, args
[1] = name
,
3938 args
[2] = buffer
, args
[3] = host
, args
[4] = service
;
3940 coding_systems
= Ffind_operation_coding_system (5, args
);
3944 if (CONSP (coding_systems
))
3945 val
= XCDR (coding_systems
);
3946 else if (CONSP (Vdefault_process_coding_system
))
3947 val
= XCDR (Vdefault_process_coding_system
);
3951 p
->encode_coding_system
= val
;
3953 setup_process_coding_systems (proc
);
3955 p
->decoding_buf
= make_uninit_string (0);
3956 p
->decoding_carryover
= 0;
3957 p
->encoding_buf
= make_uninit_string (0);
3959 p
->inherit_coding_system_flag
3960 = !(!NILP (tem
) || NILP (buffer
) || !inherit_process_coding_system
);
3965 #endif /* HAVE_SOCKETS */
3968 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
3971 DEFUN ("network-interface-list", Fnetwork_interface_list
, Snetwork_interface_list
, 0, 0, 0,
3972 doc
: /* Return an alist of all network interfaces and their network address.
3973 Each element is a cons, the car of which is a string containing the
3974 interface name, and the cdr is the network address in internal
3975 format; see the description of ADDRESS in `make-network-process'. */)
3978 struct ifconf ifconf
;
3979 struct ifreq
*ifreqs
= NULL
;
3984 s
= socket (AF_INET
, SOCK_STREAM
, 0);
3990 buf_size
= ifaces
* sizeof(ifreqs
[0]);
3991 ifreqs
= (struct ifreq
*)xrealloc(ifreqs
, buf_size
);
3998 ifconf
.ifc_len
= buf_size
;
3999 ifconf
.ifc_req
= ifreqs
;
4000 if (ioctl (s
, SIOCGIFCONF
, &ifconf
))
4006 if (ifconf
.ifc_len
== buf_size
)
4010 ifaces
= ifconf
.ifc_len
/ sizeof (ifreqs
[0]);
4013 while (--ifaces
>= 0)
4015 struct ifreq
*ifq
= &ifreqs
[ifaces
];
4016 char namebuf
[sizeof (ifq
->ifr_name
) + 1];
4017 if (ifq
->ifr_addr
.sa_family
!= AF_INET
)
4019 bcopy (ifq
->ifr_name
, namebuf
, sizeof (ifq
->ifr_name
));
4020 namebuf
[sizeof (ifq
->ifr_name
)] = 0;
4021 res
= Fcons (Fcons (build_string (namebuf
),
4022 conv_sockaddr_to_lisp (&ifq
->ifr_addr
,
4023 sizeof (struct sockaddr
))),
4029 #endif /* SIOCGIFCONF */
4031 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
4035 const char *flag_sym
;
4038 static const struct ifflag_def ifflag_table
[] = {
4042 #ifdef IFF_BROADCAST
4043 { IFF_BROADCAST
, "broadcast" },
4046 { IFF_DEBUG
, "debug" },
4049 { IFF_LOOPBACK
, "loopback" },
4051 #ifdef IFF_POINTOPOINT
4052 { IFF_POINTOPOINT
, "pointopoint" },
4055 { IFF_RUNNING
, "running" },
4058 { IFF_NOARP
, "noarp" },
4061 { IFF_PROMISC
, "promisc" },
4063 #ifdef IFF_NOTRAILERS
4064 { IFF_NOTRAILERS
, "notrailers" },
4067 { IFF_ALLMULTI
, "allmulti" },
4070 { IFF_MASTER
, "master" },
4073 { IFF_SLAVE
, "slave" },
4075 #ifdef IFF_MULTICAST
4076 { IFF_MULTICAST
, "multicast" },
4079 { IFF_PORTSEL
, "portsel" },
4081 #ifdef IFF_AUTOMEDIA
4082 { IFF_AUTOMEDIA
, "automedia" },
4085 { IFF_DYNAMIC
, "dynamic" },
4088 { IFF_OACTIVE
, "oactive" }, /* OpenBSD: transmission in progress */
4091 { IFF_SIMPLEX
, "simplex" }, /* OpenBSD: can't hear own transmissions */
4094 { IFF_LINK0
, "link0" }, /* OpenBSD: per link layer defined bit */
4097 { IFF_LINK1
, "link1" }, /* OpenBSD: per link layer defined bit */
4100 { IFF_LINK2
, "link2" }, /* OpenBSD: per link layer defined bit */
4105 DEFUN ("network-interface-info", Fnetwork_interface_info
, Snetwork_interface_info
, 1, 1, 0,
4106 doc
: /* Return information about network interface named IFNAME.
4107 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
4108 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
4109 NETMASK is the layer 3 network mask, HWADDR is the layer 2 addres, and
4110 FLAGS is the current flags of the interface. */)
4115 Lisp_Object res
= Qnil
;
4120 CHECK_STRING (ifname
);
4122 bzero (rq
.ifr_name
, sizeof rq
.ifr_name
);
4123 strncpy (rq
.ifr_name
, SDATA (ifname
), sizeof (rq
.ifr_name
));
4125 s
= socket (AF_INET
, SOCK_STREAM
, 0);
4130 #if defined(SIOCGIFFLAGS) && defined(HAVE_STRUCT_IFREQ_IFR_FLAGS)
4131 if (ioctl (s
, SIOCGIFFLAGS
, &rq
) == 0)
4133 int flags
= rq
.ifr_flags
;
4134 const struct ifflag_def
*fp
;
4138 for (fp
= ifflag_table
; flags
!= 0 && fp
->flag_sym
; fp
++)
4140 if (flags
& fp
->flag_bit
)
4142 elt
= Fcons (intern (fp
->flag_sym
), elt
);
4143 flags
-= fp
->flag_bit
;
4146 for (fnum
= 0; flags
&& fnum
< 32; fnum
++)
4148 if (flags
& (1 << fnum
))
4150 elt
= Fcons (make_number (fnum
), elt
);
4155 res
= Fcons (elt
, res
);
4158 #if defined(SIOCGIFHWADDR) && defined(HAVE_STRUCT_IFREQ_IFR_HWADDR)
4159 if (ioctl (s
, SIOCGIFHWADDR
, &rq
) == 0)
4161 Lisp_Object hwaddr
= Fmake_vector (make_number (6), Qnil
);
4162 register struct Lisp_Vector
*p
= XVECTOR (hwaddr
);
4166 for (n
= 0; n
< 6; n
++)
4167 p
->contents
[n
] = make_number (((unsigned char *)&rq
.ifr_hwaddr
.sa_data
[0])[n
]);
4168 elt
= Fcons (make_number (rq
.ifr_hwaddr
.sa_family
), hwaddr
);
4171 res
= Fcons (elt
, res
);
4174 #if defined(SIOCGIFNETMASK) && (defined(HAVE_STRUCT_IFREQ_IFR_NETMASK) || defined(HAVE_STRUCT_IFREQ_IFR_ADDR))
4175 if (ioctl (s
, SIOCGIFNETMASK
, &rq
) == 0)
4178 #ifdef HAVE_STRUCT_IFREQ_IFR_NETMASK
4179 elt
= conv_sockaddr_to_lisp (&rq
.ifr_netmask
, sizeof (rq
.ifr_netmask
));
4181 elt
= conv_sockaddr_to_lisp (&rq
.ifr_addr
, sizeof (rq
.ifr_addr
));
4185 res
= Fcons (elt
, res
);
4188 #if defined(SIOCGIFBRDADDR) && defined(HAVE_STRUCT_IFREQ_IFR_BROADADDR)
4189 if (ioctl (s
, SIOCGIFBRDADDR
, &rq
) == 0)
4192 elt
= conv_sockaddr_to_lisp (&rq
.ifr_broadaddr
, sizeof (rq
.ifr_broadaddr
));
4195 res
= Fcons (elt
, res
);
4198 #if defined(SIOCGIFADDR) && defined(HAVE_STRUCT_IFREQ_IFR_ADDR)
4199 if (ioctl (s
, SIOCGIFADDR
, &rq
) == 0)
4202 elt
= conv_sockaddr_to_lisp (&rq
.ifr_addr
, sizeof (rq
.ifr_addr
));
4205 res
= Fcons (elt
, res
);
4209 return any
? res
: Qnil
;
4212 #endif /* HAVE_SOCKETS */
4214 /* Turn off input and output for process PROC. */
4217 deactivate_process (proc
)
4220 register int inchannel
, outchannel
;
4221 register struct Lisp_Process
*p
= XPROCESS (proc
);
4223 inchannel
= p
->infd
;
4224 outchannel
= p
->outfd
;
4226 #ifdef ADAPTIVE_READ_BUFFERING
4227 if (p
->read_output_delay
> 0)
4229 if (--process_output_delay_count
< 0)
4230 process_output_delay_count
= 0;
4231 p
->read_output_delay
= 0;
4232 p
->read_output_skip
= 0;
4238 /* Beware SIGCHLD hereabouts. */
4239 flush_pending_output (inchannel
);
4240 emacs_close (inchannel
);
4241 if (outchannel
>= 0 && outchannel
!= inchannel
)
4242 emacs_close (outchannel
);
4246 #ifdef DATAGRAM_SOCKETS
4247 if (DATAGRAM_CHAN_P (inchannel
))
4249 xfree (datagram_address
[inchannel
].sa
);
4250 datagram_address
[inchannel
].sa
= 0;
4251 datagram_address
[inchannel
].len
= 0;
4254 chan_process
[inchannel
] = Qnil
;
4255 FD_CLR (inchannel
, &input_wait_mask
);
4256 FD_CLR (inchannel
, &non_keyboard_wait_mask
);
4257 #ifdef NON_BLOCKING_CONNECT
4258 if (FD_ISSET (inchannel
, &connect_wait_mask
))
4260 FD_CLR (inchannel
, &connect_wait_mask
);
4261 if (--num_pending_connects
< 0)
4265 if (inchannel
== max_process_desc
)
4268 /* We just closed the highest-numbered process input descriptor,
4269 so recompute the highest-numbered one now. */
4270 max_process_desc
= 0;
4271 for (i
= 0; i
< MAXDESC
; i
++)
4272 if (!NILP (chan_process
[i
]))
4273 max_process_desc
= i
;
4278 /* Close all descriptors currently in use for communication
4279 with subprocess. This is used in a newly-forked subprocess
4280 to get rid of irrelevant descriptors. */
4283 close_process_descs ()
4287 for (i
= 0; i
< MAXDESC
; i
++)
4289 Lisp_Object process
;
4290 process
= chan_process
[i
];
4291 if (!NILP (process
))
4293 int in
= XPROCESS (process
)->infd
;
4294 int out
= XPROCESS (process
)->outfd
;
4297 if (out
>= 0 && in
!= out
)
4304 DEFUN ("accept-process-output", Faccept_process_output
, Saccept_process_output
,
4306 doc
: /* Allow any pending output from subprocesses to be read by Emacs.
4307 It is read into the process' buffers or given to their filter functions.
4308 Non-nil arg PROCESS means do not return until some output has been received
4311 Non-nil second arg SECONDS and third arg MILLISEC are number of seconds
4312 and milliseconds to wait; return after that much time whether or not
4313 there is any subprocess output. If SECONDS is a floating point number,
4314 it specifies a fractional number of seconds to wait.
4315 The MILLISEC argument is obsolete and should be avoided.
4317 If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
4318 from PROCESS, suspending reading output from other processes.
4319 If JUST-THIS-ONE is an integer, don't run any timers either.
4320 Return non-nil if we received any output before the timeout expired. */)
4321 (process
, seconds
, millisec
, just_this_one
)
4322 register Lisp_Object process
, seconds
, millisec
, just_this_one
;
4324 int secs
, usecs
= 0;
4326 if (! NILP (process
))
4327 CHECK_PROCESS (process
);
4329 just_this_one
= Qnil
;
4331 if (!NILP (millisec
))
4332 { /* Obsolete calling convention using integers rather than floats. */
4333 CHECK_NUMBER (millisec
);
4335 seconds
= make_float (XINT (millisec
) / 1000.0);
4338 CHECK_NUMBER (seconds
);
4339 seconds
= make_float (XINT (millisec
) / 1000.0 + XINT (seconds
));
4343 if (!NILP (seconds
))
4345 if (INTEGERP (seconds
))
4346 secs
= XINT (seconds
);
4347 else if (FLOATP (seconds
))
4349 double timeout
= XFLOAT_DATA (seconds
);
4350 secs
= (int) timeout
;
4351 usecs
= (int) ((timeout
- (double) secs
) * 1000000);
4354 wrong_type_argument (Qnumberp
, seconds
);
4356 if (secs
< 0 || (secs
== 0 && usecs
== 0))
4357 secs
= -1, usecs
= 0;
4360 secs
= NILP (process
) ? -1 : 0;
4363 (wait_reading_process_output (secs
, usecs
, 0, 0,
4365 !NILP (process
) ? XPROCESS (process
) : NULL
,
4366 NILP (just_this_one
) ? 0 :
4367 !INTEGERP (just_this_one
) ? 1 : -1)
4371 /* Accept a connection for server process SERVER on CHANNEL. */
4373 static int connect_counter
= 0;
4376 server_accept_connection (server
, channel
)
4380 Lisp_Object proc
, caller
, name
, buffer
;
4381 Lisp_Object contact
, host
, service
;
4382 struct Lisp_Process
*ps
= XPROCESS (server
);
4383 struct Lisp_Process
*p
;
4387 struct sockaddr_in in
;
4389 struct sockaddr_in6 in6
;
4391 #ifdef HAVE_LOCAL_SOCKETS
4392 struct sockaddr_un un
;
4395 int len
= sizeof saddr
;
4397 s
= accept (channel
, &saddr
.sa
, &len
);
4406 if (code
== EWOULDBLOCK
)
4410 if (!NILP (ps
->log
))
4411 call3 (ps
->log
, server
, Qnil
,
4412 concat3 (build_string ("accept failed with code"),
4413 Fnumber_to_string (make_number (code
)),
4414 build_string ("\n")));
4420 /* Setup a new process to handle the connection. */
4422 /* Generate a unique identification of the caller, and build contact
4423 information for this process. */
4426 switch (saddr
.sa
.sa_family
)
4430 Lisp_Object args
[5];
4431 unsigned char *ip
= (unsigned char *)&saddr
.in
.sin_addr
.s_addr
;
4432 args
[0] = build_string ("%d.%d.%d.%d");
4433 args
[1] = make_number (*ip
++);
4434 args
[2] = make_number (*ip
++);
4435 args
[3] = make_number (*ip
++);
4436 args
[4] = make_number (*ip
++);
4437 host
= Fformat (5, args
);
4438 service
= make_number (ntohs (saddr
.in
.sin_port
));
4440 args
[0] = build_string (" <%s:%d>");
4443 caller
= Fformat (3, args
);
4450 Lisp_Object args
[9];
4451 uint16_t *ip6
= (uint16_t *)&saddr
.in6
.sin6_addr
;
4453 args
[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
4454 for (i
= 0; i
< 8; i
++)
4455 args
[i
+1] = make_number (ntohs(ip6
[i
]));
4456 host
= Fformat (9, args
);
4457 service
= make_number (ntohs (saddr
.in
.sin_port
));
4459 args
[0] = build_string (" <[%s]:%d>");
4462 caller
= Fformat (3, args
);
4467 #ifdef HAVE_LOCAL_SOCKETS
4471 caller
= Fnumber_to_string (make_number (connect_counter
));
4472 caller
= concat3 (build_string (" <"), caller
, build_string (">"));
4476 /* Create a new buffer name for this process if it doesn't have a
4477 filter. The new buffer name is based on the buffer name or
4478 process name of the server process concatenated with the caller
4481 if (!NILP (ps
->filter
) && !EQ (ps
->filter
, Qt
))
4485 buffer
= ps
->buffer
;
4487 buffer
= Fbuffer_name (buffer
);
4492 buffer
= concat2 (buffer
, caller
);
4493 buffer
= Fget_buffer_create (buffer
);
4497 /* Generate a unique name for the new server process. Combine the
4498 server process name with the caller identification. */
4500 name
= concat2 (ps
->name
, caller
);
4501 proc
= make_process (name
);
4503 chan_process
[s
] = proc
;
4506 fcntl (s
, F_SETFL
, O_NONBLOCK
);
4509 fcntl (s
, F_SETFL
, O_NDELAY
);
4513 p
= XPROCESS (proc
);
4515 /* Build new contact information for this setup. */
4516 contact
= Fcopy_sequence (ps
->childp
);
4517 contact
= Fplist_put (contact
, QCserver
, Qnil
);
4518 contact
= Fplist_put (contact
, QChost
, host
);
4519 if (!NILP (service
))
4520 contact
= Fplist_put (contact
, QCservice
, service
);
4521 contact
= Fplist_put (contact
, QCremote
,
4522 conv_sockaddr_to_lisp (&saddr
.sa
, len
));
4523 #ifdef HAVE_GETSOCKNAME
4525 if (getsockname (s
, &saddr
.sa
, &len
) == 0)
4526 contact
= Fplist_put (contact
, QClocal
,
4527 conv_sockaddr_to_lisp (&saddr
.sa
, len
));
4530 p
->childp
= contact
;
4531 p
->plist
= Fcopy_sequence (ps
->plist
);
4535 p
->sentinel
= ps
->sentinel
;
4536 p
->filter
= ps
->filter
;
4543 /* Client processes for accepted connections are not stopped initially. */
4544 if (!EQ (p
->filter
, Qt
))
4546 FD_SET (s
, &input_wait_mask
);
4547 FD_SET (s
, &non_keyboard_wait_mask
);
4550 if (s
> max_process_desc
)
4551 max_process_desc
= s
;
4553 /* Setup coding system for new process based on server process.
4554 This seems to be the proper thing to do, as the coding system
4555 of the new process should reflect the settings at the time the
4556 server socket was opened; not the current settings. */
4558 p
->decode_coding_system
= ps
->decode_coding_system
;
4559 p
->encode_coding_system
= ps
->encode_coding_system
;
4560 setup_process_coding_systems (proc
);
4562 p
->decoding_buf
= make_uninit_string (0);
4563 p
->decoding_carryover
= 0;
4564 p
->encoding_buf
= make_uninit_string (0);
4566 p
->inherit_coding_system_flag
4567 = (NILP (buffer
) ? 0 : ps
->inherit_coding_system_flag
);
4569 if (!NILP (ps
->log
))
4570 call3 (ps
->log
, server
, proc
,
4571 concat3 (build_string ("accept from "),
4572 (STRINGP (host
) ? host
: build_string ("-")),
4573 build_string ("\n")));
4575 if (!NILP (p
->sentinel
))
4576 exec_sentinel (proc
,
4577 concat3 (build_string ("open from "),
4578 (STRINGP (host
) ? host
: build_string ("-")),
4579 build_string ("\n")));
4582 /* This variable is different from waiting_for_input in keyboard.c.
4583 It is used to communicate to a lisp process-filter/sentinel (via the
4584 function Fwaiting_for_user_input_p below) whether Emacs was waiting
4585 for user-input when that process-filter was called.
4586 waiting_for_input cannot be used as that is by definition 0 when
4587 lisp code is being evalled.
4588 This is also used in record_asynch_buffer_change.
4589 For that purpose, this must be 0
4590 when not inside wait_reading_process_output. */
4591 static int waiting_for_user_input_p
;
4594 wait_reading_process_output_unwind (data
)
4597 waiting_for_user_input_p
= XINT (data
);
4601 /* This is here so breakpoints can be put on it. */
4603 wait_reading_process_output_1 ()
4607 /* Use a wrapper around select to work around a bug in gdb 5.3.
4608 Normally, the wrapper is optimized away by inlining.
4610 If emacs is stopped inside select, the gdb backtrace doesn't
4611 show the function which called select, so it is practically
4612 impossible to step through wait_reading_process_output. */
4616 select_wrapper (n
, rfd
, wfd
, xfd
, tmo
)
4618 SELECT_TYPE
*rfd
, *wfd
, *xfd
;
4621 return select (n
, rfd
, wfd
, xfd
, tmo
);
4623 #define select select_wrapper
4626 /* Read and dispose of subprocess output while waiting for timeout to
4627 elapse and/or keyboard input to be available.
4630 timeout in seconds, or
4631 zero for no limit, or
4632 -1 means gobble data immediately available but don't wait for any.
4635 an additional duration to wait, measured in microseconds.
4636 If this is nonzero and time_limit is 0, then the timeout
4637 consists of MICROSECS only.
4639 READ_KBD is a lisp value:
4640 0 to ignore keyboard input, or
4641 1 to return when input is available, or
4642 -1 meaning caller will actually read the input, so don't throw to
4643 the quit handler, or
4645 DO_DISPLAY != 0 means redisplay should be done to show subprocess
4646 output that arrives.
4648 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4649 (and gobble terminal input into the buffer if any arrives).
4651 If WAIT_PROC is specified, wait until something arrives from that
4652 process. The return value is true if we read some input from
4655 If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC
4656 (suspending output from other processes). A negative value
4657 means don't run any timers either.
4659 If WAIT_PROC is specified, then the function returns true if we
4660 received input from that process before the timeout elapsed.
4661 Otherwise, return true if we received input from any process. */
4664 wait_reading_process_output (time_limit
, microsecs
, read_kbd
, do_display
,
4665 wait_for_cell
, wait_proc
, just_wait_proc
)
4666 int time_limit
, microsecs
, read_kbd
, do_display
;
4667 Lisp_Object wait_for_cell
;
4668 struct Lisp_Process
*wait_proc
;
4671 register int channel
, nfds
;
4672 SELECT_TYPE Available
;
4673 #ifdef NON_BLOCKING_CONNECT
4674 SELECT_TYPE Connecting
;
4677 int check_delay
, no_avail
;
4680 EMACS_TIME timeout
, end_time
;
4681 int wait_channel
= -1;
4682 int got_some_input
= 0;
4683 int count
= SPECPDL_INDEX ();
4685 FD_ZERO (&Available
);
4686 #ifdef NON_BLOCKING_CONNECT
4687 FD_ZERO (&Connecting
);
4690 /* If wait_proc is a process to watch, set wait_channel accordingly. */
4691 if (wait_proc
!= NULL
)
4692 wait_channel
= wait_proc
->infd
;
4694 record_unwind_protect (wait_reading_process_output_unwind
,
4695 make_number (waiting_for_user_input_p
));
4696 waiting_for_user_input_p
= read_kbd
;
4698 /* Since we may need to wait several times,
4699 compute the absolute time to return at. */
4700 if (time_limit
|| microsecs
)
4702 EMACS_GET_TIME (end_time
);
4703 EMACS_SET_SECS_USECS (timeout
, time_limit
, microsecs
);
4704 EMACS_ADD_TIME (end_time
, end_time
, timeout
);
4709 int timeout_reduced_for_timers
= 0;
4711 /* If calling from keyboard input, do not quit
4712 since we want to return C-g as an input character.
4713 Otherwise, do pending quit if requested. */
4718 process_pending_signals ();
4721 /* Exit now if the cell we're waiting for became non-nil. */
4722 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
4725 /* Compute time from now till when time limit is up */
4726 /* Exit if already run out */
4727 if (time_limit
== -1)
4729 /* -1 specified for timeout means
4730 gobble output available now
4731 but don't wait at all. */
4733 EMACS_SET_SECS_USECS (timeout
, 0, 0);
4735 else if (time_limit
|| microsecs
)
4737 EMACS_GET_TIME (timeout
);
4738 EMACS_SUB_TIME (timeout
, end_time
, timeout
);
4739 if (EMACS_TIME_NEG_P (timeout
))
4744 EMACS_SET_SECS_USECS (timeout
, 100000, 0);
4747 /* Normally we run timers here.
4748 But not if wait_for_cell; in those cases,
4749 the wait is supposed to be short,
4750 and those callers cannot handle running arbitrary Lisp code here. */
4751 if (NILP (wait_for_cell
)
4752 && just_wait_proc
>= 0)
4754 EMACS_TIME timer_delay
;
4758 int old_timers_run
= timers_run
;
4759 struct buffer
*old_buffer
= current_buffer
;
4760 Lisp_Object old_window
= selected_window
;
4762 timer_delay
= timer_check (1);
4764 /* If a timer has run, this might have changed buffers
4765 an alike. Make read_key_sequence aware of that. */
4766 if (timers_run
!= old_timers_run
4767 && (old_buffer
!= current_buffer
4768 || !EQ (old_window
, selected_window
))
4769 && waiting_for_user_input_p
== -1)
4770 record_asynch_buffer_change ();
4772 if (timers_run
!= old_timers_run
&& do_display
)
4773 /* We must retry, since a timer may have requeued itself
4774 and that could alter the time_delay. */
4775 redisplay_preserve_echo_area (9);
4779 while (!detect_input_pending ());
4781 /* If there is unread keyboard input, also return. */
4783 && requeued_events_pending_p ())
4786 if (! EMACS_TIME_NEG_P (timer_delay
) && time_limit
!= -1)
4788 EMACS_TIME difference
;
4789 EMACS_SUB_TIME (difference
, timer_delay
, timeout
);
4790 if (EMACS_TIME_NEG_P (difference
))
4792 timeout
= timer_delay
;
4793 timeout_reduced_for_timers
= 1;
4796 /* If time_limit is -1, we are not going to wait at all. */
4797 else if (time_limit
!= -1)
4799 /* This is so a breakpoint can be put here. */
4800 wait_reading_process_output_1 ();
4804 /* Cause C-g and alarm signals to take immediate action,
4805 and cause input available signals to zero out timeout.
4807 It is important that we do this before checking for process
4808 activity. If we get a SIGCHLD after the explicit checks for
4809 process activity, timeout is the only way we will know. */
4811 set_waiting_for_input (&timeout
);
4813 /* If status of something has changed, and no input is
4814 available, notify the user of the change right away. After
4815 this explicit check, we'll let the SIGCHLD handler zap
4816 timeout to get our attention. */
4817 if (update_tick
!= process_tick
)
4820 #ifdef NON_BLOCKING_CONNECT
4824 if (kbd_on_hold_p ())
4827 Atemp
= input_wait_mask
;
4829 IF_NON_BLOCKING_CONNECT (Ctemp
= connect_wait_mask
);
4831 EMACS_SET_SECS_USECS (timeout
, 0, 0);
4832 if ((select (max (max (max_process_desc
, max_keyboard_desc
),
4835 #ifdef NON_BLOCKING_CONNECT
4836 (num_pending_connects
> 0 ? &Ctemp
: (SELECT_TYPE
*)0),
4840 (SELECT_TYPE
*)0, &timeout
)
4843 /* It's okay for us to do this and then continue with
4844 the loop, since timeout has already been zeroed out. */
4845 clear_waiting_for_input ();
4846 status_notify (NULL
);
4847 if (do_display
) redisplay_preserve_echo_area (13);
4851 /* Don't wait for output from a non-running process. Just
4852 read whatever data has already been received. */
4853 if (wait_proc
&& wait_proc
->raw_status_new
)
4854 update_status (wait_proc
);
4856 && ! EQ (wait_proc
->status
, Qrun
)
4857 && ! EQ (wait_proc
->status
, Qconnect
))
4859 int nread
, total_nread
= 0;
4861 clear_waiting_for_input ();
4862 XSETPROCESS (proc
, wait_proc
);
4864 /* Read data from the process, until we exhaust it. */
4865 while (wait_proc
->infd
>= 0)
4867 nread
= read_process_output (proc
, wait_proc
->infd
);
4874 total_nread
+= nread
;
4878 else if (nread
== -1 && EIO
== errno
)
4882 else if (nread
== -1 && EAGAIN
== errno
)
4886 else if (nread
== -1 && EWOULDBLOCK
== errno
)
4890 if (total_nread
> 0 && do_display
)
4891 redisplay_preserve_echo_area (10);
4896 /* Wait till there is something to do */
4898 if (wait_proc
&& just_wait_proc
)
4900 if (wait_proc
->infd
< 0) /* Terminated */
4902 FD_SET (wait_proc
->infd
, &Available
);
4904 IF_NON_BLOCKING_CONNECT (check_connect
= 0);
4906 else if (!NILP (wait_for_cell
))
4908 Available
= non_process_wait_mask
;
4910 IF_NON_BLOCKING_CONNECT (check_connect
= 0);
4915 Available
= non_keyboard_wait_mask
;
4917 Available
= input_wait_mask
;
4918 IF_NON_BLOCKING_CONNECT (check_connect
= (num_pending_connects
> 0));
4919 check_delay
= wait_channel
>= 0 ? 0 : process_output_delay_count
;
4922 /* If frame size has changed or the window is newly mapped,
4923 redisplay now, before we start to wait. There is a race
4924 condition here; if a SIGIO arrives between now and the select
4925 and indicates that a frame is trashed, the select may block
4926 displaying a trashed screen. */
4927 if (frame_garbaged
&& do_display
)
4929 clear_waiting_for_input ();
4930 redisplay_preserve_echo_area (11);
4932 set_waiting_for_input (&timeout
);
4936 if (read_kbd
&& detect_input_pending ())
4943 #ifdef NON_BLOCKING_CONNECT
4945 Connecting
= connect_wait_mask
;
4948 #ifdef ADAPTIVE_READ_BUFFERING
4949 /* Set the timeout for adaptive read buffering if any
4950 process has non-zero read_output_skip and non-zero
4951 read_output_delay, and we are not reading output for a
4952 specific wait_channel. It is not executed if
4953 Vprocess_adaptive_read_buffering is nil. */
4954 if (process_output_skip
&& check_delay
> 0)
4956 int usecs
= EMACS_USECS (timeout
);
4957 if (EMACS_SECS (timeout
) > 0 || usecs
> READ_OUTPUT_DELAY_MAX
)
4958 usecs
= READ_OUTPUT_DELAY_MAX
;
4959 for (channel
= 0; check_delay
> 0 && channel
<= max_process_desc
; channel
++)
4961 proc
= chan_process
[channel
];
4964 /* Find minimum non-zero read_output_delay among the
4965 processes with non-zero read_output_skip. */
4966 if (XPROCESS (proc
)->read_output_delay
> 0)
4969 if (!XPROCESS (proc
)->read_output_skip
)
4971 FD_CLR (channel
, &Available
);
4972 XPROCESS (proc
)->read_output_skip
= 0;
4973 if (XPROCESS (proc
)->read_output_delay
< usecs
)
4974 usecs
= XPROCESS (proc
)->read_output_delay
;
4977 EMACS_SET_SECS_USECS (timeout
, 0, usecs
);
4978 process_output_skip
= 0;
4981 #if defined (USE_GTK) || defined (HAVE_GCONF)
4983 #elif defined (HAVE_NS)
4988 (max (max (max_process_desc
, max_keyboard_desc
),
4991 #ifdef NON_BLOCKING_CONNECT
4992 (check_connect
? &Connecting
: (SELECT_TYPE
*)0),
4996 (SELECT_TYPE
*)0, &timeout
);
5001 /* Make C-g and alarm signals set flags again */
5002 clear_waiting_for_input ();
5004 /* If we woke up due to SIGWINCH, actually change size now. */
5005 do_pending_window_change (0);
5007 if (time_limit
&& nfds
== 0 && ! timeout_reduced_for_timers
)
5008 /* We wanted the full specified time, so return now. */
5012 if (xerrno
== EINTR
)
5014 else if (xerrno
== EBADF
)
5017 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
5018 the child's closure of the pts gives the parent a SIGHUP, and
5019 the ptc file descriptor is automatically closed,
5020 yielding EBADF here or at select() call above.
5021 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
5022 in m/ibmrt-aix.h), and here we just ignore the select error.
5023 Cleanup occurs c/o status_notify after SIGCLD. */
5024 no_avail
= 1; /* Cannot depend on values returned */
5030 error ("select error: %s", emacs_strerror (xerrno
));
5035 FD_ZERO (&Available
);
5036 IF_NON_BLOCKING_CONNECT (check_connect
= 0);
5039 #if 0 /* When polling is used, interrupt_input is 0,
5040 so get_input_pending should read the input.
5041 So this should not be needed. */
5042 /* If we are using polling for input,
5043 and we see input available, make it get read now.
5044 Otherwise it might not actually get read for a second.
5045 And on hpux, since we turn off polling in wait_reading_process_output,
5046 it might never get read at all if we don't spend much time
5047 outside of wait_reading_process_output. */
5048 if (read_kbd
&& interrupt_input
5049 && keyboard_bit_set (&Available
)
5050 && input_polling_used ())
5051 kill (getpid (), SIGALRM
);
5054 /* Check for keyboard input */
5055 /* If there is any, return immediately
5056 to give it higher priority than subprocesses */
5060 int old_timers_run
= timers_run
;
5061 struct buffer
*old_buffer
= current_buffer
;
5062 Lisp_Object old_window
= selected_window
;
5065 if (detect_input_pending_run_timers (do_display
))
5067 swallow_events (do_display
);
5068 if (detect_input_pending_run_timers (do_display
))
5072 /* If a timer has run, this might have changed buffers
5073 an alike. Make read_key_sequence aware of that. */
5074 if (timers_run
!= old_timers_run
5075 && waiting_for_user_input_p
== -1
5076 && (old_buffer
!= current_buffer
5077 || !EQ (old_window
, selected_window
)))
5078 record_asynch_buffer_change ();
5084 /* If there is unread keyboard input, also return. */
5086 && requeued_events_pending_p ())
5089 /* If we are not checking for keyboard input now,
5090 do process events (but don't run any timers).
5091 This is so that X events will be processed.
5092 Otherwise they may have to wait until polling takes place.
5093 That would causes delays in pasting selections, for example.
5095 (We used to do this only if wait_for_cell.) */
5096 if (read_kbd
== 0 && detect_input_pending ())
5098 swallow_events (do_display
);
5099 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
5100 if (detect_input_pending ())
5105 /* Exit now if the cell we're waiting for became non-nil. */
5106 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
5110 /* If we think we have keyboard input waiting, but didn't get SIGIO,
5111 go read it. This can happen with X on BSD after logging out.
5112 In that case, there really is no input and no SIGIO,
5113 but select says there is input. */
5115 if (read_kbd
&& interrupt_input
5116 && keyboard_bit_set (&Available
) && ! noninteractive
)
5117 kill (getpid (), SIGIO
);
5121 got_some_input
|= nfds
> 0;
5123 /* If checking input just got us a size-change event from X,
5124 obey it now if we should. */
5125 if (read_kbd
|| ! NILP (wait_for_cell
))
5126 do_pending_window_change (0);
5128 /* Check for data from a process. */
5129 if (no_avail
|| nfds
== 0)
5132 /* Really FIRST_PROC_DESC should be 0 on Unix,
5133 but this is safer in the short run. */
5134 for (channel
= 0; channel
<= max_process_desc
; channel
++)
5136 if (FD_ISSET (channel
, &Available
)
5137 && FD_ISSET (channel
, &non_keyboard_wait_mask
))
5141 /* If waiting for this channel, arrange to return as
5142 soon as no more input to be processed. No more
5144 if (wait_channel
== channel
)
5150 proc
= chan_process
[channel
];
5154 /* If this is a server stream socket, accept connection. */
5155 if (EQ (XPROCESS (proc
)->status
, Qlisten
))
5157 server_accept_connection (proc
, channel
);
5161 /* Read data from the process, starting with our
5162 buffered-ahead character if we have one. */
5164 nread
= read_process_output (proc
, channel
);
5167 /* Since read_process_output can run a filter,
5168 which can call accept-process-output,
5169 don't try to read from any other processes
5170 before doing the select again. */
5171 FD_ZERO (&Available
);
5174 redisplay_preserve_echo_area (12);
5177 else if (nread
== -1 && errno
== EWOULDBLOCK
)
5180 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
5181 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
5183 else if (nread
== -1 && errno
== EAGAIN
)
5187 else if (nread
== -1 && errno
== EAGAIN
)
5189 /* Note that we cannot distinguish between no input
5190 available now and a closed pipe.
5191 With luck, a closed pipe will be accompanied by
5192 subprocess termination and SIGCHLD. */
5193 else if (nread
== 0 && !NETCONN_P (proc
) && !SERIALCONN_P (proc
))
5195 #endif /* O_NDELAY */
5196 #endif /* O_NONBLOCK */
5198 /* On some OSs with ptys, when the process on one end of
5199 a pty exits, the other end gets an error reading with
5200 errno = EIO instead of getting an EOF (0 bytes read).
5201 Therefore, if we get an error reading and errno =
5202 EIO, just continue, because the child process has
5203 exited and should clean itself up soon (e.g. when we
5206 However, it has been known to happen that the SIGCHLD
5207 got lost. So raise the signal again just in case.
5209 else if (nread
== -1 && errno
== EIO
)
5211 /* Clear the descriptor now, so we only raise the
5212 signal once. Don't do this if `process' is only
5214 if (XPROCESS (proc
)->pid
!= -2)
5216 FD_CLR (channel
, &input_wait_mask
);
5217 FD_CLR (channel
, &non_keyboard_wait_mask
);
5219 kill (getpid (), SIGCHLD
);
5222 #endif /* HAVE_PTYS */
5223 /* If we can detect process termination, don't consider the process
5224 gone just because its pipe is closed. */
5226 else if (nread
== 0 && !NETCONN_P (proc
) && !SERIALCONN_P (proc
))
5231 /* Preserve status of processes already terminated. */
5232 XPROCESS (proc
)->tick
= ++process_tick
;
5233 deactivate_process (proc
);
5234 if (XPROCESS (proc
)->raw_status_new
)
5235 update_status (XPROCESS (proc
));
5236 if (EQ (XPROCESS (proc
)->status
, Qrun
))
5237 XPROCESS (proc
)->status
5238 = Fcons (Qexit
, Fcons (make_number (256), Qnil
));
5241 #ifdef NON_BLOCKING_CONNECT
5242 if (check_connect
&& FD_ISSET (channel
, &Connecting
)
5243 && FD_ISSET (channel
, &connect_wait_mask
))
5245 struct Lisp_Process
*p
;
5247 FD_CLR (channel
, &connect_wait_mask
);
5248 if (--num_pending_connects
< 0)
5251 proc
= chan_process
[channel
];
5255 p
= XPROCESS (proc
);
5258 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
5259 So only use it on systems where it is known to work. */
5261 int xlen
= sizeof(xerrno
);
5262 if (getsockopt(channel
, SOL_SOCKET
, SO_ERROR
, &xerrno
, &xlen
))
5267 struct sockaddr pname
;
5268 int pnamelen
= sizeof(pname
);
5270 /* If connection failed, getpeername will fail. */
5272 if (getpeername(channel
, &pname
, &pnamelen
) < 0)
5274 /* Obtain connect failure code through error slippage. */
5277 if (errno
== ENOTCONN
&& read(channel
, &dummy
, 1) < 0)
5284 p
->tick
= ++process_tick
;
5285 p
->status
= Fcons (Qfailed
, Fcons (make_number (xerrno
), Qnil
));
5286 deactivate_process (proc
);
5291 /* Execute the sentinel here. If we had relied on
5292 status_notify to do it later, it will read input
5293 from the process before calling the sentinel. */
5294 exec_sentinel (proc
, build_string ("open\n"));
5295 if (!EQ (p
->filter
, Qt
) && !EQ (p
->command
, Qt
))
5297 FD_SET (p
->infd
, &input_wait_mask
);
5298 FD_SET (p
->infd
, &non_keyboard_wait_mask
);
5302 #endif /* NON_BLOCKING_CONNECT */
5303 } /* end for each file descriptor */
5304 } /* end while exit conditions not met */
5306 unbind_to (count
, Qnil
);
5308 /* If calling from keyboard input, do not quit
5309 since we want to return C-g as an input character.
5310 Otherwise, do pending quit if requested. */
5313 /* Prevent input_pending from remaining set if we quit. */
5314 clear_input_pending ();
5318 return got_some_input
;
5321 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
5324 read_process_output_call (fun_and_args
)
5325 Lisp_Object fun_and_args
;
5327 return apply1 (XCAR (fun_and_args
), XCDR (fun_and_args
));
5331 read_process_output_error_handler (error
)
5334 cmd_error_internal (error
, "error in process filter: ");
5336 update_echo_area ();
5337 Fsleep_for (make_number (2), Qnil
);
5341 /* Read pending output from the process channel,
5342 starting with our buffered-ahead character if we have one.
5343 Yield number of decoded characters read.
5345 This function reads at most 4096 characters.
5346 If you want to read all available subprocess output,
5347 you must call it repeatedly until it returns zero.
5349 The characters read are decoded according to PROC's coding-system
5353 read_process_output (proc
, channel
)
5355 register int channel
;
5357 register int nbytes
;
5359 register Lisp_Object outstream
;
5360 register struct Lisp_Process
*p
= XPROCESS (proc
);
5361 register int opoint
;
5362 struct coding_system
*coding
= proc_decode_coding_system
[channel
];
5363 int carryover
= p
->decoding_carryover
;
5366 chars
= (char *) alloca (carryover
+ readmax
);
5368 /* See the comment above. */
5369 bcopy (SDATA (p
->decoding_buf
), chars
, carryover
);
5371 #ifdef DATAGRAM_SOCKETS
5372 /* We have a working select, so proc_buffered_char is always -1. */
5373 if (DATAGRAM_CHAN_P (channel
))
5375 int len
= datagram_address
[channel
].len
;
5376 nbytes
= recvfrom (channel
, chars
+ carryover
, readmax
,
5377 0, datagram_address
[channel
].sa
, &len
);
5381 if (proc_buffered_char
[channel
] < 0)
5383 nbytes
= emacs_read (channel
, chars
+ carryover
, readmax
);
5384 #ifdef ADAPTIVE_READ_BUFFERING
5385 if (nbytes
> 0 && p
->adaptive_read_buffering
)
5387 int delay
= p
->read_output_delay
;
5390 if (delay
< READ_OUTPUT_DELAY_MAX_MAX
)
5393 process_output_delay_count
++;
5394 delay
+= READ_OUTPUT_DELAY_INCREMENT
* 2;
5397 else if (delay
> 0 && (nbytes
== readmax
))
5399 delay
-= READ_OUTPUT_DELAY_INCREMENT
;
5401 process_output_delay_count
--;
5403 p
->read_output_delay
= delay
;
5406 p
->read_output_skip
= 1;
5407 process_output_skip
= 1;
5414 chars
[carryover
] = proc_buffered_char
[channel
];
5415 proc_buffered_char
[channel
] = -1;
5416 nbytes
= emacs_read (channel
, chars
+ carryover
+ 1, readmax
- 1);
5420 nbytes
= nbytes
+ 1;
5423 p
->decoding_carryover
= 0;
5425 /* At this point, NBYTES holds number of bytes just received
5426 (including the one in proc_buffered_char[channel]). */
5429 if (nbytes
< 0 || coding
->mode
& CODING_MODE_LAST_BLOCK
)
5431 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
5434 /* Now set NBYTES how many bytes we must decode. */
5435 nbytes
+= carryover
;
5437 /* Read and dispose of the process output. */
5438 outstream
= p
->filter
;
5439 if (!NILP (outstream
))
5441 /* We inhibit quit here instead of just catching it so that
5442 hitting ^G when a filter happens to be running won't screw
5444 int count
= SPECPDL_INDEX ();
5445 Lisp_Object odeactivate
;
5446 Lisp_Object obuffer
, okeymap
;
5448 int outer_running_asynch_code
= running_asynch_code
;
5449 int waiting
= waiting_for_user_input_p
;
5451 /* No need to gcpro these, because all we do with them later
5452 is test them for EQness, and none of them should be a string. */
5453 odeactivate
= Vdeactivate_mark
;
5454 XSETBUFFER (obuffer
, current_buffer
);
5455 okeymap
= current_buffer
->keymap
;
5457 specbind (Qinhibit_quit
, Qt
);
5458 specbind (Qlast_nonmenu_event
, Qt
);
5460 /* In case we get recursively called,
5461 and we already saved the match data nonrecursively,
5462 save the same match data in safely recursive fashion. */
5463 if (outer_running_asynch_code
)
5466 /* Don't clobber the CURRENT match data, either! */
5467 tem
= Fmatch_data (Qnil
, Qnil
, Qnil
);
5468 restore_search_regs ();
5469 record_unwind_save_match_data ();
5470 Fset_match_data (tem
, Qt
);
5473 /* For speed, if a search happens within this code,
5474 save the match data in a special nonrecursive fashion. */
5475 running_asynch_code
= 1;
5477 decode_coding_c_string (coding
, chars
, nbytes
, Qt
);
5478 text
= coding
->dst_object
;
5479 Vlast_coding_system_used
= CODING_ID_NAME (coding
->id
);
5480 /* A new coding system might be found. */
5481 if (!EQ (p
->decode_coding_system
, Vlast_coding_system_used
))
5483 p
->decode_coding_system
= Vlast_coding_system_used
;
5485 /* Don't call setup_coding_system for
5486 proc_decode_coding_system[channel] here. It is done in
5487 detect_coding called via decode_coding above. */
5489 /* If a coding system for encoding is not yet decided, we set
5490 it as the same as coding-system for decoding.
5492 But, before doing that we must check if
5493 proc_encode_coding_system[p->outfd] surely points to a
5494 valid memory because p->outfd will be changed once EOF is
5495 sent to the process. */
5496 if (NILP (p
->encode_coding_system
)
5497 && proc_encode_coding_system
[p
->outfd
])
5499 p
->encode_coding_system
5500 = coding_inherit_eol_type (Vlast_coding_system_used
, Qnil
);
5501 setup_coding_system (p
->encode_coding_system
,
5502 proc_encode_coding_system
[p
->outfd
]);
5506 if (coding
->carryover_bytes
> 0)
5508 if (SCHARS (p
->decoding_buf
) < coding
->carryover_bytes
)
5509 p
->decoding_buf
= make_uninit_string (coding
->carryover_bytes
);
5510 bcopy (coding
->carryover
, SDATA (p
->decoding_buf
),
5511 coding
->carryover_bytes
);
5512 p
->decoding_carryover
= coding
->carryover_bytes
;
5514 if (SBYTES (text
) > 0)
5515 internal_condition_case_1 (read_process_output_call
,
5517 Fcons (proc
, Fcons (text
, Qnil
))),
5518 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
5519 read_process_output_error_handler
);
5521 /* If we saved the match data nonrecursively, restore it now. */
5522 restore_search_regs ();
5523 running_asynch_code
= outer_running_asynch_code
;
5525 /* Handling the process output should not deactivate the mark. */
5526 Vdeactivate_mark
= odeactivate
;
5528 /* Restore waiting_for_user_input_p as it was
5529 when we were called, in case the filter clobbered it. */
5530 waiting_for_user_input_p
= waiting
;
5532 #if 0 /* Call record_asynch_buffer_change unconditionally,
5533 because we might have changed minor modes or other things
5534 that affect key bindings. */
5535 if (! EQ (Fcurrent_buffer (), obuffer
)
5536 || ! EQ (current_buffer
->keymap
, okeymap
))
5538 /* But do it only if the caller is actually going to read events.
5539 Otherwise there's no need to make him wake up, and it could
5540 cause trouble (for example it would make sit_for return). */
5541 if (waiting_for_user_input_p
== -1)
5542 record_asynch_buffer_change ();
5544 unbind_to (count
, Qnil
);
5548 /* If no filter, write into buffer if it isn't dead. */
5549 if (!NILP (p
->buffer
) && !NILP (XBUFFER (p
->buffer
)->name
))
5551 Lisp_Object old_read_only
;
5552 int old_begv
, old_zv
;
5553 int old_begv_byte
, old_zv_byte
;
5554 Lisp_Object odeactivate
;
5555 int before
, before_byte
;
5559 int count
= SPECPDL_INDEX ();
5561 odeactivate
= Vdeactivate_mark
;
5563 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
5564 Fset_buffer (p
->buffer
);
5566 opoint_byte
= PT_BYTE
;
5567 old_read_only
= current_buffer
->read_only
;
5570 old_begv_byte
= BEGV_BYTE
;
5571 old_zv_byte
= ZV_BYTE
;
5573 current_buffer
->read_only
= Qnil
;
5575 /* Insert new output into buffer
5576 at the current end-of-output marker,
5577 thus preserving logical ordering of input and output. */
5578 if (XMARKER (p
->mark
)->buffer
)
5579 SET_PT_BOTH (clip_to_bounds (BEGV
, marker_position (p
->mark
), ZV
),
5580 clip_to_bounds (BEGV_BYTE
, marker_byte_position (p
->mark
),
5583 SET_PT_BOTH (ZV
, ZV_BYTE
);
5585 before_byte
= PT_BYTE
;
5587 /* If the output marker is outside of the visible region, save
5588 the restriction and widen. */
5589 if (! (BEGV
<= PT
&& PT
<= ZV
))
5592 decode_coding_c_string (coding
, chars
, nbytes
, Qt
);
5593 text
= coding
->dst_object
;
5594 Vlast_coding_system_used
= CODING_ID_NAME (coding
->id
);
5595 /* A new coding system might be found. See the comment in the
5596 similar code in the previous `if' block. */
5597 if (!EQ (p
->decode_coding_system
, Vlast_coding_system_used
))
5599 p
->decode_coding_system
= Vlast_coding_system_used
;
5600 if (NILP (p
->encode_coding_system
)
5601 && proc_encode_coding_system
[p
->outfd
])
5603 p
->encode_coding_system
5604 = coding_inherit_eol_type (Vlast_coding_system_used
, Qnil
);
5605 setup_coding_system (p
->encode_coding_system
,
5606 proc_encode_coding_system
[p
->outfd
]);
5609 if (coding
->carryover_bytes
> 0)
5611 if (SCHARS (p
->decoding_buf
) < coding
->carryover_bytes
)
5612 p
->decoding_buf
= make_uninit_string (coding
->carryover_bytes
);
5613 bcopy (coding
->carryover
, SDATA (p
->decoding_buf
),
5614 coding
->carryover_bytes
);
5615 p
->decoding_carryover
= coding
->carryover_bytes
;
5617 /* Adjust the multibyteness of TEXT to that of the buffer. */
5618 if (NILP (current_buffer
->enable_multibyte_characters
)
5619 != ! STRING_MULTIBYTE (text
))
5620 text
= (STRING_MULTIBYTE (text
)
5621 ? Fstring_as_unibyte (text
)
5622 : Fstring_to_multibyte (text
));
5623 /* Insert before markers in case we are inserting where
5624 the buffer's mark is, and the user's next command is Meta-y. */
5625 insert_from_string_before_markers (text
, 0, 0,
5626 SCHARS (text
), SBYTES (text
), 0);
5628 /* Make sure the process marker's position is valid when the
5629 process buffer is changed in the signal_after_change above.
5630 W3 is known to do that. */
5631 if (BUFFERP (p
->buffer
)
5632 && (b
= XBUFFER (p
->buffer
), b
!= current_buffer
))
5633 set_marker_both (p
->mark
, p
->buffer
, BUF_PT (b
), BUF_PT_BYTE (b
));
5635 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
5637 update_mode_lines
++;
5639 /* Make sure opoint and the old restrictions
5640 float ahead of any new text just as point would. */
5641 if (opoint
>= before
)
5643 opoint
+= PT
- before
;
5644 opoint_byte
+= PT_BYTE
- before_byte
;
5646 if (old_begv
> before
)
5648 old_begv
+= PT
- before
;
5649 old_begv_byte
+= PT_BYTE
- before_byte
;
5651 if (old_zv
>= before
)
5653 old_zv
+= PT
- before
;
5654 old_zv_byte
+= PT_BYTE
- before_byte
;
5657 /* If the restriction isn't what it should be, set it. */
5658 if (old_begv
!= BEGV
|| old_zv
!= ZV
)
5659 Fnarrow_to_region (make_number (old_begv
), make_number (old_zv
));
5661 /* Handling the process output should not deactivate the mark. */
5662 Vdeactivate_mark
= odeactivate
;
5664 current_buffer
->read_only
= old_read_only
;
5665 SET_PT_BOTH (opoint
, opoint_byte
);
5666 unbind_to (count
, Qnil
);
5671 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p
, Swaiting_for_user_input_p
,
5673 doc
: /* Returns non-nil if Emacs is waiting for input from the user.
5674 This is intended for use by asynchronous process output filters and sentinels. */)
5677 return (waiting_for_user_input_p
? Qt
: Qnil
);
5680 /* Sending data to subprocess */
5682 jmp_buf send_process_frame
;
5683 Lisp_Object process_sent_to
;
5686 send_process_trap ()
5688 SIGNAL_THREAD_CHECK (SIGPIPE
);
5689 sigunblock (sigmask (SIGPIPE
));
5690 longjmp (send_process_frame
, 1);
5693 /* Send some data to process PROC.
5694 BUF is the beginning of the data; LEN is the number of characters.
5695 OBJECT is the Lisp object that the data comes from. If OBJECT is
5696 nil or t, it means that the data comes from C string.
5698 If OBJECT is not nil, the data is encoded by PROC's coding-system
5699 for encoding before it is sent.
5701 This function can evaluate Lisp code and can garbage collect. */
5704 send_process (proc
, buf
, len
, object
)
5705 volatile Lisp_Object proc
;
5706 unsigned char *volatile buf
;
5708 volatile Lisp_Object object
;
5710 /* Use volatile to protect variables from being clobbered by longjmp. */
5711 struct Lisp_Process
*p
= XPROCESS (proc
);
5713 struct coding_system
*coding
;
5714 struct gcpro gcpro1
;
5715 SIGTYPE (*volatile old_sigpipe
) ();
5719 if (p
->raw_status_new
)
5721 if (! EQ (p
->status
, Qrun
))
5722 error ("Process %s not running", SDATA (p
->name
));
5724 error ("Output file descriptor of %s is closed", SDATA (p
->name
));
5726 coding
= proc_encode_coding_system
[p
->outfd
];
5727 Vlast_coding_system_used
= CODING_ID_NAME (coding
->id
);
5729 if ((STRINGP (object
) && STRING_MULTIBYTE (object
))
5730 || (BUFFERP (object
)
5731 && !NILP (XBUFFER (object
)->enable_multibyte_characters
))
5734 p
->encode_coding_system
5735 = complement_process_encoding_system (p
->encode_coding_system
);
5736 if (!EQ (Vlast_coding_system_used
, p
->encode_coding_system
))
5738 /* The coding system for encoding was changed to raw-text
5739 because we sent a unibyte text previously. Now we are
5740 sending a multibyte text, thus we must encode it by the
5741 original coding system specified for the current process.
5743 Another reason we comming here is that the coding system
5744 was just complemented and new one was returned by
5745 complement_process_encoding_system. */
5746 setup_coding_system (p
->encode_coding_system
, coding
);
5747 Vlast_coding_system_used
= p
->encode_coding_system
;
5749 coding
->src_multibyte
= 1;
5753 /* For sending a unibyte text, character code conversion should
5754 not take place but EOL conversion should. So, setup raw-text
5755 or one of the subsidiary if we have not yet done it. */
5756 if (CODING_REQUIRE_ENCODING (coding
))
5758 if (CODING_REQUIRE_FLUSHING (coding
))
5760 /* But, before changing the coding, we must flush out data. */
5761 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
5762 send_process (proc
, "", 0, Qt
);
5763 coding
->mode
&= CODING_MODE_LAST_BLOCK
;
5765 setup_coding_system (raw_text_coding_system
5766 (Vlast_coding_system_used
),
5768 coding
->src_multibyte
= 0;
5771 coding
->dst_multibyte
= 0;
5773 if (CODING_REQUIRE_ENCODING (coding
))
5775 coding
->dst_object
= Qt
;
5776 if (BUFFERP (object
))
5778 int from_byte
, from
, to
;
5779 int save_pt
, save_pt_byte
;
5780 struct buffer
*cur
= current_buffer
;
5782 set_buffer_internal (XBUFFER (object
));
5783 save_pt
= PT
, save_pt_byte
= PT_BYTE
;
5785 from_byte
= PTR_BYTE_POS (buf
);
5786 from
= BYTE_TO_CHAR (from_byte
);
5787 to
= BYTE_TO_CHAR (from_byte
+ len
);
5788 TEMP_SET_PT_BOTH (from
, from_byte
);
5789 encode_coding_object (coding
, object
, from
, from_byte
,
5790 to
, from_byte
+ len
, Qt
);
5791 TEMP_SET_PT_BOTH (save_pt
, save_pt_byte
);
5792 set_buffer_internal (cur
);
5794 else if (STRINGP (object
))
5796 encode_coding_object (coding
, object
, 0, 0, SCHARS (object
),
5797 SBYTES (object
), Qt
);
5801 coding
->dst_object
= make_unibyte_string (buf
, len
);
5802 coding
->produced
= len
;
5805 len
= coding
->produced
;
5806 object
= coding
->dst_object
;
5807 buf
= SDATA (object
);
5810 if (pty_max_bytes
== 0)
5812 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
5813 pty_max_bytes
= fpathconf (p
->outfd
, _PC_MAX_CANON
);
5814 if (pty_max_bytes
< 0)
5815 pty_max_bytes
= 250;
5817 pty_max_bytes
= 250;
5819 /* Deduct one, to leave space for the eof. */
5823 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
5824 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
5825 when returning with longjmp despite being declared volatile. */
5826 if (!setjmp (send_process_frame
))
5828 process_sent_to
= proc
;
5833 /* Decide how much data we can send in one batch.
5834 Long lines need to be split into multiple batches. */
5837 /* Starting this at zero is always correct when not the first
5838 iteration because the previous iteration ended by sending C-d.
5839 It may not be correct for the first iteration
5840 if a partial line was sent in a separate send_process call.
5841 If that proves worth handling, we need to save linepos
5842 in the process object. */
5844 unsigned char *ptr
= (unsigned char *) buf
;
5845 unsigned char *end
= (unsigned char *) buf
+ len
;
5847 /* Scan through this text for a line that is too long. */
5848 while (ptr
!= end
&& linepos
< pty_max_bytes
)
5856 /* If we found one, break the line there
5857 and put in a C-d to force the buffer through. */
5861 /* Send this batch, using one or more write calls. */
5864 int outfd
= p
->outfd
;
5865 old_sigpipe
= (SIGTYPE (*) ()) signal (SIGPIPE
, send_process_trap
);
5866 #ifdef DATAGRAM_SOCKETS
5867 if (DATAGRAM_CHAN_P (outfd
))
5869 rv
= sendto (outfd
, (char *) buf
, this,
5870 0, datagram_address
[outfd
].sa
,
5871 datagram_address
[outfd
].len
);
5872 if (rv
< 0 && errno
== EMSGSIZE
)
5874 signal (SIGPIPE
, old_sigpipe
);
5875 report_file_error ("sending datagram",
5876 Fcons (proc
, Qnil
));
5882 rv
= emacs_write (outfd
, (char *) buf
, this);
5883 #ifdef ADAPTIVE_READ_BUFFERING
5884 if (p
->read_output_delay
> 0
5885 && p
->adaptive_read_buffering
== 1)
5887 p
->read_output_delay
= 0;
5888 process_output_delay_count
--;
5889 p
->read_output_skip
= 0;
5893 signal (SIGPIPE
, old_sigpipe
);
5899 || errno
== EWOULDBLOCK
5905 /* Buffer is full. Wait, accepting input;
5906 that may allow the program
5907 to finish doing output and read more. */
5911 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
5912 /* A gross hack to work around a bug in FreeBSD.
5913 In the following sequence, read(2) returns
5917 write(2) 954 bytes, get EAGAIN
5918 read(2) 1024 bytes in process_read_output
5919 read(2) 11 bytes in process_read_output
5921 That is, read(2) returns more bytes than have
5922 ever been written successfully. The 1033 bytes
5923 read are the 1022 bytes written successfully
5924 after processing (for example with CRs added if
5925 the terminal is set up that way which it is
5926 here). The same bytes will be seen again in a
5927 later read(2), without the CRs. */
5929 if (errno
== EAGAIN
)
5932 ioctl (p
->outfd
, TIOCFLUSH
, &flags
);
5934 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5936 /* Running filters might relocate buffers or strings.
5937 Arrange to relocate BUF. */
5938 if (BUFFERP (object
))
5939 offset
= BUF_PTR_BYTE_POS (XBUFFER (object
), buf
);
5940 else if (STRINGP (object
))
5941 offset
= buf
- SDATA (object
);
5943 #ifdef EMACS_HAS_USECS
5944 wait_reading_process_output (0, 20000, 0, 0, Qnil
, NULL
, 0);
5946 wait_reading_process_output (1, 0, 0, 0, Qnil
, NULL
, 0);
5949 if (BUFFERP (object
))
5950 buf
= BUF_BYTE_ADDRESS (XBUFFER (object
), offset
);
5951 else if (STRINGP (object
))
5952 buf
= offset
+ SDATA (object
);
5957 /* This is a real error. */
5958 report_file_error ("writing to process", Fcons (proc
, Qnil
));
5965 /* If we sent just part of the string, put in an EOF (C-d)
5966 to force it through, before we send the rest. */
5968 Fprocess_send_eof (proc
);
5973 signal (SIGPIPE
, old_sigpipe
);
5974 proc
= process_sent_to
;
5975 p
= XPROCESS (proc
);
5976 p
->raw_status_new
= 0;
5977 p
->status
= Fcons (Qexit
, Fcons (make_number (256), Qnil
));
5978 p
->tick
= ++process_tick
;
5979 deactivate_process (proc
);
5980 error ("SIGPIPE raised on process %s; closed it", SDATA (p
->name
));
5986 DEFUN ("process-send-region", Fprocess_send_region
, Sprocess_send_region
,
5988 doc
: /* Send current contents of region as input to PROCESS.
5989 PROCESS may be a process, a buffer, the name of a process or buffer, or
5990 nil, indicating the current buffer's process.
5991 Called from program, takes three arguments, PROCESS, START and END.
5992 If the region is more than 500 characters long,
5993 it is sent in several bunches. This may happen even for shorter regions.
5994 Output from processes can arrive in between bunches. */)
5995 (process
, start
, end
)
5996 Lisp_Object process
, start
, end
;
6001 proc
= get_process (process
);
6002 validate_region (&start
, &end
);
6004 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
6005 move_gap (XINT (start
));
6007 start1
= CHAR_TO_BYTE (XINT (start
));
6008 end1
= CHAR_TO_BYTE (XINT (end
));
6009 send_process (proc
, BYTE_POS_ADDR (start1
), end1
- start1
,
6010 Fcurrent_buffer ());
6015 DEFUN ("process-send-string", Fprocess_send_string
, Sprocess_send_string
,
6017 doc
: /* Send PROCESS the contents of STRING as input.
6018 PROCESS may be a process, a buffer, the name of a process or buffer, or
6019 nil, indicating the current buffer's process.
6020 If STRING is more than 500 characters long,
6021 it is sent in several bunches. This may happen even for shorter strings.
6022 Output from processes can arrive in between bunches. */)
6024 Lisp_Object process
, string
;
6027 CHECK_STRING (string
);
6028 proc
= get_process (process
);
6029 send_process (proc
, SDATA (string
),
6030 SBYTES (string
), string
);
6034 /* Return the foreground process group for the tty/pty that
6035 the process P uses. */
6037 emacs_get_tty_pgrp (p
)
6038 struct Lisp_Process
*p
;
6043 if (ioctl (p
->infd
, TIOCGPGRP
, &gid
) == -1 && ! NILP (p
->tty_name
))
6046 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
6047 master side. Try the slave side. */
6048 fd
= emacs_open (SDATA (p
->tty_name
), O_RDONLY
, 0);
6052 ioctl (fd
, TIOCGPGRP
, &gid
);
6056 #endif /* defined (TIOCGPGRP ) */
6061 DEFUN ("process-running-child-p", Fprocess_running_child_p
,
6062 Sprocess_running_child_p
, 0, 1, 0,
6063 doc
: /* Return t if PROCESS has given the terminal to a child.
6064 If the operating system does not make it possible to find out,
6065 return t unconditionally. */)
6067 Lisp_Object process
;
6069 /* Initialize in case ioctl doesn't exist or gives an error,
6070 in a way that will cause returning t. */
6073 struct Lisp_Process
*p
;
6075 proc
= get_process (process
);
6076 p
= XPROCESS (proc
);
6078 if (!EQ (p
->type
, Qreal
))
6079 error ("Process %s is not a subprocess",
6082 error ("Process %s is not active",
6085 gid
= emacs_get_tty_pgrp (p
);
6092 /* send a signal number SIGNO to PROCESS.
6093 If CURRENT_GROUP is t, that means send to the process group
6094 that currently owns the terminal being used to communicate with PROCESS.
6095 This is used for various commands in shell mode.
6096 If CURRENT_GROUP is lambda, that means send to the process group
6097 that currently owns the terminal, but only if it is NOT the shell itself.
6099 If NOMSG is zero, insert signal-announcements into process's buffers
6102 If we can, we try to signal PROCESS by sending control characters
6103 down the pty. This allows us to signal inferiors who have changed
6104 their uid, for which killpg would return an EPERM error. */
6107 process_send_signal (process
, signo
, current_group
, nomsg
)
6108 Lisp_Object process
;
6110 Lisp_Object current_group
;
6114 register struct Lisp_Process
*p
;
6118 proc
= get_process (process
);
6119 p
= XPROCESS (proc
);
6121 if (!EQ (p
->type
, Qreal
))
6122 error ("Process %s is not a subprocess",
6125 error ("Process %s is not active",
6129 current_group
= Qnil
;
6131 /* If we are using pgrps, get a pgrp number and make it negative. */
6132 if (NILP (current_group
))
6133 /* Send the signal to the shell's process group. */
6137 #ifdef SIGNALS_VIA_CHARACTERS
6138 /* If possible, send signals to the entire pgrp
6139 by sending an input character to it. */
6141 /* TERMIOS is the latest and bestest, and seems most likely to
6142 work. If the system has it, use it. */
6145 cc_t
*sig_char
= NULL
;
6147 tcgetattr (p
->infd
, &t
);
6152 sig_char
= &t
.c_cc
[VINTR
];
6156 sig_char
= &t
.c_cc
[VQUIT
];
6160 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
6161 sig_char
= &t
.c_cc
[VSWTCH
];
6163 sig_char
= &t
.c_cc
[VSUSP
];
6168 if (sig_char
&& *sig_char
!= CDISABLE
)
6170 send_process (proc
, sig_char
, 1, Qnil
);
6173 /* If we can't send the signal with a character,
6174 fall through and send it another way. */
6175 #else /* ! HAVE_TERMIOS */
6177 /* On Berkeley descendants, the following IOCTL's retrieve the
6178 current control characters. */
6179 #if defined (TIOCGLTC) && defined (TIOCGETC)
6187 ioctl (p
->infd
, TIOCGETC
, &c
);
6188 send_process (proc
, &c
.t_intrc
, 1, Qnil
);
6191 ioctl (p
->infd
, TIOCGETC
, &c
);
6192 send_process (proc
, &c
.t_quitc
, 1, Qnil
);
6196 ioctl (p
->infd
, TIOCGLTC
, &lc
);
6197 send_process (proc
, &lc
.t_suspc
, 1, Qnil
);
6199 #endif /* ! defined (SIGTSTP) */
6202 #else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
6204 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
6211 ioctl (p
->infd
, TCGETA
, &t
);
6212 send_process (proc
, &t
.c_cc
[VINTR
], 1, Qnil
);
6215 ioctl (p
->infd
, TCGETA
, &t
);
6216 send_process (proc
, &t
.c_cc
[VQUIT
], 1, Qnil
);
6220 ioctl (p
->infd
, TCGETA
, &t
);
6221 send_process (proc
, &t
.c_cc
[VSWTCH
], 1, Qnil
);
6223 #endif /* ! defined (SIGTSTP) */
6225 #else /* ! defined (TCGETA) */
6226 Your configuration files are messed up
.
6227 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
6228 you'd better be using one of the alternatives above! */
6229 #endif /* ! defined (TCGETA) */
6230 #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
6231 /* In this case, the code above should alway return. */
6233 #endif /* ! defined HAVE_TERMIOS */
6235 /* The code above may fall through if it can't
6236 handle the signal. */
6237 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
6240 /* Get the current pgrp using the tty itself, if we have that.
6241 Otherwise, use the pty to get the pgrp.
6242 On pfa systems, saka@pfu.fujitsu.co.JP writes:
6243 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
6244 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
6245 His patch indicates that if TIOCGPGRP returns an error, then
6246 we should just assume that p->pid is also the process group id. */
6248 gid
= emacs_get_tty_pgrp (p
);
6251 /* If we can't get the information, assume
6252 the shell owns the tty. */
6255 /* It is not clear whether anything really can set GID to -1.
6256 Perhaps on some system one of those ioctls can or could do so.
6257 Or perhaps this is vestigial. */
6260 #else /* ! defined (TIOCGPGRP ) */
6261 /* Can't select pgrps on this system, so we know that
6262 the child itself heads the pgrp. */
6264 #endif /* ! defined (TIOCGPGRP ) */
6266 /* If current_group is lambda, and the shell owns the terminal,
6267 don't send any signal. */
6268 if (EQ (current_group
, Qlambda
) && gid
== p
->pid
)
6276 p
->raw_status_new
= 0;
6278 p
->tick
= ++process_tick
;
6281 status_notify (NULL
);
6282 redisplay_preserve_echo_area (13);
6285 #endif /* ! defined (SIGCONT) */
6289 flush_pending_output (p
->infd
);
6293 /* If we don't have process groups, send the signal to the immediate
6294 subprocess. That isn't really right, but it's better than any
6295 obvious alternative. */
6298 kill (p
->pid
, signo
);
6302 /* gid may be a pid, or minus a pgrp's number */
6304 if (!NILP (current_group
))
6306 if (ioctl (p
->infd
, TIOCSIGSEND
, signo
) == -1)
6307 EMACS_KILLPG (gid
, signo
);
6314 #else /* ! defined (TIOCSIGSEND) */
6315 EMACS_KILLPG (gid
, signo
);
6316 #endif /* ! defined (TIOCSIGSEND) */
6319 DEFUN ("interrupt-process", Finterrupt_process
, Sinterrupt_process
, 0, 2, 0,
6320 doc
: /* Interrupt process PROCESS.
6321 PROCESS may be a process, a buffer, or the name of a process or buffer.
6322 No arg or nil means current buffer's process.
6323 Second arg CURRENT-GROUP non-nil means send signal to
6324 the current process-group of the process's controlling terminal
6325 rather than to the process's own process group.
6326 If the process is a shell, this means interrupt current subjob
6327 rather than the shell.
6329 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
6330 don't send the signal. */)
6331 (process
, current_group
)
6332 Lisp_Object process
, current_group
;
6334 process_send_signal (process
, SIGINT
, current_group
, 0);
6338 DEFUN ("kill-process", Fkill_process
, Skill_process
, 0, 2, 0,
6339 doc
: /* Kill process PROCESS. May be process or name of one.
6340 See function `interrupt-process' for more details on usage. */)
6341 (process
, current_group
)
6342 Lisp_Object process
, current_group
;
6344 process_send_signal (process
, SIGKILL
, current_group
, 0);
6348 DEFUN ("quit-process", Fquit_process
, Squit_process
, 0, 2, 0,
6349 doc
: /* Send QUIT signal to process PROCESS. May be process or name of one.
6350 See function `interrupt-process' for more details on usage. */)
6351 (process
, current_group
)
6352 Lisp_Object process
, current_group
;
6354 process_send_signal (process
, SIGQUIT
, current_group
, 0);
6358 DEFUN ("stop-process", Fstop_process
, Sstop_process
, 0, 2, 0,
6359 doc
: /* Stop process PROCESS. May be process or name of one.
6360 See function `interrupt-process' for more details on usage.
6361 If PROCESS is a network or serial process, inhibit handling of incoming
6363 (process
, current_group
)
6364 Lisp_Object process
, current_group
;
6367 if (PROCESSP (process
) && (NETCONN_P (process
) || SERIALCONN_P (process
)))
6369 struct Lisp_Process
*p
;
6371 p
= XPROCESS (process
);
6372 if (NILP (p
->command
)
6375 FD_CLR (p
->infd
, &input_wait_mask
);
6376 FD_CLR (p
->infd
, &non_keyboard_wait_mask
);
6383 error ("No SIGTSTP support");
6385 process_send_signal (process
, SIGTSTP
, current_group
, 0);
6390 DEFUN ("continue-process", Fcontinue_process
, Scontinue_process
, 0, 2, 0,
6391 doc
: /* Continue process PROCESS. May be process or name of one.
6392 See function `interrupt-process' for more details on usage.
6393 If PROCESS is a network or serial process, resume handling of incoming
6395 (process
, current_group
)
6396 Lisp_Object process
, current_group
;
6399 if (PROCESSP (process
) && (NETCONN_P (process
) || SERIALCONN_P (process
)))
6401 struct Lisp_Process
*p
;
6403 p
= XPROCESS (process
);
6404 if (EQ (p
->command
, Qt
)
6406 && (!EQ (p
->filter
, Qt
) || EQ (p
->status
, Qlisten
)))
6408 FD_SET (p
->infd
, &input_wait_mask
);
6409 FD_SET (p
->infd
, &non_keyboard_wait_mask
);
6411 if (fd_info
[ p
->infd
].flags
& FILE_SERIAL
)
6412 PurgeComm (fd_info
[ p
->infd
].hnd
, PURGE_RXABORT
| PURGE_RXCLEAR
);
6415 tcflush (p
->infd
, TCIFLUSH
);
6423 process_send_signal (process
, SIGCONT
, current_group
, 0);
6425 error ("No SIGCONT support");
6430 DEFUN ("signal-process", Fsignal_process
, Ssignal_process
,
6431 2, 2, "sProcess (name or number): \nnSignal code: ",
6432 doc
: /* Send PROCESS the signal with code SIGCODE.
6433 PROCESS may also be a number specifying the process id of the
6434 process to signal; in this case, the process need not be a child of
6436 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
6438 Lisp_Object process
, sigcode
;
6442 if (INTEGERP (process
))
6444 pid
= XINT (process
);
6448 if (FLOATP (process
))
6450 pid
= (pid_t
) XFLOAT_DATA (process
);
6454 if (STRINGP (process
))
6457 if (tem
= Fget_process (process
), NILP (tem
))
6459 pid
= XINT (Fstring_to_number (process
, make_number (10)));
6466 process
= get_process (process
);
6471 CHECK_PROCESS (process
);
6472 pid
= XPROCESS (process
)->pid
;
6474 error ("Cannot signal process %s", SDATA (XPROCESS (process
)->name
));
6478 #define parse_signal(NAME, VALUE) \
6479 else if (!xstrcasecmp (name, NAME)) \
6480 XSETINT (sigcode, VALUE)
6482 if (INTEGERP (sigcode
))
6486 unsigned char *name
;
6488 CHECK_SYMBOL (sigcode
);
6489 name
= SDATA (SYMBOL_NAME (sigcode
));
6491 if (!strncmp(name
, "SIG", 3) || !strncmp(name
, "sig", 3))
6497 parse_signal ("usr1", SIGUSR1
);
6500 parse_signal ("usr2", SIGUSR2
);
6503 parse_signal ("term", SIGTERM
);
6506 parse_signal ("hup", SIGHUP
);
6509 parse_signal ("int", SIGINT
);
6512 parse_signal ("quit", SIGQUIT
);
6515 parse_signal ("ill", SIGILL
);
6518 parse_signal ("abrt", SIGABRT
);
6521 parse_signal ("emt", SIGEMT
);
6524 parse_signal ("kill", SIGKILL
);
6527 parse_signal ("fpe", SIGFPE
);
6530 parse_signal ("bus", SIGBUS
);
6533 parse_signal ("segv", SIGSEGV
);
6536 parse_signal ("sys", SIGSYS
);
6539 parse_signal ("pipe", SIGPIPE
);
6542 parse_signal ("alrm", SIGALRM
);
6545 parse_signal ("urg", SIGURG
);
6548 parse_signal ("stop", SIGSTOP
);
6551 parse_signal ("tstp", SIGTSTP
);
6554 parse_signal ("cont", SIGCONT
);
6557 parse_signal ("chld", SIGCHLD
);
6560 parse_signal ("ttin", SIGTTIN
);
6563 parse_signal ("ttou", SIGTTOU
);
6566 parse_signal ("io", SIGIO
);
6569 parse_signal ("xcpu", SIGXCPU
);
6572 parse_signal ("xfsz", SIGXFSZ
);
6575 parse_signal ("vtalrm", SIGVTALRM
);
6578 parse_signal ("prof", SIGPROF
);
6581 parse_signal ("winch", SIGWINCH
);
6584 parse_signal ("info", SIGINFO
);
6587 error ("Undefined signal name %s", name
);
6592 return make_number (kill (pid
, XINT (sigcode
)));
6595 DEFUN ("process-send-eof", Fprocess_send_eof
, Sprocess_send_eof
, 0, 1, 0,
6596 doc
: /* Make PROCESS see end-of-file in its input.
6597 EOF comes after any text already sent to it.
6598 PROCESS may be a process, a buffer, the name of a process or buffer, or
6599 nil, indicating the current buffer's process.
6600 If PROCESS is a network connection, or is a process communicating
6601 through a pipe (as opposed to a pty), then you cannot send any more
6602 text to PROCESS after you call this function.
6603 If PROCESS is a serial process, wait until all output written to the
6604 process has been transmitted to the serial port. */)
6606 Lisp_Object process
;
6609 struct coding_system
*coding
;
6611 if (DATAGRAM_CONN_P (process
))
6614 proc
= get_process (process
);
6615 coding
= proc_encode_coding_system
[XPROCESS (proc
)->outfd
];
6617 /* Make sure the process is really alive. */
6618 if (XPROCESS (proc
)->raw_status_new
)
6619 update_status (XPROCESS (proc
));
6620 if (! EQ (XPROCESS (proc
)->status
, Qrun
))
6621 error ("Process %s not running", SDATA (XPROCESS (proc
)->name
));
6623 if (CODING_REQUIRE_FLUSHING (coding
))
6625 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
6626 send_process (proc
, "", 0, Qnil
);
6629 if (XPROCESS (proc
)->pty_flag
)
6630 send_process (proc
, "\004", 1, Qnil
);
6631 else if (EQ (XPROCESS (proc
)->type
, Qserial
))
6634 if (tcdrain (XPROCESS (proc
)->outfd
) != 0)
6635 error ("tcdrain() failed: %s", emacs_strerror (errno
));
6637 /* Do nothing on Windows because writes are blocking. */
6641 int old_outfd
, new_outfd
;
6643 #ifdef HAVE_SHUTDOWN
6644 /* If this is a network connection, or socketpair is used
6645 for communication with the subprocess, call shutdown to cause EOF.
6646 (In some old system, shutdown to socketpair doesn't work.
6647 Then we just can't win.) */
6648 if (EQ (XPROCESS (proc
)->type
, Qnetwork
)
6649 || XPROCESS (proc
)->outfd
== XPROCESS (proc
)->infd
)
6650 shutdown (XPROCESS (proc
)->outfd
, 1);
6651 /* In case of socketpair, outfd == infd, so don't close it. */
6652 if (XPROCESS (proc
)->outfd
!= XPROCESS (proc
)->infd
)
6653 emacs_close (XPROCESS (proc
)->outfd
);
6654 #else /* not HAVE_SHUTDOWN */
6655 emacs_close (XPROCESS (proc
)->outfd
);
6656 #endif /* not HAVE_SHUTDOWN */
6657 new_outfd
= emacs_open (NULL_DEVICE
, O_WRONLY
, 0);
6660 old_outfd
= XPROCESS (proc
)->outfd
;
6662 if (!proc_encode_coding_system
[new_outfd
])
6663 proc_encode_coding_system
[new_outfd
]
6664 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
6665 bcopy (proc_encode_coding_system
[old_outfd
],
6666 proc_encode_coding_system
[new_outfd
],
6667 sizeof (struct coding_system
));
6668 bzero (proc_encode_coding_system
[old_outfd
],
6669 sizeof (struct coding_system
));
6671 XPROCESS (proc
)->outfd
= new_outfd
;
6676 /* Kill all processes associated with `buffer'.
6677 If `buffer' is nil, kill all processes */
6680 kill_buffer_processes (buffer
)
6683 Lisp_Object tail
, proc
;
6685 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6687 proc
= XCDR (XCAR (tail
));
6689 && (NILP (buffer
) || EQ (XPROCESS (proc
)->buffer
, buffer
)))
6691 if (NETCONN_P (proc
) || SERIALCONN_P (proc
))
6692 Fdelete_process (proc
);
6693 else if (XPROCESS (proc
)->infd
>= 0)
6694 process_send_signal (proc
, SIGHUP
, Qnil
, 1);
6699 /* On receipt of a signal that a child status has changed, loop asking
6700 about children with changed statuses until the system says there
6703 All we do is change the status; we do not run sentinels or print
6704 notifications. That is saved for the next time keyboard input is
6705 done, in order to avoid timing errors.
6707 ** WARNING: this can be called during garbage collection.
6708 Therefore, it must not be fooled by the presence of mark bits in
6711 ** USG WARNING: Although it is not obvious from the documentation
6712 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6713 signal() before executing at least one wait(), otherwise the
6714 handler will be called again, resulting in an infinite loop. The
6715 relevant portion of the documentation reads "SIGCLD signals will be
6716 queued and the signal-catching function will be continually
6717 reentered until the queue is empty". Invoking signal() causes the
6718 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6721 ** Malloc WARNING: This should never call malloc either directly or
6722 indirectly; if it does, that is a bug */
6726 sigchld_handler (signo
)
6729 int old_errno
= errno
;
6731 register struct Lisp_Process
*p
;
6732 extern EMACS_TIME
*input_available_clear_time
;
6734 SIGNAL_THREAD_CHECK (signo
);
6745 #endif /* no WUNTRACED */
6746 /* Keep trying to get a status until we get a definitive result. */
6750 pid
= wait3 (&w
, WNOHANG
| WUNTRACED
, 0);
6752 while (pid
< 0 && errno
== EINTR
);
6756 /* PID == 0 means no processes found, PID == -1 means a real
6757 failure. We have done all our job, so return. */
6759 /* USG systems forget handlers when they are used;
6760 must reestablish each time */
6761 #if defined (USG) && !defined (POSIX_SIGNALS)
6762 signal (signo
, sigchld_handler
); /* WARNING - must come after wait3() */
6769 #endif /* no WNOHANG */
6771 /* Find the process that signaled us, and record its status. */
6773 /* The process can have been deleted by Fdelete_process. */
6774 for (tail
= deleted_pid_list
; CONSP (tail
); tail
= XCDR (tail
))
6776 Lisp_Object xpid
= XCAR (tail
);
6777 if ((INTEGERP (xpid
) && pid
== (pid_t
) XINT (xpid
))
6778 || (FLOATP (xpid
) && pid
== (pid_t
) XFLOAT_DATA (xpid
)))
6780 XSETCAR (tail
, Qnil
);
6781 goto sigchld_end_of_loop
;
6785 /* Otherwise, if it is asynchronous, it is in Vprocess_alist. */
6787 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6789 proc
= XCDR (XCAR (tail
));
6790 p
= XPROCESS (proc
);
6791 if (EQ (p
->type
, Qreal
) && p
->pid
== pid
)
6796 /* Look for an asynchronous process whose pid hasn't been filled
6799 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6801 proc
= XCDR (XCAR (tail
));
6802 p
= XPROCESS (proc
);
6808 /* Change the status of the process that was found. */
6811 int clear_desc_flag
= 0;
6813 p
->tick
= ++process_tick
;
6815 p
->raw_status_new
= 1;
6817 /* If process has terminated, stop waiting for its output. */
6818 if ((WIFSIGNALED (w
) || WIFEXITED (w
))
6820 clear_desc_flag
= 1;
6822 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
6823 if (clear_desc_flag
)
6825 FD_CLR (p
->infd
, &input_wait_mask
);
6826 FD_CLR (p
->infd
, &non_keyboard_wait_mask
);
6829 /* Tell wait_reading_process_output that it needs to wake up and
6831 if (input_available_clear_time
)
6832 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
6835 /* There was no asynchronous process found for that pid: we have
6836 a synchronous process. */
6839 synch_process_alive
= 0;
6841 /* Report the status of the synchronous process. */
6843 synch_process_retcode
= WRETCODE (w
);
6844 else if (WIFSIGNALED (w
))
6845 synch_process_termsig
= WTERMSIG (w
);
6847 /* Tell wait_reading_process_output that it needs to wake up and
6849 if (input_available_clear_time
)
6850 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
6853 sigchld_end_of_loop
:
6856 /* On some systems, we must return right away.
6857 If any more processes want to signal us, we will
6859 Otherwise (on systems that have WNOHANG), loop around
6860 to use up all the processes that have something to tell us. */
6861 #if (defined WINDOWSNT \
6862 || (defined USG && !defined GNU_LINUX \
6863 && !(defined HPUX && defined WNOHANG)))
6864 #if defined (USG) && ! defined (POSIX_SIGNALS)
6865 signal (signo
, sigchld_handler
);
6869 #endif /* USG, but not HPUX with WNOHANG */
6872 #endif /* SIGCHLD */
6876 exec_sentinel_unwind (data
)
6879 XPROCESS (XCAR (data
))->sentinel
= XCDR (data
);
6884 exec_sentinel_error_handler (error
)
6887 cmd_error_internal (error
, "error in process sentinel: ");
6889 update_echo_area ();
6890 Fsleep_for (make_number (2), Qnil
);
6895 exec_sentinel (proc
, reason
)
6896 Lisp_Object proc
, reason
;
6898 Lisp_Object sentinel
, obuffer
, odeactivate
, okeymap
;
6899 register struct Lisp_Process
*p
= XPROCESS (proc
);
6900 int count
= SPECPDL_INDEX ();
6901 int outer_running_asynch_code
= running_asynch_code
;
6902 int waiting
= waiting_for_user_input_p
;
6904 if (inhibit_sentinels
)
6907 /* No need to gcpro these, because all we do with them later
6908 is test them for EQness, and none of them should be a string. */
6909 odeactivate
= Vdeactivate_mark
;
6910 XSETBUFFER (obuffer
, current_buffer
);
6911 okeymap
= current_buffer
->keymap
;
6913 sentinel
= p
->sentinel
;
6914 if (NILP (sentinel
))
6917 /* Zilch the sentinel while it's running, to avoid recursive invocations;
6918 assure that it gets restored no matter how the sentinel exits. */
6920 record_unwind_protect (exec_sentinel_unwind
, Fcons (proc
, sentinel
));
6921 /* Inhibit quit so that random quits don't screw up a running filter. */
6922 specbind (Qinhibit_quit
, Qt
);
6923 specbind (Qlast_nonmenu_event
, Qt
); /* Why? --Stef */
6925 /* In case we get recursively called,
6926 and we already saved the match data nonrecursively,
6927 save the same match data in safely recursive fashion. */
6928 if (outer_running_asynch_code
)
6931 tem
= Fmatch_data (Qnil
, Qnil
, Qnil
);
6932 restore_search_regs ();
6933 record_unwind_save_match_data ();
6934 Fset_match_data (tem
, Qt
);
6937 /* For speed, if a search happens within this code,
6938 save the match data in a special nonrecursive fashion. */
6939 running_asynch_code
= 1;
6941 internal_condition_case_1 (read_process_output_call
,
6943 Fcons (proc
, Fcons (reason
, Qnil
))),
6944 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
6945 exec_sentinel_error_handler
);
6947 /* If we saved the match data nonrecursively, restore it now. */
6948 restore_search_regs ();
6949 running_asynch_code
= outer_running_asynch_code
;
6951 Vdeactivate_mark
= odeactivate
;
6953 /* Restore waiting_for_user_input_p as it was
6954 when we were called, in case the filter clobbered it. */
6955 waiting_for_user_input_p
= waiting
;
6958 if (! EQ (Fcurrent_buffer (), obuffer
)
6959 || ! EQ (current_buffer
->keymap
, okeymap
))
6961 /* But do it only if the caller is actually going to read events.
6962 Otherwise there's no need to make him wake up, and it could
6963 cause trouble (for example it would make sit_for return). */
6964 if (waiting_for_user_input_p
== -1)
6965 record_asynch_buffer_change ();
6967 unbind_to (count
, Qnil
);
6970 /* Report all recent events of a change in process status
6971 (either run the sentinel or output a message).
6972 This is usually done while Emacs is waiting for keyboard input
6973 but can be done at other times. */
6976 status_notify (deleting_process
)
6977 struct Lisp_Process
*deleting_process
;
6979 register Lisp_Object proc
, buffer
;
6980 Lisp_Object tail
, msg
;
6981 struct gcpro gcpro1
, gcpro2
;
6985 /* We need to gcpro tail; if read_process_output calls a filter
6986 which deletes a process and removes the cons to which tail points
6987 from Vprocess_alist, and then causes a GC, tail is an unprotected
6991 /* Set this now, so that if new processes are created by sentinels
6992 that we run, we get called again to handle their status changes. */
6993 update_tick
= process_tick
;
6995 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6998 register struct Lisp_Process
*p
;
7000 proc
= Fcdr (XCAR (tail
));
7001 p
= XPROCESS (proc
);
7003 if (p
->tick
!= p
->update_tick
)
7005 p
->update_tick
= p
->tick
;
7007 /* If process is still active, read any output that remains. */
7008 while (! EQ (p
->filter
, Qt
)
7009 && ! EQ (p
->status
, Qconnect
)
7010 && ! EQ (p
->status
, Qlisten
)
7011 /* Network or serial process not stopped: */
7012 && ! EQ (p
->command
, Qt
)
7014 && p
!= deleting_process
7015 && read_process_output (proc
, p
->infd
) > 0);
7019 /* Get the text to use for the message. */
7020 if (p
->raw_status_new
)
7022 msg
= status_message (p
);
7024 /* If process is terminated, deactivate it or delete it. */
7026 if (CONSP (p
->status
))
7027 symbol
= XCAR (p
->status
);
7029 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
)
7030 || EQ (symbol
, Qclosed
))
7032 if (delete_exited_processes
)
7033 remove_process (proc
);
7035 deactivate_process (proc
);
7038 /* The actions above may have further incremented p->tick.
7039 So set p->update_tick again
7040 so that an error in the sentinel will not cause
7041 this code to be run again. */
7042 p
->update_tick
= p
->tick
;
7043 /* Now output the message suitably. */
7044 if (!NILP (p
->sentinel
))
7045 exec_sentinel (proc
, msg
);
7046 /* Don't bother with a message in the buffer
7047 when a process becomes runnable. */
7048 else if (!EQ (symbol
, Qrun
) && !NILP (buffer
))
7050 Lisp_Object ro
, tem
;
7051 struct buffer
*old
= current_buffer
;
7052 int opoint
, opoint_byte
;
7053 int before
, before_byte
;
7055 ro
= XBUFFER (buffer
)->read_only
;
7057 /* Avoid error if buffer is deleted
7058 (probably that's why the process is dead, too) */
7059 if (NILP (XBUFFER (buffer
)->name
))
7061 Fset_buffer (buffer
);
7064 opoint_byte
= PT_BYTE
;
7065 /* Insert new output into buffer
7066 at the current end-of-output marker,
7067 thus preserving logical ordering of input and output. */
7068 if (XMARKER (p
->mark
)->buffer
)
7069 Fgoto_char (p
->mark
);
7071 SET_PT_BOTH (ZV
, ZV_BYTE
);
7074 before_byte
= PT_BYTE
;
7076 tem
= current_buffer
->read_only
;
7077 current_buffer
->read_only
= Qnil
;
7078 insert_string ("\nProcess ");
7079 Finsert (1, &p
->name
);
7080 insert_string (" ");
7082 current_buffer
->read_only
= tem
;
7083 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
7085 if (opoint
>= before
)
7086 SET_PT_BOTH (opoint
+ (PT
- before
),
7087 opoint_byte
+ (PT_BYTE
- before_byte
));
7089 SET_PT_BOTH (opoint
, opoint_byte
);
7091 set_buffer_internal (old
);
7096 update_mode_lines
++; /* in case buffers use %s in mode-line-format */
7101 DEFUN ("set-process-coding-system", Fset_process_coding_system
,
7102 Sset_process_coding_system
, 1, 3, 0,
7103 doc
: /* Set coding systems of PROCESS to DECODING and ENCODING.
7104 DECODING will be used to decode subprocess output and ENCODING to
7105 encode subprocess input. */)
7106 (process
, decoding
, encoding
)
7107 register Lisp_Object process
, decoding
, encoding
;
7109 register struct Lisp_Process
*p
;
7111 CHECK_PROCESS (process
);
7112 p
= XPROCESS (process
);
7114 error ("Input file descriptor of %s closed", SDATA (p
->name
));
7116 error ("Output file descriptor of %s closed", SDATA (p
->name
));
7117 Fcheck_coding_system (decoding
);
7118 Fcheck_coding_system (encoding
);
7119 encoding
= coding_inherit_eol_type (encoding
, Qnil
);
7120 p
->decode_coding_system
= decoding
;
7121 p
->encode_coding_system
= encoding
;
7122 setup_process_coding_systems (process
);
7127 DEFUN ("process-coding-system",
7128 Fprocess_coding_system
, Sprocess_coding_system
, 1, 1, 0,
7129 doc
: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
7131 register Lisp_Object process
;
7133 CHECK_PROCESS (process
);
7134 return Fcons (XPROCESS (process
)->decode_coding_system
,
7135 XPROCESS (process
)->encode_coding_system
);
7138 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte
,
7139 Sset_process_filter_multibyte
, 2, 2, 0,
7140 doc
: /* Set multibyteness of the strings given to PROCESS's filter.
7141 If FLAG is non-nil, the filter is given multibyte strings.
7142 If FLAG is nil, the filter is given unibyte strings. In this case,
7143 all character code conversion except for end-of-line conversion is
7146 Lisp_Object process
, flag
;
7148 register struct Lisp_Process
*p
;
7150 CHECK_PROCESS (process
);
7151 p
= XPROCESS (process
);
7153 p
->decode_coding_system
= raw_text_coding_system (p
->decode_coding_system
);
7154 setup_process_coding_systems (process
);
7159 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p
,
7160 Sprocess_filter_multibyte_p
, 1, 1, 0,
7161 doc
: /* Return t if a multibyte string is given to PROCESS's filter.*/)
7163 Lisp_Object process
;
7165 register struct Lisp_Process
*p
;
7166 struct coding_system
*coding
;
7168 CHECK_PROCESS (process
);
7169 p
= XPROCESS (process
);
7170 coding
= proc_decode_coding_system
[p
->infd
];
7171 return (CODING_FOR_UNIBYTE (coding
) ? Qnil
: Qt
);
7176 /* Add DESC to the set of keyboard input descriptors. */
7179 add_keyboard_wait_descriptor (desc
)
7182 FD_SET (desc
, &input_wait_mask
);
7183 FD_SET (desc
, &non_process_wait_mask
);
7184 if (desc
> max_keyboard_desc
)
7185 max_keyboard_desc
= desc
;
7188 static int add_gpm_wait_descriptor_called_flag
;
7191 add_gpm_wait_descriptor (desc
)
7194 if (! add_gpm_wait_descriptor_called_flag
)
7195 FD_CLR (0, &input_wait_mask
);
7196 add_gpm_wait_descriptor_called_flag
= 1;
7197 FD_SET (desc
, &input_wait_mask
);
7198 FD_SET (desc
, &gpm_wait_mask
);
7199 if (desc
> max_gpm_desc
)
7200 max_gpm_desc
= desc
;
7203 /* From now on, do not expect DESC to give keyboard input. */
7206 delete_keyboard_wait_descriptor (desc
)
7210 int lim
= max_keyboard_desc
;
7212 FD_CLR (desc
, &input_wait_mask
);
7213 FD_CLR (desc
, &non_process_wait_mask
);
7215 if (desc
== max_keyboard_desc
)
7216 for (fd
= 0; fd
< lim
; fd
++)
7217 if (FD_ISSET (fd
, &input_wait_mask
)
7218 && !FD_ISSET (fd
, &non_keyboard_wait_mask
)
7219 && !FD_ISSET (fd
, &gpm_wait_mask
))
7220 max_keyboard_desc
= fd
;
7224 delete_gpm_wait_descriptor (desc
)
7228 int lim
= max_gpm_desc
;
7230 FD_CLR (desc
, &input_wait_mask
);
7231 FD_CLR (desc
, &non_process_wait_mask
);
7233 if (desc
== max_gpm_desc
)
7234 for (fd
= 0; fd
< lim
; fd
++)
7235 if (FD_ISSET (fd
, &input_wait_mask
)
7236 && !FD_ISSET (fd
, &non_keyboard_wait_mask
)
7237 && !FD_ISSET (fd
, &non_process_wait_mask
))
7241 /* Return nonzero if *MASK has a bit set
7242 that corresponds to one of the keyboard input descriptors. */
7245 keyboard_bit_set (mask
)
7250 for (fd
= 0; fd
<= max_keyboard_desc
; fd
++)
7251 if (FD_ISSET (fd
, mask
) && FD_ISSET (fd
, &input_wait_mask
)
7252 && !FD_ISSET (fd
, &non_keyboard_wait_mask
))
7258 /* Stop reading input from keyboard sources. */
7261 hold_keyboard_input (void)
7266 /* Resume reading input from keyboard sources. */
7269 unhold_keyboard_input (void)
7274 /* Return non-zero if keyboard input is on hold, zero otherwise. */
7277 kbd_on_hold_p (void)
7279 return kbd_is_on_hold
;
7283 /* Enumeration of and access to system processes a-la ps(1). */
7285 DEFUN ("list-system-processes", Flist_system_processes
, Slist_system_processes
,
7287 doc
: /* Return a list of numerical process IDs of all running processes.
7288 If this functionality is unsupported, return nil.
7290 See `process-attributes' for getting attributes of a process given its ID. */)
7293 return list_system_processes ();
7296 DEFUN ("process-attributes", Fprocess_attributes
,
7297 Sprocess_attributes
, 1, 1, 0,
7298 doc
: /* Return attributes of the process given by its PID, a number.
7300 Value is an alist where each element is a cons cell of the form
7304 If this functionality is unsupported, the value is nil.
7306 See `list-system-processes' for getting a list of all process IDs.
7308 The KEYs of the attributes that this function may return are listed
7309 below, together with the type of the associated VALUE (in parentheses).
7310 Not all platforms support all of these attributes; unsupported
7311 attributes will not appear in the returned alist.
7312 Unless explicitly indicated otherwise, numbers can have either
7313 integer or floating point values.
7315 euid -- Effective user User ID of the process (number)
7316 user -- User name corresponding to euid (string)
7317 egid -- Effective user Group ID of the process (number)
7318 group -- Group name corresponding to egid (string)
7319 comm -- Command name (executable name only) (string)
7320 state -- Process state code, such as "S", "R", or "T" (string)
7321 ppid -- Parent process ID (number)
7322 pgrp -- Process group ID (number)
7323 sess -- Session ID, i.e. process ID of session leader (number)
7324 ttname -- Controlling tty name (string)
7325 tpgid -- ID of foreground process group on the process's tty (number)
7326 minflt -- number of minor page faults (number)
7327 majflt -- number of major page faults (number)
7328 cminflt -- cumulative number of minor page faults (number)
7329 cmajflt -- cumulative number of major page faults (number)
7330 utime -- user time used by the process, in the (HIGH LOW USEC) format
7331 stime -- system time used by the process, in the (HIGH LOW USEC) format
7332 time -- sum of utime and stime, in the (HIGH LOW USEC) format
7333 cutime -- user time used by the process and its children, (HIGH LOW USEC)
7334 cstime -- system time used by the process and its children, (HIGH LOW USEC)
7335 ctime -- sum of cutime and cstime, in the (HIGH LOW USEC) format
7336 pri -- priority of the process (number)
7337 nice -- nice value of the process (number)
7338 thcount -- process thread count (number)
7339 start -- time the process started, in the (HIGH LOW USEC) format
7340 vsize -- virtual memory size of the process in KB's (number)
7341 rss -- resident set size of the process in KB's (number)
7342 etime -- elapsed time the process is running, in (HIGH LOW USEC) format
7343 pcpu -- percents of CPU time used by the process (floating-point number)
7344 pmem -- percents of total physical memory used by process's resident set
7345 (floating-point number)
7346 args -- command line which invoked the process (string). */)
7351 return system_process_attributes (pid
);
7359 inhibit_sentinels
= 0;
7364 if (! noninteractive
|| initialized
)
7366 signal (SIGCHLD
, sigchld_handler
);
7369 FD_ZERO (&input_wait_mask
);
7370 FD_ZERO (&non_keyboard_wait_mask
);
7371 FD_ZERO (&non_process_wait_mask
);
7372 max_process_desc
= 0;
7374 #ifdef NON_BLOCKING_CONNECT
7375 FD_ZERO (&connect_wait_mask
);
7376 num_pending_connects
= 0;
7379 #ifdef ADAPTIVE_READ_BUFFERING
7380 process_output_delay_count
= 0;
7381 process_output_skip
= 0;
7384 /* Don't do this, it caused infinite select loops. The display
7385 method should call add_keyboard_wait_descriptor on stdin if it
7388 FD_SET (0, &input_wait_mask
);
7391 Vprocess_alist
= Qnil
;
7393 deleted_pid_list
= Qnil
;
7395 for (i
= 0; i
< MAXDESC
; i
++)
7397 chan_process
[i
] = Qnil
;
7398 proc_buffered_char
[i
] = -1;
7400 bzero (proc_decode_coding_system
, sizeof proc_decode_coding_system
);
7401 bzero (proc_encode_coding_system
, sizeof proc_encode_coding_system
);
7402 #ifdef DATAGRAM_SOCKETS
7403 bzero (datagram_address
, sizeof datagram_address
);
7408 Lisp_Object subfeatures
= Qnil
;
7409 const struct socket_options
*sopt
;
7411 #define ADD_SUBFEATURE(key, val) \
7412 subfeatures = pure_cons (pure_cons (key, pure_cons (val, Qnil)), subfeatures)
7414 #ifdef NON_BLOCKING_CONNECT
7415 ADD_SUBFEATURE (QCnowait
, Qt
);
7417 #ifdef DATAGRAM_SOCKETS
7418 ADD_SUBFEATURE (QCtype
, Qdatagram
);
7420 #ifdef HAVE_SEQPACKET
7421 ADD_SUBFEATURE (QCtype
, Qseqpacket
);
7423 #ifdef HAVE_LOCAL_SOCKETS
7424 ADD_SUBFEATURE (QCfamily
, Qlocal
);
7426 ADD_SUBFEATURE (QCfamily
, Qipv4
);
7428 ADD_SUBFEATURE (QCfamily
, Qipv6
);
7430 #ifdef HAVE_GETSOCKNAME
7431 ADD_SUBFEATURE (QCservice
, Qt
);
7433 #if defined(O_NONBLOCK) || defined(O_NDELAY)
7434 ADD_SUBFEATURE (QCserver
, Qt
);
7437 for (sopt
= socket_options
; sopt
->name
; sopt
++)
7438 subfeatures
= pure_cons (intern_c_string (sopt
->name
), subfeatures
);
7440 Fprovide (intern_c_string ("make-network-process"), subfeatures
);
7442 #endif /* HAVE_SOCKETS */
7444 #if defined (DARWIN_OS)
7445 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
7446 processes. As such, we only change the default value. */
7449 char *release
= get_operating_system_release();
7450 if (!release
|| !release
[0] || (release
[0] < MIN_PTY_KERNEL_VERSION
7451 && release
[1] == '.')) {
7452 Vprocess_connection_type
= Qnil
;
7461 Qprocessp
= intern_c_string ("processp");
7462 staticpro (&Qprocessp
);
7463 Qrun
= intern_c_string ("run");
7465 Qstop
= intern_c_string ("stop");
7467 Qsignal
= intern_c_string ("signal");
7468 staticpro (&Qsignal
);
7470 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
7473 Qexit = intern_c_string ("exit");
7474 staticpro (&Qexit); */
7476 Qopen
= intern_c_string ("open");
7478 Qclosed
= intern_c_string ("closed");
7479 staticpro (&Qclosed
);
7480 Qconnect
= intern_c_string ("connect");
7481 staticpro (&Qconnect
);
7482 Qfailed
= intern_c_string ("failed");
7483 staticpro (&Qfailed
);
7484 Qlisten
= intern_c_string ("listen");
7485 staticpro (&Qlisten
);
7486 Qlocal
= intern_c_string ("local");
7487 staticpro (&Qlocal
);
7488 Qipv4
= intern_c_string ("ipv4");
7491 Qipv6
= intern_c_string ("ipv6");
7494 Qdatagram
= intern_c_string ("datagram");
7495 staticpro (&Qdatagram
);
7496 Qseqpacket
= intern_c_string ("seqpacket");
7497 staticpro (&Qseqpacket
);
7499 QCport
= intern_c_string (":port");
7500 staticpro (&QCport
);
7501 QCspeed
= intern_c_string (":speed");
7502 staticpro (&QCspeed
);
7503 QCprocess
= intern_c_string (":process");
7504 staticpro (&QCprocess
);
7506 QCbytesize
= intern_c_string (":bytesize");
7507 staticpro (&QCbytesize
);
7508 QCstopbits
= intern_c_string (":stopbits");
7509 staticpro (&QCstopbits
);
7510 QCparity
= intern_c_string (":parity");
7511 staticpro (&QCparity
);
7512 Qodd
= intern_c_string ("odd");
7514 Qeven
= intern_c_string ("even");
7516 QCflowcontrol
= intern_c_string (":flowcontrol");
7517 staticpro (&QCflowcontrol
);
7518 Qhw
= intern_c_string ("hw");
7520 Qsw
= intern_c_string ("sw");
7522 QCsummary
= intern_c_string (":summary");
7523 staticpro (&QCsummary
);
7525 Qreal
= intern_c_string ("real");
7527 Qnetwork
= intern_c_string ("network");
7528 staticpro (&Qnetwork
);
7529 Qserial
= intern_c_string ("serial");
7530 staticpro (&Qserial
);
7532 QCname
= intern_c_string (":name");
7533 staticpro (&QCname
);
7534 QCbuffer
= intern_c_string (":buffer");
7535 staticpro (&QCbuffer
);
7536 QChost
= intern_c_string (":host");
7537 staticpro (&QChost
);
7538 QCservice
= intern_c_string (":service");
7539 staticpro (&QCservice
);
7540 QCtype
= intern_c_string (":type");
7541 staticpro (&QCtype
);
7542 QClocal
= intern_c_string (":local");
7543 staticpro (&QClocal
);
7544 QCremote
= intern_c_string (":remote");
7545 staticpro (&QCremote
);
7546 QCcoding
= intern_c_string (":coding");
7547 staticpro (&QCcoding
);
7548 QCserver
= intern_c_string (":server");
7549 staticpro (&QCserver
);
7550 QCnowait
= intern_c_string (":nowait");
7551 staticpro (&QCnowait
);
7552 QCsentinel
= intern_c_string (":sentinel");
7553 staticpro (&QCsentinel
);
7554 QClog
= intern_c_string (":log");
7556 QCnoquery
= intern_c_string (":noquery");
7557 staticpro (&QCnoquery
);
7558 QCstop
= intern_c_string (":stop");
7559 staticpro (&QCstop
);
7560 QCoptions
= intern_c_string (":options");
7561 staticpro (&QCoptions
);
7562 QCplist
= intern_c_string (":plist");
7563 staticpro (&QCplist
);
7565 Qlast_nonmenu_event
= intern_c_string ("last-nonmenu-event");
7566 staticpro (&Qlast_nonmenu_event
);
7568 staticpro (&Vprocess_alist
);
7570 staticpro (&deleted_pid_list
);
7573 Qeuid
= intern_c_string ("euid");
7575 Qegid
= intern_c_string ("egid");
7577 Quser
= intern_c_string ("user");
7579 Qgroup
= intern_c_string ("group");
7580 staticpro (&Qgroup
);
7581 Qcomm
= intern_c_string ("comm");
7583 Qstate
= intern_c_string ("state");
7584 staticpro (&Qstate
);
7585 Qppid
= intern_c_string ("ppid");
7587 Qpgrp
= intern_c_string ("pgrp");
7589 Qsess
= intern_c_string ("sess");
7591 Qttname
= intern_c_string ("ttname");
7592 staticpro (&Qttname
);
7593 Qtpgid
= intern_c_string ("tpgid");
7594 staticpro (&Qtpgid
);
7595 Qminflt
= intern_c_string ("minflt");
7596 staticpro (&Qminflt
);
7597 Qmajflt
= intern_c_string ("majflt");
7598 staticpro (&Qmajflt
);
7599 Qcminflt
= intern_c_string ("cminflt");
7600 staticpro (&Qcminflt
);
7601 Qcmajflt
= intern_c_string ("cmajflt");
7602 staticpro (&Qcmajflt
);
7603 Qutime
= intern_c_string ("utime");
7604 staticpro (&Qutime
);
7605 Qstime
= intern_c_string ("stime");
7606 staticpro (&Qstime
);
7607 Qtime
= intern_c_string ("time");
7609 Qcutime
= intern_c_string ("cutime");
7610 staticpro (&Qcutime
);
7611 Qcstime
= intern_c_string ("cstime");
7612 staticpro (&Qcstime
);
7613 Qctime
= intern_c_string ("ctime");
7614 staticpro (&Qctime
);
7615 Qpri
= intern_c_string ("pri");
7617 Qnice
= intern_c_string ("nice");
7619 Qthcount
= intern_c_string ("thcount");
7620 staticpro (&Qthcount
);
7621 Qstart
= intern_c_string ("start");
7622 staticpro (&Qstart
);
7623 Qvsize
= intern_c_string ("vsize");
7624 staticpro (&Qvsize
);
7625 Qrss
= intern_c_string ("rss");
7627 Qetime
= intern_c_string ("etime");
7628 staticpro (&Qetime
);
7629 Qpcpu
= intern_c_string ("pcpu");
7631 Qpmem
= intern_c_string ("pmem");
7633 Qargs
= intern_c_string ("args");
7636 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes
,
7637 doc
: /* *Non-nil means delete processes immediately when they exit.
7638 A value of nil means don't delete them until `list-processes' is run. */);
7640 delete_exited_processes
= 1;
7642 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type
,
7643 doc
: /* Control type of device used to communicate with subprocesses.
7644 Values are nil to use a pipe, or t or `pty' to use a pty.
7645 The value has no effect if the system has no ptys or if all ptys are busy:
7646 then a pipe is used in any case.
7647 The value takes effect when `start-process' is called. */);
7648 Vprocess_connection_type
= Qt
;
7650 #ifdef ADAPTIVE_READ_BUFFERING
7651 DEFVAR_LISP ("process-adaptive-read-buffering", &Vprocess_adaptive_read_buffering
,
7652 doc
: /* If non-nil, improve receive buffering by delaying after short reads.
7653 On some systems, when Emacs reads the output from a subprocess, the output data
7654 is read in very small blocks, potentially resulting in very poor performance.
7655 This behavior can be remedied to some extent by setting this variable to a
7656 non-nil value, as it will automatically delay reading from such processes, to
7657 allow them to produce more output before Emacs tries to read it.
7658 If the value is t, the delay is reset after each write to the process; any other
7659 non-nil value means that the delay is not reset on write.
7660 The variable takes effect when `start-process' is called. */);
7661 Vprocess_adaptive_read_buffering
= Qt
;
7664 defsubr (&Sprocessp
);
7665 defsubr (&Sget_process
);
7666 defsubr (&Sget_buffer_process
);
7667 defsubr (&Sdelete_process
);
7668 defsubr (&Sprocess_status
);
7669 defsubr (&Sprocess_exit_status
);
7670 defsubr (&Sprocess_id
);
7671 defsubr (&Sprocess_name
);
7672 defsubr (&Sprocess_tty_name
);
7673 defsubr (&Sprocess_command
);
7674 defsubr (&Sset_process_buffer
);
7675 defsubr (&Sprocess_buffer
);
7676 defsubr (&Sprocess_mark
);
7677 defsubr (&Sset_process_filter
);
7678 defsubr (&Sprocess_filter
);
7679 defsubr (&Sset_process_sentinel
);
7680 defsubr (&Sprocess_sentinel
);
7681 defsubr (&Sset_process_window_size
);
7682 defsubr (&Sset_process_inherit_coding_system_flag
);
7683 defsubr (&Sprocess_inherit_coding_system_flag
);
7684 defsubr (&Sset_process_query_on_exit_flag
);
7685 defsubr (&Sprocess_query_on_exit_flag
);
7686 defsubr (&Sprocess_contact
);
7687 defsubr (&Sprocess_plist
);
7688 defsubr (&Sset_process_plist
);
7689 defsubr (&Slist_processes
);
7690 defsubr (&Sprocess_list
);
7691 defsubr (&Sstart_process
);
7693 defsubr (&Sserial_process_configure
);
7694 defsubr (&Smake_serial_process
);
7695 #endif /* HAVE_SERIAL */
7697 defsubr (&Sset_network_process_option
);
7698 defsubr (&Smake_network_process
);
7699 defsubr (&Sformat_network_address
);
7700 #endif /* HAVE_SOCKETS */
7701 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
7703 defsubr (&Snetwork_interface_list
);
7705 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
7706 defsubr (&Snetwork_interface_info
);
7708 #endif /* HAVE_SOCKETS ... */
7709 #ifdef DATAGRAM_SOCKETS
7710 defsubr (&Sprocess_datagram_address
);
7711 defsubr (&Sset_process_datagram_address
);
7713 defsubr (&Saccept_process_output
);
7714 defsubr (&Sprocess_send_region
);
7715 defsubr (&Sprocess_send_string
);
7716 defsubr (&Sinterrupt_process
);
7717 defsubr (&Skill_process
);
7718 defsubr (&Squit_process
);
7719 defsubr (&Sstop_process
);
7720 defsubr (&Scontinue_process
);
7721 defsubr (&Sprocess_running_child_p
);
7722 defsubr (&Sprocess_send_eof
);
7723 defsubr (&Ssignal_process
);
7724 defsubr (&Swaiting_for_user_input_p
);
7725 defsubr (&Sprocess_type
);
7726 defsubr (&Sset_process_coding_system
);
7727 defsubr (&Sprocess_coding_system
);
7728 defsubr (&Sset_process_filter_multibyte
);
7729 defsubr (&Sprocess_filter_multibyte_p
);
7730 defsubr (&Slist_system_processes
);
7731 defsubr (&Sprocess_attributes
);
7735 #else /* not subprocesses */
7737 #include <sys/types.h>
7739 #include <sys/stat.h>
7743 #ifdef HAVE_UNISTD_H
7748 #include "systime.h"
7749 #include "character.h"
7751 #include "termopts.h"
7752 #include "sysselect.h"
7754 extern int frame_garbaged
;
7756 extern EMACS_TIME
timer_check ();
7757 extern int timers_run
;
7759 Lisp_Object QCtype
, QCname
;
7761 Lisp_Object Qeuid
, Qegid
, Qcomm
, Qstate
, Qppid
, Qpgrp
, Qsess
, Qttname
, Qtpgid
;
7762 Lisp_Object Qminflt
, Qmajflt
, Qcminflt
, Qcmajflt
, Qutime
, Qstime
, Qcstime
;
7763 Lisp_Object Qcutime
, Qpri
, Qnice
, Qthcount
, Qstart
, Qvsize
, Qrss
, Qargs
;
7764 Lisp_Object Quser
, Qgroup
, Qetime
, Qpcpu
, Qpmem
, Qtime
, Qctime
;
7766 /* As described above, except assuming that there are no subprocesses:
7768 Wait for timeout to elapse and/or keyboard input to be available.
7771 timeout in seconds, or
7772 zero for no limit, or
7773 -1 means gobble data immediately available but don't wait for any.
7775 read_kbd is a Lisp_Object:
7776 0 to ignore keyboard input, or
7777 1 to return when input is available, or
7778 -1 means caller will actually read the input, so don't throw to
7781 see full version for other parameters. We know that wait_proc will
7782 always be NULL, since `subprocesses' isn't defined.
7784 do_display != 0 means redisplay should be done to show subprocess
7785 output that arrives.
7787 Return true if we received input from any process. */
7790 wait_reading_process_output (time_limit
, microsecs
, read_kbd
, do_display
,
7791 wait_for_cell
, wait_proc
, just_wait_proc
)
7792 int time_limit
, microsecs
, read_kbd
, do_display
;
7793 Lisp_Object wait_for_cell
;
7794 struct Lisp_Process
*wait_proc
;
7798 EMACS_TIME end_time
, timeout
;
7799 SELECT_TYPE waitchannels
;
7802 /* What does time_limit really mean? */
7803 if (time_limit
|| microsecs
)
7805 EMACS_GET_TIME (end_time
);
7806 EMACS_SET_SECS_USECS (timeout
, time_limit
, microsecs
);
7807 EMACS_ADD_TIME (end_time
, end_time
, timeout
);
7810 /* Turn off periodic alarms (in case they are in use)
7811 and then turn off any other atimers,
7812 because the select emulator uses alarms. */
7814 turn_on_atimers (0);
7818 int timeout_reduced_for_timers
= 0;
7820 /* If calling from keyboard input, do not quit
7821 since we want to return C-g as an input character.
7822 Otherwise, do pending quit if requested. */
7826 /* Exit now if the cell we're waiting for became non-nil. */
7827 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
7830 /* Compute time from now till when time limit is up */
7831 /* Exit if already run out */
7832 if (time_limit
== -1)
7834 /* -1 specified for timeout means
7835 gobble output available now
7836 but don't wait at all. */
7838 EMACS_SET_SECS_USECS (timeout
, 0, 0);
7840 else if (time_limit
|| microsecs
)
7842 EMACS_GET_TIME (timeout
);
7843 EMACS_SUB_TIME (timeout
, end_time
, timeout
);
7844 if (EMACS_TIME_NEG_P (timeout
))
7849 EMACS_SET_SECS_USECS (timeout
, 100000, 0);
7852 /* If our caller will not immediately handle keyboard events,
7853 run timer events directly.
7854 (Callers that will immediately read keyboard events
7855 call timer_delay on their own.) */
7856 if (NILP (wait_for_cell
))
7858 EMACS_TIME timer_delay
;
7862 int old_timers_run
= timers_run
;
7863 timer_delay
= timer_check (1);
7864 if (timers_run
!= old_timers_run
&& do_display
)
7865 /* We must retry, since a timer may have requeued itself
7866 and that could alter the time delay. */
7867 redisplay_preserve_echo_area (14);
7871 while (!detect_input_pending ());
7873 /* If there is unread keyboard input, also return. */
7875 && requeued_events_pending_p ())
7878 if (! EMACS_TIME_NEG_P (timer_delay
) && time_limit
!= -1)
7880 EMACS_TIME difference
;
7881 EMACS_SUB_TIME (difference
, timer_delay
, timeout
);
7882 if (EMACS_TIME_NEG_P (difference
))
7884 timeout
= timer_delay
;
7885 timeout_reduced_for_timers
= 1;
7890 /* Cause C-g and alarm signals to take immediate action,
7891 and cause input available signals to zero out timeout. */
7893 set_waiting_for_input (&timeout
);
7895 /* Wait till there is something to do. */
7897 if (! read_kbd
&& NILP (wait_for_cell
))
7898 FD_ZERO (&waitchannels
);
7900 FD_SET (0, &waitchannels
);
7902 /* If a frame has been newly mapped and needs updating,
7903 reprocess its display stuff. */
7904 if (frame_garbaged
&& do_display
)
7906 clear_waiting_for_input ();
7907 redisplay_preserve_echo_area (15);
7909 set_waiting_for_input (&timeout
);
7912 if (read_kbd
&& detect_input_pending ())
7915 FD_ZERO (&waitchannels
);
7918 nfds
= select (1, &waitchannels
, (SELECT_TYPE
*)0, (SELECT_TYPE
*)0,
7923 /* Make C-g and alarm signals set flags again */
7924 clear_waiting_for_input ();
7926 /* If we woke up due to SIGWINCH, actually change size now. */
7927 do_pending_window_change (0);
7929 if (time_limit
&& nfds
== 0 && ! timeout_reduced_for_timers
)
7930 /* We waited the full specified time, so return now. */
7935 /* If the system call was interrupted, then go around the
7937 if (xerrno
== EINTR
)
7938 FD_ZERO (&waitchannels
);
7940 error ("select error: %s", emacs_strerror (xerrno
));
7943 else if (nfds
> 0 && (waitchannels
& 1) && interrupt_input
)
7944 /* System sometimes fails to deliver SIGIO. */
7945 kill (getpid (), SIGIO
);
7948 if (read_kbd
&& interrupt_input
&& (waitchannels
& 1))
7949 kill (getpid (), SIGIO
);
7952 /* Check for keyboard input */
7955 && detect_input_pending_run_timers (do_display
))
7957 swallow_events (do_display
);
7958 if (detect_input_pending_run_timers (do_display
))
7962 /* If there is unread keyboard input, also return. */
7964 && requeued_events_pending_p ())
7967 /* If wait_for_cell. check for keyboard input
7968 but don't run any timers.
7969 ??? (It seems wrong to me to check for keyboard
7970 input at all when wait_for_cell, but the code
7971 has been this way since July 1994.
7972 Try changing this after version 19.31.) */
7973 if (! NILP (wait_for_cell
)
7974 && detect_input_pending ())
7976 swallow_events (do_display
);
7977 if (detect_input_pending ())
7981 /* Exit now if the cell we're waiting for became non-nil. */
7982 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
7992 /* Don't confuse make-docfile by having two doc strings for this function.
7993 make-docfile does not pay attention to #if, for good reason! */
7994 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
7997 register Lisp_Object name
;
8002 /* Don't confuse make-docfile by having two doc strings for this function.
8003 make-docfile does not pay attention to #if, for good reason! */
8004 DEFUN ("process-inherit-coding-system-flag",
8005 Fprocess_inherit_coding_system_flag
, Sprocess_inherit_coding_system_flag
,
8009 register Lisp_Object process
;
8011 /* Ignore the argument and return the value of
8012 inherit-process-coding-system. */
8013 return inherit_process_coding_system
? Qt
: Qnil
;
8016 /* Kill all processes associated with `buffer'.
8017 If `buffer' is nil, kill all processes.
8018 Since we have no subprocesses, this does nothing. */
8021 kill_buffer_processes (buffer
)
8026 DEFUN ("list-system-processes", Flist_system_processes
, Slist_system_processes
,
8028 doc
: /* Return a list of numerical process IDs of all running processes.
8029 If this functionality is unsupported, return nil.
8031 See `process-attributes' for getting attributes of a process given its ID. */)
8034 return list_system_processes ();
8037 DEFUN ("process-attributes", Fprocess_attributes
,
8038 Sprocess_attributes
, 1, 1, 0,
8039 doc
: /* Return attributes of the process given by its PID, a number.
8041 Value is an alist where each element is a cons cell of the form
8045 If this functionality is unsupported, the value is nil.
8047 See `list-system-processes' for getting a list of all process IDs.
8049 The KEYs of the attributes that this function may return are listed
8050 below, together with the type of the associated VALUE (in parentheses).
8051 Not all platforms support all of these attributes; unsupported
8052 attributes will not appear in the returned alist.
8053 Unless explicitly indicated otherwise, numbers can have either
8054 integer or floating point values.
8056 euid -- Effective user User ID of the process (number)
8057 user -- User name corresponding to euid (string)
8058 egid -- Effective user Group ID of the process (number)
8059 group -- Group name corresponding to egid (string)
8060 comm -- Command name (executable name only) (string)
8061 state -- Process state code, such as "S", "R", or "T" (string)
8062 ppid -- Parent process ID (number)
8063 pgrp -- Process group ID (number)
8064 sess -- Session ID, i.e. process ID of session leader (number)
8065 ttname -- Controlling tty name (string)
8066 tpgid -- ID of foreground process group on the process's tty (number)
8067 minflt -- number of minor page faults (number)
8068 majflt -- number of major page faults (number)
8069 cminflt -- cumulative number of minor page faults (number)
8070 cmajflt -- cumulative number of major page faults (number)
8071 utime -- user time used by the process, in the (HIGH LOW USEC) format
8072 stime -- system time used by the process, in the (HIGH LOW USEC) format
8073 time -- sum of utime and stime, in the (HIGH LOW USEC) format
8074 cutime -- user time used by the process and its children, (HIGH LOW USEC)
8075 cstime -- system time used by the process and its children, (HIGH LOW USEC)
8076 ctime -- sum of cutime and cstime, in the (HIGH LOW USEC) format
8077 pri -- priority of the process (number)
8078 nice -- nice value of the process (number)
8079 thcount -- process thread count (number)
8080 start -- time the process started, in the (HIGH LOW USEC) format
8081 vsize -- virtual memory size of the process in KB's (number)
8082 rss -- resident set size of the process in KB's (number)
8083 etime -- elapsed time the process is running, in (HIGH LOW USEC) format
8084 pcpu -- percents of CPU time used by the process (floating-point number)
8085 pmem -- percents of total physical memory used by process's resident set
8086 (floating-point number)
8087 args -- command line which invoked the process (string). */)
8092 return system_process_attributes (pid
);
8103 QCtype
= intern_c_string (":type");
8104 staticpro (&QCtype
);
8105 QCname
= intern_c_string (":name");
8106 staticpro (&QCname
);
8107 QCtype
= intern_c_string (":type");
8108 staticpro (&QCtype
);
8109 QCname
= intern_c_string (":name");
8110 staticpro (&QCname
);
8111 Qeuid
= intern_c_string ("euid");
8113 Qegid
= intern_c_string ("egid");
8115 Quser
= intern_c_string ("user");
8117 Qgroup
= intern_c_string ("group");
8118 staticpro (&Qgroup
);
8119 Qcomm
= intern_c_string ("comm");
8121 Qstate
= intern_c_string ("state");
8122 staticpro (&Qstate
);
8123 Qppid
= intern_c_string ("ppid");
8125 Qpgrp
= intern_c_string ("pgrp");
8127 Qsess
= intern_c_string ("sess");
8129 Qttname
= intern_c_string ("ttname");
8130 staticpro (&Qttname
);
8131 Qtpgid
= intern_c_string ("tpgid");
8132 staticpro (&Qtpgid
);
8133 Qminflt
= intern_c_string ("minflt");
8134 staticpro (&Qminflt
);
8135 Qmajflt
= intern_c_string ("majflt");
8136 staticpro (&Qmajflt
);
8137 Qcminflt
= intern_c_string ("cminflt");
8138 staticpro (&Qcminflt
);
8139 Qcmajflt
= intern_c_string ("cmajflt");
8140 staticpro (&Qcmajflt
);
8141 Qutime
= intern_c_string ("utime");
8142 staticpro (&Qutime
);
8143 Qstime
= intern_c_string ("stime");
8144 staticpro (&Qstime
);
8145 Qtime
= intern_c_string ("time");
8147 Qcutime
= intern_c_string ("cutime");
8148 staticpro (&Qcutime
);
8149 Qcstime
= intern_c_string ("cstime");
8150 staticpro (&Qcstime
);
8151 Qctime
= intern_c_string ("ctime");
8152 staticpro (&Qctime
);
8153 Qpri
= intern_c_string ("pri");
8155 Qnice
= intern_c_string ("nice");
8157 Qthcount
= intern_c_string ("thcount");
8158 staticpro (&Qthcount
);
8159 Qstart
= intern_c_string ("start");
8160 staticpro (&Qstart
);
8161 Qvsize
= intern_c_string ("vsize");
8162 staticpro (&Qvsize
);
8163 Qrss
= intern_c_string ("rss");
8165 Qetime
= intern_c_string ("etime");
8166 staticpro (&Qetime
);
8167 Qpcpu
= intern_c_string ("pcpu");
8169 Qpmem
= intern_c_string ("pmem");
8171 Qargs
= intern_c_string ("args");
8174 defsubr (&Sget_buffer_process
);
8175 defsubr (&Sprocess_inherit_coding_system_flag
);
8176 defsubr (&Slist_system_processes
);
8177 defsubr (&Sprocess_attributes
);
8181 #endif /* not subprocesses */
8183 /* arch-tag: 3706c011-7b9a-4117-bd4f-59e7f701a4c4
8184 (do not change this comment) */