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