var ( // ErrRemoteStale is returned by the validator if a remote fork checksum is a // subset of our already applied forks, but the announced next fork block is // not on our already passed chain. ErrRemoteStale = errors.New("remote needs update")
// ErrLocalIncompatibleOrStale is returned by the validator if a remote fork // checksum does not match any local checksum variation, signalling that the // two chains have diverged in the past at some point (possibly at genesis). ErrLocalIncompatibleOrStale = errors.New("local incompatible or needs update") )
为了传递信息,定义了链配置、创世区块配置和当前区块头的接口。然后定义了 ID 包括了前面提到的 FORK_HASH 和 FORK_NEXT,最后定义了判断是否兼容的函数 Filter。
// Blockchain defines all necessary method to build a forkID. type Blockchain interface { // Config retrieves the chain's fork configuration. Config() *params.ChainConfig
// Genesis retrieves the chain's genesis block. Genesis() *types.Block
// CurrentHeader retrieves the current head header of the canonical chain. CurrentHeader() *types.Header }
// ID is a fork identifier as defined by EIP-2124. type ID struct { Hash [4]byte// CRC32 checksum of the genesis block and passed fork block numbers Next uint64// Block number of the next upcoming fork, or 0 if no forks are known }
// Filter is a fork id filter to validate a remotely advertised ID. type Filter func(id ID)error
创建 ID 标识
节点根据对方的 ID 的内容,选择是否连接。从链配置、创世区块哈希、当前分叉区块高度获取节点的标识
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// NewID calculates the Ethereum fork ID from the chain config, genesis hash, and head. funcNewID(config *params.ChainConfig, genesis common.Hash, head uint64) ID { // Calculate the starting checksum from the genesis hash hash := crc32.ChecksumIEEE(genesis[:]) //计算创世区块校验和
// Calculate the current fork checksum and the next fork block var next uint64 for _, fork := range gatherForks(config) { if fork <= head { // Fork already passed, checksum the previous hash and the fork number hash = checksumUpdate(hash, fork) //将之前的分叉逐个添加进 fork_hash continue } next = fork //如果超过了当前的分叉的区块高度,那么这是即将迎来的分叉。否则 next 为 0 break } return ID{Hash: checksumToBytes(hash), Next: next} }
// newFilter is the internal version of NewFilter, taking closures as its arguments // instead of a chain. The reason is to allow testing it without having to simulate // an entire blockchain. funcnewFilter(config *params.ChainConfig, genesis common.Hash, headfn func()uint64) Filter { // Calculate the all the valid fork hash and fork next combos var ( //各种分叉的区块高度 forks = gatherForks(config) //每个分叉的对应的累积校验和 sums = make([][4]byte, len(forks)+1) // 0th is the genesis ) hash := crc32.ChecksumIEEE(genesis[:]) sums[0] = checksumToBytes(hash)
//整合校验和 for i, fork := range forks { hash = checksumUpdate(hash, fork) sums[i+1] = checksumToBytes(hash) }
//最后一个位置作为 "哨兵",用于方便处理
// Add two sentries to simplify the fork checks and don't require special // casing the last one. forks = append(forks, math.MaxUint64) // Last fork will never be passed
// Create a validator that will filter out incompatible chains returnfunc(id ID)error { // Run the fork checksum validation ruleset: // 1. If local and remote FORK_CSUM matches, compare local head to FORK_NEXT. // The two nodes are in the same fork state currently. They might know // of differing future forks, but that's not relevant until the fork // triggers (might be postponed, nodes might be updated to match). // 1a. A remotely announced but remotely not passed block is already passed // locally, disconnect, since the chains are incompatible. // 1b. No remotely announced fork; or not yet passed locally, connect. // 2. If the remote FORK_CSUM is a subset of the local past forks and the // remote FORK_NEXT matches with the locally following fork block number, // connect. // Remote node is currently syncing. It might eventually diverge from // us, but at this current point in time we don't have enough information. // 3. If the remote FORK_CSUM is a superset of the local past forks and can // be completed with locally known future forks, connect. // Local node is currently syncing. It might eventually diverge from // the remote, but at this current point in time we don't have enough // information. // 4. Reject in all other cases. head := headfn() for i, fork := range forks { //如果当前区块高度超过了某个分叉,就继续往后检查。前面设置的哨兵的作用就是在这里跳过这个检查
// If our head is beyond this fork, continue to the next (we have a dummy // fork of maxuint64 as the last item to always fail this check eventually). if head >= fork { continue } //达到了本地节点的下一个分叉区块高度
// Found the first unpassed fork block, check if our current state matches // the remote checksum (rule #1). if sums[i] == id.Hash { //如果匹配 // Fork checksum matched, check if a remote future fork block already passed // locally without the local node being aware of it (rule #1a). if id.Next > 0 && head >= id.Next { //但是当前区块高度高于远程节点的下一个分叉高度,那么不兼容 return ErrLocalIncompatibleOrStale } // Haven't passed locally a remote-only fork, accept the connection (rule #1b). returnnil }
// The local and remote nodes are in different forks currently, check if the // remote checksum is a subset of our local forks (rule #2). for j := 0; j < i; j++ { //找子集的匹配部分,并且要求远程节点接着的分叉与本地节点对应 if sums[j] == id.Hash { // Remote checksum is a subset, validate based on the announced next fork if forks[j] != id.Next { return ErrRemoteStale } returnnil } }
//如果远程节点包括了当前节点的所有分叉,那么可以连接,告诉远程节点,当前节点没有完成同步
// Remote chain is not a subset of our local one, check if it's a superset by // any chance, signalling that we're simply out of sync (rule #3). for j := i + 1; j < len(sums); j++ { if sums[j] == id.Hash { // Yay, remote checksum is a superset, ignore upcoming forks returnnil } } // No exact, subset or superset match. We are on differing chains, reject. return ErrLocalIncompatibleOrStale } log.Error("Impossible fork ID validation", "id", id) returnnil// Something's very wrong, accept rather than reject } }
// gatherForks gathers all the known forks and creates a sorted list out of them. funcgatherForks(config *params.ChainConfig) []uint64 { // Gather all the fork block numbers via reflection kind := reflect.TypeOf(params.ChainConfig{}) conf := reflect.ValueOf(config).Elem()
var forks []uint64 for i := 0; i < kind.NumField(); i++ { // Fetch the next field and skip non-fork rules field := kind.Field(i)
//处理链配置中的分叉区块,因为它们末尾都是 Block,而且都是 bigInt 类型 if !strings.HasSuffix(field.Name, "Block") { continue } if field.Type != reflect.TypeOf(new(big.Int)) { continue } // Extract the fork rule block number and aggregate it rule := conf.Field(i).Interface().(*big.Int) if rule != nil { forks = append(forks, rule.Uint64()) } }
//数据量很小,冒泡排序也不差,区块高度需要按升序,表达分叉顺序
// Sort the fork block numbers to permit chronological XOR for i := 0; i < len(forks); i++ { for j := i + 1; j < len(forks); j++ { if forks[i] > forks[j] { forks[i], forks[j] = forks[j], forks[i] } } }