On Thu, Oct 17, 2013 at 01:17:23PM +0100, Jon Medhurst (Tixy) wrote:
On Wed, 2013-10-16 at 01:38 +0300, Taras Kondratiuk wrote:
Hi
I was debugging kprobes-test for BE8 and noticed that some data fields are stored in LE instead of BE. It happens because these data fields get interpreted as instructions.
Is it a known issue?
For example: test_align_fail_data: bx lr .byte 0xaa .align .word 0x12345678
I would expect to see something like this: 00000000 <test_align_fail_data>: 0: e12fff1e bx lr 4: aa .byte 0xaa 5: 00 .byte 0x00 6: 0000 .short 0x0000 8: 12345678 .word 0x12345678
But instead I have: 00000000 <test_align_fail_data>: 0: e12fff1e bx lr 4: aa .byte 0xaa 5: 00 .byte 0x00 6: 0000 .short 0x0000 8: 12345678 eorsne r5, r4, #120, 12 ; 0x7800000
As a result the word 0x12345678 will be stored in LE.
I've run several tests and here are my observations:
- Double ".align" fixes the issue :)
- Behavior is the same for LE/BE, ARM/Thumb, GCC 4.4.1/4.6.x/4.8.2
- Size of alignment doesn't matter.
- Issue happens only if previous data is not instruction-aligned and 0's are added before NOPs.
- Explicit filling with 0's (.align , 0) fixes the issue, but as a side effect data @0x4 is interpreted as a single ".word 0xaa000000" instead of ".byte .byte .short". I'm not sure if there can be any functional difference because of this.
After thinking about things overnight, I believe that this is the fix we should go with. We want to stick alignment padding between data laid down with .byte and .word so it makes sense to explicitly ask the toolchain to pad with zeros rather than leaving it the opportunity to get confused. (.align in the text section probably means it wants to align with nops, but then sees the initial alignment and/or surrounding statements look like binary data, not code, and then...)
I believe this workaround will work.
Looking at the gas code, if .align is given an explicit fill value, the special NOP-padding code in gas is bypassed, and padding works just the same as it would in a data section.
Obviously, this only works in situations where the bytes emitted by .align are never executed by the CPU.
I'll send a patch proposing that fix after I've worked out how to test it on a big-endian kernel. Or if someone else sends a patch for that with a good commit message that explains what's going on I'll happily ack that.
Disassemble-testing may be enough -- but I advise to dump the relevant code section with objdump -s as well as reading the code disassembly. The hex dump does not lie, whereas the disassembler does sometimes get confused in cases like this.
Building and disassembling in BE8 and LE configurations will exercise the two main cases (linker swabbing versus no swabbing) -- comparing the dump of vmlinux with the dump of the .o file shows what the linker is doing.
Cheers ---Dave
On Thu, 2013-10-17 at 13:55 +0100, Dave Martin wrote:
On Thu, Oct 17, 2013 at 01:17:23PM +0100, Jon Medhurst (Tixy) wrote:
On Wed, 2013-10-16 at 01:38 +0300, Taras Kondratiuk wrote:
Hi
I was debugging kprobes-test for BE8 and noticed that some data fields are stored in LE instead of BE. It happens because these data fields get interpreted as instructions.
Is it a known issue?
For example: test_align_fail_data: bx lr .byte 0xaa .align .word 0x12345678
I would expect to see something like this: 00000000 <test_align_fail_data>: 0: e12fff1e bx lr 4: aa .byte 0xaa 5: 00 .byte 0x00 6: 0000 .short 0x0000 8: 12345678 .word 0x12345678
But instead I have: 00000000 <test_align_fail_data>: 0: e12fff1e bx lr 4: aa .byte 0xaa 5: 00 .byte 0x00 6: 0000 .short 0x0000 8: 12345678 eorsne r5, r4, #120, 12 ; 0x7800000
As a result the word 0x12345678 will be stored in LE.
I've run several tests and here are my observations:
- Double ".align" fixes the issue :)
- Behavior is the same for LE/BE, ARM/Thumb, GCC 4.4.1/4.6.x/4.8.2
- Size of alignment doesn't matter.
- Issue happens only if previous data is not instruction-aligned and 0's are added before NOPs.
- Explicit filling with 0's (.align , 0) fixes the issue, but as a side effect data @0x4 is interpreted as a single ".word 0xaa000000" instead of ".byte .byte .short". I'm not sure if there can be any functional difference because of this.
After thinking about things overnight, I believe that this is the fix we should go with. We want to stick alignment padding between data laid down with .byte and .word so it makes sense to explicitly ask the toolchain to pad with zeros rather than leaving it the opportunity to get confused. (.align in the text section probably means it wants to align with nops, but then sees the initial alignment and/or surrounding statements look like binary data, not code, and then...)
I believe this workaround will work.
Looking at the gas code, if .align is given an explicit fill value, the special NOP-padding code in gas is bypassed, and padding works just the same as it would in a data section.
Obviously, this only works in situations where the bytes emitted by .align are never executed by the CPU.
I'll send a patch proposing that fix after I've worked out how to test it on a big-endian kernel. Or if someone else sends a patch for that with a good commit message that explains what's going on I'll happily ack that.
Disassemble-testing may be enough -- but I advise to dump the relevant code section with objdump -s as well as reading the code disassembly. The hex dump does not lie, whereas the disassembler does sometimes get confused in cases like this.
Building and disassembling in BE8 and LE configurations will exercise the two main cases (linker swabbing versus no swabbing) -- comparing the dump of vmlinux with the dump of the .o file shows what the linker is doing.
Thanks, that's the clue I was missing. I was looking at objdumps of .o files and wasn't seeing any byte changes caused by this bug, just the disassembler treating data as code. Doing a dump of the final linked vmlinux I now see that exactly because the data is being treated as code, the linking is swapping the byte order of the data, (because ARM instructions are always little-endian and need to be fixed from their big-endian representation in the .o file?).
In another branch of this thread, Taras said he had patches that were tested, so I'll wait for those rather than doing one myself. Taras should get the main credit for this investigation anyway :-)
On 10/18/2013 02:03 PM, Jon Medhurst (Tixy) wrote:
On Thu, 2013-10-17 at 13:55 +0100, Dave Martin wrote:
On Thu, Oct 17, 2013 at 01:17:23PM +0100, Jon Medhurst (Tixy) wrote:
I'll send a patch proposing that fix after I've worked out how to test it on a big-endian kernel. Or if someone else sends a patch for that with a good commit message that explains what's going on I'll happily ack that.
Disassemble-testing may be enough -- but I advise to dump the relevant code section with objdump -s as well as reading the code disassembly. The hex dump does not lie, whereas the disassembler does sometimes get confused in cases like this.
Building and disassembling in BE8 and LE configurations will exercise the two main cases (linker swabbing versus no swabbing) -- comparing the dump of vmlinux with the dump of the .o file shows what the linker is doing.
Thanks, that's the clue I was missing. I was looking at objdumps of .o files and wasn't seeing any byte changes caused by this bug, just the disassembler treating data as code. Doing a dump of the final linked vmlinux I now see that exactly because the data is being treated as code, the linking is swapping the byte order of the data, (because ARM instructions are always little-endian and need to be fixed from their big-endian representation in the .o file?).
In another branch of this thread, Taras said he had patches that were tested, so I'll wait for those rather than doing one myself. Taras should get the main credit for this investigation anyway :-)
I've just sent patches to Ben.
I was looking into gas code and found an opposite bug: If NOP-padding is used to align data it can be treated as data and saved in BE format. So we definitely have to explicitly specify fill value for data alignment in code section.
linaro-kernel@lists.linaro.org