aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi/bind/backends/simulated.go
blob: fa8828f61bc6f760be3ae5473ba9a821b86bf434 (plain) (blame)
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
// Copyright 2015 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package backends

import (
    "context"
    "errors"
    "fmt"
    "math/big"
    "sync"
    "time"

    "github.com/ethereum/go-ethereum"
    "github.com/ethereum/go-ethereum/accounts/abi/bind"
    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/common/math"
    "github.com/ethereum/go-ethereum/consensus/ethash"
    "github.com/ethereum/go-ethereum/core"
    "github.com/ethereum/go-ethereum/core/bloombits"
    "github.com/ethereum/go-ethereum/core/rawdb"
    "github.com/ethereum/go-ethereum/core/state"
    "github.com/ethereum/go-ethereum/core/types"
    "github.com/ethereum/go-ethereum/core/vm"
    "github.com/ethereum/go-ethereum/eth/filters"
    "github.com/ethereum/go-ethereum/ethdb"
    "github.com/ethereum/go-ethereum/event"
    "github.com/ethereum/go-ethereum/params"
    "github.com/ethereum/go-ethereum/rpc"
)

// This nil assignment ensures compile time that SimulatedBackend implements bind.ContractBackend.
var _ bind.ContractBackend = (*SimulatedBackend)(nil)

var errBlockNumberUnsupported = errors.New("SimulatedBackend cannot access blocks other than the latest block")
var errGasEstimationFailed = errors.New("gas required exceeds allowance or always failing transaction")

// SimulatedBackend implements bind.ContractBackend, simulating a blockchain in
// the background. Its main purpose is to allow easily testing contract bindings.
type SimulatedBackend struct {
    database   ethdb.Database   // In memory database to store our testing data
    blockchain *core.BlockChain // Ethereum blockchain to handle the consensus

    mu           sync.Mutex
    pendingBlock *types.Block   // Currently pending block that will be imported on request
    pendingState *state.StateDB // Currently pending state that will be the active on on request

    events *filters.EventSystem // Event system for filtering log events live

    config *params.ChainConfig
}

// NewSimulatedBackend creates a new binding backend using a simulated blockchain
// for testing purposes.
func NewSimulatedBackend(alloc core.GenesisAlloc) *SimulatedBackend {
    database := ethdb.NewMemDatabase()
    genesis := core.Genesis{Config: params.AllEthashProtocolChanges, Alloc: alloc}
    genesis.MustCommit(database)
    blockchain, _ := core.NewBlockChain(database, nil, genesis.Config, ethash.NewFaker(), vm.Config{})

    backend := &SimulatedBackend{
        database:   database,
        blockchain: blockchain,
        config:     genesis.Config,
        events:     filters.NewEventSystem(new(event.TypeMux), &filterBackend{database, blockchain}, false),
    }
    backend.rollback()
    return backend
}

// Commit imports all the pending transactions as a single block and starts a
// fresh new state.
func (b *SimulatedBackend) Commit() {
    b.mu.Lock()
    defer b.mu.Unlock()

    if _, err := b.blockchain.InsertChain([]*types.Block{b.pendingBlock}); err != nil {
        panic(err) // This cannot happen unless the simulator is wrong, fail in that case
    }
    b.rollback()
}

// Rollback aborts all pending transactions, reverting to the last committed state.
func (b *SimulatedBackend) Rollback() {
    b.mu.Lock()
    defer b.mu.Unlock()

    b.rollback()
}

func (b *SimulatedBackend) rollback() {
    blocks, _ := core.GenerateChain(b.config, b.blockchain.CurrentBlock(), ethash.NewFaker(), b.database, 1, func(int, *core.BlockGen) {})
    statedb, _ := b.blockchain.State()

    b.pendingBlock = blocks[0]
    b.pendingState, _ = state.New(b.pendingBlock.Root(), statedb.Database())
}

// CodeAt returns the code associated with a certain account in the blockchain.
func (b *SimulatedBackend) CodeAt(ctx context.Context, contract common.Address, blockNumber *big.Int) ([]byte, error) {
    b.mu.Lock()
    defer b.mu.Unlock()

    if blockNumber != nil && blockNumber.Cmp(b.blockchain.CurrentBlock().Number()) != 0 {
        return nil, errBlockNumberUnsupported
    }
    statedb, _ := b.blockchain.State()
    return statedb.GetCode(contract), nil
}

