PR gdb/27876 - debuginfod-downloaded source files don't pass proper fullname across...
authorAaron Merey <amerey@redhat.com>
Sat, 20 Nov 2021 00:41:40 +0000 (19:41 -0500)
committerAaron Merey <amerey@redhat.com>
Tue, 8 Mar 2022 20:37:01 +0000 (15:37 -0500)
Source files downloaded from debuginfod currently use their original DWARF
filename as their "fullname".  This causes a mismatch between the fullname
and the actual location of the source file in the debuginfod client cache.

MI consumers such as VSCode will fail to open debuginfod-downloaded
source files due to this.  Also 'info source' will fail to include the
true paths of these files.

To fix this, use the debuginfod cache path as the fullname for debuginfod-
downloaded source files.

gdb/debuginfod-support.c

index 56d8e7781c514a3d2426bff8c22ad610741e49f0..b44ce67c340a79e45fcdd9db26302acb6ac8aad2 100644 (file)
@@ -202,6 +202,7 @@ debuginfod_source_query (const unsigned char *build_id,
   if (c == nullptr)
     return scoped_fd (-ENOMEM);
 
+  char *dname = nullptr;
   user_data data ("source file", srcpath);
 
   debuginfod_set_user_data (c, &data);
@@ -216,7 +217,7 @@ debuginfod_source_query (const unsigned char *build_id,
                                        build_id,
                                        build_id_len,
                                        srcpath,
-                                       nullptr));
+                                       &dname));
   debuginfod_set_user_data (c, nullptr);
 
   if (debuginfod_verbose > 0 && fd.get () < 0 && fd.get () != -ENOENT)
@@ -225,7 +226,7 @@ debuginfod_source_query (const unsigned char *build_id,
                     styled_string (file_name_style.style (),  srcpath));
 
   if (fd.get () >= 0)
-    *destname = make_unique_xstrdup (srcpath);
+    destname->reset (dname);
 
   return fd;
 }