mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-27 05:10:43 +00:00
78f30a5156
After f613a7c4
("pkg/cover: fix prefix computation") we stopped trimming
starting "/" from linux path names. This broke get_maintainers.pl script
which is now given non-existent absolute paths (e.g. "/mm/mmap.c"),
as the result syzbot can't find any maintainers for bug reports
and mails them into lkml limbo.
Trim starting slashes and dots. Extend tests for catch this.
102 lines
2.4 KiB
Go
102 lines
2.4 KiB
Go
// Copyright 2018 syzkaller project authors. All rights reserved.
|
|
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
|
|
|
|
package report
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/google/syzkaller/pkg/symbolizer"
|
|
)
|
|
|
|
func TestNetbsdSymbolizeLine(t *testing.T) {
|
|
tests := []struct {
|
|
line string
|
|
result string
|
|
}{
|
|
// Normal symbolization.
|
|
{
|
|
"closef(ffffffff,ffffffff) at netbsd:closef+0xaf\n",
|
|
"closef(ffffffff,ffffffff) at netbsd:closef+0xaf kern_descrip.c:1241\n",
|
|
},
|
|
// Inlined frames.
|
|
{
|
|
"sleep_finish_all(ffffffff,32) at netbsd:sleep_finish_all+0x22\n",
|
|
"sleep_finish_all(ffffffff,32) at netbsd:sleep_finish_all+0x22 sleep_finish_timeout kern_synch.c:336 [inline]\n" +
|
|
"sleep_finish_all(ffffffff,32) at netbsd:sleep_finish_all+0x22 kern_synch.c:157\n",
|
|
},
|
|
// Missing symbol.
|
|
{
|
|
"foo(ffffffff,ffffffff) at netbsd:foo+0x1e",
|
|
"foo(ffffffff,ffffffff) at netbsd:foo+0x1e",
|
|
},
|
|
// Witness symbolization.
|
|
{
|
|
"#4 closef+0xaf\n",
|
|
"#4 closef+0xaf kern_descrip.c:1241\n",
|
|
},
|
|
{
|
|
"#10 closef+0xaf\n",
|
|
"#10 closef+0xaf kern_descrip.c:1241\n",
|
|
},
|
|
}
|
|
symbols := map[string][]symbolizer.Symbol{
|
|
"closef": {
|
|
{Addr: 0x815088a0, Size: 0x12f},
|
|
},
|
|
"sleep_finish_all": {
|
|
{Addr: 0x81237520, Size: 0x173},
|
|
},
|
|
}
|
|
symb := func(bin string, pc uint64) ([]symbolizer.Frame, error) {
|
|
if bin != "netbsd.gdb" {
|
|
return nil, fmt.Errorf("unknown pc 0x%x", pc)
|
|
}
|
|
|
|
switch pc & 0xffffffff {
|
|
case 0x8150894f:
|
|
return []symbolizer.Frame{
|
|
{
|
|
Func: "closef",
|
|
File: "/netbsd/src/kern_descrip.c",
|
|
Line: 1241,
|
|
},
|
|
}, nil
|
|
case 0x81237542:
|
|
return []symbolizer.Frame{
|
|
{
|
|
Func: "sleep_finish_timeout",
|
|
File: "/netbsd/src/kern_synch.c",
|
|
Line: 336,
|
|
Inline: true,
|
|
},
|
|
{
|
|
Func: "sleep_finish_all",
|
|
File: "/netbsd/src/kern_synch.c",
|
|
Line: 157,
|
|
},
|
|
}, nil
|
|
default:
|
|
return nil, fmt.Errorf("unknown pc 0x%x", pc)
|
|
}
|
|
}
|
|
nbsd := netbsd{
|
|
config: &config{
|
|
kernelSrc: "/netbsd/src2",
|
|
kernelBuildSrc: "/netbsd/src",
|
|
kernelObj: "/netbsd/src/obj/sys/arch/amd64/compile/GENERIC",
|
|
},
|
|
kernelObject: "netbsd.gdb",
|
|
symbols: symbols,
|
|
}
|
|
for i, test := range tests {
|
|
t.Run(fmt.Sprint(i), func(t *testing.T) {
|
|
result := nbsd.symbolizeLine(symb, []byte(test.line))
|
|
if test.result != string(result) {
|
|
t.Errorf("want %q\n\t get %q", test.result, string(result))
|
|
}
|
|
})
|
|
}
|
|
}
|