/* * Cppcheck - A tool for static C/C++ code analysis * Copyright (C) 2007-2019 Cppcheck team. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "exprengine.h" #include "settings.h" #include "symboldatabase.h" #include "tokenize.h" #include #include std::string ExprEngine::str(int128_t value) { std::ostringstream ostr; #ifdef __GNUC__ if (value == (int)value) { ostr << (int) value; return ostr.str(); } if (value < 0) { ostr << "-"; value = -value; } uint64_t high = value >> 64; uint64_t low = value; if (high > 0) ostr << "h" << std::hex << high << "l"; ostr << std::hex << low; #else ostr << value; #endif return ostr.str(); } static ExprEngine::ValuePtr getValueRangeFromValueType(const std::string &name, const ValueType *vt, const cppcheck::Platform &platform); namespace { class Data { public: Data(int *symbolValueIndex, const Tokenizer *tokenizer, const Settings *settings, const std::vector &callbacks) : symbolValueIndex(symbolValueIndex) , tokenizer(tokenizer) , settings(settings) , callbacks(callbacks) {} typedef std::map> Memory; Memory memory; int *symbolValueIndex; const Tokenizer *tokenizer; const Settings *settings; const std::vector &callbacks; void printMemory() const { const SymbolDatabase *symbolDatabase = tokenizer->getSymbolDatabase(); for (Memory::const_iterator mem = memory.cbegin(); mem != memory.cend(); ++mem) { std::cout << symbolDatabase->getVariableFromVarId(mem->first)->name() << " name:" << mem->second->name << " range:" << mem->second->getRange() << "\n"; } } Data getData(const Token *cond, bool trueData) { Data ret(symbolValueIndex, tokenizer, settings, callbacks); for (Memory::const_iterator mem = memory.cbegin(); mem != memory.cend(); ++mem) { ret.memory[mem->first] = mem->second; if (cond->isComparisonOp() && cond->astOperand1()->varId() == mem->first && cond->astOperand2()->isNumber()) { const int128_t rhsValue = MathLib::toLongNumber(cond->astOperand2()->str()); if (auto intRange = std::dynamic_pointer_cast(mem->second)) { if (cond->str() == ">") { if (trueData && intRange->minValue <= rhsValue) ret.memory[mem->first] = std::make_shared(getNewSymbolName(), rhsValue + 1, intRange->maxValue); else if (!trueData && intRange->maxValue > rhsValue) ret.memory[mem->first] = std::make_shared(getNewSymbolName(), intRange->minValue, rhsValue); } } } } return ret; } std::string getNewSymbolName() { return "$" + std::to_string(++(*symbolValueIndex)); } std::shared_ptr getArrayValue(const Token *tok) { const Memory::iterator it = memory.find(tok->varId()); if (it != memory.end()) return std::dynamic_pointer_cast(it->second); return std::shared_ptr(); } ExprEngine::ValuePtr getValue(unsigned int varId, const ValueType *valueType) { const Memory::const_iterator it = memory.find(varId); if (it != memory.end()) return it->second; if (!valueType) return ExprEngine::ValuePtr(); ExprEngine::ValuePtr value = getValueRangeFromValueType(getNewSymbolName(), valueType, *settings); if (value) memory[varId] = value; return value; } }; } void ExprEngine::ArrayValue::assign(ExprEngine::ValuePtr index, ExprEngine::ValuePtr value) { auto i1 = std::dynamic_pointer_cast(index); if (i1) { if (i1->minValue == i1->maxValue && i1->minValue >= 0 && i1->maxValue < data.size()) data[i1->minValue] = value; } } ExprEngine::ValuePtr ExprEngine::ArrayValue::read(ExprEngine::ValuePtr index) { auto i1 = std::dynamic_pointer_cast(index); if (i1) { if (i1->minValue == i1->maxValue && i1->minValue >= 0 && i1->maxValue < data.size()) return data[i1->minValue]; } return ExprEngine::ValuePtr(); } std::string ExprEngine::BinOpResult::getRange() const { int128_t minValue, maxValue; getRange(&minValue, &maxValue); return "[" + str(minValue) + ":" + str(maxValue) + "]"; } void ExprEngine::BinOpResult::getRange(int128_t *minValue, int128_t *maxValue) const { std::map valueBit; // Assign a bit number for each leaf int bit = 0; for (ValuePtr v : mLeafs) { if (auto intRange = std::dynamic_pointer_cast(v)) { if (intRange->minValue == intRange->maxValue) { valueBit[v] = 30; continue; } } valueBit[v] = bit++; } if (bit > 24) throw std::runtime_error("Internal error: bits"); for (int test = 0; test < (1 << bit); ++test) { int128_t result = evaluate(test, valueBit); if (test == 0) *minValue = *maxValue = result; else if (result < *minValue) *minValue = result; else if (result > *maxValue) *maxValue = result; } } bool ExprEngine::BinOpResult::isIntValueInRange(int value) const { int128_t minValue, maxValue; getRange(&minValue, &maxValue); return value >= minValue && value <= maxValue; } int128_t ExprEngine::BinOpResult::evaluate(int test, const std::map &valueBit) const { const int128_t lhs = evaluateOperand(test, valueBit, op1); const int128_t rhs = evaluateOperand(test, valueBit, op2); if (binop == "+") return lhs + rhs; if (binop == "-") return lhs - rhs; if (binop == "*") return lhs * rhs; if (binop == "/" && rhs != 0) return lhs / rhs; if (binop == "%" && rhs != 0) return lhs % rhs; if (binop == "&") return lhs & rhs; if (binop == "|") return lhs | rhs; if (binop == "^") return lhs ^ rhs; if (binop == "<<") return lhs << rhs; if (binop == ">>") return lhs >> rhs; throw std::runtime_error("Internal error: Unhandled operator;" + binop); } int128_t ExprEngine::BinOpResult::evaluateOperand(int test, const std::map &valueBit, ExprEngine::ValuePtr value) const { auto binOpResult = std::dynamic_pointer_cast(value); if (binOpResult) return binOpResult->evaluate(test, valueBit); auto it = valueBit.find(value); if (it == valueBit.end()) throw std::runtime_error("Internal error: valueBit not set properly"); bool valueType = test & (1 << it->second); if (auto intRange = std::dynamic_pointer_cast(value)) return valueType ? intRange->minValue : intRange->maxValue; throw std::runtime_error("Internal error: Unhandled value:" + std::to_string((int)value->type())); } // Todo: This is taken from ValueFlow and modified.. we should reuse it static ExprEngine::ValuePtr getValueRangeFromValueType(const std::string &name, const ValueType *vt, const cppcheck::Platform &platform) { if (!vt || !vt->isIntegral() || vt->pointer) return ExprEngine::ValuePtr(); int bits; switch (vt->type) { case ValueType::Type::BOOL: bits = 1; break; case ValueType::Type::CHAR: bits = platform.char_bit; break; case ValueType::Type::SHORT: bits = platform.short_bit; break; case ValueType::Type::INT: bits = platform.int_bit; break; case ValueType::Type::LONG: bits = platform.long_bit; break; case ValueType::Type::LONGLONG: bits = platform.long_long_bit; break; default: return ExprEngine::ValuePtr(); }; if (bits == 1) { return std::make_shared(name, 0, 1); } else { if (vt->sign == ValueType::Sign::UNSIGNED) { return std::make_shared(name, 0, ((int128_t)1 << bits) - 1); } else { return std::make_shared(name, -((int128_t)1 << (bits - 1)), ((int128_t)1 << (bits - 1)) - 1); } } return ExprEngine::ValuePtr(); } static void call(const std::vector &callbacks, const Token *tok, ExprEngine::ValuePtr value) { if (value) { for (ExprEngine::Callback f : callbacks) { f(tok, *value); } } } static ExprEngine::ValuePtr executeExpression(const Token *tok, Data &data); static ExprEngine::ValuePtr executeReturn(const Token *tok, Data &data) { ExprEngine::ValuePtr retval = executeExpression(tok->astOperand1(), data); call(data.callbacks, tok, retval); return retval; } static ExprEngine::ValuePtr executeAssign(const Token *tok, Data &data) { ExprEngine::ValuePtr rhsValue = executeExpression(tok->astOperand2(), data); call(data.callbacks, tok, rhsValue); const Token *lhsToken = tok->astOperand1(); if (lhsToken->varId() > 0) { data.memory[lhsToken->varId()] = rhsValue; } else if (lhsToken->str() == "[") { auto arrayValue = data.getArrayValue(lhsToken->astOperand1()); if (arrayValue) { auto indexValue = executeExpression(lhsToken->astOperand2(), data); arrayValue->assign(indexValue, rhsValue); } } else if (lhsToken->isUnaryOp("*")) { auto pval = executeExpression(lhsToken->astOperand1(), data); if (pval && pval->type() == ExprEngine::ValueType::AddressOfValue) { auto val = std::dynamic_pointer_cast(pval); if (val) data.memory[val->varId] = rhsValue; } } return rhsValue; } static ExprEngine::ValuePtr executeFunctionCall(const Token *tok, Data &data) { (void)executeExpression(tok->astOperand2(), data); auto val = getValueRangeFromValueType(data.getNewSymbolName(), tok->valueType(), *data.settings); call(data.callbacks, tok, val); return val; } static ExprEngine::ValuePtr executeArrayIndex(const Token *tok, Data &data) { auto arrayValue = data.getArrayValue(tok->astOperand1()); if (arrayValue) { auto indexValue = executeExpression(tok->astOperand2(), data); auto value = arrayValue->read(indexValue); call(data.callbacks, tok, value); return value; } return ExprEngine::ValuePtr(); } static ExprEngine::ValuePtr executeDot(const Token *tok, Data &data) { if (!tok->astOperand1() || !tok->astOperand1()->varId()) return ExprEngine::ValuePtr(); std::shared_ptr structValue = std::dynamic_pointer_cast(data.getValue(tok->astOperand1()->varId(), nullptr)); if (!structValue) return ExprEngine::ValuePtr(); return structValue->getValueOfMember(tok->astOperand2()->str()); } static ExprEngine::ValuePtr executeBinaryOp(const Token *tok, Data &data) { ExprEngine::ValuePtr v1 = executeExpression(tok->astOperand1(), data); ExprEngine::ValuePtr v2 = executeExpression(tok->astOperand2(), data); if (v1 && v2) { auto result = std::make_shared(tok->str(), v1, v2); call(data.callbacks, tok, result); return result; } return ExprEngine::ValuePtr(); } static ExprEngine::ValuePtr executeAddressOf(const Token *tok, Data &data) { auto addr = std::make_shared(data.getNewSymbolName(), tok->astOperand1()->varId()); call(data.callbacks, tok, addr); return addr; } static ExprEngine::ValuePtr executeDeref(const Token *tok, Data &data) { ExprEngine::ValuePtr pval = executeExpression(tok->astOperand1(), data); if (pval) { auto addressOf = std::dynamic_pointer_cast(pval); if (addressOf) { auto val = data.getValue(addressOf->varId, tok->valueType()); call(data.callbacks, tok, val); return val; } auto pointer = std::dynamic_pointer_cast(pval); if (pointer) { auto val = pointer->data; call(data.callbacks, tok, val); return val; } } return ExprEngine::ValuePtr(); } static ExprEngine::ValuePtr executeVariable(const Token *tok, Data &data) { auto val = data.getValue(tok->varId(), tok->valueType()); call(data.callbacks, tok, val); return val; } static ExprEngine::ValuePtr executeNumber(const Token *tok) { int128_t value = MathLib::toLongNumber(tok->str()); return std::make_shared(tok->str(), value, value); } static ExprEngine::ValuePtr executeExpression(const Token *tok, Data &data) { if (tok->str() == "return") return executeReturn(tok, data); if (tok->str() == "=") return executeAssign(tok, data); if (tok->astOperand1() && tok->astOperand2() && tok->str() == "[") return executeArrayIndex(tok, data); if (tok->str() == "(" && tok->astOperand2()) return executeFunctionCall(tok, data); if (tok->str() == ".") return executeDot(tok, data); if (tok->astOperand1() && tok->astOperand2()) return executeBinaryOp(tok, data); if (tok->isUnaryOp("&") && Token::Match(tok->astOperand1(), "%var%")) return executeAddressOf(tok, data); if (tok->isUnaryOp("*")) return executeDeref(tok, data); if (tok->varId()) return executeVariable(tok, data); if (tok->isNumber()) return executeNumber(tok); return ExprEngine::ValuePtr(); } static void execute(const Token *start, const Token *end, Data &data) { for (const Token *tok = start; tok != end; tok = tok->next()) { if (tok->variable() && tok->variable()->nameToken() == tok) { if (tok->variable()->isArray() && tok->variable()->dimensions().size() == 1 && tok->variable()->dimensions()[0].known) { data.memory[tok->varId()] = std::make_shared(data.getNewSymbolName(), tok->variable()->dimension(0)); } if (Token::Match(tok, "%name% [")) tok = tok->linkAt(1); } if (!tok->astParent() && (tok->astOperand1() || tok->astOperand2())) executeExpression(tok, data); if (Token::simpleMatch(tok, "if (")) { const Token *cond = tok->next()->astOperand2(); /*const ExprEngine::ValuePtr condValue =*/ executeExpression(cond,data); Data trueData = data.getData(cond, true); Data falseData = data.getData(cond, false); const Token *thenStart = tok->linkAt(1)->next(); const Token *thenEnd = thenStart->link(); execute(thenStart->next(), end, trueData); if (Token::simpleMatch(thenEnd, "} else {")) { const Token *elseStart = thenEnd->tokAt(2); execute(elseStart->next(), end, falseData); } else { execute(thenEnd->next(), end, falseData); } return; } if (Token::simpleMatch(tok, "} else {")) tok = tok->linkAt(2); } } void ExprEngine::executeAllFunctions(const Tokenizer *tokenizer, const Settings *settings, const std::vector &callbacks) { const SymbolDatabase *symbolDatabase = tokenizer->getSymbolDatabase(); for (const Scope *functionScope : symbolDatabase->functionScopes) { executeFunction(functionScope, tokenizer, settings, callbacks); } } static ExprEngine::ValuePtr createVariableValue(const Variable &var, Data &data); static ExprEngine::ValuePtr createStructVal(const Scope *structScope, Data &data) { std::shared_ptr structValue = std::make_shared(data.getNewSymbolName()); for (const Variable &member : structScope->varlist) { ExprEngine::ValuePtr memberValue = createVariableValue(member, data); if (memberValue) structValue->member[member.name()] = memberValue; } return structValue; } static ExprEngine::ValuePtr createVariableValue(const Variable &var, Data &data) { if (!var.nameToken() || !var.valueType()) return ExprEngine::ValuePtr(); if (var.valueType()->pointer > 0) return std::make_shared(data.getNewSymbolName(), std::make_shared()); if (var.valueType()->isIntegral()) return getValueRangeFromValueType(data.getNewSymbolName(), var.valueType(), *data.settings); if (var.valueType()->type == ValueType::Type::RECORD) return createStructVal(var.valueType()->typeScope, data); return ExprEngine::ValuePtr(); } void ExprEngine::executeFunction(const Scope *functionScope, const Tokenizer *tokenizer, const Settings *settings, const std::vector &callbacks) { if (!functionScope->bodyStart) return; const Function *function = functionScope->function; if (!function) return; int symbolValueIndex = 0; Data data(&symbolValueIndex, tokenizer, settings, callbacks); data.printMemory(); for (const Variable &arg : function->argumentList) { ValuePtr val = createVariableValue(arg, data); if (val) data.memory[arg.declarationId()] = val; } execute(functionScope->bodyStart, functionScope->bodyEnd, data); } void ExprEngine::runChecks(ErrorLogger *errorLogger, const Tokenizer *tokenizer, const Settings *settings) { std::function divByZero = [&](const Token *tok, const ExprEngine::Value &value) { if (!Token::simpleMatch(tok->astParent(), "/")) return; if (tok->astParent()->astOperand2() == tok && value.isIntValueInRange(0)) { std::list callstack{tok->astParent()}; ErrorLogger::ErrorMessage errmsg(callstack, &tokenizer->list, Severity::SeverityType::error, "verificationDivByZero", "Division by zero", false); errorLogger->reportErr(errmsg); } }; std::function integerOverflow = [&](const Token *tok, const ExprEngine::Value &value) { // Integer overflow.. if (value.type() != ExprEngine::ValueType::BinOpResult) return; if (!tok->valueType() || tok->valueType()->pointer != 0 || tok->valueType()->type != ::ValueType::Type::INT) return; const ExprEngine::BinOpResult &b = static_cast(value); int128_t minValue, maxValue; b.getRange(&minValue, &maxValue); if (tok->valueType()->sign == ::ValueType::Sign::UNSIGNED && (minValue < 0 || maxValue >= (1LL << 32))) { std::list callstack{tok}; ErrorLogger::ErrorMessage errmsg(callstack, &tokenizer->list, Severity::SeverityType::warning, "verificationIntegerOverflow", "Unsigned integer overflow", false); errorLogger->reportErr(errmsg); } }; std::vector callbacks; callbacks.push_back(divByZero); callbacks.push_back(integerOverflow); ExprEngine::executeAllFunctions(tokenizer, settings, callbacks); }