* lispref/modes.texi (Region to Refontify): Rename from "Region to Fontify".
[emacs.git] / src / process.c
blob9a33500dc4e960d3164d640ff976d111a877b3e5
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/>. */
22 #include <config.h>
23 #include <signal.h>
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. */
33 #ifdef subprocesses
35 #include <stdio.h>
36 #include <errno.h>
37 #include <setjmp.h>
38 #include <sys/types.h> /* some typedefs are used in sys/file.h */
39 #include <sys/file.h>
40 #include <sys/stat.h>
41 #include <setjmp.h>
42 #ifdef HAVE_INTTYPES_H
43 #include <inttypes.h>
44 #endif
45 #ifdef STDC_HEADERS
46 #include <stdlib.h>
47 #endif
49 #ifdef HAVE_UNISTD_H
50 #include <unistd.h>
51 #endif
52 #include <fcntl.h>
54 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
55 #include <sys/socket.h>
56 #include <netdb.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
64 #endif
65 #ifdef AF_LOCAL
66 #define HAVE_LOCAL_SOCKETS
67 #include <sys/un.h>
68 #endif
69 #endif
70 #endif /* HAVE_SOCKETS */
72 #if defined(BSD_SYSTEM)
73 #include <sys/ioctl.h>
74 #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
75 #include <fcntl.h>
76 #endif /* HAVE_PTYS and no O_NDELAY */
77 #endif /* BSD_SYSTEM */
79 #ifdef NEED_BSDTTY
80 #include <bsdtty.h>
81 #endif
83 /* Can we use SIOCGIFCONF and/or SIOCGIFADDR */
84 #ifdef HAVE_SOCKETS
85 #if defined(HAVE_SYS_IOCTL_H) && defined(HAVE_NET_IF_H)
86 /* sys/ioctl.h may have been included already */
87 #ifndef SIOCGIFADDR
88 #include <sys/ioctl.h>
89 #endif
90 #include <net/if.h>
91 #endif
92 #endif
94 #ifdef HAVE_SYS_WAIT
95 #include <sys/wait.h>
96 #endif
98 #ifdef HAVE_RES_INIT
99 #include <netinet/in.h>
100 #include <arpa/nameser.h>
101 #include <resolv.h>
102 #endif
104 #include "lisp.h"
105 #include "systime.h"
106 #include "systty.h"
108 #include "window.h"
109 #include "buffer.h"
110 #include "character.h"
111 #include "coding.h"
112 #include "process.h"
113 #include "frame.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"
121 #include "atimer.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;
132 #ifdef AF_INET6
133 Lisp_Object Qipv6;
134 #endif
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;
159 #ifdef HAVE_SOCKETS
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))
164 #else
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
175 testing SIGCHLD. */
177 #if !defined (SIGCHLD) && defined (SIGCLD)
178 #define SIGCHLD SIGCLD
179 #endif /* SIGCLD */
181 #include "syssignal.h"
183 #include "syswait.h"
185 extern char *get_operating_system_release ();
187 /* Serial processes require termios or Windows. */
188 #if defined (HAVE_TERMIOS) || defined (WINDOWSNT)
189 #define HAVE_SERIAL
190 #endif
192 #ifdef HAVE_SERIAL
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);
196 #endif
198 #ifndef USE_CRT_DLL
199 extern int errno;
200 #endif
202 #ifndef HAVE_H_ERRNO
203 extern int h_errno;
204 #endif
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. */
213 int process_tick;
214 /* Number of events for which the user or sentinel has been notified. */
215 int update_tick;
217 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
219 #ifdef BROKEN_NON_BLOCKING_CONNECT
220 #undef NON_BLOCKING_CONNECT
221 #else
222 #ifndef NON_BLOCKING_CONNECT
223 #ifdef HAVE_SOCKETS
224 #ifdef HAVE_SELECT
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
244 #else
245 #ifndef DATAGRAM_SOCKETS
246 #ifdef HAVE_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
258 #endif
260 #if !defined (ADAPTIVE_READ_BUFFERING) && !defined (NO_ADAPTIVE_READ_BUFFERING)
261 #ifdef EMACS_HAS_USECS
262 #define ADAPTIVE_READ_BUFFERING
263 #endif
264 #endif
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;
285 #else
286 #define process_output_delay_count 0
287 #endif
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
302 #endif
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
336 #else
337 #define IF_NON_BLOCKING_CONNECT(s)
338 #endif
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 {
377 struct sockaddr *sa;
378 int 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)
382 #else
383 #define DATAGRAM_CHAN_P(chan) (0)
384 #define DATAGRAM_CONN_P(proc) (0)
385 #endif
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
391 when exiting. */
392 int inhibit_sentinels;
394 #ifdef HAVE_PTYS
395 #ifdef HAVE_PTY_H
396 #include <pty.h>
397 #endif
398 /* The file name of the pty opened by allocate_pty. */
400 static char pty_name[24];
401 #endif
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);
408 static void
409 update_status (p)
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. */
420 static Lisp_Object
421 status_convert (int w)
423 if (WIFSTOPPED (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));
431 else
432 return Qrun;
435 /* Given a status-list, extract the three pieces of information
436 and store them individually through the three pointers. */
438 static void
439 decode_status (l, symbol, code, coredump)
440 Lisp_Object l;
441 Lisp_Object *symbol;
442 int *code;
443 int *coredump;
445 Lisp_Object tem;
447 if (SYMBOLP (l))
449 *symbol = l;
450 *code = 0;
451 *coredump = 0;
453 else
455 *symbol = XCAR (l);
456 tem = XCDR (l);
457 *code = XFASTINT (XCAR (tem));
458 tem = XCDR (tem);
459 *coredump = !NILP (tem);
463 /* Return a string describing a process status list. */
465 static Lisp_Object
466 status_message (p)
467 struct Lisp_Process *p;
469 Lisp_Object status = p->status;
470 Lisp_Object symbol;
471 int code, coredump;
472 Lisp_Object string, string2;
474 decode_status (status, &symbol, &code, &coredump);
476 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
478 char *signame;
479 synchronize_system_messages_locale ();
480 signame = strsignal (code);
481 if (signame == 0)
482 string = build_string ("unknown");
483 else
485 int c1, c2;
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));
492 c2 = DOWNCASE (c1);
493 if (c1 != c2)
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))
501 if (NETCONN1_P (p))
502 return build_string (code == 0 ? "deleted\n" : "connection broken by remote peer\n");
503 if (code == 0)
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 "),
508 string, string2);
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 "),
515 string, string2);
517 else
518 return Fcopy_sequence (Fsymbol_name (symbol));
521 #ifdef HAVE_PTYS
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. */
528 static int
529 allocate_pty ()
531 register int c, i;
532 int fd;
534 #ifdef PTY_ITERATION
535 PTY_ITERATION
536 #else
537 for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
538 for (i = 0; i < 16; i++)
539 #endif
541 struct stat stb; /* Used in some PTY_OPEN. */
542 #ifdef PTY_NAME_SPRINTF
543 PTY_NAME_SPRINTF
544 #else
545 sprintf (pty_name, "/dev/pty%c%x", c, i);
546 #endif /* no PTY_NAME_SPRINTF */
548 #ifdef PTY_OPEN
549 PTY_OPEN;
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
556 end of the ptys. */
557 int failed_count = 0;
559 if (stat (pty_name, &stb) < 0)
561 failed_count++;
562 if (failed_count >= 3)
563 return -1;
565 else
566 failed_count = 0;
568 # ifdef O_NONBLOCK
569 fd = emacs_open (pty_name, O_RDWR | O_NONBLOCK, 0);
570 # else
571 fd = emacs_open (pty_name, O_RDWR | O_NDELAY, 0);
572 # endif
574 #endif /* no PTY_OPEN */
576 if (fd >= 0)
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
581 PTY_TTY_NAME_SPRINTF
582 #else
583 sprintf (pty_name, "/dev/tty%c%x", c, i);
584 #endif /* no PTY_TTY_NAME_SPRINTF */
585 if (access (pty_name, 6) != 0)
587 emacs_close (fd);
588 # ifndef __sgi
589 continue;
590 # else
591 return -1;
592 # endif /* __sgi */
594 setup_pty (fd);
595 return fd;
598 return -1;
600 #endif /* HAVE_PTYS */
602 static Lisp_Object
603 make_process (name)
604 Lisp_Object name;
606 register Lisp_Object val, tem, name1;
607 register struct Lisp_Process *p;
608 char suffix[10];
609 register int i;
611 p = allocate_process ();
613 p->infd = -1;
614 p->outfd = -1;
615 p->tick = 0;
616 p->update_tick = 0;
617 p->pid = 0;
618 p->pty_flag = 0;
619 p->raw_status_new = 0;
620 p->status = Qrun;
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;
628 #endif
630 /* If name is already in use, modify it until it is unused. */
632 name1 = name;
633 for (i = 1; ; i++)
635 tem = Fget_process (name1);
636 if (NILP (tem)) break;
637 sprintf (suffix, "<%d>", i);
638 name1 = concat2 (name, build_string (suffix));
640 name = name1;
641 p->name = name;
642 XSETPROCESS (val, p);
643 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
644 return val;
647 static void
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. */
661 void
662 setup_process_coding_systems (process)
663 Lisp_Object process;
665 struct Lisp_Process *p = XPROCESS (process);
666 int inch = p->infd;
667 int outch = p->outfd;
668 Lisp_Object coding_system;
670 if (inch < 0 || outch < 0)
671 return;
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. */)
695 (object)
696 Lisp_Object object;
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. */)
703 (name)
704 register Lisp_Object name;
706 if (PROCESSP (name))
707 return name;
708 CHECK_STRING (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. */)
715 (buffer)
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))
728 return proc;
730 return Qnil;
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
736 current buffer. */
738 static Lisp_Object
739 get_process (name)
740 register Lisp_Object name;
742 register Lisp_Object proc, obj;
743 if (STRINGP (name))
745 obj = Fget_process (name);
746 if (NILP (obj))
747 obj = Fget_buffer (name);
748 if (NILP (obj))
749 error ("Process %s does not exist", SDATA (name));
751 else if (NILP (name))
752 obj = Fcurrent_buffer ();
753 else
754 obj = name;
756 /* Now obj should be either a buffer object or a process object.
758 if (BUFFERP (obj))
760 proc = Fget_buffer_process (obj);
761 if (NILP (proc))
762 error ("Buffer %s has no process", SDATA (XBUFFER (obj)->name));
764 else
766 CHECK_PROCESS (obj);
767 proc = obj;
769 return proc;
773 #ifdef SIGCHLD
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
778 dead. */
779 static Lisp_Object deleted_pid_list;
780 #endif
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. */)
786 (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;
799 status_notify (p);
800 redisplay_preserve_echo_area (13);
802 else if (p->infd >= 0)
804 #ifdef SIGCHLD
805 Lisp_Object symbol;
806 /* Assignment to EMACS_INT stops GCC whining about limited range
807 of data type. */
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)
816 update_status (p);
817 symbol = p->status;
818 if (CONSP (p->status))
819 symbol = XCAR (p->status);
820 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
821 deleted_pid_list
822 = Fdelete (make_fixnum_or_float (pid), deleted_pid_list);
823 else
824 #endif
826 Fkill_process (process, Qnil);
827 /* Do this now, since remove_process will make sigchld_handler do nothing. */
828 p->status
829 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
830 p->tick = ++process_tick;
831 status_notify (p);
832 redisplay_preserve_echo_area (13);
835 remove_process (process);
836 return Qnil;
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. */)
854 (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);
862 else
863 process = get_process (process);
865 if (NILP (process))
866 return process;
868 p = XPROCESS (process);
869 if (p->raw_status_new)
870 update_status (p);
871 status = p->status;
872 if (CONSP (status))
873 status = XCAR (status);
874 if (NETCONN1_P (p) || SERIALCONN1_P (p))
876 if (EQ (status, Qexit))
877 status = Qclosed;
878 else if (EQ (p->command, Qt))
879 status = Qstop;
880 else if (EQ (status, Qrun))
881 status = Qopen;
883 return status;
886 DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
887 1, 1, 0,
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. */)
890 (process)
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. */)
905 (process)
906 register Lisp_Object process;
908 /* Assignment to EMACS_INT stops GCC whining about limited range of
909 data type. */
910 EMACS_INT pid;
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. */)
921 (process)
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). */)
934 (process)
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. */)
945 (process)
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,
953 2, 2, 0,
954 doc: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil). */)
955 (process, buffer)
956 register Lisp_Object process, buffer;
958 struct Lisp_Process *p;
960 CHECK_PROCESS (process);
961 if (!NILP (buffer))
962 CHECK_BUFFER (buffer);
963 p = XPROCESS (process);
964 p->buffer = buffer;
965 if (NETCONN1_P (p) || SERIALCONN1_P (p))
966 p->childp = Fplist_put (p->childp, QCbuffer, buffer);
967 setup_process_coding_systems (process);
968 return buffer;
971 DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
972 1, 1, 0,
973 doc: /* Return the buffer PROCESS is associated with.
974 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
975 (process)
976 register Lisp_Object process;
978 CHECK_PROCESS (process);
979 return XPROCESS (process)->buffer;
982 DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
983 1, 1, 0,
984 doc: /* Return the marker for the end of the last output from PROCESS. */)
985 (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,
993 2, 2, 0,
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'). */)
1008 (process, filter)
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 ...))
1021 (debug)
1022 (set-process-filter process ...) */
1024 if (p->infd >= 0)
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);
1040 p->filter = filter;
1041 if (NETCONN1_P (p) || SERIALCONN1_P (p))
1042 p->childp = Fplist_put (p->childp, QCfilter, filter);
1043 setup_process_coding_systems (process);
1044 return filter;
1047 DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
1048 1, 1, 0,
1049 doc: /* Returns the filter function of PROCESS; nil if none.
1050 See `set-process-filter' for more info on filter functions. */)
1051 (process)
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,
1059 2, 2, 0,
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. */)
1063 (process, sentinel)
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);
1074 return sentinel;
1077 DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
1078 1, 1, 0,
1079 doc: /* Return the sentinel of PROCESS; nil if none.
1080 See `set-process-sentinel' for more info on sentinels. */)
1081 (process)
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)
1101 return Qnil;
1102 else
1103 return Qt;
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
1113 the process output.
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. */)
1123 (process, flag)
1124 register Lisp_Object process, flag;
1126 CHECK_PROCESS (process);
1127 XPROCESS (process)->inherit_coding_system_flag = !NILP (flag);
1128 return flag;
1131 DEFUN ("process-inherit-coding-system-flag",
1132 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
1133 1, 1, 0,
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. */)
1138 (process)
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,
1147 2, 2, 0,
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. */)
1151 (process, flag)
1152 register Lisp_Object process, flag;
1154 CHECK_PROCESS (process);
1155 XPROCESS (process)->kill_without_query = NILP (flag);
1156 return flag;
1159 DEFUN ("process-query-on-exit-flag",
1160 Fprocess_query_on_exit_flag, Sprocess_query_on_exit_flag,
1161 1, 1, 0,
1162 doc: /* Return the current value of query-on-exit flag for PROCESS. */)
1163 (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 ();
1172 #endif
1174 DEFUN ("process-contact", Fprocess_contact, Sprocess_contact,
1175 1, 2, 0,
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. */)
1184 (process, key)
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));
1197 #endif
1199 if ((!NETCONN_P (process) && !SERIALCONN_P (process)) || EQ (key, Qt))
1200 return contact;
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,
1211 1, 1, 0,
1212 doc: /* Return the plist of PROCESS. */)
1213 (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,
1221 2, 2, 0,
1222 doc: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
1223 (process, plist)
1224 register Lisp_Object process, plist;
1226 CHECK_PROCESS (process);
1227 CHECK_LIST (plist);
1229 XPROCESS (process)->plist = plist;
1230 return 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. */)
1239 (process)
1240 Lisp_Object process;
1242 return XPROCESS (process)->type;
1244 #endif
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. */)
1251 (process)
1252 Lisp_Object process;
1254 Lisp_Object proc;
1255 proc = get_process (process);
1256 return XPROCESS (proc)->type;
1259 #ifdef HAVE_SOCKETS
1260 DEFUN ("format-network-address", Fformat_network_address, Sformat_network_address,
1261 1, 2, 0,
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;
1271 if (NILP (address))
1272 return Qnil;
1274 if (STRINGP (address)) /* AF_LOCAL */
1275 return address;
1277 if (VECTORP (address)) /* AF_INET or AF_INET6 */
1279 register struct Lisp_Vector *p = XVECTOR (address);
1280 Lisp_Object args[10];
1281 int nargs, i;
1283 if (p->size == 4 || (p->size == 5 && !NILP (omit_port)))
1285 args[0] = build_string ("%d.%d.%d.%d");
1286 nargs = 4;
1288 else if (p->size == 5)
1290 args[0] = build_string ("%d.%d.%d.%d:%d");
1291 nargs = 5;
1293 else if (p->size == 8 || (p->size == 9 && !NILP (omit_port)))
1295 args[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
1296 nargs = 8;
1298 else if (p->size == 9)
1300 args[0] = build_string ("[%x:%x:%x:%x:%x:%x:%x:%x]:%d");
1301 nargs = 9;
1303 else
1304 return Qnil;
1306 for (i = 0; i < nargs; i++)
1308 EMACS_INT element = XINT (p->contents[i]);
1310 if (element < 0 || element > 65535)
1311 return Qnil;
1313 if (nargs <= 5 /* IPv4 */
1314 && i < 4 /* host, not port */
1315 && element > 255)
1316 return Qnil;
1318 args[i+1] = p->contents[i];
1321 return Fformat (nargs+1, args);
1324 if (CONSP (address))
1326 Lisp_Object args[2];
1327 args[0] = build_string ("<Family %d>");
1328 args[1] = Fcar (address);
1329 return Fformat (2, args);
1332 return Qnil;
1334 #endif
1336 static Lisp_Object
1337 list_processes_1 (query_only)
1338 Lisp_Object query_only;
1340 register Lisp_Object tail, tem;
1341 Lisp_Object proc, minspace, tem1;
1342 register struct Lisp_Process *p;
1343 char tembuf[300];
1344 int w_proc, w_buffer, w_tty;
1345 int exited = 0;
1346 Lisp_Object i_status, i_buffer, i_tty, i_command;
1348 w_proc = 4; /* Proc */
1349 w_buffer = 6; /* Buffer */
1350 w_tty = 0; /* Omit if no ttys */
1352 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
1354 int i;
1356 proc = Fcdr (XCAR (tail));
1357 p = XPROCESS (proc);
1358 if (NILP (p->type))
1359 continue;
1360 if (!NILP (query_only) && p->kill_without_query)
1361 continue;
1362 if (STRINGP (p->name)
1363 && ( i = SCHARS (p->name), (i > w_proc)))
1364 w_proc = i;
1365 if (!NILP (p->buffer))
1367 if (NILP (XBUFFER (p->buffer)->name))
1369 if (w_buffer < 8)
1370 w_buffer = 8; /* (Killed) */
1372 else if ((i = SCHARS (XBUFFER (p->buffer)->name), (i > w_buffer)))
1373 w_buffer = i;
1375 if (STRINGP (p->tty_name)
1376 && (i = SCHARS (p->tty_name), (i > w_tty)))
1377 w_tty = i;
1380 XSETFASTINT (i_status, w_proc + 1);
1381 XSETFASTINT (i_buffer, XFASTINT (i_status) + 9);
1382 if (w_tty)
1384 XSETFASTINT (i_tty, XFASTINT (i_buffer) + w_buffer + 1);
1385 XSETFASTINT (i_command, XFASTINT (i_tty) + w_tty + 1);
1387 else
1389 i_tty = Qnil;
1390 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_buffer + 1);
1393 XSETFASTINT (minspace, 1);
1395 set_buffer_internal (XBUFFER (Vstandard_output));
1396 current_buffer->undo_list = Qt;
1398 current_buffer->truncate_lines = Qt;
1400 write_string ("Proc", -1);
1401 Findent_to (i_status, minspace); write_string ("Status", -1);
1402 Findent_to (i_buffer, minspace); write_string ("Buffer", -1);
1403 if (!NILP (i_tty))
1405 Findent_to (i_tty, minspace); write_string ("Tty", -1);
1407 Findent_to (i_command, minspace); write_string ("Command", -1);
1408 write_string ("\n", -1);
1410 write_string ("----", -1);
1411 Findent_to (i_status, minspace); write_string ("------", -1);
1412 Findent_to (i_buffer, minspace); write_string ("------", -1);
1413 if (!NILP (i_tty))
1415 Findent_to (i_tty, minspace); write_string ("---", -1);
1417 Findent_to (i_command, minspace); write_string ("-------", -1);
1418 write_string ("\n", -1);
1420 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
1422 Lisp_Object symbol;
1424 proc = Fcdr (XCAR (tail));
1425 p = XPROCESS (proc);
1426 if (NILP (p->type))
1427 continue;
1428 if (!NILP (query_only) && p->kill_without_query)
1429 continue;
1431 Finsert (1, &p->name);
1432 Findent_to (i_status, minspace);
1434 if (p->raw_status_new)
1435 update_status (p);
1436 symbol = p->status;
1437 if (CONSP (p->status))
1438 symbol = XCAR (p->status);
1440 if (EQ (symbol, Qsignal))
1442 Lisp_Object tem;
1443 tem = Fcar (Fcdr (p->status));
1444 Fprinc (symbol, Qnil);
1446 else if (NETCONN1_P (p) || SERIALCONN1_P (p))
1448 if (EQ (symbol, Qexit))
1449 write_string ("closed", -1);
1450 else if (EQ (p->command, Qt))
1451 write_string ("stopped", -1);
1452 else if (EQ (symbol, Qrun))
1453 write_string ("open", -1);
1454 else
1455 Fprinc (symbol, Qnil);
1457 else if (SERIALCONN1_P (p))
1459 write_string ("running", -1);
1461 else
1462 Fprinc (symbol, Qnil);
1464 if (EQ (symbol, Qexit))
1466 Lisp_Object tem;
1467 tem = Fcar (Fcdr (p->status));
1468 if (XFASTINT (tem))
1470 sprintf (tembuf, " %d", (int) XFASTINT (tem));
1471 write_string (tembuf, -1);
1475 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit) || EQ (symbol, Qclosed))
1476 exited++;
1478 Findent_to (i_buffer, minspace);
1479 if (NILP (p->buffer))
1480 insert_string ("(none)");
1481 else if (NILP (XBUFFER (p->buffer)->name))
1482 insert_string ("(Killed)");
1483 else
1484 Finsert (1, &XBUFFER (p->buffer)->name);
1486 if (!NILP (i_tty))
1488 Findent_to (i_tty, minspace);
1489 if (STRINGP (p->tty_name))
1490 Finsert (1, &p->tty_name);
1493 Findent_to (i_command, minspace);
1495 if (EQ (p->status, Qlisten))
1497 Lisp_Object port = Fplist_get (p->childp, QCservice);
1498 if (INTEGERP (port))
1499 port = Fnumber_to_string (port);
1500 if (NILP (port))
1501 port = Fformat_network_address (Fplist_get (p->childp, QClocal), Qnil);
1502 sprintf (tembuf, "(network %s server on %s)\n",
1503 (DATAGRAM_CHAN_P (p->infd) ? "datagram" : "stream"),
1504 (STRINGP (port) ? (char *)SDATA (port) : "?"));
1505 insert_string (tembuf);
1507 else if (NETCONN1_P (p))
1509 /* For a local socket, there is no host name,
1510 so display service instead. */
1511 Lisp_Object host = Fplist_get (p->childp, QChost);
1512 if (!STRINGP (host))
1514 host = Fplist_get (p->childp, QCservice);
1515 if (INTEGERP (host))
1516 host = Fnumber_to_string (host);
1518 if (NILP (host))
1519 host = Fformat_network_address (Fplist_get (p->childp, QCremote), Qnil);
1520 sprintf (tembuf, "(network %s connection to %s)\n",
1521 (DATAGRAM_CHAN_P (p->infd) ? "datagram" : "stream"),
1522 (STRINGP (host) ? (char *)SDATA (host) : "?"));
1523 insert_string (tembuf);
1525 else if (SERIALCONN1_P (p))
1527 Lisp_Object port = Fplist_get (p->childp, QCport);
1528 Lisp_Object speed = Fplist_get (p->childp, QCspeed);
1529 insert_string ("(serial port ");
1530 if (STRINGP (port))
1531 insert_string (SDATA (port));
1532 else
1533 insert_string ("?");
1534 if (INTEGERP (speed))
1536 sprintf (tembuf, " at %ld b/s", (long) XINT (speed));
1537 insert_string (tembuf);
1539 insert_string (")\n");
1541 else
1543 tem = p->command;
1544 while (1)
1546 tem1 = Fcar (tem);
1547 if (NILP (tem1))
1548 break;
1549 Finsert (1, &tem1);
1550 tem = Fcdr (tem);
1551 if (NILP (tem))
1552 break;
1553 insert_string (" ");
1555 insert_string ("\n");
1558 if (exited)
1560 status_notify (NULL);
1561 redisplay_preserve_echo_area (13);
1563 return Qnil;
1566 DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 1, "P",
1567 doc: /* Display a list of all processes.
1568 If optional argument QUERY-ONLY is non-nil, only processes with
1569 the query-on-exit flag set will be listed.
1570 Any process listed as exited or signaled is actually eliminated
1571 after the listing is made. */)
1572 (query_only)
1573 Lisp_Object query_only;
1575 internal_with_output_to_temp_buffer ("*Process List*",
1576 list_processes_1, query_only);
1577 return Qnil;
1580 DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
1581 doc: /* Return a list of all processes. */)
1584 return Fmapcar (Qcdr, Vprocess_alist);
1587 /* Starting asynchronous inferior processes. */
1589 static Lisp_Object start_process_unwind ();
1591 DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
1592 doc: /* Start a program in a subprocess. Return the process object for it.
1593 NAME is name for process. It is modified if necessary to make it unique.
1594 BUFFER is the buffer (or buffer name) to associate with the process.
1596 Process output (both standard output and standard error streams) goes
1597 at end of BUFFER, unless you specify an output stream or filter
1598 function to handle the output. BUFFER may also be nil, meaning that
1599 this process is not associated with any buffer.
1601 PROGRAM is the program file name. It is searched for in `exec-path'
1602 (which see). If nil, just associate a pty with the buffer. Remaining
1603 arguments are strings to give program as arguments.
1605 If you want to separate standard output from standard error, invoke
1606 the command through a shell and redirect one of them using the shell
1607 syntax.
1609 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1610 (nargs, args)
1611 int nargs;
1612 register Lisp_Object *args;
1614 Lisp_Object buffer, name, program, proc, current_dir, tem;
1615 register unsigned char **new_argv;
1616 register int i;
1617 int count = SPECPDL_INDEX ();
1619 buffer = args[1];
1620 if (!NILP (buffer))
1621 buffer = Fget_buffer_create (buffer);
1623 /* Make sure that the child will be able to chdir to the current
1624 buffer's current directory, or its unhandled equivalent. We
1625 can't just have the child check for an error when it does the
1626 chdir, since it's in a vfork.
1628 We have to GCPRO around this because Fexpand_file_name and
1629 Funhandled_file_name_directory might call a file name handling
1630 function. The argument list is protected by the caller, so all
1631 we really have to worry about is buffer. */
1633 struct gcpro gcpro1, gcpro2;
1635 current_dir = current_buffer->directory;
1637 GCPRO2 (buffer, current_dir);
1639 current_dir = Funhandled_file_name_directory (current_dir);
1640 if (NILP (current_dir))
1641 /* If the file name handler says that current_dir is unreachable, use
1642 a sensible default. */
1643 current_dir = build_string ("~/");
1644 current_dir = expand_and_dir_to_file (current_dir, Qnil);
1645 if (NILP (Ffile_accessible_directory_p (current_dir)))
1646 report_file_error ("Setting current directory",
1647 Fcons (current_buffer->directory, Qnil));
1649 UNGCPRO;
1652 name = args[0];
1653 CHECK_STRING (name);
1655 program = args[2];
1657 if (!NILP (program))
1658 CHECK_STRING (program);
1660 proc = make_process (name);
1661 /* If an error occurs and we can't start the process, we want to
1662 remove it from the process list. This means that each error
1663 check in create_process doesn't need to call remove_process
1664 itself; it's all taken care of here. */
1665 record_unwind_protect (start_process_unwind, proc);
1667 XPROCESS (proc)->childp = Qt;
1668 XPROCESS (proc)->plist = Qnil;
1669 XPROCESS (proc)->type = Qreal;
1670 XPROCESS (proc)->buffer = buffer;
1671 XPROCESS (proc)->sentinel = Qnil;
1672 XPROCESS (proc)->filter = Qnil;
1673 XPROCESS (proc)->command = Flist (nargs - 2, args + 2);
1675 #ifdef ADAPTIVE_READ_BUFFERING
1676 XPROCESS (proc)->adaptive_read_buffering
1677 = (NILP (Vprocess_adaptive_read_buffering) ? 0
1678 : EQ (Vprocess_adaptive_read_buffering, Qt) ? 1 : 2);
1679 #endif
1681 /* Make the process marker point into the process buffer (if any). */
1682 if (BUFFERP (buffer))
1683 set_marker_both (XPROCESS (proc)->mark, buffer,
1684 BUF_ZV (XBUFFER (buffer)),
1685 BUF_ZV_BYTE (XBUFFER (buffer)));
1688 /* Decide coding systems for communicating with the process. Here
1689 we don't setup the structure coding_system nor pay attention to
1690 unibyte mode. They are done in create_process. */
1692 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1693 Lisp_Object coding_systems = Qt;
1694 Lisp_Object val, *args2;
1695 struct gcpro gcpro1, gcpro2;
1697 val = Vcoding_system_for_read;
1698 if (NILP (val))
1700 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
1701 args2[0] = Qstart_process;
1702 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1703 GCPRO2 (proc, current_dir);
1704 if (!NILP (program))
1705 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1706 UNGCPRO;
1707 if (CONSP (coding_systems))
1708 val = XCAR (coding_systems);
1709 else if (CONSP (Vdefault_process_coding_system))
1710 val = XCAR (Vdefault_process_coding_system);
1712 XPROCESS (proc)->decode_coding_system = val;
1714 val = Vcoding_system_for_write;
1715 if (NILP (val))
1717 if (EQ (coding_systems, Qt))
1719 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof args2);
1720 args2[0] = Qstart_process;
1721 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1722 GCPRO2 (proc, current_dir);
1723 if (!NILP (program))
1724 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1725 UNGCPRO;
1727 if (CONSP (coding_systems))
1728 val = XCDR (coding_systems);
1729 else if (CONSP (Vdefault_process_coding_system))
1730 val = XCDR (Vdefault_process_coding_system);
1732 XPROCESS (proc)->encode_coding_system = val;
1733 /* Note: At this momemnt, the above coding system may leave
1734 text-conversion or eol-conversion unspecified. They will be
1735 decided after we read output from the process and decode it by
1736 some coding system, or just before we actually send a text to
1737 the process. */
1741 XPROCESS (proc)->decoding_buf = make_uninit_string (0);
1742 XPROCESS (proc)->decoding_carryover = 0;
1743 XPROCESS (proc)->encoding_buf = make_uninit_string (0);
1745 XPROCESS (proc)->inherit_coding_system_flag
1746 = !(NILP (buffer) || !inherit_process_coding_system);
1748 if (!NILP (program))
1750 /* If program file name is not absolute, search our path for it.
1751 Put the name we will really use in TEM. */
1752 if (!IS_DIRECTORY_SEP (SREF (program, 0))
1753 && !(SCHARS (program) > 1
1754 && IS_DEVICE_SEP (SREF (program, 1))))
1756 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1758 tem = Qnil;
1759 GCPRO4 (name, program, buffer, current_dir);
1760 openp (Vexec_path, program, Vexec_suffixes, &tem, make_number (X_OK));
1761 UNGCPRO;
1762 if (NILP (tem))
1763 report_file_error ("Searching for program", Fcons (program, Qnil));
1764 tem = Fexpand_file_name (tem, Qnil);
1766 else
1768 if (!NILP (Ffile_directory_p (program)))
1769 error ("Specified program for new process is a directory");
1770 tem = program;
1773 /* If program file name starts with /: for quoting a magic name,
1774 discard that. */
1775 if (SBYTES (tem) > 2 && SREF (tem, 0) == '/'
1776 && SREF (tem, 1) == ':')
1777 tem = Fsubstring (tem, make_number (2), Qnil);
1780 Lisp_Object arg_encoding = Qnil;
1781 struct gcpro gcpro1;
1782 GCPRO1 (tem);
1784 /* Encode the file name and put it in NEW_ARGV.
1785 That's where the child will use it to execute the program. */
1786 tem = Fcons (ENCODE_FILE (tem), Qnil);
1788 /* Here we encode arguments by the coding system used for sending
1789 data to the process. We don't support using different coding
1790 systems for encoding arguments and for encoding data sent to the
1791 process. */
1793 for (i = 3; i < nargs; i++)
1795 tem = Fcons (args[i], tem);
1796 CHECK_STRING (XCAR (tem));
1797 if (STRING_MULTIBYTE (XCAR (tem)))
1799 if (NILP (arg_encoding))
1800 arg_encoding = (complement_process_encoding_system
1801 (XPROCESS (proc)->encode_coding_system));
1802 XSETCAR (tem,
1803 code_convert_string_norecord
1804 (XCAR (tem), arg_encoding, 1));
1808 UNGCPRO;
1811 /* Now that everything is encoded we can collect the strings into
1812 NEW_ARGV. */
1813 new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *));
1814 new_argv[nargs - 2] = 0;
1816 for (i = nargs - 3; i >= 0; i--)
1818 new_argv[i] = SDATA (XCAR (tem));
1819 tem = XCDR (tem);
1822 create_process (proc, (char **) new_argv, current_dir);
1824 else
1825 create_pty (proc);
1827 return unbind_to (count, proc);
1830 /* This function is the unwind_protect form for Fstart_process. If
1831 PROC doesn't have its pid set, then we know someone has signaled
1832 an error and the process wasn't started successfully, so we should
1833 remove it from the process list. */
1834 static Lisp_Object
1835 start_process_unwind (proc)
1836 Lisp_Object proc;
1838 if (!PROCESSP (proc))
1839 abort ();
1841 /* Was PROC started successfully? */
1842 if (XPROCESS (proc)->pid == -1)
1843 remove_process (proc);
1845 return Qnil;
1848 static void
1849 create_process_1 (timer)
1850 struct atimer *timer;
1852 /* Nothing to do. */
1856 #if 0 /* This doesn't work; see the note before sigchld_handler. */
1857 #ifdef USG
1858 #ifdef SIGCHLD
1859 /* Mimic blocking of signals on system V, which doesn't really have it. */
1861 /* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1862 int sigchld_deferred;
1864 SIGTYPE
1865 create_process_sigchld ()
1867 signal (SIGCHLD, create_process_sigchld);
1869 sigchld_deferred = 1;
1871 #endif
1872 #endif
1873 #endif
1875 void
1876 create_process (process, new_argv, current_dir)
1877 Lisp_Object process;
1878 char **new_argv;
1879 Lisp_Object current_dir;
1881 int inchannel, outchannel;
1882 pid_t pid;
1883 int sv[2];
1884 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
1885 int wait_child_setup[2];
1886 #endif
1887 #ifdef POSIX_SIGNALS
1888 sigset_t procmask;
1889 sigset_t blocked;
1890 struct sigaction sigint_action;
1891 struct sigaction sigquit_action;
1892 #ifdef AIX
1893 struct sigaction sighup_action;
1894 #endif
1895 #else /* !POSIX_SIGNALS */
1896 #if 0
1897 #ifdef SIGCHLD
1898 SIGTYPE (*sigchld)();
1899 #endif
1900 #endif /* 0 */
1901 #endif /* !POSIX_SIGNALS */
1902 /* Use volatile to protect variables from being clobbered by longjmp. */
1903 volatile int forkin, forkout;
1904 volatile int pty_flag = 0;
1905 #ifndef USE_CRT_DLL
1906 extern char **environ;
1907 #endif
1909 inchannel = outchannel = -1;
1911 #ifdef HAVE_PTYS
1912 if (!NILP (Vprocess_connection_type))
1913 outchannel = inchannel = allocate_pty ();
1915 if (inchannel >= 0)
1917 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1918 /* On most USG systems it does not work to open the pty's tty here,
1919 then close it and reopen it in the child. */
1920 #ifdef O_NOCTTY
1921 /* Don't let this terminal become our controlling terminal
1922 (in case we don't have one). */
1923 forkout = forkin = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
1924 #else
1925 forkout = forkin = emacs_open (pty_name, O_RDWR, 0);
1926 #endif
1927 if (forkin < 0)
1928 report_file_error ("Opening pty", Qnil);
1929 #else
1930 forkin = forkout = -1;
1931 #endif /* not USG, or USG_SUBTTY_WORKS */
1932 pty_flag = 1;
1934 else
1935 #endif /* HAVE_PTYS */
1937 int tem;
1938 tem = pipe (sv);
1939 if (tem < 0)
1940 report_file_error ("Creating pipe", Qnil);
1941 inchannel = sv[0];
1942 forkout = sv[1];
1943 tem = pipe (sv);
1944 if (tem < 0)
1946 emacs_close (inchannel);
1947 emacs_close (forkout);
1948 report_file_error ("Creating pipe", Qnil);
1950 outchannel = sv[1];
1951 forkin = sv[0];
1954 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
1956 int tem;
1958 tem = pipe (wait_child_setup);
1959 if (tem < 0)
1960 report_file_error ("Creating pipe", Qnil);
1961 tem = fcntl (wait_child_setup[1], F_GETFD, 0);
1962 if (tem >= 0)
1963 tem = fcntl (wait_child_setup[1], F_SETFD, tem | FD_CLOEXEC);
1964 if (tem < 0)
1966 emacs_close (wait_child_setup[0]);
1967 emacs_close (wait_child_setup[1]);
1968 report_file_error ("Setting file descriptor flags", Qnil);
1971 #endif
1973 #if 0
1974 /* Replaced by close_process_descs */
1975 set_exclusive_use (inchannel);
1976 set_exclusive_use (outchannel);
1977 #endif
1979 #ifdef O_NONBLOCK
1980 fcntl (inchannel, F_SETFL, O_NONBLOCK);
1981 fcntl (outchannel, F_SETFL, O_NONBLOCK);
1982 #else
1983 #ifdef O_NDELAY
1984 fcntl (inchannel, F_SETFL, O_NDELAY);
1985 fcntl (outchannel, F_SETFL, O_NDELAY);
1986 #endif
1987 #endif
1989 /* Record this as an active process, with its channels.
1990 As a result, child_setup will close Emacs's side of the pipes. */
1991 chan_process[inchannel] = process;
1992 XPROCESS (process)->infd = inchannel;
1993 XPROCESS (process)->outfd = outchannel;
1995 /* Previously we recorded the tty descriptor used in the subprocess.
1996 It was only used for getting the foreground tty process, so now
1997 we just reopen the device (see emacs_get_tty_pgrp) as this is
1998 more portable (see USG_SUBTTY_WORKS above). */
2000 XPROCESS (process)->pty_flag = pty_flag;
2001 XPROCESS (process)->status = Qrun;
2002 setup_process_coding_systems (process);
2004 /* Delay interrupts until we have a chance to store
2005 the new fork's pid in its process structure */
2006 #ifdef POSIX_SIGNALS
2007 sigemptyset (&blocked);
2008 #ifdef SIGCHLD
2009 sigaddset (&blocked, SIGCHLD);
2010 #endif
2011 #ifdef HAVE_WORKING_VFORK
2012 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
2013 this sets the parent's signal handlers as well as the child's.
2014 So delay all interrupts whose handlers the child might munge,
2015 and record the current handlers so they can be restored later. */
2016 sigaddset (&blocked, SIGINT ); sigaction (SIGINT , 0, &sigint_action );
2017 sigaddset (&blocked, SIGQUIT); sigaction (SIGQUIT, 0, &sigquit_action);
2018 #ifdef AIX
2019 sigaddset (&blocked, SIGHUP ); sigaction (SIGHUP , 0, &sighup_action );
2020 #endif
2021 #endif /* HAVE_WORKING_VFORK */
2022 sigprocmask (SIG_BLOCK, &blocked, &procmask);
2023 #else /* !POSIX_SIGNALS */
2024 #ifdef SIGCHLD
2025 #if defined (BSD_SYSTEM) || defined (HPUX)
2026 sigsetmask (sigmask (SIGCHLD));
2027 #else /* ordinary USG */
2028 #if 0
2029 sigchld_deferred = 0;
2030 sigchld = signal (SIGCHLD, create_process_sigchld);
2031 #endif
2032 #endif /* ordinary USG */
2033 #endif /* SIGCHLD */
2034 #endif /* !POSIX_SIGNALS */
2036 FD_SET (inchannel, &input_wait_mask);
2037 FD_SET (inchannel, &non_keyboard_wait_mask);
2038 if (inchannel > max_process_desc)
2039 max_process_desc = inchannel;
2041 /* Until we store the proper pid, enable sigchld_handler
2042 to recognize an unknown pid as standing for this process.
2043 It is very important not to let this `marker' value stay
2044 in the table after this function has returned; if it does
2045 it might cause call-process to hang and subsequent asynchronous
2046 processes to get their return values scrambled. */
2047 XPROCESS (process)->pid = -1;
2049 BLOCK_INPUT;
2052 /* child_setup must clobber environ on systems with true vfork.
2053 Protect it from permanent change. */
2054 char **save_environ = environ;
2056 current_dir = ENCODE_FILE (current_dir);
2058 #ifndef WINDOWSNT
2059 pid = vfork ();
2060 if (pid == 0)
2061 #endif /* not WINDOWSNT */
2063 int xforkin = forkin;
2064 int xforkout = forkout;
2066 #if 0 /* This was probably a mistake--it duplicates code later on,
2067 but fails to handle all the cases. */
2068 /* Make sure SIGCHLD is not blocked in the child. */
2069 sigsetmask (SIGEMPTYMASK);
2070 #endif
2072 /* Make the pty be the controlling terminal of the process. */
2073 #ifdef HAVE_PTYS
2074 /* First, disconnect its current controlling terminal. */
2075 #ifdef HAVE_SETSID
2076 /* We tried doing setsid only if pty_flag, but it caused
2077 process_set_signal to fail on SGI when using a pipe. */
2078 setsid ();
2079 /* Make the pty's terminal the controlling terminal. */
2080 if (pty_flag)
2082 #ifdef TIOCSCTTY
2083 /* We ignore the return value
2084 because faith@cs.unc.edu says that is necessary on Linux. */
2085 ioctl (xforkin, TIOCSCTTY, 0);
2086 #endif
2088 #else /* not HAVE_SETSID */
2089 #ifdef USG
2090 /* It's very important to call setpgrp here and no time
2091 afterwards. Otherwise, we lose our controlling tty which
2092 is set when we open the pty. */
2093 setpgrp ();
2094 #endif /* USG */
2095 #endif /* not HAVE_SETSID */
2096 #if defined (HAVE_TERMIOS) && defined (LDISC1)
2097 if (pty_flag && xforkin >= 0)
2099 struct termios t;
2100 tcgetattr (xforkin, &t);
2101 t.c_lflag = LDISC1;
2102 if (tcsetattr (xforkin, TCSANOW, &t) < 0)
2103 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
2105 #else
2106 #if defined (NTTYDISC) && defined (TIOCSETD)
2107 if (pty_flag && xforkin >= 0)
2109 /* Use new line discipline. */
2110 int ldisc = NTTYDISC;
2111 ioctl (xforkin, TIOCSETD, &ldisc);
2113 #endif
2114 #endif
2115 #ifdef TIOCNOTTY
2116 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
2117 can do TIOCSPGRP only to the process's controlling tty. */
2118 if (pty_flag)
2120 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
2121 I can't test it since I don't have 4.3. */
2122 int j = emacs_open ("/dev/tty", O_RDWR, 0);
2123 ioctl (j, TIOCNOTTY, 0);
2124 emacs_close (j);
2125 #ifndef USG
2126 /* In order to get a controlling terminal on some versions
2127 of BSD, it is necessary to put the process in pgrp 0
2128 before it opens the terminal. */
2129 #ifdef HAVE_SETPGID
2130 setpgid (0, 0);
2131 #else
2132 setpgrp (0, 0);
2133 #endif
2134 #endif
2136 #endif /* TIOCNOTTY */
2138 #if !defined (DONT_REOPEN_PTY)
2139 /*** There is a suggestion that this ought to be a
2140 conditional on TIOCSPGRP,
2141 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
2142 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
2143 that system does seem to need this code, even though
2144 both HAVE_SETSID and TIOCSCTTY are defined. */
2145 /* Now close the pty (if we had it open) and reopen it.
2146 This makes the pty the controlling terminal of the subprocess. */
2147 if (pty_flag)
2150 /* I wonder if emacs_close (emacs_open (pty_name, ...))
2151 would work? */
2152 if (xforkin >= 0)
2153 emacs_close (xforkin);
2154 xforkout = xforkin = emacs_open (pty_name, O_RDWR, 0);
2156 if (xforkin < 0)
2158 emacs_write (1, "Couldn't open the pty terminal ", 31);
2159 emacs_write (1, pty_name, strlen (pty_name));
2160 emacs_write (1, "\n", 1);
2161 _exit (1);
2165 #endif /* not DONT_REOPEN_PTY */
2167 #ifdef SETUP_SLAVE_PTY
2168 if (pty_flag)
2170 SETUP_SLAVE_PTY;
2172 #endif /* SETUP_SLAVE_PTY */
2173 #ifdef AIX
2174 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
2175 Now reenable it in the child, so it will die when we want it to. */
2176 if (pty_flag)
2177 signal (SIGHUP, SIG_DFL);
2178 #endif
2179 #endif /* HAVE_PTYS */
2181 signal (SIGINT, SIG_DFL);
2182 signal (SIGQUIT, SIG_DFL);
2184 /* Stop blocking signals in the child. */
2185 #ifdef POSIX_SIGNALS
2186 sigprocmask (SIG_SETMASK, &procmask, 0);
2187 #else /* !POSIX_SIGNALS */
2188 #ifdef SIGCHLD
2189 #if defined (BSD_SYSTEM) || defined (HPUX)
2190 sigsetmask (SIGEMPTYMASK);
2191 #else /* ordinary USG */
2192 #if 0
2193 signal (SIGCHLD, sigchld);
2194 #endif
2195 #endif /* ordinary USG */
2196 #endif /* SIGCHLD */
2197 #endif /* !POSIX_SIGNALS */
2199 if (pty_flag)
2200 child_setup_tty (xforkout);
2201 #ifdef WINDOWSNT
2202 pid = child_setup (xforkin, xforkout, xforkout,
2203 new_argv, 1, current_dir);
2204 #else /* not WINDOWSNT */
2205 #ifdef FD_CLOEXEC
2206 emacs_close (wait_child_setup[0]);
2207 #endif
2208 child_setup (xforkin, xforkout, xforkout,
2209 new_argv, 1, current_dir);
2210 #endif /* not WINDOWSNT */
2212 environ = save_environ;
2215 UNBLOCK_INPUT;
2217 /* This runs in the Emacs process. */
2218 if (pid < 0)
2220 if (forkin >= 0)
2221 emacs_close (forkin);
2222 if (forkin != forkout && forkout >= 0)
2223 emacs_close (forkout);
2225 else
2227 /* vfork succeeded. */
2228 XPROCESS (process)->pid = pid;
2230 #ifdef WINDOWSNT
2231 register_child (pid, inchannel);
2232 #endif /* WINDOWSNT */
2234 /* If the subfork execv fails, and it exits,
2235 this close hangs. I don't know why.
2236 So have an interrupt jar it loose. */
2238 struct atimer *timer;
2239 EMACS_TIME offset;
2241 stop_polling ();
2242 EMACS_SET_SECS_USECS (offset, 1, 0);
2243 timer = start_atimer (ATIMER_RELATIVE, offset, create_process_1, 0);
2245 if (forkin >= 0)
2246 emacs_close (forkin);
2248 cancel_atimer (timer);
2249 start_polling ();
2252 if (forkin != forkout && forkout >= 0)
2253 emacs_close (forkout);
2255 #ifdef HAVE_PTYS
2256 if (pty_flag)
2257 XPROCESS (process)->tty_name = build_string (pty_name);
2258 else
2259 #endif
2260 XPROCESS (process)->tty_name = Qnil;
2262 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
2263 /* Wait for child_setup to complete in case that vfork is
2264 actually defined as fork. The descriptor wait_child_setup[1]
2265 of a pipe is closed at the child side either by close-on-exec
2266 on successful execvp or the _exit call in child_setup. */
2268 char dummy;
2270 emacs_close (wait_child_setup[1]);
2271 emacs_read (wait_child_setup[0], &dummy, 1);
2272 emacs_close (wait_child_setup[0]);
2274 #endif
2277 /* Restore the signal state whether vfork succeeded or not.
2278 (We will signal an error, below, if it failed.) */
2279 #ifdef POSIX_SIGNALS
2280 #ifdef HAVE_WORKING_VFORK
2281 /* Restore the parent's signal handlers. */
2282 sigaction (SIGINT, &sigint_action, 0);
2283 sigaction (SIGQUIT, &sigquit_action, 0);
2284 #ifdef AIX
2285 sigaction (SIGHUP, &sighup_action, 0);
2286 #endif
2287 #endif /* HAVE_WORKING_VFORK */
2288 /* Stop blocking signals in the parent. */
2289 sigprocmask (SIG_SETMASK, &procmask, 0);
2290 #else /* !POSIX_SIGNALS */
2291 #ifdef SIGCHLD
2292 #if defined (BSD_SYSTEM) || defined (HPUX)
2293 sigsetmask (SIGEMPTYMASK);
2294 #else /* ordinary USG */
2295 #if 0
2296 signal (SIGCHLD, sigchld);
2297 /* Now really handle any of these signals
2298 that came in during this function. */
2299 if (sigchld_deferred)
2300 kill (getpid (), SIGCHLD);
2301 #endif
2302 #endif /* ordinary USG */
2303 #endif /* SIGCHLD */
2304 #endif /* !POSIX_SIGNALS */
2306 /* Now generate the error if vfork failed. */
2307 if (pid < 0)
2308 report_file_error ("Doing vfork", Qnil);
2311 void
2312 create_pty (process)
2313 Lisp_Object process;
2315 int inchannel, outchannel;
2317 /* Use volatile to protect variables from being clobbered by longjmp. */
2318 volatile int forkin, forkout;
2319 volatile int pty_flag = 0;
2321 inchannel = outchannel = -1;
2323 #ifdef HAVE_PTYS
2324 if (!NILP (Vprocess_connection_type))
2325 outchannel = inchannel = allocate_pty ();
2327 if (inchannel >= 0)
2329 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
2330 /* On most USG systems it does not work to open the pty's tty here,
2331 then close it and reopen it in the child. */
2332 #ifdef O_NOCTTY
2333 /* Don't let this terminal become our controlling terminal
2334 (in case we don't have one). */
2335 forkout = forkin = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
2336 #else
2337 forkout = forkin = emacs_open (pty_name, O_RDWR, 0);
2338 #endif
2339 if (forkin < 0)
2340 report_file_error ("Opening pty", Qnil);
2341 #if defined (DONT_REOPEN_PTY)
2342 /* In the case that vfork is defined as fork, the parent process
2343 (Emacs) may send some data before the child process completes
2344 tty options setup. So we setup tty before forking. */
2345 child_setup_tty (forkout);
2346 #endif /* DONT_REOPEN_PTY */
2347 #else
2348 forkin = forkout = -1;
2349 #endif /* not USG, or USG_SUBTTY_WORKS */
2350 pty_flag = 1;
2352 #endif /* HAVE_PTYS */
2354 #ifdef O_NONBLOCK
2355 fcntl (inchannel, F_SETFL, O_NONBLOCK);
2356 fcntl (outchannel, F_SETFL, O_NONBLOCK);
2357 #else
2358 #ifdef O_NDELAY
2359 fcntl (inchannel, F_SETFL, O_NDELAY);
2360 fcntl (outchannel, F_SETFL, O_NDELAY);
2361 #endif
2362 #endif
2364 /* Record this as an active process, with its channels.
2365 As a result, child_setup will close Emacs's side of the pipes. */
2366 chan_process[inchannel] = process;
2367 XPROCESS (process)->infd = inchannel;
2368 XPROCESS (process)->outfd = outchannel;
2370 /* Previously we recorded the tty descriptor used in the subprocess.
2371 It was only used for getting the foreground tty process, so now
2372 we just reopen the device (see emacs_get_tty_pgrp) as this is
2373 more portable (see USG_SUBTTY_WORKS above). */
2375 XPROCESS (process)->pty_flag = pty_flag;
2376 XPROCESS (process)->status = Qrun;
2377 setup_process_coding_systems (process);
2379 FD_SET (inchannel, &input_wait_mask);
2380 FD_SET (inchannel, &non_keyboard_wait_mask);
2381 if (inchannel > max_process_desc)
2382 max_process_desc = inchannel;
2384 XPROCESS (process)->pid = -2;
2385 #ifdef HAVE_PTYS
2386 if (pty_flag)
2387 XPROCESS (process)->tty_name = build_string (pty_name);
2388 else
2389 #endif
2390 XPROCESS (process)->tty_name = Qnil;
2394 #ifdef HAVE_SOCKETS
2396 /* Convert an internal struct sockaddr to a lisp object (vector or string).
2397 The address family of sa is not included in the result. */
2399 static Lisp_Object
2400 conv_sockaddr_to_lisp (sa, len)
2401 struct sockaddr *sa;
2402 int len;
2404 Lisp_Object address;
2405 int i;
2406 unsigned char *cp;
2407 register struct Lisp_Vector *p;
2409 /* Workaround for a bug in getsockname on BSD: Names bound to
2410 sockets in the UNIX domain are inaccessible; getsockname returns
2411 a zero length name. */
2412 if (len < OFFSETOF (struct sockaddr, sa_family) + sizeof (sa->sa_family))
2413 return empty_unibyte_string;
2415 switch (sa->sa_family)
2417 case AF_INET:
2419 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2420 len = sizeof (sin->sin_addr) + 1;
2421 address = Fmake_vector (make_number (len), Qnil);
2422 p = XVECTOR (address);
2423 p->contents[--len] = make_number (ntohs (sin->sin_port));
2424 cp = (unsigned char *) &sin->sin_addr;
2425 break;
2427 #ifdef AF_INET6
2428 case AF_INET6:
2430 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
2431 uint16_t *ip6 = (uint16_t *) &sin6->sin6_addr;
2432 len = sizeof (sin6->sin6_addr)/2 + 1;
2433 address = Fmake_vector (make_number (len), Qnil);
2434 p = XVECTOR (address);
2435 p->contents[--len] = make_number (ntohs (sin6->sin6_port));
2436 for (i = 0; i < len; i++)
2437 p->contents[i] = make_number (ntohs (ip6[i]));
2438 return address;
2440 #endif
2441 #ifdef HAVE_LOCAL_SOCKETS
2442 case AF_LOCAL:
2444 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2445 for (i = 0; i < sizeof (sockun->sun_path); i++)
2446 if (sockun->sun_path[i] == 0)
2447 break;
2448 return make_unibyte_string (sockun->sun_path, i);
2450 #endif
2451 default:
2452 len -= OFFSETOF (struct sockaddr, sa_family) + sizeof (sa->sa_family);
2453 address = Fcons (make_number (sa->sa_family),
2454 Fmake_vector (make_number (len), Qnil));
2455 p = XVECTOR (XCDR (address));
2456 cp = (unsigned char *) &sa->sa_family + sizeof (sa->sa_family);
2457 break;
2460 i = 0;
2461 while (i < len)
2462 p->contents[i++] = make_number (*cp++);
2464 return address;
2468 /* Get family and required size for sockaddr structure to hold ADDRESS. */
2470 static int
2471 get_lisp_to_sockaddr_size (address, familyp)
2472 Lisp_Object address;
2473 int *familyp;
2475 register struct Lisp_Vector *p;
2477 if (VECTORP (address))
2479 p = XVECTOR (address);
2480 if (p->size == 5)
2482 *familyp = AF_INET;
2483 return sizeof (struct sockaddr_in);
2485 #ifdef AF_INET6
2486 else if (p->size == 9)
2488 *familyp = AF_INET6;
2489 return sizeof (struct sockaddr_in6);
2491 #endif
2493 #ifdef HAVE_LOCAL_SOCKETS
2494 else if (STRINGP (address))
2496 *familyp = AF_LOCAL;
2497 return sizeof (struct sockaddr_un);
2499 #endif
2500 else if (CONSP (address) && INTEGERP (XCAR (address)) && VECTORP (XCDR (address)))
2502 struct sockaddr *sa;
2503 *familyp = XINT (XCAR (address));
2504 p = XVECTOR (XCDR (address));
2505 return p->size + sizeof (sa->sa_family);
2507 return 0;
2510 /* Convert an address object (vector or string) to an internal sockaddr.
2512 The address format has been basically validated by
2513 get_lisp_to_sockaddr_size, but this does not mean FAMILY is valid;
2514 it could have come from user data. So if FAMILY is not valid,
2515 we return after zeroing *SA. */
2517 static void
2518 conv_lisp_to_sockaddr (family, address, sa, len)
2519 int family;
2520 Lisp_Object address;
2521 struct sockaddr *sa;
2522 int len;
2524 register struct Lisp_Vector *p;
2525 register unsigned char *cp = NULL;
2526 register int i;
2528 bzero (sa, len);
2530 if (VECTORP (address))
2532 p = XVECTOR (address);
2533 if (family == AF_INET)
2535 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2536 len = sizeof (sin->sin_addr) + 1;
2537 i = XINT (p->contents[--len]);
2538 sin->sin_port = htons (i);
2539 cp = (unsigned char *)&sin->sin_addr;
2540 sa->sa_family = family;
2542 #ifdef AF_INET6
2543 else if (family == AF_INET6)
2545 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
2546 uint16_t *ip6 = (uint16_t *)&sin6->sin6_addr;
2547 len = sizeof (sin6->sin6_addr) + 1;
2548 i = XINT (p->contents[--len]);
2549 sin6->sin6_port = htons (i);
2550 for (i = 0; i < len; i++)
2551 if (INTEGERP (p->contents[i]))
2553 int j = XFASTINT (p->contents[i]) & 0xffff;
2554 ip6[i] = ntohs (j);
2556 sa->sa_family = family;
2557 return;
2559 #endif
2560 else
2561 return;
2563 else if (STRINGP (address))
2565 #ifdef HAVE_LOCAL_SOCKETS
2566 if (family == AF_LOCAL)
2568 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2569 cp = SDATA (address);
2570 for (i = 0; i < sizeof (sockun->sun_path) && *cp; i++)
2571 sockun->sun_path[i] = *cp++;
2572 sa->sa_family = family;
2574 #endif
2575 return;
2577 else
2579 p = XVECTOR (XCDR (address));
2580 cp = (unsigned char *)sa + sizeof (sa->sa_family);
2583 for (i = 0; i < len; i++)
2584 if (INTEGERP (p->contents[i]))
2585 *cp++ = XFASTINT (p->contents[i]) & 0xff;
2588 #ifdef DATAGRAM_SOCKETS
2589 DEFUN ("process-datagram-address", Fprocess_datagram_address, Sprocess_datagram_address,
2590 1, 1, 0,
2591 doc: /* Get the current datagram address associated with PROCESS. */)
2592 (process)
2593 Lisp_Object process;
2595 int channel;
2597 CHECK_PROCESS (process);
2599 if (!DATAGRAM_CONN_P (process))
2600 return Qnil;
2602 channel = XPROCESS (process)->infd;
2603 return conv_sockaddr_to_lisp (datagram_address[channel].sa,
2604 datagram_address[channel].len);
2607 DEFUN ("set-process-datagram-address", Fset_process_datagram_address, Sset_process_datagram_address,
2608 2, 2, 0,
2609 doc: /* Set the datagram address for PROCESS to ADDRESS.
2610 Returns nil upon error setting address, ADDRESS otherwise. */)
2611 (process, address)
2612 Lisp_Object process, address;
2614 int channel;
2615 int family, len;
2617 CHECK_PROCESS (process);
2619 if (!DATAGRAM_CONN_P (process))
2620 return Qnil;
2622 channel = XPROCESS (process)->infd;
2624 len = get_lisp_to_sockaddr_size (address, &family);
2625 if (datagram_address[channel].len != len)
2626 return Qnil;
2627 conv_lisp_to_sockaddr (family, address, datagram_address[channel].sa, len);
2628 return address;
2630 #endif
2633 static const struct socket_options {
2634 /* The name of this option. Should be lowercase version of option
2635 name without SO_ prefix. */
2636 char *name;
2637 /* Option level SOL_... */
2638 int optlevel;
2639 /* Option number SO_... */
2640 int optnum;
2641 enum { SOPT_UNKNOWN, SOPT_BOOL, SOPT_INT, SOPT_IFNAME, SOPT_LINGER } opttype;
2642 enum { OPIX_NONE=0, OPIX_MISC=1, OPIX_REUSEADDR=2 } optbit;
2643 } socket_options[] =
2645 #ifdef SO_BINDTODEVICE
2646 { ":bindtodevice", SOL_SOCKET, SO_BINDTODEVICE, SOPT_IFNAME, OPIX_MISC },
2647 #endif
2648 #ifdef SO_BROADCAST
2649 { ":broadcast", SOL_SOCKET, SO_BROADCAST, SOPT_BOOL, OPIX_MISC },
2650 #endif
2651 #ifdef SO_DONTROUTE
2652 { ":dontroute", SOL_SOCKET, SO_DONTROUTE, SOPT_BOOL, OPIX_MISC },
2653 #endif
2654 #ifdef SO_KEEPALIVE
2655 { ":keepalive", SOL_SOCKET, SO_KEEPALIVE, SOPT_BOOL, OPIX_MISC },
2656 #endif
2657 #ifdef SO_LINGER
2658 { ":linger", SOL_SOCKET, SO_LINGER, SOPT_LINGER, OPIX_MISC },
2659 #endif
2660 #ifdef SO_OOBINLINE
2661 { ":oobinline", SOL_SOCKET, SO_OOBINLINE, SOPT_BOOL, OPIX_MISC },
2662 #endif
2663 #ifdef SO_PRIORITY
2664 { ":priority", SOL_SOCKET, SO_PRIORITY, SOPT_INT, OPIX_MISC },
2665 #endif
2666 #ifdef SO_REUSEADDR
2667 { ":reuseaddr", SOL_SOCKET, SO_REUSEADDR, SOPT_BOOL, OPIX_REUSEADDR },
2668 #endif
2669 { 0, 0, 0, SOPT_UNKNOWN, OPIX_NONE }
2672 /* Set option OPT to value VAL on socket S.
2674 Returns (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
2675 Signals an error if setting a known option fails.
2678 static int
2679 set_socket_option (s, opt, val)
2680 int s;
2681 Lisp_Object opt, val;
2683 char *name;
2684 const struct socket_options *sopt;
2685 int ret = 0;
2687 CHECK_SYMBOL (opt);
2689 name = (char *) SDATA (SYMBOL_NAME (opt));
2690 for (sopt = socket_options; sopt->name; sopt++)
2691 if (strcmp (name, sopt->name) == 0)
2692 break;
2694 switch (sopt->opttype)
2696 case SOPT_BOOL:
2698 int optval;
2699 optval = NILP (val) ? 0 : 1;
2700 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2701 &optval, sizeof (optval));
2702 break;
2705 case SOPT_INT:
2707 int optval;
2708 if (INTEGERP (val))
2709 optval = XINT (val);
2710 else
2711 error ("Bad option value for %s", name);
2712 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2713 &optval, sizeof (optval));
2714 break;
2717 #ifdef SO_BINDTODEVICE
2718 case SOPT_IFNAME:
2720 char devname[IFNAMSIZ+1];
2722 /* This is broken, at least in the Linux 2.4 kernel.
2723 To unbind, the arg must be a zero integer, not the empty string.
2724 This should work on all systems. KFS. 2003-09-23. */
2725 bzero (devname, sizeof devname);
2726 if (STRINGP (val))
2728 char *arg = (char *) SDATA (val);
2729 int len = min (strlen (arg), IFNAMSIZ);
2730 bcopy (arg, devname, len);
2732 else if (!NILP (val))
2733 error ("Bad option value for %s", name);
2734 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2735 devname, IFNAMSIZ);
2736 break;
2738 #endif
2740 #ifdef SO_LINGER
2741 case SOPT_LINGER:
2743 struct linger linger;
2745 linger.l_onoff = 1;
2746 linger.l_linger = 0;
2747 if (INTEGERP (val))
2748 linger.l_linger = XINT (val);
2749 else
2750 linger.l_onoff = NILP (val) ? 0 : 1;
2751 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2752 &linger, sizeof (linger));
2753 break;
2755 #endif
2757 default:
2758 return 0;
2761 if (ret < 0)
2762 report_file_error ("Cannot set network option",
2763 Fcons (opt, Fcons (val, Qnil)));
2764 return (1 << sopt->optbit);
2768 DEFUN ("set-network-process-option",
2769 Fset_network_process_option, Sset_network_process_option,
2770 3, 4, 0,
2771 doc: /* For network process PROCESS set option OPTION to value VALUE.
2772 See `make-network-process' for a list of options and values.
2773 If optional fourth arg NO-ERROR is non-nil, don't signal an error if
2774 OPTION is not a supported option, return nil instead; otherwise return t. */)
2775 (process, option, value, no_error)
2776 Lisp_Object process, option, value;
2777 Lisp_Object no_error;
2779 int s;
2780 struct Lisp_Process *p;
2782 CHECK_PROCESS (process);
2783 p = XPROCESS (process);
2784 if (!NETCONN1_P (p))
2785 error ("Process is not a network process");
2787 s = p->infd;
2788 if (s < 0)
2789 error ("Process is not running");
2791 if (set_socket_option (s, option, value))
2793 p->childp = Fplist_put (p->childp, option, value);
2794 return Qt;
2797 if (NILP (no_error))
2798 error ("Unknown or unsupported option");
2800 return Qnil;
2804 #ifdef HAVE_SERIAL
2805 DEFUN ("serial-process-configure",
2806 Fserial_process_configure,
2807 Sserial_process_configure,
2808 0, MANY, 0,
2809 doc: /* Configure speed, bytesize, etc. of a serial process.
2811 Arguments are specified as keyword/argument pairs. Attributes that
2812 are not given are re-initialized from the process's current
2813 configuration (available via the function `process-contact') or set to
2814 reasonable default values. The following arguments are defined:
2816 :process PROCESS
2817 :name NAME
2818 :buffer BUFFER
2819 :port PORT
2820 -- Any of these arguments can be given to identify the process that is
2821 to be configured. If none of these arguments is given, the current
2822 buffer's process is used.
2824 :speed SPEED -- SPEED is the speed of the serial port in bits per
2825 second, also called baud rate. Any value can be given for SPEED, but
2826 most serial ports work only at a few defined values between 1200 and
2827 115200, with 9600 being the most common value. If SPEED is nil, the
2828 serial port is not configured any further, i.e., all other arguments
2829 are ignored. This may be useful for special serial ports such as
2830 Bluetooth-to-serial converters which can only be configured through AT
2831 commands. A value of nil for SPEED can be used only when passed
2832 through `make-serial-process' or `serial-term'.
2834 :bytesize BYTESIZE -- BYTESIZE is the number of bits per byte, which
2835 can be 7 or 8. If BYTESIZE is not given or nil, a value of 8 is used.
2837 :parity PARITY -- PARITY can be nil (don't use parity), the symbol
2838 `odd' (use odd parity), or the symbol `even' (use even parity). If
2839 PARITY is not given, no parity is used.
2841 :stopbits STOPBITS -- STOPBITS is the number of stopbits used to
2842 terminate a byte transmission. STOPBITS can be 1 or 2. If STOPBITS
2843 is not given or nil, 1 stopbit is used.
2845 :flowcontrol FLOWCONTROL -- FLOWCONTROL determines the type of
2846 flowcontrol to be used, which is either nil (don't use flowcontrol),
2847 the symbol `hw' (use RTS/CTS hardware flowcontrol), or the symbol `sw'
2848 \(use XON/XOFF software flowcontrol). If FLOWCONTROL is not given, no
2849 flowcontrol is used.
2851 `serial-process-configure' is called by `make-serial-process' for the
2852 initial configuration of the serial port.
2854 Examples:
2856 \(serial-process-configure :process "/dev/ttyS0" :speed 1200)
2858 \(serial-process-configure
2859 :buffer "COM1" :stopbits 1 :parity 'odd :flowcontrol 'hw)
2861 \(serial-process-configure :port "\\\\.\\COM13" :bytesize 7)
2863 usage: (serial-process-configure &rest ARGS) */)
2864 (nargs, args)
2865 int nargs;
2866 Lisp_Object *args;
2868 struct Lisp_Process *p;
2869 Lisp_Object contact = Qnil;
2870 Lisp_Object proc = Qnil;
2871 struct gcpro gcpro1;
2873 contact = Flist (nargs, args);
2874 GCPRO1 (contact);
2876 proc = Fplist_get (contact, QCprocess);
2877 if (NILP (proc))
2878 proc = Fplist_get (contact, QCname);
2879 if (NILP (proc))
2880 proc = Fplist_get (contact, QCbuffer);
2881 if (NILP (proc))
2882 proc = Fplist_get (contact, QCport);
2883 proc = get_process (proc);
2884 p = XPROCESS (proc);
2885 if (!EQ (p->type, Qserial))
2886 error ("Not a serial process");
2888 if (NILP (Fplist_get (p->childp, QCspeed)))
2890 UNGCPRO;
2891 return Qnil;
2894 serial_configure (p, contact);
2896 UNGCPRO;
2897 return Qnil;
2900 /* Used by make-serial-process to recover from errors. */
2901 Lisp_Object make_serial_process_unwind (Lisp_Object proc)
2903 if (!PROCESSP (proc))
2904 abort ();
2905 remove_process (proc);
2906 return Qnil;
2909 DEFUN ("make-serial-process", Fmake_serial_process, Smake_serial_process,
2910 0, MANY, 0,
2911 doc: /* Create and return a serial port process.
2913 In Emacs, serial port connections are represented by process objects,
2914 so input and output work as for subprocesses, and `delete-process'
2915 closes a serial port connection. However, a serial process has no
2916 process id, it cannot be signaled, and the status codes are different
2917 from normal processes.
2919 `make-serial-process' creates a process and a buffer, on which you
2920 probably want to use `process-send-string'. Try \\[serial-term] for
2921 an interactive terminal. See below for examples.
2923 Arguments are specified as keyword/argument pairs. The following
2924 arguments are defined:
2926 :port PORT -- (mandatory) PORT is the path or name of the serial port.
2927 For example, this could be "/dev/ttyS0" on Unix. On Windows, this
2928 could be "COM1", or "\\\\.\\COM10" for ports higher than COM9 (double
2929 the backslashes in strings).
2931 :speed SPEED -- (mandatory) is handled by `serial-process-configure',
2932 which is called by `make-serial-process'.
2934 :name NAME -- NAME is the name of the process. If NAME is not given,
2935 the value of PORT is used.
2937 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2938 with the process. Process output goes at the end of that buffer,
2939 unless you specify an output stream or filter function to handle the
2940 output. If BUFFER is not given, the value of NAME is used.
2942 :coding CODING -- If CODING is a symbol, it specifies the coding
2943 system used for both reading and writing for this process. If CODING
2944 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2945 ENCODING is used for writing.
2947 :noquery BOOL -- When exiting Emacs, query the user if BOOL is nil and
2948 the process is running. If BOOL is not given, query before exiting.
2950 :stop BOOL -- Start process in the `stopped' state if BOOL is non-nil.
2951 In the stopped state, a serial process does not accept incoming data,
2952 but you can send outgoing data. The stopped state is cleared by
2953 `continue-process' and set by `stop-process'.
2955 :filter FILTER -- Install FILTER as the process filter.
2957 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2959 :plist PLIST -- Install PLIST as the initial plist of the process.
2961 :speed
2962 :bytesize
2963 :parity
2964 :stopbits
2965 :flowcontrol
2966 -- These arguments are handled by `serial-process-configure', which is
2967 called by `make-serial-process'.
2969 The original argument list, possibly modified by later configuration,
2970 is available via the function `process-contact'.
2972 Examples:
2974 \(make-serial-process :port "/dev/ttyS0" :speed 9600)
2976 \(make-serial-process :port "COM1" :speed 115200 :stopbits 2)
2978 \(make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity 'odd)
2980 \(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil)
2982 usage: (make-serial-process &rest ARGS) */)
2983 (nargs, args)
2984 int nargs;
2985 Lisp_Object *args;
2987 int fd = -1;
2988 Lisp_Object proc, contact, port;
2989 struct Lisp_Process *p;
2990 struct gcpro gcpro1;
2991 Lisp_Object name, buffer;
2992 Lisp_Object tem, val;
2993 int specpdl_count = -1;
2995 if (nargs == 0)
2996 return Qnil;
2998 contact = Flist (nargs, args);
2999 GCPRO1 (contact);
3001 port = Fplist_get (contact, QCport);
3002 if (NILP (port))
3003 error ("No port specified");
3004 CHECK_STRING (port);
3006 if (NILP (Fplist_member (contact, QCspeed)))
3007 error (":speed not specified");
3008 if (!NILP (Fplist_get (contact, QCspeed)))
3009 CHECK_NUMBER (Fplist_get (contact, QCspeed));
3011 name = Fplist_get (contact, QCname);
3012 if (NILP (name))
3013 name = port;
3014 CHECK_STRING (name);
3015 proc = make_process (name);
3016 specpdl_count = SPECPDL_INDEX ();
3017 record_unwind_protect (make_serial_process_unwind, proc);
3018 p = XPROCESS (proc);
3020 fd = serial_open ((char*) SDATA (port));
3021 p->infd = fd;
3022 p->outfd = fd;
3023 if (fd > max_process_desc)
3024 max_process_desc = fd;
3025 chan_process[fd] = proc;
3027 buffer = Fplist_get (contact, QCbuffer);
3028 if (NILP (buffer))
3029 buffer = name;
3030 buffer = Fget_buffer_create (buffer);
3031 p->buffer = buffer;
3033 p->childp = contact;
3034 p->plist = Fcopy_sequence (Fplist_get (contact, QCplist));
3035 p->type = Qserial;
3036 p->sentinel = Fplist_get (contact, QCsentinel);
3037 p->filter = Fplist_get (contact, QCfilter);
3038 p->log = Qnil;
3039 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
3040 p->kill_without_query = 1;
3041 if (tem = Fplist_get (contact, QCstop), !NILP (tem))
3042 p->command = Qt;
3043 p->pty_flag = 0;
3045 if (!EQ (p->command, Qt))
3047 FD_SET (fd, &input_wait_mask);
3048 FD_SET (fd, &non_keyboard_wait_mask);
3051 if (BUFFERP (buffer))
3053 set_marker_both (p->mark, buffer,
3054 BUF_ZV (XBUFFER (buffer)),
3055 BUF_ZV_BYTE (XBUFFER (buffer)));
3058 tem = Fplist_member (contact, QCcoding);
3059 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
3060 tem = Qnil;
3062 val = Qnil;
3063 if (!NILP (tem))
3065 val = XCAR (XCDR (tem));
3066 if (CONSP (val))
3067 val = XCAR (val);
3069 else if (!NILP (Vcoding_system_for_read))
3070 val = Vcoding_system_for_read;
3071 else if ((!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters))
3072 || (NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters)))
3073 val = Qnil;
3074 p->decode_coding_system = val;
3076 val = Qnil;
3077 if (!NILP (tem))
3079 val = XCAR (XCDR (tem));
3080 if (CONSP (val))
3081 val = XCDR (val);
3083 else if (!NILP (Vcoding_system_for_write))
3084 val = Vcoding_system_for_write;
3085 else if ((!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters))
3086 || (NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters)))
3087 val = Qnil;
3088 p->encode_coding_system = val;
3090 setup_process_coding_systems (proc);
3091 p->decoding_buf = make_uninit_string (0);
3092 p->decoding_carryover = 0;
3093 p->encoding_buf = make_uninit_string (0);
3094 p->inherit_coding_system_flag
3095 = !(!NILP (tem) || NILP (buffer) || !inherit_process_coding_system);
3097 Fserial_process_configure(nargs, args);
3099 specpdl_ptr = specpdl + specpdl_count;
3101 UNGCPRO;
3102 return proc;
3104 #endif /* HAVE_SERIAL */
3106 /* Create a network stream/datagram client/server process. Treated
3107 exactly like a normal process when reading and writing. Primary
3108 differences are in status display and process deletion. A network
3109 connection has no PID; you cannot signal it. All you can do is
3110 stop/continue it and deactivate/close it via delete-process */
3112 DEFUN ("make-network-process", Fmake_network_process, Smake_network_process,
3113 0, MANY, 0,
3114 doc: /* Create and return a network server or client process.
3116 In Emacs, network connections are represented by process objects, so
3117 input and output work as for subprocesses and `delete-process' closes
3118 a network connection. However, a network process has no process id,
3119 it cannot be signaled, and the status codes are different from normal
3120 processes.
3122 Arguments are specified as keyword/argument pairs. The following
3123 arguments are defined:
3125 :name NAME -- NAME is name for process. It is modified if necessary
3126 to make it unique.
3128 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
3129 with the process. Process output goes at end of that buffer, unless
3130 you specify an output stream or filter function to handle the output.
3131 BUFFER may be also nil, meaning that this process is not associated
3132 with any buffer.
3134 :host HOST -- HOST is name of the host to connect to, or its IP
3135 address. The symbol `local' specifies the local host. If specified
3136 for a server process, it must be a valid name or address for the local
3137 host, and only clients connecting to that address will be accepted.
3139 :service SERVICE -- SERVICE is name of the service desired, or an
3140 integer specifying a port number to connect to. If SERVICE is t,
3141 a random port number is selected for the server. (If Emacs was
3142 compiled with getaddrinfo, a port number can also be specified as a
3143 string, e.g. "80", as well as an integer. This is not portable.)
3145 :type TYPE -- TYPE is the type of connection. The default (nil) is a
3146 stream type connection, `datagram' creates a datagram type connection,
3147 `seqpacket' creates a reliable datagram connection.
3149 :family FAMILY -- FAMILY is the address (and protocol) family for the
3150 service specified by HOST and SERVICE. The default (nil) is to use
3151 whatever address family (IPv4 or IPv6) that is defined for the host
3152 and port number specified by HOST and SERVICE. Other address families
3153 supported are:
3154 local -- for a local (i.e. UNIX) address specified by SERVICE.
3155 ipv4 -- use IPv4 address family only.
3156 ipv6 -- use IPv6 address family only.
3158 :local ADDRESS -- ADDRESS is the local address used for the connection.
3159 This parameter is ignored when opening a client process. When specified
3160 for a server process, the FAMILY, HOST and SERVICE args are ignored.
3162 :remote ADDRESS -- ADDRESS is the remote partner's address for the
3163 connection. This parameter is ignored when opening a stream server
3164 process. For a datagram server process, it specifies the initial
3165 setting of the remote datagram address. When specified for a client
3166 process, the FAMILY, HOST, and SERVICE args are ignored.
3168 The format of ADDRESS depends on the address family:
3169 - An IPv4 address is represented as an vector of integers [A B C D P]
3170 corresponding to numeric IP address A.B.C.D and port number P.
3171 - A local address is represented as a string with the address in the
3172 local address space.
3173 - An "unsupported family" address is represented by a cons (F . AV)
3174 where F is the family number and AV is a vector containing the socket
3175 address data with one element per address data byte. Do not rely on
3176 this format in portable code, as it may depend on implementation
3177 defined constants, data sizes, and data structure alignment.
3179 :coding CODING -- If CODING is a symbol, it specifies the coding
3180 system used for both reading and writing for this process. If CODING
3181 is a cons (DECODING . ENCODING), DECODING is used for reading, and
3182 ENCODING is used for writing.
3184 :nowait BOOL -- If BOOL is non-nil for a stream type client process,
3185 return without waiting for the connection to complete; instead, the
3186 sentinel function will be called with second arg matching "open" (if
3187 successful) or "failed" when the connect completes. Default is to use
3188 a blocking connect (i.e. wait) for stream type connections.
3190 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
3191 running when Emacs is exited.
3193 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
3194 In the stopped state, a server process does not accept new
3195 connections, and a client process does not handle incoming traffic.
3196 The stopped state is cleared by `continue-process' and set by
3197 `stop-process'.
3199 :filter FILTER -- Install FILTER as the process filter.
3201 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
3202 process filter are multibyte, otherwise they are unibyte.
3203 If this keyword is not specified, the strings are multibyte if
3204 `default-enable-multibyte-characters' is non-nil.
3206 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
3208 :log LOG -- Install LOG as the server process log function. This
3209 function is called when the server accepts a network connection from a
3210 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
3211 is the server process, CLIENT is the new process for the connection,
3212 and MESSAGE is a string.
3214 :plist PLIST -- Install PLIST as the new process' initial plist.
3216 :server QLEN -- if QLEN is non-nil, create a server process for the
3217 specified FAMILY, SERVICE, and connection type (stream or datagram).
3218 If QLEN is an integer, it is used as the max. length of the server's
3219 pending connection queue (also known as the backlog); the default
3220 queue length is 5. Default is to create a client process.
3222 The following network options can be specified for this connection:
3224 :broadcast BOOL -- Allow send and receive of datagram broadcasts.
3225 :dontroute BOOL -- Only send to directly connected hosts.
3226 :keepalive BOOL -- Send keep-alive messages on network stream.
3227 :linger BOOL or TIMEOUT -- Send queued messages before closing.
3228 :oobinline BOOL -- Place out-of-band data in receive data stream.
3229 :priority INT -- Set protocol defined priority for sent packets.
3230 :reuseaddr BOOL -- Allow reusing a recently used local address
3231 (this is allowed by default for a server process).
3232 :bindtodevice NAME -- bind to interface NAME. Using this may require
3233 special privileges on some systems.
3235 Consult the relevant system programmer's manual pages for more
3236 information on using these options.
3239 A server process will listen for and accept connections from clients.
3240 When a client connection is accepted, a new network process is created
3241 for the connection with the following parameters:
3243 - The client's process name is constructed by concatenating the server
3244 process' NAME and a client identification string.
3245 - If the FILTER argument is non-nil, the client process will not get a
3246 separate process buffer; otherwise, the client's process buffer is a newly
3247 created buffer named after the server process' BUFFER name or process
3248 NAME concatenated with the client identification string.
3249 - The connection type and the process filter and sentinel parameters are
3250 inherited from the server process' TYPE, FILTER and SENTINEL.
3251 - The client process' contact info is set according to the client's
3252 addressing information (typically an IP address and a port number).
3253 - The client process' plist is initialized from the server's plist.
3255 Notice that the FILTER and SENTINEL args are never used directly by
3256 the server process. Also, the BUFFER argument is not used directly by
3257 the server process, but via the optional :log function, accepted (and
3258 failed) connections may be logged in the server process' buffer.
3260 The original argument list, modified with the actual connection
3261 information, is available via the `process-contact' function.
3263 usage: (make-network-process &rest ARGS) */)
3264 (nargs, args)
3265 int nargs;
3266 Lisp_Object *args;
3268 Lisp_Object proc;
3269 Lisp_Object contact;
3270 struct Lisp_Process *p;
3271 #ifdef HAVE_GETADDRINFO
3272 struct addrinfo ai, *res, *lres;
3273 struct addrinfo hints;
3274 char *portstring, portbuf[128];
3275 #else /* HAVE_GETADDRINFO */
3276 struct _emacs_addrinfo
3278 int ai_family;
3279 int ai_socktype;
3280 int ai_protocol;
3281 int ai_addrlen;
3282 struct sockaddr *ai_addr;
3283 struct _emacs_addrinfo *ai_next;
3284 } ai, *res, *lres;
3285 #endif /* HAVE_GETADDRINFO */
3286 struct sockaddr_in address_in;
3287 #ifdef HAVE_LOCAL_SOCKETS
3288 struct sockaddr_un address_un;
3289 #endif
3290 int port;
3291 int ret = 0;
3292 int xerrno = 0;
3293 int s = -1, outch, inch;
3294 struct gcpro gcpro1;
3295 int count = SPECPDL_INDEX ();
3296 int count1;
3297 Lisp_Object QCaddress; /* one of QClocal or QCremote */
3298 Lisp_Object tem;
3299 Lisp_Object name, buffer, host, service, address;
3300 Lisp_Object filter, sentinel;
3301 int is_non_blocking_client = 0;
3302 int is_server = 0, backlog = 5;
3303 int socktype;
3304 int family = -1;
3306 if (nargs == 0)
3307 return Qnil;
3309 /* Save arguments for process-contact and clone-process. */
3310 contact = Flist (nargs, args);
3311 GCPRO1 (contact);
3313 #ifdef WINDOWSNT
3314 /* Ensure socket support is loaded if available. */
3315 init_winsock (TRUE);
3316 #endif
3318 /* :type TYPE (nil: stream, datagram */
3319 tem = Fplist_get (contact, QCtype);
3320 if (NILP (tem))
3321 socktype = SOCK_STREAM;
3322 #ifdef DATAGRAM_SOCKETS
3323 else if (EQ (tem, Qdatagram))
3324 socktype = SOCK_DGRAM;
3325 #endif
3326 #ifdef HAVE_SEQPACKET
3327 else if (EQ (tem, Qseqpacket))
3328 socktype = SOCK_SEQPACKET;
3329 #endif
3330 else
3331 error ("Unsupported connection type");
3333 /* :server BOOL */
3334 tem = Fplist_get (contact, QCserver);
3335 if (!NILP (tem))
3337 /* Don't support network sockets when non-blocking mode is
3338 not available, since a blocked Emacs is not useful. */
3339 #if !defined(O_NONBLOCK) && !defined(O_NDELAY)
3340 error ("Network servers not supported");
3341 #else
3342 is_server = 1;
3343 if (INTEGERP (tem))
3344 backlog = XINT (tem);
3345 #endif
3348 /* Make QCaddress an alias for :local (server) or :remote (client). */
3349 QCaddress = is_server ? QClocal : QCremote;
3351 /* :nowait BOOL */
3352 if (!is_server && socktype != SOCK_DGRAM
3353 && (tem = Fplist_get (contact, QCnowait), !NILP (tem)))
3355 #ifndef NON_BLOCKING_CONNECT
3356 error ("Non-blocking connect not supported");
3357 #else
3358 is_non_blocking_client = 1;
3359 #endif
3362 name = Fplist_get (contact, QCname);
3363 buffer = Fplist_get (contact, QCbuffer);
3364 filter = Fplist_get (contact, QCfilter);
3365 sentinel = Fplist_get (contact, QCsentinel);
3367 CHECK_STRING (name);
3369 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
3370 ai.ai_socktype = socktype;
3371 ai.ai_protocol = 0;
3372 ai.ai_next = NULL;
3373 res = &ai;
3375 /* :local ADDRESS or :remote ADDRESS */
3376 address = Fplist_get (contact, QCaddress);
3377 if (!NILP (address))
3379 host = service = Qnil;
3381 if (!(ai.ai_addrlen = get_lisp_to_sockaddr_size (address, &family)))
3382 error ("Malformed :address");
3383 ai.ai_family = family;
3384 ai.ai_addr = alloca (ai.ai_addrlen);
3385 conv_lisp_to_sockaddr (family, address, ai.ai_addr, ai.ai_addrlen);
3386 goto open_socket;
3389 /* :family FAMILY -- nil (for Inet), local, or integer. */
3390 tem = Fplist_get (contact, QCfamily);
3391 if (NILP (tem))
3393 #if defined(HAVE_GETADDRINFO) && defined(AF_INET6)
3394 family = AF_UNSPEC;
3395 #else
3396 family = AF_INET;
3397 #endif
3399 #ifdef HAVE_LOCAL_SOCKETS
3400 else if (EQ (tem, Qlocal))
3401 family = AF_LOCAL;
3402 #endif
3403 #ifdef AF_INET6
3404 else if (EQ (tem, Qipv6))
3405 family = AF_INET6;
3406 #endif
3407 else if (EQ (tem, Qipv4))
3408 family = AF_INET;
3409 else if (INTEGERP (tem))
3410 family = XINT (tem);
3411 else
3412 error ("Unknown address family");
3414 ai.ai_family = family;
3416 /* :service SERVICE -- string, integer (port number), or t (random port). */
3417 service = Fplist_get (contact, QCservice);
3419 #ifdef HAVE_LOCAL_SOCKETS
3420 if (family == AF_LOCAL)
3422 /* Host is not used. */
3423 host = Qnil;
3424 CHECK_STRING (service);
3425 bzero (&address_un, sizeof address_un);
3426 address_un.sun_family = AF_LOCAL;
3427 strncpy (address_un.sun_path, SDATA (service), sizeof address_un.sun_path);
3428 ai.ai_addr = (struct sockaddr *) &address_un;
3429 ai.ai_addrlen = sizeof address_un;
3430 goto open_socket;
3432 #endif
3434 /* :host HOST -- hostname, ip address, or 'local for localhost. */
3435 host = Fplist_get (contact, QChost);
3436 if (!NILP (host))
3438 if (EQ (host, Qlocal))
3439 host = build_string ("localhost");
3440 CHECK_STRING (host);
3443 /* Slow down polling to every ten seconds.
3444 Some kernels have a bug which causes retrying connect to fail
3445 after a connect. Polling can interfere with gethostbyname too. */
3446 #ifdef POLL_FOR_INPUT
3447 if (socktype != SOCK_DGRAM)
3449 record_unwind_protect (unwind_stop_other_atimers, Qnil);
3450 bind_polling_period (10);
3452 #endif
3454 #ifdef HAVE_GETADDRINFO
3455 /* If we have a host, use getaddrinfo to resolve both host and service.
3456 Otherwise, use getservbyname to lookup the service. */
3457 if (!NILP (host))
3460 /* SERVICE can either be a string or int.
3461 Convert to a C string for later use by getaddrinfo. */
3462 if (EQ (service, Qt))
3463 portstring = "0";
3464 else if (INTEGERP (service))
3466 sprintf (portbuf, "%ld", (long) XINT (service));
3467 portstring = portbuf;
3469 else
3471 CHECK_STRING (service);
3472 portstring = SDATA (service);
3475 immediate_quit = 1;
3476 QUIT;
3477 memset (&hints, 0, sizeof (hints));
3478 hints.ai_flags = 0;
3479 hints.ai_family = family;
3480 hints.ai_socktype = socktype;
3481 hints.ai_protocol = 0;
3483 #ifdef HAVE_RES_INIT
3484 res_init ();
3485 #endif
3487 ret = getaddrinfo (SDATA (host), portstring, &hints, &res);
3488 if (ret)
3489 #ifdef HAVE_GAI_STRERROR
3490 error ("%s/%s %s", SDATA (host), portstring, gai_strerror(ret));
3491 #else
3492 error ("%s/%s getaddrinfo error %d", SDATA (host), portstring, ret);
3493 #endif
3494 immediate_quit = 0;
3496 goto open_socket;
3498 #endif /* HAVE_GETADDRINFO */
3500 /* We end up here if getaddrinfo is not defined, or in case no hostname
3501 has been specified (e.g. for a local server process). */
3503 if (EQ (service, Qt))
3504 port = 0;
3505 else if (INTEGERP (service))
3506 port = htons ((unsigned short) XINT (service));
3507 else
3509 struct servent *svc_info;
3510 CHECK_STRING (service);
3511 svc_info = getservbyname (SDATA (service),
3512 (socktype == SOCK_DGRAM ? "udp" : "tcp"));
3513 if (svc_info == 0)
3514 error ("Unknown service: %s", SDATA (service));
3515 port = svc_info->s_port;
3518 bzero (&address_in, sizeof address_in);
3519 address_in.sin_family = family;
3520 address_in.sin_addr.s_addr = INADDR_ANY;
3521 address_in.sin_port = port;
3523 #ifndef HAVE_GETADDRINFO
3524 if (!NILP (host))
3526 struct hostent *host_info_ptr;
3528 /* gethostbyname may fail with TRY_AGAIN, but we don't honour that,
3529 as it may `hang' Emacs for a very long time. */
3530 immediate_quit = 1;
3531 QUIT;
3533 #ifdef HAVE_RES_INIT
3534 res_init ();
3535 #endif
3537 host_info_ptr = gethostbyname (SDATA (host));
3538 immediate_quit = 0;
3540 if (host_info_ptr)
3542 bcopy (host_info_ptr->h_addr, (char *) &address_in.sin_addr,
3543 host_info_ptr->h_length);
3544 family = host_info_ptr->h_addrtype;
3545 address_in.sin_family = family;
3547 else
3548 /* Attempt to interpret host as numeric inet address */
3550 unsigned long numeric_addr;
3551 numeric_addr = inet_addr ((char *) SDATA (host));
3552 if (numeric_addr == -1)
3553 error ("Unknown host \"%s\"", SDATA (host));
3555 bcopy ((char *)&numeric_addr, (char *) &address_in.sin_addr,
3556 sizeof (address_in.sin_addr));
3560 #endif /* not HAVE_GETADDRINFO */
3562 ai.ai_family = family;
3563 ai.ai_addr = (struct sockaddr *) &address_in;
3564 ai.ai_addrlen = sizeof address_in;
3566 open_socket:
3568 /* Do this in case we never enter the for-loop below. */
3569 count1 = SPECPDL_INDEX ();
3570 s = -1;
3572 for (lres = res; lres; lres = lres->ai_next)
3574 int optn, optbits;
3576 retry_connect:
3578 s = socket (lres->ai_family, lres->ai_socktype, lres->ai_protocol);
3579 if (s < 0)
3581 xerrno = errno;
3582 continue;
3585 #ifdef DATAGRAM_SOCKETS
3586 if (!is_server && socktype == SOCK_DGRAM)
3587 break;
3588 #endif /* DATAGRAM_SOCKETS */
3590 #ifdef NON_BLOCKING_CONNECT
3591 if (is_non_blocking_client)
3593 #ifdef O_NONBLOCK
3594 ret = fcntl (s, F_SETFL, O_NONBLOCK);
3595 #else
3596 ret = fcntl (s, F_SETFL, O_NDELAY);
3597 #endif
3598 if (ret < 0)
3600 xerrno = errno;
3601 emacs_close (s);
3602 s = -1;
3603 continue;
3606 #endif
3608 /* Make us close S if quit. */
3609 record_unwind_protect (close_file_unwind, make_number (s));
3611 /* Parse network options in the arg list.
3612 We simply ignore anything which isn't a known option (including other keywords).
3613 An error is signaled if setting a known option fails. */
3614 for (optn = optbits = 0; optn < nargs-1; optn += 2)
3615 optbits |= set_socket_option (s, args[optn], args[optn+1]);
3617 if (is_server)
3619 /* Configure as a server socket. */
3621 /* SO_REUSEADDR = 1 is default for server sockets; must specify
3622 explicit :reuseaddr key to override this. */
3623 #ifdef HAVE_LOCAL_SOCKETS
3624 if (family != AF_LOCAL)
3625 #endif
3626 if (!(optbits & (1 << OPIX_REUSEADDR)))
3628 int optval = 1;
3629 if (setsockopt (s, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof optval))
3630 report_file_error ("Cannot set reuse option on server socket", Qnil);
3633 if (bind (s, lres->ai_addr, lres->ai_addrlen))
3634 report_file_error ("Cannot bind server socket", Qnil);
3636 #ifdef HAVE_GETSOCKNAME
3637 if (EQ (service, Qt))
3639 struct sockaddr_in sa1;
3640 int len1 = sizeof (sa1);
3641 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3643 ((struct sockaddr_in *)(lres->ai_addr))->sin_port = sa1.sin_port;
3644 service = make_number (ntohs (sa1.sin_port));
3645 contact = Fplist_put (contact, QCservice, service);
3648 #endif
3650 if (socktype != SOCK_DGRAM && listen (s, backlog))
3651 report_file_error ("Cannot listen on server socket", Qnil);
3653 break;
3656 immediate_quit = 1;
3657 QUIT;
3659 ret = connect (s, lres->ai_addr, lres->ai_addrlen);
3660 xerrno = errno;
3662 if (ret == 0 || xerrno == EISCONN)
3664 /* The unwind-protect will be discarded afterwards.
3665 Likewise for immediate_quit. */
3666 break;
3669 #ifdef NON_BLOCKING_CONNECT
3670 #ifdef EINPROGRESS
3671 if (is_non_blocking_client && xerrno == EINPROGRESS)
3672 break;
3673 #else
3674 #ifdef EWOULDBLOCK
3675 if (is_non_blocking_client && xerrno == EWOULDBLOCK)
3676 break;
3677 #endif
3678 #endif
3679 #endif
3681 #ifndef WINDOWSNT
3682 if (xerrno == EINTR)
3684 /* Unlike most other syscalls connect() cannot be called
3685 again. (That would return EALREADY.) The proper way to
3686 wait for completion is select(). */
3687 int sc, len;
3688 SELECT_TYPE fdset;
3689 retry_select:
3690 FD_ZERO (&fdset);
3691 FD_SET (s, &fdset);
3692 QUIT;
3693 sc = select (s + 1, (SELECT_TYPE *)0, &fdset, (SELECT_TYPE *)0,
3694 (EMACS_TIME *)0);
3695 if (sc == -1)
3697 if (errno == EINTR)
3698 goto retry_select;
3699 else
3700 report_file_error ("select failed", Qnil);
3702 eassert (sc > 0);
3704 len = sizeof xerrno;
3705 eassert (FD_ISSET (s, &fdset));
3706 if (getsockopt (s, SOL_SOCKET, SO_ERROR, &xerrno, &len) == -1)
3707 report_file_error ("getsockopt failed", Qnil);
3708 if (xerrno)
3709 errno = xerrno, report_file_error ("error during connect", Qnil);
3710 else
3711 break;
3713 #endif /* !WINDOWSNT */
3715 immediate_quit = 0;
3717 /* Discard the unwind protect closing S. */
3718 specpdl_ptr = specpdl + count1;
3719 emacs_close (s);
3720 s = -1;
3722 #ifdef WINDOWSNT
3723 if (xerrno == EINTR)
3724 goto retry_connect;
3725 #endif
3728 if (s >= 0)
3730 #ifdef DATAGRAM_SOCKETS
3731 if (socktype == SOCK_DGRAM)
3733 if (datagram_address[s].sa)
3734 abort ();
3735 datagram_address[s].sa = (struct sockaddr *) xmalloc (lres->ai_addrlen);
3736 datagram_address[s].len = lres->ai_addrlen;
3737 if (is_server)
3739 Lisp_Object remote;
3740 bzero (datagram_address[s].sa, lres->ai_addrlen);
3741 if (remote = Fplist_get (contact, QCremote), !NILP (remote))
3743 int rfamily, rlen;
3744 rlen = get_lisp_to_sockaddr_size (remote, &rfamily);
3745 if (rfamily == lres->ai_family && rlen == lres->ai_addrlen)
3746 conv_lisp_to_sockaddr (rfamily, remote,
3747 datagram_address[s].sa, rlen);
3750 else
3751 bcopy (lres->ai_addr, datagram_address[s].sa, lres->ai_addrlen);
3753 #endif
3754 contact = Fplist_put (contact, QCaddress,
3755 conv_sockaddr_to_lisp (lres->ai_addr, lres->ai_addrlen));
3756 #ifdef HAVE_GETSOCKNAME
3757 if (!is_server)
3759 struct sockaddr_in sa1;
3760 int len1 = sizeof (sa1);
3761 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3762 contact = Fplist_put (contact, QClocal,
3763 conv_sockaddr_to_lisp (&sa1, len1));
3765 #endif
3768 immediate_quit = 0;
3770 #ifdef HAVE_GETADDRINFO
3771 if (res != &ai)
3773 BLOCK_INPUT;
3774 freeaddrinfo (res);
3775 UNBLOCK_INPUT;
3777 #endif
3779 /* Discard the unwind protect for closing S, if any. */
3780 specpdl_ptr = specpdl + count1;
3782 /* Unwind bind_polling_period and request_sigio. */
3783 unbind_to (count, Qnil);
3785 if (s < 0)
3787 /* If non-blocking got this far - and failed - assume non-blocking is
3788 not supported after all. This is probably a wrong assumption, but
3789 the normal blocking calls to open-network-stream handles this error
3790 better. */
3791 if (is_non_blocking_client)
3792 return Qnil;
3794 errno = xerrno;
3795 if (is_server)
3796 report_file_error ("make server process failed", contact);
3797 else
3798 report_file_error ("make client process failed", contact);
3801 inch = s;
3802 outch = s;
3804 if (!NILP (buffer))
3805 buffer = Fget_buffer_create (buffer);
3806 proc = make_process (name);
3808 chan_process[inch] = proc;
3810 #ifdef O_NONBLOCK
3811 fcntl (inch, F_SETFL, O_NONBLOCK);
3812 #else
3813 #ifdef O_NDELAY
3814 fcntl (inch, F_SETFL, O_NDELAY);
3815 #endif
3816 #endif
3818 p = XPROCESS (proc);
3820 p->childp = contact;
3821 p->plist = Fcopy_sequence (Fplist_get (contact, QCplist));
3822 p->type = Qnetwork;
3824 p->buffer = buffer;
3825 p->sentinel = sentinel;
3826 p->filter = filter;
3827 p->log = Fplist_get (contact, QClog);
3828 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
3829 p->kill_without_query = 1;
3830 if ((tem = Fplist_get (contact, QCstop), !NILP (tem)))
3831 p->command = Qt;
3832 p->pid = 0;
3833 p->infd = inch;
3834 p->outfd = outch;
3835 if (is_server && socktype != SOCK_DGRAM)
3836 p->status = Qlisten;
3838 /* Make the process marker point into the process buffer (if any). */
3839 if (BUFFERP (buffer))
3840 set_marker_both (p->mark, buffer,
3841 BUF_ZV (XBUFFER (buffer)),
3842 BUF_ZV_BYTE (XBUFFER (buffer)));
3844 #ifdef NON_BLOCKING_CONNECT
3845 if (is_non_blocking_client)
3847 /* We may get here if connect did succeed immediately. However,
3848 in that case, we still need to signal this like a non-blocking
3849 connection. */
3850 p->status = Qconnect;
3851 if (!FD_ISSET (inch, &connect_wait_mask))
3853 FD_SET (inch, &connect_wait_mask);
3854 num_pending_connects++;
3857 else
3858 #endif
3859 /* A server may have a client filter setting of Qt, but it must
3860 still listen for incoming connects unless it is stopped. */
3861 if ((!EQ (p->filter, Qt) && !EQ (p->command, Qt))
3862 || (EQ (p->status, Qlisten) && NILP (p->command)))
3864 FD_SET (inch, &input_wait_mask);
3865 FD_SET (inch, &non_keyboard_wait_mask);
3868 if (inch > max_process_desc)
3869 max_process_desc = inch;
3871 tem = Fplist_member (contact, QCcoding);
3872 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
3873 tem = Qnil; /* No error message (too late!). */
3876 /* Setup coding systems for communicating with the network stream. */
3877 struct gcpro gcpro1;
3878 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3879 Lisp_Object coding_systems = Qt;
3880 Lisp_Object args[5], val;
3882 if (!NILP (tem))
3884 val = XCAR (XCDR (tem));
3885 if (CONSP (val))
3886 val = XCAR (val);
3888 else if (!NILP (Vcoding_system_for_read))
3889 val = Vcoding_system_for_read;
3890 else if ((!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters))
3891 || (NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters)))
3892 /* We dare not decode end-of-line format by setting VAL to
3893 Qraw_text, because the existing Emacs Lisp libraries
3894 assume that they receive bare code including a sequene of
3895 CR LF. */
3896 val = Qnil;
3897 else
3899 if (NILP (host) || NILP (service))
3900 coding_systems = Qnil;
3901 else
3903 args[0] = Qopen_network_stream, args[1] = name,
3904 args[2] = buffer, args[3] = host, args[4] = service;
3905 GCPRO1 (proc);
3906 coding_systems = Ffind_operation_coding_system (5, args);
3907 UNGCPRO;
3909 if (CONSP (coding_systems))
3910 val = XCAR (coding_systems);
3911 else if (CONSP (Vdefault_process_coding_system))
3912 val = XCAR (Vdefault_process_coding_system);
3913 else
3914 val = Qnil;
3916 p->decode_coding_system = val;
3918 if (!NILP (tem))
3920 val = XCAR (XCDR (tem));
3921 if (CONSP (val))
3922 val = XCDR (val);
3924 else if (!NILP (Vcoding_system_for_write))
3925 val = Vcoding_system_for_write;
3926 else if (NILP (current_buffer->enable_multibyte_characters))
3927 val = Qnil;
3928 else
3930 if (EQ (coding_systems, Qt))
3932 if (NILP (host) || NILP (service))
3933 coding_systems = Qnil;
3934 else
3936 args[0] = Qopen_network_stream, args[1] = name,
3937 args[2] = buffer, args[3] = host, args[4] = service;
3938 GCPRO1 (proc);
3939 coding_systems = Ffind_operation_coding_system (5, args);
3940 UNGCPRO;
3943 if (CONSP (coding_systems))
3944 val = XCDR (coding_systems);
3945 else if (CONSP (Vdefault_process_coding_system))
3946 val = XCDR (Vdefault_process_coding_system);
3947 else
3948 val = Qnil;
3950 p->encode_coding_system = val;
3952 setup_process_coding_systems (proc);
3954 p->decoding_buf = make_uninit_string (0);
3955 p->decoding_carryover = 0;
3956 p->encoding_buf = make_uninit_string (0);
3958 p->inherit_coding_system_flag
3959 = !(!NILP (tem) || NILP (buffer) || !inherit_process_coding_system);
3961 UNGCPRO;
3962 return proc;
3964 #endif /* HAVE_SOCKETS */
3967 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
3969 #ifdef SIOCGIFCONF
3970 DEFUN ("network-interface-list", Fnetwork_interface_list, Snetwork_interface_list, 0, 0, 0,
3971 doc: /* Return an alist of all network interfaces and their network address.
3972 Each element is a cons, the car of which is a string containing the
3973 interface name, and the cdr is the network address in internal
3974 format; see the description of ADDRESS in `make-network-process'. */)
3977 struct ifconf ifconf;
3978 struct ifreq *ifreqs = NULL;
3979 int ifaces = 0;
3980 int buf_size, s;
3981 Lisp_Object res;
3983 s = socket (AF_INET, SOCK_STREAM, 0);
3984 if (s < 0)
3985 return Qnil;
3987 again:
3988 ifaces += 25;
3989 buf_size = ifaces * sizeof(ifreqs[0]);
3990 ifreqs = (struct ifreq *)xrealloc(ifreqs, buf_size);
3991 if (!ifreqs)
3993 close (s);
3994 return Qnil;
3997 ifconf.ifc_len = buf_size;
3998 ifconf.ifc_req = ifreqs;
3999 if (ioctl (s, SIOCGIFCONF, &ifconf))
4001 close (s);
4002 return Qnil;
4005 if (ifconf.ifc_len == buf_size)
4006 goto again;
4008 close (s);
4009 ifaces = ifconf.ifc_len / sizeof (ifreqs[0]);
4011 res = Qnil;
4012 while (--ifaces >= 0)
4014 struct ifreq *ifq = &ifreqs[ifaces];
4015 char namebuf[sizeof (ifq->ifr_name) + 1];
4016 if (ifq->ifr_addr.sa_family != AF_INET)
4017 continue;
4018 bcopy (ifq->ifr_name, namebuf, sizeof (ifq->ifr_name));
4019 namebuf[sizeof (ifq->ifr_name)] = 0;
4020 res = Fcons (Fcons (build_string (namebuf),
4021 conv_sockaddr_to_lisp (&ifq->ifr_addr,
4022 sizeof (struct sockaddr))),
4023 res);
4026 return res;
4028 #endif /* SIOCGIFCONF */
4030 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
4032 struct ifflag_def {
4033 int flag_bit;
4034 const char *flag_sym;
4037 static const struct ifflag_def ifflag_table[] = {
4038 #ifdef IFF_UP
4039 { IFF_UP, "up" },
4040 #endif
4041 #ifdef IFF_BROADCAST
4042 { IFF_BROADCAST, "broadcast" },
4043 #endif
4044 #ifdef IFF_DEBUG
4045 { IFF_DEBUG, "debug" },
4046 #endif
4047 #ifdef IFF_LOOPBACK
4048 { IFF_LOOPBACK, "loopback" },
4049 #endif
4050 #ifdef IFF_POINTOPOINT
4051 { IFF_POINTOPOINT, "pointopoint" },
4052 #endif
4053 #ifdef IFF_RUNNING
4054 { IFF_RUNNING, "running" },
4055 #endif
4056 #ifdef IFF_NOARP
4057 { IFF_NOARP, "noarp" },
4058 #endif
4059 #ifdef IFF_PROMISC
4060 { IFF_PROMISC, "promisc" },
4061 #endif
4062 #ifdef IFF_NOTRAILERS
4063 { IFF_NOTRAILERS, "notrailers" },
4064 #endif
4065 #ifdef IFF_ALLMULTI
4066 { IFF_ALLMULTI, "allmulti" },
4067 #endif
4068 #ifdef IFF_MASTER
4069 { IFF_MASTER, "master" },
4070 #endif
4071 #ifdef IFF_SLAVE
4072 { IFF_SLAVE, "slave" },
4073 #endif
4074 #ifdef IFF_MULTICAST
4075 { IFF_MULTICAST, "multicast" },
4076 #endif
4077 #ifdef IFF_PORTSEL
4078 { IFF_PORTSEL, "portsel" },
4079 #endif
4080 #ifdef IFF_AUTOMEDIA
4081 { IFF_AUTOMEDIA, "automedia" },
4082 #endif
4083 #ifdef IFF_DYNAMIC
4084 { IFF_DYNAMIC, "dynamic" },
4085 #endif
4086 #ifdef IFF_OACTIVE
4087 { IFF_OACTIVE, "oactive" }, /* OpenBSD: transmission in progress */
4088 #endif
4089 #ifdef IFF_SIMPLEX
4090 { IFF_SIMPLEX, "simplex" }, /* OpenBSD: can't hear own transmissions */
4091 #endif
4092 #ifdef IFF_LINK0
4093 { IFF_LINK0, "link0" }, /* OpenBSD: per link layer defined bit */
4094 #endif
4095 #ifdef IFF_LINK1
4096 { IFF_LINK1, "link1" }, /* OpenBSD: per link layer defined bit */
4097 #endif
4098 #ifdef IFF_LINK2
4099 { IFF_LINK2, "link2" }, /* OpenBSD: per link layer defined bit */
4100 #endif
4101 { 0, 0 }
4104 DEFUN ("network-interface-info", Fnetwork_interface_info, Snetwork_interface_info, 1, 1, 0,
4105 doc: /* Return information about network interface named IFNAME.
4106 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
4107 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
4108 NETMASK is the layer 3 network mask, HWADDR is the layer 2 addres, and
4109 FLAGS is the current flags of the interface. */)
4110 (ifname)
4111 Lisp_Object ifname;
4113 struct ifreq rq;
4114 Lisp_Object res = Qnil;
4115 Lisp_Object elt;
4116 int s;
4117 int any = 0;
4119 CHECK_STRING (ifname);
4121 bzero (rq.ifr_name, sizeof rq.ifr_name);
4122 strncpy (rq.ifr_name, SDATA (ifname), sizeof (rq.ifr_name));
4124 s = socket (AF_INET, SOCK_STREAM, 0);
4125 if (s < 0)
4126 return Qnil;
4128 elt = Qnil;
4129 #if defined(SIOCGIFFLAGS) && defined(HAVE_STRUCT_IFREQ_IFR_FLAGS)
4130 if (ioctl (s, SIOCGIFFLAGS, &rq) == 0)
4132 int flags = rq.ifr_flags;
4133 const struct ifflag_def *fp;
4134 int fnum;
4136 any++;
4137 for (fp = ifflag_table; flags != 0 && fp->flag_sym; fp++)
4139 if (flags & fp->flag_bit)
4141 elt = Fcons (intern (fp->flag_sym), elt);
4142 flags -= fp->flag_bit;
4145 for (fnum = 0; flags && fnum < 32; fnum++)
4147 if (flags & (1 << fnum))
4149 elt = Fcons (make_number (fnum), elt);
4153 #endif
4154 res = Fcons (elt, res);
4156 elt = Qnil;
4157 #if defined(SIOCGIFHWADDR) && defined(HAVE_STRUCT_IFREQ_IFR_HWADDR)
4158 if (ioctl (s, SIOCGIFHWADDR, &rq) == 0)
4160 Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil);
4161 register struct Lisp_Vector *p = XVECTOR (hwaddr);
4162 int n;
4164 any++;
4165 for (n = 0; n < 6; n++)
4166 p->contents[n] = make_number (((unsigned char *)&rq.ifr_hwaddr.sa_data[0])[n]);
4167 elt = Fcons (make_number (rq.ifr_hwaddr.sa_family), hwaddr);
4169 #endif
4170 res = Fcons (elt, res);
4172 elt = Qnil;
4173 #if defined(SIOCGIFNETMASK) && (defined(HAVE_STRUCT_IFREQ_IFR_NETMASK) || defined(HAVE_STRUCT_IFREQ_IFR_ADDR))
4174 if (ioctl (s, SIOCGIFNETMASK, &rq) == 0)
4176 any++;
4177 #ifdef HAVE_STRUCT_IFREQ_IFR_NETMASK
4178 elt = conv_sockaddr_to_lisp (&rq.ifr_netmask, sizeof (rq.ifr_netmask));
4179 #else
4180 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
4181 #endif
4183 #endif
4184 res = Fcons (elt, res);
4186 elt = Qnil;
4187 #if defined(SIOCGIFBRDADDR) && defined(HAVE_STRUCT_IFREQ_IFR_BROADADDR)
4188 if (ioctl (s, SIOCGIFBRDADDR, &rq) == 0)
4190 any++;
4191 elt = conv_sockaddr_to_lisp (&rq.ifr_broadaddr, sizeof (rq.ifr_broadaddr));
4193 #endif
4194 res = Fcons (elt, res);
4196 elt = Qnil;
4197 #if defined(SIOCGIFADDR) && defined(HAVE_STRUCT_IFREQ_IFR_ADDR)
4198 if (ioctl (s, SIOCGIFADDR, &rq) == 0)
4200 any++;
4201 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
4203 #endif
4204 res = Fcons (elt, res);
4206 close (s);
4208 return any ? res : Qnil;
4210 #endif
4211 #endif /* HAVE_SOCKETS */
4213 /* Turn off input and output for process PROC. */
4215 void
4216 deactivate_process (proc)
4217 Lisp_Object proc;
4219 register int inchannel, outchannel;
4220 register struct Lisp_Process *p = XPROCESS (proc);
4222 inchannel = p->infd;
4223 outchannel = p->outfd;
4225 #ifdef ADAPTIVE_READ_BUFFERING
4226 if (p->read_output_delay > 0)
4228 if (--process_output_delay_count < 0)
4229 process_output_delay_count = 0;
4230 p->read_output_delay = 0;
4231 p->read_output_skip = 0;
4233 #endif
4235 if (inchannel >= 0)
4237 /* Beware SIGCHLD hereabouts. */
4238 flush_pending_output (inchannel);
4239 emacs_close (inchannel);
4240 if (outchannel >= 0 && outchannel != inchannel)
4241 emacs_close (outchannel);
4243 p->infd = -1;
4244 p->outfd = -1;
4245 #ifdef DATAGRAM_SOCKETS
4246 if (DATAGRAM_CHAN_P (inchannel))
4248 xfree (datagram_address[inchannel].sa);
4249 datagram_address[inchannel].sa = 0;
4250 datagram_address[inchannel].len = 0;
4252 #endif
4253 chan_process[inchannel] = Qnil;
4254 FD_CLR (inchannel, &input_wait_mask);
4255 FD_CLR (inchannel, &non_keyboard_wait_mask);
4256 #ifdef NON_BLOCKING_CONNECT
4257 if (FD_ISSET (inchannel, &connect_wait_mask))
4259 FD_CLR (inchannel, &connect_wait_mask);
4260 if (--num_pending_connects < 0)
4261 abort ();
4263 #endif
4264 if (inchannel == max_process_desc)
4266 int i;
4267 /* We just closed the highest-numbered process input descriptor,
4268 so recompute the highest-numbered one now. */
4269 max_process_desc = 0;
4270 for (i = 0; i < MAXDESC; i++)
4271 if (!NILP (chan_process[i]))
4272 max_process_desc = i;
4277 /* Close all descriptors currently in use for communication
4278 with subprocess. This is used in a newly-forked subprocess
4279 to get rid of irrelevant descriptors. */
4281 void
4282 close_process_descs ()
4284 #ifndef WINDOWSNT
4285 int i;
4286 for (i = 0; i < MAXDESC; i++)
4288 Lisp_Object process;
4289 process = chan_process[i];
4290 if (!NILP (process))
4292 int in = XPROCESS (process)->infd;
4293 int out = XPROCESS (process)->outfd;
4294 if (in >= 0)
4295 emacs_close (in);
4296 if (out >= 0 && in != out)
4297 emacs_close (out);
4300 #endif
4303 DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
4304 0, 4, 0,
4305 doc: /* Allow any pending output from subprocesses to be read by Emacs.
4306 It is read into the process' buffers or given to their filter functions.
4307 Non-nil arg PROCESS means do not return until some output has been received
4308 from PROCESS.
4310 Non-nil second arg SECONDS and third arg MILLISEC are number of seconds
4311 and milliseconds to wait; return after that much time whether or not
4312 there is any subprocess output. If SECONDS is a floating point number,
4313 it specifies a fractional number of seconds to wait.
4314 The MILLISEC argument is obsolete and should be avoided.
4316 If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
4317 from PROCESS, suspending reading output from other processes.
4318 If JUST-THIS-ONE is an integer, don't run any timers either.
4319 Return non-nil if we received any output before the timeout expired. */)
4320 (process, seconds, millisec, just_this_one)
4321 register Lisp_Object process, seconds, millisec, just_this_one;
4323 int secs, usecs = 0;
4325 if (! NILP (process))
4326 CHECK_PROCESS (process);
4327 else
4328 just_this_one = Qnil;
4330 if (!NILP (millisec))
4331 { /* Obsolete calling convention using integers rather than floats. */
4332 CHECK_NUMBER (millisec);
4333 if (NILP (seconds))
4334 seconds = make_float (XINT (millisec) / 1000.0);
4335 else
4337 CHECK_NUMBER (seconds);
4338 seconds = make_float (XINT (millisec) / 1000.0 + XINT (seconds));
4342 if (!NILP (seconds))
4344 if (INTEGERP (seconds))
4345 secs = XINT (seconds);
4346 else if (FLOATP (seconds))
4348 double timeout = XFLOAT_DATA (seconds);
4349 secs = (int) timeout;
4350 usecs = (int) ((timeout - (double) secs) * 1000000);
4352 else
4353 wrong_type_argument (Qnumberp, seconds);
4355 if (secs < 0 || (secs == 0 && usecs == 0))
4356 secs = -1, usecs = 0;
4358 else
4359 secs = NILP (process) ? -1 : 0;
4361 return
4362 (wait_reading_process_output (secs, usecs, 0, 0,
4363 Qnil,
4364 !NILP (process) ? XPROCESS (process) : NULL,
4365 NILP (just_this_one) ? 0 :
4366 !INTEGERP (just_this_one) ? 1 : -1)
4367 ? Qt : Qnil);
4370 /* Accept a connection for server process SERVER on CHANNEL. */
4372 static int connect_counter = 0;
4374 static void
4375 server_accept_connection (server, channel)
4376 Lisp_Object server;
4377 int channel;
4379 Lisp_Object proc, caller, name, buffer;
4380 Lisp_Object contact, host, service;
4381 struct Lisp_Process *ps= XPROCESS (server);
4382 struct Lisp_Process *p;
4383 int s;
4384 union u_sockaddr {
4385 struct sockaddr sa;
4386 struct sockaddr_in in;
4387 #ifdef AF_INET6
4388 struct sockaddr_in6 in6;
4389 #endif
4390 #ifdef HAVE_LOCAL_SOCKETS
4391 struct sockaddr_un un;
4392 #endif
4393 } saddr;
4394 int len = sizeof saddr;
4396 s = accept (channel, &saddr.sa, &len);
4398 if (s < 0)
4400 int code = errno;
4402 if (code == EAGAIN)
4403 return;
4404 #ifdef EWOULDBLOCK
4405 if (code == EWOULDBLOCK)
4406 return;
4407 #endif
4409 if (!NILP (ps->log))
4410 call3 (ps->log, server, Qnil,
4411 concat3 (build_string ("accept failed with code"),
4412 Fnumber_to_string (make_number (code)),
4413 build_string ("\n")));
4414 return;
4417 connect_counter++;
4419 /* Setup a new process to handle the connection. */
4421 /* Generate a unique identification of the caller, and build contact
4422 information for this process. */
4423 host = Qt;
4424 service = Qnil;
4425 switch (saddr.sa.sa_family)
4427 case AF_INET:
4429 Lisp_Object args[5];
4430 unsigned char *ip = (unsigned char *)&saddr.in.sin_addr.s_addr;
4431 args[0] = build_string ("%d.%d.%d.%d");
4432 args[1] = make_number (*ip++);
4433 args[2] = make_number (*ip++);
4434 args[3] = make_number (*ip++);
4435 args[4] = make_number (*ip++);
4436 host = Fformat (5, args);
4437 service = make_number (ntohs (saddr.in.sin_port));
4439 args[0] = build_string (" <%s:%d>");
4440 args[1] = host;
4441 args[2] = service;
4442 caller = Fformat (3, args);
4444 break;
4446 #ifdef AF_INET6
4447 case AF_INET6:
4449 Lisp_Object args[9];
4450 uint16_t *ip6 = (uint16_t *)&saddr.in6.sin6_addr;
4451 int i;
4452 args[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
4453 for (i = 0; i < 8; i++)
4454 args[i+1] = make_number (ntohs(ip6[i]));
4455 host = Fformat (9, args);
4456 service = make_number (ntohs (saddr.in.sin_port));
4458 args[0] = build_string (" <[%s]:%d>");
4459 args[1] = host;
4460 args[2] = service;
4461 caller = Fformat (3, args);
4463 break;
4464 #endif
4466 #ifdef HAVE_LOCAL_SOCKETS
4467 case AF_LOCAL:
4468 #endif
4469 default:
4470 caller = Fnumber_to_string (make_number (connect_counter));
4471 caller = concat3 (build_string (" <"), caller, build_string (">"));
4472 break;
4475 /* Create a new buffer name for this process if it doesn't have a
4476 filter. The new buffer name is based on the buffer name or
4477 process name of the server process concatenated with the caller
4478 identification. */
4480 if (!NILP (ps->filter) && !EQ (ps->filter, Qt))
4481 buffer = Qnil;
4482 else
4484 buffer = ps->buffer;
4485 if (!NILP (buffer))
4486 buffer = Fbuffer_name (buffer);
4487 else
4488 buffer = ps->name;
4489 if (!NILP (buffer))
4491 buffer = concat2 (buffer, caller);
4492 buffer = Fget_buffer_create (buffer);
4496 /* Generate a unique name for the new server process. Combine the
4497 server process name with the caller identification. */
4499 name = concat2 (ps->name, caller);
4500 proc = make_process (name);
4502 chan_process[s] = proc;
4504 #ifdef O_NONBLOCK
4505 fcntl (s, F_SETFL, O_NONBLOCK);
4506 #else
4507 #ifdef O_NDELAY
4508 fcntl (s, F_SETFL, O_NDELAY);
4509 #endif
4510 #endif
4512 p = XPROCESS (proc);
4514 /* Build new contact information for this setup. */
4515 contact = Fcopy_sequence (ps->childp);
4516 contact = Fplist_put (contact, QCserver, Qnil);
4517 contact = Fplist_put (contact, QChost, host);
4518 if (!NILP (service))
4519 contact = Fplist_put (contact, QCservice, service);
4520 contact = Fplist_put (contact, QCremote,
4521 conv_sockaddr_to_lisp (&saddr.sa, len));
4522 #ifdef HAVE_GETSOCKNAME
4523 len = sizeof saddr;
4524 if (getsockname (s, &saddr.sa, &len) == 0)
4525 contact = Fplist_put (contact, QClocal,
4526 conv_sockaddr_to_lisp (&saddr.sa, len));
4527 #endif
4529 p->childp = contact;
4530 p->plist = Fcopy_sequence (ps->plist);
4531 p->type = Qnetwork;
4533 p->buffer = buffer;
4534 p->sentinel = ps->sentinel;
4535 p->filter = ps->filter;
4536 p->command = Qnil;
4537 p->pid = 0;
4538 p->infd = s;
4539 p->outfd = s;
4540 p->status = Qrun;
4542 /* Client processes for accepted connections are not stopped initially. */
4543 if (!EQ (p->filter, Qt))
4545 FD_SET (s, &input_wait_mask);
4546 FD_SET (s, &non_keyboard_wait_mask);
4549 if (s > max_process_desc)
4550 max_process_desc = s;
4552 /* Setup coding system for new process based on server process.
4553 This seems to be the proper thing to do, as the coding system
4554 of the new process should reflect the settings at the time the
4555 server socket was opened; not the current settings. */
4557 p->decode_coding_system = ps->decode_coding_system;
4558 p->encode_coding_system = ps->encode_coding_system;
4559 setup_process_coding_systems (proc);
4561 p->decoding_buf = make_uninit_string (0);
4562 p->decoding_carryover = 0;
4563 p->encoding_buf = make_uninit_string (0);
4565 p->inherit_coding_system_flag
4566 = (NILP (buffer) ? 0 : ps->inherit_coding_system_flag);
4568 if (!NILP (ps->log))
4569 call3 (ps->log, server, proc,
4570 concat3 (build_string ("accept from "),
4571 (STRINGP (host) ? host : build_string ("-")),
4572 build_string ("\n")));
4574 if (!NILP (p->sentinel))
4575 exec_sentinel (proc,
4576 concat3 (build_string ("open from "),
4577 (STRINGP (host) ? host : build_string ("-")),
4578 build_string ("\n")));
4581 /* This variable is different from waiting_for_input in keyboard.c.
4582 It is used to communicate to a lisp process-filter/sentinel (via the
4583 function Fwaiting_for_user_input_p below) whether Emacs was waiting
4584 for user-input when that process-filter was called.
4585 waiting_for_input cannot be used as that is by definition 0 when
4586 lisp code is being evalled.
4587 This is also used in record_asynch_buffer_change.
4588 For that purpose, this must be 0
4589 when not inside wait_reading_process_output. */
4590 static int waiting_for_user_input_p;
4592 static Lisp_Object
4593 wait_reading_process_output_unwind (data)
4594 Lisp_Object data;
4596 waiting_for_user_input_p = XINT (data);
4597 return Qnil;
4600 /* This is here so breakpoints can be put on it. */
4601 static void
4602 wait_reading_process_output_1 ()
4606 /* Use a wrapper around select to work around a bug in gdb 5.3.
4607 Normally, the wrapper is optimized away by inlining.
4609 If emacs is stopped inside select, the gdb backtrace doesn't
4610 show the function which called select, so it is practically
4611 impossible to step through wait_reading_process_output. */
4613 #ifndef select
4614 static INLINE int
4615 select_wrapper (n, rfd, wfd, xfd, tmo)
4616 int n;
4617 SELECT_TYPE *rfd, *wfd, *xfd;
4618 EMACS_TIME *tmo;
4620 return select (n, rfd, wfd, xfd, tmo);
4622 #define select select_wrapper
4623 #endif
4625 /* Read and dispose of subprocess output while waiting for timeout to
4626 elapse and/or keyboard input to be available.
4628 TIME_LIMIT is:
4629 timeout in seconds, or
4630 zero for no limit, or
4631 -1 means gobble data immediately available but don't wait for any.
4633 MICROSECS is:
4634 an additional duration to wait, measured in microseconds.
4635 If this is nonzero and time_limit is 0, then the timeout
4636 consists of MICROSECS only.
4638 READ_KBD is a lisp value:
4639 0 to ignore keyboard input, or
4640 1 to return when input is available, or
4641 -1 meaning caller will actually read the input, so don't throw to
4642 the quit handler, or
4644 DO_DISPLAY != 0 means redisplay should be done to show subprocess
4645 output that arrives.
4647 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4648 (and gobble terminal input into the buffer if any arrives).
4650 If WAIT_PROC is specified, wait until something arrives from that
4651 process. The return value is true if we read some input from
4652 that process.
4654 If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC
4655 (suspending output from other processes). A negative value
4656 means don't run any timers either.
4658 If WAIT_PROC is specified, then the function returns true if we
4659 received input from that process before the timeout elapsed.
4660 Otherwise, return true if we received input from any process. */
4663 wait_reading_process_output (time_limit, microsecs, read_kbd, do_display,
4664 wait_for_cell, wait_proc, just_wait_proc)
4665 int time_limit, microsecs, read_kbd, do_display;
4666 Lisp_Object wait_for_cell;
4667 struct Lisp_Process *wait_proc;
4668 int just_wait_proc;
4670 register int channel, nfds;
4671 SELECT_TYPE Available;
4672 #ifdef NON_BLOCKING_CONNECT
4673 SELECT_TYPE Connecting;
4674 int check_connect;
4675 #endif
4676 int check_delay, no_avail;
4677 int xerrno;
4678 Lisp_Object proc;
4679 EMACS_TIME timeout, end_time;
4680 int wait_channel = -1;
4681 int got_some_input = 0;
4682 int count = SPECPDL_INDEX ();
4684 FD_ZERO (&Available);
4685 #ifdef NON_BLOCKING_CONNECT
4686 FD_ZERO (&Connecting);
4687 #endif
4689 /* If wait_proc is a process to watch, set wait_channel accordingly. */
4690 if (wait_proc != NULL)
4691 wait_channel = wait_proc->infd;
4693 record_unwind_protect (wait_reading_process_output_unwind,
4694 make_number (waiting_for_user_input_p));
4695 waiting_for_user_input_p = read_kbd;
4697 /* Since we may need to wait several times,
4698 compute the absolute time to return at. */
4699 if (time_limit || microsecs)
4701 EMACS_GET_TIME (end_time);
4702 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
4703 EMACS_ADD_TIME (end_time, end_time, timeout);
4706 while (1)
4708 int timeout_reduced_for_timers = 0;
4710 /* If calling from keyboard input, do not quit
4711 since we want to return C-g as an input character.
4712 Otherwise, do pending quit if requested. */
4713 if (read_kbd >= 0)
4714 QUIT;
4715 #ifdef SYNC_INPUT
4716 else
4717 process_pending_signals ();
4718 #endif
4720 /* Exit now if the cell we're waiting for became non-nil. */
4721 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4722 break;
4724 /* Compute time from now till when time limit is up */
4725 /* Exit if already run out */
4726 if (time_limit == -1)
4728 /* -1 specified for timeout means
4729 gobble output available now
4730 but don't wait at all. */
4732 EMACS_SET_SECS_USECS (timeout, 0, 0);
4734 else if (time_limit || microsecs)
4736 EMACS_GET_TIME (timeout);
4737 EMACS_SUB_TIME (timeout, end_time, timeout);
4738 if (EMACS_TIME_NEG_P (timeout))
4739 break;
4741 else
4743 EMACS_SET_SECS_USECS (timeout, 100000, 0);
4746 /* Normally we run timers here.
4747 But not if wait_for_cell; in those cases,
4748 the wait is supposed to be short,
4749 and those callers cannot handle running arbitrary Lisp code here. */
4750 if (NILP (wait_for_cell)
4751 && just_wait_proc >= 0)
4753 EMACS_TIME timer_delay;
4757 int old_timers_run = timers_run;
4758 struct buffer *old_buffer = current_buffer;
4759 Lisp_Object old_window = selected_window;
4761 timer_delay = timer_check (1);
4763 /* If a timer has run, this might have changed buffers
4764 an alike. Make read_key_sequence aware of that. */
4765 if (timers_run != old_timers_run
4766 && (old_buffer != current_buffer
4767 || !EQ (old_window, selected_window))
4768 && waiting_for_user_input_p == -1)
4769 record_asynch_buffer_change ();
4771 if (timers_run != old_timers_run && do_display)
4772 /* We must retry, since a timer may have requeued itself
4773 and that could alter the time_delay. */
4774 redisplay_preserve_echo_area (9);
4775 else
4776 break;
4778 while (!detect_input_pending ());
4780 /* If there is unread keyboard input, also return. */
4781 if (read_kbd != 0
4782 && requeued_events_pending_p ())
4783 break;
4785 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
4787 EMACS_TIME difference;
4788 EMACS_SUB_TIME (difference, timer_delay, timeout);
4789 if (EMACS_TIME_NEG_P (difference))
4791 timeout = timer_delay;
4792 timeout_reduced_for_timers = 1;
4795 /* If time_limit is -1, we are not going to wait at all. */
4796 else if (time_limit != -1)
4798 /* This is so a breakpoint can be put here. */
4799 wait_reading_process_output_1 ();
4803 /* Cause C-g and alarm signals to take immediate action,
4804 and cause input available signals to zero out timeout.
4806 It is important that we do this before checking for process
4807 activity. If we get a SIGCHLD after the explicit checks for
4808 process activity, timeout is the only way we will know. */
4809 if (read_kbd < 0)
4810 set_waiting_for_input (&timeout);
4812 /* If status of something has changed, and no input is
4813 available, notify the user of the change right away. After
4814 this explicit check, we'll let the SIGCHLD handler zap
4815 timeout to get our attention. */
4816 if (update_tick != process_tick)
4818 SELECT_TYPE Atemp;
4819 #ifdef NON_BLOCKING_CONNECT
4820 SELECT_TYPE Ctemp;
4821 #endif
4823 if (kbd_on_hold_p ())
4824 FD_ZERO (&Atemp);
4825 else
4826 Atemp = input_wait_mask;
4828 IF_NON_BLOCKING_CONNECT (Ctemp = connect_wait_mask);
4830 EMACS_SET_SECS_USECS (timeout, 0, 0);
4831 if ((select (max (max (max_process_desc, max_keyboard_desc),
4832 max_gpm_desc) + 1,
4833 &Atemp,
4834 #ifdef NON_BLOCKING_CONNECT
4835 (num_pending_connects > 0 ? &Ctemp : (SELECT_TYPE *)0),
4836 #else
4837 (SELECT_TYPE *)0,
4838 #endif
4839 (SELECT_TYPE *)0, &timeout)
4840 <= 0))
4842 /* It's okay for us to do this and then continue with
4843 the loop, since timeout has already been zeroed out. */
4844 clear_waiting_for_input ();
4845 status_notify (NULL);
4846 if (do_display) redisplay_preserve_echo_area (13);
4850 /* Don't wait for output from a non-running process. Just
4851 read whatever data has already been received. */
4852 if (wait_proc && wait_proc->raw_status_new)
4853 update_status (wait_proc);
4854 if (wait_proc
4855 && ! EQ (wait_proc->status, Qrun)
4856 && ! EQ (wait_proc->status, Qconnect))
4858 int nread, total_nread = 0;
4860 clear_waiting_for_input ();
4861 XSETPROCESS (proc, wait_proc);
4863 /* Read data from the process, until we exhaust it. */
4864 while (wait_proc->infd >= 0)
4866 nread = read_process_output (proc, wait_proc->infd);
4868 if (nread == 0)
4869 break;
4871 if (0 < nread)
4873 total_nread += nread;
4874 got_some_input = 1;
4876 #ifdef EIO
4877 else if (nread == -1 && EIO == errno)
4878 break;
4879 #endif
4880 #ifdef EAGAIN
4881 else if (nread == -1 && EAGAIN == errno)
4882 break;
4883 #endif
4884 #ifdef EWOULDBLOCK
4885 else if (nread == -1 && EWOULDBLOCK == errno)
4886 break;
4887 #endif
4889 if (total_nread > 0 && do_display)
4890 redisplay_preserve_echo_area (10);
4892 break;
4895 /* Wait till there is something to do */
4897 if (wait_proc && just_wait_proc)
4899 if (wait_proc->infd < 0) /* Terminated */
4900 break;
4901 FD_SET (wait_proc->infd, &Available);
4902 check_delay = 0;
4903 IF_NON_BLOCKING_CONNECT (check_connect = 0);
4905 else if (!NILP (wait_for_cell))
4907 Available = non_process_wait_mask;
4908 check_delay = 0;
4909 IF_NON_BLOCKING_CONNECT (check_connect = 0);
4911 else
4913 if (! read_kbd)
4914 Available = non_keyboard_wait_mask;
4915 else
4916 Available = input_wait_mask;
4917 IF_NON_BLOCKING_CONNECT (check_connect = (num_pending_connects > 0));
4918 check_delay = wait_channel >= 0 ? 0 : process_output_delay_count;
4921 /* If frame size has changed or the window is newly mapped,
4922 redisplay now, before we start to wait. There is a race
4923 condition here; if a SIGIO arrives between now and the select
4924 and indicates that a frame is trashed, the select may block
4925 displaying a trashed screen. */
4926 if (frame_garbaged && do_display)
4928 clear_waiting_for_input ();
4929 redisplay_preserve_echo_area (11);
4930 if (read_kbd < 0)
4931 set_waiting_for_input (&timeout);
4934 no_avail = 0;
4935 if (read_kbd && detect_input_pending ())
4937 nfds = 0;
4938 no_avail = 1;
4940 else
4942 #ifdef NON_BLOCKING_CONNECT
4943 if (check_connect)
4944 Connecting = connect_wait_mask;
4945 #endif
4947 #ifdef ADAPTIVE_READ_BUFFERING
4948 /* Set the timeout for adaptive read buffering if any
4949 process has non-zero read_output_skip and non-zero
4950 read_output_delay, and we are not reading output for a
4951 specific wait_channel. It is not executed if
4952 Vprocess_adaptive_read_buffering is nil. */
4953 if (process_output_skip && check_delay > 0)
4955 int usecs = EMACS_USECS (timeout);
4956 if (EMACS_SECS (timeout) > 0 || usecs > READ_OUTPUT_DELAY_MAX)
4957 usecs = READ_OUTPUT_DELAY_MAX;
4958 for (channel = 0; check_delay > 0 && channel <= max_process_desc; channel++)
4960 proc = chan_process[channel];
4961 if (NILP (proc))
4962 continue;
4963 /* Find minimum non-zero read_output_delay among the
4964 processes with non-zero read_output_skip. */
4965 if (XPROCESS (proc)->read_output_delay > 0)
4967 check_delay--;
4968 if (!XPROCESS (proc)->read_output_skip)
4969 continue;
4970 FD_CLR (channel, &Available);
4971 XPROCESS (proc)->read_output_skip = 0;
4972 if (XPROCESS (proc)->read_output_delay < usecs)
4973 usecs = XPROCESS (proc)->read_output_delay;
4976 EMACS_SET_SECS_USECS (timeout, 0, usecs);
4977 process_output_skip = 0;
4979 #endif
4980 #if defined (USE_GTK) || defined (HAVE_GCONF)
4981 nfds = xg_select
4982 #elif defined (HAVE_NS)
4983 nfds = ns_select
4984 #else
4985 nfds = select
4986 #endif
4987 (max (max (max_process_desc, max_keyboard_desc),
4988 max_gpm_desc) + 1,
4989 &Available,
4990 #ifdef NON_BLOCKING_CONNECT
4991 (check_connect ? &Connecting : (SELECT_TYPE *)0),
4992 #else
4993 (SELECT_TYPE *)0,
4994 #endif
4995 (SELECT_TYPE *)0, &timeout);
4998 xerrno = errno;
5000 /* Make C-g and alarm signals set flags again */
5001 clear_waiting_for_input ();
5003 /* If we woke up due to SIGWINCH, actually change size now. */
5004 do_pending_window_change (0);
5006 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
5007 /* We wanted the full specified time, so return now. */
5008 break;
5009 if (nfds < 0)
5011 if (xerrno == EINTR)
5012 no_avail = 1;
5013 else if (xerrno == EBADF)
5015 #ifdef AIX
5016 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
5017 the child's closure of the pts gives the parent a SIGHUP, and
5018 the ptc file descriptor is automatically closed,
5019 yielding EBADF here or at select() call above.
5020 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
5021 in m/ibmrt-aix.h), and here we just ignore the select error.
5022 Cleanup occurs c/o status_notify after SIGCLD. */
5023 no_avail = 1; /* Cannot depend on values returned */
5024 #else
5025 abort ();
5026 #endif
5028 else
5029 error ("select error: %s", emacs_strerror (xerrno));
5032 if (no_avail)
5034 FD_ZERO (&Available);
5035 IF_NON_BLOCKING_CONNECT (check_connect = 0);
5038 #if 0 /* When polling is used, interrupt_input is 0,
5039 so get_input_pending should read the input.
5040 So this should not be needed. */
5041 /* If we are using polling for input,
5042 and we see input available, make it get read now.
5043 Otherwise it might not actually get read for a second.
5044 And on hpux, since we turn off polling in wait_reading_process_output,
5045 it might never get read at all if we don't spend much time
5046 outside of wait_reading_process_output. */
5047 if (read_kbd && interrupt_input
5048 && keyboard_bit_set (&Available)
5049 && input_polling_used ())
5050 kill (getpid (), SIGALRM);
5051 #endif
5053 /* Check for keyboard input */
5054 /* If there is any, return immediately
5055 to give it higher priority than subprocesses */
5057 if (read_kbd != 0)
5059 int old_timers_run = timers_run;
5060 struct buffer *old_buffer = current_buffer;
5061 Lisp_Object old_window = selected_window;
5062 int leave = 0;
5064 if (detect_input_pending_run_timers (do_display))
5066 swallow_events (do_display);
5067 if (detect_input_pending_run_timers (do_display))
5068 leave = 1;
5071 /* If a timer has run, this might have changed buffers
5072 an alike. Make read_key_sequence aware of that. */
5073 if (timers_run != old_timers_run
5074 && waiting_for_user_input_p == -1
5075 && (old_buffer != current_buffer
5076 || !EQ (old_window, selected_window)))
5077 record_asynch_buffer_change ();
5079 if (leave)
5080 break;
5083 /* If there is unread keyboard input, also return. */
5084 if (read_kbd != 0
5085 && requeued_events_pending_p ())
5086 break;
5088 /* If we are not checking for keyboard input now,
5089 do process events (but don't run any timers).
5090 This is so that X events will be processed.
5091 Otherwise they may have to wait until polling takes place.
5092 That would causes delays in pasting selections, for example.
5094 (We used to do this only if wait_for_cell.) */
5095 if (read_kbd == 0 && detect_input_pending ())
5097 swallow_events (do_display);
5098 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
5099 if (detect_input_pending ())
5100 break;
5101 #endif
5104 /* Exit now if the cell we're waiting for became non-nil. */
5105 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
5106 break;
5108 #ifdef SIGIO
5109 /* If we think we have keyboard input waiting, but didn't get SIGIO,
5110 go read it. This can happen with X on BSD after logging out.
5111 In that case, there really is no input and no SIGIO,
5112 but select says there is input. */
5114 if (read_kbd && interrupt_input
5115 && keyboard_bit_set (&Available) && ! noninteractive)
5116 kill (getpid (), SIGIO);
5117 #endif
5119 if (! wait_proc)
5120 got_some_input |= nfds > 0;
5122 /* If checking input just got us a size-change event from X,
5123 obey it now if we should. */
5124 if (read_kbd || ! NILP (wait_for_cell))
5125 do_pending_window_change (0);
5127 /* Check for data from a process. */
5128 if (no_avail || nfds == 0)
5129 continue;
5131 /* Really FIRST_PROC_DESC should be 0 on Unix,
5132 but this is safer in the short run. */
5133 for (channel = 0; channel <= max_process_desc; channel++)
5135 if (FD_ISSET (channel, &Available)
5136 && FD_ISSET (channel, &non_keyboard_wait_mask))
5138 int nread;
5140 /* If waiting for this channel, arrange to return as
5141 soon as no more input to be processed. No more
5142 waiting. */
5143 if (wait_channel == channel)
5145 wait_channel = -1;
5146 time_limit = -1;
5147 got_some_input = 1;
5149 proc = chan_process[channel];
5150 if (NILP (proc))
5151 continue;
5153 /* If this is a server stream socket, accept connection. */
5154 if (EQ (XPROCESS (proc)->status, Qlisten))
5156 server_accept_connection (proc, channel);
5157 continue;
5160 /* Read data from the process, starting with our
5161 buffered-ahead character if we have one. */
5163 nread = read_process_output (proc, channel);
5164 if (nread > 0)
5166 /* Since read_process_output can run a filter,
5167 which can call accept-process-output,
5168 don't try to read from any other processes
5169 before doing the select again. */
5170 FD_ZERO (&Available);
5172 if (do_display)
5173 redisplay_preserve_echo_area (12);
5175 #ifdef EWOULDBLOCK
5176 else if (nread == -1 && errno == EWOULDBLOCK)
5178 #endif
5179 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
5180 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
5181 #ifdef O_NONBLOCK
5182 else if (nread == -1 && errno == EAGAIN)
5184 #else
5185 #ifdef O_NDELAY
5186 else if (nread == -1 && errno == EAGAIN)
5188 /* Note that we cannot distinguish between no input
5189 available now and a closed pipe.
5190 With luck, a closed pipe will be accompanied by
5191 subprocess termination and SIGCHLD. */
5192 else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc))
5194 #endif /* O_NDELAY */
5195 #endif /* O_NONBLOCK */
5196 #ifdef HAVE_PTYS
5197 /* On some OSs with ptys, when the process on one end of
5198 a pty exits, the other end gets an error reading with
5199 errno = EIO instead of getting an EOF (0 bytes read).
5200 Therefore, if we get an error reading and errno =
5201 EIO, just continue, because the child process has
5202 exited and should clean itself up soon (e.g. when we
5203 get a SIGCHLD).
5205 However, it has been known to happen that the SIGCHLD
5206 got lost. So raise the signal again just in case.
5207 It can't hurt. */
5208 else if (nread == -1 && errno == EIO)
5210 /* Clear the descriptor now, so we only raise the
5211 signal once. Don't do this if `process' is only
5212 a pty. */
5213 if (XPROCESS (proc)->pid != -2)
5215 FD_CLR (channel, &input_wait_mask);
5216 FD_CLR (channel, &non_keyboard_wait_mask);
5218 kill (getpid (), SIGCHLD);
5221 #endif /* HAVE_PTYS */
5222 /* If we can detect process termination, don't consider the process
5223 gone just because its pipe is closed. */
5224 #ifdef SIGCHLD
5225 else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc))
5227 #endif
5228 else
5230 /* Preserve status of processes already terminated. */
5231 XPROCESS (proc)->tick = ++process_tick;
5232 deactivate_process (proc);
5233 if (XPROCESS (proc)->raw_status_new)
5234 update_status (XPROCESS (proc));
5235 if (EQ (XPROCESS (proc)->status, Qrun))
5236 XPROCESS (proc)->status
5237 = Fcons (Qexit, Fcons (make_number (256), Qnil));
5240 #ifdef NON_BLOCKING_CONNECT
5241 if (check_connect && FD_ISSET (channel, &Connecting)
5242 && FD_ISSET (channel, &connect_wait_mask))
5244 struct Lisp_Process *p;
5246 FD_CLR (channel, &connect_wait_mask);
5247 if (--num_pending_connects < 0)
5248 abort ();
5250 proc = chan_process[channel];
5251 if (NILP (proc))
5252 continue;
5254 p = XPROCESS (proc);
5256 #ifdef GNU_LINUX
5257 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
5258 So only use it on systems where it is known to work. */
5260 int xlen = sizeof(xerrno);
5261 if (getsockopt(channel, SOL_SOCKET, SO_ERROR, &xerrno, &xlen))
5262 xerrno = errno;
5264 #else
5266 struct sockaddr pname;
5267 int pnamelen = sizeof(pname);
5269 /* If connection failed, getpeername will fail. */
5270 xerrno = 0;
5271 if (getpeername(channel, &pname, &pnamelen) < 0)
5273 /* Obtain connect failure code through error slippage. */
5274 char dummy;
5275 xerrno = errno;
5276 if (errno == ENOTCONN && read(channel, &dummy, 1) < 0)
5277 xerrno = errno;
5280 #endif
5281 if (xerrno)
5283 p->tick = ++process_tick;
5284 p->status = Fcons (Qfailed, Fcons (make_number (xerrno), Qnil));
5285 deactivate_process (proc);
5287 else
5289 p->status = Qrun;
5290 /* Execute the sentinel here. If we had relied on
5291 status_notify to do it later, it will read input
5292 from the process before calling the sentinel. */
5293 exec_sentinel (proc, build_string ("open\n"));
5294 if (!EQ (p->filter, Qt) && !EQ (p->command, Qt))
5296 FD_SET (p->infd, &input_wait_mask);
5297 FD_SET (p->infd, &non_keyboard_wait_mask);
5301 #endif /* NON_BLOCKING_CONNECT */
5302 } /* end for each file descriptor */
5303 } /* end while exit conditions not met */
5305 unbind_to (count, Qnil);
5307 /* If calling from keyboard input, do not quit
5308 since we want to return C-g as an input character.
5309 Otherwise, do pending quit if requested. */
5310 if (read_kbd >= 0)
5312 /* Prevent input_pending from remaining set if we quit. */
5313 clear_input_pending ();
5314 QUIT;
5317 return got_some_input;
5320 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
5322 static Lisp_Object
5323 read_process_output_call (fun_and_args)
5324 Lisp_Object fun_and_args;
5326 return apply1 (XCAR (fun_and_args), XCDR (fun_and_args));
5329 static Lisp_Object
5330 read_process_output_error_handler (error)
5331 Lisp_Object error;
5333 cmd_error_internal (error, "error in process filter: ");
5334 Vinhibit_quit = Qt;
5335 update_echo_area ();
5336 Fsleep_for (make_number (2), Qnil);
5337 return Qt;
5340 /* Read pending output from the process channel,
5341 starting with our buffered-ahead character if we have one.
5342 Yield number of decoded characters read.
5344 This function reads at most 4096 characters.
5345 If you want to read all available subprocess output,
5346 you must call it repeatedly until it returns zero.
5348 The characters read are decoded according to PROC's coding-system
5349 for decoding. */
5351 static int
5352 read_process_output (proc, channel)
5353 Lisp_Object proc;
5354 register int channel;
5356 register int nbytes;
5357 char *chars;
5358 register Lisp_Object outstream;
5359 register struct Lisp_Process *p = XPROCESS (proc);
5360 register int opoint;
5361 struct coding_system *coding = proc_decode_coding_system[channel];
5362 int carryover = p->decoding_carryover;
5363 int readmax = 4096;
5365 chars = (char *) alloca (carryover + readmax);
5366 if (carryover)
5367 /* See the comment above. */
5368 bcopy (SDATA (p->decoding_buf), chars, carryover);
5370 #ifdef DATAGRAM_SOCKETS
5371 /* We have a working select, so proc_buffered_char is always -1. */
5372 if (DATAGRAM_CHAN_P (channel))
5374 int len = datagram_address[channel].len;
5375 nbytes = recvfrom (channel, chars + carryover, readmax,
5376 0, datagram_address[channel].sa, &len);
5378 else
5379 #endif
5380 if (proc_buffered_char[channel] < 0)
5382 nbytes = emacs_read (channel, chars + carryover, readmax);
5383 #ifdef ADAPTIVE_READ_BUFFERING
5384 if (nbytes > 0 && p->adaptive_read_buffering)
5386 int delay = p->read_output_delay;
5387 if (nbytes < 256)
5389 if (delay < READ_OUTPUT_DELAY_MAX_MAX)
5391 if (delay == 0)
5392 process_output_delay_count++;
5393 delay += READ_OUTPUT_DELAY_INCREMENT * 2;
5396 else if (delay > 0 && (nbytes == readmax))
5398 delay -= READ_OUTPUT_DELAY_INCREMENT;
5399 if (delay == 0)
5400 process_output_delay_count--;
5402 p->read_output_delay = delay;
5403 if (delay)
5405 p->read_output_skip = 1;
5406 process_output_skip = 1;
5409 #endif
5411 else
5413 chars[carryover] = proc_buffered_char[channel];
5414 proc_buffered_char[channel] = -1;
5415 nbytes = emacs_read (channel, chars + carryover + 1, readmax - 1);
5416 if (nbytes < 0)
5417 nbytes = 1;
5418 else
5419 nbytes = nbytes + 1;
5422 p->decoding_carryover = 0;
5424 /* At this point, NBYTES holds number of bytes just received
5425 (including the one in proc_buffered_char[channel]). */
5426 if (nbytes <= 0)
5428 if (nbytes < 0 || coding->mode & CODING_MODE_LAST_BLOCK)
5429 return nbytes;
5430 coding->mode |= CODING_MODE_LAST_BLOCK;
5433 /* Now set NBYTES how many bytes we must decode. */
5434 nbytes += carryover;
5436 /* Read and dispose of the process output. */
5437 outstream = p->filter;
5438 if (!NILP (outstream))
5440 /* We inhibit quit here instead of just catching it so that
5441 hitting ^G when a filter happens to be running won't screw
5442 it up. */
5443 int count = SPECPDL_INDEX ();
5444 Lisp_Object odeactivate;
5445 Lisp_Object obuffer, okeymap;
5446 Lisp_Object text;
5447 int outer_running_asynch_code = running_asynch_code;
5448 int waiting = waiting_for_user_input_p;
5450 /* No need to gcpro these, because all we do with them later
5451 is test them for EQness, and none of them should be a string. */
5452 odeactivate = Vdeactivate_mark;
5453 XSETBUFFER (obuffer, current_buffer);
5454 okeymap = current_buffer->keymap;
5456 specbind (Qinhibit_quit, Qt);
5457 specbind (Qlast_nonmenu_event, Qt);
5459 /* In case we get recursively called,
5460 and we already saved the match data nonrecursively,
5461 save the same match data in safely recursive fashion. */
5462 if (outer_running_asynch_code)
5464 Lisp_Object tem;
5465 /* Don't clobber the CURRENT match data, either! */
5466 tem = Fmatch_data (Qnil, Qnil, Qnil);
5467 restore_search_regs ();
5468 record_unwind_save_match_data ();
5469 Fset_match_data (tem, Qt);
5472 /* For speed, if a search happens within this code,
5473 save the match data in a special nonrecursive fashion. */
5474 running_asynch_code = 1;
5476 decode_coding_c_string (coding, chars, nbytes, Qt);
5477 text = coding->dst_object;
5478 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5479 /* A new coding system might be found. */
5480 if (!EQ (p->decode_coding_system, Vlast_coding_system_used))
5482 p->decode_coding_system = Vlast_coding_system_used;
5484 /* Don't call setup_coding_system for
5485 proc_decode_coding_system[channel] here. It is done in
5486 detect_coding called via decode_coding above. */
5488 /* If a coding system for encoding is not yet decided, we set
5489 it as the same as coding-system for decoding.
5491 But, before doing that we must check if
5492 proc_encode_coding_system[p->outfd] surely points to a
5493 valid memory because p->outfd will be changed once EOF is
5494 sent to the process. */
5495 if (NILP (p->encode_coding_system)
5496 && proc_encode_coding_system[p->outfd])
5498 p->encode_coding_system
5499 = coding_inherit_eol_type (Vlast_coding_system_used, Qnil);
5500 setup_coding_system (p->encode_coding_system,
5501 proc_encode_coding_system[p->outfd]);
5505 if (coding->carryover_bytes > 0)
5507 if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
5508 p->decoding_buf = make_uninit_string (coding->carryover_bytes);
5509 bcopy (coding->carryover, SDATA (p->decoding_buf),
5510 coding->carryover_bytes);
5511 p->decoding_carryover = coding->carryover_bytes;
5513 if (SBYTES (text) > 0)
5514 internal_condition_case_1 (read_process_output_call,
5515 Fcons (outstream,
5516 Fcons (proc, Fcons (text, Qnil))),
5517 !NILP (Vdebug_on_error) ? Qnil : Qerror,
5518 read_process_output_error_handler);
5520 /* If we saved the match data nonrecursively, restore it now. */
5521 restore_search_regs ();
5522 running_asynch_code = outer_running_asynch_code;
5524 /* Handling the process output should not deactivate the mark. */
5525 Vdeactivate_mark = odeactivate;
5527 /* Restore waiting_for_user_input_p as it was
5528 when we were called, in case the filter clobbered it. */
5529 waiting_for_user_input_p = waiting;
5531 #if 0 /* Call record_asynch_buffer_change unconditionally,
5532 because we might have changed minor modes or other things
5533 that affect key bindings. */
5534 if (! EQ (Fcurrent_buffer (), obuffer)
5535 || ! EQ (current_buffer->keymap, okeymap))
5536 #endif
5537 /* But do it only if the caller is actually going to read events.
5538 Otherwise there's no need to make him wake up, and it could
5539 cause trouble (for example it would make sit_for return). */
5540 if (waiting_for_user_input_p == -1)
5541 record_asynch_buffer_change ();
5543 unbind_to (count, Qnil);
5544 return nbytes;
5547 /* If no filter, write into buffer if it isn't dead. */
5548 if (!NILP (p->buffer) && !NILP (XBUFFER (p->buffer)->name))
5550 Lisp_Object old_read_only;
5551 int old_begv, old_zv;
5552 int old_begv_byte, old_zv_byte;
5553 Lisp_Object odeactivate;
5554 int before, before_byte;
5555 int opoint_byte;
5556 Lisp_Object text;
5557 struct buffer *b;
5558 int count = SPECPDL_INDEX ();
5560 odeactivate = Vdeactivate_mark;
5562 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
5563 Fset_buffer (p->buffer);
5564 opoint = PT;
5565 opoint_byte = PT_BYTE;
5566 old_read_only = current_buffer->read_only;
5567 old_begv = BEGV;
5568 old_zv = ZV;
5569 old_begv_byte = BEGV_BYTE;
5570 old_zv_byte = ZV_BYTE;
5572 current_buffer->read_only = Qnil;
5574 /* Insert new output into buffer
5575 at the current end-of-output marker,
5576 thus preserving logical ordering of input and output. */
5577 if (XMARKER (p->mark)->buffer)
5578 SET_PT_BOTH (clip_to_bounds (BEGV, marker_position (p->mark), ZV),
5579 clip_to_bounds (BEGV_BYTE, marker_byte_position (p->mark),
5580 ZV_BYTE));
5581 else
5582 SET_PT_BOTH (ZV, ZV_BYTE);
5583 before = PT;
5584 before_byte = PT_BYTE;
5586 /* If the output marker is outside of the visible region, save
5587 the restriction and widen. */
5588 if (! (BEGV <= PT && PT <= ZV))
5589 Fwiden ();
5591 decode_coding_c_string (coding, chars, nbytes, Qt);
5592 text = coding->dst_object;
5593 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5594 /* A new coding system might be found. See the comment in the
5595 similar code in the previous `if' block. */
5596 if (!EQ (p->decode_coding_system, Vlast_coding_system_used))
5598 p->decode_coding_system = Vlast_coding_system_used;
5599 if (NILP (p->encode_coding_system)
5600 && proc_encode_coding_system[p->outfd])
5602 p->encode_coding_system
5603 = coding_inherit_eol_type (Vlast_coding_system_used, Qnil);
5604 setup_coding_system (p->encode_coding_system,
5605 proc_encode_coding_system[p->outfd]);
5608 if (coding->carryover_bytes > 0)
5610 if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
5611 p->decoding_buf = make_uninit_string (coding->carryover_bytes);
5612 bcopy (coding->carryover, SDATA (p->decoding_buf),
5613 coding->carryover_bytes);
5614 p->decoding_carryover = coding->carryover_bytes;
5616 /* Adjust the multibyteness of TEXT to that of the buffer. */
5617 if (NILP (current_buffer->enable_multibyte_characters)
5618 != ! STRING_MULTIBYTE (text))
5619 text = (STRING_MULTIBYTE (text)
5620 ? Fstring_as_unibyte (text)
5621 : Fstring_to_multibyte (text));
5622 /* Insert before markers in case we are inserting where
5623 the buffer's mark is, and the user's next command is Meta-y. */
5624 insert_from_string_before_markers (text, 0, 0,
5625 SCHARS (text), SBYTES (text), 0);
5627 /* Make sure the process marker's position is valid when the
5628 process buffer is changed in the signal_after_change above.
5629 W3 is known to do that. */
5630 if (BUFFERP (p->buffer)
5631 && (b = XBUFFER (p->buffer), b != current_buffer))
5632 set_marker_both (p->mark, p->buffer, BUF_PT (b), BUF_PT_BYTE (b));
5633 else
5634 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
5636 update_mode_lines++;
5638 /* Make sure opoint and the old restrictions
5639 float ahead of any new text just as point would. */
5640 if (opoint >= before)
5642 opoint += PT - before;
5643 opoint_byte += PT_BYTE - before_byte;
5645 if (old_begv > before)
5647 old_begv += PT - before;
5648 old_begv_byte += PT_BYTE - before_byte;
5650 if (old_zv >= before)
5652 old_zv += PT - before;
5653 old_zv_byte += PT_BYTE - before_byte;
5656 /* If the restriction isn't what it should be, set it. */
5657 if (old_begv != BEGV || old_zv != ZV)
5658 Fnarrow_to_region (make_number (old_begv), make_number (old_zv));
5660 /* Handling the process output should not deactivate the mark. */
5661 Vdeactivate_mark = odeactivate;
5663 current_buffer->read_only = old_read_only;
5664 SET_PT_BOTH (opoint, opoint_byte);
5665 unbind_to (count, Qnil);
5667 return nbytes;
5670 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p,
5671 0, 0, 0,
5672 doc: /* Returns non-nil if Emacs is waiting for input from the user.
5673 This is intended for use by asynchronous process output filters and sentinels. */)
5676 return (waiting_for_user_input_p ? Qt : Qnil);
5679 /* Sending data to subprocess */
5681 jmp_buf send_process_frame;
5682 Lisp_Object process_sent_to;
5684 SIGTYPE
5685 send_process_trap ()
5687 SIGNAL_THREAD_CHECK (SIGPIPE);
5688 sigunblock (sigmask (SIGPIPE));
5689 longjmp (send_process_frame, 1);
5692 /* Send some data to process PROC.
5693 BUF is the beginning of the data; LEN is the number of characters.
5694 OBJECT is the Lisp object that the data comes from. If OBJECT is
5695 nil or t, it means that the data comes from C string.
5697 If OBJECT is not nil, the data is encoded by PROC's coding-system
5698 for encoding before it is sent.
5700 This function can evaluate Lisp code and can garbage collect. */
5702 static void
5703 send_process (proc, buf, len, object)
5704 volatile Lisp_Object proc;
5705 unsigned char *volatile buf;
5706 volatile int len;
5707 volatile Lisp_Object object;
5709 /* Use volatile to protect variables from being clobbered by longjmp. */
5710 struct Lisp_Process *p = XPROCESS (proc);
5711 int rv;
5712 struct coding_system *coding;
5713 struct gcpro gcpro1;
5714 SIGTYPE (*volatile old_sigpipe) ();
5716 GCPRO1 (object);
5718 if (p->raw_status_new)
5719 update_status (p);
5720 if (! EQ (p->status, Qrun))
5721 error ("Process %s not running", SDATA (p->name));
5722 if (p->outfd < 0)
5723 error ("Output file descriptor of %s is closed", SDATA (p->name));
5725 coding = proc_encode_coding_system[p->outfd];
5726 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5728 if ((STRINGP (object) && STRING_MULTIBYTE (object))
5729 || (BUFFERP (object)
5730 && !NILP (XBUFFER (object)->enable_multibyte_characters))
5731 || EQ (object, Qt))
5733 p->encode_coding_system
5734 = complement_process_encoding_system (p->encode_coding_system);
5735 if (!EQ (Vlast_coding_system_used, p->encode_coding_system))
5737 /* The coding system for encoding was changed to raw-text
5738 because we sent a unibyte text previously. Now we are
5739 sending a multibyte text, thus we must encode it by the
5740 original coding system specified for the current process.
5742 Another reason we comming here is that the coding system
5743 was just complemented and new one was returned by
5744 complement_process_encoding_system. */
5745 setup_coding_system (p->encode_coding_system, coding);
5746 Vlast_coding_system_used = p->encode_coding_system;
5748 coding->src_multibyte = 1;
5750 else
5752 /* For sending a unibyte text, character code conversion should
5753 not take place but EOL conversion should. So, setup raw-text
5754 or one of the subsidiary if we have not yet done it. */
5755 if (CODING_REQUIRE_ENCODING (coding))
5757 if (CODING_REQUIRE_FLUSHING (coding))
5759 /* But, before changing the coding, we must flush out data. */
5760 coding->mode |= CODING_MODE_LAST_BLOCK;
5761 send_process (proc, "", 0, Qt);
5762 coding->mode &= CODING_MODE_LAST_BLOCK;
5764 setup_coding_system (raw_text_coding_system
5765 (Vlast_coding_system_used),
5766 coding);
5767 coding->src_multibyte = 0;
5770 coding->dst_multibyte = 0;
5772 if (CODING_REQUIRE_ENCODING (coding))
5774 coding->dst_object = Qt;
5775 if (BUFFERP (object))
5777 int from_byte, from, to;
5778 int save_pt, save_pt_byte;
5779 struct buffer *cur = current_buffer;
5781 set_buffer_internal (XBUFFER (object));
5782 save_pt = PT, save_pt_byte = PT_BYTE;
5784 from_byte = PTR_BYTE_POS (buf);
5785 from = BYTE_TO_CHAR (from_byte);
5786 to = BYTE_TO_CHAR (from_byte + len);
5787 TEMP_SET_PT_BOTH (from, from_byte);
5788 encode_coding_object (coding, object, from, from_byte,
5789 to, from_byte + len, Qt);
5790 TEMP_SET_PT_BOTH (save_pt, save_pt_byte);
5791 set_buffer_internal (cur);
5793 else if (STRINGP (object))
5795 encode_coding_object (coding, object, 0, 0, SCHARS (object),
5796 SBYTES (object), Qt);
5798 else
5800 coding->dst_object = make_unibyte_string (buf, len);
5801 coding->produced = len;
5804 len = coding->produced;
5805 object = coding->dst_object;
5806 buf = SDATA (object);
5809 if (pty_max_bytes == 0)
5811 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
5812 pty_max_bytes = fpathconf (p->outfd, _PC_MAX_CANON);
5813 if (pty_max_bytes < 0)
5814 pty_max_bytes = 250;
5815 #else
5816 pty_max_bytes = 250;
5817 #endif
5818 /* Deduct one, to leave space for the eof. */
5819 pty_max_bytes--;
5822 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
5823 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
5824 when returning with longjmp despite being declared volatile. */
5825 if (!setjmp (send_process_frame))
5827 process_sent_to = proc;
5828 while (len > 0)
5830 int this = len;
5832 /* Decide how much data we can send in one batch.
5833 Long lines need to be split into multiple batches. */
5834 if (p->pty_flag)
5836 /* Starting this at zero is always correct when not the first
5837 iteration because the previous iteration ended by sending C-d.
5838 It may not be correct for the first iteration
5839 if a partial line was sent in a separate send_process call.
5840 If that proves worth handling, we need to save linepos
5841 in the process object. */
5842 int linepos = 0;
5843 unsigned char *ptr = (unsigned char *) buf;
5844 unsigned char *end = (unsigned char *) buf + len;
5846 /* Scan through this text for a line that is too long. */
5847 while (ptr != end && linepos < pty_max_bytes)
5849 if (*ptr == '\n')
5850 linepos = 0;
5851 else
5852 linepos++;
5853 ptr++;
5855 /* If we found one, break the line there
5856 and put in a C-d to force the buffer through. */
5857 this = ptr - buf;
5860 /* Send this batch, using one or more write calls. */
5861 while (this > 0)
5863 int outfd = p->outfd;
5864 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap);
5865 #ifdef DATAGRAM_SOCKETS
5866 if (DATAGRAM_CHAN_P (outfd))
5868 rv = sendto (outfd, (char *) buf, this,
5869 0, datagram_address[outfd].sa,
5870 datagram_address[outfd].len);
5871 if (rv < 0 && errno == EMSGSIZE)
5873 signal (SIGPIPE, old_sigpipe);
5874 report_file_error ("sending datagram",
5875 Fcons (proc, Qnil));
5878 else
5879 #endif
5881 rv = emacs_write (outfd, (char *) buf, this);
5882 #ifdef ADAPTIVE_READ_BUFFERING
5883 if (p->read_output_delay > 0
5884 && p->adaptive_read_buffering == 1)
5886 p->read_output_delay = 0;
5887 process_output_delay_count--;
5888 p->read_output_skip = 0;
5890 #endif
5892 signal (SIGPIPE, old_sigpipe);
5894 if (rv < 0)
5896 if (0
5897 #ifdef EWOULDBLOCK
5898 || errno == EWOULDBLOCK
5899 #endif
5900 #ifdef EAGAIN
5901 || errno == EAGAIN
5902 #endif
5904 /* Buffer is full. Wait, accepting input;
5905 that may allow the program
5906 to finish doing output and read more. */
5908 int offset = 0;
5910 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
5911 /* A gross hack to work around a bug in FreeBSD.
5912 In the following sequence, read(2) returns
5913 bogus data:
5915 write(2) 1022 bytes
5916 write(2) 954 bytes, get EAGAIN
5917 read(2) 1024 bytes in process_read_output
5918 read(2) 11 bytes in process_read_output
5920 That is, read(2) returns more bytes than have
5921 ever been written successfully. The 1033 bytes
5922 read are the 1022 bytes written successfully
5923 after processing (for example with CRs added if
5924 the terminal is set up that way which it is
5925 here). The same bytes will be seen again in a
5926 later read(2), without the CRs. */
5928 if (errno == EAGAIN)
5930 int flags = FWRITE;
5931 ioctl (p->outfd, TIOCFLUSH, &flags);
5933 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5935 /* Running filters might relocate buffers or strings.
5936 Arrange to relocate BUF. */
5937 if (BUFFERP (object))
5938 offset = BUF_PTR_BYTE_POS (XBUFFER (object), buf);
5939 else if (STRINGP (object))
5940 offset = buf - SDATA (object);
5942 #ifdef EMACS_HAS_USECS
5943 wait_reading_process_output (0, 20000, 0, 0, Qnil, NULL, 0);
5944 #else
5945 wait_reading_process_output (1, 0, 0, 0, Qnil, NULL, 0);
5946 #endif
5948 if (BUFFERP (object))
5949 buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset);
5950 else if (STRINGP (object))
5951 buf = offset + SDATA (object);
5953 rv = 0;
5955 else
5956 /* This is a real error. */
5957 report_file_error ("writing to process", Fcons (proc, Qnil));
5959 buf += rv;
5960 len -= rv;
5961 this -= rv;
5964 /* If we sent just part of the string, put in an EOF (C-d)
5965 to force it through, before we send the rest. */
5966 if (len > 0)
5967 Fprocess_send_eof (proc);
5970 else
5972 signal (SIGPIPE, old_sigpipe);
5973 proc = process_sent_to;
5974 p = XPROCESS (proc);
5975 p->raw_status_new = 0;
5976 p->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
5977 p->tick = ++process_tick;
5978 deactivate_process (proc);
5979 error ("SIGPIPE raised on process %s; closed it", SDATA (p->name));
5982 UNGCPRO;
5985 DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
5986 3, 3, 0,
5987 doc: /* Send current contents of region as input to PROCESS.
5988 PROCESS may be a process, a buffer, the name of a process or buffer, or
5989 nil, indicating the current buffer's process.
5990 Called from program, takes three arguments, PROCESS, START and END.
5991 If the region is more than 500 characters long,
5992 it is sent in several bunches. This may happen even for shorter regions.
5993 Output from processes can arrive in between bunches. */)
5994 (process, start, end)
5995 Lisp_Object process, start, end;
5997 Lisp_Object proc;
5998 int start1, end1;
6000 proc = get_process (process);
6001 validate_region (&start, &end);
6003 if (XINT (start) < GPT && XINT (end) > GPT)
6004 move_gap (XINT (start));
6006 start1 = CHAR_TO_BYTE (XINT (start));
6007 end1 = CHAR_TO_BYTE (XINT (end));
6008 send_process (proc, BYTE_POS_ADDR (start1), end1 - start1,
6009 Fcurrent_buffer ());
6011 return Qnil;
6014 DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
6015 2, 2, 0,
6016 doc: /* Send PROCESS the contents of STRING as input.
6017 PROCESS may be a process, a buffer, the name of a process or buffer, or
6018 nil, indicating the current buffer's process.
6019 If STRING is more than 500 characters long,
6020 it is sent in several bunches. This may happen even for shorter strings.
6021 Output from processes can arrive in between bunches. */)
6022 (process, string)
6023 Lisp_Object process, string;
6025 Lisp_Object proc;
6026 CHECK_STRING (string);
6027 proc = get_process (process);
6028 send_process (proc, SDATA (string),
6029 SBYTES (string), string);
6030 return Qnil;
6033 /* Return the foreground process group for the tty/pty that
6034 the process P uses. */
6035 static int
6036 emacs_get_tty_pgrp (p)
6037 struct Lisp_Process *p;
6039 int gid = -1;
6041 #ifdef TIOCGPGRP
6042 if (ioctl (p->infd, TIOCGPGRP, &gid) == -1 && ! NILP (p->tty_name))
6044 int fd;
6045 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
6046 master side. Try the slave side. */
6047 fd = emacs_open (SDATA (p->tty_name), O_RDONLY, 0);
6049 if (fd != -1)
6051 ioctl (fd, TIOCGPGRP, &gid);
6052 emacs_close (fd);
6055 #endif /* defined (TIOCGPGRP ) */
6057 return gid;
6060 DEFUN ("process-running-child-p", Fprocess_running_child_p,
6061 Sprocess_running_child_p, 0, 1, 0,
6062 doc: /* Return t if PROCESS has given the terminal to a child.
6063 If the operating system does not make it possible to find out,
6064 return t unconditionally. */)
6065 (process)
6066 Lisp_Object process;
6068 /* Initialize in case ioctl doesn't exist or gives an error,
6069 in a way that will cause returning t. */
6070 int gid;
6071 Lisp_Object proc;
6072 struct Lisp_Process *p;
6074 proc = get_process (process);
6075 p = XPROCESS (proc);
6077 if (!EQ (p->type, Qreal))
6078 error ("Process %s is not a subprocess",
6079 SDATA (p->name));
6080 if (p->infd < 0)
6081 error ("Process %s is not active",
6082 SDATA (p->name));
6084 gid = emacs_get_tty_pgrp (p);
6086 if (gid == p->pid)
6087 return Qnil;
6088 return Qt;
6091 /* send a signal number SIGNO to PROCESS.
6092 If CURRENT_GROUP is t, that means send to the process group
6093 that currently owns the terminal being used to communicate with PROCESS.
6094 This is used for various commands in shell mode.
6095 If CURRENT_GROUP is lambda, that means send to the process group
6096 that currently owns the terminal, but only if it is NOT the shell itself.
6098 If NOMSG is zero, insert signal-announcements into process's buffers
6099 right away.
6101 If we can, we try to signal PROCESS by sending control characters
6102 down the pty. This allows us to signal inferiors who have changed
6103 their uid, for which killpg would return an EPERM error. */
6105 static void
6106 process_send_signal (process, signo, current_group, nomsg)
6107 Lisp_Object process;
6108 int signo;
6109 Lisp_Object current_group;
6110 int nomsg;
6112 Lisp_Object proc;
6113 register struct Lisp_Process *p;
6114 int gid;
6115 int no_pgrp = 0;
6117 proc = get_process (process);
6118 p = XPROCESS (proc);
6120 if (!EQ (p->type, Qreal))
6121 error ("Process %s is not a subprocess",
6122 SDATA (p->name));
6123 if (p->infd < 0)
6124 error ("Process %s is not active",
6125 SDATA (p->name));
6127 if (!p->pty_flag)
6128 current_group = Qnil;
6130 /* If we are using pgrps, get a pgrp number and make it negative. */
6131 if (NILP (current_group))
6132 /* Send the signal to the shell's process group. */
6133 gid = p->pid;
6134 else
6136 #ifdef SIGNALS_VIA_CHARACTERS
6137 /* If possible, send signals to the entire pgrp
6138 by sending an input character to it. */
6140 /* TERMIOS is the latest and bestest, and seems most likely to
6141 work. If the system has it, use it. */
6142 #ifdef HAVE_TERMIOS
6143 struct termios t;
6144 cc_t *sig_char = NULL;
6146 tcgetattr (p->infd, &t);
6148 switch (signo)
6150 case SIGINT:
6151 sig_char = &t.c_cc[VINTR];
6152 break;
6154 case SIGQUIT:
6155 sig_char = &t.c_cc[VQUIT];
6156 break;
6158 case SIGTSTP:
6159 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
6160 sig_char = &t.c_cc[VSWTCH];
6161 #else
6162 sig_char = &t.c_cc[VSUSP];
6163 #endif
6164 break;
6167 if (sig_char && *sig_char != CDISABLE)
6169 send_process (proc, sig_char, 1, Qnil);
6170 return;
6172 /* If we can't send the signal with a character,
6173 fall through and send it another way. */
6174 #else /* ! HAVE_TERMIOS */
6176 /* On Berkeley descendants, the following IOCTL's retrieve the
6177 current control characters. */
6178 #if defined (TIOCGLTC) && defined (TIOCGETC)
6180 struct tchars c;
6181 struct ltchars lc;
6183 switch (signo)
6185 case SIGINT:
6186 ioctl (p->infd, TIOCGETC, &c);
6187 send_process (proc, &c.t_intrc, 1, Qnil);
6188 return;
6189 case SIGQUIT:
6190 ioctl (p->infd, TIOCGETC, &c);
6191 send_process (proc, &c.t_quitc, 1, Qnil);
6192 return;
6193 #ifdef SIGTSTP
6194 case SIGTSTP:
6195 ioctl (p->infd, TIOCGLTC, &lc);
6196 send_process (proc, &lc.t_suspc, 1, Qnil);
6197 return;
6198 #endif /* ! defined (SIGTSTP) */
6201 #else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
6203 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
6204 characters. */
6205 #ifdef TCGETA
6206 struct termio t;
6207 switch (signo)
6209 case SIGINT:
6210 ioctl (p->infd, TCGETA, &t);
6211 send_process (proc, &t.c_cc[VINTR], 1, Qnil);
6212 return;
6213 case SIGQUIT:
6214 ioctl (p->infd, TCGETA, &t);
6215 send_process (proc, &t.c_cc[VQUIT], 1, Qnil);
6216 return;
6217 #ifdef SIGTSTP
6218 case SIGTSTP:
6219 ioctl (p->infd, TCGETA, &t);
6220 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil);
6221 return;
6222 #endif /* ! defined (SIGTSTP) */
6224 #else /* ! defined (TCGETA) */
6225 Your configuration files are messed up.
6226 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
6227 you'd better be using one of the alternatives above! */
6228 #endif /* ! defined (TCGETA) */
6229 #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
6230 /* In this case, the code above should alway return. */
6231 abort ();
6232 #endif /* ! defined HAVE_TERMIOS */
6234 /* The code above may fall through if it can't
6235 handle the signal. */
6236 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
6238 #ifdef TIOCGPGRP
6239 /* Get the current pgrp using the tty itself, if we have that.
6240 Otherwise, use the pty to get the pgrp.
6241 On pfa systems, saka@pfu.fujitsu.co.JP writes:
6242 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
6243 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
6244 His patch indicates that if TIOCGPGRP returns an error, then
6245 we should just assume that p->pid is also the process group id. */
6247 gid = emacs_get_tty_pgrp (p);
6249 if (gid == -1)
6250 /* If we can't get the information, assume
6251 the shell owns the tty. */
6252 gid = p->pid;
6254 /* It is not clear whether anything really can set GID to -1.
6255 Perhaps on some system one of those ioctls can or could do so.
6256 Or perhaps this is vestigial. */
6257 if (gid == -1)
6258 no_pgrp = 1;
6259 #else /* ! defined (TIOCGPGRP ) */
6260 /* Can't select pgrps on this system, so we know that
6261 the child itself heads the pgrp. */
6262 gid = p->pid;
6263 #endif /* ! defined (TIOCGPGRP ) */
6265 /* If current_group is lambda, and the shell owns the terminal,
6266 don't send any signal. */
6267 if (EQ (current_group, Qlambda) && gid == p->pid)
6268 return;
6271 switch (signo)
6273 #ifdef SIGCONT
6274 case SIGCONT:
6275 p->raw_status_new = 0;
6276 p->status = Qrun;
6277 p->tick = ++process_tick;
6278 if (!nomsg)
6280 status_notify (NULL);
6281 redisplay_preserve_echo_area (13);
6283 break;
6284 #endif /* ! defined (SIGCONT) */
6285 case SIGINT:
6286 case SIGQUIT:
6287 case SIGKILL:
6288 flush_pending_output (p->infd);
6289 break;
6292 /* If we don't have process groups, send the signal to the immediate
6293 subprocess. That isn't really right, but it's better than any
6294 obvious alternative. */
6295 if (no_pgrp)
6297 kill (p->pid, signo);
6298 return;
6301 /* gid may be a pid, or minus a pgrp's number */
6302 #ifdef TIOCSIGSEND
6303 if (!NILP (current_group))
6305 if (ioctl (p->infd, TIOCSIGSEND, signo) == -1)
6306 EMACS_KILLPG (gid, signo);
6308 else
6310 gid = - p->pid;
6311 kill (gid, signo);
6313 #else /* ! defined (TIOCSIGSEND) */
6314 EMACS_KILLPG (gid, signo);
6315 #endif /* ! defined (TIOCSIGSEND) */
6318 DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
6319 doc: /* Interrupt process PROCESS.
6320 PROCESS may be a process, a buffer, or the name of a process or buffer.
6321 No arg or nil means current buffer's process.
6322 Second arg CURRENT-GROUP non-nil means send signal to
6323 the current process-group of the process's controlling terminal
6324 rather than to the process's own process group.
6325 If the process is a shell, this means interrupt current subjob
6326 rather than the shell.
6328 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
6329 don't send the signal. */)
6330 (process, current_group)
6331 Lisp_Object process, current_group;
6333 process_send_signal (process, SIGINT, current_group, 0);
6334 return process;
6337 DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
6338 doc: /* Kill process PROCESS. May be process or name of one.
6339 See function `interrupt-process' for more details on usage. */)
6340 (process, current_group)
6341 Lisp_Object process, current_group;
6343 process_send_signal (process, SIGKILL, current_group, 0);
6344 return process;
6347 DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
6348 doc: /* Send QUIT signal to process PROCESS. May be process or name of one.
6349 See function `interrupt-process' for more details on usage. */)
6350 (process, current_group)
6351 Lisp_Object process, current_group;
6353 process_send_signal (process, SIGQUIT, current_group, 0);
6354 return process;
6357 DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
6358 doc: /* Stop process PROCESS. May be process or name of one.
6359 See function `interrupt-process' for more details on usage.
6360 If PROCESS is a network or serial process, inhibit handling of incoming
6361 traffic. */)
6362 (process, current_group)
6363 Lisp_Object process, current_group;
6365 #ifdef HAVE_SOCKETS
6366 if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process)))
6368 struct Lisp_Process *p;
6370 p = XPROCESS (process);
6371 if (NILP (p->command)
6372 && p->infd >= 0)
6374 FD_CLR (p->infd, &input_wait_mask);
6375 FD_CLR (p->infd, &non_keyboard_wait_mask);
6377 p->command = Qt;
6378 return process;
6380 #endif
6381 #ifndef SIGTSTP
6382 error ("No SIGTSTP support");
6383 #else
6384 process_send_signal (process, SIGTSTP, current_group, 0);
6385 #endif
6386 return process;
6389 DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
6390 doc: /* Continue process PROCESS. May be process or name of one.
6391 See function `interrupt-process' for more details on usage.
6392 If PROCESS is a network or serial process, resume handling of incoming
6393 traffic. */)
6394 (process, current_group)
6395 Lisp_Object process, current_group;
6397 #ifdef HAVE_SOCKETS
6398 if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process)))
6400 struct Lisp_Process *p;
6402 p = XPROCESS (process);
6403 if (EQ (p->command, Qt)
6404 && p->infd >= 0
6405 && (!EQ (p->filter, Qt) || EQ (p->status, Qlisten)))
6407 FD_SET (p->infd, &input_wait_mask);
6408 FD_SET (p->infd, &non_keyboard_wait_mask);
6409 #ifdef WINDOWSNT
6410 if (fd_info[ p->infd ].flags & FILE_SERIAL)
6411 PurgeComm (fd_info[ p->infd ].hnd, PURGE_RXABORT | PURGE_RXCLEAR);
6412 #endif
6413 #ifdef HAVE_TERMIOS
6414 tcflush (p->infd, TCIFLUSH);
6415 #endif
6417 p->command = Qnil;
6418 return process;
6420 #endif
6421 #ifdef SIGCONT
6422 process_send_signal (process, SIGCONT, current_group, 0);
6423 #else
6424 error ("No SIGCONT support");
6425 #endif
6426 return process;
6429 DEFUN ("signal-process", Fsignal_process, Ssignal_process,
6430 2, 2, "sProcess (name or number): \nnSignal code: ",
6431 doc: /* Send PROCESS the signal with code SIGCODE.
6432 PROCESS may also be a number specifying the process id of the
6433 process to signal; in this case, the process need not be a child of
6434 this Emacs.
6435 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
6436 (process, sigcode)
6437 Lisp_Object process, sigcode;
6439 pid_t pid;
6441 if (INTEGERP (process))
6443 pid = XINT (process);
6444 goto got_it;
6447 if (FLOATP (process))
6449 pid = (pid_t) XFLOAT_DATA (process);
6450 goto got_it;
6453 if (STRINGP (process))
6455 Lisp_Object tem;
6456 if (tem = Fget_process (process), NILP (tem))
6458 pid = XINT (Fstring_to_number (process, make_number (10)));
6459 if (pid > 0)
6460 goto got_it;
6462 process = tem;
6464 else
6465 process = get_process (process);
6467 if (NILP (process))
6468 return process;
6470 CHECK_PROCESS (process);
6471 pid = XPROCESS (process)->pid;
6472 if (pid <= 0)
6473 error ("Cannot signal process %s", SDATA (XPROCESS (process)->name));
6475 got_it:
6477 #define parse_signal(NAME, VALUE) \
6478 else if (!xstrcasecmp (name, NAME)) \
6479 XSETINT (sigcode, VALUE)
6481 if (INTEGERP (sigcode))
6483 else
6485 unsigned char *name;
6487 CHECK_SYMBOL (sigcode);
6488 name = SDATA (SYMBOL_NAME (sigcode));
6490 if (!strncmp(name, "SIG", 3) || !strncmp(name, "sig", 3))
6491 name += 3;
6493 if (0)
6495 #ifdef SIGUSR1
6496 parse_signal ("usr1", SIGUSR1);
6497 #endif
6498 #ifdef SIGUSR2
6499 parse_signal ("usr2", SIGUSR2);
6500 #endif
6501 #ifdef SIGTERM
6502 parse_signal ("term", SIGTERM);
6503 #endif
6504 #ifdef SIGHUP
6505 parse_signal ("hup", SIGHUP);
6506 #endif
6507 #ifdef SIGINT
6508 parse_signal ("int", SIGINT);
6509 #endif
6510 #ifdef SIGQUIT
6511 parse_signal ("quit", SIGQUIT);
6512 #endif
6513 #ifdef SIGILL
6514 parse_signal ("ill", SIGILL);
6515 #endif
6516 #ifdef SIGABRT
6517 parse_signal ("abrt", SIGABRT);
6518 #endif
6519 #ifdef SIGEMT
6520 parse_signal ("emt", SIGEMT);
6521 #endif
6522 #ifdef SIGKILL
6523 parse_signal ("kill", SIGKILL);
6524 #endif
6525 #ifdef SIGFPE
6526 parse_signal ("fpe", SIGFPE);
6527 #endif
6528 #ifdef SIGBUS
6529 parse_signal ("bus", SIGBUS);
6530 #endif
6531 #ifdef SIGSEGV
6532 parse_signal ("segv", SIGSEGV);
6533 #endif
6534 #ifdef SIGSYS
6535 parse_signal ("sys", SIGSYS);
6536 #endif
6537 #ifdef SIGPIPE
6538 parse_signal ("pipe", SIGPIPE);
6539 #endif
6540 #ifdef SIGALRM
6541 parse_signal ("alrm", SIGALRM);
6542 #endif
6543 #ifdef SIGURG
6544 parse_signal ("urg", SIGURG);
6545 #endif
6546 #ifdef SIGSTOP
6547 parse_signal ("stop", SIGSTOP);
6548 #endif
6549 #ifdef SIGTSTP
6550 parse_signal ("tstp", SIGTSTP);
6551 #endif
6552 #ifdef SIGCONT
6553 parse_signal ("cont", SIGCONT);
6554 #endif
6555 #ifdef SIGCHLD
6556 parse_signal ("chld", SIGCHLD);
6557 #endif
6558 #ifdef SIGTTIN
6559 parse_signal ("ttin", SIGTTIN);
6560 #endif
6561 #ifdef SIGTTOU
6562 parse_signal ("ttou", SIGTTOU);
6563 #endif
6564 #ifdef SIGIO
6565 parse_signal ("io", SIGIO);
6566 #endif
6567 #ifdef SIGXCPU
6568 parse_signal ("xcpu", SIGXCPU);
6569 #endif
6570 #ifdef SIGXFSZ
6571 parse_signal ("xfsz", SIGXFSZ);
6572 #endif
6573 #ifdef SIGVTALRM
6574 parse_signal ("vtalrm", SIGVTALRM);
6575 #endif
6576 #ifdef SIGPROF
6577 parse_signal ("prof", SIGPROF);
6578 #endif
6579 #ifdef SIGWINCH
6580 parse_signal ("winch", SIGWINCH);
6581 #endif
6582 #ifdef SIGINFO
6583 parse_signal ("info", SIGINFO);
6584 #endif
6585 else
6586 error ("Undefined signal name %s", name);
6589 #undef parse_signal
6591 return make_number (kill (pid, XINT (sigcode)));
6594 DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
6595 doc: /* Make PROCESS see end-of-file in its input.
6596 EOF comes after any text already sent to it.
6597 PROCESS may be a process, a buffer, the name of a process or buffer, or
6598 nil, indicating the current buffer's process.
6599 If PROCESS is a network connection, or is a process communicating
6600 through a pipe (as opposed to a pty), then you cannot send any more
6601 text to PROCESS after you call this function.
6602 If PROCESS is a serial process, wait until all output written to the
6603 process has been transmitted to the serial port. */)
6604 (process)
6605 Lisp_Object process;
6607 Lisp_Object proc;
6608 struct coding_system *coding;
6610 if (DATAGRAM_CONN_P (process))
6611 return process;
6613 proc = get_process (process);
6614 coding = proc_encode_coding_system[XPROCESS (proc)->outfd];
6616 /* Make sure the process is really alive. */
6617 if (XPROCESS (proc)->raw_status_new)
6618 update_status (XPROCESS (proc));
6619 if (! EQ (XPROCESS (proc)->status, Qrun))
6620 error ("Process %s not running", SDATA (XPROCESS (proc)->name));
6622 if (CODING_REQUIRE_FLUSHING (coding))
6624 coding->mode |= CODING_MODE_LAST_BLOCK;
6625 send_process (proc, "", 0, Qnil);
6628 if (XPROCESS (proc)->pty_flag)
6629 send_process (proc, "\004", 1, Qnil);
6630 else if (EQ (XPROCESS (proc)->type, Qserial))
6632 #ifdef HAVE_TERMIOS
6633 if (tcdrain (XPROCESS (proc)->outfd) != 0)
6634 error ("tcdrain() failed: %s", emacs_strerror (errno));
6635 #endif
6636 /* Do nothing on Windows because writes are blocking. */
6638 else
6640 int old_outfd, new_outfd;
6642 #ifdef HAVE_SHUTDOWN
6643 /* If this is a network connection, or socketpair is used
6644 for communication with the subprocess, call shutdown to cause EOF.
6645 (In some old system, shutdown to socketpair doesn't work.
6646 Then we just can't win.) */
6647 if (EQ (XPROCESS (proc)->type, Qnetwork)
6648 || XPROCESS (proc)->outfd == XPROCESS (proc)->infd)
6649 shutdown (XPROCESS (proc)->outfd, 1);
6650 /* In case of socketpair, outfd == infd, so don't close it. */
6651 if (XPROCESS (proc)->outfd != XPROCESS (proc)->infd)
6652 emacs_close (XPROCESS (proc)->outfd);
6653 #else /* not HAVE_SHUTDOWN */
6654 emacs_close (XPROCESS (proc)->outfd);
6655 #endif /* not HAVE_SHUTDOWN */
6656 new_outfd = emacs_open (NULL_DEVICE, O_WRONLY, 0);
6657 if (new_outfd < 0)
6658 abort ();
6659 old_outfd = XPROCESS (proc)->outfd;
6661 if (!proc_encode_coding_system[new_outfd])
6662 proc_encode_coding_system[new_outfd]
6663 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
6664 bcopy (proc_encode_coding_system[old_outfd],
6665 proc_encode_coding_system[new_outfd],
6666 sizeof (struct coding_system));
6667 bzero (proc_encode_coding_system[old_outfd],
6668 sizeof (struct coding_system));
6670 XPROCESS (proc)->outfd = new_outfd;
6672 return process;
6675 /* Kill all processes associated with `buffer'.
6676 If `buffer' is nil, kill all processes */
6678 void
6679 kill_buffer_processes (buffer)
6680 Lisp_Object buffer;
6682 Lisp_Object tail, proc;
6684 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6686 proc = XCDR (XCAR (tail));
6687 if (PROCESSP (proc)
6688 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
6690 if (NETCONN_P (proc) || SERIALCONN_P (proc))
6691 Fdelete_process (proc);
6692 else if (XPROCESS (proc)->infd >= 0)
6693 process_send_signal (proc, SIGHUP, Qnil, 1);
6698 /* On receipt of a signal that a child status has changed, loop asking
6699 about children with changed statuses until the system says there
6700 are no more.
6702 All we do is change the status; we do not run sentinels or print
6703 notifications. That is saved for the next time keyboard input is
6704 done, in order to avoid timing errors.
6706 ** WARNING: this can be called during garbage collection.
6707 Therefore, it must not be fooled by the presence of mark bits in
6708 Lisp objects.
6710 ** USG WARNING: Although it is not obvious from the documentation
6711 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6712 signal() before executing at least one wait(), otherwise the
6713 handler will be called again, resulting in an infinite loop. The
6714 relevant portion of the documentation reads "SIGCLD signals will be
6715 queued and the signal-catching function will be continually
6716 reentered until the queue is empty". Invoking signal() causes the
6717 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6718 Inc.
6720 ** Malloc WARNING: This should never call malloc either directly or
6721 indirectly; if it does, that is a bug */
6723 #ifdef SIGCHLD
6724 SIGTYPE
6725 sigchld_handler (signo)
6726 int signo;
6728 int old_errno = errno;
6729 Lisp_Object proc;
6730 register struct Lisp_Process *p;
6731 extern EMACS_TIME *input_available_clear_time;
6733 SIGNAL_THREAD_CHECK (signo);
6735 while (1)
6737 pid_t pid;
6738 int w;
6739 Lisp_Object tail;
6741 #ifdef WNOHANG
6742 #ifndef WUNTRACED
6743 #define WUNTRACED 0
6744 #endif /* no WUNTRACED */
6745 /* Keep trying to get a status until we get a definitive result. */
6748 errno = 0;
6749 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
6751 while (pid < 0 && errno == EINTR);
6753 if (pid <= 0)
6755 /* PID == 0 means no processes found, PID == -1 means a real
6756 failure. We have done all our job, so return. */
6758 /* USG systems forget handlers when they are used;
6759 must reestablish each time */
6760 #if defined (USG) && !defined (POSIX_SIGNALS)
6761 signal (signo, sigchld_handler); /* WARNING - must come after wait3() */
6762 #endif
6763 errno = old_errno;
6764 return;
6766 #else
6767 pid = wait (&w);
6768 #endif /* no WNOHANG */
6770 /* Find the process that signaled us, and record its status. */
6772 /* The process can have been deleted by Fdelete_process. */
6773 for (tail = deleted_pid_list; CONSP (tail); tail = XCDR (tail))
6775 Lisp_Object xpid = XCAR (tail);
6776 if ((INTEGERP (xpid) && pid == (pid_t) XINT (xpid))
6777 || (FLOATP (xpid) && pid == (pid_t) XFLOAT_DATA (xpid)))
6779 XSETCAR (tail, Qnil);
6780 goto sigchld_end_of_loop;
6784 /* Otherwise, if it is asynchronous, it is in Vprocess_alist. */
6785 p = 0;
6786 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6788 proc = XCDR (XCAR (tail));
6789 p = XPROCESS (proc);
6790 if (EQ (p->type, Qreal) && p->pid == pid)
6791 break;
6792 p = 0;
6795 /* Look for an asynchronous process whose pid hasn't been filled
6796 in yet. */
6797 if (p == 0)
6798 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6800 proc = XCDR (XCAR (tail));
6801 p = XPROCESS (proc);
6802 if (p->pid == -1)
6803 break;
6804 p = 0;
6807 /* Change the status of the process that was found. */
6808 if (p != 0)
6810 int clear_desc_flag = 0;
6812 p->tick = ++process_tick;
6813 p->raw_status = w;
6814 p->raw_status_new = 1;
6816 /* If process has terminated, stop waiting for its output. */
6817 if ((WIFSIGNALED (w) || WIFEXITED (w))
6818 && p->infd >= 0)
6819 clear_desc_flag = 1;
6821 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
6822 if (clear_desc_flag)
6824 FD_CLR (p->infd, &input_wait_mask);
6825 FD_CLR (p->infd, &non_keyboard_wait_mask);
6828 /* Tell wait_reading_process_output that it needs to wake up and
6829 look around. */
6830 if (input_available_clear_time)
6831 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6834 /* There was no asynchronous process found for that pid: we have
6835 a synchronous process. */
6836 else
6838 synch_process_alive = 0;
6840 /* Report the status of the synchronous process. */
6841 if (WIFEXITED (w))
6842 synch_process_retcode = WRETCODE (w);
6843 else if (WIFSIGNALED (w))
6844 synch_process_termsig = WTERMSIG (w);
6846 /* Tell wait_reading_process_output that it needs to wake up and
6847 look around. */
6848 if (input_available_clear_time)
6849 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6852 sigchld_end_of_loop:
6855 /* On some systems, we must return right away.
6856 If any more processes want to signal us, we will
6857 get another signal.
6858 Otherwise (on systems that have WNOHANG), loop around
6859 to use up all the processes that have something to tell us. */
6860 #if (defined WINDOWSNT \
6861 || (defined USG && !defined GNU_LINUX \
6862 && !(defined HPUX && defined WNOHANG)))
6863 #if defined (USG) && ! defined (POSIX_SIGNALS)
6864 signal (signo, sigchld_handler);
6865 #endif
6866 errno = old_errno;
6867 return;
6868 #endif /* USG, but not HPUX with WNOHANG */
6871 #endif /* SIGCHLD */
6874 static Lisp_Object
6875 exec_sentinel_unwind (data)
6876 Lisp_Object data;
6878 XPROCESS (XCAR (data))->sentinel = XCDR (data);
6879 return Qnil;
6882 static Lisp_Object
6883 exec_sentinel_error_handler (error)
6884 Lisp_Object error;
6886 cmd_error_internal (error, "error in process sentinel: ");
6887 Vinhibit_quit = Qt;
6888 update_echo_area ();
6889 Fsleep_for (make_number (2), Qnil);
6890 return Qt;
6893 static void
6894 exec_sentinel (proc, reason)
6895 Lisp_Object proc, reason;
6897 Lisp_Object sentinel, obuffer, odeactivate, okeymap;
6898 register struct Lisp_Process *p = XPROCESS (proc);
6899 int count = SPECPDL_INDEX ();
6900 int outer_running_asynch_code = running_asynch_code;
6901 int waiting = waiting_for_user_input_p;
6903 if (inhibit_sentinels)
6904 return;
6906 /* No need to gcpro these, because all we do with them later
6907 is test them for EQness, and none of them should be a string. */
6908 odeactivate = Vdeactivate_mark;
6909 XSETBUFFER (obuffer, current_buffer);
6910 okeymap = current_buffer->keymap;
6912 sentinel = p->sentinel;
6913 if (NILP (sentinel))
6914 return;
6916 /* Zilch the sentinel while it's running, to avoid recursive invocations;
6917 assure that it gets restored no matter how the sentinel exits. */
6918 p->sentinel = Qnil;
6919 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
6920 /* Inhibit quit so that random quits don't screw up a running filter. */
6921 specbind (Qinhibit_quit, Qt);
6922 specbind (Qlast_nonmenu_event, Qt); /* Why? --Stef */
6924 /* In case we get recursively called,
6925 and we already saved the match data nonrecursively,
6926 save the same match data in safely recursive fashion. */
6927 if (outer_running_asynch_code)
6929 Lisp_Object tem;
6930 tem = Fmatch_data (Qnil, Qnil, Qnil);
6931 restore_search_regs ();
6932 record_unwind_save_match_data ();
6933 Fset_match_data (tem, Qt);
6936 /* For speed, if a search happens within this code,
6937 save the match data in a special nonrecursive fashion. */
6938 running_asynch_code = 1;
6940 internal_condition_case_1 (read_process_output_call,
6941 Fcons (sentinel,
6942 Fcons (proc, Fcons (reason, Qnil))),
6943 !NILP (Vdebug_on_error) ? Qnil : Qerror,
6944 exec_sentinel_error_handler);
6946 /* If we saved the match data nonrecursively, restore it now. */
6947 restore_search_regs ();
6948 running_asynch_code = outer_running_asynch_code;
6950 Vdeactivate_mark = odeactivate;
6952 /* Restore waiting_for_user_input_p as it was
6953 when we were called, in case the filter clobbered it. */
6954 waiting_for_user_input_p = waiting;
6956 #if 0
6957 if (! EQ (Fcurrent_buffer (), obuffer)
6958 || ! EQ (current_buffer->keymap, okeymap))
6959 #endif
6960 /* But do it only if the caller is actually going to read events.
6961 Otherwise there's no need to make him wake up, and it could
6962 cause trouble (for example it would make sit_for return). */
6963 if (waiting_for_user_input_p == -1)
6964 record_asynch_buffer_change ();
6966 unbind_to (count, Qnil);
6969 /* Report all recent events of a change in process status
6970 (either run the sentinel or output a message).
6971 This is usually done while Emacs is waiting for keyboard input
6972 but can be done at other times. */
6974 static void
6975 status_notify (deleting_process)
6976 struct Lisp_Process *deleting_process;
6978 register Lisp_Object proc, buffer;
6979 Lisp_Object tail, msg;
6980 struct gcpro gcpro1, gcpro2;
6982 tail = Qnil;
6983 msg = Qnil;
6984 /* We need to gcpro tail; if read_process_output calls a filter
6985 which deletes a process and removes the cons to which tail points
6986 from Vprocess_alist, and then causes a GC, tail is an unprotected
6987 reference. */
6988 GCPRO2 (tail, msg);
6990 /* Set this now, so that if new processes are created by sentinels
6991 that we run, we get called again to handle their status changes. */
6992 update_tick = process_tick;
6994 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6996 Lisp_Object symbol;
6997 register struct Lisp_Process *p;
6999 proc = Fcdr (XCAR (tail));
7000 p = XPROCESS (proc);
7002 if (p->tick != p->update_tick)
7004 p->update_tick = p->tick;
7006 /* If process is still active, read any output that remains. */
7007 while (! EQ (p->filter, Qt)
7008 && ! EQ (p->status, Qconnect)
7009 && ! EQ (p->status, Qlisten)
7010 /* Network or serial process not stopped: */
7011 && ! EQ (p->command, Qt)
7012 && p->infd >= 0
7013 && p != deleting_process
7014 && read_process_output (proc, p->infd) > 0);
7016 buffer = p->buffer;
7018 /* Get the text to use for the message. */
7019 if (p->raw_status_new)
7020 update_status (p);
7021 msg = status_message (p);
7023 /* If process is terminated, deactivate it or delete it. */
7024 symbol = p->status;
7025 if (CONSP (p->status))
7026 symbol = XCAR (p->status);
7028 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
7029 || EQ (symbol, Qclosed))
7031 if (delete_exited_processes)
7032 remove_process (proc);
7033 else
7034 deactivate_process (proc);
7037 /* The actions above may have further incremented p->tick.
7038 So set p->update_tick again
7039 so that an error in the sentinel will not cause
7040 this code to be run again. */
7041 p->update_tick = p->tick;
7042 /* Now output the message suitably. */
7043 if (!NILP (p->sentinel))
7044 exec_sentinel (proc, msg);
7045 /* Don't bother with a message in the buffer
7046 when a process becomes runnable. */
7047 else if (!EQ (symbol, Qrun) && !NILP (buffer))
7049 Lisp_Object ro, tem;
7050 struct buffer *old = current_buffer;
7051 int opoint, opoint_byte;
7052 int before, before_byte;
7054 ro = XBUFFER (buffer)->read_only;
7056 /* Avoid error if buffer is deleted
7057 (probably that's why the process is dead, too) */
7058 if (NILP (XBUFFER (buffer)->name))
7059 continue;
7060 Fset_buffer (buffer);
7062 opoint = PT;
7063 opoint_byte = PT_BYTE;
7064 /* Insert new output into buffer
7065 at the current end-of-output marker,
7066 thus preserving logical ordering of input and output. */
7067 if (XMARKER (p->mark)->buffer)
7068 Fgoto_char (p->mark);
7069 else
7070 SET_PT_BOTH (ZV, ZV_BYTE);
7072 before = PT;
7073 before_byte = PT_BYTE;
7075 tem = current_buffer->read_only;
7076 current_buffer->read_only = Qnil;
7077 insert_string ("\nProcess ");
7078 Finsert (1, &p->name);
7079 insert_string (" ");
7080 Finsert (1, &msg);
7081 current_buffer->read_only = tem;
7082 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
7084 if (opoint >= before)
7085 SET_PT_BOTH (opoint + (PT - before),
7086 opoint_byte + (PT_BYTE - before_byte));
7087 else
7088 SET_PT_BOTH (opoint, opoint_byte);
7090 set_buffer_internal (old);
7093 } /* end for */
7095 update_mode_lines++; /* in case buffers use %s in mode-line-format */
7096 UNGCPRO;
7100 DEFUN ("set-process-coding-system", Fset_process_coding_system,
7101 Sset_process_coding_system, 1, 3, 0,
7102 doc: /* Set coding systems of PROCESS to DECODING and ENCODING.
7103 DECODING will be used to decode subprocess output and ENCODING to
7104 encode subprocess input. */)
7105 (process, decoding, encoding)
7106 register Lisp_Object process, decoding, encoding;
7108 register struct Lisp_Process *p;
7110 CHECK_PROCESS (process);
7111 p = XPROCESS (process);
7112 if (p->infd < 0)
7113 error ("Input file descriptor of %s closed", SDATA (p->name));
7114 if (p->outfd < 0)
7115 error ("Output file descriptor of %s closed", SDATA (p->name));
7116 Fcheck_coding_system (decoding);
7117 Fcheck_coding_system (encoding);
7118 encoding = coding_inherit_eol_type (encoding, Qnil);
7119 p->decode_coding_system = decoding;
7120 p->encode_coding_system = encoding;
7121 setup_process_coding_systems (process);
7123 return Qnil;
7126 DEFUN ("process-coding-system",
7127 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0,
7128 doc: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
7129 (process)
7130 register Lisp_Object process;
7132 CHECK_PROCESS (process);
7133 return Fcons (XPROCESS (process)->decode_coding_system,
7134 XPROCESS (process)->encode_coding_system);
7137 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte,
7138 Sset_process_filter_multibyte, 2, 2, 0,
7139 doc: /* Set multibyteness of the strings given to PROCESS's filter.
7140 If FLAG is non-nil, the filter is given multibyte strings.
7141 If FLAG is nil, the filter is given unibyte strings. In this case,
7142 all character code conversion except for end-of-line conversion is
7143 suppressed. */)
7144 (process, flag)
7145 Lisp_Object process, flag;
7147 register struct Lisp_Process *p;
7149 CHECK_PROCESS (process);
7150 p = XPROCESS (process);
7151 if (NILP (flag))
7152 p->decode_coding_system = raw_text_coding_system (p->decode_coding_system);
7153 setup_process_coding_systems (process);
7155 return Qnil;
7158 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p,
7159 Sprocess_filter_multibyte_p, 1, 1, 0,
7160 doc: /* Return t if a multibyte string is given to PROCESS's filter.*/)
7161 (process)
7162 Lisp_Object process;
7164 register struct Lisp_Process *p;
7165 struct coding_system *coding;
7167 CHECK_PROCESS (process);
7168 p = XPROCESS (process);
7169 coding = proc_decode_coding_system[p->infd];
7170 return (CODING_FOR_UNIBYTE (coding) ? Qnil : Qt);
7175 /* Add DESC to the set of keyboard input descriptors. */
7177 void
7178 add_keyboard_wait_descriptor (desc)
7179 int desc;
7181 FD_SET (desc, &input_wait_mask);
7182 FD_SET (desc, &non_process_wait_mask);
7183 if (desc > max_keyboard_desc)
7184 max_keyboard_desc = desc;
7187 static int add_gpm_wait_descriptor_called_flag;
7189 void
7190 add_gpm_wait_descriptor (desc)
7191 int desc;
7193 if (! add_gpm_wait_descriptor_called_flag)
7194 FD_CLR (0, &input_wait_mask);
7195 add_gpm_wait_descriptor_called_flag = 1;
7196 FD_SET (desc, &input_wait_mask);
7197 FD_SET (desc, &gpm_wait_mask);
7198 if (desc > max_gpm_desc)
7199 max_gpm_desc = desc;
7202 /* From now on, do not expect DESC to give keyboard input. */
7204 void
7205 delete_keyboard_wait_descriptor (desc)
7206 int desc;
7208 int fd;
7209 int lim = max_keyboard_desc;
7211 FD_CLR (desc, &input_wait_mask);
7212 FD_CLR (desc, &non_process_wait_mask);
7214 if (desc == max_keyboard_desc)
7215 for (fd = 0; fd < lim; fd++)
7216 if (FD_ISSET (fd, &input_wait_mask)
7217 && !FD_ISSET (fd, &non_keyboard_wait_mask)
7218 && !FD_ISSET (fd, &gpm_wait_mask))
7219 max_keyboard_desc = fd;
7222 void
7223 delete_gpm_wait_descriptor (desc)
7224 int desc;
7226 int fd;
7227 int lim = max_gpm_desc;
7229 FD_CLR (desc, &input_wait_mask);
7230 FD_CLR (desc, &non_process_wait_mask);
7232 if (desc == max_gpm_desc)
7233 for (fd = 0; fd < lim; fd++)
7234 if (FD_ISSET (fd, &input_wait_mask)
7235 && !FD_ISSET (fd, &non_keyboard_wait_mask)
7236 && !FD_ISSET (fd, &non_process_wait_mask))
7237 max_gpm_desc = fd;
7240 /* Return nonzero if *MASK has a bit set
7241 that corresponds to one of the keyboard input descriptors. */
7243 static int
7244 keyboard_bit_set (mask)
7245 SELECT_TYPE *mask;
7247 int fd;
7249 for (fd = 0; fd <= max_keyboard_desc; fd++)
7250 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask)
7251 && !FD_ISSET (fd, &non_keyboard_wait_mask))
7252 return 1;
7254 return 0;
7257 /* Stop reading input from keyboard sources. */
7259 void
7260 hold_keyboard_input (void)
7262 kbd_is_on_hold = 1;
7265 /* Resume reading input from keyboard sources. */
7267 void
7268 unhold_keyboard_input (void)
7270 kbd_is_on_hold = 0;
7273 /* Return non-zero if keyboard input is on hold, zero otherwise. */
7276 kbd_on_hold_p (void)
7278 return kbd_is_on_hold;
7282 /* Enumeration of and access to system processes a-la ps(1). */
7284 DEFUN ("list-system-processes", Flist_system_processes, Slist_system_processes,
7285 0, 0, 0,
7286 doc: /* Return a list of numerical process IDs of all running processes.
7287 If this functionality is unsupported, return nil.
7289 See `process-attributes' for getting attributes of a process given its ID. */)
7292 return list_system_processes ();
7295 DEFUN ("process-attributes", Fprocess_attributes,
7296 Sprocess_attributes, 1, 1, 0,
7297 doc: /* Return attributes of the process given by its PID, a number.
7299 Value is an alist where each element is a cons cell of the form
7301 \(KEY . VALUE)
7303 If this functionality is unsupported, the value is nil.
7305 See `list-system-processes' for getting a list of all process IDs.
7307 The KEYs of the attributes that this function may return are listed
7308 below, together with the type of the associated VALUE (in parentheses).
7309 Not all platforms support all of these attributes; unsupported
7310 attributes will not appear in the returned alist.
7311 Unless explicitly indicated otherwise, numbers can have either
7312 integer or floating point values.
7314 euid -- Effective user User ID of the process (number)
7315 user -- User name corresponding to euid (string)
7316 egid -- Effective user Group ID of the process (number)
7317 group -- Group name corresponding to egid (string)
7318 comm -- Command name (executable name only) (string)
7319 state -- Process state code, such as "S", "R", or "T" (string)
7320 ppid -- Parent process ID (number)
7321 pgrp -- Process group ID (number)
7322 sess -- Session ID, i.e. process ID of session leader (number)
7323 ttname -- Controlling tty name (string)
7324 tpgid -- ID of foreground process group on the process's tty (number)
7325 minflt -- number of minor page faults (number)
7326 majflt -- number of major page faults (number)
7327 cminflt -- cumulative number of minor page faults (number)
7328 cmajflt -- cumulative number of major page faults (number)
7329 utime -- user time used by the process, in the (HIGH LOW USEC) format
7330 stime -- system time used by the process, in the (HIGH LOW USEC) format
7331 time -- sum of utime and stime, in the (HIGH LOW USEC) format
7332 cutime -- user time used by the process and its children, (HIGH LOW USEC)
7333 cstime -- system time used by the process and its children, (HIGH LOW USEC)
7334 ctime -- sum of cutime and cstime, in the (HIGH LOW USEC) format
7335 pri -- priority of the process (number)
7336 nice -- nice value of the process (number)
7337 thcount -- process thread count (number)
7338 start -- time the process started, in the (HIGH LOW USEC) format
7339 vsize -- virtual memory size of the process in KB's (number)
7340 rss -- resident set size of the process in KB's (number)
7341 etime -- elapsed time the process is running, in (HIGH LOW USEC) format
7342 pcpu -- percents of CPU time used by the process (floating-point number)
7343 pmem -- percents of total physical memory used by process's resident set
7344 (floating-point number)
7345 args -- command line which invoked the process (string). */)
7346 (pid)
7348 Lisp_Object pid;
7350 return system_process_attributes (pid);
7353 void
7354 init_process ()
7356 register int i;
7358 inhibit_sentinels = 0;
7359 kbd_is_on_hold = 0;
7361 #ifdef SIGCHLD
7362 #ifndef CANNOT_DUMP
7363 if (! noninteractive || initialized)
7364 #endif
7365 signal (SIGCHLD, sigchld_handler);
7366 #endif
7368 FD_ZERO (&input_wait_mask);
7369 FD_ZERO (&non_keyboard_wait_mask);
7370 FD_ZERO (&non_process_wait_mask);
7371 max_process_desc = 0;
7373 #ifdef NON_BLOCKING_CONNECT
7374 FD_ZERO (&connect_wait_mask);
7375 num_pending_connects = 0;
7376 #endif
7378 #ifdef ADAPTIVE_READ_BUFFERING
7379 process_output_delay_count = 0;
7380 process_output_skip = 0;
7381 #endif
7383 /* Don't do this, it caused infinite select loops. The display
7384 method should call add_keyboard_wait_descriptor on stdin if it
7385 needs that. */
7386 #if 0
7387 FD_SET (0, &input_wait_mask);
7388 #endif
7390 Vprocess_alist = Qnil;
7391 #ifdef SIGCHLD
7392 deleted_pid_list = Qnil;
7393 #endif
7394 for (i = 0; i < MAXDESC; i++)
7396 chan_process[i] = Qnil;
7397 proc_buffered_char[i] = -1;
7399 bzero (proc_decode_coding_system, sizeof proc_decode_coding_system);
7400 bzero (proc_encode_coding_system, sizeof proc_encode_coding_system);
7401 #ifdef DATAGRAM_SOCKETS
7402 bzero (datagram_address, sizeof datagram_address);
7403 #endif
7405 #ifdef HAVE_SOCKETS
7407 Lisp_Object subfeatures = Qnil;
7408 const struct socket_options *sopt;
7410 #define ADD_SUBFEATURE(key, val) \
7411 subfeatures = pure_cons (pure_cons (key, pure_cons (val, Qnil)), subfeatures)
7413 #ifdef NON_BLOCKING_CONNECT
7414 ADD_SUBFEATURE (QCnowait, Qt);
7415 #endif
7416 #ifdef DATAGRAM_SOCKETS
7417 ADD_SUBFEATURE (QCtype, Qdatagram);
7418 #endif
7419 #ifdef HAVE_SEQPACKET
7420 ADD_SUBFEATURE (QCtype, Qseqpacket);
7421 #endif
7422 #ifdef HAVE_LOCAL_SOCKETS
7423 ADD_SUBFEATURE (QCfamily, Qlocal);
7424 #endif
7425 ADD_SUBFEATURE (QCfamily, Qipv4);
7426 #ifdef AF_INET6
7427 ADD_SUBFEATURE (QCfamily, Qipv6);
7428 #endif
7429 #ifdef HAVE_GETSOCKNAME
7430 ADD_SUBFEATURE (QCservice, Qt);
7431 #endif
7432 #if defined(O_NONBLOCK) || defined(O_NDELAY)
7433 ADD_SUBFEATURE (QCserver, Qt);
7434 #endif
7436 for (sopt = socket_options; sopt->name; sopt++)
7437 subfeatures = pure_cons (intern_c_string (sopt->name), subfeatures);
7439 Fprovide (intern_c_string ("make-network-process"), subfeatures);
7441 #endif /* HAVE_SOCKETS */
7443 #if defined (DARWIN_OS)
7444 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
7445 processes. As such, we only change the default value. */
7446 if (initialized)
7448 char *release = get_operating_system_release();
7449 if (!release || !release[0] || (release[0] < MIN_PTY_KERNEL_VERSION
7450 && release[1] == '.')) {
7451 Vprocess_connection_type = Qnil;
7454 #endif
7457 void
7458 syms_of_process ()
7460 Qprocessp = intern_c_string ("processp");
7461 staticpro (&Qprocessp);
7462 Qrun = intern_c_string ("run");
7463 staticpro (&Qrun);
7464 Qstop = intern_c_string ("stop");
7465 staticpro (&Qstop);
7466 Qsignal = intern_c_string ("signal");
7467 staticpro (&Qsignal);
7469 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
7470 here again.
7472 Qexit = intern_c_string ("exit");
7473 staticpro (&Qexit); */
7475 Qopen = intern_c_string ("open");
7476 staticpro (&Qopen);
7477 Qclosed = intern_c_string ("closed");
7478 staticpro (&Qclosed);
7479 Qconnect = intern_c_string ("connect");
7480 staticpro (&Qconnect);
7481 Qfailed = intern_c_string ("failed");
7482 staticpro (&Qfailed);
7483 Qlisten = intern_c_string ("listen");
7484 staticpro (&Qlisten);
7485 Qlocal = intern_c_string ("local");
7486 staticpro (&Qlocal);
7487 Qipv4 = intern_c_string ("ipv4");
7488 staticpro (&Qipv4);
7489 #ifdef AF_INET6
7490 Qipv6 = intern_c_string ("ipv6");
7491 staticpro (&Qipv6);
7492 #endif
7493 Qdatagram = intern_c_string ("datagram");
7494 staticpro (&Qdatagram);
7495 Qseqpacket = intern_c_string ("seqpacket");
7496 staticpro (&Qseqpacket);
7498 QCport = intern_c_string (":port");
7499 staticpro (&QCport);
7500 QCspeed = intern_c_string (":speed");
7501 staticpro (&QCspeed);
7502 QCprocess = intern_c_string (":process");
7503 staticpro (&QCprocess);
7505 QCbytesize = intern_c_string (":bytesize");
7506 staticpro (&QCbytesize);
7507 QCstopbits = intern_c_string (":stopbits");
7508 staticpro (&QCstopbits);
7509 QCparity = intern_c_string (":parity");
7510 staticpro (&QCparity);
7511 Qodd = intern_c_string ("odd");
7512 staticpro (&Qodd);
7513 Qeven = intern_c_string ("even");
7514 staticpro (&Qeven);
7515 QCflowcontrol = intern_c_string (":flowcontrol");
7516 staticpro (&QCflowcontrol);
7517 Qhw = intern_c_string ("hw");
7518 staticpro (&Qhw);
7519 Qsw = intern_c_string ("sw");
7520 staticpro (&Qsw);
7521 QCsummary = intern_c_string (":summary");
7522 staticpro (&QCsummary);
7524 Qreal = intern_c_string ("real");
7525 staticpro (&Qreal);
7526 Qnetwork = intern_c_string ("network");
7527 staticpro (&Qnetwork);
7528 Qserial = intern_c_string ("serial");
7529 staticpro (&Qserial);
7531 QCname = intern_c_string (":name");
7532 staticpro (&QCname);
7533 QCbuffer = intern_c_string (":buffer");
7534 staticpro (&QCbuffer);
7535 QChost = intern_c_string (":host");
7536 staticpro (&QChost);
7537 QCservice = intern_c_string (":service");
7538 staticpro (&QCservice);
7539 QCtype = intern_c_string (":type");
7540 staticpro (&QCtype);
7541 QClocal = intern_c_string (":local");
7542 staticpro (&QClocal);
7543 QCremote = intern_c_string (":remote");
7544 staticpro (&QCremote);
7545 QCcoding = intern_c_string (":coding");
7546 staticpro (&QCcoding);
7547 QCserver = intern_c_string (":server");
7548 staticpro (&QCserver);
7549 QCnowait = intern_c_string (":nowait");
7550 staticpro (&QCnowait);
7551 QCsentinel = intern_c_string (":sentinel");
7552 staticpro (&QCsentinel);
7553 QClog = intern_c_string (":log");
7554 staticpro (&QClog);
7555 QCnoquery = intern_c_string (":noquery");
7556 staticpro (&QCnoquery);
7557 QCstop = intern_c_string (":stop");
7558 staticpro (&QCstop);
7559 QCoptions = intern_c_string (":options");
7560 staticpro (&QCoptions);
7561 QCplist = intern_c_string (":plist");
7562 staticpro (&QCplist);
7564 Qlast_nonmenu_event = intern_c_string ("last-nonmenu-event");
7565 staticpro (&Qlast_nonmenu_event);
7567 staticpro (&Vprocess_alist);
7568 #ifdef SIGCHLD
7569 staticpro (&deleted_pid_list);
7570 #endif
7572 Qeuid = intern_c_string ("euid");
7573 staticpro (&Qeuid);
7574 Qegid = intern_c_string ("egid");
7575 staticpro (&Qegid);
7576 Quser = intern_c_string ("user");
7577 staticpro (&Quser);
7578 Qgroup = intern_c_string ("group");
7579 staticpro (&Qgroup);
7580 Qcomm = intern_c_string ("comm");
7581 staticpro (&Qcomm);
7582 Qstate = intern_c_string ("state");
7583 staticpro (&Qstate);
7584 Qppid = intern_c_string ("ppid");
7585 staticpro (&Qppid);
7586 Qpgrp = intern_c_string ("pgrp");
7587 staticpro (&Qpgrp);
7588 Qsess = intern_c_string ("sess");
7589 staticpro (&Qsess);
7590 Qttname = intern_c_string ("ttname");
7591 staticpro (&Qttname);
7592 Qtpgid = intern_c_string ("tpgid");
7593 staticpro (&Qtpgid);
7594 Qminflt = intern_c_string ("minflt");
7595 staticpro (&Qminflt);
7596 Qmajflt = intern_c_string ("majflt");
7597 staticpro (&Qmajflt);
7598 Qcminflt = intern_c_string ("cminflt");
7599 staticpro (&Qcminflt);
7600 Qcmajflt = intern_c_string ("cmajflt");
7601 staticpro (&Qcmajflt);
7602 Qutime = intern_c_string ("utime");
7603 staticpro (&Qutime);
7604 Qstime = intern_c_string ("stime");
7605 staticpro (&Qstime);
7606 Qtime = intern_c_string ("time");
7607 staticpro (&Qtime);
7608 Qcutime = intern_c_string ("cutime");
7609 staticpro (&Qcutime);
7610 Qcstime = intern_c_string ("cstime");
7611 staticpro (&Qcstime);
7612 Qctime = intern_c_string ("ctime");
7613 staticpro (&Qctime);
7614 Qpri = intern_c_string ("pri");
7615 staticpro (&Qpri);
7616 Qnice = intern_c_string ("nice");
7617 staticpro (&Qnice);
7618 Qthcount = intern_c_string ("thcount");
7619 staticpro (&Qthcount);
7620 Qstart = intern_c_string ("start");
7621 staticpro (&Qstart);
7622 Qvsize = intern_c_string ("vsize");
7623 staticpro (&Qvsize);
7624 Qrss = intern_c_string ("rss");
7625 staticpro (&Qrss);
7626 Qetime = intern_c_string ("etime");
7627 staticpro (&Qetime);
7628 Qpcpu = intern_c_string ("pcpu");
7629 staticpro (&Qpcpu);
7630 Qpmem = intern_c_string ("pmem");
7631 staticpro (&Qpmem);
7632 Qargs = intern_c_string ("args");
7633 staticpro (&Qargs);
7635 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
7636 doc: /* *Non-nil means delete processes immediately when they exit.
7637 A value of nil means don't delete them until `list-processes' is run. */);
7639 delete_exited_processes = 1;
7641 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type,
7642 doc: /* Control type of device used to communicate with subprocesses.
7643 Values are nil to use a pipe, or t or `pty' to use a pty.
7644 The value has no effect if the system has no ptys or if all ptys are busy:
7645 then a pipe is used in any case.
7646 The value takes effect when `start-process' is called. */);
7647 Vprocess_connection_type = Qt;
7649 #ifdef ADAPTIVE_READ_BUFFERING
7650 DEFVAR_LISP ("process-adaptive-read-buffering", &Vprocess_adaptive_read_buffering,
7651 doc: /* If non-nil, improve receive buffering by delaying after short reads.
7652 On some systems, when Emacs reads the output from a subprocess, the output data
7653 is read in very small blocks, potentially resulting in very poor performance.
7654 This behavior can be remedied to some extent by setting this variable to a
7655 non-nil value, as it will automatically delay reading from such processes, to
7656 allow them to produce more output before Emacs tries to read it.
7657 If the value is t, the delay is reset after each write to the process; any other
7658 non-nil value means that the delay is not reset on write.
7659 The variable takes effect when `start-process' is called. */);
7660 Vprocess_adaptive_read_buffering = Qt;
7661 #endif
7663 defsubr (&Sprocessp);
7664 defsubr (&Sget_process);
7665 defsubr (&Sget_buffer_process);
7666 defsubr (&Sdelete_process);
7667 defsubr (&Sprocess_status);
7668 defsubr (&Sprocess_exit_status);
7669 defsubr (&Sprocess_id);
7670 defsubr (&Sprocess_name);
7671 defsubr (&Sprocess_tty_name);
7672 defsubr (&Sprocess_command);
7673 defsubr (&Sset_process_buffer);
7674 defsubr (&Sprocess_buffer);
7675 defsubr (&Sprocess_mark);
7676 defsubr (&Sset_process_filter);
7677 defsubr (&Sprocess_filter);
7678 defsubr (&Sset_process_sentinel);
7679 defsubr (&Sprocess_sentinel);
7680 defsubr (&Sset_process_window_size);
7681 defsubr (&Sset_process_inherit_coding_system_flag);
7682 defsubr (&Sprocess_inherit_coding_system_flag);
7683 defsubr (&Sset_process_query_on_exit_flag);
7684 defsubr (&Sprocess_query_on_exit_flag);
7685 defsubr (&Sprocess_contact);
7686 defsubr (&Sprocess_plist);
7687 defsubr (&Sset_process_plist);
7688 defsubr (&Slist_processes);
7689 defsubr (&Sprocess_list);
7690 defsubr (&Sstart_process);
7691 #ifdef HAVE_SERIAL
7692 defsubr (&Sserial_process_configure);
7693 defsubr (&Smake_serial_process);
7694 #endif /* HAVE_SERIAL */
7695 #ifdef HAVE_SOCKETS
7696 defsubr (&Sset_network_process_option);
7697 defsubr (&Smake_network_process);
7698 defsubr (&Sformat_network_address);
7699 #endif /* HAVE_SOCKETS */
7700 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
7701 #ifdef SIOCGIFCONF
7702 defsubr (&Snetwork_interface_list);
7703 #endif
7704 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
7705 defsubr (&Snetwork_interface_info);
7706 #endif
7707 #endif /* HAVE_SOCKETS ... */
7708 #ifdef DATAGRAM_SOCKETS
7709 defsubr (&Sprocess_datagram_address);
7710 defsubr (&Sset_process_datagram_address);
7711 #endif
7712 defsubr (&Saccept_process_output);
7713 defsubr (&Sprocess_send_region);
7714 defsubr (&Sprocess_send_string);
7715 defsubr (&Sinterrupt_process);
7716 defsubr (&Skill_process);
7717 defsubr (&Squit_process);
7718 defsubr (&Sstop_process);
7719 defsubr (&Scontinue_process);
7720 defsubr (&Sprocess_running_child_p);
7721 defsubr (&Sprocess_send_eof);
7722 defsubr (&Ssignal_process);
7723 defsubr (&Swaiting_for_user_input_p);
7724 defsubr (&Sprocess_type);
7725 defsubr (&Sset_process_coding_system);
7726 defsubr (&Sprocess_coding_system);
7727 defsubr (&Sset_process_filter_multibyte);
7728 defsubr (&Sprocess_filter_multibyte_p);
7729 defsubr (&Slist_system_processes);
7730 defsubr (&Sprocess_attributes);
7734 #else /* not subprocesses */
7736 #include <sys/types.h>
7737 #include <errno.h>
7738 #include <sys/stat.h>
7739 #include <stdlib.h>
7740 #include <fcntl.h>
7741 #include <setjmp.h>
7742 #ifdef HAVE_UNISTD_H
7743 #include <unistd.h>
7744 #endif
7746 #include "lisp.h"
7747 #include "systime.h"
7748 #include "character.h"
7749 #include "coding.h"
7750 #include "termopts.h"
7751 #include "sysselect.h"
7753 extern int frame_garbaged;
7755 extern EMACS_TIME timer_check ();
7756 extern int timers_run;
7758 Lisp_Object QCtype, QCname;
7760 Lisp_Object Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname, Qtpgid;
7761 Lisp_Object Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcstime;
7762 Lisp_Object Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs;
7763 Lisp_Object Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtime, Qctime;
7765 /* As described above, except assuming that there are no subprocesses:
7767 Wait for timeout to elapse and/or keyboard input to be available.
7769 time_limit is:
7770 timeout in seconds, or
7771 zero for no limit, or
7772 -1 means gobble data immediately available but don't wait for any.
7774 read_kbd is a Lisp_Object:
7775 0 to ignore keyboard input, or
7776 1 to return when input is available, or
7777 -1 means caller will actually read the input, so don't throw to
7778 the quit handler.
7780 see full version for other parameters. We know that wait_proc will
7781 always be NULL, since `subprocesses' isn't defined.
7783 do_display != 0 means redisplay should be done to show subprocess
7784 output that arrives.
7786 Return true if we received input from any process. */
7789 wait_reading_process_output (time_limit, microsecs, read_kbd, do_display,
7790 wait_for_cell, wait_proc, just_wait_proc)
7791 int time_limit, microsecs, read_kbd, do_display;
7792 Lisp_Object wait_for_cell;
7793 struct Lisp_Process *wait_proc;
7794 int just_wait_proc;
7796 register int nfds;
7797 EMACS_TIME end_time, timeout;
7798 SELECT_TYPE waitchannels;
7799 int xerrno;
7801 /* What does time_limit really mean? */
7802 if (time_limit || microsecs)
7804 EMACS_GET_TIME (end_time);
7805 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
7806 EMACS_ADD_TIME (end_time, end_time, timeout);
7809 /* Turn off periodic alarms (in case they are in use)
7810 and then turn off any other atimers,
7811 because the select emulator uses alarms. */
7812 stop_polling ();
7813 turn_on_atimers (0);
7815 while (1)
7817 int timeout_reduced_for_timers = 0;
7819 /* If calling from keyboard input, do not quit
7820 since we want to return C-g as an input character.
7821 Otherwise, do pending quit if requested. */
7822 if (read_kbd >= 0)
7823 QUIT;
7825 /* Exit now if the cell we're waiting for became non-nil. */
7826 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
7827 break;
7829 /* Compute time from now till when time limit is up */
7830 /* Exit if already run out */
7831 if (time_limit == -1)
7833 /* -1 specified for timeout means
7834 gobble output available now
7835 but don't wait at all. */
7837 EMACS_SET_SECS_USECS (timeout, 0, 0);
7839 else if (time_limit || microsecs)
7841 EMACS_GET_TIME (timeout);
7842 EMACS_SUB_TIME (timeout, end_time, timeout);
7843 if (EMACS_TIME_NEG_P (timeout))
7844 break;
7846 else
7848 EMACS_SET_SECS_USECS (timeout, 100000, 0);
7851 /* If our caller will not immediately handle keyboard events,
7852 run timer events directly.
7853 (Callers that will immediately read keyboard events
7854 call timer_delay on their own.) */
7855 if (NILP (wait_for_cell))
7857 EMACS_TIME timer_delay;
7861 int old_timers_run = timers_run;
7862 timer_delay = timer_check (1);
7863 if (timers_run != old_timers_run && do_display)
7864 /* We must retry, since a timer may have requeued itself
7865 and that could alter the time delay. */
7866 redisplay_preserve_echo_area (14);
7867 else
7868 break;
7870 while (!detect_input_pending ());
7872 /* If there is unread keyboard input, also return. */
7873 if (read_kbd != 0
7874 && requeued_events_pending_p ())
7875 break;
7877 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
7879 EMACS_TIME difference;
7880 EMACS_SUB_TIME (difference, timer_delay, timeout);
7881 if (EMACS_TIME_NEG_P (difference))
7883 timeout = timer_delay;
7884 timeout_reduced_for_timers = 1;
7889 /* Cause C-g and alarm signals to take immediate action,
7890 and cause input available signals to zero out timeout. */
7891 if (read_kbd < 0)
7892 set_waiting_for_input (&timeout);
7894 /* Wait till there is something to do. */
7896 if (! read_kbd && NILP (wait_for_cell))
7897 FD_ZERO (&waitchannels);
7898 else
7899 FD_SET (0, &waitchannels);
7901 /* If a frame has been newly mapped and needs updating,
7902 reprocess its display stuff. */
7903 if (frame_garbaged && do_display)
7905 clear_waiting_for_input ();
7906 redisplay_preserve_echo_area (15);
7907 if (read_kbd < 0)
7908 set_waiting_for_input (&timeout);
7911 if (read_kbd && detect_input_pending ())
7913 nfds = 0;
7914 FD_ZERO (&waitchannels);
7916 else
7917 nfds = select (1, &waitchannels, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
7918 &timeout);
7920 xerrno = errno;
7922 /* Make C-g and alarm signals set flags again */
7923 clear_waiting_for_input ();
7925 /* If we woke up due to SIGWINCH, actually change size now. */
7926 do_pending_window_change (0);
7928 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
7929 /* We waited the full specified time, so return now. */
7930 break;
7932 if (nfds == -1)
7934 /* If the system call was interrupted, then go around the
7935 loop again. */
7936 if (xerrno == EINTR)
7937 FD_ZERO (&waitchannels);
7938 else
7939 error ("select error: %s", emacs_strerror (xerrno));
7941 #ifdef SOLARIS2
7942 else if (nfds > 0 && (waitchannels & 1) && interrupt_input)
7943 /* System sometimes fails to deliver SIGIO. */
7944 kill (getpid (), SIGIO);
7945 #endif
7946 #ifdef SIGIO
7947 if (read_kbd && interrupt_input && (waitchannels & 1))
7948 kill (getpid (), SIGIO);
7949 #endif
7951 /* Check for keyboard input */
7953 if (read_kbd
7954 && detect_input_pending_run_timers (do_display))
7956 swallow_events (do_display);
7957 if (detect_input_pending_run_timers (do_display))
7958 break;
7961 /* If there is unread keyboard input, also return. */
7962 if (read_kbd
7963 && requeued_events_pending_p ())
7964 break;
7966 /* If wait_for_cell. check for keyboard input
7967 but don't run any timers.
7968 ??? (It seems wrong to me to check for keyboard
7969 input at all when wait_for_cell, but the code
7970 has been this way since July 1994.
7971 Try changing this after version 19.31.) */
7972 if (! NILP (wait_for_cell)
7973 && detect_input_pending ())
7975 swallow_events (do_display);
7976 if (detect_input_pending ())
7977 break;
7980 /* Exit now if the cell we're waiting for became non-nil. */
7981 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
7982 break;
7985 start_polling ();
7987 return 0;
7991 /* Don't confuse make-docfile by having two doc strings for this function.
7992 make-docfile does not pay attention to #if, for good reason! */
7993 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
7995 (name)
7996 register Lisp_Object name;
7998 return Qnil;
8001 /* Don't confuse make-docfile by having two doc strings for this function.
8002 make-docfile does not pay attention to #if, for good reason! */
8003 DEFUN ("process-inherit-coding-system-flag",
8004 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
8005 1, 1, 0,
8007 (process)
8008 register Lisp_Object process;
8010 /* Ignore the argument and return the value of
8011 inherit-process-coding-system. */
8012 return inherit_process_coding_system ? Qt : Qnil;
8015 /* Kill all processes associated with `buffer'.
8016 If `buffer' is nil, kill all processes.
8017 Since we have no subprocesses, this does nothing. */
8019 void
8020 kill_buffer_processes (buffer)
8021 Lisp_Object buffer;
8025 DEFUN ("list-system-processes", Flist_system_processes, Slist_system_processes,
8026 0, 0, 0,
8027 doc: /* Return a list of numerical process IDs of all running processes.
8028 If this functionality is unsupported, return nil.
8030 See `process-attributes' for getting attributes of a process given its ID. */)
8033 return list_system_processes ();
8036 DEFUN ("process-attributes", Fprocess_attributes,
8037 Sprocess_attributes, 1, 1, 0,
8038 doc: /* Return attributes of the process given by its PID, a number.
8040 Value is an alist where each element is a cons cell of the form
8042 \(KEY . VALUE)
8044 If this functionality is unsupported, the value is nil.
8046 See `list-system-processes' for getting a list of all process IDs.
8048 The KEYs of the attributes that this function may return are listed
8049 below, together with the type of the associated VALUE (in parentheses).
8050 Not all platforms support all of these attributes; unsupported
8051 attributes will not appear in the returned alist.
8052 Unless explicitly indicated otherwise, numbers can have either
8053 integer or floating point values.
8055 euid -- Effective user User ID of the process (number)
8056 user -- User name corresponding to euid (string)
8057 egid -- Effective user Group ID of the process (number)
8058 group -- Group name corresponding to egid (string)
8059 comm -- Command name (executable name only) (string)
8060 state -- Process state code, such as "S", "R", or "T" (string)
8061 ppid -- Parent process ID (number)
8062 pgrp -- Process group ID (number)
8063 sess -- Session ID, i.e. process ID of session leader (number)
8064 ttname -- Controlling tty name (string)
8065 tpgid -- ID of foreground process group on the process's tty (number)
8066 minflt -- number of minor page faults (number)
8067 majflt -- number of major page faults (number)
8068 cminflt -- cumulative number of minor page faults (number)
8069 cmajflt -- cumulative number of major page faults (number)
8070 utime -- user time used by the process, in the (HIGH LOW USEC) format
8071 stime -- system time used by the process, in the (HIGH LOW USEC) format
8072 time -- sum of utime and stime, in the (HIGH LOW USEC) format
8073 cutime -- user time used by the process and its children, (HIGH LOW USEC)
8074 cstime -- system time used by the process and its children, (HIGH LOW USEC)
8075 ctime -- sum of cutime and cstime, in the (HIGH LOW USEC) format
8076 pri -- priority of the process (number)
8077 nice -- nice value of the process (number)
8078 thcount -- process thread count (number)
8079 start -- time the process started, in the (HIGH LOW USEC) format
8080 vsize -- virtual memory size of the process in KB's (number)
8081 rss -- resident set size of the process in KB's (number)
8082 etime -- elapsed time the process is running, in (HIGH LOW USEC) format
8083 pcpu -- percents of CPU time used by the process (floating-point number)
8084 pmem -- percents of total physical memory used by process's resident set
8085 (floating-point number)
8086 args -- command line which invoked the process (string). */)
8087 (pid)
8089 Lisp_Object pid;
8091 return system_process_attributes (pid);
8094 void
8095 init_process ()
8099 void
8100 syms_of_process ()
8102 QCtype = intern_c_string (":type");
8103 staticpro (&QCtype);
8104 QCname = intern_c_string (":name");
8105 staticpro (&QCname);
8106 QCtype = intern_c_string (":type");
8107 staticpro (&QCtype);
8108 QCname = intern_c_string (":name");
8109 staticpro (&QCname);
8110 Qeuid = intern_c_string ("euid");
8111 staticpro (&Qeuid);
8112 Qegid = intern_c_string ("egid");
8113 staticpro (&Qegid);
8114 Quser = intern_c_string ("user");
8115 staticpro (&Quser);
8116 Qgroup = intern_c_string ("group");
8117 staticpro (&Qgroup);
8118 Qcomm = intern_c_string ("comm");
8119 staticpro (&Qcomm);
8120 Qstate = intern_c_string ("state");
8121 staticpro (&Qstate);
8122 Qppid = intern_c_string ("ppid");
8123 staticpro (&Qppid);
8124 Qpgrp = intern_c_string ("pgrp");
8125 staticpro (&Qpgrp);
8126 Qsess = intern_c_string ("sess");
8127 staticpro (&Qsess);
8128 Qttname = intern_c_string ("ttname");
8129 staticpro (&Qttname);
8130 Qtpgid = intern_c_string ("tpgid");
8131 staticpro (&Qtpgid);
8132 Qminflt = intern_c_string ("minflt");
8133 staticpro (&Qminflt);
8134 Qmajflt = intern_c_string ("majflt");
8135 staticpro (&Qmajflt);
8136 Qcminflt = intern_c_string ("cminflt");
8137 staticpro (&Qcminflt);
8138 Qcmajflt = intern_c_string ("cmajflt");
8139 staticpro (&Qcmajflt);
8140 Qutime = intern_c_string ("utime");
8141 staticpro (&Qutime);
8142 Qstime = intern_c_string ("stime");
8143 staticpro (&Qstime);
8144 Qtime = intern_c_string ("time");
8145 staticpro (&Qtime);
8146 Qcutime = intern_c_string ("cutime");
8147 staticpro (&Qcutime);
8148 Qcstime = intern_c_string ("cstime");
8149 staticpro (&Qcstime);
8150 Qctime = intern_c_string ("ctime");
8151 staticpro (&Qctime);
8152 Qpri = intern_c_string ("pri");
8153 staticpro (&Qpri);
8154 Qnice = intern_c_string ("nice");
8155 staticpro (&Qnice);
8156 Qthcount = intern_c_string ("thcount");
8157 staticpro (&Qthcount);
8158 Qstart = intern_c_string ("start");
8159 staticpro (&Qstart);
8160 Qvsize = intern_c_string ("vsize");
8161 staticpro (&Qvsize);
8162 Qrss = intern_c_string ("rss");
8163 staticpro (&Qrss);
8164 Qetime = intern_c_string ("etime");
8165 staticpro (&Qetime);
8166 Qpcpu = intern_c_string ("pcpu");
8167 staticpro (&Qpcpu);
8168 Qpmem = intern_c_string ("pmem");
8169 staticpro (&Qpmem);
8170 Qargs = intern_c_string ("args");
8171 staticpro (&Qargs);
8173 defsubr (&Sget_buffer_process);
8174 defsubr (&Sprocess_inherit_coding_system_flag);
8175 defsubr (&Slist_system_processes);
8176 defsubr (&Sprocess_attributes);
8180 #endif /* not subprocesses */
8182 /* arch-tag: 3706c011-7b9a-4117-bd4f-59e7f701a4c4
8183 (do not change this comment) */