// BalanceAt returns the wei balance of a certain account in the blockchain.
func (b *SimulatedBackend) BalanceAt(ctx context.Context, contract common.Address, blockNumber *big.Int) (*big.Int, error) {
    b.mu.Lock()
    defer b.mu.Unlock()

    if blockNumber != nil && blockNumber.Cmp(b.blockchain.CurrentBlock().Number()) != 0 {
        return nil, errBlockNumberUnsupported
    }
    statedb, _ := b.blockchain.State()
    return statedb.GetBalance(contract), nil
}

// NonceAt returns the nonce of a certain account in the blockchain.
func (b *SimulatedBackend) NonceAt(ctx context.Context, contract common.Address, blockNumber *big.Int) (uint64, error) {
    b.mu.Lock()
    defer b.mu.Unlock()

    if blockNumber != nil && blockNumber.Cmp(b.blockchain.CurrentBlock().Number()) != 0 {
        return 0, errBlockNumberUnsupported
    }
    statedb, _ := b.blockchain.State()
    return statedb.GetNonce(contract), nil
}

// StorageAt returns the value of key in the storage of an account in the blockchain.
func (b *SimulatedBackend) StorageAt(ctx context.Context, contract common.Address, key common.Hash, blockNumber *big.Int) ([]byte, error) {
    b.mu.Lock()
    defer b.mu.Unlock()

    if blockNumber != nil && blockNumber.Cmp(b.blockchain.CurrentBlock().Number()) != 0 {
        return nil, errBlockNumberUnsupported
    }
    statedb, _ := b.blockchain.State()
    val := statedb.GetState(contract, key)
    return val[:], nil
}

// TransactionReceipt returns the receipt of a transaction.
func (b *SimulatedBackend) TransactionReceipt(ctx context.Context, txHash common.Hash) (*types.Receipt, error) {
    receipt, _, _, _ := rawdb.ReadReceipt(b.database, txHash)
    return receipt, nil
}

// PendingCodeAt returns the code associated with an account in the pending state.
func (b *SimulatedBackend) PendingCodeAt(ctx context.Context, contract common.Address) ([]byte, error) {
    b.mu.Lock()
    defer b.mu.Unlock()

    return b.pendingState.GetCode(contract), nil
}

// CallContract executes a contract call.
func (b *SimulatedBackend) CallContract(ctx context.Context, call ethereum.CallMsg, blockNumber *big.Int) ([]byte, error) {
    b.mu.Lock()
    defer b.mu.Unlock()

    if blockNumber != nil && blockNumber.Cmp(b.blockchain.CurrentBlock().Number()) != 0 {
        return nil, errBlockNumberUnsupported
    }
    state, err := b.blockchain.State()
    if err != nil {
        return nil, err
    }
    rval, _, _, err := b.callContract(ctx, call, b.blockchain.CurrentBlock(), state)
    return rval, err
}

// PendingCallContract executes a contract call on the pending state.
func (b *SimulatedBackend) PendingCallContract(ctx context.Context, call ethereum.CallMsg) ([]byte, error) {
    b.mu.Lock()
    defer b.mu.Unlock()
    defer b.pendingState.RevertToSnapshot(b.pendingState.Snapshot())

    rval, _, _, err := b.callContract(ctx, call, b.pendingBlock, b.pendingState)
    return rval, err
}

// PendingNonceAt implements PendingStateReader.PendingNonceAt, retrieving
// the nonce currently pending for the account.
func (b *SimulatedBackend) PendingNonceAt(ctx context.Context, account common.Address) (uint64, error) {
    b.mu.Lock()
    defer b.mu.Unlock()

    return b.pendingState.GetOrNewStateObject(account).Nonce(), nil
}

// SuggestGasPrice implements ContractTransactor.SuggestGasPrice. Since the simulated
// chain doens't have miners, we just return a gas price of 1 for any call.
func (b *SimulatedBackend) SuggestGasPrice(ctx context.Context) (*big.Int, error) {
    return big.NewInt(1), nil
}

// EstimateGas executes the requested code against the currently pending block/state and
// returns the used amount of gas.
func (b *SimulatedBackend) EstimateGas(ctx context.Context, call ethereum.CallMsg) (uint64, error) {
    b.mu.Lock()
    defer b.mu.Unlock()

    // Determine the lowest and highest possible gas limits to binary search in between
    var (
        lo  uint64 = params.TxGas - 1
        hi  uint64
        cap uint64
    )
    if call.Gas >= params.TxGas {
        hi = call.Gas
    } else {
        hi = b.pendingBlock.GasLimit()
    }
    cap = hi

    // Create a helper to check if a gas allowance results in an executable transaction
    executable := func(gas uint64) bool {
        call.Gas = gas

        snapshot := b.pendingState.Snapshot()
        _, _, failed, err := b.callContract(ctx, call, b.pendingBlock, b.pendingState)
        b.pendingState.RevertToSnapshot(snapshot)

        if err != nil || failed {
            return false
        }
        return true
    }
    // Execute the binary search and hone in on an executable gas limit
    for lo+1 < hi {
        mid := (hi + lo) / 2
        if !executable(mid) {
            lo = mid
        } else {
            hi = mid
        }
    }
    // Reject the transaction as invalid if it still fails at the highest allowance
    if hi == cap {
        if !executable(hi) {
            return 0, errGasEstimationFailed
        }
    }
    return hi, nil
}

