github.com/authcall/reference-optimistic-geth@v0.0.0-20220816224302-06313bfeb8d2/core/rawdb/accessors_metadata.go (about) 1 // Copyright 2018 The go-ethereum Authors 2 // This file is part of the go-ethereum library. 3 // 4 // The go-ethereum library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Lesser General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // The go-ethereum library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Lesser General Public License for more details. 13 // 14 // You should have received a copy of the GNU Lesser General Public License 15 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 16 17 package rawdb 18 19 import ( 20 "encoding/json" 21 "time" 22 23 "github.com/ethereum/go-ethereum/common" 24 "github.com/ethereum/go-ethereum/ethdb" 25 "github.com/ethereum/go-ethereum/log" 26 "github.com/ethereum/go-ethereum/params" 27 "github.com/ethereum/go-ethereum/rlp" 28 ) 29 30 // ReadDatabaseVersion retrieves the version number of the database. 31 func ReadDatabaseVersion(db ethdb.KeyValueReader) *uint64 { 32 var version uint64 33 34 enc, _ := db.Get(databaseVersionKey) 35 if len(enc) == 0 { 36 return nil 37 } 38 if err := rlp.DecodeBytes(enc, &version); err != nil { 39 return nil 40 } 41 42 return &version 43 } 44 45 // WriteDatabaseVersion stores the version number of the database 46 func WriteDatabaseVersion(db ethdb.KeyValueWriter, version uint64) { 47 enc, err := rlp.EncodeToBytes(version) 48 if err != nil { 49 log.Crit("Failed to encode database version", "err", err) 50 } 51 if err = db.Put(databaseVersionKey, enc); err != nil { 52 log.Crit("Failed to store the database version", "err", err) 53 } 54 } 55 56 // ReadChainConfig retrieves the consensus settings based on the given genesis hash. 57 func ReadChainConfig(db ethdb.KeyValueReader, hash common.Hash) *params.ChainConfig { 58 data, _ := db.Get(configKey(hash)) 59 if len(data) == 0 { 60 return nil 61 } 62 var config params.ChainConfig 63 if err := json.Unmarshal(data, &config); err != nil { 64 log.Error("Invalid chain config JSON", "hash", hash, "err", err) 65 return nil 66 } 67 return &config 68 } 69 70 // WriteChainConfig writes the chain config settings to the database. 71 func WriteChainConfig(db ethdb.KeyValueWriter, hash common.Hash, cfg *params.ChainConfig) { 72 if cfg == nil { 73 return 74 } 75 data, err := json.Marshal(cfg) 76 if err != nil { 77 log.Crit("Failed to JSON encode chain config", "err", err) 78 } 79 if err := db.Put(configKey(hash), data); err != nil { 80 log.Crit("Failed to store chain config", "err", err) 81 } 82 } 83 84 // ReadGenesisState retrieves the genesis state based on the given genesis hash. 85 func ReadGenesisState(db ethdb.KeyValueReader, hash common.Hash) []byte { 86 data, _ := db.Get(genesisKey(hash)) 87 return data 88 } 89 90 // WriteGenesisState writes the genesis state into the disk. 91 func WriteGenesisState(db ethdb.KeyValueWriter, hash common.Hash, data []byte) { 92 if err := db.Put(genesisKey(hash), data); err != nil { 93 log.Crit("Failed to store genesis state", "err", err) 94 } 95 } 96 97 // crashList is a list of unclean-shutdown-markers, for rlp-encoding to the 98 // database 99 type crashList struct { 100 Discarded uint64 // how many ucs have we deleted 101 Recent []uint64 // unix timestamps of 10 latest unclean shutdowns 102 } 103 104 const crashesToKeep = 10 105 106 // PushUncleanShutdownMarker appends a new unclean shutdown marker and returns 107 // the previous data 108 // - a list of timestamps 109 // - a count of how many old unclean-shutdowns have been discarded 110 func PushUncleanShutdownMarker(db ethdb.KeyValueStore) ([]uint64, uint64, error) { 111 var uncleanShutdowns crashList 112 // Read old data 113 if data, err := db.Get(uncleanShutdownKey); err != nil { 114 log.Warn("Error reading unclean shutdown markers", "error", err) 115 } else if err := rlp.DecodeBytes(data, &uncleanShutdowns); err != nil { 116 return nil, 0, err 117 } 118 var discarded = uncleanShutdowns.Discarded 119 var previous = make([]uint64, len(uncleanShutdowns.Recent)) 120 copy(previous, uncleanShutdowns.Recent) 121 // Add a new (but cap it) 122 uncleanShutdowns.Recent = append(uncleanShutdowns.Recent, uint64(time.Now().Unix())) 123 if count := len(uncleanShutdowns.Recent); count > crashesToKeep+1 { 124 numDel := count - (crashesToKeep + 1) 125 uncleanShutdowns.Recent = uncleanShutdowns.Recent[numDel:] 126 uncleanShutdowns.Discarded += uint64(numDel) 127 } 128 // And save it again 129 data, _ := rlp.EncodeToBytes(uncleanShutdowns) 130 if err := db.Put(uncleanShutdownKey, data); err != nil { 131 log.Warn("Failed to write unclean-shutdown marker", "err", err) 132 return nil, 0, err 133 } 134 return previous, discarded, nil 135 } 136 137 // PopUncleanShutdownMarker removes the last unclean shutdown marker 138 func PopUncleanShutdownMarker(db ethdb.KeyValueStore) { 139 var uncleanShutdowns crashList 140 // Read old data 141 if data, err := db.Get(uncleanShutdownKey); err != nil { 142 log.Warn("Error reading unclean shutdown markers", "error", err) 143 } else if err := rlp.DecodeBytes(data, &uncleanShutdowns); err != nil { 144 log.Error("Error decoding unclean shutdown markers", "error", err) // Should mos def _not_ happen 145 } 146 if l := len(uncleanShutdowns.Recent); l > 0 { 147 uncleanShutdowns.Recent = uncleanShutdowns.Recent[:l-1] 148 } 149 data, _ := rlp.EncodeToBytes(uncleanShutdowns) 150 if err := db.Put(uncleanShutdownKey, data); err != nil { 151 log.Warn("Failed to clear unclean-shutdown marker", "err", err) 152 } 153 } 154 155 // UpdateUncleanShutdownMarker updates the last marker's timestamp to now. 156 func UpdateUncleanShutdownMarker(db ethdb.KeyValueStore) { 157 var uncleanShutdowns crashList 158 // Read old data 159 if data, err := db.Get(uncleanShutdownKey); err != nil { 160 log.Warn("Error reading unclean shutdown markers", "error", err) 161 } else if err := rlp.DecodeBytes(data, &uncleanShutdowns); err != nil { 162 log.Warn("Error decoding unclean shutdown markers", "error", err) 163 } 164 // This shouldn't happen because we push a marker on Backend instantiation 165 count := len(uncleanShutdowns.Recent) 166 if count == 0 { 167 log.Warn("No unclean shutdown marker to update") 168 return 169 } 170 uncleanShutdowns.Recent[count-1] = uint64(time.Now().Unix()) 171 data, _ := rlp.EncodeToBytes(uncleanShutdowns) 172 if err := db.Put(uncleanShutdownKey, data); err != nil { 173 log.Warn("Failed to write unclean-shutdown marker", "err", err) 174 } 175 } 176 177 // ReadTransitionStatus retrieves the eth2 transition status from the database 178 func ReadTransitionStatus(db ethdb.KeyValueReader) []byte { 179 data, _ := db.Get(transitionStatusKey) 180 return data 181 } 182 183 // WriteTransitionStatus stores the eth2 transition status to the database 184 func WriteTransitionStatus(db ethdb.KeyValueWriter, data []byte) { 185 if err := db.Put(transitionStatusKey, data); err != nil { 186 log.Crit("Failed to store the eth2 transition status", "err", err) 187 } 188 }