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