-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathDelayedTransaction.sol
310 lines (277 loc) · 8.9 KB
/
DelayedTransaction.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
// SPDX-License-Identifier: Apache-2.0
// Copyright 2017 Loopring Technology Limited.
pragma solidity ^0.7.0;
import "../../lib/AddressUtil.sol";
import "../../lib/MathUint.sol";
import "../../lib/ReentrancyGuard.sol";
import "../../thirdparty/BytesUtil.sol";
import "./IDelayedTransaction.sol";
/// @title DelayedOwner
/// @author Brecht Devos - <[email protected]>
/// @dev Base class for an Owner contract where certain functions have
/// a mandatory delay for security purposes.
abstract contract DelayedTransaction is IDelayedTransaction, ReentrancyGuard
{
using AddressUtil for address payable;
using BytesUtil for bytes;
using MathUint for uint;
// Map from address and function to the functions's location+1 in the `delayedFunctions` array.
mapping (address => mapping (bytes4 => uint)) private delayedFunctionMap;
// Map from transaction ID to the transaction's location+1 in the `pendingTransactions` array.
mapping (uint => uint) private pendingTransactionMap;
// Used to generate a unique identifier for a delayed transaction
uint private totalNumDelayedTransactions = 0;
modifier onlyAuthorized
{
require(isAuthorizedForTransactions(msg.sender), "UNAUTHORIZED");
_;
}
constructor(
uint _timeToLive
)
{
timeToLive = _timeToLive;
}
// If the function that is called has no delay the function is called immediately,
// otherwise the function call is stored on-chain and can be executed later using
// `executeTransaction` when the necessary time has passed.
function transact(
address to,
bytes calldata data
)
external
payable
virtual
override
nonReentrant
onlyAuthorized
{
transactInternal(to, msg.value, data);
}
function executeTransaction(
uint transactionId
)
external
override
nonReentrant
onlyAuthorized
{
Transaction memory transaction = getTransaction(transactionId);
// Make sure the delay is respected
bytes4 functionSelector = transaction.data.toBytes4(0);
uint delay = getFunctionDelay(transaction.to, functionSelector);
require(block.timestamp >= transaction.timestamp.add(delay), "TOO_EARLY");
require(block.timestamp <= transaction.timestamp.add(delay).add(timeToLive), "TOO_LATE");
// Remove the transaction
removeTransaction(transaction.id);
// Exectute the transaction
(bool success, bytes memory returnData) = exectuteTransaction(transaction);
if (!success) {
assembly { revert(add(returnData, 32), mload(returnData)) }
}
emit PendingTransactionExecuted(
transaction.id,
transaction.timestamp,
transaction.to,
transaction.value,
transaction.data
);
}
function cancelTransaction(
uint transactionId
)
external
override
nonReentrant
onlyAuthorized
{
cancelTransactionInternal(transactionId);
}
function cancelAllTransactions()
external
override
nonReentrant
onlyAuthorized
{
// First cache all transactions ids of the transactions we will remove
uint[] memory transactionIds = new uint[](pendingTransactions.length);
for(uint i = 0; i < pendingTransactions.length; i++) {
transactionIds[i] = pendingTransactions[i].id;
}
// Now remove all delayed transactions
for(uint i = 0; i < transactionIds.length; i++) {
cancelTransactionInternal(transactionIds[i]);
}
}
function getFunctionDelay(
address to,
bytes4 functionSelector
)
public
override
view
returns (uint)
{
uint pos = delayedFunctionMap[to][functionSelector];
if (pos == 0) {
return 0;
} else {
return delayedFunctions[pos - 1].delay;
}
}
function getNumPendingTransactions()
external
override
view
returns (uint)
{
return pendingTransactions.length;
}
function getNumDelayedFunctions()
external
override
view
returns (uint)
{
return delayedFunctions.length;
}
// == Internal Functions ==
function transactInternal(
address to,
uint value,
bytes memory data
)
internal
{
Transaction memory transaction = Transaction(
totalNumDelayedTransactions,
block.timestamp,
to,
value,
data
);
bytes4 functionSelector = transaction.data.toBytes4(0);
uint delay = getFunctionDelay(transaction.to, functionSelector);
if (delay == 0) {
(bool success, bytes memory returnData) = exectuteTransaction(transaction);
if (!success) {
assembly { revert(add(returnData, 32), mload(returnData)) }
}
emit TransactionExecuted(
transaction.timestamp,
transaction.to,
transaction.value,
transaction.data
);
} else {
pendingTransactions.push(transaction);
pendingTransactionMap[transaction.id] = pendingTransactions.length;
emit TransactionDelayed(
transaction.id,
transaction.timestamp,
transaction.to,
transaction.value,
transaction.data,
delay
);
totalNumDelayedTransactions++;
}
}
function setFunctionDelay(
address to,
bytes4 functionSelector,
uint delay
)
internal
{
// Check if the function already has a delay
uint pos = delayedFunctionMap[to][functionSelector];
if (pos > 0) {
if (delay > 0) {
// Just update the delay
delayedFunctions[pos - 1].delay = delay;
} else {
// Remove the delayed function
uint size = delayedFunctions.length;
if (pos != size) {
DelayedFunction memory lastOne = delayedFunctions[size - 1];
delayedFunctions[pos - 1] = lastOne;
delayedFunctionMap[lastOne.to][lastOne.functionSelector] = pos;
}
delayedFunctions.pop();
delete delayedFunctionMap[to][functionSelector];
}
} else if (delay > 0) {
// Add the new delayed function
DelayedFunction memory delayedFunction = DelayedFunction(
to,
functionSelector,
delay
);
delayedFunctions.push(delayedFunction);
delayedFunctionMap[to][functionSelector] = delayedFunctions.length;
}
}
function exectuteTransaction(
Transaction memory transaction
)
internal
returns (bool success, bytes memory returnData)
{
// solium-disable-next-line security/no-call-value
(success, returnData) = transaction.to.call{value: transaction.value}(transaction.data);
}
function cancelTransactionInternal(
uint transactionId
)
internal
{
Transaction memory transaction = getTransaction(transactionId);
// Remove the transaction
removeTransaction(transaction.id);
emit TransactionCancelled(
transaction.id,
transaction.timestamp,
transaction.to,
transaction.value,
transaction.data
);
// Return the transaction value (if there is any)
uint value = transaction.value;
if (value > 0) {
msg.sender.sendETHAndVerify(value, gasleft());
}
}
function getTransaction(
uint transactionId
)
internal
view
returns (Transaction storage transaction)
{
uint pos = pendingTransactionMap[transactionId];
require(pos != 0, "TRANSACTION_NOT_FOUND");
transaction = pendingTransactions[pos - 1];
}
function removeTransaction(
uint transactionId
)
internal
{
uint pos = pendingTransactionMap[transactionId];
require(pos != 0, "TRANSACTION_NOT_FOUND");
uint size = pendingTransactions.length;
if (pos != size) {
Transaction memory lastOne = pendingTransactions[size - 1];
pendingTransactions[pos - 1] = lastOne;
pendingTransactionMap[lastOne.id] = pos;
}
pendingTransactions.pop();
delete pendingTransactionMap[transactionId];
}
function isAuthorizedForTransactions(address sender)
internal
virtual
view
returns (bool);
}