schema.go 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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. "encoding/binary"
  20. "github.com/ethereum/go-ethereum/common"
  21. "github.com/ethereum/go-ethereum/metrics"
  22. )
  23. // The fields below define the low level database schema prefixing.
  24. var (
  25. // databaseVerisionKey tracks the current database version.
  26. databaseVerisionKey = []byte("DatabaseVersion")
  27. // headHeaderKey tracks the latest known header's hash.
  28. headHeaderKey = []byte("LastHeader")
  29. // headBlockKey tracks the latest known full block's hash.
  30. headBlockKey = []byte("LastBlock")
  31. // headFastBlockKey tracks the latest known incomplete block's hash during fast sync.
  32. headFastBlockKey = []byte("LastFast")
  33. // fastTrieProgressKey tracks the number of trie entries imported during fast sync.
  34. fastTrieProgressKey = []byte("TrieSync")
  35. // snapshotRootKey tracks the hash of the last snapshot.
  36. snapshotRootKey = []byte("SnapshotRoot")
  37. // snapshotJournalKey tracks the in-memory diff layers across restarts.
  38. snapshotJournalKey = []byte("SnapshotJournal")
  39. // txIndexTailKey tracks the oldest block whose transactions have been indexed.
  40. txIndexTailKey = []byte("TransactionIndexTail")
  41. // fastTxLookupLimitKey tracks the transaction lookup limit during fast sync.
  42. fastTxLookupLimitKey = []byte("FastTransactionLookupLimit")
  43. // Data item prefixes (use single byte to avoid mixing data types, avoid `i`, used for indexes).
  44. headerPrefix = []byte("h") // headerPrefix + num (uint64 big endian) + hash -> header
  45. headerTDSuffix = []byte("t") // headerPrefix + num (uint64 big endian) + hash + headerTDSuffix -> td
  46. headerHashSuffix = []byte("n") // headerPrefix + num (uint64 big endian) + headerHashSuffix -> hash
  47. headerNumberPrefix = []byte("H") // headerNumberPrefix + hash -> num (uint64 big endian)
  48. blockBodyPrefix = []byte("b") // blockBodyPrefix + num (uint64 big endian) + hash -> block body
  49. blockReceiptsPrefix = []byte("r") // blockReceiptsPrefix + num (uint64 big endian) + hash -> block receipts
  50. txLookupPrefix = []byte("l") // txLookupPrefix + hash -> transaction/receipt lookup metadata
  51. bloomBitsPrefix = []byte("B") // bloomBitsPrefix + bit (uint16 big endian) + section (uint64 big endian) + hash -> bloom bits
  52. SnapshotAccountPrefix = []byte("a") // SnapshotAccountPrefix + account hash -> account trie value
  53. SnapshotStoragePrefix = []byte("o") // SnapshotStoragePrefix + account hash + storage hash -> storage trie value
  54. preimagePrefix = []byte("secure-key-") // preimagePrefix + hash -> preimage
  55. configPrefix = []byte("ethereum-config-") // config prefix for the db
  56. // Chain index prefixes (use `i` + single byte to avoid mixing data types).
  57. BloomBitsIndexPrefix = []byte("iB") // BloomBitsIndexPrefix is the data table of a chain indexer to track its progress
  58. preimageCounter = metrics.NewRegisteredCounter("db/preimage/total", nil)
  59. preimageHitCounter = metrics.NewRegisteredCounter("db/preimage/hits", nil)
  60. )
  61. const (
  62. // freezerHeaderTable indicates the name of the freezer header table.
  63. freezerHeaderTable = "headers"
  64. // freezerHashTable indicates the name of the freezer canonical hash table.
  65. freezerHashTable = "hashes"
  66. // freezerBodiesTable indicates the name of the freezer block body table.
  67. freezerBodiesTable = "bodies"
  68. // freezerReceiptTable indicates the name of the freezer receipts table.
  69. freezerReceiptTable = "receipts"
  70. // freezerDifficultyTable indicates the name of the freezer total difficulty table.
  71. freezerDifficultyTable = "diffs"
  72. )
  73. // freezerNoSnappy configures whether compression is disabled for the ancient-tables.
  74. // Hashes and difficulties don't compress well.
  75. var freezerNoSnappy = map[string]bool{
  76. freezerHeaderTable: false,
  77. freezerHashTable: true,
  78. freezerBodiesTable: false,
  79. freezerReceiptTable: false,
  80. freezerDifficultyTable: true,
  81. }
  82. // LegacyTxLookupEntry is the legacy TxLookupEntry definition with some unnecessary
  83. // fields.
  84. type LegacyTxLookupEntry struct {
  85. BlockHash common.Hash
  86. BlockIndex uint64
  87. Index uint64
  88. }
  89. // encodeBlockNumber encodes a block number as big endian uint64
  90. func encodeBlockNumber(number uint64) []byte {
  91. enc := make([]byte, 8)
  92. binary.BigEndian.PutUint64(enc, number)
  93. return enc
  94. }
  95. // headerKeyPrefix = headerPrefix + num (uint64 big endian)
  96. func headerKeyPrefix(number uint64) []byte {
  97. return append(headerPrefix, encodeBlockNumber(number)...)
  98. }
  99. // headerKey = headerPrefix + num (uint64 big endian) + hash
  100. func headerKey(number uint64, hash common.Hash) []byte {
  101. return append(append(headerPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  102. }
  103. // headerTDKey = headerPrefix + num (uint64 big endian) + hash + headerTDSuffix
  104. func headerTDKey(number uint64, hash common.Hash) []byte {
  105. return append(headerKey(number, hash), headerTDSuffix...)
  106. }
  107. // headerHashKey = headerPrefix + num (uint64 big endian) + headerHashSuffix
  108. func headerHashKey(number uint64) []byte {
  109. return append(append(headerPrefix, encodeBlockNumber(number)...), headerHashSuffix...)
  110. }
  111. // headerNumberKey = headerNumberPrefix + hash
  112. func headerNumberKey(hash common.Hash) []byte {
  113. return append(headerNumberPrefix, hash.Bytes()...)
  114. }
  115. // blockBodyKey = blockBodyPrefix + num (uint64 big endian) + hash
  116. func blockBodyKey(number uint64, hash common.Hash) []byte {
  117. return append(append(blockBodyPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  118. }
  119. // blockReceiptsKey = blockReceiptsPrefix + num (uint64 big endian) + hash
  120. func blockReceiptsKey(number uint64, hash common.Hash) []byte {
  121. return append(append(blockReceiptsPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  122. }
  123. // txLookupKey = txLookupPrefix + hash
  124. func txLookupKey(hash common.Hash) []byte {
  125. return append(txLookupPrefix, hash.Bytes()...)
  126. }
  127. // accountSnapshotKey = SnapshotAccountPrefix + hash
  128. func accountSnapshotKey(hash common.Hash) []byte {
  129. return append(SnapshotAccountPrefix, hash.Bytes()...)
  130. }
  131. // storageSnapshotKey = SnapshotStoragePrefix + account hash + storage hash
  132. func storageSnapshotKey(accountHash, storageHash common.Hash) []byte {
  133. return append(append(SnapshotStoragePrefix, accountHash.Bytes()...), storageHash.Bytes()...)
  134. }
  135. // storageSnapshotsKey = SnapshotStoragePrefix + account hash + storage hash
  136. func storageSnapshotsKey(accountHash common.Hash) []byte {
  137. return append(SnapshotStoragePrefix, accountHash.Bytes()...)
  138. }
  139. // bloomBitsKey = bloomBitsPrefix + bit (uint16 big endian) + section (uint64 big endian) + hash
  140. func bloomBitsKey(bit uint, section uint64, hash common.Hash) []byte {
  141. key := append(append(bloomBitsPrefix, make([]byte, 10)...), hash.Bytes()...)
  142. binary.BigEndian.PutUint16(key[1:], uint16(bit))
  143. binary.BigEndian.PutUint64(key[3:], section)
  144. return key
  145. }
  146. // preimageKey = preimagePrefix + hash
  147. func preimageKey(hash common.Hash) []byte {
  148. return append(preimagePrefix, hash.Bytes()...)
  149. }
  150. // configKey = configPrefix + hash
  151. func configKey(hash common.Hash) []byte {
  152. return append(configPrefix, hash.Bytes()...)
  153. }