KEYS: Provide a script to extract the sys cert list from a vmlinux file
authorDavid Howells <dhowells@redhat.com>
Wed, 21 Oct 2015 13:04:47 +0000 (14:04 +0100)
committerDavid Howells <dhowells@redhat.com>
Wed, 21 Oct 2015 14:18:36 +0000 (15:18 +0100)
commit2221a6ee73e7c8f43af802a1ef9426d4b0d122d3
tree2d44a90830df72ff6d85ce6d806b05176da9bbf9
parent27720e75a7a1597252a81dadcd178331c83af861
KEYS: Provide a script to extract the sys cert list from a vmlinux file

The supplied script takes a vmlinux file - and if necessary a System.map
file - locates the system certificates list and extracts it to the named
file.

Call as:

    ./scripts/extract-sys-certs vmlinux certs

if vmlinux contains symbols and:

    ./scripts/extract-sys-certs -s System.map vmlinux certs

if it does not.

It prints something like the following to stdout:

Have 27 sections
No symbols in vmlinux, trying System.map
Have 80088 symbols
Have 1346 bytes of certs at VMA 0xffffffff8201c540
Certificate list in section .init.data
Certificate list at file offset 0x141c540

If vmlinux contains symbols then that is used rather than System.map - even
if one is given.

Signed-off-by: David Howells <dhowells@redhat.com>
scripts/extract-sys-certs.pl [new file with mode: 0755]
This page took 0.029687 seconds and 5 git commands to generate.