|
|
|
@ -1,20 +1,19 @@ |
|
|
|
|
const sha1 = require("sha1"); |
|
|
|
|
const web3Utils = require("web3-utils"); |
|
|
|
|
|
|
|
|
|
class Injector { |
|
|
|
|
constructor(){ |
|
|
|
|
this.hashCounter = 0; |
|
|
|
|
this.definitionCounter = 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Generates solidity statement to inject for line, stmt, branch, fn 'events' |
|
|
|
|
* @param {String} memoryVariable |
|
|
|
|
* @param {String} hash hash key to an instrumentationData entry (see _getHash) |
|
|
|
|
* @param {String} type instrumentation type, e.g. line, statement |
|
|
|
|
// @return {String} ex: _sc_82e0891[0] = bytes32(0xdc08...08ed1); /* function */
|
|
|
|
|
_getInjectable(memoryVariable, hash, type){ |
|
|
|
|
return `${memoryVariable}[0] = bytes32(${hash}); /* ${type} */ \n`; |
|
|
|
|
_split(contract, injectionPoint){ |
|
|
|
|
return { |
|
|
|
|
start: contract.instrumented.slice(0, injectionPoint), |
|
|
|
|
end: contract.instrumented.slice(injectionPoint) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_getInjectable(fileName, hash, type){ |
|
|
|
|
return `${this._getMethodIdentifier(fileName)}(${hash}); /* ${type} */ \n`; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_getHash(fileName) { |
|
|
|
@ -22,34 +21,45 @@ class Injector { |
|
|
|
|
return web3Utils.keccak256(`${fileName}:${this.hashCounter}`); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_getMethodIdentifier(fileName){ |
|
|
|
|
return `coverage_${web3Utils.keccak256(fileName).slice(0,10)}` |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_getInjectionComponents(contract, injectionPoint, fileName, type){ |
|
|
|
|
const { start, end } = this._split(contract, injectionPoint); |
|
|
|
|
const hash = this._getHash(fileName) |
|
|
|
|
const injectable = this._getInjectable(fileName, hash, type); |
|
|
|
|
|
|
|
|
|
return { |
|
|
|
|
start: start, |
|
|
|
|
end: end, |
|
|
|
|
hash: hash, |
|
|
|
|
injectable: injectable |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Generates a solidity statement injection. Declared once per fn. |
|
|
|
|
* Definition is the same for every fn in file. |
|
|
|
|
* @param {String} fileName |
|
|
|
|
* @return {String} ex: bytes32[1] memory _sc_82e0891 |
|
|
|
|
*/ |
|
|
|
|
_getMemoryVariableDefinition(fileName){ |
|
|
|
|
this.definitionCounter++; |
|
|
|
|
return `\nbytes32[1] memory _sc_${sha1(fileName).slice(0,7)};\n`; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_getMemoryVariableAssignment(fileName){ |
|
|
|
|
return `\n_sc_${sha1(fileName).slice(0,7)}`; |
|
|
|
|
_getHashMethodDefinition(fileName){ |
|
|
|
|
const hash = web3Utils.keccak256(fileName).slice(0,10); |
|
|
|
|
const method = this._getMethodIdentifier(fileName); |
|
|
|
|
return `\nfunction ${method}(bytes32 c__${hash}) public pure {}\n`; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
injectLine(contract, fileName, injectionPoint, injection, instrumentation){ |
|
|
|
|
const type = 'line'; |
|
|
|
|
const start = contract.instrumented.slice(0, injectionPoint); |
|
|
|
|
const end = contract.instrumented.slice(injectionPoint); |
|
|
|
|
const { start, end } = this._split(contract, injectionPoint); |
|
|
|
|
|
|
|
|
|
const newLines = start.match(/\n/g); |
|
|
|
|
const linecount = ( newLines || []).length + 1; |
|
|
|
|
contract.runnableLines.push(linecount); |
|
|
|
|
|
|
|
|
|
const hash = this._getHash(fileName); |
|
|
|
|
const memoryVariable = this._getMemoryVariableAssignment(fileName); |
|
|
|
|
const injectable = this._getInjectable(memoryVariable, hash , type) |
|
|
|
|
const hash = this._getHash(fileName) |
|
|
|
|
const injectable = this._getInjectable(fileName, hash, type); |
|
|
|
|
|
|
|
|
|
instrumentation[hash] = { |
|
|
|
|
id: linecount, |
|
|
|
@ -63,12 +73,13 @@ class Injector { |
|
|
|
|
|
|
|
|
|
injectStatement(contract, fileName, injectionPoint, injection, instrumentation) { |
|
|
|
|
const type = 'statement'; |
|
|
|
|
const start = contract.instrumented.slice(0, injectionPoint); |
|
|
|
|
const end = contract.instrumented.slice(injectionPoint); |
|
|
|
|
|
|
|
|
|
const hash = this._getHash(fileName); |
|
|
|
|
const memoryVariable = this._getMemoryVariableAssignment(fileName); |
|
|
|
|
const injectable = this._getInjectable(memoryVariable, hash, type) |
|
|
|
|
const { |
|
|
|
|
start, |
|
|
|
|
end, |
|
|
|
|
hash, |
|
|
|
|
injectable |
|
|
|
|
} = this._getInjectionComponents(contract, injectionPoint, fileName, type); |
|
|
|
|
|
|
|
|
|
instrumentation[hash] = { |
|
|
|
|
id: injection.statementId, |
|
|
|
@ -82,13 +93,13 @@ class Injector { |
|
|
|
|
|
|
|
|
|
injectFunction(contract, fileName, injectionPoint, injection, instrumentation){ |
|
|
|
|
const type = 'function'; |
|
|
|
|
const start = contract.instrumented.slice(0, injectionPoint); |
|
|
|
|
const end = contract.instrumented.slice(injectionPoint); |
|
|
|
|
|
|
|
|
|
const hash = this._getHash(fileName); |
|
|
|
|
const memoryVariableDefinition = this._getMemoryVariableDefinition(fileName); |
|
|
|
|
const memoryVariable = this._getMemoryVariableAssignment(fileName); |
|
|
|
|
const injectable = this._getInjectable(memoryVariable, hash, type); |
|
|
|
|
const { |
|
|
|
|
start, |
|
|
|
|
end, |
|
|
|
|
hash, |
|
|
|
|
injectable |
|
|
|
|
} = this._getInjectionComponents(contract, injectionPoint, fileName, type); |
|
|
|
|
|
|
|
|
|
instrumentation[hash] = { |
|
|
|
|
id: injection.fnId, |
|
|
|
@ -97,17 +108,18 @@ class Injector { |
|
|
|
|
hits: 0 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
contract.instrumented = `${start}${memoryVariableDefinition}${injectable}${end}`; |
|
|
|
|
contract.instrumented = `${start}${injectable}${end}`; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
injectBranch(contract, fileName, injectionPoint, injection, instrumentation){ |
|
|
|
|
const type = 'branch'; |
|
|
|
|
const start = contract.instrumented.slice(0, injectionPoint); |
|
|
|
|
const end = contract.instrumented.slice(injectionPoint); |
|
|
|
|
|
|
|
|
|
const hash = this._getHash(fileName); |
|
|
|
|
const memoryVariable = this._getMemoryVariableAssignment(fileName); |
|
|
|
|
const injectable = this._getInjectable(memoryVariable, hash, type); |
|
|
|
|
const { |
|
|
|
|
start, |
|
|
|
|
end, |
|
|
|
|
hash, |
|
|
|
|
injectable |
|
|
|
|
} = this._getInjectionComponents(contract, injectionPoint, fileName, type); |
|
|
|
|
|
|
|
|
|
instrumentation[hash] = { |
|
|
|
|
id: injection.branchId, |
|
|
|
@ -122,12 +134,13 @@ class Injector { |
|
|
|
|
|
|
|
|
|
injectEmptyBranch(contract, fileName, injectionPoint, injection, instrumentation) { |
|
|
|
|
const type = 'branch'; |
|
|
|
|
const start = contract.instrumented.slice(0, injectionPoint); |
|
|
|
|
const end = contract.instrumented.slice(injectionPoint); |
|
|
|
|
|
|
|
|
|
const hash = this._getHash(fileName); |
|
|
|
|
const memoryVariable = this._getMemoryVariableAssignment(fileName); |
|
|
|
|
const injectable = this._getInjectable(memoryVariable, hash, type); |
|
|
|
|
const { |
|
|
|
|
start, |
|
|
|
|
end, |
|
|
|
|
hash, |
|
|
|
|
injectable |
|
|
|
|
} = this._getInjectionComponents(contract, injectionPoint, fileName, type); |
|
|
|
|
|
|
|
|
|
instrumentation[hash] = { |
|
|
|
|
id: injection.branchId, |
|
|
|
@ -142,12 +155,13 @@ class Injector { |
|
|
|
|
|
|
|
|
|
injectAssertPre(contract, fileName, injectionPoint, injection, instrumentation) { |
|
|
|
|
const type = 'assertPre'; |
|
|
|
|
const start = contract.instrumented.slice(0, injectionPoint); |
|
|
|
|
const end = contract.instrumented.slice(injectionPoint); |
|
|
|
|
|
|
|
|
|
const hash = this._getHash(fileName); |
|
|
|
|
const memoryVariable = this._getMemoryVariableAssignment(fileName); |
|
|
|
|
const injectable = this._getInjectable(memoryVariable, hash, type); |
|
|
|
|
const { |
|
|
|
|
start, |
|
|
|
|
end, |
|
|
|
|
hash, |
|
|
|
|
injectable |
|
|
|
|
} = this._getInjectionComponents(contract, injectionPoint, fileName, type); |
|
|
|
|
|
|
|
|
|
instrumentation[hash] = { |
|
|
|
|
id: injection.branchId, |
|
|
|
@ -161,12 +175,13 @@ class Injector { |
|
|
|
|
|
|
|
|
|
injectAssertPost(contract, fileName, injectionPoint, injection, instrumentation) { |
|
|
|
|
const type = 'assertPost'; |
|
|
|
|
const start = contract.instrumented.slice(0, injectionPoint); |
|
|
|
|
const end = contract.instrumented.slice(injectionPoint); |
|
|
|
|
|
|
|
|
|
const hash = this._getHash(fileName); |
|
|
|
|
const memoryVariable = this._getMemoryVariableAssignment(fileName); |
|
|
|
|
const injectable = this._getInjectable(memoryVariable, hash, type); |
|
|
|
|
const { |
|
|
|
|
start, |
|
|
|
|
end, |
|
|
|
|
hash, |
|
|
|
|
injectable |
|
|
|
|
} = this._getInjectionComponents(contract, injectionPoint, fileName, type); |
|
|
|
|
|
|
|
|
|
instrumentation[hash] = { |
|
|
|
|
id: injection.branchId, |
|
|
|
@ -177,6 +192,12 @@ class Injector { |
|
|
|
|
|
|
|
|
|
contract.instrumented = `${start}${injectable}${end}`; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
injectHashMethod(contract, fileName, injectionPoint, injection, instrumentation){ |
|
|
|
|
const start = contract.instrumented.slice(0, injectionPoint); |
|
|
|
|
const end = contract.instrumented.slice(injectionPoint); |
|
|
|
|
contract.instrumented = `${start}${this._getHashMethodDefinition(fileName)}${end}`; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
module.exports = Injector; |
|
|
|
|