schema.go 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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. // snapshotBlockKey tracks the number and hash of the last snapshot.
  36. snapshotBlockKey = []byte("SnapshotBlock")
  37. // Data item prefixes (use single byte to avoid mixing data types, avoid `i`, used for indexes).
  38. headerPrefix = []byte("h") // headerPrefix + num (uint64 big endian) + hash -> header
  39. headerTDSuffix = []byte("t") // headerPrefix + num (uint64 big endian) + hash + headerTDSuffix -> td
  40. headerHashSuffix = []byte("n") // headerPrefix + num (uint64 big endian) + headerHashSuffix -> hash
  41. headerNumberPrefix = []byte("H") // headerNumberPrefix + hash -> num (uint64 big endian)
  42. blockBodyPrefix = []byte("b") // blockBodyPrefix + num (uint64 big endian) + hash -> block body
  43. blockReceiptsPrefix = []byte("r") // blockReceiptsPrefix + num (uint64 big endian) + hash -> block receipts
  44. txLookupPrefix = []byte("l") // txLookupPrefix + hash -> transaction/receipt lookup metadata
  45. bloomBitsPrefix = []byte("B") // bloomBitsPrefix + bit (uint16 big endian) + section (uint64 big endian) + hash -> bloom bits
  46. StateSnapshotPrefix = []byte("s") // StateSnapshotPrefix + account hash [+ storage hash] -> account/storage trie value
  47. preimagePrefix = []byte("secure-key-") // preimagePrefix + hash -> preimage
  48. configPrefix = []byte("ethereum-config-") // config prefix for the db
  49. // Chain index prefixes (use `i` + single byte to avoid mixing data types).
  50. BloomBitsIndexPrefix = []byte("iB") // BloomBitsIndexPrefix is the data table of a chain indexer to track its progress
  51. preimageCounter = metrics.NewRegisteredCounter("db/preimage/total", nil)
  52. preimageHitCounter = metrics.NewRegisteredCounter("db/preimage/hits", nil)
  53. )
  54. const (
  55. // freezerHeaderTable indicates the name of the freezer header table.
  56. freezerHeaderTable = "headers"
  57. // freezerHashTable indicates the name of the freezer canonical hash table.
  58. freezerHashTable = "hashes"
  59. // freezerBodiesTable indicates the name of the freezer block body table.
  60. freezerBodiesTable = "bodies"
  61. // freezerReceiptTable indicates the name of the freezer receipts table.
  62. freezerReceiptTable = "receipts"
  63. // freezerDifficultyTable indicates the name of the freezer total difficulty table.
  64. freezerDifficultyTable = "diffs"
  65. )
  66. // freezerNoSnappy configures whether compression is disabled for the ancient-tables.
  67. // Hashes and difficulties don't compress well.
  68. var freezerNoSnappy = map[string]bool{
  69. freezerHeaderTable: false,
  70. freezerHashTable: true,
  71. freezerBodiesTable: false,
  72. freezerReceiptTable: false,
  73. freezerDifficultyTable: true,
  74. }
  75. // LegacyTxLookupEntry is the legacy TxLookupEntry definition with some unnecessary
  76. // fields.
  77. type LegacyTxLookupEntry struct {
  78. BlockHash common.Hash
  79. BlockIndex uint64
  80. Index uint64
  81. }
  82. // encodeBlockNumber encodes a block number as big endian uint64
  83. func encodeBlockNumber(number uint64) []byte {
  84. enc := make([]byte, 8)
  85. binary.BigEndian.PutUint64(enc, number)
  86. return enc
  87. }
  88. // headerKeyPrefix = headerPrefix + num (uint64 big endian)
  89. func headerKeyPrefix(number uint64) []byte {
  90. return append(headerPrefix, encodeBlockNumber(number)...)
  91. }
  92. // headerKey = headerPrefix + num (uint64 big endian) + hash
  93. func headerKey(number uint64, hash common.Hash) []byte {
  94. return append(append(headerPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  95. }
  96. // headerTDKey = headerPrefix + num (uint64 big endian) + hash + headerTDSuffix
  97. func headerTDKey(number uint64, hash common.Hash) []byte {
  98. return append(headerKey(number, hash), headerTDSuffix...)
  99. }
  100. // headerHashKey = headerPrefix + num (uint64 big endian) + headerHashSuffix
  101. func headerHashKey(number uint64) []byte {
  102. return append(append(headerPrefix, encodeBlockNumber(number)...), headerHashSuffix...)
  103. }
  104. // headerNumberKey = headerNumberPrefix + hash
  105. func headerNumberKey(hash common.Hash) []byte {
  106. return append(headerNumberPrefix, hash.Bytes()...)
  107. }
  108. // blockBodyKey = blockBodyPrefix + num (uint64 big endian) + hash
  109. func blockBodyKey(number uint64, hash common.Hash) []byte {
  110. return append(append(blockBodyPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  111. }
  112. // blockReceiptsKey = blockReceiptsPrefix + num (uint64 big endian) + hash
  113. func blockReceiptsKey(number uint64, hash common.Hash) []byte {
  114. return append(append(blockReceiptsPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  115. }
  116. // txLookupKey = txLookupPrefix + hash
  117. func txLookupKey(hash common.Hash) []byte {
  118. return append(txLookupPrefix, hash.Bytes()...)
  119. }
  120. // accountSnapshotKey = StateSnapshotPrefix + hash
  121. func accountSnapshotKey(hash common.Hash) []byte {
  122. return append(StateSnapshotPrefix, hash.Bytes()...)
  123. }
  124. // storageSnapshotKey = StateSnapshotPrefix + account hash + storage hash
  125. func storageSnapshotKey(accountHash, storageHash common.Hash) []byte {
  126. return append(append(StateSnapshotPrefix, accountHash.Bytes()...), storageHash.Bytes()...)
  127. }
  128. // storageSnapshotsKey = StateSnapshotPrefix + account hash + storage hash
  129. func storageSnapshotsKey(accountHash common.Hash) []byte {
  130. return append(StateSnapshotPrefix, accountHash.Bytes()...)
  131. }
  132. // bloomBitsKey = bloomBitsPrefix + bit (uint16 big endian) + section (uint64 big endian) + hash
  133. func bloomBitsKey(bit uint, section uint64, hash common.Hash) []byte {
  134. key := append(append(bloomBitsPrefix, make([]byte, 10)...), hash.Bytes()...)
  135. binary.BigEndian.PutUint16(key[1:], uint16(bit))
  136. binary.BigEndian.PutUint64(key[3:], section)
  137. return key
  138. }
  139. // preimageKey = preimagePrefix + hash
  140. func preimageKey(hash common.Hash) []byte {
  141. return append(preimagePrefix, hash.Bytes()...)
  142. }
  143. // configKey = configPrefix + hash
  144. func configKey(hash common.Hash) []byte {
  145. return append(configPrefix, hash.Bytes()...)
  146. }