// callContract implements common code between normal and pending contract calls.
// state is modified during execution, make sure to copy it if necessary.
func (b *SimulatedBackend) callContract(ctx context.Context, call ethereum.CallMsg, block *types.Block, statedb *state.StateDB) ([]byte, uint64, bool, error) {
    // Ensure message is initialized properly.
    if call.GasPrice == nil {
        call.GasPrice = big.NewInt(1)
    }
    if call.Gas == 0 {
        call.Gas = 50000000
    }
    if call.Value == nil {
        call.Value = new(big.Int)
    }
    // Set infinite balance to the fake caller account.
    from := statedb.GetOrNewStateObject(call.From)
    from.SetBalance(math.MaxBig256)
    // Execute the call.
    msg := callmsg{call}

    evmContext := core.NewEVMContext(msg, block.Header(), b.blockchain, nil)
    // Create a new environment which holds all relevant information
    // about the transaction and calling mechanisms.
    vmenv := vm.NewEVM(evmContext, statedb, b.config, vm.Config{})
    gaspool := new(core.GasPool).AddGas(math.MaxUint64)

    return core.NewStateTransition(vmenv, msg, gaspool).TransitionDb()
}

// SendTransaction updates the pending block to include the given transaction.
// It panics if the transaction is invalid.
func (b *SimulatedBackend) SendTransaction(ctx context.Context, tx *types.Transaction) error {
    b.mu.Lock()
    defer b.mu.Unlock()

    sender, err := types.Sender(types.HomesteadSigner{}, tx)
    if err != nil {
        panic(fmt.Errorf("invalid transaction: %v", err))
    }
    nonce := b.pendingState.GetNonce(sender)
    if tx.Nonce() != nonce {
        panic(fmt.Errorf("invalid transaction nonce: got %d, want %d", tx.Nonce(), nonce))
    }

    blocks, _ := core.GenerateChain(b.config, b.blockchain.CurrentBlock(), ethash.NewFaker(), b.database, 1, func(number int, block *core.BlockGen) {
        for _, tx := range b.pendingBlock.Transactions() {
            block.AddTxWithChain(b.blockchain, tx)
        }
        block.AddTxWithChain(b.blockchain, tx)
    })
    statedb, _ := b.blockchain.State()

    b.pendingBlock = blocks[0]
    b.pendingState, _ = state.New(b.pendingBlock.Root(), statedb.Database())
    return nil
}

// FilterLogs executes a log filter operation, blocking during execution and
// returning all the results in one batch.
//
// TODO(karalabe): Deprecate when the subscription one can return past data too.
func (b *SimulatedBackend) FilterLogs(ctx context.Context, query ethereum.FilterQuery) ([]types.Log, error) {
    var filter *filters.Filter
    if query.BlockHash != nil {
        // Block filter requested, construct a single-shot filter
        filter = filters.NewBlockFilter(&filterBackend{b.database, b.blockchain}, *query.BlockHash, query.Addresses, query.Topics)
    } else {
        // Initialize unset filter boundaried to run from genesis to chain head
        from := int64(0)
        if query.FromBlock != nil {
            from = query.FromBlock.Int64()
        }
        to := int64(-1)
        if query.ToBlock != nil {
            to = query.ToBlock.Int64()
        }
        // Construct the range filter
        filter = filters.NewRangeFilter(&filterBackend{b.database, b.blockchain}, from, to, query.Addresses, query.Topics)
    }
    // Run the filter and return all the logs
    logs, err := filter.Logs(ctx)
    if err != nil {
        return nil, err
    }
    res := make([]types.Log, len(logs))
    for i, log := range logs {
        res[i] = *log
    }
    return res, nil
}

