How To Install dwarves.x86_64 on Amazon Linux 2

In this tutorial we learn how to install dwarves.x86_64 in Amazon Linux 2. dwarves.x86_64 is Debugging Information Manipulation Tools (pahole & friends)

Introduction

In this tutorial we learn how to install dwarves.x86_64 on Amazon Linux 2.

What is dwarves.x86_64

dwarves is a set of tools that use the debugging information inserted in ELF binaries by compilers such as GCC, used by well known debuggers such as GDB, and more recent ones such as systemtap. Utilities in the dwarves suite include pahole, that can be used to find alignment holes in structs and classes in languages such as C, C++, but not limited to these. It also extracts other information such as CPU cacheline alignment, helping pack those structures to achieve more cache hits. These tools can also be used to encode and read the BTF type information format used with the Linux kernel bpf syscall, using ‘pahole -J’ and ‘pahole -F btf’. A diff like tool, codiff can be used to compare the effects changes in source code generate on the resulting binaries. Another tool is pfunct, that can be used to find all sorts of information about functions, inlines, decisions made by the compiler about inlining, etc. One example of pfunct usage is in the fullcircle tool, a shell that drivers pfunct to generate compileable code out of a .o file and then build it using gcc, with the same compiler flags, and then use codiff to make sure the original .o file and the new one generated from debug info produces the same debug info. Pahole also can be used to use all this type information to pretty print raw data according to command line directions. Headers can have its data format described from debugging info and offsets from it can be used to further format a number of records. The btfdiff utility compares the output of pahole from BTF and DWARF to make sure they produce the same results.

We can use yum to install dwarves.x86_64 on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install dwarves.x86_64.

Install dwarves.x86_64 on Amazon Linux 2 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install dwarves.x86_64 using yum by running the following command:

sudo yum -y install dwarves.x86_64

How To Uninstall dwarves.x86_64 on Amazon Linux 2

To uninstall only the dwarves.x86_64 package we can use the following command:

sudo yum remove dwarves.x86_64

dwarves.x86_64 Package Contents on Amazon Linux 2

/usr/bin/btfdiff
/usr/bin/codiff
/usr/bin/ctracer
/usr/bin/dtagnames
/usr/bin/fullcircle
/usr/bin/ostra-cg
/usr/bin/pahole
/usr/bin/pdwtags
/usr/bin/pfunct
/usr/bin/pglobal
/usr/bin/prefcnt
/usr/bin/scncopy
/usr/bin/syscse
/usr/share/doc/dwarves-1.22
/usr/share/doc/dwarves-1.22/NEWS
/usr/share/doc/dwarves-1.22/README.btf
/usr/share/doc/dwarves-1.22/README.ctracer
/usr/share/doc/dwarves-1.22/changes-v1.19
/usr/share/dwarves
/usr/share/dwarves/runtime
/usr/share/dwarves/runtime/Makefile
/usr/share/dwarves/runtime/ctracer_relay.c
/usr/share/dwarves/runtime/ctracer_relay.h
/usr/share/dwarves/runtime/linux.blacklist.cu
/usr/share/dwarves/runtime/python
/usr/share/dwarves/runtime/python/ostra.py
/usr/share/man/man1/pahole.1.gz

References

Summary

In this tutorial we learn how to install dwarves.x86_64 on Amazon Linux 2 using yum.