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