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