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