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