aboutsummaryrefslogtreecommitdiffstats
path: root/solc/CommandLineInterface.cpp
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-04-21 06:32:42 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-04-22 21:08:28 +0800
commitb7951be44a978ba3eb1a99c429e5f73770bd0972 (patch)
treefb6684cc9dac896792b4bd9c5671f8b3153a2593 /solc/CommandLineInterface.cpp
parentaa441668db9ea5ec68b8988209c3ed7c82659876 (diff)
downloaddexon-solidity-b7951be44a978ba3eb1a99c429e5f73770bd0972.tar.gz
dexon-solidity-b7951be44a978ba3eb1a99c429e5f73770bd0972.tar.zst
dexon-solidity-b7951be44a978ba3eb1a99c429e5f73770bd0972.zip
Add exception guard to ReadFileCallback in CLI
Diffstat (limited to 'solc/CommandLineInterface.cpp')
-rw-r--r--solc/CommandLineInterface.cpp53
1 files changed, 32 insertions, 21 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp
index 2bfd0bf2..632c400b 100644
--- a/solc/CommandLineInterface.cpp
+++ b/solc/CommandLineInterface.cpp
@@ -618,32 +618,43 @@ bool CommandLineInterface::processInput()
{
ReadFile::Callback fileReader = [this](string const& _path)
{
- auto path = boost::filesystem::path(_path);
- auto canonicalPath = boost::filesystem::canonical(path);
- bool isAllowed = false;
- for (auto const& allowedDir: m_allowedDirectories)
+ try
{
- // If dir is a prefix of boostPath, we are fine.
- if (
- std::distance(allowedDir.begin(), allowedDir.end()) <= std::distance(canonicalPath.begin(), canonicalPath.end()) &&
- std::equal(allowedDir.begin(), allowedDir.end(), canonicalPath.begin())
- )
+ auto path = boost::filesystem::path(_path);
+ auto canonicalPath = boost::filesystem::canonical(path);
+ bool isAllowed = false;
+ for (auto const& allowedDir: m_allowedDirectories)
{
- isAllowed = true;
- break;
+ // If dir is a prefix of boostPath, we are fine.
+ if (
+ std::distance(allowedDir.begin(), allowedDir.end()) <= std::distance(canonicalPath.begin(), canonicalPath.end()) &&
+ std::equal(allowedDir.begin(), allowedDir.end(), canonicalPath.begin())
+ )
+ {
+ isAllowed = true;
+ break;
+ }
+ }
+ if (!isAllowed)
+ return ReadFile::Result{false, "File outside of allowed directories."};
+ else if (!boost::filesystem::exists(path))
+ return ReadFile::Result{false, "File not found."};
+ else if (!boost::filesystem::is_regular_file(canonicalPath))
+ return ReadFile::Result{false, "Not a valid file."};
+ else
+ {
+ auto contents = dev::contentsString(canonicalPath.string());
+ m_sourceCodes[path.string()] = contents;
+ return ReadFile::Result{true, contents};
}
}
- if (!isAllowed)
- return ReadFile::Result{false, "File outside of allowed directories."};
- else if (!boost::filesystem::exists(path))
- return ReadFile::Result{false, "File not found."};
- else if (!boost::filesystem::is_regular_file(canonicalPath))
- return ReadFile::Result{false, "Not a valid file."};
- else
+ catch (Exception const& _exception)
+ {
+ return ReadFile::Result{false, "Exception in read callback: " + boost::diagnostic_information(_exception)};
+ }
+ catch (...)
{
- auto contents = dev::contentsString(canonicalPath.string());
- m_sourceCodes[path.string()] = contents;
- return ReadFile::Result{true, contents};
+ return ReadFile::Result{false, "Unknown exception in read callback."};
}
};