schema.go 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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. // databaseVerisionKey tracks the current database version.
  27. databaseVerisionKey = []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. // snapshotRootKey tracks the hash of the last snapshot.
  39. snapshotRootKey = []byte("SnapshotRoot")
  40. // snapshotJournalKey tracks the in-memory diff layers across restarts.
  41. snapshotJournalKey = []byte("SnapshotJournal")
  42. // snapshotGeneratorKey tracks the snapshot generation marker across restarts.
  43. snapshotGeneratorKey = []byte("SnapshotGenerator")
  44. // snapshotRecoveryKey tracks the snapshot recovery marker across restarts.
  45. snapshotRecoveryKey = []byte("SnapshotRecovery")
  46. // txIndexTailKey tracks the oldest block whose transactions have been indexed.
  47. txIndexTailKey = []byte("TransactionIndexTail")
  48. // fastTxLookupLimitKey tracks the transaction lookup limit during fast sync.
  49. fastTxLookupLimitKey = []byte("FastTransactionLookupLimit")
  50. // Data item prefixes (use single byte to avoid mixing data types, avoid `i`, used for indexes).
  51. headerPrefix = []byte("h") // headerPrefix + num (uint64 big endian) + hash -> header
  52. headerTDSuffix = []byte("t") // headerPrefix + num (uint64 big endian) + hash + headerTDSuffix -> td
  53. headerHashSuffix = []byte("n") // headerPrefix + num (uint64 big endian) + headerHashSuffix -> hash
  54. headerNumberPrefix = []byte("H") // headerNumberPrefix + hash -> num (uint64 big endian)
  55. blockBodyPrefix = []byte("b") // blockBodyPrefix + num (uint64 big endian) + hash -> block body
  56. blockReceiptsPrefix = []byte("r") // blockReceiptsPrefix + num (uint64 big endian) + hash -> block receipts
  57. txLookupPrefix = []byte("l") // txLookupPrefix + hash -> transaction/receipt lookup metadata
  58. bloomBitsPrefix = []byte("B") // bloomBitsPrefix + bit (uint16 big endian) + section (uint64 big endian) + hash -> bloom bits
  59. SnapshotAccountPrefix = []byte("a") // SnapshotAccountPrefix + account hash -> account trie value
  60. SnapshotStoragePrefix = []byte("o") // SnapshotStoragePrefix + account hash + storage hash -> storage trie value
  61. codePrefix = []byte("c") // codePrefix + code hash -> account code
  62. preimagePrefix = []byte("secure-key-") // preimagePrefix + hash -> preimage
  63. configPrefix = []byte("ethereum-config-") // config prefix for the db
  64. // Chain index prefixes (use `i` + single byte to avoid mixing data types).
  65. BloomBitsIndexPrefix = []byte("iB") // BloomBitsIndexPrefix is the data table of a chain indexer to track its progress
  66. preimageCounter = metrics.NewRegisteredCounter("db/preimage/total", nil)
  67. preimageHitCounter = metrics.NewRegisteredCounter("db/preimage/hits", nil)
  68. )
  69. const (
  70. // freezerHeaderTable indicates the name of the freezer header table.
  71. freezerHeaderTable = "headers"
  72. // freezerHashTable indicates the name of the freezer canonical hash table.
  73. freezerHashTable = "hashes"
  74. // freezerBodiesTable indicates the name of the freezer block body table.
  75. freezerBodiesTable = "bodies"
  76. // freezerReceiptTable indicates the name of the freezer receipts table.
  77. freezerReceiptTable = "receipts"
  78. // freezerDifficultyTable indicates the name of the freezer total difficulty table.
  79. freezerDifficultyTable = "diffs"
  80. )
  81. // freezerNoSnappy configures whether compression is disabled for the ancient-tables.
  82. // Hashes and difficulties don't compress well.
  83. var freezerNoSnappy = map[string]bool{
  84. freezerHeaderTable: false,
  85. freezerHashTable: true,
  86. freezerBodiesTable: false,
  87. freezerReceiptTable: false,
  88. freezerDifficultyTable: true,
  89. }
  90. // LegacyTxLookupEntry is the legacy TxLookupEntry definition with some unnecessary
  91. // fields.
  92. type LegacyTxLookupEntry struct {
  93. BlockHash common.Hash
  94. BlockIndex uint64
  95. Index uint64
  96. }
  97. // encodeBlockNumber encodes a block number as big endian uint64
  98. func encodeBlockNumber(number uint64) []byte {
  99. enc := make([]byte, 8)
  100. binary.BigEndian.PutUint64(enc, number)
  101. return enc
  102. }
  103. // headerKeyPrefix = headerPrefix + num (uint64 big endian)
  104. func headerKeyPrefix(number uint64) []byte {
  105. return append(headerPrefix, encodeBlockNumber(number)...)
  106. }
  107. // headerKey = headerPrefix + num (uint64 big endian) + hash
  108. func headerKey(number uint64, hash common.Hash) []byte {
  109. return append(append(headerPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  110. }
  111. // headerTDKey = headerPrefix + num (uint64 big endian) + hash + headerTDSuffix
  112. func headerTDKey(number uint64, hash common.Hash) []byte {
  113. return append(headerKey(number, hash), headerTDSuffix...)
  114. }
  115. // headerHashKey = headerPrefix + num (uint64 big endian) + headerHashSuffix
  116. func headerHashKey(number uint64) []byte {
  117. return append(append(headerPrefix, encodeBlockNumber(number)...), headerHashSuffix...)
  118. }
  119. // headerNumberKey = headerNumberPrefix + hash
  120. func headerNumberKey(hash common.Hash) []byte {
  121. return append(headerNumberPrefix, hash.Bytes()...)
  122. }
  123. // blockBodyKey = blockBodyPrefix + num (uint64 big endian) + hash
  124. func blockBodyKey(number uint64, hash common.Hash) []byte {
  125. return append(append(blockBodyPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  126. }
  127. // blockReceiptsKey = blockReceiptsPrefix + num (uint64 big endian) + hash
  128. func blockReceiptsKey(number uint64, hash common.Hash) []byte {
  129. return append(append(blockReceiptsPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  130. }
  131. // txLookupKey = txLookupPrefix + hash
  132. func txLookupKey(hash common.Hash) []byte {
  133. return append(txLookupPrefix, hash.Bytes()...)
  134. }
  135. // accountSnapshotKey = SnapshotAccountPrefix + hash
  136. func accountSnapshotKey(hash common.Hash) []byte {
  137. return append(SnapshotAccountPrefix, hash.Bytes()...)
  138. }
  139. // storageSnapshotKey = SnapshotStoragePrefix + account hash + storage hash
  140. func storageSnapshotKey(accountHash, storageHash common.Hash) []byte {
  141. return append(append(SnapshotStoragePrefix, accountHash.Bytes()...), storageHash.Bytes()...)
  142. }
  143. // storageSnapshotsKey = SnapshotStoragePrefix + account hash + storage hash
  144. func storageSnapshotsKey(accountHash common.Hash) []byte {
  145. return append(SnapshotStoragePrefix, accountHash.Bytes()...)
  146. }
  147. // bloomBitsKey = bloomBitsPrefix + bit (uint16 big endian) + section (uint64 big endian) + hash
  148. func bloomBitsKey(bit uint, section uint64, hash common.Hash) []byte {
  149. key := append(append(bloomBitsPrefix, make([]byte, 10)...), hash.Bytes()...)
  150. binary.BigEndian.PutUint16(key[1:], uint16(bit))
  151. binary.BigEndian.PutUint64(key[3:], section)
  152. return key
  153. }
  154. // preimageKey = preimagePrefix + hash
  155. func preimageKey(hash common.Hash) []byte {
  156. return append(preimagePrefix, hash.Bytes()...)
  157. }
  158. // codeKey = codePrefix + hash
  159. func codeKey(hash common.Hash) []byte {
  160. return append(codePrefix, hash.Bytes()...)
  161. }
  162. // IsCodeKey reports whether the given byte slice is the key of contract code,
  163. // if so return the raw code hash as well.
  164. func IsCodeKey(key []byte) (bool, []byte) {
  165. if bytes.HasPrefix(key, codePrefix) && len(key) == common.HashLength+len(codePrefix) {
  166. return true, key[len(codePrefix):]
  167. }
  168. return false, nil
  169. }
  170. // configKey = configPrefix + hash
  171. func configKey(hash common.Hash) []byte {
  172. return append(configPrefix, hash.Bytes()...)
  173. }