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