428
|
1 /* Interfaces to system-dependent kernel and library entries.
|
|
2 Copyright (C) 1985-1988, 1992-1995 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1995 Tinker Systems.
|
777
|
4 Copyright (C) 2000, 2001, 2002 Ben Wing.
|
428
|
5
|
|
6 This file is part of XEmacs.
|
|
7
|
|
8 XEmacs is free software; you can redistribute it and/or modify it
|
|
9 under the terms of the GNU General Public License as published by the
|
|
10 Free Software Foundation; either version 2, or (at your option) any
|
|
11 later version.
|
|
12
|
|
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
16 for more details.
|
|
17
|
|
18 You should have received a copy of the GNU General Public License
|
|
19 along with XEmacs; see the file COPYING. If not, write to
|
|
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
21 Boston, MA 02111-1307, USA. */
|
|
22
|
771
|
23
|
428
|
24 /* Synched up with: FSF 19.30 except for some Windows-NT crap. */
|
|
25
|
771
|
26 /* Authorship:
|
|
27
|
|
28 Current primary author: Various
|
|
29
|
|
30 Originally from FSF. Major changes at various times.
|
|
31 Substantially cleaned up by Ben Wing, Dec. 1994 / Jan. 1995.
|
|
32 SIGIO stuff ripped apart and redone by Ben Wing. (during 19.14 devel?)
|
|
33 Signal stuff totally redone by Ben Wing. (during 19.14 devel? that would
|
|
34 be Dec 1995 - Apr 1996.)
|
|
35 Controlling terminal stuff redone by Ben Wing for 19.13.
|
|
36 System call encapsulation stuff written by Ben Wing for 19.12. (1995)
|
|
37 Ripped up and redone avoiding preprocessor tricks Aug - Sep 2001 during
|
|
38 Mule-on-Windows development.
|
|
39 */
|
428
|
40
|
|
41 #include <config.h>
|
|
42 #include "lisp.h"
|
|
43
|
|
44 /* ------------------------------- */
|
|
45 /* basic includes */
|
|
46 /* ------------------------------- */
|
|
47
|
800
|
48
|
|
49 #include "buffer.h"
|
|
50 #include "device.h"
|
|
51 #include "events.h"
|
|
52 #include "frame.h"
|
|
53 #include "process.h"
|
|
54 #include "redisplay.h"
|
|
55 #include "sysdep.h"
|
|
56 #include "window.h"
|
|
57
|
428
|
58 #ifdef HAVE_TTY
|
|
59 #include "console-tty.h"
|
|
60 #else
|
|
61 #endif /* HAVE_TTY */
|
|
62
|
|
63 #include "console-stream.h"
|
442
|
64 #ifdef WIN32_NATIVE
|
771
|
65 #include "syswindows.h"
|
428
|
66 #endif
|
|
67
|
800
|
68 #include "sysdir.h"
|
|
69 #include "sysfile.h"
|
|
70 #include "sysproc.h"
|
|
71 #include "syspwd.h"
|
|
72 #include "syssignal.h"
|
|
73 #include "syssignal.h"
|
|
74 #include "systime.h"
|
|
75 #include "systty.h"
|
|
76 #include "syswait.h"
|
|
77
|
|
78 #include <setjmp.h>
|
|
79
|
|
80
|
428
|
81 /* ------------------------------- */
|
|
82 /* TTY definitions */
|
|
83 /* ------------------------------- */
|
|
84
|
|
85 #ifdef USG
|
|
86 #include <sys/utsname.h>
|
|
87 #if defined (TIOCGWINSZ) || defined (ISC4_0)
|
|
88 #ifdef NEED_SIOCTL
|
|
89 #include <sys/sioctl.h>
|
|
90 #endif
|
|
91 #ifdef NEED_PTEM_H
|
|
92 #include <sys/stream.h>
|
|
93 #include <sys/ptem.h>
|
|
94 #endif
|
|
95 #endif /* TIOCGWINSZ or ISC4_0 */
|
|
96 #endif /* USG */
|
|
97
|
|
98 /* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits. */
|
|
99 #ifndef LPASS8
|
|
100 #define LPASS8 0
|
|
101 #endif
|
|
102
|
|
103 #ifndef HAVE_H_ERRNO
|
|
104 int h_errno;
|
|
105 #endif
|
|
106
|
|
107 #ifdef HAVE_TTY
|
|
108
|
|
109 static int baud_convert[] =
|
|
110 #ifdef BAUD_CONVERT
|
|
111 BAUD_CONVERT;
|
|
112 #else
|
|
113 {
|
|
114 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
|
|
115 1800, 2400, 4800, 9600, 19200, 38400
|
|
116 };
|
|
117 #endif
|
|
118
|
|
119 #endif
|
|
120
|
|
121 #ifdef AIXHFT
|
|
122 static void hft_init (struct console *c);
|
|
123 static void hft_reset (struct console *c);
|
|
124 #include <sys/termio.h>
|
|
125 #endif
|
|
126
|
|
127
|
|
128 /************************************************************************/
|
|
129 /* subprocess control */
|
|
130 /************************************************************************/
|
|
131
|
|
132 #ifdef HAVE_TTY
|
|
133
|
|
134 #ifdef SIGTSTP
|
|
135
|
|
136 /* Arrange for character C to be read as the next input from
|
|
137 the terminal. */
|
|
138 void
|
|
139 stuff_char (struct console *con, int c)
|
|
140 {
|
|
141 int input_fd;
|
|
142
|
|
143 assert (CONSOLE_TTY_P (con));
|
|
144 input_fd = CONSOLE_TTY_DATA (con)->infd;
|
|
145 /* Should perhaps error if in batch mode */
|
|
146 #ifdef TIOCSTI
|
|
147 ioctl (input_fd, TIOCSTI, &c);
|
|
148 #else /* no TIOCSTI */
|
563
|
149 invalid_operation ("Cannot stuff terminal input characters in this version of Unix.", Qunbound);
|
428
|
150 #endif /* no TIOCSTI */
|
|
151 }
|
|
152
|
|
153 #endif /* SIGTSTP */
|
|
154
|
|
155 #endif /* HAVE_TTY */
|
|
156
|
|
157 void
|
|
158 set_exclusive_use (int fd)
|
|
159 {
|
|
160 #ifdef FIOCLEX
|
|
161 ioctl (fd, FIOCLEX, 0);
|
|
162 #endif
|
|
163 /* Ok to do nothing if this feature does not exist */
|
|
164 }
|
|
165
|
|
166 void
|
|
167 set_descriptor_non_blocking (int fd)
|
|
168 {
|
|
169 /* Stride people say it's a mystery why this is needed
|
|
170 as well as the O_NDELAY, but that it fails without this. */
|
|
171 /* For AIX: Apparently need this for non-blocking reads on sockets.
|
|
172 It seems that O_NONBLOCK applies only to FIFOs? From
|
|
173 lowry@watson.ibm.com (Andy Lowry). */
|
|
174 /* #### Should this be conditionalized on FIONBIO? */
|
535
|
175 #if defined (STRIDE) || defined (pfa) || defined (AIX)
|
428
|
176 {
|
|
177 int one = 1;
|
|
178 ioctl (fd, FIONBIO, &one);
|
|
179 }
|
|
180 #endif
|
|
181
|
|
182 #ifdef F_SETFL
|
|
183 fcntl (fd, F_SETFL, O_NONBLOCK);
|
|
184 #endif
|
|
185 }
|
|
186
|
|
187 #if defined (NO_SUBPROCESSES)
|
|
188
|
|
189 #ifdef BSD
|
|
190 void
|
|
191 wait_without_blocking (void)
|
|
192 {
|
|
193 wait3 (0, WNOHANG | WUNTRACED, 0);
|
|
194 synch_process_alive = 0;
|
|
195 }
|
|
196 #endif /* BSD */
|
|
197
|
|
198 #endif /* NO_SUBPROCESSES */
|
|
199
|
|
200
|
814
|
201 void
|
|
202 wait_for_termination (int pid)
|
428
|
203 {
|
|
204 /* #### With the new improved SIGCHLD handling stuff, there is much
|
|
205 less danger of race conditions and some of the comments below
|
|
206 don't apply. This should be updated. */
|
|
207
|
|
208 #if defined (NO_SUBPROCESSES)
|
|
209 while (1)
|
|
210 {
|
|
211 /* No need to be tricky like below; we can just call wait(). */
|
|
212 /* #### should figure out how to write a wait_allowing_quit().
|
|
213 Since hardly any systems don't have subprocess support,
|
|
214 however, there doesn't seem to be much point. */
|
|
215 if (wait (0) == pid)
|
|
216 return;
|
|
217 }
|
|
218 #elif defined (HAVE_WAITPID)
|
|
219 /* Note that, whenever any subprocess terminates (asynch. or synch.),
|
|
220 the SIGCHLD handler will be called and it will call wait(). Thus
|
|
221 we cannot just call wait() ourselves, and we can't block SIGCHLD
|
|
222 and then call wait(), because then if an asynch. process dies
|
|
223 while we're waiting for our synch. process, Emacs will never
|
|
224 notice that the asynch. process died.
|
|
225
|
|
226 So, the general approach we take is to repeatedly block until a
|
|
227 signal arrives, and then check if our process died using kill
|
|
228 (pid, 0). (We could also check the value of `synch_process_alive',
|
|
229 since the SIGCHLD handler will reset that and we know that we're
|
|
230 only being called on synchronous processes, but this approach is
|
|
231 safer. I don't trust the proper delivery of SIGCHLD.
|
|
232
|
|
233 Note also that we cannot use any form of waitpid(). A loop with
|
|
234 WNOHANG will chew up CPU time; better to use sleep(). A loop
|
|
235 without WNOWAIT will screw up the SIGCHLD handler (actually this
|
|
236 is not true, if you duplicate the exit-status-reaping code; see
|
|
237 below). A loop with WNOWAIT will result in a race condition if
|
|
238 the process terminates between the process-status check and the
|
|
239 call to waitpid(). */
|
|
240
|
|
241 /* Formerly, immediate_quit was set around this function call, but
|
|
242 that could lead to problems if the QUIT happened when SIGCHLD was
|
|
243 blocked -- it would remain blocked. Yet another reason why
|
|
244 immediate_quit is a bad idea. In any case, there is no reason to
|
|
245 resort to this because either the SIGIO or the SIGALRM will stop
|
|
246 the block in EMACS_WAIT_FOR_SIGNAL(). */
|
|
247
|
|
248 /* Apparently there are bugs on some systems with the second method
|
|
249 used below (the EMACS_BLOCK_SIGNAL method), whereby zombie
|
|
250 processes get left around. It appears in those cases that the
|
|
251 SIGCHLD handler is never getting invoked. It's not clear whether
|
|
252 this is an Emacs bug or a kernel bug or both: on HPUX this
|
|
253 problem is observed only with XEmacs, but under Solaris 2.4 all
|
|
254 sorts of different programs have problems with zombies. The
|
|
255 method we use here does not require a working SIGCHLD (but will
|
|
256 not break if it is working), and should be safe. */
|
|
257 /*
|
|
258 We use waitpid(), contrary to the remarks above. There is no
|
|
259 race condition, because the three situations when sigchld_handler
|
|
260 is invoked should be handled OK:
|
|
261
|
|
262 - handler invoked before waitpid(): In this case, subprocess
|
|
263 status will be set by sigchld_handler. waitpid() here will
|
|
264 return -1 with errno set to ECHILD, which is a valid exit
|
|
265 condition.
|
|
266
|
|
267 - handler invoked during waitpid(): as above, except that errno
|
|
268 here will be set to EINTR. This will cause waitpid() to be
|
|
269 called again, and this time it will exit with ECHILD.
|
|
270
|
|
271 - handler invoked after waitpid(): The following code will reap
|
|
272 the subprocess. In the handler, wait() will return -1 because
|
|
273 there is no child to reap, and the handler will exit without
|
|
274 modifying child subprocess status. */
|
|
275 int ret, status;
|
|
276
|
|
277 /* Because the SIGCHLD handler can potentially reap the synchronous
|
|
278 subprocess, we should take care of that. */
|
|
279
|
|
280 /* Will stay in the do loop as long as:
|
|
281 1. Process is alive
|
|
282 2. Ctrl-G is not pressed */
|
|
283 do
|
|
284 {
|
|
285 QUIT;
|
|
286 ret = waitpid (pid, &status, 0);
|
|
287 /* waitpid returns 0 if the process is still alive. */
|
|
288 }
|
|
289 while (ret == 0 || (ret == -1 && errno == EINTR));
|
|
290
|
|
291 if (ret == pid) /* Success */
|
|
292 /* Set synch process globals. This is can also happen
|
|
293 in sigchld_handler, and that code is duplicated. */
|
|
294 {
|
|
295 synch_process_alive = 0;
|
|
296 if (WIFEXITED (status))
|
|
297 synch_process_retcode = WEXITSTATUS (status);
|
|
298 else if (WIFSIGNALED (status))
|
|
299 synch_process_death = signal_name (WTERMSIG (status));
|
|
300 }
|
|
301 /* On exiting the loop, ret will be -1, with errno set to ECHILD if
|
|
302 the child has already been reaped, e.g. in the signal handler. */
|
|
303
|
|
304 /* Otherwise, we've had some error condition here.
|
|
305 Per POSIX, the only other possibilities are:
|
|
306 - EFAULT (bus error accessing arg 2) or
|
|
307 - EINVAL (incorrect arguments),
|
|
308 which are both program bugs.
|
|
309
|
|
310 Since implementations may add their own error indicators on top,
|
|
311 we ignore it by default. */
|
442
|
312 #elif defined (WIN32_NATIVE)
|
814
|
313 /* not used */
|
428
|
314 #elif defined (EMACS_BLOCK_SIGNAL) && !defined (BROKEN_WAIT_FOR_SIGNAL) && defined (SIGCHLD)
|
|
315 while (1)
|
|
316 {
|
|
317 static int wait_debugging = 0; /* Set nonzero to make following
|
|
318 function work under dbx (at least for bsd). */
|
|
319 QUIT;
|
|
320 if (wait_debugging)
|
|
321 return;
|
|
322
|
|
323 EMACS_BLOCK_SIGNAL (SIGCHLD);
|
|
324 /* Block SIGCHLD from happening during this check,
|
|
325 to avoid race conditions. */
|
|
326 if (kill (pid, 0) < 0)
|
|
327 {
|
|
328 EMACS_UNBLOCK_SIGNAL (SIGCHLD);
|
|
329 return;
|
|
330 }
|
|
331 else
|
|
332 /* WARNING: Whatever this macro does *must* not allow SIGCHLD
|
|
333 to happen between the time that it's reenabled and when we
|
|
334 begin to block. Otherwise we may end up blocking for a
|
|
335 signal that has already arrived and isn't coming again.
|
|
336 Can you say "race condition"?
|
|
337
|
|
338 I assume that the system calls sigpause() or sigsuspend()
|
|
339 to provide this atomicness. If you're getting hangs in
|
|
340 sigpause()/sigsuspend(), then your OS doesn't implement
|
|
341 this properly (this applies under hpux9, for example).
|
|
342 Try defining BROKEN_WAIT_FOR_SIGNAL. */
|
|
343 EMACS_WAIT_FOR_SIGNAL (SIGCHLD);
|
|
344 }
|
442
|
345 #else /* not HAVE_WAITPID and not WIN32_NATIVE and (not EMACS_BLOCK_SIGNAL or BROKEN_WAIT_FOR_SIGNAL) */
|
428
|
346 /* This approach is kind of cheesy but is guaranteed(?!) to work
|
|
347 for all systems. */
|
|
348 while (1)
|
|
349 {
|
|
350 QUIT;
|
|
351 if (kill (pid, 0) < 0)
|
|
352 return;
|
771
|
353 stop_interrupts ();
|
|
354 sleep (1);
|
|
355 start_interrupts ();
|
428
|
356 }
|
|
357 #endif /* OS features */
|
|
358 }
|
|
359
|
|
360
|
|
361 #if !defined (NO_SUBPROCESSES)
|
|
362
|
|
363 /*
|
|
364 * flush any pending output
|
|
365 * (may flush input as well; it does not matter the way we use it)
|
|
366 */
|
|
367
|
|
368 void
|
|
369 flush_pending_output (int channel)
|
|
370 {
|
|
371 #ifdef HAVE_TERMIOS
|
|
372 /* If we try this, we get hit with SIGTTIN, because
|
|
373 the child's tty belongs to the child's pgrp. */
|
|
374 #elif defined (TCFLSH)
|
|
375 ioctl (channel, TCFLSH, 1);
|
|
376 #elif defined (TIOCFLUSH)
|
|
377 int zero = 0;
|
|
378 /* 3rd arg should be ignored
|
|
379 but some 4.2 kernels actually want the address of an int
|
|
380 and nonzero means something different. */
|
|
381 ioctl (channel, TIOCFLUSH, &zero);
|
|
382 #endif
|
|
383 }
|
|
384
|
442
|
385 #ifndef WIN32_NATIVE
|
428
|
386 /* Set up the terminal at the other end of a pseudo-terminal that
|
|
387 we will be controlling an inferior through.
|
|
388 It should not echo or do line-editing, since that is done
|
|
389 in Emacs. No padding needed for insertion into an Emacs buffer. */
|
|
390
|
|
391 void
|
|
392 child_setup_tty (int out)
|
|
393 {
|
|
394 struct emacs_tty s;
|
430
|
395 emacs_get_tty (out, &s);
|
428
|
396
|
|
397 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
|
|
398 assert (isatty(out));
|
|
399 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
|
|
400 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
|
513
|
401
|
|
402 {
|
|
403 /* Disable all output delays. */
|
|
404 tcflag_t delay_mask = 0;
|
428
|
405 #ifdef NLDLY
|
513
|
406 delay_mask |= NLDLY;
|
|
407 #endif
|
|
408 #ifdef CRDLY
|
|
409 delay_mask |= CRDLY;
|
|
410 #endif
|
|
411 #ifdef TABDLY
|
|
412 delay_mask |= TABDLY; /* Also disables tab expansion (Posix). */
|
|
413 #endif
|
|
414 #ifdef BSDLY
|
|
415 delay_mask |= BSDLY;
|
|
416 #endif
|
|
417 #ifdef VTDLY
|
|
418 delay_mask |= VTDLY;
|
428
|
419 #endif
|
513
|
420 #ifdef FFDLY
|
|
421 delay_mask |= FFDLY;
|
|
422 #endif
|
|
423 s.main.c_oflag &= ~delay_mask;
|
|
424 }
|
|
425
|
|
426 #ifdef OXTABS
|
|
427 /* Posix defines the TAB3 value for TABDLY to mean: expand tabs to spaces.
|
|
428 On those systems tab expansion would be disabled by the above code.
|
|
429 BSD systems use an independent flag, OXTABS. */
|
|
430 s.main.c_oflag &= ~OXTABS; /* Disable tab expansion */
|
|
431 #endif
|
|
432
|
428
|
433 s.main.c_lflag &= ~ECHO; /* Disable echo */
|
|
434 s.main.c_lflag |= ISIG; /* Enable signals */
|
|
435 #ifdef IUCLC
|
|
436 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
|
|
437 #endif
|
|
438 #ifdef OLCUC
|
|
439 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
|
|
440 #endif
|
513
|
441
|
428
|
442 #if defined (CSIZE) && defined (CS8)
|
|
443 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
|
|
444 #endif
|
|
445 #ifdef ISTRIP
|
|
446 s.main.c_iflag &= ~ISTRIP; /* Don't strip 8th bit on input */
|
|
447 #endif
|
|
448 #if 0
|
|
449 /* Unnecessary as long as ICANON is set */
|
|
450 s.main.c_cc[VMIN] = 1; /* minimum number of characters to accept */
|
|
451 s.main.c_cc[VTIME] = 0; /* wait forever for at least 1 character */
|
|
452 #endif /* 0 */
|
|
453
|
|
454 s.main.c_lflag |= ICANON; /* Enable erase/kill and eof processing */
|
|
455 s.main.c_cc[VEOF] = 04; /* ensure that EOF is Control-D */
|
|
456 s.main.c_cc[VERASE] = _POSIX_VDISABLE; /* disable erase processing */
|
|
457 s.main.c_cc[VKILL] = _POSIX_VDISABLE; /* disable kill processing */
|
|
458
|
|
459 #ifdef HPUX
|
|
460 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
|
|
461 #endif /* HPUX */
|
|
462
|
|
463 #ifdef AIX
|
|
464 #ifndef IBMR2AIX
|
|
465 /* AIX enhanced edit loses NULs, so disable it. */
|
|
466 s.main.c_line = 0;
|
|
467 s.main.c_iflag &= ~ASCEDIT;
|
|
468 #endif /* IBMR2AIX */
|
|
469 /* Also, PTY overloads NUL and BREAK.
|
|
470 don't ignore break, but don't signal either, so it looks like NUL.
|
|
471 This really serves a purpose only if running in an XTERM window
|
|
472 or via TELNET or the like, but does no harm elsewhere. */
|
|
473 s.main.c_iflag &= ~IGNBRK;
|
|
474 s.main.c_iflag &= ~BRKINT;
|
|
475 #endif /* AIX */
|
|
476 #ifdef SIGNALS_VIA_CHARACTERS
|
|
477 /* TTY `special characters' are used in process_send_signal
|
|
478 so set them here to something useful. */
|
|
479 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
|
|
480 s.main.c_cc[VINTR] = 'C' &037; /* Control-C */
|
|
481 s.main.c_cc[VSUSP] = 'Z' &037; /* Control-Z */
|
|
482 #else /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
|
|
483 /* TTY `special characters' work better as signals, so disable
|
|
484 character forms */
|
|
485 s.main.c_cc[VQUIT] = _POSIX_VDISABLE;
|
|
486 s.main.c_cc[VINTR] = _POSIX_VDISABLE;
|
|
487 s.main.c_cc[VSUSP] = _POSIX_VDISABLE;
|
|
488 s.main.c_lflag &= ~ISIG;
|
|
489 #endif /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
|
|
490 s.main.c_cc[VEOL] = _POSIX_VDISABLE;
|
|
491 #if defined (CBAUD)
|
440
|
492 /* <mdiers> #### This is not portable. ###
|
428
|
493 POSIX does not specify CBAUD, and 4.4BSD does not have it.
|
|
494 Instead, POSIX suggests to use cfset{i,o}speed().
|
|
495 [cf. D. Lewine, POSIX Programmer's Guide, Chapter 8: Terminal
|
|
496 I/O, O'Reilly 1991] */
|
|
497 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
|
|
498 #else
|
|
499 /* <mdiers> What to do upon failure? Just ignoring rc is probably
|
|
500 not acceptable, is it? */
|
|
501 if (cfsetispeed (&s.main, B9600) == -1) /* ignore */;
|
|
502 if (cfsetospeed (&s.main, B9600) == -1) /* ignore */;
|
|
503 #endif /* defined (CBAUD) */
|
|
504
|
|
505 #else /* not HAVE_TERMIO */
|
|
506
|
|
507 s.main.sg_flags &= ~(ECHO | CRMOD | ANYP | ALLDELAY | RAW | LCASE
|
|
508 | CBREAK | TANDEM);
|
|
509 s.main.sg_flags |= LPASS8;
|
|
510 s.main.sg_erase = 0377;
|
|
511 s.main.sg_kill = 0377;
|
|
512 s.lmode = LLITOUT | s.lmode; /* Don't strip 8th bit */
|
|
513
|
|
514 #endif /* not HAVE_TERMIO */
|
430
|
515 emacs_set_tty (out, &s, 0);
|
428
|
516
|
|
517 #ifdef RTU
|
|
518 {
|
|
519 int zero = 0;
|
|
520 ioctl (out, FIOASYNC, &zero);
|
|
521 }
|
|
522 #endif /* RTU */
|
|
523 }
|
442
|
524 #endif /* WIN32_NATIVE */
|
428
|
525
|
|
526 #endif /* not NO_SUBPROCESSES */
|
|
527
|
|
528
|
|
529 #if !defined (SIGTSTP) && !defined (USG_JOBCTRL)
|
|
530
|
|
531 #if defined(__STDC__) || defined(_MSC_VER)
|
|
532 #define SIG_PARAM_TYPE int
|
|
533 #else
|
|
534 #define SIG_PARAM_TYPE
|
|
535 #endif
|
|
536
|
|
537 /* Record a signal code and the handler for it. */
|
|
538 struct save_signal
|
|
539 {
|
|
540 int code;
|
|
541 SIGTYPE (*handler) (SIG_PARAM_TYPE);
|
|
542 };
|
|
543
|
|
544 static void
|
|
545 save_signal_handlers (struct save_signal *saved_handlers)
|
|
546 {
|
|
547 while (saved_handlers->code)
|
|
548 {
|
|
549 saved_handlers->handler
|
613
|
550 = (SIGTYPE (*) (SIG_PARAM_TYPE)) EMACS_SIGNAL (saved_handlers->code, SIG_IGN);
|
428
|
551 saved_handlers++;
|
|
552 }
|
|
553 }
|
|
554
|
|
555 static void
|
|
556 restore_signal_handlers (struct save_signal *saved_handlers)
|
|
557 {
|
|
558 while (saved_handlers->code)
|
|
559 {
|
613
|
560 EMACS_SIGNAL (saved_handlers->code, saved_handlers->handler);
|
428
|
561 saved_handlers++;
|
|
562 }
|
|
563 }
|
|
564
|
|
565
|
|
566 /* Fork a subshell. */
|
|
567 static void
|
|
568 sys_subshell (void)
|
|
569 {
|
|
570 Lisp_Object dir;
|
771
|
571 Intbyte *str = 0;
|
|
572 Bytecount len;
|
428
|
573 struct gcpro gcpro1;
|
771
|
574 Intbyte *sh = 0;
|
|
575 Extbyte *shext;
|
|
576
|
|
577 /* Use our buffer's default directory for the subshell. */
|
|
578
|
|
579 /* Note: These calls are spread out to insure that the return values
|
|
580 of the calls (which may be newly-created strings) are properly
|
|
581 GC-protected. */
|
|
582
|
428
|
583 GCPRO1 (dir);
|
771
|
584
|
|
585 dir = current_buffer->directory;
|
|
586 /* If the current dir has no terminating slash, we'll get undesirable
|
|
587 results, so put the slash back. */
|
|
588 dir = Ffile_name_as_directory (dir);
|
428
|
589 dir = Funhandled_file_name_directory (dir);
|
|
590 dir = expand_and_dir_to_file (dir, Qnil);
|
771
|
591
|
851
|
592 str = (Intbyte *) ALLOCA (XSTRING_LENGTH (dir) + 2);
|
428
|
593 len = XSTRING_LENGTH (dir);
|
|
594 memcpy (str, XSTRING_DATA (dir), len);
|
442
|
595 if (!IS_ANY_SEP (str[len - 1]))
|
|
596 str[len++] = DIRECTORY_SEP;
|
428
|
597 str[len] = 0;
|
771
|
598
|
|
599 if (sh == 0)
|
|
600 sh = egetenv ("SHELL");
|
|
601 if (sh == 0)
|
|
602 sh = "sh";
|
|
603
|
|
604 C_STRING_TO_EXTERNAL (sh, shext, Qfile_name);
|
|
605
|
|
606 UNGCPRO;
|
428
|
607
|
442
|
608 #ifdef WIN32_NATIVE
|
|
609
|
771
|
610 if (str)
|
|
611 qxe_chdir (str);
|
|
612
|
|
613 /* Waits for process completion */
|
|
614 if (_spawnlp (_P_WAIT, shext, shext, NULL) != 0)
|
|
615 report_process_error ("Can't spawn subshell", Qunbound);
|
|
616 else
|
|
617 return; /* we're done, no need to wait for termination */
|
|
618
|
|
619 #else /* not WIN32_NATIVE */
|
|
620
|
|
621 {
|
|
622 int pid;
|
|
623 struct save_signal saved_handlers[5];
|
|
624
|
|
625 saved_handlers[0].code = SIGINT;
|
|
626 saved_handlers[1].code = SIGQUIT;
|
|
627 saved_handlers[2].code = SIGTERM;
|
|
628 #ifdef SIGIO
|
|
629 saved_handlers[3].code = SIGIO;
|
|
630 saved_handlers[4].code = 0;
|
|
631 #else
|
|
632 saved_handlers[3].code = 0;
|
|
633 #endif
|
|
634
|
|
635 pid = fork ();
|
|
636
|
|
637 if (pid == -1)
|
563
|
638 report_process_error ("Can't spawn subshell", Qunbound);
|
771
|
639 if (pid == 0)
|
|
640 {
|
|
641 if (str)
|
|
642 qxe_chdir (str);
|
442
|
643
|
|
644 #if !defined (NO_SUBPROCESSES)
|
771
|
645 close_process_descs (); /* Close Emacs's pipes/ptys */
|
428
|
646 #endif
|
|
647
|
|
648 #ifdef SET_EMACS_PRIORITY
|
771
|
649 if (emacs_priority != 0)
|
|
650 nice (-emacs_priority); /* Give the new shell the default priority */
|
428
|
651 #endif
|
|
652
|
771
|
653 execlp (shext, shext, 0);
|
|
654 retry_write (1, "Can't execute subshell", 22);
|
|
655 _exit (1);
|
|
656 }
|
|
657
|
|
658 save_signal_handlers (saved_handlers);
|
|
659 synch_process_alive = 1;
|
|
660 wait_for_termination (pid);
|
|
661 restore_signal_handlers (saved_handlers);
|
428
|
662 }
|
|
663
|
442
|
664 #endif /* not WIN32_NATIVE */
|
428
|
665 }
|
|
666
|
|
667 #endif /* !defined (SIGTSTP) && !defined (USG_JOBCTRL) */
|
|
668
|
|
669
|
|
670
|
|
671 /* Suspend the Emacs process; give terminal to its superior. */
|
|
672 void
|
|
673 sys_suspend (void)
|
|
674 {
|
|
675 #if defined (SIGTSTP)
|
|
676 {
|
|
677 int pgrp = EMACS_GET_PROCESS_GROUP ();
|
|
678 EMACS_KILLPG (pgrp, SIGTSTP);
|
|
679 }
|
|
680
|
|
681 #elif defined (USG_JOBCTRL)
|
|
682 /* If you don't know what this is don't mess with it */
|
|
683 ptrace (0, 0, 0, 0); /* set for ptrace - caught by csh */
|
|
684 kill (getpid (), SIGQUIT);
|
|
685
|
|
686 #else /* No SIGTSTP or USG_JOBCTRL */
|
|
687
|
|
688 /* On a system where suspending is not implemented,
|
|
689 instead fork a subshell and let it talk directly to the terminal
|
|
690 while we wait. */
|
|
691 sys_subshell ();
|
|
692
|
|
693 #endif
|
|
694 }
|
|
695
|
|
696 /* Suspend a process if possible; give terminal to its superior. */
|
|
697 void
|
|
698 sys_suspend_process (int process)
|
|
699 {
|
|
700 /* I don't doubt that it is possible to suspend processes on
|
|
701 * VMS machines or thost that use USG_JOBCTRL,
|
|
702 * but I don't know how to do it, so...
|
|
703 */
|
|
704 #if defined (SIGTSTP)
|
|
705 kill(process, SIGTSTP);
|
|
706 #endif
|
|
707 }
|
|
708
|
|
709
|
|
710 /* Given FD, obtain pty buffer size. When no luck, a good guess is made,
|
442
|
711 so that the function works even when fd is not a pty. */
|
428
|
712
|
|
713 int
|
|
714 get_pty_max_bytes (int fd)
|
|
715 {
|
442
|
716 /* DEC OSF 4.0 fpathconf returns 255, but xemacs hangs on long shell
|
|
717 input lines if we return 253. 252 is OK!. So let's leave a bit
|
|
718 of slack for the newline that xemacs will insert, and for those
|
|
719 inevitable vendor off-by-one-or-two-or-three bugs. */
|
|
720 #define MAX_CANON_SLACK 10
|
|
721 #define SAFE_MAX_CANON (127 - MAX_CANON_SLACK)
|
428
|
722 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
|
442
|
723 {
|
|
724 int max_canon = fpathconf (fd, _PC_MAX_CANON);
|
|
725 #ifdef __hpux__
|
|
726 /* HP-UX 10.20 fpathconf returns 768, but this results in
|
|
727 truncated input lines, while 255 works. */
|
|
728 if (max_canon > 255) max_canon = 255;
|
428
|
729 #endif
|
442
|
730 return (max_canon < 0 ? SAFE_MAX_CANON :
|
|
731 max_canon > SAFE_MAX_CANON ? max_canon - MAX_CANON_SLACK :
|
|
732 max_canon);
|
|
733 }
|
|
734 #elif defined (_POSIX_MAX_CANON)
|
|
735 return (_POSIX_MAX_CANON > SAFE_MAX_CANON ?
|
|
736 _POSIX_MAX_CANON - MAX_CANON_SLACK :
|
|
737 _POSIX_MAX_CANON);
|
|
738 #else
|
|
739 return SAFE_MAX_CANON;
|
|
740 #endif
|
428
|
741 }
|
|
742
|
|
743 /* Figure out the eof character for the FD. */
|
|
744
|
665
|
745 Intbyte
|
428
|
746 get_eof_char (int fd)
|
|
747 {
|
665
|
748 const Intbyte ctrl_d = (Intbyte) '\004';
|
428
|
749
|
|
750 if (!isatty (fd))
|
|
751 return ctrl_d;
|
|
752 #ifdef HAVE_TERMIOS
|
|
753 {
|
|
754 struct termios t;
|
|
755 tcgetattr (fd, &t);
|
|
756 #if 0
|
|
757 /* What is the following line designed to do??? -mrb */
|
647
|
758 if ((int) strlen ((const char *) t.c_cc) < (VEOF + 1))
|
428
|
759 return ctrl_d;
|
|
760 else
|
665
|
761 return (Intbyte) t.c_cc[VEOF];
|
428
|
762 #endif
|
665
|
763 return t.c_cc[VEOF] == _POSIX_VDISABLE ? ctrl_d : (Intbyte) t.c_cc[VEOF];
|
428
|
764 }
|
|
765 #else /* ! HAVE_TERMIOS */
|
|
766 /* On Berkeley descendants, the following IOCTL's retrieve the
|
|
767 current control characters. */
|
|
768 #if defined (TIOCGETC)
|
|
769 {
|
|
770 struct tchars c;
|
|
771 ioctl (fd, TIOCGETC, &c);
|
665
|
772 return (Intbyte) c.t_eofc;
|
428
|
773 }
|
|
774 #else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
|
|
775 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
|
|
776 characters. */
|
|
777 #ifdef TCGETA
|
|
778 {
|
|
779 struct termio t;
|
|
780 ioctl (fd, TCGETA, &t);
|
647
|
781 if ((int) strlen ((const char *) t.c_cc) < (VINTR + 1))
|
428
|
782 return ctrl_d;
|
|
783 else
|
665
|
784 return (Intbyte) t.c_cc[VINTR];
|
428
|
785 }
|
|
786 #else /* ! defined (TCGETA) */
|
|
787 /* Rather than complain, we'll just guess ^D, which is what
|
|
788 * earlier emacsen always used. */
|
|
789 return ctrl_d;
|
|
790 #endif /* ! defined (TCGETA) */
|
|
791 #endif /* ! defined (TIOCGETC) */
|
|
792 #endif /* ! defined (HAVE_TERMIOS) */
|
|
793 }
|
|
794
|
|
795 /* Set the logical window size associated with descriptor FD
|
|
796 to HEIGHT and WIDTH. This is used mainly with ptys. */
|
|
797
|
|
798 int
|
|
799 set_window_size (int fd, int height, int width)
|
|
800 {
|
|
801 #ifdef TIOCSWINSZ
|
|
802
|
|
803 /* BSD-style. */
|
|
804 struct winsize size;
|
|
805 size.ws_row = height;
|
|
806 size.ws_col = width;
|
|
807
|
|
808 if (ioctl (fd, TIOCSWINSZ, &size) == -1)
|
|
809 return 0; /* error */
|
|
810 else
|
|
811 return 1;
|
|
812
|
|
813 #elif defined (TIOCSSIZE)
|
|
814
|
|
815 /* SunOS - style. */
|
|
816 struct ttysize size;
|
|
817 size.ts_lines = height;
|
|
818 size.ts_cols = width;
|
|
819
|
|
820 if (ioctl (fd, TIOCGSIZE, &size) == -1)
|
|
821 return 0;
|
|
822 else
|
|
823 return 1;
|
|
824 #else
|
|
825 return -1;
|
|
826 #endif
|
|
827 }
|
|
828
|
|
829 /* Set up the proper status flags for use of a pty. */
|
|
830
|
|
831 void
|
|
832 setup_pty (int fd)
|
|
833 {
|
|
834 #ifdef IBMRTAIX
|
|
835 /* On AIX, the parent gets SIGHUP when a pty attached child dies. So, we */
|
|
836 /* ignore SIGHUP once we've started a child on a pty. Note that this may */
|
|
837 /* cause EMACS not to die when it should, i.e., when its own controlling */
|
|
838 /* tty goes away. I've complained to the AIX developers, and they may */
|
|
839 /* change this behavior, but I'm not going to hold my breath. */
|
613
|
840 EMACS_SIGNAL (SIGHUP, SIG_IGN);
|
535
|
841 #endif /* IBMRTAIX */
|
|
842
|
428
|
843 #ifdef TIOCPKT
|
|
844 /* In some systems (Linux through 2.0.0, at least), packet mode doesn't
|
|
845 get cleared when a pty is closed, so we need to clear it here.
|
|
846 Linux pre2.0.13 contained an attempted fix for this (from Ted Ts'o,
|
|
847 tytso@mit.edu), but apparently it messed up rlogind and telnetd, so he
|
|
848 removed the fix in pre2.0.14. - dkindred@cs.cmu.edu
|
|
849 */
|
|
850 {
|
|
851 int off = 0;
|
|
852 ioctl (fd, TIOCPKT, (char *)&off);
|
|
853 }
|
535
|
854 #endif /* TIOCPKT */
|
428
|
855 }
|
|
856
|
|
857
|
|
858 /************************************************************************/
|
|
859 /* TTY control */
|
|
860 /************************************************************************/
|
|
861
|
|
862 /* ------------------------------------------------------ */
|
|
863 /* get baud rate */
|
|
864 /* ------------------------------------------------------ */
|
|
865
|
|
866 /* It really makes more sense for the baud-rate to be console-specific
|
|
867 and not device-specific, but it's (at least potentially) used for output
|
|
868 decisions. */
|
|
869
|
|
870 void
|
|
871 init_baud_rate (struct device *d)
|
|
872 {
|
|
873 if (DEVICE_WIN_P (d) || DEVICE_STREAM_P (d))
|
|
874 {
|
|
875 DEVICE_BAUD_RATE (d) = 38400;
|
|
876 return;
|
|
877 }
|
|
878
|
|
879 #ifdef HAVE_TTY
|
|
880 assert (DEVICE_TTY_P (d));
|
|
881 {
|
647
|
882 struct console *con = XCONSOLE (DEVICE_CONSOLE (d));
|
428
|
883 int input_fd = CONSOLE_TTY_DATA (con)->infd;
|
814
|
884 #ifdef HAVE_TERMIOS
|
428
|
885 struct termios sg;
|
|
886
|
|
887 sg.c_cflag = B9600;
|
|
888 tcgetattr (input_fd, &sg);
|
|
889 DEVICE_TTY_DATA (d)->ospeed = cfgetospeed (&sg);
|
|
890 # if defined (USE_GETOBAUD) && defined (getobaud)
|
|
891 /* m88k-motorola-sysv3 needs this (ghazi@noc.rutgers.edu) 9/1/94. */
|
|
892 if (DEVICE_TTY_DATA (d)->ospeed == 0)
|
|
893 DEVICE_TTY_DATA (d)->ospeed = getobaud (sg.c_cflag);
|
|
894 # endif
|
|
895 #elif defined (HAVE_TERMIO)
|
|
896 struct termio sg;
|
|
897
|
|
898 sg.c_cflag = B9600;
|
|
899 # ifdef HAVE_TCATTR
|
|
900 tcgetattr (input_fd, &sg);
|
|
901 # else
|
|
902 ioctl (input_fd, TCGETA, &sg);
|
|
903 # endif
|
|
904 DEVICE_TTY_DATA (d)->ospeed = sg.c_cflag & CBAUD;
|
|
905 #else /* neither TERMIOS nor TERMIO */
|
|
906 struct sgttyb sg;
|
|
907
|
|
908 sg.sg_ospeed = B9600;
|
|
909 if (ioctl (input_fd, TIOCGETP, &sg) < 0)
|
|
910 abort ();
|
|
911 DEVICE_TTY_DATA (d)->ospeed = sg.sg_ospeed;
|
|
912 #endif
|
|
913 }
|
|
914
|
|
915 DEVICE_BAUD_RATE (d) =
|
|
916 (DEVICE_TTY_DATA (d)->ospeed < countof (baud_convert)
|
|
917 ? baud_convert[DEVICE_TTY_DATA (d)->ospeed]
|
|
918 : 9600);
|
|
919
|
|
920 if (DEVICE_BAUD_RATE (d) == 0)
|
|
921 DEVICE_BAUD_RATE (d) = 1200;
|
|
922 #endif /* HAVE_TTY */
|
|
923 }
|
|
924
|
|
925
|
|
926 /* ------------------------------------------------------ */
|
|
927 /* SIGIO control */
|
|
928 /* ------------------------------------------------------ */
|
|
929
|
|
930 #if defined(SIGIO) && !defined(BROKEN_SIGIO)
|
|
931
|
|
932 static void
|
|
933 init_sigio_on_device (struct device *d)
|
|
934 {
|
|
935 int filedesc = DEVICE_INFD (d);
|
|
936
|
|
937 #if defined (FIOSSAIOOWN)
|
|
938 { /* HPUX stuff */
|
|
939 int owner = getpid ();
|
|
940 int ioctl_status;
|
|
941 if (DEVICE_TTY_P (d))
|
|
942 {
|
|
943 ioctl_status = ioctl (filedesc, FIOGSAIOOWN,
|
|
944 &DEVICE_OLD_FCNTL_OWNER (d));
|
|
945 ioctl_status = ioctl (filedesc, FIOSSAIOOWN, &owner);
|
|
946 }
|
|
947 #ifdef HAVE_WINDOW_SYSTEM
|
|
948 else if (!DEVICE_STREAM_P (d))
|
|
949 {
|
|
950 ioctl_status = ioctl (filedesc, SIOCGPGRP,
|
|
951 &DEVICE_OLD_FCNTL_OWNER (d));
|
|
952 ioctl_status = ioctl (filedesc, SIOCSPGRP, &owner);
|
|
953 }
|
|
954 #endif
|
|
955 }
|
|
956 #elif defined (F_SETOWN) && !defined (F_SETOWN_BUG)
|
|
957 DEVICE_OLD_FCNTL_OWNER (d) = fcntl (filedesc, F_GETOWN, 0);
|
|
958 # ifdef F_SETOWN_SOCK_NEG
|
|
959 /* stdin is a socket here */
|
|
960 fcntl (filedesc, F_SETOWN, -getpid ());
|
|
961 # else
|
|
962 fcntl (filedesc, F_SETOWN, getpid ());
|
|
963 # endif
|
|
964 #endif
|
|
965 }
|
|
966
|
|
967 static void
|
|
968 reset_sigio_on_device (struct device *d)
|
|
969 {
|
|
970 int filedesc = DEVICE_INFD (d);
|
|
971
|
|
972 #if defined (FIOSSAIOOWN)
|
|
973 { /* HPUX stuff */
|
|
974 int ioctl_status;
|
|
975 if (DEVICE_TTY_P (d))
|
|
976 {
|
|
977 ioctl_status = ioctl (filedesc, FIOSSAIOOWN,
|
|
978 &DEVICE_OLD_FCNTL_OWNER (d));
|
|
979 }
|
|
980 #ifdef HAVE_WINDOW_SYSTEM
|
|
981 else if (!DEVICE_STREAM_P (d))
|
|
982 {
|
|
983 ioctl_status = ioctl (filedesc, SIOCSPGRP,
|
|
984 &DEVICE_OLD_FCNTL_OWNER (d));
|
|
985 }
|
|
986 #endif
|
|
987 }
|
|
988 #elif defined (F_SETOWN) && !defined (F_SETOWN_BUG)
|
|
989 fcntl (filedesc, F_SETOWN, DEVICE_OLD_FCNTL_OWNER (d));
|
|
990 #endif
|
|
991 }
|
|
992
|
|
993 static void
|
|
994 request_sigio_on_device (struct device *d)
|
|
995 {
|
|
996 int filedesc = DEVICE_INFD (d);
|
|
997
|
502
|
998 /* NOTE: It appears that Linux has its own mechanism for requesting
|
|
999 SIGIO, using the F_GETSIG and F_SETSIG commands to fcntl().
|
|
1000 These let you pick which signal you want sent (not just SIGIO),
|
|
1001 and if you do this, you get additional info which tells you which
|
|
1002 file descriptor has input ready on it. The man page says:
|
|
1003
|
|
1004 Using these mechanisms, a program can implement fully
|
|
1005 asynchronous I/O without using select(2) or poll(2) most
|
|
1006 of the time.
|
|
1007
|
|
1008 The use of O_ASYNC, F_GETOWN, F_SETOWN is specific to BSD
|
|
1009 and Linux. F_GETSIG and F_SETSIG are Linux-specific.
|
|
1010 POSIX has asynchronous I/O and the aio_sigevent structure
|
|
1011 to achieve similar things; these are also available in
|
|
1012 Linux as part of the GNU C Library (Glibc).
|
|
1013
|
|
1014 But it appears that Linux also supports O_ASYNC, so I see no
|
|
1015 particular need to switch. --ben
|
|
1016 */
|
|
1017
|
|
1018 #if defined (I_SETSIG) && !defined (HPUX10) && !defined (LINUX)
|
428
|
1019 {
|
502
|
1020 int events = 0;
|
428
|
1021 ioctl (filedesc, I_GETSIG, &events);
|
|
1022 ioctl (filedesc, I_SETSIG, events | S_INPUT);
|
|
1023 }
|
502
|
1024 #elif defined (O_ASYNC)
|
|
1025 /* Generally FASYNC and O_ASYNC are both defined, and both equal;
|
|
1026 but let's not depend on that. O_ASYNC appears to be more
|
|
1027 standard (at least the Linux include files think so), so
|
|
1028 check it first. */
|
|
1029 fcntl (filedesc, F_SETFL, fcntl (filedesc, F_GETFL, 0) | O_ASYNC);
|
428
|
1030 #elif defined (FASYNC)
|
|
1031 fcntl (filedesc, F_SETFL, fcntl (filedesc, F_GETFL, 0) | FASYNC);
|
|
1032 #elif defined (FIOSSAIOSTAT)
|
|
1033 {
|
|
1034 /* DG: Changed for HP-UX. HP-UX uses different IOCTLs for
|
|
1035 sockets and other devices for some bizarre reason. We guess
|
|
1036 that an X device is a socket, and tty devices aren't. We then
|
|
1037 use the following crud to do the appropriate thing. */
|
|
1038 int on = 1;
|
|
1039 int ioctl_status; /* ####DG: check if IOCTL succeeds here. */
|
|
1040
|
|
1041 if (DEVICE_TTY_P (d))
|
|
1042 {
|
|
1043 ioctl_status = ioctl (filedesc, FIOSSAIOSTAT, &on);
|
|
1044 }
|
|
1045 #ifdef HAVE_WINDOW_SYSTEM
|
|
1046 else if (!DEVICE_STREAM_P (d))
|
|
1047 {
|
|
1048 ioctl_status = ioctl (filedesc, FIOASYNC, &on);
|
|
1049 }
|
|
1050 #endif
|
|
1051 }
|
|
1052 #elif defined (FIOASYNC)
|
|
1053 {
|
|
1054 int on = 1;
|
|
1055 ioctl (filedesc, FIOASYNC, &on);
|
|
1056 }
|
|
1057 #endif
|
|
1058
|
|
1059 #if defined (_CX_UX) /* #### Is this crap necessary? */
|
|
1060 EMACS_UNBLOCK_SIGNAL (SIGIO);
|
|
1061 #endif
|
|
1062 }
|
|
1063
|
|
1064 static void
|
|
1065 unrequest_sigio_on_device (struct device *d)
|
|
1066 {
|
|
1067 int filedesc = DEVICE_INFD (d);
|
|
1068
|
502
|
1069 #if defined (I_SETSIG) && !defined (HPUX10) && !defined (LINUX)
|
428
|
1070 {
|
502
|
1071 int events = 0;
|
428
|
1072 ioctl (filedesc, I_GETSIG, &events);
|
|
1073 ioctl (filedesc, I_SETSIG, events & ~S_INPUT);
|
|
1074 }
|
502
|
1075 #elif defined (O_ASYNC)
|
|
1076 fcntl (filedesc, F_SETFL, fcntl (filedesc, F_GETFL, 0) & ~O_ASYNC);
|
428
|
1077 #elif defined (FASYNC)
|
|
1078 fcntl (filedesc, F_SETFL, fcntl (filedesc, F_GETFL, 0) & ~FASYNC);
|
|
1079 #elif defined (FIOSSAIOSTAT)
|
|
1080 {
|
|
1081 /* DG: Changed for HP-UX. HP-UX uses different IOCTLs for
|
|
1082 sockets and other devices for some bizarre reason. We guess
|
|
1083 that an X device is a socket, and tty devices aren't. We then
|
|
1084 use the following crud to do the appropriate thing. */
|
|
1085
|
|
1086 int off = 0;
|
|
1087 int ioctl_status;
|
|
1088
|
|
1089 /* See comment for request_sigio_on_device */
|
|
1090
|
|
1091 if (DEVICE_TTY_P (d))
|
|
1092 {
|
|
1093 ioctl_status = ioctl (filedesc, FIOSSAIOSTAT, &off);
|
|
1094 }
|
|
1095 else
|
|
1096 {
|
|
1097 ioctl_status = ioctl (filedesc, FIOASYNC, &off);
|
|
1098 }
|
|
1099 }
|
|
1100 #elif defined (FIOASYNC)
|
|
1101 {
|
|
1102 int off = 0;
|
|
1103 ioctl (filedesc, FIOASYNC, &off);
|
|
1104 }
|
|
1105 #endif
|
|
1106 }
|
|
1107
|
|
1108 void
|
|
1109 request_sigio (void)
|
|
1110 {
|
|
1111 Lisp_Object devcons, concons;
|
|
1112
|
|
1113 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
1114 {
|
|
1115 struct device *d;
|
|
1116
|
|
1117 d = XDEVICE (XCAR (devcons));
|
|
1118
|
|
1119 if (!DEVICE_STREAM_P (d))
|
|
1120 request_sigio_on_device (d);
|
|
1121 }
|
|
1122 }
|
|
1123
|
|
1124 void
|
|
1125 unrequest_sigio (void)
|
|
1126 {
|
|
1127 Lisp_Object devcons, concons;
|
|
1128
|
|
1129 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
1130 {
|
|
1131 struct device *d;
|
|
1132
|
|
1133 d = XDEVICE (XCAR (devcons));
|
|
1134
|
|
1135 if (!DEVICE_STREAM_P (d))
|
|
1136 unrequest_sigio_on_device (d);
|
|
1137 }
|
|
1138 }
|
|
1139
|
|
1140 #endif /* SIGIO */
|
|
1141
|
|
1142 /* ------------------------------------------------------ */
|
|
1143 /* Changing Emacs's process group */
|
|
1144 /* ------------------------------------------------------ */
|
|
1145
|
|
1146 /* Saving and restoring the process group of Emacs's terminal. */
|
|
1147
|
|
1148 /* On some systems, apparently (?!) Emacs must be in its own process
|
|
1149 group in order to receive SIGIO correctly. On other systems
|
|
1150 (e.g. Solaris), it's not required and doing it makes things
|
|
1151 get fucked up. So, we only do it when
|
|
1152 SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP is defined. Basically,
|
|
1153 this is only required for BSD 4.2 systems. (Actually, I bet
|
|
1154 we don't have to do this at all -- those systems also
|
|
1155 required interrupt input, which we don't support.)
|
|
1156
|
|
1157 If Emacs was in its own process group (i.e. inherited_pgroup ==
|
|
1158 getpid ()), then we know we're running under a shell with job
|
|
1159 control (Emacs would never be run as part of a pipeline).
|
|
1160 Everything is fine.
|
|
1161
|
|
1162 If Emacs was not in its own process group, then we know we're
|
|
1163 running under a shell (or a caller) that doesn't know how to
|
|
1164 separate itself from Emacs (like sh). Emacs must be in its own
|
|
1165 process group in order to receive SIGIO correctly. In this
|
|
1166 situation, we put ourselves in our own pgroup, forcibly set the
|
|
1167 tty's pgroup to our pgroup, and make sure to restore and reinstate
|
|
1168 the tty's pgroup just like any other terminal setting. If
|
|
1169 inherited_group was not the tty's pgroup, then we'll get a
|
|
1170 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
|
|
1171 it goes foreground in the future, which is what should happen. */
|
|
1172
|
|
1173 #ifdef SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP
|
|
1174
|
442
|
1175 static pid_t inherited_pgroup;
|
|
1176 static pid_t inherited_tty_pgroup;
|
428
|
1177
|
|
1178 #endif
|
|
1179
|
|
1180 void
|
|
1181 munge_tty_process_group (void)
|
|
1182 {
|
|
1183 #ifdef SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP
|
|
1184 if (noninteractive)
|
|
1185 return;
|
|
1186
|
|
1187 /* Only do this munging if we have a device on the controlling
|
|
1188 terminal. See the large comment below. */
|
|
1189
|
|
1190 if (CONSOLEP (Vcontrolling_terminal) &&
|
|
1191 CONSOLE_LIVE_P (XCONSOLE (Vcontrolling_terminal)))
|
|
1192 {
|
|
1193 int fd = open ("/dev/tty", O_RDWR, 0);
|
442
|
1194 pid_t me = getpid ();
|
428
|
1195 EMACS_BLOCK_SIGNAL (SIGTTOU);
|
|
1196 EMACS_SET_TTY_PROCESS_GROUP (fd, &me);
|
|
1197 EMACS_UNBLOCK_SIGNAL (SIGTTOU);
|
771
|
1198 retry_close (fd);
|
428
|
1199 }
|
|
1200 #endif
|
|
1201 }
|
|
1202
|
|
1203 /* Split off the foreground process group to Emacs alone.
|
|
1204 When we are in the foreground, but not started in our own process
|
|
1205 group, redirect the TTY to point to our own process group. We need
|
|
1206 to be in our own process group to receive SIGIO properly. */
|
|
1207 static void
|
|
1208 munge_process_groups (void)
|
|
1209 {
|
|
1210 #ifdef SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP
|
|
1211 if (noninteractive)
|
|
1212 return;
|
|
1213
|
|
1214 EMACS_SEPARATE_PROCESS_GROUP ();
|
|
1215
|
|
1216 munge_tty_process_group ();
|
|
1217 #endif
|
|
1218 }
|
|
1219
|
|
1220 void
|
|
1221 unmunge_tty_process_group (void)
|
|
1222 {
|
|
1223 #ifdef SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP
|
|
1224 {
|
|
1225 int fd = open ("/dev/tty", O_RDWR, 0);
|
|
1226 EMACS_BLOCK_SIGNAL (SIGTTOU);
|
|
1227 EMACS_SET_TTY_PROCESS_GROUP (fd, &inherited_tty_pgroup);
|
|
1228 EMACS_UNBLOCK_SIGNAL (SIGTTOU);
|
771
|
1229 retry_close (fd);
|
428
|
1230 }
|
|
1231 #endif
|
|
1232 }
|
|
1233
|
|
1234 /* Set the tty to our original foreground group.
|
|
1235 Also restore the original process group (put us back into sh's
|
|
1236 process group), so that ^Z will suspend both us and sh. */
|
|
1237 static void
|
|
1238 unmunge_process_groups (void)
|
|
1239 {
|
|
1240 #ifdef SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP
|
|
1241 if (noninteractive)
|
|
1242 return;
|
|
1243
|
|
1244 unmunge_tty_process_group ();
|
|
1245
|
|
1246 EMACS_SET_PROCESS_GROUP (inherited_pgroup);
|
|
1247 #endif
|
|
1248 }
|
|
1249
|
|
1250 /* According to some old wisdom, we need to be in a separate process
|
|
1251 group for SIGIO to work correctly (at least on some systems ...).
|
|
1252 So go ahead and put ourselves into our own process group. This
|
|
1253 will fail if we're already in our own process group, but who cares.
|
|
1254 Also record whether we were in our own process group. (In general,
|
|
1255 we will already be in our own process group if we were started from
|
|
1256 a job-control shell like csh, but not if we were started from sh).
|
|
1257
|
|
1258 If we succeeded in changing our process group, then we will no
|
|
1259 longer be in the foreground process group of our controlling
|
|
1260 terminal. Therefore, if we have a console open onto this terminal,
|
|
1261 we have to change the controlling terminal's foreground process
|
|
1262 group (otherwise we will get stopped with a SIGTTIN signal when
|
|
1263 attempting to read from the terminal). It's important,
|
|
1264 however, that we do this *only* when we have a console open onto
|
|
1265 the terminal. It's a decidedly bad idea to do so otherwise,
|
|
1266 especially if XEmacs was started from the background. */
|
|
1267
|
|
1268 void
|
|
1269 init_process_group (void)
|
|
1270 {
|
|
1271 #ifdef SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP
|
|
1272 if (! noninteractive)
|
|
1273 {
|
|
1274 int fd = open ("/dev/tty", O_RDWR, 0);
|
|
1275 inherited_pgroup = EMACS_GET_PROCESS_GROUP ();
|
|
1276 EMACS_GET_TTY_PROCESS_GROUP (fd, &inherited_tty_pgroup);
|
771
|
1277 retry_close (fd);
|
428
|
1278 EMACS_SEPARATE_PROCESS_GROUP ();
|
|
1279 }
|
|
1280 #endif
|
|
1281 }
|
|
1282
|
|
1283 void
|
|
1284 disconnect_controlling_terminal (void)
|
|
1285 {
|
|
1286 # ifdef HAVE_SETSID
|
|
1287 /* Controlling terminals are attached to a session.
|
|
1288 Create a new session for us; it will have no controlling
|
|
1289 terminal. This also, of course, puts us in our own
|
|
1290 process group. */
|
|
1291 setsid ();
|
|
1292 # else
|
|
1293 /* Put us in our own process group. */
|
|
1294 EMACS_SEPARATE_PROCESS_GROUP ();
|
|
1295 # if defined (TIOCNOTTY)
|
|
1296 /* This is the older way of disconnecting the controlling
|
|
1297 terminal, on 4.3 BSD. We must open /dev/tty; using
|
|
1298 filedesc 0 is not sufficient because it could be
|
|
1299 something else (e.g. our stdin was redirected to
|
|
1300 another terminal).
|
|
1301 */
|
|
1302 {
|
|
1303 int j = open ("/dev/tty", O_RDWR, 0);
|
|
1304 ioctl (j, TIOCNOTTY, 0);
|
771
|
1305 retry_close (j);
|
428
|
1306 }
|
|
1307 # endif /* TIOCNOTTY */
|
|
1308 /*
|
|
1309 On systems without TIOCNOTTY and without
|
|
1310 setsid(), we don't need to do anything more to
|
|
1311 disconnect our controlling terminal. Here is
|
|
1312 what the man page for termio(7) from a SYSV 3.2
|
|
1313 system says:
|
|
1314
|
|
1315 "The first terminal file opened by the process group leader
|
|
1316 of a terminal file not already associated with a process
|
|
1317 group becomes the control terminal for that process group.
|
|
1318 The control terminal plays a special role in handling quit
|
|
1319 and interrupt signals, as discussed below. The control
|
|
1320 terminal is inherited by a child process during a fork(2).
|
|
1321 A process can break this association by changing its process
|
|
1322 group using setpgrp(2)."
|
|
1323
|
|
1324 */
|
|
1325 # endif /* not HAVE_SETSID */
|
|
1326 }
|
|
1327
|
|
1328
|
|
1329 /* ------------------------------------------------------ */
|
|
1330 /* Getting and setting emacs_tty structures */
|
|
1331 /* ------------------------------------------------------ */
|
|
1332
|
|
1333 /* It's wrong to encase these into #ifdef HAVE_TTY because we need
|
|
1334 them for child TTY processes. */
|
|
1335 /* However, this does break NT support while we don't do child TTY processes */
|
442
|
1336 #ifndef WIN32_NATIVE
|
428
|
1337
|
|
1338 /* Set *TC to the parameters associated with the terminal FD.
|
|
1339 Return zero if all's well, or -1 if we ran into an error we
|
|
1340 couldn't deal with. */
|
|
1341 int
|
|
1342 emacs_get_tty (int fd, struct emacs_tty *settings)
|
|
1343 {
|
|
1344 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
|
|
1345 #ifdef HAVE_TCATTR
|
|
1346 /* We have those nifty POSIX tcmumbleattr functions. */
|
|
1347 if (tcgetattr (fd, &settings->main) < 0)
|
|
1348 return -1;
|
|
1349
|
|
1350 #elif defined HAVE_TERMIO
|
|
1351 /* The SYSV-style interface? */
|
|
1352 if (ioctl (fd, TCGETA, &settings->main) < 0)
|
|
1353 return -1;
|
|
1354
|
814
|
1355 #else
|
428
|
1356 /* I give up - I hope you have the BSD ioctls. */
|
|
1357 if (ioctl (fd, TIOCGETP, &settings->main) < 0)
|
|
1358 return -1;
|
|
1359 #endif /* HAVE_TCATTR */
|
|
1360
|
|
1361 /* Suivant - Do we have to get struct ltchars data? */
|
|
1362 #ifdef HAVE_LTCHARS
|
|
1363 if (ioctl (fd, TIOCGLTC, &settings->ltchars) < 0)
|
|
1364 return -1;
|
|
1365 #endif
|
|
1366
|
|
1367 /* How about a struct tchars and a wordful of lmode bits? */
|
|
1368 #ifdef HAVE_TCHARS
|
|
1369 if (ioctl (fd, TIOCGETC, &settings->tchars) < 0
|
|
1370 || ioctl (fd, TIOCLGET, &settings->lmode) < 0)
|
|
1371 return -1;
|
|
1372 #endif
|
|
1373
|
|
1374 /* We have survived the tempest. */
|
|
1375 return 0;
|
|
1376 }
|
|
1377
|
|
1378 /* Set the parameters of the tty on FD according to the contents of
|
|
1379 *SETTINGS. If FLUSHP is non-zero, we discard input.
|
430
|
1380 Return 0 if all went well, and -1 if anything failed.
|
|
1381 #### All current callers use FLUSHP == 0. */
|
428
|
1382
|
|
1383 int
|
|
1384 emacs_set_tty (int fd, struct emacs_tty *settings, int flushp)
|
|
1385 {
|
|
1386 /* Set the primary parameters - baud rate, character size, etcetera. */
|
|
1387 #ifdef HAVE_TCATTR
|
|
1388 int i;
|
|
1389 /* We have those nifty POSIX tcmumbleattr functions.
|
|
1390 William J. Smith <wjs@wiis.wang.com> writes:
|
|
1391 "POSIX 1003.1 defines tcsetattr() to return success if it was
|
|
1392 able to perform any of the requested actions, even if some
|
|
1393 of the requested actions could not be performed.
|
|
1394 We must read settings back to ensure tty setup properly.
|
|
1395 AIX requires this to keep tty from hanging occasionally." */
|
|
1396 /* This makes sure that we don't loop indefinitely in here. */
|
|
1397 for (i = 0 ; i < 10 ; i++)
|
|
1398 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
|
|
1399 {
|
|
1400 if (errno == EINTR)
|
|
1401 continue;
|
|
1402 else
|
|
1403 return -1;
|
|
1404 }
|
|
1405 else
|
|
1406 {
|
|
1407 struct termios new;
|
|
1408
|
|
1409 /* Get the current settings, and see if they're what we asked for. */
|
|
1410 tcgetattr (fd, &new);
|
|
1411 /* We cannot use memcmp on the whole structure here because under
|
|
1412 * aix386 the termios structure has some reserved field that may
|
|
1413 * not be filled in.
|
|
1414 */
|
|
1415 if ( new.c_iflag == settings->main.c_iflag
|
|
1416 && new.c_oflag == settings->main.c_oflag
|
|
1417 && new.c_cflag == settings->main.c_cflag
|
|
1418 && new.c_lflag == settings->main.c_lflag
|
|
1419 && memcmp(new.c_cc, settings->main.c_cc, NCCS) == 0)
|
|
1420 break;
|
|
1421 else
|
|
1422 continue;
|
|
1423 }
|
|
1424 #elif defined HAVE_TERMIO
|
|
1425 /* The SYSV-style interface? */
|
|
1426 if (ioctl (fd, flushp ? TCSETAF : TCSETAW, &settings->main) < 0)
|
|
1427 return -1;
|
|
1428
|
814
|
1429 #else
|
428
|
1430 /* I give up - I hope you have the BSD ioctls. */
|
|
1431 if (ioctl (fd, (flushp) ? TIOCSETP : TIOCSETN, &settings->main) < 0)
|
|
1432 return -1;
|
|
1433 #endif /* HAVE_TCATTR */
|
|
1434
|
|
1435 /* Suivant - Do we have to get struct ltchars data? */
|
|
1436 #ifdef HAVE_LTCHARS
|
|
1437 if (ioctl (fd, TIOCSLTC, &settings->ltchars) < 0)
|
|
1438 return -1;
|
|
1439 #endif
|
|
1440
|
|
1441 /* How about a struct tchars and a wordful of lmode bits? */
|
|
1442 #ifdef HAVE_TCHARS
|
|
1443 if (ioctl (fd, TIOCSETC, &settings->tchars) < 0
|
|
1444 || ioctl (fd, TIOCLSET, &settings->lmode) < 0)
|
|
1445 return -1;
|
|
1446 #endif
|
|
1447
|
|
1448 /* We have survived the tempest. */
|
|
1449 return 0;
|
|
1450 }
|
|
1451
|
442
|
1452 #endif /* WIN32_NATIVE */
|
428
|
1453
|
|
1454 /* ------------------------------------------------------ */
|
|
1455 /* Initializing a device */
|
|
1456 /* ------------------------------------------------------ */
|
|
1457
|
|
1458 #ifdef HAVE_TTY
|
|
1459
|
|
1460 /* This may also be defined in stdio,
|
|
1461 but if so, this does no harm,
|
|
1462 and using the same name avoids wasting the other one's space. */
|
|
1463
|
|
1464 #if ((defined(USG) || defined(DGUX)) && !defined(__STDC__))
|
|
1465 char _sobuf[BUFSIZ+8];
|
|
1466 #elif (defined(USG) && !defined(LINUX) && !defined(_SCO_DS)) || defined(IRIX5)
|
|
1467 extern unsigned char _sobuf[BUFSIZ+8];
|
|
1468 #else
|
|
1469 char _sobuf[BUFSIZ];
|
|
1470 #endif
|
|
1471
|
|
1472 #if defined (TIOCGLTC) && defined (HAVE_LTCHARS) /* HAVE_LTCHARS */
|
|
1473 static struct ltchars new_ltchars = {-1,-1,-1,-1,-1,-1};
|
|
1474 #endif
|
|
1475 #ifdef TIOCGETC /* HAVE_TCHARS */
|
|
1476 #ifdef HAVE_TCHARS
|
|
1477 static struct tchars new_tchars = {-1,-1,-1,-1,-1,-1};
|
|
1478 #endif
|
|
1479 #endif
|
|
1480
|
|
1481 static void
|
|
1482 tty_init_sys_modes_on_device (struct device *d)
|
|
1483 {
|
|
1484 struct emacs_tty tty;
|
|
1485 int input_fd, output_fd;
|
|
1486 struct console *con = XCONSOLE (DEVICE_CONSOLE (d));
|
|
1487
|
|
1488 input_fd = CONSOLE_TTY_DATA (con)->infd;
|
|
1489 output_fd = CONSOLE_TTY_DATA (con)->outfd;
|
|
1490
|
430
|
1491 emacs_get_tty (input_fd, &CONSOLE_TTY_DATA (con)->old_tty);
|
428
|
1492 tty = CONSOLE_TTY_DATA (con)->old_tty;
|
|
1493
|
|
1494 con->tty_erase_char = Qnil;
|
|
1495
|
|
1496 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
|
|
1497 /* after all those years... */
|
|
1498 con->tty_erase_char = make_char (tty.main.c_cc[VERASE]);
|
|
1499 #ifdef DGUX
|
|
1500 /* This allows meta to be sent on 8th bit. */
|
|
1501 tty.main.c_iflag &= ~INPCK; /* don't check input for parity */
|
|
1502 #endif
|
|
1503 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
|
|
1504 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
|
|
1505 #ifdef ISTRIP
|
|
1506 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
|
|
1507 #endif
|
|
1508 tty.main.c_lflag &= ~ECHO; /* Disable echo */
|
|
1509 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
|
|
1510 #ifdef IEXTEN
|
|
1511 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
|
|
1512 #endif
|
|
1513 tty.main.c_lflag |= ISIG; /* Enable signals */
|
|
1514 if (TTY_FLAGS (con).flow_control)
|
|
1515 {
|
|
1516 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
|
|
1517 #ifdef IXANY
|
|
1518 tty.main.c_iflag &= ~IXANY;
|
|
1519 #endif /* IXANY */
|
|
1520 }
|
|
1521 else
|
|
1522 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
|
|
1523 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
|
|
1524 on output */
|
513
|
1525
|
|
1526 #if 0
|
|
1527 /* We used to disable tab expansion here, but this is the user's decision. */
|
|
1528 #if defined (TABDLY) && defined (TAB3)
|
|
1529 if ((tty.main.c_oflag & TABDLY) == TAB3)
|
|
1530 tty.main.c_oflag &= ~TABDLY; /* Disable tab expansion (Posix). */
|
|
1531 #elif defined (OXTABS)
|
|
1532 tty.main.c_oflag &= ~OXTABS; /* Disable tab expansion (BSD). */
|
|
1533 #endif
|
|
1534 #endif /* 0 */
|
|
1535
|
428
|
1536 #ifdef CS8
|
|
1537 if (TTY_FLAGS (con).meta_key)
|
|
1538 {
|
|
1539 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
|
|
1540 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
|
|
1541 }
|
|
1542 #endif
|
|
1543 if (CONSOLE_TTY_DATA (con)->controlling_terminal)
|
|
1544 {
|
|
1545 tty.main.c_cc[VINTR] =
|
|
1546 CONSOLE_QUIT_CHAR (con); /* C-g (usually) gives SIGINT */
|
|
1547 /* Set up C-g for both SIGQUIT and SIGINT.
|
|
1548 We don't know which we will get, but we handle both alike
|
|
1549 so which one it really gives us does not matter. */
|
|
1550 tty.main.c_cc[VQUIT] = CONSOLE_QUIT_CHAR (con);
|
|
1551 }
|
|
1552 else
|
|
1553 {
|
|
1554 tty.main.c_cc[VINTR] = _POSIX_VDISABLE;
|
|
1555 tty.main.c_cc[VQUIT] = _POSIX_VDISABLE;
|
|
1556 }
|
|
1557 tty.main.c_cc[VMIN] = 1; /* Input should wait for at
|
|
1558 least 1 char */
|
|
1559 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
|
|
1560 #ifdef VSWTCH
|
|
1561 tty.main.c_cc[VSWTCH] = _POSIX_VDISABLE; /* Turn off shell layering use
|
|
1562 of C-z */
|
|
1563 #endif /* VSWTCH */
|
|
1564 /* There was some conditionalizing here on (mips or TCATTR), but
|
|
1565 I think that's wrong. There was one report of C-y (DSUSP) not being
|
|
1566 disabled on HP9000s700 systems, and this might fix it. */
|
|
1567 #ifdef VSUSP
|
|
1568 tty.main.c_cc[VSUSP] = _POSIX_VDISABLE; /* Turn off mips handling of C-z. */
|
|
1569 #endif /* VSUSP */
|
|
1570 #ifdef V_DSUSP
|
|
1571 tty.main.c_cc[V_DSUSP] = _POSIX_VDISABLE; /* Turn off mips handling of C-y. */
|
|
1572 #endif /* V_DSUSP */
|
|
1573 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
|
|
1574 tty.main.c_cc[VDSUSP] = _POSIX_VDISABLE;
|
|
1575 #endif /* VDSUSP */
|
|
1576 #ifdef VLNEXT
|
|
1577 tty.main.c_cc[VLNEXT] = _POSIX_VDISABLE;
|
|
1578 #endif /* VLNEXT */
|
|
1579 #ifdef VREPRINT
|
|
1580 tty.main.c_cc[VREPRINT] = _POSIX_VDISABLE;
|
|
1581 #endif /* VREPRINT */
|
|
1582 #ifdef VWERASE
|
|
1583 tty.main.c_cc[VWERASE] = _POSIX_VDISABLE;
|
|
1584 #endif /* VWERASE */
|
|
1585 #ifdef VDISCARD
|
|
1586 tty.main.c_cc[VDISCARD] = _POSIX_VDISABLE;
|
|
1587 #endif /* VDISCARD */
|
|
1588 #ifdef VSTART
|
|
1589 tty.main.c_cc[VSTART] = _POSIX_VDISABLE;
|
|
1590 #endif /* VSTART */
|
|
1591 #ifdef VSTRT
|
|
1592 tty.main.c_cc[VSTRT] = _POSIX_VDISABLE; /* called VSTRT on some systems */
|
|
1593 #endif /* VSTART */
|
|
1594 #ifdef VSTOP
|
|
1595 tty.main.c_cc[VSTOP] = _POSIX_VDISABLE;
|
|
1596 #endif /* VSTOP */
|
|
1597 #ifdef SET_LINE_DISCIPLINE
|
|
1598 /* Need to explicitly request TERMIODISC line discipline or
|
|
1599 Ultrix's termios does not work correctly. */
|
|
1600 tty.main.c_line = SET_LINE_DISCIPLINE;
|
|
1601 #endif
|
|
1602
|
|
1603 #ifdef AIX
|
|
1604 #ifndef IBMR2AIX
|
|
1605 /* AIX enhanced edit loses NULs, so disable it. */
|
|
1606 tty.main.c_line = 0;
|
|
1607 tty.main.c_iflag &= ~ASCEDIT;
|
|
1608 #else
|
|
1609 tty.main.c_cc[VSTRT] = 255;
|
|
1610 tty.main.c_cc[VSTOP] = 255;
|
|
1611 tty.main.c_cc[VSUSP] = 255;
|
|
1612 tty.main.c_cc[VDSUSP] = 255;
|
|
1613 #endif /* IBMR2AIX */
|
|
1614 /* Also, PTY overloads NUL and BREAK.
|
|
1615 don't ignore break, but don't signal either, so it looks like NUL.
|
|
1616 This really serves a purpose only if running in an XTERM window
|
|
1617 or via TELNET or the like, but does no harm elsewhere. */
|
|
1618 tty.main.c_iflag &= ~IGNBRK;
|
|
1619 tty.main.c_iflag &= ~BRKINT;
|
|
1620 #endif /* AIX */
|
|
1621 #else /* if not HAVE_TERMIO */
|
|
1622 con->tty_erase_char = make_char (tty.main.sg_erase);
|
|
1623 tty.main.sg_flags &= ~(ECHO | CRMOD | XTABS);
|
|
1624 if (TTY_FLAGS (con).meta_key)
|
|
1625 tty.main.sg_flags |= ANYP;
|
|
1626 /* #### should we be using RAW mode here? */
|
|
1627 tty.main.sg_flags |= /* interrupt_input ? RAW : */ CBREAK;
|
|
1628 #endif /* not HAVE_TERMIO */
|
|
1629
|
|
1630 /* If going to use CBREAK mode, we must request C-g to interrupt
|
|
1631 and turn off start and stop chars, etc. If not going to use
|
|
1632 CBREAK mode, do this anyway so as to turn off local flow
|
|
1633 control for user coming over network on 4.2; in this case,
|
|
1634 only t_stopc and t_startc really matter. */
|
|
1635 #ifndef HAVE_TERMIO
|
|
1636 #ifdef HAVE_TCHARS
|
|
1637 /* Note: if not using CBREAK mode, it makes no difference how we
|
|
1638 set this */
|
|
1639 tty.tchars = new_tchars;
|
|
1640 tty.tchars.t_intrc = CONSOLE_QUIT_CHAR (con);
|
|
1641 if (TTY_FLAGS (con).flow_control)
|
|
1642 {
|
|
1643 tty.tchars.t_startc = '\021';
|
|
1644 tty.tchars.t_stopc = '\023';
|
|
1645 }
|
|
1646
|
|
1647 tty.lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH |
|
|
1648 CONSOLE_TTY_DATA (con)->old_tty.lmode;
|
|
1649
|
|
1650 #if defined (ultrix) || defined (__bsdi__)
|
|
1651 /* Under Ultrix 4.2a, leaving this out doesn't seem to hurt
|
|
1652 anything, and leaving it in breaks the meta key. Go figure. */
|
|
1653 /* Turning off ONLCR is enough under BSD/386. Leave the general
|
|
1654 output post-processing flag alone since for some reason it
|
|
1655 doesn't get reset after XEmacs goes away. */
|
|
1656 tty.lmode &= ~LLITOUT;
|
|
1657 #endif
|
|
1658
|
|
1659 #endif /* HAVE_TCHARS */
|
|
1660 #endif /* not HAVE_TERMIO */
|
|
1661
|
|
1662 #ifdef HAVE_LTCHARS
|
|
1663 tty.ltchars = new_ltchars;
|
|
1664 #endif /* HAVE_LTCHARS */
|
|
1665
|
430
|
1666 emacs_set_tty (input_fd, &tty, 0);
|
428
|
1667
|
|
1668 /* This code added to insure that, if flow-control is not to be used,
|
|
1669 we have an unlocked terminal at the start. */
|
|
1670
|
|
1671 #ifdef TCXONC
|
|
1672 if (!TTY_FLAGS (con).flow_control) ioctl (input_fd, TCXONC, 1);
|
|
1673 #endif
|
|
1674 #ifdef TIOCSTART
|
|
1675 if (!TTY_FLAGS (con).flow_control) ioctl (input_fd, TIOCSTART, 0);
|
|
1676 #endif
|
|
1677
|
|
1678 #if defined (HAVE_TERMIOS) || defined (HPUX9)
|
|
1679 #ifdef TCOON
|
|
1680 if (!TTY_FLAGS (con).flow_control) tcflow (input_fd, TCOON);
|
|
1681 #endif
|
|
1682 #endif
|
|
1683 #ifdef AIXHFT
|
|
1684 hft_init (con);
|
|
1685 #ifdef IBMR2AIX
|
|
1686 {
|
|
1687 /* IBM's HFT device usually thinks a ^J should be LF/CR.
|
|
1688 We need it to be only LF. This is the way that is
|
|
1689 done. */
|
|
1690 struct termio tty;
|
|
1691
|
|
1692 if (ioctl (output_fd, HFTGETID, &tty) != -1)
|
771
|
1693 retry_write (output_fd, "\033[20l", 5);
|
428
|
1694 }
|
|
1695 #endif
|
|
1696 #endif
|
|
1697
|
|
1698 #if 0 /* We do our own buffering with lstreams. */
|
|
1699 #ifdef _IOFBF
|
|
1700 /* This symbol is defined on recent USG systems.
|
|
1701 Someone says without this call USG won't really buffer the file
|
|
1702 even with a call to setbuf. */
|
647
|
1703 setvbuf (CONSOLE_TTY_DATA (con)->outfd, (char *) _sobuf, _IOFBF,
|
|
1704 sizeof (_sobuf));
|
428
|
1705 #else
|
|
1706 setbuf (CONSOLE_TTY_DATA (con)->outfd, (char *) _sobuf);
|
|
1707 #endif
|
|
1708 #endif
|
|
1709 set_tty_modes (con);
|
|
1710 }
|
|
1711
|
|
1712 #endif /* HAVE_TTY */
|
|
1713
|
|
1714 void
|
|
1715 init_one_device (struct device *d)
|
|
1716 {
|
|
1717 #ifdef HAVE_TTY
|
|
1718 if (DEVICE_TTY_P (d))
|
|
1719 tty_init_sys_modes_on_device (d);
|
|
1720 #endif
|
|
1721 #if defined(SIGIO) && !defined(BROKEN_SIGIO)
|
|
1722 if (!DEVICE_STREAM_P (d))
|
|
1723 {
|
|
1724 init_sigio_on_device (d);
|
|
1725 request_sigio_on_device (d);
|
|
1726 }
|
|
1727 #endif
|
|
1728 }
|
|
1729
|
|
1730 void
|
|
1731 init_one_console (struct console *con)
|
|
1732 {
|
|
1733 Lisp_Object devcons;
|
|
1734
|
|
1735 CONSOLE_DEVICE_LOOP (devcons, con)
|
|
1736 {
|
|
1737 struct device *d = XDEVICE (XCAR (devcons));
|
|
1738
|
|
1739 init_one_device (d);
|
|
1740 }
|
|
1741 }
|
|
1742
|
|
1743 void
|
|
1744 reinit_initial_console (void)
|
|
1745 {
|
|
1746 munge_process_groups ();
|
|
1747 if (CONSOLEP (Vcontrolling_terminal) &&
|
|
1748 CONSOLE_LIVE_P (XCONSOLE (Vcontrolling_terminal)))
|
|
1749 init_one_console (XCONSOLE (Vcontrolling_terminal));
|
|
1750 }
|
|
1751
|
|
1752
|
|
1753 /* ------------------------------------------------------ */
|
|
1754 /* Other TTY functions */
|
|
1755 /* ------------------------------------------------------ */
|
|
1756
|
|
1757 #ifdef HAVE_TTY
|
|
1758
|
|
1759 #if 0 /* not currently used */
|
|
1760
|
|
1761 /* Return nonzero if safe to use tabs in output.
|
|
1762 At the time this is called, init_sys_modes has not been done yet. */
|
|
1763
|
|
1764 int
|
|
1765 tabs_safe_p (struct device *d)
|
|
1766 {
|
|
1767 #ifdef HAVE_TTY
|
|
1768 if (DEVICE_TTY_P (d))
|
|
1769 {
|
|
1770 struct emacs_tty tty;
|
|
1771
|
430
|
1772 emacs_get_tty (DEVICE_INFD (d), &tty);
|
428
|
1773 return EMACS_TTY_TABS_OK (&tty);
|
|
1774 }
|
|
1775 #endif
|
|
1776 return 1;
|
|
1777 }
|
|
1778
|
|
1779 #endif /* 0 */
|
|
1780
|
|
1781 /* Get terminal size from system.
|
|
1782 Store number of lines into *heightp and width into *widthp.
|
|
1783 If zero or a negative number is stored, the value is not valid. */
|
|
1784
|
|
1785 void
|
|
1786 get_tty_device_size (struct device *d, int *widthp, int *heightp)
|
|
1787 {
|
|
1788 int input_fd = DEVICE_INFD (d);
|
|
1789
|
|
1790 assert (DEVICE_TTY_P (d));
|
|
1791
|
|
1792 #ifdef TIOCGWINSZ
|
|
1793 {
|
|
1794 /* BSD-style. */
|
|
1795 struct winsize size;
|
|
1796
|
|
1797 if (ioctl (input_fd, TIOCGWINSZ, &size) == -1)
|
|
1798 *widthp = *heightp = 0;
|
|
1799 else
|
|
1800 {
|
|
1801 *widthp = size.ws_col;
|
|
1802 *heightp = size.ws_row;
|
|
1803 }
|
|
1804 }
|
|
1805 #elif defined TIOCGSIZE
|
|
1806 {
|
|
1807 /* SunOS - style. */
|
|
1808 struct ttysize size;
|
|
1809
|
|
1810 if (ioctl (input_fd, TIOCGSIZE, &size) == -1)
|
|
1811 *widthp = *heightp = 0;
|
|
1812 else
|
|
1813 {
|
|
1814 *widthp = size.ts_cols;
|
|
1815 *heightp = size.ts_lines;
|
|
1816 }
|
|
1817 }
|
|
1818 #else /* system doesn't know size */
|
|
1819
|
|
1820 *widthp = 0;
|
|
1821 *heightp = 0;
|
|
1822
|
|
1823 #endif /* not !TIOCGWINSZ */
|
|
1824 }
|
|
1825
|
|
1826 #endif /* HAVE_TTY */
|
|
1827
|
|
1828
|
|
1829 /* ------------------------------------------------------ */
|
|
1830 /* Is device 8 bit ? */
|
|
1831 /* ------------------------------------------------------ */
|
|
1832
|
|
1833 #ifdef HAVE_TTY
|
|
1834
|
|
1835 int
|
|
1836 eight_bit_tty (struct device *d)
|
|
1837 {
|
|
1838 struct emacs_tty s;
|
|
1839 int input_fd;
|
|
1840 int eight_bit = 0;
|
|
1841
|
|
1842 assert (DEVICE_TTY_P (d));
|
|
1843 input_fd = DEVICE_INFD (d);
|
|
1844
|
430
|
1845 emacs_get_tty (input_fd, &s);
|
428
|
1846
|
|
1847 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
|
|
1848 eight_bit = (s.main.c_cflag & CSIZE) == CS8;
|
|
1849 #else
|
|
1850 eight_bit = 0; /* I don't know how to do it */
|
|
1851 #endif
|
|
1852 return eight_bit;
|
|
1853 }
|
|
1854
|
|
1855 #endif /* HAVE_TTY */
|
|
1856
|
|
1857
|
|
1858 /* ------------------------------------------------------ */
|
|
1859 /* Resetting a device */
|
|
1860 /* ------------------------------------------------------ */
|
|
1861
|
|
1862 #ifdef HAVE_TTY
|
|
1863
|
|
1864 /* Prepare the terminal for exiting Emacs; move the cursor to the
|
|
1865 bottom of the frame, turn off interrupt-driven I/O, etc. */
|
|
1866 static void
|
|
1867 tty_reset_sys_modes_on_device (struct device *d)
|
|
1868 {
|
|
1869 int input_fd, output_fd;
|
|
1870 struct console *con = XCONSOLE (DEVICE_CONSOLE (d));
|
|
1871
|
|
1872 input_fd = CONSOLE_TTY_DATA (con)->infd;
|
|
1873 output_fd = CONSOLE_TTY_DATA (con)->outfd;
|
|
1874
|
|
1875 #if defined (IBMR2AIX) && defined (AIXHFT)
|
|
1876 {
|
|
1877 /* HFT consoles normally use ^J as a LF/CR. We forced it to
|
|
1878 do the LF only. Now, we need to reset it. */
|
|
1879 struct termio tty;
|
|
1880
|
|
1881 if (ioctl (output_fd, HFTGETID, &tty) != -1)
|
771
|
1882 retry_write (output_fd, "\033[20h", 5);
|
428
|
1883 }
|
|
1884 #endif
|
|
1885
|
|
1886 tty_redisplay_shutdown (con);
|
|
1887 /* reset_tty_modes() flushes the connection at its end. */
|
|
1888 reset_tty_modes (con);
|
|
1889
|
|
1890 #if defined (BSD)
|
|
1891 /* Avoid possible loss of output when changing terminal modes. */
|
|
1892 fsync (output_fd);
|
|
1893 #endif
|
|
1894
|
430
|
1895 while (emacs_set_tty (input_fd, &CONSOLE_TTY_DATA (con)->old_tty, 0)
|
428
|
1896 < 0 && errno == EINTR)
|
|
1897 ;
|
|
1898
|
|
1899 #ifdef SET_LINE_DISCIPLINE
|
|
1900 /* Ultrix's termios *ignores* any line discipline except TERMIODISC.
|
|
1901 A different old line discipline is therefore not restored, yet.
|
|
1902 Restore the old line discipline by hand. */
|
|
1903 ioctl (input_fd, TIOCSETD, &old_tty.main.c_line);
|
|
1904 #endif
|
|
1905
|
|
1906 #ifdef AIXHFT
|
|
1907 hft_reset (con);
|
|
1908 #endif
|
|
1909
|
|
1910 }
|
|
1911
|
|
1912 #endif /* HAVE_TTY */
|
|
1913
|
|
1914 void
|
|
1915 reset_one_device (struct device *d)
|
|
1916 {
|
|
1917 #ifdef HAVE_TTY
|
|
1918 if (DEVICE_TTY_P (d))
|
|
1919 tty_reset_sys_modes_on_device (d);
|
|
1920 else
|
|
1921 #endif
|
|
1922 if (DEVICE_STREAM_P (d))
|
|
1923 fflush (CONSOLE_STREAM_DATA (XCONSOLE (DEVICE_CONSOLE (d)))->out);
|
|
1924 #if defined(SIGIO) && !defined(BROKEN_SIGIO)
|
|
1925 if (!DEVICE_STREAM_P (d))
|
|
1926 {
|
|
1927 unrequest_sigio_on_device (d);
|
|
1928 reset_sigio_on_device (d);
|
|
1929 }
|
|
1930 #endif
|
|
1931 }
|
|
1932
|
|
1933 void
|
|
1934 reset_one_console (struct console *con)
|
|
1935 {
|
|
1936 /* Note: this can be called during GC. */
|
|
1937 Lisp_Object devcons;
|
|
1938
|
|
1939 CONSOLE_DEVICE_LOOP (devcons, con)
|
|
1940 {
|
|
1941 struct device *d = XDEVICE (XCAR (devcons));
|
|
1942
|
|
1943 reset_one_device (d);
|
|
1944 }
|
|
1945 }
|
|
1946
|
|
1947 void
|
|
1948 reset_all_consoles (void)
|
|
1949 {
|
|
1950 /* Note: this can be called during GC. */
|
|
1951 Lisp_Object concons;
|
|
1952
|
|
1953 CONSOLE_LOOP (concons)
|
|
1954 {
|
|
1955 struct console *con = XCONSOLE (XCAR (concons));
|
|
1956
|
|
1957 reset_one_console (con);
|
|
1958 }
|
|
1959
|
|
1960 unmunge_process_groups ();
|
|
1961 }
|
|
1962
|
|
1963 void
|
|
1964 reset_initial_console (void)
|
|
1965 {
|
|
1966 if (CONSOLEP (Vcontrolling_terminal) &&
|
|
1967 CONSOLE_LIVE_P (XCONSOLE (Vcontrolling_terminal)))
|
|
1968 reset_one_console (XCONSOLE (Vcontrolling_terminal));
|
|
1969 unmunge_process_groups ();
|
|
1970 }
|
|
1971
|
|
1972
|
|
1973 /* ------------------------------------------------------ */
|
|
1974 /* extra TTY stuff under AIX */
|
|
1975 /* ------------------------------------------------------ */
|
|
1976
|
|
1977 #ifdef AIXHFT
|
|
1978
|
|
1979 /* Called from init_sys_modes. */
|
|
1980 static void
|
|
1981 hft_init (struct console *con)
|
|
1982 {
|
|
1983 int junk;
|
|
1984 int input_fd;
|
|
1985
|
|
1986 assert (CONSOLE_TTY_P (con));
|
|
1987 input_fd = CONSOLE_TTY_DATA (con)->infd;
|
|
1988
|
|
1989 /* If we're not on an HFT we shouldn't do any of this. We determine
|
|
1990 if we are on an HFT by trying to get an HFT error code. If this
|
|
1991 call fails, we're not on an HFT. */
|
|
1992 #ifdef IBMR2AIX
|
|
1993 if (ioctl (input_fd, HFQERROR, &junk) < 0)
|
|
1994 return;
|
|
1995 #else /* not IBMR2AIX */
|
|
1996 if (ioctl (input_fd, HFQEIO, 0) < 0)
|
|
1997 return;
|
|
1998 #endif /* not IBMR2AIX */
|
|
1999
|
|
2000 /* On AIX the default hft keyboard mapping uses backspace rather than delete
|
|
2001 as the rubout key's ASCII code. Here this is changed. The bug is that
|
|
2002 there's no way to determine the old mapping, so in reset_one_console
|
|
2003 we need to assume that the normal map had been present. Of course, this
|
|
2004 code also doesn't help if on a terminal emulator which doesn't understand
|
|
2005 HFT VTD's. */
|
|
2006 {
|
|
2007 struct hfbuf buf;
|
|
2008 struct hfkeymap keymap;
|
|
2009
|
|
2010 buf.hf_bufp = (char *)&keymap;
|
|
2011 buf.hf_buflen = sizeof (keymap);
|
|
2012 keymap.hf_nkeys = 2;
|
|
2013 keymap.hfkey[0].hf_kpos = 15;
|
|
2014 keymap.hfkey[0].hf_kstate = HFMAPCHAR | HFSHFNONE;
|
|
2015 #ifdef IBMR2AIX
|
|
2016 keymap.hfkey[0].hf_keyidh = '<';
|
|
2017 #else /* not IBMR2AIX */
|
|
2018 keymap.hfkey[0].hf_page = '<';
|
|
2019 #endif /* not IBMR2AIX */
|
|
2020 keymap.hfkey[0].hf_char = 127;
|
|
2021 keymap.hfkey[1].hf_kpos = 15;
|
|
2022 keymap.hfkey[1].hf_kstate = HFMAPCHAR | HFSHFSHFT;
|
|
2023 #ifdef IBMR2AIX
|
|
2024 keymap.hfkey[1].hf_keyidh = '<';
|
|
2025 #else /* not IBMR2AIX */
|
|
2026 keymap.hfkey[1].hf_page = '<';
|
|
2027 #endif /* not IBMR2AIX */
|
|
2028 keymap.hfkey[1].hf_char = 127;
|
|
2029 hftctl (input_fd, HFSKBD, &buf);
|
|
2030 }
|
|
2031 /* #### Should probably set a console TTY flag here. */
|
|
2032 #if 0
|
|
2033 /* The HFT system on AIX doesn't optimize for scrolling, so it's really ugly
|
|
2034 at times. */
|
|
2035 line_ins_del_ok = char_ins_del_ok = 0;
|
|
2036 #endif /* 0 */
|
|
2037 }
|
|
2038
|
|
2039 /* Reset the rubout key to backspace. */
|
|
2040
|
|
2041 static void
|
|
2042 hft_reset (struct console *con)
|
|
2043 {
|
|
2044 struct hfbuf buf;
|
|
2045 struct hfkeymap keymap;
|
|
2046 int junk;
|
|
2047 int input_fd;
|
|
2048
|
|
2049 assert (CONSOLE_TTY_P (con));
|
|
2050 input_fd = CONSOLE_TTY_DATA (con)->infd;
|
|
2051
|
|
2052 #ifdef IBMR2AIX
|
|
2053 if (ioctl (input_fd, HFQERROR, &junk) < 0)
|
|
2054 return;
|
|
2055 #else /* not IBMR2AIX */
|
|
2056 if (ioctl (input_fd, HFQEIO, 0) < 0)
|
|
2057 return;
|
|
2058 #endif /* not IBMR2AIX */
|
|
2059
|
|
2060 buf.hf_bufp = (char *)&keymap;
|
|
2061 buf.hf_buflen = sizeof (keymap);
|
|
2062 keymap.hf_nkeys = 2;
|
|
2063 keymap.hfkey[0].hf_kpos = 15;
|
|
2064 keymap.hfkey[0].hf_kstate = HFMAPCHAR | HFSHFNONE;
|
|
2065 #ifdef IBMR2AIX
|
|
2066 keymap.hfkey[0].hf_keyidh = '<';
|
|
2067 #else /* not IBMR2AIX */
|
|
2068 keymap.hfkey[0].hf_page = '<';
|
|
2069 #endif /* not IBMR2AIX */
|
|
2070 keymap.hfkey[0].hf_char = 8;
|
|
2071 keymap.hfkey[1].hf_kpos = 15;
|
|
2072 keymap.hfkey[1].hf_kstate = HFMAPCHAR | HFSHFSHFT;
|
|
2073 #ifdef IBMR2AIX
|
|
2074 keymap.hfkey[1].hf_keyidh = '<';
|
|
2075 #else /* not IBMR2AIX */
|
|
2076 keymap.hfkey[1].hf_page = '<';
|
|
2077 #endif /* not IBMR2AIX */
|
|
2078 keymap.hfkey[1].hf_char = 8;
|
|
2079 hftctl (input_fd, HFSKBD, &buf);
|
|
2080 }
|
|
2081
|
|
2082 #endif /* AIXHFT */
|
|
2083
|
|
2084
|
|
2085 /************************************************************************/
|
|
2086 /* limits of text/data segments */
|
|
2087 /************************************************************************/
|
|
2088
|
801
|
2089 /* Need start_of_data() as much as possible now, for total_data_usage();
|
|
2090 but with PDUMP and WIN32_NATIVE, can't currently do it. */
|
|
2091 #if !defined (CANNOT_DUMP) && (!defined (PDUMP) || !defined (WIN32_NATIVE))
|
428
|
2092 #define NEED_STARTS
|
|
2093 #endif
|
|
2094
|
801
|
2095 #if !defined (SYSTEM_MALLOC) && !defined (NEED_STARTS)
|
428
|
2096 #define NEED_STARTS
|
|
2097 #endif
|
|
2098
|
|
2099 #ifdef NEED_STARTS
|
|
2100 /* Some systems that cannot dump also cannot implement these. */
|
|
2101
|
|
2102 /*
|
|
2103 * Return the address of the start of the text segment prior to
|
|
2104 * doing an unexec. After unexec the return value is undefined.
|
|
2105 * See crt0.c for further explanation and _start.
|
|
2106 *
|
|
2107 */
|
|
2108
|
801
|
2109 #if !defined (HAVE_TEXT_START) && !defined (PDUMP)
|
440
|
2110
|
442
|
2111 EXTERN_C int _start (void);
|
428
|
2112
|
|
2113 char *
|
|
2114 start_of_text (void)
|
|
2115 {
|
|
2116 #ifdef TEXT_START
|
442
|
2117 return (char *) TEXT_START;
|
428
|
2118 #else
|
442
|
2119 return (char *) _start;
|
428
|
2120 #endif /* TEXT_START */
|
|
2121 }
|
440
|
2122 #endif /* !defined(HAVE_TEXT_START) && !defined(PDUMP) */
|
428
|
2123
|
|
2124 /*
|
|
2125 * Return the address of the start of the data segment prior to
|
|
2126 * doing an unexec. After unexec the return value is undefined.
|
442
|
2127 * See ecrt0.c for further information and definition of data_start.
|
428
|
2128 *
|
|
2129 * Apparently, on BSD systems this is etext at startup. On
|
|
2130 * USG systems (swapping) this is highly mmu dependent and
|
|
2131 * is also dependent on whether or not the program is running
|
|
2132 * with shared text. Generally there is a (possibly large)
|
|
2133 * gap between end of text and start of data with shared text.
|
|
2134 *
|
|
2135 * On Uniplus+ systems with shared text, data starts at a
|
|
2136 * fixed address. Each port (from a given oem) is generally
|
|
2137 * different, and the specific value of the start of data can
|
|
2138 * be obtained via the UniPlus+ specific "uvar" system call,
|
|
2139 * however the method outlined in crt0.c seems to be more portable.
|
|
2140 *
|
|
2141 * Probably what will have to happen when a USG unexec is available,
|
|
2142 * at least on UniPlus, is temacs will have to be made unshared so
|
|
2143 * that text and data are contiguous. Then once loadup is complete,
|
|
2144 * unexec will produce a shared executable where the data can be
|
|
2145 * at the normal shared text boundary and the startofdata variable
|
|
2146 * will be patched by unexec to the correct value.
|
|
2147 *
|
|
2148 */
|
|
2149
|
801
|
2150 #if defined (ORDINARY_LINK) && !defined (MINGW)
|
428
|
2151 extern char **environ;
|
|
2152 #endif
|
|
2153
|
|
2154 void *
|
|
2155 start_of_data (void)
|
|
2156 {
|
|
2157 #ifdef DATA_START
|
|
2158 return ((char *) DATA_START);
|
|
2159 #else
|
452
|
2160 #if defined (ORDINARY_LINK) || defined(PDUMP)
|
428
|
2161 /*
|
|
2162 * This is a hack. Since we're not linking crt0.c or pre_crt0.c,
|
|
2163 * data_start isn't defined. We take the address of environ, which
|
|
2164 * is known to live at or near the start of the system crt0.c, and
|
|
2165 * we don't sweat the handful of bytes that might lose.
|
|
2166 */
|
442
|
2167 #if defined (HEAP_IN_DATA) && !defined(PDUMP)
|
428
|
2168 extern char* static_heap_base;
|
|
2169 if (!initialized)
|
|
2170 return static_heap_base;
|
|
2171 #endif
|
801
|
2172 return ((char *) &environ);
|
428
|
2173 #else
|
|
2174 extern int data_start;
|
|
2175 return ((char *) &data_start);
|
|
2176 #endif /* ORDINARY_LINK */
|
|
2177 #endif /* DATA_START */
|
|
2178 }
|
|
2179 #endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */
|
|
2180
|
801
|
2181 extern void *minimum_address_seen; /* from xmalloc() */
|
|
2182 extern void *maximum_address_seen; /* from xmalloc() */
|
|
2183
|
|
2184 Bytecount
|
|
2185 total_data_usage (void)
|
|
2186 {
|
|
2187 #ifdef NEED_STARTS
|
|
2188 void *data_start = start_of_data ();
|
|
2189 #else
|
|
2190 void *data_start = minimum_address_seen;
|
|
2191 #endif
|
|
2192
|
|
2193 #if !defined (WIN32_NATIVE) && !defined (CYGWIN)
|
814
|
2194 void *data_end = sbrk (0);
|
801
|
2195 #else
|
|
2196 void *data_end = maximum_address_seen;
|
|
2197 #endif
|
|
2198
|
|
2199 /* Sanity checking -- the min determined by malloc() should always be
|
|
2200 greater than data start determined by other means. We could do the
|
|
2201 same check on the max, except that things like rel-alloc might
|
|
2202 invalidate it. */
|
|
2203 if (minimum_address_seen &&
|
|
2204 (char *) minimum_address_seen < (char *) data_start)
|
|
2205 data_start = minimum_address_seen;
|
|
2206
|
|
2207 if (data_end < data_start) /* Huh?????????? */
|
|
2208 data_end = maximum_address_seen;
|
|
2209
|
|
2210 /* #### Doesn't seem to give good results on Windows; values are much
|
|
2211 higher than actual memory usage. How to fix??? */
|
|
2212 return (char *) data_end - (char *) data_start;
|
|
2213 }
|
|
2214
|
428
|
2215
|
|
2216 /************************************************************************/
|
|
2217 /* get the system name */
|
|
2218 /************************************************************************/
|
|
2219
|
|
2220 /* init_system_name sets up the string for the Lisp function
|
|
2221 system-name to return. */
|
|
2222
|
|
2223 extern Lisp_Object Vsystem_name;
|
|
2224
|
|
2225 void
|
|
2226 init_system_name (void)
|
|
2227 {
|
442
|
2228 #if defined (WIN32_NATIVE)
|
771
|
2229 Extbyte hostname[MAX_XETCHAR_SIZE * (MAX_COMPUTERNAME_LENGTH + 1)];
|
|
2230 DWORD size = sizeof (hostname) / XETCHAR_SIZE;
|
|
2231 qxeGetComputerName (hostname, &size);
|
|
2232 Vsystem_name = build_tstr_string (hostname);
|
428
|
2233 #elif !defined (HAVE_GETHOSTNAME)
|
|
2234 struct utsname uts;
|
|
2235 uname (&uts);
|
|
2236 Vsystem_name = build_string (uts.nodename);
|
|
2237 #else /* HAVE_GETHOSTNAME */
|
647
|
2238 int hostname_size = 256;
|
851
|
2239 char *hostname = (char *) ALLOCA (hostname_size);
|
428
|
2240
|
|
2241 /* Try to get the host name; if the buffer is too short, try
|
|
2242 again. Apparently, the only indication gethostname gives of
|
|
2243 whether the buffer was large enough is the presence or absence
|
|
2244 of a '\0' in the string. Eech. */
|
|
2245 for (;;)
|
|
2246 {
|
|
2247 gethostname (hostname, hostname_size - 1);
|
|
2248 hostname[hostname_size - 1] = '\0';
|
|
2249
|
|
2250 /* Was the buffer large enough for the '\0'? */
|
647
|
2251 if ((int) strlen (hostname) < (hostname_size - 1))
|
428
|
2252 break;
|
|
2253
|
|
2254 hostname_size <<= 1;
|
851
|
2255 hostname = (char *) ALLOCA (hostname_size);
|
428
|
2256 }
|
558
|
2257 # if defined( HAVE_SOCKETS)
|
428
|
2258 /* Turn the hostname into the official, fully-qualified hostname.
|
|
2259 Don't do this if we're going to dump; this can confuse system
|
|
2260 libraries on some machines and make the dumped emacs core dump. */
|
|
2261 # ifndef CANNOT_DUMP
|
|
2262 if (initialized)
|
|
2263 # endif /* not CANNOT_DUMP */
|
|
2264 if (!strchr (hostname, '.'))
|
|
2265 {
|
440
|
2266 # if !(defined(HAVE_GETADDRINFO) && defined(HAVE_GETNAMEINFO))
|
428
|
2267 struct hostent *hp = NULL;
|
|
2268 int count;
|
440
|
2269 # ifdef TRY_AGAIN
|
428
|
2270 for (count = 0; count < 10; count++)
|
|
2271 {
|
|
2272 h_errno = 0;
|
440
|
2273 # endif
|
428
|
2274 /* Some systems can't handle SIGALARM/SIGIO in gethostbyname(). */
|
|
2275 stop_interrupts ();
|
|
2276 hp = gethostbyname (hostname);
|
|
2277 start_interrupts ();
|
440
|
2278 # ifdef TRY_AGAIN
|
428
|
2279 if (! (hp == 0 && h_errno == TRY_AGAIN))
|
|
2280 break;
|
|
2281 Fsleep_for (make_int (1));
|
|
2282 }
|
440
|
2283 # endif
|
428
|
2284 if (hp)
|
|
2285 {
|
442
|
2286 const char *fqdn = (const char *) hp->h_name;
|
428
|
2287
|
|
2288 if (!strchr (fqdn, '.'))
|
|
2289 {
|
|
2290 /* We still don't have a fully qualified domain name.
|
|
2291 Try to find one in the list of alternate names */
|
|
2292 char **alias = hp->h_aliases;
|
|
2293 while (*alias && !strchr (*alias, '.'))
|
|
2294 alias++;
|
|
2295 if (*alias)
|
|
2296 fqdn = *alias;
|
|
2297 }
|
851
|
2298 hostname = (char *) ALLOCA (strlen (fqdn) + 1);
|
428
|
2299 strcpy (hostname, fqdn);
|
|
2300 }
|
440
|
2301 # else /* !(HAVE_GETADDRINFO && HAVE_GETNAMEINFO) */
|
|
2302 struct addrinfo hints, *res;
|
|
2303
|
|
2304 xzero (hints);
|
|
2305 hints.ai_flags = AI_CANONNAME;
|
724
|
2306 #ifdef IPV6_CANONICALIZE
|
440
|
2307 hints.ai_family = AF_UNSPEC;
|
724
|
2308 #else
|
|
2309 hints.ai_family = PF_INET;
|
|
2310 #endif
|
440
|
2311 hints.ai_socktype = SOCK_STREAM;
|
|
2312 hints.ai_protocol = 0;
|
|
2313 if (!getaddrinfo (hostname, NULL, &hints, &res))
|
|
2314 {
|
851
|
2315 hostname = (char *) ALLOCA (strlen (res->ai_canonname) + 1);
|
440
|
2316 strcpy (hostname, res->ai_canonname);
|
|
2317
|
|
2318 freeaddrinfo (res);
|
|
2319 }
|
|
2320 # endif /* !(HAVE_GETADDRINFO && HAVE_GETNAMEINFO) */
|
428
|
2321 }
|
|
2322 # endif /* HAVE_SOCKETS */
|
|
2323 Vsystem_name = build_string (hostname);
|
|
2324 #endif /* HAVE_GETHOSTNAME */
|
|
2325 {
|
665
|
2326 Intbyte *p;
|
428
|
2327 Bytecount i;
|
|
2328
|
|
2329 for (i = 0, p = XSTRING_DATA (Vsystem_name);
|
|
2330 i < XSTRING_LENGTH (Vsystem_name);
|
|
2331 i++, p++)
|
|
2332 {
|
|
2333 if (*p == ' ' || *p == '\t')
|
|
2334 *p = '-';
|
|
2335 }
|
|
2336 }
|
|
2337 }
|
|
2338
|
|
2339
|
|
2340 /************************************************************************/
|
|
2341 /* Emulation of select() */
|
|
2342 /************************************************************************/
|
|
2343
|
|
2344 #ifndef HAVE_SELECT
|
|
2345
|
|
2346 ERROR: XEmacs requires a working select().
|
|
2347
|
|
2348 #endif /* not HAVE_SELECT */
|
|
2349
|
|
2350
|
|
2351 /************************************************************************/
|
|
2352 /* Emulation of signal stuff */
|
|
2353 /************************************************************************/
|
|
2354
|
|
2355 /* BSD 4.1 crap deleted. 4.2 was released in 1983, for God's sake! I
|
|
2356 can't imagine that anyone is actually running that OS any more.
|
|
2357 You can't use X under it (I think) because there's no select().
|
|
2358 Anyway, the signal stuff has all been changed. If someone wants to
|
|
2359 get this stuff working again, look in the FSF Emacs sources. */
|
|
2360
|
|
2361 /* POSIX signals support - DJB */
|
|
2362
|
|
2363 #ifdef HAVE_SIGPROCMASK
|
|
2364
|
|
2365 /* #### Is there any reason this is static global rather than local? */
|
|
2366 static struct sigaction new_action, old_action;
|
|
2367
|
|
2368 signal_handler_t
|
613
|
2369 qxe_reliable_signal (int signal_number, signal_handler_t action)
|
428
|
2370 {
|
|
2371 #if 0
|
|
2372
|
|
2373 /* XEmacs works better if system calls are *not* restarted.
|
|
2374 This allows C-g to interrupt reads and writes, on most systems.
|
|
2375
|
|
2376 #### Another possibility is to just longjmp() out of the signal
|
|
2377 handler. According to W.R. Stevens, this should be OK on all
|
|
2378 systems. However, I don't want to deal with the potential
|
|
2379 evil ramifications of this at this point. */
|
|
2380
|
|
2381 #ifdef DGUX
|
|
2382 /* This gets us restartable system calls for efficiency.
|
|
2383 The "else" code will work as well. */
|
|
2384 return (berk_signal (signal_number, action));
|
|
2385 #else
|
|
2386 sigemptyset (&new_action.sa_mask);
|
|
2387 new_action.sa_handler = action;
|
|
2388 #if defined (SA_RESTART)
|
|
2389 /* Emacs mostly works better with restartable system services. If this
|
|
2390 * flag exists, we probably want to turn it on here.
|
|
2391 */
|
|
2392 new_action.sa_flags = SA_RESTART;
|
|
2393 #else
|
|
2394 new_action.sa_flags = 0;
|
|
2395 #endif
|
|
2396 sigaction (signal_number, &new_action, &old_action);
|
|
2397 return (old_action.sa_handler);
|
|
2398 #endif /* DGUX */
|
|
2399
|
|
2400 #else /* not 0 */
|
|
2401
|
|
2402 sigemptyset (&new_action.sa_mask);
|
|
2403 new_action.sa_handler = action;
|
|
2404 #if defined (SA_INTERRUPT) /* don't restart system calls, under SunOS */
|
|
2405 new_action.sa_flags = SA_INTERRUPT;
|
|
2406 #else
|
|
2407 new_action.sa_flags = 0;
|
|
2408 #endif
|
|
2409 sigaction (signal_number, &new_action, &old_action);
|
|
2410 return (signal_handler_t) (old_action.sa_handler);
|
|
2411
|
|
2412 #endif /* not 0 */
|
|
2413 }
|
|
2414
|
|
2415 #elif defined (HAVE_SIGBLOCK)
|
|
2416
|
|
2417 /* We use sigvec() rather than signal() if we have it, because
|
|
2418 it lets us specify interruptible system calls. */
|
|
2419 signal_handler_t
|
613
|
2420 qxe_reliable_signal (int signal_number, signal_handler_t action)
|
428
|
2421 {
|
|
2422 struct sigvec vec, ovec;
|
|
2423
|
|
2424 vec.sv_handler = action;
|
|
2425 vec.sv_mask = 0;
|
|
2426 #ifdef SV_INTERRUPT /* don't restart system calls */
|
|
2427 vec.sv_flags = SV_INTERRUPT;
|
|
2428 #else
|
|
2429 vec.sv_flags = 0;
|
|
2430 #endif
|
|
2431
|
|
2432 sigvec (signal_number, &vec, &ovec);
|
|
2433
|
|
2434 return (ovec.sv_handler);
|
|
2435 }
|
|
2436
|
|
2437 #endif /* HAVE_SIGBLOCK (HAVE_SIGPROCMASK) */
|
|
2438
|
|
2439
|
|
2440 /************************************************************************/
|
|
2441 /* Emulation of strerror() and errno support */
|
|
2442 /************************************************************************/
|
|
2443
|
|
2444 #ifndef HAVE_STRERROR
|
|
2445
|
|
2446 #if !defined(NeXT) && !defined(__alpha) && !defined(MACH) && !defined(LINUX) && !defined(IRIX) && !defined(__NetBSD__)
|
|
2447 /* Linux added here by Raymond L. Toy <toy@alydar.crd.ge.com> for XEmacs. */
|
|
2448 /* Irix added here by gparker@sni-usa.com for XEmacs. */
|
|
2449 /* NetBSD added here by James R Grinter <jrg@doc.ic.ac.uk> for XEmacs */
|
442
|
2450 extern const char *sys_errlist[];
|
428
|
2451 extern int sys_nerr;
|
|
2452 #endif
|
|
2453
|
|
2454 #ifdef __NetBSD__
|
|
2455 extern char *sys_errlist[];
|
|
2456 extern int sys_nerr;
|
|
2457 #endif
|
|
2458
|
|
2459
|
442
|
2460 const char *
|
428
|
2461 strerror (int errnum)
|
|
2462 {
|
|
2463 if (errnum >= 0 && errnum < sys_nerr)
|
|
2464 return sys_errlist[errnum];
|
442
|
2465 return ((const char *) GETTEXT ("Unknown error"));
|
428
|
2466 }
|
|
2467
|
|
2468 #endif /* ! HAVE_STRERROR */
|
|
2469
|
|
2470
|
|
2471 /************************************************************************/
|
|
2472 /* Encapsulations of system calls */
|
|
2473 /************************************************************************/
|
|
2474
|
771
|
2475 #ifdef WIN32_NATIVE
|
|
2476 #define PATHNAME_CONVERT_OUT(path, pathout) C_STRING_TO_TSTR (path, pathout)
|
|
2477 #else
|
|
2478 #define PATHNAME_CONVERT_OUT(path, pathout) \
|
|
2479 C_STRING_TO_EXTERNAL (path, pathout, Qfile_name)
|
|
2480 #endif
|
428
|
2481
|
|
2482 /***************** low-level calls ****************/
|
|
2483
|
|
2484 /*
|
|
2485 * On USG systems the system calls are INTERRUPTIBLE by signals
|
|
2486 * that the user program has elected to catch. Thus the system call
|
|
2487 * must be retried in these cases. To handle this without massive
|
|
2488 * changes in the source code, we remap the standard system call names
|
|
2489 * to names for our own functions in sysdep.c that do the system call
|
|
2490 * with retries. Actually, for portability reasons, it is good
|
|
2491 * programming practice, as this example shows, to limit all actual
|
|
2492 * system calls to a single occurrence in the source. Sure, this
|
|
2493 * adds an extra level of function call overhead but it is almost
|
|
2494 * always negligible. Fred Fish, Unisoft Systems Inc.
|
|
2495 */
|
|
2496
|
|
2497 /* Ben sez: read Dick Gabriel's essay about the Worse Is Better
|
|
2498 approach to programming and its connection to the silly
|
|
2499 interruptible-system-call business. To find it, look on
|
|
2500 Jamie's home page (http://www.jwz.org/worse-is-better.html). */
|
|
2501
|
771
|
2502 #ifdef WIN32_NATIVE
|
|
2503
|
|
2504 static int
|
|
2505 underlying_open_1 (const Extbyte *path, int oflag, int mode)
|
|
2506 {
|
|
2507 if (XEUNICODE_P)
|
|
2508 return _wopen ((const wchar_t *) path, oflag, mode);
|
|
2509 else
|
|
2510 return _open (path, oflag, mode);
|
|
2511 }
|
|
2512
|
|
2513 #endif /* WIN32_NATIVE */
|
|
2514
|
|
2515 /* Just one call with normal open() semantics. */
|
|
2516
|
|
2517 static int
|
|
2518 underlying_open (const Extbyte *path, int oflag, int mode)
|
|
2519 {
|
|
2520 #ifdef WIN32_NATIVE
|
|
2521 {
|
|
2522 /* Try to open file without _O_CREAT, to be able to write to hidden
|
|
2523 and system files. Force all file handles to be
|
|
2524 non-inheritable. */
|
|
2525 int res = underlying_open_1 (path, (oflag & ~_O_CREAT) | _O_NOINHERIT,
|
|
2526 mode);
|
|
2527 if (res >= 0)
|
|
2528 return res;
|
|
2529 return underlying_open_1 (path, oflag | _O_NOINHERIT, mode);
|
|
2530 }
|
|
2531 #else
|
|
2532 return open (path, oflag, mode);
|
|
2533 #endif /* WIN32_NATIVE */
|
|
2534 }
|
|
2535
|
|
2536 /* Like qxe_open() below but operates on externally-encoded filenames. */
|
|
2537
|
428
|
2538 int
|
771
|
2539 retry_open (const Extbyte *path, int oflag, ...)
|
428
|
2540 {
|
|
2541 int mode;
|
|
2542 va_list ap;
|
|
2543
|
|
2544 va_start (ap, oflag);
|
|
2545 mode = va_arg (ap, int);
|
|
2546 va_end (ap);
|
|
2547
|
440
|
2548 #ifdef INTERRUPTIBLE_OPEN
|
428
|
2549 {
|
|
2550 int rtnval;
|
771
|
2551 while ((rtnval = underlying_open (path, oflag, mode)) == -1
|
428
|
2552 && (errno == EINTR))
|
|
2553 DO_NOTHING;
|
|
2554 return rtnval;
|
|
2555 }
|
|
2556 #else
|
771
|
2557 return underlying_open (path, oflag, mode);
|
428
|
2558 #endif
|
|
2559 }
|
771
|
2560
|
|
2561 /* The basic external entry point to open(). Handles conversion to
|
|
2562 external encoding, interruptions, etc. */
|
|
2563
|
|
2564 int
|
|
2565 qxe_open (const Intbyte *path, int oflag, ...)
|
|
2566 {
|
|
2567 Extbyte *pathout;
|
|
2568 int mode;
|
|
2569 va_list ap;
|
|
2570
|
|
2571 va_start (ap, oflag);
|
|
2572 mode = va_arg (ap, int);
|
|
2573 va_end (ap);
|
|
2574
|
|
2575 PATHNAME_CONVERT_OUT (path, pathout);
|
|
2576 return retry_open (pathout, oflag, mode);
|
|
2577 }
|
|
2578
|
|
2579 /* Like qxe_open, only when open() is interrupted by EINTR, check for
|
428
|
2580 QUIT. This allows the callers of this function to be interrupted
|
|
2581 with C-g when, say, reading from named pipes. However, this should
|
|
2582 be used with caution, as it can GC.
|
|
2583
|
|
2584 This function will not function as expected on systems where open()
|
|
2585 is not interrupted by C-g. However, the worst that can happen is
|
|
2586 the fallback to simple open(). */
|
|
2587 int
|
771
|
2588 qxe_interruptible_open (const Intbyte *path, int oflag, int mode)
|
428
|
2589 {
|
|
2590 /* This function can GC */
|
771
|
2591 Extbyte *pathout;
|
|
2592
|
|
2593 PATHNAME_CONVERT_OUT (path, pathout);
|
428
|
2594
|
442
|
2595 #ifdef WIN32_NATIVE
|
440
|
2596 /* Make all handles non-inheritable */
|
|
2597 oflag |= _O_NOINHERIT;
|
|
2598 #endif
|
|
2599
|
428
|
2600 for (;;)
|
|
2601 {
|
771
|
2602 int rtnval = underlying_open (pathout, oflag, mode);
|
428
|
2603 if (!(rtnval == -1 && errno == EINTR))
|
|
2604 return rtnval;
|
|
2605 /* open() was interrupted. Was QUIT responsible? */
|
|
2606 QUIT;
|
|
2607 }
|
|
2608 }
|
|
2609
|
|
2610 int
|
771
|
2611 retry_close (int filedes)
|
428
|
2612 {
|
|
2613 #ifdef INTERRUPTIBLE_CLOSE
|
|
2614 int did_retry = 0;
|
|
2615 REGISTER int rtnval;
|
|
2616
|
|
2617 while ((rtnval = close (filedes)) == -1
|
|
2618 && (errno == EINTR))
|
|
2619 did_retry = 1;
|
|
2620
|
|
2621 /* If close is interrupted SunOS 4.1 may or may not have closed the
|
|
2622 file descriptor. If it did the second close will fail with
|
|
2623 errno = EBADF. That means we have succeeded. */
|
|
2624 if (rtnval == -1 && did_retry && errno == EBADF)
|
|
2625 return 0;
|
|
2626
|
|
2627 return rtnval;
|
|
2628 #else
|
|
2629 return close (filedes);
|
|
2630 #endif
|
|
2631 }
|
771
|
2632
|
|
2633 static ssize_t
|
|
2634 retry_read_1 (int fildes, void *buf, size_t nbyte, int allow_quit)
|
428
|
2635 {
|
|
2636 ssize_t rtnval;
|
|
2637
|
|
2638 /* No harm in looping regardless of the INTERRUPTIBLE_IO setting. */
|
|
2639 while ((rtnval = read (fildes, buf, nbyte)) == -1
|
|
2640 && (errno == EINTR))
|
|
2641 {
|
|
2642 if (allow_quit)
|
|
2643 REALLY_QUIT;
|
|
2644 }
|
|
2645 return rtnval;
|
|
2646 }
|
|
2647
|
|
2648 ssize_t
|
771
|
2649 retry_read (int fildes, void *buf, size_t nbyte)
|
428
|
2650 {
|
771
|
2651 return retry_read_1 (fildes, buf, nbyte, 0);
|
428
|
2652 }
|
771
|
2653
|
|
2654 static ssize_t
|
|
2655 retry_write_1 (int fildes, const void *buf, size_t nbyte, int allow_quit)
|
428
|
2656 {
|
|
2657 ssize_t bytes_written = 0;
|
442
|
2658 const char *b = (const char *) buf;
|
428
|
2659
|
|
2660 /* No harm in looping regardless of the INTERRUPTIBLE_IO setting. */
|
|
2661 while (nbyte > 0)
|
|
2662 {
|
|
2663 ssize_t rtnval = write (fildes, b, nbyte);
|
|
2664
|
|
2665 if (allow_quit)
|
|
2666 REALLY_QUIT;
|
|
2667
|
|
2668 if (rtnval == -1)
|
|
2669 {
|
|
2670 if (errno == EINTR)
|
|
2671 continue;
|
|
2672 else
|
|
2673 return bytes_written ? bytes_written : -1;
|
|
2674 }
|
|
2675 b += rtnval;
|
|
2676 nbyte -= rtnval;
|
|
2677 bytes_written += rtnval;
|
|
2678 }
|
|
2679 return bytes_written;
|
|
2680 }
|
|
2681
|
|
2682 ssize_t
|
771
|
2683 retry_write (int fildes, const void *buf, size_t nbyte)
|
428
|
2684 {
|
771
|
2685 return retry_write_1 (fildes, buf, nbyte, 0);
|
428
|
2686 }
|
771
|
2687
|
|
2688 /* Versions of read() and write() that allow quitting out of the actual
|
|
2689 I/O. We don't use immediate_quit (i.e. direct longjmp() out of the
|
|
2690 signal handler) because that's way too losing.
|
|
2691
|
|
2692 (#### Actually, longjmp()ing out of the signal handler may not be
|
|
2693 as losing as I thought. See qxe_reliable_signal() in sysdep.c.) */
|
|
2694
|
|
2695 Bytecount
|
|
2696 read_allowing_quit (int fildes, void *buf, Bytecount size)
|
|
2697 {
|
|
2698 QUIT;
|
|
2699 return retry_read_1 (fildes, buf, size, 1);
|
|
2700 }
|
|
2701
|
|
2702 Bytecount
|
|
2703 write_allowing_quit (int fildes, const void *buf, Bytecount size)
|
|
2704 {
|
|
2705 QUIT;
|
|
2706 return retry_write_1 (fildes, buf, size, 1);
|
|
2707 }
|
428
|
2708
|
|
2709
|
|
2710 /**************** stdio calls ****************/
|
|
2711
|
|
2712 /* There is at least some evidence that the stdio calls are interruptible
|
|
2713 just like the normal system calls, at least on some systems. In any
|
|
2714 case, it doesn't hurt to encapsulate them. */
|
|
2715
|
|
2716 /* #### Should also encapsulate fflush().
|
|
2717 #### Should conceivably encapsulate getchar() etc. What a pain! */
|
|
2718
|
|
2719 FILE *
|
771
|
2720 retry_fopen (const Extbyte *path, const Char_ASCII *mode)
|
428
|
2721 {
|
771
|
2722 #ifdef WIN32_NATIVE
|
|
2723 int fd;
|
|
2724 int oflag;
|
|
2725 const Char_ASCII *mode_save = mode;
|
|
2726
|
|
2727 /* Force all file handles to be non-inheritable. This is necessary to
|
|
2728 ensure child processes don't unwittingly inherit handles that might
|
|
2729 prevent future file access. */
|
|
2730
|
|
2731 if (mode[0] == 'r')
|
|
2732 oflag = O_RDONLY;
|
|
2733 else if (mode[0] == 'w' || mode[0] == 'a')
|
|
2734 oflag = O_WRONLY | O_CREAT | O_TRUNC;
|
|
2735 else
|
|
2736 return NULL;
|
|
2737
|
|
2738 /* Only do simplistic option parsing. */
|
|
2739 while (*++mode)
|
|
2740 if (mode[0] == '+')
|
|
2741 {
|
|
2742 oflag &= ~(O_RDONLY | O_WRONLY);
|
|
2743 oflag |= O_RDWR;
|
|
2744 }
|
|
2745 else if (mode[0] == 'b')
|
|
2746 {
|
|
2747 oflag &= ~O_TEXT;
|
|
2748 oflag |= O_BINARY;
|
|
2749 }
|
|
2750 else if (mode[0] == 't')
|
|
2751 {
|
|
2752 oflag &= ~O_BINARY;
|
|
2753 oflag |= O_TEXT;
|
|
2754 }
|
|
2755 else break;
|
|
2756
|
|
2757 fd = underlying_open (path, oflag, 0644);
|
|
2758 if (fd < 0)
|
|
2759 return NULL;
|
|
2760
|
|
2761 return _fdopen (fd, mode_save);
|
428
|
2762 #elif defined (INTERRUPTIBLE_OPEN)
|
|
2763 {
|
|
2764 FILE *rtnval;
|
771
|
2765 while (!(rtnval = fopen (path, mode)) && (errno == EINTR))
|
428
|
2766 DO_NOTHING;
|
|
2767 return rtnval;
|
|
2768 }
|
|
2769 #else
|
771
|
2770 return fopen (path, mode);
|
|
2771 #endif /* defined (INTERRUPTIBLE_OPEN) */
|
428
|
2772 }
|
771
|
2773
|
|
2774 FILE *
|
|
2775 qxe_fopen (const Intbyte *path, const Char_ASCII *mode)
|
|
2776 {
|
|
2777 Extbyte *pathout;
|
|
2778 PATHNAME_CONVERT_OUT (path, pathout);
|
|
2779 return retry_fopen (pathout, mode);
|
|
2780 }
|
|
2781
|
428
|
2782 int
|
771
|
2783 retry_fclose (FILE *stream)
|
428
|
2784 {
|
|
2785 #ifdef INTERRUPTIBLE_CLOSE
|
|
2786 int rtnval;
|
|
2787
|
|
2788 while ((rtnval = fclose (stream)) == EOF
|
|
2789 && (errno == EINTR))
|
|
2790 ;
|
|
2791 return rtnval;
|
|
2792 #else
|
|
2793 return fclose (stream);
|
|
2794 #endif
|
|
2795 }
|
771
|
2796
|
428
|
2797 size_t
|
771
|
2798 retry_fread (void *ptr, size_t size, size_t nitem, FILE *stream)
|
428
|
2799 {
|
|
2800 #ifdef INTERRUPTIBLE_IO
|
|
2801 size_t rtnval;
|
|
2802 size_t items_read = 0;
|
|
2803 char *b = (char *) ptr;
|
|
2804
|
|
2805 while (nitem > 0)
|
|
2806 {
|
|
2807 rtnval = fread (b, size, nitem, stream);
|
|
2808 if (rtnval == 0)
|
|
2809 {
|
|
2810 if (ferror (stream) && errno == EINTR)
|
|
2811 continue;
|
|
2812 else
|
|
2813 return items_read;
|
|
2814 }
|
|
2815 b += size*rtnval;
|
|
2816 nitem -= rtnval;
|
|
2817 items_read += rtnval;
|
|
2818 }
|
|
2819 return (items_read);
|
|
2820 #else
|
|
2821 return fread (ptr, size, nitem, stream);
|
|
2822 #endif
|
|
2823 }
|
771
|
2824
|
428
|
2825 size_t
|
771
|
2826 retry_fwrite (const void *ptr, size_t size, size_t nitem, FILE *stream)
|
428
|
2827 {
|
|
2828 #ifdef INTERRUPTIBLE_IO
|
|
2829 size_t rtnval;
|
|
2830 size_t items_written = 0;
|
442
|
2831 const char *b = (const char *) ptr;
|
428
|
2832
|
|
2833 while (nitem > 0)
|
|
2834 {
|
|
2835 rtnval = fwrite (b, size, nitem, stream);
|
|
2836 if (rtnval == 0)
|
|
2837 {
|
|
2838 if (ferror (stream) && errno == EINTR)
|
|
2839 continue;
|
|
2840 else
|
|
2841 return items_written;
|
|
2842 }
|
|
2843 b += size*rtnval;
|
|
2844 nitem -= rtnval;
|
|
2845 items_written += rtnval;
|
|
2846 }
|
|
2847 return (items_written);
|
|
2848 #else
|
|
2849 return fwrite (ptr, size, nitem, stream);
|
|
2850 #endif
|
|
2851 }
|
|
2852
|
|
2853 /********************* directory calls *******************/
|
|
2854
|
|
2855 int
|
771
|
2856 qxe_chdir (const Intbyte *path)
|
428
|
2857 {
|
771
|
2858 Extbyte *pathout;
|
|
2859 PATHNAME_CONVERT_OUT (path, pathout);
|
442
|
2860 #ifdef WIN32_NATIVE
|
771
|
2861 if (XEUNICODE_P)
|
|
2862 return _wchdir ((const wchar_t *) pathout);
|
|
2863 else
|
|
2864 return _chdir (pathout);
|
428
|
2865 #else
|
771
|
2866 return chdir (pathout);
|
428
|
2867 #endif
|
|
2868 }
|
771
|
2869
|
|
2870 int
|
|
2871 qxe_mkdir (const Intbyte *path, mode_t mode)
|
|
2872 {
|
|
2873 Extbyte *pathout;
|
|
2874 PATHNAME_CONVERT_OUT (path, pathout);
|
|
2875 #ifdef WIN32_NATIVE
|
|
2876 if (XEUNICODE_P)
|
|
2877 return _wmkdir ((const wchar_t *) pathout);
|
|
2878 else
|
|
2879 return _mkdir (pathout);
|
|
2880 #else
|
|
2881 return mkdir (pathout, mode);
|
|
2882 #endif
|
|
2883 }
|
|
2884
|
428
|
2885 DIR *
|
771
|
2886 qxe_opendir (const Intbyte *filename)
|
428
|
2887 {
|
771
|
2888 #ifdef WIN32_NATIVE
|
|
2889 return mswindows_opendir (filename);
|
|
2890 #else
|
428
|
2891 DIR *rtnval;
|
771
|
2892 Extbyte *pathout;
|
|
2893 PATHNAME_CONVERT_OUT (filename, pathout);
|
|
2894
|
|
2895 while (!(rtnval = opendir (pathout))
|
428
|
2896 && (errno == EINTR))
|
|
2897 ;
|
|
2898 return rtnval;
|
771
|
2899 #endif /* WIN32_NATIVE */
|
428
|
2900 }
|
771
|
2901
|
428
|
2902 DIRENTRY *
|
771
|
2903 qxe_readdir (DIR *dirp)
|
428
|
2904 {
|
771
|
2905 #ifdef WIN32_NATIVE
|
|
2906 return mswindows_readdir (dirp);
|
|
2907 #else /* not WIN32_NATIVE */
|
428
|
2908 DIRENTRY *rtnval;
|
|
2909
|
|
2910 /* Apparently setting errno is necessary on some systems?
|
|
2911 Maybe readdir() doesn't always set errno ?! */
|
|
2912 while (!(errno = 0, rtnval = readdir (dirp))
|
|
2913 && (errno == EINTR))
|
|
2914 ;
|
|
2915 #ifndef MULE
|
|
2916 return rtnval;
|
|
2917 #else /* MULE */
|
|
2918 if (rtnval == NULL) /* End of directory */
|
|
2919 return NULL;
|
|
2920 {
|
442
|
2921 const Extbyte * const external_name = (const Extbyte *) rtnval->d_name;
|
665
|
2922 Bytecount external_len = strlen (rtnval->d_name);
|
|
2923 const Intbyte *internal_name;
|
462
|
2924 Bytecount internal_len;
|
513
|
2925
|
462
|
2926 TO_INTERNAL_FORMAT (DATA, (external_name, external_len),
|
|
2927 ALLOCA, (internal_name, internal_len),
|
|
2928 Qfile_name);
|
|
2929
|
|
2930 /* check for common case of ASCII filename */
|
|
2931 if (internal_len == external_len &&
|
|
2932 !memcmp (external_name, internal_name, internal_len))
|
428
|
2933 return rtnval;
|
|
2934
|
|
2935 { /* Non-ASCII filename */
|
665
|
2936 static Intbyte_dynarr *internal_DIRENTRY;
|
428
|
2937 if (!internal_DIRENTRY)
|
665
|
2938 internal_DIRENTRY = Dynarr_new (Intbyte);
|
428
|
2939 else
|
|
2940 Dynarr_reset (internal_DIRENTRY);
|
|
2941
|
665
|
2942 Dynarr_add_many (internal_DIRENTRY, (Intbyte *) rtnval,
|
428
|
2943 offsetof (DIRENTRY, d_name));
|
|
2944
|
|
2945
|
|
2946 Dynarr_add_many (internal_DIRENTRY, internal_name, internal_len);
|
444
|
2947 Dynarr_add (internal_DIRENTRY, '\0'); /* NUL-terminate */
|
428
|
2948 return (DIRENTRY *) Dynarr_atp (internal_DIRENTRY, 0);
|
|
2949 }
|
|
2950 }
|
|
2951 #endif /* MULE */
|
771
|
2952 #endif /* WIN32_NATIVE */
|
428
|
2953 }
|
771
|
2954
|
428
|
2955 int
|
771
|
2956 qxe_closedir (DIR *dirp)
|
428
|
2957 {
|
771
|
2958 #ifdef WIN32_NATIVE
|
|
2959 return mswindows_closedir (dirp);
|
|
2960 #else /* not WIN32_NATIVE */
|
428
|
2961 int rtnval;
|
|
2962
|
|
2963 while ((rtnval = closedir (dirp)) == -1
|
|
2964 && (errno == EINTR))
|
|
2965 ;
|
|
2966 return rtnval;
|
771
|
2967 #endif /* WIN32_NATIVE */
|
428
|
2968 }
|
771
|
2969
|
428
|
2970 int
|
771
|
2971 qxe_rmdir (const Intbyte *path)
|
|
2972 {
|
|
2973 Extbyte *pathout;
|
|
2974 PATHNAME_CONVERT_OUT (path, pathout);
|
|
2975 #ifdef WIN32_NATIVE
|
|
2976 if (XEUNICODE_P)
|
|
2977 return _wrmdir ((const wchar_t *) pathout);
|
|
2978 else
|
|
2979 return _rmdir (pathout);
|
|
2980 #else
|
|
2981 return rmdir (pathout);
|
|
2982 #endif
|
|
2983 }
|
|
2984
|
|
2985 Intbyte *
|
|
2986 qxe_allocating_getcwd (void)
|
428
|
2987 {
|
771
|
2988 #ifdef HAVE_GETCWD
|
|
2989 Bytecount cwdsize = 1024;
|
|
2990 Extbyte *cwd = xnew_array (Extbyte, cwdsize);
|
|
2991
|
|
2992 /* Many getcwd()'s can take a NULL argument and malloc() the right amount
|
|
2993 of data, but this is non-standard. */
|
|
2994 while (1)
|
|
2995 {
|
|
2996 #ifdef WIN32_NATIVE
|
|
2997 Extbyte *ret;
|
|
2998
|
|
2999 if (XEUNICODE_P)
|
|
3000 ret = (Extbyte *) _wgetcwd ((wchar_t *) cwd,
|
|
3001 cwdsize / sizeof (wchar_t));
|
|
3002 else
|
|
3003 ret = _getcwd (cwd, cwdsize);
|
|
3004
|
|
3005 if (ret)
|
|
3006 {
|
|
3007 Intbyte *retin;
|
|
3008 TSTR_TO_C_STRING_MALLOC (ret, retin);
|
|
3009 xfree (cwd);
|
|
3010 return retin;
|
|
3011 }
|
|
3012 #else
|
|
3013 Extbyte *ret = getcwd (cwd, cwdsize);
|
|
3014 if (ret)
|
|
3015 {
|
|
3016 Intbyte *retin;
|
|
3017 EXTERNAL_TO_C_STRING_MALLOC (ret, retin, Qfile_name);
|
|
3018 xfree (cwd);
|
|
3019 return retin;
|
|
3020 }
|
|
3021 #endif /* WIN32_NATIVE */
|
|
3022
|
|
3023 if (errno == ERANGE)
|
|
3024 {
|
|
3025 cwdsize *= 2;
|
|
3026 XREALLOC_ARRAY (cwd, Extbyte, cwdsize);
|
|
3027 }
|
|
3028 else
|
|
3029 {
|
|
3030 xfree (cwd);
|
|
3031 return NULL;
|
|
3032 }
|
|
3033 }
|
|
3034 #else
|
|
3035 Extbyte chingame_limitos_arbitrarios[PATH_MAX];
|
|
3036 Intbyte *ret2;
|
|
3037
|
|
3038 if (!getwd (chingame_limitos_arbitrarios))
|
|
3039 return 0;
|
|
3040 EXTERNAL_TO_C_STRING_MALLOC (chingame_limitos_arbitrarios, ret2, Qfile_name);
|
|
3041 return ret2;
|
|
3042 #endif /* HAVE_GETCWD */
|
428
|
3043 }
|
|
3044
|
|
3045 /***************** file-information calls ******************/
|
|
3046
|
|
3047 int
|
771
|
3048 qxe_access (const Intbyte *path, int mode)
|
428
|
3049 {
|
771
|
3050 #ifdef WIN32_NATIVE
|
|
3051 return mswindows_access (path, mode);
|
|
3052 #else /* not WIN32_NATIVE */
|
|
3053 Extbyte *pathout;
|
|
3054 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3055 return access (pathout, mode);
|
|
3056 #endif /* WIN32_NATIVE */
|
428
|
3057 }
|
771
|
3058
|
|
3059 #if defined (HAVE_EACCESS)
|
428
|
3060 int
|
771
|
3061 qxe_eaccess (const Intbyte *path, int mode)
|
428
|
3062 {
|
771
|
3063 Extbyte *pathout;
|
|
3064 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3065 return eaccess (pathout, mode);
|
428
|
3066 }
|
771
|
3067 #endif /* defined (HAVE_EACCESS) */
|
|
3068
|
428
|
3069 int
|
771
|
3070 qxe_lstat (const Intbyte *path, struct stat *buf)
|
428
|
3071 {
|
771
|
3072 /* if system does not have symbolic links, it does not have lstat.
|
|
3073 In that case, use ordinary stat instead. */
|
|
3074 #ifndef S_IFLNK
|
|
3075 return qxe_stat (path, buf);
|
|
3076 #else
|
|
3077 Extbyte *pathout;
|
|
3078 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3079 return lstat (pathout, buf);
|
|
3080 #endif
|
428
|
3081 }
|
771
|
3082
|
|
3083 #if defined (HAVE_READLINK)
|
428
|
3084 int
|
771
|
3085 qxe_readlink (const Intbyte *path, Intbyte *buf, size_t bufsiz)
|
428
|
3086 {
|
771
|
3087 int retval;
|
|
3088 Extbyte *pathout;
|
|
3089
|
|
3090 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3091 retval = readlink (pathout, (char *) buf, bufsiz);
|
|
3092 if (retval < 0)
|
|
3093 return retval;
|
|
3094 {
|
|
3095 Intbyte *intbuf;
|
|
3096 Bytecount tamanho;
|
|
3097
|
|
3098 TO_INTERNAL_FORMAT (DATA, (buf, retval),
|
|
3099 ALLOCA, (intbuf, tamanho), Qfile_name);
|
|
3100 /* the man page says this function does not null-terminate */
|
|
3101 if (tamanho >= (Bytecount) bufsiz)
|
|
3102 tamanho = bufsiz;
|
|
3103 memcpy (buf, intbuf, tamanho);
|
|
3104 return tamanho;
|
|
3105 }
|
428
|
3106 }
|
771
|
3107 #endif /* defined (HAVE_READLINK) */
|
|
3108
|
432
|
3109 int
|
771
|
3110 qxe_fstat (int fd, struct stat *buf)
|
432
|
3111 {
|
442
|
3112 #ifdef WIN32_NATIVE
|
|
3113 return mswindows_fstat (fd, buf);
|
|
3114 #else
|
432
|
3115 return fstat (fd, buf);
|
771
|
3116 #endif /* WIN32_NATIVE */
|
432
|
3117 }
|
|
3118
|
428
|
3119 int
|
771
|
3120 qxe_stat (const Intbyte *path, struct stat *buf)
|
428
|
3121 {
|
442
|
3122 #ifdef WIN32_NATIVE
|
|
3123 return mswindows_stat (path, buf);
|
771
|
3124 #else /* not WIN32_NATIVE */
|
|
3125 Extbyte *pathout;
|
|
3126 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3127 return stat (pathout, buf);
|
|
3128 #endif /* WIN32_NATIVE */
|
428
|
3129 }
|
|
3130
|
771
|
3131
|
428
|
3132 /****************** file-manipulation calls *****************/
|
|
3133
|
|
3134 int
|
771
|
3135 qxe_chmod (const Intbyte *path, mode_t mode)
|
428
|
3136 {
|
771
|
3137 Extbyte *pathout;
|
|
3138 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3139 #ifdef WIN32_NATIVE
|
|
3140 if (XEUNICODE_P)
|
|
3141 return _wchmod ((const wchar_t *) pathout, mode);
|
|
3142 else
|
|
3143 return _chmod (pathout, mode);
|
|
3144 #else
|
|
3145 return chmod (pathout, mode);
|
|
3146 #endif
|
428
|
3147 }
|
771
|
3148
|
|
3149 #if defined (HAVE_LINK)
|
428
|
3150 int
|
771
|
3151 qxe_link (const Intbyte *existing, const Intbyte *new)
|
428
|
3152 {
|
771
|
3153 #ifdef WIN32_NATIVE
|
|
3154 return mswindows_link (existing, new);
|
|
3155 #else /* not WIN32_NATIVE */
|
|
3156 Extbyte *existingout, *newout;
|
|
3157 PATHNAME_CONVERT_OUT (existing, existingout);
|
|
3158 PATHNAME_CONVERT_OUT (new, newout);
|
|
3159 return link (existingout, newout);
|
|
3160 #endif /* WIN32_NATIVE */
|
428
|
3161 }
|
771
|
3162 #endif /* defined (HAVE_LINK) */
|
|
3163
|
428
|
3164 int
|
771
|
3165 qxe_rename (const Intbyte *old, const Intbyte *new)
|
428
|
3166 {
|
442
|
3167 #ifdef WIN32_NATIVE
|
771
|
3168 return mswindows_rename (old, new);
|
|
3169 #else /* not WIN32_NATIVE */
|
|
3170 Extbyte *oldout, *newout;
|
|
3171 PATHNAME_CONVERT_OUT (old, oldout);
|
|
3172 PATHNAME_CONVERT_OUT (new, newout);
|
|
3173 return rename (oldout, newout);
|
442
|
3174 #endif /* WIN32_NATIVE */
|
428
|
3175 }
|
771
|
3176
|
|
3177 #if defined (HAVE_SYMLINK)
|
428
|
3178 int
|
771
|
3179 qxe_symlink (const Intbyte *name1, const Intbyte *name2)
|
428
|
3180 {
|
771
|
3181 Extbyte *name1out, *name2out;
|
|
3182 PATHNAME_CONVERT_OUT (name1, name1out);
|
|
3183 PATHNAME_CONVERT_OUT (name2, name2out);
|
|
3184 return symlink (name1out, name2out);
|
428
|
3185 }
|
771
|
3186 #endif /* defined (HAVE_SYMLINK) */
|
|
3187
|
428
|
3188 int
|
771
|
3189 qxe_unlink (const Intbyte *path)
|
428
|
3190 {
|
771
|
3191 #ifdef WIN32_NATIVE
|
|
3192 return mswindows_unlink (path);
|
|
3193 #else /* not WIN32_NATIVE */
|
|
3194 Extbyte *pathout;
|
|
3195 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3196 return unlink (pathout);
|
|
3197 #endif /* WIN32_NATIVE */
|
428
|
3198 }
|
771
|
3199
|
|
3200
|
|
3201 /****************** process calls *****************/
|
|
3202
|
428
|
3203 int
|
771
|
3204 qxe_execve (const Intbyte *filename, Intbyte * const argv[],
|
|
3205 Intbyte * const envp[])
|
428
|
3206 {
|
771
|
3207 int i, argc, envc;
|
|
3208 Extbyte *pathext;
|
|
3209 Extbyte **new_argv;
|
|
3210 Extbyte **new_envp;
|
|
3211
|
|
3212 PATHNAME_CONVERT_OUT (filename, pathext);
|
|
3213
|
428
|
3214 for (argc = 0; argv[argc]; argc++)
|
|
3215 ;
|
771
|
3216 new_argv = alloca_array (Extbyte *, argc + 1);
|
428
|
3217 for (i = 0; i < argc; i++)
|
771
|
3218 C_STRING_TO_EXTERNAL (argv[i], new_argv[i], Qnative);
|
428
|
3219 new_argv[argc] = NULL;
|
771
|
3220
|
|
3221 for (envc = 0; envp[envc]; envc++)
|
|
3222 ;
|
|
3223 new_envp = alloca_array (Extbyte *, envc + 1);
|
|
3224 for (i = 0; i < envc; i++)
|
|
3225 C_STRING_TO_EXTERNAL (envp[i], new_envp[i], Qnative);
|
|
3226 new_envp[envc] = NULL;
|
|
3227
|
|
3228 return execve (pathext, new_argv, new_envp);
|
|
3229 }
|
|
3230
|
|
3231 pid_t
|
|
3232 qxe_getpid (void)
|
|
3233 {
|
|
3234 #ifdef WIN32_NATIVE
|
|
3235 return abs (getpid ());
|
|
3236 #else
|
|
3237 return getpid ();
|
|
3238 #endif
|
428
|
3239 }
|
771
|
3240
|
|
3241
|
|
3242 /****************** passwd calls *****************/
|
|
3243
|
|
3244 struct passwd cached_pwd;
|
|
3245
|
|
3246 static struct passwd *
|
|
3247 copy_in_passwd (struct passwd *pwd)
|
|
3248 {
|
|
3249 if (!pwd)
|
|
3250 return NULL;
|
|
3251
|
|
3252 if (cached_pwd.pw_name)
|
|
3253 xfree (cached_pwd.pw_name);
|
|
3254 if (cached_pwd.pw_passwd)
|
|
3255 xfree (cached_pwd.pw_passwd);
|
|
3256 if (cached_pwd.pw_gecos)
|
|
3257 xfree (cached_pwd.pw_gecos);
|
|
3258 if (cached_pwd.pw_dir)
|
|
3259 xfree (cached_pwd.pw_dir);
|
|
3260 if (cached_pwd.pw_shell)
|
|
3261 xfree (cached_pwd.pw_shell);
|
|
3262
|
|
3263 cached_pwd = *pwd;
|
|
3264 if (cached_pwd.pw_name)
|
|
3265 TO_INTERNAL_FORMAT (C_STRING, cached_pwd.pw_name,
|
|
3266 C_STRING_MALLOC, cached_pwd.pw_name, Qnative);
|
|
3267 if (cached_pwd.pw_passwd)
|
|
3268 TO_INTERNAL_FORMAT (C_STRING, cached_pwd.pw_passwd,
|
|
3269 C_STRING_MALLOC, cached_pwd.pw_passwd, Qnative);
|
|
3270 if (cached_pwd.pw_gecos)
|
|
3271 TO_INTERNAL_FORMAT (C_STRING, cached_pwd.pw_gecos,
|
|
3272 C_STRING_MALLOC, cached_pwd.pw_gecos, Qnative);
|
|
3273 if (cached_pwd.pw_dir)
|
|
3274 TO_INTERNAL_FORMAT (C_STRING, cached_pwd.pw_dir,
|
|
3275 C_STRING_MALLOC, cached_pwd.pw_dir, Qfile_name);
|
|
3276 if (cached_pwd.pw_shell)
|
|
3277 TO_INTERNAL_FORMAT (C_STRING, cached_pwd.pw_shell,
|
|
3278 C_STRING_MALLOC, cached_pwd.pw_shell, Qfile_name);
|
|
3279 return &cached_pwd;
|
|
3280 }
|
|
3281
|
|
3282 struct passwd *
|
|
3283 qxe_getpwnam (const Intbyte *name)
|
|
3284 {
|
|
3285 #ifdef WIN32_NATIVE
|
|
3286 /* Synthetic versions are defined in nt.c and already do conversion. */
|
|
3287 return getpwnam (name);
|
|
3288 #else
|
|
3289 Extbyte *nameext;
|
|
3290 C_STRING_TO_EXTERNAL (name, nameext, Qnative);
|
|
3291
|
|
3292 return copy_in_passwd (getpwnam (nameext));
|
|
3293 #endif /* WIN32_NATIVE */
|
|
3294 }
|
|
3295
|
|
3296 struct passwd *
|
|
3297 qxe_getpwuid (uid_t uid)
|
|
3298 {
|
|
3299 #ifdef WIN32_NATIVE
|
|
3300 /* Synthetic versions are defined in nt.c and already do conversion. */
|
|
3301 return getpwuid (uid);
|
|
3302 #else
|
|
3303 return copy_in_passwd (getpwuid (uid));
|
|
3304 #endif /* WIN32_NATIVE */
|
|
3305 }
|
|
3306
|
|
3307 #ifndef WIN32_NATIVE
|
|
3308
|
|
3309 struct passwd *
|
|
3310 qxe_getpwent (void)
|
|
3311 {
|
|
3312 /* No WIN32_NATIVE version of this. */
|
|
3313 return copy_in_passwd (getpwent ());
|
|
3314 }
|
|
3315
|
|
3316 #endif /* not WIN32_NATIVE */
|
|
3317
|
|
3318 /****************** time calls *****************/
|
|
3319
|
|
3320 static Intbyte *ctime_static;
|
|
3321
|
|
3322 Intbyte *
|
|
3323 qxe_ctime (const time_t *t)
|
|
3324 {
|
|
3325 Extbyte *str = (Extbyte *) ctime (t);
|
|
3326 if (!str) /* can happen on MS Windows */
|
|
3327 return (Intbyte *) "Sun Jan 01 00:00:00 1970";
|
|
3328 if (ctime_static)
|
|
3329 xfree (ctime_static);
|
|
3330 EXTERNAL_TO_C_STRING_MALLOC (str, ctime_static, Qnative);
|
|
3331 return ctime_static;
|
|
3332 }
|
428
|
3333
|
|
3334
|
|
3335 /************************************************************************/
|
|
3336 /* Emulations of missing system calls */
|
|
3337 /************************************************************************/
|
|
3338
|
|
3339 /***** (these are primarily required for USG, it seems) *****/
|
|
3340
|
|
3341 /*
|
|
3342 * Emulate rename using unlink/link. Note that this is
|
|
3343 * only partially correct. Also, doesn't enforce restriction
|
|
3344 * that files be of same type (regular->regular, dir->dir, etc).
|
|
3345 */
|
|
3346
|
|
3347 #ifndef HAVE_RENAME
|
|
3348 int
|
771
|
3349 rename (const Extbyte *from, const Extbyte *to)
|
428
|
3350 {
|
|
3351 if (access (from, 0) == 0)
|
|
3352 {
|
|
3353 unlink (to);
|
|
3354 if (link (from, to) == 0)
|
|
3355 if (unlink (from) == 0)
|
|
3356 return (0);
|
|
3357 }
|
|
3358 return (-1);
|
|
3359 }
|
|
3360 #endif /* HAVE_RENAME */
|
|
3361
|
|
3362 #ifdef HPUX
|
|
3363 #ifndef HAVE_PERROR
|
|
3364
|
|
3365 /* HPUX curses library references perror, but as far as we know
|
|
3366 it won't be called. Anyway this definition will do for now. */
|
|
3367
|
|
3368 perror (void)
|
|
3369 {
|
|
3370 }
|
|
3371
|
|
3372 #endif /* not HAVE_PERROR */
|
|
3373 #endif /* HPUX */
|
|
3374
|
|
3375 #ifndef HAVE_DUP2
|
|
3376
|
|
3377 /*
|
|
3378 * Emulate BSD dup2. First close newd if it already exists.
|
|
3379 * Then, attempt to dup oldd. If not successful, call dup2 recursively
|
|
3380 * until we are, then close the unsuccessful ones.
|
|
3381 */
|
|
3382
|
|
3383 int
|
|
3384 dup2 (int oldd, int newd)
|
|
3385 {
|
|
3386 int fd, ret;
|
|
3387
|
771
|
3388 retry_close (newd);
|
428
|
3389
|
|
3390 #ifdef F_DUPFD
|
|
3391 fd = fcntl (oldd, F_DUPFD, newd);
|
|
3392 if (fd != newd)
|
563
|
3393 signal_ferror_with_frob (Qfile_error, lisp_strerror (errno),
|
|
3394 "can't dup2 (%i, %i)", oldd, newd);
|
428
|
3395 #else
|
|
3396 fd = dup (old);
|
|
3397 if (fd == -1)
|
|
3398 return -1;
|
|
3399 if (fd == new)
|
|
3400 return new;
|
|
3401 ret = dup2 (old, new);
|
771
|
3402 retry_close (fd);
|
428
|
3403 return ret;
|
|
3404 #endif /* F_DUPFD */
|
|
3405 }
|
|
3406
|
|
3407 #endif /* not HAVE_DUP2 */
|
|
3408
|
|
3409 /*
|
|
3410 * Gettimeofday. Simulate as much as possible. Only accurate
|
|
3411 * to nearest second. Emacs doesn't use tzp so ignore it for now.
|
|
3412 */
|
|
3413
|
|
3414 #if !defined (HAVE_GETTIMEOFDAY)
|
|
3415
|
|
3416 int
|
|
3417 gettimeofday (struct timeval *tp, struct timezone *tzp)
|
|
3418 {
|
|
3419 extern long time ();
|
|
3420
|
|
3421 tp->tv_sec = time ((long *)0);
|
|
3422 tp->tv_usec = 0;
|
|
3423 if (tzp != 0)
|
|
3424 tzp->tz_minuteswest = -1;
|
|
3425 return (0);
|
|
3426 }
|
|
3427
|
|
3428 #endif /* !HAVE_GETTIMEOFDAY */
|
|
3429
|
|
3430 /* No need to encapsulate utime and utimes explicitly because all
|
|
3431 access to those functions goes through the following. */
|
|
3432
|
|
3433 int
|
592
|
3434 set_file_times (Lisp_Object path, EMACS_TIME atime, EMACS_TIME mtime)
|
428
|
3435 {
|
592
|
3436 #if defined (WIN32_NATIVE)
|
460
|
3437 struct utimbuf utb;
|
|
3438 utb.actime = EMACS_SECS (atime);
|
|
3439 utb.modtime = EMACS_SECS (mtime);
|
592
|
3440 return mswindows_utime (path, &utb);
|
|
3441 #elif defined (HAVE_UTIME)
|
|
3442 struct utimbuf utb;
|
|
3443 Extbyte *filename;
|
|
3444 utb.actime = EMACS_SECS (atime);
|
|
3445 utb.modtime = EMACS_SECS (mtime);
|
|
3446 LISP_STRING_TO_EXTERNAL (path, filename, Qfile_name);
|
460
|
3447 return utime (filename, &utb);
|
|
3448 #elif defined (HAVE_UTIMES)
|
428
|
3449 struct timeval tv[2];
|
592
|
3450 Extbyte *filename;
|
428
|
3451 tv[0] = atime;
|
|
3452 tv[1] = mtime;
|
592
|
3453 LISP_STRING_TO_EXTERNAL (path, filename, Qfile_name);
|
428
|
3454 return utimes (filename, tv);
|
460
|
3455 #else
|
|
3456 /* No file times setting function available. */
|
|
3457 return -1;
|
|
3458 #endif
|
428
|
3459 }
|
|
3460
|
|
3461 /* */
|
|
3462
|
|
3463 static long ticks_per_second;
|
|
3464 static long orig_user_ticks, orig_system_ticks;
|
|
3465 EMACS_TIME orig_real_time;
|
|
3466
|
|
3467 static int process_times_available;
|
|
3468
|
|
3469 /* Return the relative user and system tick count. We try to
|
|
3470 maintain calculations in terms of integers as long as possible
|
|
3471 for increased accuracy. */
|
|
3472
|
|
3473 static int
|
|
3474 get_process_times_1 (long *user_ticks, long *system_ticks)
|
|
3475 {
|
442
|
3476 #if defined (_SC_CLK_TCK) || defined (CLK_TCK) && !defined(WIN32_NATIVE)
|
428
|
3477 /* We have the POSIX times() function available. */
|
777
|
3478 /* #### Perhaps we should just use a configure test for times()? */
|
428
|
3479 struct tms tttt;
|
|
3480 times (&tttt);
|
|
3481 *user_ticks = (long) tttt.tms_utime;
|
|
3482 *system_ticks = (long) tttt.tms_stime;
|
|
3483 return 1;
|
|
3484 #elif defined (CLOCKS_PER_SEC)
|
|
3485 *user_ticks = (long) clock ();
|
|
3486 *system_ticks = 0;
|
|
3487 return 1;
|
|
3488 #else
|
|
3489 return 0;
|
|
3490 #endif
|
|
3491 }
|
|
3492
|
|
3493 void
|
|
3494 init_process_times_very_early (void)
|
|
3495 {
|
|
3496 #if defined (_SC_CLK_TCK)
|
|
3497 ticks_per_second = sysconf (_SC_CLK_TCK);
|
|
3498 #elif defined (CLK_TCK)
|
|
3499 ticks_per_second = CLK_TCK;
|
|
3500 #elif defined (CLOCKS_PER_SEC)
|
|
3501 ticks_per_second = CLOCKS_PER_SEC;
|
|
3502 #endif
|
|
3503
|
|
3504 process_times_available = get_process_times_1 (&orig_user_ticks,
|
|
3505 &orig_system_ticks);
|
|
3506 EMACS_GET_TIME (orig_real_time);
|
|
3507 }
|
|
3508
|
|
3509 /* Return the user and system times used up by this process so far. */
|
|
3510 void
|
|
3511 get_process_times (double *user_time, double *system_time, double *real_time)
|
|
3512 {
|
|
3513 EMACS_TIME curr_real_time;
|
|
3514 EMACS_TIME elapsed_time;
|
|
3515 long curr_user_ticks, curr_system_ticks;
|
|
3516
|
|
3517 EMACS_GET_TIME (curr_real_time);
|
|
3518 EMACS_SUB_TIME (elapsed_time, curr_real_time, orig_real_time);
|
|
3519 *real_time = (EMACS_SECS (elapsed_time)
|
|
3520 + ((double) EMACS_USECS (elapsed_time)) / 1000000);
|
|
3521 if (get_process_times_1 (&curr_user_ticks, &curr_system_ticks))
|
|
3522 {
|
|
3523 *user_time = (((double) (curr_user_ticks - orig_user_ticks))
|
|
3524 / ticks_per_second);
|
|
3525 *system_time = (((double) (curr_system_ticks - orig_system_ticks))
|
|
3526 / ticks_per_second);
|
|
3527 }
|
|
3528 else
|
|
3529 {
|
|
3530 /* A lame OS */
|
|
3531 *user_time = *real_time;
|
|
3532 *system_time = 0;
|
|
3533 }
|
|
3534 }
|
|
3535
|
|
3536 #ifndef HAVE_RANDOM
|
|
3537 #ifdef random
|
|
3538 #define HAVE_RANDOM
|
|
3539 #endif
|
|
3540 #endif
|
|
3541
|
|
3542 /* Figure out how many bits the system's random number generator uses.
|
|
3543 `random' and `lrand48' are assumed to return 31 usable bits.
|
|
3544 BSD `rand' returns a 31 bit value but the low order bits are unusable;
|
|
3545 so we'll shift it and treat it like the 15-bit USG `rand'. */
|
|
3546
|
|
3547 #ifndef RAND_BITS
|
|
3548 # ifdef HAVE_RANDOM
|
|
3549 # define RAND_BITS 31
|
|
3550 # else /* !HAVE_RANDOM */
|
|
3551 # ifdef HAVE_LRAND48
|
|
3552 # define RAND_BITS 31
|
|
3553 # define random lrand48
|
|
3554 # else /* !HAVE_LRAND48 */
|
|
3555 # define RAND_BITS 15
|
|
3556 # if RAND_MAX == 32767
|
|
3557 # define random rand
|
|
3558 # else /* RAND_MAX != 32767 */
|
|
3559 # if RAND_MAX == 2147483647
|
|
3560 # define random() (rand () >> 16)
|
|
3561 # else /* RAND_MAX != 2147483647 */
|
|
3562 # ifdef USG
|
|
3563 # define random rand
|
|
3564 # else
|
|
3565 # define random() (rand () >> 16)
|
|
3566 # endif /* !BSD */
|
|
3567 # endif /* RAND_MAX != 2147483647 */
|
|
3568 # endif /* RAND_MAX != 32767 */
|
|
3569 # endif /* !HAVE_LRAND48 */
|
|
3570 # endif /* !HAVE_RANDOM */
|
|
3571 #endif /* !RAND_BITS */
|
|
3572
|
|
3573 void
|
|
3574 seed_random (long arg)
|
|
3575 {
|
|
3576 #ifdef HAVE_RANDOM
|
|
3577 srandom ((unsigned int)arg);
|
|
3578 #else
|
|
3579 # ifdef HAVE_LRAND48
|
|
3580 srand48 (arg);
|
|
3581 # else
|
|
3582 srand ((unsigned int)arg);
|
|
3583 # endif
|
|
3584 #endif
|
|
3585 }
|
|
3586
|
|
3587 /*
|
|
3588 * Build a full Emacs-sized word out of whatever we've got.
|
|
3589 * This suffices even for a 64-bit architecture with a 15-bit rand.
|
|
3590 */
|
|
3591 long
|
|
3592 get_random (void)
|
|
3593 {
|
|
3594 long val = random ();
|
|
3595 #if VALBITS > RAND_BITS
|
|
3596 val = (val << RAND_BITS) ^ random ();
|
|
3597 #if VALBITS > 2*RAND_BITS
|
|
3598 val = (val << RAND_BITS) ^ random ();
|
|
3599 #if VALBITS > 3*RAND_BITS
|
|
3600 val = (val << RAND_BITS) ^ random ();
|
|
3601 #if VALBITS > 4*RAND_BITS
|
|
3602 val = (val << RAND_BITS) ^ random ();
|
|
3603 #endif /* need at least 5 */
|
|
3604 #endif /* need at least 4 */
|
|
3605 #endif /* need at least 3 */
|
|
3606 #endif /* need at least 2 */
|
|
3607 return val & ((1L << VALBITS) - 1);
|
|
3608 }
|
|
3609
|
|
3610
|
|
3611 /************************************************************************/
|
|
3612 /* Strings corresponding to defined signals */
|
|
3613 /************************************************************************/
|
|
3614
|
|
3615 #if !defined (SYS_SIGLIST_DECLARED) && !defined (HAVE_SYS_SIGLIST)
|
|
3616
|
442
|
3617 #if defined(WIN32_NATIVE) || defined(CYGWIN)
|
|
3618 const char *sys_siglist[] =
|
428
|
3619 {
|
771
|
3620 /* $$####begin-snarf */
|
428
|
3621 "bum signal!!",
|
|
3622 "hangup",
|
|
3623 "interrupt",
|
|
3624 "quit",
|
|
3625 "illegal instruction",
|
|
3626 "trace trap",
|
|
3627 "iot instruction",
|
|
3628 "emt instruction",
|
|
3629 "floating point exception",
|
|
3630 "kill",
|
|
3631 "bus error",
|
|
3632 "segmentation violation",
|
|
3633 "bad argument to system call",
|
|
3634 "write on a pipe with no one to read it",
|
|
3635 "alarm clock",
|
|
3636 "software termination signal from kill",
|
|
3637 "status signal",
|
|
3638 "sendable stop signal not from tty",
|
|
3639 "stop signal from tty",
|
|
3640 "continue a stopped process",
|
|
3641 "child status has changed",
|
|
3642 "background read attempted from control tty",
|
|
3643 "background write attempted from control tty",
|
|
3644 "input record available at control tty",
|
|
3645 "exceeded CPU time limit",
|
|
3646 "exceeded file size limit"
|
771
|
3647 /* $$####end-snarf */
|
428
|
3648 };
|
|
3649 #endif
|
|
3650
|
|
3651 #ifdef USG
|
|
3652 #ifdef AIX
|
442
|
3653 const char *sys_siglist[NSIG + 1] =
|
428
|
3654 {
|
|
3655 /* AIX has changed the signals a bit */
|
771
|
3656 /* $$####begin-snarf */
|
|
3657 "bogus signal", /* 0 */
|
|
3658 "hangup", /* 1 SIGHUP */
|
|
3659 "interrupt", /* 2 SIGINT */
|
|
3660 "quit", /* 3 SIGQUIT */
|
|
3661 "illegal instruction", /* 4 SIGILL */
|
|
3662 "trace trap", /* 5 SIGTRAP */
|
|
3663 "IOT instruction", /* 6 SIGIOT */
|
|
3664 "crash likely", /* 7 SIGDANGER */
|
|
3665 "floating point exception", /* 8 SIGFPE */
|
|
3666 "kill", /* 9 SIGKILL */
|
|
3667 "bus error", /* 10 SIGBUS */
|
|
3668 "segmentation violation", /* 11 SIGSEGV */
|
|
3669 "bad argument to system call", /* 12 SIGSYS */
|
|
3670 "write on a pipe with no one to read it", /* 13 SIGPIPE */
|
|
3671 "alarm clock", /* 14 SIGALRM */
|
822
|
3672 "software termination signal", /* 15 SIGTERM */
|
771
|
3673 "user defined signal 1", /* 16 SIGUSR1 */
|
|
3674 "user defined signal 2", /* 17 SIGUSR2 */
|
|
3675 "death of a child", /* 18 SIGCLD */
|
|
3676 "power-fail restart", /* 19 SIGPWR */
|
|
3677 "bogus signal", /* 20 */
|
|
3678 "bogus signal", /* 21 */
|
|
3679 "bogus signal", /* 22 */
|
|
3680 "bogus signal", /* 23 */
|
|
3681 "bogus signal", /* 24 */
|
|
3682 "LAN I/O interrupt", /* 25 SIGAIO */
|
|
3683 "PTY I/O interrupt", /* 26 SIGPTY */
|
|
3684 "I/O intervention required", /* 27 SIGIOINT */
|
428
|
3685 #ifdef AIXHFT
|
771
|
3686 "HFT grant", /* 28 SIGGRANT */
|
|
3687 "HFT retract", /* 29 SIGRETRACT */
|
|
3688 "HFT sound done", /* 30 SIGSOUND */
|
|
3689 "HFT input ready", /* 31 SIGMSG */
|
428
|
3690 #endif
|
771
|
3691 /* $$####end-snarf */
|
428
|
3692 0
|
|
3693 };
|
|
3694 #else /* USG, not AIX */
|
442
|
3695 const char *sys_siglist[NSIG + 1] =
|
428
|
3696 {
|
771
|
3697 /* $$####begin-snarf */
|
|
3698 "bogus signal", /* 0 */
|
|
3699 "hangup", /* 1 SIGHUP */
|
|
3700 "interrupt", /* 2 SIGINT */
|
|
3701 "quit", /* 3 SIGQUIT */
|
|
3702 "illegal instruction", /* 4 SIGILL */
|
|
3703 "trace trap", /* 5 SIGTRAP */
|
|
3704 "IOT instruction", /* 6 SIGIOT */
|
|
3705 "EMT instruction", /* 7 SIGEMT */
|
|
3706 "floating point exception", /* 8 SIGFPE */
|
|
3707 "kill", /* 9 SIGKILL */
|
|
3708 "bus error", /* 10 SIGBUS */
|
|
3709 "segmentation violation", /* 11 SIGSEGV */
|
|
3710 "bad argument to system call", /* 12 SIGSYS */
|
|
3711 "write on a pipe with no one to read it", /* 13 SIGPIPE */
|
|
3712 "alarm clock", /* 14 SIGALRM */
|
822
|
3713 "software termination signal", /* 15 SIGTERM */
|
771
|
3714 "user defined signal 1", /* 16 SIGUSR1 */
|
|
3715 "user defined signal 2", /* 17 SIGUSR2 */
|
|
3716 "death of a child", /* 18 SIGCLD */
|
|
3717 "power-fail restart", /* 19 SIGPWR */
|
428
|
3718 #ifdef sun
|
771
|
3719 "window size changed", /* 20 SIGWINCH */
|
|
3720 "urgent socket condition", /* 21 SIGURG */
|
|
3721 "pollable event occurred", /* 22 SIGPOLL */
|
|
3722 "stop (cannot be caught or ignored)", /* 23 SIGSTOP */
|
|
3723 "user stop requested from tty", /* 24 SIGTSTP */
|
|
3724 "stopped process has been continued", /* 25 SIGCONT */
|
|
3725 "background tty read attempted", /* 26 SIGTTIN */
|
|
3726 "background tty write attempted", /* 27 SIGTTOU */
|
|
3727 "virtual timer expired", /* 28 SIGVTALRM */
|
|
3728 "profiling timer expired", /* 29 SIGPROF */
|
|
3729 "exceeded cpu limit", /* 30 SIGXCPU */
|
|
3730 "exceeded file size limit", /* 31 SIGXFSZ */
|
|
3731 "process's lwps are blocked", /* 32 SIGWAITING */
|
|
3732 "special signal used by thread library", /* 33 SIGLWP */
|
428
|
3733 #ifdef SIGFREEZE
|
771
|
3734 "special signal used by CPR", /* 34 SIGFREEZE */
|
428
|
3735 #endif
|
|
3736 #ifdef SIGTHAW
|
771
|
3737 "special signal used by CPR", /* 35 SIGTHAW */
|
428
|
3738 #endif
|
|
3739 #endif /* sun */
|
771
|
3740 /* $$####end-snarf */
|
428
|
3741 0
|
|
3742 };
|
|
3743 #endif /* not AIX */
|
|
3744 #endif /* USG */
|
|
3745 #ifdef DGUX
|
442
|
3746 const char *sys_siglist[NSIG + 1] =
|
428
|
3747 {
|
771
|
3748 /* $$####begin-snarf */
|
|
3749 "null signal", /* 0 SIGNULL */
|
|
3750 "hangup", /* 1 SIGHUP */
|
|
3751 "interrupt", /* 2 SIGINT */
|
|
3752 "quit", /* 3 SIGQUIT */
|
|
3753 "illegal instruction", /* 4 SIGILL */
|
|
3754 "trace trap", /* 5 SIGTRAP */
|
|
3755 "abort termination", /* 6 SIGABRT */
|
|
3756 "SIGEMT", /* 7 SIGEMT */
|
|
3757 "floating point exception", /* 8 SIGFPE */
|
|
3758 "kill", /* 9 SIGKILL */
|
|
3759 "bus error", /* 10 SIGBUS */
|
|
3760 "segmentation violation", /* 11 SIGSEGV */
|
|
3761 "bad argument to system call", /* 12 SIGSYS */
|
|
3762 "write on a pipe with no reader", /* 13 SIGPIPE */
|
|
3763 "alarm clock", /* 14 SIGALRM */
|
|
3764 "software termination signal", /* 15 SIGTERM */
|
|
3765 "user defined signal 1", /* 16 SIGUSR1 */
|
|
3766 "user defined signal 2", /* 17 SIGUSR2 */
|
|
3767 "child stopped or terminated", /* 18 SIGCLD */
|
|
3768 "power-fail restart", /* 19 SIGPWR */
|
|
3769 "window size changed", /* 20 SIGWINCH */
|
|
3770 "undefined", /* 21 */
|
|
3771 "pollable event occurred", /* 22 SIGPOLL */
|
|
3772 "sendable stop signal not from tty", /* 23 SIGSTOP */
|
|
3773 "stop signal from tty", /* 24 SIGSTP */
|
|
3774 "continue a stopped process", /* 25 SIGCONT */
|
|
3775 "attempted background tty read", /* 26 SIGTTIN */
|
|
3776 "attempted background tty write", /* 27 SIGTTOU */
|
|
3777 "undefined", /* 28 */
|
|
3778 "undefined", /* 29 */
|
|
3779 "undefined", /* 30 */
|
|
3780 "undefined", /* 31 */
|
|
3781 "undefined", /* 32 */
|
|
3782 "socket (TCP/IP) urgent data arrival", /* 33 SIGURG */
|
|
3783 "I/O is possible", /* 34 SIGIO */
|
|
3784 "exceeded cpu time limit", /* 35 SIGXCPU */
|
|
3785 "exceeded file size limit", /* 36 SIGXFSZ */
|
|
3786 "virtual time alarm", /* 37 SIGVTALRM */
|
|
3787 "profiling time alarm", /* 38 SIGPROF */
|
|
3788 "undefined", /* 39 */
|
|
3789 "file record locks revoked", /* 40 SIGLOST */
|
|
3790 "undefined", /* 41 */
|
|
3791 "undefined", /* 42 */
|
|
3792 "undefined", /* 43 */
|
|
3793 "undefined", /* 44 */
|
|
3794 "undefined", /* 45 */
|
|
3795 "undefined", /* 46 */
|
|
3796 "undefined", /* 47 */
|
|
3797 "undefined", /* 48 */
|
|
3798 "undefined", /* 49 */
|
|
3799 "undefined", /* 50 */
|
|
3800 "undefined", /* 51 */
|
|
3801 "undefined", /* 52 */
|
|
3802 "undefined", /* 53 */
|
|
3803 "undefined", /* 54 */
|
|
3804 "undefined", /* 55 */
|
|
3805 "undefined", /* 56 */
|
|
3806 "undefined", /* 57 */
|
|
3807 "undefined", /* 58 */
|
|
3808 "undefined", /* 59 */
|
|
3809 "undefined", /* 60 */
|
|
3810 "undefined", /* 61 */
|
|
3811 "undefined", /* 62 */
|
|
3812 "undefined", /* 63 */
|
|
3813 "notification message in mess. queue", /* 64 SIGDGNOTIFY */
|
|
3814 /* $$####end-snarf */
|
428
|
3815 0
|
|
3816 };
|
|
3817 #endif /* DGUX */
|
|
3818
|
|
3819 #endif /* ! SYS_SIGLIST_DECLARED && ! HAVE_SYS_SIGLIST */
|
|
3820
|
|
3821
|
|
3822 /************************************************************************/
|
|
3823 /* Directory routines for systems that don't have them */
|
|
3824 /************************************************************************/
|
|
3825
|
|
3826 #ifdef SYSV_SYSTEM_DIR
|
|
3827
|
|
3828 #include <dirent.h>
|
|
3829
|
|
3830 #if defined(BROKEN_CLOSEDIR) || !defined(HAVE_CLOSEDIR)
|
|
3831 int
|
|
3832 closedir (DIR *dirp) /* stream from opendir */
|
|
3833 {
|
|
3834 int rtnval;
|
|
3835
|
771
|
3836 rtnval = retry_close (dirp->dd_fd);
|
428
|
3837
|
|
3838 /* Some systems (like Solaris) allocate the buffer and the DIR all
|
|
3839 in one block. Why in the world are we freeing this ourselves
|
|
3840 anyway? */
|
|
3841 #if ! (defined (sun) && defined (USG5_4))
|
|
3842 xfree ((char *) dirp->dd_buf); /* directory block defined in <dirent.h> */
|
|
3843 #endif
|
|
3844 xfree ((char *) dirp);
|
|
3845 return (rtnval);
|
|
3846 }
|
|
3847 #endif /* BROKEN_CLOSEDIR or not HAVE_CLOSEDIR */
|
|
3848 #endif /* SYSV_SYSTEM_DIR */
|
|
3849
|
|
3850 #ifdef NONSYSTEM_DIR_LIBRARY
|
|
3851
|
|
3852 DIR *
|
442
|
3853 opendir (const char *filename) /* name of directory */
|
428
|
3854 {
|
|
3855 DIR *dirp; /* -> malloc'ed storage */
|
|
3856 int fd; /* file descriptor for read */
|
|
3857 struct stat sbuf; /* result of fstat */
|
|
3858
|
771
|
3859 fd = open (filename, O_RDONLY);
|
428
|
3860 if (fd < 0)
|
|
3861 return 0;
|
|
3862
|
|
3863 if (fstat (fd, &sbuf) < 0
|
|
3864 || (sbuf.st_mode & S_IFMT) != S_IFDIR
|
|
3865 || (dirp = (DIR *) malloc (sizeof (DIR))) == 0)
|
|
3866 {
|
771
|
3867 retry_close (fd);
|
428
|
3868 return 0; /* bad luck today */
|
|
3869 }
|
|
3870
|
|
3871 dirp->dd_fd = fd;
|
|
3872 dirp->dd_loc = dirp->dd_size = 0; /* refill needed */
|
|
3873
|
|
3874 return dirp;
|
|
3875 }
|
|
3876
|
|
3877 void
|
|
3878 closedir (DIR *dirp) /* stream from opendir */
|
|
3879 {
|
771
|
3880 retry_close (dirp->dd_fd);
|
428
|
3881 xfree (dirp);
|
|
3882 }
|
|
3883
|
|
3884
|
|
3885 #define DIRSIZ 14
|
|
3886 struct olddir
|
|
3887 {
|
|
3888 ino_t od_ino; /* inode */
|
|
3889 char od_name[DIRSIZ]; /* filename */
|
|
3890 };
|
|
3891
|
|
3892 static struct direct dir_static; /* simulated directory contents */
|
|
3893
|
|
3894 /* ARGUSED */
|
|
3895 struct direct *
|
|
3896 readdir (DIR *dirp) /* stream from opendir */
|
|
3897 {
|
|
3898 struct olddir *dp; /* -> directory data */
|
|
3899
|
|
3900 for (; ;)
|
|
3901 {
|
|
3902 if (dirp->dd_loc >= dirp->dd_size)
|
|
3903 dirp->dd_loc = dirp->dd_size = 0;
|
|
3904
|
|
3905 if (dirp->dd_size == 0 /* refill buffer */
|
771
|
3906 && (dirp->dd_size =
|
|
3907 retry_read (dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ)) <= 0)
|
428
|
3908 return 0;
|
|
3909
|
|
3910 dp = (struct olddir *) &dirp->dd_buf[dirp->dd_loc];
|
|
3911 dirp->dd_loc += sizeof (struct olddir);
|
|
3912
|
|
3913 if (dp->od_ino != 0) /* not deleted entry */
|
|
3914 {
|
|
3915 dir_static.d_ino = dp->od_ino;
|
|
3916 strncpy (dir_static.d_name, dp->od_name, DIRSIZ);
|
|
3917 dir_static.d_name[DIRSIZ] = '\0';
|
|
3918 dir_static.d_namlen = strlen (dir_static.d_name);
|
|
3919 dir_static.d_reclen = sizeof (struct direct)
|
|
3920 - MAXNAMLEN + 3
|
|
3921 + dir_static.d_namlen - dir_static.d_namlen % 4;
|
|
3922 return &dir_static; /* -> simulated structure */
|
|
3923 }
|
|
3924 }
|
|
3925 }
|
|
3926
|
|
3927
|
|
3928 #endif /* NONSYSTEM_DIR_LIBRARY */
|
|
3929
|
|
3930
|
|
3931 /* mkdir and rmdir functions, for systems which don't have them. */
|
|
3932
|
|
3933 #ifndef HAVE_MKDIR
|
|
3934 /*
|
|
3935 * Written by Robert Rother, Mariah Corporation, August 1985.
|
|
3936 *
|
|
3937 * If you want it, it's yours. All I ask in return is that if you
|
|
3938 * figure out how to do this in a Bourne Shell script you send me
|
|
3939 * a copy.
|
|
3940 * sdcsvax!rmr or rmr@uscd
|
|
3941 *
|
|
3942 * Severely hacked over by John Gilmore to make a 4.2BSD compatible
|
|
3943 * subroutine. 11Mar86; hoptoad!gnu
|
|
3944 *
|
|
3945 * Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
|
|
3946 * subroutine didn't return EEXIST. It does now.
|
|
3947 */
|
|
3948
|
|
3949 /*
|
|
3950 * Make a directory.
|
|
3951 */
|
|
3952 #ifdef MKDIR_PROTOTYPE
|
|
3953 MKDIR_PROTOTYPE
|
|
3954 #else
|
|
3955 int
|
442
|
3956 mkdir (const char *dpath, int dmode)
|
428
|
3957 #endif
|
|
3958 {
|
|
3959 int cpid, status, fd;
|
|
3960 struct stat statbuf;
|
|
3961
|
442
|
3962 if (stat (dpath, &statbuf) == 0) /* we do want stat() here */
|
428
|
3963 {
|
|
3964 errno = EEXIST; /* Stat worked, so it already exists */
|
|
3965 return -1;
|
|
3966 }
|
|
3967
|
|
3968 /* If stat fails for a reason other than non-existence, return error */
|
|
3969 if (errno != ENOENT)
|
|
3970 return -1;
|
|
3971
|
|
3972 synch_process_alive = 1;
|
|
3973 switch (cpid = fork ())
|
|
3974 {
|
|
3975
|
|
3976 case -1: /* Error in fork() */
|
|
3977 return -1; /* Errno is set already */
|
|
3978
|
|
3979 case 0: /* Child process */
|
|
3980 {
|
|
3981 /*
|
|
3982 * Cheap hack to set mode of new directory. Since this
|
|
3983 * child process is going away anyway, we zap its umask.
|
|
3984 * ####, this won't suffice to set SUID, SGID, etc. on this
|
|
3985 * directory. Does anybody care?
|
|
3986 */
|
|
3987 status = umask (0); /* Get current umask */
|
|
3988 status = umask (status | (0777 & ~dmode)); /* Set for mkdir */
|
771
|
3989 fd = open ("/dev/null", O_RDWR);
|
428
|
3990 if (fd >= 0)
|
|
3991 {
|
|
3992 if (fd != STDIN_FILENO) dup2 (fd, STDIN_FILENO);
|
|
3993 if (fd != STDOUT_FILENO) dup2 (fd, STDOUT_FILENO);
|
|
3994 if (fd != STDERR_FILENO) dup2 (fd, STDERR_FILENO);
|
|
3995 }
|
|
3996 execl ("/bin/mkdir", "mkdir", dpath, (char *) 0);
|
|
3997 _exit (-1); /* Can't exec /bin/mkdir */
|
|
3998 }
|
|
3999
|
|
4000 default: /* Parent process */
|
|
4001 wait_for_termination (cpid);
|
|
4002 }
|
|
4003
|
|
4004 if (synch_process_death != 0 || synch_process_retcode != 0)
|
|
4005 {
|
|
4006 errno = EIO; /* We don't know why, but */
|
|
4007 return -1; /* /bin/mkdir failed */
|
|
4008 }
|
|
4009
|
|
4010 return 0;
|
|
4011 }
|
|
4012 #endif /* not HAVE_MKDIR */
|
|
4013
|
|
4014 #ifndef HAVE_RMDIR
|
|
4015 int
|
442
|
4016 rmdir (const char *dpath)
|
428
|
4017 {
|
|
4018 int cpid, status, fd;
|
|
4019 struct stat statbuf;
|
|
4020
|
442
|
4021 if (stat (dpath, &statbuf) != 0) /* we do want stat() here */
|
428
|
4022 {
|
|
4023 /* Stat just set errno. We don't have to */
|
|
4024 return -1;
|
|
4025 }
|
|
4026
|
|
4027 synch_process_alive = 1;
|
|
4028 switch (cpid = fork ())
|
|
4029 {
|
|
4030
|
|
4031 case -1: /* Error in fork() */
|
|
4032 return (-1); /* Errno is set already */
|
|
4033
|
|
4034 case 0: /* Child process */
|
771
|
4035 fd = open ("/dev/null", O_RDWR);
|
428
|
4036 if (fd >= 0)
|
|
4037 {
|
|
4038 if (fd != STDIN_FILENO) dup2 (fd, STDIN_FILENO);
|
|
4039 if (fd != STDOUT_FILENO) dup2 (fd, STDOUT_FILENO);
|
|
4040 if (fd != STDERR_FILENO) dup2 (fd, STDERR_FILENO);
|
|
4041 }
|
|
4042 execl ("/bin/rmdir", "rmdir", dpath, (char *) 0);
|
|
4043 _exit (-1); /* Can't exec /bin/mkdir */
|
|
4044
|
|
4045 default: /* Parent process */
|
|
4046 wait_for_termination (cpid);
|
|
4047 }
|
|
4048
|
|
4049 if (synch_process_death != 0 ||
|
|
4050 synch_process_retcode != 0)
|
|
4051 {
|
|
4052 errno = EIO; /* We don't know why, but */
|
|
4053 return -1; /* /bin/rmdir failed */
|
|
4054 }
|
|
4055
|
|
4056 return 0;
|
|
4057 }
|
|
4058 #endif /* !HAVE_RMDIR */
|
|
4059
|
|
4060
|
|
4061 /************************************************************************/
|
|
4062 /* Misc. SunOS crap */
|
|
4063 /************************************************************************/
|
|
4064
|
|
4065 #ifdef USE_DL_STUBS
|
|
4066
|
|
4067 /* These are included on Sunos 4.1 when we do not use shared libraries.
|
|
4068 X11 libraries may refer to these functions but (we hope) do not
|
|
4069 actually call them. */
|
|
4070
|
|
4071 void *
|
|
4072 dlopen (void)
|
|
4073 {
|
|
4074 return 0;
|
|
4075 }
|
|
4076
|
|
4077 void *
|
|
4078 dlsym (void)
|
|
4079 {
|
|
4080 return 0;
|
|
4081 }
|
|
4082
|
|
4083 int
|
|
4084 dlclose (void)
|
|
4085 {
|
|
4086 return -1;
|
|
4087 }
|
|
4088
|
|
4089 #endif /* USE_DL_STUBS */
|