// SubscribeFilterLogs creates a background log filtering operation, returning a
// subscription immediately, which can be used to stream the found events.
func (b *SimulatedBackend) SubscribeFilterLogs(ctx context.Context, query ethereum.FilterQuery, ch chan<- types.Log) (ethereum.Subscription, error) {
    // Subscribe to contract events
    sink := make(chan []*types.Log)

    sub, err := b.events.SubscribeLogs(query, sink)
    if err != nil {
        return nil, err
    }
    // Since we're getting logs in batches, we need to flatten them into a plain stream
    return event.NewSubscription(func(quit <-chan struct{}) error {
        defer sub.Unsubscribe()
        for {
            select {
            case logs := <-sink:
                for _, log := range logs {
                    select {
                    case ch <- *log:
                    case err := <-sub.Err():
                        return err
                    case <-quit:
                        return nil
                    }
                }
            case err := <-sub.Err():
                return err
            case <-quit:
                return nil
            }
        }
    }), nil
}

// AdjustTime adds a time shift to the simulated clock.
func (b *SimulatedBackend) AdjustTime(adjustment time.Duration) error {
    b.mu.Lock()
    defer b.mu.Unlock()
    blocks, _ := core.GenerateChain(b.config, b.blockchain.CurrentBlock(), ethash.NewFaker(), b.database, 1, func(number int, block *core.BlockGen) {
        for _, tx := range b.pendingBlock.Transactions() {
            block.AddTx(tx)
        }
        block.OffsetTime(int64(adjustment.Seconds()))
    })
    statedb, _ := b.blockchain.State()

    b.pendingBlock = blocks[0]
    b.pendingState, _ = state.New(b.pendingBlock.Root(), statedb.Database())

    return nil
}

// callmsg implements core.Message to allow passing it as a transaction simulator.
type callmsg struct {
    ethereum.CallMsg
}

func (m callmsg) From() common.Address { return m.CallMsg.From }
func (m callmsg) Nonce() uint64        { return 0 }
func (m callmsg) CheckNonce() bool     { return false }
func (m callmsg) To() *common.Address  { return m.CallMsg.To }
func (m callmsg) GasPrice() *big.Int   { return m.CallMsg.GasPrice }
func (m callmsg) Gas() uint64          { return m.CallMsg.Gas }
func (m callmsg) Value() *big.Int      { return m.CallMsg.Value }
func (m callmsg) Data() []byte         { return m.CallMsg.Data }

// filterBackend implements filters.Backend to support filtering for logs without
// taking bloom-bits acceleration structures into account.
type filterBackend struct {
    db ethdb.Database
    bc *core.BlockChain
}

func (fb *filterBackend) ChainDb() ethdb.Database  { return fb.db }
func (fb *filterBackend) EventMux() *event.TypeMux { panic("not supported") }

func (fb *filterBackend) HeaderByNumber(ctx context.Context, block rpc.BlockNumber) (*types.Header, error) {
    if block == rpc.LatestBlockNumber {
        return fb.bc.CurrentHeader(), nil
    }
    return fb.bc.GetHeaderByNumber(uint64(block.Int64())), nil
}

func (fb *filterBackend) HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error) {
    return fb.bc.GetHeaderByHash(hash), nil
}

func (fb *filterBackend) GetReceipts(ctx context.Context, hash common.Hash) (types.Receipts, error) {
    number := rawdb.ReadHeaderNumber(fb.db, hash)
    if number == nil {
        return nil, nil
    }
    return rawdb.ReadReceipts(fb.db, hash, *number), nil
}

func (fb *filterBackend) GetLogs(ctx context.Context, hash common.Hash) ([][]*types.Log, error) {
    number := rawdb.ReadHeaderNumber(fb.db, hash)
    if number == nil {
        return nil, nil
    }
    receipts := rawdb.ReadReceipts(fb.db, hash, *number)
    if receipts == nil {
        return nil, nil
    }
    logs := make([][]*types.Log, len(receipts))
    for i, receipt := range receipts {
        logs[i] = receipt.Logs
    }
    return logs, nil
}

func (fb *filterBackend) SubscribeNewTxsEvent(ch chan<- core.NewTxsEvent) event.Subscription {
    return event.NewSubscription(func(quit <-chan struct{}) error {
        <-quit
        return nil
    })
}
func (fb *filterBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription {
    return fb.bc.SubscribeChainEvent(ch)
}
func (fb *filterBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription {
    return fb.bc.SubscribeRemovedLogsEvent(ch)
}
func (fb *filterBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription {
    return fb.bc.SubscribeLogsEvent(ch)
}

func (fb *filterBackend) BloomStatus() (uint64, uint64) { return 4096, 0 }
func (fb *filterBackend) ServiceFilter(ctx context.Context, ms *bloombits.MatcherSession) {
    panic("not supported")
}