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