[AArch64] Support AArch64 MTE memory tag dumps in core files
authorLuis Machado <luis.machado@arm.com>
Tue, 28 Jun 2022 11:57:34 +0000 (12:57 +0100)
committerLuis Machado <luis.machado@arm.com>
Tue, 19 Jul 2022 14:24:27 +0000 (15:24 +0100)
commitd0ff5ca959df91dcef16ec57154ff199fad5a4e4
tree2c4c2a74b17daebac60d1e69725c65a854beb632
parent3c539d41b48e5a70cc22b0151ee79b8bd752341d
[AArch64] Support AArch64 MTE memory tag dumps in core files

The Linux kernel can dump memory tag segments to a core file, one segment
per mapped range. The format and documentation can be found in the Linux
kernel tree [1].

The following patch adjusts bfd and binutils so they can handle this new
segment type and display it accordingly. It also adds code required so GDB
can properly read/dump core file data containing memory tags.

Upon reading, each segment that contains memory tags gets mapped to a
section named "memtag". These sections will be used by GDB to lookup the tag
data. There can be multiple such sections with the same name, and they are not
numbered to simplify GDB's handling and lookup.

There is another patch for GDB that enables both reading
and dumping of memory tag segments.

Tested on aarch64-linux Ubuntu 20.04.

[1] Documentation/arm64/memory-tagging-extension.rst (Core Dump Support)
bfd/elfnn-aarch64.c
binutils/readelf.c
include/elf/aarch64.h