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