]> bbs.cooldavid.org Git - net-next-2.6.git/commit - arch/arm/kernel/ptrace.c
[ARM] 3200/1: Singlestep over ARM BX and BLX instructions using ptrace fix
authorNikola Valerjev <nikola@ghs.com>
Sat, 10 Dec 2005 11:59:15 +0000 (11:59 +0000)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Sat, 10 Dec 2005 11:59:15 +0000 (11:59 +0000)
commit22f975f4ffa707ea24507f6899bb9f5a1ff034bc
treeb82d3d97110b8f5c9d80dfca36d38be98498fd5a
parent5b35193f5868da5e63f5b4cfe8fbcf9f10fe65cd
[ARM] 3200/1: Singlestep over ARM BX and BLX instructions using ptrace fix

Patch from Nikola Valerjev

Single stepping an application using ptrace() fails over ARM instructions BX and BLX.

Steps to reproduce:

Compile and link the following files

main.c
-----
void foo();
int main() {
    foo();
    return 0;
}

foo.s
-----
.text
.globl foo
foo:
BX LR

Using ptrace() functionality, run to main(), and start singlestepping.
Singlestep over \"BX LR\" instruction won\'t transfer the control back
to main, but run the code to completion.

This problems seems to be in the function get_branch_address() in
arch/arm/kernel/ptrace.c. The function doesn\'t seem to recognize BX
and BLX instructions as branches. BX and BLX instructions can be used
to convert from ARM to Thumb mode if the target address has the low
bit set. However, they are also perfectly legal in the ARM only mode.
Although other things in the kernel seem to indicate that only ARM
mode is accepted (and not Thumb), many compilers will generate BX
and BLX instructions even when generating ARM only code.

Signed-off-by: Nikola Valerjev <nikola@ghs.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/kernel/ptrace.c