Merge from trunk.
[emacs.git] / src / process.c
blobb4fca389d0dfee8822dfa9116a6b567a206cf278
1 /* Asynchronous subprocess control for GNU Emacs.
3 Copyright (C) 1985-1988, 1993-1996, 1998-1999, 2001-2012
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
22 #include <config.h>
23 #include <signal.h>
24 #include <stdio.h>
25 #include <errno.h>
26 #include <setjmp.h>
27 #include <sys/types.h> /* Some typedefs are used in sys/file.h. */
28 #include <sys/file.h>
29 #include <sys/stat.h>
30 #include <setjmp.h>
32 #include <unistd.h>
33 #include <fcntl.h>
35 #include "lisp.h"
37 /* Only MS-DOS does not define `subprocesses'. */
38 #ifdef subprocesses
40 #include <sys/socket.h>
41 #include <netdb.h>
42 #include <netinet/in.h>
43 #include <arpa/inet.h>
45 /* Are local (unix) sockets supported? */
46 #if defined (HAVE_SYS_UN_H)
47 #if !defined (AF_LOCAL) && defined (AF_UNIX)
48 #define AF_LOCAL AF_UNIX
49 #endif
50 #ifdef AF_LOCAL
51 #define HAVE_LOCAL_SOCKETS
52 #include <sys/un.h>
53 #endif
54 #endif
56 #include <sys/ioctl.h>
57 #if defined (HAVE_NET_IF_H)
58 #include <net/if.h>
59 #endif /* HAVE_NET_IF_H */
61 #if defined (HAVE_IFADDRS_H)
62 /* Must be after net/if.h */
63 #include <ifaddrs.h>
65 /* We only use structs from this header when we use getifaddrs. */
66 #if defined (HAVE_NET_IF_DL_H)
67 #include <net/if_dl.h>
68 #endif
70 #endif
72 #ifdef NEED_BSDTTY
73 #include <bsdtty.h>
74 #endif
76 #ifdef HAVE_RES_INIT
77 #include <netinet/in.h>
78 #include <arpa/nameser.h>
79 #include <resolv.h>
80 #endif
82 #ifdef HAVE_UTIL_H
83 #include <util.h>
84 #endif
86 #ifdef HAVE_PTY_H
87 #include <pty.h>
88 #endif
90 #endif /* subprocesses */
92 #include "systime.h"
93 #include "systty.h"
95 #include "window.h"
96 #include "buffer.h"
97 #include "character.h"
98 #include "coding.h"
99 #include "process.h"
100 #include "frame.h"
101 #include "termhooks.h"
102 #include "termopts.h"
103 #include "commands.h"
104 #include "keyboard.h"
105 #include "blockinput.h"
106 #include "dispextern.h"
107 #include "composite.h"
108 #include "atimer.h"
109 #include "sysselect.h"
110 #include "syssignal.h"
111 #include "syswait.h"
112 #ifdef HAVE_GNUTLS
113 #include "gnutls.h"
114 #endif
116 #if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
117 #include "xgselect.h"
118 #endif
119 #ifdef HAVE_NS
120 #include "nsterm.h"
121 #endif
123 Lisp_Object Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname, Qtpgid;
124 Lisp_Object Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcstime;
125 Lisp_Object Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs;
126 Lisp_Object Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtime, Qctime;
127 Lisp_Object QCname, QCtype;
129 /* Non-zero if keyboard input is on hold, zero otherwise. */
131 static int kbd_is_on_hold;
133 /* Nonzero means don't run process sentinels. This is used
134 when exiting. */
135 int inhibit_sentinels;
137 #ifdef subprocesses
139 Lisp_Object Qprocessp;
140 static Lisp_Object Qrun, Qstop, Qsignal;
141 static Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
142 Lisp_Object Qlocal;
143 static Lisp_Object Qipv4, Qdatagram, Qseqpacket;
144 static Lisp_Object Qreal, Qnetwork, Qserial;
145 #ifdef AF_INET6
146 static Lisp_Object Qipv6;
147 #endif
148 static Lisp_Object QCport, QCprocess;
149 Lisp_Object QCspeed;
150 Lisp_Object QCbytesize, QCstopbits, QCparity, Qodd, Qeven;
151 Lisp_Object QCflowcontrol, Qhw, Qsw, QCsummary;
152 static Lisp_Object QCbuffer, QChost, QCservice;
153 static Lisp_Object QClocal, QCremote, QCcoding;
154 static Lisp_Object QCserver, QCnowait, QCnoquery, QCstop;
155 static Lisp_Object QCsentinel, QClog, QCoptions, QCplist;
156 static Lisp_Object Qlast_nonmenu_event;
157 /* QCfamily is declared and initialized in xfaces.c,
158 QCfilter in keyboard.c. */
159 extern Lisp_Object QCfamily, QCfilter;
161 /* Qexit is declared and initialized in eval.c. */
163 /* QCfamily is defined in xfaces.c. */
164 extern Lisp_Object QCfamily;
165 /* QCfilter is defined in keyboard.c. */
166 extern Lisp_Object QCfilter;
168 #define NETCONN_P(p) (EQ (XPROCESS (p)->type, Qnetwork))
169 #define NETCONN1_P(p) (EQ ((p)->type, Qnetwork))
170 #define SERIALCONN_P(p) (EQ (XPROCESS (p)->type, Qserial))
171 #define SERIALCONN1_P(p) (EQ ((p)->type, Qserial))
173 #ifndef HAVE_H_ERRNO
174 extern int h_errno;
175 #endif
177 /* Number of events of change of status of a process. */
178 static int process_tick;
179 /* Number of events for which the user or sentinel has been notified. */
180 static int update_tick;
182 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
184 /* Only W32 has this, it really means that select can't take write mask. */
185 #ifdef BROKEN_NON_BLOCKING_CONNECT
186 #undef NON_BLOCKING_CONNECT
187 #define SELECT_CANT_DO_WRITE_MASK
188 #else
189 #ifndef NON_BLOCKING_CONNECT
190 #ifdef HAVE_SELECT
191 #if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX)
192 #if defined (O_NONBLOCK) || defined (O_NDELAY)
193 #if defined (EWOULDBLOCK) || defined (EINPROGRESS)
194 #define NON_BLOCKING_CONNECT
195 #endif /* EWOULDBLOCK || EINPROGRESS */
196 #endif /* O_NONBLOCK || O_NDELAY */
197 #endif /* HAVE_GETPEERNAME || GNU_LINUX */
198 #endif /* HAVE_SELECT */
199 #endif /* NON_BLOCKING_CONNECT */
200 #endif /* BROKEN_NON_BLOCKING_CONNECT */
202 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on
203 this system. We need to read full packets, so we need a
204 "non-destructive" select. So we require either native select,
205 or emulation of select using FIONREAD. */
207 #ifdef BROKEN_DATAGRAM_SOCKETS
208 #undef DATAGRAM_SOCKETS
209 #else
210 #ifndef DATAGRAM_SOCKETS
211 #if defined (HAVE_SELECT) || defined (FIONREAD)
212 #if defined (HAVE_SENDTO) && defined (HAVE_RECVFROM) && defined (EMSGSIZE)
213 #define DATAGRAM_SOCKETS
214 #endif /* HAVE_SENDTO && HAVE_RECVFROM && EMSGSIZE */
215 #endif /* HAVE_SELECT || FIONREAD */
216 #endif /* DATAGRAM_SOCKETS */
217 #endif /* BROKEN_DATAGRAM_SOCKETS */
219 #if defined HAVE_LOCAL_SOCKETS && defined DATAGRAM_SOCKETS
220 # define HAVE_SEQPACKET
221 #endif
223 #if !defined (ADAPTIVE_READ_BUFFERING) && !defined (NO_ADAPTIVE_READ_BUFFERING)
224 #ifdef EMACS_HAS_USECS
225 #define ADAPTIVE_READ_BUFFERING
226 #endif
227 #endif
229 #ifdef ADAPTIVE_READ_BUFFERING
230 #define READ_OUTPUT_DELAY_INCREMENT 10000
231 #define READ_OUTPUT_DELAY_MAX (READ_OUTPUT_DELAY_INCREMENT * 5)
232 #define READ_OUTPUT_DELAY_MAX_MAX (READ_OUTPUT_DELAY_INCREMENT * 7)
234 /* Number of processes which have a non-zero read_output_delay,
235 and therefore might be delayed for adaptive read buffering. */
237 static int process_output_delay_count;
239 /* Non-zero if any process has non-nil read_output_skip. */
241 static int process_output_skip;
243 #else
244 #define process_output_delay_count 0
245 #endif
247 static Lisp_Object Fget_process (Lisp_Object);
248 static void create_process (Lisp_Object, char **, Lisp_Object);
249 #ifdef SIGIO
250 static int keyboard_bit_set (SELECT_TYPE *);
251 #endif
252 static void deactivate_process (Lisp_Object);
253 static void status_notify (struct Lisp_Process *);
254 static int read_process_output (Lisp_Object, int);
255 static void create_pty (Lisp_Object);
257 /* If we support a window system, turn on the code to poll periodically
258 to detect C-g. It isn't actually used when doing interrupt input. */
259 #if defined (HAVE_WINDOW_SYSTEM) && !defined (USE_ASYNC_EVENTS)
260 #define POLL_FOR_INPUT
261 #endif
263 static Lisp_Object get_process (register Lisp_Object name);
264 static void exec_sentinel (Lisp_Object proc, Lisp_Object reason);
266 /* Mask of bits indicating the descriptors that we wait for input on. */
268 static SELECT_TYPE input_wait_mask;
270 /* Mask that excludes keyboard input descriptor(s). */
272 static SELECT_TYPE non_keyboard_wait_mask;
274 /* Mask that excludes process input descriptor(s). */
276 static SELECT_TYPE non_process_wait_mask;
278 /* Mask for selecting for write. */
280 static SELECT_TYPE write_mask;
282 #ifdef NON_BLOCKING_CONNECT
283 /* Mask of bits indicating the descriptors that we wait for connect to
284 complete on. Once they complete, they are removed from this mask
285 and added to the input_wait_mask and non_keyboard_wait_mask. */
287 static SELECT_TYPE connect_wait_mask;
289 /* Number of bits set in connect_wait_mask. */
290 static int num_pending_connects;
291 #endif /* NON_BLOCKING_CONNECT */
293 /* The largest descriptor currently in use for a process object. */
294 static int max_process_desc;
296 /* The largest descriptor currently in use for input. */
297 static int max_input_desc;
299 /* Indexed by descriptor, gives the process (if any) for that descriptor */
300 static Lisp_Object chan_process[MAXDESC];
302 /* Alist of elements (NAME . PROCESS) */
303 static Lisp_Object Vprocess_alist;
305 /* Buffered-ahead input char from process, indexed by channel.
306 -1 means empty (no char is buffered).
307 Used on sys V where the only way to tell if there is any
308 output from the process is to read at least one char.
309 Always -1 on systems that support FIONREAD. */
311 static int proc_buffered_char[MAXDESC];
313 /* Table of `struct coding-system' for each process. */
314 static struct coding_system *proc_decode_coding_system[MAXDESC];
315 static struct coding_system *proc_encode_coding_system[MAXDESC];
317 #ifdef DATAGRAM_SOCKETS
318 /* Table of `partner address' for datagram sockets. */
319 static struct sockaddr_and_len {
320 struct sockaddr *sa;
321 int len;
322 } datagram_address[MAXDESC];
323 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
324 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XPROCESS (proc)->infd].sa != 0)
325 #else
326 #define DATAGRAM_CHAN_P(chan) (0)
327 #define DATAGRAM_CONN_P(proc) (0)
328 #endif
330 /* Maximum number of bytes to send to a pty without an eof. */
331 static int pty_max_bytes;
335 static struct fd_callback_data
337 fd_callback func;
338 void *data;
339 #define FOR_READ 1
340 #define FOR_WRITE 2
341 int condition; /* mask of the defines above. */
342 } fd_callback_info[MAXDESC];
345 /* Add a file descriptor FD to be monitored for when read is possible.
346 When read is possible, call FUNC with argument DATA. */
348 void
349 add_read_fd (int fd, fd_callback func, void *data)
351 xassert (fd < MAXDESC);
352 add_keyboard_wait_descriptor (fd);
354 fd_callback_info[fd].func = func;
355 fd_callback_info[fd].data = data;
356 fd_callback_info[fd].condition |= FOR_READ;
359 /* Stop monitoring file descriptor FD for when read is possible. */
361 void
362 delete_read_fd (int fd)
364 xassert (fd < MAXDESC);
365 delete_keyboard_wait_descriptor (fd);
367 fd_callback_info[fd].condition &= ~FOR_READ;
368 if (fd_callback_info[fd].condition == 0)
370 fd_callback_info[fd].func = 0;
371 fd_callback_info[fd].data = 0;
375 /* Add a file descriptor FD to be monitored for when write is possible.
376 When write is possible, call FUNC with argument DATA. */
378 void
379 add_write_fd (int fd, fd_callback func, void *data)
381 xassert (fd < MAXDESC);
382 FD_SET (fd, &write_mask);
383 if (fd > max_input_desc)
384 max_input_desc = fd;
386 fd_callback_info[fd].func = func;
387 fd_callback_info[fd].data = data;
388 fd_callback_info[fd].condition |= FOR_WRITE;
391 /* Stop monitoring file descriptor FD for when write is possible. */
393 void
394 delete_write_fd (int fd)
396 int lim = max_input_desc;
398 xassert (fd < MAXDESC);
399 FD_CLR (fd, &write_mask);
400 fd_callback_info[fd].condition &= ~FOR_WRITE;
401 if (fd_callback_info[fd].condition == 0)
403 fd_callback_info[fd].func = 0;
404 fd_callback_info[fd].data = 0;
406 if (fd == max_input_desc)
407 for (fd = lim; fd >= 0; fd--)
408 if (FD_ISSET (fd, &input_wait_mask) || FD_ISSET (fd, &write_mask))
410 max_input_desc = fd;
411 break;
418 /* Compute the Lisp form of the process status, p->status, from
419 the numeric status that was returned by `wait'. */
421 static Lisp_Object status_convert (int);
423 static void
424 update_status (struct Lisp_Process *p)
426 eassert (p->raw_status_new);
427 p->status = status_convert (p->raw_status);
428 p->raw_status_new = 0;
431 /* Convert a process status word in Unix format to
432 the list that we use internally. */
434 static Lisp_Object
435 status_convert (int w)
437 if (WIFSTOPPED (w))
438 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
439 else if (WIFEXITED (w))
440 return Fcons (Qexit, Fcons (make_number (WRETCODE (w)),
441 WCOREDUMP (w) ? Qt : Qnil));
442 else if (WIFSIGNALED (w))
443 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
444 WCOREDUMP (w) ? Qt : Qnil));
445 else
446 return Qrun;
449 /* Given a status-list, extract the three pieces of information
450 and store them individually through the three pointers. */
452 static void
453 decode_status (Lisp_Object l, Lisp_Object *symbol, int *code, int *coredump)
455 Lisp_Object tem;
457 if (SYMBOLP (l))
459 *symbol = l;
460 *code = 0;
461 *coredump = 0;
463 else
465 *symbol = XCAR (l);
466 tem = XCDR (l);
467 *code = XFASTINT (XCAR (tem));
468 tem = XCDR (tem);
469 *coredump = !NILP (tem);
473 /* Return a string describing a process status list. */
475 static Lisp_Object
476 status_message (struct Lisp_Process *p)
478 Lisp_Object status = p->status;
479 Lisp_Object symbol;
480 int code, coredump;
481 Lisp_Object string, string2;
483 decode_status (status, &symbol, &code, &coredump);
485 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
487 char *signame;
488 synchronize_system_messages_locale ();
489 signame = strsignal (code);
490 if (signame == 0)
491 string = build_string ("unknown");
492 else
494 int c1, c2;
496 string = make_unibyte_string (signame, strlen (signame));
497 if (! NILP (Vlocale_coding_system))
498 string = (code_convert_string_norecord
499 (string, Vlocale_coding_system, 0));
500 c1 = STRING_CHAR (SDATA (string));
501 c2 = downcase (c1);
502 if (c1 != c2)
503 Faset (string, make_number (0), make_number (c2));
505 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
506 return concat2 (string, string2);
508 else if (EQ (symbol, Qexit))
510 if (NETCONN1_P (p))
511 return build_string (code == 0 ? "deleted\n" : "connection broken by remote peer\n");
512 if (code == 0)
513 return build_string ("finished\n");
514 string = Fnumber_to_string (make_number (code));
515 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
516 return concat3 (build_string ("exited abnormally with code "),
517 string, string2);
519 else if (EQ (symbol, Qfailed))
521 string = Fnumber_to_string (make_number (code));
522 string2 = build_string ("\n");
523 return concat3 (build_string ("failed with code "),
524 string, string2);
526 else
527 return Fcopy_sequence (Fsymbol_name (symbol));
530 #ifdef HAVE_PTYS
532 /* The file name of the pty opened by allocate_pty. */
533 static char pty_name[24];
535 /* Open an available pty, returning a file descriptor.
536 Return -1 on failure.
537 The file name of the terminal corresponding to the pty
538 is left in the variable pty_name. */
540 static int
541 allocate_pty (void)
543 int fd;
545 #ifdef PTY_ITERATION
546 PTY_ITERATION
547 #else
548 register int c, i;
549 for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
550 for (i = 0; i < 16; i++)
551 #endif
553 #ifdef PTY_NAME_SPRINTF
554 PTY_NAME_SPRINTF
555 #else
556 sprintf (pty_name, "/dev/pty%c%x", c, i);
557 #endif /* no PTY_NAME_SPRINTF */
559 #ifdef PTY_OPEN
560 PTY_OPEN;
561 #else /* no PTY_OPEN */
563 { /* Some systems name their pseudoterminals so that there are gaps in
564 the usual sequence - for example, on HP9000/S700 systems, there
565 are no pseudoterminals with names ending in 'f'. So we wait for
566 three failures in a row before deciding that we've reached the
567 end of the ptys. */
568 int failed_count = 0;
569 struct stat stb;
571 if (stat (pty_name, &stb) < 0)
573 failed_count++;
574 if (failed_count >= 3)
575 return -1;
577 else
578 failed_count = 0;
580 # ifdef O_NONBLOCK
581 fd = emacs_open (pty_name, O_RDWR | O_NONBLOCK, 0);
582 # else
583 fd = emacs_open (pty_name, O_RDWR | O_NDELAY, 0);
584 # endif
586 #endif /* no PTY_OPEN */
588 if (fd >= 0)
590 /* check to make certain that both sides are available
591 this avoids a nasty yet stupid bug in rlogins */
592 #ifdef PTY_TTY_NAME_SPRINTF
593 PTY_TTY_NAME_SPRINTF
594 #else
595 sprintf (pty_name, "/dev/tty%c%x", c, i);
596 #endif /* no PTY_TTY_NAME_SPRINTF */
597 if (access (pty_name, 6) != 0)
599 emacs_close (fd);
600 # ifndef __sgi
601 continue;
602 # else
603 return -1;
604 # endif /* __sgi */
606 setup_pty (fd);
607 return fd;
610 return -1;
612 #endif /* HAVE_PTYS */
614 static Lisp_Object
615 make_process (Lisp_Object name)
617 register Lisp_Object val, tem, name1;
618 register struct Lisp_Process *p;
619 char suffix[sizeof "<>" + INT_STRLEN_BOUND (printmax_t)];
620 printmax_t i;
622 p = allocate_process ();
624 p->infd = -1;
625 p->outfd = -1;
626 p->tick = 0;
627 p->update_tick = 0;
628 p->pid = 0;
629 p->pty_flag = 0;
630 p->raw_status_new = 0;
631 p->status = Qrun;
632 p->mark = Fmake_marker ();
633 p->kill_without_query = 0;
635 #ifdef ADAPTIVE_READ_BUFFERING
636 p->adaptive_read_buffering = 0;
637 p->read_output_delay = 0;
638 p->read_output_skip = 0;
639 #endif
641 #ifdef HAVE_GNUTLS
642 p->gnutls_initstage = GNUTLS_STAGE_EMPTY;
643 p->gnutls_log_level = 0;
644 p->gnutls_p = 0;
645 p->gnutls_state = NULL;
646 p->gnutls_x509_cred = NULL;
647 p->gnutls_anon_cred = NULL;
648 #endif
650 /* If name is already in use, modify it until it is unused. */
652 name1 = name;
653 for (i = 1; ; i++)
655 tem = Fget_process (name1);
656 if (NILP (tem)) break;
657 sprintf (suffix, "<%"pMd">", i);
658 name1 = concat2 (name, build_string (suffix));
660 name = name1;
661 p->name = name;
662 XSETPROCESS (val, p);
663 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
664 return val;
667 static void
668 remove_process (register Lisp_Object proc)
670 register Lisp_Object pair;
672 pair = Frassq (proc, Vprocess_alist);
673 Vprocess_alist = Fdelq (pair, Vprocess_alist);
675 deactivate_process (proc);
679 DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
680 doc: /* Return t if OBJECT is a process. */)
681 (Lisp_Object object)
683 return PROCESSP (object) ? Qt : Qnil;
686 DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
687 doc: /* Return the process named NAME, or nil if there is none. */)
688 (register Lisp_Object name)
690 if (PROCESSP (name))
691 return name;
692 CHECK_STRING (name);
693 return Fcdr (Fassoc (name, Vprocess_alist));
696 /* This is how commands for the user decode process arguments. It
697 accepts a process, a process name, a buffer, a buffer name, or nil.
698 Buffers denote the first process in the buffer, and nil denotes the
699 current buffer. */
701 static Lisp_Object
702 get_process (register Lisp_Object name)
704 register Lisp_Object proc, obj;
705 if (STRINGP (name))
707 obj = Fget_process (name);
708 if (NILP (obj))
709 obj = Fget_buffer (name);
710 if (NILP (obj))
711 error ("Process %s does not exist", SDATA (name));
713 else if (NILP (name))
714 obj = Fcurrent_buffer ();
715 else
716 obj = name;
718 /* Now obj should be either a buffer object or a process object.
720 if (BUFFERP (obj))
722 proc = Fget_buffer_process (obj);
723 if (NILP (proc))
724 error ("Buffer %s has no process", SDATA (BVAR (XBUFFER (obj), name)));
726 else
728 CHECK_PROCESS (obj);
729 proc = obj;
731 return proc;
735 #ifdef SIGCHLD
736 /* Fdelete_process promises to immediately forget about the process, but in
737 reality, Emacs needs to remember those processes until they have been
738 treated by sigchld_handler; otherwise this handler would consider the
739 process as being synchronous and say that the synchronous process is
740 dead. */
741 static Lisp_Object deleted_pid_list;
742 #endif
744 DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
745 doc: /* Delete PROCESS: kill it and forget about it immediately.
746 PROCESS may be a process, a buffer, the name of a process or buffer, or
747 nil, indicating the current buffer's process. */)
748 (register Lisp_Object process)
750 register struct Lisp_Process *p;
752 process = get_process (process);
753 p = XPROCESS (process);
755 p->raw_status_new = 0;
756 if (NETCONN1_P (p) || SERIALCONN1_P (p))
758 p->status = Fcons (Qexit, Fcons (make_number (0), Qnil));
759 p->tick = ++process_tick;
760 status_notify (p);
761 redisplay_preserve_echo_area (13);
763 else if (p->infd >= 0)
765 #ifdef SIGCHLD
766 Lisp_Object symbol;
767 pid_t pid = p->pid;
769 /* No problem storing the pid here, as it is still in Vprocess_alist. */
770 deleted_pid_list = Fcons (make_fixnum_or_float (pid),
771 /* GC treated elements set to nil. */
772 Fdelq (Qnil, deleted_pid_list));
773 /* If the process has already signaled, remove it from the list. */
774 if (p->raw_status_new)
775 update_status (p);
776 symbol = p->status;
777 if (CONSP (p->status))
778 symbol = XCAR (p->status);
779 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
780 deleted_pid_list
781 = Fdelete (make_fixnum_or_float (pid), deleted_pid_list);
782 else
783 #endif
785 Fkill_process (process, Qnil);
786 /* Do this now, since remove_process will make sigchld_handler do nothing. */
787 p->status
788 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
789 p->tick = ++process_tick;
790 status_notify (p);
791 redisplay_preserve_echo_area (13);
794 remove_process (process);
795 return Qnil;
798 DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
799 doc: /* Return the status of PROCESS.
800 The returned value is one of the following symbols:
801 run -- for a process that is running.
802 stop -- for a process stopped but continuable.
803 exit -- for a process that has exited.
804 signal -- for a process that has got a fatal signal.
805 open -- for a network stream connection that is open.
806 listen -- for a network stream server that is listening.
807 closed -- for a network stream connection that is closed.
808 connect -- when waiting for a non-blocking connection to complete.
809 failed -- when a non-blocking connection has failed.
810 nil -- if arg is a process name and no such process exists.
811 PROCESS may be a process, a buffer, the name of a process, or
812 nil, indicating the current buffer's process. */)
813 (register Lisp_Object process)
815 register struct Lisp_Process *p;
816 register Lisp_Object status;
818 if (STRINGP (process))
819 process = Fget_process (process);
820 else
821 process = get_process (process);
823 if (NILP (process))
824 return process;
826 p = XPROCESS (process);
827 if (p->raw_status_new)
828 update_status (p);
829 status = p->status;
830 if (CONSP (status))
831 status = XCAR (status);
832 if (NETCONN1_P (p) || SERIALCONN1_P (p))
834 if (EQ (status, Qexit))
835 status = Qclosed;
836 else if (EQ (p->command, Qt))
837 status = Qstop;
838 else if (EQ (status, Qrun))
839 status = Qopen;
841 return status;
844 DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
845 1, 1, 0,
846 doc: /* Return the exit status of PROCESS or the signal number that killed it.
847 If PROCESS has not yet exited or died, return 0. */)
848 (register Lisp_Object process)
850 CHECK_PROCESS (process);
851 if (XPROCESS (process)->raw_status_new)
852 update_status (XPROCESS (process));
853 if (CONSP (XPROCESS (process)->status))
854 return XCAR (XCDR (XPROCESS (process)->status));
855 return make_number (0);
858 DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
859 doc: /* Return the process id of PROCESS.
860 This is the pid of the external process which PROCESS uses or talks to.
861 For a network connection, this value is nil. */)
862 (register Lisp_Object process)
864 pid_t pid;
866 CHECK_PROCESS (process);
867 pid = XPROCESS (process)->pid;
868 return (pid ? make_fixnum_or_float (pid) : Qnil);
871 DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
872 doc: /* Return the name of PROCESS, as a string.
873 This is the name of the program invoked in PROCESS,
874 possibly modified to make it unique among process names. */)
875 (register Lisp_Object process)
877 CHECK_PROCESS (process);
878 return XPROCESS (process)->name;
881 DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
882 doc: /* Return the command that was executed to start PROCESS.
883 This is a list of strings, the first string being the program executed
884 and the rest of the strings being the arguments given to it.
885 For a network or serial process, this is nil (process is running) or t
886 \(process is stopped). */)
887 (register Lisp_Object process)
889 CHECK_PROCESS (process);
890 return XPROCESS (process)->command;
893 DEFUN ("process-tty-name", Fprocess_tty_name, Sprocess_tty_name, 1, 1, 0,
894 doc: /* Return the name of the terminal PROCESS uses, or nil if none.
895 This is the terminal that the process itself reads and writes on,
896 not the name of the pty that Emacs uses to talk with that terminal. */)
897 (register Lisp_Object process)
899 CHECK_PROCESS (process);
900 return XPROCESS (process)->tty_name;
903 DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
904 2, 2, 0,
905 doc: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil).
906 Return BUFFER. */)
907 (register Lisp_Object process, Lisp_Object buffer)
909 struct Lisp_Process *p;
911 CHECK_PROCESS (process);
912 if (!NILP (buffer))
913 CHECK_BUFFER (buffer);
914 p = XPROCESS (process);
915 p->buffer = buffer;
916 if (NETCONN1_P (p) || SERIALCONN1_P (p))
917 p->childp = Fplist_put (p->childp, QCbuffer, buffer);
918 setup_process_coding_systems (process);
919 return buffer;
922 DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
923 1, 1, 0,
924 doc: /* Return the buffer PROCESS is associated with.
925 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
926 (register Lisp_Object process)
928 CHECK_PROCESS (process);
929 return XPROCESS (process)->buffer;
932 DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
933 1, 1, 0,
934 doc: /* Return the marker for the end of the last output from PROCESS. */)
935 (register Lisp_Object process)
937 CHECK_PROCESS (process);
938 return XPROCESS (process)->mark;
941 DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
942 2, 2, 0,
943 doc: /* Give PROCESS the filter function FILTER; nil means no filter.
944 A value of t means stop accepting output from the process.
946 When a process has a filter, its buffer is not used for output.
947 Instead, each time it does output, the entire string of output is
948 passed to the filter.
950 The filter gets two arguments: the process and the string of output.
951 The string argument is normally a multibyte string, except:
952 - if the process' input coding system is no-conversion or raw-text,
953 it is a unibyte string (the non-converted input), or else
954 - if `default-enable-multibyte-characters' is nil, it is a unibyte
955 string (the result of converting the decoded input multibyte
956 string to unibyte with `string-make-unibyte'). */)
957 (register Lisp_Object process, Lisp_Object filter)
959 struct Lisp_Process *p;
961 CHECK_PROCESS (process);
962 p = XPROCESS (process);
964 /* Don't signal an error if the process' input file descriptor
965 is closed. This could make debugging Lisp more difficult,
966 for example when doing something like
968 (setq process (start-process ...))
969 (debug)
970 (set-process-filter process ...) */
972 if (p->infd >= 0)
974 if (EQ (filter, Qt) && !EQ (p->status, Qlisten))
976 FD_CLR (p->infd, &input_wait_mask);
977 FD_CLR (p->infd, &non_keyboard_wait_mask);
979 else if (EQ (p->filter, Qt)
980 /* Network or serial process not stopped: */
981 && !EQ (p->command, Qt))
983 FD_SET (p->infd, &input_wait_mask);
984 FD_SET (p->infd, &non_keyboard_wait_mask);
988 p->filter = filter;
989 if (NETCONN1_P (p) || SERIALCONN1_P (p))
990 p->childp = Fplist_put (p->childp, QCfilter, filter);
991 setup_process_coding_systems (process);
992 return filter;
995 DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
996 1, 1, 0,
997 doc: /* Returns the filter function of PROCESS; nil if none.
998 See `set-process-filter' for more info on filter functions. */)
999 (register Lisp_Object process)
1001 CHECK_PROCESS (process);
1002 return XPROCESS (process)->filter;
1005 DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
1006 2, 2, 0,
1007 doc: /* Give PROCESS the sentinel SENTINEL; nil for none.
1008 The sentinel is called as a function when the process changes state.
1009 It gets two arguments: the process, and a string describing the change. */)
1010 (register Lisp_Object process, Lisp_Object sentinel)
1012 struct Lisp_Process *p;
1014 CHECK_PROCESS (process);
1015 p = XPROCESS (process);
1017 p->sentinel = sentinel;
1018 if (NETCONN1_P (p) || SERIALCONN1_P (p))
1019 p->childp = Fplist_put (p->childp, QCsentinel, sentinel);
1020 return sentinel;
1023 DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
1024 1, 1, 0,
1025 doc: /* Return the sentinel of PROCESS; nil if none.
1026 See `set-process-sentinel' for more info on sentinels. */)
1027 (register Lisp_Object process)
1029 CHECK_PROCESS (process);
1030 return XPROCESS (process)->sentinel;
1033 DEFUN ("set-process-window-size", Fset_process_window_size,
1034 Sset_process_window_size, 3, 3, 0,
1035 doc: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
1036 (register Lisp_Object process, Lisp_Object height, Lisp_Object width)
1038 CHECK_PROCESS (process);
1039 CHECK_RANGED_INTEGER (0, height, INT_MAX);
1040 CHECK_RANGED_INTEGER (0, width, INT_MAX);
1042 if (XPROCESS (process)->infd < 0
1043 || set_window_size (XPROCESS (process)->infd,
1044 XINT (height), XINT (width)) <= 0)
1045 return Qnil;
1046 else
1047 return Qt;
1050 DEFUN ("set-process-inherit-coding-system-flag",
1051 Fset_process_inherit_coding_system_flag,
1052 Sset_process_inherit_coding_system_flag, 2, 2, 0,
1053 doc: /* Determine whether buffer of PROCESS will inherit coding-system.
1054 If the second argument FLAG is non-nil, then the variable
1055 `buffer-file-coding-system' of the buffer associated with PROCESS
1056 will be bound to the value of the coding system used to decode
1057 the process output.
1059 This is useful when the coding system specified for the process buffer
1060 leaves either the character code conversion or the end-of-line conversion
1061 unspecified, or if the coding system used to decode the process output
1062 is more appropriate for saving the process buffer.
1064 Binding the variable `inherit-process-coding-system' to non-nil before
1065 starting the process is an alternative way of setting the inherit flag
1066 for the process which will run. */)
1067 (register Lisp_Object process, Lisp_Object flag)
1069 CHECK_PROCESS (process);
1070 XPROCESS (process)->inherit_coding_system_flag = !NILP (flag);
1071 return flag;
1074 DEFUN ("set-process-query-on-exit-flag",
1075 Fset_process_query_on_exit_flag, Sset_process_query_on_exit_flag,
1076 2, 2, 0,
1077 doc: /* Specify if query is needed for PROCESS when Emacs is exited.
1078 If the second argument FLAG is non-nil, Emacs will query the user before
1079 exiting or killing a buffer if PROCESS is running. */)
1080 (register Lisp_Object process, Lisp_Object flag)
1082 CHECK_PROCESS (process);
1083 XPROCESS (process)->kill_without_query = NILP (flag);
1084 return flag;
1087 DEFUN ("process-query-on-exit-flag",
1088 Fprocess_query_on_exit_flag, Sprocess_query_on_exit_flag,
1089 1, 1, 0,
1090 doc: /* Return the current value of query-on-exit flag for PROCESS. */)
1091 (register Lisp_Object process)
1093 CHECK_PROCESS (process);
1094 return (XPROCESS (process)->kill_without_query ? Qnil : Qt);
1097 #ifdef DATAGRAM_SOCKETS
1098 static Lisp_Object Fprocess_datagram_address (Lisp_Object);
1099 #endif
1101 DEFUN ("process-contact", Fprocess_contact, Sprocess_contact,
1102 1, 2, 0,
1103 doc: /* Return the contact info of PROCESS; t for a real child.
1104 For a network or serial connection, the value depends on the optional
1105 KEY arg. If KEY is nil, value is a cons cell of the form (HOST
1106 SERVICE) for a network connection or (PORT SPEED) for a serial
1107 connection. If KEY is t, the complete contact information for the
1108 connection is returned, else the specific value for the keyword KEY is
1109 returned. See `make-network-process' or `make-serial-process' for a
1110 list of keywords. */)
1111 (register Lisp_Object process, Lisp_Object key)
1113 Lisp_Object contact;
1115 CHECK_PROCESS (process);
1116 contact = XPROCESS (process)->childp;
1118 #ifdef DATAGRAM_SOCKETS
1119 if (DATAGRAM_CONN_P (process)
1120 && (EQ (key, Qt) || EQ (key, QCremote)))
1121 contact = Fplist_put (contact, QCremote,
1122 Fprocess_datagram_address (process));
1123 #endif
1125 if ((!NETCONN_P (process) && !SERIALCONN_P (process)) || EQ (key, Qt))
1126 return contact;
1127 if (NILP (key) && NETCONN_P (process))
1128 return Fcons (Fplist_get (contact, QChost),
1129 Fcons (Fplist_get (contact, QCservice), Qnil));
1130 if (NILP (key) && SERIALCONN_P (process))
1131 return Fcons (Fplist_get (contact, QCport),
1132 Fcons (Fplist_get (contact, QCspeed), Qnil));
1133 return Fplist_get (contact, key);
1136 DEFUN ("process-plist", Fprocess_plist, Sprocess_plist,
1137 1, 1, 0,
1138 doc: /* Return the plist of PROCESS. */)
1139 (register Lisp_Object process)
1141 CHECK_PROCESS (process);
1142 return XPROCESS (process)->plist;
1145 DEFUN ("set-process-plist", Fset_process_plist, Sset_process_plist,
1146 2, 2, 0,
1147 doc: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
1148 (register Lisp_Object process, Lisp_Object plist)
1150 CHECK_PROCESS (process);
1151 CHECK_LIST (plist);
1153 XPROCESS (process)->plist = plist;
1154 return plist;
1157 #if 0 /* Turned off because we don't currently record this info
1158 in the process. Perhaps add it. */
1159 DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0,
1160 doc: /* Return the connection type of PROCESS.
1161 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1162 a socket connection. */)
1163 (Lisp_Object process)
1165 return XPROCESS (process)->type;
1167 #endif
1169 DEFUN ("process-type", Fprocess_type, Sprocess_type, 1, 1, 0,
1170 doc: /* Return the connection type of PROCESS.
1171 The value is either the symbol `real', `network', or `serial'.
1172 PROCESS may be a process, a buffer, the name of a process or buffer, or
1173 nil, indicating the current buffer's process. */)
1174 (Lisp_Object process)
1176 Lisp_Object proc;
1177 proc = get_process (process);
1178 return XPROCESS (proc)->type;
1181 DEFUN ("format-network-address", Fformat_network_address, Sformat_network_address,
1182 1, 2, 0,
1183 doc: /* Convert network ADDRESS from internal format to a string.
1184 A 4 or 5 element vector represents an IPv4 address (with port number).
1185 An 8 or 9 element vector represents an IPv6 address (with port number).
1186 If optional second argument OMIT-PORT is non-nil, don't include a port
1187 number in the string, even when present in ADDRESS.
1188 Returns nil if format of ADDRESS is invalid. */)
1189 (Lisp_Object address, Lisp_Object omit_port)
1191 if (NILP (address))
1192 return Qnil;
1194 if (STRINGP (address)) /* AF_LOCAL */
1195 return address;
1197 if (VECTORP (address)) /* AF_INET or AF_INET6 */
1199 register struct Lisp_Vector *p = XVECTOR (address);
1200 ptrdiff_t size = p->header.size;
1201 Lisp_Object args[10];
1202 int nargs, i;
1204 if (size == 4 || (size == 5 && !NILP (omit_port)))
1206 args[0] = build_string ("%d.%d.%d.%d");
1207 nargs = 4;
1209 else if (size == 5)
1211 args[0] = build_string ("%d.%d.%d.%d:%d");
1212 nargs = 5;
1214 else if (size == 8 || (size == 9 && !NILP (omit_port)))
1216 args[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
1217 nargs = 8;
1219 else if (size == 9)
1221 args[0] = build_string ("[%x:%x:%x:%x:%x:%x:%x:%x]:%d");
1222 nargs = 9;
1224 else
1225 return Qnil;
1227 for (i = 0; i < nargs; i++)
1229 if (! RANGED_INTEGERP (0, p->contents[i], 65535))
1230 return Qnil;
1232 if (nargs <= 5 /* IPv4 */
1233 && i < 4 /* host, not port */
1234 && XINT (p->contents[i]) > 255)
1235 return Qnil;
1237 args[i+1] = p->contents[i];
1240 return Fformat (nargs+1, args);
1243 if (CONSP (address))
1245 Lisp_Object args[2];
1246 args[0] = build_string ("<Family %d>");
1247 args[1] = Fcar (address);
1248 return Fformat (2, args);
1251 return Qnil;
1254 DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
1255 doc: /* Return a list of all processes. */)
1256 (void)
1258 return Fmapcar (Qcdr, Vprocess_alist);
1261 /* Starting asynchronous inferior processes. */
1263 static Lisp_Object start_process_unwind (Lisp_Object proc);
1265 DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
1266 doc: /* Start a program in a subprocess. Return the process object for it.
1267 NAME is name for process. It is modified if necessary to make it unique.
1268 BUFFER is the buffer (or buffer name) to associate with the process.
1270 Process output (both standard output and standard error streams) goes
1271 at end of BUFFER, unless you specify an output stream or filter
1272 function to handle the output. BUFFER may also be nil, meaning that
1273 this process is not associated with any buffer.
1275 PROGRAM is the program file name. It is searched for in `exec-path'
1276 (which see). If nil, just associate a pty with the buffer. Remaining
1277 arguments are strings to give program as arguments.
1279 If you want to separate standard output from standard error, invoke
1280 the command through a shell and redirect one of them using the shell
1281 syntax.
1283 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1284 (ptrdiff_t nargs, Lisp_Object *args)
1286 Lisp_Object buffer, name, program, proc, current_dir, tem;
1287 register unsigned char **new_argv;
1288 ptrdiff_t i;
1289 ptrdiff_t count = SPECPDL_INDEX ();
1291 buffer = args[1];
1292 if (!NILP (buffer))
1293 buffer = Fget_buffer_create (buffer);
1295 /* Make sure that the child will be able to chdir to the current
1296 buffer's current directory, or its unhandled equivalent. We
1297 can't just have the child check for an error when it does the
1298 chdir, since it's in a vfork.
1300 We have to GCPRO around this because Fexpand_file_name and
1301 Funhandled_file_name_directory might call a file name handling
1302 function. The argument list is protected by the caller, so all
1303 we really have to worry about is buffer. */
1305 struct gcpro gcpro1, gcpro2;
1307 current_dir = BVAR (current_buffer, directory);
1309 GCPRO2 (buffer, current_dir);
1311 current_dir = Funhandled_file_name_directory (current_dir);
1312 if (NILP (current_dir))
1313 /* If the file name handler says that current_dir is unreachable, use
1314 a sensible default. */
1315 current_dir = build_string ("~/");
1316 current_dir = expand_and_dir_to_file (current_dir, Qnil);
1317 if (NILP (Ffile_accessible_directory_p (current_dir)))
1318 report_file_error ("Setting current directory",
1319 Fcons (BVAR (current_buffer, directory), Qnil));
1321 UNGCPRO;
1324 name = args[0];
1325 CHECK_STRING (name);
1327 program = args[2];
1329 if (!NILP (program))
1330 CHECK_STRING (program);
1332 proc = make_process (name);
1333 /* If an error occurs and we can't start the process, we want to
1334 remove it from the process list. This means that each error
1335 check in create_process doesn't need to call remove_process
1336 itself; it's all taken care of here. */
1337 record_unwind_protect (start_process_unwind, proc);
1339 XPROCESS (proc)->childp = Qt;
1340 XPROCESS (proc)->plist = Qnil;
1341 XPROCESS (proc)->type = Qreal;
1342 XPROCESS (proc)->buffer = buffer;
1343 XPROCESS (proc)->sentinel = Qnil;
1344 XPROCESS (proc)->filter = Qnil;
1345 XPROCESS (proc)->command = Flist (nargs - 2, args + 2);
1347 #ifdef HAVE_GNUTLS
1348 /* AKA GNUTLS_INITSTAGE(proc). */
1349 XPROCESS (proc)->gnutls_initstage = GNUTLS_STAGE_EMPTY;
1350 XPROCESS (proc)->gnutls_cred_type = Qnil;
1351 #endif
1353 #ifdef ADAPTIVE_READ_BUFFERING
1354 XPROCESS (proc)->adaptive_read_buffering
1355 = (NILP (Vprocess_adaptive_read_buffering) ? 0
1356 : EQ (Vprocess_adaptive_read_buffering, Qt) ? 1 : 2);
1357 #endif
1359 /* Make the process marker point into the process buffer (if any). */
1360 if (BUFFERP (buffer))
1361 set_marker_both (XPROCESS (proc)->mark, buffer,
1362 BUF_ZV (XBUFFER (buffer)),
1363 BUF_ZV_BYTE (XBUFFER (buffer)));
1366 /* Decide coding systems for communicating with the process. Here
1367 we don't setup the structure coding_system nor pay attention to
1368 unibyte mode. They are done in create_process. */
1370 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1371 Lisp_Object coding_systems = Qt;
1372 Lisp_Object val, *args2;
1373 struct gcpro gcpro1, gcpro2;
1375 val = Vcoding_system_for_read;
1376 if (NILP (val))
1378 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
1379 args2[0] = Qstart_process;
1380 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1381 GCPRO2 (proc, current_dir);
1382 if (!NILP (program))
1383 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1384 UNGCPRO;
1385 if (CONSP (coding_systems))
1386 val = XCAR (coding_systems);
1387 else if (CONSP (Vdefault_process_coding_system))
1388 val = XCAR (Vdefault_process_coding_system);
1390 XPROCESS (proc)->decode_coding_system = val;
1392 val = Vcoding_system_for_write;
1393 if (NILP (val))
1395 if (EQ (coding_systems, Qt))
1397 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
1398 args2[0] = Qstart_process;
1399 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1400 GCPRO2 (proc, current_dir);
1401 if (!NILP (program))
1402 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1403 UNGCPRO;
1405 if (CONSP (coding_systems))
1406 val = XCDR (coding_systems);
1407 else if (CONSP (Vdefault_process_coding_system))
1408 val = XCDR (Vdefault_process_coding_system);
1410 XPROCESS (proc)->encode_coding_system = val;
1411 /* Note: At this moment, the above coding system may leave
1412 text-conversion or eol-conversion unspecified. They will be
1413 decided after we read output from the process and decode it by
1414 some coding system, or just before we actually send a text to
1415 the process. */
1419 XPROCESS (proc)->decoding_buf = empty_unibyte_string;
1420 XPROCESS (proc)->decoding_carryover = 0;
1421 XPROCESS (proc)->encoding_buf = empty_unibyte_string;
1423 XPROCESS (proc)->inherit_coding_system_flag
1424 = !(NILP (buffer) || !inherit_process_coding_system);
1426 if (!NILP (program))
1428 /* If program file name is not absolute, search our path for it.
1429 Put the name we will really use in TEM. */
1430 if (!IS_DIRECTORY_SEP (SREF (program, 0))
1431 && !(SCHARS (program) > 1
1432 && IS_DEVICE_SEP (SREF (program, 1))))
1434 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1436 tem = Qnil;
1437 GCPRO4 (name, program, buffer, current_dir);
1438 openp (Vexec_path, program, Vexec_suffixes, &tem, make_number (X_OK));
1439 UNGCPRO;
1440 if (NILP (tem))
1441 report_file_error ("Searching for program", Fcons (program, Qnil));
1442 tem = Fexpand_file_name (tem, Qnil);
1444 else
1446 if (!NILP (Ffile_directory_p (program)))
1447 error ("Specified program for new process is a directory");
1448 tem = program;
1451 /* If program file name starts with /: for quoting a magic name,
1452 discard that. */
1453 if (SBYTES (tem) > 2 && SREF (tem, 0) == '/'
1454 && SREF (tem, 1) == ':')
1455 tem = Fsubstring (tem, make_number (2), Qnil);
1458 Lisp_Object arg_encoding = Qnil;
1459 struct gcpro gcpro1;
1460 GCPRO1 (tem);
1462 /* Encode the file name and put it in NEW_ARGV.
1463 That's where the child will use it to execute the program. */
1464 tem = Fcons (ENCODE_FILE (tem), Qnil);
1466 /* Here we encode arguments by the coding system used for sending
1467 data to the process. We don't support using different coding
1468 systems for encoding arguments and for encoding data sent to the
1469 process. */
1471 for (i = 3; i < nargs; i++)
1473 tem = Fcons (args[i], tem);
1474 CHECK_STRING (XCAR (tem));
1475 if (STRING_MULTIBYTE (XCAR (tem)))
1477 if (NILP (arg_encoding))
1478 arg_encoding = (complement_process_encoding_system
1479 (XPROCESS (proc)->encode_coding_system));
1480 XSETCAR (tem,
1481 code_convert_string_norecord
1482 (XCAR (tem), arg_encoding, 1));
1486 UNGCPRO;
1489 /* Now that everything is encoded we can collect the strings into
1490 NEW_ARGV. */
1491 new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *));
1492 new_argv[nargs - 2] = 0;
1494 for (i = nargs - 2; i-- != 0; )
1496 new_argv[i] = SDATA (XCAR (tem));
1497 tem = XCDR (tem);
1500 create_process (proc, (char **) new_argv, current_dir);
1502 else
1503 create_pty (proc);
1505 return unbind_to (count, proc);
1508 /* This function is the unwind_protect form for Fstart_process. If
1509 PROC doesn't have its pid set, then we know someone has signaled
1510 an error and the process wasn't started successfully, so we should
1511 remove it from the process list. */
1512 static Lisp_Object
1513 start_process_unwind (Lisp_Object proc)
1515 if (!PROCESSP (proc))
1516 abort ();
1518 /* Was PROC started successfully?
1519 -2 is used for a pty with no process, eg for gdb. */
1520 if (XPROCESS (proc)->pid <= 0 && XPROCESS (proc)->pid != -2)
1521 remove_process (proc);
1523 return Qnil;
1526 static void
1527 create_process_1 (struct atimer *timer)
1529 /* Nothing to do. */
1533 static void
1534 create_process (Lisp_Object process, char **new_argv, Lisp_Object current_dir)
1536 int inchannel, outchannel;
1537 pid_t pid;
1538 int sv[2];
1539 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
1540 int wait_child_setup[2];
1541 #endif
1542 sigset_t procmask;
1543 sigset_t blocked;
1544 struct sigaction sigint_action;
1545 struct sigaction sigquit_action;
1546 struct sigaction sigpipe_action;
1547 #ifdef AIX
1548 struct sigaction sighup_action;
1549 #endif
1550 /* Use volatile to protect variables from being clobbered by longjmp. */
1551 volatile int forkin, forkout;
1552 volatile int pty_flag = 0;
1553 #ifndef USE_CRT_DLL
1554 extern char **environ;
1555 #endif
1557 inchannel = outchannel = -1;
1559 #ifdef HAVE_PTYS
1560 if (!NILP (Vprocess_connection_type))
1561 outchannel = inchannel = allocate_pty ();
1563 if (inchannel >= 0)
1565 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1566 /* On most USG systems it does not work to open the pty's tty here,
1567 then close it and reopen it in the child. */
1568 #ifdef O_NOCTTY
1569 /* Don't let this terminal become our controlling terminal
1570 (in case we don't have one). */
1571 forkout = forkin = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
1572 #else
1573 forkout = forkin = emacs_open (pty_name, O_RDWR, 0);
1574 #endif
1575 if (forkin < 0)
1576 report_file_error ("Opening pty", Qnil);
1577 #else
1578 forkin = forkout = -1;
1579 #endif /* not USG, or USG_SUBTTY_WORKS */
1580 pty_flag = 1;
1582 else
1583 #endif /* HAVE_PTYS */
1585 int tem;
1586 tem = pipe (sv);
1587 if (tem < 0)
1588 report_file_error ("Creating pipe", Qnil);
1589 inchannel = sv[0];
1590 forkout = sv[1];
1591 tem = pipe (sv);
1592 if (tem < 0)
1594 emacs_close (inchannel);
1595 emacs_close (forkout);
1596 report_file_error ("Creating pipe", Qnil);
1598 outchannel = sv[1];
1599 forkin = sv[0];
1602 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
1604 int tem;
1606 tem = pipe (wait_child_setup);
1607 if (tem < 0)
1608 report_file_error ("Creating pipe", Qnil);
1609 tem = fcntl (wait_child_setup[1], F_GETFD, 0);
1610 if (tem >= 0)
1611 tem = fcntl (wait_child_setup[1], F_SETFD, tem | FD_CLOEXEC);
1612 if (tem < 0)
1614 emacs_close (wait_child_setup[0]);
1615 emacs_close (wait_child_setup[1]);
1616 report_file_error ("Setting file descriptor flags", Qnil);
1619 #endif
1621 #ifdef O_NONBLOCK
1622 fcntl (inchannel, F_SETFL, O_NONBLOCK);
1623 fcntl (outchannel, F_SETFL, O_NONBLOCK);
1624 #else
1625 #ifdef O_NDELAY
1626 fcntl (inchannel, F_SETFL, O_NDELAY);
1627 fcntl (outchannel, F_SETFL, O_NDELAY);
1628 #endif
1629 #endif
1631 /* Record this as an active process, with its channels.
1632 As a result, child_setup will close Emacs's side of the pipes. */
1633 chan_process[inchannel] = process;
1634 XPROCESS (process)->infd = inchannel;
1635 XPROCESS (process)->outfd = outchannel;
1637 /* Previously we recorded the tty descriptor used in the subprocess.
1638 It was only used for getting the foreground tty process, so now
1639 we just reopen the device (see emacs_get_tty_pgrp) as this is
1640 more portable (see USG_SUBTTY_WORKS above). */
1642 XPROCESS (process)->pty_flag = pty_flag;
1643 XPROCESS (process)->status = Qrun;
1645 /* Delay interrupts until we have a chance to store
1646 the new fork's pid in its process structure */
1647 sigemptyset (&blocked);
1648 #ifdef SIGCHLD
1649 sigaddset (&blocked, SIGCHLD);
1650 #endif
1651 #ifdef HAVE_WORKING_VFORK
1652 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
1653 this sets the parent's signal handlers as well as the child's.
1654 So delay all interrupts whose handlers the child might munge,
1655 and record the current handlers so they can be restored later. */
1656 sigaddset (&blocked, SIGINT ); sigaction (SIGINT , 0, &sigint_action );
1657 sigaddset (&blocked, SIGQUIT); sigaction (SIGQUIT, 0, &sigquit_action);
1658 sigaddset (&blocked, SIGPIPE); sigaction (SIGPIPE, 0, &sigpipe_action);
1659 #ifdef AIX
1660 sigaddset (&blocked, SIGHUP ); sigaction (SIGHUP , 0, &sighup_action );
1661 #endif
1662 #endif /* HAVE_WORKING_VFORK */
1663 pthread_sigmask (SIG_BLOCK, &blocked, &procmask);
1665 FD_SET (inchannel, &input_wait_mask);
1666 FD_SET (inchannel, &non_keyboard_wait_mask);
1667 if (inchannel > max_process_desc)
1668 max_process_desc = inchannel;
1670 /* Until we store the proper pid, enable sigchld_handler
1671 to recognize an unknown pid as standing for this process.
1672 It is very important not to let this `marker' value stay
1673 in the table after this function has returned; if it does
1674 it might cause call-process to hang and subsequent asynchronous
1675 processes to get their return values scrambled. */
1676 XPROCESS (process)->pid = -1;
1678 /* This must be called after the above line because it may signal an
1679 error. */
1680 setup_process_coding_systems (process);
1682 BLOCK_INPUT;
1685 /* child_setup must clobber environ on systems with true vfork.
1686 Protect it from permanent change. */
1687 char **save_environ = environ;
1688 volatile Lisp_Object encoded_current_dir = ENCODE_FILE (current_dir);
1690 #ifndef WINDOWSNT
1691 pid = vfork ();
1692 if (pid == 0)
1693 #endif /* not WINDOWSNT */
1695 int xforkin = forkin;
1696 int xforkout = forkout;
1698 #if 0 /* This was probably a mistake--it duplicates code later on,
1699 but fails to handle all the cases. */
1700 /* Make sure SIGCHLD is not blocked in the child. */
1701 sigsetmask (SIGEMPTYMASK);
1702 #endif
1704 /* Make the pty be the controlling terminal of the process. */
1705 #ifdef HAVE_PTYS
1706 /* First, disconnect its current controlling terminal. */
1707 #ifdef HAVE_SETSID
1708 /* We tried doing setsid only if pty_flag, but it caused
1709 process_set_signal to fail on SGI when using a pipe. */
1710 setsid ();
1711 /* Make the pty's terminal the controlling terminal. */
1712 if (pty_flag && xforkin >= 0)
1714 #ifdef TIOCSCTTY
1715 /* We ignore the return value
1716 because faith@cs.unc.edu says that is necessary on Linux. */
1717 ioctl (xforkin, TIOCSCTTY, 0);
1718 #endif
1720 #else /* not HAVE_SETSID */
1721 #ifdef USG
1722 /* It's very important to call setpgrp here and no time
1723 afterwards. Otherwise, we lose our controlling tty which
1724 is set when we open the pty. */
1725 setpgrp ();
1726 #endif /* USG */
1727 #endif /* not HAVE_SETSID */
1728 #if defined (LDISC1)
1729 if (pty_flag && xforkin >= 0)
1731 struct termios t;
1732 tcgetattr (xforkin, &t);
1733 t.c_lflag = LDISC1;
1734 if (tcsetattr (xforkin, TCSANOW, &t) < 0)
1735 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
1737 #else
1738 #if defined (NTTYDISC) && defined (TIOCSETD)
1739 if (pty_flag && xforkin >= 0)
1741 /* Use new line discipline. */
1742 int ldisc = NTTYDISC;
1743 ioctl (xforkin, TIOCSETD, &ldisc);
1745 #endif
1746 #endif
1747 #ifdef TIOCNOTTY
1748 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1749 can do TIOCSPGRP only to the process's controlling tty. */
1750 if (pty_flag)
1752 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1753 I can't test it since I don't have 4.3. */
1754 int j = emacs_open ("/dev/tty", O_RDWR, 0);
1755 if (j >= 0)
1757 ioctl (j, TIOCNOTTY, 0);
1758 emacs_close (j);
1760 #ifndef USG
1761 /* In order to get a controlling terminal on some versions
1762 of BSD, it is necessary to put the process in pgrp 0
1763 before it opens the terminal. */
1764 #ifdef HAVE_SETPGID
1765 setpgid (0, 0);
1766 #else
1767 setpgrp (0, 0);
1768 #endif
1769 #endif
1771 #endif /* TIOCNOTTY */
1773 #if !defined (DONT_REOPEN_PTY)
1774 /*** There is a suggestion that this ought to be a
1775 conditional on TIOCSPGRP,
1776 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
1777 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
1778 that system does seem to need this code, even though
1779 both HAVE_SETSID and TIOCSCTTY are defined. */
1780 /* Now close the pty (if we had it open) and reopen it.
1781 This makes the pty the controlling terminal of the subprocess. */
1782 if (pty_flag)
1785 /* I wonder if emacs_close (emacs_open (pty_name, ...))
1786 would work? */
1787 if (xforkin >= 0)
1788 emacs_close (xforkin);
1789 xforkout = xforkin = emacs_open (pty_name, O_RDWR, 0);
1791 if (xforkin < 0)
1793 emacs_write (1, "Couldn't open the pty terminal ", 31);
1794 emacs_write (1, pty_name, strlen (pty_name));
1795 emacs_write (1, "\n", 1);
1796 _exit (1);
1800 #endif /* not DONT_REOPEN_PTY */
1802 #ifdef SETUP_SLAVE_PTY
1803 if (pty_flag)
1805 SETUP_SLAVE_PTY;
1807 #endif /* SETUP_SLAVE_PTY */
1808 #ifdef AIX
1809 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
1810 Now reenable it in the child, so it will die when we want it to. */
1811 if (pty_flag)
1812 signal (SIGHUP, SIG_DFL);
1813 #endif
1814 #endif /* HAVE_PTYS */
1816 signal (SIGINT, SIG_DFL);
1817 signal (SIGQUIT, SIG_DFL);
1818 /* GConf causes us to ignore SIGPIPE, make sure it is restored
1819 in the child. */
1820 signal (SIGPIPE, SIG_DFL);
1822 /* Stop blocking signals in the child. */
1823 pthread_sigmask (SIG_SETMASK, &procmask, 0);
1825 if (pty_flag)
1826 child_setup_tty (xforkout);
1827 #ifdef WINDOWSNT
1828 pid = child_setup (xforkin, xforkout, xforkout,
1829 new_argv, 1, encoded_current_dir);
1830 #else /* not WINDOWSNT */
1831 #ifdef FD_CLOEXEC
1832 emacs_close (wait_child_setup[0]);
1833 #endif
1834 child_setup (xforkin, xforkout, xforkout,
1835 new_argv, 1, encoded_current_dir);
1836 #endif /* not WINDOWSNT */
1838 environ = save_environ;
1841 UNBLOCK_INPUT;
1843 /* This runs in the Emacs process. */
1844 if (pid < 0)
1846 if (forkin >= 0)
1847 emacs_close (forkin);
1848 if (forkin != forkout && forkout >= 0)
1849 emacs_close (forkout);
1851 else
1853 /* vfork succeeded. */
1854 XPROCESS (process)->pid = pid;
1856 #ifdef WINDOWSNT
1857 register_child (pid, inchannel);
1858 #endif /* WINDOWSNT */
1860 /* If the subfork execv fails, and it exits,
1861 this close hangs. I don't know why.
1862 So have an interrupt jar it loose. */
1864 struct atimer *timer;
1865 EMACS_TIME offset;
1867 stop_polling ();
1868 EMACS_SET_SECS_USECS (offset, 1, 0);
1869 timer = start_atimer (ATIMER_RELATIVE, offset, create_process_1, 0);
1871 if (forkin >= 0)
1872 emacs_close (forkin);
1874 cancel_atimer (timer);
1875 start_polling ();
1878 if (forkin != forkout && forkout >= 0)
1879 emacs_close (forkout);
1881 #ifdef HAVE_PTYS
1882 if (pty_flag)
1883 XPROCESS (process)->tty_name = build_string (pty_name);
1884 else
1885 #endif
1886 XPROCESS (process)->tty_name = Qnil;
1888 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
1889 /* Wait for child_setup to complete in case that vfork is
1890 actually defined as fork. The descriptor wait_child_setup[1]
1891 of a pipe is closed at the child side either by close-on-exec
1892 on successful execvp or the _exit call in child_setup. */
1894 char dummy;
1896 emacs_close (wait_child_setup[1]);
1897 emacs_read (wait_child_setup[0], &dummy, 1);
1898 emacs_close (wait_child_setup[0]);
1900 #endif
1903 /* Restore the signal state whether vfork succeeded or not.
1904 (We will signal an error, below, if it failed.) */
1905 #ifdef HAVE_WORKING_VFORK
1906 /* Restore the parent's signal handlers. */
1907 sigaction (SIGINT, &sigint_action, 0);
1908 sigaction (SIGQUIT, &sigquit_action, 0);
1909 sigaction (SIGPIPE, &sigpipe_action, 0);
1910 #ifdef AIX
1911 sigaction (SIGHUP, &sighup_action, 0);
1912 #endif
1913 #endif /* HAVE_WORKING_VFORK */
1914 /* Stop blocking signals in the parent. */
1915 pthread_sigmask (SIG_SETMASK, &procmask, 0);
1917 /* Now generate the error if vfork failed. */
1918 if (pid < 0)
1919 report_file_error ("Doing vfork", Qnil);
1922 void
1923 create_pty (Lisp_Object process)
1925 int inchannel, outchannel;
1926 int pty_flag = 0;
1928 inchannel = outchannel = -1;
1930 #ifdef HAVE_PTYS
1931 if (!NILP (Vprocess_connection_type))
1932 outchannel = inchannel = allocate_pty ();
1934 if (inchannel >= 0)
1936 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1937 /* On most USG systems it does not work to open the pty's tty here,
1938 then close it and reopen it in the child. */
1939 #ifdef O_NOCTTY
1940 /* Don't let this terminal become our controlling terminal
1941 (in case we don't have one). */
1942 int forkout = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
1943 #else
1944 int forkout = emacs_open (pty_name, O_RDWR, 0);
1945 #endif
1946 if (forkout < 0)
1947 report_file_error ("Opening pty", Qnil);
1948 #if defined (DONT_REOPEN_PTY)
1949 /* In the case that vfork is defined as fork, the parent process
1950 (Emacs) may send some data before the child process completes
1951 tty options setup. So we setup tty before forking. */
1952 child_setup_tty (forkout);
1953 #endif /* DONT_REOPEN_PTY */
1954 #endif /* not USG, or USG_SUBTTY_WORKS */
1955 pty_flag = 1;
1957 #endif /* HAVE_PTYS */
1959 #ifdef O_NONBLOCK
1960 fcntl (inchannel, F_SETFL, O_NONBLOCK);
1961 fcntl (outchannel, F_SETFL, O_NONBLOCK);
1962 #else
1963 #ifdef O_NDELAY
1964 fcntl (inchannel, F_SETFL, O_NDELAY);
1965 fcntl (outchannel, F_SETFL, O_NDELAY);
1966 #endif
1967 #endif
1969 /* Record this as an active process, with its channels.
1970 As a result, child_setup will close Emacs's side of the pipes. */
1971 chan_process[inchannel] = process;
1972 XPROCESS (process)->infd = inchannel;
1973 XPROCESS (process)->outfd = outchannel;
1975 /* Previously we recorded the tty descriptor used in the subprocess.
1976 It was only used for getting the foreground tty process, so now
1977 we just reopen the device (see emacs_get_tty_pgrp) as this is
1978 more portable (see USG_SUBTTY_WORKS above). */
1980 XPROCESS (process)->pty_flag = pty_flag;
1981 XPROCESS (process)->status = Qrun;
1982 setup_process_coding_systems (process);
1984 FD_SET (inchannel, &input_wait_mask);
1985 FD_SET (inchannel, &non_keyboard_wait_mask);
1986 if (inchannel > max_process_desc)
1987 max_process_desc = inchannel;
1989 XPROCESS (process)->pid = -2;
1990 #ifdef HAVE_PTYS
1991 if (pty_flag)
1992 XPROCESS (process)->tty_name = build_string (pty_name);
1993 else
1994 #endif
1995 XPROCESS (process)->tty_name = Qnil;
1999 /* Convert an internal struct sockaddr to a lisp object (vector or string).
2000 The address family of sa is not included in the result. */
2002 static Lisp_Object
2003 conv_sockaddr_to_lisp (struct sockaddr *sa, int len)
2005 Lisp_Object address;
2006 int i;
2007 unsigned char *cp;
2008 register struct Lisp_Vector *p;
2010 /* Workaround for a bug in getsockname on BSD: Names bound to
2011 sockets in the UNIX domain are inaccessible; getsockname returns
2012 a zero length name. */
2013 if (len < offsetof (struct sockaddr, sa_family) + sizeof (sa->sa_family))
2014 return empty_unibyte_string;
2016 switch (sa->sa_family)
2018 case AF_INET:
2020 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2021 len = sizeof (sin->sin_addr) + 1;
2022 address = Fmake_vector (make_number (len), Qnil);
2023 p = XVECTOR (address);
2024 p->contents[--len] = make_number (ntohs (sin->sin_port));
2025 cp = (unsigned char *) &sin->sin_addr;
2026 break;
2028 #ifdef AF_INET6
2029 case AF_INET6:
2031 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
2032 uint16_t *ip6 = (uint16_t *) &sin6->sin6_addr;
2033 len = sizeof (sin6->sin6_addr)/2 + 1;
2034 address = Fmake_vector (make_number (len), Qnil);
2035 p = XVECTOR (address);
2036 p->contents[--len] = make_number (ntohs (sin6->sin6_port));
2037 for (i = 0; i < len; i++)
2038 p->contents[i] = make_number (ntohs (ip6[i]));
2039 return address;
2041 #endif
2042 #ifdef HAVE_LOCAL_SOCKETS
2043 case AF_LOCAL:
2045 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2046 for (i = 0; i < sizeof (sockun->sun_path); i++)
2047 if (sockun->sun_path[i] == 0)
2048 break;
2049 return make_unibyte_string (sockun->sun_path, i);
2051 #endif
2052 default:
2053 len -= offsetof (struct sockaddr, sa_family) + sizeof (sa->sa_family);
2054 address = Fcons (make_number (sa->sa_family),
2055 Fmake_vector (make_number (len), Qnil));
2056 p = XVECTOR (XCDR (address));
2057 cp = (unsigned char *) &sa->sa_family + sizeof (sa->sa_family);
2058 break;
2061 i = 0;
2062 while (i < len)
2063 p->contents[i++] = make_number (*cp++);
2065 return address;
2069 /* Get family and required size for sockaddr structure to hold ADDRESS. */
2071 static int
2072 get_lisp_to_sockaddr_size (Lisp_Object address, int *familyp)
2074 register struct Lisp_Vector *p;
2076 if (VECTORP (address))
2078 p = XVECTOR (address);
2079 if (p->header.size == 5)
2081 *familyp = AF_INET;
2082 return sizeof (struct sockaddr_in);
2084 #ifdef AF_INET6
2085 else if (p->header.size == 9)
2087 *familyp = AF_INET6;
2088 return sizeof (struct sockaddr_in6);
2090 #endif
2092 #ifdef HAVE_LOCAL_SOCKETS
2093 else if (STRINGP (address))
2095 *familyp = AF_LOCAL;
2096 return sizeof (struct sockaddr_un);
2098 #endif
2099 else if (CONSP (address) && TYPE_RANGED_INTEGERP (int, XCAR (address))
2100 && VECTORP (XCDR (address)))
2102 struct sockaddr *sa;
2103 *familyp = XINT (XCAR (address));
2104 p = XVECTOR (XCDR (address));
2105 return p->header.size + sizeof (sa->sa_family);
2107 return 0;
2110 /* Convert an address object (vector or string) to an internal sockaddr.
2112 The address format has been basically validated by
2113 get_lisp_to_sockaddr_size, but this does not mean FAMILY is valid;
2114 it could have come from user data. So if FAMILY is not valid,
2115 we return after zeroing *SA. */
2117 static void
2118 conv_lisp_to_sockaddr (int family, Lisp_Object address, struct sockaddr *sa, int len)
2120 register struct Lisp_Vector *p;
2121 register unsigned char *cp = NULL;
2122 register int i;
2123 EMACS_INT hostport;
2125 memset (sa, 0, len);
2127 if (VECTORP (address))
2129 p = XVECTOR (address);
2130 if (family == AF_INET)
2132 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2133 len = sizeof (sin->sin_addr) + 1;
2134 hostport = XINT (p->contents[--len]);
2135 sin->sin_port = htons (hostport);
2136 cp = (unsigned char *)&sin->sin_addr;
2137 sa->sa_family = family;
2139 #ifdef AF_INET6
2140 else if (family == AF_INET6)
2142 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
2143 uint16_t *ip6 = (uint16_t *)&sin6->sin6_addr;
2144 len = sizeof (sin6->sin6_addr) + 1;
2145 hostport = XINT (p->contents[--len]);
2146 sin6->sin6_port = htons (hostport);
2147 for (i = 0; i < len; i++)
2148 if (INTEGERP (p->contents[i]))
2150 int j = XFASTINT (p->contents[i]) & 0xffff;
2151 ip6[i] = ntohs (j);
2153 sa->sa_family = family;
2154 return;
2156 #endif
2157 else
2158 return;
2160 else if (STRINGP (address))
2162 #ifdef HAVE_LOCAL_SOCKETS
2163 if (family == AF_LOCAL)
2165 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2166 cp = SDATA (address);
2167 for (i = 0; i < sizeof (sockun->sun_path) && *cp; i++)
2168 sockun->sun_path[i] = *cp++;
2169 sa->sa_family = family;
2171 #endif
2172 return;
2174 else
2176 p = XVECTOR (XCDR (address));
2177 cp = (unsigned char *)sa + sizeof (sa->sa_family);
2180 for (i = 0; i < len; i++)
2181 if (INTEGERP (p->contents[i]))
2182 *cp++ = XFASTINT (p->contents[i]) & 0xff;
2185 #ifdef DATAGRAM_SOCKETS
2186 DEFUN ("process-datagram-address", Fprocess_datagram_address, Sprocess_datagram_address,
2187 1, 1, 0,
2188 doc: /* Get the current datagram address associated with PROCESS. */)
2189 (Lisp_Object process)
2191 int channel;
2193 CHECK_PROCESS (process);
2195 if (!DATAGRAM_CONN_P (process))
2196 return Qnil;
2198 channel = XPROCESS (process)->infd;
2199 return conv_sockaddr_to_lisp (datagram_address[channel].sa,
2200 datagram_address[channel].len);
2203 DEFUN ("set-process-datagram-address", Fset_process_datagram_address, Sset_process_datagram_address,
2204 2, 2, 0,
2205 doc: /* Set the datagram address for PROCESS to ADDRESS.
2206 Returns nil upon error setting address, ADDRESS otherwise. */)
2207 (Lisp_Object process, Lisp_Object address)
2209 int channel;
2210 int family, len;
2212 CHECK_PROCESS (process);
2214 if (!DATAGRAM_CONN_P (process))
2215 return Qnil;
2217 channel = XPROCESS (process)->infd;
2219 len = get_lisp_to_sockaddr_size (address, &family);
2220 if (datagram_address[channel].len != len)
2221 return Qnil;
2222 conv_lisp_to_sockaddr (family, address, datagram_address[channel].sa, len);
2223 return address;
2225 #endif
2228 static const struct socket_options {
2229 /* The name of this option. Should be lowercase version of option
2230 name without SO_ prefix. */
2231 const char *name;
2232 /* Option level SOL_... */
2233 int optlevel;
2234 /* Option number SO_... */
2235 int optnum;
2236 enum { SOPT_UNKNOWN, SOPT_BOOL, SOPT_INT, SOPT_IFNAME, SOPT_LINGER } opttype;
2237 enum { OPIX_NONE=0, OPIX_MISC=1, OPIX_REUSEADDR=2 } optbit;
2238 } socket_options[] =
2240 #ifdef SO_BINDTODEVICE
2241 { ":bindtodevice", SOL_SOCKET, SO_BINDTODEVICE, SOPT_IFNAME, OPIX_MISC },
2242 #endif
2243 #ifdef SO_BROADCAST
2244 { ":broadcast", SOL_SOCKET, SO_BROADCAST, SOPT_BOOL, OPIX_MISC },
2245 #endif
2246 #ifdef SO_DONTROUTE
2247 { ":dontroute", SOL_SOCKET, SO_DONTROUTE, SOPT_BOOL, OPIX_MISC },
2248 #endif
2249 #ifdef SO_KEEPALIVE
2250 { ":keepalive", SOL_SOCKET, SO_KEEPALIVE, SOPT_BOOL, OPIX_MISC },
2251 #endif
2252 #ifdef SO_LINGER
2253 { ":linger", SOL_SOCKET, SO_LINGER, SOPT_LINGER, OPIX_MISC },
2254 #endif
2255 #ifdef SO_OOBINLINE
2256 { ":oobinline", SOL_SOCKET, SO_OOBINLINE, SOPT_BOOL, OPIX_MISC },
2257 #endif
2258 #ifdef SO_PRIORITY
2259 { ":priority", SOL_SOCKET, SO_PRIORITY, SOPT_INT, OPIX_MISC },
2260 #endif
2261 #ifdef SO_REUSEADDR
2262 { ":reuseaddr", SOL_SOCKET, SO_REUSEADDR, SOPT_BOOL, OPIX_REUSEADDR },
2263 #endif
2264 { 0, 0, 0, SOPT_UNKNOWN, OPIX_NONE }
2267 /* Set option OPT to value VAL on socket S.
2269 Returns (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
2270 Signals an error if setting a known option fails.
2273 static int
2274 set_socket_option (int s, Lisp_Object opt, Lisp_Object val)
2276 char *name;
2277 const struct socket_options *sopt;
2278 int ret = 0;
2280 CHECK_SYMBOL (opt);
2282 name = SSDATA (SYMBOL_NAME (opt));
2283 for (sopt = socket_options; sopt->name; sopt++)
2284 if (strcmp (name, sopt->name) == 0)
2285 break;
2287 switch (sopt->opttype)
2289 case SOPT_BOOL:
2291 int optval;
2292 optval = NILP (val) ? 0 : 1;
2293 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2294 &optval, sizeof (optval));
2295 break;
2298 case SOPT_INT:
2300 int optval;
2301 if (TYPE_RANGED_INTEGERP (int, val))
2302 optval = XINT (val);
2303 else
2304 error ("Bad option value for %s", name);
2305 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2306 &optval, sizeof (optval));
2307 break;
2310 #ifdef SO_BINDTODEVICE
2311 case SOPT_IFNAME:
2313 char devname[IFNAMSIZ+1];
2315 /* This is broken, at least in the Linux 2.4 kernel.
2316 To unbind, the arg must be a zero integer, not the empty string.
2317 This should work on all systems. KFS. 2003-09-23. */
2318 memset (devname, 0, sizeof devname);
2319 if (STRINGP (val))
2321 char *arg = SSDATA (val);
2322 int len = min (strlen (arg), IFNAMSIZ);
2323 memcpy (devname, arg, len);
2325 else if (!NILP (val))
2326 error ("Bad option value for %s", name);
2327 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2328 devname, IFNAMSIZ);
2329 break;
2331 #endif
2333 #ifdef SO_LINGER
2334 case SOPT_LINGER:
2336 struct linger linger;
2338 linger.l_onoff = 1;
2339 linger.l_linger = 0;
2340 if (TYPE_RANGED_INTEGERP (int, val))
2341 linger.l_linger = XINT (val);
2342 else
2343 linger.l_onoff = NILP (val) ? 0 : 1;
2344 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2345 &linger, sizeof (linger));
2346 break;
2348 #endif
2350 default:
2351 return 0;
2354 if (ret < 0)
2355 report_file_error ("Cannot set network option",
2356 Fcons (opt, Fcons (val, Qnil)));
2357 return (1 << sopt->optbit);
2361 DEFUN ("set-network-process-option",
2362 Fset_network_process_option, Sset_network_process_option,
2363 3, 4, 0,
2364 doc: /* For network process PROCESS set option OPTION to value VALUE.
2365 See `make-network-process' for a list of options and values.
2366 If optional fourth arg NO-ERROR is non-nil, don't signal an error if
2367 OPTION is not a supported option, return nil instead; otherwise return t. */)
2368 (Lisp_Object process, Lisp_Object option, Lisp_Object value, Lisp_Object no_error)
2370 int s;
2371 struct Lisp_Process *p;
2373 CHECK_PROCESS (process);
2374 p = XPROCESS (process);
2375 if (!NETCONN1_P (p))
2376 error ("Process is not a network process");
2378 s = p->infd;
2379 if (s < 0)
2380 error ("Process is not running");
2382 if (set_socket_option (s, option, value))
2384 p->childp = Fplist_put (p->childp, option, value);
2385 return Qt;
2388 if (NILP (no_error))
2389 error ("Unknown or unsupported option");
2391 return Qnil;
2395 DEFUN ("serial-process-configure",
2396 Fserial_process_configure,
2397 Sserial_process_configure,
2398 0, MANY, 0,
2399 doc: /* Configure speed, bytesize, etc. of a serial process.
2401 Arguments are specified as keyword/argument pairs. Attributes that
2402 are not given are re-initialized from the process's current
2403 configuration (available via the function `process-contact') or set to
2404 reasonable default values. The following arguments are defined:
2406 :process PROCESS
2407 :name NAME
2408 :buffer BUFFER
2409 :port PORT
2410 -- Any of these arguments can be given to identify the process that is
2411 to be configured. If none of these arguments is given, the current
2412 buffer's process is used.
2414 :speed SPEED -- SPEED is the speed of the serial port in bits per
2415 second, also called baud rate. Any value can be given for SPEED, but
2416 most serial ports work only at a few defined values between 1200 and
2417 115200, with 9600 being the most common value. If SPEED is nil, the
2418 serial port is not configured any further, i.e., all other arguments
2419 are ignored. This may be useful for special serial ports such as
2420 Bluetooth-to-serial converters which can only be configured through AT
2421 commands. A value of nil for SPEED can be used only when passed
2422 through `make-serial-process' or `serial-term'.
2424 :bytesize BYTESIZE -- BYTESIZE is the number of bits per byte, which
2425 can be 7 or 8. If BYTESIZE is not given or nil, a value of 8 is used.
2427 :parity PARITY -- PARITY can be nil (don't use parity), the symbol
2428 `odd' (use odd parity), or the symbol `even' (use even parity). If
2429 PARITY is not given, no parity is used.
2431 :stopbits STOPBITS -- STOPBITS is the number of stopbits used to
2432 terminate a byte transmission. STOPBITS can be 1 or 2. If STOPBITS
2433 is not given or nil, 1 stopbit is used.
2435 :flowcontrol FLOWCONTROL -- FLOWCONTROL determines the type of
2436 flowcontrol to be used, which is either nil (don't use flowcontrol),
2437 the symbol `hw' (use RTS/CTS hardware flowcontrol), or the symbol `sw'
2438 \(use XON/XOFF software flowcontrol). If FLOWCONTROL is not given, no
2439 flowcontrol is used.
2441 `serial-process-configure' is called by `make-serial-process' for the
2442 initial configuration of the serial port.
2444 Examples:
2446 \(serial-process-configure :process "/dev/ttyS0" :speed 1200)
2448 \(serial-process-configure
2449 :buffer "COM1" :stopbits 1 :parity 'odd :flowcontrol 'hw)
2451 \(serial-process-configure :port "\\\\.\\COM13" :bytesize 7)
2453 usage: (serial-process-configure &rest ARGS) */)
2454 (ptrdiff_t nargs, Lisp_Object *args)
2456 struct Lisp_Process *p;
2457 Lisp_Object contact = Qnil;
2458 Lisp_Object proc = Qnil;
2459 struct gcpro gcpro1;
2461 contact = Flist (nargs, args);
2462 GCPRO1 (contact);
2464 proc = Fplist_get (contact, QCprocess);
2465 if (NILP (proc))
2466 proc = Fplist_get (contact, QCname);
2467 if (NILP (proc))
2468 proc = Fplist_get (contact, QCbuffer);
2469 if (NILP (proc))
2470 proc = Fplist_get (contact, QCport);
2471 proc = get_process (proc);
2472 p = XPROCESS (proc);
2473 if (!EQ (p->type, Qserial))
2474 error ("Not a serial process");
2476 if (NILP (Fplist_get (p->childp, QCspeed)))
2478 UNGCPRO;
2479 return Qnil;
2482 serial_configure (p, contact);
2484 UNGCPRO;
2485 return Qnil;
2488 /* Used by make-serial-process to recover from errors. */
2489 static Lisp_Object
2490 make_serial_process_unwind (Lisp_Object proc)
2492 if (!PROCESSP (proc))
2493 abort ();
2494 remove_process (proc);
2495 return Qnil;
2498 DEFUN ("make-serial-process", Fmake_serial_process, Smake_serial_process,
2499 0, MANY, 0,
2500 doc: /* Create and return a serial port process.
2502 In Emacs, serial port connections are represented by process objects,
2503 so input and output work as for subprocesses, and `delete-process'
2504 closes a serial port connection. However, a serial process has no
2505 process id, it cannot be signaled, and the status codes are different
2506 from normal processes.
2508 `make-serial-process' creates a process and a buffer, on which you
2509 probably want to use `process-send-string'. Try \\[serial-term] for
2510 an interactive terminal. See below for examples.
2512 Arguments are specified as keyword/argument pairs. The following
2513 arguments are defined:
2515 :port PORT -- (mandatory) PORT is the path or name of the serial port.
2516 For example, this could be "/dev/ttyS0" on Unix. On Windows, this
2517 could be "COM1", or "\\\\.\\COM10" for ports higher than COM9 (double
2518 the backslashes in strings).
2520 :speed SPEED -- (mandatory) is handled by `serial-process-configure',
2521 which is called by `make-serial-process'.
2523 :name NAME -- NAME is the name of the process. If NAME is not given,
2524 the value of PORT is used.
2526 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2527 with the process. Process output goes at the end of that buffer,
2528 unless you specify an output stream or filter function to handle the
2529 output. If BUFFER is not given, the value of NAME is used.
2531 :coding CODING -- If CODING is a symbol, it specifies the coding
2532 system used for both reading and writing for this process. If CODING
2533 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2534 ENCODING is used for writing.
2536 :noquery BOOL -- When exiting Emacs, query the user if BOOL is nil and
2537 the process is running. If BOOL is not given, query before exiting.
2539 :stop BOOL -- Start process in the `stopped' state if BOOL is non-nil.
2540 In the stopped state, a serial process does not accept incoming data,
2541 but you can send outgoing data. The stopped state is cleared by
2542 `continue-process' and set by `stop-process'.
2544 :filter FILTER -- Install FILTER as the process filter.
2546 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2548 :plist PLIST -- Install PLIST as the initial plist of the process.
2550 :speed
2551 :bytesize
2552 :parity
2553 :stopbits
2554 :flowcontrol
2555 -- These arguments are handled by `serial-process-configure', which is
2556 called by `make-serial-process'.
2558 The original argument list, possibly modified by later configuration,
2559 is available via the function `process-contact'.
2561 Examples:
2563 \(make-serial-process :port "/dev/ttyS0" :speed 9600)
2565 \(make-serial-process :port "COM1" :speed 115200 :stopbits 2)
2567 \(make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity 'odd)
2569 \(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil)
2571 usage: (make-serial-process &rest ARGS) */)
2572 (ptrdiff_t nargs, Lisp_Object *args)
2574 int fd = -1;
2575 Lisp_Object proc, contact, port;
2576 struct Lisp_Process *p;
2577 struct gcpro gcpro1;
2578 Lisp_Object name, buffer;
2579 Lisp_Object tem, val;
2580 ptrdiff_t specpdl_count = -1;
2582 if (nargs == 0)
2583 return Qnil;
2585 contact = Flist (nargs, args);
2586 GCPRO1 (contact);
2588 port = Fplist_get (contact, QCport);
2589 if (NILP (port))
2590 error ("No port specified");
2591 CHECK_STRING (port);
2593 if (NILP (Fplist_member (contact, QCspeed)))
2594 error (":speed not specified");
2595 if (!NILP (Fplist_get (contact, QCspeed)))
2596 CHECK_NUMBER (Fplist_get (contact, QCspeed));
2598 name = Fplist_get (contact, QCname);
2599 if (NILP (name))
2600 name = port;
2601 CHECK_STRING (name);
2602 proc = make_process (name);
2603 specpdl_count = SPECPDL_INDEX ();
2604 record_unwind_protect (make_serial_process_unwind, proc);
2605 p = XPROCESS (proc);
2607 fd = serial_open (SSDATA (port));
2608 p->infd = fd;
2609 p->outfd = fd;
2610 if (fd > max_process_desc)
2611 max_process_desc = fd;
2612 chan_process[fd] = proc;
2614 buffer = Fplist_get (contact, QCbuffer);
2615 if (NILP (buffer))
2616 buffer = name;
2617 buffer = Fget_buffer_create (buffer);
2618 p->buffer = buffer;
2620 p->childp = contact;
2621 p->plist = Fcopy_sequence (Fplist_get (contact, QCplist));
2622 p->type = Qserial;
2623 p->sentinel = Fplist_get (contact, QCsentinel);
2624 p->filter = Fplist_get (contact, QCfilter);
2625 p->log = Qnil;
2626 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
2627 p->kill_without_query = 1;
2628 if (tem = Fplist_get (contact, QCstop), !NILP (tem))
2629 p->command = Qt;
2630 p->pty_flag = 0;
2632 if (!EQ (p->command, Qt))
2634 FD_SET (fd, &input_wait_mask);
2635 FD_SET (fd, &non_keyboard_wait_mask);
2638 if (BUFFERP (buffer))
2640 set_marker_both (p->mark, buffer,
2641 BUF_ZV (XBUFFER (buffer)),
2642 BUF_ZV_BYTE (XBUFFER (buffer)));
2645 tem = Fplist_member (contact, QCcoding);
2646 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
2647 tem = Qnil;
2649 val = Qnil;
2650 if (!NILP (tem))
2652 val = XCAR (XCDR (tem));
2653 if (CONSP (val))
2654 val = XCAR (val);
2656 else if (!NILP (Vcoding_system_for_read))
2657 val = Vcoding_system_for_read;
2658 else if ((!NILP (buffer) && NILP (BVAR (XBUFFER (buffer), enable_multibyte_characters)))
2659 || (NILP (buffer) && NILP (BVAR (&buffer_defaults, enable_multibyte_characters))))
2660 val = Qnil;
2661 p->decode_coding_system = val;
2663 val = Qnil;
2664 if (!NILP (tem))
2666 val = XCAR (XCDR (tem));
2667 if (CONSP (val))
2668 val = XCDR (val);
2670 else if (!NILP (Vcoding_system_for_write))
2671 val = Vcoding_system_for_write;
2672 else if ((!NILP (buffer) && NILP (BVAR (XBUFFER (buffer), enable_multibyte_characters)))
2673 || (NILP (buffer) && NILP (BVAR (&buffer_defaults, enable_multibyte_characters))))
2674 val = Qnil;
2675 p->encode_coding_system = val;
2677 setup_process_coding_systems (proc);
2678 p->decoding_buf = empty_unibyte_string;
2679 p->decoding_carryover = 0;
2680 p->encoding_buf = empty_unibyte_string;
2681 p->inherit_coding_system_flag
2682 = !(!NILP (tem) || NILP (buffer) || !inherit_process_coding_system);
2684 Fserial_process_configure (nargs, args);
2686 specpdl_ptr = specpdl + specpdl_count;
2688 UNGCPRO;
2689 return proc;
2692 /* Create a network stream/datagram client/server process. Treated
2693 exactly like a normal process when reading and writing. Primary
2694 differences are in status display and process deletion. A network
2695 connection has no PID; you cannot signal it. All you can do is
2696 stop/continue it and deactivate/close it via delete-process */
2698 DEFUN ("make-network-process", Fmake_network_process, Smake_network_process,
2699 0, MANY, 0,
2700 doc: /* Create and return a network server or client process.
2702 In Emacs, network connections are represented by process objects, so
2703 input and output work as for subprocesses and `delete-process' closes
2704 a network connection. However, a network process has no process id,
2705 it cannot be signaled, and the status codes are different from normal
2706 processes.
2708 Arguments are specified as keyword/argument pairs. The following
2709 arguments are defined:
2711 :name NAME -- NAME is name for process. It is modified if necessary
2712 to make it unique.
2714 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2715 with the process. Process output goes at end of that buffer, unless
2716 you specify an output stream or filter function to handle the output.
2717 BUFFER may be also nil, meaning that this process is not associated
2718 with any buffer.
2720 :host HOST -- HOST is name of the host to connect to, or its IP
2721 address. The symbol `local' specifies the local host. If specified
2722 for a server process, it must be a valid name or address for the local
2723 host, and only clients connecting to that address will be accepted.
2725 :service SERVICE -- SERVICE is name of the service desired, or an
2726 integer specifying a port number to connect to. If SERVICE is t,
2727 a random port number is selected for the server. (If Emacs was
2728 compiled with getaddrinfo, a port number can also be specified as a
2729 string, e.g. "80", as well as an integer. This is not portable.)
2731 :type TYPE -- TYPE is the type of connection. The default (nil) is a
2732 stream type connection, `datagram' creates a datagram type connection,
2733 `seqpacket' creates a reliable datagram connection.
2735 :family FAMILY -- FAMILY is the address (and protocol) family for the
2736 service specified by HOST and SERVICE. The default (nil) is to use
2737 whatever address family (IPv4 or IPv6) that is defined for the host
2738 and port number specified by HOST and SERVICE. Other address families
2739 supported are:
2740 local -- for a local (i.e. UNIX) address specified by SERVICE.
2741 ipv4 -- use IPv4 address family only.
2742 ipv6 -- use IPv6 address family only.
2744 :local ADDRESS -- ADDRESS is the local address used for the connection.
2745 This parameter is ignored when opening a client process. When specified
2746 for a server process, the FAMILY, HOST and SERVICE args are ignored.
2748 :remote ADDRESS -- ADDRESS is the remote partner's address for the
2749 connection. This parameter is ignored when opening a stream server
2750 process. For a datagram server process, it specifies the initial
2751 setting of the remote datagram address. When specified for a client
2752 process, the FAMILY, HOST, and SERVICE args are ignored.
2754 The format of ADDRESS depends on the address family:
2755 - An IPv4 address is represented as an vector of integers [A B C D P]
2756 corresponding to numeric IP address A.B.C.D and port number P.
2757 - A local address is represented as a string with the address in the
2758 local address space.
2759 - An "unsupported family" address is represented by a cons (F . AV)
2760 where F is the family number and AV is a vector containing the socket
2761 address data with one element per address data byte. Do not rely on
2762 this format in portable code, as it may depend on implementation
2763 defined constants, data sizes, and data structure alignment.
2765 :coding CODING -- If CODING is a symbol, it specifies the coding
2766 system used for both reading and writing for this process. If CODING
2767 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2768 ENCODING is used for writing.
2770 :nowait BOOL -- If BOOL is non-nil for a stream type client process,
2771 return without waiting for the connection to complete; instead, the
2772 sentinel function will be called with second arg matching "open" (if
2773 successful) or "failed" when the connect completes. Default is to use
2774 a blocking connect (i.e. wait) for stream type connections.
2776 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
2777 running when Emacs is exited.
2779 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
2780 In the stopped state, a server process does not accept new
2781 connections, and a client process does not handle incoming traffic.
2782 The stopped state is cleared by `continue-process' and set by
2783 `stop-process'.
2785 :filter FILTER -- Install FILTER as the process filter.
2787 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
2788 process filter are multibyte, otherwise they are unibyte.
2789 If this keyword is not specified, the strings are multibyte if
2790 `default-enable-multibyte-characters' is non-nil.
2792 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2794 :log LOG -- Install LOG as the server process log function. This
2795 function is called when the server accepts a network connection from a
2796 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
2797 is the server process, CLIENT is the new process for the connection,
2798 and MESSAGE is a string.
2800 :plist PLIST -- Install PLIST as the new process' initial plist.
2802 :server QLEN -- if QLEN is non-nil, create a server process for the
2803 specified FAMILY, SERVICE, and connection type (stream or datagram).
2804 If QLEN is an integer, it is used as the max. length of the server's
2805 pending connection queue (also known as the backlog); the default
2806 queue length is 5. Default is to create a client process.
2808 The following network options can be specified for this connection:
2810 :broadcast BOOL -- Allow send and receive of datagram broadcasts.
2811 :dontroute BOOL -- Only send to directly connected hosts.
2812 :keepalive BOOL -- Send keep-alive messages on network stream.
2813 :linger BOOL or TIMEOUT -- Send queued messages before closing.
2814 :oobinline BOOL -- Place out-of-band data in receive data stream.
2815 :priority INT -- Set protocol defined priority for sent packets.
2816 :reuseaddr BOOL -- Allow reusing a recently used local address
2817 (this is allowed by default for a server process).
2818 :bindtodevice NAME -- bind to interface NAME. Using this may require
2819 special privileges on some systems.
2821 Consult the relevant system programmer's manual pages for more
2822 information on using these options.
2825 A server process will listen for and accept connections from clients.
2826 When a client connection is accepted, a new network process is created
2827 for the connection with the following parameters:
2829 - The client's process name is constructed by concatenating the server
2830 process' NAME and a client identification string.
2831 - If the FILTER argument is non-nil, the client process will not get a
2832 separate process buffer; otherwise, the client's process buffer is a newly
2833 created buffer named after the server process' BUFFER name or process
2834 NAME concatenated with the client identification string.
2835 - The connection type and the process filter and sentinel parameters are
2836 inherited from the server process' TYPE, FILTER and SENTINEL.
2837 - The client process' contact info is set according to the client's
2838 addressing information (typically an IP address and a port number).
2839 - The client process' plist is initialized from the server's plist.
2841 Notice that the FILTER and SENTINEL args are never used directly by
2842 the server process. Also, the BUFFER argument is not used directly by
2843 the server process, but via the optional :log function, accepted (and
2844 failed) connections may be logged in the server process' buffer.
2846 The original argument list, modified with the actual connection
2847 information, is available via the `process-contact' function.
2849 usage: (make-network-process &rest ARGS) */)
2850 (ptrdiff_t nargs, Lisp_Object *args)
2852 Lisp_Object proc;
2853 Lisp_Object contact;
2854 struct Lisp_Process *p;
2855 #ifdef HAVE_GETADDRINFO
2856 struct addrinfo ai, *res, *lres;
2857 struct addrinfo hints;
2858 const char *portstring;
2859 char portbuf[128];
2860 #else /* HAVE_GETADDRINFO */
2861 struct _emacs_addrinfo
2863 int ai_family;
2864 int ai_socktype;
2865 int ai_protocol;
2866 int ai_addrlen;
2867 struct sockaddr *ai_addr;
2868 struct _emacs_addrinfo *ai_next;
2869 } ai, *res, *lres;
2870 #endif /* HAVE_GETADDRINFO */
2871 struct sockaddr_in address_in;
2872 #ifdef HAVE_LOCAL_SOCKETS
2873 struct sockaddr_un address_un;
2874 #endif
2875 int port;
2876 int ret = 0;
2877 int xerrno = 0;
2878 int s = -1, outch, inch;
2879 struct gcpro gcpro1;
2880 ptrdiff_t count = SPECPDL_INDEX ();
2881 ptrdiff_t count1;
2882 Lisp_Object QCaddress; /* one of QClocal or QCremote */
2883 Lisp_Object tem;
2884 Lisp_Object name, buffer, host, service, address;
2885 Lisp_Object filter, sentinel;
2886 int is_non_blocking_client = 0;
2887 int is_server = 0, backlog = 5;
2888 int socktype;
2889 int family = -1;
2891 if (nargs == 0)
2892 return Qnil;
2894 /* Save arguments for process-contact and clone-process. */
2895 contact = Flist (nargs, args);
2896 GCPRO1 (contact);
2898 #ifdef WINDOWSNT
2899 /* Ensure socket support is loaded if available. */
2900 init_winsock (TRUE);
2901 #endif
2903 /* :type TYPE (nil: stream, datagram */
2904 tem = Fplist_get (contact, QCtype);
2905 if (NILP (tem))
2906 socktype = SOCK_STREAM;
2907 #ifdef DATAGRAM_SOCKETS
2908 else if (EQ (tem, Qdatagram))
2909 socktype = SOCK_DGRAM;
2910 #endif
2911 #ifdef HAVE_SEQPACKET
2912 else if (EQ (tem, Qseqpacket))
2913 socktype = SOCK_SEQPACKET;
2914 #endif
2915 else
2916 error ("Unsupported connection type");
2918 /* :server BOOL */
2919 tem = Fplist_get (contact, QCserver);
2920 if (!NILP (tem))
2922 /* Don't support network sockets when non-blocking mode is
2923 not available, since a blocked Emacs is not useful. */
2924 #if !defined (O_NONBLOCK) && !defined (O_NDELAY)
2925 error ("Network servers not supported");
2926 #else
2927 is_server = 1;
2928 if (TYPE_RANGED_INTEGERP (int, tem))
2929 backlog = XINT (tem);
2930 #endif
2933 /* Make QCaddress an alias for :local (server) or :remote (client). */
2934 QCaddress = is_server ? QClocal : QCremote;
2936 /* :nowait BOOL */
2937 if (!is_server && socktype != SOCK_DGRAM
2938 && (tem = Fplist_get (contact, QCnowait), !NILP (tem)))
2940 #ifndef NON_BLOCKING_CONNECT
2941 error ("Non-blocking connect not supported");
2942 #else
2943 is_non_blocking_client = 1;
2944 #endif
2947 name = Fplist_get (contact, QCname);
2948 buffer = Fplist_get (contact, QCbuffer);
2949 filter = Fplist_get (contact, QCfilter);
2950 sentinel = Fplist_get (contact, QCsentinel);
2952 CHECK_STRING (name);
2954 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
2955 ai.ai_socktype = socktype;
2956 ai.ai_protocol = 0;
2957 ai.ai_next = NULL;
2958 res = &ai;
2960 /* :local ADDRESS or :remote ADDRESS */
2961 address = Fplist_get (contact, QCaddress);
2962 if (!NILP (address))
2964 host = service = Qnil;
2966 if (!(ai.ai_addrlen = get_lisp_to_sockaddr_size (address, &family)))
2967 error ("Malformed :address");
2968 ai.ai_family = family;
2969 ai.ai_addr = alloca (ai.ai_addrlen);
2970 conv_lisp_to_sockaddr (family, address, ai.ai_addr, ai.ai_addrlen);
2971 goto open_socket;
2974 /* :family FAMILY -- nil (for Inet), local, or integer. */
2975 tem = Fplist_get (contact, QCfamily);
2976 if (NILP (tem))
2978 #if defined (HAVE_GETADDRINFO) && defined (AF_INET6)
2979 family = AF_UNSPEC;
2980 #else
2981 family = AF_INET;
2982 #endif
2984 #ifdef HAVE_LOCAL_SOCKETS
2985 else if (EQ (tem, Qlocal))
2986 family = AF_LOCAL;
2987 #endif
2988 #ifdef AF_INET6
2989 else if (EQ (tem, Qipv6))
2990 family = AF_INET6;
2991 #endif
2992 else if (EQ (tem, Qipv4))
2993 family = AF_INET;
2994 else if (TYPE_RANGED_INTEGERP (int, tem))
2995 family = XINT (tem);
2996 else
2997 error ("Unknown address family");
2999 ai.ai_family = family;
3001 /* :service SERVICE -- string, integer (port number), or t (random port). */
3002 service = Fplist_get (contact, QCservice);
3004 /* :host HOST -- hostname, ip address, or 'local for localhost. */
3005 host = Fplist_get (contact, QChost);
3006 if (!NILP (host))
3008 if (EQ (host, Qlocal))
3009 /* Depending on setup, "localhost" may map to different IPv4 and/or
3010 IPv6 addresses, so it's better to be explicit. (Bug#6781) */
3011 host = build_string ("127.0.0.1");
3012 CHECK_STRING (host);
3015 #ifdef HAVE_LOCAL_SOCKETS
3016 if (family == AF_LOCAL)
3018 if (!NILP (host))
3020 message (":family local ignores the :host \"%s\" property",
3021 SDATA (host));
3022 contact = Fplist_put (contact, QChost, Qnil);
3023 host = Qnil;
3025 CHECK_STRING (service);
3026 memset (&address_un, 0, sizeof address_un);
3027 address_un.sun_family = AF_LOCAL;
3028 strncpy (address_un.sun_path, SSDATA (service), sizeof address_un.sun_path);
3029 ai.ai_addr = (struct sockaddr *) &address_un;
3030 ai.ai_addrlen = sizeof address_un;
3031 goto open_socket;
3033 #endif
3035 /* Slow down polling to every ten seconds.
3036 Some kernels have a bug which causes retrying connect to fail
3037 after a connect. Polling can interfere with gethostbyname too. */
3038 #ifdef POLL_FOR_INPUT
3039 if (socktype != SOCK_DGRAM)
3041 record_unwind_protect (unwind_stop_other_atimers, Qnil);
3042 bind_polling_period (10);
3044 #endif
3046 #ifdef HAVE_GETADDRINFO
3047 /* If we have a host, use getaddrinfo to resolve both host and service.
3048 Otherwise, use getservbyname to lookup the service. */
3049 if (!NILP (host))
3052 /* SERVICE can either be a string or int.
3053 Convert to a C string for later use by getaddrinfo. */
3054 if (EQ (service, Qt))
3055 portstring = "0";
3056 else if (INTEGERP (service))
3058 sprintf (portbuf, "%"pI"d", XINT (service));
3059 portstring = portbuf;
3061 else
3063 CHECK_STRING (service);
3064 portstring = SSDATA (service);
3067 immediate_quit = 1;
3068 QUIT;
3069 memset (&hints, 0, sizeof (hints));
3070 hints.ai_flags = 0;
3071 hints.ai_family = family;
3072 hints.ai_socktype = socktype;
3073 hints.ai_protocol = 0;
3075 #ifdef HAVE_RES_INIT
3076 res_init ();
3077 #endif
3079 ret = getaddrinfo (SSDATA (host), portstring, &hints, &res);
3080 if (ret)
3081 #ifdef HAVE_GAI_STRERROR
3082 error ("%s/%s %s", SSDATA (host), portstring, gai_strerror (ret));
3083 #else
3084 error ("%s/%s getaddrinfo error %d", SSDATA (host), portstring, ret);
3085 #endif
3086 immediate_quit = 0;
3088 goto open_socket;
3090 #endif /* HAVE_GETADDRINFO */
3092 /* We end up here if getaddrinfo is not defined, or in case no hostname
3093 has been specified (e.g. for a local server process). */
3095 if (EQ (service, Qt))
3096 port = 0;
3097 else if (INTEGERP (service))
3098 port = htons ((unsigned short) XINT (service));
3099 else
3101 struct servent *svc_info;
3102 CHECK_STRING (service);
3103 svc_info = getservbyname (SSDATA (service),
3104 (socktype == SOCK_DGRAM ? "udp" : "tcp"));
3105 if (svc_info == 0)
3106 error ("Unknown service: %s", SDATA (service));
3107 port = svc_info->s_port;
3110 memset (&address_in, 0, sizeof address_in);
3111 address_in.sin_family = family;
3112 address_in.sin_addr.s_addr = INADDR_ANY;
3113 address_in.sin_port = port;
3115 #ifndef HAVE_GETADDRINFO
3116 if (!NILP (host))
3118 struct hostent *host_info_ptr;
3120 /* gethostbyname may fail with TRY_AGAIN, but we don't honor that,
3121 as it may `hang' Emacs for a very long time. */
3122 immediate_quit = 1;
3123 QUIT;
3125 #ifdef HAVE_RES_INIT
3126 res_init ();
3127 #endif
3129 host_info_ptr = gethostbyname (SDATA (host));
3130 immediate_quit = 0;
3132 if (host_info_ptr)
3134 memcpy (&address_in.sin_addr, host_info_ptr->h_addr,
3135 host_info_ptr->h_length);
3136 family = host_info_ptr->h_addrtype;
3137 address_in.sin_family = family;
3139 else
3140 /* Attempt to interpret host as numeric inet address */
3142 unsigned long numeric_addr;
3143 numeric_addr = inet_addr (SSDATA (host));
3144 if (numeric_addr == -1)
3145 error ("Unknown host \"%s\"", SDATA (host));
3147 memcpy (&address_in.sin_addr, &numeric_addr,
3148 sizeof (address_in.sin_addr));
3152 #endif /* not HAVE_GETADDRINFO */
3154 ai.ai_family = family;
3155 ai.ai_addr = (struct sockaddr *) &address_in;
3156 ai.ai_addrlen = sizeof address_in;
3158 open_socket:
3160 /* Do this in case we never enter the for-loop below. */
3161 count1 = SPECPDL_INDEX ();
3162 s = -1;
3164 for (lres = res; lres; lres = lres->ai_next)
3166 ptrdiff_t optn;
3167 int optbits;
3169 #ifdef WINDOWSNT
3170 retry_connect:
3171 #endif
3173 s = socket (lres->ai_family, lres->ai_socktype, lres->ai_protocol);
3174 if (s < 0)
3176 xerrno = errno;
3177 continue;
3180 #ifdef DATAGRAM_SOCKETS
3181 if (!is_server && socktype == SOCK_DGRAM)
3182 break;
3183 #endif /* DATAGRAM_SOCKETS */
3185 #ifdef NON_BLOCKING_CONNECT
3186 if (is_non_blocking_client)
3188 #ifdef O_NONBLOCK
3189 ret = fcntl (s, F_SETFL, O_NONBLOCK);
3190 #else
3191 ret = fcntl (s, F_SETFL, O_NDELAY);
3192 #endif
3193 if (ret < 0)
3195 xerrno = errno;
3196 emacs_close (s);
3197 s = -1;
3198 continue;
3201 #endif
3203 /* Make us close S if quit. */
3204 record_unwind_protect (close_file_unwind, make_number (s));
3206 /* Parse network options in the arg list.
3207 We simply ignore anything which isn't a known option (including other keywords).
3208 An error is signaled if setting a known option fails. */
3209 for (optn = optbits = 0; optn < nargs-1; optn += 2)
3210 optbits |= set_socket_option (s, args[optn], args[optn+1]);
3212 if (is_server)
3214 /* Configure as a server socket. */
3216 /* SO_REUSEADDR = 1 is default for server sockets; must specify
3217 explicit :reuseaddr key to override this. */
3218 #ifdef HAVE_LOCAL_SOCKETS
3219 if (family != AF_LOCAL)
3220 #endif
3221 if (!(optbits & (1 << OPIX_REUSEADDR)))
3223 int optval = 1;
3224 if (setsockopt (s, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof optval))
3225 report_file_error ("Cannot set reuse option on server socket", Qnil);
3228 if (bind (s, lres->ai_addr, lres->ai_addrlen))
3229 report_file_error ("Cannot bind server socket", Qnil);
3231 #ifdef HAVE_GETSOCKNAME
3232 if (EQ (service, Qt))
3234 struct sockaddr_in sa1;
3235 socklen_t len1 = sizeof (sa1);
3236 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3238 ((struct sockaddr_in *)(lres->ai_addr))->sin_port = sa1.sin_port;
3239 service = make_number (ntohs (sa1.sin_port));
3240 contact = Fplist_put (contact, QCservice, service);
3243 #endif
3245 if (socktype != SOCK_DGRAM && listen (s, backlog))
3246 report_file_error ("Cannot listen on server socket", Qnil);
3248 break;
3251 immediate_quit = 1;
3252 QUIT;
3254 ret = connect (s, lres->ai_addr, lres->ai_addrlen);
3255 xerrno = errno;
3257 if (ret == 0 || xerrno == EISCONN)
3259 /* The unwind-protect will be discarded afterwards.
3260 Likewise for immediate_quit. */
3261 break;
3264 #ifdef NON_BLOCKING_CONNECT
3265 #ifdef EINPROGRESS
3266 if (is_non_blocking_client && xerrno == EINPROGRESS)
3267 break;
3268 #else
3269 #ifdef EWOULDBLOCK
3270 if (is_non_blocking_client && xerrno == EWOULDBLOCK)
3271 break;
3272 #endif
3273 #endif
3274 #endif
3276 #ifndef WINDOWSNT
3277 if (xerrno == EINTR)
3279 /* Unlike most other syscalls connect() cannot be called
3280 again. (That would return EALREADY.) The proper way to
3281 wait for completion is select(). */
3282 int sc;
3283 socklen_t len;
3284 SELECT_TYPE fdset;
3285 retry_select:
3286 FD_ZERO (&fdset);
3287 FD_SET (s, &fdset);
3288 QUIT;
3289 sc = select (s + 1, (SELECT_TYPE *)0, &fdset, (SELECT_TYPE *)0,
3290 (EMACS_TIME *)0);
3291 if (sc == -1)
3293 if (errno == EINTR)
3294 goto retry_select;
3295 else
3296 report_file_error ("select failed", Qnil);
3298 eassert (sc > 0);
3300 len = sizeof xerrno;
3301 eassert (FD_ISSET (s, &fdset));
3302 if (getsockopt (s, SOL_SOCKET, SO_ERROR, &xerrno, &len) == -1)
3303 report_file_error ("getsockopt failed", Qnil);
3304 if (xerrno)
3305 errno = xerrno, report_file_error ("error during connect", Qnil);
3306 else
3307 break;
3309 #endif /* !WINDOWSNT */
3311 immediate_quit = 0;
3313 /* Discard the unwind protect closing S. */
3314 specpdl_ptr = specpdl + count1;
3315 emacs_close (s);
3316 s = -1;
3318 #ifdef WINDOWSNT
3319 if (xerrno == EINTR)
3320 goto retry_connect;
3321 #endif
3324 if (s >= 0)
3326 #ifdef DATAGRAM_SOCKETS
3327 if (socktype == SOCK_DGRAM)
3329 if (datagram_address[s].sa)
3330 abort ();
3331 datagram_address[s].sa = (struct sockaddr *) xmalloc (lres->ai_addrlen);
3332 datagram_address[s].len = lres->ai_addrlen;
3333 if (is_server)
3335 Lisp_Object remote;
3336 memset (datagram_address[s].sa, 0, lres->ai_addrlen);
3337 if (remote = Fplist_get (contact, QCremote), !NILP (remote))
3339 int rfamily, rlen;
3340 rlen = get_lisp_to_sockaddr_size (remote, &rfamily);
3341 if (rfamily == lres->ai_family && rlen == lres->ai_addrlen)
3342 conv_lisp_to_sockaddr (rfamily, remote,
3343 datagram_address[s].sa, rlen);
3346 else
3347 memcpy (datagram_address[s].sa, lres->ai_addr, lres->ai_addrlen);
3349 #endif
3350 contact = Fplist_put (contact, QCaddress,
3351 conv_sockaddr_to_lisp (lres->ai_addr, lres->ai_addrlen));
3352 #ifdef HAVE_GETSOCKNAME
3353 if (!is_server)
3355 struct sockaddr_in sa1;
3356 socklen_t len1 = sizeof (sa1);
3357 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3358 contact = Fplist_put (contact, QClocal,
3359 conv_sockaddr_to_lisp ((struct sockaddr *)&sa1, len1));
3361 #endif
3364 immediate_quit = 0;
3366 #ifdef HAVE_GETADDRINFO
3367 if (res != &ai)
3369 BLOCK_INPUT;
3370 freeaddrinfo (res);
3371 UNBLOCK_INPUT;
3373 #endif
3375 /* Discard the unwind protect for closing S, if any. */
3376 specpdl_ptr = specpdl + count1;
3378 /* Unwind bind_polling_period and request_sigio. */
3379 unbind_to (count, Qnil);
3381 if (s < 0)
3383 /* If non-blocking got this far - and failed - assume non-blocking is
3384 not supported after all. This is probably a wrong assumption, but
3385 the normal blocking calls to open-network-stream handles this error
3386 better. */
3387 if (is_non_blocking_client)
3388 return Qnil;
3390 errno = xerrno;
3391 if (is_server)
3392 report_file_error ("make server process failed", contact);
3393 else
3394 report_file_error ("make client process failed", contact);
3397 inch = s;
3398 outch = s;
3400 if (!NILP (buffer))
3401 buffer = Fget_buffer_create (buffer);
3402 proc = make_process (name);
3404 chan_process[inch] = proc;
3406 #ifdef O_NONBLOCK
3407 fcntl (inch, F_SETFL, O_NONBLOCK);
3408 #else
3409 #ifdef O_NDELAY
3410 fcntl (inch, F_SETFL, O_NDELAY);
3411 #endif
3412 #endif
3414 p = XPROCESS (proc);
3416 p->childp = contact;
3417 p->plist = Fcopy_sequence (Fplist_get (contact, QCplist));
3418 p->type = Qnetwork;
3420 p->buffer = buffer;
3421 p->sentinel = sentinel;
3422 p->filter = filter;
3423 p->log = Fplist_get (contact, QClog);
3424 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
3425 p->kill_without_query = 1;
3426 if ((tem = Fplist_get (contact, QCstop), !NILP (tem)))
3427 p->command = Qt;
3428 p->pid = 0;
3429 p->infd = inch;
3430 p->outfd = outch;
3431 if (is_server && socktype != SOCK_DGRAM)
3432 p->status = Qlisten;
3434 /* Make the process marker point into the process buffer (if any). */
3435 if (BUFFERP (buffer))
3436 set_marker_both (p->mark, buffer,
3437 BUF_ZV (XBUFFER (buffer)),
3438 BUF_ZV_BYTE (XBUFFER (buffer)));
3440 #ifdef NON_BLOCKING_CONNECT
3441 if (is_non_blocking_client)
3443 /* We may get here if connect did succeed immediately. However,
3444 in that case, we still need to signal this like a non-blocking
3445 connection. */
3446 p->status = Qconnect;
3447 if (!FD_ISSET (inch, &connect_wait_mask))
3449 FD_SET (inch, &connect_wait_mask);
3450 FD_SET (inch, &write_mask);
3451 num_pending_connects++;
3454 else
3455 #endif
3456 /* A server may have a client filter setting of Qt, but it must
3457 still listen for incoming connects unless it is stopped. */
3458 if ((!EQ (p->filter, Qt) && !EQ (p->command, Qt))
3459 || (EQ (p->status, Qlisten) && NILP (p->command)))
3461 FD_SET (inch, &input_wait_mask);
3462 FD_SET (inch, &non_keyboard_wait_mask);
3465 if (inch > max_process_desc)
3466 max_process_desc = inch;
3468 tem = Fplist_member (contact, QCcoding);
3469 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
3470 tem = Qnil; /* No error message (too late!). */
3473 /* Setup coding systems for communicating with the network stream. */
3474 struct gcpro gcpro1;
3475 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3476 Lisp_Object coding_systems = Qt;
3477 Lisp_Object fargs[5], val;
3479 if (!NILP (tem))
3481 val = XCAR (XCDR (tem));
3482 if (CONSP (val))
3483 val = XCAR (val);
3485 else if (!NILP (Vcoding_system_for_read))
3486 val = Vcoding_system_for_read;
3487 else if ((!NILP (buffer) && NILP (BVAR (XBUFFER (buffer), enable_multibyte_characters)))
3488 || (NILP (buffer) && NILP (BVAR (&buffer_defaults, enable_multibyte_characters))))
3489 /* We dare not decode end-of-line format by setting VAL to
3490 Qraw_text, because the existing Emacs Lisp libraries
3491 assume that they receive bare code including a sequence of
3492 CR LF. */
3493 val = Qnil;
3494 else
3496 if (NILP (host) || NILP (service))
3497 coding_systems = Qnil;
3498 else
3500 fargs[0] = Qopen_network_stream, fargs[1] = name,
3501 fargs[2] = buffer, fargs[3] = host, fargs[4] = service;
3502 GCPRO1 (proc);
3503 coding_systems = Ffind_operation_coding_system (5, fargs);
3504 UNGCPRO;
3506 if (CONSP (coding_systems))
3507 val = XCAR (coding_systems);
3508 else if (CONSP (Vdefault_process_coding_system))
3509 val = XCAR (Vdefault_process_coding_system);
3510 else
3511 val = Qnil;
3513 p->decode_coding_system = val;
3515 if (!NILP (tem))
3517 val = XCAR (XCDR (tem));
3518 if (CONSP (val))
3519 val = XCDR (val);
3521 else if (!NILP (Vcoding_system_for_write))
3522 val = Vcoding_system_for_write;
3523 else if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
3524 val = Qnil;
3525 else
3527 if (EQ (coding_systems, Qt))
3529 if (NILP (host) || NILP (service))
3530 coding_systems = Qnil;
3531 else
3533 fargs[0] = Qopen_network_stream, fargs[1] = name,
3534 fargs[2] = buffer, fargs[3] = host, fargs[4] = service;
3535 GCPRO1 (proc);
3536 coding_systems = Ffind_operation_coding_system (5, fargs);
3537 UNGCPRO;
3540 if (CONSP (coding_systems))
3541 val = XCDR (coding_systems);
3542 else if (CONSP (Vdefault_process_coding_system))
3543 val = XCDR (Vdefault_process_coding_system);
3544 else
3545 val = Qnil;
3547 p->encode_coding_system = val;
3549 setup_process_coding_systems (proc);
3551 p->decoding_buf = empty_unibyte_string;
3552 p->decoding_carryover = 0;
3553 p->encoding_buf = empty_unibyte_string;
3555 p->inherit_coding_system_flag
3556 = !(!NILP (tem) || NILP (buffer) || !inherit_process_coding_system);
3558 UNGCPRO;
3559 return proc;
3563 #if defined (HAVE_NET_IF_H)
3565 #ifdef SIOCGIFCONF
3566 DEFUN ("network-interface-list", Fnetwork_interface_list, Snetwork_interface_list, 0, 0, 0,
3567 doc: /* Return an alist of all network interfaces and their network address.
3568 Each element is a cons, the car of which is a string containing the
3569 interface name, and the cdr is the network address in internal
3570 format; see the description of ADDRESS in `make-network-process'. */)
3571 (void)
3573 struct ifconf ifconf;
3574 struct ifreq *ifreq;
3575 void *buf = NULL;
3576 ptrdiff_t buf_size = 512;
3577 int s, i;
3578 Lisp_Object res;
3580 s = socket (AF_INET, SOCK_STREAM, 0);
3581 if (s < 0)
3582 return Qnil;
3586 buf = xpalloc (buf, &buf_size, 1, INT_MAX, 1);
3587 ifconf.ifc_buf = buf;
3588 ifconf.ifc_len = buf_size;
3589 if (ioctl (s, SIOCGIFCONF, &ifconf))
3591 close (s);
3592 xfree (buf);
3593 return Qnil;
3596 while (ifconf.ifc_len == buf_size);
3598 close (s);
3600 res = Qnil;
3601 ifreq = ifconf.ifc_req;
3602 while ((char *) ifreq < (char *) ifconf.ifc_req + ifconf.ifc_len)
3604 struct ifreq *ifq = ifreq;
3605 #ifdef HAVE_STRUCT_IFREQ_IFR_ADDR_SA_LEN
3606 #define SIZEOF_IFREQ(sif) \
3607 ((sif)->ifr_addr.sa_len < sizeof (struct sockaddr) \
3608 ? sizeof (*(sif)) : sizeof ((sif)->ifr_name) + (sif)->ifr_addr.sa_len)
3610 int len = SIZEOF_IFREQ (ifq);
3611 #else
3612 int len = sizeof (*ifreq);
3613 #endif
3614 char namebuf[sizeof (ifq->ifr_name) + 1];
3615 i += len;
3616 ifreq = (struct ifreq *) ((char *) ifreq + len);
3618 if (ifq->ifr_addr.sa_family != AF_INET)
3619 continue;
3621 memcpy (namebuf, ifq->ifr_name, sizeof (ifq->ifr_name));
3622 namebuf[sizeof (ifq->ifr_name)] = 0;
3623 res = Fcons (Fcons (build_string (namebuf),
3624 conv_sockaddr_to_lisp (&ifq->ifr_addr,
3625 sizeof (struct sockaddr))),
3626 res);
3629 xfree (buf);
3630 return res;
3632 #endif /* SIOCGIFCONF */
3634 #if defined (SIOCGIFADDR) || defined (SIOCGIFHWADDR) || defined (SIOCGIFFLAGS)
3636 struct ifflag_def {
3637 int flag_bit;
3638 const char *flag_sym;
3641 static const struct ifflag_def ifflag_table[] = {
3642 #ifdef IFF_UP
3643 { IFF_UP, "up" },
3644 #endif
3645 #ifdef IFF_BROADCAST
3646 { IFF_BROADCAST, "broadcast" },
3647 #endif
3648 #ifdef IFF_DEBUG
3649 { IFF_DEBUG, "debug" },
3650 #endif
3651 #ifdef IFF_LOOPBACK
3652 { IFF_LOOPBACK, "loopback" },
3653 #endif
3654 #ifdef IFF_POINTOPOINT
3655 { IFF_POINTOPOINT, "pointopoint" },
3656 #endif
3657 #ifdef IFF_RUNNING
3658 { IFF_RUNNING, "running" },
3659 #endif
3660 #ifdef IFF_NOARP
3661 { IFF_NOARP, "noarp" },
3662 #endif
3663 #ifdef IFF_PROMISC
3664 { IFF_PROMISC, "promisc" },
3665 #endif
3666 #ifdef IFF_NOTRAILERS
3667 #ifdef NS_IMPL_COCOA
3668 /* Really means smart, notrailers is obsolete */
3669 { IFF_NOTRAILERS, "smart" },
3670 #else
3671 { IFF_NOTRAILERS, "notrailers" },
3672 #endif
3673 #endif
3674 #ifdef IFF_ALLMULTI
3675 { IFF_ALLMULTI, "allmulti" },
3676 #endif
3677 #ifdef IFF_MASTER
3678 { IFF_MASTER, "master" },
3679 #endif
3680 #ifdef IFF_SLAVE
3681 { IFF_SLAVE, "slave" },
3682 #endif
3683 #ifdef IFF_MULTICAST
3684 { IFF_MULTICAST, "multicast" },
3685 #endif
3686 #ifdef IFF_PORTSEL
3687 { IFF_PORTSEL, "portsel" },
3688 #endif
3689 #ifdef IFF_AUTOMEDIA
3690 { IFF_AUTOMEDIA, "automedia" },
3691 #endif
3692 #ifdef IFF_DYNAMIC
3693 { IFF_DYNAMIC, "dynamic" },
3694 #endif
3695 #ifdef IFF_OACTIVE
3696 { IFF_OACTIVE, "oactive" }, /* OpenBSD: transmission in progress */
3697 #endif
3698 #ifdef IFF_SIMPLEX
3699 { IFF_SIMPLEX, "simplex" }, /* OpenBSD: can't hear own transmissions */
3700 #endif
3701 #ifdef IFF_LINK0
3702 { IFF_LINK0, "link0" }, /* OpenBSD: per link layer defined bit */
3703 #endif
3704 #ifdef IFF_LINK1
3705 { IFF_LINK1, "link1" }, /* OpenBSD: per link layer defined bit */
3706 #endif
3707 #ifdef IFF_LINK2
3708 { IFF_LINK2, "link2" }, /* OpenBSD: per link layer defined bit */
3709 #endif
3710 { 0, 0 }
3713 DEFUN ("network-interface-info", Fnetwork_interface_info, Snetwork_interface_info, 1, 1, 0,
3714 doc: /* Return information about network interface named IFNAME.
3715 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
3716 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
3717 NETMASK is the layer 3 network mask, HWADDR is the layer 2 address, and
3718 FLAGS is the current flags of the interface. */)
3719 (Lisp_Object ifname)
3721 struct ifreq rq;
3722 Lisp_Object res = Qnil;
3723 Lisp_Object elt;
3724 int s;
3725 int any = 0;
3726 #if (! (defined SIOCGIFHWADDR && defined HAVE_STRUCT_IFREQ_IFR_HWADDR) \
3727 && defined HAVE_GETIFADDRS && defined LLADDR)
3728 struct ifaddrs *ifap;
3729 #endif
3731 CHECK_STRING (ifname);
3733 memset (rq.ifr_name, 0, sizeof rq.ifr_name);
3734 strncpy (rq.ifr_name, SSDATA (ifname), sizeof (rq.ifr_name));
3736 s = socket (AF_INET, SOCK_STREAM, 0);
3737 if (s < 0)
3738 return Qnil;
3740 elt = Qnil;
3741 #if defined (SIOCGIFFLAGS) && defined (HAVE_STRUCT_IFREQ_IFR_FLAGS)
3742 if (ioctl (s, SIOCGIFFLAGS, &rq) == 0)
3744 int flags = rq.ifr_flags;
3745 const struct ifflag_def *fp;
3746 int fnum;
3748 /* If flags is smaller than int (i.e. short) it may have the high bit set
3749 due to IFF_MULTICAST. In that case, sign extending it into
3750 an int is wrong. */
3751 if (flags < 0 && sizeof (rq.ifr_flags) < sizeof (flags))
3752 flags = (unsigned short) rq.ifr_flags;
3754 any = 1;
3755 for (fp = ifflag_table; flags != 0 && fp->flag_sym; fp++)
3757 if (flags & fp->flag_bit)
3759 elt = Fcons (intern (fp->flag_sym), elt);
3760 flags -= fp->flag_bit;
3763 for (fnum = 0; flags && fnum < 32; flags >>= 1, fnum++)
3765 if (flags & 1)
3767 elt = Fcons (make_number (fnum), elt);
3771 #endif
3772 res = Fcons (elt, res);
3774 elt = Qnil;
3775 #if defined (SIOCGIFHWADDR) && defined (HAVE_STRUCT_IFREQ_IFR_HWADDR)
3776 if (ioctl (s, SIOCGIFHWADDR, &rq) == 0)
3778 Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil);
3779 register struct Lisp_Vector *p = XVECTOR (hwaddr);
3780 int n;
3782 any = 1;
3783 for (n = 0; n < 6; n++)
3784 p->contents[n] = make_number (((unsigned char *)&rq.ifr_hwaddr.sa_data[0])[n]);
3785 elt = Fcons (make_number (rq.ifr_hwaddr.sa_family), hwaddr);
3787 #elif defined (HAVE_GETIFADDRS) && defined (LLADDR)
3788 if (getifaddrs (&ifap) != -1)
3790 Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil);
3791 register struct Lisp_Vector *p = XVECTOR (hwaddr);
3792 struct ifaddrs *it;
3794 for (it = ifap; it != NULL; it = it->ifa_next)
3796 struct sockaddr_dl *sdl = (struct sockaddr_dl*) it->ifa_addr;
3797 unsigned char linkaddr[6];
3798 int n;
3800 if (it->ifa_addr->sa_family != AF_LINK
3801 || strcmp (it->ifa_name, SSDATA (ifname)) != 0
3802 || sdl->sdl_alen != 6)
3803 continue;
3805 memcpy (linkaddr, LLADDR (sdl), sdl->sdl_alen);
3806 for (n = 0; n < 6; n++)
3807 p->contents[n] = make_number (linkaddr[n]);
3809 elt = Fcons (make_number (it->ifa_addr->sa_family), hwaddr);
3810 break;
3813 #ifdef HAVE_FREEIFADDRS
3814 freeifaddrs (ifap);
3815 #endif
3817 #endif /* HAVE_GETIFADDRS && LLADDR */
3819 res = Fcons (elt, res);
3821 elt = Qnil;
3822 #if defined (SIOCGIFNETMASK) && (defined (HAVE_STRUCT_IFREQ_IFR_NETMASK) || defined (HAVE_STRUCT_IFREQ_IFR_ADDR))
3823 if (ioctl (s, SIOCGIFNETMASK, &rq) == 0)
3825 any = 1;
3826 #ifdef HAVE_STRUCT_IFREQ_IFR_NETMASK
3827 elt = conv_sockaddr_to_lisp (&rq.ifr_netmask, sizeof (rq.ifr_netmask));
3828 #else
3829 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
3830 #endif
3832 #endif
3833 res = Fcons (elt, res);
3835 elt = Qnil;
3836 #if defined (SIOCGIFBRDADDR) && defined (HAVE_STRUCT_IFREQ_IFR_BROADADDR)
3837 if (ioctl (s, SIOCGIFBRDADDR, &rq) == 0)
3839 any = 1;
3840 elt = conv_sockaddr_to_lisp (&rq.ifr_broadaddr, sizeof (rq.ifr_broadaddr));
3842 #endif
3843 res = Fcons (elt, res);
3845 elt = Qnil;
3846 #if defined (SIOCGIFADDR) && defined (HAVE_STRUCT_IFREQ_IFR_ADDR)
3847 if (ioctl (s, SIOCGIFADDR, &rq) == 0)
3849 any = 1;
3850 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
3852 #endif
3853 res = Fcons (elt, res);
3855 close (s);
3857 return any ? res : Qnil;
3859 #endif
3860 #endif /* defined (HAVE_NET_IF_H) */
3862 /* Turn off input and output for process PROC. */
3864 static void
3865 deactivate_process (Lisp_Object proc)
3867 register int inchannel, outchannel;
3868 register struct Lisp_Process *p = XPROCESS (proc);
3870 #ifdef HAVE_GNUTLS
3871 /* Delete GnuTLS structures in PROC, if any. */
3872 emacs_gnutls_deinit (proc);
3873 #endif /* HAVE_GNUTLS */
3875 inchannel = p->infd;
3876 outchannel = p->outfd;
3878 #ifdef ADAPTIVE_READ_BUFFERING
3879 if (p->read_output_delay > 0)
3881 if (--process_output_delay_count < 0)
3882 process_output_delay_count = 0;
3883 p->read_output_delay = 0;
3884 p->read_output_skip = 0;
3886 #endif
3888 if (inchannel >= 0)
3890 /* Beware SIGCHLD hereabouts. */
3891 flush_pending_output (inchannel);
3892 emacs_close (inchannel);
3893 if (outchannel >= 0 && outchannel != inchannel)
3894 emacs_close (outchannel);
3896 p->infd = -1;
3897 p->outfd = -1;
3898 #ifdef DATAGRAM_SOCKETS
3899 if (DATAGRAM_CHAN_P (inchannel))
3901 xfree (datagram_address[inchannel].sa);
3902 datagram_address[inchannel].sa = 0;
3903 datagram_address[inchannel].len = 0;
3905 #endif
3906 chan_process[inchannel] = Qnil;
3907 FD_CLR (inchannel, &input_wait_mask);
3908 FD_CLR (inchannel, &non_keyboard_wait_mask);
3909 #ifdef NON_BLOCKING_CONNECT
3910 if (FD_ISSET (inchannel, &connect_wait_mask))
3912 FD_CLR (inchannel, &connect_wait_mask);
3913 FD_CLR (inchannel, &write_mask);
3914 if (--num_pending_connects < 0)
3915 abort ();
3917 #endif
3918 if (inchannel == max_process_desc)
3920 int i;
3921 /* We just closed the highest-numbered process input descriptor,
3922 so recompute the highest-numbered one now. */
3923 max_process_desc = 0;
3924 for (i = 0; i < MAXDESC; i++)
3925 if (!NILP (chan_process[i]))
3926 max_process_desc = i;
3932 DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
3933 0, 4, 0,
3934 doc: /* Allow any pending output from subprocesses to be read by Emacs.
3935 It is read into the process' buffers or given to their filter functions.
3936 Non-nil arg PROCESS means do not return until some output has been received
3937 from PROCESS.
3939 Non-nil second arg SECONDS and third arg MILLISEC are number of seconds
3940 and milliseconds to wait; return after that much time whether or not
3941 there is any subprocess output. If SECONDS is a floating point number,
3942 it specifies a fractional number of seconds to wait.
3943 The MILLISEC argument is obsolete and should be avoided.
3945 If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
3946 from PROCESS, suspending reading output from other processes.
3947 If JUST-THIS-ONE is an integer, don't run any timers either.
3948 Return non-nil if we received any output before the timeout expired. */)
3949 (register Lisp_Object process, Lisp_Object seconds, Lisp_Object millisec, Lisp_Object just_this_one)
3951 int secs = -1, usecs = 0;
3953 if (! NILP (process))
3954 CHECK_PROCESS (process);
3955 else
3956 just_this_one = Qnil;
3958 if (!NILP (millisec))
3959 { /* Obsolete calling convention using integers rather than floats. */
3960 CHECK_NUMBER (millisec);
3961 if (NILP (seconds))
3962 seconds = make_float (XINT (millisec) / 1000.0);
3963 else
3965 CHECK_NUMBER (seconds);
3966 seconds = make_float (XINT (millisec) / 1000.0 + XINT (seconds));
3970 if (!NILP (seconds))
3972 double duration = extract_float (seconds);
3973 if (0 < duration)
3974 duration_to_sec_usec (duration, &secs, &usecs);
3976 else if (!NILP (process))
3977 secs = 0;
3979 return
3980 (wait_reading_process_output (secs, usecs, 0, 0,
3981 Qnil,
3982 !NILP (process) ? XPROCESS (process) : NULL,
3983 NILP (just_this_one) ? 0 :
3984 !INTEGERP (just_this_one) ? 1 : -1)
3985 ? Qt : Qnil);
3988 /* Accept a connection for server process SERVER on CHANNEL. */
3990 static int connect_counter = 0;
3992 static void
3993 server_accept_connection (Lisp_Object server, int channel)
3995 Lisp_Object proc, caller, name, buffer;
3996 Lisp_Object contact, host, service;
3997 struct Lisp_Process *ps= XPROCESS (server);
3998 struct Lisp_Process *p;
3999 int s;
4000 union u_sockaddr {
4001 struct sockaddr sa;
4002 struct sockaddr_in in;
4003 #ifdef AF_INET6
4004 struct sockaddr_in6 in6;
4005 #endif
4006 #ifdef HAVE_LOCAL_SOCKETS
4007 struct sockaddr_un un;
4008 #endif
4009 } saddr;
4010 socklen_t len = sizeof saddr;
4012 s = accept (channel, &saddr.sa, &len);
4014 if (s < 0)
4016 int code = errno;
4018 if (code == EAGAIN)
4019 return;
4020 #ifdef EWOULDBLOCK
4021 if (code == EWOULDBLOCK)
4022 return;
4023 #endif
4025 if (!NILP (ps->log))
4026 call3 (ps->log, server, Qnil,
4027 concat3 (build_string ("accept failed with code"),
4028 Fnumber_to_string (make_number (code)),
4029 build_string ("\n")));
4030 return;
4033 connect_counter++;
4035 /* Setup a new process to handle the connection. */
4037 /* Generate a unique identification of the caller, and build contact
4038 information for this process. */
4039 host = Qt;
4040 service = Qnil;
4041 switch (saddr.sa.sa_family)
4043 case AF_INET:
4045 Lisp_Object args[5];
4046 unsigned char *ip = (unsigned char *)&saddr.in.sin_addr.s_addr;
4047 args[0] = build_string ("%d.%d.%d.%d");
4048 args[1] = make_number (*ip++);
4049 args[2] = make_number (*ip++);
4050 args[3] = make_number (*ip++);
4051 args[4] = make_number (*ip++);
4052 host = Fformat (5, args);
4053 service = make_number (ntohs (saddr.in.sin_port));
4055 args[0] = build_string (" <%s:%d>");
4056 args[1] = host;
4057 args[2] = service;
4058 caller = Fformat (3, args);
4060 break;
4062 #ifdef AF_INET6
4063 case AF_INET6:
4065 Lisp_Object args[9];
4066 uint16_t *ip6 = (uint16_t *)&saddr.in6.sin6_addr;
4067 int i;
4068 args[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
4069 for (i = 0; i < 8; i++)
4070 args[i+1] = make_number (ntohs (ip6[i]));
4071 host = Fformat (9, args);
4072 service = make_number (ntohs (saddr.in.sin_port));
4074 args[0] = build_string (" <[%s]:%d>");
4075 args[1] = host;
4076 args[2] = service;
4077 caller = Fformat (3, args);
4079 break;
4080 #endif
4082 #ifdef HAVE_LOCAL_SOCKETS
4083 case AF_LOCAL:
4084 #endif
4085 default:
4086 caller = Fnumber_to_string (make_number (connect_counter));
4087 caller = concat3 (build_string (" <"), caller, build_string (">"));
4088 break;
4091 /* Create a new buffer name for this process if it doesn't have a
4092 filter. The new buffer name is based on the buffer name or
4093 process name of the server process concatenated with the caller
4094 identification. */
4096 if (!NILP (ps->filter) && !EQ (ps->filter, Qt))
4097 buffer = Qnil;
4098 else
4100 buffer = ps->buffer;
4101 if (!NILP (buffer))
4102 buffer = Fbuffer_name (buffer);
4103 else
4104 buffer = ps->name;
4105 if (!NILP (buffer))
4107 buffer = concat2 (buffer, caller);
4108 buffer = Fget_buffer_create (buffer);
4112 /* Generate a unique name for the new server process. Combine the
4113 server process name with the caller identification. */
4115 name = concat2 (ps->name, caller);
4116 proc = make_process (name);
4118 chan_process[s] = proc;
4120 #ifdef O_NONBLOCK
4121 fcntl (s, F_SETFL, O_NONBLOCK);
4122 #else
4123 #ifdef O_NDELAY
4124 fcntl (s, F_SETFL, O_NDELAY);
4125 #endif
4126 #endif
4128 p = XPROCESS (proc);
4130 /* Build new contact information for this setup. */
4131 contact = Fcopy_sequence (ps->childp);
4132 contact = Fplist_put (contact, QCserver, Qnil);
4133 contact = Fplist_put (contact, QChost, host);
4134 if (!NILP (service))
4135 contact = Fplist_put (contact, QCservice, service);
4136 contact = Fplist_put (contact, QCremote,
4137 conv_sockaddr_to_lisp (&saddr.sa, len));
4138 #ifdef HAVE_GETSOCKNAME
4139 len = sizeof saddr;
4140 if (getsockname (s, &saddr.sa, &len) == 0)
4141 contact = Fplist_put (contact, QClocal,
4142 conv_sockaddr_to_lisp (&saddr.sa, len));
4143 #endif
4145 p->childp = contact;
4146 p->plist = Fcopy_sequence (ps->plist);
4147 p->type = Qnetwork;
4149 p->buffer = buffer;
4150 p->sentinel = ps->sentinel;
4151 p->filter = ps->filter;
4152 p->command = Qnil;
4153 p->pid = 0;
4154 p->infd = s;
4155 p->outfd = s;
4156 p->status = Qrun;
4158 /* Client processes for accepted connections are not stopped initially. */
4159 if (!EQ (p->filter, Qt))
4161 FD_SET (s, &input_wait_mask);
4162 FD_SET (s, &non_keyboard_wait_mask);
4165 if (s > max_process_desc)
4166 max_process_desc = s;
4168 /* Setup coding system for new process based on server process.
4169 This seems to be the proper thing to do, as the coding system
4170 of the new process should reflect the settings at the time the
4171 server socket was opened; not the current settings. */
4173 p->decode_coding_system = ps->decode_coding_system;
4174 p->encode_coding_system = ps->encode_coding_system;
4175 setup_process_coding_systems (proc);
4177 p->decoding_buf = empty_unibyte_string;
4178 p->decoding_carryover = 0;
4179 p->encoding_buf = empty_unibyte_string;
4181 p->inherit_coding_system_flag
4182 = (NILP (buffer) ? 0 : ps->inherit_coding_system_flag);
4184 if (!NILP (ps->log))
4185 call3 (ps->log, server, proc,
4186 concat3 (build_string ("accept from "),
4187 (STRINGP (host) ? host : build_string ("-")),
4188 build_string ("\n")));
4190 if (!NILP (p->sentinel))
4191 exec_sentinel (proc,
4192 concat3 (build_string ("open from "),
4193 (STRINGP (host) ? host : build_string ("-")),
4194 build_string ("\n")));
4197 /* This variable is different from waiting_for_input in keyboard.c.
4198 It is used to communicate to a lisp process-filter/sentinel (via the
4199 function Fwaiting_for_user_input_p below) whether Emacs was waiting
4200 for user-input when that process-filter was called.
4201 waiting_for_input cannot be used as that is by definition 0 when
4202 lisp code is being evalled.
4203 This is also used in record_asynch_buffer_change.
4204 For that purpose, this must be 0
4205 when not inside wait_reading_process_output. */
4206 static int waiting_for_user_input_p;
4208 static Lisp_Object
4209 wait_reading_process_output_unwind (Lisp_Object data)
4211 waiting_for_user_input_p = XINT (data);
4212 return Qnil;
4215 /* This is here so breakpoints can be put on it. */
4216 static void
4217 wait_reading_process_output_1 (void)
4221 /* Use a wrapper around select to work around a bug in gdb 5.3.
4222 Normally, the wrapper is optimized away by inlining.
4224 If emacs is stopped inside select, the gdb backtrace doesn't
4225 show the function which called select, so it is practically
4226 impossible to step through wait_reading_process_output. */
4228 #ifndef select
4229 static inline int
4230 select_wrapper (int n, fd_set *rfd, fd_set *wfd, fd_set *xfd, struct timeval *tmo)
4232 return select (n, rfd, wfd, xfd, tmo);
4234 #define select select_wrapper
4235 #endif
4237 /* Read and dispose of subprocess output while waiting for timeout to
4238 elapse and/or keyboard input to be available.
4240 TIME_LIMIT is:
4241 timeout in seconds, or
4242 zero for no limit, or
4243 -1 means gobble data immediately available but don't wait for any.
4245 MICROSECS is:
4246 an additional duration to wait, measured in microseconds.
4247 If this is nonzero and time_limit is 0, then the timeout
4248 consists of MICROSECS only.
4250 READ_KBD is a lisp value:
4251 0 to ignore keyboard input, or
4252 1 to return when input is available, or
4253 -1 meaning caller will actually read the input, so don't throw to
4254 the quit handler, or
4256 DO_DISPLAY != 0 means redisplay should be done to show subprocess
4257 output that arrives.
4259 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4260 (and gobble terminal input into the buffer if any arrives).
4262 If WAIT_PROC is specified, wait until something arrives from that
4263 process. The return value is true if we read some input from
4264 that process.
4266 If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC
4267 (suspending output from other processes). A negative value
4268 means don't run any timers either.
4270 If WAIT_PROC is specified, then the function returns true if we
4271 received input from that process before the timeout elapsed.
4272 Otherwise, return true if we received input from any process. */
4275 wait_reading_process_output (int time_limit, int microsecs, int read_kbd,
4276 int do_display,
4277 Lisp_Object wait_for_cell,
4278 struct Lisp_Process *wait_proc, int just_wait_proc)
4280 register int channel, nfds;
4281 SELECT_TYPE Available;
4282 SELECT_TYPE Writeok;
4283 int check_write;
4284 int check_delay, no_avail;
4285 int xerrno;
4286 Lisp_Object proc;
4287 EMACS_TIME timeout, end_time;
4288 int wait_channel = -1;
4289 int got_some_input = 0;
4290 ptrdiff_t count = SPECPDL_INDEX ();
4292 FD_ZERO (&Available);
4293 FD_ZERO (&Writeok);
4295 if (time_limit == 0 && microsecs == 0 && wait_proc && !NILP (Vinhibit_quit)
4296 && !(CONSP (wait_proc->status) && EQ (XCAR (wait_proc->status), Qexit)))
4297 message ("Blocking call to accept-process-output with quit inhibited!!");
4299 /* If wait_proc is a process to watch, set wait_channel accordingly. */
4300 if (wait_proc != NULL)
4301 wait_channel = wait_proc->infd;
4303 record_unwind_protect (wait_reading_process_output_unwind,
4304 make_number (waiting_for_user_input_p));
4305 waiting_for_user_input_p = read_kbd;
4307 /* Since we may need to wait several times,
4308 compute the absolute time to return at. */
4309 if (time_limit || microsecs)
4311 EMACS_GET_TIME (end_time);
4312 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
4313 EMACS_ADD_TIME (end_time, end_time, timeout);
4316 while (1)
4318 int timeout_reduced_for_timers = 0;
4320 /* If calling from keyboard input, do not quit
4321 since we want to return C-g as an input character.
4322 Otherwise, do pending quit if requested. */
4323 if (read_kbd >= 0)
4324 QUIT;
4325 #ifdef SYNC_INPUT
4326 else
4327 process_pending_signals ();
4328 #endif
4330 /* Exit now if the cell we're waiting for became non-nil. */
4331 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4332 break;
4334 /* Compute time from now till when time limit is up */
4335 /* Exit if already run out */
4336 if (time_limit == -1)
4338 /* -1 specified for timeout means
4339 gobble output available now
4340 but don't wait at all. */
4342 EMACS_SET_SECS_USECS (timeout, 0, 0);
4344 else if (time_limit || microsecs)
4346 EMACS_GET_TIME (timeout);
4347 EMACS_SUB_TIME (timeout, end_time, timeout);
4348 if (EMACS_TIME_NEG_P (timeout))
4349 break;
4351 else
4353 EMACS_SET_SECS_USECS (timeout, 100000, 0);
4356 /* Normally we run timers here.
4357 But not if wait_for_cell; in those cases,
4358 the wait is supposed to be short,
4359 and those callers cannot handle running arbitrary Lisp code here. */
4360 if (NILP (wait_for_cell)
4361 && just_wait_proc >= 0)
4363 EMACS_TIME timer_delay;
4367 int old_timers_run = timers_run;
4368 struct buffer *old_buffer = current_buffer;
4369 Lisp_Object old_window = selected_window;
4371 timer_delay = timer_check ();
4373 /* If a timer has run, this might have changed buffers
4374 an alike. Make read_key_sequence aware of that. */
4375 if (timers_run != old_timers_run
4376 && (old_buffer != current_buffer
4377 || !EQ (old_window, selected_window))
4378 && waiting_for_user_input_p == -1)
4379 record_asynch_buffer_change ();
4381 if (timers_run != old_timers_run && do_display)
4382 /* We must retry, since a timer may have requeued itself
4383 and that could alter the time_delay. */
4384 redisplay_preserve_echo_area (9);
4385 else
4386 break;
4388 while (!detect_input_pending ());
4390 /* If there is unread keyboard input, also return. */
4391 if (read_kbd != 0
4392 && requeued_events_pending_p ())
4393 break;
4395 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
4397 EMACS_TIME difference;
4398 EMACS_SUB_TIME (difference, timer_delay, timeout);
4399 if (EMACS_TIME_NEG_P (difference))
4401 timeout = timer_delay;
4402 timeout_reduced_for_timers = 1;
4405 /* If time_limit is -1, we are not going to wait at all. */
4406 else if (time_limit != -1)
4408 /* This is so a breakpoint can be put here. */
4409 wait_reading_process_output_1 ();
4413 /* Cause C-g and alarm signals to take immediate action,
4414 and cause input available signals to zero out timeout.
4416 It is important that we do this before checking for process
4417 activity. If we get a SIGCHLD after the explicit checks for
4418 process activity, timeout is the only way we will know. */
4419 if (read_kbd < 0)
4420 set_waiting_for_input (&timeout);
4422 /* If status of something has changed, and no input is
4423 available, notify the user of the change right away. After
4424 this explicit check, we'll let the SIGCHLD handler zap
4425 timeout to get our attention. */
4426 if (update_tick != process_tick)
4428 SELECT_TYPE Atemp;
4429 SELECT_TYPE Ctemp;
4431 if (kbd_on_hold_p ())
4432 FD_ZERO (&Atemp);
4433 else
4434 Atemp = input_wait_mask;
4435 Ctemp = write_mask;
4437 EMACS_SET_SECS_USECS (timeout, 0, 0);
4438 if ((select (max (max_process_desc, max_input_desc) + 1,
4439 &Atemp,
4440 #ifdef NON_BLOCKING_CONNECT
4441 (num_pending_connects > 0 ? &Ctemp : (SELECT_TYPE *)0),
4442 #else
4443 (SELECT_TYPE *)0,
4444 #endif
4445 (SELECT_TYPE *)0, &timeout)
4446 <= 0))
4448 /* It's okay for us to do this and then continue with
4449 the loop, since timeout has already been zeroed out. */
4450 clear_waiting_for_input ();
4451 status_notify (NULL);
4452 if (do_display) redisplay_preserve_echo_area (13);
4456 /* Don't wait for output from a non-running process. Just
4457 read whatever data has already been received. */
4458 if (wait_proc && wait_proc->raw_status_new)
4459 update_status (wait_proc);
4460 if (wait_proc
4461 && ! EQ (wait_proc->status, Qrun)
4462 && ! EQ (wait_proc->status, Qconnect))
4464 int nread, total_nread = 0;
4466 clear_waiting_for_input ();
4467 XSETPROCESS (proc, wait_proc);
4469 /* Read data from the process, until we exhaust it. */
4470 while (wait_proc->infd >= 0)
4472 nread = read_process_output (proc, wait_proc->infd);
4474 if (nread == 0)
4475 break;
4477 if (0 < nread)
4479 total_nread += nread;
4480 got_some_input = 1;
4482 #ifdef EIO
4483 else if (nread == -1 && EIO == errno)
4484 break;
4485 #endif
4486 #ifdef EAGAIN
4487 else if (nread == -1 && EAGAIN == errno)
4488 break;
4489 #endif
4490 #ifdef EWOULDBLOCK
4491 else if (nread == -1 && EWOULDBLOCK == errno)
4492 break;
4493 #endif
4495 if (total_nread > 0 && do_display)
4496 redisplay_preserve_echo_area (10);
4498 break;
4501 /* Wait till there is something to do */
4503 if (wait_proc && just_wait_proc)
4505 if (wait_proc->infd < 0) /* Terminated */
4506 break;
4507 FD_SET (wait_proc->infd, &Available);
4508 check_delay = 0;
4509 check_write = 0;
4511 else if (!NILP (wait_for_cell))
4513 Available = non_process_wait_mask;
4514 check_delay = 0;
4515 check_write = 0;
4517 else
4519 if (! read_kbd)
4520 Available = non_keyboard_wait_mask;
4521 else
4522 Available = input_wait_mask;
4523 Writeok = write_mask;
4524 #ifdef SELECT_CANT_DO_WRITE_MASK
4525 check_write = 0;
4526 #else
4527 check_write = 1;
4528 #endif
4529 check_delay = wait_channel >= 0 ? 0 : process_output_delay_count;
4532 /* If frame size has changed or the window is newly mapped,
4533 redisplay now, before we start to wait. There is a race
4534 condition here; if a SIGIO arrives between now and the select
4535 and indicates that a frame is trashed, the select may block
4536 displaying a trashed screen. */
4537 if (frame_garbaged && do_display)
4539 clear_waiting_for_input ();
4540 redisplay_preserve_echo_area (11);
4541 if (read_kbd < 0)
4542 set_waiting_for_input (&timeout);
4545 /* Skip the `select' call if input is available and we're
4546 waiting for keyboard input or a cell change (which can be
4547 triggered by processing X events). In the latter case, set
4548 nfds to 1 to avoid breaking the loop. */
4549 no_avail = 0;
4550 if ((read_kbd || !NILP (wait_for_cell))
4551 && detect_input_pending ())
4553 nfds = read_kbd ? 0 : 1;
4554 no_avail = 1;
4557 if (!no_avail)
4560 #ifdef ADAPTIVE_READ_BUFFERING
4561 /* Set the timeout for adaptive read buffering if any
4562 process has non-zero read_output_skip and non-zero
4563 read_output_delay, and we are not reading output for a
4564 specific wait_channel. It is not executed if
4565 Vprocess_adaptive_read_buffering is nil. */
4566 if (process_output_skip && check_delay > 0)
4568 int usecs = EMACS_USECS (timeout);
4569 if (EMACS_SECS (timeout) > 0 || usecs > READ_OUTPUT_DELAY_MAX)
4570 usecs = READ_OUTPUT_DELAY_MAX;
4571 for (channel = 0; check_delay > 0 && channel <= max_process_desc; channel++)
4573 proc = chan_process[channel];
4574 if (NILP (proc))
4575 continue;
4576 /* Find minimum non-zero read_output_delay among the
4577 processes with non-zero read_output_skip. */
4578 if (XPROCESS (proc)->read_output_delay > 0)
4580 check_delay--;
4581 if (!XPROCESS (proc)->read_output_skip)
4582 continue;
4583 FD_CLR (channel, &Available);
4584 XPROCESS (proc)->read_output_skip = 0;
4585 if (XPROCESS (proc)->read_output_delay < usecs)
4586 usecs = XPROCESS (proc)->read_output_delay;
4589 EMACS_SET_SECS_USECS (timeout, 0, usecs);
4590 process_output_skip = 0;
4592 #endif
4593 #if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
4594 nfds = xg_select
4595 #elif defined (HAVE_NS)
4596 nfds = ns_select
4597 #else
4598 nfds = select
4599 #endif
4600 (max (max_process_desc, max_input_desc) + 1,
4601 &Available,
4602 (check_write ? &Writeok : (SELECT_TYPE *)0),
4603 (SELECT_TYPE *)0, &timeout);
4605 #ifdef HAVE_GNUTLS
4606 /* GnuTLS buffers data internally. In lowat mode it leaves
4607 some data in the TCP buffers so that select works, but
4608 with custom pull/push functions we need to check if some
4609 data is available in the buffers manually. */
4610 if (nfds == 0)
4612 if (! wait_proc)
4614 /* We're not waiting on a specific process, so loop
4615 through all the channels and check for data.
4616 This is a workaround needed for some versions of
4617 the gnutls library -- 2.12.14 has been confirmed
4618 to need it. See
4619 http://comments.gmane.org/gmane.emacs.devel/145074 */
4620 for (channel = 0; channel < MAXDESC; ++channel)
4621 if (! NILP (chan_process[channel]))
4623 struct Lisp_Process *p =
4624 XPROCESS (chan_process[channel]);
4625 if (p && p->gnutls_p && p->infd
4626 && ((emacs_gnutls_record_check_pending
4627 (p->gnutls_state))
4628 > 0))
4630 nfds++;
4631 FD_SET (p->infd, &Available);
4635 else
4637 /* Check this specific channel. */
4638 if (wait_proc->gnutls_p /* Check for valid process. */
4639 /* Do we have pending data? */
4640 && ((emacs_gnutls_record_check_pending
4641 (wait_proc->gnutls_state))
4642 > 0))
4644 nfds = 1;
4645 /* Set to Available. */
4646 FD_SET (wait_proc->infd, &Available);
4650 #endif
4653 xerrno = errno;
4655 /* Make C-g and alarm signals set flags again */
4656 clear_waiting_for_input ();
4658 /* If we woke up due to SIGWINCH, actually change size now. */
4659 do_pending_window_change (0);
4661 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
4662 /* We wanted the full specified time, so return now. */
4663 break;
4664 if (nfds < 0)
4666 if (xerrno == EINTR)
4667 no_avail = 1;
4668 else if (xerrno == EBADF)
4670 #ifdef AIX
4671 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
4672 the child's closure of the pts gives the parent a SIGHUP, and
4673 the ptc file descriptor is automatically closed,
4674 yielding EBADF here or at select() call above.
4675 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
4676 in m/ibmrt-aix.h), and here we just ignore the select error.
4677 Cleanup occurs c/o status_notify after SIGCLD. */
4678 no_avail = 1; /* Cannot depend on values returned */
4679 #else
4680 abort ();
4681 #endif
4683 else
4684 error ("select error: %s", emacs_strerror (xerrno));
4687 if (no_avail)
4689 FD_ZERO (&Available);
4690 check_write = 0;
4693 #if 0 /* When polling is used, interrupt_input is 0,
4694 so get_input_pending should read the input.
4695 So this should not be needed. */
4696 /* If we are using polling for input,
4697 and we see input available, make it get read now.
4698 Otherwise it might not actually get read for a second.
4699 And on hpux, since we turn off polling in wait_reading_process_output,
4700 it might never get read at all if we don't spend much time
4701 outside of wait_reading_process_output. */
4702 if (read_kbd && interrupt_input
4703 && keyboard_bit_set (&Available)
4704 && input_polling_used ())
4705 kill (getpid (), SIGALRM);
4706 #endif
4708 /* Check for keyboard input */
4709 /* If there is any, return immediately
4710 to give it higher priority than subprocesses */
4712 if (read_kbd != 0)
4714 int old_timers_run = timers_run;
4715 struct buffer *old_buffer = current_buffer;
4716 Lisp_Object old_window = selected_window;
4717 int leave = 0;
4719 if (detect_input_pending_run_timers (do_display))
4721 swallow_events (do_display);
4722 if (detect_input_pending_run_timers (do_display))
4723 leave = 1;
4726 /* If a timer has run, this might have changed buffers
4727 an alike. Make read_key_sequence aware of that. */
4728 if (timers_run != old_timers_run
4729 && waiting_for_user_input_p == -1
4730 && (old_buffer != current_buffer
4731 || !EQ (old_window, selected_window)))
4732 record_asynch_buffer_change ();
4734 if (leave)
4735 break;
4738 /* If there is unread keyboard input, also return. */
4739 if (read_kbd != 0
4740 && requeued_events_pending_p ())
4741 break;
4743 /* If we are not checking for keyboard input now,
4744 do process events (but don't run any timers).
4745 This is so that X events will be processed.
4746 Otherwise they may have to wait until polling takes place.
4747 That would causes delays in pasting selections, for example.
4749 (We used to do this only if wait_for_cell.) */
4750 if (read_kbd == 0 && detect_input_pending ())
4752 swallow_events (do_display);
4753 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
4754 if (detect_input_pending ())
4755 break;
4756 #endif
4759 /* Exit now if the cell we're waiting for became non-nil. */
4760 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4761 break;
4763 #ifdef SIGIO
4764 /* If we think we have keyboard input waiting, but didn't get SIGIO,
4765 go read it. This can happen with X on BSD after logging out.
4766 In that case, there really is no input and no SIGIO,
4767 but select says there is input. */
4769 if (read_kbd && interrupt_input
4770 && keyboard_bit_set (&Available) && ! noninteractive)
4771 kill (getpid (), SIGIO);
4772 #endif
4774 if (! wait_proc)
4775 got_some_input |= nfds > 0;
4777 /* If checking input just got us a size-change event from X,
4778 obey it now if we should. */
4779 if (read_kbd || ! NILP (wait_for_cell))
4780 do_pending_window_change (0);
4782 /* Check for data from a process. */
4783 if (no_avail || nfds == 0)
4784 continue;
4786 for (channel = 0; channel <= max_input_desc; ++channel)
4788 struct fd_callback_data *d = &fd_callback_info[channel];
4789 if (FD_ISSET (channel, &Available)
4790 && d->func != 0
4791 && (d->condition & FOR_READ) != 0)
4792 d->func (channel, d->data, 1);
4793 if (FD_ISSET (channel, &write_mask)
4794 && d->func != 0
4795 && (d->condition & FOR_WRITE) != 0)
4796 d->func (channel, d->data, 0);
4799 for (channel = 0; channel <= max_process_desc; channel++)
4801 if (FD_ISSET (channel, &Available)
4802 && FD_ISSET (channel, &non_keyboard_wait_mask)
4803 && !FD_ISSET (channel, &non_process_wait_mask))
4805 int nread;
4807 /* If waiting for this channel, arrange to return as
4808 soon as no more input to be processed. No more
4809 waiting. */
4810 if (wait_channel == channel)
4812 wait_channel = -1;
4813 time_limit = -1;
4814 got_some_input = 1;
4816 proc = chan_process[channel];
4817 if (NILP (proc))
4818 continue;
4820 /* If this is a server stream socket, accept connection. */
4821 if (EQ (XPROCESS (proc)->status, Qlisten))
4823 server_accept_connection (proc, channel);
4824 continue;
4827 /* Read data from the process, starting with our
4828 buffered-ahead character if we have one. */
4830 nread = read_process_output (proc, channel);
4831 if (nread > 0)
4833 /* Since read_process_output can run a filter,
4834 which can call accept-process-output,
4835 don't try to read from any other processes
4836 before doing the select again. */
4837 FD_ZERO (&Available);
4839 if (do_display)
4840 redisplay_preserve_echo_area (12);
4842 #ifdef EWOULDBLOCK
4843 else if (nread == -1 && errno == EWOULDBLOCK)
4845 #endif
4846 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
4847 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
4848 #ifdef O_NONBLOCK
4849 else if (nread == -1 && errno == EAGAIN)
4851 #else
4852 #ifdef O_NDELAY
4853 else if (nread == -1 && errno == EAGAIN)
4855 /* Note that we cannot distinguish between no input
4856 available now and a closed pipe.
4857 With luck, a closed pipe will be accompanied by
4858 subprocess termination and SIGCHLD. */
4859 else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc))
4861 #endif /* O_NDELAY */
4862 #endif /* O_NONBLOCK */
4863 #ifdef HAVE_PTYS
4864 /* On some OSs with ptys, when the process on one end of
4865 a pty exits, the other end gets an error reading with
4866 errno = EIO instead of getting an EOF (0 bytes read).
4867 Therefore, if we get an error reading and errno =
4868 EIO, just continue, because the child process has
4869 exited and should clean itself up soon (e.g. when we
4870 get a SIGCHLD).
4872 However, it has been known to happen that the SIGCHLD
4873 got lost. So raise the signal again just in case.
4874 It can't hurt. */
4875 else if (nread == -1 && errno == EIO)
4877 /* Clear the descriptor now, so we only raise the signal once. */
4878 FD_CLR (channel, &input_wait_mask);
4879 FD_CLR (channel, &non_keyboard_wait_mask);
4881 kill (getpid (), SIGCHLD);
4883 #endif /* HAVE_PTYS */
4884 /* If we can detect process termination, don't consider the process
4885 gone just because its pipe is closed. */
4886 #ifdef SIGCHLD
4887 else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc))
4889 #endif
4890 else
4892 /* Preserve status of processes already terminated. */
4893 XPROCESS (proc)->tick = ++process_tick;
4894 deactivate_process (proc);
4895 if (XPROCESS (proc)->raw_status_new)
4896 update_status (XPROCESS (proc));
4897 if (EQ (XPROCESS (proc)->status, Qrun))
4898 XPROCESS (proc)->status
4899 = Fcons (Qexit, Fcons (make_number (256), Qnil));
4902 #ifdef NON_BLOCKING_CONNECT
4903 if (FD_ISSET (channel, &Writeok)
4904 && FD_ISSET (channel, &connect_wait_mask))
4906 struct Lisp_Process *p;
4908 FD_CLR (channel, &connect_wait_mask);
4909 FD_CLR (channel, &write_mask);
4910 if (--num_pending_connects < 0)
4911 abort ();
4913 proc = chan_process[channel];
4914 if (NILP (proc))
4915 continue;
4917 p = XPROCESS (proc);
4919 #ifdef GNU_LINUX
4920 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
4921 So only use it on systems where it is known to work. */
4923 socklen_t xlen = sizeof (xerrno);
4924 if (getsockopt (channel, SOL_SOCKET, SO_ERROR, &xerrno, &xlen))
4925 xerrno = errno;
4927 #else
4929 struct sockaddr pname;
4930 int pnamelen = sizeof (pname);
4932 /* If connection failed, getpeername will fail. */
4933 xerrno = 0;
4934 if (getpeername (channel, &pname, &pnamelen) < 0)
4936 /* Obtain connect failure code through error slippage. */
4937 char dummy;
4938 xerrno = errno;
4939 if (errno == ENOTCONN && read (channel, &dummy, 1) < 0)
4940 xerrno = errno;
4943 #endif
4944 if (xerrno)
4946 p->tick = ++process_tick;
4947 p->status = Fcons (Qfailed, Fcons (make_number (xerrno), Qnil));
4948 deactivate_process (proc);
4950 else
4952 p->status = Qrun;
4953 /* Execute the sentinel here. If we had relied on
4954 status_notify to do it later, it will read input
4955 from the process before calling the sentinel. */
4956 exec_sentinel (proc, build_string ("open\n"));
4957 if (!EQ (p->filter, Qt) && !EQ (p->command, Qt))
4959 FD_SET (p->infd, &input_wait_mask);
4960 FD_SET (p->infd, &non_keyboard_wait_mask);
4964 #endif /* NON_BLOCKING_CONNECT */
4965 } /* end for each file descriptor */
4966 } /* end while exit conditions not met */
4968 unbind_to (count, Qnil);
4970 /* If calling from keyboard input, do not quit
4971 since we want to return C-g as an input character.
4972 Otherwise, do pending quit if requested. */
4973 if (read_kbd >= 0)
4975 /* Prevent input_pending from remaining set if we quit. */
4976 clear_input_pending ();
4977 QUIT;
4980 return got_some_input;
4983 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
4985 static Lisp_Object
4986 read_process_output_call (Lisp_Object fun_and_args)
4988 return apply1 (XCAR (fun_and_args), XCDR (fun_and_args));
4991 static Lisp_Object
4992 read_process_output_error_handler (Lisp_Object error_val)
4994 cmd_error_internal (error_val, "error in process filter: ");
4995 Vinhibit_quit = Qt;
4996 update_echo_area ();
4997 Fsleep_for (make_number (2), Qnil);
4998 return Qt;
5001 /* Read pending output from the process channel,
5002 starting with our buffered-ahead character if we have one.
5003 Yield number of decoded characters read.
5005 This function reads at most 4096 characters.
5006 If you want to read all available subprocess output,
5007 you must call it repeatedly until it returns zero.
5009 The characters read are decoded according to PROC's coding-system
5010 for decoding. */
5012 static int
5013 read_process_output (Lisp_Object proc, register int channel)
5015 register ssize_t nbytes;
5016 char *chars;
5017 register Lisp_Object outstream;
5018 register struct Lisp_Process *p = XPROCESS (proc);
5019 register ptrdiff_t opoint;
5020 struct coding_system *coding = proc_decode_coding_system[channel];
5021 int carryover = p->decoding_carryover;
5022 int readmax = 4096;
5023 ptrdiff_t count = SPECPDL_INDEX ();
5024 Lisp_Object odeactivate;
5026 chars = (char *) alloca (carryover + readmax);
5027 if (carryover)
5028 /* See the comment above. */
5029 memcpy (chars, SDATA (p->decoding_buf), carryover);
5031 #ifdef DATAGRAM_SOCKETS
5032 /* We have a working select, so proc_buffered_char is always -1. */
5033 if (DATAGRAM_CHAN_P (channel))
5035 socklen_t len = datagram_address[channel].len;
5036 nbytes = recvfrom (channel, chars + carryover, readmax,
5037 0, datagram_address[channel].sa, &len);
5039 else
5040 #endif
5042 int buffered = 0 <= proc_buffered_char[channel];
5043 if (buffered)
5045 chars[carryover] = proc_buffered_char[channel];
5046 proc_buffered_char[channel] = -1;
5048 #ifdef HAVE_GNUTLS
5049 if (XPROCESS (proc)->gnutls_p)
5050 nbytes = emacs_gnutls_read (XPROCESS (proc),
5051 chars + carryover + buffered,
5052 readmax - buffered);
5053 else
5054 #endif
5055 nbytes = emacs_read (channel, chars + carryover + buffered,
5056 readmax - buffered);
5057 #ifdef ADAPTIVE_READ_BUFFERING
5058 if (nbytes > 0 && p->adaptive_read_buffering)
5060 int delay = p->read_output_delay;
5061 if (nbytes < 256)
5063 if (delay < READ_OUTPUT_DELAY_MAX_MAX)
5065 if (delay == 0)
5066 process_output_delay_count++;
5067 delay += READ_OUTPUT_DELAY_INCREMENT * 2;
5070 else if (delay > 0 && nbytes == readmax - buffered)
5072 delay -= READ_OUTPUT_DELAY_INCREMENT;
5073 if (delay == 0)
5074 process_output_delay_count--;
5076 p->read_output_delay = delay;
5077 if (delay)
5079 p->read_output_skip = 1;
5080 process_output_skip = 1;
5083 #endif
5084 nbytes += buffered;
5085 nbytes += buffered && nbytes <= 0;
5088 p->decoding_carryover = 0;
5090 /* At this point, NBYTES holds number of bytes just received
5091 (including the one in proc_buffered_char[channel]). */
5092 if (nbytes <= 0)
5094 if (nbytes < 0 || coding->mode & CODING_MODE_LAST_BLOCK)
5095 return nbytes;
5096 coding->mode |= CODING_MODE_LAST_BLOCK;
5099 /* Now set NBYTES how many bytes we must decode. */
5100 nbytes += carryover;
5102 odeactivate = Vdeactivate_mark;
5103 /* There's no good reason to let process filters change the current
5104 buffer, and many callers of accept-process-output, sit-for, and
5105 friends don't expect current-buffer to be changed from under them. */
5106 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
5108 /* Read and dispose of the process output. */
5109 outstream = p->filter;
5110 if (!NILP (outstream))
5112 Lisp_Object text;
5113 int outer_running_asynch_code = running_asynch_code;
5114 int waiting = waiting_for_user_input_p;
5116 /* No need to gcpro these, because all we do with them later
5117 is test them for EQness, and none of them should be a string. */
5118 #if 0
5119 Lisp_Object obuffer, okeymap;
5120 XSETBUFFER (obuffer, current_buffer);
5121 okeymap = BVAR (current_buffer, keymap);
5122 #endif
5124 /* We inhibit quit here instead of just catching it so that
5125 hitting ^G when a filter happens to be running won't screw
5126 it up. */
5127 specbind (Qinhibit_quit, Qt);
5128 specbind (Qlast_nonmenu_event, Qt);
5130 /* In case we get recursively called,
5131 and we already saved the match data nonrecursively,
5132 save the same match data in safely recursive fashion. */
5133 if (outer_running_asynch_code)
5135 Lisp_Object tem;
5136 /* Don't clobber the CURRENT match data, either! */
5137 tem = Fmatch_data (Qnil, Qnil, Qnil);
5138 restore_search_regs ();
5139 record_unwind_save_match_data ();
5140 Fset_match_data (tem, Qt);
5143 /* For speed, if a search happens within this code,
5144 save the match data in a special nonrecursive fashion. */
5145 running_asynch_code = 1;
5147 decode_coding_c_string (coding, (unsigned char *) chars, nbytes, Qt);
5148 text = coding->dst_object;
5149 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5150 /* A new coding system might be found. */
5151 if (!EQ (p->decode_coding_system, Vlast_coding_system_used))
5153 p->decode_coding_system = Vlast_coding_system_used;
5155 /* Don't call setup_coding_system for
5156 proc_decode_coding_system[channel] here. It is done in
5157 detect_coding called via decode_coding above. */
5159 /* If a coding system for encoding is not yet decided, we set
5160 it as the same as coding-system for decoding.
5162 But, before doing that we must check if
5163 proc_encode_coding_system[p->outfd] surely points to a
5164 valid memory because p->outfd will be changed once EOF is
5165 sent to the process. */
5166 if (NILP (p->encode_coding_system)
5167 && proc_encode_coding_system[p->outfd])
5169 p->encode_coding_system
5170 = coding_inherit_eol_type (Vlast_coding_system_used, Qnil);
5171 setup_coding_system (p->encode_coding_system,
5172 proc_encode_coding_system[p->outfd]);
5176 if (coding->carryover_bytes > 0)
5178 if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
5179 p->decoding_buf = make_uninit_string (coding->carryover_bytes);
5180 memcpy (SDATA (p->decoding_buf), coding->carryover,
5181 coding->carryover_bytes);
5182 p->decoding_carryover = coding->carryover_bytes;
5184 if (SBYTES (text) > 0)
5185 /* FIXME: It's wrong to wrap or not based on debug-on-error, and
5186 sometimes it's simply wrong to wrap (e.g. when called from
5187 accept-process-output). */
5188 internal_condition_case_1 (read_process_output_call,
5189 Fcons (outstream,
5190 Fcons (proc, Fcons (text, Qnil))),
5191 !NILP (Vdebug_on_error) ? Qnil : Qerror,
5192 read_process_output_error_handler);
5194 /* If we saved the match data nonrecursively, restore it now. */
5195 restore_search_regs ();
5196 running_asynch_code = outer_running_asynch_code;
5198 /* Restore waiting_for_user_input_p as it was
5199 when we were called, in case the filter clobbered it. */
5200 waiting_for_user_input_p = waiting;
5202 #if 0 /* Call record_asynch_buffer_change unconditionally,
5203 because we might have changed minor modes or other things
5204 that affect key bindings. */
5205 if (! EQ (Fcurrent_buffer (), obuffer)
5206 || ! EQ (current_buffer->keymap, okeymap))
5207 #endif
5208 /* But do it only if the caller is actually going to read events.
5209 Otherwise there's no need to make him wake up, and it could
5210 cause trouble (for example it would make sit_for return). */
5211 if (waiting_for_user_input_p == -1)
5212 record_asynch_buffer_change ();
5215 /* If no filter, write into buffer if it isn't dead. */
5216 else if (!NILP (p->buffer) && !NILP (BVAR (XBUFFER (p->buffer), name)))
5218 Lisp_Object old_read_only;
5219 ptrdiff_t old_begv, old_zv;
5220 ptrdiff_t old_begv_byte, old_zv_byte;
5221 ptrdiff_t before, before_byte;
5222 ptrdiff_t opoint_byte;
5223 Lisp_Object text;
5224 struct buffer *b;
5226 Fset_buffer (p->buffer);
5227 opoint = PT;
5228 opoint_byte = PT_BYTE;
5229 old_read_only = BVAR (current_buffer, read_only);
5230 old_begv = BEGV;
5231 old_zv = ZV;
5232 old_begv_byte = BEGV_BYTE;
5233 old_zv_byte = ZV_BYTE;
5235 BVAR (current_buffer, read_only) = Qnil;
5237 /* Insert new output into buffer
5238 at the current end-of-output marker,
5239 thus preserving logical ordering of input and output. */
5240 if (XMARKER (p->mark)->buffer)
5241 SET_PT_BOTH (clip_to_bounds (BEGV, marker_position (p->mark), ZV),
5242 clip_to_bounds (BEGV_BYTE, marker_byte_position (p->mark),
5243 ZV_BYTE));
5244 else
5245 SET_PT_BOTH (ZV, ZV_BYTE);
5246 before = PT;
5247 before_byte = PT_BYTE;
5249 /* If the output marker is outside of the visible region, save
5250 the restriction and widen. */
5251 if (! (BEGV <= PT && PT <= ZV))
5252 Fwiden ();
5254 decode_coding_c_string (coding, (unsigned char *) chars, nbytes, Qt);
5255 text = coding->dst_object;
5256 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5257 /* A new coding system might be found. See the comment in the
5258 similar code in the previous `if' block. */
5259 if (!EQ (p->decode_coding_system, Vlast_coding_system_used))
5261 p->decode_coding_system = Vlast_coding_system_used;
5262 if (NILP (p->encode_coding_system)
5263 && proc_encode_coding_system[p->outfd])
5265 p->encode_coding_system
5266 = coding_inherit_eol_type (Vlast_coding_system_used, Qnil);
5267 setup_coding_system (p->encode_coding_system,
5268 proc_encode_coding_system[p->outfd]);
5271 if (coding->carryover_bytes > 0)
5273 if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
5274 p->decoding_buf = make_uninit_string (coding->carryover_bytes);
5275 memcpy (SDATA (p->decoding_buf), coding->carryover,
5276 coding->carryover_bytes);
5277 p->decoding_carryover = coding->carryover_bytes;
5279 /* Adjust the multibyteness of TEXT to that of the buffer. */
5280 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
5281 != ! STRING_MULTIBYTE (text))
5282 text = (STRING_MULTIBYTE (text)
5283 ? Fstring_as_unibyte (text)
5284 : Fstring_to_multibyte (text));
5285 /* Insert before markers in case we are inserting where
5286 the buffer's mark is, and the user's next command is Meta-y. */
5287 insert_from_string_before_markers (text, 0, 0,
5288 SCHARS (text), SBYTES (text), 0);
5290 /* Make sure the process marker's position is valid when the
5291 process buffer is changed in the signal_after_change above.
5292 W3 is known to do that. */
5293 if (BUFFERP (p->buffer)
5294 && (b = XBUFFER (p->buffer), b != current_buffer))
5295 set_marker_both (p->mark, p->buffer, BUF_PT (b), BUF_PT_BYTE (b));
5296 else
5297 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
5299 update_mode_lines++;
5301 /* Make sure opoint and the old restrictions
5302 float ahead of any new text just as point would. */
5303 if (opoint >= before)
5305 opoint += PT - before;
5306 opoint_byte += PT_BYTE - before_byte;
5308 if (old_begv > before)
5310 old_begv += PT - before;
5311 old_begv_byte += PT_BYTE - before_byte;
5313 if (old_zv >= before)
5315 old_zv += PT - before;
5316 old_zv_byte += PT_BYTE - before_byte;
5319 /* If the restriction isn't what it should be, set it. */
5320 if (old_begv != BEGV || old_zv != ZV)
5321 Fnarrow_to_region (make_number (old_begv), make_number (old_zv));
5324 BVAR (current_buffer, read_only) = old_read_only;
5325 SET_PT_BOTH (opoint, opoint_byte);
5327 /* Handling the process output should not deactivate the mark. */
5328 Vdeactivate_mark = odeactivate;
5330 unbind_to (count, Qnil);
5331 return nbytes;
5334 /* Sending data to subprocess */
5336 static jmp_buf send_process_frame;
5337 static Lisp_Object process_sent_to;
5339 #ifndef FORWARD_SIGNAL_TO_MAIN_THREAD
5340 static void send_process_trap (int) NO_RETURN;
5341 #endif
5343 static void
5344 send_process_trap (int ignore)
5346 SIGNAL_THREAD_CHECK (SIGPIPE);
5347 sigunblock (sigmask (SIGPIPE));
5348 longjmp (send_process_frame, 1);
5351 /* Send some data to process PROC.
5352 BUF is the beginning of the data; LEN is the number of characters.
5353 OBJECT is the Lisp object that the data comes from. If OBJECT is
5354 nil or t, it means that the data comes from C string.
5356 If OBJECT is not nil, the data is encoded by PROC's coding-system
5357 for encoding before it is sent.
5359 This function can evaluate Lisp code and can garbage collect. */
5361 static void
5362 send_process (volatile Lisp_Object proc, const char *volatile buf,
5363 volatile ptrdiff_t len, volatile Lisp_Object object)
5365 /* Use volatile to protect variables from being clobbered by longjmp. */
5366 struct Lisp_Process *p = XPROCESS (proc);
5367 ssize_t rv;
5368 struct coding_system *coding;
5369 struct gcpro gcpro1;
5370 void (*volatile old_sigpipe) (int);
5372 GCPRO1 (object);
5374 if (p->raw_status_new)
5375 update_status (p);
5376 if (! EQ (p->status, Qrun))
5377 error ("Process %s not running", SDATA (p->name));
5378 if (p->outfd < 0)
5379 error ("Output file descriptor of %s is closed", SDATA (p->name));
5381 coding = proc_encode_coding_system[p->outfd];
5382 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5384 if ((STRINGP (object) && STRING_MULTIBYTE (object))
5385 || (BUFFERP (object)
5386 && !NILP (BVAR (XBUFFER (object), enable_multibyte_characters)))
5387 || EQ (object, Qt))
5389 p->encode_coding_system
5390 = complement_process_encoding_system (p->encode_coding_system);
5391 if (!EQ (Vlast_coding_system_used, p->encode_coding_system))
5393 /* The coding system for encoding was changed to raw-text
5394 because we sent a unibyte text previously. Now we are
5395 sending a multibyte text, thus we must encode it by the
5396 original coding system specified for the current process.
5398 Another reason we come here is that the coding system
5399 was just complemented and a new one was returned by
5400 complement_process_encoding_system. */
5401 setup_coding_system (p->encode_coding_system, coding);
5402 Vlast_coding_system_used = p->encode_coding_system;
5404 coding->src_multibyte = 1;
5406 else
5408 coding->src_multibyte = 0;
5409 /* For sending a unibyte text, character code conversion should
5410 not take place but EOL conversion should. So, setup raw-text
5411 or one of the subsidiary if we have not yet done it. */
5412 if (CODING_REQUIRE_ENCODING (coding))
5414 if (CODING_REQUIRE_FLUSHING (coding))
5416 /* But, before changing the coding, we must flush out data. */
5417 coding->mode |= CODING_MODE_LAST_BLOCK;
5418 send_process (proc, "", 0, Qt);
5419 coding->mode &= CODING_MODE_LAST_BLOCK;
5421 setup_coding_system (raw_text_coding_system
5422 (Vlast_coding_system_used),
5423 coding);
5424 coding->src_multibyte = 0;
5427 coding->dst_multibyte = 0;
5429 if (CODING_REQUIRE_ENCODING (coding))
5431 coding->dst_object = Qt;
5432 if (BUFFERP (object))
5434 ptrdiff_t from_byte, from, to;
5435 ptrdiff_t save_pt, save_pt_byte;
5436 struct buffer *cur = current_buffer;
5438 set_buffer_internal (XBUFFER (object));
5439 save_pt = PT, save_pt_byte = PT_BYTE;
5441 from_byte = PTR_BYTE_POS ((unsigned char *) buf);
5442 from = BYTE_TO_CHAR (from_byte);
5443 to = BYTE_TO_CHAR (from_byte + len);
5444 TEMP_SET_PT_BOTH (from, from_byte);
5445 encode_coding_object (coding, object, from, from_byte,
5446 to, from_byte + len, Qt);
5447 TEMP_SET_PT_BOTH (save_pt, save_pt_byte);
5448 set_buffer_internal (cur);
5450 else if (STRINGP (object))
5452 encode_coding_object (coding, object, 0, 0, SCHARS (object),
5453 SBYTES (object), Qt);
5455 else
5457 coding->dst_object = make_unibyte_string (buf, len);
5458 coding->produced = len;
5461 len = coding->produced;
5462 object = coding->dst_object;
5463 buf = SSDATA (object);
5466 if (pty_max_bytes == 0)
5468 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
5469 pty_max_bytes = fpathconf (p->outfd, _PC_MAX_CANON);
5470 if (pty_max_bytes < 0)
5471 pty_max_bytes = 250;
5472 #else
5473 pty_max_bytes = 250;
5474 #endif
5475 /* Deduct one, to leave space for the eof. */
5476 pty_max_bytes--;
5479 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
5480 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
5481 when returning with longjmp despite being declared volatile. */
5482 if (!setjmp (send_process_frame))
5484 p = XPROCESS (proc); /* Repair any setjmp clobbering. */
5486 process_sent_to = proc;
5487 while (len > 0)
5489 ptrdiff_t this = len;
5491 /* Send this batch, using one or more write calls. */
5492 while (this > 0)
5494 ptrdiff_t written = 0;
5495 int outfd = p->outfd;
5496 old_sigpipe = (void (*) (int)) signal (SIGPIPE, send_process_trap);
5497 #ifdef DATAGRAM_SOCKETS
5498 if (DATAGRAM_CHAN_P (outfd))
5500 rv = sendto (outfd, buf, this,
5501 0, datagram_address[outfd].sa,
5502 datagram_address[outfd].len);
5503 if (0 <= rv)
5504 written = rv;
5505 else if (errno == EMSGSIZE)
5507 signal (SIGPIPE, old_sigpipe);
5508 report_file_error ("sending datagram",
5509 Fcons (proc, Qnil));
5512 else
5513 #endif
5515 #ifdef HAVE_GNUTLS
5516 if (XPROCESS (proc)->gnutls_p)
5517 written = emacs_gnutls_write (XPROCESS (proc),
5518 buf, this);
5519 else
5520 #endif
5521 written = emacs_write (outfd, buf, this);
5522 rv = (written ? 0 : -1);
5523 #ifdef ADAPTIVE_READ_BUFFERING
5524 if (p->read_output_delay > 0
5525 && p->adaptive_read_buffering == 1)
5527 p->read_output_delay = 0;
5528 process_output_delay_count--;
5529 p->read_output_skip = 0;
5531 #endif
5533 signal (SIGPIPE, old_sigpipe);
5535 if (rv < 0)
5537 if (0
5538 #ifdef EWOULDBLOCK
5539 || errno == EWOULDBLOCK
5540 #endif
5541 #ifdef EAGAIN
5542 || errno == EAGAIN
5543 #endif
5545 /* Buffer is full. Wait, accepting input;
5546 that may allow the program
5547 to finish doing output and read more. */
5549 ptrdiff_t offset = 0;
5551 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
5552 /* A gross hack to work around a bug in FreeBSD.
5553 In the following sequence, read(2) returns
5554 bogus data:
5556 write(2) 1022 bytes
5557 write(2) 954 bytes, get EAGAIN
5558 read(2) 1024 bytes in process_read_output
5559 read(2) 11 bytes in process_read_output
5561 That is, read(2) returns more bytes than have
5562 ever been written successfully. The 1033 bytes
5563 read are the 1022 bytes written successfully
5564 after processing (for example with CRs added if
5565 the terminal is set up that way which it is
5566 here). The same bytes will be seen again in a
5567 later read(2), without the CRs. */
5569 if (errno == EAGAIN)
5571 int flags = FWRITE;
5572 ioctl (p->outfd, TIOCFLUSH, &flags);
5574 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5576 /* Running filters might relocate buffers or strings.
5577 Arrange to relocate BUF. */
5578 if (BUFFERP (object))
5579 offset = BUF_PTR_BYTE_POS (XBUFFER (object),
5580 (unsigned char *) buf);
5581 else if (STRINGP (object))
5582 offset = buf - SSDATA (object);
5584 #ifdef EMACS_HAS_USECS
5585 wait_reading_process_output (0, 20000, 0, 0, Qnil, NULL, 0);
5586 #else
5587 wait_reading_process_output (1, 0, 0, 0, Qnil, NULL, 0);
5588 #endif
5590 if (BUFFERP (object))
5591 buf = (char *) BUF_BYTE_ADDRESS (XBUFFER (object),
5592 offset);
5593 else if (STRINGP (object))
5594 buf = offset + SSDATA (object);
5596 else
5597 /* This is a real error. */
5598 report_file_error ("writing to process", Fcons (proc, Qnil));
5600 buf += written;
5601 len -= written;
5602 this -= written;
5606 else
5608 signal (SIGPIPE, old_sigpipe);
5609 proc = process_sent_to;
5610 p = XPROCESS (proc);
5611 p->raw_status_new = 0;
5612 p->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
5613 p->tick = ++process_tick;
5614 deactivate_process (proc);
5615 error ("SIGPIPE raised on process %s; closed it", SDATA (p->name));
5618 UNGCPRO;
5621 DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
5622 3, 3, 0,
5623 doc: /* Send current contents of region as input to PROCESS.
5624 PROCESS may be a process, a buffer, the name of a process or buffer, or
5625 nil, indicating the current buffer's process.
5626 Called from program, takes three arguments, PROCESS, START and END.
5627 If the region is more than 500 characters long,
5628 it is sent in several bunches. This may happen even for shorter regions.
5629 Output from processes can arrive in between bunches. */)
5630 (Lisp_Object process, Lisp_Object start, Lisp_Object end)
5632 Lisp_Object proc;
5633 ptrdiff_t start1, end1;
5635 proc = get_process (process);
5636 validate_region (&start, &end);
5638 if (XINT (start) < GPT && XINT (end) > GPT)
5639 move_gap (XINT (start));
5641 start1 = CHAR_TO_BYTE (XINT (start));
5642 end1 = CHAR_TO_BYTE (XINT (end));
5643 send_process (proc, (char *) BYTE_POS_ADDR (start1), end1 - start1,
5644 Fcurrent_buffer ());
5646 return Qnil;
5649 DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
5650 2, 2, 0,
5651 doc: /* Send PROCESS the contents of STRING as input.
5652 PROCESS may be a process, a buffer, the name of a process or buffer, or
5653 nil, indicating the current buffer's process.
5654 If STRING is more than 500 characters long,
5655 it is sent in several bunches. This may happen even for shorter strings.
5656 Output from processes can arrive in between bunches. */)
5657 (Lisp_Object process, Lisp_Object string)
5659 Lisp_Object proc;
5660 CHECK_STRING (string);
5661 proc = get_process (process);
5662 send_process (proc, SSDATA (string),
5663 SBYTES (string), string);
5664 return Qnil;
5667 /* Return the foreground process group for the tty/pty that
5668 the process P uses. */
5669 static pid_t
5670 emacs_get_tty_pgrp (struct Lisp_Process *p)
5672 pid_t gid = -1;
5674 #ifdef TIOCGPGRP
5675 if (ioctl (p->infd, TIOCGPGRP, &gid) == -1 && ! NILP (p->tty_name))
5677 int fd;
5678 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
5679 master side. Try the slave side. */
5680 fd = emacs_open (SSDATA (p->tty_name), O_RDONLY, 0);
5682 if (fd != -1)
5684 ioctl (fd, TIOCGPGRP, &gid);
5685 emacs_close (fd);
5688 #endif /* defined (TIOCGPGRP ) */
5690 return gid;
5693 DEFUN ("process-running-child-p", Fprocess_running_child_p,
5694 Sprocess_running_child_p, 0, 1, 0,
5695 doc: /* Return t if PROCESS has given the terminal to a child.
5696 If the operating system does not make it possible to find out,
5697 return t unconditionally. */)
5698 (Lisp_Object process)
5700 /* Initialize in case ioctl doesn't exist or gives an error,
5701 in a way that will cause returning t. */
5702 pid_t gid;
5703 Lisp_Object proc;
5704 struct Lisp_Process *p;
5706 proc = get_process (process);
5707 p = XPROCESS (proc);
5709 if (!EQ (p->type, Qreal))
5710 error ("Process %s is not a subprocess",
5711 SDATA (p->name));
5712 if (p->infd < 0)
5713 error ("Process %s is not active",
5714 SDATA (p->name));
5716 gid = emacs_get_tty_pgrp (p);
5718 if (gid == p->pid)
5719 return Qnil;
5720 return Qt;
5723 /* send a signal number SIGNO to PROCESS.
5724 If CURRENT_GROUP is t, that means send to the process group
5725 that currently owns the terminal being used to communicate with PROCESS.
5726 This is used for various commands in shell mode.
5727 If CURRENT_GROUP is lambda, that means send to the process group
5728 that currently owns the terminal, but only if it is NOT the shell itself.
5730 If NOMSG is zero, insert signal-announcements into process's buffers
5731 right away.
5733 If we can, we try to signal PROCESS by sending control characters
5734 down the pty. This allows us to signal inferiors who have changed
5735 their uid, for which killpg would return an EPERM error. */
5737 static void
5738 process_send_signal (Lisp_Object process, int signo, Lisp_Object current_group,
5739 int nomsg)
5741 Lisp_Object proc;
5742 register struct Lisp_Process *p;
5743 pid_t gid;
5744 int no_pgrp = 0;
5746 proc = get_process (process);
5747 p = XPROCESS (proc);
5749 if (!EQ (p->type, Qreal))
5750 error ("Process %s is not a subprocess",
5751 SDATA (p->name));
5752 if (p->infd < 0)
5753 error ("Process %s is not active",
5754 SDATA (p->name));
5756 if (!p->pty_flag)
5757 current_group = Qnil;
5759 /* If we are using pgrps, get a pgrp number and make it negative. */
5760 if (NILP (current_group))
5761 /* Send the signal to the shell's process group. */
5762 gid = p->pid;
5763 else
5765 #ifdef SIGNALS_VIA_CHARACTERS
5766 /* If possible, send signals to the entire pgrp
5767 by sending an input character to it. */
5769 struct termios t;
5770 cc_t *sig_char = NULL;
5772 tcgetattr (p->infd, &t);
5774 switch (signo)
5776 case SIGINT:
5777 sig_char = &t.c_cc[VINTR];
5778 break;
5780 case SIGQUIT:
5781 sig_char = &t.c_cc[VQUIT];
5782 break;
5784 case SIGTSTP:
5785 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
5786 sig_char = &t.c_cc[VSWTCH];
5787 #else
5788 sig_char = &t.c_cc[VSUSP];
5789 #endif
5790 break;
5793 if (sig_char && *sig_char != CDISABLE)
5795 send_process (proc, (char *) sig_char, 1, Qnil);
5796 return;
5798 /* If we can't send the signal with a character,
5799 fall through and send it another way. */
5801 /* The code above may fall through if it can't
5802 handle the signal. */
5803 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
5805 #ifdef TIOCGPGRP
5806 /* Get the current pgrp using the tty itself, if we have that.
5807 Otherwise, use the pty to get the pgrp.
5808 On pfa systems, saka@pfu.fujitsu.co.JP writes:
5809 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
5810 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
5811 His patch indicates that if TIOCGPGRP returns an error, then
5812 we should just assume that p->pid is also the process group id. */
5814 gid = emacs_get_tty_pgrp (p);
5816 if (gid == -1)
5817 /* If we can't get the information, assume
5818 the shell owns the tty. */
5819 gid = p->pid;
5821 /* It is not clear whether anything really can set GID to -1.
5822 Perhaps on some system one of those ioctls can or could do so.
5823 Or perhaps this is vestigial. */
5824 if (gid == -1)
5825 no_pgrp = 1;
5826 #else /* ! defined (TIOCGPGRP ) */
5827 /* Can't select pgrps on this system, so we know that
5828 the child itself heads the pgrp. */
5829 gid = p->pid;
5830 #endif /* ! defined (TIOCGPGRP ) */
5832 /* If current_group is lambda, and the shell owns the terminal,
5833 don't send any signal. */
5834 if (EQ (current_group, Qlambda) && gid == p->pid)
5835 return;
5838 switch (signo)
5840 #ifdef SIGCONT
5841 case SIGCONT:
5842 p->raw_status_new = 0;
5843 p->status = Qrun;
5844 p->tick = ++process_tick;
5845 if (!nomsg)
5847 status_notify (NULL);
5848 redisplay_preserve_echo_area (13);
5850 break;
5851 #endif /* ! defined (SIGCONT) */
5852 case SIGINT:
5853 case SIGQUIT:
5854 case SIGKILL:
5855 flush_pending_output (p->infd);
5856 break;
5859 /* If we don't have process groups, send the signal to the immediate
5860 subprocess. That isn't really right, but it's better than any
5861 obvious alternative. */
5862 if (no_pgrp)
5864 kill (p->pid, signo);
5865 return;
5868 /* gid may be a pid, or minus a pgrp's number */
5869 #ifdef TIOCSIGSEND
5870 if (!NILP (current_group))
5872 if (ioctl (p->infd, TIOCSIGSEND, signo) == -1)
5873 EMACS_KILLPG (gid, signo);
5875 else
5877 gid = - p->pid;
5878 kill (gid, signo);
5880 #else /* ! defined (TIOCSIGSEND) */
5881 EMACS_KILLPG (gid, signo);
5882 #endif /* ! defined (TIOCSIGSEND) */
5885 DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
5886 doc: /* Interrupt process PROCESS.
5887 PROCESS may be a process, a buffer, or the name of a process or buffer.
5888 No arg or nil means current buffer's process.
5889 Second arg CURRENT-GROUP non-nil means send signal to
5890 the current process-group of the process's controlling terminal
5891 rather than to the process's own process group.
5892 If the process is a shell, this means interrupt current subjob
5893 rather than the shell.
5895 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
5896 don't send the signal. */)
5897 (Lisp_Object process, Lisp_Object current_group)
5899 process_send_signal (process, SIGINT, current_group, 0);
5900 return process;
5903 DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
5904 doc: /* Kill process PROCESS. May be process or name of one.
5905 See function `interrupt-process' for more details on usage. */)
5906 (Lisp_Object process, Lisp_Object current_group)
5908 process_send_signal (process, SIGKILL, current_group, 0);
5909 return process;
5912 DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
5913 doc: /* Send QUIT signal to process PROCESS. May be process or name of one.
5914 See function `interrupt-process' for more details on usage. */)
5915 (Lisp_Object process, Lisp_Object current_group)
5917 process_send_signal (process, SIGQUIT, current_group, 0);
5918 return process;
5921 DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
5922 doc: /* Stop process PROCESS. May be process or name of one.
5923 See function `interrupt-process' for more details on usage.
5924 If PROCESS is a network or serial process, inhibit handling of incoming
5925 traffic. */)
5926 (Lisp_Object process, Lisp_Object current_group)
5928 if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process)))
5930 struct Lisp_Process *p;
5932 p = XPROCESS (process);
5933 if (NILP (p->command)
5934 && p->infd >= 0)
5936 FD_CLR (p->infd, &input_wait_mask);
5937 FD_CLR (p->infd, &non_keyboard_wait_mask);
5939 p->command = Qt;
5940 return process;
5942 #ifndef SIGTSTP
5943 error ("No SIGTSTP support");
5944 #else
5945 process_send_signal (process, SIGTSTP, current_group, 0);
5946 #endif
5947 return process;
5950 DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
5951 doc: /* Continue process PROCESS. May be process or name of one.
5952 See function `interrupt-process' for more details on usage.
5953 If PROCESS is a network or serial process, resume handling of incoming
5954 traffic. */)
5955 (Lisp_Object process, Lisp_Object current_group)
5957 if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process)))
5959 struct Lisp_Process *p;
5961 p = XPROCESS (process);
5962 if (EQ (p->command, Qt)
5963 && p->infd >= 0
5964 && (!EQ (p->filter, Qt) || EQ (p->status, Qlisten)))
5966 FD_SET (p->infd, &input_wait_mask);
5967 FD_SET (p->infd, &non_keyboard_wait_mask);
5968 #ifdef WINDOWSNT
5969 if (fd_info[ p->infd ].flags & FILE_SERIAL)
5970 PurgeComm (fd_info[ p->infd ].hnd, PURGE_RXABORT | PURGE_RXCLEAR);
5971 #else /* not WINDOWSNT */
5972 tcflush (p->infd, TCIFLUSH);
5973 #endif /* not WINDOWSNT */
5975 p->command = Qnil;
5976 return process;
5978 #ifdef SIGCONT
5979 process_send_signal (process, SIGCONT, current_group, 0);
5980 #else
5981 error ("No SIGCONT support");
5982 #endif
5983 return process;
5986 DEFUN ("signal-process", Fsignal_process, Ssignal_process,
5987 2, 2, "sProcess (name or number): \nnSignal code: ",
5988 doc: /* Send PROCESS the signal with code SIGCODE.
5989 PROCESS may also be a number specifying the process id of the
5990 process to signal; in this case, the process need not be a child of
5991 this Emacs.
5992 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
5993 (Lisp_Object process, Lisp_Object sigcode)
5995 pid_t pid;
5997 if (STRINGP (process))
5999 Lisp_Object tem = Fget_process (process);
6000 if (NILP (tem))
6002 Lisp_Object process_number =
6003 string_to_number (SSDATA (process), 10, 1);
6004 if (INTEGERP (process_number) || FLOATP (process_number))
6005 tem = process_number;
6007 process = tem;
6009 else if (!NUMBERP (process))
6010 process = get_process (process);
6012 if (NILP (process))
6013 return process;
6015 if (NUMBERP (process))
6016 CONS_TO_INTEGER (process, pid_t, pid);
6017 else
6019 CHECK_PROCESS (process);
6020 pid = XPROCESS (process)->pid;
6021 if (pid <= 0)
6022 error ("Cannot signal process %s", SDATA (XPROCESS (process)->name));
6025 #define parse_signal(NAME, VALUE) \
6026 else if (!xstrcasecmp (name, NAME)) \
6027 XSETINT (sigcode, VALUE)
6029 if (INTEGERP (sigcode))
6030 CHECK_TYPE_RANGED_INTEGER (int, sigcode);
6031 else
6033 char *name;
6035 CHECK_SYMBOL (sigcode);
6036 name = SSDATA (SYMBOL_NAME (sigcode));
6038 if (!strncmp (name, "SIG", 3) || !strncmp (name, "sig", 3))
6039 name += 3;
6041 if (0)
6043 #ifdef SIGUSR1
6044 parse_signal ("usr1", SIGUSR1);
6045 #endif
6046 #ifdef SIGUSR2
6047 parse_signal ("usr2", SIGUSR2);
6048 #endif
6049 #ifdef SIGTERM
6050 parse_signal ("term", SIGTERM);
6051 #endif
6052 #ifdef SIGHUP
6053 parse_signal ("hup", SIGHUP);
6054 #endif
6055 #ifdef SIGINT
6056 parse_signal ("int", SIGINT);
6057 #endif
6058 #ifdef SIGQUIT
6059 parse_signal ("quit", SIGQUIT);
6060 #endif
6061 #ifdef SIGILL
6062 parse_signal ("ill", SIGILL);
6063 #endif
6064 #ifdef SIGABRT
6065 parse_signal ("abrt", SIGABRT);
6066 #endif
6067 #ifdef SIGEMT
6068 parse_signal ("emt", SIGEMT);
6069 #endif
6070 #ifdef SIGKILL
6071 parse_signal ("kill", SIGKILL);
6072 #endif
6073 #ifdef SIGFPE
6074 parse_signal ("fpe", SIGFPE);
6075 #endif
6076 #ifdef SIGBUS
6077 parse_signal ("bus", SIGBUS);
6078 #endif
6079 #ifdef SIGSEGV
6080 parse_signal ("segv", SIGSEGV);
6081 #endif
6082 #ifdef SIGSYS
6083 parse_signal ("sys", SIGSYS);
6084 #endif
6085 #ifdef SIGPIPE
6086 parse_signal ("pipe", SIGPIPE);
6087 #endif
6088 #ifdef SIGALRM
6089 parse_signal ("alrm", SIGALRM);
6090 #endif
6091 #ifdef SIGURG
6092 parse_signal ("urg", SIGURG);
6093 #endif
6094 #ifdef SIGSTOP
6095 parse_signal ("stop", SIGSTOP);
6096 #endif
6097 #ifdef SIGTSTP
6098 parse_signal ("tstp", SIGTSTP);
6099 #endif
6100 #ifdef SIGCONT
6101 parse_signal ("cont", SIGCONT);
6102 #endif
6103 #ifdef SIGCHLD
6104 parse_signal ("chld", SIGCHLD);
6105 #endif
6106 #ifdef SIGTTIN
6107 parse_signal ("ttin", SIGTTIN);
6108 #endif
6109 #ifdef SIGTTOU
6110 parse_signal ("ttou", SIGTTOU);
6111 #endif
6112 #ifdef SIGIO
6113 parse_signal ("io", SIGIO);
6114 #endif
6115 #ifdef SIGXCPU
6116 parse_signal ("xcpu", SIGXCPU);
6117 #endif
6118 #ifdef SIGXFSZ
6119 parse_signal ("xfsz", SIGXFSZ);
6120 #endif
6121 #ifdef SIGVTALRM
6122 parse_signal ("vtalrm", SIGVTALRM);
6123 #endif
6124 #ifdef SIGPROF
6125 parse_signal ("prof", SIGPROF);
6126 #endif
6127 #ifdef SIGWINCH
6128 parse_signal ("winch", SIGWINCH);
6129 #endif
6130 #ifdef SIGINFO
6131 parse_signal ("info", SIGINFO);
6132 #endif
6133 else
6134 error ("Undefined signal name %s", name);
6137 #undef parse_signal
6139 return make_number (kill (pid, XINT (sigcode)));
6142 DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
6143 doc: /* Make PROCESS see end-of-file in its input.
6144 EOF comes after any text already sent to it.
6145 PROCESS may be a process, a buffer, the name of a process or buffer, or
6146 nil, indicating the current buffer's process.
6147 If PROCESS is a network connection, or is a process communicating
6148 through a pipe (as opposed to a pty), then you cannot send any more
6149 text to PROCESS after you call this function.
6150 If PROCESS is a serial process, wait until all output written to the
6151 process has been transmitted to the serial port. */)
6152 (Lisp_Object process)
6154 Lisp_Object proc;
6155 struct coding_system *coding;
6157 if (DATAGRAM_CONN_P (process))
6158 return process;
6160 proc = get_process (process);
6161 coding = proc_encode_coding_system[XPROCESS (proc)->outfd];
6163 /* Make sure the process is really alive. */
6164 if (XPROCESS (proc)->raw_status_new)
6165 update_status (XPROCESS (proc));
6166 if (! EQ (XPROCESS (proc)->status, Qrun))
6167 error ("Process %s not running", SDATA (XPROCESS (proc)->name));
6169 if (CODING_REQUIRE_FLUSHING (coding))
6171 coding->mode |= CODING_MODE_LAST_BLOCK;
6172 send_process (proc, "", 0, Qnil);
6175 if (XPROCESS (proc)->pty_flag)
6176 send_process (proc, "\004", 1, Qnil);
6177 else if (EQ (XPROCESS (proc)->type, Qserial))
6179 #ifndef WINDOWSNT
6180 if (tcdrain (XPROCESS (proc)->outfd) != 0)
6181 error ("tcdrain() failed: %s", emacs_strerror (errno));
6182 #endif /* not WINDOWSNT */
6183 /* Do nothing on Windows because writes are blocking. */
6185 else
6187 int old_outfd, new_outfd;
6189 #ifdef HAVE_SHUTDOWN
6190 /* If this is a network connection, or socketpair is used
6191 for communication with the subprocess, call shutdown to cause EOF.
6192 (In some old system, shutdown to socketpair doesn't work.
6193 Then we just can't win.) */
6194 if (EQ (XPROCESS (proc)->type, Qnetwork)
6195 || XPROCESS (proc)->outfd == XPROCESS (proc)->infd)
6196 shutdown (XPROCESS (proc)->outfd, 1);
6197 /* In case of socketpair, outfd == infd, so don't close it. */
6198 if (XPROCESS (proc)->outfd != XPROCESS (proc)->infd)
6199 emacs_close (XPROCESS (proc)->outfd);
6200 #else /* not HAVE_SHUTDOWN */
6201 emacs_close (XPROCESS (proc)->outfd);
6202 #endif /* not HAVE_SHUTDOWN */
6203 new_outfd = emacs_open (NULL_DEVICE, O_WRONLY, 0);
6204 if (new_outfd < 0)
6205 abort ();
6206 old_outfd = XPROCESS (proc)->outfd;
6208 if (!proc_encode_coding_system[new_outfd])
6209 proc_encode_coding_system[new_outfd]
6210 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
6211 memcpy (proc_encode_coding_system[new_outfd],
6212 proc_encode_coding_system[old_outfd],
6213 sizeof (struct coding_system));
6214 memset (proc_encode_coding_system[old_outfd], 0,
6215 sizeof (struct coding_system));
6217 XPROCESS (proc)->outfd = new_outfd;
6219 return process;
6222 /* On receipt of a signal that a child status has changed, loop asking
6223 about children with changed statuses until the system says there
6224 are no more.
6226 All we do is change the status; we do not run sentinels or print
6227 notifications. That is saved for the next time keyboard input is
6228 done, in order to avoid timing errors.
6230 ** WARNING: this can be called during garbage collection.
6231 Therefore, it must not be fooled by the presence of mark bits in
6232 Lisp objects.
6234 ** USG WARNING: Although it is not obvious from the documentation
6235 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6236 signal() before executing at least one wait(), otherwise the
6237 handler will be called again, resulting in an infinite loop. The
6238 relevant portion of the documentation reads "SIGCLD signals will be
6239 queued and the signal-catching function will be continually
6240 reentered until the queue is empty". Invoking signal() causes the
6241 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6242 Inc.
6244 ** Malloc WARNING: This should never call malloc either directly or
6245 indirectly; if it does, that is a bug */
6247 #ifdef SIGCHLD
6248 static void
6249 sigchld_handler (int signo)
6251 int old_errno = errno;
6252 Lisp_Object proc;
6253 struct Lisp_Process *p;
6255 SIGNAL_THREAD_CHECK (signo);
6257 while (1)
6259 pid_t pid;
6260 int w;
6261 Lisp_Object tail;
6263 #ifdef WNOHANG
6264 #ifndef WUNTRACED
6265 #define WUNTRACED 0
6266 #endif /* no WUNTRACED */
6267 /* Keep trying to get a status until we get a definitive result. */
6270 errno = 0;
6271 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
6273 while (pid < 0 && errno == EINTR);
6275 if (pid <= 0)
6277 /* PID == 0 means no processes found, PID == -1 means a real
6278 failure. We have done all our job, so return. */
6280 errno = old_errno;
6281 return;
6283 #else
6284 pid = wait (&w);
6285 #endif /* no WNOHANG */
6287 /* Find the process that signaled us, and record its status. */
6289 /* The process can have been deleted by Fdelete_process. */
6290 for (tail = deleted_pid_list; CONSP (tail); tail = XCDR (tail))
6292 Lisp_Object xpid = XCAR (tail);
6293 if ((INTEGERP (xpid) && pid == XINT (xpid))
6294 || (FLOATP (xpid) && pid == XFLOAT_DATA (xpid)))
6296 XSETCAR (tail, Qnil);
6297 goto sigchld_end_of_loop;
6301 /* Otherwise, if it is asynchronous, it is in Vprocess_alist. */
6302 p = 0;
6303 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6305 proc = XCDR (XCAR (tail));
6306 p = XPROCESS (proc);
6307 if (EQ (p->type, Qreal) && p->pid == pid)
6308 break;
6309 p = 0;
6312 /* Look for an asynchronous process whose pid hasn't been filled
6313 in yet. */
6314 if (p == 0)
6315 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6317 proc = XCDR (XCAR (tail));
6318 p = XPROCESS (proc);
6319 if (p->pid == -1)
6320 break;
6321 p = 0;
6324 /* Change the status of the process that was found. */
6325 if (p != 0)
6327 int clear_desc_flag = 0;
6329 p->tick = ++process_tick;
6330 p->raw_status = w;
6331 p->raw_status_new = 1;
6333 /* If process has terminated, stop waiting for its output. */
6334 if ((WIFSIGNALED (w) || WIFEXITED (w))
6335 && p->infd >= 0)
6336 clear_desc_flag = 1;
6338 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
6339 if (clear_desc_flag)
6341 FD_CLR (p->infd, &input_wait_mask);
6342 FD_CLR (p->infd, &non_keyboard_wait_mask);
6345 /* Tell wait_reading_process_output that it needs to wake up and
6346 look around. */
6347 if (input_available_clear_time)
6348 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6351 /* There was no asynchronous process found for that pid: we have
6352 a synchronous process. */
6353 else
6355 synch_process_alive = 0;
6357 /* Report the status of the synchronous process. */
6358 if (WIFEXITED (w))
6359 synch_process_retcode = WRETCODE (w);
6360 else if (WIFSIGNALED (w))
6361 synch_process_termsig = WTERMSIG (w);
6363 /* Tell wait_reading_process_output that it needs to wake up and
6364 look around. */
6365 if (input_available_clear_time)
6366 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6369 sigchld_end_of_loop:
6372 /* On some systems, we must return right away.
6373 If any more processes want to signal us, we will
6374 get another signal.
6375 Otherwise (on systems that have WNOHANG), loop around
6376 to use up all the processes that have something to tell us. */
6377 #if (defined WINDOWSNT \
6378 || (defined USG && !defined GNU_LINUX \
6379 && !(defined HPUX && defined WNOHANG)))
6380 errno = old_errno;
6381 return;
6382 #endif /* USG, but not HPUX with WNOHANG */
6385 #endif /* SIGCHLD */
6388 static Lisp_Object
6389 exec_sentinel_unwind (Lisp_Object data)
6391 XPROCESS (XCAR (data))->sentinel = XCDR (data);
6392 return Qnil;
6395 static Lisp_Object
6396 exec_sentinel_error_handler (Lisp_Object error_val)
6398 cmd_error_internal (error_val, "error in process sentinel: ");
6399 Vinhibit_quit = Qt;
6400 update_echo_area ();
6401 Fsleep_for (make_number (2), Qnil);
6402 return Qt;
6405 static void
6406 exec_sentinel (Lisp_Object proc, Lisp_Object reason)
6408 Lisp_Object sentinel, odeactivate;
6409 register struct Lisp_Process *p = XPROCESS (proc);
6410 ptrdiff_t count = SPECPDL_INDEX ();
6411 int outer_running_asynch_code = running_asynch_code;
6412 int waiting = waiting_for_user_input_p;
6414 if (inhibit_sentinels)
6415 return;
6417 /* No need to gcpro these, because all we do with them later
6418 is test them for EQness, and none of them should be a string. */
6419 odeactivate = Vdeactivate_mark;
6420 #if 0
6421 Lisp_Object obuffer, okeymap;
6422 XSETBUFFER (obuffer, current_buffer);
6423 okeymap = BVAR (current_buffer, keymap);
6424 #endif
6426 /* There's no good reason to let sentinels change the current
6427 buffer, and many callers of accept-process-output, sit-for, and
6428 friends don't expect current-buffer to be changed from under them. */
6429 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
6431 sentinel = p->sentinel;
6432 if (NILP (sentinel))
6433 return;
6435 /* Zilch the sentinel while it's running, to avoid recursive invocations;
6436 assure that it gets restored no matter how the sentinel exits. */
6437 p->sentinel = Qnil;
6438 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
6439 /* Inhibit quit so that random quits don't screw up a running filter. */
6440 specbind (Qinhibit_quit, Qt);
6441 specbind (Qlast_nonmenu_event, Qt); /* Why? --Stef */
6443 /* In case we get recursively called,
6444 and we already saved the match data nonrecursively,
6445 save the same match data in safely recursive fashion. */
6446 if (outer_running_asynch_code)
6448 Lisp_Object tem;
6449 tem = Fmatch_data (Qnil, Qnil, Qnil);
6450 restore_search_regs ();
6451 record_unwind_save_match_data ();
6452 Fset_match_data (tem, Qt);
6455 /* For speed, if a search happens within this code,
6456 save the match data in a special nonrecursive fashion. */
6457 running_asynch_code = 1;
6459 internal_condition_case_1 (read_process_output_call,
6460 Fcons (sentinel,
6461 Fcons (proc, Fcons (reason, Qnil))),
6462 !NILP (Vdebug_on_error) ? Qnil : Qerror,
6463 exec_sentinel_error_handler);
6465 /* If we saved the match data nonrecursively, restore it now. */
6466 restore_search_regs ();
6467 running_asynch_code = outer_running_asynch_code;
6469 Vdeactivate_mark = odeactivate;
6471 /* Restore waiting_for_user_input_p as it was
6472 when we were called, in case the filter clobbered it. */
6473 waiting_for_user_input_p = waiting;
6475 #if 0
6476 if (! EQ (Fcurrent_buffer (), obuffer)
6477 || ! EQ (current_buffer->keymap, okeymap))
6478 #endif
6479 /* But do it only if the caller is actually going to read events.
6480 Otherwise there's no need to make him wake up, and it could
6481 cause trouble (for example it would make sit_for return). */
6482 if (waiting_for_user_input_p == -1)
6483 record_asynch_buffer_change ();
6485 unbind_to (count, Qnil);
6488 /* Report all recent events of a change in process status
6489 (either run the sentinel or output a message).
6490 This is usually done while Emacs is waiting for keyboard input
6491 but can be done at other times. */
6493 static void
6494 status_notify (struct Lisp_Process *deleting_process)
6496 register Lisp_Object proc, buffer;
6497 Lisp_Object tail, msg;
6498 struct gcpro gcpro1, gcpro2;
6500 tail = Qnil;
6501 msg = Qnil;
6502 /* We need to gcpro tail; if read_process_output calls a filter
6503 which deletes a process and removes the cons to which tail points
6504 from Vprocess_alist, and then causes a GC, tail is an unprotected
6505 reference. */
6506 GCPRO2 (tail, msg);
6508 /* Set this now, so that if new processes are created by sentinels
6509 that we run, we get called again to handle their status changes. */
6510 update_tick = process_tick;
6512 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6514 Lisp_Object symbol;
6515 register struct Lisp_Process *p;
6517 proc = Fcdr (XCAR (tail));
6518 p = XPROCESS (proc);
6520 if (p->tick != p->update_tick)
6522 p->update_tick = p->tick;
6524 /* If process is still active, read any output that remains. */
6525 while (! EQ (p->filter, Qt)
6526 && ! EQ (p->status, Qconnect)
6527 && ! EQ (p->status, Qlisten)
6528 /* Network or serial process not stopped: */
6529 && ! EQ (p->command, Qt)
6530 && p->infd >= 0
6531 && p != deleting_process
6532 && read_process_output (proc, p->infd) > 0);
6534 buffer = p->buffer;
6536 /* Get the text to use for the message. */
6537 if (p->raw_status_new)
6538 update_status (p);
6539 msg = status_message (p);
6541 /* If process is terminated, deactivate it or delete it. */
6542 symbol = p->status;
6543 if (CONSP (p->status))
6544 symbol = XCAR (p->status);
6546 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
6547 || EQ (symbol, Qclosed))
6549 if (delete_exited_processes)
6550 remove_process (proc);
6551 else
6552 deactivate_process (proc);
6555 /* The actions above may have further incremented p->tick.
6556 So set p->update_tick again
6557 so that an error in the sentinel will not cause
6558 this code to be run again. */
6559 p->update_tick = p->tick;
6560 /* Now output the message suitably. */
6561 if (!NILP (p->sentinel))
6562 exec_sentinel (proc, msg);
6563 /* Don't bother with a message in the buffer
6564 when a process becomes runnable. */
6565 else if (!EQ (symbol, Qrun) && !NILP (buffer))
6567 Lisp_Object tem;
6568 struct buffer *old = current_buffer;
6569 ptrdiff_t opoint, opoint_byte;
6570 ptrdiff_t before, before_byte;
6572 /* Avoid error if buffer is deleted
6573 (probably that's why the process is dead, too) */
6574 if (NILP (BVAR (XBUFFER (buffer), name)))
6575 continue;
6576 Fset_buffer (buffer);
6578 opoint = PT;
6579 opoint_byte = PT_BYTE;
6580 /* Insert new output into buffer
6581 at the current end-of-output marker,
6582 thus preserving logical ordering of input and output. */
6583 if (XMARKER (p->mark)->buffer)
6584 Fgoto_char (p->mark);
6585 else
6586 SET_PT_BOTH (ZV, ZV_BYTE);
6588 before = PT;
6589 before_byte = PT_BYTE;
6591 tem = BVAR (current_buffer, read_only);
6592 BVAR (current_buffer, read_only) = Qnil;
6593 insert_string ("\nProcess ");
6594 Finsert (1, &p->name);
6595 insert_string (" ");
6596 Finsert (1, &msg);
6597 BVAR (current_buffer, read_only) = tem;
6598 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
6600 if (opoint >= before)
6601 SET_PT_BOTH (opoint + (PT - before),
6602 opoint_byte + (PT_BYTE - before_byte));
6603 else
6604 SET_PT_BOTH (opoint, opoint_byte);
6606 set_buffer_internal (old);
6609 } /* end for */
6611 update_mode_lines++; /* in case buffers use %s in mode-line-format */
6612 UNGCPRO;
6616 DEFUN ("set-process-coding-system", Fset_process_coding_system,
6617 Sset_process_coding_system, 1, 3, 0,
6618 doc: /* Set coding systems of PROCESS to DECODING and ENCODING.
6619 DECODING will be used to decode subprocess output and ENCODING to
6620 encode subprocess input. */)
6621 (register Lisp_Object process, Lisp_Object decoding, Lisp_Object encoding)
6623 register struct Lisp_Process *p;
6625 CHECK_PROCESS (process);
6626 p = XPROCESS (process);
6627 if (p->infd < 0)
6628 error ("Input file descriptor of %s closed", SDATA (p->name));
6629 if (p->outfd < 0)
6630 error ("Output file descriptor of %s closed", SDATA (p->name));
6631 Fcheck_coding_system (decoding);
6632 Fcheck_coding_system (encoding);
6633 encoding = coding_inherit_eol_type (encoding, Qnil);
6634 p->decode_coding_system = decoding;
6635 p->encode_coding_system = encoding;
6636 setup_process_coding_systems (process);
6638 return Qnil;
6641 DEFUN ("process-coding-system",
6642 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0,
6643 doc: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
6644 (register Lisp_Object process)
6646 CHECK_PROCESS (process);
6647 return Fcons (XPROCESS (process)->decode_coding_system,
6648 XPROCESS (process)->encode_coding_system);
6651 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte,
6652 Sset_process_filter_multibyte, 2, 2, 0,
6653 doc: /* Set multibyteness of the strings given to PROCESS's filter.
6654 If FLAG is non-nil, the filter is given multibyte strings.
6655 If FLAG is nil, the filter is given unibyte strings. In this case,
6656 all character code conversion except for end-of-line conversion is
6657 suppressed. */)
6658 (Lisp_Object process, Lisp_Object flag)
6660 register struct Lisp_Process *p;
6662 CHECK_PROCESS (process);
6663 p = XPROCESS (process);
6664 if (NILP (flag))
6665 p->decode_coding_system = raw_text_coding_system (p->decode_coding_system);
6666 setup_process_coding_systems (process);
6668 return Qnil;
6671 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p,
6672 Sprocess_filter_multibyte_p, 1, 1, 0,
6673 doc: /* Return t if a multibyte string is given to PROCESS's filter.*/)
6674 (Lisp_Object process)
6676 register struct Lisp_Process *p;
6677 struct coding_system *coding;
6679 CHECK_PROCESS (process);
6680 p = XPROCESS (process);
6681 coding = proc_decode_coding_system[p->infd];
6682 return (CODING_FOR_UNIBYTE (coding) ? Qnil : Qt);
6688 # ifdef HAVE_GPM
6690 void
6691 add_gpm_wait_descriptor (int desc)
6693 add_keyboard_wait_descriptor (desc);
6696 void
6697 delete_gpm_wait_descriptor (int desc)
6699 delete_keyboard_wait_descriptor (desc);
6702 # endif
6704 # ifdef SIGIO
6706 /* Return nonzero if *MASK has a bit set
6707 that corresponds to one of the keyboard input descriptors. */
6709 static int
6710 keyboard_bit_set (fd_set *mask)
6712 int fd;
6714 for (fd = 0; fd <= max_input_desc; fd++)
6715 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask)
6716 && !FD_ISSET (fd, &non_keyboard_wait_mask))
6717 return 1;
6719 return 0;
6721 # endif
6723 #else /* not subprocesses */
6725 /* Defined on msdos.c. */
6726 extern int sys_select (int, SELECT_TYPE *, SELECT_TYPE *, SELECT_TYPE *,
6727 EMACS_TIME *);
6729 /* Implementation of wait_reading_process_output, assuming that there
6730 are no subprocesses. Used only by the MS-DOS build.
6732 Wait for timeout to elapse and/or keyboard input to be available.
6734 time_limit is:
6735 timeout in seconds, or
6736 zero for no limit, or
6737 -1 means gobble data immediately available but don't wait for any.
6739 read_kbd is a Lisp_Object:
6740 0 to ignore keyboard input, or
6741 1 to return when input is available, or
6742 -1 means caller will actually read the input, so don't throw to
6743 the quit handler.
6745 see full version for other parameters. We know that wait_proc will
6746 always be NULL, since `subprocesses' isn't defined.
6748 do_display != 0 means redisplay should be done to show subprocess
6749 output that arrives.
6751 Return true if we received input from any process. */
6754 wait_reading_process_output (int time_limit, int microsecs, int read_kbd,
6755 int do_display,
6756 Lisp_Object wait_for_cell,
6757 struct Lisp_Process *wait_proc, int just_wait_proc)
6759 register int nfds;
6760 EMACS_TIME end_time, timeout;
6761 SELECT_TYPE waitchannels;
6762 int xerrno;
6764 /* What does time_limit really mean? */
6765 if (time_limit || microsecs)
6767 EMACS_GET_TIME (end_time);
6768 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
6769 EMACS_ADD_TIME (end_time, end_time, timeout);
6772 /* Turn off periodic alarms (in case they are in use)
6773 and then turn off any other atimers,
6774 because the select emulator uses alarms. */
6775 stop_polling ();
6776 turn_on_atimers (0);
6778 while (1)
6780 int timeout_reduced_for_timers = 0;
6782 /* If calling from keyboard input, do not quit
6783 since we want to return C-g as an input character.
6784 Otherwise, do pending quit if requested. */
6785 if (read_kbd >= 0)
6786 QUIT;
6788 /* Exit now if the cell we're waiting for became non-nil. */
6789 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
6790 break;
6792 /* Compute time from now till when time limit is up */
6793 /* Exit if already run out */
6794 if (time_limit == -1)
6796 /* -1 specified for timeout means
6797 gobble output available now
6798 but don't wait at all. */
6800 EMACS_SET_SECS_USECS (timeout, 0, 0);
6802 else if (time_limit || microsecs)
6804 EMACS_GET_TIME (timeout);
6805 EMACS_SUB_TIME (timeout, end_time, timeout);
6806 if (EMACS_TIME_NEG_P (timeout))
6807 break;
6809 else
6811 EMACS_SET_SECS_USECS (timeout, 100000, 0);
6814 /* If our caller will not immediately handle keyboard events,
6815 run timer events directly.
6816 (Callers that will immediately read keyboard events
6817 call timer_delay on their own.) */
6818 if (NILP (wait_for_cell))
6820 EMACS_TIME timer_delay;
6824 int old_timers_run = timers_run;
6825 timer_delay = timer_check ();
6826 if (timers_run != old_timers_run && do_display)
6827 /* We must retry, since a timer may have requeued itself
6828 and that could alter the time delay. */
6829 redisplay_preserve_echo_area (14);
6830 else
6831 break;
6833 while (!detect_input_pending ());
6835 /* If there is unread keyboard input, also return. */
6836 if (read_kbd != 0
6837 && requeued_events_pending_p ())
6838 break;
6840 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
6842 EMACS_TIME difference;
6843 EMACS_SUB_TIME (difference, timer_delay, timeout);
6844 if (EMACS_TIME_NEG_P (difference))
6846 timeout = timer_delay;
6847 timeout_reduced_for_timers = 1;
6852 /* Cause C-g and alarm signals to take immediate action,
6853 and cause input available signals to zero out timeout. */
6854 if (read_kbd < 0)
6855 set_waiting_for_input (&timeout);
6857 /* Wait till there is something to do. */
6859 if (! read_kbd && NILP (wait_for_cell))
6860 FD_ZERO (&waitchannels);
6861 else
6862 FD_SET (0, &waitchannels);
6864 /* If a frame has been newly mapped and needs updating,
6865 reprocess its display stuff. */
6866 if (frame_garbaged && do_display)
6868 clear_waiting_for_input ();
6869 redisplay_preserve_echo_area (15);
6870 if (read_kbd < 0)
6871 set_waiting_for_input (&timeout);
6874 if (read_kbd && detect_input_pending ())
6876 nfds = 0;
6877 FD_ZERO (&waitchannels);
6879 else
6880 nfds = select (1, &waitchannels, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
6881 &timeout);
6883 xerrno = errno;
6885 /* Make C-g and alarm signals set flags again */
6886 clear_waiting_for_input ();
6888 /* If we woke up due to SIGWINCH, actually change size now. */
6889 do_pending_window_change (0);
6891 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
6892 /* We waited the full specified time, so return now. */
6893 break;
6895 if (nfds == -1)
6897 /* If the system call was interrupted, then go around the
6898 loop again. */
6899 if (xerrno == EINTR)
6900 FD_ZERO (&waitchannels);
6901 else
6902 error ("select error: %s", emacs_strerror (xerrno));
6905 /* Check for keyboard input */
6907 if (read_kbd
6908 && detect_input_pending_run_timers (do_display))
6910 swallow_events (do_display);
6911 if (detect_input_pending_run_timers (do_display))
6912 break;
6915 /* If there is unread keyboard input, also return. */
6916 if (read_kbd
6917 && requeued_events_pending_p ())
6918 break;
6920 /* If wait_for_cell. check for keyboard input
6921 but don't run any timers.
6922 ??? (It seems wrong to me to check for keyboard
6923 input at all when wait_for_cell, but the code
6924 has been this way since July 1994.
6925 Try changing this after version 19.31.) */
6926 if (! NILP (wait_for_cell)
6927 && detect_input_pending ())
6929 swallow_events (do_display);
6930 if (detect_input_pending ())
6931 break;
6934 /* Exit now if the cell we're waiting for became non-nil. */
6935 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
6936 break;
6939 start_polling ();
6941 return 0;
6944 #endif /* not subprocesses */
6946 /* The following functions are needed even if async subprocesses are
6947 not supported. Some of them are no-op stubs in that case. */
6949 /* Add DESC to the set of keyboard input descriptors. */
6951 void
6952 add_keyboard_wait_descriptor (int desc)
6954 #ifdef subprocesses /* actually means "not MSDOS" */
6955 FD_SET (desc, &input_wait_mask);
6956 FD_SET (desc, &non_process_wait_mask);
6957 if (desc > max_input_desc)
6958 max_input_desc = desc;
6959 #endif
6962 /* From now on, do not expect DESC to give keyboard input. */
6964 void
6965 delete_keyboard_wait_descriptor (int desc)
6967 #ifdef subprocesses
6968 int fd;
6969 int lim = max_input_desc;
6971 FD_CLR (desc, &input_wait_mask);
6972 FD_CLR (desc, &non_process_wait_mask);
6974 if (desc == max_input_desc)
6975 for (fd = 0; fd < lim; fd++)
6976 if (FD_ISSET (fd, &input_wait_mask) || FD_ISSET (fd, &write_mask))
6977 max_input_desc = fd;
6978 #endif
6981 /* Setup coding systems of PROCESS. */
6983 void
6984 setup_process_coding_systems (Lisp_Object process)
6986 #ifdef subprocesses
6987 struct Lisp_Process *p = XPROCESS (process);
6988 int inch = p->infd;
6989 int outch = p->outfd;
6990 Lisp_Object coding_system;
6992 if (inch < 0 || outch < 0)
6993 return;
6995 if (!proc_decode_coding_system[inch])
6996 proc_decode_coding_system[inch]
6997 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
6998 coding_system = p->decode_coding_system;
6999 if (! NILP (p->filter))
7001 else if (BUFFERP (p->buffer))
7003 if (NILP (BVAR (XBUFFER (p->buffer), enable_multibyte_characters)))
7004 coding_system = raw_text_coding_system (coding_system);
7006 setup_coding_system (coding_system, proc_decode_coding_system[inch]);
7008 if (!proc_encode_coding_system[outch])
7009 proc_encode_coding_system[outch]
7010 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
7011 setup_coding_system (p->encode_coding_system,
7012 proc_encode_coding_system[outch]);
7013 #endif
7016 /* Close all descriptors currently in use for communication
7017 with subprocess. This is used in a newly-forked subprocess
7018 to get rid of irrelevant descriptors. */
7020 void
7021 close_process_descs (void)
7023 #ifndef DOS_NT
7024 int i;
7025 for (i = 0; i < MAXDESC; i++)
7027 Lisp_Object process;
7028 process = chan_process[i];
7029 if (!NILP (process))
7031 int in = XPROCESS (process)->infd;
7032 int out = XPROCESS (process)->outfd;
7033 if (in >= 0)
7034 emacs_close (in);
7035 if (out >= 0 && in != out)
7036 emacs_close (out);
7039 #endif
7042 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
7043 doc: /* Return the (or a) process associated with BUFFER.
7044 BUFFER may be a buffer or the name of one. */)
7045 (register Lisp_Object buffer)
7047 #ifdef subprocesses
7048 register Lisp_Object buf, tail, proc;
7050 if (NILP (buffer)) return Qnil;
7051 buf = Fget_buffer (buffer);
7052 if (NILP (buf)) return Qnil;
7054 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
7056 proc = Fcdr (XCAR (tail));
7057 if (PROCESSP (proc) && EQ (XPROCESS (proc)->buffer, buf))
7058 return proc;
7060 #endif /* subprocesses */
7061 return Qnil;
7064 DEFUN ("process-inherit-coding-system-flag",
7065 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
7066 1, 1, 0,
7067 doc: /* Return the value of inherit-coding-system flag for PROCESS.
7068 If this flag is t, `buffer-file-coding-system' of the buffer
7069 associated with PROCESS will inherit the coding system used to decode
7070 the process output. */)
7071 (register Lisp_Object process)
7073 #ifdef subprocesses
7074 CHECK_PROCESS (process);
7075 return XPROCESS (process)->inherit_coding_system_flag ? Qt : Qnil;
7076 #else
7077 /* Ignore the argument and return the value of
7078 inherit-process-coding-system. */
7079 return inherit_process_coding_system ? Qt : Qnil;
7080 #endif
7083 /* Kill all processes associated with `buffer'.
7084 If `buffer' is nil, kill all processes */
7086 void
7087 kill_buffer_processes (Lisp_Object buffer)
7089 #ifdef subprocesses
7090 Lisp_Object tail, proc;
7092 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
7094 proc = XCDR (XCAR (tail));
7095 if (PROCESSP (proc)
7096 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
7098 if (NETCONN_P (proc) || SERIALCONN_P (proc))
7099 Fdelete_process (proc);
7100 else if (XPROCESS (proc)->infd >= 0)
7101 process_send_signal (proc, SIGHUP, Qnil, 1);
7104 #else /* subprocesses */
7105 /* Since we have no subprocesses, this does nothing. */
7106 #endif /* subprocesses */
7109 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p,
7110 Swaiting_for_user_input_p, 0, 0, 0,
7111 doc: /* Returns non-nil if Emacs is waiting for input from the user.
7112 This is intended for use by asynchronous process output filters and sentinels. */)
7113 (void)
7115 #ifdef subprocesses
7116 return (waiting_for_user_input_p ? Qt : Qnil);
7117 #else
7118 return Qnil;
7119 #endif
7122 /* Stop reading input from keyboard sources. */
7124 void
7125 hold_keyboard_input (void)
7127 kbd_is_on_hold = 1;
7130 /* Resume reading input from keyboard sources. */
7132 void
7133 unhold_keyboard_input (void)
7135 kbd_is_on_hold = 0;
7138 /* Return non-zero if keyboard input is on hold, zero otherwise. */
7141 kbd_on_hold_p (void)
7143 return kbd_is_on_hold;
7147 /* Enumeration of and access to system processes a-la ps(1). */
7149 DEFUN ("list-system-processes", Flist_system_processes, Slist_system_processes,
7150 0, 0, 0,
7151 doc: /* Return a list of numerical process IDs of all running processes.
7152 If this functionality is unsupported, return nil.
7154 See `process-attributes' for getting attributes of a process given its ID. */)
7155 (void)
7157 return list_system_processes ();
7160 DEFUN ("process-attributes", Fprocess_attributes,
7161 Sprocess_attributes, 1, 1, 0,
7162 doc: /* Return attributes of the process given by its PID, a number.
7164 Value is an alist where each element is a cons cell of the form
7166 \(KEY . VALUE)
7168 If this functionality is unsupported, the value is nil.
7170 See `list-system-processes' for getting a list of all process IDs.
7172 The KEYs of the attributes that this function may return are listed
7173 below, together with the type of the associated VALUE (in parentheses).
7174 Not all platforms support all of these attributes; unsupported
7175 attributes will not appear in the returned alist.
7176 Unless explicitly indicated otherwise, numbers can have either
7177 integer or floating point values.
7179 euid -- Effective user User ID of the process (number)
7180 user -- User name corresponding to euid (string)
7181 egid -- Effective user Group ID of the process (number)
7182 group -- Group name corresponding to egid (string)
7183 comm -- Command name (executable name only) (string)
7184 state -- Process state code, such as "S", "R", or "T" (string)
7185 ppid -- Parent process ID (number)
7186 pgrp -- Process group ID (number)
7187 sess -- Session ID, i.e. process ID of session leader (number)
7188 ttname -- Controlling tty name (string)
7189 tpgid -- ID of foreground process group on the process's tty (number)
7190 minflt -- number of minor page faults (number)
7191 majflt -- number of major page faults (number)
7192 cminflt -- cumulative number of minor page faults (number)
7193 cmajflt -- cumulative number of major page faults (number)
7194 utime -- user time used by the process, in the (HIGH LOW USEC) format
7195 stime -- system time used by the process, in the (HIGH LOW USEC) format
7196 time -- sum of utime and stime, in the (HIGH LOW USEC) format
7197 cutime -- user time used by the process and its children, (HIGH LOW USEC)
7198 cstime -- system time used by the process and its children, (HIGH LOW USEC)
7199 ctime -- sum of cutime and cstime, in the (HIGH LOW USEC) format
7200 pri -- priority of the process (number)
7201 nice -- nice value of the process (number)
7202 thcount -- process thread count (number)
7203 start -- time the process started, in the (HIGH LOW USEC) format
7204 vsize -- virtual memory size of the process in KB's (number)
7205 rss -- resident set size of the process in KB's (number)
7206 etime -- elapsed time the process is running, in (HIGH LOW USEC) format
7207 pcpu -- percents of CPU time used by the process (floating-point number)
7208 pmem -- percents of total physical memory used by process's resident set
7209 (floating-point number)
7210 args -- command line which invoked the process (string). */)
7211 ( Lisp_Object pid)
7213 return system_process_attributes (pid);
7217 void
7218 init_process (void)
7220 #ifdef subprocesses
7221 register int i;
7223 inhibit_sentinels = 0;
7225 #ifdef SIGCHLD
7226 #ifndef CANNOT_DUMP
7227 if (! noninteractive || initialized)
7228 #endif
7229 signal (SIGCHLD, sigchld_handler);
7230 #endif
7232 FD_ZERO (&input_wait_mask);
7233 FD_ZERO (&non_keyboard_wait_mask);
7234 FD_ZERO (&non_process_wait_mask);
7235 FD_ZERO (&write_mask);
7236 max_process_desc = 0;
7237 memset (fd_callback_info, 0, sizeof (fd_callback_info));
7239 #ifdef NON_BLOCKING_CONNECT
7240 FD_ZERO (&connect_wait_mask);
7241 num_pending_connects = 0;
7242 #endif
7244 #ifdef ADAPTIVE_READ_BUFFERING
7245 process_output_delay_count = 0;
7246 process_output_skip = 0;
7247 #endif
7249 /* Don't do this, it caused infinite select loops. The display
7250 method should call add_keyboard_wait_descriptor on stdin if it
7251 needs that. */
7252 #if 0
7253 FD_SET (0, &input_wait_mask);
7254 #endif
7256 Vprocess_alist = Qnil;
7257 #ifdef SIGCHLD
7258 deleted_pid_list = Qnil;
7259 #endif
7260 for (i = 0; i < MAXDESC; i++)
7262 chan_process[i] = Qnil;
7263 proc_buffered_char[i] = -1;
7265 memset (proc_decode_coding_system, 0, sizeof proc_decode_coding_system);
7266 memset (proc_encode_coding_system, 0, sizeof proc_encode_coding_system);
7267 #ifdef DATAGRAM_SOCKETS
7268 memset (datagram_address, 0, sizeof datagram_address);
7269 #endif
7272 Lisp_Object subfeatures = Qnil;
7273 const struct socket_options *sopt;
7275 #define ADD_SUBFEATURE(key, val) \
7276 subfeatures = pure_cons (pure_cons (key, pure_cons (val, Qnil)), subfeatures)
7278 #ifdef NON_BLOCKING_CONNECT
7279 ADD_SUBFEATURE (QCnowait, Qt);
7280 #endif
7281 #ifdef DATAGRAM_SOCKETS
7282 ADD_SUBFEATURE (QCtype, Qdatagram);
7283 #endif
7284 #ifdef HAVE_SEQPACKET
7285 ADD_SUBFEATURE (QCtype, Qseqpacket);
7286 #endif
7287 #ifdef HAVE_LOCAL_SOCKETS
7288 ADD_SUBFEATURE (QCfamily, Qlocal);
7289 #endif
7290 ADD_SUBFEATURE (QCfamily, Qipv4);
7291 #ifdef AF_INET6
7292 ADD_SUBFEATURE (QCfamily, Qipv6);
7293 #endif
7294 #ifdef HAVE_GETSOCKNAME
7295 ADD_SUBFEATURE (QCservice, Qt);
7296 #endif
7297 #if defined (O_NONBLOCK) || defined (O_NDELAY)
7298 ADD_SUBFEATURE (QCserver, Qt);
7299 #endif
7301 for (sopt = socket_options; sopt->name; sopt++)
7302 subfeatures = pure_cons (intern_c_string (sopt->name), subfeatures);
7304 Fprovide (intern_c_string ("make-network-process"), subfeatures);
7307 #if defined (DARWIN_OS)
7308 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
7309 processes. As such, we only change the default value. */
7310 if (initialized)
7312 char const *release = (STRINGP (Voperating_system_release)
7313 ? SSDATA (Voperating_system_release)
7314 : 0);
7315 if (!release || !release[0] || (release[0] < MIN_PTY_KERNEL_VERSION
7316 && release[1] == '.')) {
7317 Vprocess_connection_type = Qnil;
7320 #endif
7321 #endif /* subprocesses */
7322 kbd_is_on_hold = 0;
7325 void
7326 syms_of_process (void)
7328 #ifdef subprocesses
7330 DEFSYM (Qprocessp, "processp");
7331 DEFSYM (Qrun, "run");
7332 DEFSYM (Qstop, "stop");
7333 DEFSYM (Qsignal, "signal");
7335 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
7336 here again.
7338 Qexit = intern_c_string ("exit");
7339 staticpro (&Qexit); */
7341 DEFSYM (Qopen, "open");
7342 DEFSYM (Qclosed, "closed");
7343 DEFSYM (Qconnect, "connect");
7344 DEFSYM (Qfailed, "failed");
7345 DEFSYM (Qlisten, "listen");
7346 DEFSYM (Qlocal, "local");
7347 DEFSYM (Qipv4, "ipv4");
7348 #ifdef AF_INET6
7349 DEFSYM (Qipv6, "ipv6");
7350 #endif
7351 DEFSYM (Qdatagram, "datagram");
7352 DEFSYM (Qseqpacket, "seqpacket");
7354 DEFSYM (QCport, ":port");
7355 DEFSYM (QCspeed, ":speed");
7356 DEFSYM (QCprocess, ":process");
7358 DEFSYM (QCbytesize, ":bytesize");
7359 DEFSYM (QCstopbits, ":stopbits");
7360 DEFSYM (QCparity, ":parity");
7361 DEFSYM (Qodd, "odd");
7362 DEFSYM (Qeven, "even");
7363 DEFSYM (QCflowcontrol, ":flowcontrol");
7364 DEFSYM (Qhw, "hw");
7365 DEFSYM (Qsw, "sw");
7366 DEFSYM (QCsummary, ":summary");
7368 DEFSYM (Qreal, "real");
7369 DEFSYM (Qnetwork, "network");
7370 DEFSYM (Qserial, "serial");
7371 DEFSYM (QCbuffer, ":buffer");
7372 DEFSYM (QChost, ":host");
7373 DEFSYM (QCservice, ":service");
7374 DEFSYM (QClocal, ":local");
7375 DEFSYM (QCremote, ":remote");
7376 DEFSYM (QCcoding, ":coding");
7377 DEFSYM (QCserver, ":server");
7378 DEFSYM (QCnowait, ":nowait");
7379 DEFSYM (QCsentinel, ":sentinel");
7380 DEFSYM (QClog, ":log");
7381 DEFSYM (QCnoquery, ":noquery");
7382 DEFSYM (QCstop, ":stop");
7383 DEFSYM (QCoptions, ":options");
7384 DEFSYM (QCplist, ":plist");
7386 DEFSYM (Qlast_nonmenu_event, "last-nonmenu-event");
7388 staticpro (&Vprocess_alist);
7389 #ifdef SIGCHLD
7390 staticpro (&deleted_pid_list);
7391 #endif
7393 #endif /* subprocesses */
7395 DEFSYM (QCname, ":name");
7396 DEFSYM (QCtype, ":type");
7398 DEFSYM (Qeuid, "euid");
7399 DEFSYM (Qegid, "egid");
7400 DEFSYM (Quser, "user");
7401 DEFSYM (Qgroup, "group");
7402 DEFSYM (Qcomm, "comm");
7403 DEFSYM (Qstate, "state");
7404 DEFSYM (Qppid, "ppid");
7405 DEFSYM (Qpgrp, "pgrp");
7406 DEFSYM (Qsess, "sess");
7407 DEFSYM (Qttname, "ttname");
7408 DEFSYM (Qtpgid, "tpgid");
7409 DEFSYM (Qminflt, "minflt");
7410 DEFSYM (Qmajflt, "majflt");
7411 DEFSYM (Qcminflt, "cminflt");
7412 DEFSYM (Qcmajflt, "cmajflt");
7413 DEFSYM (Qutime, "utime");
7414 DEFSYM (Qstime, "stime");
7415 DEFSYM (Qtime, "time");
7416 DEFSYM (Qcutime, "cutime");
7417 DEFSYM (Qcstime, "cstime");
7418 DEFSYM (Qctime, "ctime");
7419 DEFSYM (Qpri, "pri");
7420 DEFSYM (Qnice, "nice");
7421 DEFSYM (Qthcount, "thcount");
7422 DEFSYM (Qstart, "start");
7423 DEFSYM (Qvsize, "vsize");
7424 DEFSYM (Qrss, "rss");
7425 DEFSYM (Qetime, "etime");
7426 DEFSYM (Qpcpu, "pcpu");
7427 DEFSYM (Qpmem, "pmem");
7428 DEFSYM (Qargs, "args");
7430 DEFVAR_BOOL ("delete-exited-processes", delete_exited_processes,
7431 doc: /* *Non-nil means delete processes immediately when they exit.
7432 A value of nil means don't delete them until `list-processes' is run. */);
7434 delete_exited_processes = 1;
7436 #ifdef subprocesses
7437 DEFVAR_LISP ("process-connection-type", Vprocess_connection_type,
7438 doc: /* Control type of device used to communicate with subprocesses.
7439 Values are nil to use a pipe, or t or `pty' to use a pty.
7440 The value has no effect if the system has no ptys or if all ptys are busy:
7441 then a pipe is used in any case.
7442 The value takes effect when `start-process' is called. */);
7443 Vprocess_connection_type = Qt;
7445 #ifdef ADAPTIVE_READ_BUFFERING
7446 DEFVAR_LISP ("process-adaptive-read-buffering", Vprocess_adaptive_read_buffering,
7447 doc: /* If non-nil, improve receive buffering by delaying after short reads.
7448 On some systems, when Emacs reads the output from a subprocess, the output data
7449 is read in very small blocks, potentially resulting in very poor performance.
7450 This behavior can be remedied to some extent by setting this variable to a
7451 non-nil value, as it will automatically delay reading from such processes, to
7452 allow them to produce more output before Emacs tries to read it.
7453 If the value is t, the delay is reset after each write to the process; any other
7454 non-nil value means that the delay is not reset on write.
7455 The variable takes effect when `start-process' is called. */);
7456 Vprocess_adaptive_read_buffering = Qt;
7457 #endif
7459 defsubr (&Sprocessp);
7460 defsubr (&Sget_process);
7461 defsubr (&Sdelete_process);
7462 defsubr (&Sprocess_status);
7463 defsubr (&Sprocess_exit_status);
7464 defsubr (&Sprocess_id);
7465 defsubr (&Sprocess_name);
7466 defsubr (&Sprocess_tty_name);
7467 defsubr (&Sprocess_command);
7468 defsubr (&Sset_process_buffer);
7469 defsubr (&Sprocess_buffer);
7470 defsubr (&Sprocess_mark);
7471 defsubr (&Sset_process_filter);
7472 defsubr (&Sprocess_filter);
7473 defsubr (&Sset_process_sentinel);
7474 defsubr (&Sprocess_sentinel);
7475 defsubr (&Sset_process_window_size);
7476 defsubr (&Sset_process_inherit_coding_system_flag);
7477 defsubr (&Sset_process_query_on_exit_flag);
7478 defsubr (&Sprocess_query_on_exit_flag);
7479 defsubr (&Sprocess_contact);
7480 defsubr (&Sprocess_plist);
7481 defsubr (&Sset_process_plist);
7482 defsubr (&Sprocess_list);
7483 defsubr (&Sstart_process);
7484 defsubr (&Sserial_process_configure);
7485 defsubr (&Smake_serial_process);
7486 defsubr (&Sset_network_process_option);
7487 defsubr (&Smake_network_process);
7488 defsubr (&Sformat_network_address);
7489 #if defined (HAVE_NET_IF_H)
7490 #ifdef SIOCGIFCONF
7491 defsubr (&Snetwork_interface_list);
7492 #endif
7493 #if defined (SIOCGIFADDR) || defined (SIOCGIFHWADDR) || defined (SIOCGIFFLAGS)
7494 defsubr (&Snetwork_interface_info);
7495 #endif
7496 #endif /* defined (HAVE_NET_IF_H) */
7497 #ifdef DATAGRAM_SOCKETS
7498 defsubr (&Sprocess_datagram_address);
7499 defsubr (&Sset_process_datagram_address);
7500 #endif
7501 defsubr (&Saccept_process_output);
7502 defsubr (&Sprocess_send_region);
7503 defsubr (&Sprocess_send_string);
7504 defsubr (&Sinterrupt_process);
7505 defsubr (&Skill_process);
7506 defsubr (&Squit_process);
7507 defsubr (&Sstop_process);
7508 defsubr (&Scontinue_process);
7509 defsubr (&Sprocess_running_child_p);
7510 defsubr (&Sprocess_send_eof);
7511 defsubr (&Ssignal_process);
7512 defsubr (&Swaiting_for_user_input_p);
7513 defsubr (&Sprocess_type);
7514 defsubr (&Sset_process_coding_system);
7515 defsubr (&Sprocess_coding_system);
7516 defsubr (&Sset_process_filter_multibyte);
7517 defsubr (&Sprocess_filter_multibyte_p);
7519 #endif /* subprocesses */
7521 defsubr (&Sget_buffer_process);
7522 defsubr (&Sprocess_inherit_coding_system_flag);
7523 defsubr (&Slist_system_processes);
7524 defsubr (&Sprocess_attributes);