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
|
2022-05-21 12:18:27 +02:00
|
|
|
* Copyright (C) 2007-2022 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
|
|
|
*/
|
|
|
|
|
2013-09-04 06:18:22 +02:00
|
|
|
#include "filelister.h"
|
2017-05-27 04:33:47 +02:00
|
|
|
|
2022-04-13 12:24:00 +02:00
|
|
|
#include "config.h"
|
2013-09-04 06:18:22 +02:00
|
|
|
#include "path.h"
|
2015-07-23 14:01:33 +02:00
|
|
|
#include "pathmatch.h"
|
2018-03-30 21:04:32 +02:00
|
|
|
#include "utils.h"
|
2010-03-11 20:58:59 +01:00
|
|
|
|
2017-05-27 04:33:47 +02:00
|
|
|
#include <cstddef>
|
|
|
|
#include <cstring>
|
2021-01-30 14:45:03 +01:00
|
|
|
// fix NAME_MAX not found on macOS GCC8.1
|
|
|
|
#include <climits>
|
2011-03-20 14:25:11 +01:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
////// This code is WIN32 systems /////////////////////////////////////////////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#ifndef __BORLANDC__
|
|
|
|
#include <shlwapi.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Here is the catch: cppcheck core is Ansi code (using char type).
|
|
|
|
// When compiling Unicode targets WinAPI automatically uses *W Unicode versions
|
2012-07-16 11:37:29 +02:00
|
|
|
// of called functions. Thus, we explicitly call *A versions of the functions.
|
2011-03-20 14:25:11 +01:00
|
|
|
|
2019-11-20 15:37:09 +01:00
|
|
|
static BOOL myIsDirectory(const std::string& path)
|
2011-03-20 14:25:11 +01:00
|
|
|
{
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
return (GetFileAttributes(path.c_str()) & FILE_ATTRIBUTE_DIRECTORY);
|
|
|
|
#else
|
|
|
|
// See http://msdn.microsoft.com/en-us/library/bb773621(VS.85).aspx
|
2012-07-16 11:37:29 +02:00
|
|
|
return PathIsDirectoryA(path.c_str());
|
2011-03-20 14:25:11 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-11-20 15:37:09 +01:00
|
|
|
static HANDLE myFindFirstFile(const std::string& path, LPWIN32_FIND_DATAA findData)
|
2011-03-20 14:25:11 +01:00
|
|
|
{
|
2012-07-16 11:37:29 +02:00
|
|
|
HANDLE hFind = FindFirstFileA(path.c_str(), findData);
|
2011-03-20 14:25:11 +01:00
|
|
|
return hFind;
|
|
|
|
}
|
|
|
|
|
2019-11-20 15:37:09 +01:00
|
|
|
static BOOL myFileExists(const std::string& path)
|
2011-08-06 23:11:53 +02:00
|
|
|
{
|
2011-10-16 07:52:54 +02:00
|
|
|
#ifdef __BORLANDC__
|
|
|
|
DWORD fa = GetFileAttributes(path.c_str());
|
|
|
|
BOOL result = FALSE;
|
|
|
|
if (fa != INVALID_FILE_ATTRIBUTES && !(fa & FILE_ATTRIBUTE_DIRECTORY))
|
|
|
|
result = TRUE;
|
|
|
|
#else
|
2020-11-13 15:52:24 +01:00
|
|
|
const BOOL result = PathFileExistsA(path.c_str()) && !PathIsDirectoryA(path.c_str());
|
2011-10-16 07:52:54 +02:00
|
|
|
#endif
|
2011-08-06 23:11:53 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-04-18 21:52:14 +02:00
|
|
|
std::string FileLister::recursiveAddFiles(std::map<std::string, std::size_t> &files, const std::string &path, const std::set<std::string> &extra, const PathMatch& ignored)
|
2018-02-17 06:31:12 +01:00
|
|
|
{
|
2021-04-18 21:52:14 +02:00
|
|
|
return addFiles(files, path, extra, true, ignored);
|
2018-02-17 06:31:12 +01:00
|
|
|
}
|
|
|
|
|
2021-04-18 21:52:14 +02:00
|
|
|
std::string FileLister::addFiles(std::map<std::string, std::size_t> &files, const std::string &path, const std::set<std::string> &extra, bool recursive, const PathMatch& ignored)
|
2011-03-20 14:25:11 +01:00
|
|
|
{
|
2013-03-01 18:04:10 +01:00
|
|
|
const std::string cleanedPath = Path::toNativeSeparators(path);
|
2011-03-20 14:25:11 +01:00
|
|
|
|
2013-03-01 18:04:10 +01:00
|
|
|
// basedir is the base directory which is used to form pathnames.
|
|
|
|
// It always has a trailing backslash available for concatenation.
|
|
|
|
std::string basedir;
|
2011-03-20 14:25:11 +01:00
|
|
|
|
2013-03-01 18:04:10 +01:00
|
|
|
// searchPattern is the search string passed into FindFirst and FindNext.
|
|
|
|
std::string searchPattern = cleanedPath;
|
2011-03-20 14:25:11 +01:00
|
|
|
|
2013-03-03 07:32:14 +01:00
|
|
|
// The user wants to check all files in a dir
|
2019-11-20 15:37:09 +01:00
|
|
|
const bool checkAllFilesInDir = (myIsDirectory(cleanedPath) != FALSE);
|
2013-03-03 07:32:14 +01:00
|
|
|
|
|
|
|
if (checkAllFilesInDir) {
|
2018-04-04 21:02:13 +02:00
|
|
|
const char c = cleanedPath.back();
|
2011-10-13 20:53:06 +02:00
|
|
|
switch (c) {
|
2011-03-20 14:25:11 +01:00
|
|
|
case '\\':
|
2013-03-01 18:04:10 +01:00
|
|
|
searchPattern += '*';
|
|
|
|
basedir = cleanedPath;
|
2011-03-20 14:25:11 +01:00
|
|
|
break;
|
|
|
|
case '*':
|
2013-03-01 18:04:10 +01:00
|
|
|
basedir = cleanedPath.substr(0, cleanedPath.length() - 1);
|
2011-03-20 14:25:11 +01:00
|
|
|
break;
|
|
|
|
default:
|
2013-03-01 18:04:10 +01:00
|
|
|
searchPattern += "\\*";
|
2011-03-20 14:25:11 +01:00
|
|
|
if (cleanedPath != ".")
|
2013-03-01 18:04:10 +01:00
|
|
|
basedir = cleanedPath + '\\';
|
2011-03-20 14:25:11 +01:00
|
|
|
}
|
2011-10-13 20:53:06 +02:00
|
|
|
} else {
|
2018-04-04 21:02:13 +02:00
|
|
|
const std::string::size_type pos = cleanedPath.find_last_of('\\');
|
2011-10-13 20:53:06 +02:00
|
|
|
if (std::string::npos != pos) {
|
2013-03-01 18:04:10 +01:00
|
|
|
basedir = cleanedPath.substr(0, pos + 1);
|
2011-03-20 14:25:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-16 11:37:29 +02:00
|
|
|
WIN32_FIND_DATAA ffd;
|
2019-11-20 15:37:09 +01:00
|
|
|
HANDLE hFind = myFindFirstFile(searchPattern, &ffd);
|
2011-03-20 14:25:11 +01:00
|
|
|
if (INVALID_HANDLE_VALUE == hFind)
|
2021-04-18 21:52:14 +02:00
|
|
|
return "";
|
2011-03-20 14:25:11 +01:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
do {
|
2011-03-20 14:25:11 +01:00
|
|
|
if (ffd.cFileName[0] == '.' || ffd.cFileName[0] == '\0')
|
|
|
|
continue;
|
|
|
|
|
2012-07-16 11:37:29 +02:00
|
|
|
const char* ansiFfd = ffd.cFileName;
|
2015-11-29 10:49:10 +01:00
|
|
|
if (std::strchr(ansiFfd,'?')) {
|
2012-07-16 11:37:29 +02:00
|
|
|
ansiFfd = ffd.cAlternateFileName;
|
2011-03-20 14:25:11 +01:00
|
|
|
}
|
|
|
|
|
2013-03-01 18:04:10 +01:00
|
|
|
const std::string fname(basedir + ansiFfd);
|
2011-03-20 14:25:11 +01:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
if ((ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0) {
|
2011-03-20 14:25:11 +01:00
|
|
|
// File
|
2017-07-28 11:27:04 +02:00
|
|
|
if ((!checkAllFilesInDir || Path::acceptFile(fname, extra)) && !ignored.match(fname)) {
|
2015-11-29 10:49:10 +01:00
|
|
|
const std::string nativename = Path::fromNativeSeparators(fname);
|
|
|
|
|
2013-03-03 07:32:14 +01:00
|
|
|
// Limitation: file sizes are assumed to fit in a 'size_t'
|
2012-04-08 11:50:54 +02:00
|
|
|
#ifdef _WIN64
|
2013-03-03 07:32:14 +01:00
|
|
|
files[nativename] = (static_cast<std::size_t>(ffd.nFileSizeHigh) << 32) | ffd.nFileSizeLow;
|
2012-04-08 11:50:54 +02:00
|
|
|
#else
|
2013-03-03 07:32:14 +01:00
|
|
|
files[nativename] = ffd.nFileSizeLow;
|
2012-04-08 11:50:54 +02:00
|
|
|
#endif
|
2013-03-03 07:32:14 +01:00
|
|
|
}
|
2011-10-13 20:53:06 +02:00
|
|
|
} else {
|
2011-03-20 14:25:11 +01:00
|
|
|
// Directory
|
2018-02-17 06:31:12 +01:00
|
|
|
if (recursive) {
|
2021-04-18 21:52:14 +02:00
|
|
|
if (!ignored.match(fname)) {
|
|
|
|
std::string err = FileLister::recursiveAddFiles(files, fname, extra, ignored);
|
|
|
|
if (!err.empty())
|
|
|
|
return err;
|
|
|
|
}
|
2018-02-17 06:31:12 +01:00
|
|
|
}
|
2011-03-20 14:25:11 +01:00
|
|
|
}
|
2012-07-16 11:37:29 +02:00
|
|
|
} while (FindNextFileA(hFind, &ffd) != FALSE);
|
2011-03-20 14:25:11 +01:00
|
|
|
|
2015-09-09 17:45:22 +02:00
|
|
|
FindClose(hFind);
|
2021-04-18 21:52:14 +02:00
|
|
|
return "";
|
2011-03-20 14:25:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool FileLister::isDirectory(const std::string &path)
|
|
|
|
{
|
2019-11-20 15:37:09 +01:00
|
|
|
return (myIsDirectory(path) != FALSE);
|
2011-03-20 14:25:11 +01:00
|
|
|
}
|
|
|
|
|
2011-08-06 15:47:57 +02:00
|
|
|
bool FileLister::fileExists(const std::string &path)
|
|
|
|
{
|
2019-11-20 15:37:09 +01:00
|
|
|
return (myFileExists(path) != FALSE);
|
2011-08-06 15:47:57 +02:00
|
|
|
}
|
2011-03-20 14:25:11 +01:00
|
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
////// This code is POSIX-style systems ///////////////////////////////////////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-03-19 21:20:30 +01:00
|
|
|
#if defined(__CYGWIN__)
|
|
|
|
#undef __STRICT_ANSI__
|
|
|
|
#endif
|
|
|
|
|
2015-12-12 00:35:38 +01:00
|
|
|
#include <dirent.h>
|
2011-04-19 13:52:32 +02:00
|
|
|
#include <sys/stat.h>
|
2021-05-03 09:39:33 +02:00
|
|
|
#include <cerrno>
|
2011-03-20 14:25:11 +01:00
|
|
|
|
2021-07-14 20:50:14 +02:00
|
|
|
#ifndef NAME_MAX
|
|
|
|
#ifdef MAXNAMLEN
|
|
|
|
#define NAME_MAX MAXNAMLEN
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2015-12-12 00:35:38 +01:00
|
|
|
|
2021-04-18 21:52:14 +02:00
|
|
|
static std::string addFiles2(std::map<std::string, std::size_t> &files,
|
|
|
|
const std::string &path,
|
|
|
|
const std::set<std::string> &extra,
|
|
|
|
bool recursive,
|
|
|
|
const PathMatch& ignored
|
2021-08-07 20:51:18 +02:00
|
|
|
)
|
2011-10-29 19:30:33 +02:00
|
|
|
{
|
2015-12-12 00:35:38 +01:00
|
|
|
struct stat file_stat;
|
|
|
|
if (stat(path.c_str(), &file_stat) != -1) {
|
|
|
|
if ((file_stat.st_mode & S_IFMT) == S_IFDIR) {
|
|
|
|
DIR * dir = opendir(path.c_str());
|
|
|
|
if (!dir)
|
2021-04-18 21:52:14 +02:00
|
|
|
return "";
|
2011-10-29 19:30:33 +02:00
|
|
|
|
2015-12-12 00:35:38 +01:00
|
|
|
dirent * dir_result;
|
2020-10-18 20:43:33 +02:00
|
|
|
// make sure we reserve enough space for the readdir_r() buffer;
|
|
|
|
// according to POSIX:
|
|
|
|
// The storage pointed to by entry shall be large enough for a
|
|
|
|
// dirent with an array of char d_name members containing at
|
|
|
|
// least {NAME_MAX}+1 elements.
|
|
|
|
// on some platforms, d_name is not a static sized-array but
|
|
|
|
// a pointer to space usually reserved right after the dirent
|
|
|
|
// struct; the union here allows to reserve the space and to
|
|
|
|
// provide a pointer to the right type that can be passed where
|
|
|
|
// needed without casts
|
|
|
|
union {
|
|
|
|
dirent entry;
|
|
|
|
char buf[sizeof(*dir_result) + (sizeof(dir_result->d_name) > 1 ? 0 : NAME_MAX + 1)];
|
|
|
|
} dir_result_buffer;
|
2022-02-11 19:44:08 +01:00
|
|
|
// TODO: suppress instead?
|
|
|
|
(void)dir_result_buffer.buf; // do not trigger cppcheck itself on the "unused buf"
|
2015-12-12 00:35:38 +01:00
|
|
|
std::string new_path;
|
|
|
|
new_path.reserve(path.length() + 100);// prealloc some memory to avoid constant new/deletes in loop
|
2011-03-20 14:25:11 +01:00
|
|
|
|
2011-10-29 19:57:12 +02:00
|
|
|
|
2022-03-30 19:30:02 +02:00
|
|
|
while ((SUPPRESS_DEPRECATED_WARNING(readdir_r(dir, &dir_result_buffer.entry, &dir_result)) == 0) && (dir_result != nullptr)) {
|
2015-12-12 00:35:38 +01:00
|
|
|
if ((std::strcmp(dir_result->d_name, ".") == 0) ||
|
|
|
|
(std::strcmp(dir_result->d_name, "..") == 0))
|
|
|
|
continue;
|
2011-03-20 14:25:11 +01:00
|
|
|
|
2015-12-13 15:16:00 +01:00
|
|
|
new_path = path + '/' + dir_result->d_name;
|
2011-10-29 19:57:12 +02:00
|
|
|
|
2019-01-09 19:47:46 +01:00
|
|
|
#if defined(_DIRENT_HAVE_D_TYPE) || defined(_BSD_SOURCE)
|
|
|
|
bool path_is_directory = (dir_result->d_type == DT_DIR || (dir_result->d_type == DT_UNKNOWN && FileLister::isDirectory(new_path)));
|
2019-01-08 21:17:04 +01:00
|
|
|
#else
|
2019-01-09 19:47:46 +01:00
|
|
|
bool path_is_directory = FileLister::isDirectory(new_path);
|
2019-01-08 21:17:04 +01:00
|
|
|
#endif
|
2019-01-09 19:47:46 +01:00
|
|
|
if (path_is_directory) {
|
2017-07-28 11:27:04 +02:00
|
|
|
if (recursive && !ignored.match(new_path)) {
|
2021-04-18 21:52:14 +02:00
|
|
|
std::string err = addFiles2(files, new_path, extra, recursive, ignored);
|
|
|
|
if (!err.empty())
|
|
|
|
return err;
|
2015-12-12 00:35:38 +01:00
|
|
|
}
|
|
|
|
} else {
|
2017-07-28 11:27:04 +02:00
|
|
|
if (Path::acceptFile(new_path, extra) && !ignored.match(new_path)) {
|
2021-04-18 21:52:14 +02:00
|
|
|
if (stat(new_path.c_str(), &file_stat) != -1)
|
|
|
|
files[new_path] = file_stat.st_size;
|
|
|
|
else
|
|
|
|
return "Can't stat " + new_path + " errno: " + std::to_string(errno);
|
2015-12-12 00:35:38 +01:00
|
|
|
}
|
|
|
|
}
|
2015-07-23 14:01:33 +02:00
|
|
|
}
|
2015-12-12 00:35:38 +01:00
|
|
|
closedir(dir);
|
|
|
|
} else
|
|
|
|
files[path] = file_stat.st_size;
|
2011-03-20 14:25:11 +01:00
|
|
|
}
|
2021-04-18 21:52:14 +02:00
|
|
|
return "";
|
2011-03-20 14:25:11 +01:00
|
|
|
}
|
|
|
|
|
2021-04-18 21:52:14 +02:00
|
|
|
std::string FileLister::recursiveAddFiles(std::map<std::string, std::size_t> &files, const std::string &path, const std::set<std::string> &extra, const PathMatch& ignored)
|
2011-03-20 14:25:11 +01:00
|
|
|
{
|
2021-04-18 21:52:14 +02:00
|
|
|
return addFiles(files, path, extra, true, ignored);
|
2015-03-05 06:53:11 +01:00
|
|
|
}
|
|
|
|
|
2021-04-18 21:52:14 +02:00
|
|
|
std::string FileLister::addFiles(std::map<std::string, std::size_t> &files, const std::string &path, const std::set<std::string> &extra, bool recursive, const PathMatch& ignored)
|
2015-03-05 06:53:11 +01:00
|
|
|
{
|
2015-12-12 00:35:38 +01:00
|
|
|
if (!path.empty()) {
|
|
|
|
std::string corrected_path = path;
|
2018-03-30 21:04:32 +02:00
|
|
|
if (endsWith(corrected_path, '/'))
|
2015-12-12 00:35:38 +01:00
|
|
|
corrected_path.erase(corrected_path.end() - 1);
|
|
|
|
|
2021-04-18 21:52:14 +02:00
|
|
|
return addFiles2(files, corrected_path, extra, recursive, ignored);
|
2015-12-12 00:35:38 +01:00
|
|
|
}
|
2021-04-18 21:52:14 +02:00
|
|
|
|
|
|
|
return "";
|
2011-03-20 14:25:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool FileLister::isDirectory(const std::string &path)
|
|
|
|
{
|
2015-12-12 00:35:38 +01:00
|
|
|
struct stat file_stat;
|
2017-06-01 01:02:12 +02:00
|
|
|
return (stat(path.c_str(), &file_stat) != -1 && (file_stat.st_mode & S_IFMT) == S_IFDIR);
|
2011-03-20 14:25:11 +01:00
|
|
|
}
|
|
|
|
|
2011-08-06 15:47:57 +02:00
|
|
|
bool FileLister::fileExists(const std::string &path)
|
|
|
|
{
|
2015-12-12 00:35:38 +01:00
|
|
|
struct stat file_stat;
|
2017-06-01 01:02:12 +02:00
|
|
|
return (stat(path.c_str(), &file_stat) != -1 && (file_stat.st_mode & S_IFMT) == S_IFREG);
|
2011-08-06 15:47:57 +02:00
|
|
|
}
|
|
|
|
|
2011-03-20 14:25:11 +01:00
|
|
|
#endif
|