-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vscode: add CFLite helper for C++ (#11364)
Adds helpers to: - Generate files needed for a CFLite set up (the content of `.clusterfuzzlite`, not the GH workflow) - Test fuzzers in a CFLite set up Only CPP support for now. Follow-up PRs will: - Add support for the rest of the languages - Add support for code coverage generation - Add support for yaml generation. Signed-off-by: David Korczynski <[email protected]>
- Loading branch information
1 parent
f55f09e
commit 6bcb160
Showing
9 changed files
with
443 additions
and
40 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
49 changes: 49 additions & 0 deletions
49
tools/vscode-extension/src/commands/cmdBuildFuzzerFromWorkspaceCFLite.ts
This file contains 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,49 @@ | ||
/* eslint-disable @typescript-eslint/no-explicit-any */ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
import {commandHistory} from '../commandUtils'; | ||
import {setStatusText} from '../utils'; | ||
import {buildFuzzersFromWorkspaceClusterfuzzLite} from '../ossfuzzWrappers'; | ||
|
||
export async function cmdInputCollectorBuildFuzzersFromWorkspaceCFLite() { | ||
// Create an history object | ||
const args = new Object({ | ||
toClean: false, | ||
}); | ||
|
||
const commandObject = new Object({ | ||
commandType: 'oss-fuzz.WSBuildFuzzers', | ||
Arguments: args, | ||
dispatcherFunc: cmdDispatchbuildFuzzersFromWorkspaceClusterfuzzLite, | ||
}); | ||
console.log('L1: ' + commandHistory.length); | ||
commandHistory.push(commandObject); | ||
|
||
await cmdDispatchbuildFuzzersFromWorkspaceClusterfuzzLite(args); | ||
return true; | ||
} | ||
|
||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
async function cmdDispatchbuildFuzzersFromWorkspaceClusterfuzzLite(_args: any) { | ||
await setStatusText('[CFLite] Building fuzzers: starting'); | ||
const res = await buildFuzzersFromWorkspaceClusterfuzzLite(); | ||
if (res) { | ||
await setStatusText('[CFLite] Building fuzzers: finished'); | ||
} else { | ||
await setStatusText('[CFLite] Building fuzzers: failed'); | ||
} | ||
} |
This file contains 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
38 changes: 38 additions & 0 deletions
38
tools/vscode-extension/src/commands/cmdDispatcherGenerateClusterfuzzLite.ts
This file contains 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,38 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
/** | ||
* Command for generating template fuzzers. This is a short-cut for rapid | ||
* prototyping as well as an archive for inspiration. | ||
*/ | ||
import * as vscode from 'vscode'; | ||
import {setStatusText} from '../utils'; | ||
|
||
import {setupProjectInitialFiles} from '../projectIntegrationHelper'; | ||
|
||
export async function cmdDispatcherGenerateClusterfuzzLite( | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
_context: vscode.ExtensionContext | ||
) { | ||
await setStatusText('Creating OSS-Fuzz setup: starting'); | ||
const res = await setupProjectInitialFiles(true); | ||
if (res) { | ||
await setStatusText('Creating OSS-Fuzz setup: finished'); | ||
} else { | ||
await setStatusText('Creating OSS-Fuzz setup: failed'); | ||
} | ||
return; | ||
} |
89 changes: 89 additions & 0 deletions
89
tools/vscode-extension/src/commands/cmdTestFuzzerCFLite.ts
This file contains 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,89 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
import path = require('path'); | ||
import * as vscode from 'vscode'; | ||
import {println} from '../logger'; | ||
import { | ||
runFuzzerHandlerCFLite, | ||
buildFuzzersFromWorkspaceClusterfuzzLite, | ||
} from '../ossfuzzWrappers'; | ||
import {setStatusText} from '../utils'; | ||
import {commandHistory} from '../commandUtils'; | ||
import {extensionConfig} from '../config'; | ||
|
||
/** | ||
* Does an end-to-end test of a project/fuzzer. This is done by | ||
* first building the project and then running the fuzzer. | ||
* @param context | ||
* @returns | ||
*/ | ||
|
||
export async function cmdInputCollectorTestFuzzerCFLite() { | ||
setStatusText('Testing specific fuzzer: getting input'); | ||
// Get the fuzzer to run | ||
const fuzzerNameInput = await vscode.window.showInputBox({ | ||
value: '', | ||
placeHolder: 'Type a fuzzer name', | ||
}); | ||
if (!fuzzerNameInput) { | ||
println('Failed to get fuzzer name'); | ||
return; | ||
} | ||
|
||
// Create the args object for the dispatcher | ||
const args = new Object({ | ||
fuzzerName: fuzzerNameInput.toString(), | ||
}); | ||
|
||
// Create a dispatcher object. | ||
const commandObject = new Object({ | ||
commandType: 'oss-fuzz.TestFuzzerCFLite', | ||
Arguments: args, | ||
dispatcherFunc: cmdDispatchTestFuzzerHandlerCFLite, | ||
}); | ||
commandHistory.push(commandObject); | ||
|
||
await cmdDispatchTestFuzzerHandlerCFLite(args); | ||
} | ||
|
||
async function cmdDispatchTestFuzzerHandlerCFLite(args: any) { | ||
// Build the project | ||
setStatusText('Test specific fuzzer: building fuzzers in workspace'); | ||
if (!(await buildFuzzersFromWorkspaceClusterfuzzLite())) { | ||
println('Build projects'); | ||
return; | ||
} | ||
|
||
const workspaceFolder = vscode.workspace.workspaceFolders; | ||
if (!workspaceFolder) { | ||
return; | ||
} | ||
|
||
const pathOfLocal = workspaceFolder[0].uri.path; | ||
println('path of local: ' + pathOfLocal); | ||
|
||
// Run the fuzzer for 10 seconds | ||
println('Running fuzzer'); | ||
setStatusText('Test specific fuzzer: running fuzzer ' + args.fuzzerName); | ||
await runFuzzerHandlerCFLite( | ||
pathOfLocal, | ||
args.fuzzerName, | ||
extensionConfig.numberOfSecondsForTestRuns.toString() | ||
); | ||
setStatusText('Test specific fuzzer: test completed of ' + args.fuzzerName); | ||
return; | ||
} |
This file contains 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 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
Oops, something went wrong.