Code cleanup: Add objfile_name accessor
[deliverable/binutils-gdb.git] / gdb / auto-load.c
CommitLineData
e2207b9a
JK
1/* GDB routines for supporting auto-loaded scripts.
2
28e7fd62 3 Copyright (C) 2012-2013 Free Software Foundation, Inc.
e2207b9a
JK
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
20#include "defs.h"
21#include "auto-load.h"
22#include "progspace.h"
23#include "python/python.h"
24#include "gdb_regex.h"
25#include "ui-out.h"
26#include "filenames.h"
27#include "command.h"
28#include "observer.h"
29#include "objfiles.h"
bf88dd68
JK
30#include "exceptions.h"
31#include "cli/cli-script.h"
32#include "gdbcmd.h"
33#include "cli/cli-decode.h"
34#include "cli/cli-setshow.h"
bccbefd2
JK
35#include "gdb_vecs.h"
36#include "readline/tilde.h"
37#include "completer.h"
6dea1fbd 38#include "observer.h"
202cbf1c 39#include "fnmatch.h"
9a950c7c 40#include "top.h"
614c279d 41#include "filestuff.h"
bf88dd68
JK
42
43/* The suffix of per-objfile scripts to auto-load as non-Python command files.
44 E.g. When the program loads libfoo.so, look for libfoo-gdb.gdb. */
45#define GDB_AUTO_FILE_NAME "-gdb.gdb"
46
47static void source_gdb_script_for_objfile (struct objfile *objfile, FILE *file,
48 const char *filename);
49
4dc84fd1
JK
50/* Value of the 'set debug auto-load' configuration variable. */
51static int debug_auto_load = 0;
52
53/* "show" command for the debug_auto_load configuration variable. */
54
55static void
56show_debug_auto_load (struct ui_file *file, int from_tty,
57 struct cmd_list_element *c, const char *value)
58{
59 fprintf_filtered (file, _("Debugging output for files "
60 "of 'set auto-load ...' is %s.\n"),
61 value);
62}
63
bf88dd68
JK
64/* User-settable option to enable/disable auto-loading of GDB_AUTO_FILE_NAME
65 scripts:
66 set auto-load gdb-scripts on|off
67 This is true if we should auto-load associated scripts when an objfile
68 is opened, false otherwise. */
69static int auto_load_gdb_scripts = 1;
70
71/* "show" command for the auto_load_gdb_scripts configuration variable. */
72
73static void
74show_auto_load_gdb_scripts (struct ui_file *file, int from_tty,
75 struct cmd_list_element *c, const char *value)
76{
77 fprintf_filtered (file, _("Auto-loading of canned sequences of commands "
78 "scripts is %s.\n"),
79 value);
80}
e2207b9a
JK
81
82/* Internal-use flag to enable/disable auto-loading.
83 This is true if we should auto-load python code when an objfile is opened,
84 false otherwise.
85
bf88dd68 86 Both auto_load_scripts && global_auto_load must be true to enable
e2207b9a
JK
87 auto-loading.
88
89 This flag exists to facilitate deferring auto-loading during start-up
90 until after ./.gdbinit has been read; it may augment the search directories
91 used to find the scripts. */
bf88dd68
JK
92int global_auto_load = 1;
93
94/* Auto-load .gdbinit file from the current directory? */
95int auto_load_local_gdbinit = 1;
96
97/* Absolute pathname to the current directory .gdbinit, if it exists. */
98char *auto_load_local_gdbinit_pathname = NULL;
99
100/* Boolean value if AUTO_LOAD_LOCAL_GDBINIT_PATHNAME has been loaded. */
101int auto_load_local_gdbinit_loaded = 0;
102
103/* "show" command for the auto_load_local_gdbinit configuration variable. */
104
105static void
106show_auto_load_local_gdbinit (struct ui_file *file, int from_tty,
107 struct cmd_list_element *c, const char *value)
108{
109 fprintf_filtered (file, _("Auto-loading of .gdbinit script from current "
110 "directory is %s.\n"),
111 value);
112}
113
7349ff92
JK
114/* Directory list from which to load auto-loaded scripts. It is not checked
115 for absolute paths but they are strongly recommended. It is initialized by
116 _initialize_auto_load. */
117static char *auto_load_dir;
118
119/* "set" command for the auto_load_dir configuration variable. */
120
121static void
122set_auto_load_dir (char *args, int from_tty, struct cmd_list_element *c)
123{
124 /* Setting the variable to "" resets it to the compile time defaults. */
125 if (auto_load_dir[0] == '\0')
126 {
127 xfree (auto_load_dir);
128 auto_load_dir = xstrdup (AUTO_LOAD_DIR);
129 }
130}
131
132/* "show" command for the auto_load_dir configuration variable. */
133
134static void
135show_auto_load_dir (struct ui_file *file, int from_tty,
136 struct cmd_list_element *c, const char *value)
137{
138 fprintf_filtered (file, _("List of directories from which to load "
139 "auto-loaded scripts is %s.\n"),
140 value);
141}
142
bccbefd2
JK
143/* Directory list safe to hold auto-loaded files. It is not checked for
144 absolute paths but they are strongly recommended. It is initialized by
145 _initialize_auto_load. */
146static char *auto_load_safe_path;
147
148/* Vector of directory elements of AUTO_LOAD_SAFE_PATH with each one normalized
149 by tilde_expand and possibly each entries has added its gdb_realpath
150 counterpart. */
151static VEC (char_ptr) *auto_load_safe_path_vec;
152
1564a261
JK
153/* Expand $datadir and $debugdir in STRING according to the rules of
154 substitute_path_component. Return vector from dirnames_to_char_ptr_vec,
155 this vector must be freed by free_char_ptr_vec by the caller. */
156
157static VEC (char_ptr) *
158auto_load_expand_dir_vars (const char *string)
159{
160 VEC (char_ptr) *dir_vec;
161 char *s;
162
163 s = xstrdup (string);
164 substitute_path_component (&s, "$datadir", gdb_datadir);
165 substitute_path_component (&s, "$debugdir", debug_file_directory);
166
167 if (debug_auto_load && strcmp (s, string) != 0)
168 fprintf_unfiltered (gdb_stdlog,
169 _("auto-load: Expanded $-variables to \"%s\".\n"), s);
170
171 dir_vec = dirnames_to_char_ptr_vec (s);
172 xfree(s);
173
174 return dir_vec;
175}
176
bccbefd2
JK
177/* Update auto_load_safe_path_vec from current AUTO_LOAD_SAFE_PATH. */
178
179static void
180auto_load_safe_path_vec_update (void)
181{
bccbefd2
JK
182 unsigned len;
183 int ix;
184
4dc84fd1
JK
185 if (debug_auto_load)
186 fprintf_unfiltered (gdb_stdlog,
187 _("auto-load: Updating directories of \"%s\".\n"),
188 auto_load_safe_path);
189
bccbefd2
JK
190 free_char_ptr_vec (auto_load_safe_path_vec);
191
1564a261 192 auto_load_safe_path_vec = auto_load_expand_dir_vars (auto_load_safe_path);
bccbefd2
JK
193 len = VEC_length (char_ptr, auto_load_safe_path_vec);
194
195 /* Apply tilde_expand and gdb_realpath to each AUTO_LOAD_SAFE_PATH_VEC
196 element. */
197 for (ix = 0; ix < len; ix++)
198 {
199 char *dir = VEC_index (char_ptr, auto_load_safe_path_vec, ix);
1564a261
JK
200 char *expanded = tilde_expand (dir);
201 char *real_path = gdb_realpath (expanded);
bccbefd2 202
1564a261 203 /* Ensure the current entry is at least tilde_expand-ed. */
bccbefd2
JK
204 VEC_replace (char_ptr, auto_load_safe_path_vec, ix, expanded);
205
4dc84fd1
JK
206 if (debug_auto_load)
207 {
208 if (strcmp (expanded, dir) == 0)
209 fprintf_unfiltered (gdb_stdlog,
210 _("auto-load: Using directory \"%s\".\n"),
211 expanded);
212 else
213 fprintf_unfiltered (gdb_stdlog,
214 _("auto-load: Resolved directory \"%s\" "
215 "as \"%s\".\n"),
216 dir, expanded);
217 }
218 xfree (dir);
219
bccbefd2
JK
220 /* If gdb_realpath returns a different content, append it. */
221 if (strcmp (real_path, expanded) == 0)
222 xfree (real_path);
223 else
4dc84fd1
JK
224 {
225 VEC_safe_push (char_ptr, auto_load_safe_path_vec, real_path);
226
227 if (debug_auto_load)
228 fprintf_unfiltered (gdb_stdlog,
229 _("auto-load: And canonicalized as \"%s\".\n"),
230 real_path);
231 }
bccbefd2
JK
232 }
233}
234
aff139ff 235/* Variable gdb_datadir has been set. Update content depending on $datadir. */
6dea1fbd
JK
236
237static void
238auto_load_gdb_datadir_changed (void)
239{
240 auto_load_safe_path_vec_update ();
241}
242
bccbefd2
JK
243/* "set" command for the auto_load_safe_path configuration variable. */
244
245static void
246set_auto_load_safe_path (char *args, int from_tty, struct cmd_list_element *c)
247{
6dea1fbd 248 /* Setting the variable to "" resets it to the compile time defaults. */
af2c1515
JK
249 if (auto_load_safe_path[0] == '\0')
250 {
251 xfree (auto_load_safe_path);
6dea1fbd 252 auto_load_safe_path = xstrdup (AUTO_LOAD_SAFE_PATH);
af2c1515
JK
253 }
254
bccbefd2
JK
255 auto_load_safe_path_vec_update ();
256}
257
258/* "show" command for the auto_load_safe_path configuration variable. */
259
260static void
261show_auto_load_safe_path (struct ui_file *file, int from_tty,
262 struct cmd_list_element *c, const char *value)
263{
f7bfa992
JK
264 const char *cs;
265
266 /* Check if user has entered either "/" or for example ":".
267 But while more complicate content like ":/foo" would still also
268 permit any location do not hide those. */
269
270 for (cs = value; *cs && (*cs == DIRNAME_SEPARATOR || IS_DIR_SEPARATOR (*cs));
271 cs++);
272 if (*cs == 0)
bccbefd2
JK
273 fprintf_filtered (file, _("Auto-load files are safe to load from any "
274 "directory.\n"));
275 else
276 fprintf_filtered (file, _("List of directories from which it is safe to "
277 "auto-load files is %s.\n"),
278 value);
279}
280
281/* "add-auto-load-safe-path" command for the auto_load_safe_path configuration
282 variable. */
283
284static void
285add_auto_load_safe_path (char *args, int from_tty)
286{
287 char *s;
288
289 if (args == NULL || *args == 0)
290 error (_("\
af2c1515
JK
291Directory argument required.\n\
292Use 'set auto-load safe-path /' for disabling the auto-load safe-path security.\
293"));
bccbefd2
JK
294
295 s = xstrprintf ("%s%c%s", auto_load_safe_path, DIRNAME_SEPARATOR, args);
296 xfree (auto_load_safe_path);
297 auto_load_safe_path = s;
298
299 auto_load_safe_path_vec_update ();
300}
301
202cbf1c
JK
302/* Implementation for filename_is_in_pattern overwriting the caller's FILENAME
303 and PATTERN. */
bccbefd2 304
202cbf1c
JK
305static int
306filename_is_in_pattern_1 (char *filename, char *pattern)
bccbefd2 307{
202cbf1c
JK
308 size_t pattern_len = strlen (pattern);
309 size_t filename_len = strlen (filename);
310
311 if (debug_auto_load)
312 fprintf_unfiltered (gdb_stdlog, _("auto-load: Matching file \"%s\" "
313 "to pattern \"%s\"\n"),
314 filename, pattern);
bccbefd2 315
202cbf1c
JK
316 /* Trim trailing slashes ("/") from PATTERN. Even for "d:\" paths as
317 trailing slashes are trimmed also from FILENAME it still matches
318 correctly. */
319 while (pattern_len && IS_DIR_SEPARATOR (pattern[pattern_len - 1]))
320 pattern_len--;
321 pattern[pattern_len] = '\0';
bccbefd2 322
1ef71717
JK
323 /* Ensure auto_load_safe_path "/" matches any FILENAME. On MS-Windows
324 platform FILENAME even after gdb_realpath does not have to start with
325 IS_DIR_SEPARATOR character, such as the 'C:\x.exe' filename. */
202cbf1c
JK
326 if (pattern_len == 0)
327 {
328 if (debug_auto_load)
329 fprintf_unfiltered (gdb_stdlog,
330 _("auto-load: Matched - empty pattern\n"));
331 return 1;
332 }
333
334 for (;;)
335 {
336 /* Trim trailing slashes ("/"). PATTERN also has slashes trimmed the
337 same way so they will match. */
338 while (filename_len && IS_DIR_SEPARATOR (filename[filename_len - 1]))
339 filename_len--;
340 filename[filename_len] = '\0';
341 if (filename_len == 0)
342 {
343 if (debug_auto_load)
344 fprintf_unfiltered (gdb_stdlog,
345 _("auto-load: Not matched - pattern \"%s\".\n"),
346 pattern);
347 return 0;
348 }
349
350 if (gdb_filename_fnmatch (pattern, filename, FNM_FILE_NAME | FNM_NOESCAPE)
351 == 0)
352 {
353 if (debug_auto_load)
354 fprintf_unfiltered (gdb_stdlog, _("auto-load: Matched - file "
355 "\"%s\" to pattern \"%s\".\n"),
356 filename, pattern);
357 return 1;
358 }
359
360 /* Trim trailing FILENAME component. */
361 while (filename_len > 0 && !IS_DIR_SEPARATOR (filename[filename_len - 1]))
362 filename_len--;
363 }
364}
365
366/* Return 1 if FILENAME matches PATTERN or if FILENAME resides in
367 a subdirectory of a directory that matches PATTERN. Return 0 otherwise.
368 gdb_realpath normalization is never done here. */
369
370static ATTRIBUTE_PURE int
371filename_is_in_pattern (const char *filename, const char *pattern)
372{
373 char *filename_copy, *pattern_copy;
374
375 filename_copy = alloca (strlen (filename) + 1);
376 strcpy (filename_copy, filename);
377 pattern_copy = alloca (strlen (pattern) + 1);
378 strcpy (pattern_copy, pattern);
1ef71717 379
202cbf1c 380 return filename_is_in_pattern_1 (filename_copy, pattern_copy);
bccbefd2
JK
381}
382
383/* Return 1 if FILENAME belongs to one of directory components of
384 AUTO_LOAD_SAFE_PATH_VEC. Return 0 otherwise.
385 auto_load_safe_path_vec_update is never called.
386 *FILENAME_REALP may be updated by gdb_realpath of FILENAME - it has to be
387 freed by the caller. */
388
389static int
390filename_is_in_auto_load_safe_path_vec (const char *filename,
391 char **filename_realp)
392{
202cbf1c 393 char *pattern;
bccbefd2
JK
394 int ix;
395
202cbf1c
JK
396 for (ix = 0; VEC_iterate (char_ptr, auto_load_safe_path_vec, ix, pattern);
397 ++ix)
398 if (*filename_realp == NULL && filename_is_in_pattern (filename, pattern))
bccbefd2
JK
399 break;
400
202cbf1c 401 if (pattern == NULL)
bccbefd2
JK
402 {
403 if (*filename_realp == NULL)
4dc84fd1
JK
404 {
405 *filename_realp = gdb_realpath (filename);
406 if (debug_auto_load && strcmp (*filename_realp, filename) != 0)
407 fprintf_unfiltered (gdb_stdlog,
408 _("auto-load: Resolved "
409 "file \"%s\" as \"%s\".\n"),
410 filename, *filename_realp);
411 }
bccbefd2 412
4dc84fd1 413 if (strcmp (*filename_realp, filename) != 0)
202cbf1c
JK
414 for (ix = 0;
415 VEC_iterate (char_ptr, auto_load_safe_path_vec, ix, pattern); ++ix)
416 if (filename_is_in_pattern (*filename_realp, pattern))
4dc84fd1 417 break;
bccbefd2
JK
418 }
419
202cbf1c 420 if (pattern != NULL)
4dc84fd1
JK
421 {
422 if (debug_auto_load)
423 fprintf_unfiltered (gdb_stdlog, _("auto-load: File \"%s\" matches "
424 "directory \"%s\".\n"),
202cbf1c 425 filename, pattern);
4dc84fd1
JK
426 return 1;
427 }
bccbefd2
JK
428
429 return 0;
430}
431
432/* Return 1 if FILENAME is located in one of the directories of
433 AUTO_LOAD_SAFE_PATH. Otherwise call warning and return 0. FILENAME does
434 not have to be an absolute path.
435
436 Existence of FILENAME is not checked. Function will still give a warning
437 even if the caller would quietly skip non-existing file in unsafe
438 directory. */
439
440int
4dc84fd1 441file_is_auto_load_safe (const char *filename, const char *debug_fmt, ...)
bccbefd2
JK
442{
443 char *filename_real = NULL;
444 struct cleanup *back_to;
9a950c7c 445 static int advice_printed = 0;
bccbefd2 446
4dc84fd1
JK
447 if (debug_auto_load)
448 {
449 va_list debug_args;
450
451 va_start (debug_args, debug_fmt);
452 vfprintf_unfiltered (gdb_stdlog, debug_fmt, debug_args);
453 va_end (debug_args);
454 }
455
bccbefd2
JK
456 back_to = make_cleanup (free_current_contents, &filename_real);
457
458 if (filename_is_in_auto_load_safe_path_vec (filename, &filename_real))
459 {
460 do_cleanups (back_to);
461 return 1;
462 }
463
464 auto_load_safe_path_vec_update ();
465 if (filename_is_in_auto_load_safe_path_vec (filename, &filename_real))
466 {
467 do_cleanups (back_to);
468 return 1;
469 }
470
471 warning (_("File \"%s\" auto-loading has been declined by your "
472 "`auto-load safe-path' set to \"%s\"."),
473 filename_real, auto_load_safe_path);
474
9a950c7c
JK
475 if (!advice_printed)
476 {
477 const char *homedir = getenv ("HOME");
478 char *homeinit;
479
480 if (homedir == NULL)
481 homedir = "$HOME";
482 homeinit = xstrprintf ("%s/%s", homedir, gdbinit);
483 make_cleanup (xfree, homeinit);
484
485 printf_filtered (_("\
486To enable execution of this file add\n\
487\tadd-auto-load-safe-path %s\n\
488line to your configuration file \"%s\".\n\
489To completely disable this security protection add\n\
490\tset auto-load safe-path /\n\
491line to your configuration file \"%s\".\n\
492For more information about this security protection see the\n\
493\"Auto-loading safe path\" section in the GDB manual. E.g., run from the shell:\n\
494\tinfo \"(gdb)Auto-loading safe path\"\n"),
495 filename_real, homeinit, homeinit);
496 advice_printed = 1;
497 }
498
bccbefd2
JK
499 do_cleanups (back_to);
500 return 0;
501}
502
bf88dd68
JK
503/* Definition of script language for GDB canned sequences of commands. */
504
505static const struct script_language script_language_gdb
506 = { GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile };
507
508static void
509source_gdb_script_for_objfile (struct objfile *objfile, FILE *file,
510 const char *filename)
511{
bccbefd2 512 int is_safe;
bf88dd68
JK
513 struct auto_load_pspace_info *pspace_info;
514 volatile struct gdb_exception e;
515
4dc84fd1
JK
516 is_safe = file_is_auto_load_safe (filename, _("auto-load: Loading canned "
517 "sequences of commands script "
518 "\"%s\" for objfile \"%s\".\n"),
4262abfb 519 filename, objfile_name (objfile));
bccbefd2 520
bf88dd68
JK
521 /* Add this script to the hash table too so "info auto-load gdb-scripts"
522 can print it. */
523 pspace_info = get_auto_load_pspace_data_for_loading (current_program_space);
bccbefd2
JK
524 maybe_add_script (pspace_info, is_safe, filename, filename,
525 &script_language_gdb);
526
527 if (!is_safe)
528 return;
bf88dd68
JK
529
530 TRY_CATCH (e, RETURN_MASK_ALL)
531 {
532 script_from_file (file, filename);
533 }
534 exception_print (gdb_stderr, e);
535}
e2207b9a
JK
536
537/* For scripts specified in .debug_gdb_scripts, multiple objfiles may load
538 the same script. There's no point in loading the script multiple times,
539 and there can be a lot of objfiles and scripts, so we keep track of scripts
540 loaded this way. */
541
542struct auto_load_pspace_info
543{
544 /* For each program space we keep track of loaded scripts. */
545 struct htab *loaded_scripts;
546
547 /* Non-zero if we've issued the warning about an auto-load script not being
548 found. We only want to issue this warning once. */
549 int script_not_found_warning_printed;
550};
551
552/* Objects of this type are stored in the loaded script hash table. */
553
554struct loaded_script
555{
556 /* Name as provided by the objfile. */
557 const char *name;
bf88dd68 558
e2207b9a
JK
559 /* Full path name or NULL if script wasn't found (or was otherwise
560 inaccessible). */
561 const char *full_path;
bf88dd68 562
bccbefd2
JK
563 /* Non-zero if this script has been loaded. */
564 int loaded;
565
bf88dd68 566 const struct script_language *language;
e2207b9a
JK
567};
568
569/* Per-program-space data key. */
570static const struct program_space_data *auto_load_pspace_data;
571
572static void
573auto_load_pspace_data_cleanup (struct program_space *pspace, void *arg)
574{
575 struct auto_load_pspace_info *info;
576
577 info = program_space_data (pspace, auto_load_pspace_data);
578 if (info != NULL)
579 {
580 if (info->loaded_scripts)
581 htab_delete (info->loaded_scripts);
582 xfree (info);
583 }
584}
585
586/* Get the current autoload data. If none is found yet, add it now. This
587 function always returns a valid object. */
588
589static struct auto_load_pspace_info *
590get_auto_load_pspace_data (struct program_space *pspace)
591{
592 struct auto_load_pspace_info *info;
593
594 info = program_space_data (pspace, auto_load_pspace_data);
595 if (info == NULL)
596 {
597 info = XZALLOC (struct auto_load_pspace_info);
598 set_program_space_data (pspace, auto_load_pspace_data, info);
599 }
600
601 return info;
602}
603
604/* Hash function for the loaded script hash. */
605
606static hashval_t
607hash_loaded_script_entry (const void *data)
608{
609 const struct loaded_script *e = data;
610
bf88dd68 611 return htab_hash_string (e->name) ^ htab_hash_pointer (e->language);
e2207b9a
JK
612}
613
614/* Equality function for the loaded script hash. */
615
616static int
617eq_loaded_script_entry (const void *a, const void *b)
618{
619 const struct loaded_script *ea = a;
620 const struct loaded_script *eb = b;
621
bf88dd68 622 return strcmp (ea->name, eb->name) == 0 && ea->language == eb->language;
e2207b9a
JK
623}
624
625/* Initialize the table to track loaded scripts.
626 Each entry is hashed by the full path name. */
627
628static void
629init_loaded_scripts_info (struct auto_load_pspace_info *pspace_info)
630{
631 /* Choose 31 as the starting size of the hash table, somewhat arbitrarily.
632 Space for each entry is obtained with one malloc so we can free them
633 easily. */
634
635 pspace_info->loaded_scripts = htab_create (31,
636 hash_loaded_script_entry,
637 eq_loaded_script_entry,
638 xfree);
639
640 pspace_info->script_not_found_warning_printed = FALSE;
641}
642
643/* Wrapper on get_auto_load_pspace_data to also allocate the hash table
644 for loading scripts. */
645
646struct auto_load_pspace_info *
647get_auto_load_pspace_data_for_loading (struct program_space *pspace)
648{
649 struct auto_load_pspace_info *info;
650
651 info = get_auto_load_pspace_data (pspace);
652 if (info->loaded_scripts == NULL)
653 init_loaded_scripts_info (info);
654
655 return info;
656}
657
bccbefd2
JK
658/* Add script NAME in LANGUAGE to hash table of PSPACE_INFO. LOADED 1 if the
659 script has been (is going to) be loaded, 0 otherwise (such as if it has not
660 been found). FULL_PATH is NULL if the script wasn't found. The result is
bf88dd68 661 true if the script was already in the hash table. */
e2207b9a
JK
662
663int
bccbefd2 664maybe_add_script (struct auto_load_pspace_info *pspace_info, int loaded,
bf88dd68
JK
665 const char *name, const char *full_path,
666 const struct script_language *language)
e2207b9a
JK
667{
668 struct htab *htab = pspace_info->loaded_scripts;
669 struct loaded_script **slot, entry;
670 int in_hash_table;
671
672 entry.name = name;
bf88dd68 673 entry.language = language;
e2207b9a
JK
674 slot = (struct loaded_script **) htab_find_slot (htab, &entry, INSERT);
675 in_hash_table = *slot != NULL;
676
677 /* If this script is not in the hash table, add it. */
678
679 if (! in_hash_table)
680 {
681 char *p;
682
683 /* Allocate all space in one chunk so it's easier to free. */
684 *slot = xmalloc (sizeof (**slot)
685 + strlen (name) + 1
686 + (full_path != NULL ? (strlen (full_path) + 1) : 0));
687 p = ((char*) *slot) + sizeof (**slot);
688 strcpy (p, name);
689 (*slot)->name = p;
690 if (full_path != NULL)
691 {
692 p += strlen (p) + 1;
693 strcpy (p, full_path);
694 (*slot)->full_path = p;
695 }
696 else
697 (*slot)->full_path = NULL;
bccbefd2 698 (*slot)->loaded = loaded;
bf88dd68 699 (*slot)->language = language;
e2207b9a
JK
700 }
701
702 return in_hash_table;
703}
704
705/* Clear the table of loaded section scripts. */
706
707static void
708clear_section_scripts (void)
709{
710 struct program_space *pspace = current_program_space;
711 struct auto_load_pspace_info *info;
712
713 info = program_space_data (pspace, auto_load_pspace_data);
714 if (info != NULL && info->loaded_scripts != NULL)
715 {
716 htab_delete (info->loaded_scripts);
717 info->loaded_scripts = NULL;
718 info->script_not_found_warning_printed = FALSE;
719 }
720}
721
e9687799
JK
722/* Look for the auto-load script in LANGUAGE associated with OBJFILE where
723 OBJFILE's gdb_realpath is REALNAME and load it. Return 1 if we found any
724 matching script, return 0 otherwise. */
e2207b9a 725
e9687799
JK
726static int
727auto_load_objfile_script_1 (struct objfile *objfile, const char *realname,
728 const struct script_language *language)
e2207b9a 729{
e2207b9a 730 char *filename, *debugfile;
e9687799 731 int len, retval;
e2207b9a
JK
732 FILE *input;
733 struct cleanup *cleanups;
734
e2207b9a 735 len = strlen (realname);
bf88dd68 736 filename = xmalloc (len + strlen (language->suffix) + 1);
e2207b9a 737 memcpy (filename, realname, len);
bf88dd68 738 strcpy (filename + len, language->suffix);
e2207b9a
JK
739
740 cleanups = make_cleanup (xfree, filename);
e2207b9a 741
614c279d 742 input = gdb_fopen_cloexec (filename, "r");
e2207b9a 743 debugfile = filename;
7349ff92
JK
744 if (debug_auto_load)
745 fprintf_unfiltered (gdb_stdlog, _("auto-load: Attempted file \"%s\" %s.\n"),
746 debugfile, input ? _("exists") : _("does not exist"));
e2207b9a 747
7349ff92 748 if (!input)
e2207b9a 749 {
7349ff92
JK
750 VEC (char_ptr) *vec;
751 int ix;
752 char *dir;
753
e2207b9a
JK
754 /* Also try the same file in a subdirectory of gdb's data
755 directory. */
7349ff92 756
1564a261 757 vec = auto_load_expand_dir_vars (auto_load_dir);
7349ff92
JK
758 make_cleanup_free_char_ptr_vec (vec);
759
760 if (debug_auto_load)
761 fprintf_unfiltered (gdb_stdlog, _("auto-load: Searching 'set auto-load "
762 "scripts-directory' path \"%s\".\n"),
763 auto_load_dir);
764
765 for (ix = 0; VEC_iterate (char_ptr, vec, ix, dir); ++ix)
766 {
1564a261
JK
767 debugfile = xmalloc (strlen (dir) + strlen (filename) + 1);
768 strcpy (debugfile, dir);
7349ff92
JK
769
770 /* FILENAME is absolute, so we don't need a "/" here. */
771 strcat (debugfile, filename);
772
773 make_cleanup (xfree, debugfile);
614c279d 774 input = gdb_fopen_cloexec (debugfile, "r");
7349ff92
JK
775 if (debug_auto_load)
776 fprintf_unfiltered (gdb_stdlog, _("auto-load: Attempted file "
777 "\"%s\" %s.\n"),
778 debugfile,
779 input ? _("exists") : _("does not exist"));
780 if (input != NULL)
781 break;
782 }
e2207b9a
JK
783 }
784
785 if (input)
786 {
e2207b9a
JK
787 make_cleanup_fclose (input);
788
e2207b9a
JK
789 /* To preserve existing behaviour we don't check for whether the
790 script was already in the table, and always load it.
791 It's highly unlikely that we'd ever load it twice,
792 and these scripts are required to be idempotent under multiple
793 loads anyway. */
bf88dd68 794 language->source_script_for_objfile (objfile, input, debugfile);
e9687799
JK
795
796 retval = 1;
797 }
798 else
799 retval = 0;
800
801 do_cleanups (cleanups);
802 return retval;
803}
804
805/* Look for the auto-load script in LANGUAGE associated with OBJFILE and load
806 it. */
807
808void
809auto_load_objfile_script (struct objfile *objfile,
810 const struct script_language *language)
811{
4262abfb 812 char *realname = gdb_realpath (objfile_name (objfile));
e9687799
JK
813 struct cleanup *cleanups = make_cleanup (xfree, realname);
814
815 if (!auto_load_objfile_script_1 (objfile, realname, language))
816 {
817 /* For Windows/DOS .exe executables, strip the .exe suffix, so that
818 FOO-gdb.gdb could be used for FOO.exe, and try again. */
819
820 size_t len = strlen (realname);
821 const size_t lexe = sizeof (".exe") - 1;
822
823 if (len > lexe && strcasecmp (realname + len - lexe, ".exe") == 0)
824 {
825 len -= lexe;
826 realname[len] = '\0';
827 if (debug_auto_load)
828 fprintf_unfiltered (gdb_stdlog, _("auto-load: Stripped .exe suffix, "
829 "retrying with \"%s\".\n"),
830 realname);
831 auto_load_objfile_script_1 (objfile, realname, language);
832 }
e2207b9a
JK
833 }
834
835 do_cleanups (cleanups);
836}
837
bf88dd68
JK
838/* Load any auto-loaded scripts for OBJFILE. */
839
840void
841load_auto_scripts_for_objfile (struct objfile *objfile)
842{
843 if (!global_auto_load)
844 return;
845
846 if (auto_load_gdb_scripts)
847 auto_load_objfile_script (objfile, &script_language_gdb);
848
849 gdbpy_load_auto_scripts_for_objfile (objfile);
850}
851
e2207b9a
JK
852/* This is a new_objfile observer callback to auto-load scripts.
853
854 Two flavors of auto-loaded scripts are supported.
855 1) based on the path to the objfile
856 2) from .debug_gdb_scripts section */
857
858static void
859auto_load_new_objfile (struct objfile *objfile)
860{
861 if (!objfile)
862 {
863 /* OBJFILE is NULL when loading a new "main" symbol-file. */
864 clear_section_scripts ();
865 return;
866 }
867
868 load_auto_scripts_for_objfile (objfile);
869}
870
871/* Collect scripts to be printed in a vec. */
872
873typedef struct loaded_script *loaded_script_ptr;
874DEF_VEC_P (loaded_script_ptr);
875
bf88dd68
JK
876struct collect_matching_scripts_data
877{
878 VEC (loaded_script_ptr) **scripts_p;
879
880 const struct script_language *language;
881};
882
e2207b9a
JK
883/* Traversal function for htab_traverse.
884 Collect the entry if it matches the regexp. */
885
886static int
887collect_matching_scripts (void **slot, void *info)
888{
889 struct loaded_script *script = *slot;
bf88dd68 890 struct collect_matching_scripts_data *data = info;
e2207b9a 891
bf88dd68
JK
892 if (script->language == data->language && re_exec (script->name))
893 VEC_safe_push (loaded_script_ptr, *data->scripts_p, script);
e2207b9a
JK
894
895 return 1;
896}
897
898/* Print SCRIPT. */
899
900static void
901print_script (struct loaded_script *script)
902{
903 struct ui_out *uiout = current_uiout;
904 struct cleanup *chain;
905
906 chain = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
907
bccbefd2 908 ui_out_field_string (uiout, "loaded", script->loaded ? "Yes" : "No");
e2207b9a
JK
909 ui_out_field_string (uiout, "script", script->name);
910 ui_out_text (uiout, "\n");
911
912 /* If the name isn't the full path, print it too. */
913 if (script->full_path != NULL
914 && strcmp (script->name, script->full_path) != 0)
915 {
916 ui_out_text (uiout, "\tfull name: ");
917 ui_out_field_string (uiout, "full_path", script->full_path);
918 ui_out_text (uiout, "\n");
919 }
920
921 do_cleanups (chain);
922}
923
924/* Helper for info_auto_load_scripts to sort the scripts by name. */
925
926static int
927sort_scripts_by_name (const void *ap, const void *bp)
928{
929 const struct loaded_script *a = *(const struct loaded_script **) ap;
930 const struct loaded_script *b = *(const struct loaded_script **) bp;
931
932 return FILENAME_CMP (a->name, b->name);
933}
934
bf88dd68
JK
935/* Special internal GDB value of auto_load_info_scripts's PATTERN identify
936 the "info auto-load XXX" command has been executed through the general
937 "info auto-load" invocation. Extra newline will be printed if needed. */
938char auto_load_info_scripts_pattern_nl[] = "";
e2207b9a 939
bf88dd68
JK
940/* Implementation for "info auto-load gdb-scripts"
941 (and "info auto-load python-scripts"). List scripts in LANGUAGE matching
942 PATTERN. FROM_TTY is the usual GDB boolean for user interactivity. */
943
944void
945auto_load_info_scripts (char *pattern, int from_tty,
946 const struct script_language *language)
e2207b9a
JK
947{
948 struct ui_out *uiout = current_uiout;
949 struct auto_load_pspace_info *pspace_info;
950 struct cleanup *script_chain;
951 VEC (loaded_script_ptr) *scripts;
952 int nr_scripts;
953
954 dont_repeat ();
955
956 pspace_info = get_auto_load_pspace_data (current_program_space);
957
958 if (pattern && *pattern)
959 {
960 char *re_err = re_comp (pattern);
961
962 if (re_err)
963 error (_("Invalid regexp: %s"), re_err);
964 }
965 else
966 {
967 re_comp ("");
968 }
969
970 /* We need to know the number of rows before we build the table.
971 Plus we want to sort the scripts by name.
972 So first traverse the hash table collecting the matching scripts. */
973
974 scripts = VEC_alloc (loaded_script_ptr, 10);
975 script_chain = make_cleanup (VEC_cleanup (loaded_script_ptr), &scripts);
976
977 if (pspace_info != NULL && pspace_info->loaded_scripts != NULL)
978 {
bf88dd68
JK
979 struct collect_matching_scripts_data data = { &scripts, language };
980
e2207b9a
JK
981 /* Pass a pointer to scripts as VEC_safe_push can realloc space. */
982 htab_traverse_noresize (pspace_info->loaded_scripts,
bf88dd68 983 collect_matching_scripts, &data);
e2207b9a
JK
984 }
985
986 nr_scripts = VEC_length (loaded_script_ptr, scripts);
bf88dd68
JK
987
988 /* Table header shifted right by preceding "gdb-scripts: " would not match
989 its columns. */
990 if (nr_scripts > 0 && pattern == auto_load_info_scripts_pattern_nl)
991 ui_out_text (uiout, "\n");
992
e2207b9a
JK
993 make_cleanup_ui_out_table_begin_end (uiout, 2, nr_scripts,
994 "AutoLoadedScriptsTable");
995
996 ui_out_table_header (uiout, 7, ui_left, "loaded", "Loaded");
997 ui_out_table_header (uiout, 70, ui_left, "script", "Script");
998 ui_out_table_body (uiout);
999
1000 if (nr_scripts > 0)
1001 {
1002 int i;
1003 loaded_script_ptr script;
1004
1005 qsort (VEC_address (loaded_script_ptr, scripts),
1006 VEC_length (loaded_script_ptr, scripts),
1007 sizeof (loaded_script_ptr), sort_scripts_by_name);
1008 for (i = 0; VEC_iterate (loaded_script_ptr, scripts, i, script); ++i)
1009 print_script (script);
1010 }
1011
1012 do_cleanups (script_chain);
1013
1014 if (nr_scripts == 0)
1015 {
1016 if (pattern && *pattern)
1017 ui_out_message (uiout, 0, "No auto-load scripts matching %s.\n",
1018 pattern);
1019 else
1020 ui_out_message (uiout, 0, "No auto-load scripts.\n");
1021 }
1022}
1023
bf88dd68
JK
1024/* Wrapper for "info auto-load gdb-scripts". */
1025
1026static void
1027info_auto_load_gdb_scripts (char *pattern, int from_tty)
1028{
1029 auto_load_info_scripts (pattern, from_tty, &script_language_gdb);
1030}
1031
1032/* Implement 'info auto-load local-gdbinit'. */
1033
1034static void
1035info_auto_load_local_gdbinit (char *args, int from_tty)
1036{
1037 if (auto_load_local_gdbinit_pathname == NULL)
1038 printf_filtered (_("Local .gdbinit file was not found.\n"));
1039 else if (auto_load_local_gdbinit_loaded)
1040 printf_filtered (_("Local .gdbinit file \"%s\" has been loaded.\n"),
1041 auto_load_local_gdbinit_pathname);
1042 else
1043 printf_filtered (_("Local .gdbinit file \"%s\" has not been loaded.\n"),
1044 auto_load_local_gdbinit_pathname);
1045}
1046
e2207b9a
JK
1047/* Return non-zero if SCRIPT_NOT_FOUND_WARNING_PRINTED of PSPACE_INFO was unset
1048 before calling this function. Always set SCRIPT_NOT_FOUND_WARNING_PRINTED
1049 of PSPACE_INFO. */
1050
1051int
1052script_not_found_warning_print (struct auto_load_pspace_info *pspace_info)
1053{
1054 int retval = !pspace_info->script_not_found_warning_printed;
1055
1056 pspace_info->script_not_found_warning_printed = 1;
1057
1058 return retval;
1059}
1060
bf88dd68
JK
1061/* The only valid "set auto-load" argument is off|0|no|disable. */
1062
1063static void
1064set_auto_load_cmd (char *args, int from_tty)
1065{
1066 struct cmd_list_element *list;
1067 size_t length;
1068
1069 /* See parse_binary_operation in use by the sub-commands. */
1070
1071 length = args ? strlen (args) : 0;
1072
1073 while (length > 0 && (args[length - 1] == ' ' || args[length - 1] == '\t'))
1074 length--;
1075
1076 if (length == 0 || (strncmp (args, "off", length) != 0
1077 && strncmp (args, "0", length) != 0
1078 && strncmp (args, "no", length) != 0
1079 && strncmp (args, "disable", length) != 0))
1080 error (_("Valid is only global 'set auto-load no'; "
1081 "otherwise check the auto-load sub-commands."));
1082
1083 for (list = *auto_load_set_cmdlist_get (); list != NULL; list = list->next)
1084 if (list->var_type == var_boolean)
1085 {
1086 gdb_assert (list->type == set_cmd);
5b9afe8a 1087 do_set_command (args, from_tty, list);
bf88dd68
JK
1088 }
1089}
1090
1091/* Initialize "set auto-load " commands prefix and return it. */
1092
1093struct cmd_list_element **
1094auto_load_set_cmdlist_get (void)
1095{
1096 static struct cmd_list_element *retval;
1097
1098 if (retval == NULL)
1099 add_prefix_cmd ("auto-load", class_maintenance, set_auto_load_cmd, _("\
1100Auto-loading specific settings.\n\
1101Configure various auto-load-specific variables such as\n\
1102automatic loading of Python scripts."),
1103 &retval, "set auto-load ",
1104 1/*allow-unknown*/, &setlist);
1105
1106 return &retval;
1107}
1108
1109/* Command "show auto-load" displays summary of all the current
1110 "show auto-load " settings. */
1111
1112static void
1113show_auto_load_cmd (char *args, int from_tty)
1114{
1115 cmd_show_list (*auto_load_show_cmdlist_get (), from_tty, "");
1116}
1117
1118/* Initialize "show auto-load " commands prefix and return it. */
1119
1120struct cmd_list_element **
1121auto_load_show_cmdlist_get (void)
1122{
1123 static struct cmd_list_element *retval;
1124
1125 if (retval == NULL)
1126 add_prefix_cmd ("auto-load", class_maintenance, show_auto_load_cmd, _("\
1127Show auto-loading specific settings.\n\
1128Show configuration of various auto-load-specific variables such as\n\
1129automatic loading of Python scripts."),
1130 &retval, "show auto-load ",
1131 0/*allow-unknown*/, &showlist);
1132
1133 return &retval;
1134}
1135
1136/* Command "info auto-load" displays whether the various auto-load files have
1137 been loaded. This is reimplementation of cmd_show_list which inserts
1138 newlines at proper places. */
1139
1140static void
1141info_auto_load_cmd (char *args, int from_tty)
1142{
1143 struct cmd_list_element *list;
1144 struct cleanup *infolist_chain;
1145 struct ui_out *uiout = current_uiout;
1146
1147 infolist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "infolist");
1148
1149 for (list = *auto_load_info_cmdlist_get (); list != NULL; list = list->next)
1150 {
1151 struct cleanup *option_chain
1152 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
1153
1154 gdb_assert (!list->prefixlist);
1155 gdb_assert (list->type == not_set_cmd);
1156
1157 ui_out_field_string (uiout, "name", list->name);
1158 ui_out_text (uiout, ": ");
1159 cmd_func (list, auto_load_info_scripts_pattern_nl, from_tty);
1160
1161 /* Close the tuple. */
1162 do_cleanups (option_chain);
1163 }
1164
1165 /* Close the tuple. */
1166 do_cleanups (infolist_chain);
1167}
1168
1169/* Initialize "info auto-load " commands prefix and return it. */
1170
1171struct cmd_list_element **
1172auto_load_info_cmdlist_get (void)
1173{
1174 static struct cmd_list_element *retval;
1175
1176 if (retval == NULL)
1177 add_prefix_cmd ("auto-load", class_info, info_auto_load_cmd, _("\
1178Print current status of auto-loaded files.\n\
1179Print whether various files like Python scripts or .gdbinit files have been\n\
1180found and/or loaded."),
1181 &retval, "info auto-load ",
1182 0/*allow-unknown*/, &infolist);
1183
1184 return &retval;
1185}
1186
e2207b9a
JK
1187void _initialize_auto_load (void);
1188
1189void
1190_initialize_auto_load (void)
1191{
bccbefd2 1192 struct cmd_list_element *cmd;
9a950c7c 1193 char *scripts_directory_help;
bccbefd2 1194
e2207b9a 1195 auto_load_pspace_data
8e260fc0
TT
1196 = register_program_space_data_with_cleanup (NULL,
1197 auto_load_pspace_data_cleanup);
e2207b9a
JK
1198
1199 observer_attach_new_objfile (auto_load_new_objfile);
1200
bf88dd68
JK
1201 add_setshow_boolean_cmd ("gdb-scripts", class_support,
1202 &auto_load_gdb_scripts, _("\
1203Enable or disable auto-loading of canned sequences of commands scripts."), _("\
1204Show whether auto-loading of canned sequences of commands scripts is enabled."),
1205 _("\
1206If enabled, canned sequences of commands are loaded when the debugger reads\n\
1207an executable or shared library.\n\
1208This options has security implications for untrusted inferiors."),
1209 NULL, show_auto_load_gdb_scripts,
1210 auto_load_set_cmdlist_get (),
1211 auto_load_show_cmdlist_get ());
1212
1213 add_cmd ("gdb-scripts", class_info, info_auto_load_gdb_scripts,
1214 _("Print the list of automatically loaded sequences of commands.\n\
1215Usage: info auto-load gdb-scripts [REGEXP]"),
1216 auto_load_info_cmdlist_get ());
1217
1218 add_setshow_boolean_cmd ("local-gdbinit", class_support,
1219 &auto_load_local_gdbinit, _("\
1220Enable or disable auto-loading of .gdbinit script in current directory."), _("\
1221Show whether auto-loading .gdbinit script in current directory is enabled."),
1222 _("\
1223If enabled, canned sequences of commands are loaded when debugger starts\n\
1224from .gdbinit file in current directory. Such files are deprecated,\n\
1225use a script associated with inferior executable file instead.\n\
1226This options has security implications for untrusted inferiors."),
1227 NULL, show_auto_load_local_gdbinit,
1228 auto_load_set_cmdlist_get (),
1229 auto_load_show_cmdlist_get ());
1230
1231 add_cmd ("local-gdbinit", class_info, info_auto_load_local_gdbinit,
1232 _("Print whether current directory .gdbinit file has been loaded.\n\
1233Usage: info auto-load local-gdbinit"),
1234 auto_load_info_cmdlist_get ());
bccbefd2 1235
7349ff92 1236 auto_load_dir = xstrdup (AUTO_LOAD_DIR);
9a950c7c
JK
1237 scripts_directory_help = xstrprintf (
1238#ifdef HAVE_PYTHON
1239 _("\
1240Automatically loaded Python scripts (named OBJFILE%s) and GDB scripts\n\
1241(named OBJFILE%s) are located in one of the directories listed by this\n\
1242option.\n\
1243%s"),
1244 GDBPY_AUTO_FILE_NAME,
1245#else
1246 _("\
1247Automatically loaded GDB scripts (named OBJFILE%s) are located in one\n\
1248of the directories listed by this option.\n\
1249%s"),
1250#endif
1251 GDB_AUTO_FILE_NAME,
1252 _("\
1253This option is ignored for the kinds of scripts \
1254having 'set auto-load ... off'.\n\
1255Directories listed here need to be present also \
1256in the 'set auto-load safe-path'\n\
1257option."));
7349ff92
JK
1258 add_setshow_optional_filename_cmd ("scripts-directory", class_support,
1259 &auto_load_dir, _("\
1260Set the list of directories from which to load auto-loaded scripts."), _("\
9a950c7c
JK
1261Show the list of directories from which to load auto-loaded scripts."),
1262 scripts_directory_help,
7349ff92
JK
1263 set_auto_load_dir, show_auto_load_dir,
1264 auto_load_set_cmdlist_get (),
1265 auto_load_show_cmdlist_get ());
9a950c7c 1266 xfree (scripts_directory_help);
7349ff92 1267
6dea1fbd 1268 auto_load_safe_path = xstrdup (AUTO_LOAD_SAFE_PATH);
bccbefd2
JK
1269 auto_load_safe_path_vec_update ();
1270 add_setshow_optional_filename_cmd ("safe-path", class_support,
1271 &auto_load_safe_path, _("\
9a950c7c
JK
1272Set the list of files and directories that are safe for auto-loading."), _("\
1273Show the list of files and directories that are safe for auto-loading."), _("\
bccbefd2
JK
1274Various files loaded automatically for the 'set auto-load ...' options must\n\
1275be located in one of the directories listed by this option. Warning will be\n\
af2c1515 1276printed and file will not be used otherwise.\n\
9a950c7c 1277You can mix both directory and filename entries.\n\
af2c1515
JK
1278Setting this parameter to an empty list resets it to its default value.\n\
1279Setting this parameter to '/' (without the quotes) allows any file\n\
9a950c7c 1280for the 'set auto-load ...' options. Each path entry can be also shell\n\
202cbf1c 1281wildcard pattern; '*' does not match directory separator.\n\
bccbefd2
JK
1282This option is ignored for the kinds of files having 'set auto-load ... off'.\n\
1283This options has security implications for untrusted inferiors."),
1284 set_auto_load_safe_path,
1285 show_auto_load_safe_path,
1286 auto_load_set_cmdlist_get (),
1287 auto_load_show_cmdlist_get ());
6dea1fbd 1288 observer_attach_gdb_datadir_changed (auto_load_gdb_datadir_changed);
bccbefd2
JK
1289
1290 cmd = add_cmd ("add-auto-load-safe-path", class_support,
1291 add_auto_load_safe_path,
1292 _("Add entries to the list of directories from which it is safe "
1293 "to auto-load files.\n\
1294See the commands 'set auto-load safe-path' and 'show auto-load safe-path' to\n\
1295access the current full list setting."),
1296 &cmdlist);
1297 set_cmd_completer (cmd, filename_completer);
4dc84fd1
JK
1298
1299 add_setshow_boolean_cmd ("auto-load", class_maintenance,
1300 &debug_auto_load, _("\
1301Set auto-load verifications debugging."), _("\
1302Show auto-load verifications debugging."), _("\
1303When non-zero, debugging output for files of 'set auto-load ...'\n\
1304is displayed."),
1305 NULL, show_debug_auto_load,
1306 &setdebuglist, &showdebuglist);
e2207b9a 1307}
This page took 0.176857 seconds and 4 git commands to generate.