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