Backport fix for Bug#6571 from trunk. NOTE: May cause merge conflicts.
[emacs/old-mirror.git] / src / process.c
blob567300e2f64bcfb169069e641c1cd844eaa40c0c
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 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 PATH. If
1602 nil, just associate a pty with the buffer. Remaining arguments are
1603 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 /* This turns off all alarm-based interrupts; the
3660 bind_polling_period call above doesn't always turn all the
3661 short-interval ones off, especially if interrupt_input is
3662 set.
3664 It'd be nice to be able to control the connect timeout
3665 though. Would non-blocking connect calls be portable?
3667 This used to be conditioned by HAVE_GETADDRINFO. Why? */
3669 turn_on_atimers (0);
3671 ret = connect (s, lres->ai_addr, lres->ai_addrlen);
3672 xerrno = errno;
3674 turn_on_atimers (1);
3676 if (ret == 0 || xerrno == EISCONN)
3678 /* The unwind-protect will be discarded afterwards.
3679 Likewise for immediate_quit. */
3680 break;
3683 #ifdef NON_BLOCKING_CONNECT
3684 #ifdef EINPROGRESS
3685 if (is_non_blocking_client && xerrno == EINPROGRESS)
3686 break;
3687 #else
3688 #ifdef EWOULDBLOCK
3689 if (is_non_blocking_client && xerrno == EWOULDBLOCK)
3690 break;
3691 #endif
3692 #endif
3693 #endif
3695 immediate_quit = 0;
3697 /* Discard the unwind protect closing S. */
3698 specpdl_ptr = specpdl + count1;
3699 emacs_close (s);
3700 s = -1;
3702 if (xerrno == EINTR)
3703 goto retry_connect;
3706 if (s >= 0)
3708 #ifdef DATAGRAM_SOCKETS
3709 if (socktype == SOCK_DGRAM)
3711 if (datagram_address[s].sa)
3712 abort ();
3713 datagram_address[s].sa = (struct sockaddr *) xmalloc (lres->ai_addrlen);
3714 datagram_address[s].len = lres->ai_addrlen;
3715 if (is_server)
3717 Lisp_Object remote;
3718 bzero (datagram_address[s].sa, lres->ai_addrlen);
3719 if (remote = Fplist_get (contact, QCremote), !NILP (remote))
3721 int rfamily, rlen;
3722 rlen = get_lisp_to_sockaddr_size (remote, &rfamily);
3723 if (rfamily == lres->ai_family && rlen == lres->ai_addrlen)
3724 conv_lisp_to_sockaddr (rfamily, remote,
3725 datagram_address[s].sa, rlen);
3728 else
3729 bcopy (lres->ai_addr, datagram_address[s].sa, lres->ai_addrlen);
3731 #endif
3732 contact = Fplist_put (contact, QCaddress,
3733 conv_sockaddr_to_lisp (lres->ai_addr, lres->ai_addrlen));
3734 #ifdef HAVE_GETSOCKNAME
3735 if (!is_server)
3737 struct sockaddr_in sa1;
3738 int len1 = sizeof (sa1);
3739 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3740 contact = Fplist_put (contact, QClocal,
3741 conv_sockaddr_to_lisp (&sa1, len1));
3743 #endif
3746 immediate_quit = 0;
3748 #ifdef HAVE_GETADDRINFO
3749 if (res != &ai)
3751 BLOCK_INPUT;
3752 freeaddrinfo (res);
3753 UNBLOCK_INPUT;
3755 #endif
3757 /* Discard the unwind protect for closing S, if any. */
3758 specpdl_ptr = specpdl + count1;
3760 /* Unwind bind_polling_period and request_sigio. */
3761 unbind_to (count, Qnil);
3763 if (s < 0)
3765 /* If non-blocking got this far - and failed - assume non-blocking is
3766 not supported after all. This is probably a wrong assumption, but
3767 the normal blocking calls to open-network-stream handles this error
3768 better. */
3769 if (is_non_blocking_client)
3770 return Qnil;
3772 errno = xerrno;
3773 if (is_server)
3774 report_file_error ("make server process failed", contact);
3775 else
3776 report_file_error ("make client process failed", contact);
3779 inch = s;
3780 outch = s;
3782 if (!NILP (buffer))
3783 buffer = Fget_buffer_create (buffer);
3784 proc = make_process (name);
3786 chan_process[inch] = proc;
3788 #ifdef O_NONBLOCK
3789 fcntl (inch, F_SETFL, O_NONBLOCK);
3790 #else
3791 #ifdef O_NDELAY
3792 fcntl (inch, F_SETFL, O_NDELAY);
3793 #endif
3794 #endif
3796 p = XPROCESS (proc);
3798 p->childp = contact;
3799 p->plist = Fcopy_sequence (Fplist_get (contact, QCplist));
3800 p->type = Qnetwork;
3802 p->buffer = buffer;
3803 p->sentinel = sentinel;
3804 p->filter = filter;
3805 p->log = Fplist_get (contact, QClog);
3806 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
3807 p->kill_without_query = 1;
3808 if ((tem = Fplist_get (contact, QCstop), !NILP (tem)))
3809 p->command = Qt;
3810 p->pid = 0;
3811 p->infd = inch;
3812 p->outfd = outch;
3813 if (is_server && socktype != SOCK_DGRAM)
3814 p->status = Qlisten;
3816 /* Make the process marker point into the process buffer (if any). */
3817 if (BUFFERP (buffer))
3818 set_marker_both (p->mark, buffer,
3819 BUF_ZV (XBUFFER (buffer)),
3820 BUF_ZV_BYTE (XBUFFER (buffer)));
3822 #ifdef NON_BLOCKING_CONNECT
3823 if (is_non_blocking_client)
3825 /* We may get here if connect did succeed immediately. However,
3826 in that case, we still need to signal this like a non-blocking
3827 connection. */
3828 p->status = Qconnect;
3829 if (!FD_ISSET (inch, &connect_wait_mask))
3831 FD_SET (inch, &connect_wait_mask);
3832 num_pending_connects++;
3835 else
3836 #endif
3837 /* A server may have a client filter setting of Qt, but it must
3838 still listen for incoming connects unless it is stopped. */
3839 if ((!EQ (p->filter, Qt) && !EQ (p->command, Qt))
3840 || (EQ (p->status, Qlisten) && NILP (p->command)))
3842 FD_SET (inch, &input_wait_mask);
3843 FD_SET (inch, &non_keyboard_wait_mask);
3846 if (inch > max_process_desc)
3847 max_process_desc = inch;
3849 tem = Fplist_member (contact, QCcoding);
3850 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
3851 tem = Qnil; /* No error message (too late!). */
3854 /* Setup coding systems for communicating with the network stream. */
3855 struct gcpro gcpro1;
3856 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3857 Lisp_Object coding_systems = Qt;
3858 Lisp_Object args[5], val;
3860 if (!NILP (tem))
3862 val = XCAR (XCDR (tem));
3863 if (CONSP (val))
3864 val = XCAR (val);
3866 else if (!NILP (Vcoding_system_for_read))
3867 val = Vcoding_system_for_read;
3868 else if ((!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters))
3869 || (NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters)))
3870 /* We dare not decode end-of-line format by setting VAL to
3871 Qraw_text, because the existing Emacs Lisp libraries
3872 assume that they receive bare code including a sequene of
3873 CR LF. */
3874 val = Qnil;
3875 else
3877 if (NILP (host) || NILP (service))
3878 coding_systems = Qnil;
3879 else
3881 args[0] = Qopen_network_stream, args[1] = name,
3882 args[2] = buffer, args[3] = host, args[4] = service;
3883 GCPRO1 (proc);
3884 coding_systems = Ffind_operation_coding_system (5, args);
3885 UNGCPRO;
3887 if (CONSP (coding_systems))
3888 val = XCAR (coding_systems);
3889 else if (CONSP (Vdefault_process_coding_system))
3890 val = XCAR (Vdefault_process_coding_system);
3891 else
3892 val = Qnil;
3894 p->decode_coding_system = val;
3896 if (!NILP (tem))
3898 val = XCAR (XCDR (tem));
3899 if (CONSP (val))
3900 val = XCDR (val);
3902 else if (!NILP (Vcoding_system_for_write))
3903 val = Vcoding_system_for_write;
3904 else if (NILP (current_buffer->enable_multibyte_characters))
3905 val = Qnil;
3906 else
3908 if (EQ (coding_systems, Qt))
3910 if (NILP (host) || NILP (service))
3911 coding_systems = Qnil;
3912 else
3914 args[0] = Qopen_network_stream, args[1] = name,
3915 args[2] = buffer, args[3] = host, args[4] = service;
3916 GCPRO1 (proc);
3917 coding_systems = Ffind_operation_coding_system (5, args);
3918 UNGCPRO;
3921 if (CONSP (coding_systems))
3922 val = XCDR (coding_systems);
3923 else if (CONSP (Vdefault_process_coding_system))
3924 val = XCDR (Vdefault_process_coding_system);
3925 else
3926 val = Qnil;
3928 p->encode_coding_system = val;
3930 setup_process_coding_systems (proc);
3932 p->decoding_buf = make_uninit_string (0);
3933 p->decoding_carryover = 0;
3934 p->encoding_buf = make_uninit_string (0);
3936 p->inherit_coding_system_flag
3937 = !(!NILP (tem) || NILP (buffer) || !inherit_process_coding_system);
3939 UNGCPRO;
3940 return proc;
3942 #endif /* HAVE_SOCKETS */
3945 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
3947 #ifdef SIOCGIFCONF
3948 DEFUN ("network-interface-list", Fnetwork_interface_list, Snetwork_interface_list, 0, 0, 0,
3949 doc: /* Return an alist of all network interfaces and their network address.
3950 Each element is a cons, the car of which is a string containing the
3951 interface name, and the cdr is the network address in internal
3952 format; see the description of ADDRESS in `make-network-process'. */)
3955 struct ifconf ifconf;
3956 struct ifreq *ifreqs = NULL;
3957 int ifaces = 0;
3958 int buf_size, s;
3959 Lisp_Object res;
3961 s = socket (AF_INET, SOCK_STREAM, 0);
3962 if (s < 0)
3963 return Qnil;
3965 again:
3966 ifaces += 25;
3967 buf_size = ifaces * sizeof(ifreqs[0]);
3968 ifreqs = (struct ifreq *)xrealloc(ifreqs, buf_size);
3969 if (!ifreqs)
3971 close (s);
3972 return Qnil;
3975 ifconf.ifc_len = buf_size;
3976 ifconf.ifc_req = ifreqs;
3977 if (ioctl (s, SIOCGIFCONF, &ifconf))
3979 close (s);
3980 return Qnil;
3983 if (ifconf.ifc_len == buf_size)
3984 goto again;
3986 close (s);
3987 ifaces = ifconf.ifc_len / sizeof (ifreqs[0]);
3989 res = Qnil;
3990 while (--ifaces >= 0)
3992 struct ifreq *ifq = &ifreqs[ifaces];
3993 char namebuf[sizeof (ifq->ifr_name) + 1];
3994 if (ifq->ifr_addr.sa_family != AF_INET)
3995 continue;
3996 bcopy (ifq->ifr_name, namebuf, sizeof (ifq->ifr_name));
3997 namebuf[sizeof (ifq->ifr_name)] = 0;
3998 res = Fcons (Fcons (build_string (namebuf),
3999 conv_sockaddr_to_lisp (&ifq->ifr_addr,
4000 sizeof (struct sockaddr))),
4001 res);
4004 return res;
4006 #endif /* SIOCGIFCONF */
4008 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
4010 struct ifflag_def {
4011 int flag_bit;
4012 const char *flag_sym;
4015 static const struct ifflag_def ifflag_table[] = {
4016 #ifdef IFF_UP
4017 { IFF_UP, "up" },
4018 #endif
4019 #ifdef IFF_BROADCAST
4020 { IFF_BROADCAST, "broadcast" },
4021 #endif
4022 #ifdef IFF_DEBUG
4023 { IFF_DEBUG, "debug" },
4024 #endif
4025 #ifdef IFF_LOOPBACK
4026 { IFF_LOOPBACK, "loopback" },
4027 #endif
4028 #ifdef IFF_POINTOPOINT
4029 { IFF_POINTOPOINT, "pointopoint" },
4030 #endif
4031 #ifdef IFF_RUNNING
4032 { IFF_RUNNING, "running" },
4033 #endif
4034 #ifdef IFF_NOARP
4035 { IFF_NOARP, "noarp" },
4036 #endif
4037 #ifdef IFF_PROMISC
4038 { IFF_PROMISC, "promisc" },
4039 #endif
4040 #ifdef IFF_NOTRAILERS
4041 { IFF_NOTRAILERS, "notrailers" },
4042 #endif
4043 #ifdef IFF_ALLMULTI
4044 { IFF_ALLMULTI, "allmulti" },
4045 #endif
4046 #ifdef IFF_MASTER
4047 { IFF_MASTER, "master" },
4048 #endif
4049 #ifdef IFF_SLAVE
4050 { IFF_SLAVE, "slave" },
4051 #endif
4052 #ifdef IFF_MULTICAST
4053 { IFF_MULTICAST, "multicast" },
4054 #endif
4055 #ifdef IFF_PORTSEL
4056 { IFF_PORTSEL, "portsel" },
4057 #endif
4058 #ifdef IFF_AUTOMEDIA
4059 { IFF_AUTOMEDIA, "automedia" },
4060 #endif
4061 #ifdef IFF_DYNAMIC
4062 { IFF_DYNAMIC, "dynamic" },
4063 #endif
4064 #ifdef IFF_OACTIVE
4065 { IFF_OACTIVE, "oactive" }, /* OpenBSD: transmission in progress */
4066 #endif
4067 #ifdef IFF_SIMPLEX
4068 { IFF_SIMPLEX, "simplex" }, /* OpenBSD: can't hear own transmissions */
4069 #endif
4070 #ifdef IFF_LINK0
4071 { IFF_LINK0, "link0" }, /* OpenBSD: per link layer defined bit */
4072 #endif
4073 #ifdef IFF_LINK1
4074 { IFF_LINK1, "link1" }, /* OpenBSD: per link layer defined bit */
4075 #endif
4076 #ifdef IFF_LINK2
4077 { IFF_LINK2, "link2" }, /* OpenBSD: per link layer defined bit */
4078 #endif
4079 { 0, 0 }
4082 DEFUN ("network-interface-info", Fnetwork_interface_info, Snetwork_interface_info, 1, 1, 0,
4083 doc: /* Return information about network interface named IFNAME.
4084 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
4085 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
4086 NETMASK is the layer 3 network mask, HWADDR is the layer 2 addres, and
4087 FLAGS is the current flags of the interface. */)
4088 (ifname)
4089 Lisp_Object ifname;
4091 struct ifreq rq;
4092 Lisp_Object res = Qnil;
4093 Lisp_Object elt;
4094 int s;
4095 int any = 0;
4097 CHECK_STRING (ifname);
4099 bzero (rq.ifr_name, sizeof rq.ifr_name);
4100 strncpy (rq.ifr_name, SDATA (ifname), sizeof (rq.ifr_name));
4102 s = socket (AF_INET, SOCK_STREAM, 0);
4103 if (s < 0)
4104 return Qnil;
4106 elt = Qnil;
4107 #if defined(SIOCGIFFLAGS) && defined(HAVE_STRUCT_IFREQ_IFR_FLAGS)
4108 if (ioctl (s, SIOCGIFFLAGS, &rq) == 0)
4110 int flags = rq.ifr_flags;
4111 const struct ifflag_def *fp;
4112 int fnum;
4114 any++;
4115 for (fp = ifflag_table; flags != 0 && fp->flag_sym; fp++)
4117 if (flags & fp->flag_bit)
4119 elt = Fcons (intern (fp->flag_sym), elt);
4120 flags -= fp->flag_bit;
4123 for (fnum = 0; flags && fnum < 32; fnum++)
4125 if (flags & (1 << fnum))
4127 elt = Fcons (make_number (fnum), elt);
4131 #endif
4132 res = Fcons (elt, res);
4134 elt = Qnil;
4135 #if defined(SIOCGIFHWADDR) && defined(HAVE_STRUCT_IFREQ_IFR_HWADDR)
4136 if (ioctl (s, SIOCGIFHWADDR, &rq) == 0)
4138 Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil);
4139 register struct Lisp_Vector *p = XVECTOR (hwaddr);
4140 int n;
4142 any++;
4143 for (n = 0; n < 6; n++)
4144 p->contents[n] = make_number (((unsigned char *)&rq.ifr_hwaddr.sa_data[0])[n]);
4145 elt = Fcons (make_number (rq.ifr_hwaddr.sa_family), hwaddr);
4147 #endif
4148 res = Fcons (elt, res);
4150 elt = Qnil;
4151 #if defined(SIOCGIFNETMASK) && (defined(HAVE_STRUCT_IFREQ_IFR_NETMASK) || defined(HAVE_STRUCT_IFREQ_IFR_ADDR))
4152 if (ioctl (s, SIOCGIFNETMASK, &rq) == 0)
4154 any++;
4155 #ifdef HAVE_STRUCT_IFREQ_IFR_NETMASK
4156 elt = conv_sockaddr_to_lisp (&rq.ifr_netmask, sizeof (rq.ifr_netmask));
4157 #else
4158 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
4159 #endif
4161 #endif
4162 res = Fcons (elt, res);
4164 elt = Qnil;
4165 #if defined(SIOCGIFBRDADDR) && defined(HAVE_STRUCT_IFREQ_IFR_BROADADDR)
4166 if (ioctl (s, SIOCGIFBRDADDR, &rq) == 0)
4168 any++;
4169 elt = conv_sockaddr_to_lisp (&rq.ifr_broadaddr, sizeof (rq.ifr_broadaddr));
4171 #endif
4172 res = Fcons (elt, res);
4174 elt = Qnil;
4175 #if defined(SIOCGIFADDR) && defined(HAVE_STRUCT_IFREQ_IFR_ADDR)
4176 if (ioctl (s, SIOCGIFADDR, &rq) == 0)
4178 any++;
4179 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
4181 #endif
4182 res = Fcons (elt, res);
4184 close (s);
4186 return any ? res : Qnil;
4188 #endif
4189 #endif /* HAVE_SOCKETS */
4191 /* Turn off input and output for process PROC. */
4193 void
4194 deactivate_process (proc)
4195 Lisp_Object proc;
4197 register int inchannel, outchannel;
4198 register struct Lisp_Process *p = XPROCESS (proc);
4200 inchannel = p->infd;
4201 outchannel = p->outfd;
4203 #ifdef ADAPTIVE_READ_BUFFERING
4204 if (p->read_output_delay > 0)
4206 if (--process_output_delay_count < 0)
4207 process_output_delay_count = 0;
4208 p->read_output_delay = 0;
4209 p->read_output_skip = 0;
4211 #endif
4213 if (inchannel >= 0)
4215 /* Beware SIGCHLD hereabouts. */
4216 flush_pending_output (inchannel);
4217 emacs_close (inchannel);
4218 if (outchannel >= 0 && outchannel != inchannel)
4219 emacs_close (outchannel);
4221 p->infd = -1;
4222 p->outfd = -1;
4223 #ifdef DATAGRAM_SOCKETS
4224 if (DATAGRAM_CHAN_P (inchannel))
4226 xfree (datagram_address[inchannel].sa);
4227 datagram_address[inchannel].sa = 0;
4228 datagram_address[inchannel].len = 0;
4230 #endif
4231 chan_process[inchannel] = Qnil;
4232 FD_CLR (inchannel, &input_wait_mask);
4233 FD_CLR (inchannel, &non_keyboard_wait_mask);
4234 #ifdef NON_BLOCKING_CONNECT
4235 if (FD_ISSET (inchannel, &connect_wait_mask))
4237 FD_CLR (inchannel, &connect_wait_mask);
4238 if (--num_pending_connects < 0)
4239 abort ();
4241 #endif
4242 if (inchannel == max_process_desc)
4244 int i;
4245 /* We just closed the highest-numbered process input descriptor,
4246 so recompute the highest-numbered one now. */
4247 max_process_desc = 0;
4248 for (i = 0; i < MAXDESC; i++)
4249 if (!NILP (chan_process[i]))
4250 max_process_desc = i;
4255 /* Close all descriptors currently in use for communication
4256 with subprocess. This is used in a newly-forked subprocess
4257 to get rid of irrelevant descriptors. */
4259 void
4260 close_process_descs ()
4262 #ifndef WINDOWSNT
4263 int i;
4264 for (i = 0; i < MAXDESC; i++)
4266 Lisp_Object process;
4267 process = chan_process[i];
4268 if (!NILP (process))
4270 int in = XPROCESS (process)->infd;
4271 int out = XPROCESS (process)->outfd;
4272 if (in >= 0)
4273 emacs_close (in);
4274 if (out >= 0 && in != out)
4275 emacs_close (out);
4278 #endif
4281 DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
4282 0, 4, 0,
4283 doc: /* Allow any pending output from subprocesses to be read by Emacs.
4284 It is read into the process' buffers or given to their filter functions.
4285 Non-nil arg PROCESS means do not return until some output has been received
4286 from PROCESS.
4288 Non-nil second arg SECONDS and third arg MILLISEC are number of seconds
4289 and milliseconds to wait; return after that much time whether or not
4290 there is any subprocess output. If SECONDS is a floating point number,
4291 it specifies a fractional number of seconds to wait.
4292 The MILLISEC argument is obsolete and should be avoided.
4294 If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
4295 from PROCESS, suspending reading output from other processes.
4296 If JUST-THIS-ONE is an integer, don't run any timers either.
4297 Return non-nil if we received any output before the timeout expired. */)
4298 (process, seconds, millisec, just_this_one)
4299 register Lisp_Object process, seconds, millisec, just_this_one;
4301 int secs, usecs = 0;
4303 if (! NILP (process))
4304 CHECK_PROCESS (process);
4305 else
4306 just_this_one = Qnil;
4308 if (!NILP (millisec))
4309 { /* Obsolete calling convention using integers rather than floats. */
4310 CHECK_NUMBER (millisec);
4311 if (NILP (seconds))
4312 seconds = make_float (XINT (millisec) / 1000.0);
4313 else
4315 CHECK_NUMBER (seconds);
4316 seconds = make_float (XINT (millisec) / 1000.0 + XINT (seconds));
4320 if (!NILP (seconds))
4322 if (INTEGERP (seconds))
4323 secs = XINT (seconds);
4324 else if (FLOATP (seconds))
4326 double timeout = XFLOAT_DATA (seconds);
4327 secs = (int) timeout;
4328 usecs = (int) ((timeout - (double) secs) * 1000000);
4330 else
4331 wrong_type_argument (Qnumberp, seconds);
4333 if (secs < 0 || (secs == 0 && usecs == 0))
4334 secs = -1, usecs = 0;
4336 else
4337 secs = NILP (process) ? -1 : 0;
4339 return
4340 (wait_reading_process_output (secs, usecs, 0, 0,
4341 Qnil,
4342 !NILP (process) ? XPROCESS (process) : NULL,
4343 NILP (just_this_one) ? 0 :
4344 !INTEGERP (just_this_one) ? 1 : -1)
4345 ? Qt : Qnil);
4348 /* Accept a connection for server process SERVER on CHANNEL. */
4350 static int connect_counter = 0;
4352 static void
4353 server_accept_connection (server, channel)
4354 Lisp_Object server;
4355 int channel;
4357 Lisp_Object proc, caller, name, buffer;
4358 Lisp_Object contact, host, service;
4359 struct Lisp_Process *ps= XPROCESS (server);
4360 struct Lisp_Process *p;
4361 int s;
4362 union u_sockaddr {
4363 struct sockaddr sa;
4364 struct sockaddr_in in;
4365 #ifdef AF_INET6
4366 struct sockaddr_in6 in6;
4367 #endif
4368 #ifdef HAVE_LOCAL_SOCKETS
4369 struct sockaddr_un un;
4370 #endif
4371 } saddr;
4372 int len = sizeof saddr;
4374 s = accept (channel, &saddr.sa, &len);
4376 if (s < 0)
4378 int code = errno;
4380 if (code == EAGAIN)
4381 return;
4382 #ifdef EWOULDBLOCK
4383 if (code == EWOULDBLOCK)
4384 return;
4385 #endif
4387 if (!NILP (ps->log))
4388 call3 (ps->log, server, Qnil,
4389 concat3 (build_string ("accept failed with code"),
4390 Fnumber_to_string (make_number (code)),
4391 build_string ("\n")));
4392 return;
4395 connect_counter++;
4397 /* Setup a new process to handle the connection. */
4399 /* Generate a unique identification of the caller, and build contact
4400 information for this process. */
4401 host = Qt;
4402 service = Qnil;
4403 switch (saddr.sa.sa_family)
4405 case AF_INET:
4407 Lisp_Object args[5];
4408 unsigned char *ip = (unsigned char *)&saddr.in.sin_addr.s_addr;
4409 args[0] = build_string ("%d.%d.%d.%d");
4410 args[1] = make_number (*ip++);
4411 args[2] = make_number (*ip++);
4412 args[3] = make_number (*ip++);
4413 args[4] = make_number (*ip++);
4414 host = Fformat (5, args);
4415 service = make_number (ntohs (saddr.in.sin_port));
4417 args[0] = build_string (" <%s:%d>");
4418 args[1] = host;
4419 args[2] = service;
4420 caller = Fformat (3, args);
4422 break;
4424 #ifdef AF_INET6
4425 case AF_INET6:
4427 Lisp_Object args[9];
4428 uint16_t *ip6 = (uint16_t *)&saddr.in6.sin6_addr;
4429 int i;
4430 args[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
4431 for (i = 0; i < 8; i++)
4432 args[i+1] = make_number (ntohs(ip6[i]));
4433 host = Fformat (9, args);
4434 service = make_number (ntohs (saddr.in.sin_port));
4436 args[0] = build_string (" <[%s]:%d>");
4437 args[1] = host;
4438 args[2] = service;
4439 caller = Fformat (3, args);
4441 break;
4442 #endif
4444 #ifdef HAVE_LOCAL_SOCKETS
4445 case AF_LOCAL:
4446 #endif
4447 default:
4448 caller = Fnumber_to_string (make_number (connect_counter));
4449 caller = concat3 (build_string (" <"), caller, build_string (">"));
4450 break;
4453 /* Create a new buffer name for this process if it doesn't have a
4454 filter. The new buffer name is based on the buffer name or
4455 process name of the server process concatenated with the caller
4456 identification. */
4458 if (!NILP (ps->filter) && !EQ (ps->filter, Qt))
4459 buffer = Qnil;
4460 else
4462 buffer = ps->buffer;
4463 if (!NILP (buffer))
4464 buffer = Fbuffer_name (buffer);
4465 else
4466 buffer = ps->name;
4467 if (!NILP (buffer))
4469 buffer = concat2 (buffer, caller);
4470 buffer = Fget_buffer_create (buffer);
4474 /* Generate a unique name for the new server process. Combine the
4475 server process name with the caller identification. */
4477 name = concat2 (ps->name, caller);
4478 proc = make_process (name);
4480 chan_process[s] = proc;
4482 #ifdef O_NONBLOCK
4483 fcntl (s, F_SETFL, O_NONBLOCK);
4484 #else
4485 #ifdef O_NDELAY
4486 fcntl (s, F_SETFL, O_NDELAY);
4487 #endif
4488 #endif
4490 p = XPROCESS (proc);
4492 /* Build new contact information for this setup. */
4493 contact = Fcopy_sequence (ps->childp);
4494 contact = Fplist_put (contact, QCserver, Qnil);
4495 contact = Fplist_put (contact, QChost, host);
4496 if (!NILP (service))
4497 contact = Fplist_put (contact, QCservice, service);
4498 contact = Fplist_put (contact, QCremote,
4499 conv_sockaddr_to_lisp (&saddr.sa, len));
4500 #ifdef HAVE_GETSOCKNAME
4501 len = sizeof saddr;
4502 if (getsockname (s, &saddr.sa, &len) == 0)
4503 contact = Fplist_put (contact, QClocal,
4504 conv_sockaddr_to_lisp (&saddr.sa, len));
4505 #endif
4507 p->childp = contact;
4508 p->plist = Fcopy_sequence (ps->plist);
4509 p->type = Qnetwork;
4511 p->buffer = buffer;
4512 p->sentinel = ps->sentinel;
4513 p->filter = ps->filter;
4514 p->command = Qnil;
4515 p->pid = 0;
4516 p->infd = s;
4517 p->outfd = s;
4518 p->status = Qrun;
4520 /* Client processes for accepted connections are not stopped initially. */
4521 if (!EQ (p->filter, Qt))
4523 FD_SET (s, &input_wait_mask);
4524 FD_SET (s, &non_keyboard_wait_mask);
4527 if (s > max_process_desc)
4528 max_process_desc = s;
4530 /* Setup coding system for new process based on server process.
4531 This seems to be the proper thing to do, as the coding system
4532 of the new process should reflect the settings at the time the
4533 server socket was opened; not the current settings. */
4535 p->decode_coding_system = ps->decode_coding_system;
4536 p->encode_coding_system = ps->encode_coding_system;
4537 setup_process_coding_systems (proc);
4539 p->decoding_buf = make_uninit_string (0);
4540 p->decoding_carryover = 0;
4541 p->encoding_buf = make_uninit_string (0);
4543 p->inherit_coding_system_flag
4544 = (NILP (buffer) ? 0 : ps->inherit_coding_system_flag);
4546 if (!NILP (ps->log))
4547 call3 (ps->log, server, proc,
4548 concat3 (build_string ("accept from "),
4549 (STRINGP (host) ? host : build_string ("-")),
4550 build_string ("\n")));
4552 if (!NILP (p->sentinel))
4553 exec_sentinel (proc,
4554 concat3 (build_string ("open from "),
4555 (STRINGP (host) ? host : build_string ("-")),
4556 build_string ("\n")));
4559 /* This variable is different from waiting_for_input in keyboard.c.
4560 It is used to communicate to a lisp process-filter/sentinel (via the
4561 function Fwaiting_for_user_input_p below) whether Emacs was waiting
4562 for user-input when that process-filter was called.
4563 waiting_for_input cannot be used as that is by definition 0 when
4564 lisp code is being evalled.
4565 This is also used in record_asynch_buffer_change.
4566 For that purpose, this must be 0
4567 when not inside wait_reading_process_output. */
4568 static int waiting_for_user_input_p;
4570 static Lisp_Object
4571 wait_reading_process_output_unwind (data)
4572 Lisp_Object data;
4574 waiting_for_user_input_p = XINT (data);
4575 return Qnil;
4578 /* This is here so breakpoints can be put on it. */
4579 static void
4580 wait_reading_process_output_1 ()
4584 /* Use a wrapper around select to work around a bug in gdb 5.3.
4585 Normally, the wrapper is optimized away by inlining.
4587 If emacs is stopped inside select, the gdb backtrace doesn't
4588 show the function which called select, so it is practically
4589 impossible to step through wait_reading_process_output. */
4591 #ifndef select
4592 static INLINE int
4593 select_wrapper (n, rfd, wfd, xfd, tmo)
4594 int n;
4595 SELECT_TYPE *rfd, *wfd, *xfd;
4596 EMACS_TIME *tmo;
4598 return select (n, rfd, wfd, xfd, tmo);
4600 #define select select_wrapper
4601 #endif
4603 /* Read and dispose of subprocess output while waiting for timeout to
4604 elapse and/or keyboard input to be available.
4606 TIME_LIMIT is:
4607 timeout in seconds, or
4608 zero for no limit, or
4609 -1 means gobble data immediately available but don't wait for any.
4611 MICROSECS is:
4612 an additional duration to wait, measured in microseconds.
4613 If this is nonzero and time_limit is 0, then the timeout
4614 consists of MICROSECS only.
4616 READ_KBD is a lisp value:
4617 0 to ignore keyboard input, or
4618 1 to return when input is available, or
4619 -1 meaning caller will actually read the input, so don't throw to
4620 the quit handler, or
4622 DO_DISPLAY != 0 means redisplay should be done to show subprocess
4623 output that arrives.
4625 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4626 (and gobble terminal input into the buffer if any arrives).
4628 If WAIT_PROC is specified, wait until something arrives from that
4629 process. The return value is true if we read some input from
4630 that process.
4632 If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC
4633 (suspending output from other processes). A negative value
4634 means don't run any timers either.
4636 If WAIT_PROC is specified, then the function returns true if we
4637 received input from that process before the timeout elapsed.
4638 Otherwise, return true if we received input from any process. */
4641 wait_reading_process_output (time_limit, microsecs, read_kbd, do_display,
4642 wait_for_cell, wait_proc, just_wait_proc)
4643 int time_limit, microsecs, read_kbd, do_display;
4644 Lisp_Object wait_for_cell;
4645 struct Lisp_Process *wait_proc;
4646 int just_wait_proc;
4648 register int channel, nfds;
4649 SELECT_TYPE Available;
4650 #ifdef NON_BLOCKING_CONNECT
4651 SELECT_TYPE Connecting;
4652 int check_connect;
4653 #endif
4654 int check_delay, no_avail;
4655 int xerrno;
4656 Lisp_Object proc;
4657 EMACS_TIME timeout, end_time;
4658 int wait_channel = -1;
4659 int got_some_input = 0;
4660 int count = SPECPDL_INDEX ();
4662 FD_ZERO (&Available);
4663 #ifdef NON_BLOCKING_CONNECT
4664 FD_ZERO (&Connecting);
4665 #endif
4667 /* If wait_proc is a process to watch, set wait_channel accordingly. */
4668 if (wait_proc != NULL)
4669 wait_channel = wait_proc->infd;
4671 record_unwind_protect (wait_reading_process_output_unwind,
4672 make_number (waiting_for_user_input_p));
4673 waiting_for_user_input_p = read_kbd;
4675 /* Since we may need to wait several times,
4676 compute the absolute time to return at. */
4677 if (time_limit || microsecs)
4679 EMACS_GET_TIME (end_time);
4680 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
4681 EMACS_ADD_TIME (end_time, end_time, timeout);
4684 while (1)
4686 int timeout_reduced_for_timers = 0;
4688 /* If calling from keyboard input, do not quit
4689 since we want to return C-g as an input character.
4690 Otherwise, do pending quit if requested. */
4691 if (read_kbd >= 0)
4692 QUIT;
4693 #ifdef SYNC_INPUT
4694 else
4695 process_pending_signals ();
4696 #endif
4698 /* Exit now if the cell we're waiting for became non-nil. */
4699 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4700 break;
4702 /* Compute time from now till when time limit is up */
4703 /* Exit if already run out */
4704 if (time_limit == -1)
4706 /* -1 specified for timeout means
4707 gobble output available now
4708 but don't wait at all. */
4710 EMACS_SET_SECS_USECS (timeout, 0, 0);
4712 else if (time_limit || microsecs)
4714 EMACS_GET_TIME (timeout);
4715 EMACS_SUB_TIME (timeout, end_time, timeout);
4716 if (EMACS_TIME_NEG_P (timeout))
4717 break;
4719 else
4721 EMACS_SET_SECS_USECS (timeout, 100000, 0);
4724 /* Normally we run timers here.
4725 But not if wait_for_cell; in those cases,
4726 the wait is supposed to be short,
4727 and those callers cannot handle running arbitrary Lisp code here. */
4728 if (NILP (wait_for_cell)
4729 && just_wait_proc >= 0)
4731 EMACS_TIME timer_delay;
4735 int old_timers_run = timers_run;
4736 struct buffer *old_buffer = current_buffer;
4737 Lisp_Object old_window = selected_window;
4739 timer_delay = timer_check (1);
4741 /* If a timer has run, this might have changed buffers
4742 an alike. Make read_key_sequence aware of that. */
4743 if (timers_run != old_timers_run
4744 && (old_buffer != current_buffer
4745 || !EQ (old_window, selected_window))
4746 && waiting_for_user_input_p == -1)
4747 record_asynch_buffer_change ();
4749 if (timers_run != old_timers_run && do_display)
4750 /* We must retry, since a timer may have requeued itself
4751 and that could alter the time_delay. */
4752 redisplay_preserve_echo_area (9);
4753 else
4754 break;
4756 while (!detect_input_pending ());
4758 /* If there is unread keyboard input, also return. */
4759 if (read_kbd != 0
4760 && requeued_events_pending_p ())
4761 break;
4763 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
4765 EMACS_TIME difference;
4766 EMACS_SUB_TIME (difference, timer_delay, timeout);
4767 if (EMACS_TIME_NEG_P (difference))
4769 timeout = timer_delay;
4770 timeout_reduced_for_timers = 1;
4773 /* If time_limit is -1, we are not going to wait at all. */
4774 else if (time_limit != -1)
4776 /* This is so a breakpoint can be put here. */
4777 wait_reading_process_output_1 ();
4781 /* Cause C-g and alarm signals to take immediate action,
4782 and cause input available signals to zero out timeout.
4784 It is important that we do this before checking for process
4785 activity. If we get a SIGCHLD after the explicit checks for
4786 process activity, timeout is the only way we will know. */
4787 if (read_kbd < 0)
4788 set_waiting_for_input (&timeout);
4790 /* If status of something has changed, and no input is
4791 available, notify the user of the change right away. After
4792 this explicit check, we'll let the SIGCHLD handler zap
4793 timeout to get our attention. */
4794 if (update_tick != process_tick)
4796 SELECT_TYPE Atemp;
4797 #ifdef NON_BLOCKING_CONNECT
4798 SELECT_TYPE Ctemp;
4799 #endif
4801 if (kbd_on_hold_p ())
4802 FD_ZERO (&Atemp);
4803 else
4804 Atemp = input_wait_mask;
4806 IF_NON_BLOCKING_CONNECT (Ctemp = connect_wait_mask);
4808 EMACS_SET_SECS_USECS (timeout, 0, 0);
4809 if ((select (max (max (max_process_desc, max_keyboard_desc),
4810 max_gpm_desc) + 1,
4811 &Atemp,
4812 #ifdef NON_BLOCKING_CONNECT
4813 (num_pending_connects > 0 ? &Ctemp : (SELECT_TYPE *)0),
4814 #else
4815 (SELECT_TYPE *)0,
4816 #endif
4817 (SELECT_TYPE *)0, &timeout)
4818 <= 0))
4820 /* It's okay for us to do this and then continue with
4821 the loop, since timeout has already been zeroed out. */
4822 clear_waiting_for_input ();
4823 status_notify (NULL);
4824 if (do_display) redisplay_preserve_echo_area (13);
4828 /* Don't wait for output from a non-running process. Just
4829 read whatever data has already been received. */
4830 if (wait_proc && wait_proc->raw_status_new)
4831 update_status (wait_proc);
4832 if (wait_proc
4833 && ! EQ (wait_proc->status, Qrun)
4834 && ! EQ (wait_proc->status, Qconnect))
4836 int nread, total_nread = 0;
4838 clear_waiting_for_input ();
4839 XSETPROCESS (proc, wait_proc);
4841 /* Read data from the process, until we exhaust it. */
4842 while (wait_proc->infd >= 0)
4844 nread = read_process_output (proc, wait_proc->infd);
4846 if (nread == 0)
4847 break;
4849 if (0 < nread)
4851 total_nread += nread;
4852 got_some_input = 1;
4854 #ifdef EIO
4855 else if (nread == -1 && EIO == errno)
4856 break;
4857 #endif
4858 #ifdef EAGAIN
4859 else if (nread == -1 && EAGAIN == errno)
4860 break;
4861 #endif
4862 #ifdef EWOULDBLOCK
4863 else if (nread == -1 && EWOULDBLOCK == errno)
4864 break;
4865 #endif
4867 if (total_nread > 0 && do_display)
4868 redisplay_preserve_echo_area (10);
4870 break;
4873 /* Wait till there is something to do */
4875 if (wait_proc && just_wait_proc)
4877 if (wait_proc->infd < 0) /* Terminated */
4878 break;
4879 FD_SET (wait_proc->infd, &Available);
4880 check_delay = 0;
4881 IF_NON_BLOCKING_CONNECT (check_connect = 0);
4883 else if (!NILP (wait_for_cell))
4885 Available = non_process_wait_mask;
4886 check_delay = 0;
4887 IF_NON_BLOCKING_CONNECT (check_connect = 0);
4889 else
4891 if (! read_kbd)
4892 Available = non_keyboard_wait_mask;
4893 else
4894 Available = input_wait_mask;
4895 IF_NON_BLOCKING_CONNECT (check_connect = (num_pending_connects > 0));
4896 check_delay = wait_channel >= 0 ? 0 : process_output_delay_count;
4899 /* If frame size has changed or the window is newly mapped,
4900 redisplay now, before we start to wait. There is a race
4901 condition here; if a SIGIO arrives between now and the select
4902 and indicates that a frame is trashed, the select may block
4903 displaying a trashed screen. */
4904 if (frame_garbaged && do_display)
4906 clear_waiting_for_input ();
4907 redisplay_preserve_echo_area (11);
4908 if (read_kbd < 0)
4909 set_waiting_for_input (&timeout);
4912 no_avail = 0;
4913 if (read_kbd && detect_input_pending ())
4915 nfds = 0;
4916 no_avail = 1;
4918 else
4920 #ifdef NON_BLOCKING_CONNECT
4921 if (check_connect)
4922 Connecting = connect_wait_mask;
4923 #endif
4925 #ifdef ADAPTIVE_READ_BUFFERING
4926 /* Set the timeout for adaptive read buffering if any
4927 process has non-zero read_output_skip and non-zero
4928 read_output_delay, and we are not reading output for a
4929 specific wait_channel. It is not executed if
4930 Vprocess_adaptive_read_buffering is nil. */
4931 if (process_output_skip && check_delay > 0)
4933 int usecs = EMACS_USECS (timeout);
4934 if (EMACS_SECS (timeout) > 0 || usecs > READ_OUTPUT_DELAY_MAX)
4935 usecs = READ_OUTPUT_DELAY_MAX;
4936 for (channel = 0; check_delay > 0 && channel <= max_process_desc; channel++)
4938 proc = chan_process[channel];
4939 if (NILP (proc))
4940 continue;
4941 /* Find minimum non-zero read_output_delay among the
4942 processes with non-zero read_output_skip. */
4943 if (XPROCESS (proc)->read_output_delay > 0)
4945 check_delay--;
4946 if (!XPROCESS (proc)->read_output_skip)
4947 continue;
4948 FD_CLR (channel, &Available);
4949 XPROCESS (proc)->read_output_skip = 0;
4950 if (XPROCESS (proc)->read_output_delay < usecs)
4951 usecs = XPROCESS (proc)->read_output_delay;
4954 EMACS_SET_SECS_USECS (timeout, 0, usecs);
4955 process_output_skip = 0;
4957 #endif
4958 #if defined (USE_GTK) || defined (HAVE_GCONF)
4959 nfds = xg_select
4960 #elif defined (HAVE_NS)
4961 nfds = ns_select
4962 #else
4963 nfds = select
4964 #endif
4965 (max (max (max_process_desc, max_keyboard_desc),
4966 max_gpm_desc) + 1,
4967 &Available,
4968 #ifdef NON_BLOCKING_CONNECT
4969 (check_connect ? &Connecting : (SELECT_TYPE *)0),
4970 #else
4971 (SELECT_TYPE *)0,
4972 #endif
4973 (SELECT_TYPE *)0, &timeout);
4976 xerrno = errno;
4978 /* Make C-g and alarm signals set flags again */
4979 clear_waiting_for_input ();
4981 /* If we woke up due to SIGWINCH, actually change size now. */
4982 do_pending_window_change (0);
4984 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
4985 /* We wanted the full specified time, so return now. */
4986 break;
4987 if (nfds < 0)
4989 if (xerrno == EINTR)
4990 no_avail = 1;
4991 else if (xerrno == EBADF)
4993 #ifdef AIX
4994 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
4995 the child's closure of the pts gives the parent a SIGHUP, and
4996 the ptc file descriptor is automatically closed,
4997 yielding EBADF here or at select() call above.
4998 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
4999 in m/ibmrt-aix.h), and here we just ignore the select error.
5000 Cleanup occurs c/o status_notify after SIGCLD. */
5001 no_avail = 1; /* Cannot depend on values returned */
5002 #else
5003 abort ();
5004 #endif
5006 else
5007 error ("select error: %s", emacs_strerror (xerrno));
5010 if (no_avail)
5012 FD_ZERO (&Available);
5013 IF_NON_BLOCKING_CONNECT (check_connect = 0);
5016 #if 0 /* When polling is used, interrupt_input is 0,
5017 so get_input_pending should read the input.
5018 So this should not be needed. */
5019 /* If we are using polling for input,
5020 and we see input available, make it get read now.
5021 Otherwise it might not actually get read for a second.
5022 And on hpux, since we turn off polling in wait_reading_process_output,
5023 it might never get read at all if we don't spend much time
5024 outside of wait_reading_process_output. */
5025 if (read_kbd && interrupt_input
5026 && keyboard_bit_set (&Available)
5027 && input_polling_used ())
5028 kill (getpid (), SIGALRM);
5029 #endif
5031 /* Check for keyboard input */
5032 /* If there is any, return immediately
5033 to give it higher priority than subprocesses */
5035 if (read_kbd != 0)
5037 int old_timers_run = timers_run;
5038 struct buffer *old_buffer = current_buffer;
5039 Lisp_Object old_window = selected_window;
5040 int leave = 0;
5042 if (detect_input_pending_run_timers (do_display))
5044 swallow_events (do_display);
5045 if (detect_input_pending_run_timers (do_display))
5046 leave = 1;
5049 /* If a timer has run, this might have changed buffers
5050 an alike. Make read_key_sequence aware of that. */
5051 if (timers_run != old_timers_run
5052 && waiting_for_user_input_p == -1
5053 && (old_buffer != current_buffer
5054 || !EQ (old_window, selected_window)))
5055 record_asynch_buffer_change ();
5057 if (leave)
5058 break;
5061 /* If there is unread keyboard input, also return. */
5062 if (read_kbd != 0
5063 && requeued_events_pending_p ())
5064 break;
5066 /* If we are not checking for keyboard input now,
5067 do process events (but don't run any timers).
5068 This is so that X events will be processed.
5069 Otherwise they may have to wait until polling takes place.
5070 That would causes delays in pasting selections, for example.
5072 (We used to do this only if wait_for_cell.) */
5073 if (read_kbd == 0 && detect_input_pending ())
5075 swallow_events (do_display);
5076 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
5077 if (detect_input_pending ())
5078 break;
5079 #endif
5082 /* Exit now if the cell we're waiting for became non-nil. */
5083 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
5084 break;
5086 #ifdef SIGIO
5087 /* If we think we have keyboard input waiting, but didn't get SIGIO,
5088 go read it. This can happen with X on BSD after logging out.
5089 In that case, there really is no input and no SIGIO,
5090 but select says there is input. */
5092 if (read_kbd && interrupt_input
5093 && keyboard_bit_set (&Available) && ! noninteractive)
5094 kill (getpid (), SIGIO);
5095 #endif
5097 if (! wait_proc)
5098 got_some_input |= nfds > 0;
5100 /* If checking input just got us a size-change event from X,
5101 obey it now if we should. */
5102 if (read_kbd || ! NILP (wait_for_cell))
5103 do_pending_window_change (0);
5105 /* Check for data from a process. */
5106 if (no_avail || nfds == 0)
5107 continue;
5109 /* Really FIRST_PROC_DESC should be 0 on Unix,
5110 but this is safer in the short run. */
5111 for (channel = 0; channel <= max_process_desc; channel++)
5113 if (FD_ISSET (channel, &Available)
5114 && FD_ISSET (channel, &non_keyboard_wait_mask))
5116 int nread;
5118 /* If waiting for this channel, arrange to return as
5119 soon as no more input to be processed. No more
5120 waiting. */
5121 if (wait_channel == channel)
5123 wait_channel = -1;
5124 time_limit = -1;
5125 got_some_input = 1;
5127 proc = chan_process[channel];
5128 if (NILP (proc))
5129 continue;
5131 /* If this is a server stream socket, accept connection. */
5132 if (EQ (XPROCESS (proc)->status, Qlisten))
5134 server_accept_connection (proc, channel);
5135 continue;
5138 /* Read data from the process, starting with our
5139 buffered-ahead character if we have one. */
5141 nread = read_process_output (proc, channel);
5142 if (nread > 0)
5144 /* Since read_process_output can run a filter,
5145 which can call accept-process-output,
5146 don't try to read from any other processes
5147 before doing the select again. */
5148 FD_ZERO (&Available);
5150 if (do_display)
5151 redisplay_preserve_echo_area (12);
5153 #ifdef EWOULDBLOCK
5154 else if (nread == -1 && errno == EWOULDBLOCK)
5156 #endif
5157 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
5158 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
5159 #ifdef O_NONBLOCK
5160 else if (nread == -1 && errno == EAGAIN)
5162 #else
5163 #ifdef O_NDELAY
5164 else if (nread == -1 && errno == EAGAIN)
5166 /* Note that we cannot distinguish between no input
5167 available now and a closed pipe.
5168 With luck, a closed pipe will be accompanied by
5169 subprocess termination and SIGCHLD. */
5170 else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc))
5172 #endif /* O_NDELAY */
5173 #endif /* O_NONBLOCK */
5174 #ifdef HAVE_PTYS
5175 /* On some OSs with ptys, when the process on one end of
5176 a pty exits, the other end gets an error reading with
5177 errno = EIO instead of getting an EOF (0 bytes read).
5178 Therefore, if we get an error reading and errno =
5179 EIO, just continue, because the child process has
5180 exited and should clean itself up soon (e.g. when we
5181 get a SIGCHLD).
5183 However, it has been known to happen that the SIGCHLD
5184 got lost. So raise the signal again just in case.
5185 It can't hurt. */
5186 else if (nread == -1 && errno == EIO)
5188 /* Clear the descriptor now, so we only raise the
5189 signal once. Don't do this if `process' is only
5190 a pty. */
5191 if (XPROCESS (proc)->pid != -2)
5193 FD_CLR (channel, &input_wait_mask);
5194 FD_CLR (channel, &non_keyboard_wait_mask);
5196 kill (getpid (), SIGCHLD);
5199 #endif /* HAVE_PTYS */
5200 /* If we can detect process termination, don't consider the process
5201 gone just because its pipe is closed. */
5202 #ifdef SIGCHLD
5203 else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc))
5205 #endif
5206 else
5208 /* Preserve status of processes already terminated. */
5209 XPROCESS (proc)->tick = ++process_tick;
5210 deactivate_process (proc);
5211 if (XPROCESS (proc)->raw_status_new)
5212 update_status (XPROCESS (proc));
5213 if (EQ (XPROCESS (proc)->status, Qrun))
5214 XPROCESS (proc)->status
5215 = Fcons (Qexit, Fcons (make_number (256), Qnil));
5218 #ifdef NON_BLOCKING_CONNECT
5219 if (check_connect && FD_ISSET (channel, &Connecting)
5220 && FD_ISSET (channel, &connect_wait_mask))
5222 struct Lisp_Process *p;
5224 FD_CLR (channel, &connect_wait_mask);
5225 if (--num_pending_connects < 0)
5226 abort ();
5228 proc = chan_process[channel];
5229 if (NILP (proc))
5230 continue;
5232 p = XPROCESS (proc);
5234 #ifdef GNU_LINUX
5235 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
5236 So only use it on systems where it is known to work. */
5238 int xlen = sizeof(xerrno);
5239 if (getsockopt(channel, SOL_SOCKET, SO_ERROR, &xerrno, &xlen))
5240 xerrno = errno;
5242 #else
5244 struct sockaddr pname;
5245 int pnamelen = sizeof(pname);
5247 /* If connection failed, getpeername will fail. */
5248 xerrno = 0;
5249 if (getpeername(channel, &pname, &pnamelen) < 0)
5251 /* Obtain connect failure code through error slippage. */
5252 char dummy;
5253 xerrno = errno;
5254 if (errno == ENOTCONN && read(channel, &dummy, 1) < 0)
5255 xerrno = errno;
5258 #endif
5259 if (xerrno)
5261 p->tick = ++process_tick;
5262 p->status = Fcons (Qfailed, Fcons (make_number (xerrno), Qnil));
5263 deactivate_process (proc);
5265 else
5267 p->status = Qrun;
5268 /* Execute the sentinel here. If we had relied on
5269 status_notify to do it later, it will read input
5270 from the process before calling the sentinel. */
5271 exec_sentinel (proc, build_string ("open\n"));
5272 if (!EQ (p->filter, Qt) && !EQ (p->command, Qt))
5274 FD_SET (p->infd, &input_wait_mask);
5275 FD_SET (p->infd, &non_keyboard_wait_mask);
5279 #endif /* NON_BLOCKING_CONNECT */
5280 } /* end for each file descriptor */
5281 } /* end while exit conditions not met */
5283 unbind_to (count, Qnil);
5285 /* If calling from keyboard input, do not quit
5286 since we want to return C-g as an input character.
5287 Otherwise, do pending quit if requested. */
5288 if (read_kbd >= 0)
5290 /* Prevent input_pending from remaining set if we quit. */
5291 clear_input_pending ();
5292 QUIT;
5295 return got_some_input;
5298 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
5300 static Lisp_Object
5301 read_process_output_call (fun_and_args)
5302 Lisp_Object fun_and_args;
5304 return apply1 (XCAR (fun_and_args), XCDR (fun_and_args));
5307 static Lisp_Object
5308 read_process_output_error_handler (error)
5309 Lisp_Object error;
5311 cmd_error_internal (error, "error in process filter: ");
5312 Vinhibit_quit = Qt;
5313 update_echo_area ();
5314 Fsleep_for (make_number (2), Qnil);
5315 return Qt;
5318 /* Read pending output from the process channel,
5319 starting with our buffered-ahead character if we have one.
5320 Yield number of decoded characters read.
5322 This function reads at most 4096 characters.
5323 If you want to read all available subprocess output,
5324 you must call it repeatedly until it returns zero.
5326 The characters read are decoded according to PROC's coding-system
5327 for decoding. */
5329 static int
5330 read_process_output (proc, channel)
5331 Lisp_Object proc;
5332 register int channel;
5334 register int nbytes;
5335 char *chars;
5336 register Lisp_Object outstream;
5337 register struct Lisp_Process *p = XPROCESS (proc);
5338 register int opoint;
5339 struct coding_system *coding = proc_decode_coding_system[channel];
5340 int carryover = p->decoding_carryover;
5341 int readmax = 4096;
5343 chars = (char *) alloca (carryover + readmax);
5344 if (carryover)
5345 /* See the comment above. */
5346 bcopy (SDATA (p->decoding_buf), chars, carryover);
5348 #ifdef DATAGRAM_SOCKETS
5349 /* We have a working select, so proc_buffered_char is always -1. */
5350 if (DATAGRAM_CHAN_P (channel))
5352 int len = datagram_address[channel].len;
5353 nbytes = recvfrom (channel, chars + carryover, readmax,
5354 0, datagram_address[channel].sa, &len);
5356 else
5357 #endif
5358 if (proc_buffered_char[channel] < 0)
5360 nbytes = emacs_read (channel, chars + carryover, readmax);
5361 #ifdef ADAPTIVE_READ_BUFFERING
5362 if (nbytes > 0 && p->adaptive_read_buffering)
5364 int delay = p->read_output_delay;
5365 if (nbytes < 256)
5367 if (delay < READ_OUTPUT_DELAY_MAX_MAX)
5369 if (delay == 0)
5370 process_output_delay_count++;
5371 delay += READ_OUTPUT_DELAY_INCREMENT * 2;
5374 else if (delay > 0 && (nbytes == readmax))
5376 delay -= READ_OUTPUT_DELAY_INCREMENT;
5377 if (delay == 0)
5378 process_output_delay_count--;
5380 p->read_output_delay = delay;
5381 if (delay)
5383 p->read_output_skip = 1;
5384 process_output_skip = 1;
5387 #endif
5389 else
5391 chars[carryover] = proc_buffered_char[channel];
5392 proc_buffered_char[channel] = -1;
5393 nbytes = emacs_read (channel, chars + carryover + 1, readmax - 1);
5394 if (nbytes < 0)
5395 nbytes = 1;
5396 else
5397 nbytes = nbytes + 1;
5400 p->decoding_carryover = 0;
5402 /* At this point, NBYTES holds number of bytes just received
5403 (including the one in proc_buffered_char[channel]). */
5404 if (nbytes <= 0)
5406 if (nbytes < 0 || coding->mode & CODING_MODE_LAST_BLOCK)
5407 return nbytes;
5408 coding->mode |= CODING_MODE_LAST_BLOCK;
5411 /* Now set NBYTES how many bytes we must decode. */
5412 nbytes += carryover;
5414 /* Read and dispose of the process output. */
5415 outstream = p->filter;
5416 if (!NILP (outstream))
5418 /* We inhibit quit here instead of just catching it so that
5419 hitting ^G when a filter happens to be running won't screw
5420 it up. */
5421 int count = SPECPDL_INDEX ();
5422 Lisp_Object odeactivate;
5423 Lisp_Object obuffer, okeymap;
5424 Lisp_Object text;
5425 int outer_running_asynch_code = running_asynch_code;
5426 int waiting = waiting_for_user_input_p;
5428 /* No need to gcpro these, because all we do with them later
5429 is test them for EQness, and none of them should be a string. */
5430 odeactivate = Vdeactivate_mark;
5431 XSETBUFFER (obuffer, current_buffer);
5432 okeymap = current_buffer->keymap;
5434 specbind (Qinhibit_quit, Qt);
5435 specbind (Qlast_nonmenu_event, Qt);
5437 /* In case we get recursively called,
5438 and we already saved the match data nonrecursively,
5439 save the same match data in safely recursive fashion. */
5440 if (outer_running_asynch_code)
5442 Lisp_Object tem;
5443 /* Don't clobber the CURRENT match data, either! */
5444 tem = Fmatch_data (Qnil, Qnil, Qnil);
5445 restore_search_regs ();
5446 record_unwind_save_match_data ();
5447 Fset_match_data (tem, Qt);
5450 /* For speed, if a search happens within this code,
5451 save the match data in a special nonrecursive fashion. */
5452 running_asynch_code = 1;
5454 decode_coding_c_string (coding, chars, nbytes, Qt);
5455 text = coding->dst_object;
5456 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5457 /* A new coding system might be found. */
5458 if (!EQ (p->decode_coding_system, Vlast_coding_system_used))
5460 p->decode_coding_system = Vlast_coding_system_used;
5462 /* Don't call setup_coding_system for
5463 proc_decode_coding_system[channel] here. It is done in
5464 detect_coding called via decode_coding above. */
5466 /* If a coding system for encoding is not yet decided, we set
5467 it as the same as coding-system for decoding.
5469 But, before doing that we must check if
5470 proc_encode_coding_system[p->outfd] surely points to a
5471 valid memory because p->outfd will be changed once EOF is
5472 sent to the process. */
5473 if (NILP (p->encode_coding_system)
5474 && proc_encode_coding_system[p->outfd])
5476 p->encode_coding_system
5477 = coding_inherit_eol_type (Vlast_coding_system_used, Qnil);
5478 setup_coding_system (p->encode_coding_system,
5479 proc_encode_coding_system[p->outfd]);
5483 if (coding->carryover_bytes > 0)
5485 if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
5486 p->decoding_buf = make_uninit_string (coding->carryover_bytes);
5487 bcopy (coding->carryover, SDATA (p->decoding_buf),
5488 coding->carryover_bytes);
5489 p->decoding_carryover = coding->carryover_bytes;
5491 if (SBYTES (text) > 0)
5492 internal_condition_case_1 (read_process_output_call,
5493 Fcons (outstream,
5494 Fcons (proc, Fcons (text, Qnil))),
5495 !NILP (Vdebug_on_error) ? Qnil : Qerror,
5496 read_process_output_error_handler);
5498 /* If we saved the match data nonrecursively, restore it now. */
5499 restore_search_regs ();
5500 running_asynch_code = outer_running_asynch_code;
5502 /* Handling the process output should not deactivate the mark. */
5503 Vdeactivate_mark = odeactivate;
5505 /* Restore waiting_for_user_input_p as it was
5506 when we were called, in case the filter clobbered it. */
5507 waiting_for_user_input_p = waiting;
5509 #if 0 /* Call record_asynch_buffer_change unconditionally,
5510 because we might have changed minor modes or other things
5511 that affect key bindings. */
5512 if (! EQ (Fcurrent_buffer (), obuffer)
5513 || ! EQ (current_buffer->keymap, okeymap))
5514 #endif
5515 /* But do it only if the caller is actually going to read events.
5516 Otherwise there's no need to make him wake up, and it could
5517 cause trouble (for example it would make sit_for return). */
5518 if (waiting_for_user_input_p == -1)
5519 record_asynch_buffer_change ();
5521 unbind_to (count, Qnil);
5522 return nbytes;
5525 /* If no filter, write into buffer if it isn't dead. */
5526 if (!NILP (p->buffer) && !NILP (XBUFFER (p->buffer)->name))
5528 Lisp_Object old_read_only;
5529 int old_begv, old_zv;
5530 int old_begv_byte, old_zv_byte;
5531 Lisp_Object odeactivate;
5532 int before, before_byte;
5533 int opoint_byte;
5534 Lisp_Object text;
5535 struct buffer *b;
5536 int count = SPECPDL_INDEX ();
5538 odeactivate = Vdeactivate_mark;
5540 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
5541 Fset_buffer (p->buffer);
5542 opoint = PT;
5543 opoint_byte = PT_BYTE;
5544 old_read_only = current_buffer->read_only;
5545 old_begv = BEGV;
5546 old_zv = ZV;
5547 old_begv_byte = BEGV_BYTE;
5548 old_zv_byte = ZV_BYTE;
5550 current_buffer->read_only = Qnil;
5552 /* Insert new output into buffer
5553 at the current end-of-output marker,
5554 thus preserving logical ordering of input and output. */
5555 if (XMARKER (p->mark)->buffer)
5556 SET_PT_BOTH (clip_to_bounds (BEGV, marker_position (p->mark), ZV),
5557 clip_to_bounds (BEGV_BYTE, marker_byte_position (p->mark),
5558 ZV_BYTE));
5559 else
5560 SET_PT_BOTH (ZV, ZV_BYTE);
5561 before = PT;
5562 before_byte = PT_BYTE;
5564 /* If the output marker is outside of the visible region, save
5565 the restriction and widen. */
5566 if (! (BEGV <= PT && PT <= ZV))
5567 Fwiden ();
5569 decode_coding_c_string (coding, chars, nbytes, Qt);
5570 text = coding->dst_object;
5571 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5572 /* A new coding system might be found. See the comment in the
5573 similar code in the previous `if' block. */
5574 if (!EQ (p->decode_coding_system, Vlast_coding_system_used))
5576 p->decode_coding_system = Vlast_coding_system_used;
5577 if (NILP (p->encode_coding_system)
5578 && proc_encode_coding_system[p->outfd])
5580 p->encode_coding_system
5581 = coding_inherit_eol_type (Vlast_coding_system_used, Qnil);
5582 setup_coding_system (p->encode_coding_system,
5583 proc_encode_coding_system[p->outfd]);
5586 if (coding->carryover_bytes > 0)
5588 if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
5589 p->decoding_buf = make_uninit_string (coding->carryover_bytes);
5590 bcopy (coding->carryover, SDATA (p->decoding_buf),
5591 coding->carryover_bytes);
5592 p->decoding_carryover = coding->carryover_bytes;
5594 /* Adjust the multibyteness of TEXT to that of the buffer. */
5595 if (NILP (current_buffer->enable_multibyte_characters)
5596 != ! STRING_MULTIBYTE (text))
5597 text = (STRING_MULTIBYTE (text)
5598 ? Fstring_as_unibyte (text)
5599 : Fstring_to_multibyte (text));
5600 /* Insert before markers in case we are inserting where
5601 the buffer's mark is, and the user's next command is Meta-y. */
5602 insert_from_string_before_markers (text, 0, 0,
5603 SCHARS (text), SBYTES (text), 0);
5605 /* Make sure the process marker's position is valid when the
5606 process buffer is changed in the signal_after_change above.
5607 W3 is known to do that. */
5608 if (BUFFERP (p->buffer)
5609 && (b = XBUFFER (p->buffer), b != current_buffer))
5610 set_marker_both (p->mark, p->buffer, BUF_PT (b), BUF_PT_BYTE (b));
5611 else
5612 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
5614 update_mode_lines++;
5616 /* Make sure opoint and the old restrictions
5617 float ahead of any new text just as point would. */
5618 if (opoint >= before)
5620 opoint += PT - before;
5621 opoint_byte += PT_BYTE - before_byte;
5623 if (old_begv > before)
5625 old_begv += PT - before;
5626 old_begv_byte += PT_BYTE - before_byte;
5628 if (old_zv >= before)
5630 old_zv += PT - before;
5631 old_zv_byte += PT_BYTE - before_byte;
5634 /* If the restriction isn't what it should be, set it. */
5635 if (old_begv != BEGV || old_zv != ZV)
5636 Fnarrow_to_region (make_number (old_begv), make_number (old_zv));
5638 /* Handling the process output should not deactivate the mark. */
5639 Vdeactivate_mark = odeactivate;
5641 current_buffer->read_only = old_read_only;
5642 SET_PT_BOTH (opoint, opoint_byte);
5643 unbind_to (count, Qnil);
5645 return nbytes;
5648 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p,
5649 0, 0, 0,
5650 doc: /* Returns non-nil if Emacs is waiting for input from the user.
5651 This is intended for use by asynchronous process output filters and sentinels. */)
5654 return (waiting_for_user_input_p ? Qt : Qnil);
5657 /* Sending data to subprocess */
5659 jmp_buf send_process_frame;
5660 Lisp_Object process_sent_to;
5662 SIGTYPE
5663 send_process_trap ()
5665 SIGNAL_THREAD_CHECK (SIGPIPE);
5666 sigunblock (sigmask (SIGPIPE));
5667 longjmp (send_process_frame, 1);
5670 /* Send some data to process PROC.
5671 BUF is the beginning of the data; LEN is the number of characters.
5672 OBJECT is the Lisp object that the data comes from. If OBJECT is
5673 nil or t, it means that the data comes from C string.
5675 If OBJECT is not nil, the data is encoded by PROC's coding-system
5676 for encoding before it is sent.
5678 This function can evaluate Lisp code and can garbage collect. */
5680 static void
5681 send_process (proc, buf, len, object)
5682 volatile Lisp_Object proc;
5683 unsigned char *volatile buf;
5684 volatile int len;
5685 volatile Lisp_Object object;
5687 /* Use volatile to protect variables from being clobbered by longjmp. */
5688 struct Lisp_Process *p = XPROCESS (proc);
5689 int rv;
5690 struct coding_system *coding;
5691 struct gcpro gcpro1;
5692 SIGTYPE (*volatile old_sigpipe) ();
5694 GCPRO1 (object);
5696 if (p->raw_status_new)
5697 update_status (p);
5698 if (! EQ (p->status, Qrun))
5699 error ("Process %s not running", SDATA (p->name));
5700 if (p->outfd < 0)
5701 error ("Output file descriptor of %s is closed", SDATA (p->name));
5703 coding = proc_encode_coding_system[p->outfd];
5704 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5706 if ((STRINGP (object) && STRING_MULTIBYTE (object))
5707 || (BUFFERP (object)
5708 && !NILP (XBUFFER (object)->enable_multibyte_characters))
5709 || EQ (object, Qt))
5711 p->encode_coding_system
5712 = complement_process_encoding_system (p->encode_coding_system);
5713 if (!EQ (Vlast_coding_system_used, p->encode_coding_system))
5715 /* The coding system for encoding was changed to raw-text
5716 because we sent a unibyte text previously. Now we are
5717 sending a multibyte text, thus we must encode it by the
5718 original coding system specified for the current process.
5720 Another reason we comming here is that the coding system
5721 was just complemented and new one was returned by
5722 complement_process_encoding_system. */
5723 setup_coding_system (p->encode_coding_system, coding);
5724 Vlast_coding_system_used = p->encode_coding_system;
5726 coding->src_multibyte = 1;
5728 else
5730 /* For sending a unibyte text, character code conversion should
5731 not take place but EOL conversion should. So, setup raw-text
5732 or one of the subsidiary if we have not yet done it. */
5733 if (CODING_REQUIRE_ENCODING (coding))
5735 if (CODING_REQUIRE_FLUSHING (coding))
5737 /* But, before changing the coding, we must flush out data. */
5738 coding->mode |= CODING_MODE_LAST_BLOCK;
5739 send_process (proc, "", 0, Qt);
5740 coding->mode &= CODING_MODE_LAST_BLOCK;
5742 setup_coding_system (raw_text_coding_system
5743 (Vlast_coding_system_used),
5744 coding);
5745 coding->src_multibyte = 0;
5748 coding->dst_multibyte = 0;
5750 if (CODING_REQUIRE_ENCODING (coding))
5752 coding->dst_object = Qt;
5753 if (BUFFERP (object))
5755 int from_byte, from, to;
5756 int save_pt, save_pt_byte;
5757 struct buffer *cur = current_buffer;
5759 set_buffer_internal (XBUFFER (object));
5760 save_pt = PT, save_pt_byte = PT_BYTE;
5762 from_byte = PTR_BYTE_POS (buf);
5763 from = BYTE_TO_CHAR (from_byte);
5764 to = BYTE_TO_CHAR (from_byte + len);
5765 TEMP_SET_PT_BOTH (from, from_byte);
5766 encode_coding_object (coding, object, from, from_byte,
5767 to, from_byte + len, Qt);
5768 TEMP_SET_PT_BOTH (save_pt, save_pt_byte);
5769 set_buffer_internal (cur);
5771 else if (STRINGP (object))
5773 encode_coding_object (coding, object, 0, 0, SCHARS (object),
5774 SBYTES (object), Qt);
5776 else
5778 coding->dst_object = make_unibyte_string (buf, len);
5779 coding->produced = len;
5782 len = coding->produced;
5783 object = coding->dst_object;
5784 buf = SDATA (object);
5787 if (pty_max_bytes == 0)
5789 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
5790 pty_max_bytes = fpathconf (p->outfd, _PC_MAX_CANON);
5791 if (pty_max_bytes < 0)
5792 pty_max_bytes = 250;
5793 #else
5794 pty_max_bytes = 250;
5795 #endif
5796 /* Deduct one, to leave space for the eof. */
5797 pty_max_bytes--;
5800 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
5801 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
5802 when returning with longjmp despite being declared volatile. */
5803 if (!setjmp (send_process_frame))
5805 process_sent_to = proc;
5806 while (len > 0)
5808 int this = len;
5810 /* Decide how much data we can send in one batch.
5811 Long lines need to be split into multiple batches. */
5812 if (p->pty_flag)
5814 /* Starting this at zero is always correct when not the first
5815 iteration because the previous iteration ended by sending C-d.
5816 It may not be correct for the first iteration
5817 if a partial line was sent in a separate send_process call.
5818 If that proves worth handling, we need to save linepos
5819 in the process object. */
5820 int linepos = 0;
5821 unsigned char *ptr = (unsigned char *) buf;
5822 unsigned char *end = (unsigned char *) buf + len;
5824 /* Scan through this text for a line that is too long. */
5825 while (ptr != end && linepos < pty_max_bytes)
5827 if (*ptr == '\n')
5828 linepos = 0;
5829 else
5830 linepos++;
5831 ptr++;
5833 /* If we found one, break the line there
5834 and put in a C-d to force the buffer through. */
5835 this = ptr - buf;
5838 /* Send this batch, using one or more write calls. */
5839 while (this > 0)
5841 int outfd = p->outfd;
5842 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap);
5843 #ifdef DATAGRAM_SOCKETS
5844 if (DATAGRAM_CHAN_P (outfd))
5846 rv = sendto (outfd, (char *) buf, this,
5847 0, datagram_address[outfd].sa,
5848 datagram_address[outfd].len);
5849 if (rv < 0 && errno == EMSGSIZE)
5851 signal (SIGPIPE, old_sigpipe);
5852 report_file_error ("sending datagram",
5853 Fcons (proc, Qnil));
5856 else
5857 #endif
5859 rv = emacs_write (outfd, (char *) buf, this);
5860 #ifdef ADAPTIVE_READ_BUFFERING
5861 if (p->read_output_delay > 0
5862 && p->adaptive_read_buffering == 1)
5864 p->read_output_delay = 0;
5865 process_output_delay_count--;
5866 p->read_output_skip = 0;
5868 #endif
5870 signal (SIGPIPE, old_sigpipe);
5872 if (rv < 0)
5874 if (0
5875 #ifdef EWOULDBLOCK
5876 || errno == EWOULDBLOCK
5877 #endif
5878 #ifdef EAGAIN
5879 || errno == EAGAIN
5880 #endif
5882 /* Buffer is full. Wait, accepting input;
5883 that may allow the program
5884 to finish doing output and read more. */
5886 int offset = 0;
5888 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
5889 /* A gross hack to work around a bug in FreeBSD.
5890 In the following sequence, read(2) returns
5891 bogus data:
5893 write(2) 1022 bytes
5894 write(2) 954 bytes, get EAGAIN
5895 read(2) 1024 bytes in process_read_output
5896 read(2) 11 bytes in process_read_output
5898 That is, read(2) returns more bytes than have
5899 ever been written successfully. The 1033 bytes
5900 read are the 1022 bytes written successfully
5901 after processing (for example with CRs added if
5902 the terminal is set up that way which it is
5903 here). The same bytes will be seen again in a
5904 later read(2), without the CRs. */
5906 if (errno == EAGAIN)
5908 int flags = FWRITE;
5909 ioctl (p->outfd, TIOCFLUSH, &flags);
5911 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5913 /* Running filters might relocate buffers or strings.
5914 Arrange to relocate BUF. */
5915 if (BUFFERP (object))
5916 offset = BUF_PTR_BYTE_POS (XBUFFER (object), buf);
5917 else if (STRINGP (object))
5918 offset = buf - SDATA (object);
5920 #ifdef EMACS_HAS_USECS
5921 wait_reading_process_output (0, 20000, 0, 0, Qnil, NULL, 0);
5922 #else
5923 wait_reading_process_output (1, 0, 0, 0, Qnil, NULL, 0);
5924 #endif
5926 if (BUFFERP (object))
5927 buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset);
5928 else if (STRINGP (object))
5929 buf = offset + SDATA (object);
5931 rv = 0;
5933 else
5934 /* This is a real error. */
5935 report_file_error ("writing to process", Fcons (proc, Qnil));
5937 buf += rv;
5938 len -= rv;
5939 this -= rv;
5942 /* If we sent just part of the string, put in an EOF (C-d)
5943 to force it through, before we send the rest. */
5944 if (len > 0)
5945 Fprocess_send_eof (proc);
5948 else
5950 signal (SIGPIPE, old_sigpipe);
5951 proc = process_sent_to;
5952 p = XPROCESS (proc);
5953 p->raw_status_new = 0;
5954 p->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
5955 p->tick = ++process_tick;
5956 deactivate_process (proc);
5957 error ("SIGPIPE raised on process %s; closed it", SDATA (p->name));
5960 UNGCPRO;
5963 DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
5964 3, 3, 0,
5965 doc: /* Send current contents of region as input to PROCESS.
5966 PROCESS may be a process, a buffer, the name of a process or buffer, or
5967 nil, indicating the current buffer's process.
5968 Called from program, takes three arguments, PROCESS, START and END.
5969 If the region is more than 500 characters long,
5970 it is sent in several bunches. This may happen even for shorter regions.
5971 Output from processes can arrive in between bunches. */)
5972 (process, start, end)
5973 Lisp_Object process, start, end;
5975 Lisp_Object proc;
5976 int start1, end1;
5978 proc = get_process (process);
5979 validate_region (&start, &end);
5981 if (XINT (start) < GPT && XINT (end) > GPT)
5982 move_gap (XINT (start));
5984 start1 = CHAR_TO_BYTE (XINT (start));
5985 end1 = CHAR_TO_BYTE (XINT (end));
5986 send_process (proc, BYTE_POS_ADDR (start1), end1 - start1,
5987 Fcurrent_buffer ());
5989 return Qnil;
5992 DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
5993 2, 2, 0,
5994 doc: /* Send PROCESS the contents of STRING as input.
5995 PROCESS may be a process, a buffer, the name of a process or buffer, or
5996 nil, indicating the current buffer's process.
5997 If STRING is more than 500 characters long,
5998 it is sent in several bunches. This may happen even for shorter strings.
5999 Output from processes can arrive in between bunches. */)
6000 (process, string)
6001 Lisp_Object process, string;
6003 Lisp_Object proc;
6004 CHECK_STRING (string);
6005 proc = get_process (process);
6006 send_process (proc, SDATA (string),
6007 SBYTES (string), string);
6008 return Qnil;
6011 /* Return the foreground process group for the tty/pty that
6012 the process P uses. */
6013 static int
6014 emacs_get_tty_pgrp (p)
6015 struct Lisp_Process *p;
6017 int gid = -1;
6019 #ifdef TIOCGPGRP
6020 if (ioctl (p->infd, TIOCGPGRP, &gid) == -1 && ! NILP (p->tty_name))
6022 int fd;
6023 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
6024 master side. Try the slave side. */
6025 fd = emacs_open (SDATA (p->tty_name), O_RDONLY, 0);
6027 if (fd != -1)
6029 ioctl (fd, TIOCGPGRP, &gid);
6030 emacs_close (fd);
6033 #endif /* defined (TIOCGPGRP ) */
6035 return gid;
6038 DEFUN ("process-running-child-p", Fprocess_running_child_p,
6039 Sprocess_running_child_p, 0, 1, 0,
6040 doc: /* Return t if PROCESS has given the terminal to a child.
6041 If the operating system does not make it possible to find out,
6042 return t unconditionally. */)
6043 (process)
6044 Lisp_Object process;
6046 /* Initialize in case ioctl doesn't exist or gives an error,
6047 in a way that will cause returning t. */
6048 int gid;
6049 Lisp_Object proc;
6050 struct Lisp_Process *p;
6052 proc = get_process (process);
6053 p = XPROCESS (proc);
6055 if (!EQ (p->type, Qreal))
6056 error ("Process %s is not a subprocess",
6057 SDATA (p->name));
6058 if (p->infd < 0)
6059 error ("Process %s is not active",
6060 SDATA (p->name));
6062 gid = emacs_get_tty_pgrp (p);
6064 if (gid == p->pid)
6065 return Qnil;
6066 return Qt;
6069 /* send a signal number SIGNO to PROCESS.
6070 If CURRENT_GROUP is t, that means send to the process group
6071 that currently owns the terminal being used to communicate with PROCESS.
6072 This is used for various commands in shell mode.
6073 If CURRENT_GROUP is lambda, that means send to the process group
6074 that currently owns the terminal, but only if it is NOT the shell itself.
6076 If NOMSG is zero, insert signal-announcements into process's buffers
6077 right away.
6079 If we can, we try to signal PROCESS by sending control characters
6080 down the pty. This allows us to signal inferiors who have changed
6081 their uid, for which killpg would return an EPERM error. */
6083 static void
6084 process_send_signal (process, signo, current_group, nomsg)
6085 Lisp_Object process;
6086 int signo;
6087 Lisp_Object current_group;
6088 int nomsg;
6090 Lisp_Object proc;
6091 register struct Lisp_Process *p;
6092 int gid;
6093 int no_pgrp = 0;
6095 proc = get_process (process);
6096 p = XPROCESS (proc);
6098 if (!EQ (p->type, Qreal))
6099 error ("Process %s is not a subprocess",
6100 SDATA (p->name));
6101 if (p->infd < 0)
6102 error ("Process %s is not active",
6103 SDATA (p->name));
6105 if (!p->pty_flag)
6106 current_group = Qnil;
6108 /* If we are using pgrps, get a pgrp number and make it negative. */
6109 if (NILP (current_group))
6110 /* Send the signal to the shell's process group. */
6111 gid = p->pid;
6112 else
6114 #ifdef SIGNALS_VIA_CHARACTERS
6115 /* If possible, send signals to the entire pgrp
6116 by sending an input character to it. */
6118 /* TERMIOS is the latest and bestest, and seems most likely to
6119 work. If the system has it, use it. */
6120 #ifdef HAVE_TERMIOS
6121 struct termios t;
6122 cc_t *sig_char = NULL;
6124 tcgetattr (p->infd, &t);
6126 switch (signo)
6128 case SIGINT:
6129 sig_char = &t.c_cc[VINTR];
6130 break;
6132 case SIGQUIT:
6133 sig_char = &t.c_cc[VQUIT];
6134 break;
6136 case SIGTSTP:
6137 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
6138 sig_char = &t.c_cc[VSWTCH];
6139 #else
6140 sig_char = &t.c_cc[VSUSP];
6141 #endif
6142 break;
6145 if (sig_char && *sig_char != CDISABLE)
6147 send_process (proc, sig_char, 1, Qnil);
6148 return;
6150 /* If we can't send the signal with a character,
6151 fall through and send it another way. */
6152 #else /* ! HAVE_TERMIOS */
6154 /* On Berkeley descendants, the following IOCTL's retrieve the
6155 current control characters. */
6156 #if defined (TIOCGLTC) && defined (TIOCGETC)
6158 struct tchars c;
6159 struct ltchars lc;
6161 switch (signo)
6163 case SIGINT:
6164 ioctl (p->infd, TIOCGETC, &c);
6165 send_process (proc, &c.t_intrc, 1, Qnil);
6166 return;
6167 case SIGQUIT:
6168 ioctl (p->infd, TIOCGETC, &c);
6169 send_process (proc, &c.t_quitc, 1, Qnil);
6170 return;
6171 #ifdef SIGTSTP
6172 case SIGTSTP:
6173 ioctl (p->infd, TIOCGLTC, &lc);
6174 send_process (proc, &lc.t_suspc, 1, Qnil);
6175 return;
6176 #endif /* ! defined (SIGTSTP) */
6179 #else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
6181 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
6182 characters. */
6183 #ifdef TCGETA
6184 struct termio t;
6185 switch (signo)
6187 case SIGINT:
6188 ioctl (p->infd, TCGETA, &t);
6189 send_process (proc, &t.c_cc[VINTR], 1, Qnil);
6190 return;
6191 case SIGQUIT:
6192 ioctl (p->infd, TCGETA, &t);
6193 send_process (proc, &t.c_cc[VQUIT], 1, Qnil);
6194 return;
6195 #ifdef SIGTSTP
6196 case SIGTSTP:
6197 ioctl (p->infd, TCGETA, &t);
6198 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil);
6199 return;
6200 #endif /* ! defined (SIGTSTP) */
6202 #else /* ! defined (TCGETA) */
6203 Your configuration files are messed up.
6204 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
6205 you'd better be using one of the alternatives above! */
6206 #endif /* ! defined (TCGETA) */
6207 #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
6208 /* In this case, the code above should alway return. */
6209 abort ();
6210 #endif /* ! defined HAVE_TERMIOS */
6212 /* The code above may fall through if it can't
6213 handle the signal. */
6214 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
6216 #ifdef TIOCGPGRP
6217 /* Get the current pgrp using the tty itself, if we have that.
6218 Otherwise, use the pty to get the pgrp.
6219 On pfa systems, saka@pfu.fujitsu.co.JP writes:
6220 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
6221 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
6222 His patch indicates that if TIOCGPGRP returns an error, then
6223 we should just assume that p->pid is also the process group id. */
6225 gid = emacs_get_tty_pgrp (p);
6227 if (gid == -1)
6228 /* If we can't get the information, assume
6229 the shell owns the tty. */
6230 gid = p->pid;
6232 /* It is not clear whether anything really can set GID to -1.
6233 Perhaps on some system one of those ioctls can or could do so.
6234 Or perhaps this is vestigial. */
6235 if (gid == -1)
6236 no_pgrp = 1;
6237 #else /* ! defined (TIOCGPGRP ) */
6238 /* Can't select pgrps on this system, so we know that
6239 the child itself heads the pgrp. */
6240 gid = p->pid;
6241 #endif /* ! defined (TIOCGPGRP ) */
6243 /* If current_group is lambda, and the shell owns the terminal,
6244 don't send any signal. */
6245 if (EQ (current_group, Qlambda) && gid == p->pid)
6246 return;
6249 switch (signo)
6251 #ifdef SIGCONT
6252 case SIGCONT:
6253 p->raw_status_new = 0;
6254 p->status = Qrun;
6255 p->tick = ++process_tick;
6256 if (!nomsg)
6258 status_notify (NULL);
6259 redisplay_preserve_echo_area (13);
6261 break;
6262 #endif /* ! defined (SIGCONT) */
6263 case SIGINT:
6264 case SIGQUIT:
6265 case SIGKILL:
6266 flush_pending_output (p->infd);
6267 break;
6270 /* If we don't have process groups, send the signal to the immediate
6271 subprocess. That isn't really right, but it's better than any
6272 obvious alternative. */
6273 if (no_pgrp)
6275 kill (p->pid, signo);
6276 return;
6279 /* gid may be a pid, or minus a pgrp's number */
6280 #ifdef TIOCSIGSEND
6281 if (!NILP (current_group))
6283 if (ioctl (p->infd, TIOCSIGSEND, signo) == -1)
6284 EMACS_KILLPG (gid, signo);
6286 else
6288 gid = - p->pid;
6289 kill (gid, signo);
6291 #else /* ! defined (TIOCSIGSEND) */
6292 EMACS_KILLPG (gid, signo);
6293 #endif /* ! defined (TIOCSIGSEND) */
6296 DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
6297 doc: /* Interrupt process PROCESS.
6298 PROCESS may be a process, a buffer, or the name of a process or buffer.
6299 No arg or nil means current buffer's process.
6300 Second arg CURRENT-GROUP non-nil means send signal to
6301 the current process-group of the process's controlling terminal
6302 rather than to the process's own process group.
6303 If the process is a shell, this means interrupt current subjob
6304 rather than the shell.
6306 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
6307 don't send the signal. */)
6308 (process, current_group)
6309 Lisp_Object process, current_group;
6311 process_send_signal (process, SIGINT, current_group, 0);
6312 return process;
6315 DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
6316 doc: /* Kill process PROCESS. May be process or name of one.
6317 See function `interrupt-process' for more details on usage. */)
6318 (process, current_group)
6319 Lisp_Object process, current_group;
6321 process_send_signal (process, SIGKILL, current_group, 0);
6322 return process;
6325 DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
6326 doc: /* Send QUIT signal to process PROCESS. May be process or name of one.
6327 See function `interrupt-process' for more details on usage. */)
6328 (process, current_group)
6329 Lisp_Object process, current_group;
6331 process_send_signal (process, SIGQUIT, current_group, 0);
6332 return process;
6335 DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
6336 doc: /* Stop process PROCESS. May be process or name of one.
6337 See function `interrupt-process' for more details on usage.
6338 If PROCESS is a network or serial process, inhibit handling of incoming
6339 traffic. */)
6340 (process, current_group)
6341 Lisp_Object process, current_group;
6343 #ifdef HAVE_SOCKETS
6344 if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process)))
6346 struct Lisp_Process *p;
6348 p = XPROCESS (process);
6349 if (NILP (p->command)
6350 && p->infd >= 0)
6352 FD_CLR (p->infd, &input_wait_mask);
6353 FD_CLR (p->infd, &non_keyboard_wait_mask);
6355 p->command = Qt;
6356 return process;
6358 #endif
6359 #ifndef SIGTSTP
6360 error ("No SIGTSTP support");
6361 #else
6362 process_send_signal (process, SIGTSTP, current_group, 0);
6363 #endif
6364 return process;
6367 DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
6368 doc: /* Continue process PROCESS. May be process or name of one.
6369 See function `interrupt-process' for more details on usage.
6370 If PROCESS is a network or serial process, resume handling of incoming
6371 traffic. */)
6372 (process, current_group)
6373 Lisp_Object process, current_group;
6375 #ifdef HAVE_SOCKETS
6376 if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process)))
6378 struct Lisp_Process *p;
6380 p = XPROCESS (process);
6381 if (EQ (p->command, Qt)
6382 && p->infd >= 0
6383 && (!EQ (p->filter, Qt) || EQ (p->status, Qlisten)))
6385 FD_SET (p->infd, &input_wait_mask);
6386 FD_SET (p->infd, &non_keyboard_wait_mask);
6387 #ifdef WINDOWSNT
6388 if (fd_info[ p->infd ].flags & FILE_SERIAL)
6389 PurgeComm (fd_info[ p->infd ].hnd, PURGE_RXABORT | PURGE_RXCLEAR);
6390 #endif
6391 #ifdef HAVE_TERMIOS
6392 tcflush (p->infd, TCIFLUSH);
6393 #endif
6395 p->command = Qnil;
6396 return process;
6398 #endif
6399 #ifdef SIGCONT
6400 process_send_signal (process, SIGCONT, current_group, 0);
6401 #else
6402 error ("No SIGCONT support");
6403 #endif
6404 return process;
6407 DEFUN ("signal-process", Fsignal_process, Ssignal_process,
6408 2, 2, "sProcess (name or number): \nnSignal code: ",
6409 doc: /* Send PROCESS the signal with code SIGCODE.
6410 PROCESS may also be a number specifying the process id of the
6411 process to signal; in this case, the process need not be a child of
6412 this Emacs.
6413 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
6414 (process, sigcode)
6415 Lisp_Object process, sigcode;
6417 pid_t pid;
6419 if (INTEGERP (process))
6421 pid = XINT (process);
6422 goto got_it;
6425 if (FLOATP (process))
6427 pid = (pid_t) XFLOAT_DATA (process);
6428 goto got_it;
6431 if (STRINGP (process))
6433 Lisp_Object tem;
6434 if (tem = Fget_process (process), NILP (tem))
6436 pid = XINT (Fstring_to_number (process, make_number (10)));
6437 if (pid > 0)
6438 goto got_it;
6440 process = tem;
6442 else
6443 process = get_process (process);
6445 if (NILP (process))
6446 return process;
6448 CHECK_PROCESS (process);
6449 pid = XPROCESS (process)->pid;
6450 if (pid <= 0)
6451 error ("Cannot signal process %s", SDATA (XPROCESS (process)->name));
6453 got_it:
6455 #define parse_signal(NAME, VALUE) \
6456 else if (!xstrcasecmp (name, NAME)) \
6457 XSETINT (sigcode, VALUE)
6459 if (INTEGERP (sigcode))
6461 else
6463 unsigned char *name;
6465 CHECK_SYMBOL (sigcode);
6466 name = SDATA (SYMBOL_NAME (sigcode));
6468 if (!strncmp(name, "SIG", 3) || !strncmp(name, "sig", 3))
6469 name += 3;
6471 if (0)
6473 #ifdef SIGUSR1
6474 parse_signal ("usr1", SIGUSR1);
6475 #endif
6476 #ifdef SIGUSR2
6477 parse_signal ("usr2", SIGUSR2);
6478 #endif
6479 #ifdef SIGTERM
6480 parse_signal ("term", SIGTERM);
6481 #endif
6482 #ifdef SIGHUP
6483 parse_signal ("hup", SIGHUP);
6484 #endif
6485 #ifdef SIGINT
6486 parse_signal ("int", SIGINT);
6487 #endif
6488 #ifdef SIGQUIT
6489 parse_signal ("quit", SIGQUIT);
6490 #endif
6491 #ifdef SIGILL
6492 parse_signal ("ill", SIGILL);
6493 #endif
6494 #ifdef SIGABRT
6495 parse_signal ("abrt", SIGABRT);
6496 #endif
6497 #ifdef SIGEMT
6498 parse_signal ("emt", SIGEMT);
6499 #endif
6500 #ifdef SIGKILL
6501 parse_signal ("kill", SIGKILL);
6502 #endif
6503 #ifdef SIGFPE
6504 parse_signal ("fpe", SIGFPE);
6505 #endif
6506 #ifdef SIGBUS
6507 parse_signal ("bus", SIGBUS);
6508 #endif
6509 #ifdef SIGSEGV
6510 parse_signal ("segv", SIGSEGV);
6511 #endif
6512 #ifdef SIGSYS
6513 parse_signal ("sys", SIGSYS);
6514 #endif
6515 #ifdef SIGPIPE
6516 parse_signal ("pipe", SIGPIPE);
6517 #endif
6518 #ifdef SIGALRM
6519 parse_signal ("alrm", SIGALRM);
6520 #endif
6521 #ifdef SIGURG
6522 parse_signal ("urg", SIGURG);
6523 #endif
6524 #ifdef SIGSTOP
6525 parse_signal ("stop", SIGSTOP);
6526 #endif
6527 #ifdef SIGTSTP
6528 parse_signal ("tstp", SIGTSTP);
6529 #endif
6530 #ifdef SIGCONT
6531 parse_signal ("cont", SIGCONT);
6532 #endif
6533 #ifdef SIGCHLD
6534 parse_signal ("chld", SIGCHLD);
6535 #endif
6536 #ifdef SIGTTIN
6537 parse_signal ("ttin", SIGTTIN);
6538 #endif
6539 #ifdef SIGTTOU
6540 parse_signal ("ttou", SIGTTOU);
6541 #endif
6542 #ifdef SIGIO
6543 parse_signal ("io", SIGIO);
6544 #endif
6545 #ifdef SIGXCPU
6546 parse_signal ("xcpu", SIGXCPU);
6547 #endif
6548 #ifdef SIGXFSZ
6549 parse_signal ("xfsz", SIGXFSZ);
6550 #endif
6551 #ifdef SIGVTALRM
6552 parse_signal ("vtalrm", SIGVTALRM);
6553 #endif
6554 #ifdef SIGPROF
6555 parse_signal ("prof", SIGPROF);
6556 #endif
6557 #ifdef SIGWINCH
6558 parse_signal ("winch", SIGWINCH);
6559 #endif
6560 #ifdef SIGINFO
6561 parse_signal ("info", SIGINFO);
6562 #endif
6563 else
6564 error ("Undefined signal name %s", name);
6567 #undef parse_signal
6569 return make_number (kill (pid, XINT (sigcode)));
6572 DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
6573 doc: /* Make PROCESS see end-of-file in its input.
6574 EOF comes after any text already sent to it.
6575 PROCESS may be a process, a buffer, the name of a process or buffer, or
6576 nil, indicating the current buffer's process.
6577 If PROCESS is a network connection, or is a process communicating
6578 through a pipe (as opposed to a pty), then you cannot send any more
6579 text to PROCESS after you call this function.
6580 If PROCESS is a serial process, wait until all output written to the
6581 process has been transmitted to the serial port. */)
6582 (process)
6583 Lisp_Object process;
6585 Lisp_Object proc;
6586 struct coding_system *coding;
6588 if (DATAGRAM_CONN_P (process))
6589 return process;
6591 proc = get_process (process);
6592 coding = proc_encode_coding_system[XPROCESS (proc)->outfd];
6594 /* Make sure the process is really alive. */
6595 if (XPROCESS (proc)->raw_status_new)
6596 update_status (XPROCESS (proc));
6597 if (! EQ (XPROCESS (proc)->status, Qrun))
6598 error ("Process %s not running", SDATA (XPROCESS (proc)->name));
6600 if (CODING_REQUIRE_FLUSHING (coding))
6602 coding->mode |= CODING_MODE_LAST_BLOCK;
6603 send_process (proc, "", 0, Qnil);
6606 if (XPROCESS (proc)->pty_flag)
6607 send_process (proc, "\004", 1, Qnil);
6608 else if (EQ (XPROCESS (proc)->type, Qserial))
6610 #ifdef HAVE_TERMIOS
6611 if (tcdrain (XPROCESS (proc)->outfd) != 0)
6612 error ("tcdrain() failed: %s", emacs_strerror (errno));
6613 #endif
6614 /* Do nothing on Windows because writes are blocking. */
6616 else
6618 int old_outfd, new_outfd;
6620 #ifdef HAVE_SHUTDOWN
6621 /* If this is a network connection, or socketpair is used
6622 for communication with the subprocess, call shutdown to cause EOF.
6623 (In some old system, shutdown to socketpair doesn't work.
6624 Then we just can't win.) */
6625 if (EQ (XPROCESS (proc)->type, Qnetwork)
6626 || XPROCESS (proc)->outfd == XPROCESS (proc)->infd)
6627 shutdown (XPROCESS (proc)->outfd, 1);
6628 /* In case of socketpair, outfd == infd, so don't close it. */
6629 if (XPROCESS (proc)->outfd != XPROCESS (proc)->infd)
6630 emacs_close (XPROCESS (proc)->outfd);
6631 #else /* not HAVE_SHUTDOWN */
6632 emacs_close (XPROCESS (proc)->outfd);
6633 #endif /* not HAVE_SHUTDOWN */
6634 new_outfd = emacs_open (NULL_DEVICE, O_WRONLY, 0);
6635 if (new_outfd < 0)
6636 abort ();
6637 old_outfd = XPROCESS (proc)->outfd;
6639 if (!proc_encode_coding_system[new_outfd])
6640 proc_encode_coding_system[new_outfd]
6641 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
6642 bcopy (proc_encode_coding_system[old_outfd],
6643 proc_encode_coding_system[new_outfd],
6644 sizeof (struct coding_system));
6645 bzero (proc_encode_coding_system[old_outfd],
6646 sizeof (struct coding_system));
6648 XPROCESS (proc)->outfd = new_outfd;
6650 return process;
6653 /* Kill all processes associated with `buffer'.
6654 If `buffer' is nil, kill all processes */
6656 void
6657 kill_buffer_processes (buffer)
6658 Lisp_Object buffer;
6660 Lisp_Object tail, proc;
6662 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6664 proc = XCDR (XCAR (tail));
6665 if (PROCESSP (proc)
6666 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
6668 if (NETCONN_P (proc) || SERIALCONN_P (proc))
6669 Fdelete_process (proc);
6670 else if (XPROCESS (proc)->infd >= 0)
6671 process_send_signal (proc, SIGHUP, Qnil, 1);
6676 /* On receipt of a signal that a child status has changed, loop asking
6677 about children with changed statuses until the system says there
6678 are no more.
6680 All we do is change the status; we do not run sentinels or print
6681 notifications. That is saved for the next time keyboard input is
6682 done, in order to avoid timing errors.
6684 ** WARNING: this can be called during garbage collection.
6685 Therefore, it must not be fooled by the presence of mark bits in
6686 Lisp objects.
6688 ** USG WARNING: Although it is not obvious from the documentation
6689 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6690 signal() before executing at least one wait(), otherwise the
6691 handler will be called again, resulting in an infinite loop. The
6692 relevant portion of the documentation reads "SIGCLD signals will be
6693 queued and the signal-catching function will be continually
6694 reentered until the queue is empty". Invoking signal() causes the
6695 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6696 Inc.
6698 ** Malloc WARNING: This should never call malloc either directly or
6699 indirectly; if it does, that is a bug */
6701 #ifdef SIGCHLD
6702 SIGTYPE
6703 sigchld_handler (signo)
6704 int signo;
6706 int old_errno = errno;
6707 Lisp_Object proc;
6708 register struct Lisp_Process *p;
6709 extern EMACS_TIME *input_available_clear_time;
6711 SIGNAL_THREAD_CHECK (signo);
6713 while (1)
6715 pid_t pid;
6716 int w;
6717 Lisp_Object tail;
6719 #ifdef WNOHANG
6720 #ifndef WUNTRACED
6721 #define WUNTRACED 0
6722 #endif /* no WUNTRACED */
6723 /* Keep trying to get a status until we get a definitive result. */
6726 errno = 0;
6727 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
6729 while (pid < 0 && errno == EINTR);
6731 if (pid <= 0)
6733 /* PID == 0 means no processes found, PID == -1 means a real
6734 failure. We have done all our job, so return. */
6736 /* USG systems forget handlers when they are used;
6737 must reestablish each time */
6738 #if defined (USG) && !defined (POSIX_SIGNALS)
6739 signal (signo, sigchld_handler); /* WARNING - must come after wait3() */
6740 #endif
6741 errno = old_errno;
6742 return;
6744 #else
6745 pid = wait (&w);
6746 #endif /* no WNOHANG */
6748 /* Find the process that signaled us, and record its status. */
6750 /* The process can have been deleted by Fdelete_process. */
6751 for (tail = deleted_pid_list; CONSP (tail); tail = XCDR (tail))
6753 Lisp_Object xpid = XCAR (tail);
6754 if ((INTEGERP (xpid) && pid == (pid_t) XINT (xpid))
6755 || (FLOATP (xpid) && pid == (pid_t) XFLOAT_DATA (xpid)))
6757 XSETCAR (tail, Qnil);
6758 goto sigchld_end_of_loop;
6762 /* Otherwise, if it is asynchronous, it is in Vprocess_alist. */
6763 p = 0;
6764 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6766 proc = XCDR (XCAR (tail));
6767 p = XPROCESS (proc);
6768 if (EQ (p->type, Qreal) && p->pid == pid)
6769 break;
6770 p = 0;
6773 /* Look for an asynchronous process whose pid hasn't been filled
6774 in yet. */
6775 if (p == 0)
6776 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6778 proc = XCDR (XCAR (tail));
6779 p = XPROCESS (proc);
6780 if (p->pid == -1)
6781 break;
6782 p = 0;
6785 /* Change the status of the process that was found. */
6786 if (p != 0)
6788 int clear_desc_flag = 0;
6790 p->tick = ++process_tick;
6791 p->raw_status = w;
6792 p->raw_status_new = 1;
6794 /* If process has terminated, stop waiting for its output. */
6795 if ((WIFSIGNALED (w) || WIFEXITED (w))
6796 && p->infd >= 0)
6797 clear_desc_flag = 1;
6799 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
6800 if (clear_desc_flag)
6802 FD_CLR (p->infd, &input_wait_mask);
6803 FD_CLR (p->infd, &non_keyboard_wait_mask);
6806 /* Tell wait_reading_process_output that it needs to wake up and
6807 look around. */
6808 if (input_available_clear_time)
6809 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6812 /* There was no asynchronous process found for that pid: we have
6813 a synchronous process. */
6814 else
6816 synch_process_alive = 0;
6818 /* Report the status of the synchronous process. */
6819 if (WIFEXITED (w))
6820 synch_process_retcode = WRETCODE (w);
6821 else if (WIFSIGNALED (w))
6822 synch_process_termsig = WTERMSIG (w);
6824 /* Tell wait_reading_process_output that it needs to wake up and
6825 look around. */
6826 if (input_available_clear_time)
6827 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6830 sigchld_end_of_loop:
6833 /* On some systems, we must return right away.
6834 If any more processes want to signal us, we will
6835 get another signal.
6836 Otherwise (on systems that have WNOHANG), loop around
6837 to use up all the processes that have something to tell us. */
6838 #if (defined WINDOWSNT \
6839 || (defined USG && !defined GNU_LINUX \
6840 && !(defined HPUX && defined WNOHANG)))
6841 #if defined (USG) && ! defined (POSIX_SIGNALS)
6842 signal (signo, sigchld_handler);
6843 #endif
6844 errno = old_errno;
6845 return;
6846 #endif /* USG, but not HPUX with WNOHANG */
6849 #endif /* SIGCHLD */
6852 static Lisp_Object
6853 exec_sentinel_unwind (data)
6854 Lisp_Object data;
6856 XPROCESS (XCAR (data))->sentinel = XCDR (data);
6857 return Qnil;
6860 static Lisp_Object
6861 exec_sentinel_error_handler (error)
6862 Lisp_Object error;
6864 cmd_error_internal (error, "error in process sentinel: ");
6865 Vinhibit_quit = Qt;
6866 update_echo_area ();
6867 Fsleep_for (make_number (2), Qnil);
6868 return Qt;
6871 static void
6872 exec_sentinel (proc, reason)
6873 Lisp_Object proc, reason;
6875 Lisp_Object sentinel, obuffer, odeactivate, okeymap;
6876 register struct Lisp_Process *p = XPROCESS (proc);
6877 int count = SPECPDL_INDEX ();
6878 int outer_running_asynch_code = running_asynch_code;
6879 int waiting = waiting_for_user_input_p;
6881 if (inhibit_sentinels)
6882 return;
6884 /* No need to gcpro these, because all we do with them later
6885 is test them for EQness, and none of them should be a string. */
6886 odeactivate = Vdeactivate_mark;
6887 XSETBUFFER (obuffer, current_buffer);
6888 okeymap = current_buffer->keymap;
6890 sentinel = p->sentinel;
6891 if (NILP (sentinel))
6892 return;
6894 /* Zilch the sentinel while it's running, to avoid recursive invocations;
6895 assure that it gets restored no matter how the sentinel exits. */
6896 p->sentinel = Qnil;
6897 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
6898 /* Inhibit quit so that random quits don't screw up a running filter. */
6899 specbind (Qinhibit_quit, Qt);
6900 specbind (Qlast_nonmenu_event, Qt); /* Why? --Stef */
6902 /* In case we get recursively called,
6903 and we already saved the match data nonrecursively,
6904 save the same match data in safely recursive fashion. */
6905 if (outer_running_asynch_code)
6907 Lisp_Object tem;
6908 tem = Fmatch_data (Qnil, Qnil, Qnil);
6909 restore_search_regs ();
6910 record_unwind_save_match_data ();
6911 Fset_match_data (tem, Qt);
6914 /* For speed, if a search happens within this code,
6915 save the match data in a special nonrecursive fashion. */
6916 running_asynch_code = 1;
6918 internal_condition_case_1 (read_process_output_call,
6919 Fcons (sentinel,
6920 Fcons (proc, Fcons (reason, Qnil))),
6921 !NILP (Vdebug_on_error) ? Qnil : Qerror,
6922 exec_sentinel_error_handler);
6924 /* If we saved the match data nonrecursively, restore it now. */
6925 restore_search_regs ();
6926 running_asynch_code = outer_running_asynch_code;
6928 Vdeactivate_mark = odeactivate;
6930 /* Restore waiting_for_user_input_p as it was
6931 when we were called, in case the filter clobbered it. */
6932 waiting_for_user_input_p = waiting;
6934 #if 0
6935 if (! EQ (Fcurrent_buffer (), obuffer)
6936 || ! EQ (current_buffer->keymap, okeymap))
6937 #endif
6938 /* But do it only if the caller is actually going to read events.
6939 Otherwise there's no need to make him wake up, and it could
6940 cause trouble (for example it would make sit_for return). */
6941 if (waiting_for_user_input_p == -1)
6942 record_asynch_buffer_change ();
6944 unbind_to (count, Qnil);
6947 /* Report all recent events of a change in process status
6948 (either run the sentinel or output a message).
6949 This is usually done while Emacs is waiting for keyboard input
6950 but can be done at other times. */
6952 static void
6953 status_notify (deleting_process)
6954 struct Lisp_Process *deleting_process;
6956 register Lisp_Object proc, buffer;
6957 Lisp_Object tail, msg;
6958 struct gcpro gcpro1, gcpro2;
6960 tail = Qnil;
6961 msg = Qnil;
6962 /* We need to gcpro tail; if read_process_output calls a filter
6963 which deletes a process and removes the cons to which tail points
6964 from Vprocess_alist, and then causes a GC, tail is an unprotected
6965 reference. */
6966 GCPRO2 (tail, msg);
6968 /* Set this now, so that if new processes are created by sentinels
6969 that we run, we get called again to handle their status changes. */
6970 update_tick = process_tick;
6972 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6974 Lisp_Object symbol;
6975 register struct Lisp_Process *p;
6977 proc = Fcdr (XCAR (tail));
6978 p = XPROCESS (proc);
6980 if (p->tick != p->update_tick)
6982 p->update_tick = p->tick;
6984 /* If process is still active, read any output that remains. */
6985 while (! EQ (p->filter, Qt)
6986 && ! EQ (p->status, Qconnect)
6987 && ! EQ (p->status, Qlisten)
6988 /* Network or serial process not stopped: */
6989 && ! EQ (p->command, Qt)
6990 && p->infd >= 0
6991 && p != deleting_process
6992 && read_process_output (proc, p->infd) > 0);
6994 buffer = p->buffer;
6996 /* Get the text to use for the message. */
6997 if (p->raw_status_new)
6998 update_status (p);
6999 msg = status_message (p);
7001 /* If process is terminated, deactivate it or delete it. */
7002 symbol = p->status;
7003 if (CONSP (p->status))
7004 symbol = XCAR (p->status);
7006 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
7007 || EQ (symbol, Qclosed))
7009 if (delete_exited_processes)
7010 remove_process (proc);
7011 else
7012 deactivate_process (proc);
7015 /* The actions above may have further incremented p->tick.
7016 So set p->update_tick again
7017 so that an error in the sentinel will not cause
7018 this code to be run again. */
7019 p->update_tick = p->tick;
7020 /* Now output the message suitably. */
7021 if (!NILP (p->sentinel))
7022 exec_sentinel (proc, msg);
7023 /* Don't bother with a message in the buffer
7024 when a process becomes runnable. */
7025 else if (!EQ (symbol, Qrun) && !NILP (buffer))
7027 Lisp_Object ro, tem;
7028 struct buffer *old = current_buffer;
7029 int opoint, opoint_byte;
7030 int before, before_byte;
7032 ro = XBUFFER (buffer)->read_only;
7034 /* Avoid error if buffer is deleted
7035 (probably that's why the process is dead, too) */
7036 if (NILP (XBUFFER (buffer)->name))
7037 continue;
7038 Fset_buffer (buffer);
7040 opoint = PT;
7041 opoint_byte = PT_BYTE;
7042 /* Insert new output into buffer
7043 at the current end-of-output marker,
7044 thus preserving logical ordering of input and output. */
7045 if (XMARKER (p->mark)->buffer)
7046 Fgoto_char (p->mark);
7047 else
7048 SET_PT_BOTH (ZV, ZV_BYTE);
7050 before = PT;
7051 before_byte = PT_BYTE;
7053 tem = current_buffer->read_only;
7054 current_buffer->read_only = Qnil;
7055 insert_string ("\nProcess ");
7056 Finsert (1, &p->name);
7057 insert_string (" ");
7058 Finsert (1, &msg);
7059 current_buffer->read_only = tem;
7060 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
7062 if (opoint >= before)
7063 SET_PT_BOTH (opoint + (PT - before),
7064 opoint_byte + (PT_BYTE - before_byte));
7065 else
7066 SET_PT_BOTH (opoint, opoint_byte);
7068 set_buffer_internal (old);
7071 } /* end for */
7073 update_mode_lines++; /* in case buffers use %s in mode-line-format */
7074 UNGCPRO;
7078 DEFUN ("set-process-coding-system", Fset_process_coding_system,
7079 Sset_process_coding_system, 1, 3, 0,
7080 doc: /* Set coding systems of PROCESS to DECODING and ENCODING.
7081 DECODING will be used to decode subprocess output and ENCODING to
7082 encode subprocess input. */)
7083 (process, decoding, encoding)
7084 register Lisp_Object process, decoding, encoding;
7086 register struct Lisp_Process *p;
7088 CHECK_PROCESS (process);
7089 p = XPROCESS (process);
7090 if (p->infd < 0)
7091 error ("Input file descriptor of %s closed", SDATA (p->name));
7092 if (p->outfd < 0)
7093 error ("Output file descriptor of %s closed", SDATA (p->name));
7094 Fcheck_coding_system (decoding);
7095 Fcheck_coding_system (encoding);
7096 encoding = coding_inherit_eol_type (encoding, Qnil);
7097 p->decode_coding_system = decoding;
7098 p->encode_coding_system = encoding;
7099 setup_process_coding_systems (process);
7101 return Qnil;
7104 DEFUN ("process-coding-system",
7105 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0,
7106 doc: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
7107 (process)
7108 register Lisp_Object process;
7110 CHECK_PROCESS (process);
7111 return Fcons (XPROCESS (process)->decode_coding_system,
7112 XPROCESS (process)->encode_coding_system);
7115 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte,
7116 Sset_process_filter_multibyte, 2, 2, 0,
7117 doc: /* Set multibyteness of the strings given to PROCESS's filter.
7118 If FLAG is non-nil, the filter is given multibyte strings.
7119 If FLAG is nil, the filter is given unibyte strings. In this case,
7120 all character code conversion except for end-of-line conversion is
7121 suppressed. */)
7122 (process, flag)
7123 Lisp_Object process, flag;
7125 register struct Lisp_Process *p;
7127 CHECK_PROCESS (process);
7128 p = XPROCESS (process);
7129 if (NILP (flag))
7130 p->decode_coding_system = raw_text_coding_system (p->decode_coding_system);
7131 setup_process_coding_systems (process);
7133 return Qnil;
7136 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p,
7137 Sprocess_filter_multibyte_p, 1, 1, 0,
7138 doc: /* Return t if a multibyte string is given to PROCESS's filter.*/)
7139 (process)
7140 Lisp_Object process;
7142 register struct Lisp_Process *p;
7143 struct coding_system *coding;
7145 CHECK_PROCESS (process);
7146 p = XPROCESS (process);
7147 coding = proc_decode_coding_system[p->infd];
7148 return (CODING_FOR_UNIBYTE (coding) ? Qnil : Qt);
7153 /* Add DESC to the set of keyboard input descriptors. */
7155 void
7156 add_keyboard_wait_descriptor (desc)
7157 int desc;
7159 FD_SET (desc, &input_wait_mask);
7160 FD_SET (desc, &non_process_wait_mask);
7161 if (desc > max_keyboard_desc)
7162 max_keyboard_desc = desc;
7165 static int add_gpm_wait_descriptor_called_flag;
7167 void
7168 add_gpm_wait_descriptor (desc)
7169 int desc;
7171 if (! add_gpm_wait_descriptor_called_flag)
7172 FD_CLR (0, &input_wait_mask);
7173 add_gpm_wait_descriptor_called_flag = 1;
7174 FD_SET (desc, &input_wait_mask);
7175 FD_SET (desc, &gpm_wait_mask);
7176 if (desc > max_gpm_desc)
7177 max_gpm_desc = desc;
7180 /* From now on, do not expect DESC to give keyboard input. */
7182 void
7183 delete_keyboard_wait_descriptor (desc)
7184 int desc;
7186 int fd;
7187 int lim = max_keyboard_desc;
7189 FD_CLR (desc, &input_wait_mask);
7190 FD_CLR (desc, &non_process_wait_mask);
7192 if (desc == max_keyboard_desc)
7193 for (fd = 0; fd < lim; fd++)
7194 if (FD_ISSET (fd, &input_wait_mask)
7195 && !FD_ISSET (fd, &non_keyboard_wait_mask)
7196 && !FD_ISSET (fd, &gpm_wait_mask))
7197 max_keyboard_desc = fd;
7200 void
7201 delete_gpm_wait_descriptor (desc)
7202 int desc;
7204 int fd;
7205 int lim = max_gpm_desc;
7207 FD_CLR (desc, &input_wait_mask);
7208 FD_CLR (desc, &non_process_wait_mask);
7210 if (desc == max_gpm_desc)
7211 for (fd = 0; fd < lim; fd++)
7212 if (FD_ISSET (fd, &input_wait_mask)
7213 && !FD_ISSET (fd, &non_keyboard_wait_mask)
7214 && !FD_ISSET (fd, &non_process_wait_mask))
7215 max_gpm_desc = fd;
7218 /* Return nonzero if *MASK has a bit set
7219 that corresponds to one of the keyboard input descriptors. */
7221 static int
7222 keyboard_bit_set (mask)
7223 SELECT_TYPE *mask;
7225 int fd;
7227 for (fd = 0; fd <= max_keyboard_desc; fd++)
7228 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask)
7229 && !FD_ISSET (fd, &non_keyboard_wait_mask))
7230 return 1;
7232 return 0;
7235 /* Stop reading input from keyboard sources. */
7237 void
7238 hold_keyboard_input (void)
7240 kbd_is_on_hold = 1;
7243 /* Resume reading input from keyboard sources. */
7245 void
7246 unhold_keyboard_input (void)
7248 kbd_is_on_hold = 0;
7251 /* Return non-zero if keyboard input is on hold, zero otherwise. */
7254 kbd_on_hold_p (void)
7256 return kbd_is_on_hold;
7260 /* Enumeration of and access to system processes a-la ps(1). */
7262 DEFUN ("list-system-processes", Flist_system_processes, Slist_system_processes,
7263 0, 0, 0,
7264 doc: /* Return a list of numerical process IDs of all running processes.
7265 If this functionality is unsupported, return nil.
7267 See `process-attributes' for getting attributes of a process given its ID. */)
7270 return list_system_processes ();
7273 DEFUN ("process-attributes", Fprocess_attributes,
7274 Sprocess_attributes, 1, 1, 0,
7275 doc: /* Return attributes of the process given by its PID, a number.
7277 Value is an alist where each element is a cons cell of the form
7279 \(KEY . VALUE)
7281 If this functionality is unsupported, the value is nil.
7283 See `list-system-processes' for getting a list of all process IDs.
7285 The KEYs of the attributes that this function may return are listed
7286 below, together with the type of the associated VALUE (in parentheses).
7287 Not all platforms support all of these attributes; unsupported
7288 attributes will not appear in the returned alist.
7289 Unless explicitly indicated otherwise, numbers can have either
7290 integer or floating point values.
7292 euid -- Effective user User ID of the process (number)
7293 user -- User name corresponding to euid (string)
7294 egid -- Effective user Group ID of the process (number)
7295 group -- Group name corresponding to egid (string)
7296 comm -- Command name (executable name only) (string)
7297 state -- Process state code, such as "S", "R", or "T" (string)
7298 ppid -- Parent process ID (number)
7299 pgrp -- Process group ID (number)
7300 sess -- Session ID, i.e. process ID of session leader (number)
7301 ttname -- Controlling tty name (string)
7302 tpgid -- ID of foreground process group on the process's tty (number)
7303 minflt -- number of minor page faults (number)
7304 majflt -- number of major page faults (number)
7305 cminflt -- cumulative number of minor page faults (number)
7306 cmajflt -- cumulative number of major page faults (number)
7307 utime -- user time used by the process, in the (HIGH LOW USEC) format
7308 stime -- system time used by the process, in the (HIGH LOW USEC) format
7309 time -- sum of utime and stime, in the (HIGH LOW USEC) format
7310 cutime -- user time used by the process and its children, (HIGH LOW USEC)
7311 cstime -- system time used by the process and its children, (HIGH LOW USEC)
7312 ctime -- sum of cutime and cstime, in the (HIGH LOW USEC) format
7313 pri -- priority of the process (number)
7314 nice -- nice value of the process (number)
7315 thcount -- process thread count (number)
7316 start -- time the process started, in the (HIGH LOW USEC) format
7317 vsize -- virtual memory size of the process in KB's (number)
7318 rss -- resident set size of the process in KB's (number)
7319 etime -- elapsed time the process is running, in (HIGH LOW USEC) format
7320 pcpu -- percents of CPU time used by the process (floating-point number)
7321 pmem -- percents of total physical memory used by process's resident set
7322 (floating-point number)
7323 args -- command line which invoked the process (string). */)
7324 (pid)
7326 Lisp_Object pid;
7328 return system_process_attributes (pid);
7331 void
7332 init_process ()
7334 register int i;
7336 inhibit_sentinels = 0;
7338 #ifdef SIGCHLD
7339 #ifndef CANNOT_DUMP
7340 if (! noninteractive || initialized)
7341 #endif
7342 signal (SIGCHLD, sigchld_handler);
7343 #endif
7345 FD_ZERO (&input_wait_mask);
7346 FD_ZERO (&non_keyboard_wait_mask);
7347 FD_ZERO (&non_process_wait_mask);
7348 max_process_desc = 0;
7350 #ifdef NON_BLOCKING_CONNECT
7351 FD_ZERO (&connect_wait_mask);
7352 num_pending_connects = 0;
7353 #endif
7355 #ifdef ADAPTIVE_READ_BUFFERING
7356 process_output_delay_count = 0;
7357 process_output_skip = 0;
7358 #endif
7360 /* Don't do this, it caused infinite select loops. The display
7361 method should call add_keyboard_wait_descriptor on stdin if it
7362 needs that. */
7363 #if 0
7364 FD_SET (0, &input_wait_mask);
7365 #endif
7367 Vprocess_alist = Qnil;
7368 #ifdef SIGCHLD
7369 deleted_pid_list = Qnil;
7370 #endif
7371 for (i = 0; i < MAXDESC; i++)
7373 chan_process[i] = Qnil;
7374 proc_buffered_char[i] = -1;
7376 bzero (proc_decode_coding_system, sizeof proc_decode_coding_system);
7377 bzero (proc_encode_coding_system, sizeof proc_encode_coding_system);
7378 #ifdef DATAGRAM_SOCKETS
7379 bzero (datagram_address, sizeof datagram_address);
7380 #endif
7382 #ifdef HAVE_SOCKETS
7384 Lisp_Object subfeatures = Qnil;
7385 const struct socket_options *sopt;
7387 #define ADD_SUBFEATURE(key, val) \
7388 subfeatures = pure_cons (pure_cons (key, pure_cons (val, Qnil)), subfeatures)
7390 #ifdef NON_BLOCKING_CONNECT
7391 ADD_SUBFEATURE (QCnowait, Qt);
7392 #endif
7393 #ifdef DATAGRAM_SOCKETS
7394 ADD_SUBFEATURE (QCtype, Qdatagram);
7395 #endif
7396 #ifdef HAVE_SEQPACKET
7397 ADD_SUBFEATURE (QCtype, Qseqpacket);
7398 #endif
7399 #ifdef HAVE_LOCAL_SOCKETS
7400 ADD_SUBFEATURE (QCfamily, Qlocal);
7401 #endif
7402 ADD_SUBFEATURE (QCfamily, Qipv4);
7403 #ifdef AF_INET6
7404 ADD_SUBFEATURE (QCfamily, Qipv6);
7405 #endif
7406 #ifdef HAVE_GETSOCKNAME
7407 ADD_SUBFEATURE (QCservice, Qt);
7408 #endif
7409 #if defined(O_NONBLOCK) || defined(O_NDELAY)
7410 ADD_SUBFEATURE (QCserver, Qt);
7411 #endif
7413 for (sopt = socket_options; sopt->name; sopt++)
7414 subfeatures = pure_cons (intern_c_string (sopt->name), subfeatures);
7416 Fprovide (intern_c_string ("make-network-process"), subfeatures);
7418 #endif /* HAVE_SOCKETS */
7420 #if defined (DARWIN_OS)
7421 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
7422 processes. As such, we only change the default value. */
7423 if (initialized)
7425 char *release = get_operating_system_release();
7426 if (!release || !release[0] || (release[0] < MIN_PTY_KERNEL_VERSION
7427 && release[1] == '.')) {
7428 Vprocess_connection_type = Qnil;
7431 #endif
7434 void
7435 syms_of_process ()
7437 Qprocessp = intern_c_string ("processp");
7438 staticpro (&Qprocessp);
7439 Qrun = intern_c_string ("run");
7440 staticpro (&Qrun);
7441 Qstop = intern_c_string ("stop");
7442 staticpro (&Qstop);
7443 Qsignal = intern_c_string ("signal");
7444 staticpro (&Qsignal);
7446 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
7447 here again.
7449 Qexit = intern_c_string ("exit");
7450 staticpro (&Qexit); */
7452 Qopen = intern_c_string ("open");
7453 staticpro (&Qopen);
7454 Qclosed = intern_c_string ("closed");
7455 staticpro (&Qclosed);
7456 Qconnect = intern_c_string ("connect");
7457 staticpro (&Qconnect);
7458 Qfailed = intern_c_string ("failed");
7459 staticpro (&Qfailed);
7460 Qlisten = intern_c_string ("listen");
7461 staticpro (&Qlisten);
7462 Qlocal = intern_c_string ("local");
7463 staticpro (&Qlocal);
7464 Qipv4 = intern_c_string ("ipv4");
7465 staticpro (&Qipv4);
7466 #ifdef AF_INET6
7467 Qipv6 = intern_c_string ("ipv6");
7468 staticpro (&Qipv6);
7469 #endif
7470 Qdatagram = intern_c_string ("datagram");
7471 staticpro (&Qdatagram);
7472 Qseqpacket = intern_c_string ("seqpacket");
7473 staticpro (&Qseqpacket);
7475 QCport = intern_c_string (":port");
7476 staticpro (&QCport);
7477 QCspeed = intern_c_string (":speed");
7478 staticpro (&QCspeed);
7479 QCprocess = intern_c_string (":process");
7480 staticpro (&QCprocess);
7482 QCbytesize = intern_c_string (":bytesize");
7483 staticpro (&QCbytesize);
7484 QCstopbits = intern_c_string (":stopbits");
7485 staticpro (&QCstopbits);
7486 QCparity = intern_c_string (":parity");
7487 staticpro (&QCparity);
7488 Qodd = intern_c_string ("odd");
7489 staticpro (&Qodd);
7490 Qeven = intern_c_string ("even");
7491 staticpro (&Qeven);
7492 QCflowcontrol = intern_c_string (":flowcontrol");
7493 staticpro (&QCflowcontrol);
7494 Qhw = intern_c_string ("hw");
7495 staticpro (&Qhw);
7496 Qsw = intern_c_string ("sw");
7497 staticpro (&Qsw);
7498 QCsummary = intern_c_string (":summary");
7499 staticpro (&QCsummary);
7501 Qreal = intern_c_string ("real");
7502 staticpro (&Qreal);
7503 Qnetwork = intern_c_string ("network");
7504 staticpro (&Qnetwork);
7505 Qserial = intern_c_string ("serial");
7506 staticpro (&Qserial);
7508 QCname = intern_c_string (":name");
7509 staticpro (&QCname);
7510 QCbuffer = intern_c_string (":buffer");
7511 staticpro (&QCbuffer);
7512 QChost = intern_c_string (":host");
7513 staticpro (&QChost);
7514 QCservice = intern_c_string (":service");
7515 staticpro (&QCservice);
7516 QCtype = intern_c_string (":type");
7517 staticpro (&QCtype);
7518 QClocal = intern_c_string (":local");
7519 staticpro (&QClocal);
7520 QCremote = intern_c_string (":remote");
7521 staticpro (&QCremote);
7522 QCcoding = intern_c_string (":coding");
7523 staticpro (&QCcoding);
7524 QCserver = intern_c_string (":server");
7525 staticpro (&QCserver);
7526 QCnowait = intern_c_string (":nowait");
7527 staticpro (&QCnowait);
7528 QCsentinel = intern_c_string (":sentinel");
7529 staticpro (&QCsentinel);
7530 QClog = intern_c_string (":log");
7531 staticpro (&QClog);
7532 QCnoquery = intern_c_string (":noquery");
7533 staticpro (&QCnoquery);
7534 QCstop = intern_c_string (":stop");
7535 staticpro (&QCstop);
7536 QCoptions = intern_c_string (":options");
7537 staticpro (&QCoptions);
7538 QCplist = intern_c_string (":plist");
7539 staticpro (&QCplist);
7541 Qlast_nonmenu_event = intern_c_string ("last-nonmenu-event");
7542 staticpro (&Qlast_nonmenu_event);
7544 staticpro (&Vprocess_alist);
7545 #ifdef SIGCHLD
7546 staticpro (&deleted_pid_list);
7547 #endif
7549 Qeuid = intern_c_string ("euid");
7550 staticpro (&Qeuid);
7551 Qegid = intern_c_string ("egid");
7552 staticpro (&Qegid);
7553 Quser = intern_c_string ("user");
7554 staticpro (&Quser);
7555 Qgroup = intern_c_string ("group");
7556 staticpro (&Qgroup);
7557 Qcomm = intern_c_string ("comm");
7558 staticpro (&Qcomm);
7559 Qstate = intern_c_string ("state");
7560 staticpro (&Qstate);
7561 Qppid = intern_c_string ("ppid");
7562 staticpro (&Qppid);
7563 Qpgrp = intern_c_string ("pgrp");
7564 staticpro (&Qpgrp);
7565 Qsess = intern_c_string ("sess");
7566 staticpro (&Qsess);
7567 Qttname = intern_c_string ("ttname");
7568 staticpro (&Qttname);
7569 Qtpgid = intern_c_string ("tpgid");
7570 staticpro (&Qtpgid);
7571 Qminflt = intern_c_string ("minflt");
7572 staticpro (&Qminflt);
7573 Qmajflt = intern_c_string ("majflt");
7574 staticpro (&Qmajflt);
7575 Qcminflt = intern_c_string ("cminflt");
7576 staticpro (&Qcminflt);
7577 Qcmajflt = intern_c_string ("cmajflt");
7578 staticpro (&Qcmajflt);
7579 Qutime = intern_c_string ("utime");
7580 staticpro (&Qutime);
7581 Qstime = intern_c_string ("stime");
7582 staticpro (&Qstime);
7583 Qtime = intern_c_string ("time");
7584 staticpro (&Qtime);
7585 Qcutime = intern_c_string ("cutime");
7586 staticpro (&Qcutime);
7587 Qcstime = intern_c_string ("cstime");
7588 staticpro (&Qcstime);
7589 Qctime = intern_c_string ("ctime");
7590 staticpro (&Qctime);
7591 Qpri = intern_c_string ("pri");
7592 staticpro (&Qpri);
7593 Qnice = intern_c_string ("nice");
7594 staticpro (&Qnice);
7595 Qthcount = intern_c_string ("thcount");
7596 staticpro (&Qthcount);
7597 Qstart = intern_c_string ("start");
7598 staticpro (&Qstart);
7599 Qvsize = intern_c_string ("vsize");
7600 staticpro (&Qvsize);
7601 Qrss = intern_c_string ("rss");
7602 staticpro (&Qrss);
7603 Qetime = intern_c_string ("etime");
7604 staticpro (&Qetime);
7605 Qpcpu = intern_c_string ("pcpu");
7606 staticpro (&Qpcpu);
7607 Qpmem = intern_c_string ("pmem");
7608 staticpro (&Qpmem);
7609 Qargs = intern_c_string ("args");
7610 staticpro (&Qargs);
7612 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
7613 doc: /* *Non-nil means delete processes immediately when they exit.
7614 A value of nil means don't delete them until `list-processes' is run. */);
7616 delete_exited_processes = 1;
7618 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type,
7619 doc: /* Control type of device used to communicate with subprocesses.
7620 Values are nil to use a pipe, or t or `pty' to use a pty.
7621 The value has no effect if the system has no ptys or if all ptys are busy:
7622 then a pipe is used in any case.
7623 The value takes effect when `start-process' is called. */);
7624 Vprocess_connection_type = Qt;
7626 #ifdef ADAPTIVE_READ_BUFFERING
7627 DEFVAR_LISP ("process-adaptive-read-buffering", &Vprocess_adaptive_read_buffering,
7628 doc: /* If non-nil, improve receive buffering by delaying after short reads.
7629 On some systems, when Emacs reads the output from a subprocess, the output data
7630 is read in very small blocks, potentially resulting in very poor performance.
7631 This behavior can be remedied to some extent by setting this variable to a
7632 non-nil value, as it will automatically delay reading from such processes, to
7633 allow them to produce more output before Emacs tries to read it.
7634 If the value is t, the delay is reset after each write to the process; any other
7635 non-nil value means that the delay is not reset on write.
7636 The variable takes effect when `start-process' is called. */);
7637 Vprocess_adaptive_read_buffering = Qt;
7638 #endif
7640 defsubr (&Sprocessp);
7641 defsubr (&Sget_process);
7642 defsubr (&Sget_buffer_process);
7643 defsubr (&Sdelete_process);
7644 defsubr (&Sprocess_status);
7645 defsubr (&Sprocess_exit_status);
7646 defsubr (&Sprocess_id);
7647 defsubr (&Sprocess_name);
7648 defsubr (&Sprocess_tty_name);
7649 defsubr (&Sprocess_command);
7650 defsubr (&Sset_process_buffer);
7651 defsubr (&Sprocess_buffer);
7652 defsubr (&Sprocess_mark);
7653 defsubr (&Sset_process_filter);
7654 defsubr (&Sprocess_filter);
7655 defsubr (&Sset_process_sentinel);
7656 defsubr (&Sprocess_sentinel);
7657 defsubr (&Sset_process_window_size);
7658 defsubr (&Sset_process_inherit_coding_system_flag);
7659 defsubr (&Sprocess_inherit_coding_system_flag);
7660 defsubr (&Sset_process_query_on_exit_flag);
7661 defsubr (&Sprocess_query_on_exit_flag);
7662 defsubr (&Sprocess_contact);
7663 defsubr (&Sprocess_plist);
7664 defsubr (&Sset_process_plist);
7665 defsubr (&Slist_processes);
7666 defsubr (&Sprocess_list);
7667 defsubr (&Sstart_process);
7668 #ifdef HAVE_SERIAL
7669 defsubr (&Sserial_process_configure);
7670 defsubr (&Smake_serial_process);
7671 #endif /* HAVE_SERIAL */
7672 #ifdef HAVE_SOCKETS
7673 defsubr (&Sset_network_process_option);
7674 defsubr (&Smake_network_process);
7675 defsubr (&Sformat_network_address);
7676 #endif /* HAVE_SOCKETS */
7677 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
7678 #ifdef SIOCGIFCONF
7679 defsubr (&Snetwork_interface_list);
7680 #endif
7681 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
7682 defsubr (&Snetwork_interface_info);
7683 #endif
7684 #endif /* HAVE_SOCKETS ... */
7685 #ifdef DATAGRAM_SOCKETS
7686 defsubr (&Sprocess_datagram_address);
7687 defsubr (&Sset_process_datagram_address);
7688 #endif
7689 defsubr (&Saccept_process_output);
7690 defsubr (&Sprocess_send_region);
7691 defsubr (&Sprocess_send_string);
7692 defsubr (&Sinterrupt_process);
7693 defsubr (&Skill_process);
7694 defsubr (&Squit_process);
7695 defsubr (&Sstop_process);
7696 defsubr (&Scontinue_process);
7697 defsubr (&Sprocess_running_child_p);
7698 defsubr (&Sprocess_send_eof);
7699 defsubr (&Ssignal_process);
7700 defsubr (&Swaiting_for_user_input_p);
7701 defsubr (&Sprocess_type);
7702 defsubr (&Sset_process_coding_system);
7703 defsubr (&Sprocess_coding_system);
7704 defsubr (&Sset_process_filter_multibyte);
7705 defsubr (&Sprocess_filter_multibyte_p);
7706 defsubr (&Slist_system_processes);
7707 defsubr (&Sprocess_attributes);
7711 #else /* not subprocesses */
7713 #include <sys/types.h>
7714 #include <errno.h>
7715 #include <sys/stat.h>
7716 #include <stdlib.h>
7717 #include <fcntl.h>
7718 #include <setjmp.h>
7719 #ifdef HAVE_UNISTD_H
7720 #include <unistd.h>
7721 #endif
7723 #include "lisp.h"
7724 #include "systime.h"
7725 #include "character.h"
7726 #include "coding.h"
7727 #include "termopts.h"
7728 #include "sysselect.h"
7730 extern int frame_garbaged;
7732 extern EMACS_TIME timer_check ();
7733 extern int timers_run;
7735 Lisp_Object QCtype, QCname;
7737 Lisp_Object Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname, Qtpgid;
7738 Lisp_Object Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcstime;
7739 Lisp_Object Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs;
7740 Lisp_Object Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtime, Qctime;
7742 /* As described above, except assuming that there are no subprocesses:
7744 Wait for timeout to elapse and/or keyboard input to be available.
7746 time_limit is:
7747 timeout in seconds, or
7748 zero for no limit, or
7749 -1 means gobble data immediately available but don't wait for any.
7751 read_kbd is a Lisp_Object:
7752 0 to ignore keyboard input, or
7753 1 to return when input is available, or
7754 -1 means caller will actually read the input, so don't throw to
7755 the quit handler.
7757 see full version for other parameters. We know that wait_proc will
7758 always be NULL, since `subprocesses' isn't defined.
7760 do_display != 0 means redisplay should be done to show subprocess
7761 output that arrives.
7763 Return true if we received input from any process. */
7766 wait_reading_process_output (time_limit, microsecs, read_kbd, do_display,
7767 wait_for_cell, wait_proc, just_wait_proc)
7768 int time_limit, microsecs, read_kbd, do_display;
7769 Lisp_Object wait_for_cell;
7770 struct Lisp_Process *wait_proc;
7771 int just_wait_proc;
7773 register int nfds;
7774 EMACS_TIME end_time, timeout;
7775 SELECT_TYPE waitchannels;
7776 int xerrno;
7778 /* What does time_limit really mean? */
7779 if (time_limit || microsecs)
7781 EMACS_GET_TIME (end_time);
7782 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
7783 EMACS_ADD_TIME (end_time, end_time, timeout);
7786 /* Turn off periodic alarms (in case they are in use)
7787 and then turn off any other atimers,
7788 because the select emulator uses alarms. */
7789 stop_polling ();
7790 turn_on_atimers (0);
7792 while (1)
7794 int timeout_reduced_for_timers = 0;
7796 /* If calling from keyboard input, do not quit
7797 since we want to return C-g as an input character.
7798 Otherwise, do pending quit if requested. */
7799 if (read_kbd >= 0)
7800 QUIT;
7802 /* Exit now if the cell we're waiting for became non-nil. */
7803 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
7804 break;
7806 /* Compute time from now till when time limit is up */
7807 /* Exit if already run out */
7808 if (time_limit == -1)
7810 /* -1 specified for timeout means
7811 gobble output available now
7812 but don't wait at all. */
7814 EMACS_SET_SECS_USECS (timeout, 0, 0);
7816 else if (time_limit || microsecs)
7818 EMACS_GET_TIME (timeout);
7819 EMACS_SUB_TIME (timeout, end_time, timeout);
7820 if (EMACS_TIME_NEG_P (timeout))
7821 break;
7823 else
7825 EMACS_SET_SECS_USECS (timeout, 100000, 0);
7828 /* If our caller will not immediately handle keyboard events,
7829 run timer events directly.
7830 (Callers that will immediately read keyboard events
7831 call timer_delay on their own.) */
7832 if (NILP (wait_for_cell))
7834 EMACS_TIME timer_delay;
7838 int old_timers_run = timers_run;
7839 timer_delay = timer_check (1);
7840 if (timers_run != old_timers_run && do_display)
7841 /* We must retry, since a timer may have requeued itself
7842 and that could alter the time delay. */
7843 redisplay_preserve_echo_area (14);
7844 else
7845 break;
7847 while (!detect_input_pending ());
7849 /* If there is unread keyboard input, also return. */
7850 if (read_kbd != 0
7851 && requeued_events_pending_p ())
7852 break;
7854 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
7856 EMACS_TIME difference;
7857 EMACS_SUB_TIME (difference, timer_delay, timeout);
7858 if (EMACS_TIME_NEG_P (difference))
7860 timeout = timer_delay;
7861 timeout_reduced_for_timers = 1;
7866 /* Cause C-g and alarm signals to take immediate action,
7867 and cause input available signals to zero out timeout. */
7868 if (read_kbd < 0)
7869 set_waiting_for_input (&timeout);
7871 /* Wait till there is something to do. */
7873 if (! read_kbd && NILP (wait_for_cell))
7874 FD_ZERO (&waitchannels);
7875 else
7876 FD_SET (0, &waitchannels);
7878 /* If a frame has been newly mapped and needs updating,
7879 reprocess its display stuff. */
7880 if (frame_garbaged && do_display)
7882 clear_waiting_for_input ();
7883 redisplay_preserve_echo_area (15);
7884 if (read_kbd < 0)
7885 set_waiting_for_input (&timeout);
7888 if (read_kbd && detect_input_pending ())
7890 nfds = 0;
7891 FD_ZERO (&waitchannels);
7893 else
7894 nfds = select (1, &waitchannels, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
7895 &timeout);
7897 xerrno = errno;
7899 /* Make C-g and alarm signals set flags again */
7900 clear_waiting_for_input ();
7902 /* If we woke up due to SIGWINCH, actually change size now. */
7903 do_pending_window_change (0);
7905 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
7906 /* We waited the full specified time, so return now. */
7907 break;
7909 if (nfds == -1)
7911 /* If the system call was interrupted, then go around the
7912 loop again. */
7913 if (xerrno == EINTR)
7914 FD_ZERO (&waitchannels);
7915 else
7916 error ("select error: %s", emacs_strerror (xerrno));
7918 #ifdef SOLARIS2
7919 else if (nfds > 0 && (waitchannels & 1) && interrupt_input)
7920 /* System sometimes fails to deliver SIGIO. */
7921 kill (getpid (), SIGIO);
7922 #endif
7923 #ifdef SIGIO
7924 if (read_kbd && interrupt_input && (waitchannels & 1))
7925 kill (getpid (), SIGIO);
7926 #endif
7928 /* Check for keyboard input */
7930 if (read_kbd
7931 && detect_input_pending_run_timers (do_display))
7933 swallow_events (do_display);
7934 if (detect_input_pending_run_timers (do_display))
7935 break;
7938 /* If there is unread keyboard input, also return. */
7939 if (read_kbd
7940 && requeued_events_pending_p ())
7941 break;
7943 /* If wait_for_cell. check for keyboard input
7944 but don't run any timers.
7945 ??? (It seems wrong to me to check for keyboard
7946 input at all when wait_for_cell, but the code
7947 has been this way since July 1994.
7948 Try changing this after version 19.31.) */
7949 if (! NILP (wait_for_cell)
7950 && detect_input_pending ())
7952 swallow_events (do_display);
7953 if (detect_input_pending ())
7954 break;
7957 /* Exit now if the cell we're waiting for became non-nil. */
7958 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
7959 break;
7962 start_polling ();
7964 return 0;
7968 /* Don't confuse make-docfile by having two doc strings for this function.
7969 make-docfile does not pay attention to #if, for good reason! */
7970 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
7972 (name)
7973 register Lisp_Object name;
7975 return Qnil;
7978 /* Don't confuse make-docfile by having two doc strings for this function.
7979 make-docfile does not pay attention to #if, for good reason! */
7980 DEFUN ("process-inherit-coding-system-flag",
7981 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
7982 1, 1, 0,
7984 (process)
7985 register Lisp_Object process;
7987 /* Ignore the argument and return the value of
7988 inherit-process-coding-system. */
7989 return inherit_process_coding_system ? Qt : Qnil;
7992 /* Kill all processes associated with `buffer'.
7993 If `buffer' is nil, kill all processes.
7994 Since we have no subprocesses, this does nothing. */
7996 void
7997 kill_buffer_processes (buffer)
7998 Lisp_Object buffer;
8002 DEFUN ("list-system-processes", Flist_system_processes, Slist_system_processes,
8003 0, 0, 0,
8004 doc: /* Return a list of numerical process IDs of all running processes.
8005 If this functionality is unsupported, return nil.
8007 See `process-attributes' for getting attributes of a process given its ID. */)
8010 return list_system_processes ();
8013 DEFUN ("process-attributes", Fprocess_attributes,
8014 Sprocess_attributes, 1, 1, 0,
8015 doc: /* Return attributes of the process given by its PID, a number.
8017 Value is an alist where each element is a cons cell of the form
8019 \(KEY . VALUE)
8021 If this functionality is unsupported, the value is nil.
8023 See `list-system-processes' for getting a list of all process IDs.
8025 The KEYs of the attributes that this function may return are listed
8026 below, together with the type of the associated VALUE (in parentheses).
8027 Not all platforms support all of these attributes; unsupported
8028 attributes will not appear in the returned alist.
8029 Unless explicitly indicated otherwise, numbers can have either
8030 integer or floating point values.
8032 euid -- Effective user User ID of the process (number)
8033 user -- User name corresponding to euid (string)
8034 egid -- Effective user Group ID of the process (number)
8035 group -- Group name corresponding to egid (string)
8036 comm -- Command name (executable name only) (string)
8037 state -- Process state code, such as "S", "R", or "T" (string)
8038 ppid -- Parent process ID (number)
8039 pgrp -- Process group ID (number)
8040 sess -- Session ID, i.e. process ID of session leader (number)
8041 ttname -- Controlling tty name (string)
8042 tpgid -- ID of foreground process group on the process's tty (number)
8043 minflt -- number of minor page faults (number)
8044 majflt -- number of major page faults (number)
8045 cminflt -- cumulative number of minor page faults (number)
8046 cmajflt -- cumulative number of major page faults (number)
8047 utime -- user time used by the process, in the (HIGH LOW USEC) format
8048 stime -- system time used by the process, in the (HIGH LOW USEC) format
8049 time -- sum of utime and stime, in the (HIGH LOW USEC) format
8050 cutime -- user time used by the process and its children, (HIGH LOW USEC)
8051 cstime -- system time used by the process and its children, (HIGH LOW USEC)
8052 ctime -- sum of cutime and cstime, in the (HIGH LOW USEC) format
8053 pri -- priority of the process (number)
8054 nice -- nice value of the process (number)
8055 thcount -- process thread count (number)
8056 start -- time the process started, in the (HIGH LOW USEC) format
8057 vsize -- virtual memory size of the process in KB's (number)
8058 rss -- resident set size of the process in KB's (number)
8059 etime -- elapsed time the process is running, in (HIGH LOW USEC) format
8060 pcpu -- percents of CPU time used by the process (floating-point number)
8061 pmem -- percents of total physical memory used by process's resident set
8062 (floating-point number)
8063 args -- command line which invoked the process (string). */)
8064 (pid)
8066 Lisp_Object pid;
8068 return system_process_attributes (pid);
8071 void
8072 init_process ()
8074 kbd_is_on_hold = 0;
8077 void
8078 syms_of_process ()
8080 QCtype = intern_c_string (":type");
8081 staticpro (&QCtype);
8082 QCname = intern_c_string (":name");
8083 staticpro (&QCname);
8084 QCtype = intern_c_string (":type");
8085 staticpro (&QCtype);
8086 QCname = intern_c_string (":name");
8087 staticpro (&QCname);
8088 Qeuid = intern_c_string ("euid");
8089 staticpro (&Qeuid);
8090 Qegid = intern_c_string ("egid");
8091 staticpro (&Qegid);
8092 Quser = intern_c_string ("user");
8093 staticpro (&Quser);
8094 Qgroup = intern_c_string ("group");
8095 staticpro (&Qgroup);
8096 Qcomm = intern_c_string ("comm");
8097 staticpro (&Qcomm);
8098 Qstate = intern_c_string ("state");
8099 staticpro (&Qstate);
8100 Qppid = intern_c_string ("ppid");
8101 staticpro (&Qppid);
8102 Qpgrp = intern_c_string ("pgrp");
8103 staticpro (&Qpgrp);
8104 Qsess = intern_c_string ("sess");
8105 staticpro (&Qsess);
8106 Qttname = intern_c_string ("ttname");
8107 staticpro (&Qttname);
8108 Qtpgid = intern_c_string ("tpgid");
8109 staticpro (&Qtpgid);
8110 Qminflt = intern_c_string ("minflt");
8111 staticpro (&Qminflt);
8112 Qmajflt = intern_c_string ("majflt");
8113 staticpro (&Qmajflt);
8114 Qcminflt = intern_c_string ("cminflt");
8115 staticpro (&Qcminflt);
8116 Qcmajflt = intern_c_string ("cmajflt");
8117 staticpro (&Qcmajflt);
8118 Qutime = intern_c_string ("utime");
8119 staticpro (&Qutime);
8120 Qstime = intern_c_string ("stime");
8121 staticpro (&Qstime);
8122 Qtime = intern_c_string ("time");
8123 staticpro (&Qtime);
8124 Qcutime = intern_c_string ("cutime");
8125 staticpro (&Qcutime);
8126 Qcstime = intern_c_string ("cstime");
8127 staticpro (&Qcstime);
8128 Qctime = intern_c_string ("ctime");
8129 staticpro (&Qctime);
8130 Qpri = intern_c_string ("pri");
8131 staticpro (&Qpri);
8132 Qnice = intern_c_string ("nice");
8133 staticpro (&Qnice);
8134 Qthcount = intern_c_string ("thcount");
8135 staticpro (&Qthcount);
8136 Qstart = intern_c_string ("start");
8137 staticpro (&Qstart);
8138 Qvsize = intern_c_string ("vsize");
8139 staticpro (&Qvsize);
8140 Qrss = intern_c_string ("rss");
8141 staticpro (&Qrss);
8142 Qetime = intern_c_string ("etime");
8143 staticpro (&Qetime);
8144 Qpcpu = intern_c_string ("pcpu");
8145 staticpro (&Qpcpu);
8146 Qpmem = intern_c_string ("pmem");
8147 staticpro (&Qpmem);
8148 Qargs = intern_c_string ("args");
8149 staticpro (&Qargs);
8151 defsubr (&Sget_buffer_process);
8152 defsubr (&Sprocess_inherit_coding_system_flag);
8153 defsubr (&Slist_system_processes);
8154 defsubr (&Sprocess_attributes);
8158 #endif /* not subprocesses */
8160 /* arch-tag: 3706c011-7b9a-4117-bd4f-59e7f701a4c4
8161 (do not change this comment) */