2021-04-06 14:12:06 +00:00
|
|
|
/*
|
|
|
|
This file is part of solidity.
|
|
|
|
|
|
|
|
solidity 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.
|
|
|
|
|
|
|
|
solidity 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 solidity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <libsolidity/interface/ImportRemapper.h>
|
|
|
|
#include <libsolidity/interface/ReadFile.h>
|
|
|
|
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
namespace solidity::frontend
|
|
|
|
{
|
|
|
|
|
|
|
|
/// FileReader - used for progressively loading source code.
|
|
|
|
///
|
|
|
|
/// It is used in solc to load files from CLI parameters, stdin, or from JSON and
|
|
|
|
/// also used in the solc language server where solc is a long running process.
|
|
|
|
class FileReader
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using StringMap = std::map<SourceUnitName, SourceCode>;
|
|
|
|
using PathMap = std::map<SourceUnitName, boost::filesystem::path>;
|
|
|
|
using FileSystemPathSet = std::set<boost::filesystem::path>;
|
|
|
|
|
2021-07-21 16:52:12 +00:00
|
|
|
enum SymlinkResolution {
|
|
|
|
Disabled, ///< Do not resolve symbolic links in the path.
|
|
|
|
Enabled, ///< Follow symbolic links. The path should contain no symlinks.
|
|
|
|
};
|
|
|
|
|
2021-08-20 17:17:44 +00:00
|
|
|
/// Constructs a FileReader with a base path and sets of include paths and allowed directories
|
|
|
|
/// that will be used when requesting files from this file reader instance.
|
|
|
|
explicit FileReader(
|
|
|
|
boost::filesystem::path _basePath = {},
|
|
|
|
std::vector<boost::filesystem::path> const& _includePaths = {},
|
|
|
|
FileSystemPathSet _allowedDirectories = {}
|
|
|
|
);
|
2021-04-06 14:12:06 +00:00
|
|
|
|
2021-06-15 12:52:53 +00:00
|
|
|
void setBasePath(boost::filesystem::path const& _path);
|
2021-04-06 14:12:06 +00:00
|
|
|
boost::filesystem::path const& basePath() const noexcept { return m_basePath; }
|
|
|
|
|
2021-08-20 17:17:44 +00:00
|
|
|
void addIncludePath(boost::filesystem::path const& _path);
|
|
|
|
std::vector<boost::filesystem::path> const& includePaths() const noexcept { return m_includePaths; }
|
|
|
|
|
2021-07-23 23:30:17 +00:00
|
|
|
void allowDirectory(boost::filesystem::path _path);
|
2021-04-06 14:12:06 +00:00
|
|
|
FileSystemPathSet const& allowedDirectories() const noexcept { return m_allowedDirectories; }
|
|
|
|
|
|
|
|
StringMap const& sourceCodes() const noexcept { return m_sourceCodes; }
|
|
|
|
|
2021-06-15 12:52:53 +00:00
|
|
|
/// Retrieves the source code for a given source unit name.
|
2021-04-06 14:12:06 +00:00
|
|
|
SourceCode const& sourceCode(SourceUnitName const& _sourceUnitName) const { return m_sourceCodes.at(_sourceUnitName); }
|
|
|
|
|
2021-06-15 12:52:53 +00:00
|
|
|
/// Resets all sources to the given map of source unit name to source codes.
|
2021-04-10 17:57:50 +00:00
|
|
|
/// Does not enforce @a allowedDirectories().
|
2021-04-06 14:12:06 +00:00
|
|
|
void setSources(StringMap _sources);
|
|
|
|
|
2021-06-15 12:52:53 +00:00
|
|
|
/// Adds the source code under a source unit name created by normalizing the file path.
|
2021-04-10 17:57:50 +00:00
|
|
|
/// Does not enforce @a allowedDirectories().
|
2021-04-06 14:12:06 +00:00
|
|
|
void setSource(boost::filesystem::path const& _path, SourceCode _source);
|
|
|
|
|
2021-06-15 12:52:53 +00:00
|
|
|
/// Adds the source code under the source unit name of @a <stdin>.
|
|
|
|
/// Does not enforce @a allowedDirectories().
|
|
|
|
void setStdin(SourceCode _source);
|
|
|
|
|
2021-04-10 17:57:50 +00:00
|
|
|
/// Receives a @p _sourceUnitName that refers to a source unit in compiler's virtual filesystem
|
|
|
|
/// and attempts to interpret it as a path and read the corresponding file from disk.
|
|
|
|
/// The read will only succeed if the canonical path of the file is within one of the @a allowedDirectories().
|
|
|
|
/// @param _kind must be equal to "source". Other values are not supported.
|
|
|
|
/// @return Content of the loaded file or an error message. If the operation succeeds, a copy of
|
|
|
|
/// the content is retained in @a sourceCodes() under the key of @a _sourceUnitName. If the key
|
|
|
|
/// already exists, previous content is discarded.
|
|
|
|
frontend::ReadCallback::Result readFile(std::string const& _kind, std::string const& _sourceUnitName);
|
2021-04-06 14:12:06 +00:00
|
|
|
|
|
|
|
frontend::ReadCallback::Callback reader()
|
|
|
|
{
|
|
|
|
return [this](std::string const& _kind, std::string const& _path) { return readFile(_kind, _path); };
|
|
|
|
}
|
|
|
|
|
2021-08-20 17:17:44 +00:00
|
|
|
/// Creates a source unit name by normalizing a path given on the command line and, if possible,
|
|
|
|
/// making it relative to base path or one of the include directories.
|
|
|
|
std::string cliPathToSourceUnitName(boost::filesystem::path const& _cliPath);
|
|
|
|
|
2021-06-15 12:52:53 +00:00
|
|
|
/// Normalizes a filesystem path to make it include all components up to the filesystem root,
|
|
|
|
/// remove small, inconsequential differences that do not affect the meaning and make it look
|
2021-07-21 16:52:12 +00:00
|
|
|
/// the same on all platforms (if possible).
|
2021-06-15 12:52:53 +00:00
|
|
|
/// The resulting path uses forward slashes as path separators, has no redundant separators,
|
|
|
|
/// has no redundant . or .. segments and has no root name if removing it does not change the meaning.
|
|
|
|
/// The path does not have to actually exist.
|
2021-07-21 16:52:12 +00:00
|
|
|
/// @param _path Path to normalize.
|
|
|
|
/// @param _symlinkResolution If @a Disabled, any symlinks present in @a _path are preserved.
|
|
|
|
static boost::filesystem::path normalizeCLIPathForVFS(
|
|
|
|
boost::filesystem::path const& _path,
|
|
|
|
SymlinkResolution _symlinkResolution = SymlinkResolution::Disabled
|
|
|
|
);
|
2021-06-15 12:52:53 +00:00
|
|
|
|
|
|
|
/// @returns true if all the path components of @a _prefix are present at the beginning of @a _path.
|
|
|
|
/// Both paths must be absolute (or have slash as root) and normalized (no . or .. segments, no
|
|
|
|
/// multiple consecutive slashes).
|
|
|
|
/// Paths are treated as case-sensitive. Does not require the path to actually exist in the
|
|
|
|
/// filesystem and does not follow symlinks. Only considers whole segments, e.g. /abc/d is not
|
|
|
|
/// considered a prefix of /abc/def. Both paths must be non-empty.
|
|
|
|
/// Ignores the trailing slash, i.e. /a/b/c.sol/ is treated as a valid prefix of /a/b/c.sol.
|
|
|
|
static bool isPathPrefix(boost::filesystem::path const& _prefix, boost::filesystem::path const& _path);
|
|
|
|
|
|
|
|
/// If @a _prefix is actually a prefix of @p _path, removes it from @a _path to make it relative.
|
|
|
|
/// @returns The path without the prefix or unchanged path if there is not prefix.
|
|
|
|
/// If @a _path and @_prefix are identical, the result is '.'.
|
|
|
|
static boost::filesystem::path stripPrefixIfPresent(boost::filesystem::path const& _prefix, boost::filesystem::path const& _path);
|
|
|
|
|
|
|
|
/// @returns true if the specified path is an UNC path.
|
|
|
|
/// UNC paths start with // followed by a name (on Windows they can also start with \\).
|
|
|
|
/// They are used for network shares on Windows. On UNIX systems they do not have the same
|
|
|
|
/// functionality but usually they are still recognized and treated in a special way.
|
|
|
|
static bool isUNCPath(boost::filesystem::path const& _path);
|
|
|
|
|
2021-04-06 14:12:06 +00:00
|
|
|
private:
|
2021-06-15 12:52:53 +00:00
|
|
|
/// If @a _path starts with a number of .. segments, returns a path consisting only of those
|
|
|
|
/// segments (root name is not included). Otherwise returns an empty path. @a _path must be
|
|
|
|
/// absolute (or have slash as root).
|
|
|
|
static boost::filesystem::path absoluteDotDotPrefix(boost::filesystem::path const& _path);
|
|
|
|
|
|
|
|
/// @returns true if the path contains any .. segments.
|
|
|
|
static bool hasDotDotSegments(boost::filesystem::path const& _path);
|
|
|
|
|
2021-04-06 14:12:06 +00:00
|
|
|
/// Base path, used for resolving relative paths in imports.
|
|
|
|
boost::filesystem::path m_basePath;
|
|
|
|
|
2021-08-20 17:17:44 +00:00
|
|
|
/// Additional directories used for resolving relative paths in imports.
|
|
|
|
std::vector<boost::filesystem::path> m_includePaths;
|
|
|
|
|
2021-04-06 14:12:06 +00:00
|
|
|
/// list of allowed directories to read files from
|
|
|
|
FileSystemPathSet m_allowedDirectories;
|
|
|
|
|
|
|
|
/// map of input files to source code strings
|
|
|
|
StringMap m_sourceCodes;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|