2009-02-19 09:03:14 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2009-05-30 07:48:12 +02:00
|
|
|
* Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team.
|
2009-02-19 09:03:14 +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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
2009-02-21 13:12:31 +01:00
|
|
|
#ifndef checksecurityH
|
|
|
|
#define checksecurityH
|
2009-02-19 09:03:14 +01:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2009-03-21 18:31:28 +01:00
|
|
|
#include "check.h"
|
2009-02-19 09:03:14 +01:00
|
|
|
|
2009-03-21 18:31:28 +01:00
|
|
|
class CheckSecurity : public Check
|
2009-02-19 09:03:14 +01:00
|
|
|
{
|
|
|
|
public:
|
2009-03-21 18:31:28 +01:00
|
|
|
/** This constructor is used when registering the CheckClass */
|
|
|
|
CheckSecurity() : Check()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
/** This constructor is used when running checks.. */
|
|
|
|
CheckSecurity(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
|
|
|
: Check(tokenizer, settings, errorLogger)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
void runSimplifiedChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
|
|
|
{
|
|
|
|
CheckSecurity checkSecurity(tokenizer, settings, errorLogger);
|
|
|
|
checkSecurity.readnum();
|
|
|
|
checkSecurity.gui();
|
|
|
|
}
|
2009-02-19 09:03:14 +01:00
|
|
|
|
|
|
|
/** Reading a number from a stream/FILE */
|
|
|
|
void readnum();
|
|
|
|
|
2009-02-19 18:57:27 +01:00
|
|
|
/** Reading Form/GUI data */
|
|
|
|
void gui();
|
|
|
|
|
2009-02-19 09:03:14 +01:00
|
|
|
private:
|
2009-03-21 18:31:28 +01:00
|
|
|
void unvalidatedInput(const Token *tok);
|
2009-03-22 08:20:15 +01:00
|
|
|
|
|
|
|
void getErrorMessages()
|
|
|
|
{
|
2009-06-07 18:53:47 +02:00
|
|
|
std::cout << "===security===" << "\n";
|
2009-03-22 08:20:15 +01:00
|
|
|
unvalidatedInput(0);
|
|
|
|
}
|
2009-02-19 09:03:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#endif
|
|
|
|
|