对`.data'重新定位R_X86_64_32制作共享对象时不能使用;

时间:2018-03-22 17:04:59

标签: c assembly ld

我编写了下面的汇编程序代码,它可以直接构建as和ld传递。

as cpuid.s -o cpuid.o
ld cpuid.o -o cpuid

但是当我使用gcc来完成整个程序时。我遇到了以下错误。

$ gcc cpuid.s -o cpuid
/tmp/cctNMsIU.o: In function `_start':
(.text+0x0): multiple definition of `_start'
/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o:(.text+0x0): first defined here
/usr/bin/ld: /tmp/cctNMsIU.o: relocation R_X86_64_32 against `.data' can not be used when making a shared object; recompile with -fPIC
/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
/usr/bin/ld: final link failed: Invalid operation
collect2: error: ld returned 1 exit status

然后我将_start修改为main,并将-fPIC添加到gcc参数。但它并没有解决我的ld错误。错误消息更改为以下。

$ gcc cpuid.s -o cpuid
/usr/bin/ld: /tmp/ccYCG80T.o: relocation R_X86_64_32 against `.data' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Nonrepresentable section on output
collect2: error: ld returned 1 exit status

由于我没有制作共享对象,我不明白其含义。我只想制作一个可执行的二进制文件。

    .section .data
output:

    .ascii "The processor Vendor ID is 'xxxxxxxxxxxx'\n"

    .section .text

    .global _start

_start:

    movl $0, %eax

    cpuid

    movl $output, %edi
    movl %ebx, 28(%edi)
    movl %edx, 32(%edi)
    movl %ecx, 36(%edi)

    movl $4, %eax
    movl $1, %ebx
    movl $output, %ecx
    movl $42, %edx
    int $0x80

    movl $1, %eax
    movl $0, %ebx
    int $0x80

如果我将上面的代码修改为以下代码,是否正确或对64位asm编程有一些副作用?

         .section .data
 output:
         .ascii "The processor Vendor ID is 'xxxxxxxxxxxx'\n"

         .section .text

         .global main
 main:
         movq $0, %rax
         cpuid

         lea output(%rip), %rdi
         movl %ebx, 28(%rdi)
         movl %edx, 32(%rdi)
         movl %ecx, 36(%rdi)
         movq %rdi, %r10

         movq $1, %rax
         movq $1, %rdi
         movq %r10, %rsi
         movq $42, %rdx
         syscall

2 个答案:

答案 0 :(得分:1)

正如评论所指出的那样,您可以通过将您的程序链接为非PIE来解决此问题,但最好将您的asm修复为与位置无关。如果它的32位x86代码有点难看。这条指令:

    movl $output, %edi

会变成:

    call 1f
1:  pop %edi
    add $output-1b, %edi

对于64位它更干净。而不是:

    movq $output, %rdi

你写的:

    lea output(%rip), %rdi

答案 1 :(得分:0)

使用NASM,我通过在源文件中放置“ DEFAULT REL”行来解决此问题(请检查nasmdoc.pdf第76页)。