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