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