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