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