schema.go 9.0 KB

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