2008-12-18 22:28:57 +01:00
|
|
|
/*
|
2009-01-21 21:04:20 +01:00
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2013-01-01 17:29:08 +01:00
|
|
|
* Copyright (C) 2007-2013 Daniel Marjamäki and Cppcheck team.
|
2008-12-18 22:28:57 +01:00
|
|
|
*
|
|
|
|
* 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
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-12-18 22:28:57 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
// Check for dangerous division..
|
|
|
|
// such as "svar / uvar". Treating "svar" as unsigned data is not good
|
|
|
|
|
|
|
|
|
2009-10-25 12:49:06 +01:00
|
|
|
#include "tokenize.h"
|
|
|
|
#include "checkother.h"
|
2008-12-18 22:28:57 +01:00
|
|
|
#include "testsuite.h"
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
extern std::ostringstream errout;
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
class TestDivision : public TestFixture {
|
2008-12-18 22:28:57 +01:00
|
|
|
public:
|
|
|
|
TestDivision() : TestFixture("TestDivision")
|
|
|
|
{ }
|
|
|
|
|
|
|
|
private:
|
2012-01-28 12:32:28 +01:00
|
|
|
void check(const char code[], bool inconclusive = false) {
|
2008-12-18 22:28:57 +01:00
|
|
|
// Clear the error buffer..
|
|
|
|
errout.str("");
|
|
|
|
|
2010-04-17 09:23:54 +02:00
|
|
|
Settings settings;
|
2013-03-03 11:41:59 +01:00
|
|
|
settings.addEnabled("warning");
|
2012-01-28 12:32:28 +01:00
|
|
|
settings.inconclusive = inconclusive;
|
2009-01-12 18:12:14 +01:00
|
|
|
|
2010-12-01 18:00:55 +01:00
|
|
|
// Tokenize..
|
|
|
|
Tokenizer tokenizer(&settings, this);
|
|
|
|
std::istringstream istr(code);
|
|
|
|
tokenizer.tokenize(istr, "test.cpp");
|
|
|
|
|
2008-12-18 22:28:57 +01:00
|
|
|
// Check for unsigned divisions..
|
2009-03-20 18:16:21 +01:00
|
|
|
CheckOther checkOther(&tokenizer, &settings, this);
|
2009-07-05 22:16:43 +02:00
|
|
|
checkOther.checkUnsignedDivision();
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void run() {
|
2009-01-05 16:49:57 +01:00
|
|
|
TEST_CASE(division1);
|
|
|
|
TEST_CASE(division2);
|
|
|
|
TEST_CASE(division4);
|
|
|
|
TEST_CASE(division5);
|
|
|
|
TEST_CASE(division6);
|
|
|
|
TEST_CASE(division7);
|
2009-09-15 20:46:47 +02:00
|
|
|
TEST_CASE(division8);
|
2010-03-31 17:14:49 +02:00
|
|
|
TEST_CASE(division9);
|
2011-07-24 09:06:38 +02:00
|
|
|
TEST_CASE(division10);
|
2013-01-30 16:50:12 +01:00
|
|
|
TEST_CASE(division11); // no error when using "unsigned char" (it is promoted)
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void division1() {
|
2012-01-28 12:32:28 +01:00
|
|
|
check("void f() {\n"
|
|
|
|
" int ivar = -2;\n"
|
|
|
|
" unsigned int uvar = 2;\n"
|
|
|
|
" return ivar / uvar;\n"
|
|
|
|
"}", false);
|
|
|
|
ASSERT_EQUALS("", errout.str());
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
check("void f()\n"
|
|
|
|
"{\n"
|
|
|
|
" int ivar = -2;\n"
|
|
|
|
" unsigned int uvar = 2;\n"
|
|
|
|
" return ivar / uvar;\n"
|
2012-01-28 12:32:28 +01:00
|
|
|
"}", true);
|
2012-05-06 19:37:41 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:5]: (warning, inconclusive) Division with signed and unsigned operators. The result might be wrong.\n", errout.str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void division2() {
|
2009-01-05 16:49:57 +01:00
|
|
|
check("void f()\n"
|
|
|
|
"{\n"
|
|
|
|
" int ivar = -2;\n"
|
|
|
|
" unsigned int uvar = 2;\n"
|
|
|
|
" return uvar / ivar;\n"
|
2012-01-28 12:32:28 +01:00
|
|
|
"}", true);
|
2012-05-06 19:37:41 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:5]: (warning, inconclusive) Division with signed and unsigned operators. The result might be wrong.\n", errout.str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void division4() {
|
2009-01-05 16:49:57 +01:00
|
|
|
check("void f1()\n"
|
|
|
|
"{\n"
|
|
|
|
" int i1;\n"
|
|
|
|
"}\n"
|
|
|
|
"\n"
|
|
|
|
"void f2(unsigned int i1)\n"
|
|
|
|
"{\n"
|
|
|
|
" unsigned int i2;\n"
|
2012-01-28 12:32:28 +01:00
|
|
|
" result = i2 / i1;"
|
|
|
|
"}", true);
|
2009-06-05 02:39:36 +02:00
|
|
|
ASSERT_EQUALS("", errout.str());
|
2010-02-12 21:24:06 +01:00
|
|
|
|
|
|
|
check("void f1()\n"
|
|
|
|
"{\n"
|
|
|
|
" unsigned int num = 0;\n"
|
|
|
|
"}\n"
|
|
|
|
"\n"
|
|
|
|
"void f2(int X)\n"
|
|
|
|
"{\n"
|
2012-01-28 12:32:28 +01:00
|
|
|
" X = X / z;"
|
|
|
|
"}", true);
|
2010-02-12 21:24:06 +01:00
|
|
|
ASSERT_EQUALS("", errout.str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void division5() {
|
2012-11-30 12:40:22 +01:00
|
|
|
check("void foo()\n"
|
2009-01-05 16:49:57 +01:00
|
|
|
"{\n"
|
|
|
|
" unsigned int val = 32;\n"
|
2012-11-30 12:40:22 +01:00
|
|
|
" val = val / (16);\n"
|
2012-01-28 12:32:28 +01:00
|
|
|
"}", true);
|
2009-06-05 02:39:36 +02:00
|
|
|
ASSERT_EQUALS("", errout.str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void division6() {
|
2009-01-05 16:49:57 +01:00
|
|
|
check("void foo()\n"
|
|
|
|
"{\n"
|
|
|
|
" unsigned int val = 32;\n"
|
2013-03-20 15:36:16 +01:00
|
|
|
" int i = val / -2; }");
|
2009-05-31 21:48:55 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:4]: (error) Unsigned division. The result will be wrong.\n", errout.str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void division7() {
|
2009-01-05 16:49:57 +01:00
|
|
|
check("void foo()\n"
|
|
|
|
"{\n"
|
|
|
|
" unsigned int val = 32;\n"
|
2013-03-20 15:36:16 +01:00
|
|
|
" int i = -96 / val; }");
|
2009-05-31 21:48:55 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:4]: (error) Unsigned division. The result will be wrong.\n", errout.str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
2009-09-15 20:46:47 +02:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void division8() {
|
2009-09-15 20:46:47 +02:00
|
|
|
check("void foo(int b)\n"
|
|
|
|
"{\n"
|
|
|
|
" if (b > 0)\n"
|
|
|
|
" {\n"
|
|
|
|
" unsigned int a;\n"
|
|
|
|
" unsigned int c = a / b;\n"
|
2009-09-22 18:51:52 +02:00
|
|
|
" }\n"
|
2012-01-28 12:32:28 +01:00
|
|
|
"}", true);
|
2009-09-15 20:46:47 +02:00
|
|
|
ASSERT_EQUALS("", errout.str());
|
|
|
|
|
|
|
|
check("void foo(int b)\n"
|
|
|
|
"{\n"
|
2010-05-16 14:43:42 +02:00
|
|
|
" if (b < 0)\n"
|
2009-09-15 20:46:47 +02:00
|
|
|
" {\n"
|
|
|
|
" unsigned int a;\n"
|
|
|
|
" unsigned int c = a / b;\n"
|
2009-09-22 18:51:52 +02:00
|
|
|
" }\n"
|
2012-01-28 12:32:28 +01:00
|
|
|
"}", true);
|
|
|
|
TODO_ASSERT_EQUALS("[test.cpp:6]: (warning) Division with signed and unsigned operators. The result might be wrong.\n",
|
|
|
|
"", errout.str());
|
2009-10-11 16:52:35 +02:00
|
|
|
|
|
|
|
check("void a(int i) { }\n"
|
|
|
|
"int foo( unsigned int sz )\n"
|
|
|
|
"{\n"
|
|
|
|
" register unsigned int i=1;\n"
|
|
|
|
" return i/sz;\n"
|
2012-01-28 12:32:28 +01:00
|
|
|
"}", true);
|
2009-10-11 16:52:35 +02:00
|
|
|
ASSERT_EQUALS("", errout.str());
|
2009-09-15 20:46:47 +02:00
|
|
|
}
|
2010-03-31 17:14:49 +02:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void division9() {
|
2010-03-31 17:14:49 +02:00
|
|
|
check("void f()\n"
|
|
|
|
"{\n"
|
|
|
|
" int ivar = -2;\n"
|
|
|
|
" unsigned long uvar = 2;\n"
|
|
|
|
" return ivar / uvar;\n"
|
2012-01-28 12:32:28 +01:00
|
|
|
"}", true);
|
2012-05-06 19:37:41 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:5]: (warning, inconclusive) Division with signed and unsigned operators. The result might be wrong.\n", errout.str());
|
2010-03-31 17:14:49 +02:00
|
|
|
|
|
|
|
check("void f()\n"
|
|
|
|
"{\n"
|
|
|
|
" int ivar = -2;\n"
|
|
|
|
" unsigned long long uvar = 2;\n"
|
|
|
|
" return ivar / uvar;\n"
|
2012-01-28 12:32:28 +01:00
|
|
|
"}", true);
|
2012-05-06 19:37:41 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:5]: (warning, inconclusive) Division with signed and unsigned operators. The result might be wrong.\n", errout.str());
|
2010-03-31 17:14:49 +02:00
|
|
|
}
|
2011-07-24 09:06:38 +02:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void division10() {
|
2011-07-24 09:06:38 +02:00
|
|
|
// Ticket: #2932 - don't segfault
|
2012-01-28 12:32:28 +01:00
|
|
|
check("i / i", true);
|
2011-07-24 09:06:38 +02:00
|
|
|
ASSERT_EQUALS("", errout.str());
|
|
|
|
}
|
2013-01-30 16:50:12 +01:00
|
|
|
|
|
|
|
void division11() {
|
|
|
|
check("void f(int x, unsigned char y) {\n"
|
|
|
|
" int z = x / y;\n" // no error, y is promoted
|
|
|
|
"}", true);
|
|
|
|
ASSERT_EQUALS("", errout.str());
|
|
|
|
}
|
2008-12-18 22:28:57 +01:00
|
|
|
};
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
REGISTER_TEST(TestDivision)
|