1 /* GDB routines for supporting auto-loaded scripts.
3 Copyright (C) 2012-2020 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/>. */
22 #include "auto-load.h"
23 #include "progspace.h"
24 #include "gdb_regex.h"
26 #include "filenames.h"
28 #include "observable.h"
30 #include "cli/cli-script.h"
32 #include "cli/cli-cmds.h"
33 #include "cli/cli-decode.h"
34 #include "cli/cli-setshow.h"
35 #include "readline/tilde.h"
36 #include "completer.h"
39 #include "gdbsupport/filestuff.h"
40 #include "extension.h"
41 #include "gdb/section-scripts.h"
43 #include "gdbsupport/pathstuff.h"
44 #include "cli/cli-style.h"
46 /* The section to look in for auto-loaded scripts (in file formats that
48 Each entry in this section is a record that begins with a leading byte
49 identifying the record type.
50 At the moment we only support one record type: A leading byte of 1,
51 followed by the path of a python script to load. */
52 #define AUTO_SECTION_NAME ".debug_gdb_scripts"
54 static void maybe_print_unsupported_script_warning
55 (struct auto_load_pspace_info
*, struct objfile
*objfile
,
56 const struct extension_language_defn
*language
,
57 const char *section_name
, unsigned offset
);
59 static void maybe_print_script_not_found_warning
60 (struct auto_load_pspace_info
*, struct objfile
*objfile
,
61 const struct extension_language_defn
*language
,
62 const char *section_name
, unsigned offset
);
64 /* Value of the 'set debug auto-load' configuration variable. */
65 static bool debug_auto_load
= false;
67 /* "show" command for the debug_auto_load configuration variable. */
70 show_debug_auto_load (struct ui_file
*file
, int from_tty
,
71 struct cmd_list_element
*c
, const char *value
)
73 fprintf_filtered (file
, _("Debugging output for files "
74 "of 'set auto-load ...' is %s.\n"),
78 /* User-settable option to enable/disable auto-loading of GDB_AUTO_FILE_NAME
80 set auto-load gdb-scripts on|off
81 This is true if we should auto-load associated scripts when an objfile
82 is opened, false otherwise. */
83 static bool auto_load_gdb_scripts
= true;
85 /* "show" command for the auto_load_gdb_scripts configuration variable. */
88 show_auto_load_gdb_scripts (struct ui_file
*file
, int from_tty
,
89 struct cmd_list_element
*c
, const char *value
)
91 fprintf_filtered (file
, _("Auto-loading of canned sequences of commands "
96 /* Return non-zero if auto-loading gdb scripts is enabled. */
99 auto_load_gdb_scripts_enabled (const struct extension_language_defn
*extlang
)
101 return auto_load_gdb_scripts
;
104 /* Internal-use flag to enable/disable auto-loading.
105 This is true if we should auto-load python code when an objfile is opened,
108 Both auto_load_scripts && global_auto_load must be true to enable
111 This flag exists to facilitate deferring auto-loading during start-up
112 until after ./.gdbinit has been read; it may augment the search directories
113 used to find the scripts. */
114 bool global_auto_load
= true;
116 /* Auto-load .gdbinit file from the current directory? */
117 bool auto_load_local_gdbinit
= true;
119 /* Absolute pathname to the current directory .gdbinit, if it exists. */
120 char *auto_load_local_gdbinit_pathname
= NULL
;
122 /* if AUTO_LOAD_LOCAL_GDBINIT_PATHNAME has been loaded. */
123 bool auto_load_local_gdbinit_loaded
= false;
125 /* "show" command for the auto_load_local_gdbinit configuration variable. */
128 show_auto_load_local_gdbinit (struct ui_file
*file
, int from_tty
,
129 struct cmd_list_element
*c
, const char *value
)
131 fprintf_filtered (file
, _("Auto-loading of .gdbinit script from current "
132 "directory is %s.\n"),
136 /* Directory list from which to load auto-loaded scripts. It is not checked
137 for absolute paths but they are strongly recommended. It is initialized by
138 _initialize_auto_load. */
139 static char *auto_load_dir
;
141 /* "set" command for the auto_load_dir configuration variable. */
144 set_auto_load_dir (const char *args
, int from_tty
, struct cmd_list_element
*c
)
146 /* Setting the variable to "" resets it to the compile time defaults. */
147 if (auto_load_dir
[0] == '\0')
149 xfree (auto_load_dir
);
150 auto_load_dir
= xstrdup (AUTO_LOAD_DIR
);
154 /* "show" command for the auto_load_dir configuration variable. */
157 show_auto_load_dir (struct ui_file
*file
, int from_tty
,
158 struct cmd_list_element
*c
, const char *value
)
160 fprintf_filtered (file
, _("List of directories from which to load "
161 "auto-loaded scripts is %s.\n"),
165 /* Directory list safe to hold auto-loaded files. It is not checked for
166 absolute paths but they are strongly recommended. It is initialized by
167 _initialize_auto_load. */
168 static char *auto_load_safe_path
;
170 /* Vector of directory elements of AUTO_LOAD_SAFE_PATH with each one normalized
171 by tilde_expand and possibly each entries has added its gdb_realpath
173 std::vector
<gdb::unique_xmalloc_ptr
<char>> auto_load_safe_path_vec
;
175 /* Expand $datadir and $debugdir in STRING according to the rules of
176 substitute_path_component. */
178 static std::vector
<gdb::unique_xmalloc_ptr
<char>>
179 auto_load_expand_dir_vars (const char *string
)
181 char *s
= xstrdup (string
);
182 substitute_path_component (&s
, "$datadir", gdb_datadir
.c_str ());
183 substitute_path_component (&s
, "$debugdir", debug_file_directory
);
185 if (debug_auto_load
&& strcmp (s
, string
) != 0)
186 fprintf_unfiltered (gdb_stdlog
,
187 _("auto-load: Expanded $-variables to \"%s\".\n"), s
);
189 std::vector
<gdb::unique_xmalloc_ptr
<char>> dir_vec
190 = dirnames_to_char_ptr_vec (s
);
196 /* Update auto_load_safe_path_vec from current AUTO_LOAD_SAFE_PATH. */
199 auto_load_safe_path_vec_update (void)
202 fprintf_unfiltered (gdb_stdlog
,
203 _("auto-load: Updating directories of \"%s\".\n"),
204 auto_load_safe_path
);
206 auto_load_safe_path_vec
= auto_load_expand_dir_vars (auto_load_safe_path
);
207 size_t len
= auto_load_safe_path_vec
.size ();
209 /* Apply tilde_expand and gdb_realpath to each AUTO_LOAD_SAFE_PATH_VEC
211 for (size_t i
= 0; i
< len
; i
++)
213 gdb::unique_xmalloc_ptr
<char> &in_vec
= auto_load_safe_path_vec
[i
];
214 gdb::unique_xmalloc_ptr
<char> expanded (tilde_expand (in_vec
.get ()));
215 gdb::unique_xmalloc_ptr
<char> real_path
= gdb_realpath (expanded
.get ());
217 /* Ensure the current entry is at least tilde_expand-ed. ORIGINAL makes
218 sure we free the original string. */
219 gdb::unique_xmalloc_ptr
<char> original
= std::move (in_vec
);
220 in_vec
= std::move (expanded
);
224 if (strcmp (in_vec
.get (), original
.get ()) == 0)
225 fprintf_unfiltered (gdb_stdlog
,
226 _("auto-load: Using directory \"%s\".\n"),
229 fprintf_unfiltered (gdb_stdlog
,
230 _("auto-load: Resolved directory \"%s\" "
232 original
.get (), in_vec
.get ());
235 /* If gdb_realpath returns a different content, append it. */
236 if (strcmp (real_path
.get (), in_vec
.get ()) != 0)
239 fprintf_unfiltered (gdb_stdlog
,
240 _("auto-load: And canonicalized as \"%s\".\n"),
243 auto_load_safe_path_vec
.push_back (std::move (real_path
));
248 /* Variable gdb_datadir has been set. Update content depending on $datadir. */
251 auto_load_gdb_datadir_changed (void)
253 auto_load_safe_path_vec_update ();
256 /* "set" command for the auto_load_safe_path configuration variable. */
259 set_auto_load_safe_path (const char *args
,
260 int from_tty
, struct cmd_list_element
*c
)
262 /* Setting the variable to "" resets it to the compile time defaults. */
263 if (auto_load_safe_path
[0] == '\0')
265 xfree (auto_load_safe_path
);
266 auto_load_safe_path
= xstrdup (AUTO_LOAD_SAFE_PATH
);
269 auto_load_safe_path_vec_update ();
272 /* "show" command for the auto_load_safe_path configuration variable. */
275 show_auto_load_safe_path (struct ui_file
*file
, int from_tty
,
276 struct cmd_list_element
*c
, const char *value
)
280 /* Check if user has entered either "/" or for example ":".
281 But while more complicate content like ":/foo" would still also
282 permit any location do not hide those. */
284 for (cs
= value
; *cs
&& (*cs
== DIRNAME_SEPARATOR
|| IS_DIR_SEPARATOR (*cs
));
287 fprintf_filtered (file
, _("Auto-load files are safe to load from any "
290 fprintf_filtered (file
, _("List of directories from which it is safe to "
291 "auto-load files is %s.\n"),
295 /* "add-auto-load-safe-path" command for the auto_load_safe_path configuration
299 add_auto_load_safe_path (const char *args
, int from_tty
)
303 if (args
== NULL
|| *args
== 0)
305 Directory argument required.\n\
306 Use 'set auto-load safe-path /' for disabling the auto-load safe-path security.\
309 s
= xstrprintf ("%s%c%s", auto_load_safe_path
, DIRNAME_SEPARATOR
, args
);
310 xfree (auto_load_safe_path
);
311 auto_load_safe_path
= s
;
313 auto_load_safe_path_vec_update ();
316 /* "add-auto-load-scripts-directory" command for the auto_load_dir configuration
320 add_auto_load_dir (const char *args
, int from_tty
)
324 if (args
== NULL
|| *args
== 0)
325 error (_("Directory argument required."));
327 s
= xstrprintf ("%s%c%s", auto_load_dir
, DIRNAME_SEPARATOR
, args
);
328 xfree (auto_load_dir
);
332 /* Implementation for filename_is_in_pattern overwriting the caller's FILENAME
336 filename_is_in_pattern_1 (char *filename
, char *pattern
)
338 size_t pattern_len
= strlen (pattern
);
339 size_t filename_len
= strlen (filename
);
342 fprintf_unfiltered (gdb_stdlog
, _("auto-load: Matching file \"%s\" "
343 "to pattern \"%s\"\n"),
346 /* Trim trailing slashes ("/") from PATTERN. Even for "d:\" paths as
347 trailing slashes are trimmed also from FILENAME it still matches
349 while (pattern_len
&& IS_DIR_SEPARATOR (pattern
[pattern_len
- 1]))
351 pattern
[pattern_len
] = '\0';
353 /* Ensure auto_load_safe_path "/" matches any FILENAME. On MS-Windows
354 platform FILENAME even after gdb_realpath does not have to start with
355 IS_DIR_SEPARATOR character, such as the 'C:\x.exe' filename. */
356 if (pattern_len
== 0)
359 fprintf_unfiltered (gdb_stdlog
,
360 _("auto-load: Matched - empty pattern\n"));
366 /* Trim trailing slashes ("/"). PATTERN also has slashes trimmed the
367 same way so they will match. */
368 while (filename_len
&& IS_DIR_SEPARATOR (filename
[filename_len
- 1]))
370 filename
[filename_len
] = '\0';
371 if (filename_len
== 0)
374 fprintf_unfiltered (gdb_stdlog
,
375 _("auto-load: Not matched - pattern \"%s\".\n"),
380 if (gdb_filename_fnmatch (pattern
, filename
, FNM_FILE_NAME
| FNM_NOESCAPE
)
384 fprintf_unfiltered (gdb_stdlog
, _("auto-load: Matched - file "
385 "\"%s\" to pattern \"%s\".\n"),
390 /* Trim trailing FILENAME component. */
391 while (filename_len
> 0 && !IS_DIR_SEPARATOR (filename
[filename_len
- 1]))
396 /* Return 1 if FILENAME matches PATTERN or if FILENAME resides in
397 a subdirectory of a directory that matches PATTERN. Return 0 otherwise.
398 gdb_realpath normalization is never done here. */
400 static ATTRIBUTE_PURE
int
401 filename_is_in_pattern (const char *filename
, const char *pattern
)
403 char *filename_copy
, *pattern_copy
;
405 filename_copy
= (char *) alloca (strlen (filename
) + 1);
406 strcpy (filename_copy
, filename
);
407 pattern_copy
= (char *) alloca (strlen (pattern
) + 1);
408 strcpy (pattern_copy
, pattern
);
410 return filename_is_in_pattern_1 (filename_copy
, pattern_copy
);
413 /* Return 1 if FILENAME belongs to one of directory components of
414 AUTO_LOAD_SAFE_PATH_VEC. Return 0 otherwise.
415 auto_load_safe_path_vec_update is never called.
416 *FILENAME_REALP may be updated by gdb_realpath of FILENAME. */
419 filename_is_in_auto_load_safe_path_vec (const char *filename
,
420 gdb::unique_xmalloc_ptr
<char> *filename_realp
)
422 const char *pattern
= NULL
;
424 for (const gdb::unique_xmalloc_ptr
<char> &p
: auto_load_safe_path_vec
)
425 if (*filename_realp
== NULL
&& filename_is_in_pattern (filename
, p
.get ()))
433 if (*filename_realp
== NULL
)
435 *filename_realp
= gdb_realpath (filename
);
436 if (debug_auto_load
&& strcmp (filename_realp
->get (), filename
) != 0)
437 fprintf_unfiltered (gdb_stdlog
,
438 _("auto-load: Resolved "
439 "file \"%s\" as \"%s\".\n"),
440 filename
, filename_realp
->get ());
443 if (strcmp (filename_realp
->get (), filename
) != 0)
444 for (const gdb::unique_xmalloc_ptr
<char> &p
: auto_load_safe_path_vec
)
445 if (filename_is_in_pattern (filename_realp
->get (), p
.get ()))
455 fprintf_unfiltered (gdb_stdlog
, _("auto-load: File \"%s\" matches "
456 "directory \"%s\".\n"),
464 /* Return 1 if FILENAME is located in one of the directories of
465 AUTO_LOAD_SAFE_PATH. Otherwise call warning and return 0. FILENAME does
466 not have to be an absolute path.
468 Existence of FILENAME is not checked. Function will still give a warning
469 even if the caller would quietly skip non-existing file in unsafe
473 file_is_auto_load_safe (const char *filename
, const char *debug_fmt
, ...)
475 gdb::unique_xmalloc_ptr
<char> filename_real
;
476 static int advice_printed
= 0;
482 va_start (debug_args
, debug_fmt
);
483 vfprintf_unfiltered (gdb_stdlog
, debug_fmt
, debug_args
);
487 if (filename_is_in_auto_load_safe_path_vec (filename
, &filename_real
))
490 auto_load_safe_path_vec_update ();
491 if (filename_is_in_auto_load_safe_path_vec (filename
, &filename_real
))
494 warning (_("File \"%ps\" auto-loading has been declined by your "
495 "`auto-load safe-path' set to \"%s\"."),
496 styled_string (file_name_style
.style (), filename_real
.get ()),
497 auto_load_safe_path
);
501 const char *homedir
= getenv ("HOME");
505 std::string homeinit
= string_printf ("%s/%s", homedir
, GDBINIT
);
507 printf_filtered (_("\
508 To enable execution of this file add\n\
509 \tadd-auto-load-safe-path %s\n\
510 line to your configuration file \"%s\".\n\
511 To completely disable this security protection add\n\
512 \tset auto-load safe-path /\n\
513 line to your configuration file \"%s\".\n\
514 For more information about this security protection see the\n\
515 \"Auto-loading safe path\" section in the GDB manual. E.g., run from the shell:\n\
516 \tinfo \"(gdb)Auto-loading safe path\"\n"),
517 filename_real
.get (),
518 homeinit
.c_str (), homeinit
.c_str ());
525 /* For scripts specified in .debug_gdb_scripts, multiple objfiles may load
526 the same script. There's no point in loading the script multiple times,
527 and there can be a lot of objfiles and scripts, so we keep track of scripts
530 struct auto_load_pspace_info
532 auto_load_pspace_info () = default;
533 ~auto_load_pspace_info ();
535 /* For each program space we keep track of loaded scripts, both when
536 specified as file names and as scripts to be executed directly. */
537 struct htab
*loaded_script_files
= nullptr;
538 struct htab
*loaded_script_texts
= nullptr;
540 /* Non-zero if we've issued the warning about an auto-load script not being
541 supported. We only want to issue this warning once. */
542 bool unsupported_script_warning_printed
= false;
544 /* Non-zero if we've issued the warning about an auto-load script not being
545 found. We only want to issue this warning once. */
546 bool script_not_found_warning_printed
= false;
549 /* Objects of this type are stored in the loaded_script hash table. */
553 /* Name as provided by the objfile. */
556 /* Full path name or NULL if script wasn't found (or was otherwise
557 inaccessible), or NULL for loaded_script_texts. */
558 const char *full_path
;
560 /* Non-zero if this script has been loaded. */
563 const struct extension_language_defn
*language
;
566 /* Per-program-space data key. */
567 static const struct program_space_key
<struct auto_load_pspace_info
>
568 auto_load_pspace_data
;
570 auto_load_pspace_info::~auto_load_pspace_info ()
572 if (loaded_script_files
)
573 htab_delete (loaded_script_files
);
574 if (loaded_script_texts
)
575 htab_delete (loaded_script_texts
);
578 /* Get the current autoload data. If none is found yet, add it now. This
579 function always returns a valid object. */
581 static struct auto_load_pspace_info
*
582 get_auto_load_pspace_data (struct program_space
*pspace
)
584 struct auto_load_pspace_info
*info
;
586 info
= auto_load_pspace_data
.get (pspace
);
588 info
= auto_load_pspace_data
.emplace (pspace
);
593 /* Hash function for the loaded script hash. */
596 hash_loaded_script_entry (const void *data
)
598 const struct loaded_script
*e
= (const struct loaded_script
*) data
;
600 return htab_hash_string (e
->name
) ^ htab_hash_pointer (e
->language
);
603 /* Equality function for the loaded script hash. */
606 eq_loaded_script_entry (const void *a
, const void *b
)
608 const struct loaded_script
*ea
= (const struct loaded_script
*) a
;
609 const struct loaded_script
*eb
= (const struct loaded_script
*) b
;
611 return strcmp (ea
->name
, eb
->name
) == 0 && ea
->language
== eb
->language
;
614 /* Initialize the table to track loaded scripts.
615 Each entry is hashed by the full path name. */
618 init_loaded_scripts_info (struct auto_load_pspace_info
*pspace_info
)
620 /* Choose 31 as the starting size of the hash table, somewhat arbitrarily.
621 Space for each entry is obtained with one malloc so we can free them
624 pspace_info
->loaded_script_files
= htab_create (31,
625 hash_loaded_script_entry
,
626 eq_loaded_script_entry
,
628 pspace_info
->loaded_script_texts
= htab_create (31,
629 hash_loaded_script_entry
,
630 eq_loaded_script_entry
,
633 pspace_info
->unsupported_script_warning_printed
= false;
634 pspace_info
->script_not_found_warning_printed
= false;
637 /* Wrapper on get_auto_load_pspace_data to also allocate the hash table
638 for loading scripts. */
640 struct auto_load_pspace_info
*
641 get_auto_load_pspace_data_for_loading (struct program_space
*pspace
)
643 struct auto_load_pspace_info
*info
;
645 info
= get_auto_load_pspace_data (pspace
);
646 if (info
->loaded_script_files
== NULL
)
647 init_loaded_scripts_info (info
);
652 /* Add script file NAME in LANGUAGE to hash table of PSPACE_INFO.
653 LOADED 1 if the script has been (is going to) be loaded, 0 otherwise
654 (such as if it has not been found).
655 FULL_PATH is NULL if the script wasn't found.
656 The result is true if the script was already in the hash table. */
659 maybe_add_script_file (struct auto_load_pspace_info
*pspace_info
, int loaded
,
660 const char *name
, const char *full_path
,
661 const struct extension_language_defn
*language
)
663 struct htab
*htab
= pspace_info
->loaded_script_files
;
664 struct loaded_script
**slot
, entry
;
668 entry
.language
= language
;
669 slot
= (struct loaded_script
**) htab_find_slot (htab
, &entry
, INSERT
);
670 in_hash_table
= *slot
!= NULL
;
672 /* If this script is not in the hash table, add it. */
678 /* Allocate all space in one chunk so it's easier to free. */
679 *slot
= ((struct loaded_script
*)
680 xmalloc (sizeof (**slot
)
682 + (full_path
!= NULL
? (strlen (full_path
) + 1) : 0)));
683 p
= ((char*) *slot
) + sizeof (**slot
);
686 if (full_path
!= NULL
)
689 strcpy (p
, full_path
);
690 (*slot
)->full_path
= p
;
693 (*slot
)->full_path
= NULL
;
694 (*slot
)->loaded
= loaded
;
695 (*slot
)->language
= language
;
698 return in_hash_table
;
701 /* Add script contents NAME in LANGUAGE to hash table of PSPACE_INFO.
702 LOADED 1 if the script has been (is going to) be loaded, 0 otherwise
703 (such as if it has not been found).
704 The result is true if the script was already in the hash table. */
707 maybe_add_script_text (struct auto_load_pspace_info
*pspace_info
,
708 int loaded
, const char *name
,
709 const struct extension_language_defn
*language
)
711 struct htab
*htab
= pspace_info
->loaded_script_texts
;
712 struct loaded_script
**slot
, entry
;
716 entry
.language
= language
;
717 slot
= (struct loaded_script
**) htab_find_slot (htab
, &entry
, INSERT
);
718 in_hash_table
= *slot
!= NULL
;
720 /* If this script is not in the hash table, add it. */
726 /* Allocate all space in one chunk so it's easier to free. */
727 *slot
= ((struct loaded_script
*)
728 xmalloc (sizeof (**slot
) + strlen (name
) + 1));
729 p
= ((char*) *slot
) + sizeof (**slot
);
732 (*slot
)->full_path
= NULL
;
733 (*slot
)->loaded
= loaded
;
734 (*slot
)->language
= language
;
737 return in_hash_table
;
740 /* Clear the table of loaded section scripts. */
743 clear_section_scripts (void)
745 struct program_space
*pspace
= current_program_space
;
746 struct auto_load_pspace_info
*info
;
748 info
= auto_load_pspace_data
.get (pspace
);
749 if (info
!= NULL
&& info
->loaded_script_files
!= NULL
)
750 auto_load_pspace_data
.clear (pspace
);
753 /* Look for the auto-load script in LANGUAGE associated with OBJFILE where
754 OBJFILE's gdb_realpath is REALNAME and load it. Return 1 if we found any
755 matching script, return 0 otherwise. */
758 auto_load_objfile_script_1 (struct objfile
*objfile
, const char *realname
,
759 const struct extension_language_defn
*language
)
761 const char *debugfile
;
763 const char *suffix
= ext_lang_auto_load_suffix (language
);
765 std::string filename
= std::string (realname
) + suffix
;
767 gdb_file_up input
= gdb_fopen_cloexec (filename
.c_str (), "r");
768 debugfile
= filename
.c_str ();
770 fprintf_unfiltered (gdb_stdlog
, _("auto-load: Attempted file \"%s\" %s.\n"),
771 debugfile
, input
? _("exists") : _("does not exist"));
773 std::string debugfile_holder
;
776 /* Also try the same file in a subdirectory of gdb's data
779 std::vector
<gdb::unique_xmalloc_ptr
<char>> vec
780 = auto_load_expand_dir_vars (auto_load_dir
);
783 fprintf_unfiltered (gdb_stdlog
, _("auto-load: Searching 'set auto-load "
784 "scripts-directory' path \"%s\".\n"),
787 for (const gdb::unique_xmalloc_ptr
<char> &dir
: vec
)
789 /* FILENAME is absolute, so we don't need a "/" here. */
790 debugfile_holder
= dir
.get () + filename
;
791 debugfile
= debugfile_holder
.c_str ();
793 input
= gdb_fopen_cloexec (debugfile
, "r");
795 fprintf_unfiltered (gdb_stdlog
, _("auto-load: Attempted file "
798 input
? _("exists") : _("does not exist"));
807 struct auto_load_pspace_info
*pspace_info
;
810 = file_is_auto_load_safe (debugfile
,
811 _("auto-load: Loading %s script \"%s\""
812 " by extension for objfile \"%s\".\n"),
813 ext_lang_name (language
),
814 debugfile
, objfile_name (objfile
));
816 /* Add this script to the hash table too so
817 "info auto-load ${lang}-scripts" can print it. */
819 = get_auto_load_pspace_data_for_loading (current_program_space
);
820 maybe_add_script_file (pspace_info
, is_safe
, debugfile
, debugfile
,
823 /* To preserve existing behaviour we don't check for whether the
824 script was already in the table, and always load it.
825 It's highly unlikely that we'd ever load it twice,
826 and these scripts are required to be idempotent under multiple
830 objfile_script_sourcer_func
*sourcer
831 = ext_lang_objfile_script_sourcer (language
);
833 /* We shouldn't get here if support for the language isn't
834 compiled in. And the extension language is required to implement
836 gdb_assert (sourcer
!= NULL
);
837 sourcer (language
, objfile
, input
.get (), debugfile
);
848 /* Look for the auto-load script in LANGUAGE associated with OBJFILE and load
852 auto_load_objfile_script (struct objfile
*objfile
,
853 const struct extension_language_defn
*language
)
855 gdb::unique_xmalloc_ptr
<char> realname
856 = gdb_realpath (objfile_name (objfile
));
858 if (!auto_load_objfile_script_1 (objfile
, realname
.get (), language
))
860 /* For Windows/DOS .exe executables, strip the .exe suffix, so that
861 FOO-gdb.gdb could be used for FOO.exe, and try again. */
863 size_t len
= strlen (realname
.get ());
864 const size_t lexe
= sizeof (".exe") - 1;
866 if (len
> lexe
&& strcasecmp (realname
.get () + len
- lexe
, ".exe") == 0)
869 realname
.get ()[len
] = '\0';
871 fprintf_unfiltered (gdb_stdlog
, _("auto-load: Stripped .exe suffix, "
872 "retrying with \"%s\".\n"),
874 auto_load_objfile_script_1 (objfile
, realname
.get (), language
);
879 /* Subroutine of source_section_scripts to simplify it.
880 Load FILE as a script in extension language LANGUAGE.
881 The script is from section SECTION_NAME in OBJFILE at offset OFFSET. */
884 source_script_file (struct auto_load_pspace_info
*pspace_info
,
885 struct objfile
*objfile
,
886 const struct extension_language_defn
*language
,
887 const char *section_name
, unsigned int offset
,
891 objfile_script_sourcer_func
*sourcer
;
893 /* Skip this script if support is not compiled in. */
894 sourcer
= ext_lang_objfile_script_sourcer (language
);
897 /* We don't throw an error, the program is still debuggable. */
898 maybe_print_unsupported_script_warning (pspace_info
, objfile
, language
,
899 section_name
, offset
);
900 /* We *could* still try to open it, but there's no point. */
901 maybe_add_script_file (pspace_info
, 0, file
, NULL
, language
);
905 /* Skip this script if auto-loading it has been disabled. */
906 if (!ext_lang_auto_load_enabled (language
))
908 /* No message is printed, just skip it. */
912 gdb::optional
<open_script
> opened
= find_and_open_script (file
,
917 if (!file_is_auto_load_safe (opened
->full_path
.get (),
918 _("auto-load: Loading %s script "
919 "\"%s\" from section \"%s\" of "
920 "objfile \"%s\".\n"),
921 ext_lang_name (language
),
922 opened
->full_path
.get (),
923 section_name
, objfile_name (objfile
)))
928 /* If one script isn't found it's not uncommon for more to not be
929 found either. We don't want to print a message for each script,
930 too much noise. Instead, we print the warning once and tell the
931 user how to find the list of scripts that weren't loaded.
932 We don't throw an error, the program is still debuggable.
934 IWBN if complaints.c were more general-purpose. */
936 maybe_print_script_not_found_warning (pspace_info
, objfile
, language
,
937 section_name
, offset
);
940 in_hash_table
= maybe_add_script_file (pspace_info
, bool (opened
), file
,
942 ? opened
->full_path
.get ()
946 /* If this file is not currently loaded, load it. */
947 if (opened
&& !in_hash_table
)
948 sourcer (language
, objfile
, opened
->stream
.get (),
949 opened
->full_path
.get ());
952 /* Subroutine of source_section_scripts to simplify it.
953 Execute SCRIPT as a script in extension language LANG.
954 The script is from section SECTION_NAME in OBJFILE at offset OFFSET. */
957 execute_script_contents (struct auto_load_pspace_info
*pspace_info
,
958 struct objfile
*objfile
,
959 const struct extension_language_defn
*language
,
960 const char *section_name
, unsigned int offset
,
963 objfile_script_executor_func
*executor
;
964 const char *newline
, *script_text
;
966 int is_safe
, in_hash_table
;
968 /* The first line of the script is the name of the script.
969 It must not contain any kind of space character. */
971 newline
= strchr (script
, '\n');
972 std::string name_holder
;
977 /* Put the name in a buffer and validate it. */
978 name_holder
= std::string (script
, newline
- script
);
979 buf
= name_holder
.c_str ();
980 for (p
= buf
; *p
!= '\0'; ++p
)
985 /* We don't allow nameless scripts, they're not helpful to the user. */
986 if (p
!= buf
&& *p
== '\0')
991 /* We don't throw an error, the program is still debuggable. */
993 Missing/bad script name in entry at offset %u in section %s\n\
995 offset
, section_name
,
996 styled_string (file_name_style
.style (),
997 objfile_name (objfile
)));
1000 script_text
= newline
+ 1;
1002 /* Skip this script if support is not compiled in. */
1003 executor
= ext_lang_objfile_script_executor (language
);
1004 if (executor
== NULL
)
1006 /* We don't throw an error, the program is still debuggable. */
1007 maybe_print_unsupported_script_warning (pspace_info
, objfile
, language
,
1008 section_name
, offset
);
1009 maybe_add_script_text (pspace_info
, 0, name
, language
);
1013 /* Skip this script if auto-loading it has been disabled. */
1014 if (!ext_lang_auto_load_enabled (language
))
1016 /* No message is printed, just skip it. */
1020 is_safe
= file_is_auto_load_safe (objfile_name (objfile
),
1021 _("auto-load: Loading %s script "
1022 "\"%s\" from section \"%s\" of "
1023 "objfile \"%s\".\n"),
1024 ext_lang_name (language
), name
,
1025 section_name
, objfile_name (objfile
));
1027 in_hash_table
= maybe_add_script_text (pspace_info
, is_safe
, name
, language
);
1029 /* If this file is not currently loaded, load it. */
1030 if (is_safe
&& !in_hash_table
)
1031 executor (language
, objfile
, name
, script_text
);
1034 /* Load scripts specified in OBJFILE.
1035 START,END delimit a buffer containing a list of nul-terminated
1037 SECTION_NAME is used in error messages.
1039 Scripts specified as file names are found per normal "source -s" command
1040 processing. First the script is looked for in $cwd. If not found there
1041 the source search path is used.
1043 The section contains a list of path names of script files to load or
1044 actual script contents. Each entry is nul-terminated. */
1047 source_section_scripts (struct objfile
*objfile
, const char *section_name
,
1048 const char *start
, const char *end
)
1051 struct auto_load_pspace_info
*pspace_info
;
1053 pspace_info
= get_auto_load_pspace_data_for_loading (current_program_space
);
1055 for (p
= start
; p
< end
; ++p
)
1058 const struct extension_language_defn
*language
;
1059 unsigned int offset
= p
- start
;
1064 case SECTION_SCRIPT_ID_PYTHON_FILE
:
1065 case SECTION_SCRIPT_ID_PYTHON_TEXT
:
1066 language
= get_ext_lang_defn (EXT_LANG_PYTHON
);
1068 case SECTION_SCRIPT_ID_SCHEME_FILE
:
1069 case SECTION_SCRIPT_ID_SCHEME_TEXT
:
1070 language
= get_ext_lang_defn (EXT_LANG_GUILE
);
1073 warning (_("Invalid entry in %s section"), section_name
);
1074 /* We could try various heuristics to find the next valid entry,
1075 but it's safer to just punt. */
1080 while (p
< end
&& *p
!= '\0')
1084 warning (_("Non-nul-terminated entry in %s at offset %u"),
1085 section_name
, offset
);
1086 /* Don't load/execute it. */
1092 case SECTION_SCRIPT_ID_PYTHON_FILE
:
1093 case SECTION_SCRIPT_ID_SCHEME_FILE
:
1096 warning (_("Empty entry in %s at offset %u"),
1097 section_name
, offset
);
1100 source_script_file (pspace_info
, objfile
, language
,
1101 section_name
, offset
, entry
);
1103 case SECTION_SCRIPT_ID_PYTHON_TEXT
:
1104 case SECTION_SCRIPT_ID_SCHEME_TEXT
:
1105 execute_script_contents (pspace_info
, objfile
, language
,
1106 section_name
, offset
, entry
);
1112 /* Load scripts specified in section SECTION_NAME of OBJFILE. */
1115 auto_load_section_scripts (struct objfile
*objfile
, const char *section_name
)
1117 bfd
*abfd
= objfile
->obfd
;
1118 asection
*scripts_sect
;
1119 bfd_byte
*data
= NULL
;
1121 scripts_sect
= bfd_get_section_by_name (abfd
, section_name
);
1122 if (scripts_sect
== NULL
1123 || (bfd_section_flags (scripts_sect
) & SEC_HAS_CONTENTS
) == 0)
1126 if (!bfd_get_full_section_contents (abfd
, scripts_sect
, &data
))
1127 warning (_("Couldn't read %s section of %ps"),
1129 styled_string (file_name_style
.style (),
1130 bfd_get_filename (abfd
)));
1133 gdb::unique_xmalloc_ptr
<bfd_byte
> data_holder (data
);
1135 char *p
= (char *) data
;
1136 source_section_scripts (objfile
, section_name
, p
,
1137 p
+ bfd_section_size (scripts_sect
));
1141 /* Load any auto-loaded scripts for OBJFILE. */
1144 load_auto_scripts_for_objfile (struct objfile
*objfile
)
1146 /* Return immediately if auto-loading has been globally disabled.
1147 This is to handle sequencing of operations during gdb startup.
1148 Also return immediately if OBJFILE was not created from a file
1149 on the local filesystem. */
1150 if (!global_auto_load
1151 || (objfile
->flags
& OBJF_NOT_FILENAME
) != 0
1152 || is_target_filename (objfile
->original_name
))
1155 /* Load any extension language scripts for this objfile.
1156 E.g., foo-gdb.gdb, foo-gdb.py. */
1157 auto_load_ext_lang_scripts_for_objfile (objfile
);
1159 /* Load any scripts mentioned in AUTO_SECTION_NAME (.debug_gdb_scripts). */
1160 auto_load_section_scripts (objfile
, AUTO_SECTION_NAME
);
1163 /* This is a new_objfile observer callback to auto-load scripts.
1165 Two flavors of auto-loaded scripts are supported.
1166 1) based on the path to the objfile
1167 2) from .debug_gdb_scripts section */
1170 auto_load_new_objfile (struct objfile
*objfile
)
1174 /* OBJFILE is NULL when loading a new "main" symbol-file. */
1175 clear_section_scripts ();
1179 load_auto_scripts_for_objfile (objfile
);
1182 /* Collect scripts to be printed in a vec. */
1184 struct collect_matching_scripts_data
1186 collect_matching_scripts_data (std::vector
<loaded_script
*> *scripts_p_
,
1187 const extension_language_defn
*language_
)
1188 : scripts_p (scripts_p_
), language (language_
)
1191 std::vector
<loaded_script
*> *scripts_p
;
1192 const struct extension_language_defn
*language
;
1195 /* Traversal function for htab_traverse.
1196 Collect the entry if it matches the regexp. */
1199 collect_matching_scripts (void **slot
, void *info
)
1201 struct loaded_script
*script
= (struct loaded_script
*) *slot
;
1202 struct collect_matching_scripts_data
*data
1203 = (struct collect_matching_scripts_data
*) info
;
1205 if (script
->language
== data
->language
&& re_exec (script
->name
))
1206 data
->scripts_p
->push_back (script
);
1214 print_script (struct loaded_script
*script
)
1216 struct ui_out
*uiout
= current_uiout
;
1218 ui_out_emit_tuple
tuple_emitter (uiout
, NULL
);
1220 uiout
->field_string ("loaded", script
->loaded
? "Yes" : "No");
1221 uiout
->field_string ("script", script
->name
);
1224 /* If the name isn't the full path, print it too. */
1225 if (script
->full_path
!= NULL
1226 && strcmp (script
->name
, script
->full_path
) != 0)
1228 uiout
->text ("\tfull name: ");
1229 uiout
->field_string ("full_path", script
->full_path
);
1234 /* Helper for info_auto_load_scripts to sort the scripts by name. */
1237 sort_scripts_by_name (loaded_script
*a
, loaded_script
*b
)
1239 return FILENAME_CMP (a
->name
, b
->name
) < 0;
1242 /* Special internal GDB value of auto_load_info_scripts's PATTERN identify
1243 the "info auto-load XXX" command has been executed through the general
1244 "info auto-load" invocation. Extra newline will be printed if needed. */
1245 char auto_load_info_scripts_pattern_nl
[] = "";
1247 /* Subroutine of auto_load_info_scripts to simplify it.
1251 print_scripts (const std::vector
<loaded_script
*> &scripts
)
1253 for (loaded_script
*script
: scripts
)
1254 print_script (script
);
1257 /* Implementation for "info auto-load gdb-scripts"
1258 (and "info auto-load python-scripts"). List scripts in LANGUAGE matching
1259 PATTERN. FROM_TTY is the usual GDB boolean for user interactivity. */
1262 auto_load_info_scripts (const char *pattern
, int from_tty
,
1263 const struct extension_language_defn
*language
)
1265 struct ui_out
*uiout
= current_uiout
;
1266 struct auto_load_pspace_info
*pspace_info
;
1270 pspace_info
= get_auto_load_pspace_data (current_program_space
);
1272 if (pattern
&& *pattern
)
1274 char *re_err
= re_comp (pattern
);
1277 error (_("Invalid regexp: %s"), re_err
);
1284 /* We need to know the number of rows before we build the table.
1285 Plus we want to sort the scripts by name.
1286 So first traverse the hash table collecting the matching scripts. */
1288 std::vector
<loaded_script
*> script_files
, script_texts
;
1290 if (pspace_info
!= NULL
&& pspace_info
->loaded_script_files
!= NULL
)
1292 collect_matching_scripts_data
data (&script_files
, language
);
1294 /* Pass a pointer to scripts as VEC_safe_push can realloc space. */
1295 htab_traverse_noresize (pspace_info
->loaded_script_files
,
1296 collect_matching_scripts
, &data
);
1298 std::sort (script_files
.begin (), script_files
.end (),
1299 sort_scripts_by_name
);
1302 if (pspace_info
!= NULL
&& pspace_info
->loaded_script_texts
!= NULL
)
1304 collect_matching_scripts_data
data (&script_texts
, language
);
1306 /* Pass a pointer to scripts as VEC_safe_push can realloc space. */
1307 htab_traverse_noresize (pspace_info
->loaded_script_texts
,
1308 collect_matching_scripts
, &data
);
1310 std::sort (script_texts
.begin (), script_texts
.end (),
1311 sort_scripts_by_name
);
1314 int nr_scripts
= script_files
.size () + script_texts
.size ();
1316 /* Table header shifted right by preceding "gdb-scripts: " would not match
1318 if (nr_scripts
> 0 && pattern
== auto_load_info_scripts_pattern_nl
)
1322 ui_out_emit_table
table_emitter (uiout
, 2, nr_scripts
,
1323 "AutoLoadedScriptsTable");
1325 uiout
->table_header (7, ui_left
, "loaded", "Loaded");
1326 uiout
->table_header (70, ui_left
, "script", "Script");
1327 uiout
->table_body ();
1329 print_scripts (script_files
);
1330 print_scripts (script_texts
);
1333 if (nr_scripts
== 0)
1335 if (pattern
&& *pattern
)
1336 uiout
->message ("No auto-load scripts matching %s.\n", pattern
);
1338 uiout
->message ("No auto-load scripts.\n");
1342 /* Wrapper for "info auto-load gdb-scripts". */
1345 info_auto_load_gdb_scripts (const char *pattern
, int from_tty
)
1347 auto_load_info_scripts (pattern
, from_tty
, &extension_language_gdb
);
1350 /* Implement 'info auto-load local-gdbinit'. */
1353 info_auto_load_local_gdbinit (const char *args
, int from_tty
)
1355 if (auto_load_local_gdbinit_pathname
== NULL
)
1356 printf_filtered (_("Local .gdbinit file was not found.\n"));
1357 else if (auto_load_local_gdbinit_loaded
)
1358 printf_filtered (_("Local .gdbinit file \"%ps\" has been loaded.\n"),
1359 styled_string (file_name_style
.style (),
1360 auto_load_local_gdbinit_pathname
));
1362 printf_filtered (_("Local .gdbinit file \"%ps\" has not been loaded.\n"),
1363 styled_string (file_name_style
.style (),
1364 auto_load_local_gdbinit_pathname
));
1367 /* Print an "unsupported script" warning if it has not already been printed.
1368 The script is in language LANGUAGE at offset OFFSET in section SECTION_NAME
1372 maybe_print_unsupported_script_warning
1373 (struct auto_load_pspace_info
*pspace_info
,
1374 struct objfile
*objfile
, const struct extension_language_defn
*language
,
1375 const char *section_name
, unsigned offset
)
1377 if (!pspace_info
->unsupported_script_warning_printed
)
1380 Unsupported auto-load script at offset %u in section %s\n\
1382 Use `info auto-load %s-scripts [REGEXP]' to list them."),
1383 offset
, section_name
,
1384 styled_string (file_name_style
.style (),
1385 objfile_name (objfile
)),
1386 ext_lang_name (language
));
1387 pspace_info
->unsupported_script_warning_printed
= true;
1391 /* Return non-zero if SCRIPT_NOT_FOUND_WARNING_PRINTED of PSPACE_INFO was unset
1392 before calling this function. Always set SCRIPT_NOT_FOUND_WARNING_PRINTED
1396 maybe_print_script_not_found_warning
1397 (struct auto_load_pspace_info
*pspace_info
,
1398 struct objfile
*objfile
, const struct extension_language_defn
*language
,
1399 const char *section_name
, unsigned offset
)
1401 if (!pspace_info
->script_not_found_warning_printed
)
1404 Missing auto-load script at offset %u in section %s\n\
1406 Use `info auto-load %s-scripts [REGEXP]' to list them."),
1407 offset
, section_name
,
1408 styled_string (file_name_style
.style (),
1409 objfile_name (objfile
)),
1410 ext_lang_name (language
));
1411 pspace_info
->script_not_found_warning_printed
= true;
1415 /* The only valid "set auto-load" argument is off|0|no|disable. */
1418 set_auto_load_cmd (const char *args
, int from_tty
)
1420 struct cmd_list_element
*list
;
1423 /* See parse_binary_operation in use by the sub-commands. */
1425 length
= args
? strlen (args
) : 0;
1427 while (length
> 0 && (args
[length
- 1] == ' ' || args
[length
- 1] == '\t'))
1430 if (length
== 0 || (strncmp (args
, "off", length
) != 0
1431 && strncmp (args
, "0", length
) != 0
1432 && strncmp (args
, "no", length
) != 0
1433 && strncmp (args
, "disable", length
) != 0))
1434 error (_("Valid is only global 'set auto-load no'; "
1435 "otherwise check the auto-load sub-commands."));
1437 for (list
= *auto_load_set_cmdlist_get (); list
!= NULL
; list
= list
->next
)
1438 if (list
->var_type
== var_boolean
)
1440 gdb_assert (list
->type
== set_cmd
);
1441 do_set_command (args
, from_tty
, list
);
1445 /* Initialize "set auto-load " commands prefix and return it. */
1447 struct cmd_list_element
**
1448 auto_load_set_cmdlist_get (void)
1450 static struct cmd_list_element
*retval
;
1453 add_prefix_cmd ("auto-load", class_maintenance
, set_auto_load_cmd
, _("\
1454 Auto-loading specific settings.\n\
1455 Configure various auto-load-specific variables such as\n\
1456 automatic loading of Python scripts."),
1457 &retval
, "set auto-load ",
1458 1/*allow-unknown*/, &setlist
);
1463 /* Command "show auto-load" displays summary of all the current
1464 "show auto-load " settings. */
1467 show_auto_load_cmd (const char *args
, int from_tty
)
1469 cmd_show_list (*auto_load_show_cmdlist_get (), from_tty
, "");
1472 /* Initialize "show auto-load " commands prefix and return it. */
1474 struct cmd_list_element
**
1475 auto_load_show_cmdlist_get (void)
1477 static struct cmd_list_element
*retval
;
1480 add_prefix_cmd ("auto-load", class_maintenance
, show_auto_load_cmd
, _("\
1481 Show auto-loading specific settings.\n\
1482 Show configuration of various auto-load-specific variables such as\n\
1483 automatic loading of Python scripts."),
1484 &retval
, "show auto-load ",
1485 0/*allow-unknown*/, &showlist
);
1490 /* Command "info auto-load" displays whether the various auto-load files have
1491 been loaded. This is reimplementation of cmd_show_list which inserts
1492 newlines at proper places. */
1495 info_auto_load_cmd (const char *args
, int from_tty
)
1497 struct cmd_list_element
*list
;
1498 struct ui_out
*uiout
= current_uiout
;
1500 ui_out_emit_tuple
tuple_emitter (uiout
, "infolist");
1502 for (list
= *auto_load_info_cmdlist_get (); list
!= NULL
; list
= list
->next
)
1504 ui_out_emit_tuple
option_emitter (uiout
, "option");
1506 gdb_assert (!list
->prefixlist
);
1507 gdb_assert (list
->type
== not_set_cmd
);
1509 uiout
->field_string ("name", list
->name
);
1511 cmd_func (list
, auto_load_info_scripts_pattern_nl
, from_tty
);
1515 /* Initialize "info auto-load " commands prefix and return it. */
1517 struct cmd_list_element
**
1518 auto_load_info_cmdlist_get (void)
1520 static struct cmd_list_element
*retval
;
1523 add_prefix_cmd ("auto-load", class_info
, info_auto_load_cmd
, _("\
1524 Print current status of auto-loaded files.\n\
1525 Print whether various files like Python scripts or .gdbinit files have been\n\
1526 found and/or loaded."),
1527 &retval
, "info auto-load ",
1528 0/*allow-unknown*/, &infolist
);
1533 void _initialize_auto_load ();
1535 _initialize_auto_load ()
1537 struct cmd_list_element
*cmd
;
1538 char *scripts_directory_help
, *gdb_name_help
, *python_name_help
;
1539 char *guile_name_help
;
1542 gdb::observers::new_objfile
.attach (auto_load_new_objfile
);
1544 add_setshow_boolean_cmd ("gdb-scripts", class_support
,
1545 &auto_load_gdb_scripts
, _("\
1546 Enable or disable auto-loading of canned sequences of commands scripts."), _("\
1547 Show whether auto-loading of canned sequences of commands scripts is enabled."),
1549 If enabled, canned sequences of commands are loaded when the debugger reads\n\
1550 an executable or shared library.\n\
1551 This option has security implications for untrusted inferiors."),
1552 NULL
, show_auto_load_gdb_scripts
,
1553 auto_load_set_cmdlist_get (),
1554 auto_load_show_cmdlist_get ());
1556 add_cmd ("gdb-scripts", class_info
, info_auto_load_gdb_scripts
,
1557 _("Print the list of automatically loaded sequences of commands.\n\
1558 Usage: info auto-load gdb-scripts [REGEXP]"),
1559 auto_load_info_cmdlist_get ());
1561 add_setshow_boolean_cmd ("local-gdbinit", class_support
,
1562 &auto_load_local_gdbinit
, _("\
1563 Enable or disable auto-loading of .gdbinit script in current directory."), _("\
1564 Show whether auto-loading .gdbinit script in current directory is enabled."),
1566 If enabled, canned sequences of commands are loaded when debugger starts\n\
1567 from .gdbinit file in current directory. Such files are deprecated,\n\
1568 use a script associated with inferior executable file instead.\n\
1569 This option has security implications for untrusted inferiors."),
1570 NULL
, show_auto_load_local_gdbinit
,
1571 auto_load_set_cmdlist_get (),
1572 auto_load_show_cmdlist_get ());
1574 add_cmd ("local-gdbinit", class_info
, info_auto_load_local_gdbinit
,
1575 _("Print whether current directory .gdbinit file has been loaded.\n\
1576 Usage: info auto-load local-gdbinit"),
1577 auto_load_info_cmdlist_get ());
1579 auto_load_dir
= xstrdup (AUTO_LOAD_DIR
);
1581 suffix
= ext_lang_auto_load_suffix (get_ext_lang_defn (EXT_LANG_GDB
));
1584 GDB scripts: OBJFILE%s\n"),
1586 python_name_help
= NULL
;
1588 suffix
= ext_lang_auto_load_suffix (get_ext_lang_defn (EXT_LANG_PYTHON
));
1591 Python scripts: OBJFILE%s\n"),
1594 guile_name_help
= NULL
;
1596 suffix
= ext_lang_auto_load_suffix (get_ext_lang_defn (EXT_LANG_GUILE
));
1599 Guile scripts: OBJFILE%s\n"),
1602 scripts_directory_help
1604 Automatically loaded scripts are located in one of the directories listed\n\
1610 This option is ignored for the kinds of scripts \
1611 having 'set auto-load ... off'.\n\
1612 Directories listed here need to be present also \
1613 in the 'set auto-load safe-path'\n\
1616 python_name_help
? python_name_help
: "",
1617 guile_name_help
? guile_name_help
: "");
1619 add_setshow_optional_filename_cmd ("scripts-directory", class_support
,
1620 &auto_load_dir
, _("\
1621 Set the list of directories from which to load auto-loaded scripts."), _("\
1622 Show the list of directories from which to load auto-loaded scripts."),
1623 scripts_directory_help
,
1624 set_auto_load_dir
, show_auto_load_dir
,
1625 auto_load_set_cmdlist_get (),
1626 auto_load_show_cmdlist_get ());
1627 xfree (scripts_directory_help
);
1628 xfree (python_name_help
);
1629 xfree (gdb_name_help
);
1630 xfree (guile_name_help
);
1632 auto_load_safe_path
= xstrdup (AUTO_LOAD_SAFE_PATH
);
1633 auto_load_safe_path_vec_update ();
1634 add_setshow_optional_filename_cmd ("safe-path", class_support
,
1635 &auto_load_safe_path
, _("\
1636 Set the list of files and directories that are safe for auto-loading."), _("\
1637 Show the list of files and directories that are safe for auto-loading."), _("\
1638 Various files loaded automatically for the 'set auto-load ...' options must\n\
1639 be located in one of the directories listed by this option. Warning will be\n\
1640 printed and file will not be used otherwise.\n\
1641 You can mix both directory and filename entries.\n\
1642 Setting this parameter to an empty list resets it to its default value.\n\
1643 Setting this parameter to '/' (without the quotes) allows any file\n\
1644 for the 'set auto-load ...' options. Each path entry can be also shell\n\
1645 wildcard pattern; '*' does not match directory separator.\n\
1646 This option is ignored for the kinds of files having 'set auto-load ... off'.\n\
1647 This option has security implications for untrusted inferiors."),
1648 set_auto_load_safe_path
,
1649 show_auto_load_safe_path
,
1650 auto_load_set_cmdlist_get (),
1651 auto_load_show_cmdlist_get ());
1652 gdb::observers::gdb_datadir_changed
.attach (auto_load_gdb_datadir_changed
);
1654 cmd
= add_cmd ("add-auto-load-safe-path", class_support
,
1655 add_auto_load_safe_path
,
1656 _("Add entries to the list of directories from which it is safe "
1657 "to auto-load files.\n\
1658 See the commands 'set auto-load safe-path' and 'show auto-load safe-path' to\n\
1659 access the current full list setting."),
1661 set_cmd_completer (cmd
, filename_completer
);
1663 cmd
= add_cmd ("add-auto-load-scripts-directory", class_support
,
1665 _("Add entries to the list of directories from which to load "
1666 "auto-loaded scripts.\n\
1667 See the commands 'set auto-load scripts-directory' and\n\
1668 'show auto-load scripts-directory' to access the current full list setting."),
1670 set_cmd_completer (cmd
, filename_completer
);
1672 add_setshow_boolean_cmd ("auto-load", class_maintenance
,
1673 &debug_auto_load
, _("\
1674 Set auto-load verifications debugging."), _("\
1675 Show auto-load verifications debugging."), _("\
1676 When non-zero, debugging output for files of 'set auto-load ...'\n\
1678 NULL
, show_debug_auto_load
,
1679 &setdebuglist
, &showdebuglist
);