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