2017-12-10 22:00:49 +00:00
|
|
|
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
|
2017-12-04 19:24:00 +00:00
|
|
|
From: Fedora GDB patches <invalid@email.com>
|
|
|
|
Date: Fri, 27 Oct 2017 21:07:50 +0200
|
|
|
|
Subject: gdb-6.6-buildid-locate-rpm-scl.patch
|
|
|
|
|
2017-12-08 04:31:26 +00:00
|
|
|
;; [SCL] Skip deprecated .gdb_index warning for Red Hat built files (BZ 953585).
|
|
|
|
;;=push+jan
|
|
|
|
|
2013-04-22 14:23:49 +00:00
|
|
|
warning: Skipping deprecated .gdb_index section
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=953585
|
|
|
|
|
2017-12-08 04:31:26 +00:00
|
|
|
diff --git a/gdb/build-id.c b/gdb/build-id.c
|
|
|
|
--- a/gdb/build-id.c
|
|
|
|
+++ b/gdb/build-id.c
|
2019-04-12 20:35:20 +00:00
|
|
|
@@ -744,7 +744,11 @@ static int missing_rpm_list_entries;
|
2013-04-22 14:23:49 +00:00
|
|
|
/* Returns the count of newly added rpms. */
|
|
|
|
|
|
|
|
static int
|
2016-01-09 13:46:42 +00:00
|
|
|
+#ifndef GDB_INDEX_VERIFY_VENDOR
|
|
|
|
missing_rpm_enlist (const char *filename)
|
|
|
|
+#else
|
2013-04-22 14:23:49 +00:00
|
|
|
+missing_rpm_enlist_1 (const char *filename, int verify_vendor)
|
2016-01-09 13:46:42 +00:00
|
|
|
+#endif
|
2013-04-22 14:23:49 +00:00
|
|
|
{
|
|
|
|
static int rpm_init_done = 0;
|
|
|
|
rpmts ts;
|
2019-04-12 20:35:20 +00:00
|
|
|
@@ -851,7 +855,11 @@ missing_rpm_enlist (const char *filename)
|
2013-04-22 14:23:49 +00:00
|
|
|
mi = rpmtsInitIterator_p (ts, RPMTAG_BASENAMES, filename, 0);
|
|
|
|
if (mi != NULL)
|
|
|
|
{
|
2016-01-09 13:46:42 +00:00
|
|
|
+#ifndef GDB_INDEX_VERIFY_VENDOR
|
|
|
|
for (;;)
|
|
|
|
+#else
|
2013-04-22 14:23:49 +00:00
|
|
|
+ if (!verify_vendor) for (;;)
|
2016-01-09 13:46:42 +00:00
|
|
|
+#endif
|
2013-04-22 14:23:49 +00:00
|
|
|
{
|
|
|
|
Header h;
|
|
|
|
char *debuginfo, **slot, *s, *s2;
|
2019-04-12 20:35:20 +00:00
|
|
|
@@ -969,6 +977,37 @@ missing_rpm_enlist (const char *filename)
|
2013-04-22 14:23:49 +00:00
|
|
|
xfree (debuginfo);
|
|
|
|
count++;
|
|
|
|
}
|
2016-01-09 13:46:42 +00:00
|
|
|
+#ifdef GDB_INDEX_VERIFY_VENDOR
|
2013-04-22 14:23:49 +00:00
|
|
|
+ else /* verify_vendor */
|
|
|
|
+ {
|
|
|
|
+ int vendor_pass = 0, vendor_fail = 0;
|
|
|
|
+
|
|
|
|
+ for (;;)
|
|
|
|
+ {
|
|
|
|
+ Header h;
|
|
|
|
+ errmsg_t err;
|
|
|
|
+ char *vendor;
|
|
|
|
+
|
|
|
|
+ h = rpmdbNextIterator_p (mi);
|
|
|
|
+ if (h == NULL)
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ vendor = headerFormat_p (h, "%{vendor}", &err);
|
|
|
|
+ if (!vendor)
|
|
|
|
+ {
|
|
|
|
+ warning (_("Error querying the rpm file `%s': %s"), filename,
|
|
|
|
+ err);
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ if (strcmp (vendor, "Red Hat, Inc.") == 0)
|
|
|
|
+ vendor_pass = 1;
|
|
|
|
+ else
|
|
|
|
+ vendor_fail = 1;
|
|
|
|
+ xfree (vendor);
|
|
|
|
+ }
|
|
|
|
+ count = vendor_pass != 0 && vendor_fail == 0;
|
|
|
|
+ }
|
2016-01-09 13:46:42 +00:00
|
|
|
+#endif
|
2013-04-22 14:23:49 +00:00
|
|
|
|
|
|
|
rpmdbFreeIterator_p (mi);
|
|
|
|
}
|
2019-04-12 20:35:20 +00:00
|
|
|
@@ -978,6 +1017,20 @@ missing_rpm_enlist (const char *filename)
|
2019-03-19 22:06:34 +00:00
|
|
|
return count;
|
2013-04-22 14:23:49 +00:00
|
|
|
}
|
|
|
|
|
2016-01-09 13:46:42 +00:00
|
|
|
+#ifdef GDB_INDEX_VERIFY_VENDOR
|
2013-04-22 14:23:49 +00:00
|
|
|
+missing_rpm_enlist (const char *filename)
|
|
|
|
+{
|
|
|
|
+ return missing_rpm_enlist_1 (filename, 0);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+extern int rpm_verify_vendor (const char *filename);
|
|
|
|
+int
|
|
|
|
+rpm_verify_vendor (const char *filename)
|
|
|
|
+{
|
|
|
|
+ return missing_rpm_enlist_1 (filename, 1);
|
|
|
|
+}
|
2016-01-09 13:46:42 +00:00
|
|
|
+#endif
|
2019-03-19 22:06:34 +00:00
|
|
|
+
|
|
|
|
static bool
|
|
|
|
missing_rpm_list_compar (const char *ap, const char *bp)
|
2013-04-22 14:23:49 +00:00
|
|
|
{
|
2017-12-08 04:31:26 +00:00
|
|
|
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
|
|
|
|
--- a/gdb/dwarf2read.c
|
|
|
|
+++ b/gdb/dwarf2read.c
|
2019-05-02 03:08:41 +00:00
|
|
|
@@ -3496,6 +3496,16 @@ read_gdb_index_from_buffer (struct objfile *objfile,
|
2016-01-09 13:46:42 +00:00
|
|
|
"set use-deprecated-index-sections on". */
|
|
|
|
if (version < 6 && !deprecated_ok)
|
|
|
|
{
|
|
|
|
+#ifdef GDB_INDEX_VERIFY_VENDOR
|
|
|
|
+ extern int rpm_verify_vendor (const char *filename);
|
|
|
|
+
|
|
|
|
+ /* Red Hat Developer Toolset exception. */
|
|
|
|
+ if (rpm_verify_vendor (filename))
|
|
|
|
+ {}
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+#endif
|
|
|
|
static int warning_printed = 0;
|
|
|
|
if (!warning_printed)
|
|
|
|
{
|
2019-05-02 03:08:41 +00:00
|
|
|
@@ -3507,6 +3517,10 @@ to use the section anyway."),
|
2016-01-09 13:46:42 +00:00
|
|
|
warning_printed = 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
+#ifdef GDB_INDEX_VERIFY_VENDOR
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
}
|
|
|
|
/* Version 7 indices generated by gold refer to the CU for a symbol instead
|
|
|
|
of the TU (for symbols coming from TUs),
|