This repository has been archived by the owner on Jun 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 102
/
multisig_actor.go
585 lines (481 loc) · 19.4 KB
/
multisig_actor.go
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
package multisig
import (
"bytes"
"fmt"
addr "github.com/filecoin-project/go-address"
"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/go-state-types/big"
"github.com/filecoin-project/go-state-types/cbor"
"github.com/filecoin-project/go-state-types/exitcode"
multisig0 "github.com/filecoin-project/specs-actors/actors/builtin/multisig"
multisig2 "github.com/filecoin-project/specs-actors/v2/actors/builtin/multisig"
"github.com/ipfs/go-cid"
"github.com/filecoin-project/specs-actors/v8/actors/builtin"
"github.com/filecoin-project/specs-actors/v8/actors/runtime"
"github.com/filecoin-project/specs-actors/v8/actors/util/adt"
)
type TxnID = multisig0.TxnID
//type Transaction struct {
// To addr.Address
// Value abi.TokenAmount
// Method abi.MethodNum
// Params []byte
//
// // This address at index 0 is the transaction proposer, order of this slice must be preserved.
// Approved []addr.Address
//}
type Transaction = multisig0.Transaction
// Data for a BLAKE2B-256 to be attached to methods referencing proposals via TXIDs.
// Ensures the existence of a cryptographic reference to the original proposal. Useful
// for offline signers and for protection when reorgs change a multisig TXID.
//
// Requester - The requesting multisig wallet member.
// All other fields - From the "Transaction" struct.
//type ProposalHashData struct {
// Requester addr.Address
// To addr.Address
// Value abi.TokenAmount
// Method abi.MethodNum
// Params []byte
//}
type ProposalHashData = multisig0.ProposalHashData
type Actor struct{}
func (a Actor) Exports() []interface{} {
return []interface{}{
builtin.MethodConstructor: a.Constructor,
2: a.Propose,
3: a.Approve,
4: a.Cancel,
5: a.AddSigner,
6: a.RemoveSigner,
7: a.SwapSigner,
8: a.ChangeNumApprovalsThreshold,
9: a.LockBalance,
}
}
func (a Actor) Code() cid.Cid {
return builtin.MultisigActorCodeID
}
func (a Actor) State() cbor.Er {
return new(State)
}
var _ runtime.VMActor = Actor{}
// type ConstructorParams struct {
// Signers []addr.Address
// NumApprovalsThreshold uint64
// UnlockDuration abi.ChainEpoch
// StartEpoch abi.ChainEpoch
// }
type ConstructorParams = multisig2.ConstructorParams
func (a Actor) Constructor(rt runtime.Runtime, params *ConstructorParams) *abi.EmptyValue {
rt.ValidateImmediateCallerIs(builtin.InitActorAddr)
if len(params.Signers) < 1 {
rt.Abortf(exitcode.ErrIllegalArgument, "must have at least one signer")
}
if len(params.Signers) > SignersMax {
rt.Abortf(exitcode.ErrIllegalArgument, "cannot add more than %d signers", SignersMax)
}
// resolve signer addresses and do not allow duplicate signers
resolvedSigners := make([]addr.Address, 0, len(params.Signers))
deDupSigners := make(map[addr.Address]struct{}, len(params.Signers))
for _, signer := range params.Signers {
resolved, err := builtin.ResolveToIDAddr(rt, signer)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to resolve addr %v to ID addr", signer)
if _, ok := deDupSigners[resolved]; ok {
rt.Abortf(exitcode.ErrIllegalArgument, "duplicate signer not allowed: %s", signer)
}
resolvedSigners = append(resolvedSigners, resolved)
deDupSigners[resolved] = struct{}{}
}
if params.NumApprovalsThreshold > uint64(len(params.Signers)) {
rt.Abortf(exitcode.ErrIllegalArgument, "must not require more approvals than signers")
}
if params.NumApprovalsThreshold < 1 {
rt.Abortf(exitcode.ErrIllegalArgument, "must require at least one approval")
}
if params.UnlockDuration < 0 {
rt.Abortf(exitcode.ErrIllegalArgument, "negative unlock duration disallowed")
}
pending, err := adt.StoreEmptyMap(adt.AsStore(rt), builtin.DefaultHamtBitwidth)
if err != nil {
rt.Abortf(exitcode.ErrIllegalState, "failed to create empty map: %v", err)
}
var st State
st.Signers = resolvedSigners
st.NumApprovalsThreshold = params.NumApprovalsThreshold
st.PendingTxns = pending
st.InitialBalance = abi.NewTokenAmount(0)
if params.UnlockDuration != 0 {
st.SetLocked(params.StartEpoch, params.UnlockDuration, rt.ValueReceived())
}
rt.StateCreate(&st)
return nil
}
//type ProposeParams struct {
// To addr.Address
// Value abi.TokenAmount
// Method abi.MethodNum
// Params []byte
//}
type ProposeParams = multisig0.ProposeParams
//type ProposeReturn struct {
// // TxnID is the ID of the proposed transaction
// TxnID TxnID
// // Applied indicates if the transaction was applied as opposed to proposed but not applied due to lack of approvals
// Applied bool
// // Code is the exitcode of the transaction, if Applied is false this field should be ignored.
// Code exitcode.ExitCode
// // Ret is the return vale of the transaction, if Applied is false this field should be ignored.
// Ret []byte
//}
type ProposeReturn = multisig0.ProposeReturn
func (a Actor) Propose(rt runtime.Runtime, params *ProposeParams) *ProposeReturn {
rt.ValidateImmediateCallerType(builtin.CallerTypesSignable...)
proposer := rt.Caller()
if params.Value.Sign() < 0 {
rt.Abortf(exitcode.ErrIllegalArgument, "proposed value must be non-negative, was %v", params.Value)
}
var txnID TxnID
var st State
var txn *Transaction
rt.StateTransaction(&st, func() {
if !st.IsSigner(proposer) {
rt.Abortf(exitcode.ErrForbidden, "%s is not a signer", proposer)
}
ptx, err := adt.AsMap(adt.AsStore(rt), st.PendingTxns, builtin.DefaultHamtBitwidth)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to load pending transactions")
txnID = st.NextTxnID
st.NextTxnID += 1
txn = &Transaction{
To: params.To,
Value: params.Value,
Method: params.Method,
Params: params.Params,
Approved: []addr.Address{},
}
if err := ptx.Put(txnID, txn); err != nil {
rt.Abortf(exitcode.ErrIllegalState, "failed to put transaction for propose: %v", err)
}
st.PendingTxns, err = ptx.Root()
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to flush pending transactions")
})
applied, ret, code := a.approveTransaction(rt, txnID, txn)
// Note: this transaction ID may not be stable across chain re-orgs.
// The proposal hash may be provided as a stability check when approving.
return &ProposeReturn{
TxnID: txnID,
Applied: applied,
Code: code,
Ret: ret,
}
}
//type TxnIDParams struct {
// ID TxnID
// // Optional hash of proposal to ensure an operation can only apply to a
// // specific proposal.
// ProposalHash []byte
//}
type TxnIDParams = multisig0.TxnIDParams
//type ApproveReturn struct {
// // Applied indicates if the transaction was applied as opposed to proposed but not applied due to lack of approvals
// Applied bool
// // Code is the exitcode of the transaction, if Applied is false this field should be ignored.
// Code exitcode.ExitCode
// // Ret is the return vale of the transaction, if Applied is false this field should be ignored.
// Ret []byte
//}
type ApproveReturn = multisig0.ApproveReturn
func (a Actor) Approve(rt runtime.Runtime, params *TxnIDParams) *ApproveReturn {
rt.ValidateImmediateCallerType(builtin.CallerTypesSignable...)
approver := rt.Caller()
var st State
var txn *Transaction
rt.StateTransaction(&st, func() {
if !st.IsSigner(approver) {
rt.Abortf(exitcode.ErrForbidden, "%s is not a signer", approver)
}
ptx, err := adt.AsMap(adt.AsStore(rt), st.PendingTxns, builtin.DefaultHamtBitwidth)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to load pending transactions")
txn = getTransaction(rt, ptx, params.ID, params.ProposalHash)
})
// if the transaction already has enough approvers, execute it without "processing" this approval.
approved, ret, code := executeTransactionIfApproved(rt, st, params.ID, txn)
if !approved {
// if the transaction hasn't already been approved, let's "process" this approval
// and see if we can execute the transaction
approved, ret, code = a.approveTransaction(rt, params.ID, txn)
}
return &ApproveReturn{
Applied: approved,
Code: code,
Ret: ret,
}
}
func (a Actor) Cancel(rt runtime.Runtime, params *TxnIDParams) *abi.EmptyValue {
rt.ValidateImmediateCallerType(builtin.CallerTypesSignable...)
callerAddr := rt.Caller()
var st State
rt.StateTransaction(&st, func() {
callerIsSigner := st.IsSigner(callerAddr)
if !callerIsSigner {
rt.Abortf(exitcode.ErrForbidden, "%s is not a signer", callerAddr)
}
ptx, err := adt.AsMap(adt.AsStore(rt), st.PendingTxns, builtin.DefaultHamtBitwidth)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to load pending txns")
var txn Transaction
found, err := ptx.Pop(params.ID, &txn)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to pop transaction %v for cancel", params.ID)
if !found {
rt.Abortf(exitcode.ErrNotFound, "no such transaction %v to cancel", params.ID)
}
proposer := txn.Approved[0]
if proposer != callerAddr {
rt.Abortf(exitcode.ErrForbidden, "Cannot cancel another signers transaction")
}
// confirm the hashes match
calculatedHash, err := ComputeProposalHash(&txn, rt.HashBlake2b)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to compute proposal hash for %v", params.ID)
if params.ProposalHash != nil && !bytes.Equal(params.ProposalHash, calculatedHash[:]) {
rt.Abortf(exitcode.ErrIllegalState, "hash does not match proposal params (ensure requester is an ID address)")
}
st.PendingTxns, err = ptx.Root()
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to flush pending transactions")
})
return nil
}
//type AddSignerParams struct {
// Signer addr.Address
// Increase bool
//}
type AddSignerParams = multisig0.AddSignerParams
func (a Actor) AddSigner(rt runtime.Runtime, params *AddSignerParams) *abi.EmptyValue {
// Can only be called by the multisig wallet itself.
rt.ValidateImmediateCallerIs(rt.Receiver())
resolvedNewSigner, err := builtin.ResolveToIDAddr(rt, params.Signer)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to resolve address %v", params.Signer)
var st State
rt.StateTransaction(&st, func() {
if len(st.Signers) >= SignersMax {
rt.Abortf(exitcode.ErrForbidden, "cannot add more than %d signers", SignersMax)
}
if st.IsSigner(resolvedNewSigner) {
rt.Abortf(exitcode.ErrForbidden, "%s is already a signer", resolvedNewSigner)
}
st.Signers = append(st.Signers, resolvedNewSigner)
if params.Increase {
st.NumApprovalsThreshold = st.NumApprovalsThreshold + 1
}
})
return nil
}
//type RemoveSignerParams struct {
// Signer addr.Address
// Decrease bool
//}
type RemoveSignerParams = multisig0.RemoveSignerParams
func (a Actor) RemoveSigner(rt runtime.Runtime, params *RemoveSignerParams) *abi.EmptyValue {
// Can only be called by the multisig wallet itself.
rt.ValidateImmediateCallerIs(rt.Receiver())
resolvedOldSigner, err := builtin.ResolveToIDAddr(rt, params.Signer)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to resolve address %v", params.Signer)
store := adt.AsStore(rt)
var st State
rt.StateTransaction(&st, func() {
if !st.IsSigner(resolvedOldSigner) {
rt.Abortf(exitcode.ErrForbidden, "%s is not a signer", resolvedOldSigner)
}
if len(st.Signers) == 1 {
rt.Abortf(exitcode.ErrForbidden, "cannot remove only signer")
}
newSigners := make([]addr.Address, 0, len(st.Signers))
// signers have already been resolved
for _, s := range st.Signers {
if resolvedOldSigner != s {
newSigners = append(newSigners, s)
}
}
// if the number of signers is below the threshold after removing the given signer,
// we should decrease the threshold by 1. This means that decrease should NOT be set to false
// in such a scenario.
if !params.Decrease && uint64(len(st.Signers)-1) < st.NumApprovalsThreshold {
rt.Abortf(exitcode.ErrIllegalArgument, "can't reduce signers to %d below threshold %d with decrease=false", len(st.Signers)-1, st.NumApprovalsThreshold)
}
if params.Decrease {
if st.NumApprovalsThreshold < 2 {
rt.Abortf(exitcode.ErrIllegalArgument, "can't decrease approvals from %d to %d", st.NumApprovalsThreshold, st.NumApprovalsThreshold-1)
}
st.NumApprovalsThreshold = st.NumApprovalsThreshold - 1
}
err := st.PurgeApprovals(store, resolvedOldSigner)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to purge approvals of removed signer")
st.Signers = newSigners
})
return nil
}
//type SwapSignerParams struct {
// From addr.Address
// To addr.Address
//}
type SwapSignerParams = multisig0.SwapSignerParams
func (a Actor) SwapSigner(rt runtime.Runtime, params *SwapSignerParams) *abi.EmptyValue {
// Can only be called by the multisig wallet itself.
rt.ValidateImmediateCallerIs(rt.Receiver())
fromResolved, err := builtin.ResolveToIDAddr(rt, params.From)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to resolve from address %v", params.From)
toResolved, err := builtin.ResolveToIDAddr(rt, params.To)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to resolve to address %v", params.To)
store := adt.AsStore(rt)
var st State
rt.StateTransaction(&st, func() {
if !st.IsSigner(fromResolved) {
rt.Abortf(exitcode.ErrForbidden, "from addr %s is not a signer", fromResolved)
}
if st.IsSigner(toResolved) {
rt.Abortf(exitcode.ErrIllegalArgument, "%s already a signer", toResolved)
}
newSigners := make([]addr.Address, 0, len(st.Signers))
for _, s := range st.Signers {
if s != fromResolved {
newSigners = append(newSigners, s)
}
}
newSigners = append(newSigners, toResolved)
st.Signers = newSigners
err := st.PurgeApprovals(store, fromResolved)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to purge approvals of removed signer")
})
return nil
}
//type ChangeNumApprovalsThresholdParams struct {
// NewThreshold uint64
//}
type ChangeNumApprovalsThresholdParams = multisig0.ChangeNumApprovalsThresholdParams
func (a Actor) ChangeNumApprovalsThreshold(rt runtime.Runtime, params *ChangeNumApprovalsThresholdParams) *abi.EmptyValue {
// Can only be called by the multisig wallet itself.
rt.ValidateImmediateCallerIs(rt.Receiver())
var st State
rt.StateTransaction(&st, func() {
if params.NewThreshold == 0 || params.NewThreshold > uint64(len(st.Signers)) {
rt.Abortf(exitcode.ErrIllegalArgument, "New threshold value not supported")
}
st.NumApprovalsThreshold = params.NewThreshold
})
return nil
}
//type LockBalanceParams struct {
// StartEpoch abi.ChainEpoch
// UnlockDuration abi.ChainEpoch
// Amount abi.TokenAmount
//}
type LockBalanceParams = multisig0.LockBalanceParams
func (a Actor) LockBalance(rt runtime.Runtime, params *LockBalanceParams) *abi.EmptyValue {
// Can only be called by the multisig wallet itself.
rt.ValidateImmediateCallerIs(rt.Receiver())
if params.UnlockDuration <= 0 {
// Note: Unlock duration of zero is workable, but rejected as ineffective, probably an error.
rt.Abortf(exitcode.ErrIllegalArgument, "unlock duration must be positive")
}
if params.Amount.LessThan(big.Zero()) {
rt.Abortf(exitcode.ErrIllegalArgument, "amount to lock must be positive")
}
var st State
rt.StateTransaction(&st, func() {
if st.UnlockDuration != 0 {
rt.Abortf(exitcode.ErrForbidden, "modification of unlock disallowed")
}
st.SetLocked(params.StartEpoch, params.UnlockDuration, params.Amount)
})
return nil
}
func (a Actor) approveTransaction(rt runtime.Runtime, txnID TxnID, txn *Transaction) (bool, []byte, exitcode.ExitCode) {
caller := rt.Caller()
var st State
// abort duplicate approval
for _, previousApprover := range txn.Approved {
if previousApprover == caller {
rt.Abortf(exitcode.ErrForbidden, "%s already approved this message", previousApprover)
}
}
// add the caller to the list of approvers
rt.StateTransaction(&st, func() {
ptx, err := adt.AsMap(adt.AsStore(rt), st.PendingTxns, builtin.DefaultHamtBitwidth)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to load pending transactions")
// update approved on the transaction
txn.Approved = append(txn.Approved, caller)
err = ptx.Put(txnID, txn)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to put transaction %v for approval", txnID)
st.PendingTxns, err = ptx.Root()
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to flush pending transactions")
})
return executeTransactionIfApproved(rt, st, txnID, txn)
}
func getTransaction(rt runtime.Runtime, ptx *adt.Map, txnID TxnID, proposalHash []byte) *Transaction {
// get transaction from the state trie
var txn Transaction
found, err := ptx.Get(txnID, &txn)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to load transaction %v for approval", txnID)
if !found {
rt.Abortf(exitcode.ErrNotFound, "no such transaction %v for approval", txnID)
}
// confirm the hashes match, if present.
if proposalHash != nil {
calculatedHash, err := ComputeProposalHash(&txn, rt.HashBlake2b)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to compute proposal hash for %v", txnID)
if !bytes.Equal(proposalHash, calculatedHash[:]) {
rt.Abortf(exitcode.ErrIllegalArgument, "hash does not match proposal params (ensure requester is an ID address)")
}
}
return &txn
}
func executeTransactionIfApproved(rt runtime.Runtime, st State, txnID TxnID, txn *Transaction) (bool, []byte, exitcode.ExitCode) {
var out builtin.CBORBytes
var code exitcode.ExitCode
applied := false
thresholdMet := uint64(len(txn.Approved)) >= st.NumApprovalsThreshold
if thresholdMet {
if err := st.assertAvailable(rt.CurrentBalance(), txn.Value, rt.CurrEpoch()); err != nil {
rt.Abortf(exitcode.ErrInsufficientFunds, "insufficient funds unlocked: %v", err)
}
// A sufficient number of approvals have arrived and sufficient funds have been unlocked: relay the message and delete from pending queue.
code = rt.Send(
txn.To,
txn.Method,
builtin.CBORBytes(txn.Params),
txn.Value,
&out,
)
applied = true
// This could be rearranged to happen inside the first state transaction, before the send().
rt.StateTransaction(&st, func() {
ptx, err := adt.AsMap(adt.AsStore(rt), st.PendingTxns, builtin.DefaultHamtBitwidth)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to load pending transactions")
// Allow transaction not to be found when deleting.
// This allows 1 out of n multisig swaps and removes initiated by the swapped/removed signer to go through cleanly.
if _, err := ptx.TryDelete(txnID); err != nil {
rt.Abortf(exitcode.ErrIllegalState, "failed to delete transaction for cleanup: %v", err)
}
st.PendingTxns, err = ptx.Root()
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to flush pending transactions")
})
}
// Pass the return value through uninterpreted with the expectation that serializing into a CBORBytes never fails
// since it just copies the bytes.
return applied, out, code
}
// Computes a digest of a proposed transaction. This digest is used to confirm identity of the transaction
// associated with an ID, which might change under chain re-orgs.
func ComputeProposalHash(txn *Transaction, hash func([]byte) [32]byte) ([]byte, error) {
hashData := ProposalHashData{
Requester: txn.Approved[0],
To: txn.To,
Value: txn.Value,
Method: txn.Method,
Params: txn.Params,
}
data, err := hashData.Serialize()
if err != nil {
return nil, fmt.Errorf("failed to construct multisig approval hash: %w", err)
}
hashResult := hash(data)
return hashResult[:], nil
}