From: Jan Kratochvil <jan.kratochvil@redhat.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: gdb-patches@sourceware.org, roland@redhat.com
Subject: Re: [patch] build-id .debug files load (like .gnu_debuglink)
Date: Sat, 01 Sep 2007 11:35:00 -0000 [thread overview]
Message-ID: <20070901113530.GA30667@host0.dyn.jankratochvil.net> (raw)
In-Reply-To: <ups12vfro.fsf@gnu.org>
[-- Attachment #1: Type: text/plain, Size: 3505 bytes --]
Hi,
On Sat, 01 Sep 2007 12:31:07 +0200, Eli Zaretskii wrote:
...
> I attach below the changes I committed to the manual,
thanks, sure more readable.
...
> . The Fedora site that describes the build ID features seems to say
> that there are TWO files (actually symlinks) in the global debug
> directory for each executable: ab/cdef1234 and ab/cdef1234.debug.
> By contrast, you only talk about a single file.
The file ab/cdef1234 points to the main executable (or shared library), it is
not used by this patch so far. Going to submit now the second part of the
patch which automatically finds the matching executable / shared libraries
according to the build-id signatures left stored in a core file.
There should be probably a new section in the documentation for it afterwards.
> . The Fedora site says that the build ID symlinks are created only
> in the global debug directory. However, your patch seems to say
> that GDB looks for these symlinks in all the other possible
> locations as well:
>
> @value{GDBN} checks under each of these names for a debugging
> +information file with build id content matching the build id content of the
> +executable file - or - whose checksum matches the one given in the link in the
> +debug link case.
>
> Which one is true?
Wrong/ambiguous is my wording. Your current sectence `GDB will look for the
following debug information files, in the indicated order' is definitely right
so I expect your current documentation version can be kept this way.
> . The objcopy commands shown in your patch seem to be relevant only
> to the ``debug link'' method (at least that's what I understand
> from the last objcopy command). If so, I think we should say what
> are the corresponding commands for the ``debug ID'' method.
> Likewise, if there are (or going to be) features in elfutils that
> support ``debug ID'', I think we should mention them, as we do for
> ``debug links'' now.
``debug ID'' gets included by `ld --build-id', therefore by `gcc
-Wl,--build-id', it is still not default in FSF GCC. There are no specific
splitting commands required (such as `objcopy --add-gnu-debuglink' for the
former "debug link". Older binutils strip ``debug ID'' during the file split,
binutils since binutils-2.17.50.0.18 became compatible.
Included a new doc paragraph.
> . I'm confused by your mentioning of ``all files'' in this passage:
>
> +@dfn{build id} is present in all the files [...]
>
> as opposed to ``only the executable'' in the debug link case:
>
> +@dfn{debug link} is present only in the executable [...]
>
> I don't understand this distinction. As far as I could glean from
> the build ID description on the Fedora site, the difference is
> that the build ID is present both in the executable and in the
> debug info file, whereas the debug link is present only in the
> executable. Thus we have two files (maybe 3, if core dumps are
> counted), vs one, not ``only one'' vs ``all''. Did I miss
> something?
You are right and your wording in the doc is also OK:
The executable contains a "build ID", a unique signature that is also
present in the corresponding debug info file.
...
> Btw, I think this change warrants an entry in NEWS.
I delayed it after the second part (locating the files from the core file
signatures) but still the entry can be updated later.
NEWS/doc patch included below.
Thanks,
Jan
[-- Attachment #2: gdb-build-id-news-and-build.patch --]
[-- Type: text/plain, Size: 1799 bytes --]
2007-09-01 Jan Kratochvil <jan.kratochvil@redhat.com>
* NEWS: Mention the build-id .debug files verification.
2007-09-01 Jan Kratochvil <jan.kratochvil@redhat.com>
* gdb.texinfo (Separate Debug Files): Cosmetic quoting removal.
New binaries build instructions for the ``build ID'' inclusion.
--- gdb/NEWS 28 Aug 2007 19:57:11 -0000 1.236
+++ gdb/NEWS 1 Sep 2007 11:29:43 -0000
@@ -61,6 +61,9 @@ Windows and SymbianOS).
* The GDB remote stub, gdbserver, now supports dynamic link libraries
(DLLs) on Windows and Windows CE targets.
+* GDB now supports a faster verification a .debug file matches its binary
+according to its build-id signature, if the signature present.
+
* New commands
set remoteflow
--- gdb/doc/gdb.texinfo 1 Sep 2007 10:28:25 -0000 1.426
+++ gdb/doc/gdb.texinfo 1 Sep 2007 11:29:53 -0000
@@ -12033,7 +12033,7 @@ following commands:
@smallexample
@kbd{objcopy --only-keep-debug foo foo.debug}
@kbd{strip -g foo}
-@kbd{objcopy --add-gnu-debuglink="foo.debug" "foo"}
+@kbd{objcopy --add-gnu-debuglink=foo.debug foo}
@end smallexample
@noindent
@@ -12044,6 +12044,11 @@ Drepper's @file{elfutils} package, start
a version of the @code{strip} command such that the command @kbd{strip foo -f
foo.debug} has the same functionality as the three commands above.
+``Debug ID'' gets embedded into the main executable using @code{ld --build-id}
+or the @value{NGCC} counterpart @code{gcc -Wl,--build-id}. ``Debug ID''
+support plus compatibility fixes for debug files separation are present in
+@sc{gnu} binary utilities (Binutils) since version 2.17.50.0.18.
+
Since there are many different ways to compute CRC's for the debug
link (different polynomials, reversals, byte ordering, etc.), the
simplest way to describe the CRC used in @code{.gnu_debuglink}
next prev parent reply other threads:[~2007-09-01 11:35 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-24 18:05 Jan Kratochvil
2007-08-24 18:20 ` Daniel Jacobowitz
2007-08-25 22:49 ` Jan Kratochvil
2007-08-25 23:58 ` Daniel Jacobowitz
2007-08-26 9:41 ` Jan Kratochvil
2007-08-31 9:38 ` Eli Zaretskii
2007-08-31 20:51 ` [patch approval?] " Jan Kratochvil
2007-08-31 21:12 ` Daniel Jacobowitz
2007-09-01 8:01 ` Eli Zaretskii
[not found] ` <20070901081934.GA31205@host0.dyn.jankratochvil.net>
2007-09-01 10:31 ` [patch] " Eli Zaretskii
2007-09-01 11:35 ` Jan Kratochvil [this message]
2007-09-01 12:15 ` Eli Zaretskii
2007-09-01 13:12 ` Jan Kratochvil
2007-09-01 13:25 ` Mark Kettenis
2007-09-01 14:22 ` Eli Zaretskii
2007-09-02 13:57 ` [patch approved?] [doc] " Jan Kratochvil
2007-09-02 17:49 ` Mark Kettenis
2007-09-02 19:38 ` Eli Zaretskii
2007-09-01 14:16 ` [patch] " Eli Zaretskii
2007-09-04 2:21 ` Roland McGrath
2007-09-04 3:23 ` Eli Zaretskii
2007-09-04 7:21 ` Roland McGrath
2007-09-15 9:52 ` Eli Zaretskii
2007-09-16 17:19 ` Roland McGrath
2007-08-25 22:48 ` Roland McGrath
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070901113530.GA30667@host0.dyn.jankratochvil.net \
--to=jan.kratochvil@redhat.com \
--cc=eliz@gnu.org \
--cc=gdb-patches@sourceware.org \
--cc=roland@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox