2009-01-31 20:29:27 +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-01-31 20:29:27 +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/>.
|
2009-01-31 20:29:27 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#ifndef CheckDangerousFunctionsH
|
|
|
|
#define CheckDangerousFunctionsH
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2009-03-20 18:16:21 +01:00
|
|
|
#include "check.h"
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup Checks
|
|
|
|
/// @{
|
|
|
|
|
2009-07-13 16:00:15 +02:00
|
|
|
class CheckDangerousFunctions : public Check
|
2009-01-31 20:29:27 +01:00
|
|
|
{
|
|
|
|
public:
|
2009-07-13 16:00:15 +02:00
|
|
|
/** This constructor is used when registering the CheckDangerousFunctions */
|
|
|
|
CheckDangerousFunctions() : Check()
|
2009-03-20 18:16:21 +01:00
|
|
|
{ }
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2009-03-21 07:53:23 +01:00
|
|
|
/** This constructor is used when running checks.. */
|
2009-07-13 16:00:15 +02:00
|
|
|
CheckDangerousFunctions(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
2009-03-20 18:16:21 +01:00
|
|
|
: Check(tokenizer, settings, errorLogger)
|
|
|
|
{ }
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2009-03-21 07:53:23 +01:00
|
|
|
void runSimplifiedChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
2009-03-20 18:16:21 +01:00
|
|
|
{
|
2009-07-13 16:00:15 +02:00
|
|
|
CheckDangerousFunctions checkDangerousFunctions(tokenizer, settings, errorLogger);
|
2009-05-22 08:28:37 +02:00
|
|
|
if (settings->_checkCodingStyle)
|
|
|
|
{
|
2009-07-13 16:00:15 +02:00
|
|
|
checkDangerousFunctions.dangerousFunctions();
|
2009-05-22 08:28:37 +02:00
|
|
|
}
|
2009-03-20 18:16:21 +01:00
|
|
|
}
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2009-05-22 07:51:30 +02:00
|
|
|
/** Check for dangerous functions */
|
2009-03-20 18:16:21 +01:00
|
|
|
void dangerousFunctions();
|
2009-03-21 18:31:28 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
/** Error Messages.. */
|
|
|
|
void dangerousFunctionmktemp(const Token *tok);
|
|
|
|
void dangerousFunctiongets(const Token *tok);
|
|
|
|
void dangerousFunctionscanf(const Token *tok);
|
|
|
|
|
2009-03-22 08:20:15 +01:00
|
|
|
void getErrorMessages()
|
|
|
|
{
|
|
|
|
dangerousFunctionmktemp(0);
|
|
|
|
dangerousFunctiongets(0);
|
|
|
|
dangerousFunctionscanf(0);
|
|
|
|
}
|
2009-03-21 18:31:28 +01:00
|
|
|
|
2009-06-12 15:20:08 +02:00
|
|
|
std::string name() const
|
|
|
|
{
|
|
|
|
return "Deprecated functions";
|
|
|
|
}
|
|
|
|
|
2009-06-12 12:19:37 +02:00
|
|
|
std::string classInfo() const
|
|
|
|
{
|
|
|
|
return "Warn if any of these deprecated functions are used:\n"
|
|
|
|
" * mktemp\n"
|
|
|
|
" * gets\n"
|
|
|
|
" * scanf\n";
|
|
|
|
}
|
2009-01-31 20:29:27 +01:00
|
|
|
};
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
2009-01-31 20:29:27 +01:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#endif
|
|
|
|
|