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