Remove configure's --without-sync-input option.
[bpt/emacs.git] / src / sysdep.c
1 /* Interfaces to system-dependent kernel and library entries.
2 Copyright (C) 1985-1988, 1993-1995, 1999-2012
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include <config.h>
21
22 #define SYSTIME_INLINE EXTERN_INLINE
23
24 #include <execinfo.h>
25 #include <stdio.h>
26 #ifdef HAVE_PWD_H
27 #include <pwd.h>
28 #include <grp.h>
29 #endif /* HAVE_PWD_H */
30 #include <limits.h>
31 #include <unistd.h>
32
33 #include <allocator.h>
34 #include <c-ctype.h>
35 #include <careadlinkat.h>
36 #include <ignore-value.h>
37 #include <utimens.h>
38
39 #include "lisp.h"
40 #include "sysselect.h"
41 #include "blockinput.h"
42
43 #ifdef BSD_SYSTEM
44 #include <sys/param.h>
45 #include <sys/sysctl.h>
46 #endif
47
48 #ifdef __FreeBSD__
49 #include <sys/user.h>
50 #include <sys/resource.h>
51 #include <math.h>
52 #endif
53
54 #ifdef WINDOWSNT
55 #define read sys_read
56 #define write sys_write
57 #include <windows.h>
58 #endif /* not WINDOWSNT */
59
60 #include <sys/types.h>
61 #include <sys/stat.h>
62 #include <errno.h>
63
64 /* Get SI_SRPC_DOMAIN, if it is available. */
65 #ifdef HAVE_SYS_SYSTEMINFO_H
66 #include <sys/systeminfo.h>
67 #endif
68
69 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
70 #include "msdos.h"
71 #include <sys/param.h>
72 #endif
73
74 #include <sys/file.h>
75 #include <fcntl.h>
76
77 #include "systty.h"
78 #include "syswait.h"
79
80 #ifdef HAVE_SYS_UTSNAME_H
81 #include <sys/utsname.h>
82 #include <memory.h>
83 #endif /* HAVE_SYS_UTSNAME_H */
84
85 #include "keyboard.h"
86 #include "frame.h"
87 #include "window.h"
88 #include "termhooks.h"
89 #include "termchar.h"
90 #include "termopts.h"
91 #include "dispextern.h"
92 #include "process.h"
93 #include "cm.h" /* for reset_sys_modes */
94
95 #ifdef WINDOWSNT
96 #include <direct.h>
97 /* In process.h which conflicts with the local copy. */
98 #define _P_WAIT 0
99 int _cdecl _spawnlp (int, const char *, const char *, ...);
100 int _cdecl _getpid (void);
101 extern char *getwd (char *);
102 #endif
103
104 #include "syssignal.h"
105 #include "systime.h"
106
107 static int emacs_get_tty (int, struct emacs_tty *);
108 static int emacs_set_tty (int, struct emacs_tty *, int);
109
110 /* ULLONG_MAX is missing on Red Hat Linux 7.3; see Bug#11781. */
111 #ifndef ULLONG_MAX
112 #define ULLONG_MAX TYPE_MAXIMUM (unsigned long long int)
113 #endif
114
115 /* Declare here, including term.h is problematic on some systems. */
116 extern void tputs (const char *, int, int (*)(int));
117
118 static const int baud_convert[] =
119 {
120 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
121 1800, 2400, 4800, 9600, 19200, 38400
122 };
123
124
125 #if !defined (HAVE_GET_CURRENT_DIR_NAME) || defined (BROKEN_GET_CURRENT_DIR_NAME)
126
127 /* Return the current working directory. Returns NULL on errors.
128 Any other returned value must be freed with free. This is used
129 only when get_current_dir_name is not defined on the system. */
130 char*
131 get_current_dir_name (void)
132 {
133 char *buf;
134 char *pwd;
135 struct stat dotstat, pwdstat;
136 /* If PWD is accurate, use it instead of calling getwd. PWD is
137 sometimes a nicer name, and using it may avoid a fatal error if a
138 parent directory is searchable but not readable. */
139 if ((pwd = getenv ("PWD")) != 0
140 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
141 && stat (pwd, &pwdstat) == 0
142 && stat (".", &dotstat) == 0
143 && dotstat.st_ino == pwdstat.st_ino
144 && dotstat.st_dev == pwdstat.st_dev
145 #ifdef MAXPATHLEN
146 && strlen (pwd) < MAXPATHLEN
147 #endif
148 )
149 {
150 buf = malloc (strlen (pwd) + 1);
151 if (!buf)
152 return NULL;
153 strcpy (buf, pwd);
154 }
155 #ifdef HAVE_GETCWD
156 else
157 {
158 size_t buf_size = 1024;
159 buf = malloc (buf_size);
160 if (!buf)
161 return NULL;
162 for (;;)
163 {
164 if (getcwd (buf, buf_size) == buf)
165 break;
166 if (errno != ERANGE)
167 {
168 int tmp_errno = errno;
169 free (buf);
170 errno = tmp_errno;
171 return NULL;
172 }
173 buf_size *= 2;
174 buf = realloc (buf, buf_size);
175 if (!buf)
176 return NULL;
177 }
178 }
179 #else
180 else
181 {
182 /* We need MAXPATHLEN here. */
183 buf = malloc (MAXPATHLEN + 1);
184 if (!buf)
185 return NULL;
186 if (getwd (buf) == NULL)
187 {
188 int tmp_errno = errno;
189 free (buf);
190 errno = tmp_errno;
191 return NULL;
192 }
193 }
194 #endif
195 return buf;
196 }
197 #endif
198
199 \f
200 /* Discard pending input on all input descriptors. */
201
202 void
203 discard_tty_input (void)
204 {
205 #ifndef WINDOWSNT
206 struct emacs_tty buf;
207
208 if (noninteractive)
209 return;
210
211 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
212 while (dos_keyread () != -1)
213 ;
214 #else /* not MSDOS */
215 {
216 struct tty_display_info *tty;
217 for (tty = tty_list; tty; tty = tty->next)
218 {
219 if (tty->input) /* Is the device suspended? */
220 {
221 emacs_get_tty (fileno (tty->input), &buf);
222 emacs_set_tty (fileno (tty->input), &buf, 0);
223 }
224 }
225 }
226 #endif /* not MSDOS */
227 #endif /* not WINDOWSNT */
228 }
229
230 \f
231 #ifdef SIGTSTP
232
233 /* Arrange for character C to be read as the next input from
234 the terminal.
235 XXX What if we have multiple ttys?
236 */
237
238 void
239 stuff_char (char c)
240 {
241 if (! FRAME_TERMCAP_P (SELECTED_FRAME ()))
242 return;
243
244 /* Should perhaps error if in batch mode */
245 #ifdef TIOCSTI
246 ioctl (fileno (CURTTY()->input), TIOCSTI, &c);
247 #else /* no TIOCSTI */
248 error ("Cannot stuff terminal input characters in this version of Unix");
249 #endif /* no TIOCSTI */
250 }
251
252 #endif /* SIGTSTP */
253 \f
254 void
255 init_baud_rate (int fd)
256 {
257 int emacs_ospeed;
258
259 if (noninteractive)
260 emacs_ospeed = 0;
261 else
262 {
263 #ifdef DOS_NT
264 emacs_ospeed = 15;
265 #else /* not DOS_NT */
266 struct termios sg;
267
268 sg.c_cflag = B9600;
269 tcgetattr (fd, &sg);
270 emacs_ospeed = cfgetospeed (&sg);
271 #endif /* not DOS_NT */
272 }
273
274 baud_rate = (emacs_ospeed < sizeof baud_convert / sizeof baud_convert[0]
275 ? baud_convert[emacs_ospeed] : 9600);
276 if (baud_rate == 0)
277 baud_rate = 1200;
278 }
279
280 \f
281
282 /* Set nonzero to make following function work under dbx
283 (at least for bsd). */
284 int wait_debugging EXTERNALLY_VISIBLE;
285
286 #ifndef MSDOS
287
288 static void
289 wait_for_termination_1 (pid_t pid, int interruptible)
290 {
291 while (1)
292 {
293 #if (defined (BSD_SYSTEM) || defined (HPUX)) && !defined (__GNU__)
294 /* Note that kill returns -1 even if the process is just a zombie now.
295 But inevitably a SIGCHLD interrupt should be generated
296 and child_sig will do waitpid and make the process go away. */
297 /* There is some indication that there is a bug involved with
298 termination of subprocesses, perhaps involving a kernel bug too,
299 but no idea what it is. Just as a hunch we signal SIGCHLD to see
300 if that causes the problem to go away or get worse. */
301 sigset_t sigchild_mask;
302 sigemptyset (&sigchild_mask);
303 sigaddset (&sigchild_mask, SIGCHLD);
304 pthread_sigmask (SIG_SETMASK, &sigchild_mask, 0);
305
306 if (0 > kill (pid, 0))
307 {
308 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
309 kill (getpid (), SIGCHLD);
310 break;
311 }
312 if (wait_debugging)
313 sleep (1);
314 else
315 sigsuspend (&empty_mask);
316 #else /* not BSD_SYSTEM, and not HPUX version >= 6 */
317 #ifdef WINDOWSNT
318 wait (0);
319 break;
320 #else /* not WINDOWSNT */
321 sigset_t blocked;
322 sigemptyset (&blocked);
323 sigaddset (&blocked, SIGCHLD);
324 pthread_sigmask (SIG_BLOCK, &blocked, 0);
325 errno = 0;
326 if (kill (pid, 0) == -1 && errno == ESRCH)
327 {
328 pthread_sigmask (SIG_UNBLOCK, &blocked, 0);
329 break;
330 }
331
332 sigsuspend (&empty_mask);
333 #endif /* not WINDOWSNT */
334 #endif /* not BSD_SYSTEM, and not HPUX version >= 6 */
335 if (interruptible)
336 QUIT;
337 }
338 }
339
340 /* Wait for subprocess with process id `pid' to terminate and
341 make sure it will get eliminated (not remain forever as a zombie) */
342
343 void
344 wait_for_termination (pid_t pid)
345 {
346 wait_for_termination_1 (pid, 0);
347 }
348
349 /* Like the above, but allow keyboard interruption. */
350 void
351 interruptible_wait_for_termination (pid_t pid)
352 {
353 wait_for_termination_1 (pid, 1);
354 }
355
356 /*
357 * flush any pending output
358 * (may flush input as well; it does not matter the way we use it)
359 */
360
361 void
362 flush_pending_output (int channel)
363 {
364 /* FIXME: maybe this function should be removed */
365 }
366 \f
367 /* Set up the terminal at the other end of a pseudo-terminal that
368 we will be controlling an inferior through.
369 It should not echo or do line-editing, since that is done
370 in Emacs. No padding needed for insertion into an Emacs buffer. */
371
372 void
373 child_setup_tty (int out)
374 {
375 #ifndef WINDOWSNT
376 struct emacs_tty s;
377
378 emacs_get_tty (out, &s);
379 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
380 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
381 #ifdef NLDLY
382 /* http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg00406.html
383 Some versions of GNU Hurd do not have FFDLY? */
384 #ifdef FFDLY
385 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
386 /* No output delays */
387 #else
388 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY);
389 /* No output delays */
390 #endif
391 #endif
392 s.main.c_lflag &= ~ECHO; /* Disable echo */
393 s.main.c_lflag |= ISIG; /* Enable signals */
394 #ifdef IUCLC
395 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
396 #endif
397 #ifdef ISTRIP
398 s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
399 #endif
400 #ifdef OLCUC
401 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
402 #endif
403 s.main.c_oflag &= ~TAB3; /* Disable tab expansion */
404 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
405 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */
406 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */
407
408 #ifdef HPUX
409 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
410 #endif /* HPUX */
411
412 #ifdef SIGNALS_VIA_CHARACTERS
413 /* the QUIT and INTR character are used in process_send_signal
414 so set them here to something useful. */
415 if (s.main.c_cc[VQUIT] == CDISABLE)
416 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
417 if (s.main.c_cc[VINTR] == CDISABLE)
418 s.main.c_cc[VINTR] = 'C'&037; /* Control-C */
419 #endif /* not SIGNALS_VIA_CHARACTERS */
420
421 #ifdef AIX
422 /* Also, PTY overloads NUL and BREAK.
423 don't ignore break, but don't signal either, so it looks like NUL. */
424 s.main.c_iflag &= ~IGNBRK;
425 s.main.c_iflag &= ~BRKINT;
426 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
427 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
428 would force it to 0377. That looks like duplicated code. */
429 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
430 #endif /* AIX */
431
432 /* We originally enabled ICANON (and set VEOF to 04), and then had
433 process.c send additional EOF chars to flush the output when faced
434 with long lines, but this leads to weird effects when the
435 subprocess has disabled ICANON and ends up seeing those spurious
436 extra EOFs. So we don't send EOFs any more in
437 process.c:send_process. First we tried to disable ICANON by
438 default, so if a subsprocess sets up ICANON, it's his problem (or
439 the Elisp package that talks to it) to deal with lines that are
440 too long. But this disables some features, such as the ability
441 to send EOF signals. So we re-enabled ICANON but there is no
442 more "send eof to flush" going on (which is wrong and unportable
443 in itself). The correct way to handle too much output is to
444 buffer what could not be written and then write it again when
445 select returns ok for writing. This has it own set of
446 problems. Write is now asynchronous, is that a problem? How much
447 do we buffer, and what do we do when that limit is reached? */
448
449 s.main.c_lflag |= ICANON; /* Enable line editing and eof processing */
450 s.main.c_cc[VEOF] = 'D'&037; /* Control-D */
451 #if 0 /* These settings only apply to non-ICANON mode. */
452 s.main.c_cc[VMIN] = 1;
453 s.main.c_cc[VTIME] = 0;
454 #endif
455
456 emacs_set_tty (out, &s, 0);
457 #endif /* not WINDOWSNT */
458 }
459 #endif /* not MSDOS */
460
461 \f
462 /* Record a signal code and the action for it. */
463 struct save_signal
464 {
465 int code;
466 struct sigaction action;
467 };
468
469 static void save_signal_handlers (struct save_signal *);
470 static void restore_signal_handlers (struct save_signal *);
471
472 /* Suspend the Emacs process; give terminal to its superior. */
473
474 void
475 sys_suspend (void)
476 {
477 #if defined (SIGTSTP) && !defined (MSDOS)
478
479 {
480 int pgrp = EMACS_GETPGRP (0);
481 EMACS_KILLPG (pgrp, SIGTSTP);
482 }
483
484 #else /* No SIGTSTP */
485 /* On a system where suspending is not implemented,
486 instead fork a subshell and let it talk directly to the terminal
487 while we wait. */
488 sys_subshell ();
489
490 #endif /* no SIGTSTP */
491 }
492
493 /* Fork a subshell. */
494
495 void
496 sys_subshell (void)
497 {
498 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
499 int st;
500 char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
501 #endif
502 int pid;
503 struct save_signal saved_handlers[5];
504 Lisp_Object dir;
505 unsigned char *volatile str_volatile = 0;
506 unsigned char *str;
507 int len;
508
509 saved_handlers[0].code = SIGINT;
510 saved_handlers[1].code = SIGQUIT;
511 saved_handlers[2].code = SIGTERM;
512 #ifdef USABLE_SIGIO
513 saved_handlers[3].code = SIGIO;
514 saved_handlers[4].code = 0;
515 #else
516 saved_handlers[3].code = 0;
517 #endif
518
519 /* Mentioning current_buffer->buffer would mean including buffer.h,
520 which somehow wedges the hp compiler. So instead... */
521
522 dir = intern ("default-directory");
523 if (NILP (Fboundp (dir)))
524 goto xyzzy;
525 dir = Fsymbol_value (dir);
526 if (!STRINGP (dir))
527 goto xyzzy;
528
529 dir = expand_and_dir_to_file (Funhandled_file_name_directory (dir), Qnil);
530 str_volatile = str = alloca (SCHARS (dir) + 2);
531 len = SCHARS (dir);
532 memcpy (str, SDATA (dir), len);
533 if (str[len - 1] != '/') str[len++] = '/';
534 str[len] = 0;
535 xyzzy:
536
537 #ifdef DOS_NT
538 pid = 0;
539 save_signal_handlers (saved_handlers);
540 synch_process_alive = 1;
541 #else
542 pid = vfork ();
543 if (pid == -1)
544 error ("Can't spawn subshell");
545 #endif
546
547 if (pid == 0)
548 {
549 const char *sh = 0;
550
551 #ifdef DOS_NT /* MW, Aug 1993 */
552 getwd (oldwd);
553 if (sh == 0)
554 sh = (char *) egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
555 #endif
556 if (sh == 0)
557 sh = (char *) egetenv ("SHELL");
558 if (sh == 0)
559 sh = "sh";
560
561 /* Use our buffer's default directory for the subshell. */
562 str = str_volatile;
563 if (str && chdir ((char *) str) != 0)
564 {
565 #ifndef DOS_NT
566 ignore_value (write (1, "Can't chdir\n", 12));
567 _exit (1);
568 #endif
569 }
570
571 close_process_descs (); /* Close Emacs's pipes/ptys */
572
573 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
574 {
575 char *epwd = getenv ("PWD");
576 char old_pwd[MAXPATHLEN+1+4];
577
578 /* If PWD is set, pass it with corrected value. */
579 if (epwd)
580 {
581 strcpy (old_pwd, epwd);
582 if (str[len - 1] == '/')
583 str[len - 1] = '\0';
584 setenv ("PWD", str, 1);
585 }
586 st = system (sh);
587 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
588 if (epwd)
589 putenv (old_pwd); /* restore previous value */
590 }
591 #else /* not MSDOS */
592 #ifdef WINDOWSNT
593 /* Waits for process completion */
594 pid = _spawnlp (_P_WAIT, sh, sh, NULL);
595 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
596 if (pid == -1)
597 write (1, "Can't execute subshell", 22);
598 #else /* not WINDOWSNT */
599 execlp (sh, sh, (char *) 0);
600 ignore_value (write (1, "Can't execute subshell", 22));
601 _exit (1);
602 #endif /* not WINDOWSNT */
603 #endif /* not MSDOS */
604 }
605
606 /* Do this now if we did not do it before. */
607 #ifndef MSDOS
608 save_signal_handlers (saved_handlers);
609 synch_process_alive = 1;
610 #endif
611
612 #ifndef DOS_NT
613 wait_for_termination (pid);
614 #endif
615 restore_signal_handlers (saved_handlers);
616 synch_process_alive = 0;
617 }
618
619 static void
620 save_signal_handlers (struct save_signal *saved_handlers)
621 {
622 while (saved_handlers->code)
623 {
624 struct sigaction action;
625 emacs_sigaction_init (&action, SIG_IGN);
626 sigaction (saved_handlers->code, &action, &saved_handlers->action);
627 saved_handlers++;
628 }
629 }
630
631 static void
632 restore_signal_handlers (struct save_signal *saved_handlers)
633 {
634 while (saved_handlers->code)
635 {
636 sigaction (saved_handlers->code, &saved_handlers->action, 0);
637 saved_handlers++;
638 }
639 }
640 \f
641 #ifdef USABLE_SIGIO
642 static int old_fcntl_flags[MAXDESC];
643 #endif
644
645 void
646 init_sigio (int fd)
647 {
648 #ifdef USABLE_SIGIO
649 old_fcntl_flags[fd] = fcntl (fd, F_GETFL, 0) & ~FASYNC;
650 fcntl (fd, F_SETFL, old_fcntl_flags[fd] | FASYNC);
651 interrupts_deferred = 0;
652 #endif
653 }
654
655 static void
656 reset_sigio (int fd)
657 {
658 #ifdef USABLE_SIGIO
659 fcntl (fd, F_SETFL, old_fcntl_flags[fd]);
660 #endif
661 }
662
663 void
664 request_sigio (void)
665 {
666 #ifdef USABLE_SIGIO
667 sigset_t unblocked;
668
669 if (noninteractive)
670 return;
671
672 sigemptyset (&unblocked);
673 # ifdef SIGWINCH
674 sigaddset (&unblocked, SIGWINCH);
675 # endif
676 sigaddset (&unblocked, SIGIO);
677 pthread_sigmask (SIG_UNBLOCK, &unblocked, 0);
678
679 interrupts_deferred = 0;
680 #endif
681 }
682
683 void
684 unrequest_sigio (void)
685 {
686 #ifdef USABLE_SIGIO
687 sigset_t blocked;
688
689 if (noninteractive)
690 return;
691
692 sigemptyset (&blocked);
693 # ifdef SIGWINCH
694 sigaddset (&blocked, SIGWINCH);
695 # endif
696 sigaddset (&blocked, SIGIO);
697 pthread_sigmask (SIG_BLOCK, &blocked, 0);
698 interrupts_deferred = 1;
699 #endif
700 }
701
702 void
703 ignore_sigio (void)
704 {
705 #ifdef USABLE_SIGIO
706 signal (SIGIO, SIG_IGN);
707 #endif
708 }
709
710 \f
711 /* Getting and setting emacs_tty structures. */
712
713 /* Set *TC to the parameters associated with the terminal FD.
714 Return zero if all's well, or -1 if we ran into an error we
715 couldn't deal with. */
716 int
717 emacs_get_tty (int fd, struct emacs_tty *settings)
718 {
719 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
720 #ifndef DOS_NT
721 /* We have those nifty POSIX tcmumbleattr functions. */
722 memset (&settings->main, 0, sizeof (settings->main));
723 if (tcgetattr (fd, &settings->main) < 0)
724 return -1;
725 #endif
726
727 /* We have survived the tempest. */
728 return 0;
729 }
730
731
732 /* Set the parameters of the tty on FD according to the contents of
733 *SETTINGS. If FLUSHP is non-zero, we discard input.
734 Return 0 if all went well, and -1 if anything failed. */
735
736 int
737 emacs_set_tty (int fd, struct emacs_tty *settings, int flushp)
738 {
739 /* Set the primary parameters - baud rate, character size, etcetera. */
740 #ifndef DOS_NT
741 int i;
742 /* We have those nifty POSIX tcmumbleattr functions.
743 William J. Smith <wjs@wiis.wang.com> writes:
744 "POSIX 1003.1 defines tcsetattr to return success if it was
745 able to perform any of the requested actions, even if some
746 of the requested actions could not be performed.
747 We must read settings back to ensure tty setup properly.
748 AIX requires this to keep tty from hanging occasionally." */
749 /* This make sure that we don't loop indefinitely in here. */
750 for (i = 0 ; i < 10 ; i++)
751 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
752 {
753 if (errno == EINTR)
754 continue;
755 else
756 return -1;
757 }
758 else
759 {
760 struct termios new;
761
762 memset (&new, 0, sizeof (new));
763 /* Get the current settings, and see if they're what we asked for. */
764 tcgetattr (fd, &new);
765 /* We cannot use memcmp on the whole structure here because under
766 * aix386 the termios structure has some reserved field that may
767 * not be filled in.
768 */
769 if ( new.c_iflag == settings->main.c_iflag
770 && new.c_oflag == settings->main.c_oflag
771 && new.c_cflag == settings->main.c_cflag
772 && new.c_lflag == settings->main.c_lflag
773 && memcmp (new.c_cc, settings->main.c_cc, NCCS) == 0)
774 break;
775 else
776 continue;
777 }
778 #endif
779
780 /* We have survived the tempest. */
781 return 0;
782 }
783
784 \f
785
786 #ifdef F_SETOWN
787 static int old_fcntl_owner[MAXDESC];
788 #endif /* F_SETOWN */
789
790 /* This may also be defined in stdio,
791 but if so, this does no harm,
792 and using the same name avoids wasting the other one's space. */
793
794 #if defined (USG)
795 unsigned char _sobuf[BUFSIZ+8];
796 #else
797 char _sobuf[BUFSIZ];
798 #endif
799
800 /* Initialize the terminal mode on all tty devices that are currently
801 open. */
802
803 void
804 init_all_sys_modes (void)
805 {
806 struct tty_display_info *tty;
807 for (tty = tty_list; tty; tty = tty->next)
808 init_sys_modes (tty);
809 }
810
811 /* Initialize the terminal mode on the given tty device. */
812
813 void
814 init_sys_modes (struct tty_display_info *tty_out)
815 {
816 struct emacs_tty tty;
817 Lisp_Object terminal;
818
819 Vtty_erase_char = Qnil;
820
821 if (noninteractive)
822 return;
823
824 if (!tty_out->output)
825 return; /* The tty is suspended. */
826
827 if (! tty_out->old_tty)
828 tty_out->old_tty = xmalloc (sizeof *tty_out->old_tty);
829
830 emacs_get_tty (fileno (tty_out->input), tty_out->old_tty);
831
832 tty = *tty_out->old_tty;
833
834 #if !defined (DOS_NT)
835 XSETINT (Vtty_erase_char, tty.main.c_cc[VERASE]);
836
837 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
838 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
839 #ifdef INLCR /* I'm just being cautious,
840 since I can't check how widespread INLCR is--rms. */
841 tty.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
842 #endif
843 #ifdef ISTRIP
844 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
845 #endif
846 tty.main.c_lflag &= ~ECHO; /* Disable echo */
847 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
848 #ifdef IEXTEN
849 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
850 #endif
851 tty.main.c_lflag |= ISIG; /* Enable signals */
852 if (tty_out->flow_control)
853 {
854 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
855 #ifdef IXANY
856 tty.main.c_iflag &= ~IXANY;
857 #endif /* IXANY */
858 }
859 else
860 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
861 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
862 on output */
863 tty.main.c_oflag &= ~TAB3; /* Disable tab expansion */
864 #ifdef CS8
865 if (tty_out->meta_key)
866 {
867 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
868 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
869 }
870 #endif
871
872 XSETTERMINAL(terminal, tty_out->terminal);
873 if (!NILP (Fcontrolling_tty_p (terminal)))
874 {
875 tty.main.c_cc[VINTR] = quit_char; /* C-g (usually) gives SIGINT */
876 /* Set up C-g for both SIGQUIT and SIGINT.
877 We don't know which we will get, but we handle both alike
878 so which one it really gives us does not matter. */
879 tty.main.c_cc[VQUIT] = quit_char;
880 }
881 else
882 {
883 /* We normally don't get interrupt or quit signals from tty
884 devices other than our controlling terminal; therefore,
885 we must handle C-g as normal input. Unfortunately, this
886 means that the interrupt and quit feature must be
887 disabled on secondary ttys, or we would not even see the
888 keypress.
889
890 Note that even though emacsclient could have special code
891 to pass SIGINT to Emacs, we should _not_ enable
892 interrupt/quit keys for emacsclient frames. This means
893 that we can't break out of loops in C code from a
894 secondary tty frame, but we can always decide what
895 display the C-g came from, which is more important from a
896 usability point of view. (Consider the case when two
897 people work together using the same Emacs instance.) */
898 tty.main.c_cc[VINTR] = CDISABLE;
899 tty.main.c_cc[VQUIT] = CDISABLE;
900 }
901 tty.main.c_cc[VMIN] = 1; /* Input should wait for at least 1 char */
902 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
903 #ifdef VSWTCH
904 tty.main.c_cc[VSWTCH] = CDISABLE; /* Turn off shell layering use
905 of C-z */
906 #endif /* VSWTCH */
907
908 #ifdef VSUSP
909 tty.main.c_cc[VSUSP] = CDISABLE; /* Turn off handling of C-z. */
910 #endif /* VSUSP */
911 #ifdef V_DSUSP
912 tty.main.c_cc[V_DSUSP] = CDISABLE; /* Turn off handling of C-y. */
913 #endif /* V_DSUSP */
914 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
915 tty.main.c_cc[VDSUSP] = CDISABLE;
916 #endif /* VDSUSP */
917 #ifdef VLNEXT
918 tty.main.c_cc[VLNEXT] = CDISABLE;
919 #endif /* VLNEXT */
920 #ifdef VREPRINT
921 tty.main.c_cc[VREPRINT] = CDISABLE;
922 #endif /* VREPRINT */
923 #ifdef VWERASE
924 tty.main.c_cc[VWERASE] = CDISABLE;
925 #endif /* VWERASE */
926 #ifdef VDISCARD
927 tty.main.c_cc[VDISCARD] = CDISABLE;
928 #endif /* VDISCARD */
929
930 if (tty_out->flow_control)
931 {
932 #ifdef VSTART
933 tty.main.c_cc[VSTART] = '\021';
934 #endif /* VSTART */
935 #ifdef VSTOP
936 tty.main.c_cc[VSTOP] = '\023';
937 #endif /* VSTOP */
938 }
939 else
940 {
941 #ifdef VSTART
942 tty.main.c_cc[VSTART] = CDISABLE;
943 #endif /* VSTART */
944 #ifdef VSTOP
945 tty.main.c_cc[VSTOP] = CDISABLE;
946 #endif /* VSTOP */
947 }
948
949 #ifdef AIX
950 tty.main.c_cc[VSTRT] = CDISABLE;
951 tty.main.c_cc[VSTOP] = CDISABLE;
952 tty.main.c_cc[VSUSP] = CDISABLE;
953 tty.main.c_cc[VDSUSP] = CDISABLE;
954 if (tty_out->flow_control)
955 {
956 #ifdef VSTART
957 tty.main.c_cc[VSTART] = '\021';
958 #endif /* VSTART */
959 #ifdef VSTOP
960 tty.main.c_cc[VSTOP] = '\023';
961 #endif /* VSTOP */
962 }
963 /* Also, PTY overloads NUL and BREAK.
964 don't ignore break, but don't signal either, so it looks like NUL.
965 This really serves a purpose only if running in an XTERM window
966 or via TELNET or the like, but does no harm elsewhere. */
967 tty.main.c_iflag &= ~IGNBRK;
968 tty.main.c_iflag &= ~BRKINT;
969 #endif
970 #endif /* not DOS_NT */
971
972 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
973 if (!tty_out->term_initted)
974 internal_terminal_init ();
975 dos_ttraw (tty_out);
976 #endif
977
978 emacs_set_tty (fileno (tty_out->input), &tty, 0);
979
980 /* This code added to insure that, if flow-control is not to be used,
981 we have an unlocked terminal at the start. */
982
983 #ifdef TCXONC
984 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TCXONC, 1);
985 #endif
986 #ifdef TIOCSTART
987 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TIOCSTART, 0);
988 #endif
989
990 #if !defined (DOS_NT)
991 #ifdef TCOON
992 if (!tty_out->flow_control) tcflow (fileno (tty_out->input), TCOON);
993 #endif
994 #endif
995
996 #ifdef F_SETFL
997 #ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */
998 if (interrupt_input)
999 {
1000 old_fcntl_owner[fileno (tty_out->input)] =
1001 fcntl (fileno (tty_out->input), F_GETOWN, 0);
1002 fcntl (fileno (tty_out->input), F_SETOWN, getpid ());
1003 init_sigio (fileno (tty_out->input));
1004 #ifdef HAVE_GPM
1005 if (gpm_tty == tty_out)
1006 {
1007 /* Arrange for mouse events to give us SIGIO signals. */
1008 fcntl (gpm_fd, F_SETOWN, getpid ());
1009 fcntl (gpm_fd, F_SETFL, fcntl (gpm_fd, F_GETFL, 0) | O_NONBLOCK);
1010 init_sigio (gpm_fd);
1011 }
1012 #endif /* HAVE_GPM */
1013 }
1014 #endif /* F_GETOWN */
1015 #endif /* F_SETFL */
1016
1017 #ifdef _IOFBF
1018 /* This symbol is defined on recent USG systems.
1019 Someone says without this call USG won't really buffer the file
1020 even with a call to setbuf. */
1021 setvbuf (tty_out->output, (char *) _sobuf, _IOFBF, sizeof _sobuf);
1022 #else
1023 setbuf (tty_out->output, (char *) _sobuf);
1024 #endif
1025
1026 if (tty_out->terminal->set_terminal_modes_hook)
1027 tty_out->terminal->set_terminal_modes_hook (tty_out->terminal);
1028
1029 if (!tty_out->term_initted)
1030 {
1031 Lisp_Object tail, frame;
1032 FOR_EACH_FRAME (tail, frame)
1033 {
1034 /* XXX This needs to be revised. */
1035 if (FRAME_TERMCAP_P (XFRAME (frame))
1036 && FRAME_TTY (XFRAME (frame)) == tty_out)
1037 init_frame_faces (XFRAME (frame));
1038 }
1039 }
1040
1041 if (tty_out->term_initted && no_redraw_on_reenter)
1042 {
1043 /* We used to call "direct_output_forward_char(0)" here,
1044 but it's not clear why, since it may not do anything anyway. */
1045 }
1046 else
1047 {
1048 Lisp_Object tail, frame;
1049 frame_garbaged = 1;
1050 FOR_EACH_FRAME (tail, frame)
1051 {
1052 if ((FRAME_TERMCAP_P (XFRAME (frame))
1053 || FRAME_MSDOS_P (XFRAME (frame)))
1054 && FRAME_TTY (XFRAME (frame)) == tty_out)
1055 FRAME_GARBAGED_P (XFRAME (frame)) = 1;
1056 }
1057 }
1058
1059 tty_out->term_initted = 1;
1060 }
1061
1062 /* Return nonzero if safe to use tabs in output.
1063 At the time this is called, init_sys_modes has not been done yet. */
1064
1065 int
1066 tabs_safe_p (int fd)
1067 {
1068 struct emacs_tty etty;
1069
1070 emacs_get_tty (fd, &etty);
1071 #ifndef DOS_NT
1072 #ifdef TABDLY
1073 return ((etty.main.c_oflag & TABDLY) != TAB3);
1074 #else /* not TABDLY */
1075 return 1;
1076 #endif /* not TABDLY */
1077 #else /* DOS_NT */
1078 return 0;
1079 #endif /* DOS_NT */
1080 }
1081 \f
1082 /* Get terminal size from system.
1083 Store number of lines into *HEIGHTP and width into *WIDTHP.
1084 We store 0 if there's no valid information. */
1085
1086 void
1087 get_tty_size (int fd, int *widthp, int *heightp)
1088 {
1089 #if defined TIOCGWINSZ
1090
1091 /* BSD-style. */
1092 struct winsize size;
1093
1094 if (ioctl (fd, TIOCGWINSZ, &size) == -1)
1095 *widthp = *heightp = 0;
1096 else
1097 {
1098 *widthp = size.ws_col;
1099 *heightp = size.ws_row;
1100 }
1101
1102 #elif defined TIOCGSIZE
1103
1104 /* SunOS - style. */
1105 struct ttysize size;
1106
1107 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1108 *widthp = *heightp = 0;
1109 else
1110 {
1111 *widthp = size.ts_cols;
1112 *heightp = size.ts_lines;
1113 }
1114
1115 #elif defined WINDOWSNT
1116
1117 CONSOLE_SCREEN_BUFFER_INFO info;
1118 if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &info))
1119 {
1120 *widthp = info.srWindow.Right - info.srWindow.Left + 1;
1121 *heightp = info.srWindow.Bottom - info.srWindow.Top + 1;
1122 }
1123 else
1124 *widthp = *heightp = 0;
1125
1126 #elif defined MSDOS
1127
1128 *widthp = ScreenCols ();
1129 *heightp = ScreenRows ();
1130
1131 #else /* system doesn't know size */
1132
1133 *widthp = 0;
1134 *heightp = 0;
1135
1136 #endif
1137 }
1138
1139 /* Set the logical window size associated with descriptor FD
1140 to HEIGHT and WIDTH. This is used mainly with ptys. */
1141
1142 int
1143 set_window_size (int fd, int height, int width)
1144 {
1145 #ifdef TIOCSWINSZ
1146
1147 /* BSD-style. */
1148 struct winsize size;
1149 size.ws_row = height;
1150 size.ws_col = width;
1151
1152 if (ioctl (fd, TIOCSWINSZ, &size) == -1)
1153 return 0; /* error */
1154 else
1155 return 1;
1156
1157 #else
1158 #ifdef TIOCSSIZE
1159
1160 /* SunOS - style. */
1161 struct ttysize size;
1162 size.ts_lines = height;
1163 size.ts_cols = width;
1164
1165 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1166 return 0;
1167 else
1168 return 1;
1169 #else
1170 return -1;
1171 #endif /* not SunOS-style */
1172 #endif /* not BSD-style */
1173 }
1174
1175 \f
1176
1177 /* Prepare all terminal devices for exiting Emacs. */
1178
1179 void
1180 reset_all_sys_modes (void)
1181 {
1182 struct tty_display_info *tty;
1183 for (tty = tty_list; tty; tty = tty->next)
1184 reset_sys_modes (tty);
1185 }
1186
1187 /* Prepare the terminal for closing it; move the cursor to the
1188 bottom of the frame, turn off interrupt-driven I/O, etc. */
1189
1190 void
1191 reset_sys_modes (struct tty_display_info *tty_out)
1192 {
1193 if (noninteractive)
1194 {
1195 fflush (stdout);
1196 return;
1197 }
1198 if (!tty_out->term_initted)
1199 return;
1200
1201 if (!tty_out->output)
1202 return; /* The tty is suspended. */
1203
1204 /* Go to and clear the last line of the terminal. */
1205
1206 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1207
1208 /* Code adapted from tty_clear_end_of_line. */
1209 if (tty_out->TS_clr_line)
1210 {
1211 emacs_tputs (tty_out, tty_out->TS_clr_line, 1, cmputc);
1212 }
1213 else
1214 { /* have to do it the hard way */
1215 int i;
1216 tty_turn_off_insert (tty_out);
1217
1218 for (i = curX (tty_out); i < FrameCols (tty_out) - 1; i++)
1219 {
1220 fputc (' ', tty_out->output);
1221 }
1222 }
1223
1224 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1225 fflush (tty_out->output);
1226
1227 if (tty_out->terminal->reset_terminal_modes_hook)
1228 tty_out->terminal->reset_terminal_modes_hook (tty_out->terminal);
1229
1230 #ifdef BSD_SYSTEM
1231 /* Avoid possible loss of output when changing terminal modes. */
1232 fsync (fileno (tty_out->output));
1233 #endif
1234
1235 #ifdef F_SETFL
1236 #ifdef F_SETOWN /* F_SETFL does not imply existence of F_SETOWN */
1237 if (interrupt_input)
1238 {
1239 reset_sigio (fileno (tty_out->input));
1240 fcntl (fileno (tty_out->input), F_SETOWN,
1241 old_fcntl_owner[fileno (tty_out->input)]);
1242 }
1243 #endif /* F_SETOWN */
1244 #ifdef O_NDELAY
1245 fcntl (fileno (tty_out->input), F_SETFL,
1246 fcntl (fileno (tty_out->input), F_GETFL, 0) & ~O_NDELAY);
1247 #endif
1248 #endif /* F_SETFL */
1249
1250 if (tty_out->old_tty)
1251 while (emacs_set_tty (fileno (tty_out->input),
1252 tty_out->old_tty, 0) < 0 && errno == EINTR)
1253 ;
1254
1255 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1256 dos_ttcooked ();
1257 #endif
1258
1259 }
1260 \f
1261 #ifdef HAVE_PTYS
1262
1263 /* Set up the proper status flags for use of a pty. */
1264
1265 void
1266 setup_pty (int fd)
1267 {
1268 /* I'm told that TOICREMOTE does not mean control chars
1269 "can't be sent" but rather that they don't have
1270 input-editing or signaling effects.
1271 That should be good, because we have other ways
1272 to do those things in Emacs.
1273 However, telnet mode seems not to work on 4.2.
1274 So TIOCREMOTE is turned off now. */
1275
1276 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1277 will hang. In particular, the "timeout" feature (which
1278 causes a read to return if there is no data available)
1279 does this. Also it is known that telnet mode will hang
1280 in such a way that Emacs must be stopped (perhaps this
1281 is the same problem).
1282
1283 If TIOCREMOTE is turned off, then there is a bug in
1284 hp-ux which sometimes loses data. Apparently the
1285 code which blocks the master process when the internal
1286 buffer fills up does not work. Other than this,
1287 though, everything else seems to work fine.
1288
1289 Since the latter lossage is more benign, we may as well
1290 lose that way. -- cph */
1291 #ifdef FIONBIO
1292 #if defined (UNIX98_PTYS)
1293 {
1294 int on = 1;
1295 ioctl (fd, FIONBIO, &on);
1296 }
1297 #endif
1298 #endif
1299 }
1300 #endif /* HAVE_PTYS */
1301 \f
1302 #ifdef HAVE_SOCKETS
1303 #include <sys/socket.h>
1304 #include <netdb.h>
1305 #endif /* HAVE_SOCKETS */
1306
1307 #ifdef TRY_AGAIN
1308 #ifndef HAVE_H_ERRNO
1309 extern int h_errno;
1310 #endif
1311 #endif /* TRY_AGAIN */
1312
1313 void
1314 init_system_name (void)
1315 {
1316 #ifndef HAVE_GETHOSTNAME
1317 struct utsname uts;
1318 uname (&uts);
1319 Vsystem_name = build_string (uts.nodename);
1320 #else /* HAVE_GETHOSTNAME */
1321 unsigned int hostname_size = 256;
1322 char *hostname = alloca (hostname_size);
1323
1324 /* Try to get the host name; if the buffer is too short, try
1325 again. Apparently, the only indication gethostname gives of
1326 whether the buffer was large enough is the presence or absence
1327 of a '\0' in the string. Eech. */
1328 for (;;)
1329 {
1330 gethostname (hostname, hostname_size - 1);
1331 hostname[hostname_size - 1] = '\0';
1332
1333 /* Was the buffer large enough for the '\0'? */
1334 if (strlen (hostname) < hostname_size - 1)
1335 break;
1336
1337 hostname_size <<= 1;
1338 hostname = alloca (hostname_size);
1339 }
1340 #ifdef HAVE_SOCKETS
1341 /* Turn the hostname into the official, fully-qualified hostname.
1342 Don't do this if we're going to dump; this can confuse system
1343 libraries on some machines and make the dumped emacs core dump. */
1344 #ifndef CANNOT_DUMP
1345 if (initialized)
1346 #endif /* not CANNOT_DUMP */
1347 if (! strchr (hostname, '.'))
1348 {
1349 int count;
1350 #ifdef HAVE_GETADDRINFO
1351 struct addrinfo *res;
1352 struct addrinfo hints;
1353 int ret;
1354
1355 memset (&hints, 0, sizeof (hints));
1356 hints.ai_socktype = SOCK_STREAM;
1357 hints.ai_flags = AI_CANONNAME;
1358
1359 for (count = 0;; count++)
1360 {
1361 if ((ret = getaddrinfo (hostname, NULL, &hints, &res)) == 0
1362 || ret != EAI_AGAIN)
1363 break;
1364
1365 if (count >= 5)
1366 break;
1367 Fsleep_for (make_number (1), Qnil);
1368 }
1369
1370 if (ret == 0)
1371 {
1372 struct addrinfo *it = res;
1373 while (it)
1374 {
1375 char *fqdn = it->ai_canonname;
1376 if (fqdn && strchr (fqdn, '.')
1377 && strcmp (fqdn, "localhost.localdomain") != 0)
1378 break;
1379 it = it->ai_next;
1380 }
1381 if (it)
1382 {
1383 hostname = alloca (strlen (it->ai_canonname) + 1);
1384 strcpy (hostname, it->ai_canonname);
1385 }
1386 freeaddrinfo (res);
1387 }
1388 #else /* !HAVE_GETADDRINFO */
1389 struct hostent *hp;
1390 for (count = 0;; count++)
1391 {
1392
1393 #ifdef TRY_AGAIN
1394 h_errno = 0;
1395 #endif
1396 hp = gethostbyname (hostname);
1397 #ifdef TRY_AGAIN
1398 if (! (hp == 0 && h_errno == TRY_AGAIN))
1399 #endif
1400
1401 break;
1402
1403 if (count >= 5)
1404 break;
1405 Fsleep_for (make_number (1), Qnil);
1406 }
1407
1408 if (hp)
1409 {
1410 char *fqdn = (char *) hp->h_name;
1411
1412 if (!strchr (fqdn, '.'))
1413 {
1414 /* We still don't have a fully qualified domain name.
1415 Try to find one in the list of alternate names */
1416 char **alias = hp->h_aliases;
1417 while (*alias
1418 && (!strchr (*alias, '.')
1419 || !strcmp (*alias, "localhost.localdomain")))
1420 alias++;
1421 if (*alias)
1422 fqdn = *alias;
1423 }
1424 hostname = fqdn;
1425 }
1426 #endif /* !HAVE_GETADDRINFO */
1427 }
1428 #endif /* HAVE_SOCKETS */
1429 Vsystem_name = build_string (hostname);
1430 #endif /* HAVE_GETHOSTNAME */
1431 {
1432 unsigned char *p;
1433 for (p = SDATA (Vsystem_name); *p; p++)
1434 if (*p == ' ' || *p == '\t')
1435 *p = '-';
1436 }
1437 }
1438 \f
1439 sigset_t empty_mask;
1440
1441 /* Store into *ACTION a signal action suitable for Emacs, with handler
1442 HANDLER. */
1443 void
1444 emacs_sigaction_init (struct sigaction *action, signal_handler_t handler)
1445 {
1446 sigemptyset (&action->sa_mask);
1447 action->sa_handler = handler;
1448 action->sa_flags = 0;
1449 #if defined (SA_RESTART)
1450 /* SA_RESTART causes interruptible functions with timeouts (e.g.,
1451 'select') to reset their timeout on some platforms (e.g.,
1452 HP-UX 11), which is not what we want. Also, when Emacs is
1453 interactive, we don't want SA_RESTART because we need to poll
1454 for pending input so we need long-running syscalls to be interrupted
1455 after a signal that sets the interrupt_input_pending flag. */
1456 /* Non-interactive keyboard input goes through stdio, where we always
1457 want restartable system calls. */
1458 if (noninteractive)
1459 action->sa_flags = SA_RESTART;
1460 #endif
1461 }
1462
1463 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1464 static pthread_t main_thread;
1465 #endif
1466
1467 /* If we are on the main thread, handle the signal SIG with HANDLER.
1468 Otherwise, redirect the signal to the main thread, blocking it from
1469 this thread. POSIX says any thread can receive a signal that is
1470 associated with a process, process group, or asynchronous event.
1471 On GNU/Linux that is not true, but for other systems (FreeBSD at
1472 least) it is. */
1473 void
1474 handle_on_main_thread (int sig, signal_handler_t handler)
1475 {
1476 /* Preserve errno, to avoid race conditions with signal handlers that
1477 might change errno. Races can occur even in single-threaded hosts. */
1478 int old_errno = errno;
1479
1480 bool on_main_thread = true;
1481 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1482 if (! pthread_equal (pthread_self (), main_thread))
1483 {
1484 sigset_t blocked;
1485 sigemptyset (&blocked);
1486 sigaddset (&blocked, sig);
1487 pthread_sigmask (SIG_BLOCK, &blocked, 0);
1488 pthread_kill (main_thread, sig);
1489 on_main_thread = false;
1490 }
1491 #endif
1492 if (on_main_thread)
1493 handler (sig);
1494
1495 errno = old_errno;
1496 }
1497 \f
1498 #if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
1499 static char *my_sys_siglist[NSIG];
1500 # ifdef sys_siglist
1501 # undef sys_siglist
1502 # endif
1503 # define sys_siglist my_sys_siglist
1504 #endif
1505
1506 void
1507 init_signals (void)
1508 {
1509 sigemptyset (&empty_mask);
1510
1511 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1512 main_thread = pthread_self ();
1513 #endif
1514
1515 #if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
1516 if (! initialized)
1517 {
1518 # ifdef SIGABRT
1519 sys_siglist[SIGABRT] = "Aborted";
1520 # endif
1521 # ifdef SIGAIO
1522 sys_siglist[SIGAIO] = "LAN I/O interrupt";
1523 # endif
1524 # ifdef SIGALRM
1525 sys_siglist[SIGALRM] = "Alarm clock";
1526 # endif
1527 # ifdef SIGBUS
1528 sys_siglist[SIGBUS] = "Bus error";
1529 # endif
1530 # ifdef SIGCLD
1531 sys_siglist[SIGCLD] = "Child status changed";
1532 # endif
1533 # ifdef SIGCHLD
1534 sys_siglist[SIGCHLD] = "Child status changed";
1535 # endif
1536 # ifdef SIGCONT
1537 sys_siglist[SIGCONT] = "Continued";
1538 # endif
1539 # ifdef SIGDANGER
1540 sys_siglist[SIGDANGER] = "Swap space dangerously low";
1541 # endif
1542 # ifdef SIGDGNOTIFY
1543 sys_siglist[SIGDGNOTIFY] = "Notification message in queue";
1544 # endif
1545 # ifdef SIGEMT
1546 sys_siglist[SIGEMT] = "Emulation trap";
1547 # endif
1548 # ifdef SIGFPE
1549 sys_siglist[SIGFPE] = "Arithmetic exception";
1550 # endif
1551 # ifdef SIGFREEZE
1552 sys_siglist[SIGFREEZE] = "SIGFREEZE";
1553 # endif
1554 # ifdef SIGGRANT
1555 sys_siglist[SIGGRANT] = "Monitor mode granted";
1556 # endif
1557 # ifdef SIGHUP
1558 sys_siglist[SIGHUP] = "Hangup";
1559 # endif
1560 # ifdef SIGILL
1561 sys_siglist[SIGILL] = "Illegal instruction";
1562 # endif
1563 # ifdef SIGINT
1564 sys_siglist[SIGINT] = "Interrupt";
1565 # endif
1566 # ifdef SIGIO
1567 sys_siglist[SIGIO] = "I/O possible";
1568 # endif
1569 # ifdef SIGIOINT
1570 sys_siglist[SIGIOINT] = "I/O intervention required";
1571 # endif
1572 # ifdef SIGIOT
1573 sys_siglist[SIGIOT] = "IOT trap";
1574 # endif
1575 # ifdef SIGKILL
1576 sys_siglist[SIGKILL] = "Killed";
1577 # endif
1578 # ifdef SIGLOST
1579 sys_siglist[SIGLOST] = "Resource lost";
1580 # endif
1581 # ifdef SIGLWP
1582 sys_siglist[SIGLWP] = "SIGLWP";
1583 # endif
1584 # ifdef SIGMSG
1585 sys_siglist[SIGMSG] = "Monitor mode data available";
1586 # endif
1587 # ifdef SIGPHONE
1588 sys_siglist[SIGWIND] = "SIGPHONE";
1589 # endif
1590 # ifdef SIGPIPE
1591 sys_siglist[SIGPIPE] = "Broken pipe";
1592 # endif
1593 # ifdef SIGPOLL
1594 sys_siglist[SIGPOLL] = "Pollable event occurred";
1595 # endif
1596 # ifdef SIGPROF
1597 sys_siglist[SIGPROF] = "Profiling timer expired";
1598 # endif
1599 # ifdef SIGPTY
1600 sys_siglist[SIGPTY] = "PTY I/O interrupt";
1601 # endif
1602 # ifdef SIGPWR
1603 sys_siglist[SIGPWR] = "Power-fail restart";
1604 # endif
1605 # ifdef SIGQUIT
1606 sys_siglist[SIGQUIT] = "Quit";
1607 # endif
1608 # ifdef SIGRETRACT
1609 sys_siglist[SIGRETRACT] = "Need to relinquish monitor mode";
1610 # endif
1611 # ifdef SIGSAK
1612 sys_siglist[SIGSAK] = "Secure attention";
1613 # endif
1614 # ifdef SIGSEGV
1615 sys_siglist[SIGSEGV] = "Segmentation violation";
1616 # endif
1617 # ifdef SIGSOUND
1618 sys_siglist[SIGSOUND] = "Sound completed";
1619 # endif
1620 # ifdef SIGSTOP
1621 sys_siglist[SIGSTOP] = "Stopped (signal)";
1622 # endif
1623 # ifdef SIGSTP
1624 sys_siglist[SIGSTP] = "Stopped (user)";
1625 # endif
1626 # ifdef SIGSYS
1627 sys_siglist[SIGSYS] = "Bad argument to system call";
1628 # endif
1629 # ifdef SIGTERM
1630 sys_siglist[SIGTERM] = "Terminated";
1631 # endif
1632 # ifdef SIGTHAW
1633 sys_siglist[SIGTHAW] = "SIGTHAW";
1634 # endif
1635 # ifdef SIGTRAP
1636 sys_siglist[SIGTRAP] = "Trace/breakpoint trap";
1637 # endif
1638 # ifdef SIGTSTP
1639 sys_siglist[SIGTSTP] = "Stopped (user)";
1640 # endif
1641 # ifdef SIGTTIN
1642 sys_siglist[SIGTTIN] = "Stopped (tty input)";
1643 # endif
1644 # ifdef SIGTTOU
1645 sys_siglist[SIGTTOU] = "Stopped (tty output)";
1646 # endif
1647 # ifdef SIGURG
1648 sys_siglist[SIGURG] = "Urgent I/O condition";
1649 # endif
1650 # ifdef SIGUSR1
1651 sys_siglist[SIGUSR1] = "User defined signal 1";
1652 # endif
1653 # ifdef SIGUSR2
1654 sys_siglist[SIGUSR2] = "User defined signal 2";
1655 # endif
1656 # ifdef SIGVTALRM
1657 sys_siglist[SIGVTALRM] = "Virtual timer expired";
1658 # endif
1659 # ifdef SIGWAITING
1660 sys_siglist[SIGWAITING] = "Process's LWPs are blocked";
1661 # endif
1662 # ifdef SIGWINCH
1663 sys_siglist[SIGWINCH] = "Window size changed";
1664 # endif
1665 # ifdef SIGWIND
1666 sys_siglist[SIGWIND] = "SIGWIND";
1667 # endif
1668 # ifdef SIGXCPU
1669 sys_siglist[SIGXCPU] = "CPU time limit exceeded";
1670 # endif
1671 # ifdef SIGXFSZ
1672 sys_siglist[SIGXFSZ] = "File size limit exceeded";
1673 # endif
1674 }
1675 #endif /* !defined HAVE_STRSIGNAL && !defined HAVE_DECL_SYS_SIGLIST */
1676 }
1677 \f
1678 #ifndef HAVE_RANDOM
1679 #ifdef random
1680 #define HAVE_RANDOM
1681 #endif
1682 #endif
1683
1684 /* Figure out how many bits the system's random number generator uses.
1685 `random' and `lrand48' are assumed to return 31 usable bits.
1686 BSD `rand' returns a 31 bit value but the low order bits are unusable;
1687 so we'll shift it and treat it like the 15-bit USG `rand'. */
1688
1689 #ifndef RAND_BITS
1690 # ifdef HAVE_RANDOM
1691 # define RAND_BITS 31
1692 # else /* !HAVE_RANDOM */
1693 # ifdef HAVE_LRAND48
1694 # define RAND_BITS 31
1695 # define random lrand48
1696 # else /* !HAVE_LRAND48 */
1697 # define RAND_BITS 15
1698 # if RAND_MAX == 32767
1699 # define random rand
1700 # else /* RAND_MAX != 32767 */
1701 # if RAND_MAX == 2147483647
1702 # define random() (rand () >> 16)
1703 # else /* RAND_MAX != 2147483647 */
1704 # ifdef USG
1705 # define random rand
1706 # else
1707 # define random() (rand () >> 16)
1708 # endif /* !USG */
1709 # endif /* RAND_MAX != 2147483647 */
1710 # endif /* RAND_MAX != 32767 */
1711 # endif /* !HAVE_LRAND48 */
1712 # endif /* !HAVE_RANDOM */
1713 #endif /* !RAND_BITS */
1714
1715 void
1716 seed_random (void *seed, ptrdiff_t seed_size)
1717 {
1718 #if defined HAVE_RANDOM || ! defined HAVE_LRAND48
1719 unsigned int arg = 0;
1720 #else
1721 long int arg = 0;
1722 #endif
1723 unsigned char *argp = (unsigned char *) &arg;
1724 unsigned char *seedp = seed;
1725 ptrdiff_t i;
1726 for (i = 0; i < seed_size; i++)
1727 argp[i % sizeof arg] ^= seedp[i];
1728 #ifdef HAVE_RANDOM
1729 srandom (arg);
1730 #else
1731 # ifdef HAVE_LRAND48
1732 srand48 (arg);
1733 # else
1734 srand (arg);
1735 # endif
1736 #endif
1737 }
1738
1739 void
1740 init_random (void)
1741 {
1742 EMACS_TIME t = current_emacs_time ();
1743 uintmax_t v = getpid () ^ EMACS_SECS (t) ^ EMACS_NSECS (t);
1744 seed_random (&v, sizeof v);
1745 }
1746
1747 /*
1748 * Return a nonnegative random integer out of whatever we've got.
1749 * It contains enough bits to make a random (signed) Emacs fixnum.
1750 * This suffices even for a 64-bit architecture with a 15-bit rand.
1751 */
1752 EMACS_INT
1753 get_random (void)
1754 {
1755 EMACS_UINT val = 0;
1756 int i;
1757 for (i = 0; i < (FIXNUM_BITS + RAND_BITS - 1) / RAND_BITS; i++)
1758 val = (random () ^ (val << RAND_BITS)
1759 ^ (val >> (BITS_PER_EMACS_INT - RAND_BITS)));
1760 val ^= val >> (BITS_PER_EMACS_INT - FIXNUM_BITS);
1761 return val & INTMASK;
1762 }
1763
1764 #ifndef HAVE_SNPRINTF
1765 /* Approximate snprintf as best we can on ancient hosts that lack it. */
1766 int
1767 snprintf (char *buf, size_t bufsize, char const *format, ...)
1768 {
1769 ptrdiff_t size = min (bufsize, PTRDIFF_MAX);
1770 ptrdiff_t nbytes = size - 1;
1771 va_list ap;
1772
1773 if (size)
1774 {
1775 va_start (ap, format);
1776 nbytes = doprnt (buf, size, format, 0, ap);
1777 va_end (ap);
1778 }
1779
1780 if (nbytes == size - 1)
1781 {
1782 /* Calculate the length of the string that would have been created
1783 had the buffer been large enough. */
1784 char stackbuf[4000];
1785 char *b = stackbuf;
1786 ptrdiff_t bsize = sizeof stackbuf;
1787 va_start (ap, format);
1788 nbytes = evxprintf (&b, &bsize, stackbuf, -1, format, ap);
1789 va_end (ap);
1790 if (b != stackbuf)
1791 xfree (b);
1792 }
1793
1794 if (INT_MAX < nbytes)
1795 {
1796 #ifdef EOVERFLOW
1797 errno = EOVERFLOW;
1798 #else
1799 errno = EDOM;
1800 #endif
1801 return -1;
1802 }
1803 return nbytes;
1804 }
1805 #endif
1806 \f
1807 /* If a backtrace is available, output the top lines of it to stderr.
1808 Do not output more than BACKTRACE_LIMIT or BACKTRACE_LIMIT_MAX lines.
1809 This function may be called from a signal handler, so it should
1810 not invoke async-unsafe functions like malloc. */
1811 void
1812 emacs_backtrace (int backtrace_limit)
1813 {
1814 enum { BACKTRACE_LIMIT_MAX = 500 };
1815 void *buffer[BACKTRACE_LIMIT_MAX + 1];
1816 int bounded_limit = min (backtrace_limit, BACKTRACE_LIMIT_MAX);
1817 int npointers = backtrace (buffer, bounded_limit + 1);
1818 if (npointers)
1819 ignore_value (write (STDERR_FILENO, "\nBacktrace:\n", 12));
1820 backtrace_symbols_fd (buffer, bounded_limit, STDERR_FILENO);
1821 if (bounded_limit < npointers)
1822 ignore_value (write (STDERR_FILENO, "...\n", 4));
1823 }
1824 \f
1825 #ifndef HAVE_NTGUI
1826 /* Using emacs_abort lets GDB return from a breakpoint here. */
1827 void
1828 emacs_abort (void)
1829 {
1830 fatal_error_backtrace (SIGABRT, 10);
1831 }
1832 #endif
1833
1834 int
1835 emacs_open (const char *path, int oflag, int mode)
1836 {
1837 register int rtnval;
1838
1839 while ((rtnval = open (path, oflag, mode)) == -1
1840 && (errno == EINTR))
1841 QUIT;
1842 return (rtnval);
1843 }
1844
1845 int
1846 emacs_close (int fd)
1847 {
1848 int did_retry = 0;
1849 register int rtnval;
1850
1851 while ((rtnval = close (fd)) == -1
1852 && (errno == EINTR))
1853 did_retry = 1;
1854
1855 /* If close is interrupted SunOS 4.1 may or may not have closed the
1856 file descriptor. If it did the second close will fail with
1857 errno = EBADF. That means we have succeeded. */
1858 if (rtnval == -1 && did_retry && errno == EBADF)
1859 return 0;
1860
1861 return rtnval;
1862 }
1863
1864 /* Maximum number of bytes to read or write in a single system call.
1865 This works around a serious bug in Linux kernels before 2.6.16; see
1866 <https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=612839>.
1867 It's likely to work around similar bugs in other operating systems, so do it
1868 on all platforms. Round INT_MAX down to a page size, with the conservative
1869 assumption that page sizes are at most 2**18 bytes (any kernel with a
1870 page size larger than that shouldn't have the bug). */
1871 #ifndef MAX_RW_COUNT
1872 #define MAX_RW_COUNT (INT_MAX >> 18 << 18)
1873 #endif
1874
1875 /* Read from FILEDESC to a buffer BUF with size NBYTE, retrying if interrupted.
1876 Return the number of bytes read, which might be less than NBYTE.
1877 On error, set errno and return -1. */
1878 ptrdiff_t
1879 emacs_read (int fildes, char *buf, ptrdiff_t nbyte)
1880 {
1881 register ssize_t rtnval;
1882
1883 /* There is no need to check against MAX_RW_COUNT, since no caller ever
1884 passes a size that large to emacs_read. */
1885
1886 while ((rtnval = read (fildes, buf, nbyte)) == -1
1887 && (errno == EINTR))
1888 QUIT;
1889 return (rtnval);
1890 }
1891
1892 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if interrupted
1893 or if a partial write occurs. Return the number of bytes written, setting
1894 errno if this is less than NBYTE. */
1895 ptrdiff_t
1896 emacs_write (int fildes, const char *buf, ptrdiff_t nbyte)
1897 {
1898 ssize_t rtnval;
1899 ptrdiff_t bytes_written;
1900
1901 bytes_written = 0;
1902
1903 while (nbyte > 0)
1904 {
1905 rtnval = write (fildes, buf, min (nbyte, MAX_RW_COUNT));
1906
1907 if (rtnval < 0)
1908 {
1909 if (errno == EINTR)
1910 {
1911 /* I originally used `QUIT' but that might causes files to
1912 be truncated if you hit C-g in the middle of it. --Stef */
1913 process_pending_signals ();
1914 continue;
1915 }
1916 else
1917 break;
1918 }
1919
1920 buf += rtnval;
1921 nbyte -= rtnval;
1922 bytes_written += rtnval;
1923 }
1924
1925 return (bytes_written);
1926 }
1927
1928 static struct allocator const emacs_norealloc_allocator =
1929 { xmalloc, NULL, xfree, memory_full };
1930
1931 /* Get the symbolic link value of FILENAME. Return a pointer to a
1932 NUL-terminated string. If readlink fails, return NULL and set
1933 errno. If the value fits in INITIAL_BUF, return INITIAL_BUF.
1934 Otherwise, allocate memory and return a pointer to that memory. If
1935 memory allocation fails, diagnose and fail without returning. If
1936 successful, store the length of the symbolic link into *LINKLEN. */
1937 char *
1938 emacs_readlink (char const *filename, char initial_buf[READLINK_BUFSIZE])
1939 {
1940 return careadlinkat (AT_FDCWD, filename, initial_buf, READLINK_BUFSIZE,
1941 &emacs_norealloc_allocator, careadlinkatcwd);
1942 }
1943 \f
1944 #ifdef USG
1945 /*
1946 * All of the following are for USG.
1947 *
1948 * On USG systems the system calls are INTERRUPTIBLE by signals
1949 * that the user program has elected to catch. Thus the system call
1950 * must be retried in these cases. To handle this without massive
1951 * changes in the source code, we remap the standard system call names
1952 * to names for our own functions in sysdep.c that do the system call
1953 * with retries. Actually, for portability reasons, it is good
1954 * programming practice, as this example shows, to limit all actual
1955 * system calls to a single occurrence in the source. Sure, this
1956 * adds an extra level of function call overhead but it is almost
1957 * always negligible. Fred Fish, Unisoft Systems Inc.
1958 */
1959
1960 /*
1961 * Warning, this function may not duplicate 4.2 action properly
1962 * under error conditions.
1963 */
1964
1965 #if !defined (HAVE_GETWD) || defined (BROKEN_GETWD)
1966
1967 #ifndef MAXPATHLEN
1968 /* In 4.1, param.h fails to define this. */
1969 #define MAXPATHLEN 1024
1970 #endif
1971
1972 char *
1973 getwd (char *pathname)
1974 {
1975 char *npath, *spath;
1976 extern char *getcwd (char *, size_t);
1977
1978 BLOCK_INPUT; /* getcwd uses malloc */
1979 spath = npath = getcwd ((char *) 0, MAXPATHLEN);
1980 if (spath == 0)
1981 {
1982 UNBLOCK_INPUT;
1983 return spath;
1984 }
1985 /* On Altos 3068, getcwd can return @hostname/dir, so discard
1986 up to first slash. Should be harmless on other systems. */
1987 while (*npath && *npath != '/')
1988 npath++;
1989 strcpy (pathname, npath);
1990 free (spath); /* getcwd uses malloc */
1991 UNBLOCK_INPUT;
1992 return pathname;
1993 }
1994
1995 #endif /* !defined (HAVE_GETWD) || defined (BROKEN_GETWD) */
1996 #endif /* USG */
1997 \f
1998 /* Directory routines for systems that don't have them. */
1999
2000 #ifdef HAVE_DIRENT_H
2001
2002 #include <dirent.h>
2003
2004 #if !defined (HAVE_CLOSEDIR)
2005
2006 int
2007 closedir (DIR *dirp /* stream from opendir */)
2008 {
2009 int rtnval;
2010
2011 rtnval = emacs_close (dirp->dd_fd);
2012 xfree (dirp);
2013
2014 return rtnval;
2015 }
2016 #endif /* not HAVE_CLOSEDIR */
2017 #endif /* HAVE_DIRENT_H */
2018
2019 \f
2020 /* Return a struct timeval that is roughly equivalent to T.
2021 Use the least timeval not less than T.
2022 Return an extremal value if the result would overflow. */
2023 struct timeval
2024 make_timeval (EMACS_TIME t)
2025 {
2026 struct timeval tv;
2027 tv.tv_sec = t.tv_sec;
2028 tv.tv_usec = t.tv_nsec / 1000;
2029
2030 if (t.tv_nsec % 1000 != 0)
2031 {
2032 if (tv.tv_usec < 999999)
2033 tv.tv_usec++;
2034 else if (tv.tv_sec < TYPE_MAXIMUM (time_t))
2035 {
2036 tv.tv_sec++;
2037 tv.tv_usec = 0;
2038 }
2039 }
2040
2041 return tv;
2042 }
2043
2044 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2045 ATIME and MTIME, respectively.
2046 FD must be either negative -- in which case it is ignored --
2047 or a file descriptor that is open on FILE.
2048 If FD is nonnegative, then FILE can be NULL. */
2049 int
2050 set_file_times (int fd, const char *filename,
2051 EMACS_TIME atime, EMACS_TIME mtime)
2052 {
2053 struct timespec timespec[2];
2054 timespec[0] = atime;
2055 timespec[1] = mtime;
2056 return fdutimens (fd, filename, timespec);
2057 }
2058 \f
2059 #ifndef HAVE_STRSIGNAL
2060 char *
2061 strsignal (int code)
2062 {
2063 char *signame = 0;
2064
2065 if (0 <= code && code < NSIG)
2066 {
2067 /* Cast to suppress warning if the table has const char *. */
2068 signame = (char *) sys_siglist[code];
2069 }
2070
2071 return signame;
2072 }
2073 #endif /* HAVE_STRSIGNAL */
2074 \f
2075 #ifndef DOS_NT
2076 /* For make-serial-process */
2077 int
2078 serial_open (char *port)
2079 {
2080 int fd = -1;
2081
2082 fd = emacs_open ((char*) port,
2083 O_RDWR
2084 #ifdef O_NONBLOCK
2085 | O_NONBLOCK
2086 #else
2087 | O_NDELAY
2088 #endif
2089 #ifdef O_NOCTTY
2090 | O_NOCTTY
2091 #endif
2092 , 0);
2093 if (fd < 0)
2094 {
2095 error ("Could not open %s: %s",
2096 port, emacs_strerror (errno));
2097 }
2098 #ifdef TIOCEXCL
2099 ioctl (fd, TIOCEXCL, (char *) 0);
2100 #endif
2101
2102 return fd;
2103 }
2104
2105 #if !defined (HAVE_CFMAKERAW)
2106 /* Workaround for targets which are missing cfmakeraw. */
2107 /* Pasted from man page. */
2108 static void
2109 cfmakeraw (struct termios *termios_p)
2110 {
2111 termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
2112 termios_p->c_oflag &= ~OPOST;
2113 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
2114 termios_p->c_cflag &= ~(CSIZE|PARENB);
2115 termios_p->c_cflag |= CS8;
2116 }
2117 #endif /* !defined (HAVE_CFMAKERAW */
2118
2119 #if !defined (HAVE_CFSETSPEED)
2120 /* Workaround for targets which are missing cfsetspeed. */
2121 static int
2122 cfsetspeed (struct termios *termios_p, speed_t vitesse)
2123 {
2124 return (cfsetispeed (termios_p, vitesse)
2125 + cfsetospeed (termios_p, vitesse));
2126 }
2127 #endif
2128
2129 /* For serial-process-configure */
2130 void
2131 serial_configure (struct Lisp_Process *p,
2132 Lisp_Object contact)
2133 {
2134 Lisp_Object childp2 = Qnil;
2135 Lisp_Object tem = Qnil;
2136 struct termios attr;
2137 int err = -1;
2138 char summary[4] = "???"; /* This usually becomes "8N1". */
2139
2140 childp2 = Fcopy_sequence (p->childp);
2141
2142 /* Read port attributes and prepare default configuration. */
2143 err = tcgetattr (p->outfd, &attr);
2144 if (err != 0)
2145 error ("tcgetattr() failed: %s", emacs_strerror (errno));
2146 cfmakeraw (&attr);
2147 #if defined (CLOCAL)
2148 attr.c_cflag |= CLOCAL;
2149 #endif
2150 #if defined (CREAD)
2151 attr.c_cflag |= CREAD;
2152 #endif
2153
2154 /* Configure speed. */
2155 if (!NILP (Fplist_member (contact, QCspeed)))
2156 tem = Fplist_get (contact, QCspeed);
2157 else
2158 tem = Fplist_get (p->childp, QCspeed);
2159 CHECK_NUMBER (tem);
2160 err = cfsetspeed (&attr, XINT (tem));
2161 if (err != 0)
2162 error ("cfsetspeed(%"pI"d) failed: %s", XINT (tem),
2163 emacs_strerror (errno));
2164 childp2 = Fplist_put (childp2, QCspeed, tem);
2165
2166 /* Configure bytesize. */
2167 if (!NILP (Fplist_member (contact, QCbytesize)))
2168 tem = Fplist_get (contact, QCbytesize);
2169 else
2170 tem = Fplist_get (p->childp, QCbytesize);
2171 if (NILP (tem))
2172 tem = make_number (8);
2173 CHECK_NUMBER (tem);
2174 if (XINT (tem) != 7 && XINT (tem) != 8)
2175 error (":bytesize must be nil (8), 7, or 8");
2176 summary[0] = XINT (tem) + '0';
2177 #if defined (CSIZE) && defined (CS7) && defined (CS8)
2178 attr.c_cflag &= ~CSIZE;
2179 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8);
2180 #else
2181 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
2182 if (XINT (tem) != 8)
2183 error ("Bytesize cannot be changed");
2184 #endif
2185 childp2 = Fplist_put (childp2, QCbytesize, tem);
2186
2187 /* Configure parity. */
2188 if (!NILP (Fplist_member (contact, QCparity)))
2189 tem = Fplist_get (contact, QCparity);
2190 else
2191 tem = Fplist_get (p->childp, QCparity);
2192 if (!NILP (tem) && !EQ (tem, Qeven) && !EQ (tem, Qodd))
2193 error (":parity must be nil (no parity), `even', or `odd'");
2194 #if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
2195 attr.c_cflag &= ~(PARENB | PARODD);
2196 attr.c_iflag &= ~(IGNPAR | INPCK);
2197 if (NILP (tem))
2198 {
2199 summary[1] = 'N';
2200 }
2201 else if (EQ (tem, Qeven))
2202 {
2203 summary[1] = 'E';
2204 attr.c_cflag |= PARENB;
2205 attr.c_iflag |= (IGNPAR | INPCK);
2206 }
2207 else if (EQ (tem, Qodd))
2208 {
2209 summary[1] = 'O';
2210 attr.c_cflag |= (PARENB | PARODD);
2211 attr.c_iflag |= (IGNPAR | INPCK);
2212 }
2213 #else
2214 /* Don't error on no parity, which should be set by cfmakeraw. */
2215 if (!NILP (tem))
2216 error ("Parity cannot be configured");
2217 #endif
2218 childp2 = Fplist_put (childp2, QCparity, tem);
2219
2220 /* Configure stopbits. */
2221 if (!NILP (Fplist_member (contact, QCstopbits)))
2222 tem = Fplist_get (contact, QCstopbits);
2223 else
2224 tem = Fplist_get (p->childp, QCstopbits);
2225 if (NILP (tem))
2226 tem = make_number (1);
2227 CHECK_NUMBER (tem);
2228 if (XINT (tem) != 1 && XINT (tem) != 2)
2229 error (":stopbits must be nil (1 stopbit), 1, or 2");
2230 summary[2] = XINT (tem) + '0';
2231 #if defined (CSTOPB)
2232 attr.c_cflag &= ~CSTOPB;
2233 if (XINT (tem) == 2)
2234 attr.c_cflag |= CSTOPB;
2235 #else
2236 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
2237 if (XINT (tem) != 1)
2238 error ("Stopbits cannot be configured");
2239 #endif
2240 childp2 = Fplist_put (childp2, QCstopbits, tem);
2241
2242 /* Configure flowcontrol. */
2243 if (!NILP (Fplist_member (contact, QCflowcontrol)))
2244 tem = Fplist_get (contact, QCflowcontrol);
2245 else
2246 tem = Fplist_get (p->childp, QCflowcontrol);
2247 if (!NILP (tem) && !EQ (tem, Qhw) && !EQ (tem, Qsw))
2248 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
2249 #if defined (CRTSCTS)
2250 attr.c_cflag &= ~CRTSCTS;
2251 #endif
2252 #if defined (CNEW_RTSCTS)
2253 attr.c_cflag &= ~CNEW_RTSCTS;
2254 #endif
2255 #if defined (IXON) && defined (IXOFF)
2256 attr.c_iflag &= ~(IXON | IXOFF);
2257 #endif
2258 if (NILP (tem))
2259 {
2260 /* Already configured. */
2261 }
2262 else if (EQ (tem, Qhw))
2263 {
2264 #if defined (CRTSCTS)
2265 attr.c_cflag |= CRTSCTS;
2266 #elif defined (CNEW_RTSCTS)
2267 attr.c_cflag |= CNEW_RTSCTS;
2268 #else
2269 error ("Hardware flowcontrol (RTS/CTS) not supported");
2270 #endif
2271 }
2272 else if (EQ (tem, Qsw))
2273 {
2274 #if defined (IXON) && defined (IXOFF)
2275 attr.c_iflag |= (IXON | IXOFF);
2276 #else
2277 error ("Software flowcontrol (XON/XOFF) not supported");
2278 #endif
2279 }
2280 childp2 = Fplist_put (childp2, QCflowcontrol, tem);
2281
2282 /* Activate configuration. */
2283 err = tcsetattr (p->outfd, TCSANOW, &attr);
2284 if (err != 0)
2285 error ("tcsetattr() failed: %s", emacs_strerror (errno));
2286
2287 childp2 = Fplist_put (childp2, QCsummary, build_string (summary));
2288 pset_childp (p, childp2);
2289 }
2290 #endif /* not DOS_NT */
2291 \f
2292 /* System depended enumeration of and access to system processes a-la ps(1). */
2293
2294 #ifdef HAVE_PROCFS
2295
2296 /* Process enumeration and access via /proc. */
2297
2298 Lisp_Object
2299 list_system_processes (void)
2300 {
2301 Lisp_Object procdir, match, proclist, next;
2302 struct gcpro gcpro1, gcpro2;
2303 register Lisp_Object tail;
2304
2305 GCPRO2 (procdir, match);
2306 /* For every process on the system, there's a directory in the
2307 "/proc" pseudo-directory whose name is the numeric ID of that
2308 process. */
2309 procdir = build_string ("/proc");
2310 match = build_string ("[0-9]+");
2311 proclist = directory_files_internal (procdir, Qnil, match, Qt, 0, Qnil);
2312
2313 /* `proclist' gives process IDs as strings. Destructively convert
2314 each string into a number. */
2315 for (tail = proclist; CONSP (tail); tail = next)
2316 {
2317 next = XCDR (tail);
2318 XSETCAR (tail, Fstring_to_number (XCAR (tail), Qnil));
2319 }
2320 UNGCPRO;
2321
2322 /* directory_files_internal returns the files in reverse order; undo
2323 that. */
2324 proclist = Fnreverse (proclist);
2325 return proclist;
2326 }
2327
2328 #elif defined BSD_SYSTEM
2329
2330 Lisp_Object
2331 list_system_processes (void)
2332 {
2333 #if defined DARWIN_OS || defined __NetBSD__ || defined __OpenBSD__
2334 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL};
2335 #else
2336 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_PROC};
2337 #endif
2338 size_t len;
2339 struct kinfo_proc *procs;
2340 size_t i;
2341
2342 struct gcpro gcpro1;
2343 Lisp_Object proclist = Qnil;
2344
2345 if (sysctl (mib, 3, NULL, &len, NULL, 0) != 0)
2346 return proclist;
2347
2348 procs = xmalloc (len);
2349 if (sysctl (mib, 3, procs, &len, NULL, 0) != 0)
2350 {
2351 xfree (procs);
2352 return proclist;
2353 }
2354
2355 GCPRO1 (proclist);
2356 len /= sizeof (struct kinfo_proc);
2357 for (i = 0; i < len; i++)
2358 {
2359 #if defined DARWIN_OS || defined __NetBSD__
2360 proclist = Fcons (make_fixnum_or_float (procs[i].kp_proc.p_pid), proclist);
2361 #elif defined __OpenBSD__
2362 proclist = Fcons (make_fixnum_or_float (procs[i].p_pid), proclist);
2363 #else
2364 proclist = Fcons (make_fixnum_or_float (procs[i].ki_pid), proclist);
2365 #endif
2366 }
2367 UNGCPRO;
2368
2369 xfree (procs);
2370
2371 return proclist;
2372 }
2373
2374 /* The WINDOWSNT implementation is in w32.c.
2375 The MSDOS implementation is in dosfns.c. */
2376 #elif !defined (WINDOWSNT) && !defined (MSDOS)
2377
2378 Lisp_Object
2379 list_system_processes (void)
2380 {
2381 return Qnil;
2382 }
2383
2384 #endif /* !defined (WINDOWSNT) */
2385
2386 #ifdef GNU_LINUX
2387 static EMACS_TIME
2388 time_from_jiffies (unsigned long long tval, long hz)
2389 {
2390 unsigned long long s = tval / hz;
2391 unsigned long long frac = tval % hz;
2392 int ns;
2393
2394 if (TYPE_MAXIMUM (time_t) < s)
2395 time_overflow ();
2396 if (LONG_MAX - 1 <= ULLONG_MAX / EMACS_TIME_RESOLUTION
2397 || frac <= ULLONG_MAX / EMACS_TIME_RESOLUTION)
2398 ns = frac * EMACS_TIME_RESOLUTION / hz;
2399 else
2400 {
2401 /* This is reachable only in the unlikely case that HZ * HZ
2402 exceeds ULLONG_MAX. It calculates an approximation that is
2403 guaranteed to be in range. */
2404 long hz_per_ns = (hz / EMACS_TIME_RESOLUTION
2405 + (hz % EMACS_TIME_RESOLUTION != 0));
2406 ns = frac / hz_per_ns;
2407 }
2408
2409 return make_emacs_time (s, ns);
2410 }
2411
2412 static Lisp_Object
2413 ltime_from_jiffies (unsigned long long tval, long hz)
2414 {
2415 EMACS_TIME t = time_from_jiffies (tval, hz);
2416 return make_lisp_time (t);
2417 }
2418
2419 static EMACS_TIME
2420 get_up_time (void)
2421 {
2422 FILE *fup;
2423 EMACS_TIME up = make_emacs_time (0, 0);
2424
2425 BLOCK_INPUT;
2426 fup = fopen ("/proc/uptime", "r");
2427
2428 if (fup)
2429 {
2430 unsigned long long upsec, upfrac, idlesec, idlefrac;
2431 int upfrac_start, upfrac_end, idlefrac_start, idlefrac_end;
2432
2433 if (fscanf (fup, "%llu.%n%llu%n %llu.%n%llu%n",
2434 &upsec, &upfrac_start, &upfrac, &upfrac_end,
2435 &idlesec, &idlefrac_start, &idlefrac, &idlefrac_end)
2436 == 4)
2437 {
2438 if (TYPE_MAXIMUM (time_t) < upsec)
2439 {
2440 upsec = TYPE_MAXIMUM (time_t);
2441 upfrac = EMACS_TIME_RESOLUTION - 1;
2442 }
2443 else
2444 {
2445 int upfraclen = upfrac_end - upfrac_start;
2446 for (; upfraclen < LOG10_EMACS_TIME_RESOLUTION; upfraclen++)
2447 upfrac *= 10;
2448 for (; LOG10_EMACS_TIME_RESOLUTION < upfraclen; upfraclen--)
2449 upfrac /= 10;
2450 upfrac = min (upfrac, EMACS_TIME_RESOLUTION - 1);
2451 }
2452 up = make_emacs_time (upsec, upfrac);
2453 }
2454 fclose (fup);
2455 }
2456 UNBLOCK_INPUT;
2457
2458 return up;
2459 }
2460
2461 #define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
2462 #define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
2463
2464 static Lisp_Object
2465 procfs_ttyname (int rdev)
2466 {
2467 FILE *fdev = NULL;
2468 char name[PATH_MAX];
2469
2470 BLOCK_INPUT;
2471 fdev = fopen ("/proc/tty/drivers", "r");
2472
2473 if (fdev)
2474 {
2475 unsigned major;
2476 unsigned long minor_beg, minor_end;
2477 char minor[25]; /* 2 32-bit numbers + dash */
2478 char *endp;
2479
2480 while (!feof (fdev) && !ferror (fdev))
2481 {
2482 if (3 <= fscanf (fdev, "%*s %s %u %s %*s\n", name, &major, minor)
2483 && major == MAJOR (rdev))
2484 {
2485 minor_beg = strtoul (minor, &endp, 0);
2486 if (*endp == '\0')
2487 minor_end = minor_beg;
2488 else if (*endp == '-')
2489 minor_end = strtoul (endp + 1, &endp, 0);
2490 else
2491 continue;
2492
2493 if (MINOR (rdev) >= minor_beg && MINOR (rdev) <= minor_end)
2494 {
2495 sprintf (name + strlen (name), "%u", MINOR (rdev));
2496 break;
2497 }
2498 }
2499 }
2500 fclose (fdev);
2501 }
2502 UNBLOCK_INPUT;
2503 return build_string (name);
2504 }
2505
2506 static unsigned long
2507 procfs_get_total_memory (void)
2508 {
2509 FILE *fmem = NULL;
2510 unsigned long retval = 2 * 1024 * 1024; /* default: 2GB */
2511
2512 BLOCK_INPUT;
2513 fmem = fopen ("/proc/meminfo", "r");
2514
2515 if (fmem)
2516 {
2517 unsigned long entry_value;
2518 char entry_name[20]; /* the longest I saw is 13+1 */
2519
2520 while (!feof (fmem) && !ferror (fmem))
2521 {
2522 if (2 <= fscanf (fmem, "%s %lu kB\n", entry_name, &entry_value)
2523 && strcmp (entry_name, "MemTotal:") == 0)
2524 {
2525 retval = entry_value;
2526 break;
2527 }
2528 }
2529 fclose (fmem);
2530 }
2531 UNBLOCK_INPUT;
2532 return retval;
2533 }
2534
2535 Lisp_Object
2536 system_process_attributes (Lisp_Object pid)
2537 {
2538 char procfn[PATH_MAX], fn[PATH_MAX];
2539 struct stat st;
2540 struct passwd *pw;
2541 struct group *gr;
2542 long clocks_per_sec;
2543 char *procfn_end;
2544 char procbuf[1025], *p, *q;
2545 int fd;
2546 ssize_t nread;
2547 static char const default_cmd[] = "???";
2548 const char *cmd = default_cmd;
2549 int cmdsize = sizeof default_cmd - 1;
2550 char *cmdline = NULL;
2551 ptrdiff_t cmdline_size;
2552 unsigned char c;
2553 printmax_t proc_id;
2554 int ppid, pgrp, sess, tty, tpgid, thcount;
2555 uid_t uid;
2556 gid_t gid;
2557 unsigned long long u_time, s_time, cutime, cstime, start;
2558 long priority, niceness, rss;
2559 unsigned long minflt, majflt, cminflt, cmajflt, vsize;
2560 EMACS_TIME tnow, tstart, tboot, telapsed, us_time;
2561 double pcpu, pmem;
2562 Lisp_Object attrs = Qnil;
2563 Lisp_Object cmd_str, decoded_cmd, tem;
2564 struct gcpro gcpro1, gcpro2;
2565
2566 CHECK_NUMBER_OR_FLOAT (pid);
2567 CONS_TO_INTEGER (pid, pid_t, proc_id);
2568 sprintf (procfn, "/proc/%"pMd, proc_id);
2569 if (stat (procfn, &st) < 0)
2570 return attrs;
2571
2572 GCPRO2 (attrs, decoded_cmd);
2573
2574 /* euid egid */
2575 uid = st.st_uid;
2576 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
2577 BLOCK_INPUT;
2578 pw = getpwuid (uid);
2579 UNBLOCK_INPUT;
2580 if (pw)
2581 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
2582
2583 gid = st.st_gid;
2584 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
2585 BLOCK_INPUT;
2586 gr = getgrgid (gid);
2587 UNBLOCK_INPUT;
2588 if (gr)
2589 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
2590
2591 strcpy (fn, procfn);
2592 procfn_end = fn + strlen (fn);
2593 strcpy (procfn_end, "/stat");
2594 fd = emacs_open (fn, O_RDONLY, 0);
2595 if (fd >= 0 && (nread = emacs_read (fd, procbuf, sizeof (procbuf) - 1)) > 0)
2596 {
2597 procbuf[nread] = '\0';
2598 p = procbuf;
2599
2600 p = strchr (p, '(');
2601 if (p != NULL)
2602 {
2603 q = strrchr (p + 1, ')');
2604 /* comm */
2605 if (q != NULL)
2606 {
2607 cmd = p + 1;
2608 cmdsize = q - cmd;
2609 }
2610 }
2611 else
2612 q = NULL;
2613 /* Command name is encoded in locale-coding-system; decode it. */
2614 cmd_str = make_unibyte_string (cmd, cmdsize);
2615 decoded_cmd = code_convert_string_norecord (cmd_str,
2616 Vlocale_coding_system, 0);
2617 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
2618
2619 if (q)
2620 {
2621 EMACS_INT ppid_eint, pgrp_eint, sess_eint, tpgid_eint, thcount_eint;
2622 p = q + 2;
2623 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt utime stime cutime cstime priority nice thcount . start vsize rss */
2624 sscanf (p, "%c %d %d %d %d %d %*u %lu %lu %lu %lu %Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld",
2625 &c, &ppid, &pgrp, &sess, &tty, &tpgid,
2626 &minflt, &cminflt, &majflt, &cmajflt,
2627 &u_time, &s_time, &cutime, &cstime,
2628 &priority, &niceness, &thcount, &start, &vsize, &rss);
2629 {
2630 char state_str[2];
2631
2632 state_str[0] = c;
2633 state_str[1] = '\0';
2634 tem = build_string (state_str);
2635 attrs = Fcons (Fcons (Qstate, tem), attrs);
2636 }
2637 /* Stops GCC whining about limited range of data type. */
2638 ppid_eint = ppid;
2639 pgrp_eint = pgrp;
2640 sess_eint = sess;
2641 tpgid_eint = tpgid;
2642 thcount_eint = thcount;
2643 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (ppid_eint)), attrs);
2644 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pgrp_eint)), attrs);
2645 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (sess_eint)), attrs);
2646 attrs = Fcons (Fcons (Qttname, procfs_ttyname (tty)), attrs);
2647 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (tpgid_eint)), attrs);
2648 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (minflt)), attrs);
2649 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (majflt)), attrs);
2650 attrs = Fcons (Fcons (Qcminflt, make_fixnum_or_float (cminflt)), attrs);
2651 attrs = Fcons (Fcons (Qcmajflt, make_fixnum_or_float (cmajflt)), attrs);
2652 clocks_per_sec = sysconf (_SC_CLK_TCK);
2653 if (clocks_per_sec < 0)
2654 clocks_per_sec = 100;
2655 attrs = Fcons (Fcons (Qutime,
2656 ltime_from_jiffies (u_time, clocks_per_sec)),
2657 attrs);
2658 attrs = Fcons (Fcons (Qstime,
2659 ltime_from_jiffies (s_time, clocks_per_sec)),
2660 attrs);
2661 attrs = Fcons (Fcons (Qtime,
2662 ltime_from_jiffies (s_time + u_time,
2663 clocks_per_sec)),
2664 attrs);
2665 attrs = Fcons (Fcons (Qcutime,
2666 ltime_from_jiffies (cutime, clocks_per_sec)),
2667 attrs);
2668 attrs = Fcons (Fcons (Qcstime,
2669 ltime_from_jiffies (cstime, clocks_per_sec)),
2670 attrs);
2671 attrs = Fcons (Fcons (Qctime,
2672 ltime_from_jiffies (cstime+cutime, clocks_per_sec)),
2673 attrs);
2674 attrs = Fcons (Fcons (Qpri, make_number (priority)), attrs);
2675 attrs = Fcons (Fcons (Qnice, make_number (niceness)), attrs);
2676 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (thcount_eint)), attrs);
2677 tnow = current_emacs_time ();
2678 telapsed = get_up_time ();
2679 tboot = sub_emacs_time (tnow, telapsed);
2680 tstart = time_from_jiffies (start, clocks_per_sec);
2681 tstart = add_emacs_time (tboot, tstart);
2682 attrs = Fcons (Fcons (Qstart, make_lisp_time (tstart)), attrs);
2683 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (vsize/1024)), attrs);
2684 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (4*rss)), attrs);
2685 telapsed = sub_emacs_time (tnow, tstart);
2686 attrs = Fcons (Fcons (Qetime, make_lisp_time (telapsed)), attrs);
2687 us_time = time_from_jiffies (u_time + s_time, clocks_per_sec);
2688 pcpu = (EMACS_TIME_TO_DOUBLE (us_time)
2689 / EMACS_TIME_TO_DOUBLE (telapsed));
2690 if (pcpu > 1.0)
2691 pcpu = 1.0;
2692 attrs = Fcons (Fcons (Qpcpu, make_float (100 * pcpu)), attrs);
2693 pmem = 4.0 * 100 * rss / procfs_get_total_memory ();
2694 if (pmem > 100)
2695 pmem = 100;
2696 attrs = Fcons (Fcons (Qpmem, make_float (pmem)), attrs);
2697 }
2698 }
2699 if (fd >= 0)
2700 emacs_close (fd);
2701
2702 /* args */
2703 strcpy (procfn_end, "/cmdline");
2704 fd = emacs_open (fn, O_RDONLY, 0);
2705 if (fd >= 0)
2706 {
2707 char ch;
2708 for (cmdline_size = 0; cmdline_size < STRING_BYTES_BOUND; cmdline_size++)
2709 {
2710 if (emacs_read (fd, &ch, 1) != 1)
2711 break;
2712 c = ch;
2713 if (c_isspace (c) || c == '\\')
2714 cmdline_size++; /* for later quoting, see below */
2715 }
2716 if (cmdline_size)
2717 {
2718 cmdline = xmalloc (cmdline_size + 1);
2719 lseek (fd, 0L, SEEK_SET);
2720 cmdline[0] = '\0';
2721 if ((nread = read (fd, cmdline, cmdline_size)) >= 0)
2722 cmdline[nread++] = '\0';
2723 else
2724 {
2725 /* Assigning zero to `nread' makes us skip the following
2726 two loops, assign zero to cmdline_size, and enter the
2727 following `if' clause that handles unknown command
2728 lines. */
2729 nread = 0;
2730 }
2731 /* We don't want trailing null characters. */
2732 for (p = cmdline + nread; p > cmdline + 1 && !p[-1]; p--)
2733 nread--;
2734 for (p = cmdline; p < cmdline + nread; p++)
2735 {
2736 /* Escape-quote whitespace and backslashes. */
2737 if (c_isspace (*p) || *p == '\\')
2738 {
2739 memmove (p + 1, p, nread - (p - cmdline));
2740 nread++;
2741 *p++ = '\\';
2742 }
2743 else if (*p == '\0')
2744 *p = ' ';
2745 }
2746 cmdline_size = nread;
2747 }
2748 if (!cmdline_size)
2749 {
2750 cmdline_size = cmdsize + 2;
2751 cmdline = xmalloc (cmdline_size + 1);
2752 sprintf (cmdline, "[%.*s]", cmdsize, cmd);
2753 }
2754 emacs_close (fd);
2755 /* Command line is encoded in locale-coding-system; decode it. */
2756 cmd_str = make_unibyte_string (cmdline, cmdline_size);
2757 decoded_cmd = code_convert_string_norecord (cmd_str,
2758 Vlocale_coding_system, 0);
2759 xfree (cmdline);
2760 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
2761 }
2762
2763 UNGCPRO;
2764 return attrs;
2765 }
2766
2767 #elif defined (SOLARIS2) && defined (HAVE_PROCFS)
2768
2769 /* The <procfs.h> header does not like to be included if _LP64 is defined and
2770 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
2771 #if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
2772 #define PROCFS_FILE_OFFSET_BITS_HACK 1
2773 #undef _FILE_OFFSET_BITS
2774 #else
2775 #define PROCFS_FILE_OFFSET_BITS_HACK 0
2776 #endif
2777
2778 #include <procfs.h>
2779
2780 #if PROCFS_FILE_OFFSET_BITS_HACK == 1
2781 #define _FILE_OFFSET_BITS 64
2782 #ifdef _FILE_OFFSET_BITS /* Avoid unused-macro warnings. */
2783 #endif
2784 #endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
2785
2786 Lisp_Object
2787 system_process_attributes (Lisp_Object pid)
2788 {
2789 char procfn[PATH_MAX], fn[PATH_MAX];
2790 struct stat st;
2791 struct passwd *pw;
2792 struct group *gr;
2793 char *procfn_end;
2794 struct psinfo pinfo;
2795 int fd;
2796 ssize_t nread;
2797 printmax_t proc_id;
2798 uid_t uid;
2799 gid_t gid;
2800 Lisp_Object attrs = Qnil;
2801 Lisp_Object decoded_cmd, tem;
2802 struct gcpro gcpro1, gcpro2;
2803
2804 CHECK_NUMBER_OR_FLOAT (pid);
2805 CONS_TO_INTEGER (pid, pid_t, proc_id);
2806 sprintf (procfn, "/proc/%"pMd, proc_id);
2807 if (stat (procfn, &st) < 0)
2808 return attrs;
2809
2810 GCPRO2 (attrs, decoded_cmd);
2811
2812 /* euid egid */
2813 uid = st.st_uid;
2814 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
2815 BLOCK_INPUT;
2816 pw = getpwuid (uid);
2817 UNBLOCK_INPUT;
2818 if (pw)
2819 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
2820
2821 gid = st.st_gid;
2822 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
2823 BLOCK_INPUT;
2824 gr = getgrgid (gid);
2825 UNBLOCK_INPUT;
2826 if (gr)
2827 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
2828
2829 strcpy (fn, procfn);
2830 procfn_end = fn + strlen (fn);
2831 strcpy (procfn_end, "/psinfo");
2832 fd = emacs_open (fn, O_RDONLY, 0);
2833 if (fd >= 0
2834 && (nread = read (fd, (char*)&pinfo, sizeof (struct psinfo)) > 0))
2835 {
2836 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (pinfo.pr_ppid)), attrs);
2837 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pinfo.pr_pgid)), attrs);
2838 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (pinfo.pr_sid)), attrs);
2839
2840 {
2841 char state_str[2];
2842 state_str[0] = pinfo.pr_lwp.pr_sname;
2843 state_str[1] = '\0';
2844 tem = build_string (state_str);
2845 attrs = Fcons (Fcons (Qstate, tem), attrs);
2846 }
2847
2848 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
2849 need to get a string from it. */
2850
2851 /* FIXME: missing: Qtpgid */
2852
2853 /* FIXME: missing:
2854 Qminflt
2855 Qmajflt
2856 Qcminflt
2857 Qcmajflt
2858
2859 Qutime
2860 Qcutime
2861 Qstime
2862 Qcstime
2863 Are they available? */
2864
2865 attrs = Fcons (Fcons (Qtime, make_lisp_time (pinfo.pr_time)), attrs);
2866 attrs = Fcons (Fcons (Qctime, make_lisp_time (pinfo.pr_ctime)), attrs);
2867 attrs = Fcons (Fcons (Qpri, make_number (pinfo.pr_lwp.pr_pri)), attrs);
2868 attrs = Fcons (Fcons (Qnice, make_number (pinfo.pr_lwp.pr_nice)), attrs);
2869 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (pinfo.pr_nlwp)), attrs);
2870
2871 attrs = Fcons (Fcons (Qstart, make_lisp_time (pinfo.pr_start)), attrs);
2872 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (pinfo.pr_size)), attrs);
2873 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (pinfo.pr_rssize)), attrs);
2874
2875 /* pr_pctcpu and pr_pctmem are unsigned integers in the
2876 range 0 .. 2**15, representing 0.0 .. 1.0. */
2877 attrs = Fcons (Fcons (Qpcpu, make_float (100.0 / 0x8000 * pinfo.pr_pctcpu)), attrs);
2878 attrs = Fcons (Fcons (Qpmem, make_float (100.0 / 0x8000 * pinfo.pr_pctmem)), attrs);
2879
2880 decoded_cmd
2881 = code_convert_string_norecord (make_unibyte_string (pinfo.pr_fname,
2882 strlen (pinfo.pr_fname)),
2883 Vlocale_coding_system, 0);
2884 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
2885 decoded_cmd
2886 = code_convert_string_norecord (make_unibyte_string (pinfo.pr_psargs,
2887 strlen (pinfo.pr_psargs)),
2888 Vlocale_coding_system, 0);
2889 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
2890 }
2891
2892 if (fd >= 0)
2893 emacs_close (fd);
2894
2895 UNGCPRO;
2896 return attrs;
2897 }
2898
2899 #elif defined __FreeBSD__
2900
2901 static EMACS_TIME
2902 timeval_to_EMACS_TIME (struct timeval t)
2903 {
2904 return make_emacs_time (t.tv_sec, t.tv_usec * 1000);
2905 }
2906
2907 static Lisp_Object
2908 make_lisp_timeval (struct timeval t)
2909 {
2910 return make_lisp_time (timeval_to_EMACS_TIME (t));
2911 }
2912
2913 Lisp_Object
2914 system_process_attributes (Lisp_Object pid)
2915 {
2916 int proc_id;
2917 int pagesize = getpagesize ();
2918 int npages;
2919 int fscale;
2920 struct passwd *pw;
2921 struct group *gr;
2922 char *ttyname;
2923 size_t len;
2924 char args[MAXPATHLEN];
2925 EMACS_TIME t, now;
2926
2927 int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PID};
2928 struct kinfo_proc proc;
2929 size_t proclen = sizeof proc;
2930
2931 struct gcpro gcpro1, gcpro2;
2932 Lisp_Object attrs = Qnil;
2933 Lisp_Object decoded_comm;
2934
2935 CHECK_NUMBER_OR_FLOAT (pid);
2936 CONS_TO_INTEGER (pid, int, proc_id);
2937 mib[3] = proc_id;
2938
2939 if (sysctl (mib, 4, &proc, &proclen, NULL, 0) != 0)
2940 return attrs;
2941
2942 GCPRO2 (attrs, decoded_comm);
2943
2944 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (proc.ki_uid)), attrs);
2945
2946 BLOCK_INPUT;
2947 pw = getpwuid (proc.ki_uid);
2948 UNBLOCK_INPUT;
2949 if (pw)
2950 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
2951
2952 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (proc.ki_svgid)), attrs);
2953
2954 BLOCK_INPUT;
2955 gr = getgrgid (proc.ki_svgid);
2956 UNBLOCK_INPUT;
2957 if (gr)
2958 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
2959
2960 decoded_comm = code_convert_string_norecord
2961 (make_unibyte_string (proc.ki_comm, strlen (proc.ki_comm)),
2962 Vlocale_coding_system, 0);
2963
2964 attrs = Fcons (Fcons (Qcomm, decoded_comm), attrs);
2965 {
2966 char state[2] = {'\0', '\0'};
2967 switch (proc.ki_stat)
2968 {
2969 case SRUN:
2970 state[0] = 'R';
2971 break;
2972
2973 case SSLEEP:
2974 state[0] = 'S';
2975 break;
2976
2977 case SLOCK:
2978 state[0] = 'D';
2979 break;
2980
2981 case SZOMB:
2982 state[0] = 'Z';
2983 break;
2984
2985 case SSTOP:
2986 state[0] = 'T';
2987 break;
2988 }
2989 attrs = Fcons (Fcons (Qstate, build_string (state)), attrs);
2990 }
2991
2992 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (proc.ki_ppid)), attrs);
2993 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (proc.ki_pgid)), attrs);
2994 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (proc.ki_sid)), attrs);
2995
2996 BLOCK_INPUT;
2997 ttyname = proc.ki_tdev == NODEV ? NULL : devname (proc.ki_tdev, S_IFCHR);
2998 UNBLOCK_INPUT;
2999 if (ttyname)
3000 attrs = Fcons (Fcons (Qtty, build_string (ttyname)), attrs);
3001
3002 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (proc.ki_tpgid)), attrs);
3003 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (proc.ki_rusage.ru_minflt)), attrs);
3004 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (proc.ki_rusage.ru_majflt)), attrs);
3005 attrs = Fcons (Fcons (Qcminflt, make_number (proc.ki_rusage_ch.ru_minflt)), attrs);
3006 attrs = Fcons (Fcons (Qcmajflt, make_number (proc.ki_rusage_ch.ru_majflt)), attrs);
3007
3008 attrs = Fcons (Fcons (Qutime, make_lisp_timeval (proc.ki_rusage.ru_utime)),
3009 attrs);
3010 attrs = Fcons (Fcons (Qstime, make_lisp_timeval (proc.ki_rusage.ru_stime)),
3011 attrs);
3012 t = add_emacs_time (timeval_to_EMACS_TIME (proc.ki_rusage.ru_utime),
3013 timeval_to_EMACS_TIME (proc.ki_rusage.ru_stime));
3014 attrs = Fcons (Fcons (Qtime, make_lisp_time (t)), attrs);
3015
3016 attrs = Fcons (Fcons (Qcutime,
3017 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3018 attrs);
3019 attrs = Fcons (Fcons (Qcstime,
3020 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3021 attrs);
3022 t = add_emacs_time (timeval_to_EMACS_TIME (proc.ki_rusage_ch.ru_utime),
3023 timeval_to_EMACS_TIME (proc.ki_rusage_ch.ru_stime));
3024 attrs = Fcons (Fcons (Qctime, make_lisp_time (t)), attrs);
3025
3026 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (proc.ki_numthreads)),
3027 attrs);
3028 attrs = Fcons (Fcons (Qpri, make_number (proc.ki_pri.pri_native)), attrs);
3029 attrs = Fcons (Fcons (Qnice, make_number (proc.ki_nice)), attrs);
3030 attrs = Fcons (Fcons (Qstart, make_lisp_timeval (proc.ki_start)), attrs);
3031 attrs = Fcons (Fcons (Qvsize, make_number (proc.ki_size >> 10)), attrs);
3032 attrs = Fcons (Fcons (Qrss, make_number (proc.ki_rssize * pagesize >> 10)),
3033 attrs);
3034
3035 now = current_emacs_time ();
3036 t = sub_emacs_time (now, timeval_to_EMACS_TIME (proc.ki_start));
3037 attrs = Fcons (Fcons (Qetime, make_lisp_time (t)), attrs);
3038
3039 len = sizeof fscale;
3040 if (sysctlbyname ("kern.fscale", &fscale, &len, NULL, 0) == 0)
3041 {
3042 double pcpu;
3043 fixpt_t ccpu;
3044 len = sizeof ccpu;
3045 if (sysctlbyname ("kern.ccpu", &ccpu, &len, NULL, 0) == 0)
3046 {
3047 pcpu = (100.0 * proc.ki_pctcpu / fscale
3048 / (1 - exp (proc.ki_swtime * log ((double) ccpu / fscale))));
3049 attrs = Fcons (Fcons (Qpcpu, make_fixnum_or_float (pcpu)), attrs);
3050 }
3051 }
3052
3053 len = sizeof npages;
3054 if (sysctlbyname ("hw.availpages", &npages, &len, NULL, 0) == 0)
3055 {
3056 double pmem = (proc.ki_flag & P_INMEM
3057 ? 100.0 * proc.ki_rssize / npages
3058 : 0);
3059 attrs = Fcons (Fcons (Qpmem, make_fixnum_or_float (pmem)), attrs);
3060 }
3061
3062 mib[2] = KERN_PROC_ARGS;
3063 len = MAXPATHLEN;
3064 if (sysctl (mib, 4, args, &len, NULL, 0) == 0)
3065 {
3066 int i;
3067 for (i = 0; i < len; i++)
3068 {
3069 if (! args[i] && i < len - 1)
3070 args[i] = ' ';
3071 }
3072
3073 decoded_comm =
3074 (code_convert_string_norecord
3075 (build_unibyte_string (args),
3076 Vlocale_coding_system, 0));
3077
3078 attrs = Fcons (Fcons (Qargs, decoded_comm), attrs);
3079 }
3080
3081 UNGCPRO;
3082 return attrs;
3083 }
3084
3085 /* The WINDOWSNT implementation is in w32.c.
3086 The MSDOS implementation is in dosfns.c. */
3087 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3088
3089 Lisp_Object
3090 system_process_attributes (Lisp_Object pid)
3091 {
3092 return Qnil;
3093 }
3094
3095 #endif /* !defined (WINDOWSNT) */