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