2015-09-10 10:02:18 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2015-09-10 10:02:18 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2015-09-10 10:02:18 +00:00
|
|
|
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.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2015-09-10 10:02:18 +00:00
|
|
|
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
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2015-09-10 10:02:18 +00:00
|
|
|
*/
|
|
|
|
/** @file LinkerObject.cpp
|
|
|
|
* @author Christian R <c@ethdev.com>
|
|
|
|
* @date 2015
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libevmasm/LinkerObject.h>
|
|
|
|
#include <libdevcore/CommonData.h>
|
2018-10-18 11:35:20 +00:00
|
|
|
#include <libdevcore/Keccak256.h>
|
2015-09-10 10:02:18 +00:00
|
|
|
|
|
|
|
using namespace dev;
|
|
|
|
using namespace dev::eth;
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
void LinkerObject::append(LinkerObject const& _other)
|
|
|
|
{
|
|
|
|
for (auto const& ref: _other.linkReferences)
|
|
|
|
linkReferences[ref.first + bytecode.size()] = ref.second;
|
|
|
|
bytecode += _other.bytecode;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LinkerObject::link(map<string, h160> const& _libraryAddresses)
|
|
|
|
{
|
|
|
|
std::map<size_t, std::string> remainingRefs;
|
|
|
|
for (auto const& linkRef: linkReferences)
|
2017-01-18 16:41:36 +00:00
|
|
|
if (h160 const* address = matchLibrary(linkRef.second, _libraryAddresses))
|
2017-08-25 10:25:05 +00:00
|
|
|
copy(address->data(), address->data() + 20, bytecode.begin() + linkRef.first);
|
2015-09-10 10:02:18 +00:00
|
|
|
else
|
2017-01-18 16:41:36 +00:00
|
|
|
remainingRefs.insert(linkRef);
|
2015-09-10 10:02:18 +00:00
|
|
|
linkReferences.swap(remainingRefs);
|
|
|
|
}
|
|
|
|
|
|
|
|
string LinkerObject::toHex() const
|
|
|
|
{
|
|
|
|
string hex = dev::toHex(bytecode);
|
|
|
|
for (auto const& ref: linkReferences)
|
|
|
|
{
|
|
|
|
size_t pos = ref.first * 2;
|
2018-10-04 12:55:02 +00:00
|
|
|
string hash = libraryPlaceholder(ref.second);
|
2015-09-10 10:02:18 +00:00
|
|
|
hex[pos] = hex[pos + 1] = hex[pos + 38] = hex[pos + 39] = '_';
|
|
|
|
for (size_t i = 0; i < 36; ++i)
|
2018-10-04 12:55:02 +00:00
|
|
|
hex[pos + 2 + i] = hash.at(i);
|
2015-09-10 10:02:18 +00:00
|
|
|
}
|
|
|
|
return hex;
|
|
|
|
}
|
2017-01-18 16:41:36 +00:00
|
|
|
|
2018-10-04 12:55:02 +00:00
|
|
|
string LinkerObject::libraryPlaceholder(string const& _libraryName)
|
|
|
|
{
|
2018-10-08 13:08:12 +00:00
|
|
|
return "$" + keccak256(_libraryName).hex().substr(0, 34) + "$";
|
2018-10-04 12:55:02 +00:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:41:36 +00:00
|
|
|
h160 const*
|
|
|
|
LinkerObject::matchLibrary(
|
|
|
|
string const& _linkRefName,
|
|
|
|
map<string, h160> const& _libraryAddresses
|
|
|
|
)
|
|
|
|
{
|
|
|
|
auto it = _libraryAddresses.find(_linkRefName);
|
|
|
|
if (it != _libraryAddresses.end())
|
|
|
|
return &it->second;
|
|
|
|
// If the user did not supply a fully qualified library name,
|
2018-07-10 07:18:59 +00:00
|
|
|
// try to match only the simple library name
|
2017-01-18 16:41:36 +00:00
|
|
|
size_t colon = _linkRefName.find(':');
|
|
|
|
if (colon == string::npos)
|
|
|
|
return nullptr;
|
|
|
|
it = _libraryAddresses.find(_linkRefName.substr(colon + 1));
|
|
|
|
if (it != _libraryAddresses.end())
|
|
|
|
return &it->second;
|
|
|
|
return nullptr;
|
|
|
|
}
|