libbfd: 使用 AMD64 机器类型写入 COFF object

libbfd: Write COFF object with AMD64 machine type

我正在使用 libbfd 写出 windows 的 coff object 文件的内容,其中包含 x86-64 代码。编写符号、节和重定位是可行的,但生成的文件没有在 coff header 中设置的机器类型。我在文件的开头手动写了 0x8664 来解决这个问题。

有没有办法使用 bfd API 来设置 object 的机器类型?

这是我编写 object 文件的代码:

bfd_init();
auto bfd = bfd_openw("test.obj", "pe-x86-64");
if (!bfd) {
    bfd_perror("bfd_openw failed");
    return -1;
}
if (!bfd_set_format(bfd, bfd_object)) {
    bfd_perror("bfd_set_format failed");
    return -1;
}

// now write some sections, symbols and relocations

bfd_close(bfd);

// TODO hack: overwrite first two bytes of file to make it a AMD64 coff file
std::fstream obj_file("test.obj", std::ios::binary | std::ios::in | std::ios::out);
obj_file.seekp(0, std::ios::beg);
obj_file.write("\x64\x86", 2);

答案很简单,但在文档中很难找到...打开 bfd 对象时,必须使用 bfd_set_arch_info 来设置体系结构。

bfd_init();
auto bfd = bfd_openw("test.obj", "pe-x86-64");
if (!bfd) {
    bfd_perror("bfd_openw failed");
    return -1;
}
if (!bfd_set_format(bfd, bfd_object)) {
    bfd_perror("bfd_set_format failed");
    return -1;
}
// now set the architecture:
bfd_set_arch_info(bfd, bfd_lookup_arch(bfd_arch_i386, bfd_mach_x86_64));