poa-bridge/contracts/bridge.sol

407 lines
14 KiB
Solidity
Raw Normal View History

2018-01-04 06:42:21 -08:00
pragma solidity ^0.4.17;
2017-06-13 02:18:03 -07:00
2018-01-13 05:41:27 -08:00
/// general helpers.
/// `internal` so they get compiled into contracts using them.
2018-01-12 07:34:34 -08:00
library Helpers {
2018-01-13 05:41:27 -08:00
/// returns whether `array` contains `value`.
function addressArrayContains(address[] array, address value) internal pure returns (bool) {
for (uint i = 0; i < array.length; i++) {
if (array[i] == value) {
return true;
}
}
return false;
}
2018-01-15 02:00:30 -08:00
// returns the digits of `inputValue` as a string.
// example: `uintToString(12345678)` returns `"12345678"`
function uintToString(uint inputValue) internal pure returns (string) {
// figure out the length of the resulting string
uint length = 0;
uint currentValue = inputValue;
do {
length++;
currentValue /= 10;
} while (currentValue != 0);
// allocate enough memory
bytes memory result = new bytes(length);
// construct the string backwards
uint i = length - 1;
currentValue = inputValue;
do {
result[i--] = byte(48 + currentValue % 10);
currentValue /= 10;
} while (currentValue != 0);
return string(result);
}
}
/// Library used only to test Helpers library via rpc calls
library HelpersTest {
function addressArrayContains(address[] array, address value) public pure returns (bool) {
return Helpers.addressArrayContains(array, value);
}
function uintToString(uint256 inputValue) public pure returns (string str) {
return Helpers.uintToString(inputValue);
}
}
2018-01-13 05:41:27 -08:00
// helpers for message signing.
// `internal` so they get compiled into contracts using them.
library MessageSigning {
function recoverAddressFromSignedMessage(bytes signature, bytes message) internal pure returns (address) {
require(signature.length == 65);
bytes32 r;
bytes32 s;
bytes1 v;
// solium-disable-next-line security/no-inline-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := mload(add(signature, 0x60))
}
2018-01-12 07:48:39 -08:00
return ecrecover(hashMessage(message), uint8(v), r, s);
}
2018-01-12 07:48:39 -08:00
function hashMessage(bytes message) internal pure returns (bytes32) {
bytes memory prefix = "\x19Ethereum Signed Message:\n";
return keccak256(prefix, Helpers.uintToString(message.length), message);
}
}
/// Library used only to test MessageSigning library via rpc calls
library MessageSigningTest {
function recoverAddressFromSignedMessage(bytes signature, bytes message) public pure returns (address) {
return MessageSigning.recoverAddressFromSignedMessage(signature, message);
}
}
2018-01-13 05:41:12 -08:00
library Message {
// layout of message :: bytes:
// offset 0: 32 bytes :: uint (little endian) - message length
// offset 32: 20 bytes :: address - recipient address
// offset 52: 32 bytes :: uint (little endian) - value
// offset 84: 32 bytes :: bytes32 - transaction hash
// bytes 1 to 32 are 0 because message length is stored as little endian.
// mload always reads 32 bytes.
// so we can and have to start reading recipient at offset 20 instead of 32.
// if we were to read at 32 the address would contain part of value and be corrupted.
// when reading from offset 20 mload will read 12 zero bytes followed
// by the 20 recipient address bytes and correctly convert it into an address.
// this saves some storage/gas over the alternative solution
// which is padding address to 32 bytes and reading recipient at offset 32.
// for more details see discussion in:
// https://github.com/paritytech/parity-bridge/issues/61
function getRecipient(bytes message) internal pure returns (address) {
address recipient;
// solium-disable-next-line security/no-inline-assembly
assembly {
recipient := mload(add(message, 20))
}
return recipient;
}
function getValue(bytes message) internal pure returns (uint) {
uint value;
// solium-disable-next-line security/no-inline-assembly
assembly {
value := mload(add(message, 52))
}
return value;
}
function getTransactionHash(bytes message) internal pure returns (bytes32) {
bytes32 hash;
// solium-disable-next-line security/no-inline-assembly
assembly {
hash := mload(add(message, 84))
}
return hash;
}
}
/// Library used only to test Message library via rpc calls
library MessageTest {
function getRecipient(bytes message) public pure returns (address) {
2018-01-13 05:41:12 -08:00
return Message.getRecipient(message);
}
function getValue(bytes message) public pure returns (uint) {
2018-01-13 05:41:12 -08:00
return Message.getValue(message);
}
function getTransactionHash(bytes message) public pure returns (bytes32) {
2018-01-13 05:41:12 -08:00
return Message.getTransactionHash(message);
}
}
2018-01-13 05:41:12 -08:00
2017-10-10 02:02:46 -07:00
contract HomeBridge {
2017-06-13 02:18:03 -07:00
/// Number of authorities signatures required to withdraw the money.
///
/// Must be lesser than number of authorities.
2017-09-01 06:11:20 -07:00
uint public requiredSignatures;
2017-08-25 07:27:55 -07:00
/// The gas cost of calling `HomeBridge.withdraw`.
///
/// Is subtracted from `value` on withdraw.
/// recipient pays the relaying authority for withdraw.
/// this shuts down attacks that exhaust authorities funds on home chain.
uint public estimatedGasCostOfWithdraw;
2017-06-13 02:18:03 -07:00
/// Contract authorities.
2017-09-01 06:11:20 -07:00
address[] public authorities;
2017-08-25 07:27:55 -07:00
2017-10-10 02:02:46 -07:00
/// Used foreign transaction hashes.
2017-06-13 02:18:03 -07:00
mapping (bytes32 => bool) withdraws;
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Event created on money deposit.
event Deposit (address recipient, uint value);
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Event created on money withdraw.
event Withdraw (address recipient, uint value);
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Multisig authority validation
modifier allAuthorities(uint8[] v, bytes32[] r, bytes32[] s, bytes message) {
2018-01-12 07:48:39 -08:00
var hash = MessageSigning.hashMessage(message);
2017-06-13 02:18:03 -07:00
var used = new address[](requiredSignatures);
2017-08-25 07:27:55 -07:00
require(requiredSignatures <= v.length);
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
for (uint i = 0; i < requiredSignatures; i++) {
var a = ecrecover(hash, v[i], r[i], s[i]);
2018-01-12 07:34:34 -08:00
require(Helpers.addressArrayContains(authorities, a));
require(!Helpers.addressArrayContains(used, a));
2017-06-13 02:18:03 -07:00
used[i] = a;
}
_;
}
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Constructor.
function HomeBridge(
uint requiredSignaturesParam,
address[] authoritiesParam,
uint estimatedGasCostOfWithdrawParam
2018-01-04 06:29:54 -08:00
) public
{
require(requiredSignaturesParam != 0);
require(requiredSignaturesParam <= authoritiesParam.length);
requiredSignatures = requiredSignaturesParam;
authorities = authoritiesParam;
estimatedGasCostOfWithdraw = estimatedGasCostOfWithdrawParam;
2017-06-13 02:18:03 -07:00
}
/// Should be used to deposit money.
function () public payable {
2017-06-13 02:18:03 -07:00
Deposit(msg.sender, msg.value);
}
/// to be called by authorities to check
/// whether they withdraw message should be relayed or whether it
/// is too low to cover the cost of calling withdraw and can be ignored
function isMessageValueSufficientToCoverRelay(bytes message) public view returns (bool) {
return Message.getValue(message) > getWithdrawRelayCost();
}
/// an upper bound to the cost of relaying a withdraw by calling HomeBridge.withdraw
function getWithdrawRelayCost() public view returns (uint) {
return estimatedGasCostOfWithdraw * tx.gasprice;
}
/// Used to withdraw money from the contract.
2017-06-13 02:18:03 -07:00
///
/// message contains:
/// withdrawal recipient (bytes20)
/// withdrawal value (uint)
2017-10-10 02:02:46 -07:00
/// foreign transaction hash (bytes32) // to avoid transaction duplication
///
/// NOTE that anyone can call withdraw provided they have the message and required signatures!
function withdraw(uint8[] v, bytes32[] r, bytes32[] s, bytes message) public allAuthorities(v, r, s, message) {
require(message.length == 84);
address recipient = Message.getRecipient(message);
uint value = Message.getValue(message);
bytes32 hash = Message.getTransactionHash(message);
2017-08-25 07:27:55 -07:00
// The following two statements guard against reentry into this function.
// Duplicated withdraw or reentry.
require(!withdraws[hash]);
2018-01-04 05:14:29 -08:00
// Order of operations below is critical to avoid TheDAO-like re-entry bug
2017-06-13 02:18:03 -07:00
withdraws[hash] = true;
// this fails if `value` is not even enough to cover the relay cost.
// Authorities simply IGNORE withdraws where `value` cant relay cost.
// Think of it as `value` getting burned entirely on the relay with no value left to pay out the recipient.
require(isMessageValueSufficientToCoverRelay(message));
uint estimatedWeiCostOfWithdraw = getWithdrawRelayCost();
// charge recipient for relay cost
uint valueRemainingAfterSubtractingCost = value - estimatedWeiCostOfWithdraw;
// pay out recipient
recipient.transfer(valueRemainingAfterSubtractingCost);
// refund relay cost to relaying authority
msg.sender.transfer(estimatedWeiCostOfWithdraw);
Withdraw(recipient, valueRemainingAfterSubtractingCost);
2017-06-13 02:18:03 -07:00
}
}
2017-10-10 02:02:46 -07:00
contract ForeignBridge {
2017-06-13 02:18:03 -07:00
struct SignaturesCollection {
/// Signed message.
bytes message;
2017-08-22 04:47:01 -07:00
/// Authorities who signed the message.
2017-06-13 02:18:03 -07:00
address[] signed;
2017-08-22 04:47:01 -07:00
/// Signaturs
bytes[] signatures;
2017-06-13 02:18:03 -07:00
}
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Number of authorities signatures required to withdraw the money.
///
/// Must be lesser than number of authorities.
uint public requiredSignatures;
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Contract authorities.
address[] public authorities;
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Ether balances
mapping (address => uint) public balances;
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Pending deposits and authorities who confirmed them
mapping (bytes32 => address[]) deposits;
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Pending signatures and authorities who confirmed them
mapping (bytes32 => SignaturesCollection) signatures;
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Event created on money deposit.
event Deposit(address recipient, uint value);
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Event created on money withdraw.
event Withdraw(address recipient, uint value);
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Event created on money transfer
event Transfer(address from, address to, uint value);
2017-08-25 07:27:55 -07:00
2017-10-10 02:02:46 -07:00
/// Collected signatures which should be relayed to home chain.
2017-08-22 04:53:40 -07:00
event CollectedSignatures(address authority, bytes32 messageHash);
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Constructor.
function ForeignBridge(
uint requiredSignaturesParam,
address[] authoritiesParam
2018-01-04 06:29:54 -08:00
) public
{
require(requiredSignaturesParam != 0);
require(requiredSignaturesParam <= authoritiesParam.length);
requiredSignatures = requiredSignaturesParam;
authorities = authoritiesParam;
2017-06-13 02:18:03 -07:00
}
/// Multisig authority validation
modifier onlyAuthority() {
2018-01-12 07:34:34 -08:00
require(Helpers.addressArrayContains(authorities, msg.sender));
2017-06-13 02:18:03 -07:00
_;
}
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Used to deposit money to the contract.
///
/// deposit recipient (bytes20)
/// deposit value (uint)
/// mainnet transaction hash (bytes32) // to avoid transaction duplication
function deposit(address recipient, uint value, bytes32 transactionHash) public onlyAuthority() {
2017-09-04 03:50:43 -07:00
// Protection from misbehaing authority
var hash = keccak256(recipient, value, transactionHash);
2017-06-13 02:18:03 -07:00
// Duplicated deposits
2018-01-12 07:34:34 -08:00
require(!Helpers.addressArrayContains(deposits[hash], msg.sender));
2017-06-13 02:18:03 -07:00
deposits[hash].push(msg.sender);
// TODO: this may cause troubles if requriedSignatures len is changed
if (deposits[hash].length == requiredSignatures) {
balances[recipient] += value;
Deposit(recipient, value);
}
}
2017-08-25 07:27:55 -07:00
/// Transfer `value` from `msg.sender`s local balance (on `foreign` chain) to `recipient` on `home` chain.
///
/// immediately decreases `msg.sender`s local balance.
/// emits a `Withdraw` event which will be picked up by the bridge authorities.
/// bridge authorities will then sign off (by calling `submitSignature`) on a message containing `value`,
/// `recipient` and the `hash` of the transaction on `foreign` containing the `Withdraw` event.
/// once `requiredSignatures` are collected a `CollectedSignatures` event will be emitted.
/// an authority will pick up `CollectedSignatures` an call `HomeBridge.withdraw`
/// which transfers `value - relayCost` to `recipient` completing the transfer.
function transferHomeViaRelay(address recipient, uint value) public {
require(balances[msg.sender] >= value);
// fails if value == 0, or if there is an overflow
require(balances[recipient] + value > balances[recipient]);
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
balances[msg.sender] -= value;
Withdraw(recipient, value);
}
/// Transfer `value` to `recipient` on this `foreign` chain.
///
/// does not affect `home` chain. does not do a relay.
function transferLocal(address recipient, uint value) public {
require(balances[msg.sender] >= value);
// fails if value == 0, or if there is an overflow
require(balances[recipient] + value > balances[recipient]);
balances[msg.sender] -= value;
balances[recipient] += value;
Transfer(msg.sender, recipient, value);
2017-06-13 02:18:03 -07:00
}
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
/// Should be used as sync tool
2017-08-25 07:27:55 -07:00
///
2017-06-13 02:18:03 -07:00
/// Message is a message that should be relayed to main chain once authorities sign it.
2017-08-25 07:27:55 -07:00
///
2017-08-23 10:09:51 -07:00
/// for withdraw message contains:
/// withdrawal recipient (bytes20)
/// withdrawal value (uint)
2017-10-10 02:02:46 -07:00
/// foreign transaction hash (bytes32) // to avoid transaction duplication
function submitSignature(bytes signature, bytes message) public onlyAuthority() {
// Validate submited signatures
require(MessageSigning.recoverAddressFromSignedMessage(signature, message) == msg.sender);
2017-09-04 03:50:43 -07:00
// Valid withdraw message must have 84 bytes
require(message.length == 84);
var hash = keccak256(message);
2017-08-25 07:27:55 -07:00
2017-06-13 02:18:03 -07:00
// Duplicated signatures
2018-01-12 07:34:34 -08:00
require(!Helpers.addressArrayContains(signatures[hash].signed, msg.sender));
2017-06-13 02:18:03 -07:00
signatures[hash].message = message;
signatures[hash].signed.push(msg.sender);
2017-08-22 04:47:01 -07:00
signatures[hash].signatures.push(signature);
2017-08-25 07:27:55 -07:00
// TODO: this may cause troubles if requiredSignatures len is changed
2017-06-13 02:18:03 -07:00
if (signatures[hash].signed.length == requiredSignatures) {
2017-08-22 04:53:40 -07:00
CollectedSignatures(msg.sender, hash);
2017-06-13 02:18:03 -07:00
}
}
2017-08-25 07:27:55 -07:00
/// Get signature
function signature(bytes32 hash, uint index) public view returns (bytes) {
2017-08-22 04:47:01 -07:00
return signatures[hash].signatures[index];
}
2017-08-25 07:27:55 -07:00
2017-08-22 04:53:40 -07:00
/// Get message
function message(bytes32 hash) public view returns (bytes) {
2017-08-22 04:53:40 -07:00
return signatures[hash].message;
}
}