| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| const fs = require('fs'); |
| import * as vscode from 'vscode'; |
| import { |
| hasOssFuzzInWorkspace, |
| getOssFuzzWorkspaceProjectName, |
| listFuzzersForProject, |
| systemSyncLogIfFailure, |
| } from './utils'; |
| import {println} from './logger'; |
| import {extensionConfig} from './config'; |
|
|
| export async function buildFuzzersFromWorkspaceClusterfuzzLite() { |
| const workspaceFolder = vscode.workspace.workspaceFolders; |
| if (!workspaceFolder) { |
| println('No workspace folder, exiting'); |
| return false; |
| } |
|
|
| |
| const cmdToExec = 'python3'; |
| const args = [ |
| extensionConfig.ossFuzzPepositoryWorkPath + '/infra/helper.py', |
| 'build_fuzzers', |
| ]; |
|
|
| args.push('--external'); |
| args.push(workspaceFolder[0].uri.path); |
| println('Building fuzzers'); |
| if (!(await systemSyncLogIfFailure(cmdToExec, args))) { |
| println('Failed to build fuzzers'); |
| return false; |
| } |
| return true; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| export async function buildFuzzersFromWorkspace( |
| projectNameArg: string, |
| sanitizer: string, |
| toClean: boolean |
| ) { |
| |
|
|
| |
| if ( |
| (await isPathValidOssFuzzPath( |
| extensionConfig.ossFuzzPepositoryWorkPath |
| )) === false |
| ) { |
| println('No valid oss-fuzz path'); |
| return false; |
| } |
|
|
| const workspaceFolder = vscode.workspace.workspaceFolders; |
| if (!workspaceFolder) { |
| println('No workspace folder, exiting'); |
| return false; |
| } |
|
|
| let ossFuzzProjectName = ''; |
| if (await hasOssFuzzInWorkspace()) { |
| |
| |
| |
| ossFuzzProjectName = await getOssFuzzWorkspaceProjectName(); |
|
|
| |
| |
| |
| |
| |
| |
| println('Found project folder: ' + ossFuzzProjectName); |
|
|
| |
| let cmdToExec = 'cp'; |
| let args: Array<string> = [ |
| '-rfT', |
| workspaceFolder[0].uri.path + '/OSS-Fuzz/' + ossFuzzProjectName, |
| extensionConfig.ossFuzzPepositoryWorkPath + |
| '/projects/' + |
| ossFuzzProjectName + |
| '/', |
| ]; |
|
|
| if (!(await systemSyncLogIfFailure(cmdToExec, args))) { |
| println('Failed to copy project'); |
| return false; |
| } |
|
|
| |
| cmdToExec = 'python3'; |
| args = [ |
| extensionConfig.ossFuzzPepositoryWorkPath + '/infra/helper.py', |
| 'build_fuzzers', |
| ]; |
| println('DECIDING ABOUT SANITIZER'); |
| if (sanitizer !== '') { |
| println('ADDING CODE COVERAGE SANITIZER'); |
| args.push('--sanitizer=' + sanitizer); |
| } |
|
|
| if (toClean) { |
| args.push('--clean'); |
| } |
|
|
| args.push(ossFuzzProjectName); |
| println('Building fuzzers'); |
| if (!(await systemSyncLogIfFailure(cmdToExec, args))) { |
| println('Failed to build fuzzers'); |
| return false; |
| } |
| } else { |
| ossFuzzProjectName = projectNameArg; |
|
|
| const targetOssFuzzProject = vscode.Uri.file( |
| extensionConfig.ossFuzzPepositoryWorkPath + |
| '/projects/' + |
| ossFuzzProjectName |
| ); |
| |
| let projectHasOssFuzzFolder = false; |
| try { |
| await vscode.workspace.fs.readDirectory(targetOssFuzzProject); |
| projectHasOssFuzzFolder = true; |
| } catch { |
| projectHasOssFuzzFolder = false; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| if (projectHasOssFuzzFolder) { |
| |
|
|
| |
| |
| const wsPath = workspaceFolder[0].uri.fsPath; |
| const cmdToExec2 = 'cp'; |
| const temporaryProjectPath = |
| extensionConfig.ossFuzzPepositoryWorkPath + |
| '/projects/' + |
| ossFuzzProjectName + |
| '/temporary-project'; |
|
|
| const args2: Array<string> = [ |
| '-rfT', |
| wsPath.toString(), |
| temporaryProjectPath, |
| ]; |
|
|
| if (!(await systemSyncLogIfFailure(cmdToExec2, args2))) { |
| println('Failed to build fuzzers'); |
| return false; |
| } |
|
|
| |
| const temporaryDockerPath = |
| extensionConfig.ossFuzzPepositoryWorkPath + |
| '/projects/' + |
| ossFuzzProjectName + |
| '/Dockerfile'; |
| const temporaryDockerPath2 = |
| extensionConfig.ossFuzzPepositoryWorkPath + |
| '/projects/' + |
| ossFuzzProjectName + |
| '/Dockerfile2'; |
|
|
| const args3: Array<string> = [temporaryDockerPath, temporaryDockerPath2]; |
| if (!(await systemSyncLogIfFailure('cp', args3))) { |
| println('Failed to copy Dockerfile'); |
| return false; |
| } |
|
|
| |
| fs.appendFileSync( |
| temporaryDockerPath, |
| 'COPY temporary-project /src/' + ossFuzzProjectName |
| ); |
|
|
| |
| const cmdToExec = 'python3'; |
| const args = [ |
| extensionConfig.ossFuzzPepositoryWorkPath + '/infra/helper.py', |
| 'build_fuzzers', |
| ]; |
|
|
| |
| if (sanitizer !== '') { |
| args.push('--sanitizer=' + sanitizer); |
| } |
|
|
| |
| if (toClean) { |
| args.push('--clean'); |
| } |
|
|
| args.push(ossFuzzProjectName); |
| |
| |
| |
| |
| |
| |
| |
| |
| println('Building fuzzers'); |
| if (!(await systemSyncLogIfFailure(cmdToExec, args))) { |
| println('Failed to copy Dockerfile'); |
| |
| const args5: Array<string> = [ |
| temporaryDockerPath2, |
| temporaryDockerPath, |
| ]; |
| if (!(await systemSyncLogIfFailure('mv', args5))) { |
| println('Failed to copy back Dockerfile'); |
| return false; |
| } |
| return false; |
| } |
|
|
| |
| const args5: Array<string> = [temporaryDockerPath2, temporaryDockerPath]; |
| if (!(await systemSyncLogIfFailure('mv', args5))) { |
| println('Failed to copy back Dockerfile'); |
| return false; |
| } |
| } else { |
| println('OSS-Fuzz does not have the relevant project folder'); |
| return false; |
| } |
| } |
|
|
| |
| vscode.window.showInformationMessage('Successfully build project'); |
|
|
| |
| await listFuzzersForProject( |
| ossFuzzProjectName, |
| extensionConfig.ossFuzzPepositoryWorkPath |
| ); |
| return true; |
| } |
|
|
| |
| |
| |
| export async function runFuzzerHandlerCFLite( |
| projectNameArg: string, |
| fuzzerNameArg: string, |
| secondsToRunArg: string |
| ) { |
| |
| |
| const cmdToExec = 'python3'; |
|
|
| |
| |
| const args: Array<string> = [ |
| extensionConfig.ossFuzzPepositoryWorkPath + '/infra/helper.py', |
| 'run_fuzzer', |
| ]; |
|
|
| args.push('--external'); |
| args.push(projectNameArg); |
| args.push(fuzzerNameArg); |
| args.push('--'); |
| args.push('-max_total_time=' + secondsToRunArg); |
|
|
| println( |
| 'Running fuzzer' + |
| fuzzerNameArg + |
| ' from project ' + |
| projectNameArg + |
| ' for ' + |
| secondsToRunArg + |
| ' seconds.' |
| ); |
|
|
| |
| if (!(await systemSyncLogIfFailure(cmdToExec, args))) { |
| println('Failed to run fuzzer'); |
| return false; |
| } |
| return true; |
| } |
|
|
| |
| |
| |
| export async function runFuzzerHandler( |
| projectNameArg: string, |
| fuzzerNameArg: string, |
| secondsToRunArg: string, |
| fuzzerCorpusPath: string |
| ) { |
| |
| if ( |
| (await isPathValidOssFuzzPath( |
| extensionConfig.ossFuzzPepositoryWorkPath |
| )) === false |
| ) { |
| println('Missing valid OSS-Fuzz path.'); |
| return; |
| } |
| |
| |
| const cmdToExec = 'python3'; |
|
|
| |
| |
| const args: Array<string> = [ |
| extensionConfig.ossFuzzPepositoryWorkPath + '/infra/helper.py', |
| 'run_fuzzer', |
| ]; |
| if (fuzzerCorpusPath !== '') { |
| args.push('--corpus-dir'); |
| args.push(fuzzerCorpusPath); |
| } |
| args.push(projectNameArg); |
| args.push(fuzzerNameArg); |
| args.push('--'); |
| args.push('-max_total_time=' + secondsToRunArg); |
|
|
| println( |
| 'Running fuzzer' + |
| fuzzerNameArg + |
| ' from project ' + |
| projectNameArg + |
| ' for ' + |
| secondsToRunArg + |
| ' seconds.' |
| ); |
|
|
| |
| if (!(await systemSyncLogIfFailure(cmdToExec, args))) { |
| println('Failed to run fuzzer'); |
| return false; |
| } |
| return true; |
| } |
|
|
| |
| export async function isPathValidOssFuzzPath(path: string) { |
| try { |
| if (await vscode.workspace.fs.readDirectory(vscode.Uri.file(path))) { |
| |
| |
| const helperPath = path + '/infra/helper.py'; |
| |
| if (fs.existsSync(helperPath.toString())) { |
| return true; |
| } |
| } |
| } catch { |
| |
| } |
| return false; |
| } |
|
|