1 /* Everything about signal catchpoints, for GDB.
3 Copyright (C) 2011-2021 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "arch-utils.h"
23 #include "breakpoint.h"
29 #include "cli/cli-utils.h"
30 #include "completer.h"
31 #include "cli/cli-style.h"
32 #include "cli/cli-decode.h"
36 #define INTERNAL_SIGNAL(x) ((x) == GDB_SIGNAL_TRAP || (x) == GDB_SIGNAL_INT)
38 /* An instance of this type is used to represent a signal catchpoint.
39 A breakpoint is really of this type iff its ops pointer points to
40 SIGNAL_CATCHPOINT_OPS. */
42 struct signal_catchpoint
: public breakpoint
44 /* Signal numbers used for the 'catch signal' feature. If no signal
45 has been specified for filtering, it is empty. Otherwise,
46 it holds a list of all signals to be caught. */
48 std::vector
<gdb_signal
> signals_to_be_caught
;
50 /* If SIGNALS_TO_BE_CAUGHT is empty, then all "ordinary" signals are
51 caught. If CATCH_ALL is true, then internal signals are caught
52 as well. If SIGNALS_TO_BE_CAUGHT is not empty, then this field
58 /* The breakpoint_ops structure to be used in signal catchpoints. */
60 static struct breakpoint_ops signal_catchpoint_ops
;
62 /* Count of each signal. */
64 static unsigned int signal_catch_counts
[GDB_SIGNAL_LAST
];
68 /* A convenience wrapper for gdb_signal_to_name that returns the
69 integer value if the name is not known. */
72 signal_to_name_or_int (enum gdb_signal sig
)
74 const char *result
= gdb_signal_to_name (sig
);
76 if (strcmp (result
, "?") == 0)
77 result
= plongest (sig
);
84 /* Implement the "insert_location" breakpoint_ops method for signal
88 signal_catchpoint_insert_location (struct bp_location
*bl
)
90 struct signal_catchpoint
*c
= (struct signal_catchpoint
*) bl
->owner
;
92 if (!c
->signals_to_be_caught
.empty ())
94 for (gdb_signal iter
: c
->signals_to_be_caught
)
95 ++signal_catch_counts
[iter
];
99 for (int i
= 0; i
< GDB_SIGNAL_LAST
; ++i
)
101 if (c
->catch_all
|| !INTERNAL_SIGNAL (i
))
102 ++signal_catch_counts
[i
];
106 signal_catch_update (signal_catch_counts
);
111 /* Implement the "remove_location" breakpoint_ops method for signal
115 signal_catchpoint_remove_location (struct bp_location
*bl
,
116 enum remove_bp_reason reason
)
118 struct signal_catchpoint
*c
= (struct signal_catchpoint
*) bl
->owner
;
120 if (!c
->signals_to_be_caught
.empty ())
122 for (gdb_signal iter
: c
->signals_to_be_caught
)
124 gdb_assert (signal_catch_counts
[iter
] > 0);
125 --signal_catch_counts
[iter
];
130 for (int i
= 0; i
< GDB_SIGNAL_LAST
; ++i
)
132 if (c
->catch_all
|| !INTERNAL_SIGNAL (i
))
134 gdb_assert (signal_catch_counts
[i
] > 0);
135 --signal_catch_counts
[i
];
140 signal_catch_update (signal_catch_counts
);
145 /* Implement the "breakpoint_hit" breakpoint_ops method for signal
149 signal_catchpoint_breakpoint_hit (const struct bp_location
*bl
,
150 const address_space
*aspace
,
152 const struct target_waitstatus
*ws
)
154 const struct signal_catchpoint
*c
155 = (const struct signal_catchpoint
*) bl
->owner
;
156 gdb_signal signal_number
;
158 if (ws
->kind
!= TARGET_WAITKIND_STOPPED
)
161 signal_number
= ws
->value
.sig
;
163 /* If we are catching specific signals in this breakpoint, then we
164 must guarantee that the called signal is the same signal we are
166 if (!c
->signals_to_be_caught
.empty ())
168 for (gdb_signal iter
: c
->signals_to_be_caught
)
169 if (signal_number
== iter
)
175 return c
->catch_all
|| !INTERNAL_SIGNAL (signal_number
);
178 /* Implement the "print_it" breakpoint_ops method for signal
181 static enum print_stop_action
182 signal_catchpoint_print_it (bpstat bs
)
184 struct breakpoint
*b
= bs
->breakpoint_at
;
185 struct target_waitstatus last
;
186 const char *signal_name
;
187 struct ui_out
*uiout
= current_uiout
;
189 get_last_target_status (nullptr, nullptr, &last
);
191 signal_name
= signal_to_name_or_int (last
.value
.sig
);
193 annotate_catchpoint (b
->number
);
194 maybe_print_thread_hit_breakpoint (uiout
);
196 printf_filtered (_("Catchpoint %d (signal %s), "), b
->number
, signal_name
);
198 return PRINT_SRC_AND_LOC
;
201 /* Implement the "print_one" breakpoint_ops method for signal
205 signal_catchpoint_print_one (struct breakpoint
*b
,
206 struct bp_location
**last_loc
)
208 struct signal_catchpoint
*c
= (struct signal_catchpoint
*) b
;
209 struct value_print_options opts
;
210 struct ui_out
*uiout
= current_uiout
;
212 get_user_print_options (&opts
);
214 /* Field 4, the address, is omitted (which makes the columns
215 not line up too nicely with the headers, but the effect
216 is relatively readable). */
217 if (opts
.addressprint
)
218 uiout
->field_skip ("addr");
221 if (c
->signals_to_be_caught
.size () > 1)
222 uiout
->text ("signals \"");
224 uiout
->text ("signal \"");
226 if (!c
->signals_to_be_caught
.empty ())
231 for (gdb_signal iter
: c
->signals_to_be_caught
)
233 const char *name
= signal_to_name_or_int (iter
);
241 uiout
->field_string ("what", text
);
244 uiout
->field_string ("what",
245 c
->catch_all
? "<any signal>" : "<standard signals>",
246 metadata_style
.style ());
249 if (uiout
->is_mi_like_p ())
250 uiout
->field_string ("catch-type", "signal");
253 /* Implement the "print_mention" breakpoint_ops method for signal
257 signal_catchpoint_print_mention (struct breakpoint
*b
)
259 struct signal_catchpoint
*c
= (struct signal_catchpoint
*) b
;
261 if (!c
->signals_to_be_caught
.empty ())
263 if (c
->signals_to_be_caught
.size () > 1)
264 printf_filtered (_("Catchpoint %d (signals"), b
->number
);
266 printf_filtered (_("Catchpoint %d (signal"), b
->number
);
268 for (gdb_signal iter
: c
->signals_to_be_caught
)
270 const char *name
= signal_to_name_or_int (iter
);
272 printf_filtered (" %s", name
);
274 printf_filtered (")");
276 else if (c
->catch_all
)
277 printf_filtered (_("Catchpoint %d (any signal)"), b
->number
);
279 printf_filtered (_("Catchpoint %d (standard signals)"), b
->number
);
282 /* Implement the "print_recreate" breakpoint_ops method for signal
286 signal_catchpoint_print_recreate (struct breakpoint
*b
, struct ui_file
*fp
)
288 struct signal_catchpoint
*c
= (struct signal_catchpoint
*) b
;
290 fprintf_unfiltered (fp
, "catch signal");
292 if (!c
->signals_to_be_caught
.empty ())
294 for (gdb_signal iter
: c
->signals_to_be_caught
)
295 fprintf_unfiltered (fp
, " %s", signal_to_name_or_int (iter
));
297 else if (c
->catch_all
)
298 fprintf_unfiltered (fp
, " all");
299 fputc_unfiltered ('\n', fp
);
302 /* Implement the "explains_signal" breakpoint_ops method for signal
306 signal_catchpoint_explains_signal (struct breakpoint
*b
, enum gdb_signal sig
)
311 /* Create a new signal catchpoint. TEMPFLAG is true if this should be
312 a temporary catchpoint. FILTER is the list of signals to catch; it
313 can be empty, meaning all signals. CATCH_ALL is a flag indicating
314 whether signals used internally by gdb should be caught; it is only
315 valid if FILTER is NULL. If FILTER is empty and CATCH_ALL is zero,
316 then internal signals like SIGTRAP are not caught. */
319 create_signal_catchpoint (int tempflag
, std::vector
<gdb_signal
> &&filter
,
322 struct gdbarch
*gdbarch
= get_current_arch ();
324 std::unique_ptr
<signal_catchpoint
> c (new signal_catchpoint ());
325 init_catchpoint (c
.get (), gdbarch
, tempflag
, NULL
, &signal_catchpoint_ops
);
326 c
->signals_to_be_caught
= std::move (filter
);
327 c
->catch_all
= catch_all
;
329 install_breakpoint (0, std::move (c
), 1);
333 /* Splits the argument using space as delimiter. Returns a filter
334 list, which is empty if no filtering is required. */
336 static std::vector
<gdb_signal
>
337 catch_signal_split_args (const char *arg
, bool *catch_all
)
339 std::vector
<gdb_signal
> result
;
345 gdb_signal signal_number
;
348 std::string one_arg
= extract_arg (&arg
);
349 if (one_arg
.empty ())
352 /* Check for the special flag "all". */
353 if (one_arg
== "all")
355 arg
= skip_spaces (arg
);
356 if (*arg
!= '\0' || !first
)
357 error (_("'all' cannot be caught with other signals"));
359 gdb_assert (result
.empty ());
365 /* Check if the user provided a signal name or a number. */
366 num
= (int) strtol (one_arg
.c_str (), &endptr
, 0);
368 signal_number
= gdb_signal_from_command (num
);
371 signal_number
= gdb_signal_from_name (one_arg
.c_str ());
372 if (signal_number
== GDB_SIGNAL_UNKNOWN
)
373 error (_("Unknown signal name '%s'."), one_arg
.c_str ());
376 result
.push_back (signal_number
);
379 result
.shrink_to_fit ();
383 /* Implement the "catch signal" command. */
386 catch_signal_command (const char *arg
, int from_tty
,
387 struct cmd_list_element
*command
)
390 bool catch_all
= false;
391 std::vector
<gdb_signal
> filter
;
393 tempflag
= command
->context () == CATCH_TEMPORARY
;
395 arg
= skip_spaces (arg
);
397 /* The allowed syntax is:
399 catch signal <name | number> [<name | number> ... <name | number>]
401 Let's check if there's a signal name. */
404 filter
= catch_signal_split_args (arg
, &catch_all
);
406 create_signal_catchpoint (tempflag
, std::move (filter
), catch_all
);
410 initialize_signal_catchpoint_ops (void)
412 struct breakpoint_ops
*ops
;
414 initialize_breakpoint_ops ();
416 ops
= &signal_catchpoint_ops
;
417 *ops
= base_breakpoint_ops
;
418 ops
->insert_location
= signal_catchpoint_insert_location
;
419 ops
->remove_location
= signal_catchpoint_remove_location
;
420 ops
->breakpoint_hit
= signal_catchpoint_breakpoint_hit
;
421 ops
->print_it
= signal_catchpoint_print_it
;
422 ops
->print_one
= signal_catchpoint_print_one
;
423 ops
->print_mention
= signal_catchpoint_print_mention
;
424 ops
->print_recreate
= signal_catchpoint_print_recreate
;
425 ops
->explains_signal
= signal_catchpoint_explains_signal
;
428 void _initialize_break_catch_sig ();
430 _initialize_break_catch_sig ()
432 initialize_signal_catchpoint_ops ();
434 add_catch_command ("signal", _("\
435 Catch signals by their names and/or numbers.\n\
436 Usage: catch signal [[NAME|NUMBER] [NAME|NUMBER]...|all]\n\
437 Arguments say which signals to catch. If no arguments\n\
438 are given, every \"normal\" signal will be caught.\n\
439 The argument \"all\" means to also catch signals used by GDB.\n\
440 Arguments, if given, should be one or more signal names\n\
441 (if your system supports that), or signal numbers."),
442 catch_signal_command
,