2010-01-06 09:24:06

by Hui Zhu

[permalink] [raw]
Subject: [PATCH] Fix markup_oops.pl get error in x86

Hello,

When I try to use markup_oops.pl in x86, I always get:
cat 1 | perl markup_oops.pl ./vmlinux
objdump: --start-address: bad number: NaN
No matching code found
This is because in line:
if ($line =~ /EIP is at ([a-zA-Z0-9\_]+)\+0x([0-9a-f]+)\/[a-f0-9]/) {
$function = $1;
$func_offset = $2;
}
$func_offset will get a number like "0x2"
But in follow code:
my $decodestart = Math::BigInt->from_hex("0x$target") -
Math::BigInt->from_hex("0x$func_offset");
It add other ox to ox2.
Then this value will be set to NaN.

So I make a small patch to fix it.

Best regards,
Hui

---
scripts/markup_oops.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- a/scripts/markup_oops.pl
+++ b/scripts/markup_oops.pl
@@ -154,7 +154,7 @@ while (<STDIN>) {
if ($line =~ /RIP: 0010:\[\<([a-z0-9]+)\>\]/) {
$target = $1;
}
- if ($line =~ /EIP is at ([a-zA-Z0-9\_]+)\+(0x[0-9a-f]+)\/0x[a-f0-9]/) {
+ if ($line =~ /EIP is at ([a-zA-Z0-9\_]+)\+0x([0-9a-f]+)\/[a-f0-9]/) {
$function = $1;
$func_offset = $2;
}


2010-01-06 13:23:50

by Arjan van de Ven

[permalink] [raw]
Subject: Re: [PATCH] Fix markup_oops.pl get error in x86

On 1/6/2010 1:23, Hui Zhu wrote:
> }
> $func_offset will get a number like "0x2"
> But in follow code:
> my $decodestart = Math::BigInt->from_hex("0x$target") -
> Math::BigInt->from_hex("0x$func_offset");
> It add other ox to ox2.
> Then this value will be set to NaN.
>
> So I make a small patch to fix it.

> - if ($line =~ /EIP is at ([a-zA-Z0-9\_]+)\+(0x[0-9a-f]+)\/0x[a-f0-9]/) {
> + if ($line =~ /EIP is at ([a-zA-Z0-9\_]+)\+0x([0-9a-f]+)\/[a-f0-9]/) {

I think this makes sense, but would you not also need to add "x" to the list of allowed characters?
so [a-f0-9x]
?

2010-01-06 13:46:12

by Ozan Çağlayan

[permalink] [raw]
Subject: Re: [PATCH] Fix markup_oops.pl get error in x86

Hui Zhu wrote On 06-01-2010 11:23:
> Hello,
>
> When I try to use markup_oops.pl in x86, I always get:

I already mentioned that but wasn't able to get attention, and yes the current code doesn't work,

http://lkml.indiana.edu/hypermail/linux/kernel/0908.0/02222.html

2010-01-07 05:43:25

by Hui Zhu

[permalink] [raw]
Subject: Re: [PATCH] Fix markup_oops.pl get error in x86

On Wed, Jan 6, 2010 at 21:23, Arjan van de Ven <[email protected]> wrote:
> On 1/6/2010 1:23, Hui Zhu wrote:
>>
>> ? ? ? ?}
>> $func_offset will get a number like "0x2"
>> But in follow code:
>> my $decodestart = Math::BigInt->from_hex("0x$target") -
>> Math::BigInt->from_hex("0x$func_offset");
>> It add other ox to ox2.
>> Then this value will be set to NaN.
>>
>> So I make a small patch to fix it.
>
>> - ? ? ? if ($line =~ /EIP is at
>> ([a-zA-Z0-9\_]+)\+(0x[0-9a-f]+)\/0x[a-f0-9]/) {
>> + ? ? ? if ($line =~ /EIP is at
>> ([a-zA-Z0-9\_]+)\+0x([0-9a-f]+)\/[a-f0-9]/) {
>
> I think this makes sense, but would you not also need to add "x" to the list
> of allowed characters?
> so ? [a-f0-9x]
> ?
>
>

Ah, sorry I make a mistake. I think the last 0x need be keep.

What about this version?

Thanks,
Hui

---
scripts/markup_oops.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- a/scripts/markup_oops.pl
+++ b/scripts/markup_oops.pl
@@ -154,7 +154,7 @@ while (<STDIN>) {
if ($line =~ /RIP: 0010:\[\<([a-z0-9]+)\>\]/) {
$target = $1;
}
- if ($line =~ /EIP is at ([a-zA-Z0-9\_]+)\+(0x[0-9a-f]+)\/0x[a-f0-9]/) {
+ if ($line =~ /EIP is at ([a-zA-Z0-9\_]+)\+0x([0-9a-f]+)\/0x[a-f0-9]/) {
$function = $1;
$func_offset = $2;
}

2010-01-07 13:03:52

by Arjan van de Ven

[permalink] [raw]
Subject: Re: [PATCH] Fix markup_oops.pl get error in x86

On 1/6/2010 21:43, Hui Zhu wrote:
>
> What about this version?

looks great to me,

Acked-by: Arjan van de Ven <[email protected]>

>
> Thanks,
> Hui
>
> ---
> scripts/markup_oops.pl | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> --- a/scripts/markup_oops.pl
> +++ b/scripts/markup_oops.pl
> @@ -154,7 +154,7 @@ while (<STDIN>) {
> if ($line =~ /RIP: 0010:\[\<([a-z0-9]+)\>\]/) {
> $target = $1;
> }
> - if ($line =~ /EIP is at ([a-zA-Z0-9\_]+)\+(0x[0-9a-f]+)\/0x[a-f0-9]/) {
> + if ($line =~ /EIP is at ([a-zA-Z0-9\_]+)\+0x([0-9a-f]+)\/0x[a-f0-9]/) {
> $function = $1;
> $func_offset = $2;
> }

2010-01-11 02:59:25

by Hui Zhu

[permalink] [raw]
Subject: Re: [PATCH] Fix markup_oops.pl get error in x86

Thanks.

Hui

On Thu, Jan 7, 2010 at 21:03, Arjan van de Ven <[email protected]> wrote:
> On 1/6/2010 21:43, Hui Zhu wrote:
>>
>> What about this version?
>
> looks great to me,
>
> Acked-by: Arjan van de Ven <[email protected]>
>
>>
>> Thanks,
>> Hui
>>
>> ---
>> ?scripts/markup_oops.pl | ? ?2 +-
>> ?1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> --- a/scripts/markup_oops.pl
>> +++ b/scripts/markup_oops.pl
>> @@ -154,7 +154,7 @@ while (<STDIN>) {
>> ? ? ? ?if ($line =~ /RIP: 0010:\[\<([a-z0-9]+)\>\]/) {
>> ? ? ? ? ? ? ? ?$target = $1;
>> ? ? ? ?}
>> - ? ? ? if ($line =~ /EIP is at
>> ([a-zA-Z0-9\_]+)\+(0x[0-9a-f]+)\/0x[a-f0-9]/) {
>> + ? ? ? if ($line =~ /EIP is at
>> ([a-zA-Z0-9\_]+)\+0x([0-9a-f]+)\/0x[a-f0-9]/) {
>> ? ? ? ? ? ? ? ?$function = $1;
>> ? ? ? ? ? ? ? ?$func_offset = $2;
>> ? ? ? ?}
>
>

2010-01-12 03:02:47

by Hui Zhu

[permalink] [raw]
Subject: Re: [PATCH] Fix markup_oops.pl get error in x86

Sorry I forgot the Signed-off-by and CC in prev mail.

When I try to use markup_oops.pl in x86, I always get:
cat 1 | perl markup_oops.pl ./vmlinux
objdump: --start-address: bad number: NaN
No matching code found
This is because in line:
if ($line =~ /EIP is at ([a-zA-Z0-9\_]+)\+0x([0-9a-f]+)\/[a-f0-9]/) {
$function = $1;
$func_offset = $2;
}
$func_offset will get a number like "0x2"
But in follow code:
my $decodestart = Math::BigInt->from_hex("0x$target") -
Math::BigInt->from_hex("0x$func_offset");
It add other 0x to 0x2.
Then this value will be set to NaN.
This patch will fix it.

Signed-off-by: Hui Zhu <[email protected]>
CC: Andrew Morton <[email protected]>
CC: Arjan van de Ven <[email protected]>
CC: Sam Ravnborg <[email protected]>
CC: Ozan ?aglayan <[email protected]>
CC: Matthew Wilcox <[email protected]>

---
scripts/markup_oops.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- a/scripts/markup_oops.pl
+++ b/scripts/markup_oops.pl
@@ -154,7 +154,7 @@ while (<STDIN>) {
if ($line =~ /RIP: 0010:\[\<([a-z0-9]+)\>\]/) {
$target = $1;
}
- if ($line =~ /EIP is at ([a-zA-Z0-9\_]+)\+(0x[0-9a-f]+)\/0x[a-f0-9]/) {
+ if ($line =~ /EIP is at ([a-zA-Z0-9\_]+)\+0x([0-9a-f]+)\/0x[a-f0-9]/) {
$function = $1;
$func_offset = $2;
}