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