Merge from emacs-23 branch
[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
32 #include <unistd.h>
33 #include <fcntl.h>
34
35 #include "lisp.h"
36
37 /* Only MS-DOS does not define `subprocesses'. */
38 #ifdef subprocesses
39
40 #include <sys/socket.h>
41 #include <netdb.h>
42 #include <netinet/in.h>
43 #include <arpa/inet.h>
44
45 /* Are local (unix) sockets supported? */
46 #if defined (HAVE_SYS_UN_H)
47 #if !defined (AF_LOCAL) && defined (AF_UNIX)
48 #define AF_LOCAL AF_UNIX
49 #endif
50 #ifdef AF_LOCAL
51 #define HAVE_LOCAL_SOCKETS
52 #include <sys/un.h>
53 #endif
54 #endif
55
56 #include <sys/ioctl.h>
57 #if defined(HAVE_NET_IF_H)
58 #include <net/if.h>
59 #endif /* HAVE_NET_IF_H */
60
61 #ifdef NEED_BSDTTY
62 #include <bsdtty.h>
63 #endif
64
65 #ifdef HAVE_RES_INIT
66 #include <netinet/in.h>
67 #include <arpa/nameser.h>
68 #include <resolv.h>
69 #endif
70
71 #ifdef HAVE_UTIL_H
72 #include <util.h>
73 #endif
74
75 #ifdef HAVE_PTY_H
76 #include <pty.h>
77 #endif
78
79 #endif /* subprocesses */
80
81 #include "systime.h"
82 #include "systty.h"
83
84 #include "window.h"
85 #include "buffer.h"
86 #include "character.h"
87 #include "coding.h"
88 #include "process.h"
89 #include "frame.h"
90 #include "termhooks.h"
91 #include "termopts.h"
92 #include "commands.h"
93 #include "keyboard.h"
94 #include "blockinput.h"
95 #include "dispextern.h"
96 #include "composite.h"
97 #include "atimer.h"
98 #include "sysselect.h"
99 #include "syssignal.h"
100 #include "syswait.h"
101 #ifdef HAVE_GNUTLS
102 #include "gnutls.h"
103 #endif
104
105 #if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
106 #include "xgselect.h"
107 #endif
108 #ifdef HAVE_NS
109 #include "nsterm.h"
110 #endif
111
112 Lisp_Object Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname, Qtpgid;
113 Lisp_Object Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcstime;
114 Lisp_Object Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs;
115 Lisp_Object Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtime, Qctime;
116 Lisp_Object QCname, QCtype;
117 \f
118 /* Non-zero if keyboard input is on hold, zero otherwise. */
119
120 static int kbd_is_on_hold;
121
122 /* Nonzero means don't run process sentinels. This is used
123 when exiting. */
124 int inhibit_sentinels;
125
126 #ifdef subprocesses
127
128 Lisp_Object Qprocessp;
129 static Lisp_Object Qrun, Qstop, Qsignal;
130 static Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
131 Lisp_Object Qlocal;
132 static Lisp_Object Qipv4, Qdatagram, Qseqpacket;
133 static Lisp_Object Qreal, Qnetwork, Qserial;
134 #ifdef AF_INET6
135 static Lisp_Object Qipv6;
136 #endif
137 static Lisp_Object QCport, QCprocess;
138 Lisp_Object QCspeed;
139 Lisp_Object QCbytesize, QCstopbits, QCparity, Qodd, Qeven;
140 Lisp_Object QCflowcontrol, Qhw, Qsw, QCsummary;
141 static Lisp_Object QCbuffer, QChost, QCservice;
142 static Lisp_Object QClocal, QCremote, QCcoding;
143 static Lisp_Object QCserver, QCnowait, QCnoquery, QCstop;
144 static Lisp_Object QCsentinel, QClog, QCoptions, QCplist;
145 static Lisp_Object Qlast_nonmenu_event;
146 /* QCfamily is declared and initialized in xfaces.c,
147 QCfilter in keyboard.c. */
148 extern Lisp_Object QCfamily, QCfilter;
149
150 /* Qexit is declared and initialized in eval.c. */
151
152 /* QCfamily is defined in xfaces.c. */
153 extern Lisp_Object QCfamily;
154 /* QCfilter is defined in keyboard.c. */
155 extern Lisp_Object QCfilter;
156
157 #define NETCONN_P(p) (EQ (XPROCESS (p)->type, Qnetwork))
158 #define NETCONN1_P(p) (EQ ((p)->type, Qnetwork))
159 #define SERIALCONN_P(p) (EQ (XPROCESS (p)->type, Qserial))
160 #define SERIALCONN1_P(p) (EQ ((p)->type, Qserial))
161
162 #ifndef HAVE_H_ERRNO
163 extern int h_errno;
164 #endif
165
166 /* Number of events of change of status of a process. */
167 static int process_tick;
168 /* Number of events for which the user or sentinel has been notified. */
169 static int update_tick;
170
171 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
172
173 /* Only W32 has this, it really means that select can't take write mask. */
174 #ifdef BROKEN_NON_BLOCKING_CONNECT
175 #undef NON_BLOCKING_CONNECT
176 #define SELECT_CANT_DO_WRITE_MASK
177 #else
178 #ifndef NON_BLOCKING_CONNECT
179 #ifdef HAVE_SELECT
180 #if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX)
181 #if defined (O_NONBLOCK) || defined (O_NDELAY)
182 #if defined (EWOULDBLOCK) || defined (EINPROGRESS)
183 #define NON_BLOCKING_CONNECT
184 #endif /* EWOULDBLOCK || EINPROGRESS */
185 #endif /* O_NONBLOCK || O_NDELAY */
186 #endif /* HAVE_GETPEERNAME || GNU_LINUX */
187 #endif /* HAVE_SELECT */
188 #endif /* NON_BLOCKING_CONNECT */
189 #endif /* BROKEN_NON_BLOCKING_CONNECT */
190
191 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on
192 this system. We need to read full packets, so we need a
193 "non-destructive" select. So we require either native select,
194 or emulation of select using FIONREAD. */
195
196 #ifdef BROKEN_DATAGRAM_SOCKETS
197 #undef DATAGRAM_SOCKETS
198 #else
199 #ifndef DATAGRAM_SOCKETS
200 #if defined (HAVE_SELECT) || defined (FIONREAD)
201 #if defined (HAVE_SENDTO) && defined (HAVE_RECVFROM) && defined (EMSGSIZE)
202 #define DATAGRAM_SOCKETS
203 #endif /* HAVE_SENDTO && HAVE_RECVFROM && EMSGSIZE */
204 #endif /* HAVE_SELECT || FIONREAD */
205 #endif /* DATAGRAM_SOCKETS */
206 #endif /* BROKEN_DATAGRAM_SOCKETS */
207
208 #if defined HAVE_LOCAL_SOCKETS && defined DATAGRAM_SOCKETS
209 # define HAVE_SEQPACKET
210 #endif
211
212 #if !defined (ADAPTIVE_READ_BUFFERING) && !defined (NO_ADAPTIVE_READ_BUFFERING)
213 #ifdef EMACS_HAS_USECS
214 #define ADAPTIVE_READ_BUFFERING
215 #endif
216 #endif
217
218 #ifdef ADAPTIVE_READ_BUFFERING
219 #define READ_OUTPUT_DELAY_INCREMENT 10000
220 #define READ_OUTPUT_DELAY_MAX (READ_OUTPUT_DELAY_INCREMENT * 5)
221 #define READ_OUTPUT_DELAY_MAX_MAX (READ_OUTPUT_DELAY_INCREMENT * 7)
222
223 /* Number of processes which have a non-zero read_output_delay,
224 and therefore might be delayed for adaptive read buffering. */
225
226 static int process_output_delay_count;
227
228 /* Non-zero if any process has non-nil read_output_skip. */
229
230 static int process_output_skip;
231
232 #else
233 #define process_output_delay_count 0
234 #endif
235
236 static Lisp_Object Fget_process (Lisp_Object);
237 static void create_process (Lisp_Object, char **, Lisp_Object);
238 #ifdef SIGIO
239 static int keyboard_bit_set (SELECT_TYPE *);
240 #endif
241 static void deactivate_process (Lisp_Object);
242 static void status_notify (struct Lisp_Process *);
243 static int read_process_output (Lisp_Object, int);
244 static void create_pty (Lisp_Object);
245
246 /* If we support a window system, turn on the code to poll periodically
247 to detect C-g. It isn't actually used when doing interrupt input. */
248 #ifdef HAVE_WINDOW_SYSTEM
249 #define POLL_FOR_INPUT
250 #endif
251
252 static Lisp_Object get_process (register Lisp_Object name);
253 static void exec_sentinel (Lisp_Object proc, Lisp_Object reason);
254
255 /* Mask of bits indicating the descriptors that we wait for input on. */
256
257 static SELECT_TYPE input_wait_mask;
258
259 /* Mask that excludes keyboard input descriptor(s). */
260
261 static SELECT_TYPE non_keyboard_wait_mask;
262
263 /* Mask that excludes process input descriptor(s). */
264
265 static SELECT_TYPE non_process_wait_mask;
266
267 /* Mask for selecting for write. */
268
269 static SELECT_TYPE write_mask;
270
271 #ifdef NON_BLOCKING_CONNECT
272 /* Mask of bits indicating the descriptors that we wait for connect to
273 complete on. Once they complete, they are removed from this mask
274 and added to the input_wait_mask and non_keyboard_wait_mask. */
275
276 static SELECT_TYPE connect_wait_mask;
277
278 /* Number of bits set in connect_wait_mask. */
279 static int num_pending_connects;
280 #endif /* NON_BLOCKING_CONNECT */
281
282 /* The largest descriptor currently in use for a process object. */
283 static int max_process_desc;
284
285 /* The largest descriptor currently in use for input. */
286 static int max_input_desc;
287
288 /* Indexed by descriptor, gives the process (if any) for that descriptor */
289 static Lisp_Object chan_process[MAXDESC];
290
291 /* Alist of elements (NAME . PROCESS) */
292 static Lisp_Object Vprocess_alist;
293
294 /* Buffered-ahead input char from process, indexed by channel.
295 -1 means empty (no char is buffered).
296 Used on sys V where the only way to tell if there is any
297 output from the process is to read at least one char.
298 Always -1 on systems that support FIONREAD. */
299
300 static int proc_buffered_char[MAXDESC];
301
302 /* Table of `struct coding-system' for each process. */
303 static struct coding_system *proc_decode_coding_system[MAXDESC];
304 static struct coding_system *proc_encode_coding_system[MAXDESC];
305
306 #ifdef DATAGRAM_SOCKETS
307 /* Table of `partner address' for datagram sockets. */
308 static struct sockaddr_and_len {
309 struct sockaddr *sa;
310 int len;
311 } datagram_address[MAXDESC];
312 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
313 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XPROCESS (proc)->infd].sa != 0)
314 #else
315 #define DATAGRAM_CHAN_P(chan) (0)
316 #define DATAGRAM_CONN_P(proc) (0)
317 #endif
318
319 /* Maximum number of bytes to send to a pty without an eof. */
320 static int pty_max_bytes;
321
322 \f
323
324 static struct fd_callback_data
325 {
326 fd_callback func;
327 void *data;
328 #define FOR_READ 1
329 #define FOR_WRITE 2
330 int condition; /* mask of the defines above. */
331 } fd_callback_info[MAXDESC];
332
333
334 /* Add a file descriptor FD to be monitored for when read is possible.
335 When read is possible, call FUNC with argument DATA. */
336
337 void
338 add_read_fd (int fd, fd_callback func, void *data)
339 {
340 xassert (fd < MAXDESC);
341 add_keyboard_wait_descriptor (fd);
342
343 fd_callback_info[fd].func = func;
344 fd_callback_info[fd].data = data;
345 fd_callback_info[fd].condition |= FOR_READ;
346 }
347
348 /* Stop monitoring file descriptor FD for when read is possible. */
349
350 void
351 delete_read_fd (int fd)
352 {
353 xassert (fd < MAXDESC);
354 delete_keyboard_wait_descriptor (fd);
355
356 fd_callback_info[fd].condition &= ~FOR_READ;
357 if (fd_callback_info[fd].condition == 0)
358 {
359 fd_callback_info[fd].func = 0;
360 fd_callback_info[fd].data = 0;
361 }
362 }
363
364 /* Add a file descriptor FD to be monitored for when write is possible.
365 When write is possible, call FUNC with argument DATA. */
366
367 void
368 add_write_fd (int fd, fd_callback func, void *data)
369 {
370 xassert (fd < MAXDESC);
371 FD_SET (fd, &write_mask);
372 if (fd > max_input_desc)
373 max_input_desc = fd;
374
375 fd_callback_info[fd].func = func;
376 fd_callback_info[fd].data = data;
377 fd_callback_info[fd].condition |= FOR_WRITE;
378 }
379
380 /* Stop monitoring file descriptor FD for when write is possible. */
381
382 void
383 delete_write_fd (int fd)
384 {
385 int lim = max_input_desc;
386
387 xassert (fd < MAXDESC);
388 FD_CLR (fd, &write_mask);
389 fd_callback_info[fd].condition &= ~FOR_WRITE;
390 if (fd_callback_info[fd].condition == 0)
391 {
392 fd_callback_info[fd].func = 0;
393 fd_callback_info[fd].data = 0;
394
395 if (fd == max_input_desc)
396 for (fd = lim; fd >= 0; fd--)
397 if (FD_ISSET (fd, &input_wait_mask) || FD_ISSET (fd, &write_mask))
398 {
399 max_input_desc = fd;
400 break;
401 }
402
403 }
404 }
405
406 \f
407 /* Compute the Lisp form of the process status, p->status, from
408 the numeric status that was returned by `wait'. */
409
410 static Lisp_Object status_convert (int);
411
412 static void
413 update_status (struct Lisp_Process *p)
414 {
415 eassert (p->raw_status_new);
416 p->status = status_convert (p->raw_status);
417 p->raw_status_new = 0;
418 }
419
420 /* Convert a process status word in Unix format to
421 the list that we use internally. */
422
423 static Lisp_Object
424 status_convert (int w)
425 {
426 if (WIFSTOPPED (w))
427 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
428 else if (WIFEXITED (w))
429 return Fcons (Qexit, Fcons (make_number (WRETCODE (w)),
430 WCOREDUMP (w) ? Qt : Qnil));
431 else if (WIFSIGNALED (w))
432 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
433 WCOREDUMP (w) ? Qt : Qnil));
434 else
435 return Qrun;
436 }
437
438 /* Given a status-list, extract the three pieces of information
439 and store them individually through the three pointers. */
440
441 static void
442 decode_status (Lisp_Object l, Lisp_Object *symbol, int *code, int *coredump)
443 {
444 Lisp_Object tem;
445
446 if (SYMBOLP (l))
447 {
448 *symbol = l;
449 *code = 0;
450 *coredump = 0;
451 }
452 else
453 {
454 *symbol = XCAR (l);
455 tem = XCDR (l);
456 *code = XFASTINT (XCAR (tem));
457 tem = XCDR (tem);
458 *coredump = !NILP (tem);
459 }
460 }
461
462 /* Return a string describing a process status list. */
463
464 static Lisp_Object
465 status_message (struct Lisp_Process *p)
466 {
467 Lisp_Object status = p->status;
468 Lisp_Object symbol;
469 int code, coredump;
470 Lisp_Object string, string2;
471
472 decode_status (status, &symbol, &code, &coredump);
473
474 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
475 {
476 char *signame;
477 synchronize_system_messages_locale ();
478 signame = strsignal (code);
479 if (signame == 0)
480 string = build_string ("unknown");
481 else
482 {
483 int c1, c2;
484
485 string = make_unibyte_string (signame, strlen (signame));
486 if (! NILP (Vlocale_coding_system))
487 string = (code_convert_string_norecord
488 (string, Vlocale_coding_system, 0));
489 c1 = STRING_CHAR (SDATA (string));
490 c2 = downcase (c1);
491 if (c1 != c2)
492 Faset (string, make_number (0), make_number (c2));
493 }
494 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
495 return concat2 (string, string2);
496 }
497 else if (EQ (symbol, Qexit))
498 {
499 if (NETCONN1_P (p))
500 return build_string (code == 0 ? "deleted\n" : "connection broken by remote peer\n");
501 if (code == 0)
502 return build_string ("finished\n");
503 string = Fnumber_to_string (make_number (code));
504 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
505 return concat3 (build_string ("exited abnormally with code "),
506 string, string2);
507 }
508 else if (EQ (symbol, Qfailed))
509 {
510 string = Fnumber_to_string (make_number (code));
511 string2 = build_string ("\n");
512 return concat3 (build_string ("failed with code "),
513 string, string2);
514 }
515 else
516 return Fcopy_sequence (Fsymbol_name (symbol));
517 }
518 \f
519 #ifdef HAVE_PTYS
520
521 /* The file name of the pty opened by allocate_pty. */
522 static char pty_name[24];
523
524 /* Open an available pty, returning a file descriptor.
525 Return -1 on failure.
526 The file name of the terminal corresponding to the pty
527 is left in the variable pty_name. */
528
529 static int
530 allocate_pty (void)
531 {
532 int fd;
533
534 #ifdef PTY_ITERATION
535 PTY_ITERATION
536 #else
537 register int c, i;
538 for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
539 for (i = 0; i < 16; i++)
540 #endif
541 {
542 #ifdef PTY_NAME_SPRINTF
543 PTY_NAME_SPRINTF
544 #else
545 sprintf (pty_name, "/dev/pty%c%x", c, i);
546 #endif /* no PTY_NAME_SPRINTF */
547
548 #ifdef PTY_OPEN
549 PTY_OPEN;
550 #else /* no PTY_OPEN */
551 {
552 { /* Some systems name their pseudoterminals so that there are gaps in
553 the usual sequence - for example, on HP9000/S700 systems, there
554 are no pseudoterminals with names ending in 'f'. So we wait for
555 three failures in a row before deciding that we've reached the
556 end of the ptys. */
557 int failed_count = 0;
558 struct stat stb;
559
560 if (stat (pty_name, &stb) < 0)
561 {
562 failed_count++;
563 if (failed_count >= 3)
564 return -1;
565 }
566 else
567 failed_count = 0;
568 }
569 # ifdef O_NONBLOCK
570 fd = emacs_open (pty_name, O_RDWR | O_NONBLOCK, 0);
571 # else
572 fd = emacs_open (pty_name, O_RDWR | O_NDELAY, 0);
573 # endif
574 }
575 #endif /* no PTY_OPEN */
576
577 if (fd >= 0)
578 {
579 /* check to make certain that both sides are available
580 this avoids a nasty yet stupid bug in rlogins */
581 #ifdef PTY_TTY_NAME_SPRINTF
582 PTY_TTY_NAME_SPRINTF
583 #else
584 sprintf (pty_name, "/dev/tty%c%x", c, i);
585 #endif /* no PTY_TTY_NAME_SPRINTF */
586 if (access (pty_name, 6) != 0)
587 {
588 emacs_close (fd);
589 # ifndef __sgi
590 continue;
591 # else
592 return -1;
593 # endif /* __sgi */
594 }
595 setup_pty (fd);
596 return fd;
597 }
598 }
599 return -1;
600 }
601 #endif /* HAVE_PTYS */
602 \f
603 static Lisp_Object
604 make_process (Lisp_Object name)
605 {
606 register Lisp_Object val, tem, name1;
607 register struct Lisp_Process *p;
608 char suffix[10];
609 register int i;
610
611 p = allocate_process ();
612
613 p->infd = -1;
614 p->outfd = -1;
615 p->tick = 0;
616 p->update_tick = 0;
617 p->pid = 0;
618 p->pty_flag = 0;
619 p->raw_status_new = 0;
620 p->status = Qrun;
621 p->mark = Fmake_marker ();
622 p->kill_without_query = 0;
623
624 #ifdef ADAPTIVE_READ_BUFFERING
625 p->adaptive_read_buffering = 0;
626 p->read_output_delay = 0;
627 p->read_output_skip = 0;
628 #endif
629
630 #ifdef HAVE_GNUTLS
631 p->gnutls_initstage = GNUTLS_STAGE_EMPTY;
632 p->gnutls_log_level = 0;
633 p->gnutls_p = 0;
634 #endif
635
636 /* If name is already in use, modify it until it is unused. */
637
638 name1 = name;
639 for (i = 1; ; i++)
640 {
641 tem = Fget_process (name1);
642 if (NILP (tem)) break;
643 sprintf (suffix, "<%d>", i);
644 name1 = concat2 (name, build_string (suffix));
645 }
646 name = name1;
647 p->name = name;
648 XSETPROCESS (val, p);
649 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
650 return val;
651 }
652
653 static void
654 remove_process (register Lisp_Object proc)
655 {
656 register Lisp_Object pair;
657
658 pair = Frassq (proc, Vprocess_alist);
659 Vprocess_alist = Fdelq (pair, Vprocess_alist);
660
661 deactivate_process (proc);
662 }
663
664 \f
665 DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
666 doc: /* Return t if OBJECT is a process. */)
667 (Lisp_Object object)
668 {
669 return PROCESSP (object) ? Qt : Qnil;
670 }
671
672 DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
673 doc: /* Return the process named NAME, or nil if there is none. */)
674 (register Lisp_Object name)
675 {
676 if (PROCESSP (name))
677 return name;
678 CHECK_STRING (name);
679 return Fcdr (Fassoc (name, Vprocess_alist));
680 }
681
682 /* This is how commands for the user decode process arguments. It
683 accepts a process, a process name, a buffer, a buffer name, or nil.
684 Buffers denote the first process in the buffer, and nil denotes the
685 current buffer. */
686
687 static Lisp_Object
688 get_process (register Lisp_Object name)
689 {
690 register Lisp_Object proc, obj;
691 if (STRINGP (name))
692 {
693 obj = Fget_process (name);
694 if (NILP (obj))
695 obj = Fget_buffer (name);
696 if (NILP (obj))
697 error ("Process %s does not exist", SDATA (name));
698 }
699 else if (NILP (name))
700 obj = Fcurrent_buffer ();
701 else
702 obj = name;
703
704 /* Now obj should be either a buffer object or a process object.
705 */
706 if (BUFFERP (obj))
707 {
708 proc = Fget_buffer_process (obj);
709 if (NILP (proc))
710 error ("Buffer %s has no process", SDATA (BVAR (XBUFFER (obj), name)));
711 }
712 else
713 {
714 CHECK_PROCESS (obj);
715 proc = obj;
716 }
717 return proc;
718 }
719
720
721 #ifdef SIGCHLD
722 /* Fdelete_process promises to immediately forget about the process, but in
723 reality, Emacs needs to remember those processes until they have been
724 treated by sigchld_handler; otherwise this handler would consider the
725 process as being synchronous and say that the synchronous process is
726 dead. */
727 static Lisp_Object deleted_pid_list;
728 #endif
729
730 DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
731 doc: /* Delete PROCESS: kill it and forget about it immediately.
732 PROCESS may be a process, a buffer, the name of a process or buffer, or
733 nil, indicating the current buffer's process. */)
734 (register Lisp_Object process)
735 {
736 register struct Lisp_Process *p;
737
738 process = get_process (process);
739 p = XPROCESS (process);
740
741 p->raw_status_new = 0;
742 if (NETCONN1_P (p) || SERIALCONN1_P (p))
743 {
744 p->status = Fcons (Qexit, Fcons (make_number (0), Qnil));
745 p->tick = ++process_tick;
746 status_notify (p);
747 redisplay_preserve_echo_area (13);
748 }
749 else if (p->infd >= 0)
750 {
751 #ifdef SIGCHLD
752 Lisp_Object symbol;
753 /* Assignment to EMACS_INT stops GCC whining about limited range
754 of data type. */
755 EMACS_INT pid = p->pid;
756
757 /* No problem storing the pid here, as it is still in Vprocess_alist. */
758 deleted_pid_list = Fcons (make_fixnum_or_float (pid),
759 /* GC treated elements set to nil. */
760 Fdelq (Qnil, deleted_pid_list));
761 /* If the process has already signaled, remove it from the list. */
762 if (p->raw_status_new)
763 update_status (p);
764 symbol = p->status;
765 if (CONSP (p->status))
766 symbol = XCAR (p->status);
767 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
768 deleted_pid_list
769 = Fdelete (make_fixnum_or_float (pid), deleted_pid_list);
770 else
771 #endif
772 {
773 Fkill_process (process, Qnil);
774 /* Do this now, since remove_process will make sigchld_handler do nothing. */
775 p->status
776 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
777 p->tick = ++process_tick;
778 status_notify (p);
779 redisplay_preserve_echo_area (13);
780 }
781 }
782 remove_process (process);
783 return Qnil;
784 }
785 \f
786 DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
787 doc: /* Return the status of PROCESS.
788 The returned value is one of the following symbols:
789 run -- for a process that is running.
790 stop -- for a process stopped but continuable.
791 exit -- for a process that has exited.
792 signal -- for a process that has got a fatal signal.
793 open -- for a network stream connection that is open.
794 listen -- for a network stream server that is listening.
795 closed -- for a network stream connection that is closed.
796 connect -- when waiting for a non-blocking connection to complete.
797 failed -- when a non-blocking connection has failed.
798 nil -- if arg is a process name and no such process exists.
799 PROCESS may be a process, a buffer, the name of a process, or
800 nil, indicating the current buffer's process. */)
801 (register Lisp_Object process)
802 {
803 register struct Lisp_Process *p;
804 register Lisp_Object status;
805
806 if (STRINGP (process))
807 process = Fget_process (process);
808 else
809 process = get_process (process);
810
811 if (NILP (process))
812 return process;
813
814 p = XPROCESS (process);
815 if (p->raw_status_new)
816 update_status (p);
817 status = p->status;
818 if (CONSP (status))
819 status = XCAR (status);
820 if (NETCONN1_P (p) || SERIALCONN1_P (p))
821 {
822 if (EQ (status, Qexit))
823 status = Qclosed;
824 else if (EQ (p->command, Qt))
825 status = Qstop;
826 else if (EQ (status, Qrun))
827 status = Qopen;
828 }
829 return status;
830 }
831
832 DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
833 1, 1, 0,
834 doc: /* Return the exit status of PROCESS or the signal number that killed it.
835 If PROCESS has not yet exited or died, return 0. */)
836 (register Lisp_Object process)
837 {
838 CHECK_PROCESS (process);
839 if (XPROCESS (process)->raw_status_new)
840 update_status (XPROCESS (process));
841 if (CONSP (XPROCESS (process)->status))
842 return XCAR (XCDR (XPROCESS (process)->status));
843 return make_number (0);
844 }
845
846 DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
847 doc: /* Return the process id of PROCESS.
848 This is the pid of the external process which PROCESS uses or talks to.
849 For a network connection, this value is nil. */)
850 (register Lisp_Object process)
851 {
852 /* Assignment to EMACS_INT stops GCC whining about limited range of
853 data type. */
854 EMACS_INT pid;
855
856 CHECK_PROCESS (process);
857 pid = XPROCESS (process)->pid;
858 return (pid ? make_fixnum_or_float (pid) : Qnil);
859 }
860
861 DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
862 doc: /* Return the name of PROCESS, as a string.
863 This is the name of the program invoked in PROCESS,
864 possibly modified to make it unique among process names. */)
865 (register Lisp_Object process)
866 {
867 CHECK_PROCESS (process);
868 return XPROCESS (process)->name;
869 }
870
871 DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
872 doc: /* Return the command that was executed to start PROCESS.
873 This is a list of strings, the first string being the program executed
874 and the rest of the strings being the arguments given to it.
875 For a network or serial process, this is nil (process is running) or t
876 \(process is stopped). */)
877 (register Lisp_Object process)
878 {
879 CHECK_PROCESS (process);
880 return XPROCESS (process)->command;
881 }
882
883 DEFUN ("process-tty-name", Fprocess_tty_name, Sprocess_tty_name, 1, 1, 0,
884 doc: /* Return the name of the terminal PROCESS uses, or nil if none.
885 This is the terminal that the process itself reads and writes on,
886 not the name of the pty that Emacs uses to talk with that terminal. */)
887 (register Lisp_Object process)
888 {
889 CHECK_PROCESS (process);
890 return XPROCESS (process)->tty_name;
891 }
892
893 DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
894 2, 2, 0,
895 doc: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil).
896 Return BUFFER. */)
897 (register Lisp_Object process, Lisp_Object buffer)
898 {
899 struct Lisp_Process *p;
900
901 CHECK_PROCESS (process);
902 if (!NILP (buffer))
903 CHECK_BUFFER (buffer);
904 p = XPROCESS (process);
905 p->buffer = buffer;
906 if (NETCONN1_P (p) || SERIALCONN1_P (p))
907 p->childp = Fplist_put (p->childp, QCbuffer, buffer);
908 setup_process_coding_systems (process);
909 return buffer;
910 }
911
912 DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
913 1, 1, 0,
914 doc: /* Return the buffer PROCESS is associated with.
915 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
916 (register Lisp_Object process)
917 {
918 CHECK_PROCESS (process);
919 return XPROCESS (process)->buffer;
920 }
921
922 DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
923 1, 1, 0,
924 doc: /* Return the marker for the end of the last output from PROCESS. */)
925 (register Lisp_Object process)
926 {
927 CHECK_PROCESS (process);
928 return XPROCESS (process)->mark;
929 }
930
931 DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
932 2, 2, 0,
933 doc: /* Give PROCESS the filter function FILTER; nil means no filter.
934 A value of t means stop accepting output from the process.
935
936 When a process has a filter, its buffer is not used for output.
937 Instead, each time it does output, the entire string of output is
938 passed to the filter.
939
940 The filter gets two arguments: the process and the string of output.
941 The string argument is normally a multibyte string, except:
942 - if the process' input coding system is no-conversion or raw-text,
943 it is a unibyte string (the non-converted input), or else
944 - if `default-enable-multibyte-characters' is nil, it is a unibyte
945 string (the result of converting the decoded input multibyte
946 string to unibyte with `string-make-unibyte'). */)
947 (register Lisp_Object process, Lisp_Object filter)
948 {
949 struct Lisp_Process *p;
950
951 CHECK_PROCESS (process);
952 p = XPROCESS (process);
953
954 /* Don't signal an error if the process' input file descriptor
955 is closed. This could make debugging Lisp more difficult,
956 for example when doing something like
957
958 (setq process (start-process ...))
959 (debug)
960 (set-process-filter process ...) */
961
962 if (p->infd >= 0)
963 {
964 if (EQ (filter, Qt) && !EQ (p->status, Qlisten))
965 {
966 FD_CLR (p->infd, &input_wait_mask);
967 FD_CLR (p->infd, &non_keyboard_wait_mask);
968 }
969 else if (EQ (p->filter, Qt)
970 /* Network or serial process not stopped: */
971 && !EQ (p->command, Qt))
972 {
973 FD_SET (p->infd, &input_wait_mask);
974 FD_SET (p->infd, &non_keyboard_wait_mask);
975 }
976 }
977
978 p->filter = filter;
979 if (NETCONN1_P (p) || SERIALCONN1_P (p))
980 p->childp = Fplist_put (p->childp, QCfilter, filter);
981 setup_process_coding_systems (process);
982 return filter;
983 }
984
985 DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
986 1, 1, 0,
987 doc: /* Returns the filter function of PROCESS; nil if none.
988 See `set-process-filter' for more info on filter functions. */)
989 (register Lisp_Object process)
990 {
991 CHECK_PROCESS (process);
992 return XPROCESS (process)->filter;
993 }
994
995 DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
996 2, 2, 0,
997 doc: /* Give PROCESS the sentinel SENTINEL; nil for none.
998 The sentinel is called as a function when the process changes state.
999 It gets two arguments: the process, and a string describing the change. */)
1000 (register Lisp_Object process, Lisp_Object sentinel)
1001 {
1002 struct Lisp_Process *p;
1003
1004 CHECK_PROCESS (process);
1005 p = XPROCESS (process);
1006
1007 p->sentinel = sentinel;
1008 if (NETCONN1_P (p) || SERIALCONN1_P (p))
1009 p->childp = Fplist_put (p->childp, QCsentinel, sentinel);
1010 return sentinel;
1011 }
1012
1013 DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
1014 1, 1, 0,
1015 doc: /* Return the sentinel of PROCESS; nil if none.
1016 See `set-process-sentinel' for more info on sentinels. */)
1017 (register Lisp_Object process)
1018 {
1019 CHECK_PROCESS (process);
1020 return XPROCESS (process)->sentinel;
1021 }
1022
1023 DEFUN ("set-process-window-size", Fset_process_window_size,
1024 Sset_process_window_size, 3, 3, 0,
1025 doc: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
1026 (register Lisp_Object process, Lisp_Object height, Lisp_Object width)
1027 {
1028 CHECK_PROCESS (process);
1029 CHECK_NATNUM (height);
1030 CHECK_NATNUM (width);
1031
1032 if (XPROCESS (process)->infd < 0
1033 || set_window_size (XPROCESS (process)->infd,
1034 XINT (height), XINT (width)) <= 0)
1035 return Qnil;
1036 else
1037 return Qt;
1038 }
1039
1040 DEFUN ("set-process-inherit-coding-system-flag",
1041 Fset_process_inherit_coding_system_flag,
1042 Sset_process_inherit_coding_system_flag, 2, 2, 0,
1043 doc: /* Determine whether buffer of PROCESS will inherit coding-system.
1044 If the second argument FLAG is non-nil, then the variable
1045 `buffer-file-coding-system' of the buffer associated with PROCESS
1046 will be bound to the value of the coding system used to decode
1047 the process output.
1048
1049 This is useful when the coding system specified for the process buffer
1050 leaves either the character code conversion or the end-of-line conversion
1051 unspecified, or if the coding system used to decode the process output
1052 is more appropriate for saving the process buffer.
1053
1054 Binding the variable `inherit-process-coding-system' to non-nil before
1055 starting the process is an alternative way of setting the inherit flag
1056 for the process which will run. */)
1057 (register Lisp_Object process, Lisp_Object flag)
1058 {
1059 CHECK_PROCESS (process);
1060 XPROCESS (process)->inherit_coding_system_flag = !NILP (flag);
1061 return flag;
1062 }
1063
1064 DEFUN ("set-process-query-on-exit-flag",
1065 Fset_process_query_on_exit_flag, Sset_process_query_on_exit_flag,
1066 2, 2, 0,
1067 doc: /* Specify if query is needed for PROCESS when Emacs is exited.
1068 If the second argument FLAG is non-nil, Emacs will query the user before
1069 exiting or killing a buffer if PROCESS is running. */)
1070 (register Lisp_Object process, Lisp_Object flag)
1071 {
1072 CHECK_PROCESS (process);
1073 XPROCESS (process)->kill_without_query = NILP (flag);
1074 return flag;
1075 }
1076
1077 DEFUN ("process-query-on-exit-flag",
1078 Fprocess_query_on_exit_flag, Sprocess_query_on_exit_flag,
1079 1, 1, 0,
1080 doc: /* Return the current value of query-on-exit flag for PROCESS. */)
1081 (register Lisp_Object process)
1082 {
1083 CHECK_PROCESS (process);
1084 return (XPROCESS (process)->kill_without_query ? Qnil : Qt);
1085 }
1086
1087 #ifdef DATAGRAM_SOCKETS
1088 static Lisp_Object Fprocess_datagram_address (Lisp_Object);
1089 #endif
1090
1091 DEFUN ("process-contact", Fprocess_contact, Sprocess_contact,
1092 1, 2, 0,
1093 doc: /* Return the contact info of PROCESS; t for a real child.
1094 For a network or serial connection, the value depends on the optional
1095 KEY arg. If KEY is nil, value is a cons cell of the form (HOST
1096 SERVICE) for a network connection or (PORT SPEED) for a serial
1097 connection. If KEY is t, the complete contact information for the
1098 connection is returned, else the specific value for the keyword KEY is
1099 returned. See `make-network-process' or `make-serial-process' for a
1100 list of keywords. */)
1101 (register Lisp_Object process, Lisp_Object key)
1102 {
1103 Lisp_Object contact;
1104
1105 CHECK_PROCESS (process);
1106 contact = XPROCESS (process)->childp;
1107
1108 #ifdef DATAGRAM_SOCKETS
1109 if (DATAGRAM_CONN_P (process)
1110 && (EQ (key, Qt) || EQ (key, QCremote)))
1111 contact = Fplist_put (contact, QCremote,
1112 Fprocess_datagram_address (process));
1113 #endif
1114
1115 if ((!NETCONN_P (process) && !SERIALCONN_P (process)) || EQ (key, Qt))
1116 return contact;
1117 if (NILP (key) && NETCONN_P (process))
1118 return Fcons (Fplist_get (contact, QChost),
1119 Fcons (Fplist_get (contact, QCservice), Qnil));
1120 if (NILP (key) && SERIALCONN_P (process))
1121 return Fcons (Fplist_get (contact, QCport),
1122 Fcons (Fplist_get (contact, QCspeed), Qnil));
1123 return Fplist_get (contact, key);
1124 }
1125
1126 DEFUN ("process-plist", Fprocess_plist, Sprocess_plist,
1127 1, 1, 0,
1128 doc: /* Return the plist of PROCESS. */)
1129 (register Lisp_Object process)
1130 {
1131 CHECK_PROCESS (process);
1132 return XPROCESS (process)->plist;
1133 }
1134
1135 DEFUN ("set-process-plist", Fset_process_plist, Sset_process_plist,
1136 2, 2, 0,
1137 doc: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
1138 (register Lisp_Object process, Lisp_Object plist)
1139 {
1140 CHECK_PROCESS (process);
1141 CHECK_LIST (plist);
1142
1143 XPROCESS (process)->plist = plist;
1144 return plist;
1145 }
1146
1147 #if 0 /* Turned off because we don't currently record this info
1148 in the process. Perhaps add it. */
1149 DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0,
1150 doc: /* Return the connection type of PROCESS.
1151 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1152 a socket connection. */)
1153 (Lisp_Object process)
1154 {
1155 return XPROCESS (process)->type;
1156 }
1157 #endif
1158
1159 DEFUN ("process-type", Fprocess_type, Sprocess_type, 1, 1, 0,
1160 doc: /* Return the connection type of PROCESS.
1161 The value is either the symbol `real', `network', or `serial'.
1162 PROCESS may be a process, a buffer, the name of a process or buffer, or
1163 nil, indicating the current buffer's process. */)
1164 (Lisp_Object process)
1165 {
1166 Lisp_Object proc;
1167 proc = get_process (process);
1168 return XPROCESS (proc)->type;
1169 }
1170
1171 DEFUN ("format-network-address", Fformat_network_address, Sformat_network_address,
1172 1, 2, 0,
1173 doc: /* Convert network ADDRESS from internal format to a string.
1174 A 4 or 5 element vector represents an IPv4 address (with port number).
1175 An 8 or 9 element vector represents an IPv6 address (with port number).
1176 If optional second argument OMIT-PORT is non-nil, don't include a port
1177 number in the string, even when present in ADDRESS.
1178 Returns nil if format of ADDRESS is invalid. */)
1179 (Lisp_Object address, Lisp_Object omit_port)
1180 {
1181 if (NILP (address))
1182 return Qnil;
1183
1184 if (STRINGP (address)) /* AF_LOCAL */
1185 return address;
1186
1187 if (VECTORP (address)) /* AF_INET or AF_INET6 */
1188 {
1189 register struct Lisp_Vector *p = XVECTOR (address);
1190 EMACS_INT size = p->header.size;
1191 Lisp_Object args[10];
1192 int nargs, i;
1193
1194 if (size == 4 || (size == 5 && !NILP (omit_port)))
1195 {
1196 args[0] = build_string ("%d.%d.%d.%d");
1197 nargs = 4;
1198 }
1199 else if (size == 5)
1200 {
1201 args[0] = build_string ("%d.%d.%d.%d:%d");
1202 nargs = 5;
1203 }
1204 else if (size == 8 || (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 (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 (ptrdiff_t nargs, Lisp_Object *args)
1277 {
1278 Lisp_Object buffer, name, program, proc, current_dir, tem;
1279 register unsigned char **new_argv;
1280 ptrdiff_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 static 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->header.size == 5)
2068 {
2069 *familyp = AF_INET;
2070 return sizeof (struct sockaddr_in);
2071 }
2072 #ifdef AF_INET6
2073 else if (p->header.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->header.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 (ptrdiff_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 (ptrdiff_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 (ptrdiff_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, "%"pI"d", 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 ptrdiff_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; flags >>= 1, fnum++)
3727 {
3728 if (flags & 1)
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 static 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 /* Skip the `select' call if input is available and we're
4483 waiting for keyboard input or a cell change (which can be
4484 triggered by processing X events). In the latter case, set
4485 nfds to 1 to avoid breaking the loop. */
4486 no_avail = 0;
4487 if ((read_kbd || !NILP (wait_for_cell))
4488 && detect_input_pending ())
4489 {
4490 nfds = read_kbd ? 0 : 1;
4491 no_avail = 1;
4492 }
4493
4494 if (!no_avail)
4495 {
4496
4497 #ifdef ADAPTIVE_READ_BUFFERING
4498 /* Set the timeout for adaptive read buffering if any
4499 process has non-zero read_output_skip and non-zero
4500 read_output_delay, and we are not reading output for a
4501 specific wait_channel. It is not executed if
4502 Vprocess_adaptive_read_buffering is nil. */
4503 if (process_output_skip && check_delay > 0)
4504 {
4505 int usecs = EMACS_USECS (timeout);
4506 if (EMACS_SECS (timeout) > 0 || usecs > READ_OUTPUT_DELAY_MAX)
4507 usecs = READ_OUTPUT_DELAY_MAX;
4508 for (channel = 0; check_delay > 0 && channel <= max_process_desc; channel++)
4509 {
4510 proc = chan_process[channel];
4511 if (NILP (proc))
4512 continue;
4513 /* Find minimum non-zero read_output_delay among the
4514 processes with non-zero read_output_skip. */
4515 if (XPROCESS (proc)->read_output_delay > 0)
4516 {
4517 check_delay--;
4518 if (!XPROCESS (proc)->read_output_skip)
4519 continue;
4520 FD_CLR (channel, &Available);
4521 XPROCESS (proc)->read_output_skip = 0;
4522 if (XPROCESS (proc)->read_output_delay < usecs)
4523 usecs = XPROCESS (proc)->read_output_delay;
4524 }
4525 }
4526 EMACS_SET_SECS_USECS (timeout, 0, usecs);
4527 process_output_skip = 0;
4528 }
4529 #endif
4530 #if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
4531 nfds = xg_select
4532 #elif defined (HAVE_NS)
4533 nfds = ns_select
4534 #else
4535 nfds = select
4536 #endif
4537 (max (max_process_desc, max_input_desc) + 1,
4538 &Available,
4539 (check_write ? &Writeok : (SELECT_TYPE *)0),
4540 (SELECT_TYPE *)0, &timeout);
4541
4542 #ifdef HAVE_GNUTLS
4543 /* GnuTLS buffers data internally. In lowat mode it leaves
4544 some data in the TCP buffers so that select works, but
4545 with custom pull/push functions we need to check if some
4546 data is available in the buffers manually. */
4547 if (nfds == 0 &&
4548 wait_proc && wait_proc->gnutls_p /* Check for valid process. */
4549 /* Do we have pending data? */
4550 && emacs_gnutls_record_check_pending (wait_proc->gnutls_state) > 0)
4551 {
4552 nfds = 1;
4553 /* Set to Available. */
4554 FD_SET (wait_proc->infd, &Available);
4555 }
4556 #endif
4557 }
4558
4559 xerrno = errno;
4560
4561 /* Make C-g and alarm signals set flags again */
4562 clear_waiting_for_input ();
4563
4564 /* If we woke up due to SIGWINCH, actually change size now. */
4565 do_pending_window_change (0);
4566
4567 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
4568 /* We wanted the full specified time, so return now. */
4569 break;
4570 if (nfds < 0)
4571 {
4572 if (xerrno == EINTR)
4573 no_avail = 1;
4574 else if (xerrno == EBADF)
4575 {
4576 #ifdef AIX
4577 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
4578 the child's closure of the pts gives the parent a SIGHUP, and
4579 the ptc file descriptor is automatically closed,
4580 yielding EBADF here or at select() call above.
4581 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
4582 in m/ibmrt-aix.h), and here we just ignore the select error.
4583 Cleanup occurs c/o status_notify after SIGCLD. */
4584 no_avail = 1; /* Cannot depend on values returned */
4585 #else
4586 abort ();
4587 #endif
4588 }
4589 else
4590 error ("select error: %s", emacs_strerror (xerrno));
4591 }
4592
4593 if (no_avail)
4594 {
4595 FD_ZERO (&Available);
4596 check_write = 0;
4597 }
4598
4599 #if 0 /* When polling is used, interrupt_input is 0,
4600 so get_input_pending should read the input.
4601 So this should not be needed. */
4602 /* If we are using polling for input,
4603 and we see input available, make it get read now.
4604 Otherwise it might not actually get read for a second.
4605 And on hpux, since we turn off polling in wait_reading_process_output,
4606 it might never get read at all if we don't spend much time
4607 outside of wait_reading_process_output. */
4608 if (read_kbd && interrupt_input
4609 && keyboard_bit_set (&Available)
4610 && input_polling_used ())
4611 kill (getpid (), SIGALRM);
4612 #endif
4613
4614 /* Check for keyboard input */
4615 /* If there is any, return immediately
4616 to give it higher priority than subprocesses */
4617
4618 if (read_kbd != 0)
4619 {
4620 int old_timers_run = timers_run;
4621 struct buffer *old_buffer = current_buffer;
4622 Lisp_Object old_window = selected_window;
4623 int leave = 0;
4624
4625 if (detect_input_pending_run_timers (do_display))
4626 {
4627 swallow_events (do_display);
4628 if (detect_input_pending_run_timers (do_display))
4629 leave = 1;
4630 }
4631
4632 /* If a timer has run, this might have changed buffers
4633 an alike. Make read_key_sequence aware of that. */
4634 if (timers_run != old_timers_run
4635 && waiting_for_user_input_p == -1
4636 && (old_buffer != current_buffer
4637 || !EQ (old_window, selected_window)))
4638 record_asynch_buffer_change ();
4639
4640 if (leave)
4641 break;
4642 }
4643
4644 /* If there is unread keyboard input, also return. */
4645 if (read_kbd != 0
4646 && requeued_events_pending_p ())
4647 break;
4648
4649 /* If we are not checking for keyboard input now,
4650 do process events (but don't run any timers).
4651 This is so that X events will be processed.
4652 Otherwise they may have to wait until polling takes place.
4653 That would causes delays in pasting selections, for example.
4654
4655 (We used to do this only if wait_for_cell.) */
4656 if (read_kbd == 0 && detect_input_pending ())
4657 {
4658 swallow_events (do_display);
4659 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
4660 if (detect_input_pending ())
4661 break;
4662 #endif
4663 }
4664
4665 /* Exit now if the cell we're waiting for became non-nil. */
4666 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4667 break;
4668
4669 #ifdef SIGIO
4670 /* If we think we have keyboard input waiting, but didn't get SIGIO,
4671 go read it. This can happen with X on BSD after logging out.
4672 In that case, there really is no input and no SIGIO,
4673 but select says there is input. */
4674
4675 if (read_kbd && interrupt_input
4676 && keyboard_bit_set (&Available) && ! noninteractive)
4677 kill (getpid (), SIGIO);
4678 #endif
4679
4680 if (! wait_proc)
4681 got_some_input |= nfds > 0;
4682
4683 /* If checking input just got us a size-change event from X,
4684 obey it now if we should. */
4685 if (read_kbd || ! NILP (wait_for_cell))
4686 do_pending_window_change (0);
4687
4688 /* Check for data from a process. */
4689 if (no_avail || nfds == 0)
4690 continue;
4691
4692 for (channel = 0; channel <= max_input_desc; ++channel)
4693 {
4694 struct fd_callback_data *d = &fd_callback_info[channel];
4695 if (FD_ISSET (channel, &Available)
4696 && d->func != 0
4697 && (d->condition & FOR_READ) != 0)
4698 d->func (channel, d->data, 1);
4699 if (FD_ISSET (channel, &write_mask)
4700 && d->func != 0
4701 && (d->condition & FOR_WRITE) != 0)
4702 d->func (channel, d->data, 0);
4703 }
4704
4705 for (channel = 0; channel <= max_process_desc; channel++)
4706 {
4707 if (FD_ISSET (channel, &Available)
4708 && FD_ISSET (channel, &non_keyboard_wait_mask)
4709 && !FD_ISSET (channel, &non_process_wait_mask))
4710 {
4711 int nread;
4712
4713 /* If waiting for this channel, arrange to return as
4714 soon as no more input to be processed. No more
4715 waiting. */
4716 if (wait_channel == channel)
4717 {
4718 wait_channel = -1;
4719 time_limit = -1;
4720 got_some_input = 1;
4721 }
4722 proc = chan_process[channel];
4723 if (NILP (proc))
4724 continue;
4725
4726 /* If this is a server stream socket, accept connection. */
4727 if (EQ (XPROCESS (proc)->status, Qlisten))
4728 {
4729 server_accept_connection (proc, channel);
4730 continue;
4731 }
4732
4733 /* Read data from the process, starting with our
4734 buffered-ahead character if we have one. */
4735
4736 nread = read_process_output (proc, channel);
4737 if (nread > 0)
4738 {
4739 /* Since read_process_output can run a filter,
4740 which can call accept-process-output,
4741 don't try to read from any other processes
4742 before doing the select again. */
4743 FD_ZERO (&Available);
4744
4745 if (do_display)
4746 redisplay_preserve_echo_area (12);
4747 }
4748 #ifdef EWOULDBLOCK
4749 else if (nread == -1 && errno == EWOULDBLOCK)
4750 ;
4751 #endif
4752 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
4753 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
4754 #ifdef O_NONBLOCK
4755 else if (nread == -1 && errno == EAGAIN)
4756 ;
4757 #else
4758 #ifdef O_NDELAY
4759 else if (nread == -1 && errno == EAGAIN)
4760 ;
4761 /* Note that we cannot distinguish between no input
4762 available now and a closed pipe.
4763 With luck, a closed pipe will be accompanied by
4764 subprocess termination and SIGCHLD. */
4765 else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc))
4766 ;
4767 #endif /* O_NDELAY */
4768 #endif /* O_NONBLOCK */
4769 #ifdef HAVE_PTYS
4770 /* On some OSs with ptys, when the process on one end of
4771 a pty exits, the other end gets an error reading with
4772 errno = EIO instead of getting an EOF (0 bytes read).
4773 Therefore, if we get an error reading and errno =
4774 EIO, just continue, because the child process has
4775 exited and should clean itself up soon (e.g. when we
4776 get a SIGCHLD).
4777
4778 However, it has been known to happen that the SIGCHLD
4779 got lost. So raise the signal again just in case.
4780 It can't hurt. */
4781 else if (nread == -1 && errno == EIO)
4782 {
4783 /* Clear the descriptor now, so we only raise the
4784 signal once. Don't do this if `process' is only
4785 a pty. */
4786 if (XPROCESS (proc)->pid != -2)
4787 {
4788 FD_CLR (channel, &input_wait_mask);
4789 FD_CLR (channel, &non_keyboard_wait_mask);
4790
4791 kill (getpid (), SIGCHLD);
4792 }
4793 }
4794 #endif /* HAVE_PTYS */
4795 /* If we can detect process termination, don't consider the process
4796 gone just because its pipe is closed. */
4797 #ifdef SIGCHLD
4798 else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc))
4799 ;
4800 #endif
4801 else
4802 {
4803 /* Preserve status of processes already terminated. */
4804 XPROCESS (proc)->tick = ++process_tick;
4805 deactivate_process (proc);
4806 if (XPROCESS (proc)->raw_status_new)
4807 update_status (XPROCESS (proc));
4808 if (EQ (XPROCESS (proc)->status, Qrun))
4809 XPROCESS (proc)->status
4810 = Fcons (Qexit, Fcons (make_number (256), Qnil));
4811 }
4812 }
4813 #ifdef NON_BLOCKING_CONNECT
4814 if (FD_ISSET (channel, &Writeok)
4815 && FD_ISSET (channel, &connect_wait_mask))
4816 {
4817 struct Lisp_Process *p;
4818
4819 FD_CLR (channel, &connect_wait_mask);
4820 FD_CLR (channel, &write_mask);
4821 if (--num_pending_connects < 0)
4822 abort ();
4823
4824 proc = chan_process[channel];
4825 if (NILP (proc))
4826 continue;
4827
4828 p = XPROCESS (proc);
4829
4830 #ifdef GNU_LINUX
4831 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
4832 So only use it on systems where it is known to work. */
4833 {
4834 socklen_t xlen = sizeof (xerrno);
4835 if (getsockopt (channel, SOL_SOCKET, SO_ERROR, &xerrno, &xlen))
4836 xerrno = errno;
4837 }
4838 #else
4839 {
4840 struct sockaddr pname;
4841 int pnamelen = sizeof (pname);
4842
4843 /* If connection failed, getpeername will fail. */
4844 xerrno = 0;
4845 if (getpeername (channel, &pname, &pnamelen) < 0)
4846 {
4847 /* Obtain connect failure code through error slippage. */
4848 char dummy;
4849 xerrno = errno;
4850 if (errno == ENOTCONN && read (channel, &dummy, 1) < 0)
4851 xerrno = errno;
4852 }
4853 }
4854 #endif
4855 if (xerrno)
4856 {
4857 p->tick = ++process_tick;
4858 p->status = Fcons (Qfailed, Fcons (make_number (xerrno), Qnil));
4859 deactivate_process (proc);
4860 }
4861 else
4862 {
4863 p->status = Qrun;
4864 /* Execute the sentinel here. If we had relied on
4865 status_notify to do it later, it will read input
4866 from the process before calling the sentinel. */
4867 exec_sentinel (proc, build_string ("open\n"));
4868 if (!EQ (p->filter, Qt) && !EQ (p->command, Qt))
4869 {
4870 FD_SET (p->infd, &input_wait_mask);
4871 FD_SET (p->infd, &non_keyboard_wait_mask);
4872 }
4873 }
4874 }
4875 #endif /* NON_BLOCKING_CONNECT */
4876 } /* end for each file descriptor */
4877 } /* end while exit conditions not met */
4878
4879 unbind_to (count, Qnil);
4880
4881 /* If calling from keyboard input, do not quit
4882 since we want to return C-g as an input character.
4883 Otherwise, do pending quit if requested. */
4884 if (read_kbd >= 0)
4885 {
4886 /* Prevent input_pending from remaining set if we quit. */
4887 clear_input_pending ();
4888 QUIT;
4889 }
4890
4891 return got_some_input;
4892 }
4893 \f
4894 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
4895
4896 static Lisp_Object
4897 read_process_output_call (Lisp_Object fun_and_args)
4898 {
4899 return apply1 (XCAR (fun_and_args), XCDR (fun_and_args));
4900 }
4901
4902 static Lisp_Object
4903 read_process_output_error_handler (Lisp_Object error_val)
4904 {
4905 cmd_error_internal (error_val, "error in process filter: ");
4906 Vinhibit_quit = Qt;
4907 update_echo_area ();
4908 Fsleep_for (make_number (2), Qnil);
4909 return Qt;
4910 }
4911
4912 /* Read pending output from the process channel,
4913 starting with our buffered-ahead character if we have one.
4914 Yield number of decoded characters read.
4915
4916 This function reads at most 4096 characters.
4917 If you want to read all available subprocess output,
4918 you must call it repeatedly until it returns zero.
4919
4920 The characters read are decoded according to PROC's coding-system
4921 for decoding. */
4922
4923 static int
4924 read_process_output (Lisp_Object proc, register int channel)
4925 {
4926 register ssize_t nbytes;
4927 char *chars;
4928 register Lisp_Object outstream;
4929 register struct Lisp_Process *p = XPROCESS (proc);
4930 register EMACS_INT opoint;
4931 struct coding_system *coding = proc_decode_coding_system[channel];
4932 int carryover = p->decoding_carryover;
4933 int readmax = 4096;
4934 int count = SPECPDL_INDEX ();
4935 Lisp_Object odeactivate;
4936
4937 chars = (char *) alloca (carryover + readmax);
4938 if (carryover)
4939 /* See the comment above. */
4940 memcpy (chars, SDATA (p->decoding_buf), carryover);
4941
4942 #ifdef DATAGRAM_SOCKETS
4943 /* We have a working select, so proc_buffered_char is always -1. */
4944 if (DATAGRAM_CHAN_P (channel))
4945 {
4946 socklen_t len = datagram_address[channel].len;
4947 nbytes = recvfrom (channel, chars + carryover, readmax,
4948 0, datagram_address[channel].sa, &len);
4949 }
4950 else
4951 #endif
4952 {
4953 int buffered = 0 <= proc_buffered_char[channel];
4954 if (buffered)
4955 {
4956 chars[carryover] = proc_buffered_char[channel];
4957 proc_buffered_char[channel] = -1;
4958 }
4959 #ifdef HAVE_GNUTLS
4960 if (XPROCESS (proc)->gnutls_p)
4961 nbytes = emacs_gnutls_read (XPROCESS (proc),
4962 chars + carryover + buffered,
4963 readmax - buffered);
4964 else
4965 #endif
4966 nbytes = emacs_read (channel, chars + carryover + buffered,
4967 readmax - buffered);
4968 #ifdef ADAPTIVE_READ_BUFFERING
4969 if (nbytes > 0 && p->adaptive_read_buffering)
4970 {
4971 int delay = p->read_output_delay;
4972 if (nbytes < 256)
4973 {
4974 if (delay < READ_OUTPUT_DELAY_MAX_MAX)
4975 {
4976 if (delay == 0)
4977 process_output_delay_count++;
4978 delay += READ_OUTPUT_DELAY_INCREMENT * 2;
4979 }
4980 }
4981 else if (delay > 0 && nbytes == readmax - buffered)
4982 {
4983 delay -= READ_OUTPUT_DELAY_INCREMENT;
4984 if (delay == 0)
4985 process_output_delay_count--;
4986 }
4987 p->read_output_delay = delay;
4988 if (delay)
4989 {
4990 p->read_output_skip = 1;
4991 process_output_skip = 1;
4992 }
4993 }
4994 #endif
4995 nbytes += buffered;
4996 nbytes += buffered && nbytes <= 0;
4997 }
4998
4999 p->decoding_carryover = 0;
5000
5001 /* At this point, NBYTES holds number of bytes just received
5002 (including the one in proc_buffered_char[channel]). */
5003 if (nbytes <= 0)
5004 {
5005 if (nbytes < 0 || coding->mode & CODING_MODE_LAST_BLOCK)
5006 return nbytes;
5007 coding->mode |= CODING_MODE_LAST_BLOCK;
5008 }
5009
5010 /* Now set NBYTES how many bytes we must decode. */
5011 nbytes += carryover;
5012
5013 odeactivate = Vdeactivate_mark;
5014 /* There's no good reason to let process filters change the current
5015 buffer, and many callers of accept-process-output, sit-for, and
5016 friends don't expect current-buffer to be changed from under them. */
5017 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
5018
5019 /* Read and dispose of the process output. */
5020 outstream = p->filter;
5021 if (!NILP (outstream))
5022 {
5023 Lisp_Object text;
5024 int outer_running_asynch_code = running_asynch_code;
5025 int waiting = waiting_for_user_input_p;
5026
5027 /* No need to gcpro these, because all we do with them later
5028 is test them for EQness, and none of them should be a string. */
5029 #if 0
5030 Lisp_Object obuffer, okeymap;
5031 XSETBUFFER (obuffer, current_buffer);
5032 okeymap = BVAR (current_buffer, keymap);
5033 #endif
5034
5035 /* We inhibit quit here instead of just catching it so that
5036 hitting ^G when a filter happens to be running won't screw
5037 it up. */
5038 specbind (Qinhibit_quit, Qt);
5039 specbind (Qlast_nonmenu_event, Qt);
5040
5041 /* In case we get recursively called,
5042 and we already saved the match data nonrecursively,
5043 save the same match data in safely recursive fashion. */
5044 if (outer_running_asynch_code)
5045 {
5046 Lisp_Object tem;
5047 /* Don't clobber the CURRENT match data, either! */
5048 tem = Fmatch_data (Qnil, Qnil, Qnil);
5049 restore_search_regs ();
5050 record_unwind_save_match_data ();
5051 Fset_match_data (tem, Qt);
5052 }
5053
5054 /* For speed, if a search happens within this code,
5055 save the match data in a special nonrecursive fashion. */
5056 running_asynch_code = 1;
5057
5058 decode_coding_c_string (coding, (unsigned char *) chars, nbytes, Qt);
5059 text = coding->dst_object;
5060 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5061 /* A new coding system might be found. */
5062 if (!EQ (p->decode_coding_system, Vlast_coding_system_used))
5063 {
5064 p->decode_coding_system = Vlast_coding_system_used;
5065
5066 /* Don't call setup_coding_system for
5067 proc_decode_coding_system[channel] here. It is done in
5068 detect_coding called via decode_coding above. */
5069
5070 /* If a coding system for encoding is not yet decided, we set
5071 it as the same as coding-system for decoding.
5072
5073 But, before doing that we must check if
5074 proc_encode_coding_system[p->outfd] surely points to a
5075 valid memory because p->outfd will be changed once EOF is
5076 sent to the process. */
5077 if (NILP (p->encode_coding_system)
5078 && proc_encode_coding_system[p->outfd])
5079 {
5080 p->encode_coding_system
5081 = coding_inherit_eol_type (Vlast_coding_system_used, Qnil);
5082 setup_coding_system (p->encode_coding_system,
5083 proc_encode_coding_system[p->outfd]);
5084 }
5085 }
5086
5087 if (coding->carryover_bytes > 0)
5088 {
5089 if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
5090 p->decoding_buf = make_uninit_string (coding->carryover_bytes);
5091 memcpy (SDATA (p->decoding_buf), coding->carryover,
5092 coding->carryover_bytes);
5093 p->decoding_carryover = coding->carryover_bytes;
5094 }
5095 if (SBYTES (text) > 0)
5096 internal_condition_case_1 (read_process_output_call,
5097 Fcons (outstream,
5098 Fcons (proc, Fcons (text, Qnil))),
5099 !NILP (Vdebug_on_error) ? Qnil : Qerror,
5100 read_process_output_error_handler);
5101
5102 /* If we saved the match data nonrecursively, restore it now. */
5103 restore_search_regs ();
5104 running_asynch_code = outer_running_asynch_code;
5105
5106 /* Restore waiting_for_user_input_p as it was
5107 when we were called, in case the filter clobbered it. */
5108 waiting_for_user_input_p = waiting;
5109
5110 #if 0 /* Call record_asynch_buffer_change unconditionally,
5111 because we might have changed minor modes or other things
5112 that affect key bindings. */
5113 if (! EQ (Fcurrent_buffer (), obuffer)
5114 || ! EQ (current_buffer->keymap, okeymap))
5115 #endif
5116 /* But do it only if the caller is actually going to read events.
5117 Otherwise there's no need to make him wake up, and it could
5118 cause trouble (for example it would make sit_for return). */
5119 if (waiting_for_user_input_p == -1)
5120 record_asynch_buffer_change ();
5121 }
5122
5123 /* If no filter, write into buffer if it isn't dead. */
5124 else if (!NILP (p->buffer) && !NILP (BVAR (XBUFFER (p->buffer), name)))
5125 {
5126 Lisp_Object old_read_only;
5127 EMACS_INT old_begv, old_zv;
5128 EMACS_INT old_begv_byte, old_zv_byte;
5129 EMACS_INT before, before_byte;
5130 EMACS_INT opoint_byte;
5131 Lisp_Object text;
5132 struct buffer *b;
5133
5134 Fset_buffer (p->buffer);
5135 opoint = PT;
5136 opoint_byte = PT_BYTE;
5137 old_read_only = BVAR (current_buffer, read_only);
5138 old_begv = BEGV;
5139 old_zv = ZV;
5140 old_begv_byte = BEGV_BYTE;
5141 old_zv_byte = ZV_BYTE;
5142
5143 BVAR (current_buffer, read_only) = Qnil;
5144
5145 /* Insert new output into buffer
5146 at the current end-of-output marker,
5147 thus preserving logical ordering of input and output. */
5148 if (XMARKER (p->mark)->buffer)
5149 SET_PT_BOTH (clip_to_bounds (BEGV, marker_position (p->mark), ZV),
5150 clip_to_bounds (BEGV_BYTE, marker_byte_position (p->mark),
5151 ZV_BYTE));
5152 else
5153 SET_PT_BOTH (ZV, ZV_BYTE);
5154 before = PT;
5155 before_byte = PT_BYTE;
5156
5157 /* If the output marker is outside of the visible region, save
5158 the restriction and widen. */
5159 if (! (BEGV <= PT && PT <= ZV))
5160 Fwiden ();
5161
5162 decode_coding_c_string (coding, (unsigned char *) chars, nbytes, Qt);
5163 text = coding->dst_object;
5164 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5165 /* A new coding system might be found. See the comment in the
5166 similar code in the previous `if' block. */
5167 if (!EQ (p->decode_coding_system, Vlast_coding_system_used))
5168 {
5169 p->decode_coding_system = Vlast_coding_system_used;
5170 if (NILP (p->encode_coding_system)
5171 && proc_encode_coding_system[p->outfd])
5172 {
5173 p->encode_coding_system
5174 = coding_inherit_eol_type (Vlast_coding_system_used, Qnil);
5175 setup_coding_system (p->encode_coding_system,
5176 proc_encode_coding_system[p->outfd]);
5177 }
5178 }
5179 if (coding->carryover_bytes > 0)
5180 {
5181 if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
5182 p->decoding_buf = make_uninit_string (coding->carryover_bytes);
5183 memcpy (SDATA (p->decoding_buf), coding->carryover,
5184 coding->carryover_bytes);
5185 p->decoding_carryover = coding->carryover_bytes;
5186 }
5187 /* Adjust the multibyteness of TEXT to that of the buffer. */
5188 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
5189 != ! STRING_MULTIBYTE (text))
5190 text = (STRING_MULTIBYTE (text)
5191 ? Fstring_as_unibyte (text)
5192 : Fstring_to_multibyte (text));
5193 /* Insert before markers in case we are inserting where
5194 the buffer's mark is, and the user's next command is Meta-y. */
5195 insert_from_string_before_markers (text, 0, 0,
5196 SCHARS (text), SBYTES (text), 0);
5197
5198 /* Make sure the process marker's position is valid when the
5199 process buffer is changed in the signal_after_change above.
5200 W3 is known to do that. */
5201 if (BUFFERP (p->buffer)
5202 && (b = XBUFFER (p->buffer), b != current_buffer))
5203 set_marker_both (p->mark, p->buffer, BUF_PT (b), BUF_PT_BYTE (b));
5204 else
5205 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
5206
5207 update_mode_lines++;
5208
5209 /* Make sure opoint and the old restrictions
5210 float ahead of any new text just as point would. */
5211 if (opoint >= before)
5212 {
5213 opoint += PT - before;
5214 opoint_byte += PT_BYTE - before_byte;
5215 }
5216 if (old_begv > before)
5217 {
5218 old_begv += PT - before;
5219 old_begv_byte += PT_BYTE - before_byte;
5220 }
5221 if (old_zv >= before)
5222 {
5223 old_zv += PT - before;
5224 old_zv_byte += PT_BYTE - before_byte;
5225 }
5226
5227 /* If the restriction isn't what it should be, set it. */
5228 if (old_begv != BEGV || old_zv != ZV)
5229 Fnarrow_to_region (make_number (old_begv), make_number (old_zv));
5230
5231
5232 BVAR (current_buffer, read_only) = old_read_only;
5233 SET_PT_BOTH (opoint, opoint_byte);
5234 }
5235 /* Handling the process output should not deactivate the mark. */
5236 Vdeactivate_mark = odeactivate;
5237
5238 unbind_to (count, Qnil);
5239 return nbytes;
5240 }
5241 \f
5242 /* Sending data to subprocess */
5243
5244 static jmp_buf send_process_frame;
5245 static Lisp_Object process_sent_to;
5246
5247 #ifndef FORWARD_SIGNAL_TO_MAIN_THREAD
5248 static void send_process_trap (int) NO_RETURN;
5249 #endif
5250
5251 static void
5252 send_process_trap (int ignore)
5253 {
5254 SIGNAL_THREAD_CHECK (SIGPIPE);
5255 sigunblock (sigmask (SIGPIPE));
5256 longjmp (send_process_frame, 1);
5257 }
5258
5259 /* Send some data to process PROC.
5260 BUF is the beginning of the data; LEN is the number of characters.
5261 OBJECT is the Lisp object that the data comes from. If OBJECT is
5262 nil or t, it means that the data comes from C string.
5263
5264 If OBJECT is not nil, the data is encoded by PROC's coding-system
5265 for encoding before it is sent.
5266
5267 This function can evaluate Lisp code and can garbage collect. */
5268
5269 static void
5270 send_process (volatile Lisp_Object proc, const char *volatile buf,
5271 volatile EMACS_INT len, volatile Lisp_Object object)
5272 {
5273 /* Use volatile to protect variables from being clobbered by longjmp. */
5274 struct Lisp_Process *p = XPROCESS (proc);
5275 ssize_t rv;
5276 struct coding_system *coding;
5277 struct gcpro gcpro1;
5278 void (*volatile old_sigpipe) (int);
5279
5280 GCPRO1 (object);
5281
5282 if (p->raw_status_new)
5283 update_status (p);
5284 if (! EQ (p->status, Qrun))
5285 error ("Process %s not running", SDATA (p->name));
5286 if (p->outfd < 0)
5287 error ("Output file descriptor of %s is closed", SDATA (p->name));
5288
5289 coding = proc_encode_coding_system[p->outfd];
5290 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5291
5292 if ((STRINGP (object) && STRING_MULTIBYTE (object))
5293 || (BUFFERP (object)
5294 && !NILP (BVAR (XBUFFER (object), enable_multibyte_characters)))
5295 || EQ (object, Qt))
5296 {
5297 p->encode_coding_system
5298 = complement_process_encoding_system (p->encode_coding_system);
5299 if (!EQ (Vlast_coding_system_used, p->encode_coding_system))
5300 {
5301 /* The coding system for encoding was changed to raw-text
5302 because we sent a unibyte text previously. Now we are
5303 sending a multibyte text, thus we must encode it by the
5304 original coding system specified for the current process.
5305
5306 Another reason we comming here is that the coding system
5307 was just complemented and new one was returned by
5308 complement_process_encoding_system. */
5309 setup_coding_system (p->encode_coding_system, coding);
5310 Vlast_coding_system_used = p->encode_coding_system;
5311 }
5312 coding->src_multibyte = 1;
5313 }
5314 else
5315 {
5316 /* For sending a unibyte text, character code conversion should
5317 not take place but EOL conversion should. So, setup raw-text
5318 or one of the subsidiary if we have not yet done it. */
5319 if (CODING_REQUIRE_ENCODING (coding))
5320 {
5321 if (CODING_REQUIRE_FLUSHING (coding))
5322 {
5323 /* But, before changing the coding, we must flush out data. */
5324 coding->mode |= CODING_MODE_LAST_BLOCK;
5325 send_process (proc, "", 0, Qt);
5326 coding->mode &= CODING_MODE_LAST_BLOCK;
5327 }
5328 setup_coding_system (raw_text_coding_system
5329 (Vlast_coding_system_used),
5330 coding);
5331 coding->src_multibyte = 0;
5332 }
5333 }
5334 coding->dst_multibyte = 0;
5335
5336 if (CODING_REQUIRE_ENCODING (coding))
5337 {
5338 coding->dst_object = Qt;
5339 if (BUFFERP (object))
5340 {
5341 EMACS_INT from_byte, from, to;
5342 EMACS_INT save_pt, save_pt_byte;
5343 struct buffer *cur = current_buffer;
5344
5345 set_buffer_internal (XBUFFER (object));
5346 save_pt = PT, save_pt_byte = PT_BYTE;
5347
5348 from_byte = PTR_BYTE_POS ((unsigned char *) buf);
5349 from = BYTE_TO_CHAR (from_byte);
5350 to = BYTE_TO_CHAR (from_byte + len);
5351 TEMP_SET_PT_BOTH (from, from_byte);
5352 encode_coding_object (coding, object, from, from_byte,
5353 to, from_byte + len, Qt);
5354 TEMP_SET_PT_BOTH (save_pt, save_pt_byte);
5355 set_buffer_internal (cur);
5356 }
5357 else if (STRINGP (object))
5358 {
5359 encode_coding_object (coding, object, 0, 0, SCHARS (object),
5360 SBYTES (object), Qt);
5361 }
5362 else
5363 {
5364 coding->dst_object = make_unibyte_string (buf, len);
5365 coding->produced = len;
5366 }
5367
5368 len = coding->produced;
5369 object = coding->dst_object;
5370 buf = SSDATA (object);
5371 }
5372
5373 if (pty_max_bytes == 0)
5374 {
5375 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
5376 pty_max_bytes = fpathconf (p->outfd, _PC_MAX_CANON);
5377 if (pty_max_bytes < 0)
5378 pty_max_bytes = 250;
5379 #else
5380 pty_max_bytes = 250;
5381 #endif
5382 /* Deduct one, to leave space for the eof. */
5383 pty_max_bytes--;
5384 }
5385
5386 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
5387 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
5388 when returning with longjmp despite being declared volatile. */
5389 if (!setjmp (send_process_frame))
5390 {
5391 p = XPROCESS (proc); /* Repair any setjmp clobbering. */
5392
5393 process_sent_to = proc;
5394 while (len > 0)
5395 {
5396 EMACS_INT this = len;
5397
5398 /* Send this batch, using one or more write calls. */
5399 while (this > 0)
5400 {
5401 EMACS_INT written = 0;
5402 int outfd = p->outfd;
5403 old_sigpipe = (void (*) (int)) signal (SIGPIPE, send_process_trap);
5404 #ifdef DATAGRAM_SOCKETS
5405 if (DATAGRAM_CHAN_P (outfd))
5406 {
5407 rv = sendto (outfd, buf, this,
5408 0, datagram_address[outfd].sa,
5409 datagram_address[outfd].len);
5410 if (0 <= rv)
5411 written = rv;
5412 else if (errno == EMSGSIZE)
5413 {
5414 signal (SIGPIPE, old_sigpipe);
5415 report_file_error ("sending datagram",
5416 Fcons (proc, Qnil));
5417 }
5418 }
5419 else
5420 #endif
5421 {
5422 #ifdef HAVE_GNUTLS
5423 if (XPROCESS (proc)->gnutls_p)
5424 written = emacs_gnutls_write (XPROCESS (proc),
5425 buf, this);
5426 else
5427 #endif
5428 written = emacs_write (outfd, buf, this);
5429 rv = (written ? 0 : -1);
5430 #ifdef ADAPTIVE_READ_BUFFERING
5431 if (p->read_output_delay > 0
5432 && p->adaptive_read_buffering == 1)
5433 {
5434 p->read_output_delay = 0;
5435 process_output_delay_count--;
5436 p->read_output_skip = 0;
5437 }
5438 #endif
5439 }
5440 signal (SIGPIPE, old_sigpipe);
5441
5442 if (rv < 0)
5443 {
5444 if (0
5445 #ifdef EWOULDBLOCK
5446 || errno == EWOULDBLOCK
5447 #endif
5448 #ifdef EAGAIN
5449 || errno == EAGAIN
5450 #endif
5451 )
5452 /* Buffer is full. Wait, accepting input;
5453 that may allow the program
5454 to finish doing output and read more. */
5455 {
5456 EMACS_INT offset = 0;
5457
5458 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
5459 /* A gross hack to work around a bug in FreeBSD.
5460 In the following sequence, read(2) returns
5461 bogus data:
5462
5463 write(2) 1022 bytes
5464 write(2) 954 bytes, get EAGAIN
5465 read(2) 1024 bytes in process_read_output
5466 read(2) 11 bytes in process_read_output
5467
5468 That is, read(2) returns more bytes than have
5469 ever been written successfully. The 1033 bytes
5470 read are the 1022 bytes written successfully
5471 after processing (for example with CRs added if
5472 the terminal is set up that way which it is
5473 here). The same bytes will be seen again in a
5474 later read(2), without the CRs. */
5475
5476 if (errno == EAGAIN)
5477 {
5478 int flags = FWRITE;
5479 ioctl (p->outfd, TIOCFLUSH, &flags);
5480 }
5481 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5482
5483 /* Running filters might relocate buffers or strings.
5484 Arrange to relocate BUF. */
5485 if (BUFFERP (object))
5486 offset = BUF_PTR_BYTE_POS (XBUFFER (object),
5487 (unsigned char *) buf);
5488 else if (STRINGP (object))
5489 offset = buf - SSDATA (object);
5490
5491 #ifdef EMACS_HAS_USECS
5492 wait_reading_process_output (0, 20000, 0, 0, Qnil, NULL, 0);
5493 #else
5494 wait_reading_process_output (1, 0, 0, 0, Qnil, NULL, 0);
5495 #endif
5496
5497 if (BUFFERP (object))
5498 buf = (char *) BUF_BYTE_ADDRESS (XBUFFER (object),
5499 offset);
5500 else if (STRINGP (object))
5501 buf = offset + SSDATA (object);
5502 }
5503 else
5504 /* This is a real error. */
5505 report_file_error ("writing to process", Fcons (proc, Qnil));
5506 }
5507 buf += written;
5508 len -= written;
5509 this -= written;
5510 }
5511 }
5512 }
5513 else
5514 {
5515 signal (SIGPIPE, old_sigpipe);
5516 proc = process_sent_to;
5517 p = XPROCESS (proc);
5518 p->raw_status_new = 0;
5519 p->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
5520 p->tick = ++process_tick;
5521 deactivate_process (proc);
5522 error ("SIGPIPE raised on process %s; closed it", SDATA (p->name));
5523 }
5524
5525 UNGCPRO;
5526 }
5527
5528 DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
5529 3, 3, 0,
5530 doc: /* Send current contents of region as input to PROCESS.
5531 PROCESS may be a process, a buffer, the name of a process or buffer, or
5532 nil, indicating the current buffer's process.
5533 Called from program, takes three arguments, PROCESS, START and END.
5534 If the region is more than 500 characters long,
5535 it is sent in several bunches. This may happen even for shorter regions.
5536 Output from processes can arrive in between bunches. */)
5537 (Lisp_Object process, Lisp_Object start, Lisp_Object end)
5538 {
5539 Lisp_Object proc;
5540 EMACS_INT start1, end1;
5541
5542 proc = get_process (process);
5543 validate_region (&start, &end);
5544
5545 if (XINT (start) < GPT && XINT (end) > GPT)
5546 move_gap (XINT (start));
5547
5548 start1 = CHAR_TO_BYTE (XINT (start));
5549 end1 = CHAR_TO_BYTE (XINT (end));
5550 send_process (proc, (char *) BYTE_POS_ADDR (start1), end1 - start1,
5551 Fcurrent_buffer ());
5552
5553 return Qnil;
5554 }
5555
5556 DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
5557 2, 2, 0,
5558 doc: /* Send PROCESS the contents of STRING as input.
5559 PROCESS may be a process, a buffer, the name of a process or buffer, or
5560 nil, indicating the current buffer's process.
5561 If STRING is more than 500 characters long,
5562 it is sent in several bunches. This may happen even for shorter strings.
5563 Output from processes can arrive in between bunches. */)
5564 (Lisp_Object process, Lisp_Object string)
5565 {
5566 Lisp_Object proc;
5567 CHECK_STRING (string);
5568 proc = get_process (process);
5569 send_process (proc, SSDATA (string),
5570 SBYTES (string), string);
5571 return Qnil;
5572 }
5573 \f
5574 /* Return the foreground process group for the tty/pty that
5575 the process P uses. */
5576 static int
5577 emacs_get_tty_pgrp (struct Lisp_Process *p)
5578 {
5579 int gid = -1;
5580
5581 #ifdef TIOCGPGRP
5582 if (ioctl (p->infd, TIOCGPGRP, &gid) == -1 && ! NILP (p->tty_name))
5583 {
5584 int fd;
5585 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
5586 master side. Try the slave side. */
5587 fd = emacs_open (SSDATA (p->tty_name), O_RDONLY, 0);
5588
5589 if (fd != -1)
5590 {
5591 ioctl (fd, TIOCGPGRP, &gid);
5592 emacs_close (fd);
5593 }
5594 }
5595 #endif /* defined (TIOCGPGRP ) */
5596
5597 return gid;
5598 }
5599
5600 DEFUN ("process-running-child-p", Fprocess_running_child_p,
5601 Sprocess_running_child_p, 0, 1, 0,
5602 doc: /* Return t if PROCESS has given the terminal to a child.
5603 If the operating system does not make it possible to find out,
5604 return t unconditionally. */)
5605 (Lisp_Object process)
5606 {
5607 /* Initialize in case ioctl doesn't exist or gives an error,
5608 in a way that will cause returning t. */
5609 int gid;
5610 Lisp_Object proc;
5611 struct Lisp_Process *p;
5612
5613 proc = get_process (process);
5614 p = XPROCESS (proc);
5615
5616 if (!EQ (p->type, Qreal))
5617 error ("Process %s is not a subprocess",
5618 SDATA (p->name));
5619 if (p->infd < 0)
5620 error ("Process %s is not active",
5621 SDATA (p->name));
5622
5623 gid = emacs_get_tty_pgrp (p);
5624
5625 if (gid == p->pid)
5626 return Qnil;
5627 return Qt;
5628 }
5629 \f
5630 /* send a signal number SIGNO to PROCESS.
5631 If CURRENT_GROUP is t, that means send to the process group
5632 that currently owns the terminal being used to communicate with PROCESS.
5633 This is used for various commands in shell mode.
5634 If CURRENT_GROUP is lambda, that means send to the process group
5635 that currently owns the terminal, but only if it is NOT the shell itself.
5636
5637 If NOMSG is zero, insert signal-announcements into process's buffers
5638 right away.
5639
5640 If we can, we try to signal PROCESS by sending control characters
5641 down the pty. This allows us to signal inferiors who have changed
5642 their uid, for which killpg would return an EPERM error. */
5643
5644 static void
5645 process_send_signal (Lisp_Object process, int signo, Lisp_Object current_group,
5646 int nomsg)
5647 {
5648 Lisp_Object proc;
5649 register struct Lisp_Process *p;
5650 int gid;
5651 int no_pgrp = 0;
5652
5653 proc = get_process (process);
5654 p = XPROCESS (proc);
5655
5656 if (!EQ (p->type, Qreal))
5657 error ("Process %s is not a subprocess",
5658 SDATA (p->name));
5659 if (p->infd < 0)
5660 error ("Process %s is not active",
5661 SDATA (p->name));
5662
5663 if (!p->pty_flag)
5664 current_group = Qnil;
5665
5666 /* If we are using pgrps, get a pgrp number and make it negative. */
5667 if (NILP (current_group))
5668 /* Send the signal to the shell's process group. */
5669 gid = p->pid;
5670 else
5671 {
5672 #ifdef SIGNALS_VIA_CHARACTERS
5673 /* If possible, send signals to the entire pgrp
5674 by sending an input character to it. */
5675
5676 struct termios t;
5677 cc_t *sig_char = NULL;
5678
5679 tcgetattr (p->infd, &t);
5680
5681 switch (signo)
5682 {
5683 case SIGINT:
5684 sig_char = &t.c_cc[VINTR];
5685 break;
5686
5687 case SIGQUIT:
5688 sig_char = &t.c_cc[VQUIT];
5689 break;
5690
5691 case SIGTSTP:
5692 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
5693 sig_char = &t.c_cc[VSWTCH];
5694 #else
5695 sig_char = &t.c_cc[VSUSP];
5696 #endif
5697 break;
5698 }
5699
5700 if (sig_char && *sig_char != CDISABLE)
5701 {
5702 send_process (proc, (char *) sig_char, 1, Qnil);
5703 return;
5704 }
5705 /* If we can't send the signal with a character,
5706 fall through and send it another way. */
5707
5708 /* The code above may fall through if it can't
5709 handle the signal. */
5710 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
5711
5712 #ifdef TIOCGPGRP
5713 /* Get the current pgrp using the tty itself, if we have that.
5714 Otherwise, use the pty to get the pgrp.
5715 On pfa systems, saka@pfu.fujitsu.co.JP writes:
5716 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
5717 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
5718 His patch indicates that if TIOCGPGRP returns an error, then
5719 we should just assume that p->pid is also the process group id. */
5720
5721 gid = emacs_get_tty_pgrp (p);
5722
5723 if (gid == -1)
5724 /* If we can't get the information, assume
5725 the shell owns the tty. */
5726 gid = p->pid;
5727
5728 /* It is not clear whether anything really can set GID to -1.
5729 Perhaps on some system one of those ioctls can or could do so.
5730 Or perhaps this is vestigial. */
5731 if (gid == -1)
5732 no_pgrp = 1;
5733 #else /* ! defined (TIOCGPGRP ) */
5734 /* Can't select pgrps on this system, so we know that
5735 the child itself heads the pgrp. */
5736 gid = p->pid;
5737 #endif /* ! defined (TIOCGPGRP ) */
5738
5739 /* If current_group is lambda, and the shell owns the terminal,
5740 don't send any signal. */
5741 if (EQ (current_group, Qlambda) && gid == p->pid)
5742 return;
5743 }
5744
5745 switch (signo)
5746 {
5747 #ifdef SIGCONT
5748 case SIGCONT:
5749 p->raw_status_new = 0;
5750 p->status = Qrun;
5751 p->tick = ++process_tick;
5752 if (!nomsg)
5753 {
5754 status_notify (NULL);
5755 redisplay_preserve_echo_area (13);
5756 }
5757 break;
5758 #endif /* ! defined (SIGCONT) */
5759 case SIGINT:
5760 case SIGQUIT:
5761 case SIGKILL:
5762 flush_pending_output (p->infd);
5763 break;
5764 }
5765
5766 /* If we don't have process groups, send the signal to the immediate
5767 subprocess. That isn't really right, but it's better than any
5768 obvious alternative. */
5769 if (no_pgrp)
5770 {
5771 kill (p->pid, signo);
5772 return;
5773 }
5774
5775 /* gid may be a pid, or minus a pgrp's number */
5776 #ifdef TIOCSIGSEND
5777 if (!NILP (current_group))
5778 {
5779 if (ioctl (p->infd, TIOCSIGSEND, signo) == -1)
5780 EMACS_KILLPG (gid, signo);
5781 }
5782 else
5783 {
5784 gid = - p->pid;
5785 kill (gid, signo);
5786 }
5787 #else /* ! defined (TIOCSIGSEND) */
5788 EMACS_KILLPG (gid, signo);
5789 #endif /* ! defined (TIOCSIGSEND) */
5790 }
5791
5792 DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
5793 doc: /* Interrupt process PROCESS.
5794 PROCESS may be a process, a buffer, or the name of a process or buffer.
5795 No arg or nil means current buffer's process.
5796 Second arg CURRENT-GROUP non-nil means send signal to
5797 the current process-group of the process's controlling terminal
5798 rather than to the process's own process group.
5799 If the process is a shell, this means interrupt current subjob
5800 rather than the shell.
5801
5802 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
5803 don't send the signal. */)
5804 (Lisp_Object process, Lisp_Object current_group)
5805 {
5806 process_send_signal (process, SIGINT, current_group, 0);
5807 return process;
5808 }
5809
5810 DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
5811 doc: /* Kill process PROCESS. May be process or name of one.
5812 See function `interrupt-process' for more details on usage. */)
5813 (Lisp_Object process, Lisp_Object current_group)
5814 {
5815 process_send_signal (process, SIGKILL, current_group, 0);
5816 return process;
5817 }
5818
5819 DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
5820 doc: /* Send QUIT signal to process PROCESS. May be process or name of one.
5821 See function `interrupt-process' for more details on usage. */)
5822 (Lisp_Object process, Lisp_Object current_group)
5823 {
5824 process_send_signal (process, SIGQUIT, current_group, 0);
5825 return process;
5826 }
5827
5828 DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
5829 doc: /* Stop 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, inhibit 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 (NILP (p->command)
5841 && p->infd >= 0)
5842 {
5843 FD_CLR (p->infd, &input_wait_mask);
5844 FD_CLR (p->infd, &non_keyboard_wait_mask);
5845 }
5846 p->command = Qt;
5847 return process;
5848 }
5849 #ifndef SIGTSTP
5850 error ("No SIGTSTP support");
5851 #else
5852 process_send_signal (process, SIGTSTP, current_group, 0);
5853 #endif
5854 return process;
5855 }
5856
5857 DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
5858 doc: /* Continue process PROCESS. May be process or name of one.
5859 See function `interrupt-process' for more details on usage.
5860 If PROCESS is a network or serial process, resume handling of incoming
5861 traffic. */)
5862 (Lisp_Object process, Lisp_Object current_group)
5863 {
5864 if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process)))
5865 {
5866 struct Lisp_Process *p;
5867
5868 p = XPROCESS (process);
5869 if (EQ (p->command, Qt)
5870 && p->infd >= 0
5871 && (!EQ (p->filter, Qt) || EQ (p->status, Qlisten)))
5872 {
5873 FD_SET (p->infd, &input_wait_mask);
5874 FD_SET (p->infd, &non_keyboard_wait_mask);
5875 #ifdef WINDOWSNT
5876 if (fd_info[ p->infd ].flags & FILE_SERIAL)
5877 PurgeComm (fd_info[ p->infd ].hnd, PURGE_RXABORT | PURGE_RXCLEAR);
5878 #else /* not WINDOWSNT */
5879 tcflush (p->infd, TCIFLUSH);
5880 #endif /* not WINDOWSNT */
5881 }
5882 p->command = Qnil;
5883 return process;
5884 }
5885 #ifdef SIGCONT
5886 process_send_signal (process, SIGCONT, current_group, 0);
5887 #else
5888 error ("No SIGCONT support");
5889 #endif
5890 return process;
5891 }
5892
5893 DEFUN ("signal-process", Fsignal_process, Ssignal_process,
5894 2, 2, "sProcess (name or number): \nnSignal code: ",
5895 doc: /* Send PROCESS the signal with code SIGCODE.
5896 PROCESS may also be a number specifying the process id of the
5897 process to signal; in this case, the process need not be a child of
5898 this Emacs.
5899 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
5900 (Lisp_Object process, Lisp_Object sigcode)
5901 {
5902 pid_t pid;
5903
5904 if (INTEGERP (process))
5905 {
5906 pid = XINT (process);
5907 goto got_it;
5908 }
5909
5910 if (FLOATP (process))
5911 {
5912 pid = (pid_t) XFLOAT_DATA (process);
5913 goto got_it;
5914 }
5915
5916 if (STRINGP (process))
5917 {
5918 Lisp_Object tem;
5919 if (tem = Fget_process (process), NILP (tem))
5920 {
5921 pid = XINT (Fstring_to_number (process, make_number (10)));
5922 if (pid > 0)
5923 goto got_it;
5924 }
5925 process = tem;
5926 }
5927 else
5928 process = get_process (process);
5929
5930 if (NILP (process))
5931 return process;
5932
5933 CHECK_PROCESS (process);
5934 pid = XPROCESS (process)->pid;
5935 if (pid <= 0)
5936 error ("Cannot signal process %s", SDATA (XPROCESS (process)->name));
5937
5938 got_it:
5939
5940 #define parse_signal(NAME, VALUE) \
5941 else if (!xstrcasecmp (name, NAME)) \
5942 XSETINT (sigcode, VALUE)
5943
5944 if (INTEGERP (sigcode))
5945 ;
5946 else
5947 {
5948 char *name;
5949
5950 CHECK_SYMBOL (sigcode);
5951 name = SSDATA (SYMBOL_NAME (sigcode));
5952
5953 if (!strncmp (name, "SIG", 3) || !strncmp (name, "sig", 3))
5954 name += 3;
5955
5956 if (0)
5957 ;
5958 #ifdef SIGUSR1
5959 parse_signal ("usr1", SIGUSR1);
5960 #endif
5961 #ifdef SIGUSR2
5962 parse_signal ("usr2", SIGUSR2);
5963 #endif
5964 #ifdef SIGTERM
5965 parse_signal ("term", SIGTERM);
5966 #endif
5967 #ifdef SIGHUP
5968 parse_signal ("hup", SIGHUP);
5969 #endif
5970 #ifdef SIGINT
5971 parse_signal ("int", SIGINT);
5972 #endif
5973 #ifdef SIGQUIT
5974 parse_signal ("quit", SIGQUIT);
5975 #endif
5976 #ifdef SIGILL
5977 parse_signal ("ill", SIGILL);
5978 #endif
5979 #ifdef SIGABRT
5980 parse_signal ("abrt", SIGABRT);
5981 #endif
5982 #ifdef SIGEMT
5983 parse_signal ("emt", SIGEMT);
5984 #endif
5985 #ifdef SIGKILL
5986 parse_signal ("kill", SIGKILL);
5987 #endif
5988 #ifdef SIGFPE
5989 parse_signal ("fpe", SIGFPE);
5990 #endif
5991 #ifdef SIGBUS
5992 parse_signal ("bus", SIGBUS);
5993 #endif
5994 #ifdef SIGSEGV
5995 parse_signal ("segv", SIGSEGV);
5996 #endif
5997 #ifdef SIGSYS
5998 parse_signal ("sys", SIGSYS);
5999 #endif
6000 #ifdef SIGPIPE
6001 parse_signal ("pipe", SIGPIPE);
6002 #endif
6003 #ifdef SIGALRM
6004 parse_signal ("alrm", SIGALRM);
6005 #endif
6006 #ifdef SIGURG
6007 parse_signal ("urg", SIGURG);
6008 #endif
6009 #ifdef SIGSTOP
6010 parse_signal ("stop", SIGSTOP);
6011 #endif
6012 #ifdef SIGTSTP
6013 parse_signal ("tstp", SIGTSTP);
6014 #endif
6015 #ifdef SIGCONT
6016 parse_signal ("cont", SIGCONT);
6017 #endif
6018 #ifdef SIGCHLD
6019 parse_signal ("chld", SIGCHLD);
6020 #endif
6021 #ifdef SIGTTIN
6022 parse_signal ("ttin", SIGTTIN);
6023 #endif
6024 #ifdef SIGTTOU
6025 parse_signal ("ttou", SIGTTOU);
6026 #endif
6027 #ifdef SIGIO
6028 parse_signal ("io", SIGIO);
6029 #endif
6030 #ifdef SIGXCPU
6031 parse_signal ("xcpu", SIGXCPU);
6032 #endif
6033 #ifdef SIGXFSZ
6034 parse_signal ("xfsz", SIGXFSZ);
6035 #endif
6036 #ifdef SIGVTALRM
6037 parse_signal ("vtalrm", SIGVTALRM);
6038 #endif
6039 #ifdef SIGPROF
6040 parse_signal ("prof", SIGPROF);
6041 #endif
6042 #ifdef SIGWINCH
6043 parse_signal ("winch", SIGWINCH);
6044 #endif
6045 #ifdef SIGINFO
6046 parse_signal ("info", SIGINFO);
6047 #endif
6048 else
6049 error ("Undefined signal name %s", name);
6050 }
6051
6052 #undef parse_signal
6053
6054 return make_number (kill (pid, XINT (sigcode)));
6055 }
6056
6057 DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
6058 doc: /* Make PROCESS see end-of-file in its input.
6059 EOF comes after any text already sent to it.
6060 PROCESS may be a process, a buffer, the name of a process or buffer, or
6061 nil, indicating the current buffer's process.
6062 If PROCESS is a network connection, or is a process communicating
6063 through a pipe (as opposed to a pty), then you cannot send any more
6064 text to PROCESS after you call this function.
6065 If PROCESS is a serial process, wait until all output written to the
6066 process has been transmitted to the serial port. */)
6067 (Lisp_Object process)
6068 {
6069 Lisp_Object proc;
6070 struct coding_system *coding;
6071
6072 if (DATAGRAM_CONN_P (process))
6073 return process;
6074
6075 proc = get_process (process);
6076 coding = proc_encode_coding_system[XPROCESS (proc)->outfd];
6077
6078 /* Make sure the process is really alive. */
6079 if (XPROCESS (proc)->raw_status_new)
6080 update_status (XPROCESS (proc));
6081 if (! EQ (XPROCESS (proc)->status, Qrun))
6082 error ("Process %s not running", SDATA (XPROCESS (proc)->name));
6083
6084 if (CODING_REQUIRE_FLUSHING (coding))
6085 {
6086 coding->mode |= CODING_MODE_LAST_BLOCK;
6087 send_process (proc, "", 0, Qnil);
6088 }
6089
6090 if (XPROCESS (proc)->pty_flag)
6091 send_process (proc, "\004", 1, Qnil);
6092 else if (EQ (XPROCESS (proc)->type, Qserial))
6093 {
6094 #ifndef WINDOWSNT
6095 if (tcdrain (XPROCESS (proc)->outfd) != 0)
6096 error ("tcdrain() failed: %s", emacs_strerror (errno));
6097 #endif /* not WINDOWSNT */
6098 /* Do nothing on Windows because writes are blocking. */
6099 }
6100 else
6101 {
6102 int old_outfd, new_outfd;
6103
6104 #ifdef HAVE_SHUTDOWN
6105 /* If this is a network connection, or socketpair is used
6106 for communication with the subprocess, call shutdown to cause EOF.
6107 (In some old system, shutdown to socketpair doesn't work.
6108 Then we just can't win.) */
6109 if (EQ (XPROCESS (proc)->type, Qnetwork)
6110 || XPROCESS (proc)->outfd == XPROCESS (proc)->infd)
6111 shutdown (XPROCESS (proc)->outfd, 1);
6112 /* In case of socketpair, outfd == infd, so don't close it. */
6113 if (XPROCESS (proc)->outfd != XPROCESS (proc)->infd)
6114 emacs_close (XPROCESS (proc)->outfd);
6115 #else /* not HAVE_SHUTDOWN */
6116 emacs_close (XPROCESS (proc)->outfd);
6117 #endif /* not HAVE_SHUTDOWN */
6118 new_outfd = emacs_open (NULL_DEVICE, O_WRONLY, 0);
6119 if (new_outfd < 0)
6120 abort ();
6121 old_outfd = XPROCESS (proc)->outfd;
6122
6123 if (!proc_encode_coding_system[new_outfd])
6124 proc_encode_coding_system[new_outfd]
6125 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
6126 memcpy (proc_encode_coding_system[new_outfd],
6127 proc_encode_coding_system[old_outfd],
6128 sizeof (struct coding_system));
6129 memset (proc_encode_coding_system[old_outfd], 0,
6130 sizeof (struct coding_system));
6131
6132 XPROCESS (proc)->outfd = new_outfd;
6133 }
6134 return process;
6135 }
6136 \f
6137 /* On receipt of a signal that a child status has changed, loop asking
6138 about children with changed statuses until the system says there
6139 are no more.
6140
6141 All we do is change the status; we do not run sentinels or print
6142 notifications. That is saved for the next time keyboard input is
6143 done, in order to avoid timing errors.
6144
6145 ** WARNING: this can be called during garbage collection.
6146 Therefore, it must not be fooled by the presence of mark bits in
6147 Lisp objects.
6148
6149 ** USG WARNING: Although it is not obvious from the documentation
6150 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6151 signal() before executing at least one wait(), otherwise the
6152 handler will be called again, resulting in an infinite loop. The
6153 relevant portion of the documentation reads "SIGCLD signals will be
6154 queued and the signal-catching function will be continually
6155 reentered until the queue is empty". Invoking signal() causes the
6156 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6157 Inc.
6158
6159 ** Malloc WARNING: This should never call malloc either directly or
6160 indirectly; if it does, that is a bug */
6161
6162 #ifdef SIGCHLD
6163 static void
6164 sigchld_handler (int signo)
6165 {
6166 int old_errno = errno;
6167 Lisp_Object proc;
6168 struct Lisp_Process *p;
6169
6170 SIGNAL_THREAD_CHECK (signo);
6171
6172 while (1)
6173 {
6174 pid_t pid;
6175 int w;
6176 Lisp_Object tail;
6177
6178 #ifdef WNOHANG
6179 #ifndef WUNTRACED
6180 #define WUNTRACED 0
6181 #endif /* no WUNTRACED */
6182 /* Keep trying to get a status until we get a definitive result. */
6183 do
6184 {
6185 errno = 0;
6186 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
6187 }
6188 while (pid < 0 && errno == EINTR);
6189
6190 if (pid <= 0)
6191 {
6192 /* PID == 0 means no processes found, PID == -1 means a real
6193 failure. We have done all our job, so return. */
6194
6195 errno = old_errno;
6196 return;
6197 }
6198 #else
6199 pid = wait (&w);
6200 #endif /* no WNOHANG */
6201
6202 /* Find the process that signaled us, and record its status. */
6203
6204 /* The process can have been deleted by Fdelete_process. */
6205 for (tail = deleted_pid_list; CONSP (tail); tail = XCDR (tail))
6206 {
6207 Lisp_Object xpid = XCAR (tail);
6208 if ((INTEGERP (xpid) && pid == (pid_t) XINT (xpid))
6209 || (FLOATP (xpid) && pid == (pid_t) XFLOAT_DATA (xpid)))
6210 {
6211 XSETCAR (tail, Qnil);
6212 goto sigchld_end_of_loop;
6213 }
6214 }
6215
6216 /* Otherwise, if it is asynchronous, it is in Vprocess_alist. */
6217 p = 0;
6218 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6219 {
6220 proc = XCDR (XCAR (tail));
6221 p = XPROCESS (proc);
6222 if (EQ (p->type, Qreal) && p->pid == pid)
6223 break;
6224 p = 0;
6225 }
6226
6227 /* Look for an asynchronous process whose pid hasn't been filled
6228 in yet. */
6229 if (p == 0)
6230 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6231 {
6232 proc = XCDR (XCAR (tail));
6233 p = XPROCESS (proc);
6234 if (p->pid == -1)
6235 break;
6236 p = 0;
6237 }
6238
6239 /* Change the status of the process that was found. */
6240 if (p != 0)
6241 {
6242 int clear_desc_flag = 0;
6243
6244 p->tick = ++process_tick;
6245 p->raw_status = w;
6246 p->raw_status_new = 1;
6247
6248 /* If process has terminated, stop waiting for its output. */
6249 if ((WIFSIGNALED (w) || WIFEXITED (w))
6250 && p->infd >= 0)
6251 clear_desc_flag = 1;
6252
6253 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
6254 if (clear_desc_flag)
6255 {
6256 FD_CLR (p->infd, &input_wait_mask);
6257 FD_CLR (p->infd, &non_keyboard_wait_mask);
6258 }
6259
6260 /* Tell wait_reading_process_output that it needs to wake up and
6261 look around. */
6262 if (input_available_clear_time)
6263 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6264 }
6265
6266 /* There was no asynchronous process found for that pid: we have
6267 a synchronous process. */
6268 else
6269 {
6270 synch_process_alive = 0;
6271
6272 /* Report the status of the synchronous process. */
6273 if (WIFEXITED (w))
6274 synch_process_retcode = WRETCODE (w);
6275 else if (WIFSIGNALED (w))
6276 synch_process_termsig = WTERMSIG (w);
6277
6278 /* Tell wait_reading_process_output that it needs to wake up and
6279 look around. */
6280 if (input_available_clear_time)
6281 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6282 }
6283
6284 sigchld_end_of_loop:
6285 ;
6286
6287 /* On some systems, we must return right away.
6288 If any more processes want to signal us, we will
6289 get another signal.
6290 Otherwise (on systems that have WNOHANG), loop around
6291 to use up all the processes that have something to tell us. */
6292 #if (defined WINDOWSNT \
6293 || (defined USG && !defined GNU_LINUX \
6294 && !(defined HPUX && defined WNOHANG)))
6295 errno = old_errno;
6296 return;
6297 #endif /* USG, but not HPUX with WNOHANG */
6298 }
6299 }
6300 #endif /* SIGCHLD */
6301 \f
6302
6303 static Lisp_Object
6304 exec_sentinel_unwind (Lisp_Object data)
6305 {
6306 XPROCESS (XCAR (data))->sentinel = XCDR (data);
6307 return Qnil;
6308 }
6309
6310 static Lisp_Object
6311 exec_sentinel_error_handler (Lisp_Object error_val)
6312 {
6313 cmd_error_internal (error_val, "error in process sentinel: ");
6314 Vinhibit_quit = Qt;
6315 update_echo_area ();
6316 Fsleep_for (make_number (2), Qnil);
6317 return Qt;
6318 }
6319
6320 static void
6321 exec_sentinel (Lisp_Object proc, Lisp_Object reason)
6322 {
6323 Lisp_Object sentinel, odeactivate;
6324 register struct Lisp_Process *p = XPROCESS (proc);
6325 int count = SPECPDL_INDEX ();
6326 int outer_running_asynch_code = running_asynch_code;
6327 int waiting = waiting_for_user_input_p;
6328
6329 if (inhibit_sentinels)
6330 return;
6331
6332 /* No need to gcpro these, because all we do with them later
6333 is test them for EQness, and none of them should be a string. */
6334 odeactivate = Vdeactivate_mark;
6335 #if 0
6336 Lisp_Object obuffer, okeymap;
6337 XSETBUFFER (obuffer, current_buffer);
6338 okeymap = BVAR (current_buffer, keymap);
6339 #endif
6340
6341 /* There's no good reason to let sentinels change the current
6342 buffer, and many callers of accept-process-output, sit-for, and
6343 friends don't expect current-buffer to be changed from under them. */
6344 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
6345
6346 sentinel = p->sentinel;
6347 if (NILP (sentinel))
6348 return;
6349
6350 /* Zilch the sentinel while it's running, to avoid recursive invocations;
6351 assure that it gets restored no matter how the sentinel exits. */
6352 p->sentinel = Qnil;
6353 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
6354 /* Inhibit quit so that random quits don't screw up a running filter. */
6355 specbind (Qinhibit_quit, Qt);
6356 specbind (Qlast_nonmenu_event, Qt); /* Why? --Stef */
6357
6358 /* In case we get recursively called,
6359 and we already saved the match data nonrecursively,
6360 save the same match data in safely recursive fashion. */
6361 if (outer_running_asynch_code)
6362 {
6363 Lisp_Object tem;
6364 tem = Fmatch_data (Qnil, Qnil, Qnil);
6365 restore_search_regs ();
6366 record_unwind_save_match_data ();
6367 Fset_match_data (tem, Qt);
6368 }
6369
6370 /* For speed, if a search happens within this code,
6371 save the match data in a special nonrecursive fashion. */
6372 running_asynch_code = 1;
6373
6374 internal_condition_case_1 (read_process_output_call,
6375 Fcons (sentinel,
6376 Fcons (proc, Fcons (reason, Qnil))),
6377 !NILP (Vdebug_on_error) ? Qnil : Qerror,
6378 exec_sentinel_error_handler);
6379
6380 /* If we saved the match data nonrecursively, restore it now. */
6381 restore_search_regs ();
6382 running_asynch_code = outer_running_asynch_code;
6383
6384 Vdeactivate_mark = odeactivate;
6385
6386 /* Restore waiting_for_user_input_p as it was
6387 when we were called, in case the filter clobbered it. */
6388 waiting_for_user_input_p = waiting;
6389
6390 #if 0
6391 if (! EQ (Fcurrent_buffer (), obuffer)
6392 || ! EQ (current_buffer->keymap, okeymap))
6393 #endif
6394 /* But do it only if the caller is actually going to read events.
6395 Otherwise there's no need to make him wake up, and it could
6396 cause trouble (for example it would make sit_for return). */
6397 if (waiting_for_user_input_p == -1)
6398 record_asynch_buffer_change ();
6399
6400 unbind_to (count, Qnil);
6401 }
6402
6403 /* Report all recent events of a change in process status
6404 (either run the sentinel or output a message).
6405 This is usually done while Emacs is waiting for keyboard input
6406 but can be done at other times. */
6407
6408 static void
6409 status_notify (struct Lisp_Process *deleting_process)
6410 {
6411 register Lisp_Object proc, buffer;
6412 Lisp_Object tail, msg;
6413 struct gcpro gcpro1, gcpro2;
6414
6415 tail = Qnil;
6416 msg = Qnil;
6417 /* We need to gcpro tail; if read_process_output calls a filter
6418 which deletes a process and removes the cons to which tail points
6419 from Vprocess_alist, and then causes a GC, tail is an unprotected
6420 reference. */
6421 GCPRO2 (tail, msg);
6422
6423 /* Set this now, so that if new processes are created by sentinels
6424 that we run, we get called again to handle their status changes. */
6425 update_tick = process_tick;
6426
6427 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6428 {
6429 Lisp_Object symbol;
6430 register struct Lisp_Process *p;
6431
6432 proc = Fcdr (XCAR (tail));
6433 p = XPROCESS (proc);
6434
6435 if (p->tick != p->update_tick)
6436 {
6437 p->update_tick = p->tick;
6438
6439 /* If process is still active, read any output that remains. */
6440 while (! EQ (p->filter, Qt)
6441 && ! EQ (p->status, Qconnect)
6442 && ! EQ (p->status, Qlisten)
6443 /* Network or serial process not stopped: */
6444 && ! EQ (p->command, Qt)
6445 && p->infd >= 0
6446 && p != deleting_process
6447 && read_process_output (proc, p->infd) > 0);
6448
6449 buffer = p->buffer;
6450
6451 /* Get the text to use for the message. */
6452 if (p->raw_status_new)
6453 update_status (p);
6454 msg = status_message (p);
6455
6456 /* If process is terminated, deactivate it or delete it. */
6457 symbol = p->status;
6458 if (CONSP (p->status))
6459 symbol = XCAR (p->status);
6460
6461 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
6462 || EQ (symbol, Qclosed))
6463 {
6464 if (delete_exited_processes)
6465 remove_process (proc);
6466 else
6467 deactivate_process (proc);
6468 }
6469
6470 /* The actions above may have further incremented p->tick.
6471 So set p->update_tick again
6472 so that an error in the sentinel will not cause
6473 this code to be run again. */
6474 p->update_tick = p->tick;
6475 /* Now output the message suitably. */
6476 if (!NILP (p->sentinel))
6477 exec_sentinel (proc, msg);
6478 /* Don't bother with a message in the buffer
6479 when a process becomes runnable. */
6480 else if (!EQ (symbol, Qrun) && !NILP (buffer))
6481 {
6482 Lisp_Object tem;
6483 struct buffer *old = current_buffer;
6484 EMACS_INT opoint, opoint_byte;
6485 EMACS_INT before, before_byte;
6486
6487 /* Avoid error if buffer is deleted
6488 (probably that's why the process is dead, too) */
6489 if (NILP (BVAR (XBUFFER (buffer), name)))
6490 continue;
6491 Fset_buffer (buffer);
6492
6493 opoint = PT;
6494 opoint_byte = PT_BYTE;
6495 /* Insert new output into buffer
6496 at the current end-of-output marker,
6497 thus preserving logical ordering of input and output. */
6498 if (XMARKER (p->mark)->buffer)
6499 Fgoto_char (p->mark);
6500 else
6501 SET_PT_BOTH (ZV, ZV_BYTE);
6502
6503 before = PT;
6504 before_byte = PT_BYTE;
6505
6506 tem = BVAR (current_buffer, read_only);
6507 BVAR (current_buffer, read_only) = Qnil;
6508 insert_string ("\nProcess ");
6509 Finsert (1, &p->name);
6510 insert_string (" ");
6511 Finsert (1, &msg);
6512 BVAR (current_buffer, read_only) = tem;
6513 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
6514
6515 if (opoint >= before)
6516 SET_PT_BOTH (opoint + (PT - before),
6517 opoint_byte + (PT_BYTE - before_byte));
6518 else
6519 SET_PT_BOTH (opoint, opoint_byte);
6520
6521 set_buffer_internal (old);
6522 }
6523 }
6524 } /* end for */
6525
6526 update_mode_lines++; /* in case buffers use %s in mode-line-format */
6527 UNGCPRO;
6528 }
6529
6530 \f
6531 DEFUN ("set-process-coding-system", Fset_process_coding_system,
6532 Sset_process_coding_system, 1, 3, 0,
6533 doc: /* Set coding systems of PROCESS to DECODING and ENCODING.
6534 DECODING will be used to decode subprocess output and ENCODING to
6535 encode subprocess input. */)
6536 (register Lisp_Object process, Lisp_Object decoding, Lisp_Object encoding)
6537 {
6538 register struct Lisp_Process *p;
6539
6540 CHECK_PROCESS (process);
6541 p = XPROCESS (process);
6542 if (p->infd < 0)
6543 error ("Input file descriptor of %s closed", SDATA (p->name));
6544 if (p->outfd < 0)
6545 error ("Output file descriptor of %s closed", SDATA (p->name));
6546 Fcheck_coding_system (decoding);
6547 Fcheck_coding_system (encoding);
6548 encoding = coding_inherit_eol_type (encoding, Qnil);
6549 p->decode_coding_system = decoding;
6550 p->encode_coding_system = encoding;
6551 setup_process_coding_systems (process);
6552
6553 return Qnil;
6554 }
6555
6556 DEFUN ("process-coding-system",
6557 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0,
6558 doc: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
6559 (register Lisp_Object process)
6560 {
6561 CHECK_PROCESS (process);
6562 return Fcons (XPROCESS (process)->decode_coding_system,
6563 XPROCESS (process)->encode_coding_system);
6564 }
6565
6566 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte,
6567 Sset_process_filter_multibyte, 2, 2, 0,
6568 doc: /* Set multibyteness of the strings given to PROCESS's filter.
6569 If FLAG is non-nil, the filter is given multibyte strings.
6570 If FLAG is nil, the filter is given unibyte strings. In this case,
6571 all character code conversion except for end-of-line conversion is
6572 suppressed. */)
6573 (Lisp_Object process, Lisp_Object flag)
6574 {
6575 register struct Lisp_Process *p;
6576
6577 CHECK_PROCESS (process);
6578 p = XPROCESS (process);
6579 if (NILP (flag))
6580 p->decode_coding_system = raw_text_coding_system (p->decode_coding_system);
6581 setup_process_coding_systems (process);
6582
6583 return Qnil;
6584 }
6585
6586 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p,
6587 Sprocess_filter_multibyte_p, 1, 1, 0,
6588 doc: /* Return t if a multibyte string is given to PROCESS's filter.*/)
6589 (Lisp_Object process)
6590 {
6591 register struct Lisp_Process *p;
6592 struct coding_system *coding;
6593
6594 CHECK_PROCESS (process);
6595 p = XPROCESS (process);
6596 coding = proc_decode_coding_system[p->infd];
6597 return (CODING_FOR_UNIBYTE (coding) ? Qnil : Qt);
6598 }
6599
6600
6601 \f
6602
6603 # ifdef HAVE_GPM
6604
6605 void
6606 add_gpm_wait_descriptor (int desc)
6607 {
6608 add_keyboard_wait_descriptor (desc);
6609 }
6610
6611 void
6612 delete_gpm_wait_descriptor (int desc)
6613 {
6614 delete_keyboard_wait_descriptor (desc);
6615 }
6616
6617 # endif
6618
6619 # ifdef SIGIO
6620
6621 /* Return nonzero if *MASK has a bit set
6622 that corresponds to one of the keyboard input descriptors. */
6623
6624 static int
6625 keyboard_bit_set (fd_set *mask)
6626 {
6627 int fd;
6628
6629 for (fd = 0; fd <= max_input_desc; fd++)
6630 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask)
6631 && !FD_ISSET (fd, &non_keyboard_wait_mask))
6632 return 1;
6633
6634 return 0;
6635 }
6636 # endif
6637
6638 #else /* not subprocesses */
6639
6640 /* Defined on msdos.c. */
6641 extern int sys_select (int, SELECT_TYPE *, SELECT_TYPE *, SELECT_TYPE *,
6642 EMACS_TIME *);
6643
6644 /* Implementation of wait_reading_process_output, assuming that there
6645 are no subprocesses. Used only by the MS-DOS build.
6646
6647 Wait for timeout to elapse and/or keyboard input to be available.
6648
6649 time_limit is:
6650 timeout in seconds, or
6651 zero for no limit, or
6652 -1 means gobble data immediately available but don't wait for any.
6653
6654 read_kbd is a Lisp_Object:
6655 0 to ignore keyboard input, or
6656 1 to return when input is available, or
6657 -1 means caller will actually read the input, so don't throw to
6658 the quit handler.
6659
6660 see full version for other parameters. We know that wait_proc will
6661 always be NULL, since `subprocesses' isn't defined.
6662
6663 do_display != 0 means redisplay should be done to show subprocess
6664 output that arrives.
6665
6666 Return true if we received input from any process. */
6667
6668 int
6669 wait_reading_process_output (int time_limit, int microsecs, int read_kbd,
6670 int do_display,
6671 Lisp_Object wait_for_cell,
6672 struct Lisp_Process *wait_proc, int just_wait_proc)
6673 {
6674 register int nfds;
6675 EMACS_TIME end_time, timeout;
6676 SELECT_TYPE waitchannels;
6677 int xerrno;
6678
6679 /* What does time_limit really mean? */
6680 if (time_limit || microsecs)
6681 {
6682 EMACS_GET_TIME (end_time);
6683 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
6684 EMACS_ADD_TIME (end_time, end_time, timeout);
6685 }
6686
6687 /* Turn off periodic alarms (in case they are in use)
6688 and then turn off any other atimers,
6689 because the select emulator uses alarms. */
6690 stop_polling ();
6691 turn_on_atimers (0);
6692
6693 while (1)
6694 {
6695 int timeout_reduced_for_timers = 0;
6696
6697 /* If calling from keyboard input, do not quit
6698 since we want to return C-g as an input character.
6699 Otherwise, do pending quit if requested. */
6700 if (read_kbd >= 0)
6701 QUIT;
6702
6703 /* Exit now if the cell we're waiting for became non-nil. */
6704 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
6705 break;
6706
6707 /* Compute time from now till when time limit is up */
6708 /* Exit if already run out */
6709 if (time_limit == -1)
6710 {
6711 /* -1 specified for timeout means
6712 gobble output available now
6713 but don't wait at all. */
6714
6715 EMACS_SET_SECS_USECS (timeout, 0, 0);
6716 }
6717 else if (time_limit || microsecs)
6718 {
6719 EMACS_GET_TIME (timeout);
6720 EMACS_SUB_TIME (timeout, end_time, timeout);
6721 if (EMACS_TIME_NEG_P (timeout))
6722 break;
6723 }
6724 else
6725 {
6726 EMACS_SET_SECS_USECS (timeout, 100000, 0);
6727 }
6728
6729 /* If our caller will not immediately handle keyboard events,
6730 run timer events directly.
6731 (Callers that will immediately read keyboard events
6732 call timer_delay on their own.) */
6733 if (NILP (wait_for_cell))
6734 {
6735 EMACS_TIME timer_delay;
6736
6737 do
6738 {
6739 int old_timers_run = timers_run;
6740 timer_delay = timer_check ();
6741 if (timers_run != old_timers_run && do_display)
6742 /* We must retry, since a timer may have requeued itself
6743 and that could alter the time delay. */
6744 redisplay_preserve_echo_area (14);
6745 else
6746 break;
6747 }
6748 while (!detect_input_pending ());
6749
6750 /* If there is unread keyboard input, also return. */
6751 if (read_kbd != 0
6752 && requeued_events_pending_p ())
6753 break;
6754
6755 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
6756 {
6757 EMACS_TIME difference;
6758 EMACS_SUB_TIME (difference, timer_delay, timeout);
6759 if (EMACS_TIME_NEG_P (difference))
6760 {
6761 timeout = timer_delay;
6762 timeout_reduced_for_timers = 1;
6763 }
6764 }
6765 }
6766
6767 /* Cause C-g and alarm signals to take immediate action,
6768 and cause input available signals to zero out timeout. */
6769 if (read_kbd < 0)
6770 set_waiting_for_input (&timeout);
6771
6772 /* Wait till there is something to do. */
6773
6774 if (! read_kbd && NILP (wait_for_cell))
6775 FD_ZERO (&waitchannels);
6776 else
6777 FD_SET (0, &waitchannels);
6778
6779 /* If a frame has been newly mapped and needs updating,
6780 reprocess its display stuff. */
6781 if (frame_garbaged && do_display)
6782 {
6783 clear_waiting_for_input ();
6784 redisplay_preserve_echo_area (15);
6785 if (read_kbd < 0)
6786 set_waiting_for_input (&timeout);
6787 }
6788
6789 if (read_kbd && detect_input_pending ())
6790 {
6791 nfds = 0;
6792 FD_ZERO (&waitchannels);
6793 }
6794 else
6795 nfds = select (1, &waitchannels, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
6796 &timeout);
6797
6798 xerrno = errno;
6799
6800 /* Make C-g and alarm signals set flags again */
6801 clear_waiting_for_input ();
6802
6803 /* If we woke up due to SIGWINCH, actually change size now. */
6804 do_pending_window_change (0);
6805
6806 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
6807 /* We waited the full specified time, so return now. */
6808 break;
6809
6810 if (nfds == -1)
6811 {
6812 /* If the system call was interrupted, then go around the
6813 loop again. */
6814 if (xerrno == EINTR)
6815 FD_ZERO (&waitchannels);
6816 else
6817 error ("select error: %s", emacs_strerror (xerrno));
6818 }
6819
6820 /* Check for keyboard input */
6821
6822 if (read_kbd
6823 && detect_input_pending_run_timers (do_display))
6824 {
6825 swallow_events (do_display);
6826 if (detect_input_pending_run_timers (do_display))
6827 break;
6828 }
6829
6830 /* If there is unread keyboard input, also return. */
6831 if (read_kbd
6832 && requeued_events_pending_p ())
6833 break;
6834
6835 /* If wait_for_cell. check for keyboard input
6836 but don't run any timers.
6837 ??? (It seems wrong to me to check for keyboard
6838 input at all when wait_for_cell, but the code
6839 has been this way since July 1994.
6840 Try changing this after version 19.31.) */
6841 if (! NILP (wait_for_cell)
6842 && detect_input_pending ())
6843 {
6844 swallow_events (do_display);
6845 if (detect_input_pending ())
6846 break;
6847 }
6848
6849 /* Exit now if the cell we're waiting for became non-nil. */
6850 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
6851 break;
6852 }
6853
6854 start_polling ();
6855
6856 return 0;
6857 }
6858
6859 #endif /* not subprocesses */
6860
6861 /* The following functions are needed even if async subprocesses are
6862 not supported. Some of them are no-op stubs in that case. */
6863
6864 /* Add DESC to the set of keyboard input descriptors. */
6865
6866 void
6867 add_keyboard_wait_descriptor (int desc)
6868 {
6869 #ifdef subprocesses /* actually means "not MSDOS" */
6870 FD_SET (desc, &input_wait_mask);
6871 FD_SET (desc, &non_process_wait_mask);
6872 if (desc > max_input_desc)
6873 max_input_desc = desc;
6874 #endif
6875 }
6876
6877 /* From now on, do not expect DESC to give keyboard input. */
6878
6879 void
6880 delete_keyboard_wait_descriptor (int desc)
6881 {
6882 #ifdef subprocesses
6883 int fd;
6884 int lim = max_input_desc;
6885
6886 FD_CLR (desc, &input_wait_mask);
6887 FD_CLR (desc, &non_process_wait_mask);
6888
6889 if (desc == max_input_desc)
6890 for (fd = 0; fd < lim; fd++)
6891 if (FD_ISSET (fd, &input_wait_mask) || FD_ISSET (fd, &write_mask))
6892 max_input_desc = fd;
6893 #endif
6894 }
6895
6896 /* Setup coding systems of PROCESS. */
6897
6898 void
6899 setup_process_coding_systems (Lisp_Object process)
6900 {
6901 #ifdef subprocesses
6902 struct Lisp_Process *p = XPROCESS (process);
6903 int inch = p->infd;
6904 int outch = p->outfd;
6905 Lisp_Object coding_system;
6906
6907 if (inch < 0 || outch < 0)
6908 return;
6909
6910 if (!proc_decode_coding_system[inch])
6911 proc_decode_coding_system[inch]
6912 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
6913 coding_system = p->decode_coding_system;
6914 if (! NILP (p->filter))
6915 ;
6916 else if (BUFFERP (p->buffer))
6917 {
6918 if (NILP (BVAR (XBUFFER (p->buffer), enable_multibyte_characters)))
6919 coding_system = raw_text_coding_system (coding_system);
6920 }
6921 setup_coding_system (coding_system, proc_decode_coding_system[inch]);
6922
6923 if (!proc_encode_coding_system[outch])
6924 proc_encode_coding_system[outch]
6925 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
6926 setup_coding_system (p->encode_coding_system,
6927 proc_encode_coding_system[outch]);
6928 #endif
6929 }
6930
6931 /* Close all descriptors currently in use for communication
6932 with subprocess. This is used in a newly-forked subprocess
6933 to get rid of irrelevant descriptors. */
6934
6935 void
6936 close_process_descs (void)
6937 {
6938 #ifndef DOS_NT
6939 int i;
6940 for (i = 0; i < MAXDESC; i++)
6941 {
6942 Lisp_Object process;
6943 process = chan_process[i];
6944 if (!NILP (process))
6945 {
6946 int in = XPROCESS (process)->infd;
6947 int out = XPROCESS (process)->outfd;
6948 if (in >= 0)
6949 emacs_close (in);
6950 if (out >= 0 && in != out)
6951 emacs_close (out);
6952 }
6953 }
6954 #endif
6955 }
6956
6957 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
6958 doc: /* Return the (or a) process associated with BUFFER.
6959 BUFFER may be a buffer or the name of one. */)
6960 (register Lisp_Object buffer)
6961 {
6962 #ifdef subprocesses
6963 register Lisp_Object buf, tail, proc;
6964
6965 if (NILP (buffer)) return Qnil;
6966 buf = Fget_buffer (buffer);
6967 if (NILP (buf)) return Qnil;
6968
6969 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6970 {
6971 proc = Fcdr (XCAR (tail));
6972 if (PROCESSP (proc) && EQ (XPROCESS (proc)->buffer, buf))
6973 return proc;
6974 }
6975 #endif /* subprocesses */
6976 return Qnil;
6977 }
6978
6979 DEFUN ("process-inherit-coding-system-flag",
6980 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
6981 1, 1, 0,
6982 doc: /* Return the value of inherit-coding-system flag for PROCESS.
6983 If this flag is t, `buffer-file-coding-system' of the buffer
6984 associated with PROCESS will inherit the coding system used to decode
6985 the process output. */)
6986 (register Lisp_Object process)
6987 {
6988 #ifdef subprocesses
6989 CHECK_PROCESS (process);
6990 return XPROCESS (process)->inherit_coding_system_flag ? Qt : Qnil;
6991 #else
6992 /* Ignore the argument and return the value of
6993 inherit-process-coding-system. */
6994 return inherit_process_coding_system ? Qt : Qnil;
6995 #endif
6996 }
6997
6998 /* Kill all processes associated with `buffer'.
6999 If `buffer' is nil, kill all processes */
7000
7001 void
7002 kill_buffer_processes (Lisp_Object buffer)
7003 {
7004 #ifdef subprocesses
7005 Lisp_Object tail, proc;
7006
7007 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
7008 {
7009 proc = XCDR (XCAR (tail));
7010 if (PROCESSP (proc)
7011 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
7012 {
7013 if (NETCONN_P (proc) || SERIALCONN_P (proc))
7014 Fdelete_process (proc);
7015 else if (XPROCESS (proc)->infd >= 0)
7016 process_send_signal (proc, SIGHUP, Qnil, 1);
7017 }
7018 }
7019 #else /* subprocesses */
7020 /* Since we have no subprocesses, this does nothing. */
7021 #endif /* subprocesses */
7022 }
7023
7024 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p,
7025 Swaiting_for_user_input_p, 0, 0, 0,
7026 doc: /* Returns non-nil if Emacs is waiting for input from the user.
7027 This is intended for use by asynchronous process output filters and sentinels. */)
7028 (void)
7029 {
7030 #ifdef subprocesses
7031 return (waiting_for_user_input_p ? Qt : Qnil);
7032 #else
7033 return Qnil;
7034 #endif
7035 }
7036
7037 /* Stop reading input from keyboard sources. */
7038
7039 void
7040 hold_keyboard_input (void)
7041 {
7042 kbd_is_on_hold = 1;
7043 }
7044
7045 /* Resume reading input from keyboard sources. */
7046
7047 void
7048 unhold_keyboard_input (void)
7049 {
7050 kbd_is_on_hold = 0;
7051 }
7052
7053 /* Return non-zero if keyboard input is on hold, zero otherwise. */
7054
7055 int
7056 kbd_on_hold_p (void)
7057 {
7058 return kbd_is_on_hold;
7059 }
7060
7061 \f
7062 /* Enumeration of and access to system processes a-la ps(1). */
7063
7064 DEFUN ("list-system-processes", Flist_system_processes, Slist_system_processes,
7065 0, 0, 0,
7066 doc: /* Return a list of numerical process IDs of all running processes.
7067 If this functionality is unsupported, return nil.
7068
7069 See `process-attributes' for getting attributes of a process given its ID. */)
7070 (void)
7071 {
7072 return list_system_processes ();
7073 }
7074
7075 DEFUN ("process-attributes", Fprocess_attributes,
7076 Sprocess_attributes, 1, 1, 0,
7077 doc: /* Return attributes of the process given by its PID, a number.
7078
7079 Value is an alist where each element is a cons cell of the form
7080
7081 \(KEY . VALUE)
7082
7083 If this functionality is unsupported, the value is nil.
7084
7085 See `list-system-processes' for getting a list of all process IDs.
7086
7087 The KEYs of the attributes that this function may return are listed
7088 below, together with the type of the associated VALUE (in parentheses).
7089 Not all platforms support all of these attributes; unsupported
7090 attributes will not appear in the returned alist.
7091 Unless explicitly indicated otherwise, numbers can have either
7092 integer or floating point values.
7093
7094 euid -- Effective user User ID of the process (number)
7095 user -- User name corresponding to euid (string)
7096 egid -- Effective user Group ID of the process (number)
7097 group -- Group name corresponding to egid (string)
7098 comm -- Command name (executable name only) (string)
7099 state -- Process state code, such as "S", "R", or "T" (string)
7100 ppid -- Parent process ID (number)
7101 pgrp -- Process group ID (number)
7102 sess -- Session ID, i.e. process ID of session leader (number)
7103 ttname -- Controlling tty name (string)
7104 tpgid -- ID of foreground process group on the process's tty (number)
7105 minflt -- number of minor page faults (number)
7106 majflt -- number of major page faults (number)
7107 cminflt -- cumulative number of minor page faults (number)
7108 cmajflt -- cumulative number of major page faults (number)
7109 utime -- user time used by the process, in the (HIGH LOW USEC) format
7110 stime -- system time used by the process, in the (HIGH LOW USEC) format
7111 time -- sum of utime and stime, in the (HIGH LOW USEC) format
7112 cutime -- user time used by the process and its children, (HIGH LOW USEC)
7113 cstime -- system time used by the process and its children, (HIGH LOW USEC)
7114 ctime -- sum of cutime and cstime, in the (HIGH LOW USEC) format
7115 pri -- priority of the process (number)
7116 nice -- nice value of the process (number)
7117 thcount -- process thread count (number)
7118 start -- time the process started, in the (HIGH LOW USEC) format
7119 vsize -- virtual memory size of the process in KB's (number)
7120 rss -- resident set size of the process in KB's (number)
7121 etime -- elapsed time the process is running, in (HIGH LOW USEC) format
7122 pcpu -- percents of CPU time used by the process (floating-point number)
7123 pmem -- percents of total physical memory used by process's resident set
7124 (floating-point number)
7125 args -- command line which invoked the process (string). */)
7126 ( Lisp_Object pid)
7127 {
7128 return system_process_attributes (pid);
7129 }
7130
7131 \f
7132 void
7133 init_process (void)
7134 {
7135 #ifdef subprocesses
7136 register int i;
7137
7138 inhibit_sentinels = 0;
7139
7140 #ifdef SIGCHLD
7141 #ifndef CANNOT_DUMP
7142 if (! noninteractive || initialized)
7143 #endif
7144 signal (SIGCHLD, sigchld_handler);
7145 #endif
7146
7147 FD_ZERO (&input_wait_mask);
7148 FD_ZERO (&non_keyboard_wait_mask);
7149 FD_ZERO (&non_process_wait_mask);
7150 FD_ZERO (&write_mask);
7151 max_process_desc = 0;
7152 memset (fd_callback_info, 0, sizeof (fd_callback_info));
7153
7154 #ifdef NON_BLOCKING_CONNECT
7155 FD_ZERO (&connect_wait_mask);
7156 num_pending_connects = 0;
7157 #endif
7158
7159 #ifdef ADAPTIVE_READ_BUFFERING
7160 process_output_delay_count = 0;
7161 process_output_skip = 0;
7162 #endif
7163
7164 /* Don't do this, it caused infinite select loops. The display
7165 method should call add_keyboard_wait_descriptor on stdin if it
7166 needs that. */
7167 #if 0
7168 FD_SET (0, &input_wait_mask);
7169 #endif
7170
7171 Vprocess_alist = Qnil;
7172 #ifdef SIGCHLD
7173 deleted_pid_list = Qnil;
7174 #endif
7175 for (i = 0; i < MAXDESC; i++)
7176 {
7177 chan_process[i] = Qnil;
7178 proc_buffered_char[i] = -1;
7179 }
7180 memset (proc_decode_coding_system, 0, sizeof proc_decode_coding_system);
7181 memset (proc_encode_coding_system, 0, sizeof proc_encode_coding_system);
7182 #ifdef DATAGRAM_SOCKETS
7183 memset (datagram_address, 0, sizeof datagram_address);
7184 #endif
7185
7186 {
7187 Lisp_Object subfeatures = Qnil;
7188 const struct socket_options *sopt;
7189
7190 #define ADD_SUBFEATURE(key, val) \
7191 subfeatures = pure_cons (pure_cons (key, pure_cons (val, Qnil)), subfeatures)
7192
7193 #ifdef NON_BLOCKING_CONNECT
7194 ADD_SUBFEATURE (QCnowait, Qt);
7195 #endif
7196 #ifdef DATAGRAM_SOCKETS
7197 ADD_SUBFEATURE (QCtype, Qdatagram);
7198 #endif
7199 #ifdef HAVE_SEQPACKET
7200 ADD_SUBFEATURE (QCtype, Qseqpacket);
7201 #endif
7202 #ifdef HAVE_LOCAL_SOCKETS
7203 ADD_SUBFEATURE (QCfamily, Qlocal);
7204 #endif
7205 ADD_SUBFEATURE (QCfamily, Qipv4);
7206 #ifdef AF_INET6
7207 ADD_SUBFEATURE (QCfamily, Qipv6);
7208 #endif
7209 #ifdef HAVE_GETSOCKNAME
7210 ADD_SUBFEATURE (QCservice, Qt);
7211 #endif
7212 #if defined(O_NONBLOCK) || defined(O_NDELAY)
7213 ADD_SUBFEATURE (QCserver, Qt);
7214 #endif
7215
7216 for (sopt = socket_options; sopt->name; sopt++)
7217 subfeatures = pure_cons (intern_c_string (sopt->name), subfeatures);
7218
7219 Fprovide (intern_c_string ("make-network-process"), subfeatures);
7220 }
7221
7222 #if defined (DARWIN_OS)
7223 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
7224 processes. As such, we only change the default value. */
7225 if (initialized)
7226 {
7227 char const *release = (STRINGP (Voperating_system_release)
7228 ? SSDATA (Voperating_system_release)
7229 : 0);
7230 if (!release || !release[0] || (release[0] < MIN_PTY_KERNEL_VERSION
7231 && release[1] == '.')) {
7232 Vprocess_connection_type = Qnil;
7233 }
7234 }
7235 #endif
7236 #endif /* subprocesses */
7237 kbd_is_on_hold = 0;
7238 }
7239
7240 void
7241 syms_of_process (void)
7242 {
7243 #ifdef subprocesses
7244
7245 DEFSYM (Qprocessp, "processp");
7246 DEFSYM (Qrun, "run");
7247 DEFSYM (Qstop, "stop");
7248 DEFSYM (Qsignal, "signal");
7249
7250 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
7251 here again.
7252
7253 Qexit = intern_c_string ("exit");
7254 staticpro (&Qexit); */
7255
7256 DEFSYM (Qopen, "open");
7257 DEFSYM (Qclosed, "closed");
7258 DEFSYM (Qconnect, "connect");
7259 DEFSYM (Qfailed, "failed");
7260 DEFSYM (Qlisten, "listen");
7261 DEFSYM (Qlocal, "local");
7262 DEFSYM (Qipv4, "ipv4");
7263 #ifdef AF_INET6
7264 DEFSYM (Qipv6, "ipv6");
7265 #endif
7266 DEFSYM (Qdatagram, "datagram");
7267 DEFSYM (Qseqpacket, "seqpacket");
7268
7269 DEFSYM (QCport, ":port");
7270 DEFSYM (QCspeed, ":speed");
7271 DEFSYM (QCprocess, ":process");
7272
7273 DEFSYM (QCbytesize, ":bytesize");
7274 DEFSYM (QCstopbits, ":stopbits");
7275 DEFSYM (QCparity, ":parity");
7276 DEFSYM (Qodd, "odd");
7277 DEFSYM (Qeven, "even");
7278 DEFSYM (QCflowcontrol, ":flowcontrol");
7279 DEFSYM (Qhw, "hw");
7280 DEFSYM (Qsw, "sw");
7281 DEFSYM (QCsummary, ":summary");
7282
7283 DEFSYM (Qreal, "real");
7284 DEFSYM (Qnetwork, "network");
7285 DEFSYM (Qserial, "serial");
7286 DEFSYM (QCbuffer, ":buffer");
7287 DEFSYM (QChost, ":host");
7288 DEFSYM (QCservice, ":service");
7289 DEFSYM (QClocal, ":local");
7290 DEFSYM (QCremote, ":remote");
7291 DEFSYM (QCcoding, ":coding");
7292 DEFSYM (QCserver, ":server");
7293 DEFSYM (QCnowait, ":nowait");
7294 DEFSYM (QCsentinel, ":sentinel");
7295 DEFSYM (QClog, ":log");
7296 DEFSYM (QCnoquery, ":noquery");
7297 DEFSYM (QCstop, ":stop");
7298 DEFSYM (QCoptions, ":options");
7299 DEFSYM (QCplist, ":plist");
7300
7301 DEFSYM (Qlast_nonmenu_event, "last-nonmenu-event");
7302
7303 staticpro (&Vprocess_alist);
7304 #ifdef SIGCHLD
7305 staticpro (&deleted_pid_list);
7306 #endif
7307
7308 #endif /* subprocesses */
7309
7310 DEFSYM (QCname, ":name");
7311 DEFSYM (QCtype, ":type");
7312
7313 DEFSYM (Qeuid, "euid");
7314 DEFSYM (Qegid, "egid");
7315 DEFSYM (Quser, "user");
7316 DEFSYM (Qgroup, "group");
7317 DEFSYM (Qcomm, "comm");
7318 DEFSYM (Qstate, "state");
7319 DEFSYM (Qppid, "ppid");
7320 DEFSYM (Qpgrp, "pgrp");
7321 DEFSYM (Qsess, "sess");
7322 DEFSYM (Qttname, "ttname");
7323 DEFSYM (Qtpgid, "tpgid");
7324 DEFSYM (Qminflt, "minflt");
7325 DEFSYM (Qmajflt, "majflt");
7326 DEFSYM (Qcminflt, "cminflt");
7327 DEFSYM (Qcmajflt, "cmajflt");
7328 DEFSYM (Qutime, "utime");
7329 DEFSYM (Qstime, "stime");
7330 DEFSYM (Qtime, "time");
7331 DEFSYM (Qcutime, "cutime");
7332 DEFSYM (Qcstime, "cstime");
7333 DEFSYM (Qctime, "ctime");
7334 DEFSYM (Qpri, "pri");
7335 DEFSYM (Qnice, "nice");
7336 DEFSYM (Qthcount, "thcount");
7337 DEFSYM (Qstart, "start");
7338 DEFSYM (Qvsize, "vsize");
7339 DEFSYM (Qrss, "rss");
7340 DEFSYM (Qetime, "etime");
7341 DEFSYM (Qpcpu, "pcpu");
7342 DEFSYM (Qpmem, "pmem");
7343 DEFSYM (Qargs, "args");
7344
7345 DEFVAR_BOOL ("delete-exited-processes", delete_exited_processes,
7346 doc: /* *Non-nil means delete processes immediately when they exit.
7347 A value of nil means don't delete them until `list-processes' is run. */);
7348
7349 delete_exited_processes = 1;
7350
7351 #ifdef subprocesses
7352 DEFVAR_LISP ("process-connection-type", Vprocess_connection_type,
7353 doc: /* Control type of device used to communicate with subprocesses.
7354 Values are nil to use a pipe, or t or `pty' to use a pty.
7355 The value has no effect if the system has no ptys or if all ptys are busy:
7356 then a pipe is used in any case.
7357 The value takes effect when `start-process' is called. */);
7358 Vprocess_connection_type = Qt;
7359
7360 #ifdef ADAPTIVE_READ_BUFFERING
7361 DEFVAR_LISP ("process-adaptive-read-buffering", Vprocess_adaptive_read_buffering,
7362 doc: /* If non-nil, improve receive buffering by delaying after short reads.
7363 On some systems, when Emacs reads the output from a subprocess, the output data
7364 is read in very small blocks, potentially resulting in very poor performance.
7365 This behavior can be remedied to some extent by setting this variable to a
7366 non-nil value, as it will automatically delay reading from such processes, to
7367 allow them to produce more output before Emacs tries to read it.
7368 If the value is t, the delay is reset after each write to the process; any other
7369 non-nil value means that the delay is not reset on write.
7370 The variable takes effect when `start-process' is called. */);
7371 Vprocess_adaptive_read_buffering = Qt;
7372 #endif
7373
7374 defsubr (&Sprocessp);
7375 defsubr (&Sget_process);
7376 defsubr (&Sdelete_process);
7377 defsubr (&Sprocess_status);
7378 defsubr (&Sprocess_exit_status);
7379 defsubr (&Sprocess_id);
7380 defsubr (&Sprocess_name);
7381 defsubr (&Sprocess_tty_name);
7382 defsubr (&Sprocess_command);
7383 defsubr (&Sset_process_buffer);
7384 defsubr (&Sprocess_buffer);
7385 defsubr (&Sprocess_mark);
7386 defsubr (&Sset_process_filter);
7387 defsubr (&Sprocess_filter);
7388 defsubr (&Sset_process_sentinel);
7389 defsubr (&Sprocess_sentinel);
7390 defsubr (&Sset_process_window_size);
7391 defsubr (&Sset_process_inherit_coding_system_flag);
7392 defsubr (&Sset_process_query_on_exit_flag);
7393 defsubr (&Sprocess_query_on_exit_flag);
7394 defsubr (&Sprocess_contact);
7395 defsubr (&Sprocess_plist);
7396 defsubr (&Sset_process_plist);
7397 defsubr (&Sprocess_list);
7398 defsubr (&Sstart_process);
7399 defsubr (&Sserial_process_configure);
7400 defsubr (&Smake_serial_process);
7401 defsubr (&Sset_network_process_option);
7402 defsubr (&Smake_network_process);
7403 defsubr (&Sformat_network_address);
7404 #if defined(HAVE_NET_IF_H)
7405 #ifdef SIOCGIFCONF
7406 defsubr (&Snetwork_interface_list);
7407 #endif
7408 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
7409 defsubr (&Snetwork_interface_info);
7410 #endif
7411 #endif /* defined(HAVE_NET_IF_H) */
7412 #ifdef DATAGRAM_SOCKETS
7413 defsubr (&Sprocess_datagram_address);
7414 defsubr (&Sset_process_datagram_address);
7415 #endif
7416 defsubr (&Saccept_process_output);
7417 defsubr (&Sprocess_send_region);
7418 defsubr (&Sprocess_send_string);
7419 defsubr (&Sinterrupt_process);
7420 defsubr (&Skill_process);
7421 defsubr (&Squit_process);
7422 defsubr (&Sstop_process);
7423 defsubr (&Scontinue_process);
7424 defsubr (&Sprocess_running_child_p);
7425 defsubr (&Sprocess_send_eof);
7426 defsubr (&Ssignal_process);
7427 defsubr (&Swaiting_for_user_input_p);
7428 defsubr (&Sprocess_type);
7429 defsubr (&Sset_process_coding_system);
7430 defsubr (&Sprocess_coding_system);
7431 defsubr (&Sset_process_filter_multibyte);
7432 defsubr (&Sprocess_filter_multibyte_p);
7433
7434 #endif /* subprocesses */
7435
7436 defsubr (&Sget_buffer_process);
7437 defsubr (&Sprocess_inherit_coding_system_flag);
7438 defsubr (&Slist_system_processes);
7439 defsubr (&Sprocess_attributes);
7440 }