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