Fix gdb.base/infcall-nested-structs-c++.exp with Clang
[deliverable/binutils-gdb.git] / gdb / auto-load.c
CommitLineData
e2207b9a
JK
1/* GDB routines for supporting auto-loaded scripts.
2
b811d2c2 3 Copyright (C) 2012-2020 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"
9f050062 21#include <ctype.h>
e2207b9a 22#include "auto-load.h"
4de283e4
TT
23#include "progspace.h"
24#include "gdb_regex.h"
25#include "ui-out.h"
26#include "filenames.h"
27#include "command.h"
28#include "observable.h"
29#include "objfiles.h"
30#include "cli/cli-script.h"
31#include "gdbcmd.h"
5b2bf947 32#include "cli/cli-cmds.h"
bf88dd68
JK
33#include "cli/cli-decode.h"
34#include "cli/cli-setshow.h"
4de283e4 35#include "readline/tilde.h"
d55e5aa6 36#include "completer.h"
d55e5aa6 37#include "fnmatch.h"
d55e5aa6 38#include "top.h"
268a13a5 39#include "gdbsupport/filestuff.h"
4de283e4
TT
40#include "extension.h"
41#include "gdb/section-scripts.h"
42#include <algorithm>
268a13a5 43#include "gdbsupport/pathstuff.h"
9d636d67 44#include "cli/cli-style.h"
bf88dd68 45
5b2bf947
DE
46/* The section to look in for auto-loaded scripts (in file formats that
47 support sections).
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"
53
9f050062
DE
54static 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);
6dddc817 58
9f050062
DE
59static 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);
bf88dd68 63
4dc84fd1 64/* Value of the 'set debug auto-load' configuration variable. */
491144b5 65static bool debug_auto_load = false;
4dc84fd1
JK
66
67/* "show" command for the debug_auto_load configuration variable. */
68
69static void
70show_debug_auto_load (struct ui_file *file, int from_tty,
71 struct cmd_list_element *c, const char *value)
72{
73 fprintf_filtered (file, _("Debugging output for files "
74 "of 'set auto-load ...' is %s.\n"),
75 value);
76}
77
bf88dd68
JK
78/* User-settable option to enable/disable auto-loading of GDB_AUTO_FILE_NAME
79 scripts:
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. */
491144b5 83static bool auto_load_gdb_scripts = true;
bf88dd68
JK
84
85/* "show" command for the auto_load_gdb_scripts configuration variable. */
86
87static void
88show_auto_load_gdb_scripts (struct ui_file *file, int from_tty,
89 struct cmd_list_element *c, const char *value)
90{
91 fprintf_filtered (file, _("Auto-loading of canned sequences of commands "
92 "scripts is %s.\n"),
93 value);
94}
e2207b9a 95
5b2bf947
DE
96/* Return non-zero if auto-loading gdb scripts is enabled. */
97
6dddc817
DE
98int
99auto_load_gdb_scripts_enabled (const struct extension_language_defn *extlang)
5b2bf947
DE
100{
101 return auto_load_gdb_scripts;
102}
103
e2207b9a
JK
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,
106 false otherwise.
107
bf88dd68 108 Both auto_load_scripts && global_auto_load must be true to enable
e2207b9a
JK
109 auto-loading.
110
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. */
491144b5 114bool global_auto_load = true;
bf88dd68
JK
115
116/* Auto-load .gdbinit file from the current directory? */
491144b5 117bool auto_load_local_gdbinit = true;
bf88dd68
JK
118
119/* Absolute pathname to the current directory .gdbinit, if it exists. */
120char *auto_load_local_gdbinit_pathname = NULL;
121
491144b5
CB
122/* if AUTO_LOAD_LOCAL_GDBINIT_PATHNAME has been loaded. */
123bool auto_load_local_gdbinit_loaded = false;
bf88dd68
JK
124
125/* "show" command for the auto_load_local_gdbinit configuration variable. */
126
127static void
128show_auto_load_local_gdbinit (struct ui_file *file, int from_tty,
129 struct cmd_list_element *c, const char *value)
130{
131 fprintf_filtered (file, _("Auto-loading of .gdbinit script from current "
132 "directory is %s.\n"),
133 value);
134}
135
7349ff92
JK
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. */
139static char *auto_load_dir;
140
141/* "set" command for the auto_load_dir configuration variable. */
142
143static void
eb4c3f4a 144set_auto_load_dir (const char *args, int from_tty, struct cmd_list_element *c)
7349ff92
JK
145{
146 /* Setting the variable to "" resets it to the compile time defaults. */
147 if (auto_load_dir[0] == '\0')
148 {
149 xfree (auto_load_dir);
150 auto_load_dir = xstrdup (AUTO_LOAD_DIR);
151 }
152}
153
154/* "show" command for the auto_load_dir configuration variable. */
155
156static void
157show_auto_load_dir (struct ui_file *file, int from_tty,
158 struct cmd_list_element *c, const char *value)
159{
160 fprintf_filtered (file, _("List of directories from which to load "
161 "auto-loaded scripts is %s.\n"),
162 value);
163}
164
bccbefd2
JK
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. */
168static char *auto_load_safe_path;
169
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
172 counterpart. */
e80aaf61 173std::vector<gdb::unique_xmalloc_ptr<char>> auto_load_safe_path_vec;
bccbefd2 174
1564a261 175/* Expand $datadir and $debugdir in STRING according to the rules of
e80aaf61 176 substitute_path_component. */
1564a261 177
e80aaf61 178static std::vector<gdb::unique_xmalloc_ptr<char>>
1564a261
JK
179auto_load_expand_dir_vars (const char *string)
180{
e80aaf61 181 char *s = xstrdup (string);
f2aec7f6 182 substitute_path_component (&s, "$datadir", gdb_datadir.c_str ());
1564a261
JK
183 substitute_path_component (&s, "$debugdir", debug_file_directory);
184
185 if (debug_auto_load && strcmp (s, string) != 0)
186 fprintf_unfiltered (gdb_stdlog,
187 _("auto-load: Expanded $-variables to \"%s\".\n"), s);
188
e80aaf61
SM
189 std::vector<gdb::unique_xmalloc_ptr<char>> dir_vec
190 = dirnames_to_char_ptr_vec (s);
1564a261
JK
191 xfree(s);
192
193 return dir_vec;
194}
195
bccbefd2
JK
196/* Update auto_load_safe_path_vec from current AUTO_LOAD_SAFE_PATH. */
197
198static void
199auto_load_safe_path_vec_update (void)
200{
4dc84fd1
JK
201 if (debug_auto_load)
202 fprintf_unfiltered (gdb_stdlog,
203 _("auto-load: Updating directories of \"%s\".\n"),
204 auto_load_safe_path);
205
1564a261 206 auto_load_safe_path_vec = auto_load_expand_dir_vars (auto_load_safe_path);
6e22e10d 207 size_t len = auto_load_safe_path_vec.size ();
bccbefd2
JK
208
209 /* Apply tilde_expand and gdb_realpath to each AUTO_LOAD_SAFE_PATH_VEC
210 element. */
6e22e10d 211 for (size_t i = 0; i < len; i++)
bccbefd2 212 {
6e22e10d 213 gdb::unique_xmalloc_ptr<char> &in_vec = auto_load_safe_path_vec[i];
e80aaf61
SM
214 gdb::unique_xmalloc_ptr<char> expanded (tilde_expand (in_vec.get ()));
215 gdb::unique_xmalloc_ptr<char> real_path = gdb_realpath (expanded.get ());
bccbefd2 216
e80aaf61
SM
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);
bccbefd2 221
4dc84fd1
JK
222 if (debug_auto_load)
223 {
e80aaf61 224 if (strcmp (in_vec.get (), original.get ()) == 0)
4dc84fd1
JK
225 fprintf_unfiltered (gdb_stdlog,
226 _("auto-load: Using directory \"%s\".\n"),
e80aaf61 227 in_vec.get ());
4dc84fd1
JK
228 else
229 fprintf_unfiltered (gdb_stdlog,
230 _("auto-load: Resolved directory \"%s\" "
231 "as \"%s\".\n"),
e80aaf61 232 original.get (), in_vec.get ());
4dc84fd1 233 }
4dc84fd1 234
bccbefd2 235 /* If gdb_realpath returns a different content, append it. */
e80aaf61 236 if (strcmp (real_path.get (), in_vec.get ()) != 0)
4dc84fd1 237 {
4dc84fd1
JK
238 if (debug_auto_load)
239 fprintf_unfiltered (gdb_stdlog,
240 _("auto-load: And canonicalized as \"%s\".\n"),
14278e1f
TT
241 real_path.get ());
242
e80aaf61 243 auto_load_safe_path_vec.push_back (std::move (real_path));
4dc84fd1 244 }
bccbefd2
JK
245 }
246}
247
aff139ff 248/* Variable gdb_datadir has been set. Update content depending on $datadir. */
6dea1fbd
JK
249
250static void
251auto_load_gdb_datadir_changed (void)
252{
253 auto_load_safe_path_vec_update ();
254}
255
bccbefd2
JK
256/* "set" command for the auto_load_safe_path configuration variable. */
257
258static void
eb4c3f4a
TT
259set_auto_load_safe_path (const char *args,
260 int from_tty, struct cmd_list_element *c)
bccbefd2 261{
6dea1fbd 262 /* Setting the variable to "" resets it to the compile time defaults. */
af2c1515
JK
263 if (auto_load_safe_path[0] == '\0')
264 {
265 xfree (auto_load_safe_path);
6dea1fbd 266 auto_load_safe_path = xstrdup (AUTO_LOAD_SAFE_PATH);
af2c1515
JK
267 }
268
bccbefd2
JK
269 auto_load_safe_path_vec_update ();
270}
271
272/* "show" command for the auto_load_safe_path configuration variable. */
273
274static void
275show_auto_load_safe_path (struct ui_file *file, int from_tty,
276 struct cmd_list_element *c, const char *value)
277{
f7bfa992
JK
278 const char *cs;
279
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. */
283
284 for (cs = value; *cs && (*cs == DIRNAME_SEPARATOR || IS_DIR_SEPARATOR (*cs));
285 cs++);
286 if (*cs == 0)
bccbefd2
JK
287 fprintf_filtered (file, _("Auto-load files are safe to load from any "
288 "directory.\n"));
289 else
290 fprintf_filtered (file, _("List of directories from which it is safe to "
291 "auto-load files is %s.\n"),
292 value);
293}
294
295/* "add-auto-load-safe-path" command for the auto_load_safe_path configuration
296 variable. */
297
298static void
5fed81ff 299add_auto_load_safe_path (const char *args, int from_tty)
bccbefd2
JK
300{
301 char *s;
302
303 if (args == NULL || *args == 0)
304 error (_("\
af2c1515
JK
305Directory argument required.\n\
306Use 'set auto-load safe-path /' for disabling the auto-load safe-path security.\
307"));
bccbefd2
JK
308
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;
312
313 auto_load_safe_path_vec_update ();
314}
315
f10c5b19
JK
316/* "add-auto-load-scripts-directory" command for the auto_load_dir configuration
317 variable. */
318
319static void
5fed81ff 320add_auto_load_dir (const char *args, int from_tty)
f10c5b19
JK
321{
322 char *s;
323
324 if (args == NULL || *args == 0)
325 error (_("Directory argument required."));
326
327 s = xstrprintf ("%s%c%s", auto_load_dir, DIRNAME_SEPARATOR, args);
328 xfree (auto_load_dir);
329 auto_load_dir = s;
330}
331
202cbf1c
JK
332/* Implementation for filename_is_in_pattern overwriting the caller's FILENAME
333 and PATTERN. */
bccbefd2 334
202cbf1c
JK
335static int
336filename_is_in_pattern_1 (char *filename, char *pattern)
bccbefd2 337{
202cbf1c
JK
338 size_t pattern_len = strlen (pattern);
339 size_t filename_len = strlen (filename);
340
341 if (debug_auto_load)
342 fprintf_unfiltered (gdb_stdlog, _("auto-load: Matching file \"%s\" "
343 "to pattern \"%s\"\n"),
344 filename, pattern);
bccbefd2 345
202cbf1c
JK
346 /* Trim trailing slashes ("/") from PATTERN. Even for "d:\" paths as
347 trailing slashes are trimmed also from FILENAME it still matches
348 correctly. */
349 while (pattern_len && IS_DIR_SEPARATOR (pattern[pattern_len - 1]))
350 pattern_len--;
351 pattern[pattern_len] = '\0';
bccbefd2 352
1ef71717
JK
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. */
202cbf1c
JK
356 if (pattern_len == 0)
357 {
358 if (debug_auto_load)
359 fprintf_unfiltered (gdb_stdlog,
360 _("auto-load: Matched - empty pattern\n"));
361 return 1;
362 }
363
364 for (;;)
365 {
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]))
369 filename_len--;
370 filename[filename_len] = '\0';
371 if (filename_len == 0)
372 {
373 if (debug_auto_load)
374 fprintf_unfiltered (gdb_stdlog,
375 _("auto-load: Not matched - pattern \"%s\".\n"),
376 pattern);
377 return 0;
378 }
379
380 if (gdb_filename_fnmatch (pattern, filename, FNM_FILE_NAME | FNM_NOESCAPE)
381 == 0)
382 {
383 if (debug_auto_load)
384 fprintf_unfiltered (gdb_stdlog, _("auto-load: Matched - file "
385 "\"%s\" to pattern \"%s\".\n"),
386 filename, pattern);
387 return 1;
388 }
389
390 /* Trim trailing FILENAME component. */
391 while (filename_len > 0 && !IS_DIR_SEPARATOR (filename[filename_len - 1]))
392 filename_len--;
393 }
394}
395
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. */
399
400static ATTRIBUTE_PURE int
401filename_is_in_pattern (const char *filename, const char *pattern)
402{
403 char *filename_copy, *pattern_copy;
404
224c3ddb 405 filename_copy = (char *) alloca (strlen (filename) + 1);
202cbf1c 406 strcpy (filename_copy, filename);
224c3ddb 407 pattern_copy = (char *) alloca (strlen (pattern) + 1);
202cbf1c 408 strcpy (pattern_copy, pattern);
1ef71717 409
202cbf1c 410 return filename_is_in_pattern_1 (filename_copy, pattern_copy);
bccbefd2
JK
411}
412
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.
14278e1f 416 *FILENAME_REALP may be updated by gdb_realpath of FILENAME. */
bccbefd2
JK
417
418static int
419filename_is_in_auto_load_safe_path_vec (const char *filename,
14278e1f 420 gdb::unique_xmalloc_ptr<char> *filename_realp)
bccbefd2 421{
e80aaf61
SM
422 const char *pattern = NULL;
423
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 ()))
426 {
427 pattern = p.get ();
428 break;
429 }
bccbefd2 430
202cbf1c 431 if (pattern == NULL)
bccbefd2
JK
432 {
433 if (*filename_realp == NULL)
4dc84fd1
JK
434 {
435 *filename_realp = gdb_realpath (filename);
14278e1f 436 if (debug_auto_load && strcmp (filename_realp->get (), filename) != 0)
4dc84fd1
JK
437 fprintf_unfiltered (gdb_stdlog,
438 _("auto-load: Resolved "
439 "file \"%s\" as \"%s\".\n"),
14278e1f 440 filename, filename_realp->get ());
4dc84fd1 441 }
bccbefd2 442
14278e1f 443 if (strcmp (filename_realp->get (), filename) != 0)
e80aaf61
SM
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 ()))
446 {
447 pattern = p.get ();
448 break;
449 }
bccbefd2
JK
450 }
451
202cbf1c 452 if (pattern != NULL)
4dc84fd1
JK
453 {
454 if (debug_auto_load)
455 fprintf_unfiltered (gdb_stdlog, _("auto-load: File \"%s\" matches "
456 "directory \"%s\".\n"),
202cbf1c 457 filename, pattern);
4dc84fd1
JK
458 return 1;
459 }
bccbefd2
JK
460
461 return 0;
462}
463
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.
467
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
470 directory. */
471
472int
4dc84fd1 473file_is_auto_load_safe (const char *filename, const char *debug_fmt, ...)
bccbefd2 474{
14278e1f 475 gdb::unique_xmalloc_ptr<char> filename_real;
9a950c7c 476 static int advice_printed = 0;
bccbefd2 477
4dc84fd1
JK
478 if (debug_auto_load)
479 {
480 va_list debug_args;
481
482 va_start (debug_args, debug_fmt);
483 vfprintf_unfiltered (gdb_stdlog, debug_fmt, debug_args);
484 va_end (debug_args);
485 }
486
bccbefd2 487 if (filename_is_in_auto_load_safe_path_vec (filename, &filename_real))
14278e1f 488 return 1;
bccbefd2
JK
489
490 auto_load_safe_path_vec_update ();
491 if (filename_is_in_auto_load_safe_path_vec (filename, &filename_real))
14278e1f 492 return 1;
bccbefd2 493
9d636d67 494 warning (_("File \"%ps\" auto-loading has been declined by your "
bccbefd2 495 "`auto-load safe-path' set to \"%s\"."),
9d636d67
TT
496 styled_string (file_name_style.style (), filename_real.get ()),
497 auto_load_safe_path);
bccbefd2 498
9a950c7c
JK
499 if (!advice_printed)
500 {
501 const char *homedir = getenv ("HOME");
9a950c7c
JK
502
503 if (homedir == NULL)
504 homedir = "$HOME";
b777eb6d 505 std::string homeinit = string_printf ("%s/%s", homedir, GDBINIT);
9a950c7c
JK
506
507 printf_filtered (_("\
508To enable execution of this file add\n\
509\tadd-auto-load-safe-path %s\n\
510line to your configuration file \"%s\".\n\
511To completely disable this security protection add\n\
512\tset auto-load safe-path /\n\
513line to your configuration file \"%s\".\n\
514For 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"),
14278e1f
TT
517 filename_real.get (),
518 homeinit.c_str (), homeinit.c_str ());
9a950c7c
JK
519 advice_printed = 1;
520 }
521
bccbefd2
JK
522 return 0;
523}
524
e2207b9a
JK
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
528 loaded this way. */
529
530struct auto_load_pspace_info
531{
9f050062
DE
532 /* For each program space we keep track of loaded scripts, both when
533 specified as file names and as scripts to be executed directly. */
88f07206
TT
534 htab_up loaded_script_files;
535 htab_up loaded_script_texts;
e2207b9a 536
6dddc817
DE
537 /* Non-zero if we've issued the warning about an auto-load script not being
538 supported. We only want to issue this warning once. */
e85e19b4 539 bool unsupported_script_warning_printed = false;
6dddc817 540
e2207b9a
JK
541 /* Non-zero if we've issued the warning about an auto-load script not being
542 found. We only want to issue this warning once. */
e85e19b4 543 bool script_not_found_warning_printed = false;
e2207b9a
JK
544};
545
9f050062 546/* Objects of this type are stored in the loaded_script hash table. */
e2207b9a
JK
547
548struct loaded_script
549{
550 /* Name as provided by the objfile. */
551 const char *name;
bf88dd68 552
e2207b9a 553 /* Full path name or NULL if script wasn't found (or was otherwise
9f050062 554 inaccessible), or NULL for loaded_script_texts. */
e2207b9a 555 const char *full_path;
bf88dd68 556
bccbefd2
JK
557 /* Non-zero if this script has been loaded. */
558 int loaded;
559
6dddc817 560 const struct extension_language_defn *language;
e2207b9a
JK
561};
562
563/* Per-program-space data key. */
e85e19b4
TT
564static const struct program_space_key<struct auto_load_pspace_info>
565 auto_load_pspace_data;
e2207b9a 566
e2207b9a
JK
567/* Get the current autoload data. If none is found yet, add it now. This
568 function always returns a valid object. */
569
570static struct auto_load_pspace_info *
571get_auto_load_pspace_data (struct program_space *pspace)
572{
573 struct auto_load_pspace_info *info;
574
e85e19b4 575 info = auto_load_pspace_data.get (pspace);
e2207b9a 576 if (info == NULL)
e85e19b4 577 info = auto_load_pspace_data.emplace (pspace);
e2207b9a
JK
578
579 return info;
580}
581
582/* Hash function for the loaded script hash. */
583
584static hashval_t
585hash_loaded_script_entry (const void *data)
586{
9a3c8263 587 const struct loaded_script *e = (const struct loaded_script *) data;
e2207b9a 588
bf88dd68 589 return htab_hash_string (e->name) ^ htab_hash_pointer (e->language);
e2207b9a
JK
590}
591
592/* Equality function for the loaded script hash. */
593
594static int
595eq_loaded_script_entry (const void *a, const void *b)
596{
9a3c8263
SM
597 const struct loaded_script *ea = (const struct loaded_script *) a;
598 const struct loaded_script *eb = (const struct loaded_script *) b;
e2207b9a 599
bf88dd68 600 return strcmp (ea->name, eb->name) == 0 && ea->language == eb->language;
e2207b9a
JK
601}
602
603/* Initialize the table to track loaded scripts.
604 Each entry is hashed by the full path name. */
605
606static void
607init_loaded_scripts_info (struct auto_load_pspace_info *pspace_info)
608{
609 /* Choose 31 as the starting size of the hash table, somewhat arbitrarily.
610 Space for each entry is obtained with one malloc so we can free them
611 easily. */
612
88f07206
TT
613 pspace_info->loaded_script_files.reset
614 (htab_create (31,
615 hash_loaded_script_entry,
616 eq_loaded_script_entry,
617 xfree));
618 pspace_info->loaded_script_texts.reset
619 (htab_create (31,
620 hash_loaded_script_entry,
621 eq_loaded_script_entry,
622 xfree));
e2207b9a 623
e85e19b4
TT
624 pspace_info->unsupported_script_warning_printed = false;
625 pspace_info->script_not_found_warning_printed = false;
e2207b9a
JK
626}
627
628/* Wrapper on get_auto_load_pspace_data to also allocate the hash table
629 for loading scripts. */
630
631struct auto_load_pspace_info *
632get_auto_load_pspace_data_for_loading (struct program_space *pspace)
633{
634 struct auto_load_pspace_info *info;
635
636 info = get_auto_load_pspace_data (pspace);
9f050062 637 if (info->loaded_script_files == NULL)
e2207b9a
JK
638 init_loaded_scripts_info (info);
639
640 return info;
641}
642
9f050062
DE
643/* Add script file NAME in LANGUAGE to hash table of PSPACE_INFO.
644 LOADED 1 if the script has been (is going to) be loaded, 0 otherwise
645 (such as if it has not been found).
646 FULL_PATH is NULL if the script wasn't found.
647 The result is true if the script was already in the hash table. */
e2207b9a 648
6dddc817 649static int
9f050062
DE
650maybe_add_script_file (struct auto_load_pspace_info *pspace_info, int loaded,
651 const char *name, const char *full_path,
652 const struct extension_language_defn *language)
e2207b9a 653{
88f07206 654 struct htab *htab = pspace_info->loaded_script_files.get ();
e2207b9a
JK
655 struct loaded_script **slot, entry;
656 int in_hash_table;
657
658 entry.name = name;
bf88dd68 659 entry.language = language;
e2207b9a
JK
660 slot = (struct loaded_script **) htab_find_slot (htab, &entry, INSERT);
661 in_hash_table = *slot != NULL;
662
663 /* If this script is not in the hash table, add it. */
664
9f050062 665 if (!in_hash_table)
e2207b9a
JK
666 {
667 char *p;
668
669 /* Allocate all space in one chunk so it's easier to free. */
224c3ddb
SM
670 *slot = ((struct loaded_script *)
671 xmalloc (sizeof (**slot)
672 + strlen (name) + 1
673 + (full_path != NULL ? (strlen (full_path) + 1) : 0)));
e2207b9a
JK
674 p = ((char*) *slot) + sizeof (**slot);
675 strcpy (p, name);
676 (*slot)->name = p;
677 if (full_path != NULL)
678 {
679 p += strlen (p) + 1;
680 strcpy (p, full_path);
681 (*slot)->full_path = p;
682 }
683 else
684 (*slot)->full_path = NULL;
bccbefd2 685 (*slot)->loaded = loaded;
bf88dd68 686 (*slot)->language = language;
e2207b9a
JK
687 }
688
689 return in_hash_table;
690}
691
9f050062
DE
692/* Add script contents NAME in LANGUAGE to hash table of PSPACE_INFO.
693 LOADED 1 if the script has been (is going to) be loaded, 0 otherwise
694 (such as if it has not been found).
695 The result is true if the script was already in the hash table. */
696
697static int
698maybe_add_script_text (struct auto_load_pspace_info *pspace_info,
699 int loaded, const char *name,
700 const struct extension_language_defn *language)
701{
88f07206 702 struct htab *htab = pspace_info->loaded_script_texts.get ();
9f050062
DE
703 struct loaded_script **slot, entry;
704 int in_hash_table;
705
706 entry.name = name;
707 entry.language = language;
708 slot = (struct loaded_script **) htab_find_slot (htab, &entry, INSERT);
709 in_hash_table = *slot != NULL;
710
711 /* If this script is not in the hash table, add it. */
712
713 if (!in_hash_table)
714 {
715 char *p;
716
717 /* Allocate all space in one chunk so it's easier to free. */
224c3ddb
SM
718 *slot = ((struct loaded_script *)
719 xmalloc (sizeof (**slot) + strlen (name) + 1));
9f050062
DE
720 p = ((char*) *slot) + sizeof (**slot);
721 strcpy (p, name);
722 (*slot)->name = p;
723 (*slot)->full_path = NULL;
724 (*slot)->loaded = loaded;
725 (*slot)->language = language;
726 }
727
728 return in_hash_table;
729}
730
e2207b9a
JK
731/* Clear the table of loaded section scripts. */
732
733static void
734clear_section_scripts (void)
735{
736 struct program_space *pspace = current_program_space;
737 struct auto_load_pspace_info *info;
738
e85e19b4 739 info = auto_load_pspace_data.get (pspace);
9f050062 740 if (info != NULL && info->loaded_script_files != NULL)
e85e19b4 741 auto_load_pspace_data.clear (pspace);
e2207b9a
JK
742}
743
e9687799
JK
744/* Look for the auto-load script in LANGUAGE associated with OBJFILE where
745 OBJFILE's gdb_realpath is REALNAME and load it. Return 1 if we found any
746 matching script, return 0 otherwise. */
e2207b9a 747
e9687799
JK
748static int
749auto_load_objfile_script_1 (struct objfile *objfile, const char *realname,
6dddc817 750 const struct extension_language_defn *language)
e2207b9a 751{
a06ab151
TT
752 const char *debugfile;
753 int retval;
6dddc817 754 const char *suffix = ext_lang_auto_load_suffix (language);
e2207b9a 755
a06ab151 756 std::string filename = std::string (realname) + suffix;
e2207b9a 757
a06ab151
TT
758 gdb_file_up input = gdb_fopen_cloexec (filename.c_str (), "r");
759 debugfile = filename.c_str ();
7349ff92
JK
760 if (debug_auto_load)
761 fprintf_unfiltered (gdb_stdlog, _("auto-load: Attempted file \"%s\" %s.\n"),
762 debugfile, input ? _("exists") : _("does not exist"));
e2207b9a 763
a06ab151 764 std::string debugfile_holder;
7349ff92 765 if (!input)
e2207b9a
JK
766 {
767 /* Also try the same file in a subdirectory of gdb's data
768 directory. */
7349ff92 769
e80aaf61
SM
770 std::vector<gdb::unique_xmalloc_ptr<char>> vec
771 = auto_load_expand_dir_vars (auto_load_dir);
7349ff92
JK
772
773 if (debug_auto_load)
774 fprintf_unfiltered (gdb_stdlog, _("auto-load: Searching 'set auto-load "
775 "scripts-directory' path \"%s\".\n"),
776 auto_load_dir);
777
6e2469ff
HD
778 /* Convert Windows file name from c:/dir/file to /c/dir/file. */
779 if (HAS_DRIVE_SPEC (debugfile))
780 {
781 debugfile_holder = STRIP_DRIVE_SPEC (debugfile);
782 filename = std::string("\\") + debugfile[0] + debugfile_holder;
783 }
784
e80aaf61 785 for (const gdb::unique_xmalloc_ptr<char> &dir : vec)
7349ff92 786 {
7349ff92 787 /* FILENAME is absolute, so we don't need a "/" here. */
a06ab151
TT
788 debugfile_holder = dir.get () + filename;
789 debugfile = debugfile_holder.c_str ();
7349ff92 790
614c279d 791 input = gdb_fopen_cloexec (debugfile, "r");
7349ff92
JK
792 if (debug_auto_load)
793 fprintf_unfiltered (gdb_stdlog, _("auto-load: Attempted file "
794 "\"%s\" %s.\n"),
795 debugfile,
796 input ? _("exists") : _("does not exist"));
797 if (input != NULL)
798 break;
799 }
e2207b9a
JK
800 }
801
802 if (input)
803 {
5b2bf947
DE
804 int is_safe;
805 struct auto_load_pspace_info *pspace_info;
806
5b2bf947 807 is_safe
849c862e 808 = file_is_auto_load_safe (debugfile,
5b2bf947
DE
809 _("auto-load: Loading %s script \"%s\""
810 " by extension for objfile \"%s\".\n"),
6dddc817 811 ext_lang_name (language),
849c862e 812 debugfile, objfile_name (objfile));
5b2bf947
DE
813
814 /* Add this script to the hash table too so
815 "info auto-load ${lang}-scripts" can print it. */
816 pspace_info
817 = get_auto_load_pspace_data_for_loading (current_program_space);
9f050062
DE
818 maybe_add_script_file (pspace_info, is_safe, debugfile, debugfile,
819 language);
5b2bf947 820
e2207b9a
JK
821 /* To preserve existing behaviour we don't check for whether the
822 script was already in the table, and always load it.
823 It's highly unlikely that we'd ever load it twice,
824 and these scripts are required to be idempotent under multiple
825 loads anyway. */
5b2bf947 826 if (is_safe)
6dddc817
DE
827 {
828 objfile_script_sourcer_func *sourcer
829 = ext_lang_objfile_script_sourcer (language);
830
831 /* We shouldn't get here if support for the language isn't
832 compiled in. And the extension language is required to implement
833 this function. */
834 gdb_assert (sourcer != NULL);
d419f42d 835 sourcer (language, objfile, input.get (), debugfile);
6dddc817 836 }
e9687799
JK
837
838 retval = 1;
839 }
840 else
841 retval = 0;
842
e9687799
JK
843 return retval;
844}
845
846/* Look for the auto-load script in LANGUAGE associated with OBJFILE and load
847 it. */
848
6dddc817 849void
e9687799 850auto_load_objfile_script (struct objfile *objfile,
6dddc817 851 const struct extension_language_defn *language)
e9687799 852{
14278e1f
TT
853 gdb::unique_xmalloc_ptr<char> realname
854 = gdb_realpath (objfile_name (objfile));
e9687799 855
14278e1f 856 if (!auto_load_objfile_script_1 (objfile, realname.get (), language))
e9687799
JK
857 {
858 /* For Windows/DOS .exe executables, strip the .exe suffix, so that
859 FOO-gdb.gdb could be used for FOO.exe, and try again. */
860
14278e1f 861 size_t len = strlen (realname.get ());
e9687799
JK
862 const size_t lexe = sizeof (".exe") - 1;
863
14278e1f 864 if (len > lexe && strcasecmp (realname.get () + len - lexe, ".exe") == 0)
e9687799
JK
865 {
866 len -= lexe;
14278e1f 867 realname.get ()[len] = '\0';
e9687799
JK
868 if (debug_auto_load)
869 fprintf_unfiltered (gdb_stdlog, _("auto-load: Stripped .exe suffix, "
870 "retrying with \"%s\".\n"),
14278e1f
TT
871 realname.get ());
872 auto_load_objfile_script_1 (objfile, realname.get (), language);
e9687799 873 }
e2207b9a 874 }
e2207b9a
JK
875}
876
9f050062
DE
877/* Subroutine of source_section_scripts to simplify it.
878 Load FILE as a script in extension language LANGUAGE.
879 The script is from section SECTION_NAME in OBJFILE at offset OFFSET. */
880
881static void
882source_script_file (struct auto_load_pspace_info *pspace_info,
883 struct objfile *objfile,
884 const struct extension_language_defn *language,
885 const char *section_name, unsigned int offset,
886 const char *file)
887{
ed166945 888 int in_hash_table;
9f050062
DE
889 objfile_script_sourcer_func *sourcer;
890
891 /* Skip this script if support is not compiled in. */
892 sourcer = ext_lang_objfile_script_sourcer (language);
893 if (sourcer == NULL)
894 {
895 /* We don't throw an error, the program is still debuggable. */
896 maybe_print_unsupported_script_warning (pspace_info, objfile, language,
897 section_name, offset);
898 /* We *could* still try to open it, but there's no point. */
899 maybe_add_script_file (pspace_info, 0, file, NULL, language);
900 return;
901 }
902
903 /* Skip this script if auto-loading it has been disabled. */
904 if (!ext_lang_auto_load_enabled (language))
905 {
906 /* No message is printed, just skip it. */
907 return;
908 }
909
ed166945
TT
910 gdb::optional<open_script> opened = find_and_open_script (file,
911 1 /*search_path*/);
9f050062 912
9f050062
DE
913 if (opened)
914 {
ed166945 915 if (!file_is_auto_load_safe (opened->full_path.get (),
9f050062
DE
916 _("auto-load: Loading %s script "
917 "\"%s\" from section \"%s\" of "
918 "objfile \"%s\".\n"),
ed166945
TT
919 ext_lang_name (language),
920 opened->full_path.get (),
9f050062 921 section_name, objfile_name (objfile)))
ed166945 922 opened.reset ();
9f050062
DE
923 }
924 else
925 {
9f050062
DE
926 /* If one script isn't found it's not uncommon for more to not be
927 found either. We don't want to print a message for each script,
928 too much noise. Instead, we print the warning once and tell the
929 user how to find the list of scripts that weren't loaded.
930 We don't throw an error, the program is still debuggable.
931
932 IWBN if complaints.c were more general-purpose. */
933
934 maybe_print_script_not_found_warning (pspace_info, objfile, language,
935 section_name, offset);
936 }
937
ed166945
TT
938 in_hash_table = maybe_add_script_file (pspace_info, bool (opened), file,
939 (opened
940 ? opened->full_path.get ()
941 : NULL),
9f050062
DE
942 language);
943
944 /* If this file is not currently loaded, load it. */
945 if (opened && !in_hash_table)
ed166945
TT
946 sourcer (language, objfile, opened->stream.get (),
947 opened->full_path.get ());
9f050062
DE
948}
949
950/* Subroutine of source_section_scripts to simplify it.
951 Execute SCRIPT as a script in extension language LANG.
952 The script is from section SECTION_NAME in OBJFILE at offset OFFSET. */
953
954static void
955execute_script_contents (struct auto_load_pspace_info *pspace_info,
956 struct objfile *objfile,
957 const struct extension_language_defn *language,
958 const char *section_name, unsigned int offset,
959 const char *script)
960{
961 objfile_script_executor_func *executor;
962 const char *newline, *script_text;
a37a2ae7 963 const char *name;
9f050062 964 int is_safe, in_hash_table;
9f050062
DE
965
966 /* The first line of the script is the name of the script.
967 It must not contain any kind of space character. */
968 name = NULL;
969 newline = strchr (script, '\n');
a37a2ae7 970 std::string name_holder;
9f050062
DE
971 if (newline != NULL)
972 {
a37a2ae7 973 const char *buf, *p;
9f050062
DE
974
975 /* Put the name in a buffer and validate it. */
a37a2ae7
TT
976 name_holder = std::string (script, newline - script);
977 buf = name_holder.c_str ();
9f050062
DE
978 for (p = buf; *p != '\0'; ++p)
979 {
980 if (isspace (*p))
981 break;
982 }
983 /* We don't allow nameless scripts, they're not helpful to the user. */
984 if (p != buf && *p == '\0')
985 name = buf;
986 }
987 if (name == NULL)
988 {
989 /* We don't throw an error, the program is still debuggable. */
990 warning (_("\
991Missing/bad script name in entry at offset %u in section %s\n\
9d636d67
TT
992of file %ps."),
993 offset, section_name,
994 styled_string (file_name_style.style (),
995 objfile_name (objfile)));
9f050062
DE
996 return;
997 }
998 script_text = newline + 1;
999
1000 /* Skip this script if support is not compiled in. */
1001 executor = ext_lang_objfile_script_executor (language);
1002 if (executor == NULL)
1003 {
1004 /* We don't throw an error, the program is still debuggable. */
1005 maybe_print_unsupported_script_warning (pspace_info, objfile, language,
1006 section_name, offset);
1007 maybe_add_script_text (pspace_info, 0, name, language);
9f050062
DE
1008 return;
1009 }
1010
1011 /* Skip this script if auto-loading it has been disabled. */
1012 if (!ext_lang_auto_load_enabled (language))
1013 {
1014 /* No message is printed, just skip it. */
9f050062
DE
1015 return;
1016 }
1017
1018 is_safe = file_is_auto_load_safe (objfile_name (objfile),
1019 _("auto-load: Loading %s script "
1020 "\"%s\" from section \"%s\" of "
1021 "objfile \"%s\".\n"),
1022 ext_lang_name (language), name,
1023 section_name, objfile_name (objfile));
1024
1025 in_hash_table = maybe_add_script_text (pspace_info, is_safe, name, language);
1026
1027 /* If this file is not currently loaded, load it. */
1028 if (is_safe && !in_hash_table)
1029 executor (language, objfile, name, script_text);
9f050062
DE
1030}
1031
5b2bf947
DE
1032/* Load scripts specified in OBJFILE.
1033 START,END delimit a buffer containing a list of nul-terminated
1034 file names.
1035 SECTION_NAME is used in error messages.
1036
9f050062
DE
1037 Scripts specified as file names are found per normal "source -s" command
1038 processing. First the script is looked for in $cwd. If not found there
1039 the source search path is used.
5b2bf947 1040
9f050062
DE
1041 The section contains a list of path names of script files to load or
1042 actual script contents. Each entry is nul-terminated. */
5b2bf947
DE
1043
1044static void
1045source_section_scripts (struct objfile *objfile, const char *section_name,
1046 const char *start, const char *end)
1047{
1048 const char *p;
1049 struct auto_load_pspace_info *pspace_info;
1050
1051 pspace_info = get_auto_load_pspace_data_for_loading (current_program_space);
1052
1053 for (p = start; p < end; ++p)
1054 {
9f050062 1055 const char *entry;
ed3ef339 1056 const struct extension_language_defn *language;
9f050062
DE
1057 unsigned int offset = p - start;
1058 int code = *p;
5b2bf947 1059
9f050062 1060 switch (code)
5b2bf947 1061 {
ed3ef339 1062 case SECTION_SCRIPT_ID_PYTHON_FILE:
9f050062 1063 case SECTION_SCRIPT_ID_PYTHON_TEXT:
ed3ef339
DE
1064 language = get_ext_lang_defn (EXT_LANG_PYTHON);
1065 break;
1066 case SECTION_SCRIPT_ID_SCHEME_FILE:
9f050062 1067 case SECTION_SCRIPT_ID_SCHEME_TEXT:
ed3ef339
DE
1068 language = get_ext_lang_defn (EXT_LANG_GUILE);
1069 break;
1070 default:
5b2bf947
DE
1071 warning (_("Invalid entry in %s section"), section_name);
1072 /* We could try various heuristics to find the next valid entry,
1073 but it's safer to just punt. */
ed3ef339 1074 return;
5b2bf947 1075 }
9f050062 1076 entry = ++p;
5b2bf947
DE
1077
1078 while (p < end && *p != '\0')
1079 ++p;
1080 if (p == end)
1081 {
9f050062
DE
1082 warning (_("Non-nul-terminated entry in %s at offset %u"),
1083 section_name, offset);
1084 /* Don't load/execute it. */
5b2bf947
DE
1085 break;
1086 }
6dddc817 1087
9f050062 1088 switch (code)
6dddc817 1089 {
9f050062
DE
1090 case SECTION_SCRIPT_ID_PYTHON_FILE:
1091 case SECTION_SCRIPT_ID_SCHEME_FILE:
1092 if (p == entry)
6dddc817 1093 {
9f050062
DE
1094 warning (_("Empty entry in %s at offset %u"),
1095 section_name, offset);
1096 continue;
6dddc817 1097 }
9f050062
DE
1098 source_script_file (pspace_info, objfile, language,
1099 section_name, offset, entry);
1100 break;
1101 case SECTION_SCRIPT_ID_PYTHON_TEXT:
1102 case SECTION_SCRIPT_ID_SCHEME_TEXT:
1103 execute_script_contents (pspace_info, objfile, language,
1104 section_name, offset, entry);
1105 break;
5b2bf947 1106 }
5b2bf947
DE
1107 }
1108}
1109
1110/* Load scripts specified in section SECTION_NAME of OBJFILE. */
1111
1112static void
1113auto_load_section_scripts (struct objfile *objfile, const char *section_name)
1114{
1115 bfd *abfd = objfile->obfd;
1116 asection *scripts_sect;
1117 bfd_byte *data = NULL;
1118
1119 scripts_sect = bfd_get_section_by_name (abfd, section_name);
ec13808e 1120 if (scripts_sect == NULL
fd361982 1121 || (bfd_section_flags (scripts_sect) & SEC_HAS_CONTENTS) == 0)
5b2bf947
DE
1122 return;
1123
1124 if (!bfd_get_full_section_contents (abfd, scripts_sect, &data))
9d636d67
TT
1125 warning (_("Couldn't read %s section of %ps"),
1126 section_name,
1127 styled_string (file_name_style.style (),
1128 bfd_get_filename (abfd)));
5b2bf947
DE
1129 else
1130 {
869e8290 1131 gdb::unique_xmalloc_ptr<bfd_byte> data_holder (data);
5b2bf947 1132
869e8290 1133 char *p = (char *) data;
5b2bf947 1134 source_section_scripts (objfile, section_name, p,
fd361982 1135 p + bfd_section_size (scripts_sect));
5b2bf947
DE
1136 }
1137}
1138
bf88dd68
JK
1139/* Load any auto-loaded scripts for OBJFILE. */
1140
1141void
1142load_auto_scripts_for_objfile (struct objfile *objfile)
1143{
c47cf547
DE
1144 /* Return immediately if auto-loading has been globally disabled.
1145 This is to handle sequencing of operations during gdb startup.
5fbae7d1
GB
1146 Also return immediately if OBJFILE was not created from a file
1147 on the local filesystem. */
1148 if (!global_auto_load
1149 || (objfile->flags & OBJF_NOT_FILENAME) != 0
1150 || is_target_filename (objfile->original_name))
bf88dd68
JK
1151 return;
1152
6dddc817
DE
1153 /* Load any extension language scripts for this objfile.
1154 E.g., foo-gdb.gdb, foo-gdb.py. */
1155 auto_load_ext_lang_scripts_for_objfile (objfile);
bf88dd68 1156
c47cf547 1157 /* Load any scripts mentioned in AUTO_SECTION_NAME (.debug_gdb_scripts). */
5b2bf947 1158 auto_load_section_scripts (objfile, AUTO_SECTION_NAME);
bf88dd68
JK
1159}
1160
e2207b9a
JK
1161/* This is a new_objfile observer callback to auto-load scripts.
1162
1163 Two flavors of auto-loaded scripts are supported.
1164 1) based on the path to the objfile
1165 2) from .debug_gdb_scripts section */
1166
1167static void
1168auto_load_new_objfile (struct objfile *objfile)
1169{
1170 if (!objfile)
1171 {
1172 /* OBJFILE is NULL when loading a new "main" symbol-file. */
1173 clear_section_scripts ();
1174 return;
1175 }
1176
1177 load_auto_scripts_for_objfile (objfile);
1178}
1179
1180/* Collect scripts to be printed in a vec. */
1181
bf88dd68
JK
1182struct collect_matching_scripts_data
1183{
6a1b9516
SM
1184 collect_matching_scripts_data (std::vector<loaded_script *> *scripts_p_,
1185 const extension_language_defn *language_)
1186 : scripts_p (scripts_p_), language (language_)
1187 {}
bf88dd68 1188
6a1b9516 1189 std::vector<loaded_script *> *scripts_p;
6dddc817 1190 const struct extension_language_defn *language;
bf88dd68
JK
1191};
1192
e2207b9a
JK
1193/* Traversal function for htab_traverse.
1194 Collect the entry if it matches the regexp. */
1195
1196static int
1197collect_matching_scripts (void **slot, void *info)
1198{
9a3c8263
SM
1199 struct loaded_script *script = (struct loaded_script *) *slot;
1200 struct collect_matching_scripts_data *data
1201 = (struct collect_matching_scripts_data *) info;
e2207b9a 1202
bf88dd68 1203 if (script->language == data->language && re_exec (script->name))
6a1b9516 1204 data->scripts_p->push_back (script);
e2207b9a
JK
1205
1206 return 1;
1207}
1208
1209/* Print SCRIPT. */
1210
1211static void
1212print_script (struct loaded_script *script)
1213{
1214 struct ui_out *uiout = current_uiout;
e2207b9a 1215
2e783024 1216 ui_out_emit_tuple tuple_emitter (uiout, NULL);
e2207b9a 1217
112e8700
SM
1218 uiout->field_string ("loaded", script->loaded ? "Yes" : "No");
1219 uiout->field_string ("script", script->name);
1220 uiout->text ("\n");
e2207b9a
JK
1221
1222 /* If the name isn't the full path, print it too. */
1223 if (script->full_path != NULL
1224 && strcmp (script->name, script->full_path) != 0)
1225 {
112e8700
SM
1226 uiout->text ("\tfull name: ");
1227 uiout->field_string ("full_path", script->full_path);
1228 uiout->text ("\n");
e2207b9a 1229 }
e2207b9a
JK
1230}
1231
1232/* Helper for info_auto_load_scripts to sort the scripts by name. */
1233
6a1b9516
SM
1234static bool
1235sort_scripts_by_name (loaded_script *a, loaded_script *b)
e2207b9a 1236{
6a1b9516 1237 return FILENAME_CMP (a->name, b->name) < 0;
e2207b9a
JK
1238}
1239
bf88dd68
JK
1240/* Special internal GDB value of auto_load_info_scripts's PATTERN identify
1241 the "info auto-load XXX" command has been executed through the general
1242 "info auto-load" invocation. Extra newline will be printed if needed. */
1243char auto_load_info_scripts_pattern_nl[] = "";
e2207b9a 1244
9f050062
DE
1245/* Subroutine of auto_load_info_scripts to simplify it.
1246 Print SCRIPTS. */
1247
1248static void
6a1b9516 1249print_scripts (const std::vector<loaded_script *> &scripts)
9f050062 1250{
6a1b9516 1251 for (loaded_script *script : scripts)
9f050062
DE
1252 print_script (script);
1253}
1254
bf88dd68
JK
1255/* Implementation for "info auto-load gdb-scripts"
1256 (and "info auto-load python-scripts"). List scripts in LANGUAGE matching
1257 PATTERN. FROM_TTY is the usual GDB boolean for user interactivity. */
1258
1259void
1d12d88f 1260auto_load_info_scripts (const char *pattern, int from_tty,
6dddc817 1261 const struct extension_language_defn *language)
e2207b9a
JK
1262{
1263 struct ui_out *uiout = current_uiout;
1264 struct auto_load_pspace_info *pspace_info;
e2207b9a
JK
1265
1266 dont_repeat ();
1267
1268 pspace_info = get_auto_load_pspace_data (current_program_space);
1269
1270 if (pattern && *pattern)
1271 {
1272 char *re_err = re_comp (pattern);
1273
1274 if (re_err)
1275 error (_("Invalid regexp: %s"), re_err);
1276 }
1277 else
1278 {
1279 re_comp ("");
1280 }
1281
1282 /* We need to know the number of rows before we build the table.
1283 Plus we want to sort the scripts by name.
1284 So first traverse the hash table collecting the matching scripts. */
1285
6a1b9516 1286 std::vector<loaded_script *> script_files, script_texts;
9f050062
DE
1287
1288 if (pspace_info != NULL && pspace_info->loaded_script_files != NULL)
1289 {
6a1b9516 1290 collect_matching_scripts_data data (&script_files, language);
9f050062
DE
1291
1292 /* Pass a pointer to scripts as VEC_safe_push can realloc space. */
88f07206 1293 htab_traverse_noresize (pspace_info->loaded_script_files.get (),
9f050062 1294 collect_matching_scripts, &data);
6a1b9516
SM
1295
1296 std::sort (script_files.begin (), script_files.end (),
1297 sort_scripts_by_name);
9f050062 1298 }
e2207b9a 1299
9f050062 1300 if (pspace_info != NULL && pspace_info->loaded_script_texts != NULL)
e2207b9a 1301 {
6a1b9516 1302 collect_matching_scripts_data data (&script_texts, language);
bf88dd68 1303
e2207b9a 1304 /* Pass a pointer to scripts as VEC_safe_push can realloc space. */
88f07206 1305 htab_traverse_noresize (pspace_info->loaded_script_texts.get (),
bf88dd68 1306 collect_matching_scripts, &data);
6a1b9516
SM
1307
1308 std::sort (script_texts.begin (), script_texts.end (),
1309 sort_scripts_by_name);
e2207b9a
JK
1310 }
1311
6a1b9516 1312 int nr_scripts = script_files.size () + script_texts.size ();
bf88dd68
JK
1313
1314 /* Table header shifted right by preceding "gdb-scripts: " would not match
1315 its columns. */
1316 if (nr_scripts > 0 && pattern == auto_load_info_scripts_pattern_nl)
112e8700 1317 uiout->text ("\n");
bf88dd68 1318
4a2b031d
TT
1319 {
1320 ui_out_emit_table table_emitter (uiout, 2, nr_scripts,
1321 "AutoLoadedScriptsTable");
e2207b9a 1322
4a2b031d
TT
1323 uiout->table_header (7, ui_left, "loaded", "Loaded");
1324 uiout->table_header (70, ui_left, "script", "Script");
1325 uiout->table_body ();
e2207b9a 1326
4a2b031d
TT
1327 print_scripts (script_files);
1328 print_scripts (script_texts);
1329 }
e2207b9a 1330
e2207b9a
JK
1331 if (nr_scripts == 0)
1332 {
1333 if (pattern && *pattern)
112e8700 1334 uiout->message ("No auto-load scripts matching %s.\n", pattern);
e2207b9a 1335 else
112e8700 1336 uiout->message ("No auto-load scripts.\n");
e2207b9a
JK
1337 }
1338}
1339
bf88dd68
JK
1340/* Wrapper for "info auto-load gdb-scripts". */
1341
1342static void
1d12d88f 1343info_auto_load_gdb_scripts (const char *pattern, int from_tty)
bf88dd68 1344{
6dddc817 1345 auto_load_info_scripts (pattern, from_tty, &extension_language_gdb);
bf88dd68
JK
1346}
1347
1348/* Implement 'info auto-load local-gdbinit'. */
1349
1350static void
5fed81ff 1351info_auto_load_local_gdbinit (const char *args, int from_tty)
bf88dd68
JK
1352{
1353 if (auto_load_local_gdbinit_pathname == NULL)
1354 printf_filtered (_("Local .gdbinit file was not found.\n"));
1355 else if (auto_load_local_gdbinit_loaded)
9d636d67
TT
1356 printf_filtered (_("Local .gdbinit file \"%ps\" has been loaded.\n"),
1357 styled_string (file_name_style.style (),
1358 auto_load_local_gdbinit_pathname));
bf88dd68 1359 else
9d636d67
TT
1360 printf_filtered (_("Local .gdbinit file \"%ps\" has not been loaded.\n"),
1361 styled_string (file_name_style.style (),
1362 auto_load_local_gdbinit_pathname));
bf88dd68
JK
1363}
1364
9f050062
DE
1365/* Print an "unsupported script" warning if it has not already been printed.
1366 The script is in language LANGUAGE at offset OFFSET in section SECTION_NAME
1367 of OBJFILE. */
6dddc817 1368
9f050062
DE
1369static void
1370maybe_print_unsupported_script_warning
1371 (struct auto_load_pspace_info *pspace_info,
1372 struct objfile *objfile, const struct extension_language_defn *language,
1373 const char *section_name, unsigned offset)
6dddc817 1374{
9f050062
DE
1375 if (!pspace_info->unsupported_script_warning_printed)
1376 {
1377 warning (_("\
1378Unsupported auto-load script at offset %u in section %s\n\
9d636d67 1379of file %ps.\n\
9f050062 1380Use `info auto-load %s-scripts [REGEXP]' to list them."),
9d636d67
TT
1381 offset, section_name,
1382 styled_string (file_name_style.style (),
1383 objfile_name (objfile)),
9f050062 1384 ext_lang_name (language));
e85e19b4 1385 pspace_info->unsupported_script_warning_printed = true;
9f050062 1386 }
6dddc817
DE
1387}
1388
e2207b9a
JK
1389/* Return non-zero if SCRIPT_NOT_FOUND_WARNING_PRINTED of PSPACE_INFO was unset
1390 before calling this function. Always set SCRIPT_NOT_FOUND_WARNING_PRINTED
1391 of PSPACE_INFO. */
1392
9f050062
DE
1393static void
1394maybe_print_script_not_found_warning
1395 (struct auto_load_pspace_info *pspace_info,
1396 struct objfile *objfile, const struct extension_language_defn *language,
1397 const char *section_name, unsigned offset)
e2207b9a 1398{
9f050062
DE
1399 if (!pspace_info->script_not_found_warning_printed)
1400 {
1401 warning (_("\
1402Missing auto-load script at offset %u in section %s\n\
9d636d67 1403of file %ps.\n\
9f050062 1404Use `info auto-load %s-scripts [REGEXP]' to list them."),
9d636d67
TT
1405 offset, section_name,
1406 styled_string (file_name_style.style (),
1407 objfile_name (objfile)),
9f050062 1408 ext_lang_name (language));
e85e19b4 1409 pspace_info->script_not_found_warning_printed = true;
9f050062 1410 }
e2207b9a
JK
1411}
1412
bf88dd68
JK
1413/* The only valid "set auto-load" argument is off|0|no|disable. */
1414
1415static void
981a3fb3 1416set_auto_load_cmd (const char *args, int from_tty)
bf88dd68
JK
1417{
1418 struct cmd_list_element *list;
1419 size_t length;
1420
1421 /* See parse_binary_operation in use by the sub-commands. */
1422
1423 length = args ? strlen (args) : 0;
1424
1425 while (length > 0 && (args[length - 1] == ' ' || args[length - 1] == '\t'))
1426 length--;
1427
1428 if (length == 0 || (strncmp (args, "off", length) != 0
1429 && strncmp (args, "0", length) != 0
1430 && strncmp (args, "no", length) != 0
1431 && strncmp (args, "disable", length) != 0))
1432 error (_("Valid is only global 'set auto-load no'; "
1433 "otherwise check the auto-load sub-commands."));
1434
1435 for (list = *auto_load_set_cmdlist_get (); list != NULL; list = list->next)
1436 if (list->var_type == var_boolean)
1437 {
1438 gdb_assert (list->type == set_cmd);
5b9afe8a 1439 do_set_command (args, from_tty, list);
bf88dd68
JK
1440 }
1441}
1442
1443/* Initialize "set auto-load " commands prefix and return it. */
1444
1445struct cmd_list_element **
1446auto_load_set_cmdlist_get (void)
1447{
1448 static struct cmd_list_element *retval;
1449
1450 if (retval == NULL)
1451 add_prefix_cmd ("auto-load", class_maintenance, set_auto_load_cmd, _("\
1452Auto-loading specific settings.\n\
1453Configure various auto-load-specific variables such as\n\
1454automatic loading of Python scripts."),
1455 &retval, "set auto-load ",
1456 1/*allow-unknown*/, &setlist);
1457
1458 return &retval;
1459}
1460
bf88dd68
JK
1461/* Initialize "show auto-load " commands prefix and return it. */
1462
1463struct cmd_list_element **
1464auto_load_show_cmdlist_get (void)
1465{
1466 static struct cmd_list_element *retval;
1467
1468 if (retval == NULL)
0743fc83 1469 add_show_prefix_cmd ("auto-load", class_maintenance, _("\
bf88dd68
JK
1470Show auto-loading specific settings.\n\
1471Show configuration of various auto-load-specific variables such as\n\
1472automatic loading of Python scripts."),
0743fc83
TT
1473 &retval, "show auto-load ",
1474 0/*allow-unknown*/, &showlist);
bf88dd68
JK
1475
1476 return &retval;
1477}
1478
1479/* Command "info auto-load" displays whether the various auto-load files have
1480 been loaded. This is reimplementation of cmd_show_list which inserts
1481 newlines at proper places. */
1482
1483static void
981a3fb3 1484info_auto_load_cmd (const char *args, int from_tty)
bf88dd68
JK
1485{
1486 struct cmd_list_element *list;
bf88dd68
JK
1487 struct ui_out *uiout = current_uiout;
1488
2e783024 1489 ui_out_emit_tuple tuple_emitter (uiout, "infolist");
bf88dd68
JK
1490
1491 for (list = *auto_load_info_cmdlist_get (); list != NULL; list = list->next)
1492 {
2e783024 1493 ui_out_emit_tuple option_emitter (uiout, "option");
bf88dd68
JK
1494
1495 gdb_assert (!list->prefixlist);
1496 gdb_assert (list->type == not_set_cmd);
1497
112e8700
SM
1498 uiout->field_string ("name", list->name);
1499 uiout->text (": ");
bf88dd68 1500 cmd_func (list, auto_load_info_scripts_pattern_nl, from_tty);
bf88dd68 1501 }
bf88dd68
JK
1502}
1503
1504/* Initialize "info auto-load " commands prefix and return it. */
1505
1506struct cmd_list_element **
1507auto_load_info_cmdlist_get (void)
1508{
1509 static struct cmd_list_element *retval;
1510
1511 if (retval == NULL)
1512 add_prefix_cmd ("auto-load", class_info, info_auto_load_cmd, _("\
1513Print current status of auto-loaded files.\n\
1514Print whether various files like Python scripts or .gdbinit files have been\n\
1515found and/or loaded."),
1516 &retval, "info auto-load ",
1517 0/*allow-unknown*/, &infolist);
1518
1519 return &retval;
1520}
1521
6c265988 1522void _initialize_auto_load ();
e2207b9a 1523void
6c265988 1524_initialize_auto_load ()
e2207b9a 1525{
bccbefd2 1526 struct cmd_list_element *cmd;
6dddc817 1527 char *scripts_directory_help, *gdb_name_help, *python_name_help;
ed3ef339
DE
1528 char *guile_name_help;
1529 const char *suffix;
bccbefd2 1530
76727919 1531 gdb::observers::new_objfile.attach (auto_load_new_objfile);
e2207b9a 1532
bf88dd68
JK
1533 add_setshow_boolean_cmd ("gdb-scripts", class_support,
1534 &auto_load_gdb_scripts, _("\
1535Enable or disable auto-loading of canned sequences of commands scripts."), _("\
1536Show whether auto-loading of canned sequences of commands scripts is enabled."),
1537 _("\
1538If enabled, canned sequences of commands are loaded when the debugger reads\n\
1539an executable or shared library.\n\
8d8c087f 1540This option has security implications for untrusted inferiors."),
bf88dd68
JK
1541 NULL, show_auto_load_gdb_scripts,
1542 auto_load_set_cmdlist_get (),
1543 auto_load_show_cmdlist_get ());
1544
1545 add_cmd ("gdb-scripts", class_info, info_auto_load_gdb_scripts,
1546 _("Print the list of automatically loaded sequences of commands.\n\
1547Usage: info auto-load gdb-scripts [REGEXP]"),
1548 auto_load_info_cmdlist_get ());
1549
1550 add_setshow_boolean_cmd ("local-gdbinit", class_support,
1551 &auto_load_local_gdbinit, _("\
1552Enable or disable auto-loading of .gdbinit script in current directory."), _("\
1553Show whether auto-loading .gdbinit script in current directory is enabled."),
1554 _("\
1555If enabled, canned sequences of commands are loaded when debugger starts\n\
1556from .gdbinit file in current directory. Such files are deprecated,\n\
1557use a script associated with inferior executable file instead.\n\
8d8c087f 1558This option has security implications for untrusted inferiors."),
bf88dd68
JK
1559 NULL, show_auto_load_local_gdbinit,
1560 auto_load_set_cmdlist_get (),
1561 auto_load_show_cmdlist_get ());
1562
1563 add_cmd ("local-gdbinit", class_info, info_auto_load_local_gdbinit,
1564 _("Print whether current directory .gdbinit file has been loaded.\n\
1565Usage: info auto-load local-gdbinit"),
1566 auto_load_info_cmdlist_get ());
bccbefd2 1567
7349ff92 1568 auto_load_dir = xstrdup (AUTO_LOAD_DIR);
6dddc817 1569
ed3ef339 1570 suffix = ext_lang_auto_load_suffix (get_ext_lang_defn (EXT_LANG_GDB));
6dddc817
DE
1571 gdb_name_help
1572 = xstrprintf (_("\
1573GDB scripts: OBJFILE%s\n"),
ed3ef339 1574 suffix);
6dddc817 1575 python_name_help = NULL;
9a950c7c 1576#ifdef HAVE_PYTHON
ed3ef339 1577 suffix = ext_lang_auto_load_suffix (get_ext_lang_defn (EXT_LANG_PYTHON));
6dddc817
DE
1578 python_name_help
1579 = xstrprintf (_("\
1580Python scripts: OBJFILE%s\n"),
ed3ef339
DE
1581 suffix);
1582#endif
1583 guile_name_help = NULL;
1584#ifdef HAVE_GUILE
1585 suffix = ext_lang_auto_load_suffix (get_ext_lang_defn (EXT_LANG_GUILE));
1586 guile_name_help
1587 = xstrprintf (_("\
1588Guile scripts: OBJFILE%s\n"),
1589 suffix);
9a950c7c 1590#endif
6dddc817
DE
1591 scripts_directory_help
1592 = xstrprintf (_("\
1593Automatically loaded scripts are located in one of the directories listed\n\
1594by this option.\n\
1595\n\
1596Script names:\n\
ed3ef339 1597%s%s%s\
6dddc817 1598\n\
9a950c7c
JK
1599This option is ignored for the kinds of scripts \
1600having 'set auto-load ... off'.\n\
1601Directories listed here need to be present also \
1602in the 'set auto-load safe-path'\n\
6dddc817
DE
1603option."),
1604 gdb_name_help,
ed3ef339
DE
1605 python_name_help ? python_name_help : "",
1606 guile_name_help ? guile_name_help : "");
6dddc817 1607
7349ff92
JK
1608 add_setshow_optional_filename_cmd ("scripts-directory", class_support,
1609 &auto_load_dir, _("\
1610Set the list of directories from which to load auto-loaded scripts."), _("\
9a950c7c
JK
1611Show the list of directories from which to load auto-loaded scripts."),
1612 scripts_directory_help,
7349ff92
JK
1613 set_auto_load_dir, show_auto_load_dir,
1614 auto_load_set_cmdlist_get (),
1615 auto_load_show_cmdlist_get ());
9a950c7c 1616 xfree (scripts_directory_help);
6dddc817
DE
1617 xfree (python_name_help);
1618 xfree (gdb_name_help);
ed3ef339 1619 xfree (guile_name_help);
7349ff92 1620
6dea1fbd 1621 auto_load_safe_path = xstrdup (AUTO_LOAD_SAFE_PATH);
bccbefd2
JK
1622 auto_load_safe_path_vec_update ();
1623 add_setshow_optional_filename_cmd ("safe-path", class_support,
1624 &auto_load_safe_path, _("\
9a950c7c
JK
1625Set the list of files and directories that are safe for auto-loading."), _("\
1626Show the list of files and directories that are safe for auto-loading."), _("\
bccbefd2
JK
1627Various files loaded automatically for the 'set auto-load ...' options must\n\
1628be located in one of the directories listed by this option. Warning will be\n\
af2c1515 1629printed and file will not be used otherwise.\n\
9a950c7c 1630You can mix both directory and filename entries.\n\
af2c1515
JK
1631Setting this parameter to an empty list resets it to its default value.\n\
1632Setting this parameter to '/' (without the quotes) allows any file\n\
9a950c7c 1633for the 'set auto-load ...' options. Each path entry can be also shell\n\
202cbf1c 1634wildcard pattern; '*' does not match directory separator.\n\
bccbefd2 1635This option is ignored for the kinds of files having 'set auto-load ... off'.\n\
8d8c087f 1636This option has security implications for untrusted inferiors."),
bccbefd2
JK
1637 set_auto_load_safe_path,
1638 show_auto_load_safe_path,
1639 auto_load_set_cmdlist_get (),
1640 auto_load_show_cmdlist_get ());
76727919 1641 gdb::observers::gdb_datadir_changed.attach (auto_load_gdb_datadir_changed);
bccbefd2
JK
1642
1643 cmd = add_cmd ("add-auto-load-safe-path", class_support,
1644 add_auto_load_safe_path,
1645 _("Add entries to the list of directories from which it is safe "
1646 "to auto-load files.\n\
1647See the commands 'set auto-load safe-path' and 'show auto-load safe-path' to\n\
1648access the current full list setting."),
1649 &cmdlist);
1650 set_cmd_completer (cmd, filename_completer);
4dc84fd1 1651
f10c5b19
JK
1652 cmd = add_cmd ("add-auto-load-scripts-directory", class_support,
1653 add_auto_load_dir,
1654 _("Add entries to the list of directories from which to load "
1655 "auto-loaded scripts.\n\
1656See the commands 'set auto-load scripts-directory' and\n\
1657'show auto-load scripts-directory' to access the current full list setting."),
1658 &cmdlist);
1659 set_cmd_completer (cmd, filename_completer);
1660
4dc84fd1
JK
1661 add_setshow_boolean_cmd ("auto-load", class_maintenance,
1662 &debug_auto_load, _("\
1663Set auto-load verifications debugging."), _("\
1664Show auto-load verifications debugging."), _("\
1665When non-zero, debugging output for files of 'set auto-load ...'\n\
1666is displayed."),
1667 NULL, show_debug_auto_load,
1668 &setdebuglist, &showdebuglist);
e2207b9a 1669}
This page took 0.787135 seconds and 4 git commands to generate.