]> code.delx.au - gnu-emacs/blob - src/process.c
Allow using "number strings" as services on non-GNU systems
[gnu-emacs] / src / process.c
1 /* Asynchronous subprocess control for GNU Emacs.
2
3 Copyright (C) 1985-1988, 1993-1996, 1998-1999, 2001-2016 Free Software
4 Foundation, Inc.
5
6 This file is part of GNU Emacs.
7
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.
12
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.
17
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/>. */
20
21
22 #include <config.h>
23
24 #include <stdio.h>
25 #include <errno.h>
26 #include <sys/types.h> /* Some typedefs are used in sys/file.h. */
27 #include <sys/file.h>
28 #include <sys/stat.h>
29 #include <unistd.h>
30 #include <fcntl.h>
31
32 #include "lisp.h"
33
34 /* Only MS-DOS does not define `subprocesses'. */
35 #ifdef subprocesses
36
37 #include <sys/socket.h>
38 #include <netdb.h>
39 #include <netinet/in.h>
40 #include <arpa/inet.h>
41
42 /* Are local (unix) sockets supported? */
43 #if defined (HAVE_SYS_UN_H)
44 #if !defined (AF_LOCAL) && defined (AF_UNIX)
45 #define AF_LOCAL AF_UNIX
46 #endif
47 #ifdef AF_LOCAL
48 #define HAVE_LOCAL_SOCKETS
49 #include <sys/un.h>
50 #endif
51 #endif
52
53 #include <sys/ioctl.h>
54 #if defined (HAVE_NET_IF_H)
55 #include <net/if.h>
56 #endif /* HAVE_NET_IF_H */
57
58 #if defined (HAVE_IFADDRS_H)
59 /* Must be after net/if.h */
60 #include <ifaddrs.h>
61
62 /* We only use structs from this header when we use getifaddrs. */
63 #if defined (HAVE_NET_IF_DL_H)
64 #include <net/if_dl.h>
65 #endif
66
67 #endif
68
69 #ifdef NEED_BSDTTY
70 #include <bsdtty.h>
71 #endif
72
73 #ifdef USG5_4
74 # include <sys/stream.h>
75 # include <sys/stropts.h>
76 #endif
77
78 #ifdef HAVE_RES_INIT
79 #include <arpa/nameser.h>
80 #include <resolv.h>
81 #endif
82
83 #ifdef HAVE_UTIL_H
84 #include <util.h>
85 #endif
86
87 #ifdef HAVE_PTY_H
88 #include <pty.h>
89 #endif
90
91 #include <c-ctype.h>
92 #include <sig2str.h>
93 #include <verify.h>
94
95 #endif /* subprocesses */
96
97 #include "systime.h"
98 #include "systty.h"
99
100 #include "window.h"
101 #include "character.h"
102 #include "buffer.h"
103 #include "coding.h"
104 #include "process.h"
105 #include "frame.h"
106 #include "termopts.h"
107 #include "keyboard.h"
108 #include "blockinput.h"
109 #include "atimer.h"
110 #include "sysselect.h"
111 #include "syssignal.h"
112 #include "syswait.h"
113 #ifdef HAVE_GNUTLS
114 #include "gnutls.h"
115 #endif
116
117 #ifdef HAVE_WINDOW_SYSTEM
118 #include TERM_HEADER
119 #endif /* HAVE_WINDOW_SYSTEM */
120
121 #ifdef HAVE_GLIB
122 #include "xgselect.h"
123 #ifndef WINDOWSNT
124 #include <glib.h>
125 #endif
126 #endif
127
128 #ifdef WINDOWSNT
129 extern int sys_select (int, fd_set *, fd_set *, fd_set *,
130 struct timespec *, void *);
131 #endif
132
133 /* Work around GCC 4.7.0 bug with strict overflow checking; see
134 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52904>.
135 This bug appears to be fixed in GCC 5.1, so don't work around it there. */
136 #if __GNUC__ == 4 && __GNUC_MINOR__ >= 3
137 # pragma GCC diagnostic ignored "-Wstrict-overflow"
138 #endif
139 \f
140 /* True if keyboard input is on hold, zero otherwise. */
141
142 static bool kbd_is_on_hold;
143
144 /* Nonzero means don't run process sentinels. This is used
145 when exiting. */
146 bool inhibit_sentinels;
147
148 #ifdef subprocesses
149
150 #ifndef SOCK_CLOEXEC
151 # define SOCK_CLOEXEC 0
152 #endif
153
154 #ifndef HAVE_ACCEPT4
155
156 /* Emulate GNU/Linux accept4 and socket well enough for this module. */
157
158 static int
159 close_on_exec (int fd)
160 {
161 if (0 <= fd)
162 fcntl (fd, F_SETFD, FD_CLOEXEC);
163 return fd;
164 }
165
166 # undef accept4
167 # define accept4(sockfd, addr, addrlen, flags) \
168 process_accept4 (sockfd, addr, addrlen, flags)
169 static int
170 accept4 (int sockfd, struct sockaddr *addr, socklen_t *addrlen, int flags)
171 {
172 return close_on_exec (accept (sockfd, addr, addrlen));
173 }
174
175 static int
176 process_socket (int domain, int type, int protocol)
177 {
178 return close_on_exec (socket (domain, type, protocol));
179 }
180 # undef socket
181 # define socket(domain, type, protocol) process_socket (domain, type, protocol)
182 #endif
183
184 #define NETCONN_P(p) (EQ (XPROCESS (p)->type, Qnetwork))
185 #define NETCONN1_P(p) (EQ (p->type, Qnetwork))
186 #define SERIALCONN_P(p) (EQ (XPROCESS (p)->type, Qserial))
187 #define SERIALCONN1_P(p) (EQ (p->type, Qserial))
188 #define PIPECONN_P(p) (EQ (XPROCESS (p)->type, Qpipe))
189 #define PIPECONN1_P(p) (EQ (p->type, Qpipe))
190
191 /* Number of events of change of status of a process. */
192 static EMACS_INT process_tick;
193 /* Number of events for which the user or sentinel has been notified. */
194 static EMACS_INT update_tick;
195
196 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects.
197 The code can be simplified by assuming NON_BLOCKING_CONNECT once
198 Emacs starts assuming POSIX 1003.1-2001 or later. */
199
200 #if (defined HAVE_SELECT \
201 && (defined GNU_LINUX || defined HAVE_GETPEERNAME) \
202 && (defined EWOULDBLOCK || defined EINPROGRESS))
203 # define NON_BLOCKING_CONNECT
204 #endif
205
206 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on
207 this system. We need to read full packets, so we need a
208 "non-destructive" select. So we require either native select,
209 or emulation of select using FIONREAD. */
210
211 #ifndef BROKEN_DATAGRAM_SOCKETS
212 # if defined HAVE_SELECT || defined USABLE_FIONREAD
213 # if defined HAVE_SENDTO && defined HAVE_RECVFROM && defined EMSGSIZE
214 # define DATAGRAM_SOCKETS
215 # endif
216 # endif
217 #endif
218
219 #if defined HAVE_LOCAL_SOCKETS && defined DATAGRAM_SOCKETS
220 # define HAVE_SEQPACKET
221 #endif
222
223 #define READ_OUTPUT_DELAY_INCREMENT (TIMESPEC_RESOLUTION / 100)
224 #define READ_OUTPUT_DELAY_MAX (READ_OUTPUT_DELAY_INCREMENT * 5)
225 #define READ_OUTPUT_DELAY_MAX_MAX (READ_OUTPUT_DELAY_INCREMENT * 7)
226
227 /* Number of processes which have a non-zero read_output_delay,
228 and therefore might be delayed for adaptive read buffering. */
229
230 static int process_output_delay_count;
231
232 /* True if any process has non-nil read_output_skip. */
233
234 static bool process_output_skip;
235
236 static void create_process (Lisp_Object, char **, Lisp_Object);
237 #ifdef USABLE_SIGIO
238 static bool keyboard_bit_set (fd_set *);
239 #endif
240 static void deactivate_process (Lisp_Object);
241 static int status_notify (struct Lisp_Process *, struct Lisp_Process *);
242 static int read_process_output (Lisp_Object, int);
243 static void handle_child_signal (int);
244 static void create_pty (Lisp_Object);
245
246 static Lisp_Object get_process (register Lisp_Object name);
247 static void exec_sentinel (Lisp_Object proc, Lisp_Object reason);
248
249 /* Mask of bits indicating the descriptors that we wait for input on. */
250
251 static fd_set input_wait_mask;
252
253 /* Mask that excludes keyboard input descriptor(s). */
254
255 static fd_set non_keyboard_wait_mask;
256
257 /* Mask that excludes process input descriptor(s). */
258
259 static fd_set non_process_wait_mask;
260
261 /* Mask for selecting for write. */
262
263 static fd_set write_mask;
264
265 #ifdef NON_BLOCKING_CONNECT
266 /* Mask of bits indicating the descriptors that we wait for connect to
267 complete on. Once they complete, they are removed from this mask
268 and added to the input_wait_mask and non_keyboard_wait_mask. */
269
270 static fd_set connect_wait_mask;
271
272 /* Number of bits set in connect_wait_mask. */
273 static int num_pending_connects;
274 #endif /* NON_BLOCKING_CONNECT */
275
276 /* The largest descriptor currently in use for a process object; -1 if none. */
277 static int max_process_desc;
278
279 /* The largest descriptor currently in use for input; -1 if none. */
280 static int max_input_desc;
281
282 /* Indexed by descriptor, gives the process (if any) for that descriptor. */
283 static Lisp_Object chan_process[FD_SETSIZE];
284 static void wait_for_socket_fds (Lisp_Object, char const *);
285
286 /* Alist of elements (NAME . PROCESS). */
287 static Lisp_Object Vprocess_alist;
288
289 /* Buffered-ahead input char from process, indexed by channel.
290 -1 means empty (no char is buffered).
291 Used on sys V where the only way to tell if there is any
292 output from the process is to read at least one char.
293 Always -1 on systems that support FIONREAD. */
294
295 static int proc_buffered_char[FD_SETSIZE];
296
297 /* Table of `struct coding-system' for each process. */
298 static struct coding_system *proc_decode_coding_system[FD_SETSIZE];
299 static struct coding_system *proc_encode_coding_system[FD_SETSIZE];
300
301 #ifdef DATAGRAM_SOCKETS
302 /* Table of `partner address' for datagram sockets. */
303 static struct sockaddr_and_len {
304 struct sockaddr *sa;
305 int len;
306 } datagram_address[FD_SETSIZE];
307 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
308 #define DATAGRAM_CONN_P(proc) \
309 (PROCESSP (proc) && \
310 XPROCESS (proc)->infd >= 0 && \
311 datagram_address[XPROCESS (proc)->infd].sa != 0)
312 #else
313 #define DATAGRAM_CHAN_P(chan) (0)
314 #define DATAGRAM_CONN_P(proc) (0)
315 #endif
316
317 /* FOR_EACH_PROCESS (LIST_VAR, PROC_VAR) followed by a statement is
318 a `for' loop which iterates over processes from Vprocess_alist. */
319
320 #define FOR_EACH_PROCESS(list_var, proc_var) \
321 FOR_EACH_ALIST_VALUE (Vprocess_alist, list_var, proc_var)
322
323 /* These setters are used only in this file, so they can be private. */
324 static void
325 pset_buffer (struct Lisp_Process *p, Lisp_Object val)
326 {
327 p->buffer = val;
328 }
329 static void
330 pset_command (struct Lisp_Process *p, Lisp_Object val)
331 {
332 p->command = val;
333 }
334 static void
335 pset_decode_coding_system (struct Lisp_Process *p, Lisp_Object val)
336 {
337 p->decode_coding_system = val;
338 }
339 static void
340 pset_decoding_buf (struct Lisp_Process *p, Lisp_Object val)
341 {
342 p->decoding_buf = val;
343 }
344 static void
345 pset_encode_coding_system (struct Lisp_Process *p, Lisp_Object val)
346 {
347 p->encode_coding_system = val;
348 }
349 static void
350 pset_encoding_buf (struct Lisp_Process *p, Lisp_Object val)
351 {
352 p->encoding_buf = val;
353 }
354 static void
355 pset_filter (struct Lisp_Process *p, Lisp_Object val)
356 {
357 p->filter = NILP (val) ? Qinternal_default_process_filter : val;
358 }
359 static void
360 pset_log (struct Lisp_Process *p, Lisp_Object val)
361 {
362 p->log = val;
363 }
364 static void
365 pset_mark (struct Lisp_Process *p, Lisp_Object val)
366 {
367 p->mark = val;
368 }
369 static void
370 pset_name (struct Lisp_Process *p, Lisp_Object val)
371 {
372 p->name = val;
373 }
374 static void
375 pset_plist (struct Lisp_Process *p, Lisp_Object val)
376 {
377 p->plist = val;
378 }
379 static void
380 pset_sentinel (struct Lisp_Process *p, Lisp_Object val)
381 {
382 p->sentinel = NILP (val) ? Qinternal_default_process_sentinel : val;
383 }
384 static void
385 pset_tty_name (struct Lisp_Process *p, Lisp_Object val)
386 {
387 p->tty_name = val;
388 }
389 static void
390 pset_type (struct Lisp_Process *p, Lisp_Object val)
391 {
392 p->type = val;
393 }
394 static void
395 pset_write_queue (struct Lisp_Process *p, Lisp_Object val)
396 {
397 p->write_queue = val;
398 }
399 static void
400 pset_stderrproc (struct Lisp_Process *p, Lisp_Object val)
401 {
402 p->stderrproc = val;
403 }
404
405 \f
406 static Lisp_Object
407 make_lisp_proc (struct Lisp_Process *p)
408 {
409 return make_lisp_ptr (p, Lisp_Vectorlike);
410 }
411
412 static struct fd_callback_data
413 {
414 fd_callback func;
415 void *data;
416 #define FOR_READ 1
417 #define FOR_WRITE 2
418 int condition; /* Mask of the defines above. */
419 } fd_callback_info[FD_SETSIZE];
420
421
422 /* Add a file descriptor FD to be monitored for when read is possible.
423 When read is possible, call FUNC with argument DATA. */
424
425 void
426 add_read_fd (int fd, fd_callback func, void *data)
427 {
428 add_keyboard_wait_descriptor (fd);
429
430 fd_callback_info[fd].func = func;
431 fd_callback_info[fd].data = data;
432 fd_callback_info[fd].condition |= FOR_READ;
433 }
434
435 /* Stop monitoring file descriptor FD for when read is possible. */
436
437 void
438 delete_read_fd (int fd)
439 {
440 delete_keyboard_wait_descriptor (fd);
441
442 fd_callback_info[fd].condition &= ~FOR_READ;
443 if (fd_callback_info[fd].condition == 0)
444 {
445 fd_callback_info[fd].func = 0;
446 fd_callback_info[fd].data = 0;
447 }
448 }
449
450 /* Add a file descriptor FD to be monitored for when write is possible.
451 When write is possible, call FUNC with argument DATA. */
452
453 void
454 add_write_fd (int fd, fd_callback func, void *data)
455 {
456 FD_SET (fd, &write_mask);
457 if (fd > max_input_desc)
458 max_input_desc = fd;
459
460 fd_callback_info[fd].func = func;
461 fd_callback_info[fd].data = data;
462 fd_callback_info[fd].condition |= FOR_WRITE;
463 }
464
465 /* FD is no longer an input descriptor; update max_input_desc accordingly. */
466
467 static void
468 delete_input_desc (int fd)
469 {
470 if (fd == max_input_desc)
471 {
472 do
473 fd--;
474 while (0 <= fd && ! (FD_ISSET (fd, &input_wait_mask)
475 || FD_ISSET (fd, &write_mask)));
476
477 max_input_desc = fd;
478 }
479 }
480
481 /* Stop monitoring file descriptor FD for when write is possible. */
482
483 void
484 delete_write_fd (int fd)
485 {
486 FD_CLR (fd, &write_mask);
487 fd_callback_info[fd].condition &= ~FOR_WRITE;
488 if (fd_callback_info[fd].condition == 0)
489 {
490 fd_callback_info[fd].func = 0;
491 fd_callback_info[fd].data = 0;
492 delete_input_desc (fd);
493 }
494 }
495
496 \f
497 /* Compute the Lisp form of the process status, p->status, from
498 the numeric status that was returned by `wait'. */
499
500 static Lisp_Object status_convert (int);
501
502 static void
503 update_status (struct Lisp_Process *p)
504 {
505 eassert (p->raw_status_new);
506 pset_status (p, status_convert (p->raw_status));
507 p->raw_status_new = 0;
508 }
509
510 /* Convert a process status word in Unix format to
511 the list that we use internally. */
512
513 static Lisp_Object
514 status_convert (int w)
515 {
516 if (WIFSTOPPED (w))
517 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
518 else if (WIFEXITED (w))
519 return Fcons (Qexit, Fcons (make_number (WEXITSTATUS (w)),
520 WCOREDUMP (w) ? Qt : Qnil));
521 else if (WIFSIGNALED (w))
522 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
523 WCOREDUMP (w) ? Qt : Qnil));
524 else
525 return Qrun;
526 }
527
528 /* Given a status-list, extract the three pieces of information
529 and store them individually through the three pointers. */
530
531 static void
532 decode_status (Lisp_Object l, Lisp_Object *symbol, int *code, bool *coredump)
533 {
534 Lisp_Object tem;
535
536 if (SYMBOLP (l))
537 {
538 *symbol = l;
539 *code = 0;
540 *coredump = 0;
541 }
542 else
543 {
544 *symbol = XCAR (l);
545 tem = XCDR (l);
546 *code = XFASTINT (XCAR (tem));
547 tem = XCDR (tem);
548 *coredump = !NILP (tem);
549 }
550 }
551
552 /* Return a string describing a process status list. */
553
554 static Lisp_Object
555 status_message (struct Lisp_Process *p)
556 {
557 Lisp_Object status = p->status;
558 Lisp_Object symbol;
559 int code;
560 bool coredump;
561 Lisp_Object string;
562
563 decode_status (status, &symbol, &code, &coredump);
564
565 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
566 {
567 char const *signame;
568 synchronize_system_messages_locale ();
569 signame = strsignal (code);
570 if (signame == 0)
571 string = build_string ("unknown");
572 else
573 {
574 int c1, c2;
575
576 string = build_unibyte_string (signame);
577 if (! NILP (Vlocale_coding_system))
578 string = (code_convert_string_norecord
579 (string, Vlocale_coding_system, 0));
580 c1 = STRING_CHAR (SDATA (string));
581 c2 = downcase (c1);
582 if (c1 != c2)
583 Faset (string, make_number (0), make_number (c2));
584 }
585 AUTO_STRING (suffix, coredump ? " (core dumped)\n" : "\n");
586 return concat2 (string, suffix);
587 }
588 else if (EQ (symbol, Qexit))
589 {
590 if (NETCONN1_P (p))
591 return build_string (code == 0 ? "deleted\n" : "connection broken by remote peer\n");
592 if (code == 0)
593 return build_string ("finished\n");
594 AUTO_STRING (prefix, "exited abnormally with code ");
595 string = Fnumber_to_string (make_number (code));
596 AUTO_STRING (suffix, coredump ? " (core dumped)\n" : "\n");
597 return concat3 (prefix, string, suffix);
598 }
599 else if (EQ (symbol, Qfailed))
600 {
601 AUTO_STRING (prefix, "failed with code ");
602 string = Fnumber_to_string (make_number (code));
603 AUTO_STRING (suffix, "\n");
604 return concat3 (prefix, string, suffix);
605 }
606 else
607 return Fcopy_sequence (Fsymbol_name (symbol));
608 }
609 \f
610 enum { PTY_NAME_SIZE = 24 };
611
612 /* Open an available pty, returning a file descriptor.
613 Store into PTY_NAME the file name of the terminal corresponding to the pty.
614 Return -1 on failure. */
615
616 static int
617 allocate_pty (char pty_name[PTY_NAME_SIZE])
618 {
619 #ifdef HAVE_PTYS
620 int fd;
621
622 #ifdef PTY_ITERATION
623 PTY_ITERATION
624 #else
625 register int c, i;
626 for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
627 for (i = 0; i < 16; i++)
628 #endif
629 {
630 #ifdef PTY_NAME_SPRINTF
631 PTY_NAME_SPRINTF
632 #else
633 sprintf (pty_name, "/dev/pty%c%x", c, i);
634 #endif /* no PTY_NAME_SPRINTF */
635
636 #ifdef PTY_OPEN
637 PTY_OPEN;
638 #else /* no PTY_OPEN */
639 fd = emacs_open (pty_name, O_RDWR | O_NONBLOCK, 0);
640 #endif /* no PTY_OPEN */
641
642 if (fd >= 0)
643 {
644 #ifdef PTY_TTY_NAME_SPRINTF
645 PTY_TTY_NAME_SPRINTF
646 #else
647 sprintf (pty_name, "/dev/tty%c%x", c, i);
648 #endif /* no PTY_TTY_NAME_SPRINTF */
649
650 /* Set FD's close-on-exec flag. This is needed even if
651 PT_OPEN calls posix_openpt with O_CLOEXEC, since POSIX
652 doesn't require support for that combination.
653 Do this after PTY_TTY_NAME_SPRINTF, which on some platforms
654 doesn't work if the close-on-exec flag is set (Bug#20555).
655 Multithreaded platforms where posix_openpt ignores
656 O_CLOEXEC (or where PTY_OPEN doesn't call posix_openpt)
657 have a race condition between the PTY_OPEN and here. */
658 fcntl (fd, F_SETFD, FD_CLOEXEC);
659
660 /* Check to make certain that both sides are available.
661 This avoids a nasty yet stupid bug in rlogins. */
662 if (faccessat (AT_FDCWD, pty_name, R_OK | W_OK, AT_EACCESS) != 0)
663 {
664 emacs_close (fd);
665 # ifndef __sgi
666 continue;
667 # else
668 return -1;
669 # endif /* __sgi */
670 }
671 setup_pty (fd);
672 return fd;
673 }
674 }
675 #endif /* HAVE_PTYS */
676 return -1;
677 }
678
679 /* Allocate basically initialized process. */
680
681 static struct Lisp_Process *
682 allocate_process (void)
683 {
684 return ALLOCATE_ZEROED_PSEUDOVECTOR (struct Lisp_Process, pid, PVEC_PROCESS);
685 }
686
687 static Lisp_Object
688 make_process (Lisp_Object name)
689 {
690 register Lisp_Object val, tem, name1;
691 register struct Lisp_Process *p;
692 char suffix[sizeof "<>" + INT_STRLEN_BOUND (printmax_t)];
693 printmax_t i;
694
695 p = allocate_process ();
696 /* Initialize Lisp data. Note that allocate_process initializes all
697 Lisp data to nil, so do it only for slots which should not be nil. */
698 pset_status (p, Qrun);
699 pset_mark (p, Fmake_marker ());
700
701 /* Initialize non-Lisp data. Note that allocate_process zeroes out all
702 non-Lisp data, so do it only for slots which should not be zero. */
703 p->infd = -1;
704 p->outfd = -1;
705 for (i = 0; i < PROCESS_OPEN_FDS; i++)
706 p->open_fd[i] = -1;
707
708 #ifdef HAVE_GNUTLS
709 p->gnutls_initstage = GNUTLS_STAGE_EMPTY;
710 p->gnutls_boot_parameters = Qnil;
711 #endif
712
713 /* If name is already in use, modify it until it is unused. */
714
715 name1 = name;
716 for (i = 1; ; i++)
717 {
718 tem = Fget_process (name1);
719 if (NILP (tem)) break;
720 name1 = concat2 (name, make_formatted_string (suffix, "<%"pMd">", i));
721 }
722 name = name1;
723 pset_name (p, name);
724 pset_sentinel (p, Qinternal_default_process_sentinel);
725 pset_filter (p, Qinternal_default_process_filter);
726 XSETPROCESS (val, p);
727 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
728 return val;
729 }
730
731 static void
732 remove_process (register Lisp_Object proc)
733 {
734 register Lisp_Object pair;
735
736 pair = Frassq (proc, Vprocess_alist);
737 Vprocess_alist = Fdelq (pair, Vprocess_alist);
738
739 deactivate_process (proc);
740 }
741
742 #ifdef HAVE_GETADDRINFO_A
743 static void
744 free_dns_request (Lisp_Object proc)
745 {
746 struct Lisp_Process *p = XPROCESS (proc);
747
748 if (p->dns_request->ar_result)
749 freeaddrinfo (p->dns_request->ar_result);
750 xfree (p->dns_request);
751 p->dns_request = NULL;
752 }
753 #endif
754
755 \f
756 DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
757 doc: /* Return t if OBJECT is a process. */)
758 (Lisp_Object object)
759 {
760 return PROCESSP (object) ? Qt : Qnil;
761 }
762
763 DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
764 doc: /* Return the process named NAME, or nil if there is none. */)
765 (register Lisp_Object name)
766 {
767 if (PROCESSP (name))
768 return name;
769 CHECK_STRING (name);
770 return Fcdr (Fassoc (name, Vprocess_alist));
771 }
772
773 /* This is how commands for the user decode process arguments. It
774 accepts a process, a process name, a buffer, a buffer name, or nil.
775 Buffers denote the first process in the buffer, and nil denotes the
776 current buffer. */
777
778 static Lisp_Object
779 get_process (register Lisp_Object name)
780 {
781 register Lisp_Object proc, obj;
782 if (STRINGP (name))
783 {
784 obj = Fget_process (name);
785 if (NILP (obj))
786 obj = Fget_buffer (name);
787 if (NILP (obj))
788 error ("Process %s does not exist", SDATA (name));
789 }
790 else if (NILP (name))
791 obj = Fcurrent_buffer ();
792 else
793 obj = name;
794
795 /* Now obj should be either a buffer object or a process object. */
796 if (BUFFERP (obj))
797 {
798 if (NILP (BVAR (XBUFFER (obj), name)))
799 error ("Attempt to get process for a dead buffer");
800 proc = Fget_buffer_process (obj);
801 if (NILP (proc))
802 error ("Buffer %s has no process", SDATA (BVAR (XBUFFER (obj), name)));
803 }
804 else
805 {
806 CHECK_PROCESS (obj);
807 proc = obj;
808 }
809 return proc;
810 }
811
812
813 /* Fdelete_process promises to immediately forget about the process, but in
814 reality, Emacs needs to remember those processes until they have been
815 treated by the SIGCHLD handler and waitpid has been invoked on them;
816 otherwise they might fill up the kernel's process table.
817
818 Some processes created by call-process are also put onto this list.
819
820 Members of this list are (process-ID . filename) pairs. The
821 process-ID is a number; the filename, if a string, is a file that
822 needs to be removed after the process exits. */
823 static Lisp_Object deleted_pid_list;
824
825 void
826 record_deleted_pid (pid_t pid, Lisp_Object filename)
827 {
828 deleted_pid_list = Fcons (Fcons (make_fixnum_or_float (pid), filename),
829 /* GC treated elements set to nil. */
830 Fdelq (Qnil, deleted_pid_list));
831
832 }
833
834 DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
835 doc: /* Delete PROCESS: kill it and forget about it immediately.
836 PROCESS may be a process, a buffer, the name of a process or buffer, or
837 nil, indicating the current buffer's process. */)
838 (register Lisp_Object process)
839 {
840 register struct Lisp_Process *p;
841
842 process = get_process (process);
843 p = XPROCESS (process);
844
845 #ifdef HAVE_GETADDRINFO_A
846 if (p->dns_request)
847 {
848 gai_cancel (p->dns_request);
849 free_dns_request (process);
850 }
851 #endif
852
853 p->raw_status_new = 0;
854 if (NETCONN1_P (p) || SERIALCONN1_P (p) || PIPECONN1_P (p))
855 {
856 pset_status (p, list2 (Qexit, make_number (0)));
857 p->tick = ++process_tick;
858 status_notify (p, NULL);
859 redisplay_preserve_echo_area (13);
860 }
861 else
862 {
863 if (p->alive)
864 record_kill_process (p, Qnil);
865
866 if (p->infd >= 0)
867 {
868 /* Update P's status, since record_kill_process will make the
869 SIGCHLD handler update deleted_pid_list, not *P. */
870 Lisp_Object symbol;
871 if (p->raw_status_new)
872 update_status (p);
873 symbol = CONSP (p->status) ? XCAR (p->status) : p->status;
874 if (! (EQ (symbol, Qsignal) || EQ (symbol, Qexit)))
875 pset_status (p, list2 (Qsignal, make_number (SIGKILL)));
876
877 p->tick = ++process_tick;
878 status_notify (p, NULL);
879 redisplay_preserve_echo_area (13);
880 }
881 }
882 remove_process (process);
883 return Qnil;
884 }
885 \f
886 DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
887 doc: /* Return the status of PROCESS.
888 The returned value is one of the following symbols:
889 run -- for a process that is running.
890 stop -- for a process stopped but continuable.
891 exit -- for a process that has exited.
892 signal -- for a process that has got a fatal signal.
893 open -- for a network stream connection that is open.
894 listen -- for a network stream server that is listening.
895 closed -- for a network stream connection that is closed.
896 connect -- when waiting for a non-blocking connection to complete.
897 failed -- when a non-blocking connection has failed.
898 nil -- if arg is a process name and no such process exists.
899 PROCESS may be a process, a buffer, the name of a process, or
900 nil, indicating the current buffer's process. */)
901 (register Lisp_Object process)
902 {
903 register struct Lisp_Process *p;
904 register Lisp_Object status;
905
906 if (STRINGP (process))
907 process = Fget_process (process);
908 else
909 process = get_process (process);
910
911 if (NILP (process))
912 return process;
913
914 p = XPROCESS (process);
915 if (p->raw_status_new)
916 update_status (p);
917 status = p->status;
918 if (CONSP (status))
919 status = XCAR (status);
920 if (NETCONN1_P (p) || SERIALCONN1_P (p) || PIPECONN1_P (p))
921 {
922 if (EQ (status, Qexit))
923 status = Qclosed;
924 else if (EQ (p->command, Qt))
925 status = Qstop;
926 else if (EQ (status, Qrun))
927 status = Qopen;
928 }
929 return status;
930 }
931
932 DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
933 1, 1, 0,
934 doc: /* Return the exit status of PROCESS or the signal number that killed it.
935 If PROCESS has not yet exited or died, return 0. */)
936 (register Lisp_Object process)
937 {
938 CHECK_PROCESS (process);
939 if (XPROCESS (process)->raw_status_new)
940 update_status (XPROCESS (process));
941 if (CONSP (XPROCESS (process)->status))
942 return XCAR (XCDR (XPROCESS (process)->status));
943 return make_number (0);
944 }
945
946 DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
947 doc: /* Return the process id of PROCESS.
948 This is the pid of the external process which PROCESS uses or talks to.
949 For a network connection, this value is nil. */)
950 (register Lisp_Object process)
951 {
952 pid_t pid;
953
954 CHECK_PROCESS (process);
955 pid = XPROCESS (process)->pid;
956 return (pid ? make_fixnum_or_float (pid) : Qnil);
957 }
958
959 DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
960 doc: /* Return the name of PROCESS, as a string.
961 This is the name of the program invoked in PROCESS,
962 possibly modified to make it unique among process names. */)
963 (register Lisp_Object process)
964 {
965 CHECK_PROCESS (process);
966 return XPROCESS (process)->name;
967 }
968
969 DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
970 doc: /* Return the command that was executed to start PROCESS.
971 This is a list of strings, the first string being the program executed
972 and the rest of the strings being the arguments given to it.
973 For a network or serial process, this is nil (process is running) or t
974 (process is stopped). */)
975 (register Lisp_Object process)
976 {
977 CHECK_PROCESS (process);
978 return XPROCESS (process)->command;
979 }
980
981 DEFUN ("process-tty-name", Fprocess_tty_name, Sprocess_tty_name, 1, 1, 0,
982 doc: /* Return the name of the terminal PROCESS uses, or nil if none.
983 This is the terminal that the process itself reads and writes on,
984 not the name of the pty that Emacs uses to talk with that terminal. */)
985 (register Lisp_Object process)
986 {
987 CHECK_PROCESS (process);
988 return XPROCESS (process)->tty_name;
989 }
990
991 DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
992 2, 2, 0,
993 doc: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil).
994 Return BUFFER. */)
995 (register Lisp_Object process, Lisp_Object buffer)
996 {
997 struct Lisp_Process *p;
998
999 CHECK_PROCESS (process);
1000 if (!NILP (buffer))
1001 CHECK_BUFFER (buffer);
1002 p = XPROCESS (process);
1003 pset_buffer (p, buffer);
1004 if (NETCONN1_P (p) || SERIALCONN1_P (p) || PIPECONN1_P (p))
1005 pset_childp (p, Fplist_put (p->childp, QCbuffer, buffer));
1006 setup_process_coding_systems (process);
1007 return buffer;
1008 }
1009
1010 DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
1011 1, 1, 0,
1012 doc: /* Return the buffer PROCESS is associated with.
1013 The default process filter inserts output from PROCESS into this buffer. */)
1014 (register Lisp_Object process)
1015 {
1016 CHECK_PROCESS (process);
1017 return XPROCESS (process)->buffer;
1018 }
1019
1020 DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
1021 1, 1, 0,
1022 doc: /* Return the marker for the end of the last output from PROCESS. */)
1023 (register Lisp_Object process)
1024 {
1025 CHECK_PROCESS (process);
1026 return XPROCESS (process)->mark;
1027 }
1028
1029 static void
1030 set_process_filter_masks (struct Lisp_Process *p)
1031 {
1032 if (EQ (p->filter, Qt) && !EQ (p->status, Qlisten))
1033 {
1034 FD_CLR (p->infd, &input_wait_mask);
1035 FD_CLR (p->infd, &non_keyboard_wait_mask);
1036 }
1037 else if (EQ (p->filter, Qt)
1038 /* Network or serial process not stopped: */
1039 && !EQ (p->command, Qt))
1040 {
1041 FD_SET (p->infd, &input_wait_mask);
1042 FD_SET (p->infd, &non_keyboard_wait_mask);
1043 }
1044 }
1045
1046 DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
1047 2, 2, 0,
1048 doc: /* Give PROCESS the filter function FILTER; nil means default.
1049 A value of t means stop accepting output from the process.
1050
1051 When a process has a non-default filter, its buffer is not used for output.
1052 Instead, each time it does output, the entire string of output is
1053 passed to the filter.
1054
1055 The filter gets two arguments: the process and the string of output.
1056 The string argument is normally a multibyte string, except:
1057 - if the process's input coding system is no-conversion or raw-text,
1058 it is a unibyte string (the non-converted input), or else
1059 - if `default-enable-multibyte-characters' is nil, it is a unibyte
1060 string (the result of converting the decoded input multibyte
1061 string to unibyte with `string-make-unibyte'). */)
1062 (Lisp_Object process, Lisp_Object filter)
1063 {
1064 CHECK_PROCESS (process);
1065 struct Lisp_Process *p = XPROCESS (process);
1066
1067 /* Don't signal an error if the process's input file descriptor
1068 is closed. This could make debugging Lisp more difficult,
1069 for example when doing something like
1070
1071 (setq process (start-process ...))
1072 (debug)
1073 (set-process-filter process ...) */
1074
1075 if (NILP (filter))
1076 filter = Qinternal_default_process_filter;
1077
1078 pset_filter (p, filter);
1079
1080 if (p->infd >= 0)
1081 set_process_filter_masks (p);
1082
1083 if (NETCONN1_P (p) || SERIALCONN1_P (p) || PIPECONN1_P (p))
1084 pset_childp (p, Fplist_put (p->childp, QCfilter, filter));
1085 setup_process_coding_systems (process);
1086 return filter;
1087 }
1088
1089 DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
1090 1, 1, 0,
1091 doc: /* Return the filter function of PROCESS.
1092 See `set-process-filter' for more info on filter functions. */)
1093 (register Lisp_Object process)
1094 {
1095 CHECK_PROCESS (process);
1096 return XPROCESS (process)->filter;
1097 }
1098
1099 DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
1100 2, 2, 0,
1101 doc: /* Give PROCESS the sentinel SENTINEL; nil for default.
1102 The sentinel is called as a function when the process changes state.
1103 It gets two arguments: the process, and a string describing the change. */)
1104 (register Lisp_Object process, Lisp_Object sentinel)
1105 {
1106 struct Lisp_Process *p;
1107
1108 CHECK_PROCESS (process);
1109 p = XPROCESS (process);
1110
1111 if (NILP (sentinel))
1112 sentinel = Qinternal_default_process_sentinel;
1113
1114 pset_sentinel (p, sentinel);
1115 if (NETCONN1_P (p) || SERIALCONN1_P (p) || PIPECONN1_P (p))
1116 pset_childp (p, Fplist_put (p->childp, QCsentinel, sentinel));
1117 return sentinel;
1118 }
1119
1120 DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
1121 1, 1, 0,
1122 doc: /* Return the sentinel of PROCESS.
1123 See `set-process-sentinel' for more info on sentinels. */)
1124 (register Lisp_Object process)
1125 {
1126 CHECK_PROCESS (process);
1127 return XPROCESS (process)->sentinel;
1128 }
1129
1130 DEFUN ("set-process-window-size", Fset_process_window_size,
1131 Sset_process_window_size, 3, 3, 0,
1132 doc: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
1133 (Lisp_Object process, Lisp_Object height, Lisp_Object width)
1134 {
1135 CHECK_PROCESS (process);
1136
1137 /* All known platforms store window sizes as 'unsigned short'. */
1138 CHECK_RANGED_INTEGER (height, 0, USHRT_MAX);
1139 CHECK_RANGED_INTEGER (width, 0, USHRT_MAX);
1140
1141 if (NETCONN_P (process)
1142 || XPROCESS (process)->infd < 0
1143 || (set_window_size (XPROCESS (process)->infd,
1144 XINT (height), XINT (width))
1145 < 0))
1146 return Qnil;
1147 else
1148 return Qt;
1149 }
1150
1151 DEFUN ("set-process-inherit-coding-system-flag",
1152 Fset_process_inherit_coding_system_flag,
1153 Sset_process_inherit_coding_system_flag, 2, 2, 0,
1154 doc: /* Determine whether buffer of PROCESS will inherit coding-system.
1155 If the second argument FLAG is non-nil, then the variable
1156 `buffer-file-coding-system' of the buffer associated with PROCESS
1157 will be bound to the value of the coding system used to decode
1158 the process output.
1159
1160 This is useful when the coding system specified for the process buffer
1161 leaves either the character code conversion or the end-of-line conversion
1162 unspecified, or if the coding system used to decode the process output
1163 is more appropriate for saving the process buffer.
1164
1165 Binding the variable `inherit-process-coding-system' to non-nil before
1166 starting the process is an alternative way of setting the inherit flag
1167 for the process which will run.
1168
1169 This function returns FLAG. */)
1170 (register Lisp_Object process, Lisp_Object flag)
1171 {
1172 CHECK_PROCESS (process);
1173 XPROCESS (process)->inherit_coding_system_flag = !NILP (flag);
1174 return flag;
1175 }
1176
1177 DEFUN ("set-process-query-on-exit-flag",
1178 Fset_process_query_on_exit_flag, Sset_process_query_on_exit_flag,
1179 2, 2, 0,
1180 doc: /* Specify if query is needed for PROCESS when Emacs is exited.
1181 If the second argument FLAG is non-nil, Emacs will query the user before
1182 exiting or killing a buffer if PROCESS is running. This function
1183 returns FLAG. */)
1184 (register Lisp_Object process, Lisp_Object flag)
1185 {
1186 CHECK_PROCESS (process);
1187 XPROCESS (process)->kill_without_query = NILP (flag);
1188 return flag;
1189 }
1190
1191 DEFUN ("process-query-on-exit-flag",
1192 Fprocess_query_on_exit_flag, Sprocess_query_on_exit_flag,
1193 1, 1, 0,
1194 doc: /* Return the current value of query-on-exit flag for PROCESS. */)
1195 (register Lisp_Object process)
1196 {
1197 CHECK_PROCESS (process);
1198 return (XPROCESS (process)->kill_without_query ? Qnil : Qt);
1199 }
1200
1201 DEFUN ("process-contact", Fprocess_contact, Sprocess_contact,
1202 1, 2, 0,
1203 doc: /* Return the contact info of PROCESS; t for a real child.
1204 For a network or serial connection, the value depends on the optional
1205 KEY arg. If KEY is nil, value is a cons cell of the form (HOST
1206 SERVICE) for a network connection or (PORT SPEED) for a serial
1207 connection. If KEY is t, the complete contact information for the
1208 connection is returned, else the specific value for the keyword KEY is
1209 returned. See `make-network-process' or `make-serial-process' for a
1210 list of keywords.
1211 If PROCESS is a non-blocking network process that hasn't been fully
1212 set up yet, this function will block until socket setup has completed. */)
1213 (Lisp_Object process, Lisp_Object key)
1214 {
1215 Lisp_Object contact;
1216
1217 CHECK_PROCESS (process);
1218 contact = XPROCESS (process)->childp;
1219
1220 #ifdef DATAGRAM_SOCKETS
1221
1222 if (NETCONN_P (process))
1223 wait_for_socket_fds (process, "process-contact");
1224
1225 if (DATAGRAM_CONN_P (process)
1226 && (EQ (key, Qt) || EQ (key, QCremote)))
1227 contact = Fplist_put (contact, QCremote,
1228 Fprocess_datagram_address (process));
1229 #endif
1230
1231 if ((!NETCONN_P (process) && !SERIALCONN_P (process) && !PIPECONN_P (process))
1232 || EQ (key, Qt))
1233 return contact;
1234 if (NILP (key) && NETCONN_P (process))
1235 return list2 (Fplist_get (contact, QChost),
1236 Fplist_get (contact, QCservice));
1237 if (NILP (key) && SERIALCONN_P (process))
1238 return list2 (Fplist_get (contact, QCport),
1239 Fplist_get (contact, QCspeed));
1240 /* FIXME: Return a meaningful value (e.g., the child end of the pipe)
1241 if the pipe process is useful for purposes other than receiving
1242 stderr. */
1243 if (NILP (key) && PIPECONN_P (process))
1244 return Qt;
1245 return Fplist_get (contact, key);
1246 }
1247
1248 DEFUN ("process-plist", Fprocess_plist, Sprocess_plist,
1249 1, 1, 0,
1250 doc: /* Return the plist of PROCESS. */)
1251 (register Lisp_Object process)
1252 {
1253 CHECK_PROCESS (process);
1254 return XPROCESS (process)->plist;
1255 }
1256
1257 DEFUN ("set-process-plist", Fset_process_plist, Sset_process_plist,
1258 2, 2, 0,
1259 doc: /* Replace the plist of PROCESS with PLIST. Return PLIST. */)
1260 (Lisp_Object process, Lisp_Object plist)
1261 {
1262 CHECK_PROCESS (process);
1263 CHECK_LIST (plist);
1264
1265 pset_plist (XPROCESS (process), plist);
1266 return plist;
1267 }
1268
1269 #if 0 /* Turned off because we don't currently record this info
1270 in the process. Perhaps add it. */
1271 DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0,
1272 doc: /* Return the connection type of PROCESS.
1273 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1274 a socket connection. */)
1275 (Lisp_Object process)
1276 {
1277 return XPROCESS (process)->type;
1278 }
1279 #endif
1280
1281 DEFUN ("process-type", Fprocess_type, Sprocess_type, 1, 1, 0,
1282 doc: /* Return the connection type of PROCESS.
1283 The value is either the symbol `real', `network', or `serial'.
1284 PROCESS may be a process, a buffer, the name of a process or buffer, or
1285 nil, indicating the current buffer's process. */)
1286 (Lisp_Object process)
1287 {
1288 Lisp_Object proc;
1289 proc = get_process (process);
1290 return XPROCESS (proc)->type;
1291 }
1292
1293 DEFUN ("format-network-address", Fformat_network_address, Sformat_network_address,
1294 1, 2, 0,
1295 doc: /* Convert network ADDRESS from internal format to a string.
1296 A 4 or 5 element vector represents an IPv4 address (with port number).
1297 An 8 or 9 element vector represents an IPv6 address (with port number).
1298 If optional second argument OMIT-PORT is non-nil, don't include a port
1299 number in the string, even when present in ADDRESS.
1300 Return nil if format of ADDRESS is invalid. */)
1301 (Lisp_Object address, Lisp_Object omit_port)
1302 {
1303 if (NILP (address))
1304 return Qnil;
1305
1306 if (STRINGP (address)) /* AF_LOCAL */
1307 return address;
1308
1309 if (VECTORP (address)) /* AF_INET or AF_INET6 */
1310 {
1311 register struct Lisp_Vector *p = XVECTOR (address);
1312 ptrdiff_t size = p->header.size;
1313 Lisp_Object args[10];
1314 int nargs, i;
1315 char const *format;
1316
1317 if (size == 4 || (size == 5 && !NILP (omit_port)))
1318 {
1319 format = "%d.%d.%d.%d";
1320 nargs = 4;
1321 }
1322 else if (size == 5)
1323 {
1324 format = "%d.%d.%d.%d:%d";
1325 nargs = 5;
1326 }
1327 else if (size == 8 || (size == 9 && !NILP (omit_port)))
1328 {
1329 format = "%x:%x:%x:%x:%x:%x:%x:%x";
1330 nargs = 8;
1331 }
1332 else if (size == 9)
1333 {
1334 format = "[%x:%x:%x:%x:%x:%x:%x:%x]:%d";
1335 nargs = 9;
1336 }
1337 else
1338 return Qnil;
1339
1340 AUTO_STRING (format_obj, format);
1341 args[0] = format_obj;
1342
1343 for (i = 0; i < nargs; i++)
1344 {
1345 if (! RANGED_INTEGERP (0, p->contents[i], 65535))
1346 return Qnil;
1347
1348 if (nargs <= 5 /* IPv4 */
1349 && i < 4 /* host, not port */
1350 && XINT (p->contents[i]) > 255)
1351 return Qnil;
1352
1353 args[i + 1] = p->contents[i];
1354 }
1355
1356 return Fformat (nargs + 1, args);
1357 }
1358
1359 if (CONSP (address))
1360 {
1361 AUTO_STRING (format, "<Family %d>");
1362 return CALLN (Fformat, format, Fcar (address));
1363 }
1364
1365 return Qnil;
1366 }
1367
1368 DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
1369 doc: /* Return a list of all processes that are Emacs sub-processes. */)
1370 (void)
1371 {
1372 return Fmapcar (Qcdr, Vprocess_alist);
1373 }
1374 \f
1375 /* Starting asynchronous inferior processes. */
1376
1377 static void start_process_unwind (Lisp_Object proc);
1378
1379 DEFUN ("make-process", Fmake_process, Smake_process, 0, MANY, 0,
1380 doc: /* Start a program in a subprocess. Return the process object for it.
1381
1382 This is similar to `start-process', but arguments are specified as
1383 keyword/argument pairs. The following arguments are defined:
1384
1385 :name NAME -- NAME is name for process. It is modified if necessary
1386 to make it unique.
1387
1388 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
1389 with the process. Process output goes at end of that buffer, unless
1390 you specify an output stream or filter function to handle the output.
1391 BUFFER may be also nil, meaning that this process is not associated
1392 with any buffer.
1393
1394 :command COMMAND -- COMMAND is a list starting with the program file
1395 name, followed by strings to give to the program as arguments.
1396
1397 :coding CODING -- If CODING is a symbol, it specifies the coding
1398 system used for both reading and writing for this process. If CODING
1399 is a cons (DECODING . ENCODING), DECODING is used for reading, and
1400 ENCODING is used for writing.
1401
1402 :noquery BOOL -- When exiting Emacs, query the user if BOOL is nil and
1403 the process is running. If BOOL is not given, query before exiting.
1404
1405 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
1406 In the stopped state, a process does not accept incoming data, but you
1407 can send outgoing data. The stopped state is cleared by
1408 `continue-process' and set by `stop-process'.
1409
1410 :connection-type TYPE -- TYPE is control type of device used to
1411 communicate with subprocesses. Values are `pipe' to use a pipe, `pty'
1412 to use a pty, or nil to use the default specified through
1413 `process-connection-type'.
1414
1415 :filter FILTER -- Install FILTER as the process filter.
1416
1417 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
1418
1419 :stderr STDERR -- STDERR is either a buffer or a pipe process attached
1420 to the standard error of subprocess. Specifying this implies
1421 `:connection-type' is set to `pipe'.
1422
1423 usage: (make-process &rest ARGS) */)
1424 (ptrdiff_t nargs, Lisp_Object *args)
1425 {
1426 Lisp_Object buffer, name, command, program, proc, contact, current_dir, tem;
1427 Lisp_Object xstderr, stderrproc;
1428 ptrdiff_t count = SPECPDL_INDEX ();
1429 USE_SAFE_ALLOCA;
1430
1431 if (nargs == 0)
1432 return Qnil;
1433
1434 /* Save arguments for process-contact and clone-process. */
1435 contact = Flist (nargs, args);
1436
1437 buffer = Fplist_get (contact, QCbuffer);
1438 if (!NILP (buffer))
1439 buffer = Fget_buffer_create (buffer);
1440
1441 /* Make sure that the child will be able to chdir to the current
1442 buffer's current directory, or its unhandled equivalent. We
1443 can't just have the child check for an error when it does the
1444 chdir, since it's in a vfork. */
1445 current_dir = encode_current_directory ();
1446
1447 name = Fplist_get (contact, QCname);
1448 CHECK_STRING (name);
1449
1450 command = Fplist_get (contact, QCcommand);
1451 if (CONSP (command))
1452 program = XCAR (command);
1453 else
1454 program = Qnil;
1455
1456 if (!NILP (program))
1457 CHECK_STRING (program);
1458
1459 stderrproc = Qnil;
1460 xstderr = Fplist_get (contact, QCstderr);
1461 if (PROCESSP (xstderr))
1462 {
1463 if (!PIPECONN_P (xstderr))
1464 error ("Process is not a pipe process");
1465 stderrproc = xstderr;
1466 }
1467 else if (!NILP (xstderr))
1468 {
1469 CHECK_STRING (program);
1470 stderrproc = CALLN (Fmake_pipe_process,
1471 QCname,
1472 concat2 (name, build_string (" stderr")),
1473 QCbuffer,
1474 Fget_buffer_create (xstderr));
1475 }
1476
1477 proc = make_process (name);
1478 /* If an error occurs and we can't start the process, we want to
1479 remove it from the process list. This means that each error
1480 check in create_process doesn't need to call remove_process
1481 itself; it's all taken care of here. */
1482 record_unwind_protect (start_process_unwind, proc);
1483
1484 pset_childp (XPROCESS (proc), Qt);
1485 pset_plist (XPROCESS (proc), Qnil);
1486 pset_type (XPROCESS (proc), Qreal);
1487 pset_buffer (XPROCESS (proc), buffer);
1488 pset_sentinel (XPROCESS (proc), Fplist_get (contact, QCsentinel));
1489 pset_filter (XPROCESS (proc), Fplist_get (contact, QCfilter));
1490 pset_command (XPROCESS (proc), Fcopy_sequence (command));
1491
1492 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
1493 XPROCESS (proc)->kill_without_query = 1;
1494 if (tem = Fplist_get (contact, QCstop), !NILP (tem))
1495 pset_command (XPROCESS (proc), Qt);
1496
1497 tem = Fplist_get (contact, QCconnection_type);
1498 if (EQ (tem, Qpty))
1499 XPROCESS (proc)->pty_flag = true;
1500 else if (EQ (tem, Qpipe))
1501 XPROCESS (proc)->pty_flag = false;
1502 else if (NILP (tem))
1503 XPROCESS (proc)->pty_flag = !NILP (Vprocess_connection_type);
1504 else
1505 report_file_error ("Unknown connection type", tem);
1506
1507 if (!NILP (stderrproc))
1508 {
1509 pset_stderrproc (XPROCESS (proc), stderrproc);
1510
1511 XPROCESS (proc)->pty_flag = false;
1512 }
1513
1514 #ifdef HAVE_GNUTLS
1515 /* AKA GNUTLS_INITSTAGE(proc). */
1516 XPROCESS (proc)->gnutls_initstage = GNUTLS_STAGE_EMPTY;
1517 pset_gnutls_cred_type (XPROCESS (proc), Qnil);
1518 #endif
1519
1520 XPROCESS (proc)->adaptive_read_buffering
1521 = (NILP (Vprocess_adaptive_read_buffering) ? 0
1522 : EQ (Vprocess_adaptive_read_buffering, Qt) ? 1 : 2);
1523
1524 /* Make the process marker point into the process buffer (if any). */
1525 if (BUFFERP (buffer))
1526 set_marker_both (XPROCESS (proc)->mark, buffer,
1527 BUF_ZV (XBUFFER (buffer)),
1528 BUF_ZV_BYTE (XBUFFER (buffer)));
1529
1530 {
1531 /* Decide coding systems for communicating with the process. Here
1532 we don't setup the structure coding_system nor pay attention to
1533 unibyte mode. They are done in create_process. */
1534
1535 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1536 Lisp_Object coding_systems = Qt;
1537 Lisp_Object val, *args2;
1538
1539 tem = Fplist_get (contact, QCcoding);
1540 if (!NILP (tem))
1541 {
1542 val = tem;
1543 if (CONSP (val))
1544 val = XCAR (val);
1545 }
1546 else
1547 val = Vcoding_system_for_read;
1548 if (NILP (val))
1549 {
1550 ptrdiff_t nargs2 = 3 + XINT (Flength (command));
1551 Lisp_Object tem2;
1552 SAFE_ALLOCA_LISP (args2, nargs2);
1553 ptrdiff_t i = 0;
1554 args2[i++] = Qstart_process;
1555 args2[i++] = name;
1556 args2[i++] = buffer;
1557 for (tem2 = command; CONSP (tem2); tem2 = XCDR (tem2))
1558 args2[i++] = XCAR (tem2);
1559 if (!NILP (program))
1560 coding_systems = Ffind_operation_coding_system (nargs2, args2);
1561 if (CONSP (coding_systems))
1562 val = XCAR (coding_systems);
1563 else if (CONSP (Vdefault_process_coding_system))
1564 val = XCAR (Vdefault_process_coding_system);
1565 }
1566 pset_decode_coding_system (XPROCESS (proc), val);
1567
1568 if (!NILP (tem))
1569 {
1570 val = tem;
1571 if (CONSP (val))
1572 val = XCDR (val);
1573 }
1574 else
1575 val = Vcoding_system_for_write;
1576 if (NILP (val))
1577 {
1578 if (EQ (coding_systems, Qt))
1579 {
1580 ptrdiff_t nargs2 = 3 + XINT (Flength (command));
1581 Lisp_Object tem2;
1582 SAFE_ALLOCA_LISP (args2, nargs2);
1583 ptrdiff_t i = 0;
1584 args2[i++] = Qstart_process;
1585 args2[i++] = name;
1586 args2[i++] = buffer;
1587 for (tem2 = command; CONSP (tem2); tem2 = XCDR (tem2))
1588 args2[i++] = XCAR (tem2);
1589 if (!NILP (program))
1590 coding_systems = Ffind_operation_coding_system (nargs2, args2);
1591 }
1592 if (CONSP (coding_systems))
1593 val = XCDR (coding_systems);
1594 else if (CONSP (Vdefault_process_coding_system))
1595 val = XCDR (Vdefault_process_coding_system);
1596 }
1597 pset_encode_coding_system (XPROCESS (proc), val);
1598 /* Note: At this moment, the above coding system may leave
1599 text-conversion or eol-conversion unspecified. They will be
1600 decided after we read output from the process and decode it by
1601 some coding system, or just before we actually send a text to
1602 the process. */
1603 }
1604
1605
1606 pset_decoding_buf (XPROCESS (proc), empty_unibyte_string);
1607 XPROCESS (proc)->decoding_carryover = 0;
1608 pset_encoding_buf (XPROCESS (proc), empty_unibyte_string);
1609
1610 XPROCESS (proc)->inherit_coding_system_flag
1611 = !(NILP (buffer) || !inherit_process_coding_system);
1612
1613 if (!NILP (program))
1614 {
1615 Lisp_Object program_args = XCDR (command);
1616
1617 /* If program file name is not absolute, search our path for it.
1618 Put the name we will really use in TEM. */
1619 if (!IS_DIRECTORY_SEP (SREF (program, 0))
1620 && !(SCHARS (program) > 1
1621 && IS_DEVICE_SEP (SREF (program, 1))))
1622 {
1623 tem = Qnil;
1624 openp (Vexec_path, program, Vexec_suffixes, &tem,
1625 make_number (X_OK), false);
1626 if (NILP (tem))
1627 report_file_error ("Searching for program", program);
1628 tem = Fexpand_file_name (tem, Qnil);
1629 }
1630 else
1631 {
1632 if (!NILP (Ffile_directory_p (program)))
1633 error ("Specified program for new process is a directory");
1634 tem = program;
1635 }
1636
1637 /* Remove "/:" from TEM. */
1638 tem = remove_slash_colon (tem);
1639
1640 Lisp_Object arg_encoding = Qnil;
1641
1642 /* Encode the file name and put it in NEW_ARGV.
1643 That's where the child will use it to execute the program. */
1644 tem = list1 (ENCODE_FILE (tem));
1645 ptrdiff_t new_argc = 1;
1646
1647 /* Here we encode arguments by the coding system used for sending
1648 data to the process. We don't support using different coding
1649 systems for encoding arguments and for encoding data sent to the
1650 process. */
1651
1652 for (Lisp_Object tem2 = program_args; CONSP (tem2); tem2 = XCDR (tem2))
1653 {
1654 Lisp_Object arg = XCAR (tem2);
1655 CHECK_STRING (arg);
1656 if (STRING_MULTIBYTE (arg))
1657 {
1658 if (NILP (arg_encoding))
1659 arg_encoding = (complement_process_encoding_system
1660 (XPROCESS (proc)->encode_coding_system));
1661 arg = code_convert_string_norecord (arg, arg_encoding, 1);
1662 }
1663 tem = Fcons (arg, tem);
1664 new_argc++;
1665 }
1666
1667 /* Now that everything is encoded we can collect the strings into
1668 NEW_ARGV. */
1669 char **new_argv;
1670 SAFE_NALLOCA (new_argv, 1, new_argc + 1);
1671 new_argv[new_argc] = 0;
1672
1673 for (ptrdiff_t i = new_argc - 1; i >= 0; i--)
1674 {
1675 new_argv[i] = SSDATA (XCAR (tem));
1676 tem = XCDR (tem);
1677 }
1678
1679 create_process (proc, new_argv, current_dir);
1680 }
1681 else
1682 create_pty (proc);
1683
1684 SAFE_FREE ();
1685 return unbind_to (count, proc);
1686 }
1687
1688 /* This function is the unwind_protect form for Fstart_process. If
1689 PROC doesn't have its pid set, then we know someone has signaled
1690 an error and the process wasn't started successfully, so we should
1691 remove it from the process list. */
1692 static void
1693 start_process_unwind (Lisp_Object proc)
1694 {
1695 if (!PROCESSP (proc))
1696 emacs_abort ();
1697
1698 /* Was PROC started successfully?
1699 -2 is used for a pty with no process, eg for gdb. */
1700 if (XPROCESS (proc)->pid <= 0 && XPROCESS (proc)->pid != -2)
1701 remove_process (proc);
1702 }
1703
1704 /* If *FD_ADDR is nonnegative, close it, and mark it as closed. */
1705
1706 static void
1707 close_process_fd (int *fd_addr)
1708 {
1709 int fd = *fd_addr;
1710 if (0 <= fd)
1711 {
1712 *fd_addr = -1;
1713 emacs_close (fd);
1714 }
1715 }
1716
1717 /* Indexes of file descriptors in open_fds. */
1718 enum
1719 {
1720 /* The pipe from Emacs to its subprocess. */
1721 SUBPROCESS_STDIN,
1722 WRITE_TO_SUBPROCESS,
1723
1724 /* The main pipe from the subprocess to Emacs. */
1725 READ_FROM_SUBPROCESS,
1726 SUBPROCESS_STDOUT,
1727
1728 /* The pipe from the subprocess to Emacs that is closed when the
1729 subprocess execs. */
1730 READ_FROM_EXEC_MONITOR,
1731 EXEC_MONITOR_OUTPUT
1732 };
1733
1734 verify (PROCESS_OPEN_FDS == EXEC_MONITOR_OUTPUT + 1);
1735
1736 static void
1737 create_process (Lisp_Object process, char **new_argv, Lisp_Object current_dir)
1738 {
1739 struct Lisp_Process *p = XPROCESS (process);
1740 int inchannel, outchannel;
1741 pid_t pid;
1742 int vfork_errno;
1743 int forkin, forkout, forkerr = -1;
1744 bool pty_flag = 0;
1745 char pty_name[PTY_NAME_SIZE];
1746 Lisp_Object lisp_pty_name = Qnil;
1747 sigset_t oldset;
1748
1749 inchannel = outchannel = -1;
1750
1751 if (p->pty_flag)
1752 outchannel = inchannel = allocate_pty (pty_name);
1753
1754 if (inchannel >= 0)
1755 {
1756 p->open_fd[READ_FROM_SUBPROCESS] = inchannel;
1757 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1758 /* On most USG systems it does not work to open the pty's tty here,
1759 then close it and reopen it in the child. */
1760 /* Don't let this terminal become our controlling terminal
1761 (in case we don't have one). */
1762 forkout = forkin = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
1763 if (forkin < 0)
1764 report_file_error ("Opening pty", Qnil);
1765 p->open_fd[SUBPROCESS_STDIN] = forkin;
1766 #else
1767 forkin = forkout = -1;
1768 #endif /* not USG, or USG_SUBTTY_WORKS */
1769 pty_flag = 1;
1770 lisp_pty_name = build_string (pty_name);
1771 }
1772 else
1773 {
1774 if (emacs_pipe (p->open_fd + SUBPROCESS_STDIN) != 0
1775 || emacs_pipe (p->open_fd + READ_FROM_SUBPROCESS) != 0)
1776 report_file_error ("Creating pipe", Qnil);
1777 forkin = p->open_fd[SUBPROCESS_STDIN];
1778 outchannel = p->open_fd[WRITE_TO_SUBPROCESS];
1779 inchannel = p->open_fd[READ_FROM_SUBPROCESS];
1780 forkout = p->open_fd[SUBPROCESS_STDOUT];
1781
1782 if (!NILP (p->stderrproc))
1783 {
1784 struct Lisp_Process *pp = XPROCESS (p->stderrproc);
1785
1786 forkerr = pp->open_fd[SUBPROCESS_STDOUT];
1787
1788 /* Close unnecessary file descriptors. */
1789 close_process_fd (&pp->open_fd[WRITE_TO_SUBPROCESS]);
1790 close_process_fd (&pp->open_fd[SUBPROCESS_STDIN]);
1791 }
1792 }
1793
1794 #ifndef WINDOWSNT
1795 if (emacs_pipe (p->open_fd + READ_FROM_EXEC_MONITOR) != 0)
1796 report_file_error ("Creating pipe", Qnil);
1797 #endif
1798
1799 fcntl (inchannel, F_SETFL, O_NONBLOCK);
1800 fcntl (outchannel, F_SETFL, O_NONBLOCK);
1801
1802 /* Record this as an active process, with its channels. */
1803 chan_process[inchannel] = process;
1804 p->infd = inchannel;
1805 p->outfd = outchannel;
1806
1807 /* Previously we recorded the tty descriptor used in the subprocess.
1808 It was only used for getting the foreground tty process, so now
1809 we just reopen the device (see emacs_get_tty_pgrp) as this is
1810 more portable (see USG_SUBTTY_WORKS above). */
1811
1812 p->pty_flag = pty_flag;
1813 pset_status (p, Qrun);
1814
1815 if (!EQ (p->command, Qt))
1816 {
1817 FD_SET (inchannel, &input_wait_mask);
1818 FD_SET (inchannel, &non_keyboard_wait_mask);
1819 }
1820
1821 if (inchannel > max_process_desc)
1822 max_process_desc = inchannel;
1823
1824 /* This may signal an error. */
1825 setup_process_coding_systems (process);
1826
1827 block_input ();
1828 block_child_signal (&oldset);
1829
1830 #ifndef WINDOWSNT
1831 /* vfork, and prevent local vars from being clobbered by the vfork. */
1832 Lisp_Object volatile current_dir_volatile = current_dir;
1833 Lisp_Object volatile lisp_pty_name_volatile = lisp_pty_name;
1834 char **volatile new_argv_volatile = new_argv;
1835 int volatile forkin_volatile = forkin;
1836 int volatile forkout_volatile = forkout;
1837 int volatile forkerr_volatile = forkerr;
1838 struct Lisp_Process *p_volatile = p;
1839
1840 pid = vfork ();
1841
1842 current_dir = current_dir_volatile;
1843 lisp_pty_name = lisp_pty_name_volatile;
1844 new_argv = new_argv_volatile;
1845 forkin = forkin_volatile;
1846 forkout = forkout_volatile;
1847 forkerr = forkerr_volatile;
1848 p = p_volatile;
1849
1850 pty_flag = p->pty_flag;
1851
1852 if (pid == 0)
1853 #endif /* not WINDOWSNT */
1854 {
1855 /* Make the pty be the controlling terminal of the process. */
1856 #ifdef HAVE_PTYS
1857 /* First, disconnect its current controlling terminal. */
1858 /* We tried doing setsid only if pty_flag, but it caused
1859 process_set_signal to fail on SGI when using a pipe. */
1860 setsid ();
1861 /* Make the pty's terminal the controlling terminal. */
1862 if (pty_flag && forkin >= 0)
1863 {
1864 #ifdef TIOCSCTTY
1865 /* We ignore the return value
1866 because faith@cs.unc.edu says that is necessary on Linux. */
1867 ioctl (forkin, TIOCSCTTY, 0);
1868 #endif
1869 }
1870 #if defined (LDISC1)
1871 if (pty_flag && forkin >= 0)
1872 {
1873 struct termios t;
1874 tcgetattr (forkin, &t);
1875 t.c_lflag = LDISC1;
1876 if (tcsetattr (forkin, TCSANOW, &t) < 0)
1877 emacs_perror ("create_process/tcsetattr LDISC1");
1878 }
1879 #else
1880 #if defined (NTTYDISC) && defined (TIOCSETD)
1881 if (pty_flag && forkin >= 0)
1882 {
1883 /* Use new line discipline. */
1884 int ldisc = NTTYDISC;
1885 ioctl (forkin, TIOCSETD, &ldisc);
1886 }
1887 #endif
1888 #endif
1889 #ifdef TIOCNOTTY
1890 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1891 can do TIOCSPGRP only to the process's controlling tty. */
1892 if (pty_flag)
1893 {
1894 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1895 I can't test it since I don't have 4.3. */
1896 int j = emacs_open ("/dev/tty", O_RDWR, 0);
1897 if (j >= 0)
1898 {
1899 ioctl (j, TIOCNOTTY, 0);
1900 emacs_close (j);
1901 }
1902 }
1903 #endif /* TIOCNOTTY */
1904
1905 #if !defined (DONT_REOPEN_PTY)
1906 /*** There is a suggestion that this ought to be a
1907 conditional on TIOCSPGRP, or !defined TIOCSCTTY.
1908 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
1909 that system does seem to need this code, even though
1910 both TIOCSCTTY is defined. */
1911 /* Now close the pty (if we had it open) and reopen it.
1912 This makes the pty the controlling terminal of the subprocess. */
1913 if (pty_flag)
1914 {
1915
1916 /* I wonder if emacs_close (emacs_open (SSDATA (lisp_pty_name), ...))
1917 would work? */
1918 if (forkin >= 0)
1919 emacs_close (forkin);
1920 forkout = forkin = emacs_open (SSDATA (lisp_pty_name), O_RDWR, 0);
1921
1922 if (forkin < 0)
1923 {
1924 emacs_perror (SSDATA (lisp_pty_name));
1925 _exit (EXIT_CANCELED);
1926 }
1927
1928 }
1929 #endif /* not DONT_REOPEN_PTY */
1930
1931 #ifdef SETUP_SLAVE_PTY
1932 if (pty_flag)
1933 {
1934 SETUP_SLAVE_PTY;
1935 }
1936 #endif /* SETUP_SLAVE_PTY */
1937 #endif /* HAVE_PTYS */
1938
1939 signal (SIGINT, SIG_DFL);
1940 signal (SIGQUIT, SIG_DFL);
1941 #ifdef SIGPROF
1942 signal (SIGPROF, SIG_DFL);
1943 #endif
1944
1945 /* Emacs ignores SIGPIPE, but the child should not. */
1946 signal (SIGPIPE, SIG_DFL);
1947
1948 /* Stop blocking SIGCHLD in the child. */
1949 unblock_child_signal (&oldset);
1950
1951 if (pty_flag)
1952 child_setup_tty (forkout);
1953
1954 if (forkerr < 0)
1955 forkerr = forkout;
1956 #ifdef WINDOWSNT
1957 pid = child_setup (forkin, forkout, forkerr, new_argv, 1, current_dir);
1958 #else /* not WINDOWSNT */
1959 child_setup (forkin, forkout, forkerr, new_argv, 1, current_dir);
1960 #endif /* not WINDOWSNT */
1961 }
1962
1963 /* Back in the parent process. */
1964
1965 vfork_errno = errno;
1966 p->pid = pid;
1967 if (pid >= 0)
1968 p->alive = 1;
1969
1970 /* Stop blocking in the parent. */
1971 unblock_child_signal (&oldset);
1972 unblock_input ();
1973
1974 if (pid < 0)
1975 report_file_errno ("Doing vfork", Qnil, vfork_errno);
1976 else
1977 {
1978 /* vfork succeeded. */
1979
1980 /* Close the pipe ends that the child uses, or the child's pty. */
1981 close_process_fd (&p->open_fd[SUBPROCESS_STDIN]);
1982 close_process_fd (&p->open_fd[SUBPROCESS_STDOUT]);
1983
1984 #ifdef WINDOWSNT
1985 register_child (pid, inchannel);
1986 #endif /* WINDOWSNT */
1987
1988 pset_tty_name (p, lisp_pty_name);
1989
1990 #ifndef WINDOWSNT
1991 /* Wait for child_setup to complete in case that vfork is
1992 actually defined as fork. The descriptor
1993 XPROCESS (proc)->open_fd[EXEC_MONITOR_OUTPUT]
1994 of a pipe is closed at the child side either by close-on-exec
1995 on successful execve or the _exit call in child_setup. */
1996 {
1997 char dummy;
1998
1999 close_process_fd (&p->open_fd[EXEC_MONITOR_OUTPUT]);
2000 emacs_read (p->open_fd[READ_FROM_EXEC_MONITOR], &dummy, 1);
2001 close_process_fd (&p->open_fd[READ_FROM_EXEC_MONITOR]);
2002 }
2003 #endif
2004 if (!NILP (p->stderrproc))
2005 {
2006 struct Lisp_Process *pp = XPROCESS (p->stderrproc);
2007 close_process_fd (&pp->open_fd[SUBPROCESS_STDOUT]);
2008 }
2009 }
2010 }
2011
2012 static void
2013 create_pty (Lisp_Object process)
2014 {
2015 struct Lisp_Process *p = XPROCESS (process);
2016 char pty_name[PTY_NAME_SIZE];
2017 int pty_fd = !p->pty_flag ? -1 : allocate_pty (pty_name);
2018
2019 if (pty_fd >= 0)
2020 {
2021 p->open_fd[SUBPROCESS_STDIN] = pty_fd;
2022 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
2023 /* On most USG systems it does not work to open the pty's tty here,
2024 then close it and reopen it in the child. */
2025 /* Don't let this terminal become our controlling terminal
2026 (in case we don't have one). */
2027 int forkout = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
2028 if (forkout < 0)
2029 report_file_error ("Opening pty", Qnil);
2030 p->open_fd[WRITE_TO_SUBPROCESS] = forkout;
2031 #if defined (DONT_REOPEN_PTY)
2032 /* In the case that vfork is defined as fork, the parent process
2033 (Emacs) may send some data before the child process completes
2034 tty options setup. So we setup tty before forking. */
2035 child_setup_tty (forkout);
2036 #endif /* DONT_REOPEN_PTY */
2037 #endif /* not USG, or USG_SUBTTY_WORKS */
2038
2039 fcntl (pty_fd, F_SETFL, O_NONBLOCK);
2040
2041 /* Record this as an active process, with its channels.
2042 As a result, child_setup will close Emacs's side of the pipes. */
2043 chan_process[pty_fd] = process;
2044 p->infd = pty_fd;
2045 p->outfd = pty_fd;
2046
2047 /* Previously we recorded the tty descriptor used in the subprocess.
2048 It was only used for getting the foreground tty process, so now
2049 we just reopen the device (see emacs_get_tty_pgrp) as this is
2050 more portable (see USG_SUBTTY_WORKS above). */
2051
2052 p->pty_flag = 1;
2053 pset_status (p, Qrun);
2054 setup_process_coding_systems (process);
2055
2056 FD_SET (pty_fd, &input_wait_mask);
2057 FD_SET (pty_fd, &non_keyboard_wait_mask);
2058 if (pty_fd > max_process_desc)
2059 max_process_desc = pty_fd;
2060
2061 pset_tty_name (p, build_string (pty_name));
2062 }
2063
2064 p->pid = -2;
2065 }
2066
2067 DEFUN ("make-pipe-process", Fmake_pipe_process, Smake_pipe_process,
2068 0, MANY, 0,
2069 doc: /* Create and return a bidirectional pipe process.
2070
2071 In Emacs, pipes are represented by process objects, so input and
2072 output work as for subprocesses, and `delete-process' closes a pipe.
2073 However, a pipe process has no process id, it cannot be signaled,
2074 and the status codes are different from normal processes.
2075
2076 Arguments are specified as keyword/argument pairs. The following
2077 arguments are defined:
2078
2079 :name NAME -- NAME is the name of the process. It is modified if necessary to make it unique.
2080
2081 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2082 with the process. Process output goes at the end of that buffer,
2083 unless you specify an output stream or filter function to handle the
2084 output. If BUFFER is not given, the value of NAME is used.
2085
2086 :coding CODING -- If CODING is a symbol, it specifies the coding
2087 system used for both reading and writing for this process. If CODING
2088 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2089 ENCODING is used for writing.
2090
2091 :noquery BOOL -- When exiting Emacs, query the user if BOOL is nil and
2092 the process is running. If BOOL is not given, query before exiting.
2093
2094 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
2095 In the stopped state, a pipe process does not accept incoming data,
2096 but you can send outgoing data. The stopped state is cleared by
2097 `continue-process' and set by `stop-process'.
2098
2099 :filter FILTER -- Install FILTER as the process filter.
2100
2101 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2102
2103 usage: (make-pipe-process &rest ARGS) */)
2104 (ptrdiff_t nargs, Lisp_Object *args)
2105 {
2106 Lisp_Object proc, contact;
2107 struct Lisp_Process *p;
2108 Lisp_Object name, buffer;
2109 Lisp_Object tem;
2110 ptrdiff_t specpdl_count;
2111 int inchannel, outchannel;
2112
2113 if (nargs == 0)
2114 return Qnil;
2115
2116 contact = Flist (nargs, args);
2117
2118 name = Fplist_get (contact, QCname);
2119 CHECK_STRING (name);
2120 proc = make_process (name);
2121 specpdl_count = SPECPDL_INDEX ();
2122 record_unwind_protect (remove_process, proc);
2123 p = XPROCESS (proc);
2124
2125 if (emacs_pipe (p->open_fd + SUBPROCESS_STDIN) != 0
2126 || emacs_pipe (p->open_fd + READ_FROM_SUBPROCESS) != 0)
2127 report_file_error ("Creating pipe", Qnil);
2128 outchannel = p->open_fd[WRITE_TO_SUBPROCESS];
2129 inchannel = p->open_fd[READ_FROM_SUBPROCESS];
2130
2131 fcntl (inchannel, F_SETFL, O_NONBLOCK);
2132 fcntl (outchannel, F_SETFL, O_NONBLOCK);
2133
2134 #ifdef WINDOWSNT
2135 register_aux_fd (inchannel);
2136 #endif
2137
2138 /* Record this as an active process, with its channels. */
2139 chan_process[inchannel] = proc;
2140 p->infd = inchannel;
2141 p->outfd = outchannel;
2142
2143 if (inchannel > max_process_desc)
2144 max_process_desc = inchannel;
2145
2146 buffer = Fplist_get (contact, QCbuffer);
2147 if (NILP (buffer))
2148 buffer = name;
2149 buffer = Fget_buffer_create (buffer);
2150 pset_buffer (p, buffer);
2151
2152 pset_childp (p, contact);
2153 pset_plist (p, Fcopy_sequence (Fplist_get (contact, QCplist)));
2154 pset_type (p, Qpipe);
2155 pset_sentinel (p, Fplist_get (contact, QCsentinel));
2156 pset_filter (p, Fplist_get (contact, QCfilter));
2157 pset_log (p, Qnil);
2158 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
2159 p->kill_without_query = 1;
2160 if (tem = Fplist_get (contact, QCstop), !NILP (tem))
2161 pset_command (p, Qt);
2162 eassert (! p->pty_flag);
2163
2164 if (!EQ (p->command, Qt))
2165 {
2166 FD_SET (inchannel, &input_wait_mask);
2167 FD_SET (inchannel, &non_keyboard_wait_mask);
2168 }
2169 p->adaptive_read_buffering
2170 = (NILP (Vprocess_adaptive_read_buffering) ? 0
2171 : EQ (Vprocess_adaptive_read_buffering, Qt) ? 1 : 2);
2172
2173 /* Make the process marker point into the process buffer (if any). */
2174 if (BUFFERP (buffer))
2175 set_marker_both (p->mark, buffer,
2176 BUF_ZV (XBUFFER (buffer)),
2177 BUF_ZV_BYTE (XBUFFER (buffer)));
2178
2179 {
2180 /* Setup coding systems for communicating with the network stream. */
2181
2182 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
2183 Lisp_Object coding_systems = Qt;
2184 Lisp_Object val;
2185
2186 tem = Fplist_get (contact, QCcoding);
2187 val = Qnil;
2188 if (!NILP (tem))
2189 {
2190 val = tem;
2191 if (CONSP (val))
2192 val = XCAR (val);
2193 }
2194 else if (!NILP (Vcoding_system_for_read))
2195 val = Vcoding_system_for_read;
2196 else if ((!NILP (buffer) && NILP (BVAR (XBUFFER (buffer), enable_multibyte_characters)))
2197 || (NILP (buffer) && NILP (BVAR (&buffer_defaults, enable_multibyte_characters))))
2198 /* We dare not decode end-of-line format by setting VAL to
2199 Qraw_text, because the existing Emacs Lisp libraries
2200 assume that they receive bare code including a sequence of
2201 CR LF. */
2202 val = Qnil;
2203 else
2204 {
2205 if (CONSP (coding_systems))
2206 val = XCAR (coding_systems);
2207 else if (CONSP (Vdefault_process_coding_system))
2208 val = XCAR (Vdefault_process_coding_system);
2209 else
2210 val = Qnil;
2211 }
2212 pset_decode_coding_system (p, val);
2213
2214 if (!NILP (tem))
2215 {
2216 val = tem;
2217 if (CONSP (val))
2218 val = XCDR (val);
2219 }
2220 else if (!NILP (Vcoding_system_for_write))
2221 val = Vcoding_system_for_write;
2222 else if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
2223 val = Qnil;
2224 else
2225 {
2226 if (CONSP (coding_systems))
2227 val = XCDR (coding_systems);
2228 else if (CONSP (Vdefault_process_coding_system))
2229 val = XCDR (Vdefault_process_coding_system);
2230 else
2231 val = Qnil;
2232 }
2233 pset_encode_coding_system (p, val);
2234 }
2235 /* This may signal an error. */
2236 setup_process_coding_systems (proc);
2237
2238 specpdl_ptr = specpdl + specpdl_count;
2239
2240 return proc;
2241 }
2242
2243 \f
2244 /* Convert an internal struct sockaddr to a lisp object (vector or string).
2245 The address family of sa is not included in the result. */
2246
2247 Lisp_Object
2248 conv_sockaddr_to_lisp (struct sockaddr *sa, int len)
2249 {
2250 Lisp_Object address;
2251 int i;
2252 unsigned char *cp;
2253 register struct Lisp_Vector *p;
2254
2255 /* Workaround for a bug in getsockname on BSD: Names bound to
2256 sockets in the UNIX domain are inaccessible; getsockname returns
2257 a zero length name. */
2258 if (len < offsetof (struct sockaddr, sa_family) + sizeof (sa->sa_family))
2259 return empty_unibyte_string;
2260
2261 switch (sa->sa_family)
2262 {
2263 case AF_INET:
2264 {
2265 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2266 len = sizeof (sin->sin_addr) + 1;
2267 address = Fmake_vector (make_number (len), Qnil);
2268 p = XVECTOR (address);
2269 p->contents[--len] = make_number (ntohs (sin->sin_port));
2270 cp = (unsigned char *) &sin->sin_addr;
2271 break;
2272 }
2273 #ifdef AF_INET6
2274 case AF_INET6:
2275 {
2276 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
2277 uint16_t *ip6 = (uint16_t *) &sin6->sin6_addr;
2278 len = sizeof (sin6->sin6_addr) / 2 + 1;
2279 address = Fmake_vector (make_number (len), Qnil);
2280 p = XVECTOR (address);
2281 p->contents[--len] = make_number (ntohs (sin6->sin6_port));
2282 for (i = 0; i < len; i++)
2283 p->contents[i] = make_number (ntohs (ip6[i]));
2284 return address;
2285 }
2286 #endif
2287 #ifdef HAVE_LOCAL_SOCKETS
2288 case AF_LOCAL:
2289 {
2290 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2291 ptrdiff_t name_length = len - offsetof (struct sockaddr_un, sun_path);
2292 /* If the first byte is NUL, the name is a Linux abstract
2293 socket name, and the name can contain embedded NULs. If
2294 it's not, we have a NUL-terminated string. Be careful not
2295 to walk past the end of the object looking for the name
2296 terminator, however. */
2297 if (name_length > 0 && sockun->sun_path[0] != '\0')
2298 {
2299 const char *terminator
2300 = memchr (sockun->sun_path, '\0', name_length);
2301
2302 if (terminator)
2303 name_length = terminator - (const char *) sockun->sun_path;
2304 }
2305
2306 return make_unibyte_string (sockun->sun_path, name_length);
2307 }
2308 #endif
2309 default:
2310 len -= offsetof (struct sockaddr, sa_family) + sizeof (sa->sa_family);
2311 address = Fcons (make_number (sa->sa_family),
2312 Fmake_vector (make_number (len), Qnil));
2313 p = XVECTOR (XCDR (address));
2314 cp = (unsigned char *) &sa->sa_family + sizeof (sa->sa_family);
2315 break;
2316 }
2317
2318 i = 0;
2319 while (i < len)
2320 p->contents[i++] = make_number (*cp++);
2321
2322 return address;
2323 }
2324
2325
2326 /* Get family and required size for sockaddr structure to hold ADDRESS. */
2327
2328 static int
2329 get_lisp_to_sockaddr_size (Lisp_Object address, int *familyp)
2330 {
2331 register struct Lisp_Vector *p;
2332
2333 if (VECTORP (address))
2334 {
2335 p = XVECTOR (address);
2336 if (p->header.size == 5)
2337 {
2338 *familyp = AF_INET;
2339 return sizeof (struct sockaddr_in);
2340 }
2341 #ifdef AF_INET6
2342 else if (p->header.size == 9)
2343 {
2344 *familyp = AF_INET6;
2345 return sizeof (struct sockaddr_in6);
2346 }
2347 #endif
2348 }
2349 #ifdef HAVE_LOCAL_SOCKETS
2350 else if (STRINGP (address))
2351 {
2352 *familyp = AF_LOCAL;
2353 return sizeof (struct sockaddr_un);
2354 }
2355 #endif
2356 else if (CONSP (address) && TYPE_RANGED_INTEGERP (int, XCAR (address))
2357 && VECTORP (XCDR (address)))
2358 {
2359 struct sockaddr *sa;
2360 p = XVECTOR (XCDR (address));
2361 if (MAX_ALLOCA - sizeof sa->sa_family < p->header.size)
2362 return 0;
2363 *familyp = XINT (XCAR (address));
2364 return p->header.size + sizeof (sa->sa_family);
2365 }
2366 return 0;
2367 }
2368
2369 /* Convert an address object (vector or string) to an internal sockaddr.
2370
2371 The address format has been basically validated by
2372 get_lisp_to_sockaddr_size, but this does not mean FAMILY is valid;
2373 it could have come from user data. So if FAMILY is not valid,
2374 we return after zeroing *SA. */
2375
2376 static void
2377 conv_lisp_to_sockaddr (int family, Lisp_Object address, struct sockaddr *sa, int len)
2378 {
2379 register struct Lisp_Vector *p;
2380 register unsigned char *cp = NULL;
2381 register int i;
2382 EMACS_INT hostport;
2383
2384 memset (sa, 0, len);
2385
2386 if (VECTORP (address))
2387 {
2388 p = XVECTOR (address);
2389 if (family == AF_INET)
2390 {
2391 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2392 len = sizeof (sin->sin_addr) + 1;
2393 hostport = XINT (p->contents[--len]);
2394 sin->sin_port = htons (hostport);
2395 cp = (unsigned char *)&sin->sin_addr;
2396 sa->sa_family = family;
2397 }
2398 #ifdef AF_INET6
2399 else if (family == AF_INET6)
2400 {
2401 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
2402 uint16_t *ip6 = (uint16_t *)&sin6->sin6_addr;
2403 len = sizeof (sin6->sin6_addr) / 2 + 1;
2404 hostport = XINT (p->contents[--len]);
2405 sin6->sin6_port = htons (hostport);
2406 for (i = 0; i < len; i++)
2407 if (INTEGERP (p->contents[i]))
2408 {
2409 int j = XFASTINT (p->contents[i]) & 0xffff;
2410 ip6[i] = ntohs (j);
2411 }
2412 sa->sa_family = family;
2413 return;
2414 }
2415 #endif
2416 else
2417 return;
2418 }
2419 else if (STRINGP (address))
2420 {
2421 #ifdef HAVE_LOCAL_SOCKETS
2422 if (family == AF_LOCAL)
2423 {
2424 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2425 cp = SDATA (address);
2426 for (i = 0; i < sizeof (sockun->sun_path) && *cp; i++)
2427 sockun->sun_path[i] = *cp++;
2428 sa->sa_family = family;
2429 }
2430 #endif
2431 return;
2432 }
2433 else
2434 {
2435 p = XVECTOR (XCDR (address));
2436 cp = (unsigned char *)sa + sizeof (sa->sa_family);
2437 }
2438
2439 for (i = 0; i < len; i++)
2440 if (INTEGERP (p->contents[i]))
2441 *cp++ = XFASTINT (p->contents[i]) & 0xff;
2442 }
2443
2444 #ifdef DATAGRAM_SOCKETS
2445 DEFUN ("process-datagram-address", Fprocess_datagram_address, Sprocess_datagram_address,
2446 1, 1, 0,
2447 doc: /* Get the current datagram address associated with PROCESS.
2448 If PROCESS is a non-blocking network process that hasn't been fully
2449 set up yet, this function will block until socket setup has completed. */)
2450 (Lisp_Object process)
2451 {
2452 int channel;
2453
2454 CHECK_PROCESS (process);
2455
2456 if (NETCONN_P (process))
2457 wait_for_socket_fds (process, "process-datagram-address");
2458
2459 if (!DATAGRAM_CONN_P (process))
2460 return Qnil;
2461
2462 channel = XPROCESS (process)->infd;
2463 return conv_sockaddr_to_lisp (datagram_address[channel].sa,
2464 datagram_address[channel].len);
2465 }
2466
2467 DEFUN ("set-process-datagram-address", Fset_process_datagram_address, Sset_process_datagram_address,
2468 2, 2, 0,
2469 doc: /* Set the datagram address for PROCESS to ADDRESS.
2470 Return nil upon error setting address, ADDRESS otherwise.
2471
2472 If PROCESS is a non-blocking network process that hasn't been fully
2473 set up yet, this function will block until socket setup has completed. */)
2474 (Lisp_Object process, Lisp_Object address)
2475 {
2476 int channel;
2477 int family, len;
2478
2479 CHECK_PROCESS (process);
2480
2481 if (NETCONN_P (process))
2482 wait_for_socket_fds (process, "set-process-datagram-address");
2483
2484 if (!DATAGRAM_CONN_P (process))
2485 return Qnil;
2486
2487 channel = XPROCESS (process)->infd;
2488
2489 len = get_lisp_to_sockaddr_size (address, &family);
2490 if (len == 0 || datagram_address[channel].len != len)
2491 return Qnil;
2492 conv_lisp_to_sockaddr (family, address, datagram_address[channel].sa, len);
2493 return address;
2494 }
2495 #endif
2496 \f
2497
2498 static const struct socket_options {
2499 /* The name of this option. Should be lowercase version of option
2500 name without SO_ prefix. */
2501 const char *name;
2502 /* Option level SOL_... */
2503 int optlevel;
2504 /* Option number SO_... */
2505 int optnum;
2506 enum { SOPT_UNKNOWN, SOPT_BOOL, SOPT_INT, SOPT_IFNAME, SOPT_LINGER } opttype;
2507 enum { OPIX_NONE = 0, OPIX_MISC = 1, OPIX_REUSEADDR = 2 } optbit;
2508 } socket_options[] =
2509 {
2510 #ifdef SO_BINDTODEVICE
2511 { ":bindtodevice", SOL_SOCKET, SO_BINDTODEVICE, SOPT_IFNAME, OPIX_MISC },
2512 #endif
2513 #ifdef SO_BROADCAST
2514 { ":broadcast", SOL_SOCKET, SO_BROADCAST, SOPT_BOOL, OPIX_MISC },
2515 #endif
2516 #ifdef SO_DONTROUTE
2517 { ":dontroute", SOL_SOCKET, SO_DONTROUTE, SOPT_BOOL, OPIX_MISC },
2518 #endif
2519 #ifdef SO_KEEPALIVE
2520 { ":keepalive", SOL_SOCKET, SO_KEEPALIVE, SOPT_BOOL, OPIX_MISC },
2521 #endif
2522 #ifdef SO_LINGER
2523 { ":linger", SOL_SOCKET, SO_LINGER, SOPT_LINGER, OPIX_MISC },
2524 #endif
2525 #ifdef SO_OOBINLINE
2526 { ":oobinline", SOL_SOCKET, SO_OOBINLINE, SOPT_BOOL, OPIX_MISC },
2527 #endif
2528 #ifdef SO_PRIORITY
2529 { ":priority", SOL_SOCKET, SO_PRIORITY, SOPT_INT, OPIX_MISC },
2530 #endif
2531 #ifdef SO_REUSEADDR
2532 { ":reuseaddr", SOL_SOCKET, SO_REUSEADDR, SOPT_BOOL, OPIX_REUSEADDR },
2533 #endif
2534 { 0, 0, 0, SOPT_UNKNOWN, OPIX_NONE }
2535 };
2536
2537 /* Set option OPT to value VAL on socket S.
2538
2539 Return (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
2540 Signals an error if setting a known option fails.
2541 */
2542
2543 static int
2544 set_socket_option (int s, Lisp_Object opt, Lisp_Object val)
2545 {
2546 char *name;
2547 const struct socket_options *sopt;
2548 int ret = 0;
2549
2550 CHECK_SYMBOL (opt);
2551
2552 name = SSDATA (SYMBOL_NAME (opt));
2553 for (sopt = socket_options; sopt->name; sopt++)
2554 if (strcmp (name, sopt->name) == 0)
2555 break;
2556
2557 switch (sopt->opttype)
2558 {
2559 case SOPT_BOOL:
2560 {
2561 int optval;
2562 optval = NILP (val) ? 0 : 1;
2563 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2564 &optval, sizeof (optval));
2565 break;
2566 }
2567
2568 case SOPT_INT:
2569 {
2570 int optval;
2571 if (TYPE_RANGED_INTEGERP (int, val))
2572 optval = XINT (val);
2573 else
2574 error ("Bad option value for %s", name);
2575 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2576 &optval, sizeof (optval));
2577 break;
2578 }
2579
2580 #ifdef SO_BINDTODEVICE
2581 case SOPT_IFNAME:
2582 {
2583 char devname[IFNAMSIZ + 1];
2584
2585 /* This is broken, at least in the Linux 2.4 kernel.
2586 To unbind, the arg must be a zero integer, not the empty string.
2587 This should work on all systems. KFS. 2003-09-23. */
2588 memset (devname, 0, sizeof devname);
2589 if (STRINGP (val))
2590 {
2591 char *arg = SSDATA (val);
2592 int len = min (strlen (arg), IFNAMSIZ);
2593 memcpy (devname, arg, len);
2594 }
2595 else if (!NILP (val))
2596 error ("Bad option value for %s", name);
2597 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2598 devname, IFNAMSIZ);
2599 break;
2600 }
2601 #endif
2602
2603 #ifdef SO_LINGER
2604 case SOPT_LINGER:
2605 {
2606 struct linger linger;
2607
2608 linger.l_onoff = 1;
2609 linger.l_linger = 0;
2610 if (TYPE_RANGED_INTEGERP (int, val))
2611 linger.l_linger = XINT (val);
2612 else
2613 linger.l_onoff = NILP (val) ? 0 : 1;
2614 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2615 &linger, sizeof (linger));
2616 break;
2617 }
2618 #endif
2619
2620 default:
2621 return 0;
2622 }
2623
2624 if (ret < 0)
2625 {
2626 int setsockopt_errno = errno;
2627 report_file_errno ("Cannot set network option", list2 (opt, val),
2628 setsockopt_errno);
2629 }
2630
2631 return (1 << sopt->optbit);
2632 }
2633
2634
2635 DEFUN ("set-network-process-option",
2636 Fset_network_process_option, Sset_network_process_option,
2637 3, 4, 0,
2638 doc: /* For network process PROCESS set option OPTION to value VALUE.
2639 See `make-network-process' for a list of options and values.
2640 If optional fourth arg NO-ERROR is non-nil, don't signal an error if
2641 OPTION is not a supported option, return nil instead; otherwise return t.
2642
2643 If PROCESS is a non-blocking network process that hasn't been fully
2644 set up yet, this function will block until socket setup has completed. */)
2645 (Lisp_Object process, Lisp_Object option, Lisp_Object value, Lisp_Object no_error)
2646 {
2647 int s;
2648 struct Lisp_Process *p;
2649
2650 CHECK_PROCESS (process);
2651 p = XPROCESS (process);
2652 if (!NETCONN1_P (p))
2653 error ("Process is not a network process");
2654
2655 wait_for_socket_fds (process, "set-network-process-option");
2656
2657 s = p->infd;
2658 if (s < 0)
2659 error ("Process is not running");
2660
2661 if (set_socket_option (s, option, value))
2662 {
2663 pset_childp (p, Fplist_put (p->childp, option, value));
2664 return Qt;
2665 }
2666
2667 if (NILP (no_error))
2668 error ("Unknown or unsupported option");
2669
2670 return Qnil;
2671 }
2672
2673 \f
2674 DEFUN ("serial-process-configure",
2675 Fserial_process_configure,
2676 Sserial_process_configure,
2677 0, MANY, 0,
2678 doc: /* Configure speed, bytesize, etc. of a serial process.
2679
2680 Arguments are specified as keyword/argument pairs. Attributes that
2681 are not given are re-initialized from the process's current
2682 configuration (available via the function `process-contact') or set to
2683 reasonable default values. The following arguments are defined:
2684
2685 :process PROCESS
2686 :name NAME
2687 :buffer BUFFER
2688 :port PORT
2689 -- Any of these arguments can be given to identify the process that is
2690 to be configured. If none of these arguments is given, the current
2691 buffer's process is used.
2692
2693 :speed SPEED -- SPEED is the speed of the serial port in bits per
2694 second, also called baud rate. Any value can be given for SPEED, but
2695 most serial ports work only at a few defined values between 1200 and
2696 115200, with 9600 being the most common value. If SPEED is nil, the
2697 serial port is not configured any further, i.e., all other arguments
2698 are ignored. This may be useful for special serial ports such as
2699 Bluetooth-to-serial converters which can only be configured through AT
2700 commands. A value of nil for SPEED can be used only when passed
2701 through `make-serial-process' or `serial-term'.
2702
2703 :bytesize BYTESIZE -- BYTESIZE is the number of bits per byte, which
2704 can be 7 or 8. If BYTESIZE is not given or nil, a value of 8 is used.
2705
2706 :parity PARITY -- PARITY can be nil (don't use parity), the symbol
2707 `odd' (use odd parity), or the symbol `even' (use even parity). If
2708 PARITY is not given, no parity is used.
2709
2710 :stopbits STOPBITS -- STOPBITS is the number of stopbits used to
2711 terminate a byte transmission. STOPBITS can be 1 or 2. If STOPBITS
2712 is not given or nil, 1 stopbit is used.
2713
2714 :flowcontrol FLOWCONTROL -- FLOWCONTROL determines the type of
2715 flowcontrol to be used, which is either nil (don't use flowcontrol),
2716 the symbol `hw' (use RTS/CTS hardware flowcontrol), or the symbol `sw'
2717 (use XON/XOFF software flowcontrol). If FLOWCONTROL is not given, no
2718 flowcontrol is used.
2719
2720 `serial-process-configure' is called by `make-serial-process' for the
2721 initial configuration of the serial port.
2722
2723 Examples:
2724
2725 (serial-process-configure :process "/dev/ttyS0" :speed 1200)
2726
2727 (serial-process-configure
2728 :buffer "COM1" :stopbits 1 :parity \\='odd :flowcontrol \\='hw)
2729
2730 (serial-process-configure :port "\\\\.\\COM13" :bytesize 7)
2731
2732 usage: (serial-process-configure &rest ARGS) */)
2733 (ptrdiff_t nargs, Lisp_Object *args)
2734 {
2735 struct Lisp_Process *p;
2736 Lisp_Object contact = Qnil;
2737 Lisp_Object proc = Qnil;
2738
2739 contact = Flist (nargs, args);
2740
2741 proc = Fplist_get (contact, QCprocess);
2742 if (NILP (proc))
2743 proc = Fplist_get (contact, QCname);
2744 if (NILP (proc))
2745 proc = Fplist_get (contact, QCbuffer);
2746 if (NILP (proc))
2747 proc = Fplist_get (contact, QCport);
2748 proc = get_process (proc);
2749 p = XPROCESS (proc);
2750 if (!EQ (p->type, Qserial))
2751 error ("Not a serial process");
2752
2753 if (NILP (Fplist_get (p->childp, QCspeed)))
2754 return Qnil;
2755
2756 serial_configure (p, contact);
2757 return Qnil;
2758 }
2759
2760 DEFUN ("make-serial-process", Fmake_serial_process, Smake_serial_process,
2761 0, MANY, 0,
2762 doc: /* Create and return a serial port process.
2763
2764 In Emacs, serial port connections are represented by process objects,
2765 so input and output work as for subprocesses, and `delete-process'
2766 closes a serial port connection. However, a serial process has no
2767 process id, it cannot be signaled, and the status codes are different
2768 from normal processes.
2769
2770 `make-serial-process' creates a process and a buffer, on which you
2771 probably want to use `process-send-string'. Try \\[serial-term] for
2772 an interactive terminal. See below for examples.
2773
2774 Arguments are specified as keyword/argument pairs. The following
2775 arguments are defined:
2776
2777 :port PORT -- (mandatory) PORT is the path or name of the serial port.
2778 For example, this could be "/dev/ttyS0" on Unix. On Windows, this
2779 could be "COM1", or "\\\\.\\COM10" for ports higher than COM9 (double
2780 the backslashes in strings).
2781
2782 :speed SPEED -- (mandatory) is handled by `serial-process-configure',
2783 which this function calls.
2784
2785 :name NAME -- NAME is the name of the process. If NAME is not given,
2786 the value of PORT is used.
2787
2788 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2789 with the process. Process output goes at the end of that buffer,
2790 unless you specify an output stream or filter function to handle the
2791 output. If BUFFER is not given, the value of NAME is used.
2792
2793 :coding CODING -- If CODING is a symbol, it specifies the coding
2794 system used for both reading and writing for this process. If CODING
2795 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2796 ENCODING is used for writing.
2797
2798 :noquery BOOL -- When exiting Emacs, query the user if BOOL is nil and
2799 the process is running. If BOOL is not given, query before exiting.
2800
2801 :stop BOOL -- Start process in the `stopped' state if BOOL is non-nil.
2802 In the stopped state, a serial process does not accept incoming data,
2803 but you can send outgoing data. The stopped state is cleared by
2804 `continue-process' and set by `stop-process'.
2805
2806 :filter FILTER -- Install FILTER as the process filter.
2807
2808 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2809
2810 :plist PLIST -- Install PLIST as the initial plist of the process.
2811
2812 :bytesize
2813 :parity
2814 :stopbits
2815 :flowcontrol
2816 -- This function calls `serial-process-configure' to handle these
2817 arguments.
2818
2819 The original argument list, possibly modified by later configuration,
2820 is available via the function `process-contact'.
2821
2822 Examples:
2823
2824 (make-serial-process :port "/dev/ttyS0" :speed 9600)
2825
2826 (make-serial-process :port "COM1" :speed 115200 :stopbits 2)
2827
2828 (make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity \\='odd)
2829
2830 (make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil)
2831
2832 usage: (make-serial-process &rest ARGS) */)
2833 (ptrdiff_t nargs, Lisp_Object *args)
2834 {
2835 int fd = -1;
2836 Lisp_Object proc, contact, port;
2837 struct Lisp_Process *p;
2838 Lisp_Object name, buffer;
2839 Lisp_Object tem, val;
2840 ptrdiff_t specpdl_count;
2841
2842 if (nargs == 0)
2843 return Qnil;
2844
2845 contact = Flist (nargs, args);
2846
2847 port = Fplist_get (contact, QCport);
2848 if (NILP (port))
2849 error ("No port specified");
2850 CHECK_STRING (port);
2851
2852 if (NILP (Fplist_member (contact, QCspeed)))
2853 error (":speed not specified");
2854 if (!NILP (Fplist_get (contact, QCspeed)))
2855 CHECK_NUMBER (Fplist_get (contact, QCspeed));
2856
2857 name = Fplist_get (contact, QCname);
2858 if (NILP (name))
2859 name = port;
2860 CHECK_STRING (name);
2861 proc = make_process (name);
2862 specpdl_count = SPECPDL_INDEX ();
2863 record_unwind_protect (remove_process, proc);
2864 p = XPROCESS (proc);
2865
2866 fd = serial_open (port);
2867 p->open_fd[SUBPROCESS_STDIN] = fd;
2868 p->infd = fd;
2869 p->outfd = fd;
2870 if (fd > max_process_desc)
2871 max_process_desc = fd;
2872 chan_process[fd] = proc;
2873
2874 buffer = Fplist_get (contact, QCbuffer);
2875 if (NILP (buffer))
2876 buffer = name;
2877 buffer = Fget_buffer_create (buffer);
2878 pset_buffer (p, buffer);
2879
2880 pset_childp (p, contact);
2881 pset_plist (p, Fcopy_sequence (Fplist_get (contact, QCplist)));
2882 pset_type (p, Qserial);
2883 pset_sentinel (p, Fplist_get (contact, QCsentinel));
2884 pset_filter (p, Fplist_get (contact, QCfilter));
2885 pset_log (p, Qnil);
2886 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
2887 p->kill_without_query = 1;
2888 if (tem = Fplist_get (contact, QCstop), !NILP (tem))
2889 pset_command (p, Qt);
2890 eassert (! p->pty_flag);
2891
2892 if (!EQ (p->command, Qt))
2893 {
2894 FD_SET (fd, &input_wait_mask);
2895 FD_SET (fd, &non_keyboard_wait_mask);
2896 }
2897
2898 if (BUFFERP (buffer))
2899 {
2900 set_marker_both (p->mark, buffer,
2901 BUF_ZV (XBUFFER (buffer)),
2902 BUF_ZV_BYTE (XBUFFER (buffer)));
2903 }
2904
2905 tem = Fplist_member (contact, QCcoding);
2906 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
2907 tem = Qnil;
2908
2909 val = Qnil;
2910 if (!NILP (tem))
2911 {
2912 val = XCAR (XCDR (tem));
2913 if (CONSP (val))
2914 val = XCAR (val);
2915 }
2916 else if (!NILP (Vcoding_system_for_read))
2917 val = Vcoding_system_for_read;
2918 else if ((!NILP (buffer) && NILP (BVAR (XBUFFER (buffer), enable_multibyte_characters)))
2919 || (NILP (buffer) && NILP (BVAR (&buffer_defaults, enable_multibyte_characters))))
2920 val = Qnil;
2921 pset_decode_coding_system (p, val);
2922
2923 val = Qnil;
2924 if (!NILP (tem))
2925 {
2926 val = XCAR (XCDR (tem));
2927 if (CONSP (val))
2928 val = XCDR (val);
2929 }
2930 else if (!NILP (Vcoding_system_for_write))
2931 val = Vcoding_system_for_write;
2932 else if ((!NILP (buffer) && NILP (BVAR (XBUFFER (buffer), enable_multibyte_characters)))
2933 || (NILP (buffer) && NILP (BVAR (&buffer_defaults, enable_multibyte_characters))))
2934 val = Qnil;
2935 pset_encode_coding_system (p, val);
2936
2937 setup_process_coding_systems (proc);
2938 pset_decoding_buf (p, empty_unibyte_string);
2939 p->decoding_carryover = 0;
2940 pset_encoding_buf (p, empty_unibyte_string);
2941 p->inherit_coding_system_flag
2942 = !(!NILP (tem) || NILP (buffer) || !inherit_process_coding_system);
2943
2944 Fserial_process_configure (nargs, args);
2945
2946 specpdl_ptr = specpdl + specpdl_count;
2947
2948 return proc;
2949 }
2950
2951 static void
2952 set_network_socket_coding_system (Lisp_Object proc, Lisp_Object host,
2953 Lisp_Object service, Lisp_Object name)
2954 {
2955 Lisp_Object tem;
2956 struct Lisp_Process *p = XPROCESS (proc);
2957 Lisp_Object contact = p->childp;
2958 Lisp_Object coding_systems = Qt;
2959 Lisp_Object val;
2960
2961 tem = Fplist_member (contact, QCcoding);
2962 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
2963 tem = Qnil; /* No error message (too late!). */
2964
2965 /* Setup coding systems for communicating with the network stream. */
2966 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
2967
2968 if (!NILP (tem))
2969 {
2970 val = XCAR (XCDR (tem));
2971 if (CONSP (val))
2972 val = XCAR (val);
2973 }
2974 else if (!NILP (Vcoding_system_for_read))
2975 val = Vcoding_system_for_read;
2976 else if ((!NILP (p->buffer)
2977 && NILP (BVAR (XBUFFER (p->buffer), enable_multibyte_characters)))
2978 || (NILP (p->buffer)
2979 && NILP (BVAR (&buffer_defaults, enable_multibyte_characters))))
2980 /* We dare not decode end-of-line format by setting VAL to
2981 Qraw_text, because the existing Emacs Lisp libraries
2982 assume that they receive bare code including a sequence of
2983 CR LF. */
2984 val = Qnil;
2985 else
2986 {
2987 if (NILP (host) || NILP (service))
2988 coding_systems = Qnil;
2989 else
2990 coding_systems = CALLN (Ffind_operation_coding_system,
2991 Qopen_network_stream, name, p->buffer,
2992 host, service);
2993 if (CONSP (coding_systems))
2994 val = XCAR (coding_systems);
2995 else if (CONSP (Vdefault_process_coding_system))
2996 val = XCAR (Vdefault_process_coding_system);
2997 else
2998 val = Qnil;
2999 }
3000 pset_decode_coding_system (p, val);
3001
3002 if (!NILP (tem))
3003 {
3004 val = XCAR (XCDR (tem));
3005 if (CONSP (val))
3006 val = XCDR (val);
3007 }
3008 else if (!NILP (Vcoding_system_for_write))
3009 val = Vcoding_system_for_write;
3010 else if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
3011 val = Qnil;
3012 else
3013 {
3014 if (EQ (coding_systems, Qt))
3015 {
3016 if (NILP (host) || NILP (service))
3017 coding_systems = Qnil;
3018 else
3019 coding_systems = CALLN (Ffind_operation_coding_system,
3020 Qopen_network_stream, name, p->buffer,
3021 host, service);
3022 }
3023 if (CONSP (coding_systems))
3024 val = XCDR (coding_systems);
3025 else if (CONSP (Vdefault_process_coding_system))
3026 val = XCDR (Vdefault_process_coding_system);
3027 else
3028 val = Qnil;
3029 }
3030 pset_encode_coding_system (p, val);
3031
3032 pset_decoding_buf (p, empty_unibyte_string);
3033 p->decoding_carryover = 0;
3034 pset_encoding_buf (p, empty_unibyte_string);
3035
3036 p->inherit_coding_system_flag
3037 = !(!NILP (tem) || NILP (p->buffer) || !inherit_process_coding_system);
3038 }
3039
3040 #ifdef HAVE_GNUTLS
3041 static void
3042 finish_after_tls_connection (Lisp_Object proc)
3043 {
3044 struct Lisp_Process *p = XPROCESS (proc);
3045 Lisp_Object contact = p->childp;
3046 Lisp_Object result = Qt;
3047
3048 if (!NILP (Ffboundp (Qnsm_verify_connection)))
3049 result = call3 (Qnsm_verify_connection,
3050 proc,
3051 Fplist_get (contact, QChost),
3052 Fplist_get (contact, QCservice));
3053
3054 if (NILP (result))
3055 {
3056 pset_status (p, list2 (Qfailed,
3057 build_string ("The Network Security Manager stopped the connections")));
3058 deactivate_process (proc);
3059 }
3060 else
3061 {
3062 /* If we cleared the connection wait mask before we did
3063 the TLS setup, then we have to say that the process
3064 is finally "open" here. */
3065 if (! FD_ISSET (p->outfd, &connect_wait_mask))
3066 {
3067 pset_status (p, Qrun);
3068 /* Execute the sentinel here. If we had relied on
3069 status_notify to do it later, it will read input
3070 from the process before calling the sentinel. */
3071 exec_sentinel (proc, build_string ("open\n"));
3072 }
3073 }
3074 }
3075 #endif
3076
3077 static void
3078 connect_network_socket (Lisp_Object proc, Lisp_Object ip_addresses)
3079 {
3080 ptrdiff_t count = SPECPDL_INDEX ();
3081 ptrdiff_t count1;
3082 int s = -1, outch, inch;
3083 int xerrno = 0;
3084 Lisp_Object ip_address;
3085 int family;
3086 struct sockaddr *sa = NULL;
3087 int ret;
3088 int addrlen;
3089 struct Lisp_Process *p = XPROCESS (proc);
3090 Lisp_Object contact = p->childp;
3091 int optbits = 0;
3092
3093 /* Do this in case we never enter the while-loop below. */
3094 count1 = SPECPDL_INDEX ();
3095 s = -1;
3096
3097 while (!NILP (ip_addresses))
3098 {
3099 ip_address = XCAR (ip_addresses);
3100 ip_addresses = XCDR (ip_addresses);
3101
3102 #ifdef WINDOWSNT
3103 retry_connect:
3104 #endif
3105
3106 addrlen = get_lisp_to_sockaddr_size (ip_address, &family);
3107 if (sa)
3108 free (sa);
3109 sa = xmalloc (addrlen);
3110 conv_lisp_to_sockaddr (family, ip_address, sa, addrlen);
3111
3112 s = socket (family, p->socktype | SOCK_CLOEXEC, p->ai_protocol);
3113 if (s < 0)
3114 {
3115 xerrno = errno;
3116 continue;
3117 }
3118
3119 #ifdef DATAGRAM_SOCKETS
3120 if (!p->is_server && p->socktype == SOCK_DGRAM)
3121 break;
3122 #endif /* DATAGRAM_SOCKETS */
3123
3124 #ifdef NON_BLOCKING_CONNECT
3125 if (p->is_non_blocking_client)
3126 {
3127 ret = fcntl (s, F_SETFL, O_NONBLOCK);
3128 if (ret < 0)
3129 {
3130 xerrno = errno;
3131 emacs_close (s);
3132 s = -1;
3133 continue;
3134 }
3135 }
3136 #endif
3137
3138 /* Make us close S if quit. */
3139 record_unwind_protect_int (close_file_unwind, s);
3140
3141 /* Parse network options in the arg list. We simply ignore anything
3142 which isn't a known option (including other keywords). An error
3143 is signaled if setting a known option fails. */
3144 {
3145 Lisp_Object params = contact, key, val;
3146
3147 while (!NILP (params))
3148 {
3149 key = XCAR (params);
3150 params = XCDR (params);
3151 val = XCAR (params);
3152 params = XCDR (params);
3153 optbits |= set_socket_option (s, key, val);
3154 }
3155 }
3156
3157 if (p->is_server)
3158 {
3159 /* Configure as a server socket. */
3160
3161 /* SO_REUSEADDR = 1 is default for server sockets; must specify
3162 explicit :reuseaddr key to override this. */
3163 #ifdef HAVE_LOCAL_SOCKETS
3164 if (family != AF_LOCAL)
3165 #endif
3166 if (!(optbits & (1 << OPIX_REUSEADDR)))
3167 {
3168 int optval = 1;
3169 if (setsockopt (s, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof optval))
3170 report_file_error ("Cannot set reuse option on server socket", Qnil);
3171 }
3172
3173 if (bind (s, sa, addrlen))
3174 report_file_error ("Cannot bind server socket", Qnil);
3175
3176 #ifdef HAVE_GETSOCKNAME
3177 if (p->port == 0)
3178 {
3179 struct sockaddr_in sa1;
3180 socklen_t len1 = sizeof (sa1);
3181 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3182 {
3183 Lisp_Object service;
3184 service = make_number (ntohs (sa1.sin_port));
3185 contact = Fplist_put (contact, QCservice, service);
3186 /* Save the port number so that we can stash it in
3187 the process object later. */
3188 ((struct sockaddr_in *)sa)->sin_port = sa1.sin_port;
3189 }
3190 }
3191 #endif
3192
3193 if (p->socktype != SOCK_DGRAM && listen (s, p->backlog))
3194 report_file_error ("Cannot listen on server socket", Qnil);
3195
3196 break;
3197 }
3198
3199 immediate_quit = 1;
3200 QUIT;
3201
3202 ret = connect (s, sa, addrlen);
3203 xerrno = errno;
3204
3205 if (ret == 0 || xerrno == EISCONN)
3206 {
3207 /* The unwind-protect will be discarded afterwards.
3208 Likewise for immediate_quit. */
3209 break;
3210 }
3211
3212 #ifdef NON_BLOCKING_CONNECT
3213 #ifdef EINPROGRESS
3214 if (p->is_non_blocking_client && xerrno == EINPROGRESS)
3215 break;
3216 #else
3217 #ifdef EWOULDBLOCK
3218 if (p->is_non_blocking_client && xerrno == EWOULDBLOCK)
3219 break;
3220 #endif
3221 #endif
3222 #endif
3223
3224 #ifndef WINDOWSNT
3225 if (xerrno == EINTR)
3226 {
3227 /* Unlike most other syscalls connect() cannot be called
3228 again. (That would return EALREADY.) The proper way to
3229 wait for completion is pselect(). */
3230 int sc;
3231 socklen_t len;
3232 fd_set fdset;
3233 retry_select:
3234 FD_ZERO (&fdset);
3235 FD_SET (s, &fdset);
3236 QUIT;
3237 sc = pselect (s + 1, NULL, &fdset, NULL, NULL, NULL);
3238 if (sc == -1)
3239 {
3240 if (errno == EINTR)
3241 goto retry_select;
3242 else
3243 report_file_error ("Failed select", Qnil);
3244 }
3245 eassert (sc > 0);
3246
3247 len = sizeof xerrno;
3248 eassert (FD_ISSET (s, &fdset));
3249 if (getsockopt (s, SOL_SOCKET, SO_ERROR, &xerrno, &len) < 0)
3250 report_file_error ("Failed getsockopt", Qnil);
3251 if (xerrno)
3252 report_file_errno ("Failed connect", Qnil, xerrno);
3253 break;
3254 }
3255 #endif /* !WINDOWSNT */
3256
3257 immediate_quit = 0;
3258
3259 /* Discard the unwind protect closing S. */
3260 specpdl_ptr = specpdl + count1;
3261 emacs_close (s);
3262 s = -1;
3263
3264 #ifdef WINDOWSNT
3265 if (xerrno == EINTR)
3266 goto retry_connect;
3267 #endif
3268 }
3269
3270 if (s >= 0)
3271 {
3272 #ifdef DATAGRAM_SOCKETS
3273 if (p->socktype == SOCK_DGRAM)
3274 {
3275 if (datagram_address[s].sa)
3276 emacs_abort ();
3277
3278 datagram_address[s].sa = xmalloc (addrlen);
3279 datagram_address[s].len = addrlen;
3280 if (p->is_server)
3281 {
3282 Lisp_Object remote;
3283 memset (datagram_address[s].sa, 0, addrlen);
3284 if (remote = Fplist_get (contact, QCremote), !NILP (remote))
3285 {
3286 int rfamily, rlen;
3287 rlen = get_lisp_to_sockaddr_size (remote, &rfamily);
3288 if (rlen != 0 && rfamily == family
3289 && rlen == addrlen)
3290 conv_lisp_to_sockaddr (rfamily, remote,
3291 datagram_address[s].sa, rlen);
3292 }
3293 }
3294 else
3295 memcpy (datagram_address[s].sa, sa, addrlen);
3296 }
3297 #endif
3298
3299 contact = Fplist_put (contact, p->is_server? QClocal: QCremote,
3300 conv_sockaddr_to_lisp (sa, addrlen));
3301 #ifdef HAVE_GETSOCKNAME
3302 if (!p->is_server)
3303 {
3304 struct sockaddr_in sa1;
3305 socklen_t len1 = sizeof (sa1);
3306 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3307 contact = Fplist_put (contact, QClocal,
3308 conv_sockaddr_to_lisp ((struct sockaddr *)&sa1, len1));
3309 }
3310 #endif
3311 }
3312
3313 immediate_quit = 0;
3314
3315 if (s < 0)
3316 {
3317 /* If non-blocking got this far - and failed - assume non-blocking is
3318 not supported after all. This is probably a wrong assumption, but
3319 the normal blocking calls to open-network-stream handles this error
3320 better. */
3321 if (p->is_non_blocking_client)
3322 return;
3323
3324 report_file_errno ((p->is_server
3325 ? "make server process failed"
3326 : "make client process failed"),
3327 contact, xerrno);
3328 }
3329
3330 inch = s;
3331 outch = s;
3332
3333 chan_process[inch] = proc;
3334
3335 fcntl (inch, F_SETFL, O_NONBLOCK);
3336
3337 p = XPROCESS (proc);
3338 p->open_fd[SUBPROCESS_STDIN] = inch;
3339 p->infd = inch;
3340 p->outfd = outch;
3341
3342 /* Discard the unwind protect for closing S, if any. */
3343 specpdl_ptr = specpdl + count1;
3344
3345 /* Unwind bind_polling_period and request_sigio. */
3346 unbind_to (count, Qnil);
3347
3348 if (p->is_server && p->socktype != SOCK_DGRAM)
3349 pset_status (p, Qlisten);
3350
3351 /* Make the process marker point into the process buffer (if any). */
3352 if (BUFFERP (p->buffer))
3353 set_marker_both (p->mark, p->buffer,
3354 BUF_ZV (XBUFFER (p->buffer)),
3355 BUF_ZV_BYTE (XBUFFER (p->buffer)));
3356
3357 #ifdef NON_BLOCKING_CONNECT
3358 if (p->is_non_blocking_client)
3359 {
3360 /* We may get here if connect did succeed immediately. However,
3361 in that case, we still need to signal this like a non-blocking
3362 connection. */
3363 pset_status (p, Qconnect);
3364 if (!FD_ISSET (inch, &connect_wait_mask))
3365 {
3366 FD_SET (inch, &connect_wait_mask);
3367 FD_SET (inch, &write_mask);
3368 num_pending_connects++;
3369 }
3370 }
3371 else
3372 #endif
3373 /* A server may have a client filter setting of Qt, but it must
3374 still listen for incoming connects unless it is stopped. */
3375 if ((!EQ (p->filter, Qt) && !EQ (p->command, Qt))
3376 || (EQ (p->status, Qlisten) && NILP (p->command)))
3377 {
3378 FD_SET (inch, &input_wait_mask);
3379 FD_SET (inch, &non_keyboard_wait_mask);
3380 }
3381
3382 if (inch > max_process_desc)
3383 max_process_desc = inch;
3384
3385 /* Set up the masks based on the process filter. */
3386 set_process_filter_masks (p);
3387
3388 setup_process_coding_systems (proc);
3389
3390 #ifdef HAVE_GNUTLS
3391 /* Continue the asynchronous connection. */
3392 if (!NILP (p->gnutls_boot_parameters))
3393 {
3394 Lisp_Object boot, params = p->gnutls_boot_parameters;
3395
3396 boot = Fgnutls_boot (proc, XCAR (params), XCDR (params));
3397 p->gnutls_boot_parameters = Qnil;
3398
3399 if (p->gnutls_initstage == GNUTLS_STAGE_READY)
3400 /* Run sentinels, etc. */
3401 finish_after_tls_connection (proc);
3402 else if (p->gnutls_initstage != GNUTLS_STAGE_HANDSHAKE_TRIED)
3403 {
3404 deactivate_process (proc);
3405 if (NILP (boot))
3406 pset_status (p, list2 (Qfailed,
3407 build_string ("TLS negotiation failed")));
3408 else
3409 pset_status (p, list2 (Qfailed, boot));
3410 }
3411 }
3412 #endif
3413
3414 }
3415
3416 #ifndef HAVE_GETADDRINFO
3417 static Lisp_Object
3418 conv_numerical_to_lisp (unsigned char *number, int length, int port)
3419 {
3420 Lisp_Object address = Fmake_vector (make_number (length + 1), Qnil);
3421 struct Lisp_Vector *p = XVECTOR (address);
3422
3423 p->contents[length] = make_number (port);
3424 for (int i = 0; i < length; i++)
3425 p->contents[i] = make_number (number[i]);
3426
3427 return address;
3428 }
3429 #endif
3430
3431 /* Return true if STRING consists only of numerical characters. */
3432 static bool
3433 string_integer_p (Lisp_Object string)
3434 {
3435 char *s = SSDATA (string), c;
3436 while ((c = *s++))
3437 if (c < '0' || c > '9')
3438 return false;
3439 return true;
3440 }
3441
3442 /* Create a network stream/datagram client/server process. Treated
3443 exactly like a normal process when reading and writing. Primary
3444 differences are in status display and process deletion. A network
3445 connection has no PID; you cannot signal it. All you can do is
3446 stop/continue it and deactivate/close it via delete-process. */
3447
3448 DEFUN ("make-network-process", Fmake_network_process, Smake_network_process,
3449 0, MANY, 0,
3450 doc: /* Create and return a network server or client process.
3451
3452 In Emacs, network connections are represented by process objects, so
3453 input and output work as for subprocesses and `delete-process' closes
3454 a network connection. However, a network process has no process id,
3455 it cannot be signaled, and the status codes are different from normal
3456 processes.
3457
3458 Arguments are specified as keyword/argument pairs. The following
3459 arguments are defined:
3460
3461 :name NAME -- NAME is name for process. It is modified if necessary
3462 to make it unique.
3463
3464 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
3465 with the process. Process output goes at end of that buffer, unless
3466 you specify an output stream or filter function to handle the output.
3467 BUFFER may be also nil, meaning that this process is not associated
3468 with any buffer.
3469
3470 :host HOST -- HOST is name of the host to connect to, or its IP
3471 address. The symbol `local' specifies the local host. If specified
3472 for a server process, it must be a valid name or address for the local
3473 host, and only clients connecting to that address will be accepted.
3474
3475 :service SERVICE -- SERVICE is name of the service desired, or an
3476 integer specifying a port number to connect to. If SERVICE is t,
3477 a random port number is selected for the server. (If Emacs was
3478 compiled with getaddrinfo, a port number can also be specified as a
3479 string, e.g. "80", as well as an integer. This is not portable.)
3480
3481 :type TYPE -- TYPE is the type of connection. The default (nil) is a
3482 stream type connection, `datagram' creates a datagram type connection,
3483 `seqpacket' creates a reliable datagram connection.
3484
3485 :family FAMILY -- FAMILY is the address (and protocol) family for the
3486 service specified by HOST and SERVICE. The default (nil) is to use
3487 whatever address family (IPv4 or IPv6) that is defined for the host
3488 and port number specified by HOST and SERVICE. Other address families
3489 supported are:
3490 local -- for a local (i.e. UNIX) address specified by SERVICE.
3491 ipv4 -- use IPv4 address family only.
3492 ipv6 -- use IPv6 address family only.
3493
3494 :local ADDRESS -- ADDRESS is the local address used for the connection.
3495 This parameter is ignored when opening a client process. When specified
3496 for a server process, the FAMILY, HOST and SERVICE args are ignored.
3497
3498 :remote ADDRESS -- ADDRESS is the remote partner's address for the
3499 connection. This parameter is ignored when opening a stream server
3500 process. For a datagram server process, it specifies the initial
3501 setting of the remote datagram address. When specified for a client
3502 process, the FAMILY, HOST, and SERVICE args are ignored.
3503
3504 The format of ADDRESS depends on the address family:
3505 - An IPv4 address is represented as an vector of integers [A B C D P]
3506 corresponding to numeric IP address A.B.C.D and port number P.
3507 - A local address is represented as a string with the address in the
3508 local address space.
3509 - An "unsupported family" address is represented by a cons (F . AV)
3510 where F is the family number and AV is a vector containing the socket
3511 address data with one element per address data byte. Do not rely on
3512 this format in portable code, as it may depend on implementation
3513 defined constants, data sizes, and data structure alignment.
3514
3515 :coding CODING -- If CODING is a symbol, it specifies the coding
3516 system used for both reading and writing for this process. If CODING
3517 is a cons (DECODING . ENCODING), DECODING is used for reading, and
3518 ENCODING is used for writing.
3519
3520 :nowait BOOL -- If NOWAIT is non-nil for a stream type client
3521 process, return without waiting for the connection to complete;
3522 instead, the sentinel function will be called with second arg matching
3523 "open" (if successful) or "failed" when the connect completes.
3524 Default is to use a blocking connect (i.e. wait) for stream type
3525 connections.
3526
3527 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
3528 running when Emacs is exited.
3529
3530 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
3531 In the stopped state, a server process does not accept new
3532 connections, and a client process does not handle incoming traffic.
3533 The stopped state is cleared by `continue-process' and set by
3534 `stop-process'.
3535
3536 :filter FILTER -- Install FILTER as the process filter.
3537
3538 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
3539 process filter are multibyte, otherwise they are unibyte.
3540 If this keyword is not specified, the strings are multibyte if
3541 the default value of `enable-multibyte-characters' is non-nil.
3542
3543 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
3544
3545 :log LOG -- Install LOG as the server process log function. This
3546 function is called when the server accepts a network connection from a
3547 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
3548 is the server process, CLIENT is the new process for the connection,
3549 and MESSAGE is a string.
3550
3551 :plist PLIST -- Install PLIST as the new process's initial plist.
3552
3553 :tls-parameters LIST -- is a list that should be supplied if you're
3554 opening a TLS connection. The first element is the TLS type (either
3555 `gnutls-x509pki' or `gnutls-anon'), and the remaining elements should
3556 be a keyword list accepted by gnutls-boot (as returned by
3557 `gnutls-boot-parameters').
3558
3559 :server QLEN -- if QLEN is non-nil, create a server process for the
3560 specified FAMILY, SERVICE, and connection type (stream or datagram).
3561 If QLEN is an integer, it is used as the max. length of the server's
3562 pending connection queue (also known as the backlog); the default
3563 queue length is 5. Default is to create a client process.
3564
3565 The following network options can be specified for this connection:
3566
3567 :broadcast BOOL -- Allow send and receive of datagram broadcasts.
3568 :dontroute BOOL -- Only send to directly connected hosts.
3569 :keepalive BOOL -- Send keep-alive messages on network stream.
3570 :linger BOOL or TIMEOUT -- Send queued messages before closing.
3571 :oobinline BOOL -- Place out-of-band data in receive data stream.
3572 :priority INT -- Set protocol defined priority for sent packets.
3573 :reuseaddr BOOL -- Allow reusing a recently used local address
3574 (this is allowed by default for a server process).
3575 :bindtodevice NAME -- bind to interface NAME. Using this may require
3576 special privileges on some systems.
3577
3578 Consult the relevant system programmer's manual pages for more
3579 information on using these options.
3580
3581
3582 A server process will listen for and accept connections from clients.
3583 When a client connection is accepted, a new network process is created
3584 for the connection with the following parameters:
3585
3586 - The client's process name is constructed by concatenating the server
3587 process's NAME and a client identification string.
3588 - If the FILTER argument is non-nil, the client process will not get a
3589 separate process buffer; otherwise, the client's process buffer is a newly
3590 created buffer named after the server process's BUFFER name or process
3591 NAME concatenated with the client identification string.
3592 - The connection type and the process filter and sentinel parameters are
3593 inherited from the server process's TYPE, FILTER and SENTINEL.
3594 - The client process's contact info is set according to the client's
3595 addressing information (typically an IP address and a port number).
3596 - The client process's plist is initialized from the server's plist.
3597
3598 Notice that the FILTER and SENTINEL args are never used directly by
3599 the server process. Also, the BUFFER argument is not used directly by
3600 the server process, but via the optional :log function, accepted (and
3601 failed) connections may be logged in the server process's buffer.
3602
3603 The original argument list, modified with the actual connection
3604 information, is available via the `process-contact' function.
3605
3606 usage: (make-network-process &rest ARGS) */)
3607 (ptrdiff_t nargs, Lisp_Object *args)
3608 {
3609 Lisp_Object proc;
3610 Lisp_Object contact;
3611 struct Lisp_Process *p;
3612 #if defined HAVE_GETADDRINFO || defined HAVE_GETADDRINFO_A
3613 const char *portstring;
3614 ptrdiff_t portstringlen ATTRIBUTE_UNUSED;
3615 char portbuf[INT_BUFSIZE_BOUND (EMACS_INT)];
3616 #endif
3617 #ifdef HAVE_LOCAL_SOCKETS
3618 struct sockaddr_un address_un;
3619 #endif
3620 int port = 0;
3621 Lisp_Object tem;
3622 Lisp_Object name, buffer, host, service, address;
3623 Lisp_Object filter, sentinel;
3624 Lisp_Object ip_addresses = Qnil;
3625 int socktype;
3626 int family = -1;
3627 int ai_protocol = 0;
3628 #ifdef HAVE_GETADDRINFO_A
3629 struct gaicb *dns_request = NULL;
3630 #endif
3631 ptrdiff_t count = SPECPDL_INDEX ();
3632
3633 if (nargs == 0)
3634 return Qnil;
3635
3636 /* Save arguments for process-contact and clone-process. */
3637 contact = Flist (nargs, args);
3638
3639 #ifdef WINDOWSNT
3640 /* Ensure socket support is loaded if available. */
3641 init_winsock (TRUE);
3642 #endif
3643
3644 /* :type TYPE (nil: stream, datagram */
3645 tem = Fplist_get (contact, QCtype);
3646 if (NILP (tem))
3647 socktype = SOCK_STREAM;
3648 #ifdef DATAGRAM_SOCKETS
3649 else if (EQ (tem, Qdatagram))
3650 socktype = SOCK_DGRAM;
3651 #endif
3652 #ifdef HAVE_SEQPACKET
3653 else if (EQ (tem, Qseqpacket))
3654 socktype = SOCK_SEQPACKET;
3655 #endif
3656 else
3657 error ("Unsupported connection type");
3658
3659 name = Fplist_get (contact, QCname);
3660 buffer = Fplist_get (contact, QCbuffer);
3661 filter = Fplist_get (contact, QCfilter);
3662 sentinel = Fplist_get (contact, QCsentinel);
3663
3664 CHECK_STRING (name);
3665
3666 /* :local ADDRESS or :remote ADDRESS */
3667 tem = Fplist_get (contact, QCserver);
3668 if (!NILP (tem))
3669 address = Fplist_get (contact, QCremote);
3670 else
3671 address = Fplist_get (contact, QClocal);
3672 if (!NILP (address))
3673 {
3674 host = service = Qnil;
3675
3676 if (!get_lisp_to_sockaddr_size (address, &family))
3677 error ("Malformed :address");
3678
3679 ip_addresses = list1 (address);
3680 goto open_socket;
3681 }
3682
3683 /* :family FAMILY -- nil (for Inet), local, or integer. */
3684 tem = Fplist_get (contact, QCfamily);
3685 if (NILP (tem))
3686 {
3687 #if defined (HAVE_GETADDRINFO) && defined (AF_INET6)
3688 family = AF_UNSPEC;
3689 #else
3690 family = AF_INET;
3691 #endif
3692 }
3693 #ifdef HAVE_LOCAL_SOCKETS
3694 else if (EQ (tem, Qlocal))
3695 family = AF_LOCAL;
3696 #endif
3697 #ifdef AF_INET6
3698 else if (EQ (tem, Qipv6))
3699 family = AF_INET6;
3700 #endif
3701 else if (EQ (tem, Qipv4))
3702 family = AF_INET;
3703 else if (TYPE_RANGED_INTEGERP (int, tem))
3704 family = XINT (tem);
3705 else
3706 error ("Unknown address family");
3707
3708 /* :service SERVICE -- string, integer (port number), or t (random port). */
3709 service = Fplist_get (contact, QCservice);
3710
3711 /* :host HOST -- hostname, ip address, or 'local for localhost. */
3712 host = Fplist_get (contact, QChost);
3713 if (NILP (host))
3714 {
3715 /* The "connection" function gets it bind info from the address we're
3716 given, so use this dummy address if nothing is specified. */
3717 #ifdef HAVE_LOCAL_SOCKETS
3718 if (family != AF_LOCAL)
3719 #endif
3720 host = build_string ("127.0.0.1");
3721 }
3722 else
3723 {
3724 if (EQ (host, Qlocal))
3725 /* Depending on setup, "localhost" may map to different IPv4 and/or
3726 IPv6 addresses, so it's better to be explicit (Bug#6781). */
3727 host = build_string ("127.0.0.1");
3728 CHECK_STRING (host);
3729 }
3730
3731 #ifdef HAVE_LOCAL_SOCKETS
3732 if (family == AF_LOCAL)
3733 {
3734 if (!NILP (host))
3735 {
3736 message (":family local ignores the :host property");
3737 contact = Fplist_put (contact, QChost, Qnil);
3738 host = Qnil;
3739 }
3740 CHECK_STRING (service);
3741 if (sizeof address_un.sun_path <= SBYTES (service))
3742 error ("Service name too long");
3743 ip_addresses = list1 (service);
3744 goto open_socket;
3745 }
3746 #endif
3747
3748 /* Slow down polling to every ten seconds.
3749 Some kernels have a bug which causes retrying connect to fail
3750 after a connect. Polling can interfere with gethostbyname too. */
3751 #ifdef POLL_FOR_INPUT
3752 if (socktype != SOCK_DGRAM)
3753 {
3754 record_unwind_protect_void (run_all_atimers);
3755 bind_polling_period (10);
3756 }
3757 #endif
3758
3759 #if defined HAVE_GETADDRINFO || defined HAVE_GETADDRINFO_A
3760 if (!NILP (host))
3761 {
3762 /* SERVICE can either be a string or int.
3763 Convert to a C string for later use by getaddrinfo. */
3764 if (EQ (service, Qt))
3765 {
3766 portstring = "0";
3767 portstringlen = 1;
3768 }
3769 else if (INTEGERP (service))
3770 {
3771 portstring = portbuf;
3772 portstringlen = sprintf (portbuf, "%"pI"d", XINT (service));
3773 }
3774 else
3775 {
3776 CHECK_STRING (service);
3777 portstring = SSDATA (service);
3778 portstringlen = SBYTES (service);
3779 }
3780 }
3781 #endif
3782
3783 #ifdef HAVE_GETADDRINFO_A
3784 if (!NILP (host) && !NILP (Fplist_get (contact, QCnowait)))
3785 {
3786 ptrdiff_t hostlen = SBYTES (host);
3787 struct req
3788 {
3789 struct gaicb gaicb;
3790 struct addrinfo hints;
3791 char str[FLEXIBLE_ARRAY_MEMBER];
3792 } *req = xmalloc (offsetof (struct req, str)
3793 + hostlen + 1 + portstringlen + 1);
3794 dns_request = &req->gaicb;
3795 dns_request->ar_name = req->str;
3796 dns_request->ar_service = req->str + hostlen + 1;
3797 dns_request->ar_request = &req->hints;
3798 dns_request->ar_result = NULL;
3799 memset (&req->hints, 0, sizeof req->hints);
3800 req->hints.ai_family = family;
3801 req->hints.ai_socktype = socktype;
3802 strcpy (req->str, SSDATA (host));
3803 strcpy (req->str + hostlen + 1, portstring);
3804
3805 int ret = getaddrinfo_a (GAI_NOWAIT, &dns_request, 1, NULL);
3806 if (ret)
3807 error ("%s/%s getaddrinfo_a error %d", SSDATA (host), portstring, ret);
3808
3809 goto open_socket;
3810 }
3811 #endif /* HAVE_GETADDRINFO_A */
3812
3813 #ifdef HAVE_GETADDRINFO
3814 /* If we have a host, use getaddrinfo to resolve both host and service.
3815 Otherwise, use getservbyname to lookup the service. */
3816
3817 if (!NILP (host))
3818 {
3819 struct addrinfo *res, *lres;
3820 int ret;
3821
3822 immediate_quit = 1;
3823 QUIT;
3824
3825 #ifdef HAVE_RES_INIT
3826 res_init ();
3827 #endif
3828
3829 struct addrinfo hints;
3830 memset (&hints, 0, sizeof hints);
3831 hints.ai_family = family;
3832 hints.ai_socktype = socktype;
3833
3834 ret = getaddrinfo (SSDATA (host), portstring, &hints, &res);
3835 if (ret)
3836 #ifdef HAVE_GAI_STRERROR
3837 error ("%s/%s %s", SSDATA (host), portstring, gai_strerror (ret));
3838 #else
3839 error ("%s/%s getaddrinfo error %d", SSDATA (host), portstring, ret);
3840 #endif
3841 immediate_quit = 0;
3842
3843 for (lres = res; lres; lres = lres->ai_next)
3844 {
3845 ip_addresses = Fcons (conv_sockaddr_to_lisp
3846 (lres->ai_addr, lres->ai_addrlen),
3847 ip_addresses);
3848 ai_protocol = lres->ai_protocol;
3849 }
3850
3851 ip_addresses = Fnreverse (ip_addresses);
3852
3853 freeaddrinfo (res);
3854
3855 goto open_socket;
3856 }
3857 #endif /* HAVE_GETADDRINFO */
3858
3859 /* We end up here if getaddrinfo is not defined, or in case no hostname
3860 has been specified (e.g. for a local server process). */
3861
3862 if (EQ (service, Qt))
3863 port = 0;
3864 else if (INTEGERP (service))
3865 port = (unsigned short) XINT (service);
3866 /* Allow the service to be a string containing the port number,
3867 because that's allowed if you have getaddrbyname. */
3868 else if (string_integer_p (service))
3869 port = strtol (SSDATA (service), NULL, 10);
3870 else
3871 {
3872 struct servent *svc_info;
3873 CHECK_STRING (service);
3874 svc_info = getservbyname (SSDATA (service),
3875 (socktype == SOCK_DGRAM ? "udp" : "tcp"));
3876 if (svc_info == 0)
3877 error ("Unknown service: %s", SDATA (service));
3878 port = ntohs (svc_info->s_port);
3879 }
3880
3881 #ifndef HAVE_GETADDRINFO
3882 if (!NILP (host))
3883 {
3884 struct hostent *host_info_ptr;
3885 unsigned char *addr;
3886 int addrlen;
3887
3888 /* gethostbyname may fail with TRY_AGAIN, but we don't honor that,
3889 as it may `hang' Emacs for a very long time. */
3890 immediate_quit = 1;
3891 QUIT;
3892
3893 #ifdef HAVE_RES_INIT
3894 res_init ();
3895 #endif
3896
3897 host_info_ptr = gethostbyname ((const char *) SDATA (host));
3898 immediate_quit = 0;
3899
3900 if (host_info_ptr)
3901 {
3902 addr = (unsigned char *) host_info_ptr->h_addr;
3903 addrlen = host_info_ptr->h_length;
3904 }
3905 else
3906 /* Attempt to interpret host as numeric inet address. This
3907 only works for IPv4 addresses. */
3908 {
3909 unsigned long numeric_addr = inet_addr (SSDATA (host));
3910
3911 if (numeric_addr == -1)
3912 error ("Unknown host \"%s\"", SDATA (host));
3913
3914 addr = (unsigned char *) &numeric_addr;
3915 addrlen = 4;
3916 }
3917
3918 ip_addresses = list1 (conv_numerical_to_lisp (addr, addrlen, port));
3919 }
3920 #endif /* not HAVE_GETADDRINFO */
3921
3922 open_socket:
3923
3924 if (!NILP (buffer))
3925 buffer = Fget_buffer_create (buffer);
3926 proc = make_process (name);
3927 p = XPROCESS (proc);
3928 pset_childp (p, contact);
3929 pset_plist (p, Fcopy_sequence (Fplist_get (contact, QCplist)));
3930 pset_type (p, Qnetwork);
3931
3932 pset_buffer (p, buffer);
3933 pset_sentinel (p, sentinel);
3934 pset_filter (p, filter);
3935 pset_log (p, Fplist_get (contact, QClog));
3936 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
3937 p->kill_without_query = 1;
3938 if ((tem = Fplist_get (contact, QCstop), !NILP (tem)))
3939 pset_command (p, Qt);
3940 p->pid = 0;
3941 p->backlog = 5;
3942 p->is_non_blocking_client = 0;
3943 p->is_server = 0;
3944 p->port = port;
3945 p->socktype = socktype;
3946 p->ai_protocol = ai_protocol;
3947 #ifdef HAVE_GETADDRINFO_A
3948 p->dns_request = NULL;
3949 #endif
3950 #ifdef HAVE_GNUTLS
3951 tem = Fplist_get (contact, QCtls_parameters);
3952 CHECK_LIST (tem);
3953 p->gnutls_boot_parameters = tem;
3954 #endif
3955
3956 set_network_socket_coding_system (proc, service, host, name);
3957
3958 unbind_to (count, Qnil);
3959
3960 /* :server BOOL */
3961 tem = Fplist_get (contact, QCserver);
3962 if (!NILP (tem))
3963 {
3964 /* Don't support network sockets when non-blocking mode is
3965 not available, since a blocked Emacs is not useful. */
3966 p->is_server = 1;
3967 if (TYPE_RANGED_INTEGERP (int, tem))
3968 p->backlog = XINT (tem);
3969 }
3970
3971 /* :nowait BOOL */
3972 if (!p->is_server && socktype != SOCK_DGRAM
3973 && (tem = Fplist_get (contact, QCnowait), !NILP (tem)))
3974 {
3975 #ifndef NON_BLOCKING_CONNECT
3976 error ("Non-blocking connect not supported");
3977 #else
3978 p->is_non_blocking_client = 1;
3979 #endif
3980 }
3981
3982 #ifdef HAVE_GETADDRINFO_A
3983 /* If we're doing async address resolution, the list of addresses
3984 here will be nil, so we postpone connecting to the server. */
3985 if (!p->is_server && NILP (ip_addresses))
3986 {
3987 p->dns_request = dns_request;
3988 p->status = Qconnect;
3989 }
3990 else
3991 {
3992 connect_network_socket (proc, ip_addresses);
3993 }
3994 #else /* HAVE_GETADDRINFO_A */
3995 connect_network_socket (proc, ip_addresses);
3996 #endif
3997
3998 return proc;
3999 }
4000
4001 \f
4002 #ifdef HAVE_NET_IF_H
4003
4004 #ifdef SIOCGIFCONF
4005 static Lisp_Object
4006 network_interface_list (void)
4007 {
4008 struct ifconf ifconf;
4009 struct ifreq *ifreq;
4010 void *buf = NULL;
4011 ptrdiff_t buf_size = 512;
4012 int s;
4013 Lisp_Object res;
4014 ptrdiff_t count;
4015
4016 s = socket (AF_INET, SOCK_STREAM | SOCK_CLOEXEC, 0);
4017 if (s < 0)
4018 return Qnil;
4019 count = SPECPDL_INDEX ();
4020 record_unwind_protect_int (close_file_unwind, s);
4021
4022 do
4023 {
4024 buf = xpalloc (buf, &buf_size, 1, INT_MAX, 1);
4025 ifconf.ifc_buf = buf;
4026 ifconf.ifc_len = buf_size;
4027 if (ioctl (s, SIOCGIFCONF, &ifconf))
4028 {
4029 emacs_close (s);
4030 xfree (buf);
4031 return Qnil;
4032 }
4033 }
4034 while (ifconf.ifc_len == buf_size);
4035
4036 res = unbind_to (count, Qnil);
4037 ifreq = ifconf.ifc_req;
4038 while ((char *) ifreq < (char *) ifconf.ifc_req + ifconf.ifc_len)
4039 {
4040 struct ifreq *ifq = ifreq;
4041 #ifdef HAVE_STRUCT_IFREQ_IFR_ADDR_SA_LEN
4042 #define SIZEOF_IFREQ(sif) \
4043 ((sif)->ifr_addr.sa_len < sizeof (struct sockaddr) \
4044 ? sizeof (*(sif)) : sizeof ((sif)->ifr_name) + (sif)->ifr_addr.sa_len)
4045
4046 int len = SIZEOF_IFREQ (ifq);
4047 #else
4048 int len = sizeof (*ifreq);
4049 #endif
4050 char namebuf[sizeof (ifq->ifr_name) + 1];
4051 ifreq = (struct ifreq *) ((char *) ifreq + len);
4052
4053 if (ifq->ifr_addr.sa_family != AF_INET)
4054 continue;
4055
4056 memcpy (namebuf, ifq->ifr_name, sizeof (ifq->ifr_name));
4057 namebuf[sizeof (ifq->ifr_name)] = 0;
4058 res = Fcons (Fcons (build_string (namebuf),
4059 conv_sockaddr_to_lisp (&ifq->ifr_addr,
4060 sizeof (struct sockaddr))),
4061 res);
4062 }
4063
4064 xfree (buf);
4065 return res;
4066 }
4067 #endif /* SIOCGIFCONF */
4068
4069 #if defined (SIOCGIFADDR) || defined (SIOCGIFHWADDR) || defined (SIOCGIFFLAGS)
4070
4071 struct ifflag_def {
4072 int flag_bit;
4073 const char *flag_sym;
4074 };
4075
4076 static const struct ifflag_def ifflag_table[] = {
4077 #ifdef IFF_UP
4078 { IFF_UP, "up" },
4079 #endif
4080 #ifdef IFF_BROADCAST
4081 { IFF_BROADCAST, "broadcast" },
4082 #endif
4083 #ifdef IFF_DEBUG
4084 { IFF_DEBUG, "debug" },
4085 #endif
4086 #ifdef IFF_LOOPBACK
4087 { IFF_LOOPBACK, "loopback" },
4088 #endif
4089 #ifdef IFF_POINTOPOINT
4090 { IFF_POINTOPOINT, "pointopoint" },
4091 #endif
4092 #ifdef IFF_RUNNING
4093 { IFF_RUNNING, "running" },
4094 #endif
4095 #ifdef IFF_NOARP
4096 { IFF_NOARP, "noarp" },
4097 #endif
4098 #ifdef IFF_PROMISC
4099 { IFF_PROMISC, "promisc" },
4100 #endif
4101 #ifdef IFF_NOTRAILERS
4102 #ifdef NS_IMPL_COCOA
4103 /* Really means smart, notrailers is obsolete. */
4104 { IFF_NOTRAILERS, "smart" },
4105 #else
4106 { IFF_NOTRAILERS, "notrailers" },
4107 #endif
4108 #endif
4109 #ifdef IFF_ALLMULTI
4110 { IFF_ALLMULTI, "allmulti" },
4111 #endif
4112 #ifdef IFF_MASTER
4113 { IFF_MASTER, "master" },
4114 #endif
4115 #ifdef IFF_SLAVE
4116 { IFF_SLAVE, "slave" },
4117 #endif
4118 #ifdef IFF_MULTICAST
4119 { IFF_MULTICAST, "multicast" },
4120 #endif
4121 #ifdef IFF_PORTSEL
4122 { IFF_PORTSEL, "portsel" },
4123 #endif
4124 #ifdef IFF_AUTOMEDIA
4125 { IFF_AUTOMEDIA, "automedia" },
4126 #endif
4127 #ifdef IFF_DYNAMIC
4128 { IFF_DYNAMIC, "dynamic" },
4129 #endif
4130 #ifdef IFF_OACTIVE
4131 { IFF_OACTIVE, "oactive" }, /* OpenBSD: transmission in progress. */
4132 #endif
4133 #ifdef IFF_SIMPLEX
4134 { IFF_SIMPLEX, "simplex" }, /* OpenBSD: can't hear own transmissions. */
4135 #endif
4136 #ifdef IFF_LINK0
4137 { IFF_LINK0, "link0" }, /* OpenBSD: per link layer defined bit. */
4138 #endif
4139 #ifdef IFF_LINK1
4140 { IFF_LINK1, "link1" }, /* OpenBSD: per link layer defined bit. */
4141 #endif
4142 #ifdef IFF_LINK2
4143 { IFF_LINK2, "link2" }, /* OpenBSD: per link layer defined bit. */
4144 #endif
4145 { 0, 0 }
4146 };
4147
4148 static Lisp_Object
4149 network_interface_info (Lisp_Object ifname)
4150 {
4151 struct ifreq rq;
4152 Lisp_Object res = Qnil;
4153 Lisp_Object elt;
4154 int s;
4155 bool any = 0;
4156 ptrdiff_t count;
4157 #if (! (defined SIOCGIFHWADDR && defined HAVE_STRUCT_IFREQ_IFR_HWADDR) \
4158 && defined HAVE_GETIFADDRS && defined LLADDR)
4159 struct ifaddrs *ifap;
4160 #endif
4161
4162 CHECK_STRING (ifname);
4163
4164 if (sizeof rq.ifr_name <= SBYTES (ifname))
4165 error ("interface name too long");
4166 lispstpcpy (rq.ifr_name, ifname);
4167
4168 s = socket (AF_INET, SOCK_STREAM | SOCK_CLOEXEC, 0);
4169 if (s < 0)
4170 return Qnil;
4171 count = SPECPDL_INDEX ();
4172 record_unwind_protect_int (close_file_unwind, s);
4173
4174 elt = Qnil;
4175 #if defined (SIOCGIFFLAGS) && defined (HAVE_STRUCT_IFREQ_IFR_FLAGS)
4176 if (ioctl (s, SIOCGIFFLAGS, &rq) == 0)
4177 {
4178 int flags = rq.ifr_flags;
4179 const struct ifflag_def *fp;
4180 int fnum;
4181
4182 /* If flags is smaller than int (i.e. short) it may have the high bit set
4183 due to IFF_MULTICAST. In that case, sign extending it into
4184 an int is wrong. */
4185 if (flags < 0 && sizeof (rq.ifr_flags) < sizeof (flags))
4186 flags = (unsigned short) rq.ifr_flags;
4187
4188 any = 1;
4189 for (fp = ifflag_table; flags != 0 && fp->flag_sym; fp++)
4190 {
4191 if (flags & fp->flag_bit)
4192 {
4193 elt = Fcons (intern (fp->flag_sym), elt);
4194 flags -= fp->flag_bit;
4195 }
4196 }
4197 for (fnum = 0; flags && fnum < 32; flags >>= 1, fnum++)
4198 {
4199 if (flags & 1)
4200 {
4201 elt = Fcons (make_number (fnum), elt);
4202 }
4203 }
4204 }
4205 #endif
4206 res = Fcons (elt, res);
4207
4208 elt = Qnil;
4209 #if defined (SIOCGIFHWADDR) && defined (HAVE_STRUCT_IFREQ_IFR_HWADDR)
4210 if (ioctl (s, SIOCGIFHWADDR, &rq) == 0)
4211 {
4212 Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil);
4213 register struct Lisp_Vector *p = XVECTOR (hwaddr);
4214 int n;
4215
4216 any = 1;
4217 for (n = 0; n < 6; n++)
4218 p->contents[n] = make_number (((unsigned char *)
4219 &rq.ifr_hwaddr.sa_data[0])
4220 [n]);
4221 elt = Fcons (make_number (rq.ifr_hwaddr.sa_family), hwaddr);
4222 }
4223 #elif defined (HAVE_GETIFADDRS) && defined (LLADDR)
4224 if (getifaddrs (&ifap) != -1)
4225 {
4226 Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil);
4227 register struct Lisp_Vector *p = XVECTOR (hwaddr);
4228 struct ifaddrs *it;
4229
4230 for (it = ifap; it != NULL; it = it->ifa_next)
4231 {
4232 struct sockaddr_dl *sdl = (struct sockaddr_dl*) it->ifa_addr;
4233 unsigned char linkaddr[6];
4234 int n;
4235
4236 if (it->ifa_addr->sa_family != AF_LINK
4237 || strcmp (it->ifa_name, SSDATA (ifname)) != 0
4238 || sdl->sdl_alen != 6)
4239 continue;
4240
4241 memcpy (linkaddr, LLADDR (sdl), sdl->sdl_alen);
4242 for (n = 0; n < 6; n++)
4243 p->contents[n] = make_number (linkaddr[n]);
4244
4245 elt = Fcons (make_number (it->ifa_addr->sa_family), hwaddr);
4246 break;
4247 }
4248 }
4249 #ifdef HAVE_FREEIFADDRS
4250 freeifaddrs (ifap);
4251 #endif
4252
4253 #endif /* HAVE_GETIFADDRS && LLADDR */
4254
4255 res = Fcons (elt, res);
4256
4257 elt = Qnil;
4258 #if defined (SIOCGIFNETMASK) && (defined (HAVE_STRUCT_IFREQ_IFR_NETMASK) || defined (HAVE_STRUCT_IFREQ_IFR_ADDR))
4259 if (ioctl (s, SIOCGIFNETMASK, &rq) == 0)
4260 {
4261 any = 1;
4262 #ifdef HAVE_STRUCT_IFREQ_IFR_NETMASK
4263 elt = conv_sockaddr_to_lisp (&rq.ifr_netmask, sizeof (rq.ifr_netmask));
4264 #else
4265 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
4266 #endif
4267 }
4268 #endif
4269 res = Fcons (elt, res);
4270
4271 elt = Qnil;
4272 #if defined (SIOCGIFBRDADDR) && defined (HAVE_STRUCT_IFREQ_IFR_BROADADDR)
4273 if (ioctl (s, SIOCGIFBRDADDR, &rq) == 0)
4274 {
4275 any = 1;
4276 elt = conv_sockaddr_to_lisp (&rq.ifr_broadaddr, sizeof (rq.ifr_broadaddr));
4277 }
4278 #endif
4279 res = Fcons (elt, res);
4280
4281 elt = Qnil;
4282 #if defined (SIOCGIFADDR) && defined (HAVE_STRUCT_IFREQ_IFR_ADDR)
4283 if (ioctl (s, SIOCGIFADDR, &rq) == 0)
4284 {
4285 any = 1;
4286 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
4287 }
4288 #endif
4289 res = Fcons (elt, res);
4290
4291 return unbind_to (count, any ? res : Qnil);
4292 }
4293 #endif /* !SIOCGIFADDR && !SIOCGIFHWADDR && !SIOCGIFFLAGS */
4294 #endif /* defined (HAVE_NET_IF_H) */
4295
4296 DEFUN ("network-interface-list", Fnetwork_interface_list,
4297 Snetwork_interface_list, 0, 0, 0,
4298 doc: /* Return an alist of all network interfaces and their network address.
4299 Each element is a cons, the car of which is a string containing the
4300 interface name, and the cdr is the network address in internal
4301 format; see the description of ADDRESS in `make-network-process'.
4302
4303 If the information is not available, return nil. */)
4304 (void)
4305 {
4306 #if (defined HAVE_NET_IF_H && defined SIOCGIFCONF) || defined WINDOWSNT
4307 return network_interface_list ();
4308 #else
4309 return Qnil;
4310 #endif
4311 }
4312
4313 DEFUN ("network-interface-info", Fnetwork_interface_info,
4314 Snetwork_interface_info, 1, 1, 0,
4315 doc: /* Return information about network interface named IFNAME.
4316 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
4317 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
4318 NETMASK is the layer 3 network mask, HWADDR is the layer 2 address, and
4319 FLAGS is the current flags of the interface.
4320
4321 Data that is unavailable is returned as nil. */)
4322 (Lisp_Object ifname)
4323 {
4324 #if ((defined HAVE_NET_IF_H \
4325 && (defined SIOCGIFADDR || defined SIOCGIFHWADDR \
4326 || defined SIOCGIFFLAGS)) \
4327 || defined WINDOWSNT)
4328 return network_interface_info (ifname);
4329 #else
4330 return Qnil;
4331 #endif
4332 }
4333
4334 /* If program file NAME starts with /: for quoting a magic
4335 name, remove that, preserving the multibyteness of NAME. */
4336
4337 Lisp_Object
4338 remove_slash_colon (Lisp_Object name)
4339 {
4340 return
4341 ((SBYTES (name) > 2 && SREF (name, 0) == '/' && SREF (name, 1) == ':')
4342 ? make_specified_string (SSDATA (name) + 2, SCHARS (name) - 2,
4343 SBYTES (name) - 2, STRING_MULTIBYTE (name))
4344 : name);
4345 }
4346
4347 /* Turn off input and output for process PROC. */
4348
4349 static void
4350 deactivate_process (Lisp_Object proc)
4351 {
4352 int inchannel;
4353 struct Lisp_Process *p = XPROCESS (proc);
4354 int i;
4355
4356 #ifdef HAVE_GNUTLS
4357 /* Delete GnuTLS structures in PROC, if any. */
4358 emacs_gnutls_deinit (proc);
4359 #endif /* HAVE_GNUTLS */
4360
4361 if (p->read_output_delay > 0)
4362 {
4363 if (--process_output_delay_count < 0)
4364 process_output_delay_count = 0;
4365 p->read_output_delay = 0;
4366 p->read_output_skip = 0;
4367 }
4368
4369 /* Beware SIGCHLD hereabouts. */
4370
4371 for (i = 0; i < PROCESS_OPEN_FDS; i++)
4372 close_process_fd (&p->open_fd[i]);
4373
4374 inchannel = p->infd;
4375 if (inchannel >= 0)
4376 {
4377 p->infd = -1;
4378 p->outfd = -1;
4379 #ifdef DATAGRAM_SOCKETS
4380 if (DATAGRAM_CHAN_P (inchannel))
4381 {
4382 xfree (datagram_address[inchannel].sa);
4383 datagram_address[inchannel].sa = 0;
4384 datagram_address[inchannel].len = 0;
4385 }
4386 #endif
4387 chan_process[inchannel] = Qnil;
4388 FD_CLR (inchannel, &input_wait_mask);
4389 FD_CLR (inchannel, &non_keyboard_wait_mask);
4390 #ifdef NON_BLOCKING_CONNECT
4391 if (FD_ISSET (inchannel, &connect_wait_mask))
4392 {
4393 FD_CLR (inchannel, &connect_wait_mask);
4394 FD_CLR (inchannel, &write_mask);
4395 if (--num_pending_connects < 0)
4396 emacs_abort ();
4397 }
4398 #endif
4399 if (inchannel == max_process_desc)
4400 {
4401 /* We just closed the highest-numbered process input descriptor,
4402 so recompute the highest-numbered one now. */
4403 int i = inchannel;
4404 do
4405 i--;
4406 while (0 <= i && NILP (chan_process[i]));
4407
4408 max_process_desc = i;
4409 }
4410 }
4411 }
4412
4413 \f
4414 DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
4415 0, 4, 0,
4416 doc: /* Allow any pending output from subprocesses to be read by Emacs.
4417 It is given to their filter functions.
4418 Optional argument PROCESS means do not return until output has been
4419 received from PROCESS.
4420
4421 Optional second argument SECONDS and third argument MILLISEC
4422 specify a timeout; return after that much time even if there is
4423 no subprocess output. If SECONDS is a floating point number,
4424 it specifies a fractional number of seconds to wait.
4425 The MILLISEC argument is obsolete and should be avoided.
4426
4427 If optional fourth argument JUST-THIS-ONE is non-nil, accept output
4428 from PROCESS only, suspending reading output from other processes.
4429 If JUST-THIS-ONE is an integer, don't run any timers either.
4430 Return non-nil if we received any output from PROCESS (or, if PROCESS
4431 is nil, from any process) before the timeout expired. */)
4432 (register Lisp_Object process, Lisp_Object seconds, Lisp_Object millisec, Lisp_Object just_this_one)
4433 {
4434 intmax_t secs;
4435 int nsecs;
4436
4437 if (! NILP (process))
4438 CHECK_PROCESS (process);
4439 else
4440 just_this_one = Qnil;
4441
4442 if (!NILP (millisec))
4443 { /* Obsolete calling convention using integers rather than floats. */
4444 CHECK_NUMBER (millisec);
4445 if (NILP (seconds))
4446 seconds = make_float (XINT (millisec) / 1000.0);
4447 else
4448 {
4449 CHECK_NUMBER (seconds);
4450 seconds = make_float (XINT (millisec) / 1000.0 + XINT (seconds));
4451 }
4452 }
4453
4454 secs = 0;
4455 nsecs = -1;
4456
4457 if (!NILP (seconds))
4458 {
4459 if (INTEGERP (seconds))
4460 {
4461 if (XINT (seconds) > 0)
4462 {
4463 secs = XINT (seconds);
4464 nsecs = 0;
4465 }
4466 }
4467 else if (FLOATP (seconds))
4468 {
4469 if (XFLOAT_DATA (seconds) > 0)
4470 {
4471 struct timespec t = dtotimespec (XFLOAT_DATA (seconds));
4472 secs = min (t.tv_sec, WAIT_READING_MAX);
4473 nsecs = t.tv_nsec;
4474 }
4475 }
4476 else
4477 wrong_type_argument (Qnumberp, seconds);
4478 }
4479 else if (! NILP (process))
4480 nsecs = 0;
4481
4482 return
4483 ((wait_reading_process_output (secs, nsecs, 0, 0,
4484 Qnil,
4485 !NILP (process) ? XPROCESS (process) : NULL,
4486 (NILP (just_this_one) ? 0
4487 : !INTEGERP (just_this_one) ? 1 : -1))
4488 <= 0)
4489 ? Qnil : Qt);
4490 }
4491
4492 /* Accept a connection for server process SERVER on CHANNEL. */
4493
4494 static EMACS_INT connect_counter = 0;
4495
4496 static void
4497 server_accept_connection (Lisp_Object server, int channel)
4498 {
4499 Lisp_Object proc, caller, name, buffer;
4500 Lisp_Object contact, host, service;
4501 struct Lisp_Process *ps = XPROCESS (server);
4502 struct Lisp_Process *p;
4503 int s;
4504 union u_sockaddr {
4505 struct sockaddr sa;
4506 struct sockaddr_in in;
4507 #ifdef AF_INET6
4508 struct sockaddr_in6 in6;
4509 #endif
4510 #ifdef HAVE_LOCAL_SOCKETS
4511 struct sockaddr_un un;
4512 #endif
4513 } saddr;
4514 socklen_t len = sizeof saddr;
4515 ptrdiff_t count;
4516
4517 s = accept4 (channel, &saddr.sa, &len, SOCK_CLOEXEC);
4518
4519 if (s < 0)
4520 {
4521 int code = errno;
4522
4523 if (code == EAGAIN)
4524 return;
4525 #ifdef EWOULDBLOCK
4526 if (code == EWOULDBLOCK)
4527 return;
4528 #endif
4529
4530 if (!NILP (ps->log))
4531 call3 (ps->log, server, Qnil,
4532 concat3 (build_string ("accept failed with code"),
4533 Fnumber_to_string (make_number (code)),
4534 build_string ("\n")));
4535 return;
4536 }
4537
4538 count = SPECPDL_INDEX ();
4539 record_unwind_protect_int (close_file_unwind, s);
4540
4541 connect_counter++;
4542
4543 /* Setup a new process to handle the connection. */
4544
4545 /* Generate a unique identification of the caller, and build contact
4546 information for this process. */
4547 host = Qt;
4548 service = Qnil;
4549 switch (saddr.sa.sa_family)
4550 {
4551 case AF_INET:
4552 {
4553 unsigned char *ip = (unsigned char *)&saddr.in.sin_addr.s_addr;
4554
4555 AUTO_STRING (ipv4_format, "%d.%d.%d.%d");
4556 host = CALLN (Fformat, ipv4_format,
4557 make_number (ip[0]), make_number (ip[1]),
4558 make_number (ip[2]), make_number (ip[3]));
4559 service = make_number (ntohs (saddr.in.sin_port));
4560 AUTO_STRING (caller_format, " <%s:%d>");
4561 caller = CALLN (Fformat, caller_format, host, service);
4562 }
4563 break;
4564
4565 #ifdef AF_INET6
4566 case AF_INET6:
4567 {
4568 Lisp_Object args[9];
4569 uint16_t *ip6 = (uint16_t *)&saddr.in6.sin6_addr;
4570 int i;
4571
4572 AUTO_STRING (ipv6_format, "%x:%x:%x:%x:%x:%x:%x:%x");
4573 args[0] = ipv6_format;
4574 for (i = 0; i < 8; i++)
4575 args[i + 1] = make_number (ntohs (ip6[i]));
4576 host = CALLMANY (Fformat, args);
4577 service = make_number (ntohs (saddr.in.sin_port));
4578 AUTO_STRING (caller_format, " <[%s]:%d>");
4579 caller = CALLN (Fformat, caller_format, host, service);
4580 }
4581 break;
4582 #endif
4583
4584 #ifdef HAVE_LOCAL_SOCKETS
4585 case AF_LOCAL:
4586 #endif
4587 default:
4588 caller = Fnumber_to_string (make_number (connect_counter));
4589 AUTO_STRING (space_less_than, " <");
4590 AUTO_STRING (greater_than, ">");
4591 caller = concat3 (space_less_than, caller, greater_than);
4592 break;
4593 }
4594
4595 /* Create a new buffer name for this process if it doesn't have a
4596 filter. The new buffer name is based on the buffer name or
4597 process name of the server process concatenated with the caller
4598 identification. */
4599
4600 if (!(EQ (ps->filter, Qinternal_default_process_filter)
4601 || EQ (ps->filter, Qt)))
4602 buffer = Qnil;
4603 else
4604 {
4605 buffer = ps->buffer;
4606 if (!NILP (buffer))
4607 buffer = Fbuffer_name (buffer);
4608 else
4609 buffer = ps->name;
4610 if (!NILP (buffer))
4611 {
4612 buffer = concat2 (buffer, caller);
4613 buffer = Fget_buffer_create (buffer);
4614 }
4615 }
4616
4617 /* Generate a unique name for the new server process. Combine the
4618 server process name with the caller identification. */
4619
4620 name = concat2 (ps->name, caller);
4621 proc = make_process (name);
4622
4623 chan_process[s] = proc;
4624
4625 fcntl (s, F_SETFL, O_NONBLOCK);
4626
4627 p = XPROCESS (proc);
4628
4629 /* Build new contact information for this setup. */
4630 contact = Fcopy_sequence (ps->childp);
4631 contact = Fplist_put (contact, QCserver, Qnil);
4632 contact = Fplist_put (contact, QChost, host);
4633 if (!NILP (service))
4634 contact = Fplist_put (contact, QCservice, service);
4635 contact = Fplist_put (contact, QCremote,
4636 conv_sockaddr_to_lisp (&saddr.sa, len));
4637 #ifdef HAVE_GETSOCKNAME
4638 len = sizeof saddr;
4639 if (getsockname (s, &saddr.sa, &len) == 0)
4640 contact = Fplist_put (contact, QClocal,
4641 conv_sockaddr_to_lisp (&saddr.sa, len));
4642 #endif
4643
4644 pset_childp (p, contact);
4645 pset_plist (p, Fcopy_sequence (ps->plist));
4646 pset_type (p, Qnetwork);
4647
4648 pset_buffer (p, buffer);
4649 pset_sentinel (p, ps->sentinel);
4650 pset_filter (p, ps->filter);
4651 pset_command (p, Qnil);
4652 p->pid = 0;
4653
4654 /* Discard the unwind protect for closing S. */
4655 specpdl_ptr = specpdl + count;
4656
4657 p->open_fd[SUBPROCESS_STDIN] = s;
4658 p->infd = s;
4659 p->outfd = s;
4660 pset_status (p, Qrun);
4661
4662 /* Client processes for accepted connections are not stopped initially. */
4663 if (!EQ (p->filter, Qt))
4664 {
4665 FD_SET (s, &input_wait_mask);
4666 FD_SET (s, &non_keyboard_wait_mask);
4667 }
4668
4669 if (s > max_process_desc)
4670 max_process_desc = s;
4671
4672 /* Setup coding system for new process based on server process.
4673 This seems to be the proper thing to do, as the coding system
4674 of the new process should reflect the settings at the time the
4675 server socket was opened; not the current settings. */
4676
4677 pset_decode_coding_system (p, ps->decode_coding_system);
4678 pset_encode_coding_system (p, ps->encode_coding_system);
4679 setup_process_coding_systems (proc);
4680
4681 pset_decoding_buf (p, empty_unibyte_string);
4682 p->decoding_carryover = 0;
4683 pset_encoding_buf (p, empty_unibyte_string);
4684
4685 p->inherit_coding_system_flag
4686 = (NILP (buffer) ? 0 : ps->inherit_coding_system_flag);
4687
4688 AUTO_STRING (dash, "-");
4689 AUTO_STRING (nl, "\n");
4690 Lisp_Object host_string = STRINGP (host) ? host : dash;
4691
4692 if (!NILP (ps->log))
4693 {
4694 AUTO_STRING (accept_from, "accept from ");
4695 call3 (ps->log, server, proc, concat3 (accept_from, host_string, nl));
4696 }
4697
4698 AUTO_STRING (open_from, "open from ");
4699 exec_sentinel (proc, concat3 (open_from, host_string, nl));
4700 }
4701
4702 #ifdef HAVE_GETADDRINFO_A
4703 static Lisp_Object
4704 check_for_dns (Lisp_Object proc)
4705 {
4706 struct Lisp_Process *p = XPROCESS (proc);
4707 Lisp_Object ip_addresses = Qnil;
4708 int ret = 0;
4709
4710 /* Sanity check. */
4711 if (! p->dns_request)
4712 return Qnil;
4713
4714 ret = gai_error (p->dns_request);
4715 if (ret == EAI_INPROGRESS)
4716 return Qt;
4717
4718 /* We got a response. */
4719 if (ret == 0)
4720 {
4721 struct addrinfo *res;
4722
4723 for (res = p->dns_request->ar_result; res; res = res->ai_next)
4724 {
4725 ip_addresses = Fcons (conv_sockaddr_to_lisp
4726 (res->ai_addr, res->ai_addrlen),
4727 ip_addresses);
4728 }
4729
4730 ip_addresses = Fnreverse (ip_addresses);
4731 }
4732 /* The DNS lookup failed. */
4733 else if (EQ (p->status, Qconnect))
4734 {
4735 deactivate_process (proc);
4736 pset_status (p, (list2
4737 (Qfailed,
4738 concat3 (build_string ("Name lookup of "),
4739 build_string (p->dns_request->ar_name),
4740 build_string (" failed")))));
4741 }
4742
4743 free_dns_request (proc);
4744
4745 /* This process should not already be connected (or killed). */
4746 if (!EQ (p->status, Qconnect))
4747 return Qnil;
4748
4749 return ip_addresses;
4750 }
4751
4752 #endif /* HAVE_GETADDRINFO_A */
4753
4754 static void
4755 wait_for_socket_fds (Lisp_Object process, char const *name)
4756 {
4757 while (XPROCESS (process)->infd < 0
4758 && EQ (XPROCESS (process)->status, Qconnect))
4759 {
4760 add_to_log ("Waiting for socket from %s...", build_string (name));
4761 wait_reading_process_output (0, 20 * 1000 * 1000, 0, 0, Qnil, NULL, 0);
4762 }
4763 }
4764
4765 static void
4766 wait_while_connecting (Lisp_Object process)
4767 {
4768 while (EQ (XPROCESS (process)->status, Qconnect))
4769 {
4770 add_to_log ("Waiting for connection...");
4771 wait_reading_process_output (0, 20 * 1000 * 1000, 0, 0, Qnil, NULL, 0);
4772 }
4773 }
4774
4775 static void
4776 wait_for_tls_negotiation (Lisp_Object process)
4777 {
4778 #ifdef HAVE_GNUTLS
4779 while (XPROCESS (process)->gnutls_p
4780 && XPROCESS (process)->gnutls_initstage != GNUTLS_STAGE_READY)
4781 {
4782 add_to_log ("Waiting for TLS...");
4783 wait_reading_process_output (0, 20 * 1000 * 1000, 0, 0, Qnil, NULL, 0);
4784 }
4785 #endif
4786 }
4787
4788 /* This variable is different from waiting_for_input in keyboard.c.
4789 It is used to communicate to a lisp process-filter/sentinel (via the
4790 function Fwaiting_for_user_input_p below) whether Emacs was waiting
4791 for user-input when that process-filter was called.
4792 waiting_for_input cannot be used as that is by definition 0 when
4793 lisp code is being evalled.
4794 This is also used in record_asynch_buffer_change.
4795 For that purpose, this must be 0
4796 when not inside wait_reading_process_output. */
4797 static int waiting_for_user_input_p;
4798
4799 static void
4800 wait_reading_process_output_unwind (int data)
4801 {
4802 waiting_for_user_input_p = data;
4803 }
4804
4805 /* This is here so breakpoints can be put on it. */
4806 static void
4807 wait_reading_process_output_1 (void)
4808 {
4809 }
4810
4811 /* Read and dispose of subprocess output while waiting for timeout to
4812 elapse and/or keyboard input to be available.
4813
4814 TIME_LIMIT is:
4815 timeout in seconds
4816 If negative, gobble data immediately available but don't wait for any.
4817
4818 NSECS is:
4819 an additional duration to wait, measured in nanoseconds
4820 If TIME_LIMIT is zero, then:
4821 If NSECS == 0, there is no limit.
4822 If NSECS > 0, the timeout consists of NSECS only.
4823 If NSECS < 0, gobble data immediately, as if TIME_LIMIT were negative.
4824
4825 READ_KBD is:
4826 0 to ignore keyboard input, or
4827 1 to return when input is available, or
4828 -1 meaning caller will actually read the input, so don't throw to
4829 the quit handler, or
4830
4831 DO_DISPLAY means redisplay should be done to show subprocess
4832 output that arrives.
4833
4834 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4835 (and gobble terminal input into the buffer if any arrives).
4836
4837 If WAIT_PROC is specified, wait until something arrives from that
4838 process.
4839
4840 If JUST_WAIT_PROC is nonzero, handle only output from WAIT_PROC
4841 (suspending output from other processes). A negative value
4842 means don't run any timers either.
4843
4844 Return positive if we received input from WAIT_PROC (or from any
4845 process if WAIT_PROC is null), zero if we attempted to receive
4846 input but got none, and negative if we didn't even try. */
4847
4848 int
4849 wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd,
4850 bool do_display,
4851 Lisp_Object wait_for_cell,
4852 struct Lisp_Process *wait_proc, int just_wait_proc)
4853 {
4854 int channel, nfds;
4855 fd_set Available;
4856 fd_set Writeok;
4857 bool check_write;
4858 int check_delay;
4859 bool no_avail;
4860 int xerrno;
4861 Lisp_Object proc;
4862 struct timespec timeout, end_time, timer_delay;
4863 struct timespec got_output_end_time = invalid_timespec ();
4864 enum { MINIMUM = -1, TIMEOUT, INFINITY } wait;
4865 int got_some_output = -1;
4866 ptrdiff_t count = SPECPDL_INDEX ();
4867
4868 /* Close to the current time if known, an invalid timespec otherwise. */
4869 struct timespec now = invalid_timespec ();
4870
4871 FD_ZERO (&Available);
4872 FD_ZERO (&Writeok);
4873
4874 if (time_limit == 0 && nsecs == 0 && wait_proc && !NILP (Vinhibit_quit)
4875 && !(CONSP (wait_proc->status)
4876 && EQ (XCAR (wait_proc->status), Qexit)))
4877 message1 ("Blocking call to accept-process-output with quit inhibited!!");
4878
4879 record_unwind_protect_int (wait_reading_process_output_unwind,
4880 waiting_for_user_input_p);
4881 waiting_for_user_input_p = read_kbd;
4882
4883 if (TYPE_MAXIMUM (time_t) < time_limit)
4884 time_limit = TYPE_MAXIMUM (time_t);
4885
4886 if (time_limit < 0 || nsecs < 0)
4887 wait = MINIMUM;
4888 else if (time_limit > 0 || nsecs > 0)
4889 {
4890 wait = TIMEOUT;
4891 now = current_timespec ();
4892 end_time = timespec_add (now, make_timespec (time_limit, nsecs));
4893 }
4894 else
4895 wait = INFINITY;
4896
4897 while (1)
4898 {
4899 bool process_skipped = false;
4900
4901 /* If calling from keyboard input, do not quit
4902 since we want to return C-g as an input character.
4903 Otherwise, do pending quit if requested. */
4904 if (read_kbd >= 0)
4905 QUIT;
4906 else if (pending_signals)
4907 process_pending_signals ();
4908
4909 /* Exit now if the cell we're waiting for became non-nil. */
4910 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4911 break;
4912
4913 #if defined HAVE_GETADDRINFO_A || defined HAVE_GNUTLS
4914 {
4915 Lisp_Object process_list_head, aproc;
4916 struct Lisp_Process *p;
4917
4918 FOR_EACH_PROCESS(process_list_head, aproc)
4919 {
4920 p = XPROCESS (aproc);
4921
4922 if (! wait_proc || p == wait_proc)
4923 {
4924 #ifdef HAVE_GETADDRINFO_A
4925 /* Check for pending DNS requests. */
4926 if (p->dns_request)
4927 {
4928 Lisp_Object ip_addresses = check_for_dns (aproc);
4929 if (!NILP (ip_addresses) && !EQ (ip_addresses, Qt))
4930 connect_network_socket (aproc, ip_addresses);
4931 }
4932 #endif
4933 #ifdef HAVE_GNUTLS
4934 /* Continue TLS negotiation. */
4935 if (p->gnutls_initstage == GNUTLS_STAGE_HANDSHAKE_TRIED
4936 && p->is_non_blocking_client)
4937 {
4938 gnutls_try_handshake (p);
4939 p->gnutls_handshakes_tried++;
4940
4941 if (p->gnutls_initstage == GNUTLS_STAGE_READY)
4942 {
4943 gnutls_verify_boot (aproc, Qnil);
4944 finish_after_tls_connection (aproc);
4945 }
4946 else if (p->gnutls_handshakes_tried
4947 > GNUTLS_EMACS_HANDSHAKES_LIMIT)
4948 {
4949 deactivate_process (aproc);
4950 pset_status (p, list2 (Qfailed,
4951 build_string ("TLS negotiation failed")));
4952 }
4953 }
4954 #endif
4955 }
4956 }
4957 }
4958 #endif /* GETADDRINFO_A or GNUTLS */
4959
4960 /* Compute time from now till when time limit is up. */
4961 /* Exit if already run out. */
4962 if (wait == TIMEOUT)
4963 {
4964 if (!timespec_valid_p (now))
4965 now = current_timespec ();
4966 if (timespec_cmp (end_time, now) <= 0)
4967 break;
4968 timeout = timespec_sub (end_time, now);
4969 }
4970 else
4971 timeout = make_timespec (wait < TIMEOUT ? 0 : 100000, 0);
4972
4973 /* Normally we run timers here.
4974 But not if wait_for_cell; in those cases,
4975 the wait is supposed to be short,
4976 and those callers cannot handle running arbitrary Lisp code here. */
4977 if (NILP (wait_for_cell)
4978 && just_wait_proc >= 0)
4979 {
4980 do
4981 {
4982 unsigned old_timers_run = timers_run;
4983 struct buffer *old_buffer = current_buffer;
4984 Lisp_Object old_window = selected_window;
4985
4986 timer_delay = timer_check ();
4987
4988 /* If a timer has run, this might have changed buffers
4989 an alike. Make read_key_sequence aware of that. */
4990 if (timers_run != old_timers_run
4991 && (old_buffer != current_buffer
4992 || !EQ (old_window, selected_window))
4993 && waiting_for_user_input_p == -1)
4994 record_asynch_buffer_change ();
4995
4996 if (timers_run != old_timers_run && do_display)
4997 /* We must retry, since a timer may have requeued itself
4998 and that could alter the time_delay. */
4999 redisplay_preserve_echo_area (9);
5000 else
5001 break;
5002 }
5003 while (!detect_input_pending ());
5004
5005 /* If there is unread keyboard input, also return. */
5006 if (read_kbd != 0
5007 && requeued_events_pending_p ())
5008 break;
5009
5010 /* This is so a breakpoint can be put here. */
5011 if (!timespec_valid_p (timer_delay))
5012 wait_reading_process_output_1 ();
5013 }
5014
5015 /* Cause C-g and alarm signals to take immediate action,
5016 and cause input available signals to zero out timeout.
5017
5018 It is important that we do this before checking for process
5019 activity. If we get a SIGCHLD after the explicit checks for
5020 process activity, timeout is the only way we will know. */
5021 if (read_kbd < 0)
5022 set_waiting_for_input (&timeout);
5023
5024 /* If status of something has changed, and no input is
5025 available, notify the user of the change right away. After
5026 this explicit check, we'll let the SIGCHLD handler zap
5027 timeout to get our attention. */
5028 if (update_tick != process_tick)
5029 {
5030 fd_set Atemp;
5031 fd_set Ctemp;
5032
5033 if (kbd_on_hold_p ())
5034 FD_ZERO (&Atemp);
5035 else
5036 Atemp = input_wait_mask;
5037 Ctemp = write_mask;
5038
5039 timeout = make_timespec (0, 0);
5040 if ((pselect (max (max_process_desc, max_input_desc) + 1,
5041 &Atemp,
5042 #ifdef NON_BLOCKING_CONNECT
5043 (num_pending_connects > 0 ? &Ctemp : NULL),
5044 #else
5045 NULL,
5046 #endif
5047 NULL, &timeout, NULL)
5048 <= 0))
5049 {
5050 /* It's okay for us to do this and then continue with
5051 the loop, since timeout has already been zeroed out. */
5052 clear_waiting_for_input ();
5053 got_some_output = status_notify (NULL, wait_proc);
5054 if (do_display) redisplay_preserve_echo_area (13);
5055 }
5056 }
5057
5058 /* Don't wait for output from a non-running process. Just
5059 read whatever data has already been received. */
5060 if (wait_proc && wait_proc->raw_status_new)
5061 update_status (wait_proc);
5062 if (wait_proc
5063 && ! EQ (wait_proc->status, Qrun)
5064 && ! EQ (wait_proc->status, Qconnect))
5065 {
5066 bool read_some_bytes = false;
5067
5068 clear_waiting_for_input ();
5069
5070 /* If data can be read from the process, do so until exhausted. */
5071 if (wait_proc->infd >= 0)
5072 {
5073 XSETPROCESS (proc, wait_proc);
5074
5075 while (true)
5076 {
5077 int nread = read_process_output (proc, wait_proc->infd);
5078 if (nread < 0)
5079 {
5080 if (errno == EIO || errno == EAGAIN)
5081 break;
5082 #ifdef EWOULDBLOCK
5083 if (errno == EWOULDBLOCK)
5084 break;
5085 #endif
5086 }
5087 else
5088 {
5089 if (got_some_output < nread)
5090 got_some_output = nread;
5091 if (nread == 0)
5092 break;
5093 read_some_bytes = true;
5094 }
5095 }
5096 }
5097
5098 if (read_some_bytes && do_display)
5099 redisplay_preserve_echo_area (10);
5100
5101 break;
5102 }
5103
5104 /* Wait till there is something to do. */
5105
5106 if (wait_proc && just_wait_proc)
5107 {
5108 if (wait_proc->infd < 0) /* Terminated. */
5109 break;
5110 FD_SET (wait_proc->infd, &Available);
5111 check_delay = 0;
5112 check_write = 0;
5113 }
5114 else if (!NILP (wait_for_cell))
5115 {
5116 Available = non_process_wait_mask;
5117 check_delay = 0;
5118 check_write = 0;
5119 }
5120 else
5121 {
5122 if (! read_kbd)
5123 Available = non_keyboard_wait_mask;
5124 else
5125 Available = input_wait_mask;
5126 Writeok = write_mask;
5127 check_delay = wait_proc ? 0 : process_output_delay_count;
5128 check_write = true;
5129 }
5130
5131 /* If frame size has changed or the window is newly mapped,
5132 redisplay now, before we start to wait. There is a race
5133 condition here; if a SIGIO arrives between now and the select
5134 and indicates that a frame is trashed, the select may block
5135 displaying a trashed screen. */
5136 if (frame_garbaged && do_display)
5137 {
5138 clear_waiting_for_input ();
5139 redisplay_preserve_echo_area (11);
5140 if (read_kbd < 0)
5141 set_waiting_for_input (&timeout);
5142 }
5143
5144 /* Skip the `select' call if input is available and we're
5145 waiting for keyboard input or a cell change (which can be
5146 triggered by processing X events). In the latter case, set
5147 nfds to 1 to avoid breaking the loop. */
5148 no_avail = 0;
5149 if ((read_kbd || !NILP (wait_for_cell))
5150 && detect_input_pending ())
5151 {
5152 nfds = read_kbd ? 0 : 1;
5153 no_avail = 1;
5154 FD_ZERO (&Available);
5155 }
5156 else
5157 {
5158 /* Set the timeout for adaptive read buffering if any
5159 process has non-zero read_output_skip and non-zero
5160 read_output_delay, and we are not reading output for a
5161 specific process. It is not executed if
5162 Vprocess_adaptive_read_buffering is nil. */
5163 if (process_output_skip && check_delay > 0)
5164 {
5165 int adaptive_nsecs = timeout.tv_nsec;
5166 if (timeout.tv_sec > 0 || adaptive_nsecs > READ_OUTPUT_DELAY_MAX)
5167 adaptive_nsecs = READ_OUTPUT_DELAY_MAX;
5168 for (channel = 0; check_delay > 0 && channel <= max_process_desc; channel++)
5169 {
5170 proc = chan_process[channel];
5171 if (NILP (proc))
5172 continue;
5173 /* Find minimum non-zero read_output_delay among the
5174 processes with non-zero read_output_skip. */
5175 if (XPROCESS (proc)->read_output_delay > 0)
5176 {
5177 check_delay--;
5178 if (!XPROCESS (proc)->read_output_skip)
5179 continue;
5180 FD_CLR (channel, &Available);
5181 process_skipped = true;
5182 XPROCESS (proc)->read_output_skip = 0;
5183 if (XPROCESS (proc)->read_output_delay < adaptive_nsecs)
5184 adaptive_nsecs = XPROCESS (proc)->read_output_delay;
5185 }
5186 }
5187 timeout = make_timespec (0, adaptive_nsecs);
5188 process_output_skip = 0;
5189 }
5190
5191 /* If we've got some output and haven't limited our timeout
5192 with adaptive read buffering, limit it. */
5193 if (got_some_output > 0 && !process_skipped
5194 && (timeout.tv_sec
5195 || timeout.tv_nsec > READ_OUTPUT_DELAY_INCREMENT))
5196 timeout = make_timespec (0, READ_OUTPUT_DELAY_INCREMENT);
5197
5198
5199 if (NILP (wait_for_cell) && just_wait_proc >= 0
5200 && timespec_valid_p (timer_delay)
5201 && timespec_cmp (timer_delay, timeout) < 0)
5202 {
5203 if (!timespec_valid_p (now))
5204 now = current_timespec ();
5205 struct timespec timeout_abs = timespec_add (now, timeout);
5206 if (!timespec_valid_p (got_output_end_time)
5207 || timespec_cmp (timeout_abs, got_output_end_time) < 0)
5208 got_output_end_time = timeout_abs;
5209 timeout = timer_delay;
5210 }
5211 else
5212 got_output_end_time = invalid_timespec ();
5213
5214 /* NOW can become inaccurate if time can pass during pselect. */
5215 if (timeout.tv_sec > 0 || timeout.tv_nsec > 0)
5216 now = invalid_timespec ();
5217
5218 #if defined (HAVE_NS)
5219 nfds = ns_select
5220 #elif defined (HAVE_GLIB)
5221 nfds = xg_select
5222 #else
5223 nfds = pselect
5224 #endif
5225 (max (max_process_desc, max_input_desc) + 1,
5226 &Available,
5227 (check_write ? &Writeok : 0),
5228 NULL, &timeout, NULL);
5229
5230 #ifdef HAVE_GNUTLS
5231 /* GnuTLS buffers data internally. In lowat mode it leaves
5232 some data in the TCP buffers so that select works, but
5233 with custom pull/push functions we need to check if some
5234 data is available in the buffers manually. */
5235 if (nfds == 0)
5236 {
5237 fd_set tls_available;
5238 int set = 0;
5239
5240 FD_ZERO (&tls_available);
5241 if (! wait_proc)
5242 {
5243 /* We're not waiting on a specific process, so loop
5244 through all the channels and check for data.
5245 This is a workaround needed for some versions of
5246 the gnutls library -- 2.12.14 has been confirmed
5247 to need it. See
5248 http://comments.gmane.org/gmane.emacs.devel/145074 */
5249 for (channel = 0; channel < FD_SETSIZE; ++channel)
5250 if (! NILP (chan_process[channel]))
5251 {
5252 struct Lisp_Process *p =
5253 XPROCESS (chan_process[channel]);
5254 if (p && p->gnutls_p && p->gnutls_state
5255 && ((emacs_gnutls_record_check_pending
5256 (p->gnutls_state))
5257 > 0))
5258 {
5259 nfds++;
5260 eassert (p->infd == channel);
5261 FD_SET (p->infd, &tls_available);
5262 set++;
5263 }
5264 }
5265 }
5266 else
5267 {
5268 /* Check this specific channel. */
5269 if (wait_proc->gnutls_p /* Check for valid process. */
5270 && wait_proc->gnutls_state
5271 /* Do we have pending data? */
5272 && ((emacs_gnutls_record_check_pending
5273 (wait_proc->gnutls_state))
5274 > 0))
5275 {
5276 nfds = 1;
5277 eassert (0 <= wait_proc->infd);
5278 /* Set to Available. */
5279 FD_SET (wait_proc->infd, &tls_available);
5280 set++;
5281 }
5282 }
5283 if (set)
5284 Available = tls_available;
5285 }
5286 #endif
5287 }
5288
5289 xerrno = errno;
5290
5291 /* Make C-g and alarm signals set flags again. */
5292 clear_waiting_for_input ();
5293
5294 /* If we woke up due to SIGWINCH, actually change size now. */
5295 do_pending_window_change (0);
5296
5297 if (nfds == 0)
5298 {
5299 /* Exit the main loop if we've passed the requested timeout,
5300 or aren't skipping processes and got some output and
5301 haven't lowered our timeout due to timers or SIGIO and
5302 have waited a long amount of time due to repeated
5303 timers. */
5304 if (wait < TIMEOUT)
5305 break;
5306 struct timespec cmp_time
5307 = (wait == TIMEOUT
5308 ? end_time
5309 : (!process_skipped && got_some_output > 0
5310 && (timeout.tv_sec > 0 || timeout.tv_nsec > 0))
5311 ? got_output_end_time
5312 : invalid_timespec ());
5313 if (timespec_valid_p (cmp_time))
5314 {
5315 now = current_timespec ();
5316 if (timespec_cmp (cmp_time, now) <= 0)
5317 break;
5318 }
5319 }
5320
5321 if (nfds < 0)
5322 {
5323 if (xerrno == EINTR)
5324 no_avail = 1;
5325 else if (xerrno == EBADF)
5326 emacs_abort ();
5327 else
5328 report_file_errno ("Failed select", Qnil, xerrno);
5329 }
5330
5331 /* Check for keyboard input. */
5332 /* If there is any, return immediately
5333 to give it higher priority than subprocesses. */
5334
5335 if (read_kbd != 0)
5336 {
5337 unsigned old_timers_run = timers_run;
5338 struct buffer *old_buffer = current_buffer;
5339 Lisp_Object old_window = selected_window;
5340 bool leave = false;
5341
5342 if (detect_input_pending_run_timers (do_display))
5343 {
5344 swallow_events (do_display);
5345 if (detect_input_pending_run_timers (do_display))
5346 leave = true;
5347 }
5348
5349 /* If a timer has run, this might have changed buffers
5350 an alike. Make read_key_sequence aware of that. */
5351 if (timers_run != old_timers_run
5352 && waiting_for_user_input_p == -1
5353 && (old_buffer != current_buffer
5354 || !EQ (old_window, selected_window)))
5355 record_asynch_buffer_change ();
5356
5357 if (leave)
5358 break;
5359 }
5360
5361 /* If there is unread keyboard input, also return. */
5362 if (read_kbd != 0
5363 && requeued_events_pending_p ())
5364 break;
5365
5366 /* If we are not checking for keyboard input now,
5367 do process events (but don't run any timers).
5368 This is so that X events will be processed.
5369 Otherwise they may have to wait until polling takes place.
5370 That would causes delays in pasting selections, for example.
5371
5372 (We used to do this only if wait_for_cell.) */
5373 if (read_kbd == 0 && detect_input_pending ())
5374 {
5375 swallow_events (do_display);
5376 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
5377 if (detect_input_pending ())
5378 break;
5379 #endif
5380 }
5381
5382 /* Exit now if the cell we're waiting for became non-nil. */
5383 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
5384 break;
5385
5386 #ifdef USABLE_SIGIO
5387 /* If we think we have keyboard input waiting, but didn't get SIGIO,
5388 go read it. This can happen with X on BSD after logging out.
5389 In that case, there really is no input and no SIGIO,
5390 but select says there is input. */
5391
5392 if (read_kbd && interrupt_input
5393 && keyboard_bit_set (&Available) && ! noninteractive)
5394 handle_input_available_signal (SIGIO);
5395 #endif
5396
5397 /* If checking input just got us a size-change event from X,
5398 obey it now if we should. */
5399 if (read_kbd || ! NILP (wait_for_cell))
5400 do_pending_window_change (0);
5401
5402 /* Check for data from a process. */
5403 if (no_avail || nfds == 0)
5404 continue;
5405
5406 for (channel = 0; channel <= max_input_desc; ++channel)
5407 {
5408 struct fd_callback_data *d = &fd_callback_info[channel];
5409 if (d->func
5410 && ((d->condition & FOR_READ
5411 && FD_ISSET (channel, &Available))
5412 || (d->condition & FOR_WRITE
5413 && FD_ISSET (channel, &write_mask))))
5414 d->func (channel, d->data);
5415 }
5416
5417 for (channel = 0; channel <= max_process_desc; channel++)
5418 {
5419 if (FD_ISSET (channel, &Available)
5420 && FD_ISSET (channel, &non_keyboard_wait_mask)
5421 && !FD_ISSET (channel, &non_process_wait_mask))
5422 {
5423 int nread;
5424
5425 /* If waiting for this channel, arrange to return as
5426 soon as no more input to be processed. No more
5427 waiting. */
5428 proc = chan_process[channel];
5429 if (NILP (proc))
5430 continue;
5431
5432 /* If this is a server stream socket, accept connection. */
5433 if (EQ (XPROCESS (proc)->status, Qlisten))
5434 {
5435 server_accept_connection (proc, channel);
5436 continue;
5437 }
5438
5439 /* Read data from the process, starting with our
5440 buffered-ahead character if we have one. */
5441
5442 nread = read_process_output (proc, channel);
5443 if ((!wait_proc || wait_proc == XPROCESS (proc))
5444 && got_some_output < nread)
5445 got_some_output = nread;
5446 if (nread > 0)
5447 {
5448 /* Vacuum up any leftovers without waiting. */
5449 if (wait_proc == XPROCESS (proc))
5450 wait = MINIMUM;
5451 /* Since read_process_output can run a filter,
5452 which can call accept-process-output,
5453 don't try to read from any other processes
5454 before doing the select again. */
5455 FD_ZERO (&Available);
5456
5457 if (do_display)
5458 redisplay_preserve_echo_area (12);
5459 }
5460 #ifdef EWOULDBLOCK
5461 else if (nread == -1 && errno == EWOULDBLOCK)
5462 ;
5463 #endif
5464 else if (nread == -1 && errno == EAGAIN)
5465 ;
5466 #ifdef WINDOWSNT
5467 /* FIXME: Is this special case still needed? */
5468 /* Note that we cannot distinguish between no input
5469 available now and a closed pipe.
5470 With luck, a closed pipe will be accompanied by
5471 subprocess termination and SIGCHLD. */
5472 else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc)
5473 && !PIPECONN_P (proc))
5474 ;
5475 #endif
5476 #ifdef HAVE_PTYS
5477 /* On some OSs with ptys, when the process on one end of
5478 a pty exits, the other end gets an error reading with
5479 errno = EIO instead of getting an EOF (0 bytes read).
5480 Therefore, if we get an error reading and errno =
5481 EIO, just continue, because the child process has
5482 exited and should clean itself up soon (e.g. when we
5483 get a SIGCHLD). */
5484 else if (nread == -1 && errno == EIO)
5485 {
5486 struct Lisp_Process *p = XPROCESS (proc);
5487
5488 /* Clear the descriptor now, so we only raise the
5489 signal once. */
5490 FD_CLR (channel, &input_wait_mask);
5491 FD_CLR (channel, &non_keyboard_wait_mask);
5492
5493 if (p->pid == -2)
5494 {
5495 /* If the EIO occurs on a pty, the SIGCHLD handler's
5496 waitpid call will not find the process object to
5497 delete. Do it here. */
5498 p->tick = ++process_tick;
5499 pset_status (p, Qfailed);
5500 }
5501 }
5502 #endif /* HAVE_PTYS */
5503 /* If we can detect process termination, don't consider the
5504 process gone just because its pipe is closed. */
5505 else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc)
5506 && !PIPECONN_P (proc))
5507 ;
5508 else if (nread == 0 && PIPECONN_P (proc))
5509 {
5510 /* Preserve status of processes already terminated. */
5511 XPROCESS (proc)->tick = ++process_tick;
5512 deactivate_process (proc);
5513 if (EQ (XPROCESS (proc)->status, Qrun))
5514 pset_status (XPROCESS (proc),
5515 list2 (Qexit, make_number (0)));
5516 }
5517 else
5518 {
5519 /* Preserve status of processes already terminated. */
5520 XPROCESS (proc)->tick = ++process_tick;
5521 deactivate_process (proc);
5522 if (XPROCESS (proc)->raw_status_new)
5523 update_status (XPROCESS (proc));
5524 if (EQ (XPROCESS (proc)->status, Qrun))
5525 pset_status (XPROCESS (proc),
5526 list2 (Qexit, make_number (256)));
5527 }
5528 }
5529 #ifdef NON_BLOCKING_CONNECT
5530 if (FD_ISSET (channel, &Writeok)
5531 && FD_ISSET (channel, &connect_wait_mask))
5532 {
5533 struct Lisp_Process *p;
5534
5535 FD_CLR (channel, &connect_wait_mask);
5536 FD_CLR (channel, &write_mask);
5537 if (--num_pending_connects < 0)
5538 emacs_abort ();
5539
5540 proc = chan_process[channel];
5541 if (NILP (proc))
5542 continue;
5543
5544 p = XPROCESS (proc);
5545
5546 #ifdef GNU_LINUX
5547 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
5548 So only use it on systems where it is known to work. */
5549 {
5550 socklen_t xlen = sizeof (xerrno);
5551 if (getsockopt (channel, SOL_SOCKET, SO_ERROR, &xerrno, &xlen))
5552 xerrno = errno;
5553 }
5554 #else
5555 {
5556 struct sockaddr pname;
5557 socklen_t pnamelen = sizeof (pname);
5558
5559 /* If connection failed, getpeername will fail. */
5560 xerrno = 0;
5561 if (getpeername (channel, &pname, &pnamelen) < 0)
5562 {
5563 /* Obtain connect failure code through error slippage. */
5564 char dummy;
5565 xerrno = errno;
5566 if (errno == ENOTCONN && read (channel, &dummy, 1) < 0)
5567 xerrno = errno;
5568 }
5569 }
5570 #endif
5571 if (xerrno)
5572 {
5573 p->tick = ++process_tick;
5574 pset_status (p, list2 (Qfailed, make_number (xerrno)));
5575 deactivate_process (proc);
5576 }
5577 else
5578 {
5579 #ifdef HAVE_GNUTLS
5580 /* If we have an incompletely set up TLS connection,
5581 then defer the sentinel signalling until
5582 later. */
5583 if (NILP (p->gnutls_boot_parameters)
5584 && !p->gnutls_p)
5585 #endif
5586 {
5587 pset_status (p, Qrun);
5588 /* Execute the sentinel here. If we had relied on
5589 status_notify to do it later, it will read input
5590 from the process before calling the sentinel. */
5591 exec_sentinel (proc, build_string ("open\n"));
5592 }
5593
5594 if (0 <= p->infd && !EQ (p->filter, Qt)
5595 && !EQ (p->command, Qt))
5596 {
5597 FD_SET (p->infd, &input_wait_mask);
5598 FD_SET (p->infd, &non_keyboard_wait_mask);
5599 }
5600 }
5601 }
5602 #endif /* NON_BLOCKING_CONNECT */
5603 } /* End for each file descriptor. */
5604 } /* End while exit conditions not met. */
5605
5606 unbind_to (count, Qnil);
5607
5608 /* If calling from keyboard input, do not quit
5609 since we want to return C-g as an input character.
5610 Otherwise, do pending quit if requested. */
5611 if (read_kbd >= 0)
5612 {
5613 /* Prevent input_pending from remaining set if we quit. */
5614 clear_input_pending ();
5615 QUIT;
5616 }
5617
5618 return got_some_output;
5619 }
5620 \f
5621 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
5622
5623 static Lisp_Object
5624 read_process_output_call (Lisp_Object fun_and_args)
5625 {
5626 return apply1 (XCAR (fun_and_args), XCDR (fun_and_args));
5627 }
5628
5629 static Lisp_Object
5630 read_process_output_error_handler (Lisp_Object error_val)
5631 {
5632 cmd_error_internal (error_val, "error in process filter: ");
5633 Vinhibit_quit = Qt;
5634 update_echo_area ();
5635 Fsleep_for (make_number (2), Qnil);
5636 return Qt;
5637 }
5638
5639 static void
5640 read_and_dispose_of_process_output (struct Lisp_Process *p, char *chars,
5641 ssize_t nbytes,
5642 struct coding_system *coding);
5643
5644 /* Read pending output from the process channel,
5645 starting with our buffered-ahead character if we have one.
5646 Yield number of decoded characters read.
5647
5648 This function reads at most 4096 characters.
5649 If you want to read all available subprocess output,
5650 you must call it repeatedly until it returns zero.
5651
5652 The characters read are decoded according to PROC's coding-system
5653 for decoding. */
5654
5655 static int
5656 read_process_output (Lisp_Object proc, int channel)
5657 {
5658 ssize_t nbytes;
5659 struct Lisp_Process *p = XPROCESS (proc);
5660 struct coding_system *coding = proc_decode_coding_system[channel];
5661 int carryover = p->decoding_carryover;
5662 enum { readmax = 4096 };
5663 ptrdiff_t count = SPECPDL_INDEX ();
5664 Lisp_Object odeactivate;
5665 char chars[sizeof coding->carryover + readmax];
5666
5667 if (carryover)
5668 /* See the comment above. */
5669 memcpy (chars, SDATA (p->decoding_buf), carryover);
5670
5671 #ifdef DATAGRAM_SOCKETS
5672 /* We have a working select, so proc_buffered_char is always -1. */
5673 if (DATAGRAM_CHAN_P (channel))
5674 {
5675 socklen_t len = datagram_address[channel].len;
5676 nbytes = recvfrom (channel, chars + carryover, readmax,
5677 0, datagram_address[channel].sa, &len);
5678 }
5679 else
5680 #endif
5681 {
5682 bool buffered = proc_buffered_char[channel] >= 0;
5683 if (buffered)
5684 {
5685 chars[carryover] = proc_buffered_char[channel];
5686 proc_buffered_char[channel] = -1;
5687 }
5688 #ifdef HAVE_GNUTLS
5689 if (p->gnutls_p && p->gnutls_state)
5690 nbytes = emacs_gnutls_read (p, chars + carryover + buffered,
5691 readmax - buffered);
5692 else
5693 #endif
5694 nbytes = emacs_read (channel, chars + carryover + buffered,
5695 readmax - buffered);
5696 if (nbytes > 0 && p->adaptive_read_buffering)
5697 {
5698 int delay = p->read_output_delay;
5699 if (nbytes < 256)
5700 {
5701 if (delay < READ_OUTPUT_DELAY_MAX_MAX)
5702 {
5703 if (delay == 0)
5704 process_output_delay_count++;
5705 delay += READ_OUTPUT_DELAY_INCREMENT * 2;
5706 }
5707 }
5708 else if (delay > 0 && nbytes == readmax - buffered)
5709 {
5710 delay -= READ_OUTPUT_DELAY_INCREMENT;
5711 if (delay == 0)
5712 process_output_delay_count--;
5713 }
5714 p->read_output_delay = delay;
5715 if (delay)
5716 {
5717 p->read_output_skip = 1;
5718 process_output_skip = 1;
5719 }
5720 }
5721 nbytes += buffered;
5722 nbytes += buffered && nbytes <= 0;
5723 }
5724
5725 p->decoding_carryover = 0;
5726
5727 /* At this point, NBYTES holds number of bytes just received
5728 (including the one in proc_buffered_char[channel]). */
5729 if (nbytes <= 0)
5730 {
5731 if (nbytes < 0 || coding->mode & CODING_MODE_LAST_BLOCK)
5732 return nbytes;
5733 coding->mode |= CODING_MODE_LAST_BLOCK;
5734 }
5735
5736 /* Now set NBYTES how many bytes we must decode. */
5737 nbytes += carryover;
5738
5739 odeactivate = Vdeactivate_mark;
5740 /* There's no good reason to let process filters change the current
5741 buffer, and many callers of accept-process-output, sit-for, and
5742 friends don't expect current-buffer to be changed from under them. */
5743 record_unwind_current_buffer ();
5744
5745 read_and_dispose_of_process_output (p, chars, nbytes, coding);
5746
5747 /* Handling the process output should not deactivate the mark. */
5748 Vdeactivate_mark = odeactivate;
5749
5750 unbind_to (count, Qnil);
5751 return nbytes;
5752 }
5753
5754 static void
5755 read_and_dispose_of_process_output (struct Lisp_Process *p, char *chars,
5756 ssize_t nbytes,
5757 struct coding_system *coding)
5758 {
5759 Lisp_Object outstream = p->filter;
5760 Lisp_Object text;
5761 bool outer_running_asynch_code = running_asynch_code;
5762 int waiting = waiting_for_user_input_p;
5763
5764 #if 0
5765 Lisp_Object obuffer, okeymap;
5766 XSETBUFFER (obuffer, current_buffer);
5767 okeymap = BVAR (current_buffer, keymap);
5768 #endif
5769
5770 /* We inhibit quit here instead of just catching it so that
5771 hitting ^G when a filter happens to be running won't screw
5772 it up. */
5773 specbind (Qinhibit_quit, Qt);
5774 specbind (Qlast_nonmenu_event, Qt);
5775
5776 /* In case we get recursively called,
5777 and we already saved the match data nonrecursively,
5778 save the same match data in safely recursive fashion. */
5779 if (outer_running_asynch_code)
5780 {
5781 Lisp_Object tem;
5782 /* Don't clobber the CURRENT match data, either! */
5783 tem = Fmatch_data (Qnil, Qnil, Qnil);
5784 restore_search_regs ();
5785 record_unwind_save_match_data ();
5786 Fset_match_data (tem, Qt);
5787 }
5788
5789 /* For speed, if a search happens within this code,
5790 save the match data in a special nonrecursive fashion. */
5791 running_asynch_code = 1;
5792
5793 decode_coding_c_string (coding, (unsigned char *) chars, nbytes, Qt);
5794 text = coding->dst_object;
5795 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5796 /* A new coding system might be found. */
5797 if (!EQ (p->decode_coding_system, Vlast_coding_system_used))
5798 {
5799 pset_decode_coding_system (p, Vlast_coding_system_used);
5800
5801 /* Don't call setup_coding_system for
5802 proc_decode_coding_system[channel] here. It is done in
5803 detect_coding called via decode_coding above. */
5804
5805 /* If a coding system for encoding is not yet decided, we set
5806 it as the same as coding-system for decoding.
5807
5808 But, before doing that we must check if
5809 proc_encode_coding_system[p->outfd] surely points to a
5810 valid memory because p->outfd will be changed once EOF is
5811 sent to the process. */
5812 if (NILP (p->encode_coding_system) && p->outfd >= 0
5813 && proc_encode_coding_system[p->outfd])
5814 {
5815 pset_encode_coding_system
5816 (p, coding_inherit_eol_type (Vlast_coding_system_used, Qnil));
5817 setup_coding_system (p->encode_coding_system,
5818 proc_encode_coding_system[p->outfd]);
5819 }
5820 }
5821
5822 if (coding->carryover_bytes > 0)
5823 {
5824 if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
5825 pset_decoding_buf (p, make_uninit_string (coding->carryover_bytes));
5826 memcpy (SDATA (p->decoding_buf), coding->carryover,
5827 coding->carryover_bytes);
5828 p->decoding_carryover = coding->carryover_bytes;
5829 }
5830 if (SBYTES (text) > 0)
5831 /* FIXME: It's wrong to wrap or not based on debug-on-error, and
5832 sometimes it's simply wrong to wrap (e.g. when called from
5833 accept-process-output). */
5834 internal_condition_case_1 (read_process_output_call,
5835 list3 (outstream, make_lisp_proc (p), text),
5836 !NILP (Vdebug_on_error) ? Qnil : Qerror,
5837 read_process_output_error_handler);
5838
5839 /* If we saved the match data nonrecursively, restore it now. */
5840 restore_search_regs ();
5841 running_asynch_code = outer_running_asynch_code;
5842
5843 /* Restore waiting_for_user_input_p as it was
5844 when we were called, in case the filter clobbered it. */
5845 waiting_for_user_input_p = waiting;
5846
5847 #if 0 /* Call record_asynch_buffer_change unconditionally,
5848 because we might have changed minor modes or other things
5849 that affect key bindings. */
5850 if (! EQ (Fcurrent_buffer (), obuffer)
5851 || ! EQ (current_buffer->keymap, okeymap))
5852 #endif
5853 /* But do it only if the caller is actually going to read events.
5854 Otherwise there's no need to make him wake up, and it could
5855 cause trouble (for example it would make sit_for return). */
5856 if (waiting_for_user_input_p == -1)
5857 record_asynch_buffer_change ();
5858 }
5859
5860 DEFUN ("internal-default-process-filter", Finternal_default_process_filter,
5861 Sinternal_default_process_filter, 2, 2, 0,
5862 doc: /* Function used as default process filter.
5863 This inserts the process's output into its buffer, if there is one.
5864 Otherwise it discards the output. */)
5865 (Lisp_Object proc, Lisp_Object text)
5866 {
5867 struct Lisp_Process *p;
5868 ptrdiff_t opoint;
5869
5870 CHECK_PROCESS (proc);
5871 p = XPROCESS (proc);
5872 CHECK_STRING (text);
5873
5874 if (!NILP (p->buffer) && BUFFER_LIVE_P (XBUFFER (p->buffer)))
5875 {
5876 Lisp_Object old_read_only;
5877 ptrdiff_t old_begv, old_zv;
5878 ptrdiff_t old_begv_byte, old_zv_byte;
5879 ptrdiff_t before, before_byte;
5880 ptrdiff_t opoint_byte;
5881 struct buffer *b;
5882
5883 Fset_buffer (p->buffer);
5884 opoint = PT;
5885 opoint_byte = PT_BYTE;
5886 old_read_only = BVAR (current_buffer, read_only);
5887 old_begv = BEGV;
5888 old_zv = ZV;
5889 old_begv_byte = BEGV_BYTE;
5890 old_zv_byte = ZV_BYTE;
5891
5892 bset_read_only (current_buffer, Qnil);
5893
5894 /* Insert new output into buffer at the current end-of-output
5895 marker, thus preserving logical ordering of input and output. */
5896 if (XMARKER (p->mark)->buffer)
5897 set_point_from_marker (p->mark);
5898 else
5899 SET_PT_BOTH (ZV, ZV_BYTE);
5900 before = PT;
5901 before_byte = PT_BYTE;
5902
5903 /* If the output marker is outside of the visible region, save
5904 the restriction and widen. */
5905 if (! (BEGV <= PT && PT <= ZV))
5906 Fwiden ();
5907
5908 /* Adjust the multibyteness of TEXT to that of the buffer. */
5909 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
5910 != ! STRING_MULTIBYTE (text))
5911 text = (STRING_MULTIBYTE (text)
5912 ? Fstring_as_unibyte (text)
5913 : Fstring_to_multibyte (text));
5914 /* Insert before markers in case we are inserting where
5915 the buffer's mark is, and the user's next command is Meta-y. */
5916 insert_from_string_before_markers (text, 0, 0,
5917 SCHARS (text), SBYTES (text), 0);
5918
5919 /* Make sure the process marker's position is valid when the
5920 process buffer is changed in the signal_after_change above.
5921 W3 is known to do that. */
5922 if (BUFFERP (p->buffer)
5923 && (b = XBUFFER (p->buffer), b != current_buffer))
5924 set_marker_both (p->mark, p->buffer, BUF_PT (b), BUF_PT_BYTE (b));
5925 else
5926 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
5927
5928 update_mode_lines = 23;
5929
5930 /* Make sure opoint and the old restrictions
5931 float ahead of any new text just as point would. */
5932 if (opoint >= before)
5933 {
5934 opoint += PT - before;
5935 opoint_byte += PT_BYTE - before_byte;
5936 }
5937 if (old_begv > before)
5938 {
5939 old_begv += PT - before;
5940 old_begv_byte += PT_BYTE - before_byte;
5941 }
5942 if (old_zv >= before)
5943 {
5944 old_zv += PT - before;
5945 old_zv_byte += PT_BYTE - before_byte;
5946 }
5947
5948 /* If the restriction isn't what it should be, set it. */
5949 if (old_begv != BEGV || old_zv != ZV)
5950 Fnarrow_to_region (make_number (old_begv), make_number (old_zv));
5951
5952 bset_read_only (current_buffer, old_read_only);
5953 SET_PT_BOTH (opoint, opoint_byte);
5954 }
5955 return Qnil;
5956 }
5957 \f
5958 /* Sending data to subprocess. */
5959
5960 /* In send_process, when a write fails temporarily,
5961 wait_reading_process_output is called. It may execute user code,
5962 e.g. timers, that attempts to write new data to the same process.
5963 We must ensure that data is sent in the right order, and not
5964 interspersed half-completed with other writes (Bug#10815). This is
5965 handled by the write_queue element of struct process. It is a list
5966 with each entry having the form
5967
5968 (string . (offset . length))
5969
5970 where STRING is a lisp string, OFFSET is the offset into the
5971 string's byte sequence from which we should begin to send, and
5972 LENGTH is the number of bytes left to send. */
5973
5974 /* Create a new entry in write_queue.
5975 INPUT_OBJ should be a buffer, string Qt, or Qnil.
5976 BUF is a pointer to the string sequence of the input_obj or a C
5977 string in case of Qt or Qnil. */
5978
5979 static void
5980 write_queue_push (struct Lisp_Process *p, Lisp_Object input_obj,
5981 const char *buf, ptrdiff_t len, bool front)
5982 {
5983 ptrdiff_t offset;
5984 Lisp_Object entry, obj;
5985
5986 if (STRINGP (input_obj))
5987 {
5988 offset = buf - SSDATA (input_obj);
5989 obj = input_obj;
5990 }
5991 else
5992 {
5993 offset = 0;
5994 obj = make_unibyte_string (buf, len);
5995 }
5996
5997 entry = Fcons (obj, Fcons (make_number (offset), make_number (len)));
5998
5999 if (front)
6000 pset_write_queue (p, Fcons (entry, p->write_queue));
6001 else
6002 pset_write_queue (p, nconc2 (p->write_queue, list1 (entry)));
6003 }
6004
6005 /* Remove the first element in the write_queue of process P, put its
6006 contents in OBJ, BUF and LEN, and return true. If the
6007 write_queue is empty, return false. */
6008
6009 static bool
6010 write_queue_pop (struct Lisp_Process *p, Lisp_Object *obj,
6011 const char **buf, ptrdiff_t *len)
6012 {
6013 Lisp_Object entry, offset_length;
6014 ptrdiff_t offset;
6015
6016 if (NILP (p->write_queue))
6017 return 0;
6018
6019 entry = XCAR (p->write_queue);
6020 pset_write_queue (p, XCDR (p->write_queue));
6021
6022 *obj = XCAR (entry);
6023 offset_length = XCDR (entry);
6024
6025 *len = XINT (XCDR (offset_length));
6026 offset = XINT (XCAR (offset_length));
6027 *buf = SSDATA (*obj) + offset;
6028
6029 return 1;
6030 }
6031
6032 /* Send some data to process PROC.
6033 BUF is the beginning of the data; LEN is the number of characters.
6034 OBJECT is the Lisp object that the data comes from. If OBJECT is
6035 nil or t, it means that the data comes from C string.
6036
6037 If OBJECT is not nil, the data is encoded by PROC's coding-system
6038 for encoding before it is sent.
6039
6040 This function can evaluate Lisp code and can garbage collect. */
6041
6042 static void
6043 send_process (Lisp_Object proc, const char *buf, ptrdiff_t len,
6044 Lisp_Object object)
6045 {
6046 struct Lisp_Process *p = XPROCESS (proc);
6047 ssize_t rv;
6048 struct coding_system *coding;
6049
6050 if (NETCONN_P (proc))
6051 {
6052 wait_while_connecting (proc);
6053 wait_for_tls_negotiation (proc);
6054 }
6055
6056 if (p->raw_status_new)
6057 update_status (p);
6058 if (! EQ (p->status, Qrun))
6059 error ("Process %s not running", SDATA (p->name));
6060 if (p->outfd < 0)
6061 error ("Output file descriptor of %s is closed", SDATA (p->name));
6062
6063 coding = proc_encode_coding_system[p->outfd];
6064 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
6065
6066 if ((STRINGP (object) && STRING_MULTIBYTE (object))
6067 || (BUFFERP (object)
6068 && !NILP (BVAR (XBUFFER (object), enable_multibyte_characters)))
6069 || EQ (object, Qt))
6070 {
6071 pset_encode_coding_system
6072 (p, complement_process_encoding_system (p->encode_coding_system));
6073 if (!EQ (Vlast_coding_system_used, p->encode_coding_system))
6074 {
6075 /* The coding system for encoding was changed to raw-text
6076 because we sent a unibyte text previously. Now we are
6077 sending a multibyte text, thus we must encode it by the
6078 original coding system specified for the current process.
6079
6080 Another reason we come here is that the coding system
6081 was just complemented and a new one was returned by
6082 complement_process_encoding_system. */
6083 setup_coding_system (p->encode_coding_system, coding);
6084 Vlast_coding_system_used = p->encode_coding_system;
6085 }
6086 coding->src_multibyte = 1;
6087 }
6088 else
6089 {
6090 coding->src_multibyte = 0;
6091 /* For sending a unibyte text, character code conversion should
6092 not take place but EOL conversion should. So, setup raw-text
6093 or one of the subsidiary if we have not yet done it. */
6094 if (CODING_REQUIRE_ENCODING (coding))
6095 {
6096 if (CODING_REQUIRE_FLUSHING (coding))
6097 {
6098 /* But, before changing the coding, we must flush out data. */
6099 coding->mode |= CODING_MODE_LAST_BLOCK;
6100 send_process (proc, "", 0, Qt);
6101 coding->mode &= CODING_MODE_LAST_BLOCK;
6102 }
6103 setup_coding_system (raw_text_coding_system
6104 (Vlast_coding_system_used),
6105 coding);
6106 coding->src_multibyte = 0;
6107 }
6108 }
6109 coding->dst_multibyte = 0;
6110
6111 if (CODING_REQUIRE_ENCODING (coding))
6112 {
6113 coding->dst_object = Qt;
6114 if (BUFFERP (object))
6115 {
6116 ptrdiff_t from_byte, from, to;
6117 ptrdiff_t save_pt, save_pt_byte;
6118 struct buffer *cur = current_buffer;
6119
6120 set_buffer_internal (XBUFFER (object));
6121 save_pt = PT, save_pt_byte = PT_BYTE;
6122
6123 from_byte = PTR_BYTE_POS ((unsigned char *) buf);
6124 from = BYTE_TO_CHAR (from_byte);
6125 to = BYTE_TO_CHAR (from_byte + len);
6126 TEMP_SET_PT_BOTH (from, from_byte);
6127 encode_coding_object (coding, object, from, from_byte,
6128 to, from_byte + len, Qt);
6129 TEMP_SET_PT_BOTH (save_pt, save_pt_byte);
6130 set_buffer_internal (cur);
6131 }
6132 else if (STRINGP (object))
6133 {
6134 encode_coding_object (coding, object, 0, 0, SCHARS (object),
6135 SBYTES (object), Qt);
6136 }
6137 else
6138 {
6139 coding->dst_object = make_unibyte_string (buf, len);
6140 coding->produced = len;
6141 }
6142
6143 len = coding->produced;
6144 object = coding->dst_object;
6145 buf = SSDATA (object);
6146 }
6147
6148 /* If there is already data in the write_queue, put the new data
6149 in the back of queue. Otherwise, ignore it. */
6150 if (!NILP (p->write_queue))
6151 write_queue_push (p, object, buf, len, 0);
6152
6153 do /* while !NILP (p->write_queue) */
6154 {
6155 ptrdiff_t cur_len = -1;
6156 const char *cur_buf;
6157 Lisp_Object cur_object;
6158
6159 /* If write_queue is empty, ignore it. */
6160 if (!write_queue_pop (p, &cur_object, &cur_buf, &cur_len))
6161 {
6162 cur_len = len;
6163 cur_buf = buf;
6164 cur_object = object;
6165 }
6166
6167 while (cur_len > 0)
6168 {
6169 /* Send this batch, using one or more write calls. */
6170 ptrdiff_t written = 0;
6171 int outfd = p->outfd;
6172 #ifdef DATAGRAM_SOCKETS
6173 if (DATAGRAM_CHAN_P (outfd))
6174 {
6175 rv = sendto (outfd, cur_buf, cur_len,
6176 0, datagram_address[outfd].sa,
6177 datagram_address[outfd].len);
6178 if (rv >= 0)
6179 written = rv;
6180 else if (errno == EMSGSIZE)
6181 report_file_error ("Sending datagram", proc);
6182 }
6183 else
6184 #endif
6185 {
6186 #ifdef HAVE_GNUTLS
6187 if (p->gnutls_p && p->gnutls_state)
6188 written = emacs_gnutls_write (p, cur_buf, cur_len);
6189 else
6190 #endif
6191 written = emacs_write_sig (outfd, cur_buf, cur_len);
6192 rv = (written ? 0 : -1);
6193 if (p->read_output_delay > 0
6194 && p->adaptive_read_buffering == 1)
6195 {
6196 p->read_output_delay = 0;
6197 process_output_delay_count--;
6198 p->read_output_skip = 0;
6199 }
6200 }
6201
6202 if (rv < 0)
6203 {
6204 if (errno == EAGAIN
6205 #ifdef EWOULDBLOCK
6206 || errno == EWOULDBLOCK
6207 #endif
6208 )
6209 /* Buffer is full. Wait, accepting input;
6210 that may allow the program
6211 to finish doing output and read more. */
6212 {
6213 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
6214 /* A gross hack to work around a bug in FreeBSD.
6215 In the following sequence, read(2) returns
6216 bogus data:
6217
6218 write(2) 1022 bytes
6219 write(2) 954 bytes, get EAGAIN
6220 read(2) 1024 bytes in process_read_output
6221 read(2) 11 bytes in process_read_output
6222
6223 That is, read(2) returns more bytes than have
6224 ever been written successfully. The 1033 bytes
6225 read are the 1022 bytes written successfully
6226 after processing (for example with CRs added if
6227 the terminal is set up that way which it is
6228 here). The same bytes will be seen again in a
6229 later read(2), without the CRs. */
6230
6231 if (errno == EAGAIN)
6232 {
6233 int flags = FWRITE;
6234 ioctl (p->outfd, TIOCFLUSH, &flags);
6235 }
6236 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
6237
6238 /* Put what we should have written in wait_queue. */
6239 write_queue_push (p, cur_object, cur_buf, cur_len, 1);
6240 wait_reading_process_output (0, 20 * 1000 * 1000,
6241 0, 0, Qnil, NULL, 0);
6242 /* Reread queue, to see what is left. */
6243 break;
6244 }
6245 else if (errno == EPIPE)
6246 {
6247 p->raw_status_new = 0;
6248 pset_status (p, list2 (Qexit, make_number (256)));
6249 p->tick = ++process_tick;
6250 deactivate_process (proc);
6251 error ("process %s no longer connected to pipe; closed it",
6252 SDATA (p->name));
6253 }
6254 else
6255 /* This is a real error. */
6256 report_file_error ("Writing to process", proc);
6257 }
6258 cur_buf += written;
6259 cur_len -= written;
6260 }
6261 }
6262 while (!NILP (p->write_queue));
6263 }
6264
6265 DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
6266 3, 3, 0,
6267 doc: /* Send current contents of region as input to PROCESS.
6268 PROCESS may be a process, a buffer, the name of a process or buffer, or
6269 nil, indicating the current buffer's process.
6270 Called from program, takes three arguments, PROCESS, START and END.
6271 If the region is more than 500 characters long,
6272 it is sent in several bunches. This may happen even for shorter regions.
6273 Output from processes can arrive in between bunches.
6274
6275 If PROCESS is a non-blocking network process that hasn't been fully
6276 set up yet, this function will block until socket setup has completed. */)
6277 (Lisp_Object process, Lisp_Object start, Lisp_Object end)
6278 {
6279 Lisp_Object proc = get_process (process);
6280 ptrdiff_t start_byte, end_byte;
6281
6282 validate_region (&start, &end);
6283
6284 start_byte = CHAR_TO_BYTE (XINT (start));
6285 end_byte = CHAR_TO_BYTE (XINT (end));
6286
6287 if (XINT (start) < GPT && XINT (end) > GPT)
6288 move_gap_both (XINT (start), start_byte);
6289
6290 if (NETCONN_P (proc))
6291 wait_while_connecting (proc);
6292
6293 send_process (proc, (char *) BYTE_POS_ADDR (start_byte),
6294 end_byte - start_byte, Fcurrent_buffer ());
6295
6296 return Qnil;
6297 }
6298
6299 DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
6300 2, 2, 0,
6301 doc: /* Send PROCESS the contents of STRING as input.
6302 PROCESS may be a process, a buffer, the name of a process or buffer, or
6303 nil, indicating the current buffer's process.
6304 If STRING is more than 500 characters long,
6305 it is sent in several bunches. This may happen even for shorter strings.
6306 Output from processes can arrive in between bunches.
6307
6308 If PROCESS is a non-blocking network process that hasn't been fully
6309 set up yet, this function will block until socket setup has completed. */)
6310 (Lisp_Object process, Lisp_Object string)
6311 {
6312 CHECK_STRING (string);
6313 Lisp_Object proc = get_process (process);
6314 send_process (proc, SSDATA (string),
6315 SBYTES (string), string);
6316 return Qnil;
6317 }
6318 \f
6319 /* Return the foreground process group for the tty/pty that
6320 the process P uses. */
6321 static pid_t
6322 emacs_get_tty_pgrp (struct Lisp_Process *p)
6323 {
6324 pid_t gid = -1;
6325
6326 #ifdef TIOCGPGRP
6327 if (ioctl (p->infd, TIOCGPGRP, &gid) == -1 && ! NILP (p->tty_name))
6328 {
6329 int fd;
6330 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
6331 master side. Try the slave side. */
6332 fd = emacs_open (SSDATA (p->tty_name), O_RDONLY, 0);
6333
6334 if (fd != -1)
6335 {
6336 ioctl (fd, TIOCGPGRP, &gid);
6337 emacs_close (fd);
6338 }
6339 }
6340 #endif /* defined (TIOCGPGRP ) */
6341
6342 return gid;
6343 }
6344
6345 DEFUN ("process-running-child-p", Fprocess_running_child_p,
6346 Sprocess_running_child_p, 0, 1, 0,
6347 doc: /* Return non-nil if PROCESS has given the terminal to a
6348 child. If the operating system does not make it possible to find out,
6349 return t. If we can find out, return the numeric ID of the foreground
6350 process group. */)
6351 (Lisp_Object process)
6352 {
6353 /* Initialize in case ioctl doesn't exist or gives an error,
6354 in a way that will cause returning t. */
6355 Lisp_Object proc = get_process (process);
6356 struct Lisp_Process *p = XPROCESS (proc);
6357
6358 if (!EQ (p->type, Qreal))
6359 error ("Process %s is not a subprocess",
6360 SDATA (p->name));
6361 if (p->infd < 0)
6362 error ("Process %s is not active",
6363 SDATA (p->name));
6364
6365 pid_t gid = emacs_get_tty_pgrp (p);
6366
6367 if (gid == p->pid)
6368 return Qnil;
6369 if (gid != -1)
6370 return make_number (gid);
6371 return Qt;
6372 }
6373 \f
6374 /* Send a signal number SIGNO to PROCESS.
6375 If CURRENT_GROUP is t, that means send to the process group
6376 that currently owns the terminal being used to communicate with PROCESS.
6377 This is used for various commands in shell mode.
6378 If CURRENT_GROUP is lambda, that means send to the process group
6379 that currently owns the terminal, but only if it is NOT the shell itself.
6380
6381 If NOMSG is false, insert signal-announcements into process's buffers
6382 right away.
6383
6384 If we can, we try to signal PROCESS by sending control characters
6385 down the pty. This allows us to signal inferiors who have changed
6386 their uid, for which kill would return an EPERM error. */
6387
6388 static void
6389 process_send_signal (Lisp_Object process, int signo, Lisp_Object current_group,
6390 bool nomsg)
6391 {
6392 Lisp_Object proc;
6393 struct Lisp_Process *p;
6394 pid_t gid;
6395 bool no_pgrp = 0;
6396
6397 proc = get_process (process);
6398 p = XPROCESS (proc);
6399
6400 if (!EQ (p->type, Qreal))
6401 error ("Process %s is not a subprocess",
6402 SDATA (p->name));
6403 if (p->infd < 0)
6404 error ("Process %s is not active",
6405 SDATA (p->name));
6406
6407 if (!p->pty_flag)
6408 current_group = Qnil;
6409
6410 /* If we are using pgrps, get a pgrp number and make it negative. */
6411 if (NILP (current_group))
6412 /* Send the signal to the shell's process group. */
6413 gid = p->pid;
6414 else
6415 {
6416 #ifdef SIGNALS_VIA_CHARACTERS
6417 /* If possible, send signals to the entire pgrp
6418 by sending an input character to it. */
6419
6420 struct termios t;
6421 cc_t *sig_char = NULL;
6422
6423 tcgetattr (p->infd, &t);
6424
6425 switch (signo)
6426 {
6427 case SIGINT:
6428 sig_char = &t.c_cc[VINTR];
6429 break;
6430
6431 case SIGQUIT:
6432 sig_char = &t.c_cc[VQUIT];
6433 break;
6434
6435 case SIGTSTP:
6436 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
6437 sig_char = &t.c_cc[VSWTCH];
6438 #else
6439 sig_char = &t.c_cc[VSUSP];
6440 #endif
6441 break;
6442 }
6443
6444 if (sig_char && *sig_char != CDISABLE)
6445 {
6446 send_process (proc, (char *) sig_char, 1, Qnil);
6447 return;
6448 }
6449 /* If we can't send the signal with a character,
6450 fall through and send it another way. */
6451
6452 /* The code above may fall through if it can't
6453 handle the signal. */
6454 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
6455
6456 #ifdef TIOCGPGRP
6457 /* Get the current pgrp using the tty itself, if we have that.
6458 Otherwise, use the pty to get the pgrp.
6459 On pfa systems, saka@pfu.fujitsu.co.JP writes:
6460 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
6461 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
6462 His patch indicates that if TIOCGPGRP returns an error, then
6463 we should just assume that p->pid is also the process group id. */
6464
6465 gid = emacs_get_tty_pgrp (p);
6466
6467 if (gid == -1)
6468 /* If we can't get the information, assume
6469 the shell owns the tty. */
6470 gid = p->pid;
6471
6472 /* It is not clear whether anything really can set GID to -1.
6473 Perhaps on some system one of those ioctls can or could do so.
6474 Or perhaps this is vestigial. */
6475 if (gid == -1)
6476 no_pgrp = 1;
6477 #else /* ! defined (TIOCGPGRP) */
6478 /* Can't select pgrps on this system, so we know that
6479 the child itself heads the pgrp. */
6480 gid = p->pid;
6481 #endif /* ! defined (TIOCGPGRP) */
6482
6483 /* If current_group is lambda, and the shell owns the terminal,
6484 don't send any signal. */
6485 if (EQ (current_group, Qlambda) && gid == p->pid)
6486 return;
6487 }
6488
6489 #ifdef SIGCONT
6490 if (signo == SIGCONT)
6491 {
6492 p->raw_status_new = 0;
6493 pset_status (p, Qrun);
6494 p->tick = ++process_tick;
6495 if (!nomsg)
6496 {
6497 status_notify (NULL, NULL);
6498 redisplay_preserve_echo_area (13);
6499 }
6500 }
6501 #endif
6502
6503 #ifdef TIOCSIGSEND
6504 /* Work around a HP-UX 7.0 bug that mishandles signals to subjobs.
6505 We don't know whether the bug is fixed in later HP-UX versions. */
6506 if (! NILP (current_group) && ioctl (p->infd, TIOCSIGSEND, signo) != -1)
6507 return;
6508 #endif
6509
6510 /* If we don't have process groups, send the signal to the immediate
6511 subprocess. That isn't really right, but it's better than any
6512 obvious alternative. */
6513 pid_t pid = no_pgrp ? gid : - gid;
6514
6515 /* Do not kill an already-reaped process, as that could kill an
6516 innocent bystander that happens to have the same process ID. */
6517 sigset_t oldset;
6518 block_child_signal (&oldset);
6519 if (p->alive)
6520 kill (pid, signo);
6521 unblock_child_signal (&oldset);
6522 }
6523
6524 DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
6525 doc: /* Interrupt process PROCESS.
6526 PROCESS may be a process, a buffer, or the name of a process or buffer.
6527 No arg or nil means current buffer's process.
6528 Second arg CURRENT-GROUP non-nil means send signal to
6529 the current process-group of the process's controlling terminal
6530 rather than to the process's own process group.
6531 If the process is a shell, this means interrupt current subjob
6532 rather than the shell.
6533
6534 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
6535 don't send the signal. */)
6536 (Lisp_Object process, Lisp_Object current_group)
6537 {
6538 process_send_signal (process, SIGINT, current_group, 0);
6539 return process;
6540 }
6541
6542 DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
6543 doc: /* Kill process PROCESS. May be process or name of one.
6544 See function `interrupt-process' for more details on usage. */)
6545 (Lisp_Object process, Lisp_Object current_group)
6546 {
6547 process_send_signal (process, SIGKILL, current_group, 0);
6548 return process;
6549 }
6550
6551 DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
6552 doc: /* Send QUIT signal to process PROCESS. May be process or name of one.
6553 See function `interrupt-process' for more details on usage. */)
6554 (Lisp_Object process, Lisp_Object current_group)
6555 {
6556 process_send_signal (process, SIGQUIT, current_group, 0);
6557 return process;
6558 }
6559
6560 DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
6561 doc: /* Stop process PROCESS. May be process or name of one.
6562 See function `interrupt-process' for more details on usage.
6563 If PROCESS is a network or serial process, inhibit handling of incoming
6564 traffic. */)
6565 (Lisp_Object process, Lisp_Object current_group)
6566 {
6567 if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process)
6568 || PIPECONN_P (process)))
6569 {
6570 struct Lisp_Process *p;
6571
6572 p = XPROCESS (process);
6573 if (NILP (p->command)
6574 && p->infd >= 0)
6575 {
6576 FD_CLR (p->infd, &input_wait_mask);
6577 FD_CLR (p->infd, &non_keyboard_wait_mask);
6578 }
6579 pset_command (p, Qt);
6580 return process;
6581 }
6582 #ifndef SIGTSTP
6583 error ("No SIGTSTP support");
6584 #else
6585 process_send_signal (process, SIGTSTP, current_group, 0);
6586 #endif
6587 return process;
6588 }
6589
6590 DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
6591 doc: /* Continue process PROCESS. May be process or name of one.
6592 See function `interrupt-process' for more details on usage.
6593 If PROCESS is a network or serial process, resume handling of incoming
6594 traffic. */)
6595 (Lisp_Object process, Lisp_Object current_group)
6596 {
6597 if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process)
6598 || PIPECONN_P (process)))
6599 {
6600 struct Lisp_Process *p;
6601
6602 p = XPROCESS (process);
6603 if (EQ (p->command, Qt)
6604 && p->infd >= 0
6605 && (!EQ (p->filter, Qt) || EQ (p->status, Qlisten)))
6606 {
6607 FD_SET (p->infd, &input_wait_mask);
6608 FD_SET (p->infd, &non_keyboard_wait_mask);
6609 #ifdef WINDOWSNT
6610 if (fd_info[ p->infd ].flags & FILE_SERIAL)
6611 PurgeComm (fd_info[ p->infd ].hnd, PURGE_RXABORT | PURGE_RXCLEAR);
6612 #else /* not WINDOWSNT */
6613 tcflush (p->infd, TCIFLUSH);
6614 #endif /* not WINDOWSNT */
6615 }
6616 pset_command (p, Qnil);
6617 return process;
6618 }
6619 #ifdef SIGCONT
6620 process_send_signal (process, SIGCONT, current_group, 0);
6621 #else
6622 error ("No SIGCONT support");
6623 #endif
6624 return process;
6625 }
6626
6627 /* Return the integer value of the signal whose abbreviation is ABBR,
6628 or a negative number if there is no such signal. */
6629 static int
6630 abbr_to_signal (char const *name)
6631 {
6632 int i, signo;
6633 char sigbuf[20]; /* Large enough for all valid signal abbreviations. */
6634
6635 if (!strncmp (name, "SIG", 3) || !strncmp (name, "sig", 3))
6636 name += 3;
6637
6638 for (i = 0; i < sizeof sigbuf; i++)
6639 {
6640 sigbuf[i] = c_toupper (name[i]);
6641 if (! sigbuf[i])
6642 return str2sig (sigbuf, &signo) == 0 ? signo : -1;
6643 }
6644
6645 return -1;
6646 }
6647
6648 DEFUN ("signal-process", Fsignal_process, Ssignal_process,
6649 2, 2, "sProcess (name or number): \nnSignal code: ",
6650 doc: /* Send PROCESS the signal with code SIGCODE.
6651 PROCESS may also be a number specifying the process id of the
6652 process to signal; in this case, the process need not be a child of
6653 this Emacs.
6654 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
6655 (Lisp_Object process, Lisp_Object sigcode)
6656 {
6657 pid_t pid;
6658 int signo;
6659
6660 if (STRINGP (process))
6661 {
6662 Lisp_Object tem = Fget_process (process);
6663 if (NILP (tem))
6664 {
6665 Lisp_Object process_number
6666 = string_to_number (SSDATA (process), 10, 1);
6667 if (NUMBERP (process_number))
6668 tem = process_number;
6669 }
6670 process = tem;
6671 }
6672 else if (!NUMBERP (process))
6673 process = get_process (process);
6674
6675 if (NILP (process))
6676 return process;
6677
6678 if (NUMBERP (process))
6679 CONS_TO_INTEGER (process, pid_t, pid);
6680 else
6681 {
6682 CHECK_PROCESS (process);
6683 pid = XPROCESS (process)->pid;
6684 if (pid <= 0)
6685 error ("Cannot signal process %s", SDATA (XPROCESS (process)->name));
6686 }
6687
6688 if (INTEGERP (sigcode))
6689 {
6690 CHECK_TYPE_RANGED_INTEGER (int, sigcode);
6691 signo = XINT (sigcode);
6692 }
6693 else
6694 {
6695 char *name;
6696
6697 CHECK_SYMBOL (sigcode);
6698 name = SSDATA (SYMBOL_NAME (sigcode));
6699
6700 signo = abbr_to_signal (name);
6701 if (signo < 0)
6702 error ("Undefined signal name %s", name);
6703 }
6704
6705 return make_number (kill (pid, signo));
6706 }
6707
6708 DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
6709 doc: /* Make PROCESS see end-of-file in its input.
6710 EOF comes after any text already sent to it.
6711 PROCESS may be a process, a buffer, the name of a process or buffer, or
6712 nil, indicating the current buffer's process.
6713 If PROCESS is a network connection, or is a process communicating
6714 through a pipe (as opposed to a pty), then you cannot send any more
6715 text to PROCESS after you call this function.
6716 If PROCESS is a serial process, wait until all output written to the
6717 process has been transmitted to the serial port. */)
6718 (Lisp_Object process)
6719 {
6720 Lisp_Object proc;
6721 struct coding_system *coding = NULL;
6722 int outfd;
6723
6724 proc = get_process (process);
6725
6726 if (NETCONN_P (proc))
6727 wait_while_connecting (proc);
6728
6729 if (DATAGRAM_CONN_P (proc))
6730 return process;
6731
6732
6733 outfd = XPROCESS (proc)->outfd;
6734 if (outfd >= 0)
6735 coding = proc_encode_coding_system[outfd];
6736
6737 /* Make sure the process is really alive. */
6738 if (XPROCESS (proc)->raw_status_new)
6739 update_status (XPROCESS (proc));
6740 if (! EQ (XPROCESS (proc)->status, Qrun))
6741 error ("Process %s not running", SDATA (XPROCESS (proc)->name));
6742
6743 if (coding && CODING_REQUIRE_FLUSHING (coding))
6744 {
6745 coding->mode |= CODING_MODE_LAST_BLOCK;
6746 send_process (proc, "", 0, Qnil);
6747 }
6748
6749 if (XPROCESS (proc)->pty_flag)
6750 send_process (proc, "\004", 1, Qnil);
6751 else if (EQ (XPROCESS (proc)->type, Qserial))
6752 {
6753 #ifndef WINDOWSNT
6754 if (tcdrain (XPROCESS (proc)->outfd) != 0)
6755 report_file_error ("Failed tcdrain", Qnil);
6756 #endif /* not WINDOWSNT */
6757 /* Do nothing on Windows because writes are blocking. */
6758 }
6759 else
6760 {
6761 struct Lisp_Process *p = XPROCESS (proc);
6762 int old_outfd = p->outfd;
6763 int new_outfd;
6764
6765 #ifdef HAVE_SHUTDOWN
6766 /* If this is a network connection, or socketpair is used
6767 for communication with the subprocess, call shutdown to cause EOF.
6768 (In some old system, shutdown to socketpair doesn't work.
6769 Then we just can't win.) */
6770 if (0 <= old_outfd
6771 && (EQ (p->type, Qnetwork) || p->infd == old_outfd))
6772 shutdown (old_outfd, 1);
6773 #endif
6774 close_process_fd (&p->open_fd[WRITE_TO_SUBPROCESS]);
6775 new_outfd = emacs_open (NULL_DEVICE, O_WRONLY, 0);
6776 if (new_outfd < 0)
6777 report_file_error ("Opening null device", Qnil);
6778 p->open_fd[WRITE_TO_SUBPROCESS] = new_outfd;
6779 p->outfd = new_outfd;
6780
6781 if (!proc_encode_coding_system[new_outfd])
6782 proc_encode_coding_system[new_outfd]
6783 = xmalloc (sizeof (struct coding_system));
6784 if (old_outfd >= 0)
6785 {
6786 *proc_encode_coding_system[new_outfd]
6787 = *proc_encode_coding_system[old_outfd];
6788 memset (proc_encode_coding_system[old_outfd], 0,
6789 sizeof (struct coding_system));
6790 }
6791 else
6792 setup_coding_system (p->encode_coding_system,
6793 proc_encode_coding_system[new_outfd]);
6794 }
6795 return process;
6796 }
6797 \f
6798 /* The main Emacs thread records child processes in three places:
6799
6800 - Vprocess_alist, for asynchronous subprocesses, which are child
6801 processes visible to Lisp.
6802
6803 - deleted_pid_list, for child processes invisible to Lisp,
6804 typically because of delete-process. These are recorded so that
6805 the processes can be reaped when they exit, so that the operating
6806 system's process table is not cluttered by zombies.
6807
6808 - the local variable PID in Fcall_process, call_process_cleanup and
6809 call_process_kill, for synchronous subprocesses.
6810 record_unwind_protect is used to make sure this process is not
6811 forgotten: if the user interrupts call-process and the child
6812 process refuses to exit immediately even with two C-g's,
6813 call_process_kill adds PID's contents to deleted_pid_list before
6814 returning.
6815
6816 The main Emacs thread invokes waitpid only on child processes that
6817 it creates and that have not been reaped. This avoid races on
6818 platforms such as GTK, where other threads create their own
6819 subprocesses which the main thread should not reap. For example,
6820 if the main thread attempted to reap an already-reaped child, it
6821 might inadvertently reap a GTK-created process that happened to
6822 have the same process ID. */
6823
6824 /* LIB_CHILD_HANDLER is a SIGCHLD handler that Emacs calls while doing
6825 its own SIGCHLD handling. On POSIXish systems, glib needs this to
6826 keep track of its own children. GNUstep is similar. */
6827
6828 static void dummy_handler (int sig) {}
6829 static signal_handler_t volatile lib_child_handler;
6830
6831 /* Handle a SIGCHLD signal by looking for known child processes of
6832 Emacs whose status have changed. For each one found, record its
6833 new status.
6834
6835 All we do is change the status; we do not run sentinels or print
6836 notifications. That is saved for the next time keyboard input is
6837 done, in order to avoid timing errors.
6838
6839 ** WARNING: this can be called during garbage collection.
6840 Therefore, it must not be fooled by the presence of mark bits in
6841 Lisp objects.
6842
6843 ** USG WARNING: Although it is not obvious from the documentation
6844 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6845 signal() before executing at least one wait(), otherwise the
6846 handler will be called again, resulting in an infinite loop. The
6847 relevant portion of the documentation reads "SIGCLD signals will be
6848 queued and the signal-catching function will be continually
6849 reentered until the queue is empty". Invoking signal() causes the
6850 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6851 Inc.
6852
6853 ** Malloc WARNING: This should never call malloc either directly or
6854 indirectly; if it does, that is a bug. */
6855
6856 static void
6857 handle_child_signal (int sig)
6858 {
6859 Lisp_Object tail, proc;
6860
6861 /* Find the process that signaled us, and record its status. */
6862
6863 /* The process can have been deleted by Fdelete_process, or have
6864 been started asynchronously by Fcall_process. */
6865 for (tail = deleted_pid_list; CONSP (tail); tail = XCDR (tail))
6866 {
6867 bool all_pids_are_fixnums
6868 = (MOST_NEGATIVE_FIXNUM <= TYPE_MINIMUM (pid_t)
6869 && TYPE_MAXIMUM (pid_t) <= MOST_POSITIVE_FIXNUM);
6870 Lisp_Object head = XCAR (tail);
6871 Lisp_Object xpid;
6872 if (! CONSP (head))
6873 continue;
6874 xpid = XCAR (head);
6875 if (all_pids_are_fixnums ? INTEGERP (xpid) : NUMBERP (xpid))
6876 {
6877 pid_t deleted_pid;
6878 if (INTEGERP (xpid))
6879 deleted_pid = XINT (xpid);
6880 else
6881 deleted_pid = XFLOAT_DATA (xpid);
6882 if (child_status_changed (deleted_pid, 0, 0))
6883 {
6884 if (STRINGP (XCDR (head)))
6885 unlink (SSDATA (XCDR (head)));
6886 XSETCAR (tail, Qnil);
6887 }
6888 }
6889 }
6890
6891 /* Otherwise, if it is asynchronous, it is in Vprocess_alist. */
6892 FOR_EACH_PROCESS (tail, proc)
6893 {
6894 struct Lisp_Process *p = XPROCESS (proc);
6895 int status;
6896
6897 if (p->alive
6898 && child_status_changed (p->pid, &status, WUNTRACED | WCONTINUED))
6899 {
6900 /* Change the status of the process that was found. */
6901 p->tick = ++process_tick;
6902 p->raw_status = status;
6903 p->raw_status_new = 1;
6904
6905 /* If process has terminated, stop waiting for its output. */
6906 if (WIFSIGNALED (status) || WIFEXITED (status))
6907 {
6908 bool clear_desc_flag = 0;
6909 p->alive = 0;
6910 if (p->infd >= 0)
6911 clear_desc_flag = 1;
6912
6913 /* clear_desc_flag avoids a compiler bug in Microsoft C. */
6914 if (clear_desc_flag)
6915 {
6916 FD_CLR (p->infd, &input_wait_mask);
6917 FD_CLR (p->infd, &non_keyboard_wait_mask);
6918 }
6919 }
6920 }
6921 }
6922
6923 lib_child_handler (sig);
6924 #ifdef NS_IMPL_GNUSTEP
6925 /* NSTask in GNUstep sets its child handler each time it is called.
6926 So we must re-set ours. */
6927 catch_child_signal ();
6928 #endif
6929 }
6930
6931 static void
6932 deliver_child_signal (int sig)
6933 {
6934 deliver_process_signal (sig, handle_child_signal);
6935 }
6936 \f
6937
6938 static Lisp_Object
6939 exec_sentinel_error_handler (Lisp_Object error_val)
6940 {
6941 cmd_error_internal (error_val, "error in process sentinel: ");
6942 Vinhibit_quit = Qt;
6943 update_echo_area ();
6944 Fsleep_for (make_number (2), Qnil);
6945 return Qt;
6946 }
6947
6948 static void
6949 exec_sentinel (Lisp_Object proc, Lisp_Object reason)
6950 {
6951 Lisp_Object sentinel, odeactivate;
6952 struct Lisp_Process *p = XPROCESS (proc);
6953 ptrdiff_t count = SPECPDL_INDEX ();
6954 bool outer_running_asynch_code = running_asynch_code;
6955 int waiting = waiting_for_user_input_p;
6956
6957 if (inhibit_sentinels)
6958 return;
6959
6960 odeactivate = Vdeactivate_mark;
6961 #if 0
6962 Lisp_Object obuffer, okeymap;
6963 XSETBUFFER (obuffer, current_buffer);
6964 okeymap = BVAR (current_buffer, keymap);
6965 #endif
6966
6967 /* There's no good reason to let sentinels change the current
6968 buffer, and many callers of accept-process-output, sit-for, and
6969 friends don't expect current-buffer to be changed from under them. */
6970 record_unwind_current_buffer ();
6971
6972 sentinel = p->sentinel;
6973
6974 /* Inhibit quit so that random quits don't screw up a running filter. */
6975 specbind (Qinhibit_quit, Qt);
6976 specbind (Qlast_nonmenu_event, Qt); /* Why? --Stef */
6977
6978 /* In case we get recursively called,
6979 and we already saved the match data nonrecursively,
6980 save the same match data in safely recursive fashion. */
6981 if (outer_running_asynch_code)
6982 {
6983 Lisp_Object tem;
6984 tem = Fmatch_data (Qnil, Qnil, Qnil);
6985 restore_search_regs ();
6986 record_unwind_save_match_data ();
6987 Fset_match_data (tem, Qt);
6988 }
6989
6990 /* For speed, if a search happens within this code,
6991 save the match data in a special nonrecursive fashion. */
6992 running_asynch_code = 1;
6993
6994 internal_condition_case_1 (read_process_output_call,
6995 list3 (sentinel, proc, reason),
6996 !NILP (Vdebug_on_error) ? Qnil : Qerror,
6997 exec_sentinel_error_handler);
6998
6999 /* If we saved the match data nonrecursively, restore it now. */
7000 restore_search_regs ();
7001 running_asynch_code = outer_running_asynch_code;
7002
7003 Vdeactivate_mark = odeactivate;
7004
7005 /* Restore waiting_for_user_input_p as it was
7006 when we were called, in case the filter clobbered it. */
7007 waiting_for_user_input_p = waiting;
7008
7009 #if 0
7010 if (! EQ (Fcurrent_buffer (), obuffer)
7011 || ! EQ (current_buffer->keymap, okeymap))
7012 #endif
7013 /* But do it only if the caller is actually going to read events.
7014 Otherwise there's no need to make him wake up, and it could
7015 cause trouble (for example it would make sit_for return). */
7016 if (waiting_for_user_input_p == -1)
7017 record_asynch_buffer_change ();
7018
7019 unbind_to (count, Qnil);
7020 }
7021
7022 /* Report all recent events of a change in process status
7023 (either run the sentinel or output a message).
7024 This is usually done while Emacs is waiting for keyboard input
7025 but can be done at other times.
7026
7027 Return positive if any input was received from WAIT_PROC (or from
7028 any process if WAIT_PROC is null), zero if input was attempted but
7029 none received, and negative if we didn't even try. */
7030
7031 static int
7032 status_notify (struct Lisp_Process *deleting_process,
7033 struct Lisp_Process *wait_proc)
7034 {
7035 Lisp_Object proc;
7036 Lisp_Object tail, msg;
7037 int got_some_output = -1;
7038
7039 tail = Qnil;
7040 msg = Qnil;
7041
7042 /* Set this now, so that if new processes are created by sentinels
7043 that we run, we get called again to handle their status changes. */
7044 update_tick = process_tick;
7045
7046 FOR_EACH_PROCESS (tail, proc)
7047 {
7048 Lisp_Object symbol;
7049 register struct Lisp_Process *p = XPROCESS (proc);
7050
7051 if (p->tick != p->update_tick)
7052 {
7053 p->update_tick = p->tick;
7054
7055 /* If process is still active, read any output that remains. */
7056 while (! EQ (p->filter, Qt)
7057 && ! EQ (p->status, Qconnect)
7058 && ! EQ (p->status, Qlisten)
7059 /* Network or serial process not stopped: */
7060 && ! EQ (p->command, Qt)
7061 && p->infd >= 0
7062 && p != deleting_process)
7063 {
7064 int nread = read_process_output (proc, p->infd);
7065 if ((!wait_proc || wait_proc == XPROCESS (proc))
7066 && got_some_output < nread)
7067 got_some_output = nread;
7068 if (nread <= 0)
7069 break;
7070 }
7071
7072 /* Get the text to use for the message. */
7073 if (p->raw_status_new)
7074 update_status (p);
7075 msg = status_message (p);
7076
7077 /* If process is terminated, deactivate it or delete it. */
7078 symbol = p->status;
7079 if (CONSP (p->status))
7080 symbol = XCAR (p->status);
7081
7082 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
7083 || EQ (symbol, Qclosed))
7084 {
7085 if (delete_exited_processes)
7086 remove_process (proc);
7087 else
7088 deactivate_process (proc);
7089 }
7090
7091 /* The actions above may have further incremented p->tick.
7092 So set p->update_tick again so that an error in the sentinel will
7093 not cause this code to be run again. */
7094 p->update_tick = p->tick;
7095 /* Now output the message suitably. */
7096 exec_sentinel (proc, msg);
7097 if (BUFFERP (p->buffer))
7098 /* In case it uses %s in mode-line-format. */
7099 bset_update_mode_line (XBUFFER (p->buffer));
7100 }
7101 } /* end for */
7102
7103 return got_some_output;
7104 }
7105
7106 DEFUN ("internal-default-process-sentinel", Finternal_default_process_sentinel,
7107 Sinternal_default_process_sentinel, 2, 2, 0,
7108 doc: /* Function used as default sentinel for processes.
7109 This inserts a status message into the process's buffer, if there is one. */)
7110 (Lisp_Object proc, Lisp_Object msg)
7111 {
7112 Lisp_Object buffer, symbol;
7113 struct Lisp_Process *p;
7114 CHECK_PROCESS (proc);
7115 p = XPROCESS (proc);
7116 buffer = p->buffer;
7117 symbol = p->status;
7118 if (CONSP (symbol))
7119 symbol = XCAR (symbol);
7120
7121 if (!EQ (symbol, Qrun) && !NILP (buffer))
7122 {
7123 Lisp_Object tem;
7124 struct buffer *old = current_buffer;
7125 ptrdiff_t opoint, opoint_byte;
7126 ptrdiff_t before, before_byte;
7127
7128 /* Avoid error if buffer is deleted
7129 (probably that's why the process is dead, too). */
7130 if (!BUFFER_LIVE_P (XBUFFER (buffer)))
7131 return Qnil;
7132 Fset_buffer (buffer);
7133
7134 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
7135 msg = (code_convert_string_norecord
7136 (msg, Vlocale_coding_system, 1));
7137
7138 opoint = PT;
7139 opoint_byte = PT_BYTE;
7140 /* Insert new output into buffer
7141 at the current end-of-output marker,
7142 thus preserving logical ordering of input and output. */
7143 if (XMARKER (p->mark)->buffer)
7144 Fgoto_char (p->mark);
7145 else
7146 SET_PT_BOTH (ZV, ZV_BYTE);
7147
7148 before = PT;
7149 before_byte = PT_BYTE;
7150
7151 tem = BVAR (current_buffer, read_only);
7152 bset_read_only (current_buffer, Qnil);
7153 insert_string ("\nProcess ");
7154 { /* FIXME: temporary kludge. */
7155 Lisp_Object tem2 = p->name; Finsert (1, &tem2); }
7156 insert_string (" ");
7157 Finsert (1, &msg);
7158 bset_read_only (current_buffer, tem);
7159 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
7160
7161 if (opoint >= before)
7162 SET_PT_BOTH (opoint + (PT - before),
7163 opoint_byte + (PT_BYTE - before_byte));
7164 else
7165 SET_PT_BOTH (opoint, opoint_byte);
7166
7167 set_buffer_internal (old);
7168 }
7169 return Qnil;
7170 }
7171
7172 \f
7173 DEFUN ("set-process-coding-system", Fset_process_coding_system,
7174 Sset_process_coding_system, 1, 3, 0,
7175 doc: /* Set coding systems of PROCESS to DECODING and ENCODING.
7176 DECODING will be used to decode subprocess output and ENCODING to
7177 encode subprocess input. */)
7178 (Lisp_Object process, Lisp_Object decoding, Lisp_Object encoding)
7179 {
7180 CHECK_PROCESS (process);
7181
7182 struct Lisp_Process *p = XPROCESS (process);
7183
7184 Fcheck_coding_system (decoding);
7185 Fcheck_coding_system (encoding);
7186 encoding = coding_inherit_eol_type (encoding, Qnil);
7187 pset_decode_coding_system (p, decoding);
7188 pset_encode_coding_system (p, encoding);
7189
7190 /* If the sockets haven't been set up yet, the final setup part of
7191 this will be called asynchronously. */
7192 if (p->infd < 0 || p->outfd < 0)
7193 return Qnil;
7194
7195 setup_process_coding_systems (process);
7196
7197 return Qnil;
7198 }
7199
7200 DEFUN ("process-coding-system",
7201 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0,
7202 doc: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
7203 (register Lisp_Object process)
7204 {
7205 CHECK_PROCESS (process);
7206 return Fcons (XPROCESS (process)->decode_coding_system,
7207 XPROCESS (process)->encode_coding_system);
7208 }
7209
7210 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte,
7211 Sset_process_filter_multibyte, 2, 2, 0,
7212 doc: /* Set multibyteness of the strings given to PROCESS's filter.
7213 If FLAG is non-nil, the filter is given multibyte strings.
7214 If FLAG is nil, the filter is given unibyte strings. In this case,
7215 all character code conversion except for end-of-line conversion is
7216 suppressed. */)
7217 (Lisp_Object process, Lisp_Object flag)
7218 {
7219 CHECK_PROCESS (process);
7220
7221 struct Lisp_Process *p = XPROCESS (process);
7222 if (NILP (flag))
7223 pset_decode_coding_system
7224 (p, raw_text_coding_system (p->decode_coding_system));
7225
7226 /* If the sockets haven't been set up yet, the final setup part of
7227 this will be called asynchronously. */
7228 if (p->infd < 0 || p->outfd < 0)
7229 return Qnil;
7230
7231 setup_process_coding_systems (process);
7232
7233 return Qnil;
7234 }
7235
7236 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p,
7237 Sprocess_filter_multibyte_p, 1, 1, 0,
7238 doc: /* Return t if a multibyte string is given to PROCESS's filter.*/)
7239 (Lisp_Object process)
7240 {
7241 CHECK_PROCESS (process);
7242 struct Lisp_Process *p = XPROCESS (process);
7243 if (p->infd < 0)
7244 return Qnil;
7245 struct coding_system *coding = proc_decode_coding_system[p->infd];
7246 return (CODING_FOR_UNIBYTE (coding) ? Qnil : Qt);
7247 }
7248
7249
7250 \f
7251
7252 # ifdef HAVE_GPM
7253
7254 void
7255 add_gpm_wait_descriptor (int desc)
7256 {
7257 add_keyboard_wait_descriptor (desc);
7258 }
7259
7260 void
7261 delete_gpm_wait_descriptor (int desc)
7262 {
7263 delete_keyboard_wait_descriptor (desc);
7264 }
7265
7266 # endif
7267
7268 # ifdef USABLE_SIGIO
7269
7270 /* Return true if *MASK has a bit set
7271 that corresponds to one of the keyboard input descriptors. */
7272
7273 static bool
7274 keyboard_bit_set (fd_set *mask)
7275 {
7276 int fd;
7277
7278 for (fd = 0; fd <= max_input_desc; fd++)
7279 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask)
7280 && !FD_ISSET (fd, &non_keyboard_wait_mask))
7281 return 1;
7282
7283 return 0;
7284 }
7285 # endif
7286
7287 #else /* not subprocesses */
7288
7289 /* Defined in msdos.c. */
7290 extern int sys_select (int, fd_set *, fd_set *, fd_set *,
7291 struct timespec *, void *);
7292
7293 /* Implementation of wait_reading_process_output, assuming that there
7294 are no subprocesses. Used only by the MS-DOS build.
7295
7296 Wait for timeout to elapse and/or keyboard input to be available.
7297
7298 TIME_LIMIT is:
7299 timeout in seconds
7300 If negative, gobble data immediately available but don't wait for any.
7301
7302 NSECS is:
7303 an additional duration to wait, measured in nanoseconds
7304 If TIME_LIMIT is zero, then:
7305 If NSECS == 0, there is no limit.
7306 If NSECS > 0, the timeout consists of NSECS only.
7307 If NSECS < 0, gobble data immediately, as if TIME_LIMIT were negative.
7308
7309 READ_KBD is:
7310 0 to ignore keyboard input, or
7311 1 to return when input is available, or
7312 -1 means caller will actually read the input, so don't throw to
7313 the quit handler.
7314
7315 see full version for other parameters. We know that wait_proc will
7316 always be NULL, since `subprocesses' isn't defined.
7317
7318 DO_DISPLAY means redisplay should be done to show subprocess
7319 output that arrives.
7320
7321 Return -1 signifying we got no output and did not try. */
7322
7323 int
7324 wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd,
7325 bool do_display,
7326 Lisp_Object wait_for_cell,
7327 struct Lisp_Process *wait_proc, int just_wait_proc)
7328 {
7329 register int nfds;
7330 struct timespec end_time, timeout;
7331 enum { MINIMUM = -1, TIMEOUT, INFINITY } wait;
7332
7333 if (TYPE_MAXIMUM (time_t) < time_limit)
7334 time_limit = TYPE_MAXIMUM (time_t);
7335
7336 if (time_limit < 0 || nsecs < 0)
7337 wait = MINIMUM;
7338 else if (time_limit > 0 || nsecs > 0)
7339 {
7340 wait = TIMEOUT;
7341 end_time = timespec_add (current_timespec (),
7342 make_timespec (time_limit, nsecs));
7343 }
7344 else
7345 wait = INFINITY;
7346
7347 /* Turn off periodic alarms (in case they are in use)
7348 and then turn off any other atimers,
7349 because the select emulator uses alarms. */
7350 stop_polling ();
7351 turn_on_atimers (0);
7352
7353 while (1)
7354 {
7355 bool timeout_reduced_for_timers = false;
7356 fd_set waitchannels;
7357 int xerrno;
7358
7359 /* If calling from keyboard input, do not quit
7360 since we want to return C-g as an input character.
7361 Otherwise, do pending quit if requested. */
7362 if (read_kbd >= 0)
7363 QUIT;
7364
7365 /* Exit now if the cell we're waiting for became non-nil. */
7366 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
7367 break;
7368
7369 /* Compute time from now till when time limit is up. */
7370 /* Exit if already run out. */
7371 if (wait == TIMEOUT)
7372 {
7373 struct timespec now = current_timespec ();
7374 if (timespec_cmp (end_time, now) <= 0)
7375 break;
7376 timeout = timespec_sub (end_time, now);
7377 }
7378 else
7379 timeout = make_timespec (wait < TIMEOUT ? 0 : 100000, 0);
7380
7381 /* If our caller will not immediately handle keyboard events,
7382 run timer events directly.
7383 (Callers that will immediately read keyboard events
7384 call timer_delay on their own.) */
7385 if (NILP (wait_for_cell))
7386 {
7387 struct timespec timer_delay;
7388
7389 do
7390 {
7391 unsigned old_timers_run = timers_run;
7392 timer_delay = timer_check ();
7393 if (timers_run != old_timers_run && do_display)
7394 /* We must retry, since a timer may have requeued itself
7395 and that could alter the time delay. */
7396 redisplay_preserve_echo_area (14);
7397 else
7398 break;
7399 }
7400 while (!detect_input_pending ());
7401
7402 /* If there is unread keyboard input, also return. */
7403 if (read_kbd != 0
7404 && requeued_events_pending_p ())
7405 break;
7406
7407 if (timespec_valid_p (timer_delay))
7408 {
7409 if (timespec_cmp (timer_delay, timeout) < 0)
7410 {
7411 timeout = timer_delay;
7412 timeout_reduced_for_timers = true;
7413 }
7414 }
7415 }
7416
7417 /* Cause C-g and alarm signals to take immediate action,
7418 and cause input available signals to zero out timeout. */
7419 if (read_kbd < 0)
7420 set_waiting_for_input (&timeout);
7421
7422 /* If a frame has been newly mapped and needs updating,
7423 reprocess its display stuff. */
7424 if (frame_garbaged && do_display)
7425 {
7426 clear_waiting_for_input ();
7427 redisplay_preserve_echo_area (15);
7428 if (read_kbd < 0)
7429 set_waiting_for_input (&timeout);
7430 }
7431
7432 /* Wait till there is something to do. */
7433 FD_ZERO (&waitchannels);
7434 if (read_kbd && detect_input_pending ())
7435 nfds = 0;
7436 else
7437 {
7438 if (read_kbd || !NILP (wait_for_cell))
7439 FD_SET (0, &waitchannels);
7440 nfds = pselect (1, &waitchannels, NULL, NULL, &timeout, NULL);
7441 }
7442
7443 xerrno = errno;
7444
7445 /* Make C-g and alarm signals set flags again. */
7446 clear_waiting_for_input ();
7447
7448 /* If we woke up due to SIGWINCH, actually change size now. */
7449 do_pending_window_change (0);
7450
7451 if (wait < INFINITY && nfds == 0 && ! timeout_reduced_for_timers)
7452 /* We waited the full specified time, so return now. */
7453 break;
7454
7455 if (nfds == -1)
7456 {
7457 /* If the system call was interrupted, then go around the
7458 loop again. */
7459 if (xerrno == EINTR)
7460 FD_ZERO (&waitchannels);
7461 else
7462 report_file_errno ("Failed select", Qnil, xerrno);
7463 }
7464
7465 /* Check for keyboard input. */
7466
7467 if (read_kbd
7468 && detect_input_pending_run_timers (do_display))
7469 {
7470 swallow_events (do_display);
7471 if (detect_input_pending_run_timers (do_display))
7472 break;
7473 }
7474
7475 /* If there is unread keyboard input, also return. */
7476 if (read_kbd
7477 && requeued_events_pending_p ())
7478 break;
7479
7480 /* If wait_for_cell. check for keyboard input
7481 but don't run any timers.
7482 ??? (It seems wrong to me to check for keyboard
7483 input at all when wait_for_cell, but the code
7484 has been this way since July 1994.
7485 Try changing this after version 19.31.) */
7486 if (! NILP (wait_for_cell)
7487 && detect_input_pending ())
7488 {
7489 swallow_events (do_display);
7490 if (detect_input_pending ())
7491 break;
7492 }
7493
7494 /* Exit now if the cell we're waiting for became non-nil. */
7495 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
7496 break;
7497 }
7498
7499 start_polling ();
7500
7501 return -1;
7502 }
7503
7504 #endif /* not subprocesses */
7505
7506 /* The following functions are needed even if async subprocesses are
7507 not supported. Some of them are no-op stubs in that case. */
7508
7509 #ifdef HAVE_TIMERFD
7510
7511 /* Add FD, which is a descriptor returned by timerfd_create,
7512 to the set of non-keyboard input descriptors. */
7513
7514 void
7515 add_timer_wait_descriptor (int fd)
7516 {
7517 FD_SET (fd, &input_wait_mask);
7518 FD_SET (fd, &non_keyboard_wait_mask);
7519 FD_SET (fd, &non_process_wait_mask);
7520 fd_callback_info[fd].func = timerfd_callback;
7521 fd_callback_info[fd].data = NULL;
7522 fd_callback_info[fd].condition |= FOR_READ;
7523 if (fd > max_input_desc)
7524 max_input_desc = fd;
7525 }
7526
7527 #endif /* HAVE_TIMERFD */
7528
7529 /* Add DESC to the set of keyboard input descriptors. */
7530
7531 void
7532 add_keyboard_wait_descriptor (int desc)
7533 {
7534 #ifdef subprocesses /* Actually means "not MSDOS". */
7535 FD_SET (desc, &input_wait_mask);
7536 FD_SET (desc, &non_process_wait_mask);
7537 if (desc > max_input_desc)
7538 max_input_desc = desc;
7539 #endif
7540 }
7541
7542 /* From now on, do not expect DESC to give keyboard input. */
7543
7544 void
7545 delete_keyboard_wait_descriptor (int desc)
7546 {
7547 #ifdef subprocesses
7548 FD_CLR (desc, &input_wait_mask);
7549 FD_CLR (desc, &non_process_wait_mask);
7550 delete_input_desc (desc);
7551 #endif
7552 }
7553
7554 /* Setup coding systems of PROCESS. */
7555
7556 void
7557 setup_process_coding_systems (Lisp_Object process)
7558 {
7559 #ifdef subprocesses
7560 struct Lisp_Process *p = XPROCESS (process);
7561 int inch = p->infd;
7562 int outch = p->outfd;
7563 Lisp_Object coding_system;
7564
7565 if (inch < 0 || outch < 0)
7566 return;
7567
7568 if (!proc_decode_coding_system[inch])
7569 proc_decode_coding_system[inch] = xmalloc (sizeof (struct coding_system));
7570 coding_system = p->decode_coding_system;
7571 if (EQ (p->filter, Qinternal_default_process_filter)
7572 && BUFFERP (p->buffer))
7573 {
7574 if (NILP (BVAR (XBUFFER (p->buffer), enable_multibyte_characters)))
7575 coding_system = raw_text_coding_system (coding_system);
7576 }
7577 setup_coding_system (coding_system, proc_decode_coding_system[inch]);
7578
7579 if (!proc_encode_coding_system[outch])
7580 proc_encode_coding_system[outch] = xmalloc (sizeof (struct coding_system));
7581 setup_coding_system (p->encode_coding_system,
7582 proc_encode_coding_system[outch]);
7583 #endif
7584 }
7585
7586 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
7587 doc: /* Return the (or a) live process associated with BUFFER.
7588 BUFFER may be a buffer or the name of one.
7589 Return nil if all processes associated with BUFFER have been
7590 deleted or killed. */)
7591 (register Lisp_Object buffer)
7592 {
7593 #ifdef subprocesses
7594 register Lisp_Object buf, tail, proc;
7595
7596 if (NILP (buffer)) return Qnil;
7597 buf = Fget_buffer (buffer);
7598 if (NILP (buf)) return Qnil;
7599
7600 FOR_EACH_PROCESS (tail, proc)
7601 if (EQ (XPROCESS (proc)->buffer, buf))
7602 return proc;
7603 #endif /* subprocesses */
7604 return Qnil;
7605 }
7606
7607 DEFUN ("process-inherit-coding-system-flag",
7608 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
7609 1, 1, 0,
7610 doc: /* Return the value of inherit-coding-system flag for PROCESS.
7611 If this flag is t, `buffer-file-coding-system' of the buffer
7612 associated with PROCESS will inherit the coding system used to decode
7613 the process output. */)
7614 (register Lisp_Object process)
7615 {
7616 #ifdef subprocesses
7617 CHECK_PROCESS (process);
7618 return XPROCESS (process)->inherit_coding_system_flag ? Qt : Qnil;
7619 #else
7620 /* Ignore the argument and return the value of
7621 inherit-process-coding-system. */
7622 return inherit_process_coding_system ? Qt : Qnil;
7623 #endif
7624 }
7625
7626 /* Kill all processes associated with `buffer'.
7627 If `buffer' is nil, kill all processes. */
7628
7629 void
7630 kill_buffer_processes (Lisp_Object buffer)
7631 {
7632 #ifdef subprocesses
7633 Lisp_Object tail, proc;
7634
7635 FOR_EACH_PROCESS (tail, proc)
7636 if (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer))
7637 {
7638 if (NETCONN_P (proc) || SERIALCONN_P (proc) || PIPECONN_P (proc))
7639 Fdelete_process (proc);
7640 else if (XPROCESS (proc)->infd >= 0)
7641 process_send_signal (proc, SIGHUP, Qnil, 1);
7642 }
7643 #else /* subprocesses */
7644 /* Since we have no subprocesses, this does nothing. */
7645 #endif /* subprocesses */
7646 }
7647
7648 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p,
7649 Swaiting_for_user_input_p, 0, 0, 0,
7650 doc: /* Return non-nil if Emacs is waiting for input from the user.
7651 This is intended for use by asynchronous process output filters and sentinels. */)
7652 (void)
7653 {
7654 #ifdef subprocesses
7655 return (waiting_for_user_input_p ? Qt : Qnil);
7656 #else
7657 return Qnil;
7658 #endif
7659 }
7660
7661 /* Stop reading input from keyboard sources. */
7662
7663 void
7664 hold_keyboard_input (void)
7665 {
7666 kbd_is_on_hold = 1;
7667 }
7668
7669 /* Resume reading input from keyboard sources. */
7670
7671 void
7672 unhold_keyboard_input (void)
7673 {
7674 kbd_is_on_hold = 0;
7675 }
7676
7677 /* Return true if keyboard input is on hold, zero otherwise. */
7678
7679 bool
7680 kbd_on_hold_p (void)
7681 {
7682 return kbd_is_on_hold;
7683 }
7684
7685 \f
7686 /* Enumeration of and access to system processes a-la ps(1). */
7687
7688 DEFUN ("list-system-processes", Flist_system_processes, Slist_system_processes,
7689 0, 0, 0,
7690 doc: /* Return a list of numerical process IDs of all running processes.
7691 If this functionality is unsupported, return nil.
7692
7693 See `process-attributes' for getting attributes of a process given its ID. */)
7694 (void)
7695 {
7696 return list_system_processes ();
7697 }
7698
7699 DEFUN ("process-attributes", Fprocess_attributes,
7700 Sprocess_attributes, 1, 1, 0,
7701 doc: /* Return attributes of the process given by its PID, a number.
7702
7703 Value is an alist where each element is a cons cell of the form
7704
7705 (KEY . VALUE)
7706
7707 If this functionality is unsupported, the value is nil.
7708
7709 See `list-system-processes' for getting a list of all process IDs.
7710
7711 The KEYs of the attributes that this function may return are listed
7712 below, together with the type of the associated VALUE (in parentheses).
7713 Not all platforms support all of these attributes; unsupported
7714 attributes will not appear in the returned alist.
7715 Unless explicitly indicated otherwise, numbers can have either
7716 integer or floating point values.
7717
7718 euid -- Effective user User ID of the process (number)
7719 user -- User name corresponding to euid (string)
7720 egid -- Effective user Group ID of the process (number)
7721 group -- Group name corresponding to egid (string)
7722 comm -- Command name (executable name only) (string)
7723 state -- Process state code, such as "S", "R", or "T" (string)
7724 ppid -- Parent process ID (number)
7725 pgrp -- Process group ID (number)
7726 sess -- Session ID, i.e. process ID of session leader (number)
7727 ttname -- Controlling tty name (string)
7728 tpgid -- ID of foreground process group on the process's tty (number)
7729 minflt -- number of minor page faults (number)
7730 majflt -- number of major page faults (number)
7731 cminflt -- cumulative number of minor page faults (number)
7732 cmajflt -- cumulative number of major page faults (number)
7733 utime -- user time used by the process, in (current-time) format,
7734 which is a list of integers (HIGH LOW USEC PSEC)
7735 stime -- system time used by the process (current-time)
7736 time -- sum of utime and stime (current-time)
7737 cutime -- user time used by the process and its children (current-time)
7738 cstime -- system time used by the process and its children (current-time)
7739 ctime -- sum of cutime and cstime (current-time)
7740 pri -- priority of the process (number)
7741 nice -- nice value of the process (number)
7742 thcount -- process thread count (number)
7743 start -- time the process started (current-time)
7744 vsize -- virtual memory size of the process in KB's (number)
7745 rss -- resident set size of the process in KB's (number)
7746 etime -- elapsed time the process is running, in (HIGH LOW USEC PSEC) format
7747 pcpu -- percents of CPU time used by the process (floating-point number)
7748 pmem -- percents of total physical memory used by process's resident set
7749 (floating-point number)
7750 args -- command line which invoked the process (string). */)
7751 ( Lisp_Object pid)
7752 {
7753 return system_process_attributes (pid);
7754 }
7755
7756 #ifdef subprocesses
7757 /* Arrange to catch SIGCHLD if this hasn't already been arranged.
7758 Invoke this after init_process_emacs, and after glib and/or GNUstep
7759 futz with the SIGCHLD handler, but before Emacs forks any children.
7760 This function's caller should block SIGCHLD. */
7761
7762 void
7763 catch_child_signal (void)
7764 {
7765 struct sigaction action, old_action;
7766 sigset_t oldset;
7767 emacs_sigaction_init (&action, deliver_child_signal);
7768 block_child_signal (&oldset);
7769 sigaction (SIGCHLD, &action, &old_action);
7770 eassert (old_action.sa_handler == SIG_DFL || old_action.sa_handler == SIG_IGN
7771 || ! (old_action.sa_flags & SA_SIGINFO));
7772
7773 if (old_action.sa_handler != deliver_child_signal)
7774 lib_child_handler
7775 = (old_action.sa_handler == SIG_DFL || old_action.sa_handler == SIG_IGN
7776 ? dummy_handler
7777 : old_action.sa_handler);
7778 unblock_child_signal (&oldset);
7779 }
7780 #endif /* subprocesses */
7781
7782 \f
7783 /* This is not called "init_process" because that is the name of a
7784 Mach system call, so it would cause problems on Darwin systems. */
7785 void
7786 init_process_emacs (void)
7787 {
7788 #ifdef subprocesses
7789 register int i;
7790
7791 inhibit_sentinels = 0;
7792
7793 #ifndef CANNOT_DUMP
7794 if (! noninteractive || initialized)
7795 #endif
7796 {
7797 #if defined HAVE_GLIB && !defined WINDOWSNT
7798 /* Tickle glib's child-handling code. Ask glib to wait for Emacs itself;
7799 this should always fail, but is enough to initialize glib's
7800 private SIGCHLD handler, allowing catch_child_signal to copy
7801 it into lib_child_handler. */
7802 g_source_unref (g_child_watch_source_new (getpid ()));
7803 #endif
7804 catch_child_signal ();
7805 }
7806
7807 FD_ZERO (&input_wait_mask);
7808 FD_ZERO (&non_keyboard_wait_mask);
7809 FD_ZERO (&non_process_wait_mask);
7810 FD_ZERO (&write_mask);
7811 max_process_desc = max_input_desc = -1;
7812 memset (fd_callback_info, 0, sizeof (fd_callback_info));
7813
7814 #ifdef NON_BLOCKING_CONNECT
7815 FD_ZERO (&connect_wait_mask);
7816 num_pending_connects = 0;
7817 #endif
7818
7819 process_output_delay_count = 0;
7820 process_output_skip = 0;
7821
7822 /* Don't do this, it caused infinite select loops. The display
7823 method should call add_keyboard_wait_descriptor on stdin if it
7824 needs that. */
7825 #if 0
7826 FD_SET (0, &input_wait_mask);
7827 #endif
7828
7829 Vprocess_alist = Qnil;
7830 deleted_pid_list = Qnil;
7831 for (i = 0; i < FD_SETSIZE; i++)
7832 {
7833 chan_process[i] = Qnil;
7834 proc_buffered_char[i] = -1;
7835 }
7836 memset (proc_decode_coding_system, 0, sizeof proc_decode_coding_system);
7837 memset (proc_encode_coding_system, 0, sizeof proc_encode_coding_system);
7838 #ifdef DATAGRAM_SOCKETS
7839 memset (datagram_address, 0, sizeof datagram_address);
7840 #endif
7841
7842 #if defined (DARWIN_OS)
7843 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
7844 processes. As such, we only change the default value. */
7845 if (initialized)
7846 {
7847 char const *release = (STRINGP (Voperating_system_release)
7848 ? SSDATA (Voperating_system_release)
7849 : 0);
7850 if (!release || !release[0] || (release[0] < '7' && release[1] == '.')) {
7851 Vprocess_connection_type = Qnil;
7852 }
7853 }
7854 #endif
7855 #endif /* subprocesses */
7856 kbd_is_on_hold = 0;
7857 }
7858
7859 void
7860 syms_of_process (void)
7861 {
7862 #ifdef subprocesses
7863
7864 DEFSYM (Qprocessp, "processp");
7865 DEFSYM (Qrun, "run");
7866 DEFSYM (Qstop, "stop");
7867 DEFSYM (Qsignal, "signal");
7868
7869 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
7870 here again. */
7871
7872 DEFSYM (Qopen, "open");
7873 DEFSYM (Qclosed, "closed");
7874 DEFSYM (Qconnect, "connect");
7875 DEFSYM (Qfailed, "failed");
7876 DEFSYM (Qlisten, "listen");
7877 DEFSYM (Qlocal, "local");
7878 DEFSYM (Qipv4, "ipv4");
7879 #ifdef AF_INET6
7880 DEFSYM (Qipv6, "ipv6");
7881 #endif
7882 DEFSYM (Qdatagram, "datagram");
7883 DEFSYM (Qseqpacket, "seqpacket");
7884
7885 DEFSYM (QCport, ":port");
7886 DEFSYM (QCspeed, ":speed");
7887 DEFSYM (QCprocess, ":process");
7888
7889 DEFSYM (QCbytesize, ":bytesize");
7890 DEFSYM (QCstopbits, ":stopbits");
7891 DEFSYM (QCparity, ":parity");
7892 DEFSYM (Qodd, "odd");
7893 DEFSYM (Qeven, "even");
7894 DEFSYM (QCflowcontrol, ":flowcontrol");
7895 DEFSYM (Qhw, "hw");
7896 DEFSYM (Qsw, "sw");
7897 DEFSYM (QCsummary, ":summary");
7898
7899 DEFSYM (Qreal, "real");
7900 DEFSYM (Qnetwork, "network");
7901 DEFSYM (Qserial, "serial");
7902 DEFSYM (Qpipe, "pipe");
7903 DEFSYM (QCbuffer, ":buffer");
7904 DEFSYM (QChost, ":host");
7905 DEFSYM (QCservice, ":service");
7906 DEFSYM (QClocal, ":local");
7907 DEFSYM (QCremote, ":remote");
7908 DEFSYM (QCcoding, ":coding");
7909 DEFSYM (QCserver, ":server");
7910 DEFSYM (QCnowait, ":nowait");
7911 DEFSYM (QCsentinel, ":sentinel");
7912 DEFSYM (QCtls_parameters, ":tls-parameters");
7913 DEFSYM (Qnsm_verify_connection, "nsm-verify-connection");
7914 DEFSYM (QClog, ":log");
7915 DEFSYM (QCnoquery, ":noquery");
7916 DEFSYM (QCstop, ":stop");
7917 DEFSYM (QCplist, ":plist");
7918 DEFSYM (QCcommand, ":command");
7919 DEFSYM (QCconnection_type, ":connection-type");
7920 DEFSYM (QCstderr, ":stderr");
7921 DEFSYM (Qpty, "pty");
7922 DEFSYM (Qpipe, "pipe");
7923
7924 DEFSYM (Qlast_nonmenu_event, "last-nonmenu-event");
7925
7926 staticpro (&Vprocess_alist);
7927 staticpro (&deleted_pid_list);
7928
7929 #endif /* subprocesses */
7930
7931 DEFSYM (QCname, ":name");
7932 DEFSYM (QCtype, ":type");
7933
7934 DEFSYM (Qeuid, "euid");
7935 DEFSYM (Qegid, "egid");
7936 DEFSYM (Quser, "user");
7937 DEFSYM (Qgroup, "group");
7938 DEFSYM (Qcomm, "comm");
7939 DEFSYM (Qstate, "state");
7940 DEFSYM (Qppid, "ppid");
7941 DEFSYM (Qpgrp, "pgrp");
7942 DEFSYM (Qsess, "sess");
7943 DEFSYM (Qttname, "ttname");
7944 DEFSYM (Qtpgid, "tpgid");
7945 DEFSYM (Qminflt, "minflt");
7946 DEFSYM (Qmajflt, "majflt");
7947 DEFSYM (Qcminflt, "cminflt");
7948 DEFSYM (Qcmajflt, "cmajflt");
7949 DEFSYM (Qutime, "utime");
7950 DEFSYM (Qstime, "stime");
7951 DEFSYM (Qtime, "time");
7952 DEFSYM (Qcutime, "cutime");
7953 DEFSYM (Qcstime, "cstime");
7954 DEFSYM (Qctime, "ctime");
7955 #ifdef subprocesses
7956 DEFSYM (Qinternal_default_process_sentinel,
7957 "internal-default-process-sentinel");
7958 DEFSYM (Qinternal_default_process_filter,
7959 "internal-default-process-filter");
7960 #endif
7961 DEFSYM (Qpri, "pri");
7962 DEFSYM (Qnice, "nice");
7963 DEFSYM (Qthcount, "thcount");
7964 DEFSYM (Qstart, "start");
7965 DEFSYM (Qvsize, "vsize");
7966 DEFSYM (Qrss, "rss");
7967 DEFSYM (Qetime, "etime");
7968 DEFSYM (Qpcpu, "pcpu");
7969 DEFSYM (Qpmem, "pmem");
7970 DEFSYM (Qargs, "args");
7971
7972 DEFVAR_BOOL ("delete-exited-processes", delete_exited_processes,
7973 doc: /* Non-nil means delete processes immediately when they exit.
7974 A value of nil means don't delete them until `list-processes' is run. */);
7975
7976 delete_exited_processes = 1;
7977
7978 #ifdef subprocesses
7979 DEFVAR_LISP ("process-connection-type", Vprocess_connection_type,
7980 doc: /* Control type of device used to communicate with subprocesses.
7981 Values are nil to use a pipe, or t or `pty' to use a pty.
7982 The value has no effect if the system has no ptys or if all ptys are busy:
7983 then a pipe is used in any case.
7984 The value takes effect when `start-process' is called. */);
7985 Vprocess_connection_type = Qt;
7986
7987 DEFVAR_LISP ("process-adaptive-read-buffering", Vprocess_adaptive_read_buffering,
7988 doc: /* If non-nil, improve receive buffering by delaying after short reads.
7989 On some systems, when Emacs reads the output from a subprocess, the output data
7990 is read in very small blocks, potentially resulting in very poor performance.
7991 This behavior can be remedied to some extent by setting this variable to a
7992 non-nil value, as it will automatically delay reading from such processes, to
7993 allow them to produce more output before Emacs tries to read it.
7994 If the value is t, the delay is reset after each write to the process; any other
7995 non-nil value means that the delay is not reset on write.
7996 The variable takes effect when `start-process' is called. */);
7997 Vprocess_adaptive_read_buffering = Qt;
7998
7999 defsubr (&Sprocessp);
8000 defsubr (&Sget_process);
8001 defsubr (&Sdelete_process);
8002 defsubr (&Sprocess_status);
8003 defsubr (&Sprocess_exit_status);
8004 defsubr (&Sprocess_id);
8005 defsubr (&Sprocess_name);
8006 defsubr (&Sprocess_tty_name);
8007 defsubr (&Sprocess_command);
8008 defsubr (&Sset_process_buffer);
8009 defsubr (&Sprocess_buffer);
8010 defsubr (&Sprocess_mark);
8011 defsubr (&Sset_process_filter);
8012 defsubr (&Sprocess_filter);
8013 defsubr (&Sset_process_sentinel);
8014 defsubr (&Sprocess_sentinel);
8015 defsubr (&Sset_process_window_size);
8016 defsubr (&Sset_process_inherit_coding_system_flag);
8017 defsubr (&Sset_process_query_on_exit_flag);
8018 defsubr (&Sprocess_query_on_exit_flag);
8019 defsubr (&Sprocess_contact);
8020 defsubr (&Sprocess_plist);
8021 defsubr (&Sset_process_plist);
8022 defsubr (&Sprocess_list);
8023 defsubr (&Smake_process);
8024 defsubr (&Smake_pipe_process);
8025 defsubr (&Sserial_process_configure);
8026 defsubr (&Smake_serial_process);
8027 defsubr (&Sset_network_process_option);
8028 defsubr (&Smake_network_process);
8029 defsubr (&Sformat_network_address);
8030 defsubr (&Snetwork_interface_list);
8031 defsubr (&Snetwork_interface_info);
8032 #ifdef DATAGRAM_SOCKETS
8033 defsubr (&Sprocess_datagram_address);
8034 defsubr (&Sset_process_datagram_address);
8035 #endif
8036 defsubr (&Saccept_process_output);
8037 defsubr (&Sprocess_send_region);
8038 defsubr (&Sprocess_send_string);
8039 defsubr (&Sinterrupt_process);
8040 defsubr (&Skill_process);
8041 defsubr (&Squit_process);
8042 defsubr (&Sstop_process);
8043 defsubr (&Scontinue_process);
8044 defsubr (&Sprocess_running_child_p);
8045 defsubr (&Sprocess_send_eof);
8046 defsubr (&Ssignal_process);
8047 defsubr (&Swaiting_for_user_input_p);
8048 defsubr (&Sprocess_type);
8049 defsubr (&Sinternal_default_process_sentinel);
8050 defsubr (&Sinternal_default_process_filter);
8051 defsubr (&Sset_process_coding_system);
8052 defsubr (&Sprocess_coding_system);
8053 defsubr (&Sset_process_filter_multibyte);
8054 defsubr (&Sprocess_filter_multibyte_p);
8055
8056 #endif /* subprocesses */
8057
8058 defsubr (&Sget_buffer_process);
8059 defsubr (&Sprocess_inherit_coding_system_flag);
8060 defsubr (&Slist_system_processes);
8061 defsubr (&Sprocess_attributes);
8062
8063 {
8064 Lisp_Object subfeatures = Qnil;
8065 const struct socket_options *sopt;
8066
8067 #define ADD_SUBFEATURE(key, val) \
8068 subfeatures = pure_cons (pure_cons (key, pure_cons (val, Qnil)), subfeatures)
8069
8070 #ifdef NON_BLOCKING_CONNECT
8071 ADD_SUBFEATURE (QCnowait, Qt);
8072 #endif
8073 #ifdef DATAGRAM_SOCKETS
8074 ADD_SUBFEATURE (QCtype, Qdatagram);
8075 #endif
8076 #ifdef HAVE_SEQPACKET
8077 ADD_SUBFEATURE (QCtype, Qseqpacket);
8078 #endif
8079 #ifdef HAVE_LOCAL_SOCKETS
8080 ADD_SUBFEATURE (QCfamily, Qlocal);
8081 #endif
8082 ADD_SUBFEATURE (QCfamily, Qipv4);
8083 #ifdef AF_INET6
8084 ADD_SUBFEATURE (QCfamily, Qipv6);
8085 #endif
8086 #ifdef HAVE_GETSOCKNAME
8087 ADD_SUBFEATURE (QCservice, Qt);
8088 #endif
8089 ADD_SUBFEATURE (QCserver, Qt);
8090
8091 for (sopt = socket_options; sopt->name; sopt++)
8092 subfeatures = pure_cons (intern_c_string (sopt->name), subfeatures);
8093
8094 Fprovide (intern_c_string ("make-network-process"), subfeatures);
8095 }
8096
8097 }