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