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