github.com/codysnider/go-ethereum@v1.10.18-0.20220420071915-14f4ae99222a/core/rawdb/schema.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 contains a collection of low level database accessors. 18 package rawdb 19 20 import ( 21 "bytes" 22 "encoding/binary" 23 24 "github.com/ethereum/go-ethereum/common" 25 "github.com/ethereum/go-ethereum/metrics" 26 ) 27 28 // The fields below define the low level database schema prefixing. 29 var ( 30 // databaseVersionKey tracks the current database version. 31 databaseVersionKey = []byte("DatabaseVersion") 32 33 // headHeaderKey tracks the latest known header's hash. 34 headHeaderKey = []byte("LastHeader") 35 36 // headBlockKey tracks the latest known full block's hash. 37 headBlockKey = []byte("LastBlock") 38 39 // headFastBlockKey tracks the latest known incomplete block's hash during fast sync. 40 headFastBlockKey = []byte("LastFast") 41 42 // lastPivotKey tracks the last pivot block used by fast sync (to reenable on sethead). 43 lastPivotKey = []byte("LastPivot") 44 45 // fastTrieProgressKey tracks the number of trie entries imported during fast sync. 46 fastTrieProgressKey = []byte("TrieSync") 47 48 // snapshotDisabledKey flags that the snapshot should not be maintained due to initial sync. 49 snapshotDisabledKey = []byte("SnapshotDisabled") 50 51 // SnapshotRootKey tracks the hash of the last snapshot. 52 SnapshotRootKey = []byte("SnapshotRoot") 53 54 // snapshotJournalKey tracks the in-memory diff layers across restarts. 55 snapshotJournalKey = []byte("SnapshotJournal") 56 57 // snapshotGeneratorKey tracks the snapshot generation marker across restarts. 58 snapshotGeneratorKey = []byte("SnapshotGenerator") 59 60 // snapshotRecoveryKey tracks the snapshot recovery marker across restarts. 61 snapshotRecoveryKey = []byte("SnapshotRecovery") 62 63 // snapshotSyncStatusKey tracks the snapshot sync status across restarts. 64 snapshotSyncStatusKey = []byte("SnapshotSyncStatus") 65 66 // skeletonSyncStatusKey tracks the skeleton sync status across restarts. 67 skeletonSyncStatusKey = []byte("SkeletonSyncStatus") 68 69 // txIndexTailKey tracks the oldest block whose transactions have been indexed. 70 txIndexTailKey = []byte("TransactionIndexTail") 71 72 // fastTxLookupLimitKey tracks the transaction lookup limit during fast sync. 73 fastTxLookupLimitKey = []byte("FastTransactionLookupLimit") 74 75 // badBlockKey tracks the list of bad blocks seen by local 76 badBlockKey = []byte("InvalidBlock") 77 78 // uncleanShutdownKey tracks the list of local crashes 79 uncleanShutdownKey = []byte("unclean-shutdown") // config prefix for the db 80 81 // transitionStatusKey tracks the eth2 transition status. 82 transitionStatusKey = []byte("eth2-transition") 83 84 // Data item prefixes (use single byte to avoid mixing data types, avoid `i`, used for indexes). 85 headerPrefix = []byte("h") // headerPrefix + num (uint64 big endian) + hash -> header 86 headerTDSuffix = []byte("t") // headerPrefix + num (uint64 big endian) + hash + headerTDSuffix -> td 87 headerHashSuffix = []byte("n") // headerPrefix + num (uint64 big endian) + headerHashSuffix -> hash 88 headerNumberPrefix = []byte("H") // headerNumberPrefix + hash -> num (uint64 big endian) 89 90 blockBodyPrefix = []byte("b") // blockBodyPrefix + num (uint64 big endian) + hash -> block body 91 blockReceiptsPrefix = []byte("r") // blockReceiptsPrefix + num (uint64 big endian) + hash -> block receipts 92 93 txLookupPrefix = []byte("l") // txLookupPrefix + hash -> transaction/receipt lookup metadata 94 bloomBitsPrefix = []byte("B") // bloomBitsPrefix + bit (uint16 big endian) + section (uint64 big endian) + hash -> bloom bits 95 SnapshotAccountPrefix = []byte("a") // SnapshotAccountPrefix + account hash -> account trie value 96 SnapshotStoragePrefix = []byte("o") // SnapshotStoragePrefix + account hash + storage hash -> storage trie value 97 CodePrefix = []byte("c") // CodePrefix + code hash -> account code 98 skeletonHeaderPrefix = []byte("S") // skeletonHeaderPrefix + num (uint64 big endian) -> header 99 100 PreimagePrefix = []byte("secure-key-") // PreimagePrefix + hash -> preimage 101 configPrefix = []byte("ethereum-config-") // config prefix for the db 102 genesisPrefix = []byte("ethereum-genesis-") // genesis state prefix for the db 103 104 // Chain index prefixes (use `i` + single byte to avoid mixing data types). 105 BloomBitsIndexPrefix = []byte("iB") // BloomBitsIndexPrefix is the data table of a chain indexer to track its progress 106 107 preimageCounter = metrics.NewRegisteredCounter("db/preimage/total", nil) 108 preimageHitCounter = metrics.NewRegisteredCounter("db/preimage/hits", nil) 109 ) 110 111 const ( 112 // freezerHeaderTable indicates the name of the freezer header table. 113 freezerHeaderTable = "headers" 114 115 // freezerHashTable indicates the name of the freezer canonical hash table. 116 freezerHashTable = "hashes" 117 118 // freezerBodiesTable indicates the name of the freezer block body table. 119 freezerBodiesTable = "bodies" 120 121 // freezerReceiptTable indicates the name of the freezer receipts table. 122 freezerReceiptTable = "receipts" 123 124 // freezerDifficultyTable indicates the name of the freezer total difficulty table. 125 freezerDifficultyTable = "diffs" 126 ) 127 128 // FreezerNoSnappy configures whether compression is disabled for the ancient-tables. 129 // Hashes and difficulties don't compress well. 130 var FreezerNoSnappy = map[string]bool{ 131 freezerHeaderTable: false, 132 freezerHashTable: true, 133 freezerBodiesTable: false, 134 freezerReceiptTable: false, 135 freezerDifficultyTable: true, 136 } 137 138 // LegacyTxLookupEntry is the legacy TxLookupEntry definition with some unnecessary 139 // fields. 140 type LegacyTxLookupEntry struct { 141 BlockHash common.Hash 142 BlockIndex uint64 143 Index uint64 144 } 145 146 // encodeBlockNumber encodes a block number as big endian uint64 147 func encodeBlockNumber(number uint64) []byte { 148 enc := make([]byte, 8) 149 binary.BigEndian.PutUint64(enc, number) 150 return enc 151 } 152 153 // headerKeyPrefix = headerPrefix + num (uint64 big endian) 154 func headerKeyPrefix(number uint64) []byte { 155 return append(headerPrefix, encodeBlockNumber(number)...) 156 } 157 158 // headerKey = headerPrefix + num (uint64 big endian) + hash 159 func headerKey(number uint64, hash common.Hash) []byte { 160 return append(append(headerPrefix, encodeBlockNumber(number)...), hash.Bytes()...) 161 } 162 163 // headerTDKey = headerPrefix + num (uint64 big endian) + hash + headerTDSuffix 164 func headerTDKey(number uint64, hash common.Hash) []byte { 165 return append(headerKey(number, hash), headerTDSuffix...) 166 } 167 168 // headerHashKey = headerPrefix + num (uint64 big endian) + headerHashSuffix 169 func headerHashKey(number uint64) []byte { 170 return append(append(headerPrefix, encodeBlockNumber(number)...), headerHashSuffix...) 171 } 172 173 // headerNumberKey = headerNumberPrefix + hash 174 func headerNumberKey(hash common.Hash) []byte { 175 return append(headerNumberPrefix, hash.Bytes()...) 176 } 177 178 // blockBodyKey = blockBodyPrefix + num (uint64 big endian) + hash 179 func blockBodyKey(number uint64, hash common.Hash) []byte { 180 return append(append(blockBodyPrefix, encodeBlockNumber(number)...), hash.Bytes()...) 181 } 182 183 // blockReceiptsKey = blockReceiptsPrefix + num (uint64 big endian) + hash 184 func blockReceiptsKey(number uint64, hash common.Hash) []byte { 185 return append(append(blockReceiptsPrefix, encodeBlockNumber(number)...), hash.Bytes()...) 186 } 187 188 // txLookupKey = txLookupPrefix + hash 189 func txLookupKey(hash common.Hash) []byte { 190 return append(txLookupPrefix, hash.Bytes()...) 191 } 192 193 // accountSnapshotKey = SnapshotAccountPrefix + hash 194 func accountSnapshotKey(hash common.Hash) []byte { 195 return append(SnapshotAccountPrefix, hash.Bytes()...) 196 } 197 198 // storageSnapshotKey = SnapshotStoragePrefix + account hash + storage hash 199 func storageSnapshotKey(accountHash, storageHash common.Hash) []byte { 200 return append(append(SnapshotStoragePrefix, accountHash.Bytes()...), storageHash.Bytes()...) 201 } 202 203 // storageSnapshotsKey = SnapshotStoragePrefix + account hash + storage hash 204 func storageSnapshotsKey(accountHash common.Hash) []byte { 205 return append(SnapshotStoragePrefix, accountHash.Bytes()...) 206 } 207 208 // bloomBitsKey = bloomBitsPrefix + bit (uint16 big endian) + section (uint64 big endian) + hash 209 func bloomBitsKey(bit uint, section uint64, hash common.Hash) []byte { 210 key := append(append(bloomBitsPrefix, make([]byte, 10)...), hash.Bytes()...) 211 212 binary.BigEndian.PutUint16(key[1:], uint16(bit)) 213 binary.BigEndian.PutUint64(key[3:], section) 214 215 return key 216 } 217 218 // skeletonHeaderKey = skeletonHeaderPrefix + num (uint64 big endian) 219 func skeletonHeaderKey(number uint64) []byte { 220 return append(skeletonHeaderPrefix, encodeBlockNumber(number)...) 221 } 222 223 // preimageKey = PreimagePrefix + hash 224 func preimageKey(hash common.Hash) []byte { 225 return append(PreimagePrefix, hash.Bytes()...) 226 } 227 228 // codeKey = CodePrefix + hash 229 func codeKey(hash common.Hash) []byte { 230 return append(CodePrefix, hash.Bytes()...) 231 } 232 233 // IsCodeKey reports whether the given byte slice is the key of contract code, 234 // if so return the raw code hash as well. 235 func IsCodeKey(key []byte) (bool, []byte) { 236 if bytes.HasPrefix(key, CodePrefix) && len(key) == common.HashLength+len(CodePrefix) { 237 return true, key[len(CodePrefix):] 238 } 239 return false, nil 240 } 241 242 // configKey = configPrefix + hash 243 func configKey(hash common.Hash) []byte { 244 return append(configPrefix, hash.Bytes()...) 245 } 246 247 // genesisKey = genesisPrefix + hash 248 func genesisKey(hash common.Hash) []byte { 249 return append(genesisPrefix, hash.Bytes()...) 250 }