Commit 5a9a733e authored by soad003's avatar soad003

Static Analysis: warn when bytes(str).length is used to eval string length

parent 5c59033d
...@@ -13,5 +13,6 @@ module.exports = [ ...@@ -13,5 +13,6 @@ module.exports = [
require('./selfdestruct'), require('./selfdestruct'),
require('./guardConditions'), require('./guardConditions'),
require('./deleteDynamicArrays'), require('./deleteDynamicArrays'),
require('./assignAndCompare') require('./assignAndCompare'),
require('./stringBytesLength')
] ]
...@@ -25,7 +25,8 @@ var nodeTypes = { ...@@ -25,7 +25,8 @@ var nodeTypes = {
IFSTATEMENT: 'IfStatement', IFSTATEMENT: 'IfStatement',
FORSTATEMENT: 'ForStatement', FORSTATEMENT: 'ForStatement',
WHILESTATEMENT: 'WhileStatement', WHILESTATEMENT: 'WhileStatement',
DOWHILESTATEMENT: 'DoWhileStatement' DOWHILESTATEMENT: 'DoWhileStatement',
ELEMENTARYTYPENAMEEXPRESSION: 'ElementaryTypeNameExpression'
} }
var basicTypes = { var basicTypes = {
...@@ -859,6 +860,20 @@ function isTransfer (node) { ...@@ -859,6 +860,20 @@ function isTransfer (node) {
undefined, exactMatch(basicTypes.ADDRESS), exactMatch(lowLevelCallTypes.TRANSFER.ident)) undefined, exactMatch(basicTypes.ADDRESS), exactMatch(lowLevelCallTypes.TRANSFER.ident))
} }
function isStringToBytesConversion (node) {
return isExplicitCast(node, util.escapeRegExp('string *'), util.escapeRegExp('bytes'))
}
function isExplicitCast (node, castFromType, castToType) {
return nodeType(node, exactMatch(nodeTypes.FUNCTIONCALL)) && nrOfChildren(node, 2) &&
nodeType(node.children[0], exactMatch(nodeTypes.ELEMENTARYTYPENAMEEXPRESSION)) && name(node.children[0], castToType) &&
nodeType(node.children[1], exactMatch(nodeTypes.IDENTIFIER)) && expressionType(node.children[1], castFromType)
}
function isBytesLengthCheck (node) {
return isMemberAccess(node, exactMatch(util.escapeRegExp(basicTypes.UINT)), undefined, util.escapeRegExp('bytes *'), 'length')
}
// #################### Complex Node Identification - Private // #################### Complex Node Identification - Private
function isMemberAccess (node, retType, accessor, accessorType, memberName) { function isMemberAccess (node, retType, accessor, accessorType, memberName) {
...@@ -1000,6 +1015,8 @@ module.exports = { ...@@ -1000,6 +1015,8 @@ module.exports = {
isAssertCall: isAssertCall, isAssertCall: isAssertCall,
isRequireCall: isRequireCall, isRequireCall: isRequireCall,
isIntDivision: isIntDivision, isIntDivision: isIntDivision,
isStringToBytesConversion: isStringToBytesConversion,
isBytesLengthCheck: isBytesLengthCheck,
// #################### Trivial Node Identification // #################### Trivial Node Identification
isDeleteUnaryOperation: isDeleteUnaryOperation, isDeleteUnaryOperation: isDeleteUnaryOperation,
......
...@@ -30,7 +30,8 @@ var testFiles = [ ...@@ -30,7 +30,8 @@ var testFiles = [
'selfdestruct.sol', 'selfdestruct.sol',
'deleteDynamicArray.sol', 'deleteDynamicArray.sol',
'blockLevelCompare.sol', 'blockLevelCompare.sol',
'intDivisionTruncate.sol' 'intDivisionTruncate.sol',
'stringBytesLength.sol'
] ]
var testFileAsts = {} var testFileAsts = {}
...@@ -66,7 +67,8 @@ test('Integration test thisLocal.js', function (t) { ...@@ -66,7 +67,8 @@ test('Integration test thisLocal.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 0, 'deleteDynamicArray.sol': 0,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 0 'intDivisionTruncate.sol': 0,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -100,7 +102,8 @@ test('Integration test checksEffectsInteraction.js', function (t) { ...@@ -100,7 +102,8 @@ test('Integration test checksEffectsInteraction.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 0, 'deleteDynamicArray.sol': 0,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 0 'intDivisionTruncate.sol': 0,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -134,7 +137,8 @@ test('Integration test constantFunctions.js', function (t) { ...@@ -134,7 +137,8 @@ test('Integration test constantFunctions.js', function (t) {
'selfdestruct.sol': 1, 'selfdestruct.sol': 1,
'deleteDynamicArray.sol': 0, 'deleteDynamicArray.sol': 0,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 0 'intDivisionTruncate.sol': 0,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -168,7 +172,8 @@ test('Integration test inlineAssembly.js', function (t) { ...@@ -168,7 +172,8 @@ test('Integration test inlineAssembly.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 0, 'deleteDynamicArray.sol': 0,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 0 'intDivisionTruncate.sol': 0,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -202,7 +207,8 @@ test('Integration test txOrigin.js', function (t) { ...@@ -202,7 +207,8 @@ test('Integration test txOrigin.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 0, 'deleteDynamicArray.sol': 0,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 0 'intDivisionTruncate.sol': 0,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -236,7 +242,8 @@ test('Integration test gasCosts.js', function (t) { ...@@ -236,7 +242,8 @@ test('Integration test gasCosts.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 2, 'deleteDynamicArray.sol': 2,
'blockLevelCompare.sol': 1, 'blockLevelCompare.sol': 1,
'intDivisionTruncate.sol': 1 'intDivisionTruncate.sol': 1,
'stringBytesLength.sol': 1
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -270,7 +277,8 @@ test('Integration test similarVariableNames.js', function (t) { ...@@ -270,7 +277,8 @@ test('Integration test similarVariableNames.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 1, 'deleteDynamicArray.sol': 1,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 0 'intDivisionTruncate.sol': 0,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -304,7 +312,8 @@ test('Integration test inlineAssembly.js', function (t) { ...@@ -304,7 +312,8 @@ test('Integration test inlineAssembly.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 0, 'deleteDynamicArray.sol': 0,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 0 'intDivisionTruncate.sol': 0,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -338,7 +347,8 @@ test('Integration test blockTimestamp.js', function (t) { ...@@ -338,7 +347,8 @@ test('Integration test blockTimestamp.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 0, 'deleteDynamicArray.sol': 0,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 0 'intDivisionTruncate.sol': 0,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -372,7 +382,8 @@ test('Integration test lowLevelCalls.js', function (t) { ...@@ -372,7 +382,8 @@ test('Integration test lowLevelCalls.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 0, 'deleteDynamicArray.sol': 0,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 0 'intDivisionTruncate.sol': 0,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -406,7 +417,8 @@ test('Integration test blockBlockhash.js', function (t) { ...@@ -406,7 +417,8 @@ test('Integration test blockBlockhash.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 0, 'deleteDynamicArray.sol': 0,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 0 'intDivisionTruncate.sol': 0,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -440,7 +452,8 @@ test('Integration test noReturn.js', function (t) { ...@@ -440,7 +452,8 @@ test('Integration test noReturn.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 0, 'deleteDynamicArray.sol': 0,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 0 'intDivisionTruncate.sol': 0,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -474,7 +487,8 @@ test('Integration test selfdestruct.js', function (t) { ...@@ -474,7 +487,8 @@ test('Integration test selfdestruct.js', function (t) {
'selfdestruct.sol': 3, 'selfdestruct.sol': 3,
'deleteDynamicArray.sol': 0, 'deleteDynamicArray.sol': 0,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 5 'intDivisionTruncate.sol': 1, // 5
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -508,7 +522,8 @@ test('Integration test guardConditions.js', function (t) { ...@@ -508,7 +522,8 @@ test('Integration test guardConditions.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 1, 'deleteDynamicArray.sol': 1,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 1 'intDivisionTruncate.sol': 1,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -542,7 +557,8 @@ test('Integration test deleteDynamicArrays.js', function (t) { ...@@ -542,7 +557,8 @@ test('Integration test deleteDynamicArrays.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 2, 'deleteDynamicArray.sol': 2,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 0 'intDivisionTruncate.sol': 0,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -576,7 +592,8 @@ test('Integration test assignAndCompare.js', function (t) { ...@@ -576,7 +592,8 @@ test('Integration test assignAndCompare.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 0, 'deleteDynamicArray.sol': 0,
'blockLevelCompare.sol': 8, 'blockLevelCompare.sol': 8,
'intDivisionTruncate.sol': 0 'intDivisionTruncate.sol': 0,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -610,7 +627,8 @@ test('Integration test intDivisionTruncate.js', function (t) { ...@@ -610,7 +627,8 @@ test('Integration test intDivisionTruncate.js', function (t) {
'selfdestruct.sol': 0, 'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 0, 'deleteDynamicArray.sol': 0,
'blockLevelCompare.sol': 0, 'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 2 'intDivisionTruncate.sol': 2,
'stringBytesLength.sol': 0
} }
runModuleOnFiles(module, t, (file, report) => { runModuleOnFiles(module, t, (file, report) => {
...@@ -618,6 +636,41 @@ test('Integration test intDivisionTruncate.js', function (t) { ...@@ -618,6 +636,41 @@ test('Integration test intDivisionTruncate.js', function (t) {
}) })
}) })
test('Integration test stringBytesLength.js', function (t) {
t.plan(testFiles.length)
var module = require('../../src/analysis/modules/stringBytesLength')
var lengthCheck = {
'KingOfTheEtherThrone.sol': 0,
'assembly.sol': 0,
'ballot.sol': 0,
'ballot_reentrant.sol': 0,
'ballot_withoutWarnings.sol': 0,
'cross_contract.sol': 0,
'inheritance.sol': 0,
'modifier1.sol': 0,
'modifier2.sol': 0,
'notReentrant.sol': 0,
'structReentrant.sol': 0,
'thisLocal.sol': 0,
'globals.sol': 0,
'library.sol': 0,
'transfer.sol': 0,
'ctor.sol': 0,
'forgottenReturn.sol': 0,
'selfdestruct.sol': 0,
'deleteDynamicArray.sol': 0,
'blockLevelCompare.sol': 0,
'intDivisionTruncate.sol': 0,
'stringBytesLength.sol': 1
}
runModuleOnFiles(module, t, (file, report) => {
t.equal(report.length, lengthCheck[file], `${file} has right amount of stringBytesLength warnings`)
})
})
// #################### Helpers // #################### Helpers
function runModuleOnFiles (module, t, cb) { function runModuleOnFiles (module, t, cb) {
var statRunner = new StatRunner() var statRunner = new StatRunner()
......
pragma solidity ^0.4.17;
contract bytesString {
function length(string a) public pure returns(uint) {
bytes memory x = bytes(a);
return x.length;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment