schema.go 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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. //offSet of new updated ancientDB.
  55. offSetOfCurrentAncientFreezer = []byte("offSetOfCurrentAncientFreezer")
  56. //offSet of the ancientDB before updated version.
  57. offSetOfLastAncientFreezer = []byte("offSetOfLastAncientFreezer")
  58. // badBlockKey tracks the list of bad blocks seen by local
  59. badBlockKey = []byte("InvalidBlock")
  60. // uncleanShutdownKey tracks the list of local crashes
  61. uncleanShutdownKey = []byte("unclean-shutdown") // config prefix for the db
  62. // Data item prefixes (use single byte to avoid mixing data types, avoid `i`, used for indexes).
  63. headerPrefix = []byte("h") // headerPrefix + num (uint64 big endian) + hash -> header
  64. headerTDSuffix = []byte("t") // headerPrefix + num (uint64 big endian) + hash + headerTDSuffix -> td
  65. headerHashSuffix = []byte("n") // headerPrefix + num (uint64 big endian) + headerHashSuffix -> hash
  66. headerNumberPrefix = []byte("H") // headerNumberPrefix + hash -> num (uint64 big endian)
  67. blockBodyPrefix = []byte("b") // blockBodyPrefix + num (uint64 big endian) + hash -> block body
  68. blockReceiptsPrefix = []byte("r") // blockReceiptsPrefix + num (uint64 big endian) + hash -> block receipts
  69. txLookupPrefix = []byte("l") // txLookupPrefix + hash -> transaction/receipt lookup metadata
  70. bloomBitsPrefix = []byte("B") // bloomBitsPrefix + bit (uint16 big endian) + section (uint64 big endian) + hash -> bloom bits
  71. SnapshotAccountPrefix = []byte("a") // SnapshotAccountPrefix + account hash -> account trie value
  72. SnapshotStoragePrefix = []byte("o") // SnapshotStoragePrefix + account hash + storage hash -> storage trie value
  73. CodePrefix = []byte("c") // CodePrefix + code hash -> account code
  74. // difflayer database
  75. diffLayerPrefix = []byte("d") // diffLayerPrefix + hash -> diffLayer
  76. preimagePrefix = []byte("secure-key-") // preimagePrefix + hash -> preimage
  77. configPrefix = []byte("ethereum-config-") // config prefix for the db
  78. // Chain index prefixes (use `i` + single byte to avoid mixing data types).
  79. BloomBitsIndexPrefix = []byte("iB") // BloomBitsIndexPrefix is the data table of a chain indexer to track its progress
  80. preimageCounter = metrics.NewRegisteredCounter("db/preimage/total", nil)
  81. preimageHitCounter = metrics.NewRegisteredCounter("db/preimage/hits", nil)
  82. )
  83. const (
  84. // freezerHeaderTable indicates the name of the freezer header table.
  85. freezerHeaderTable = "headers"
  86. // freezerHashTable indicates the name of the freezer canonical hash table.
  87. freezerHashTable = "hashes"
  88. // freezerBodiesTable indicates the name of the freezer block body table.
  89. freezerBodiesTable = "bodies"
  90. // freezerReceiptTable indicates the name of the freezer receipts table.
  91. freezerReceiptTable = "receipts"
  92. // freezerDifficultyTable indicates the name of the freezer total difficulty table.
  93. freezerDifficultyTable = "diffs"
  94. )
  95. // FreezerNoSnappy configures whether compression is disabled for the ancient-tables.
  96. // Hashes and difficulties don't compress well.
  97. var FreezerNoSnappy = map[string]bool{
  98. freezerHeaderTable: false,
  99. freezerHashTable: true,
  100. freezerBodiesTable: false,
  101. freezerReceiptTable: false,
  102. freezerDifficultyTable: true,
  103. }
  104. // LegacyTxLookupEntry is the legacy TxLookupEntry definition with some unnecessary
  105. // fields.
  106. type LegacyTxLookupEntry struct {
  107. BlockHash common.Hash
  108. BlockIndex uint64
  109. Index uint64
  110. }
  111. // encodeBlockNumber encodes a block number as big endian uint64
  112. func encodeBlockNumber(number uint64) []byte {
  113. enc := make([]byte, 8)
  114. binary.BigEndian.PutUint64(enc, number)
  115. return enc
  116. }
  117. // headerKeyPrefix = headerPrefix + num (uint64 big endian)
  118. func headerKeyPrefix(number uint64) []byte {
  119. return append(headerPrefix, encodeBlockNumber(number)...)
  120. }
  121. // headerKey = headerPrefix + num (uint64 big endian) + hash
  122. func headerKey(number uint64, hash common.Hash) []byte {
  123. return append(append(headerPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  124. }
  125. // headerTDKey = headerPrefix + num (uint64 big endian) + hash + headerTDSuffix
  126. func headerTDKey(number uint64, hash common.Hash) []byte {
  127. return append(headerKey(number, hash), headerTDSuffix...)
  128. }
  129. // headerHashKey = headerPrefix + num (uint64 big endian) + headerHashSuffix
  130. func headerHashKey(number uint64) []byte {
  131. return append(append(headerPrefix, encodeBlockNumber(number)...), headerHashSuffix...)
  132. }
  133. // headerNumberKey = headerNumberPrefix + hash
  134. func headerNumberKey(hash common.Hash) []byte {
  135. return append(headerNumberPrefix, hash.Bytes()...)
  136. }
  137. // blockBodyKey = blockBodyPrefix + num (uint64 big endian) + hash
  138. func blockBodyKey(number uint64, hash common.Hash) []byte {
  139. return append(append(blockBodyPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  140. }
  141. // blockReceiptsKey = blockReceiptsPrefix + num (uint64 big endian) + hash
  142. func blockReceiptsKey(number uint64, hash common.Hash) []byte {
  143. return append(append(blockReceiptsPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  144. }
  145. // diffLayerKey = diffLayerKeyPrefix + hash
  146. func diffLayerKey(hash common.Hash) []byte {
  147. return append(append(diffLayerPrefix, hash.Bytes()...))
  148. }
  149. // txLookupKey = txLookupPrefix + hash
  150. func txLookupKey(hash common.Hash) []byte {
  151. return append(txLookupPrefix, hash.Bytes()...)
  152. }
  153. // accountSnapshotKey = SnapshotAccountPrefix + hash
  154. func accountSnapshotKey(hash common.Hash) []byte {
  155. return append(SnapshotAccountPrefix, hash.Bytes()...)
  156. }
  157. // storageSnapshotKey = SnapshotStoragePrefix + account hash + storage hash
  158. func storageSnapshotKey(accountHash, storageHash common.Hash) []byte {
  159. return append(append(SnapshotStoragePrefix, accountHash.Bytes()...), storageHash.Bytes()...)
  160. }
  161. // storageSnapshotsKey = SnapshotStoragePrefix + account hash + storage hash
  162. func storageSnapshotsKey(accountHash common.Hash) []byte {
  163. return append(SnapshotStoragePrefix, accountHash.Bytes()...)
  164. }
  165. // bloomBitsKey = bloomBitsPrefix + bit (uint16 big endian) + section (uint64 big endian) + hash
  166. func bloomBitsKey(bit uint, section uint64, hash common.Hash) []byte {
  167. key := append(append(bloomBitsPrefix, make([]byte, 10)...), hash.Bytes()...)
  168. binary.BigEndian.PutUint16(key[1:], uint16(bit))
  169. binary.BigEndian.PutUint64(key[3:], section)
  170. return key
  171. }
  172. // preimageKey = preimagePrefix + hash
  173. func preimageKey(hash common.Hash) []byte {
  174. return append(preimagePrefix, hash.Bytes()...)
  175. }
  176. // codeKey = CodePrefix + hash
  177. func codeKey(hash common.Hash) []byte {
  178. return append(CodePrefix, hash.Bytes()...)
  179. }
  180. // IsCodeKey reports whether the given byte slice is the key of contract code,
  181. // if so return the raw code hash as well.
  182. func IsCodeKey(key []byte) (bool, []byte) {
  183. if bytes.HasPrefix(key, CodePrefix) && len(key) == common.HashLength+len(CodePrefix) {
  184. return true, key[len(CodePrefix):]
  185. }
  186. return false, nil
  187. }
  188. // configKey = configPrefix + hash
  189. func configKey(hash common.Hash) []byte {
  190. return append(configPrefix, hash.Bytes()...)
  191. }