* inflow.c (kill_command): If the target claims there is still
[deliverable/binutils-gdb.git] / gdb / inflow.c
CommitLineData
c906108c 1/* Low level interface to ptrace, for GDB when running under Unix.
197e01b6 2 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
9b254dd1 3 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
2da6aac3 4 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
c5aa993b 11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b 18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
20
21#include "defs.h"
22#include "frame.h"
23#include "inferior.h"
24#include "command.h"
c906108c
SS
25#include "serial.h"
26#include "terminal.h"
27#include "target.h"
28#include "gdbthread.h"
29
30#include "gdb_string.h"
31#include <signal.h>
32#include <fcntl.h>
0ea3f30e 33#include "gdb_select.h"
c906108c 34
44270758 35#include "inflow.h"
c906108c 36
c2d11a7d
JM
37#ifdef HAVE_SYS_IOCTL_H
38#include <sys/ioctl.h>
39#endif
40
f2acbe1c
MK
41#ifndef O_NOCTTY
42#define O_NOCTTY 0
43#endif
44
c906108c 45#if defined (SIGIO) && defined (FASYNC) && defined (FD_SET) && defined (F_SETOWN)
a14ed312 46static void handle_sigio (int);
c906108c
SS
47#endif
48
a14ed312 49extern void _initialize_inflow (void);
392a587b 50
a14ed312 51static void pass_signal (int);
c906108c 52
a14ed312 53static void kill_command (char *, int);
c906108c 54
a14ed312 55static void terminal_ours_1 (int);
c906108c
SS
56\f
57/* Record terminal status separately for debugger and inferior. */
58
819cc324 59static struct serial *stdin_serial;
c906108c
SS
60
61/* TTY state for the inferior. We save it whenever the inferior stops, and
62 restore it when it resumes. */
63static serial_ttystate inferior_ttystate;
64
65/* Our own tty state, which we restore every time we need to deal with the
66 terminal. We only set it once, when GDB first starts. The settings of
67 flags which readline saves and restores and unimportant. */
68static serial_ttystate our_ttystate;
69
70/* fcntl flags for us and the inferior. Saved and restored just like
71 {our,inferior}_ttystate. */
72static int tflags_inferior;
73static int tflags_ours;
74
75#ifdef PROCESS_GROUP_TYPE
76/* Process group for us and the inferior. Saved and restored just like
77 {our,inferior}_ttystate. */
78PROCESS_GROUP_TYPE our_process_group;
79PROCESS_GROUP_TYPE inferior_process_group;
80#endif
81
82/* While the inferior is running, we want SIGINT and SIGQUIT to go to the
83 inferior only. If we have job control, that takes care of it. If not,
84 we save our handlers in these two variables and set SIGINT and SIGQUIT
85 to SIG_IGN. */
86
87static void (*sigint_ours) ();
88static void (*sigquit_ours) ();
89
90/* The name of the tty (from the `tty' command) that we gave to the inferior
91 when it was last started. */
92
3cb3b8df 93static const char *inferior_thisrun_terminal;
c906108c
SS
94
95/* Nonzero if our terminal settings are in effect. Zero if the
96 inferior's settings are in effect. Ignored if !gdb_has_a_terminal
97 (). */
98
99int terminal_is_ours;
100
64a0ac84
PA
101#ifdef PROCESS_GROUP_TYPE
102static PROCESS_GROUP_TYPE
103gdb_getpgrp (void)
104{
105 int process_group = -1;
106#ifdef HAVE_TERMIOS
107 process_group = tcgetpgrp (0);
108#endif
109#ifdef HAVE_TERMIO
110 process_group = getpgrp ();
111#endif
112#ifdef HAVE_SGTTY
113 ioctl (0, TIOCGPGRP, &process_group);
114#endif
115 return process_group;
116}
117#endif
118
c5aa993b
JM
119enum
120 {
121 yes, no, have_not_checked
122 }
123gdb_has_a_terminal_flag = have_not_checked;
c906108c
SS
124
125/* Does GDB have a terminal (on stdin)? */
126int
fba45db2 127gdb_has_a_terminal (void)
c906108c
SS
128{
129 switch (gdb_has_a_terminal_flag)
130 {
131 case yes:
132 return 1;
133 case no:
134 return 0;
135 case have_not_checked:
2cd58942
AC
136 /* Get all the current tty settings (including whether we have a
137 tty at all!). Can't do this in _initialize_inflow because
138 serial_fdopen() won't work until the serial_ops_list is
139 initialized. */
c906108c
SS
140
141#ifdef F_GETFL
142 tflags_ours = fcntl (0, F_GETFL, 0);
143#endif
144
145 gdb_has_a_terminal_flag = no;
c906108c
SS
146 if (stdin_serial != NULL)
147 {
2cd58942 148 our_ttystate = serial_get_tty_state (stdin_serial);
c906108c
SS
149
150 if (our_ttystate != NULL)
151 {
152 gdb_has_a_terminal_flag = yes;
807bddf3 153#ifdef PROCESS_GROUP_TYPE
64a0ac84 154 our_process_group = gdb_getpgrp ();
807bddf3 155#endif
c906108c
SS
156 }
157 }
158
159 return gdb_has_a_terminal_flag == yes;
160 default:
161 /* "Can't happen". */
162 return 0;
163 }
164}
165
166/* Macro for printing errors from ioctl operations */
167
168#define OOPSY(what) \
169 if (result == -1) \
170 fprintf_unfiltered(gdb_stderr, "[%s failed in terminal_inferior: %s]\n", \
dc672865 171 what, safe_strerror (errno))
c906108c 172
a14ed312 173static void terminal_ours_1 (int);
c906108c
SS
174
175/* Initialize the terminal settings we record for the inferior,
176 before we actually run the inferior. */
177
178void
fba45db2 179terminal_init_inferior_with_pgrp (int pgrp)
c906108c
SS
180{
181 if (gdb_has_a_terminal ())
182 {
2cd58942
AC
183 /* We could just as well copy our_ttystate (if we felt like
184 adding a new function serial_copy_tty_state()). */
c906108c 185 if (inferior_ttystate)
b8c9b27d 186 xfree (inferior_ttystate);
2cd58942 187 inferior_ttystate = serial_get_tty_state (stdin_serial);
c906108c
SS
188
189#ifdef PROCESS_GROUP_TYPE
190 inferior_process_group = pgrp;
191#endif
192
193 /* Make sure that next time we call terminal_inferior (which will be
c5aa993b
JM
194 before the program runs, as it needs to be), we install the new
195 process group. */
c906108c
SS
196 terminal_is_ours = 1;
197 }
198}
199
a790ad35
SC
200/* Save the terminal settings again. This is necessary for the TUI
201 when it switches to TUI or non-TUI mode; curses changes the terminal
202 and gdb must be able to restore it correctly. */
203
204void
7bda5e4a 205terminal_save_ours (void)
a790ad35
SC
206{
207 if (gdb_has_a_terminal ())
208 {
209 /* We could just as well copy our_ttystate (if we felt like adding
210 a new function serial_copy_tty_state). */
211 if (our_ttystate)
212 xfree (our_ttystate);
213 our_ttystate = serial_get_tty_state (stdin_serial);
214 }
215}
216
c906108c 217void
fba45db2 218terminal_init_inferior (void)
c906108c
SS
219{
220#ifdef PROCESS_GROUP_TYPE
221 /* This is for Lynx, and should be cleaned up by having Lynx be a separate
222 debugging target with a version of target_terminal_init_inferior which
223 passes in the process group to a generic routine which does all the work
224 (and the non-threaded child_terminal_init_inferior can just pass in
39f77062 225 inferior_ptid to the same routine). */
c906108c 226 /* We assume INFERIOR_PID is also the child's process group. */
39f77062 227 terminal_init_inferior_with_pgrp (PIDGET (inferior_ptid));
c906108c
SS
228#endif /* PROCESS_GROUP_TYPE */
229}
230
231/* Put the inferior's terminal settings into effect.
232 This is preparation for starting or resuming the inferior. */
233
234void
fba45db2 235terminal_inferior (void)
c906108c
SS
236{
237 if (gdb_has_a_terminal () && terminal_is_ours
2da6aac3 238 && inferior_ttystate != NULL
c906108c
SS
239 && inferior_thisrun_terminal == 0)
240 {
241 int result;
242
243#ifdef F_GETFL
244 /* Is there a reason this is being done twice? It happens both
c5aa993b
JM
245 places we use F_SETFL, so I'm inclined to think perhaps there
246 is some reason, however perverse. Perhaps not though... */
c906108c
SS
247 result = fcntl (0, F_SETFL, tflags_inferior);
248 result = fcntl (0, F_SETFL, tflags_inferior);
249 OOPSY ("fcntl F_SETFL");
250#endif
251
252 /* Because we were careful to not change in or out of raw mode in
c5aa993b
JM
253 terminal_ours, we will not change in our out of raw mode with
254 this call, so we don't flush any input. */
2cd58942 255 result = serial_set_tty_state (stdin_serial, inferior_ttystate);
c906108c
SS
256 OOPSY ("setting tty state");
257
258 if (!job_control)
259 {
c5aa993b 260 sigint_ours = (void (*)()) signal (SIGINT, SIG_IGN);
c906108c 261#ifdef SIGQUIT
c5aa993b 262 sigquit_ours = (void (*)()) signal (SIGQUIT, SIG_IGN);
c906108c
SS
263#endif
264 }
265
266 /* If attach_flag is set, we don't know whether we are sharing a
c5aa993b
JM
267 terminal with the inferior or not. (attaching a process
268 without a terminal is one case where we do not; attaching a
269 process which we ran from the same shell as GDB via `&' is
270 one case where we do, I think (but perhaps this is not
271 `sharing' in the sense that we need to save and restore tty
272 state)). I don't know if there is any way to tell whether we
273 are sharing a terminal. So what we do is to go through all
274 the saving and restoring of the tty state, but ignore errors
275 setting the process group, which will happen if we are not
276 sharing a terminal). */
c906108c
SS
277
278 if (job_control)
279 {
181e7f93 280 struct inferior *inf = current_inferior ();
c906108c
SS
281#ifdef HAVE_TERMIOS
282 result = tcsetpgrp (0, inferior_process_group);
181e7f93 283 if (!inf->attach_flag)
c906108c
SS
284 OOPSY ("tcsetpgrp");
285#endif
286
287#ifdef HAVE_SGTTY
288 result = ioctl (0, TIOCSPGRP, &inferior_process_group);
181e7f93 289 if (!inf->attach_flag)
c906108c
SS
290 OOPSY ("TIOCSPGRP");
291#endif
292 }
293
294 }
295 terminal_is_ours = 0;
296}
297
298/* Put some of our terminal settings into effect,
299 enough to get proper results from our output,
300 but do not change into or out of RAW mode
301 so that no input is discarded.
302
303 After doing this, either terminal_ours or terminal_inferior
304 should be called to get back to a normal state of affairs. */
305
306void
fba45db2 307terminal_ours_for_output (void)
c906108c
SS
308{
309 terminal_ours_1 (1);
310}
311
312/* Put our terminal settings into effect.
313 First record the inferior's terminal settings
314 so they can be restored properly later. */
315
316void
fba45db2 317terminal_ours (void)
c906108c
SS
318{
319 terminal_ours_1 (0);
320}
321
322/* output_only is not used, and should not be used unless we introduce
323 separate terminal_is_ours and terminal_is_ours_for_output
324 flags. */
325
326static void
fba45db2 327terminal_ours_1 (int output_only)
c906108c
SS
328{
329 /* Checking inferior_thisrun_terminal is necessary so that
330 if GDB is running in the background, it won't block trying
331 to do the ioctl()'s below. Checking gdb_has_a_terminal
332 avoids attempting all the ioctl's when running in batch. */
333 if (inferior_thisrun_terminal != 0 || gdb_has_a_terminal () == 0)
334 return;
335
336 if (!terminal_is_ours)
337 {
181e7f93
PA
338 struct inferior *inf = current_inferior ();
339
4b69c284 340#ifdef SIGTTOU
c906108c 341 /* Ignore this signal since it will happen when we try to set the
c5aa993b 342 pgrp. */
4b69c284
AC
343 void (*osigttou) () = NULL;
344#endif
c906108c
SS
345 int result;
346
347 terminal_is_ours = 1;
348
349#ifdef SIGTTOU
350 if (job_control)
c5aa993b 351 osigttou = (void (*)()) signal (SIGTTOU, SIG_IGN);
c906108c
SS
352#endif
353
354 if (inferior_ttystate)
b8c9b27d 355 xfree (inferior_ttystate);
2cd58942 356 inferior_ttystate = serial_get_tty_state (stdin_serial);
64a0ac84 357
49a834f9 358#ifdef PROCESS_GROUP_TYPE
181e7f93 359 if (!inf->attach_flag)
64a0ac84
PA
360 /* If setpgrp failed in terminal_inferior, this would give us
361 our process group instead of the inferior's. See
362 terminal_inferior for details. */
363 inferior_process_group = gdb_getpgrp ();
49a834f9 364#endif
c906108c
SS
365
366 /* Here we used to set ICANON in our ttystate, but I believe this
c5aa993b
JM
367 was an artifact from before when we used readline. Readline sets
368 the tty state when it needs to.
369 FIXME-maybe: However, query() expects non-raw mode and doesn't
370 use readline. Maybe query should use readline (on the other hand,
371 this only matters for HAVE_SGTTY, not termio or termios, I think). */
c906108c
SS
372
373 /* Set tty state to our_ttystate. We don't change in our out of raw
c5aa993b
JM
374 mode, to avoid flushing input. We need to do the same thing
375 regardless of output_only, because we don't have separate
376 terminal_is_ours and terminal_is_ours_for_output flags. It's OK,
377 though, since readline will deal with raw mode when/if it needs to.
378 */
c906108c 379
2cd58942 380 serial_noflush_set_tty_state (stdin_serial, our_ttystate,
c906108c
SS
381 inferior_ttystate);
382
383 if (job_control)
384 {
385#ifdef HAVE_TERMIOS
386 result = tcsetpgrp (0, our_process_group);
387#if 0
388 /* This fails on Ultrix with EINVAL if you run the testsuite
389 in the background with nohup, and then log out. GDB never
390 used to check for an error here, so perhaps there are other
391 such situations as well. */
392 if (result == -1)
393 fprintf_unfiltered (gdb_stderr, "[tcsetpgrp failed in terminal_ours: %s]\n",
dc672865 394 safe_strerror (errno));
c906108c
SS
395#endif
396#endif /* termios */
397
398#ifdef HAVE_SGTTY
399 result = ioctl (0, TIOCSPGRP, &our_process_group);
400#endif
401 }
402
403#ifdef SIGTTOU
404 if (job_control)
405 signal (SIGTTOU, osigttou);
406#endif
407
408 if (!job_control)
409 {
410 signal (SIGINT, sigint_ours);
411#ifdef SIGQUIT
412 signal (SIGQUIT, sigquit_ours);
413#endif
414 }
415
416#ifdef F_GETFL
417 tflags_inferior = fcntl (0, F_GETFL, 0);
418
419 /* Is there a reason this is being done twice? It happens both
c5aa993b
JM
420 places we use F_SETFL, so I'm inclined to think perhaps there
421 is some reason, however perverse. Perhaps not though... */
c906108c
SS
422 result = fcntl (0, F_SETFL, tflags_ours);
423 result = fcntl (0, F_SETFL, tflags_ours);
424#endif
c906108c
SS
425 }
426}
427
c906108c 428void
fba45db2 429term_info (char *arg, int from_tty)
c906108c
SS
430{
431 target_terminal_info (arg, from_tty);
432}
433
c906108c 434void
fba45db2 435child_terminal_info (char *args, int from_tty)
c906108c
SS
436{
437 if (!gdb_has_a_terminal ())
438 {
a3f17187 439 printf_filtered (_("This GDB does not control a terminal.\n"));
c906108c
SS
440 return;
441 }
442
a3f17187 443 printf_filtered (_("Inferior's terminal status (currently saved by GDB):\n"));
c906108c
SS
444
445 /* First the fcntl flags. */
446 {
447 int flags;
c5aa993b 448
c906108c
SS
449 flags = tflags_inferior;
450
451 printf_filtered ("File descriptor flags = ");
452
453#ifndef O_ACCMODE
454#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
455#endif
456 /* (O_ACCMODE) parens are to avoid Ultrix header file bug */
457 switch (flags & (O_ACCMODE))
458 {
c5aa993b
JM
459 case O_RDONLY:
460 printf_filtered ("O_RDONLY");
461 break;
462 case O_WRONLY:
463 printf_filtered ("O_WRONLY");
464 break;
465 case O_RDWR:
466 printf_filtered ("O_RDWR");
467 break;
c906108c
SS
468 }
469 flags &= ~(O_ACCMODE);
470
471#ifdef O_NONBLOCK
c5aa993b 472 if (flags & O_NONBLOCK)
c906108c
SS
473 printf_filtered (" | O_NONBLOCK");
474 flags &= ~O_NONBLOCK;
475#endif
c5aa993b 476
c906108c
SS
477#if defined (O_NDELAY)
478 /* If O_NDELAY and O_NONBLOCK are defined to the same thing, we will
479 print it as O_NONBLOCK, which is good cause that is what POSIX
480 has, and the flag will already be cleared by the time we get here. */
481 if (flags & O_NDELAY)
482 printf_filtered (" | O_NDELAY");
483 flags &= ~O_NDELAY;
484#endif
485
486 if (flags & O_APPEND)
487 printf_filtered (" | O_APPEND");
488 flags &= ~O_APPEND;
489
490#if defined (O_BINARY)
491 if (flags & O_BINARY)
492 printf_filtered (" | O_BINARY");
493 flags &= ~O_BINARY;
494#endif
495
496 if (flags)
497 printf_filtered (" | 0x%x", flags);
498 printf_filtered ("\n");
499 }
500
501#ifdef PROCESS_GROUP_TYPE
2acceee2
JM
502 printf_filtered ("Process group = %d\n",
503 (int) inferior_process_group);
c906108c
SS
504#endif
505
2cd58942 506 serial_print_tty_state (stdin_serial, inferior_ttystate, gdb_stdout);
c906108c
SS
507}
508\f
509/* NEW_TTY_PREFORK is called before forking a new child process,
510 so we can record the state of ttys in the child to be formed.
511 TTYNAME is null if we are to share the terminal with gdb;
512 or points to a string containing the name of the desired tty.
513
514 NEW_TTY is called in new child processes under Unix, which will
515 become debugger target processes. This actually switches to
516 the terminal specified in the NEW_TTY_PREFORK call. */
517
518void
3cb3b8df 519new_tty_prefork (const char *ttyname)
c906108c
SS
520{
521 /* Save the name for later, for determining whether we and the child
522 are sharing a tty. */
523 inferior_thisrun_terminal = ttyname;
524}
525
526void
fba45db2 527new_tty (void)
c906108c 528{
52f0bd74 529 int tty;
c906108c
SS
530
531 if (inferior_thisrun_terminal == 0)
532 return;
533#if !defined(__GO32__) && !defined(_WIN32)
534#ifdef TIOCNOTTY
535 /* Disconnect the child process from our controlling terminal. On some
536 systems (SVR4 for example), this may cause a SIGTTOU, so temporarily
537 ignore SIGTTOU. */
c5aa993b 538 tty = open ("/dev/tty", O_RDWR);
c906108c
SS
539 if (tty > 0)
540 {
541 void (*osigttou) ();
542
c5aa993b
JM
543 osigttou = (void (*)()) signal (SIGTTOU, SIG_IGN);
544 ioctl (tty, TIOCNOTTY, 0);
545 close (tty);
546 signal (SIGTTOU, osigttou);
c906108c
SS
547 }
548#endif
549
550 /* Now open the specified new terminal. */
c5aa993b 551 tty = open (inferior_thisrun_terminal, O_RDWR | O_NOCTTY);
c906108c
SS
552 if (tty == -1)
553 {
554 print_sys_errmsg (inferior_thisrun_terminal, errno);
c5aa993b 555 _exit (1);
c906108c
SS
556 }
557
558 /* Avoid use of dup2; doesn't exist on all systems. */
559 if (tty != 0)
c5aa993b
JM
560 {
561 close (0);
562 dup (tty);
563 }
c906108c 564 if (tty != 1)
c5aa993b
JM
565 {
566 close (1);
567 dup (tty);
568 }
c906108c 569 if (tty != 2)
c5aa993b
JM
570 {
571 close (2);
572 dup (tty);
573 }
83116857
TJB
574
575#ifdef TIOCSCTTY
576 /* Make tty our new controlling terminal. */
577 if (ioctl (tty, TIOCSCTTY, 0) == -1)
578 /* Mention GDB in warning because it will appear in the inferior's
579 terminal instead of GDB's. */
580 warning ("GDB: Failed to set controlling terminal: %s",
581 safe_strerror (errno));
582#endif
583
c906108c 584 if (tty > 2)
c5aa993b
JM
585 close (tty);
586#endif /* !go32 && !win32 */
c906108c
SS
587}
588\f
589/* Kill the inferior process. Make us have no inferior. */
590
c906108c 591static void
fba45db2 592kill_command (char *arg, int from_tty)
c906108c 593{
39f77062 594 /* FIXME: This should not really be inferior_ptid (or target_has_execution).
c906108c
SS
595 It should be a distinct flag that indicates that a target is active, cuz
596 some targets don't have processes! */
597
39f77062 598 if (ptid_equal (inferior_ptid, null_ptid))
8a3fe4f8 599 error (_("The program is not being run."));
c906108c 600 if (!query ("Kill the program being debugged? "))
8a3fe4f8 601 error (_("Not confirmed."));
c906108c
SS
602 target_kill ();
603
5a55c295
PA
604 /* If the current target interface claims there's still execution,
605 then don't mess with threads of other processes. */
606 if (!target_has_execution)
c5aa993b 607 {
5a55c295
PA
608 init_thread_list (); /* Destroy thread info */
609
610 /* Killing off the inferior can leave us with a core file. If
611 so, print the state we are left in. */
612 if (target_has_stack)
613 {
614 printf_filtered (_("In %s,\n"), target_longname);
615 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC);
616 }
c5aa993b 617 }
ce7d4522 618 bfd_cache_close_all ();
c906108c
SS
619}
620\f
621/* Call set_sigint_trap when you need to pass a signal on to an attached
622 process when handling SIGINT */
623
c906108c 624static void
fba45db2 625pass_signal (int signo)
c906108c
SS
626{
627#ifndef _WIN32
39f77062 628 kill (PIDGET (inferior_ptid), SIGINT);
c906108c
SS
629#endif
630}
631
c5aa993b 632static void (*osig) ();
c906108c
SS
633
634void
fba45db2 635set_sigint_trap (void)
c906108c 636{
181e7f93
PA
637 struct inferior *inf = current_inferior ();
638 if (inf->attach_flag || inferior_thisrun_terminal)
c906108c 639 {
c5aa993b 640 osig = (void (*)()) signal (SIGINT, pass_signal);
c906108c
SS
641 }
642}
643
644void
fba45db2 645clear_sigint_trap (void)
c906108c 646{
181e7f93
PA
647 struct inferior *inf = current_inferior ();
648 if (inf->attach_flag || inferior_thisrun_terminal)
c906108c
SS
649 {
650 signal (SIGINT, osig);
651 }
652}
653\f
654#if defined (SIGIO) && defined (FASYNC) && defined (FD_SET) && defined (F_SETOWN)
655static void (*old_sigio) ();
656
657static void
fba45db2 658handle_sigio (int signo)
c906108c
SS
659{
660 int numfds;
661 fd_set readfds;
662
663 signal (SIGIO, handle_sigio);
664
665 FD_ZERO (&readfds);
666 FD_SET (target_activity_fd, &readfds);
0ea3f30e 667 numfds = gdb_select (target_activity_fd + 1, &readfds, NULL, NULL, NULL);
c906108c
SS
668 if (numfds >= 0 && FD_ISSET (target_activity_fd, &readfds))
669 {
670#ifndef _WIN32
671 if ((*target_activity_function) ())
39f77062 672 kill (PIDGET (inferior_ptid), SIGINT);
c906108c
SS
673#endif
674 }
675}
676
677static int old_fcntl_flags;
678
679void
fba45db2 680set_sigio_trap (void)
c906108c
SS
681{
682 if (target_activity_function)
683 {
c5aa993b
JM
684 old_sigio = (void (*)()) signal (SIGIO, handle_sigio);
685 fcntl (target_activity_fd, F_SETOWN, getpid ());
c906108c
SS
686 old_fcntl_flags = fcntl (target_activity_fd, F_GETFL, 0);
687 fcntl (target_activity_fd, F_SETFL, old_fcntl_flags | FASYNC);
688 }
689}
690
691void
fba45db2 692clear_sigio_trap (void)
c906108c
SS
693{
694 if (target_activity_function)
695 {
696 signal (SIGIO, old_sigio);
697 fcntl (target_activity_fd, F_SETFL, old_fcntl_flags);
698 }
699}
700#else /* No SIGIO. */
701void
fba45db2 702set_sigio_trap (void)
c906108c
SS
703{
704 if (target_activity_function)
e2e0b3e5 705 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
c906108c
SS
706}
707
708void
fba45db2 709clear_sigio_trap (void)
c906108c
SS
710{
711 if (target_activity_function)
e2e0b3e5 712 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
c906108c
SS
713}
714#endif /* No SIGIO. */
715\f
716
83116857
TJB
717/* Create a new session if the inferior will run in a different tty.
718 A session is UNIX's way of grouping processes that share a controlling
719 terminal, so a new one is needed if the inferior terminal will be
720 different from GDB's.
721
722 Returns the session id of the new session, 0 if no session was created
723 or -1 if an error occurred. */
724pid_t
725create_tty_session (void)
726{
727#ifdef HAVE_SETSID
728 pid_t ret;
729
730 if (!job_control || inferior_thisrun_terminal == 0)
731 return 0;
732
733 ret = setsid ();
734 if (ret == -1)
735 warning ("Failed to create new terminal session: setsid: %s",
736 safe_strerror (errno));
737
738 return ret;
739#else
740 return 0;
741#endif /* HAVE_SETSID */
742}
743
c906108c
SS
744/* This is here because this is where we figure out whether we (probably)
745 have job control. Just using job_control only does part of it because
746 setpgid or setpgrp might not exist on a system without job control.
747 It might be considered misplaced (on the other hand, process groups and
748 job control are closely related to ttys).
749
750 For a more clean implementation, in libiberty, put a setpgid which merely
751 calls setpgrp and a setpgrp which does nothing (any system with job control
752 will have one or the other). */
753int
fba45db2 754gdb_setpgid (void)
c906108c
SS
755{
756 int retval = 0;
757
758 if (job_control)
759 {
0200359f
MK
760#if defined (HAVE_TERMIOS) || defined (TIOCGPGRP)
761#ifdef HAVE_SETPGID
762 /* The call setpgid (0, 0) is supposed to work and mean the same
763 thing as this, but on Ultrix 4.2A it fails with EPERM (and
c5aa993b 764 setpgid (getpid (), getpid ()) succeeds). */
c906108c
SS
765 retval = setpgid (getpid (), getpid ());
766#else
0200359f
MK
767#ifdef HAVE_SETPGRP
768#ifdef SETPGRP_VOID
c906108c
SS
769 retval = setpgrp ();
770#else
771 retval = setpgrp (getpid (), getpid ());
0200359f
MK
772#endif
773#endif /* HAVE_SETPGRP */
774#endif /* HAVE_SETPGID */
775#endif /* defined (HAVE_TERMIOS) || defined (TIOCGPGRP) */
c906108c 776 }
0200359f 777
c906108c
SS
778 return retval;
779}
780
0ea3f30e
DJ
781/* Get all the current tty settings (including whether we have a
782 tty at all!). We can't do this in _initialize_inflow because
783 serial_fdopen() won't work until the serial_ops_list is
784 initialized, but we don't want to do it lazily either, so
785 that we can guarantee stdin_serial is opened if there is
786 a terminal. */
787void
788initialize_stdin_serial (void)
789{
790 stdin_serial = serial_fdopen (0);
791}
792
c906108c 793void
fba45db2 794_initialize_inflow (void)
c906108c
SS
795{
796 add_info ("terminal", term_info,
1bedd215 797 _("Print inferior's saved terminal status."));
c906108c
SS
798
799 add_com ("kill", class_run, kill_command,
1bedd215 800 _("Kill execution of program being debugged."));
c906108c 801
39f77062 802 inferior_ptid = null_ptid;
c906108c
SS
803
804 terminal_is_ours = 1;
805
806 /* OK, figure out whether we have job control. If neither termios nor
807 sgtty (i.e. termio or go32), leave job_control 0. */
808
809#if defined (HAVE_TERMIOS)
810 /* Do all systems with termios have the POSIX way of identifying job
811 control? I hope so. */
812#ifdef _POSIX_JOB_CONTROL
813 job_control = 1;
814#else
815#ifdef _SC_JOB_CONTROL
816 job_control = sysconf (_SC_JOB_CONTROL);
817#else
c5aa993b
JM
818 job_control = 0; /* have to assume the worst */
819#endif /* _SC_JOB_CONTROL */
820#endif /* _POSIX_JOB_CONTROL */
821#endif /* HAVE_TERMIOS */
c906108c
SS
822
823#ifdef HAVE_SGTTY
824#ifdef TIOCGPGRP
825 job_control = 1;
826#else
827 job_control = 0;
828#endif /* TIOCGPGRP */
829#endif /* sgtty */
830}
This page took 0.696934 seconds and 4 git commands to generate.