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