1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
|
# This is libdwarf README.md
Updated 29 November 2024
## Goal
Libdwarf has been focused for years
on both providing access to DWARF2 through
DWARF5 data in a portable
way while also detecting and reporting
if the DWARF is corrupted and avoiding
run-time crashes or memory leakage regardless
how corrupted the DWARF being read may be.
The intent is to provide ABI independent
access to DWARF data and ensure that data
returned by the library is meaningful.
When the DWARF6 standard is released by the DWARF committee
support will be added (as soon as
reasonably possible) to libdwarf for all
changes/additions while continuing to support
previous versions.
## github actions
ci runs builds on Linux, Freebsd, msys2, and MacOS
using configure,cmake, and meson.
[](https://github.com/davea42/libdwarf-code/actions/workflows/test.yml)
[](https://bestpractices.coreinfrastructure.org/projects/7275)
Version 0.11.1 Released 1 December 2024.
Version 0.11.0 Released 15 August 2024.
Version 0.10.1 Released 1 July 2024.
Version 0.9.2 Released 2 April 2024.
Version 0.9.1 Released 27 January 2024.
Version 0.9.0 Released 8 December 2023.
## NOTE on linking against libdwarf.a
If you are linking code against a static
library libdwarf.a You must arrange to define the
macro LIBDWARF_STATIC in compiling your code that
does a #include "libdwarf.h".
See also READMEwin-msys2.md
## REQUIREMENTS from a libdwarf<name>.tar.xz
Mentioning some that might not be automatically
in your base OS release. Restricting attention
here to just building libdwarf and dwarfdump.
Nothing in the project requires or references
elf.h, libelf.h, or libelf as of 29 June 2023,
version 0.8.0.
If the objects you work with do not have
section content compressed
with zlib(libz) or libzstd
neither those libraries nor their header files
are required for building/using
libdwarf/dwarfdump.
Ubuntu:
sudo apt install xz pkgconf zlib1g zlib1g-dev libzstd1
sudo apt install libzstd-dev
# Use of libzstd1 is new in 0.4.3
# zlib1g zlib1g-dev libzstd1 are all optional but
# are required to read any DWARF data in compressed
# sections. libzstd1 was used by many linux system utilities
# in Ubuntu 20.04.
optional add: cmake meson ninja doxygen
FreeBSD:
pkg install bash xz python3 gmake liblz4 zstd
# libzstd is likely in /usr/local/lib and zstd.h
# in /usr/local/include and the compiler may not look there
# by default. All will still build fine without it and
# without lzib too, though compressed DWARF sections
# may not be readable.
# example:
CPPFLAGS="-I/usr/local/include/" LDFLAGS="-L/usr/local/lib" ./configure
optional add: binutils cmake meson ninja doxygen
Ensure that all the needed programs are in $PATH,
including python3.
# candidate command to make python3 visible (as root)
# something like:
cd /usr/local/bin ; ln -s python3.9 python3
## BUILDING from a libdwarf<name>.tar.xz
This is always recommended as it's not necessary
to have GNU autotools installed.
These examples show doing a build in a directory
different than the source as that is generally
recommended practice.
### GNU configure/autotools build
Note: if you get a build failure that mentions
something about test/ and missing .Po object files
add --disable-dependency-tracking to the configure
command.
rm -rf /tmp/build
mkdir /tmp/build
cd /tmp
tar xf <path to>/libdwarf-0.4.2.tar.xz
cd /tmp/build
/tmp/libdwarf-0.4.2/configure
make
make check
### cmake build
READMEcmake.md has details on the available cmake options.
We suggest that you will find meson a more satisfactory
tool.
### meson build
meson 0.45.1 on Ubuntu 18.04 fails.
meson 0.55.2 on Ubuntu 20.04 works.
meson 0.60.3 on Freebsd 12.2 and Freebsd 13.0 works.
See READMEwin-msys2.md for the mingw64 msys2 packages to install
and the command(s) to do that in msys2.
The tools listed there are also for msys2 meson and
autotools/configure.
The msys2 meson ninja install not only installs libdwarf-0.dll
and dwarfdump.exe it updates the executables in
the build tree linking to that dll so all such
executables in the build tree work too.
For example (all build environments):
meson /tmp/libdwarf-0.4.2
ninja
ninja install
ninja test
For a faster build, adding additional checks:
export CFLAGS="-g -pipe"
export CXXFLAGS="-g -pipe"
meson /tmp/libdwarf-0.4.2 -Ddwarfexample=true
ninja -j8
ninja install
ninja test
To build a libdwarf that does not refer to or link with
decompression libraries zstd or zlib, add the meson
option "-Ddecompression=false"
## BUILDING example showing simple builds:
This checks for the existence critical executables
such as cmake,meson,and ninja and only runs builds
that could work. Useful in any supported
environment.
sh scripts/allsimplebuilds.sh
## BUILDING on linux from a git clone with configure/autotools
Ignore this section if using meson (or cmake).
This is not recommended as it requires you have more
software installed.
For Ubuntu configure, install additional packages:
autoconf
automake
libtool
pkg-config
For FreeBSD configure, install additional packages:
autoconf
automake
libtool
pkgconf
Here we assume the source is in a directory named
/path/to/code
For example, on Ubuntu 20.04
```
sudo apt-get install autoconf libtool pkg-config
```
Note: if you get a build failure that mentions
something about test/ and missing .Po object files
add --disable-dependency-tracking to the configure
command.
Using the source/build directories from above as examples,
do :
# Standard Linux Build
cd /path/to/code
sh autogen.sh
cd /tmp/build
/path/to/code/configure
make
make check
## BUILDING on MacOS from a git clone configure
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install autoconf automake libtool
# Then use the Standard Linux Build lines above.
### Options to meson on Linux/Unix
For the basic configuration options list , do:
meson configure /path/to/code
To set options and show the resulting actual options:
# Here just setting one option.
meson setup -Ddwarfexample=true . /home/davea/dwarf/code
meson configure .
The meson configure output is very wide (just letting you know).
### Options to configure/autotools on Linux/Unix
For the full options list , do:
/path/to/code/configure --help
By default configure compiles and uses libdwarf.a.
With `--enable-shared --disable-static"
appended to the configure step,
libdwarf.so is built and the runtimes
built will reference libdwarf.so.
As of version 0.9.1 the configure option
"--disable-decompression" tells the build to compile
libdwarf and dwarfdump with no reference to the zlib or
zstd libraries.
If you get a build failure that mentions
something about test/ and missing .Po object files
add --disable-dependency-tracking to the configure
command. With that option do not assume you can
alter source files and have make rebuild all
necessary.
See:
https://www.gnu.org/savannah-checkouts/gnu/automake/history/automake-history.html#Dependency-Tracking-Evolution
Other options of possible interest:
--enable-wall to turn on compiler diagnostics
--enable-dwarfexample to compile the example programs.
configure -h shows the options available.
Sanity checking:
gcc has some checks that can be done at runtime.
-fsanitize=undefined is turned on for
configure by --enable-sanitize
### Options to meson on linux MacOS Windows (Msys2)
As of 0.9.0 meson builds default to be
shared-library builds.
These options go on the meson setup command line.
the default can be explicitly chosen with:
--default-library shared
A static libdwarf (archive) libdwarf.a can be built with
--default-library static
By default compiler warnings are errors. Add the following
to let compilations continue:
-Dwerror=false
By default compiles look for C/C++ language issues.
Add the following to add gcc -fsanitize checking
in the build to catch various memory errors
(the generated code is larger and slower than normal).
-Dsanitize=true
### Options to configure on Windows (Msys2)
All libdwarf builds are automatically shared object (dll)
builds. No static libdwarf.a can be built.
If you need static libdwarf.a use meson or cmake.
Has the same meson setup reporting as on Linux (above).
See READMEwin-msys2.md
### Distributing via configure/autotools
When ready to create a new source distribution do
a build and then
make distcheck
# INCOMPATIBILITIES. Changes to interfaces
### Comparing libdwarf-0.11.0 to libdwarf-0.9.1
Added dwarf_get_ranges_baseaddress() to the API.
### Comparing libdwarf-0.9.1 to libdwarf-0.9.0
Altered the type of the return value of
dwarf_die_abbrev_code() and dwarf_get_section_count()
from int to Dwarf_Unsigned for consistency (should always
have been this way).
### Comparing libdwarf-0.9.0 to libdwarf-0.8.0
New interfaces allow full support for
Mach-O (Apple) universal binaries:
dwarf_init_path_a(), dwarf_init_path_dl_a(), and
dwarf_get_universalbinary_count().
### Comparing libdwarf-0.8.0 to libdwarf-0.7.0
The default build (with meson) is shared-library.
to build with static (archive) libdwarf
add
--default-library static
to the meson command line (applies to meson
builds in Linux,Macos, and Windows-mingw).
On Windows-mingw one can build static libdwarf
when using cmake or meson (configure will
not allow a static libdwarf to be built
on Windows).
See Options to meson on Windows (Msys2) above.
### Comparing libdwarf-0.7.0 to libdwarf-0.6.0
struct Dwarf\_Obj\_Access\_Methods\_a\_s changed
for extended ELF so the library can handle section count values
larger than 16bits.
dwarf\_dnames\_abbrev\_by\_code() and
dwarf\_dnames\_abbrev\_form\_by\_index()
were removed from the API, better alternatives
already existed.
### Comparing libdwarf-0.6.0 to libdwarf-0.5.0
The dealloc required by dwarf\_offset\_list()
was wrong, use dwarf\_dealloc(dbg, offsetlistptr, DW_DLA_UARRAY).
The function dwarf\_dietype\_offset() has a revised
argument list so it can work correctly with DWARF4.
dwarf\_get\_pubtypes() and similar changed
to eliminate messy code duplication.
Fixed memory leaks and treatment of DW\_FORM\_strx3
and DW\_FORM\_addrx3.
### Comparing libdwarf-0.5.0 to libdwarf-0.4.2
dwarf\_get\_globals() is compatible but it now
returns data from .debug\_names in addition
to .debug\_pubnames (either or both
could be in an object file).
New function dwarf\_global\_tag\_number()
makes the data from .debug\_names a bit
more useful (if a library user wants it).
Three new functions were added to enable
printing of the .debug_addr section
independent of other sections
and the new dwarfdump option --print-debug-addr
prints that section.
### Comparing libdwarf-0.4.2 to libdwarf-0.4.1
No incompatibilities.
### Comparing libdwarf-0.4.1 to libdwarf-0.4.0
Added a new function dwarf\_suppress\_debuglink\_crc()
which speeds up gnu debuglink (only use it if
you are sure the debuglink name-check alone is sufficient).
### Comparing libdwarf-0.4.0 to libdwarf-0.3.4
A few dealloc() functions changed name to have
a consistent pattern for all such.
Access to the DWARF5 .debug\_names section
is now fully implemented.
See the <strong>Recent Changes</strong> section in
libdwarf.pdf (in the release).
[dwhtml]: https://www.prevanders.net/libdwarfdoc/index.html
[dwpdf]: https://www.prevanders.net/libdwarf.pdf
Or see the latest online html version [dwhtml] for the details..
Or see (via download) the latest pdf html version [dwpdf].
Notice the table of contents at the right edge of the html page.
## Reading DWARF from memory
If one has DWARF bytes in memory or in a
kind of file system libdwarf cannot understand
one should use
dwarf_object_init_b()
...call libdwarf functions...
dwarf_object_finish()
and create source to provide
functions and data for the three struct
types:
struct Dwarf_Obj_Access_Interface_a_s
struct Dwarf_Obj_Access_Methods_a_s
struct Dwarf_Obj_Access_Section_a_s
These functions and structs now seem complete
(unlike the earlier libdwarf versions), hence
the name and content changes.
For a worked out example of reading DWARF direct from memory
with no file system involved
see
src/bin/dwarfexample/jitreader.c
and see the html [dwhtml] (www.prevanders.net/libdwarfdoc/index.html).
The latest pdf is [dwpdf] (www.prevanders.net/libdwarf.pdf)
David Anderson.
|