2002-04-12 Don Howard <dhoward@redhat.com>
* cli/cli-cmds.c (init_cli_cmds): Add new user settable value: max_user_call_depth. (init_cmd_lists): Initialize the new value; * cli/cli-script.c (execute_user_command): Limit the call depth of user defined commands. This avoids a core-dump when user commands are infinitly recursive.
This commit is contained in:
parent
a88376a3e1
commit
20f01a4665
5 changed files with 51 additions and 0 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2002-04-12 Don Howard <dhoward@redhat.com>
|
||||||
|
|
||||||
|
* cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
|
||||||
|
max_user_call_depth.
|
||||||
|
(init_cmd_lists): Initialize the new value;
|
||||||
|
* cli/cli-script.c (execute_user_command): Limit the call depth of
|
||||||
|
user defined commands. This avoids a core-dump when user commands
|
||||||
|
are infinitly recursive.
|
||||||
|
|
||||||
2002-04-12 Kevin Buettner <kevinb@redhat.com>
|
2002-04-12 Kevin Buettner <kevinb@redhat.com>
|
||||||
|
|
||||||
* ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
|
* ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
|
||||||
|
|
5
gdb/NEWS
5
gdb/NEWS
|
@ -3,6 +3,11 @@
|
||||||
|
|
||||||
*** Changes since GDB 5.2:
|
*** Changes since GDB 5.2:
|
||||||
|
|
||||||
|
* New command "set max-user-call-depth <nnn>"
|
||||||
|
|
||||||
|
This command allows the user to limit the call depth of user-defined
|
||||||
|
commands. The default is 1024.
|
||||||
|
|
||||||
* Changes in FreeBSD/i386 native debugging.
|
* Changes in FreeBSD/i386 native debugging.
|
||||||
|
|
||||||
Support for the "generate-core-file" has been added.
|
Support for the "generate-core-file" has been added.
|
||||||
|
|
|
@ -80,6 +80,9 @@ static void shell_escape (char *, int);
|
||||||
|
|
||||||
void apropos_command (char *, int);
|
void apropos_command (char *, int);
|
||||||
|
|
||||||
|
/* Limit the call depth of user-defined commands */
|
||||||
|
int max_user_call_depth;
|
||||||
|
|
||||||
/* Define all cmd_list_elements. */
|
/* Define all cmd_list_elements. */
|
||||||
|
|
||||||
/* Chain containing all defined commands. */
|
/* Chain containing all defined commands. */
|
||||||
|
@ -606,6 +609,8 @@ show_debug (char *args, int from_tty)
|
||||||
void
|
void
|
||||||
init_cmd_lists (void)
|
init_cmd_lists (void)
|
||||||
{
|
{
|
||||||
|
max_user_call_depth = 1024;
|
||||||
|
|
||||||
cmdlist = NULL;
|
cmdlist = NULL;
|
||||||
infolist = NULL;
|
infolist = NULL;
|
||||||
enablelist = NULL;
|
enablelist = NULL;
|
||||||
|
@ -823,4 +828,11 @@ With no arguments, run an inferior shell.");
|
||||||
Argument is the name of the user defined command.\n\
|
Argument is the name of the user defined command.\n\
|
||||||
With no argument, show definitions of all user defined commands.", &showlist);
|
With no argument, show definitions of all user defined commands.", &showlist);
|
||||||
add_com ("apropos", class_support, apropos_command, "Search for commands matching a REGEXP");
|
add_com ("apropos", class_support, apropos_command, "Search for commands matching a REGEXP");
|
||||||
|
|
||||||
|
add_show_from_set (
|
||||||
|
add_set_cmd ("max-user-call-depth", no_class, var_integer,
|
||||||
|
(char *) &max_user_call_depth,
|
||||||
|
"Set the max call depth for user-defined commands.\n",
|
||||||
|
&setlist),
|
||||||
|
&showlist);
|
||||||
}
|
}
|
||||||
|
|
|
@ -247,6 +247,15 @@ execute_cmd_post_hook (struct cmd_list_element *c)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Execute the command in CMD. */
|
/* Execute the command in CMD. */
|
||||||
|
void
|
||||||
|
do_restore_user_call_depth (void * call_depth)
|
||||||
|
{
|
||||||
|
int * depth = call_depth;
|
||||||
|
/* We will be returning_to_top_level() at this point, so we want to
|
||||||
|
reset our depth. */
|
||||||
|
(*depth) = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
execute_user_command (struct cmd_list_element *c, char *args)
|
execute_user_command (struct cmd_list_element *c, char *args)
|
||||||
|
@ -254,6 +263,8 @@ execute_user_command (struct cmd_list_element *c, char *args)
|
||||||
register struct command_line *cmdlines;
|
register struct command_line *cmdlines;
|
||||||
struct cleanup *old_chain;
|
struct cleanup *old_chain;
|
||||||
enum command_control_type ret;
|
enum command_control_type ret;
|
||||||
|
static int user_call_depth = 0;
|
||||||
|
extern int max_user_call_depth;
|
||||||
|
|
||||||
old_chain = setup_user_args (args);
|
old_chain = setup_user_args (args);
|
||||||
|
|
||||||
|
@ -262,6 +273,11 @@ execute_user_command (struct cmd_list_element *c, char *args)
|
||||||
/* Null command */
|
/* Null command */
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (++user_call_depth > max_user_call_depth)
|
||||||
|
error ("Max user call depth exceeded -- command aborted\n");
|
||||||
|
|
||||||
|
old_chain = make_cleanup (do_restore_user_call_depth, &user_call_depth);
|
||||||
|
|
||||||
/* Set the instream to 0, indicating execution of a
|
/* Set the instream to 0, indicating execution of a
|
||||||
user-defined function. */
|
user-defined function. */
|
||||||
old_chain = make_cleanup (do_restore_instream_cleanup, instream);
|
old_chain = make_cleanup (do_restore_instream_cleanup, instream);
|
||||||
|
@ -277,6 +293,8 @@ execute_user_command (struct cmd_list_element *c, char *args)
|
||||||
cmdlines = cmdlines->next;
|
cmdlines = cmdlines->next;
|
||||||
}
|
}
|
||||||
do_cleanups (old_chain);
|
do_cleanups (old_chain);
|
||||||
|
|
||||||
|
user_call_depth--;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum command_control_type
|
enum command_control_type
|
||||||
|
|
|
@ -12781,6 +12781,13 @@ Display the @value{GDBN} commands used to define @var{commandname} (but
|
||||||
not its documentation). If no @var{commandname} is given, display the
|
not its documentation). If no @var{commandname} is given, display the
|
||||||
definitions for all user-defined commands.
|
definitions for all user-defined commands.
|
||||||
|
|
||||||
|
@kindex show max-user-call-depth
|
||||||
|
@kindex set max-user-call-depth
|
||||||
|
@item show max-user-call-depth
|
||||||
|
@item set max-user-call-depth
|
||||||
|
The value of @code{max-user-call-depth} controls how many levels deep a
|
||||||
|
user-defined call chain can go. Default is 1024.
|
||||||
|
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
When user-defined commands are executed, the
|
When user-defined commands are executed, the
|
||||||
|
|
Loading…
Add table
Reference in a new issue