在运行时访问 build-id

Tod*_*eed 6 c linker gcc elf linker-scripts

我试图弄清楚如何访问链接器在运行时生成的构建 ID。

从该页面,https://linux.die.net/man/1/ld

当我构建一个测试程序时,例如:

% gcc test.c -o test -Wl,--build-id=sha1
Run Code Online (Sandbox Code Playgroud)

我可以看到二进制文件中存在构建 ID:

% readelf -n test

Displaying notes found in: .note.gnu.build-id
  Owner                 Data size   Description
  GNU                  0x00000014   NT_GNU_BUILD_ID (unique build ID bitstring)
    Build ID: 85aa97bd52ddc4dc2a704949c2545a3a9c69c6db
Run Code Online (Sandbox Code Playgroud)

我想在运行时打印它。

编辑:假设您无法访问加载正在运行的进程的 elf 文件(权限、嵌入式/无文件系统等)。

编辑:接受的答案有效,但链接器不一定必须将变量放在该部分的末尾。如果有一种方法可以获取指向该部分开头的指针,那就更可靠了。

Tod*_*eed 5

弄清楚了。这是一个工作示例,

#include <stdio.h>

//
// variable must have an initializer
//  https://gcc.gnu.org/onlinedocs/gcc-3.3.1/gcc/Variable-Attributes.html
//
// the linker places this immediately after the section data
// 
char build_id __attribute__((section(".note.gnu.build-id"))) = '!';

int main(int argc, char ** argv)
{
  const char * s;

  s = &build_id;

  // section data is 20 bytes in size
  s -= 20;

  // sha1 data continues for 20 bytes
  printf("  > Build ID: ");
  int x;
  for(x = 0; x < 20; x++) {
    printf("%02hhx", s[x]);
  }

  printf(" <\n");

  return 0;
}
Run Code Online (Sandbox Code Playgroud)

当我运行这个时,我得到与 readelf 匹配的输出,

0 % gcc -g main.c -o test -Wl,--build-id=sha1 && readelf -n test | tail -n 5 && ./test
Displaying notes found in: .note.gnu.build-id
  Owner                 Data size       Description
  GNU                  0x00000014       NT_GNU_BUILD_ID (unique build ID bitstring)
    Build ID: c5eca2cb08f4f5a31bb695955c7ebd2722ca10e9
  > Build ID: c5eca2cb08f4f5a31bb695955c7ebd2722ca10e9 <
Run Code Online (Sandbox Code Playgroud)