forked from peer3to/state-channels-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AStateChannelManagerProxy.sol
420 lines (388 loc) · 12.4 KB
/
AStateChannelManagerProxy.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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
pragma solidity ^0.8.8;
import "./StateChannelCommon.sol";
import "./DisputeManagerFacet.sol";
import "./StateChannelUtilLibrary.sol";
import "../StateChannelManagerInterface.sol";
abstract contract AStateChannelManagerProxy is
StateChannelManagerInterface,
StateChannelCommon
{
DisputeManagerFacet disputeManagerFacet;
constructor(
address _stateMachineImplementation,
address _disputeManagerFacet
) {
stateMachineImplementation = AStateMachine(_stateMachineImplementation);
disputeManagerFacet = DisputeManagerFacet(_disputeManagerFacet);
p2pTime = 15;
agreementTime = 5;
chainFallbackTime = 30;
challengeTime = 60;
}
function applySlashesToStateMachine(
bytes memory encodedState,
address[] memory slashedParticipants
)
public
onlySelf
returns (
bytes memory encodedModifiedState,
ProcessExit[] memory,
uint successCnt
)
{
return _applySlashesToStateMachine(encodedState, slashedParticipants);
}
function removeParticipantsFromStateMachine(
bytes memory encodedState,
address[] memory participants
)
public
onlySelf
returns (
bytes memory encodedModifiedState,
ProcessExit[] memory,
uint successCnt
)
{
return _removeParticipantsFromStateMachine(encodedState, participants);
}
function getLatestState(
bytes32 channelId
) public view override returns (bytes memory) {
return encodedStates[channelId][latestFork[channelId]];
}
function _applySlashesToStateMachine(
bytes memory encodedState,
address[] memory slashedParticipants
)
internal
returns (
bytes memory encodedModifiedState,
ProcessExit[] memory,
uint successCnt
)
{
ProcessExit[] memory processExits = new ProcessExit[](
slashedParticipants.length
);
uint successCnt = 0;
stateMachineImplementation.setState(encodedState);
for (uint i = 0; i < slashedParticipants.length; i++) {
bool success;
(success, processExits[successCnt]) = stateMachineImplementation
.slashParticipant(slashedParticipants[i]);
// require(success, "Slash failed");
if (success) successCnt++;
}
return (
stateMachineImplementation.getState(),
processExits,
successCnt
);
}
function _removeParticipantsFromStateMachine(
bytes memory encodedState,
address[] memory participants
)
internal
returns (
bytes memory encodedModifiedState,
ProcessExit[] memory,
uint successCnt
)
{
ProcessExit[] memory processExits = new ProcessExit[](
participants.length
);
uint successCnt = 0;
stateMachineImplementation.setState(encodedState);
for (uint i = 0; i < participants.length; i++) {
bool success;
(success, processExits[successCnt]) = stateMachineImplementation
.removeParticipant(participants[i]);
// require(success, "Remove failed");
if (success) successCnt++;
}
return (
stateMachineImplementation.getState(),
processExits,
successCnt
);
}
/**
* This implementation covers a MFS (minimal feature set) funded by the Web3 Foundation.
* Posting calldata is currenlty unefficient since the dispute mechanism only has a minimal feature set (MFS)
* In the Full feature set (FFS) this will post the calldata and modify a single storage slot
*/
function postBlockCalldata(SignedBlock memory signedBlock) public override {
//check siganture
address[] memory addressesInThreshold = new address[](1);
addressesInThreshold[0] = msg.sender;
bytes[] memory signatures = new bytes[](1);
signatures[0] = bytes(signedBlock.signature);
(bool succeeds, ) = StateChannelUtilLibrary.verifyThresholdSigned(
addressesInThreshold,
bytes(signedBlock.encodedBlock),
signatures
);
require(
succeeds,
"AStateChannelManager: postBlockCalldata signature invalid"
);
//Decode block;
Block memory _block = abi.decode(
bytes(signedBlock.encodedBlock),
(Block)
);
//Check if sender is participant - needed since chainTime will be used as block/tx time in disputes
require(
msg.sender == _block.transaction.header.participant,
"AStateChannelManager: postBlockCalldata sender must be participant"
);
//Check timestamp within range:
require(
_block.transaction.header.timestamp >=
block.timestamp - p2pTime - agreementTime - chainFallbackTime,
"AStateChannelManager: postBlockCalldata timestamp too old"
);
require(
_block.transaction.header.timestamp <= block.timestamp,
"AStateChannelManager: postBlockCalldata timestamp too new"
);
bytes32 channelId = _block.transaction.header.channelId;
uint forkCnt = _block.transaction.header.forkCnt;
uint transactionCnt = _block.transaction.header.transactionCnt;
//Could do aditional checks here like forkCnt < globalForkCnt, but not needed since it can be detected on-client and disputed
//Aslo could check if block producer part of state channel, but this too can be discarded on client - interacting on-chain has fees so no reason for someone to spam this
//TODO? should potentially remove all checks and just have posting blocks? For honest participants it would be cheaper, and spaming would be disacrded regardless at a cost
ForkDataAvailability storage forkDataAvailability = postedBlockCalldata[
channelId
][forkCnt];
forkDataAvailability.map[transactionCnt][msg.sender] = BlockCalldata({
signedBlock: signedBlock,
timestamp: block.timestamp
});
forkDataAvailability.keys.push(
ForkDataAvailabilityKey(transactionCnt, msg.sender)
);
emit BlockCalldataPosted(channelId, signedBlock, block.timestamp);
}
function _delegatecall(
address target,
bytes memory data
) internal returns (bytes memory) {
(bool success, bytes memory result) = target.delegatecall(data);
if (!success) {
if (result.length == 0)
revert("AStateChannelManagerProxy - Delegatecall failed");
assembly {
let returndata_size := mload(result)
revert(add(32, result), returndata_size)
}
}
return result;
}
function getDispute(
bytes32 channelId
) public view override returns (Dispute memory) {
return disputes[channelId];
}
//TODO! - temporary
function createDispute(
bytes32 channelId,
uint forkCnt,
bytes memory encodedLatestFinalizedState,
bytes memory encodedLatestCorrectState,
ConfirmedBlock[] memory virtualVotingBlocks,
address timedoutParticipant,
uint foldedTransactionCnt,
Proof[] memory proofs
) public override {
_delegatecall(
address(disputeManagerFacet),
abi.encodeCall(
disputeManagerFacet.createDispute,
(
channelId,
forkCnt,
encodedLatestFinalizedState,
encodedLatestCorrectState,
virtualVotingBlocks,
timedoutParticipant,
foldedTransactionCnt,
proofs
)
)
);
}
function challengeDispute(
bytes32 channelId,
uint forkCnt,
uint challengeCnt,
Proof[] memory proofs,
ConfirmedBlock[] memory virtualVotingBlocks,
bytes memory encodedLatestFinalizedState,
bytes memory encodedLatestCorrectState
) public override {
_delegatecall(
address(disputeManagerFacet),
abi.encodeCall(
disputeManagerFacet.challengeDispute,
(
channelId,
forkCnt,
challengeCnt,
proofs,
virtualVotingBlocks,
encodedLatestFinalizedState,
encodedLatestCorrectState
)
)
);
}
function getForkCnt(
bytes32 channelId
)
public
view
override(StateChannelCommon, StateChannelManagerInterface)
returns (uint)
{
return StateChannelCommon.getForkCnt(channelId);
}
function getParticipants(
bytes32 channelId,
uint forkCnt
)
public
override(StateChannelCommon, StateChannelManagerInterface)
returns (address[] memory)
{
return StateChannelCommon.getParticipants(channelId, forkCnt);
}
function getNextToWrite(
bytes32 channelId,
bytes memory encodedState
)
public
override(StateChannelCommon, StateChannelManagerInterface)
returns (address)
{
return StateChannelCommon.getNextToWrite(channelId, encodedState);
}
function isGenesisState(
bytes32 channelId,
uint forkCnt,
bytes memory encodedFinalizedState
)
public
view
override(StateChannelCommon, StateChannelManagerInterface)
returns (bool)
{
return
StateChannelCommon.isGenesisState(
channelId,
forkCnt,
encodedFinalizedState
);
}
function getP2pTime()
public
view
override(StateChannelCommon, StateChannelManagerInterface)
returns (uint)
{
return StateChannelCommon.getP2pTime();
}
function getAgreementTime()
public
view
override(StateChannelCommon, StateChannelManagerInterface)
returns (uint)
{
return StateChannelCommon.getAgreementTime();
}
function getChainFallbackTime()
public
view
override(StateChannelCommon, StateChannelManagerInterface)
returns (uint)
{
return StateChannelCommon.getChainFallbackTime();
}
function getChallengeTime()
public
view
override(StateChannelCommon, StateChannelManagerInterface)
returns (uint)
{
return StateChannelCommon.getChallengeTime();
}
function getAllTimes()
public
view
override(StateChannelCommon, StateChannelManagerInterface)
returns (uint, uint, uint, uint)
{
return StateChannelCommon.getAllTimes();
}
function getBlockCallData(
bytes32 channelId,
uint forkCnt,
uint transactionCnt,
address participant
)
public
view
override(StateChannelCommon, StateChannelManagerInterface)
returns (bool found, BlockCalldata memory)
{
return
StateChannelCommon.getBlockCallData(
channelId,
forkCnt,
transactionCnt,
participant
);
}
function getChainLatestBlockTimestamp(
bytes32 channelId,
uint forkCnt,
uint maxTransactionCnt
)
public
view
override(StateChannelCommon, StateChannelManagerInterface)
returns (uint)
{
return
StateChannelCommon.getChainLatestBlockTimestamp(
channelId,
forkCnt,
maxTransactionCnt
);
}
function getGenesisTimestamp(
bytes32 channelId,
uint forkCnt
)
public
view
override(StateChannelCommon, StateChannelManagerInterface)
returns (uint)
{
return StateChannelCommon.getGenesisTimestamp(channelId, forkCnt);
}
function isChannelOpen(
bytes32 channelId
)
public
view
override(StateChannelCommon, StateChannelManagerInterface)
returns (bool)
{
return StateChannelCommon.isChannelOpen(channelId);
}
}