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