|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import * as vscode from 'vscode'; |
|
|
|
|
|
import {println} from './logger'; |
|
|
import {extensionConfig} from './config'; |
|
|
import {isPathValidOssFuzzPath} from './ossfuzzWrappers'; |
|
|
import {systemSync} from './utils'; |
|
|
|
|
|
const fs = require('fs'); |
|
|
|
|
|
export async function setUpFuzzIntrospector() { |
|
|
println('Setting up oss-fuzz in /tmp/'); |
|
|
|
|
|
|
|
|
const tmpOssFuzzRepositoryPath = '/tmp/fi-tmp-env'; |
|
|
|
|
|
if ((await isPathValidOssFuzzPath(tmpOssFuzzRepositoryPath)) === true) { |
|
|
println('Fuzz Introspector virtual env already exists in /tmp/fi-tmp-env'); |
|
|
extensionConfig.ossFuzzPepositoryWorkPath = tmpOssFuzzRepositoryPath; |
|
|
return; |
|
|
} |
|
|
|
|
|
const cmdToExec = 'python3.11'; |
|
|
const args: Array<string> = ['-m', 'virtualenv', tmpOssFuzzRepositoryPath]; |
|
|
const [res, output] = await systemSync(cmdToExec, args); |
|
|
if (res === false) { |
|
|
println('Failed to create virtual environment'); |
|
|
println(output); |
|
|
return; |
|
|
} |
|
|
|
|
|
const cmdToExec2 = '/tmp/fi-tmp-env/bin/python3.11'; |
|
|
const args2: Array<string> = [ |
|
|
'-m', |
|
|
'pip', |
|
|
'install', |
|
|
'fuzz-introspector==0.1.6', |
|
|
]; |
|
|
const [res2, output2] = await systemSync(cmdToExec2, args2); |
|
|
if (res2 === false) { |
|
|
println('Failed to create virtual environment'); |
|
|
println(output2); |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
export async function runFuzzIntrospector() { |
|
|
println('Setting up oss-fuzz in /tmp/'); |
|
|
|
|
|
const workspaceFolder = vscode.workspace.workspaceFolders; |
|
|
if (!workspaceFolder) { |
|
|
return; |
|
|
} |
|
|
const pathOfLocal = workspaceFolder[0].uri.fsPath; |
|
|
println('path of local: ' + pathOfLocal); |
|
|
|
|
|
|
|
|
const tmpOssFuzzRepositoryPath = '/tmp/fi-tmp-env'; |
|
|
|
|
|
if ((await isPathValidOssFuzzPath(tmpOssFuzzRepositoryPath)) === true) { |
|
|
println('Fuzz Introspector virtual env already exists in /tmp/fi-tmp-env'); |
|
|
extensionConfig.ossFuzzPepositoryWorkPath = tmpOssFuzzRepositoryPath; |
|
|
return; |
|
|
} |
|
|
|
|
|
await systemSync('mkdir', ['-p', '/tmp/out-fi/']); |
|
|
|
|
|
const cmdToExec = '/tmp/fi-tmp-env/bin/fuzz-introspector'; |
|
|
const args: Array<string> = [ |
|
|
'full', |
|
|
'--target_dir=' + pathOfLocal, |
|
|
'--out-dir=/tmp/out-fi', |
|
|
]; |
|
|
const [res, output] = await systemSync(cmdToExec, args); |
|
|
if (res === false) { |
|
|
println('Failed run FI'); |
|
|
println(output); |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
export async function getOptimalTargetsFromIntrospector() { |
|
|
if (!fs.existsSync('/tmp/out-fi/summary.json')) { |
|
|
println('There are no introspector reports. Please run introspector first'); |
|
|
} |
|
|
const json_data = fs.readFileSync('/tmp/out-fi/summary.json'); |
|
|
|
|
|
|
|
|
const jsonCodeCoverage = JSON.parse(json_data); |
|
|
|
|
|
println('Optimal targets'); |
|
|
Object.entries(jsonCodeCoverage['analyses']['OptimalTargets']).forEach( |
|
|
entry => { |
|
|
const [key, value] = entry; |
|
|
const objectDictionary: any = value as any; |
|
|
println(JSON.stringify(objectDictionary, null, 2)); |
|
|
} |
|
|
); |
|
|
println('--------------------------'); |
|
|
|
|
|
return; |
|
|
} |
|
|
|