Try to use the canonical version of a sysroot for debug file links.
authorJohn Baldwin <jhb@FreeBSD.org>
Tue, 12 Feb 2019 21:56:16 +0000 (13:56 -0800)
committerJohn Baldwin <jhb@FreeBSD.org>
Tue, 12 Feb 2019 21:56:16 +0000 (13:56 -0800)
Object file paths passed to find_separate_debug_file are always
canonical paths with symbolic links resolved.  If a sysroot path
traverses a symbolic link, it will not match the object file paths.
Generate a canonical version of the sysroot directory.  If it is
valid, use it instead of gdb_sysroot with child_path to determine if
an object file is under a system root.

gdb/ChangeLog:

* symfile.c (find_separate_debug_file): Use canonical path of
sysroot with child_path instead of gdb_sysroot if it is valid.

gdb/ChangeLog
gdb/symfile.c

index de88a210b4b4226635ca19e22c11f7b66ba9e5f7..191863e4912e749a391e53c64d2afea5bf86051b 100644 (file)
@@ -1,3 +1,8 @@
+2019-02-12  John Baldwin  <jhb@FreeBSD.org>
+
+       * symfile.c (find_separate_debug_file): Use canonical path of
+       sysroot with child_path instead of gdb_sysroot if it is valid.
+
 2019-02-12  John Baldwin  <jhb@FreeBSD.org>
 
        * symfile.c (find_separate_debug_file): Use child_path to
index ffcba1a0908afae42fcc4ca5470bab36b90997ac..61483824f63409b6fbf0fbd91908add235e35e9b 100644 (file)
@@ -1441,6 +1441,7 @@ find_separate_debug_file (const char *dir,
   const char *dir_notarget = target_prefix ? dir + strlen ("target:") : dir;
   std::vector<gdb::unique_xmalloc_ptr<char>> debugdir_vec
     = dirnames_to_char_ptr_vec (debug_file_directory);
+  gdb::unique_xmalloc_ptr<char> canon_sysroot = gdb_realpath (gdb_sysroot);
 
   for (const gdb::unique_xmalloc_ptr<char> &debugdir : debugdir_vec)
     {
@@ -1453,9 +1454,15 @@ find_separate_debug_file (const char *dir,
       if (separate_debug_file_exists (debugfile, crc32, objfile))
        return debugfile;
 
-      const char *base_path;
-      if (canon_dir != NULL
-         && (base_path = child_path (gdb_sysroot, canon_dir)) != NULL)
+      const char *base_path = NULL;
+      if (canon_dir != NULL)
+       {
+         if (canon_sysroot.get () != NULL)
+           base_path = child_path (canon_sysroot.get (), canon_dir);
+         else
+           base_path = child_path (gdb_sysroot, canon_dir);
+       }
+      if (base_path != NULL)
        {
          /* If the file is in the sysroot, try using its base path in
             the global debugfile directory.  */
This page took 0.026517 seconds and 4 git commands to generate.