-
Notifications
You must be signed in to change notification settings - Fork 1.4k
add codesearch tool #6458
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
add codesearch tool #6458
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,190 @@ | ||
| // Copyright 2025 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 codesearch | ||
|
|
||
| import ( | ||
| "bytes" | ||
| "fmt" | ||
| "os" | ||
| "path/filepath" | ||
| "strings" | ||
|
|
||
| "github.com/google/syzkaller/pkg/osutil" | ||
| ) | ||
|
|
||
| type Index struct { | ||
| db *Database | ||
| srcDirs []string | ||
| } | ||
|
|
||
| type Command struct { | ||
| Name string | ||
| NArgs int | ||
| Func func(*Index, []string) (string, error) | ||
| } | ||
|
|
||
| // Commands are used to run unit tests and for the syz-codesearch tool. | ||
| var Commands = []Command{ | ||
| {"file-index", 1, func(index *Index, args []string) (string, error) { | ||
| ok, entities, err := index.FileIndex(args[0]) | ||
| if err != nil || !ok { | ||
| return notFound, err | ||
| } | ||
| b := new(strings.Builder) | ||
| fmt.Fprintf(b, "file %v defines the following entities:\n\n", args[0]) | ||
| for _, ent := range entities { | ||
| fmt.Fprintf(b, "%v %v\n", ent.Kind, ent.Name) | ||
| } | ||
| return b.String(), nil | ||
| }}, | ||
| {"def-comment", 2, func(index *Index, args []string) (string, error) { | ||
| info, err := index.DefinitionComment(args[0], args[1]) | ||
| if err != nil || info == nil { | ||
| return notFound, err | ||
| } | ||
| if info.Body == "" { | ||
| return fmt.Sprintf("%v %v is defined in %v and is not commented\n", | ||
| info.Kind, args[1], info.File), nil | ||
| } | ||
| return fmt.Sprintf("%v %v is defined in %v and commented as:\n\n%v", | ||
| info.Kind, args[1], info.File, info.Body), nil | ||
| }}, | ||
| {"def-source", 3, func(index *Index, args []string) (string, error) { | ||
| info, err := index.DefinitionSource(args[0], args[1], args[2] == "yes") | ||
| if err != nil || info == nil { | ||
| return notFound, err | ||
| } | ||
| return fmt.Sprintf("%v %v is defined in %v:\n\n%v", info.Kind, args[1], info.File, info.Body), nil | ||
| }}, | ||
| } | ||
|
|
||
| const notFound = "not found\n" | ||
|
|
||
| func NewIndex(databaseFile string, srcDirs []string) (*Index, error) { | ||
| db, err := osutil.ReadJSON[*Database](databaseFile) | ||
| if err != nil { | ||
| return nil, err | ||
| } | ||
| return &Index{ | ||
| db: db, | ||
| srcDirs: srcDirs, | ||
| }, nil | ||
| } | ||
|
|
||
| func (index *Index) Command(cmd string, args []string) (string, error) { | ||
| for _, meta := range Commands { | ||
| if cmd == meta.Name { | ||
| if len(args) != meta.NArgs { | ||
| return "", fmt.Errorf("codesearch command %v requires %v args, but %v provided", | ||
| cmd, meta.NArgs, len(args)) | ||
| } | ||
| return meta.Func(index, args) | ||
| } | ||
| } | ||
| return "", fmt.Errorf("unknown codesearch command %v", cmd) | ||
| } | ||
|
|
||
| type Entity struct { | ||
| Kind string | ||
| Name string | ||
| } | ||
|
|
||
| func (index *Index) FileIndex(file string) (bool, []Entity, error) { | ||
| var entities []Entity | ||
| for _, def := range index.db.Definitions { | ||
| if def.Body.File == file { | ||
| entities = append(entities, Entity{ | ||
| Kind: def.Kind, | ||
| Name: def.Name, | ||
| }) | ||
| } | ||
| } | ||
| return len(entities) != 0, entities, nil | ||
| } | ||
|
|
||
| type EntityInfo struct { | ||
| File string | ||
| Kind string | ||
| Body string | ||
| } | ||
|
|
||
| func (index *Index) DefinitionComment(contextFile, name string) (*EntityInfo, error) { | ||
| return index.definitionSource(contextFile, name, true, false) | ||
| } | ||
|
|
||
| func (index *Index) DefinitionSource(contextFile, name string, includeLines bool) (*EntityInfo, error) { | ||
| return index.definitionSource(contextFile, name, false, includeLines) | ||
| } | ||
|
|
||
| func (index *Index) definitionSource(contextFile, name string, comment, includeLines bool) (*EntityInfo, error) { | ||
| def := index.findDefinition(contextFile, name) | ||
| if def == nil { | ||
| return nil, nil | ||
| } | ||
| lineRange := def.Body | ||
| if comment { | ||
| lineRange = def.Comment | ||
| } | ||
| src, err := index.formatSource(lineRange, includeLines) | ||
| if err != nil { | ||
| return nil, err | ||
| } | ||
| return &EntityInfo{ | ||
| File: def.Body.File, | ||
| Kind: def.Kind, | ||
| Body: src, | ||
| }, nil | ||
| } | ||
|
|
||
| func (index *Index) findDefinition(contextFile, name string) *Definition { | ||
| var weakMatch *Definition | ||
| for _, def := range index.db.Definitions { | ||
| if def.Name == name { | ||
| if def.Body.File == contextFile { | ||
| return def | ||
| } | ||
| if !def.IsStatic { | ||
| weakMatch = def | ||
| } | ||
| } | ||
| } | ||
| return weakMatch | ||
| } | ||
|
|
||
| func (index *Index) formatSource(lines LineRange, includeLines bool) (string, error) { | ||
| if lines.File == "" { | ||
| return "", nil | ||
| } | ||
| for _, dir := range index.srcDirs { | ||
| file := filepath.Join(dir, lines.File) | ||
| if !osutil.IsExist(file) { | ||
| continue | ||
| } | ||
| return formatSourceFile(file, lines.StartLine, lines.EndLine, includeLines) | ||
| } | ||
| return "", fmt.Errorf("codesearch: can't find %q file in any of %v", lines.File, index.srcDirs) | ||
| } | ||
|
|
||
| func formatSourceFile(file string, start, end int, includeLines bool) (string, error) { | ||
| data, err := os.ReadFile(file) | ||
| if err != nil { | ||
| return "", err | ||
| } | ||
| lines := bytes.Split(data, []byte{'\n'}) | ||
| start-- | ||
| end-- | ||
| if start < 0 || end < start || end > len(lines) { | ||
| return "", fmt.Errorf("codesearch: bad line range [%v-%v] for file %v with %v lines", | ||
| start, end, file, len(lines)) | ||
| } | ||
| b := new(strings.Builder) | ||
| for line := start; line <= end; line++ { | ||
| if includeLines { | ||
| fmt.Fprintf(b, "%4v:\t%s\n", line, lines[line]) | ||
| } else { | ||
| fmt.Fprintf(b, "%s\n", lines[line]) | ||
| } | ||
| } | ||
| return b.String(), nil | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| // Copyright 2025 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 codesearch | ||
|
|
||
| import ( | ||
| "bytes" | ||
| "os" | ||
| "path/filepath" | ||
| "strings" | ||
| "testing" | ||
|
|
||
| "github.com/google/syzkaller/pkg/clangtool/tooltest" | ||
| "github.com/google/syzkaller/pkg/osutil" | ||
| ) | ||
|
|
||
| func TestClangTool(t *testing.T) { | ||
| tooltest.TestClangTool[Database](t) | ||
| } | ||
|
|
||
| func TestCommands(t *testing.T) { | ||
| db := tooltest.LoadOutput[Database](t) | ||
| index := &Index{db, []string{"testdata"}} | ||
| files, err := filepath.Glob(filepath.Join(osutil.Abs("testdata"), "query*")) | ||
| if err != nil { | ||
| t.Fatal(err) | ||
| } | ||
| if len(files) == 0 { | ||
| t.Fatal("found no qeury files") | ||
| } | ||
| covered := make(map[string]bool) | ||
| for _, file := range files { | ||
| t.Run(filepath.Base(file), func(t *testing.T) { | ||
| testCommand(t, index, covered, file) | ||
| }) | ||
| } | ||
| for _, cmd := range Commands { | ||
| if !covered[cmd.Name] { | ||
| t.Errorf("command %v is not covered, add at least one test", cmd.Name) | ||
| } | ||
| } | ||
| } | ||
|
|
||
| func testCommand(t *testing.T, index *Index, covered map[string]bool, file string) { | ||
| data, err := os.ReadFile(file) | ||
| if err != nil { | ||
| t.Fatal(err) | ||
| } | ||
| query, _, _ := bytes.Cut(data, []byte{'\n'}) | ||
| args := strings.Fields(string(query)) | ||
| if len(args) == 0 { | ||
| t.Fatal("no command found") | ||
| } | ||
| result, err := index.Command(args[0], args[1:]) | ||
| if err != nil { | ||
| t.Fatal(err) | ||
| } | ||
| got := append([]byte(strings.Join(args, " ")+"\n\n"), result...) | ||
| tooltest.CompareGoldenData(t, file, got) | ||
| covered[args[0]] = true | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.