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