Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use hashtree #14524

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions config/features/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ type Flags struct {
DisableResourceManager bool // Disables running the node with libp2p's resource manager.
DisableStakinContractCheck bool // Disables check for deposit contract when proposing blocks

EnableHashtree bool // Enables usage of the hashtree library for hashing
EnableVerboseSigVerification bool // EnableVerboseSigVerification specifies whether to verify individual signature if batch verification fails

PrepareAllPayloads bool // PrepareAllPayloads informs the engine to prepare a block on every slot.
Expand Down Expand Up @@ -233,6 +234,10 @@ func ConfigureBeaconChain(ctx *cli.Context) error {
logEnabled(enableFullSSZDataLogging)
cfg.EnableFullSSZDataLogging = true
}
if ctx.IsSet(enableHashtree.Name) {
logEnabled(enableHashtree)
cfg.EnableHashtree = true
}
cfg.EnableVerboseSigVerification = true
if ctx.IsSet(disableVerboseSigVerification.Name) {
logEnabled(disableVerboseSigVerification)
Expand Down
5 changes: 5 additions & 0 deletions config/features/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ var (
Name: "enable-beacon-rest-api",
Usage: "(Experimental): Enables of the beacon REST API when querying a beacon node.",
}
enableHashtree = &cli.BoolFlag{
Name: "enable-hashtree",
Usage: "(Experimental): Enables the hashthree hashing library.",
}
disableVerboseSigVerification = &cli.BoolFlag{
Name: "disable-verbose-sig-verification",
Usage: "Disables identifying invalid signatures if batch verification fails when processing block.",
Expand Down Expand Up @@ -215,6 +219,7 @@ var BeaconChainFlags = append(deprecatedBeaconFlags, append(deprecatedFlags, []c
disablePeerScorer,
disableBroadcastSlashingFlag,
enableSlasherFlag,
enableHashtree,
enableHistoricalSpaceRepresentation,
disableStakinContractCheck,
SaveFullExecutionPayloads,
Expand Down
1 change: 1 addition & 0 deletions consensus-types/blocks/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ go_library(
visibility = ["//visibility:public"],
deps = [
"//beacon-chain/state/stateutil:go_default_library",
"//config/features:go_default_library",
"//config/fieldparams:go_default_library",
"//config/params:go_default_library",
"//consensus-types:go_default_library",
Expand Down
7 changes: 6 additions & 1 deletion consensus-types/blocks/kzg.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import (
"github.com/pkg/errors"
"github.com/prysmaticlabs/gohashtree"
"github.com/prysmaticlabs/prysm/v5/config/features"
field_params "github.com/prysmaticlabs/prysm/v5/config/fieldparams"
"github.com/prysmaticlabs/prysm/v5/config/params"
"github.com/prysmaticlabs/prysm/v5/consensus-types/interfaces"
Expand Down Expand Up @@ -39,7 +40,11 @@
return errInvalidBodyRoot
}
chunks := makeChunk(blob.KzgCommitment)
gohashtree.HashChunks(chunks, chunks)
if features.Get().EnableHashtree {
hashtree.HashChunks(chunks, chunks)

Check failure on line 44 in consensus-types/blocks/kzg.go

View workflow job for this annotation

GitHub Actions / Build

undefined: hashtree
} else {
gohashtree.HashChunks(chunks, chunks)
}
verified := trie.VerifyMerkleProof(root, chunks[0][:], blob.Index+KZGOffset, blob.CommitmentInclusionProof)
if !verified {
return errInvalidInclusionProof
Expand Down
6 changes: 5 additions & 1 deletion crypto/hash/htr/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ go_library(
srcs = ["hashtree.go"],
importpath = "github.com/prysmaticlabs/prysm/v5/crypto/hash/htr",
visibility = ["//visibility:public"],
deps = ["@com_github_prysmaticlabs_gohashtree//:go_default_library"],
deps = [
"//config/features:go_default_library",
"@com_github_prysmaticlabs_gohashtree//:go_default_library",
"@com_github_prysmaticlabs_hashtree//:go_default_library",
],
)

go_test(
Expand Down
16 changes: 14 additions & 2 deletions crypto/hash/htr/hashtree.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,20 @@ import (
"sync"

"github.com/prysmaticlabs/gohashtree"
"github.com/prysmaticlabs/hashtree"
"github.com/prysmaticlabs/prysm/v5/config/features"
)

const minSliceSizeToParallelize = 5000

func hashParallel(inputList [][32]byte, outputList [][32]byte, wg *sync.WaitGroup) {
defer wg.Done()
err := gohashtree.Hash(outputList, inputList)
var err error
if features.Get().EnableHashtree {
err = hashtree.Hash(outputList, inputList)
} else {
err = gohashtree.Hash(outputList, inputList)
}
if err != nil {
panic(err)
}
Expand All @@ -38,7 +45,12 @@ func VectorizedSha256(inputList [][32]byte) [][32]byte {
for j := 0; j < n; j++ {
go hashParallel(inputList[j*2*groupSize:(j+1)*2*groupSize], outputList[j*groupSize:], &wg)
}
err := gohashtree.Hash(outputList[n*groupSize:], inputList[n*2*groupSize:])
var err error
if features.Get().EnableHashtree {
err = hashtree.Hash(outputList[n*groupSize:], inputList[n*2*groupSize:])
} else {
err = gohashtree.Hash(outputList[n*groupSize:], inputList[n*2*groupSize:])
}
if err != nil {
panic(err)
}
Expand Down
25 changes: 25 additions & 0 deletions crypto/hash/htr/hashtree_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"sync"
"testing"

"github.com/prysmaticlabs/prysm/v5/config/features"
"github.com/prysmaticlabs/prysm/v5/testing/require"
)

Expand All @@ -25,3 +26,27 @@ func Test_VectorizedSha256(t *testing.T) {
require.Equal(t, r, hash2[i])
}
}

func Test_VectorizedSha256_hashtree_enabled(t *testing.T) {
resetCfg := features.InitWithReset(&features.Flags{
EnableHashtree: true,
})
defer resetCfg()

largeSlice := make([][32]byte, 32*minSliceSizeToParallelize)
secondLargeSlice := make([][32]byte, 32*minSliceSizeToParallelize)
hash1 := make([][32]byte, 16*minSliceSizeToParallelize)
wg := sync.WaitGroup{}
wg.Add(1)
go func() {
defer wg.Done()
tempHash := VectorizedSha256(largeSlice)
copy(hash1, tempHash)
}()
wg.Wait()
hash2 := VectorizedSha256(secondLargeSlice)
require.Equal(t, len(hash1), len(hash2))
for i, r := range hash1 {
require.Equal(t, r, hash2[i])
}
}
10 changes: 10 additions & 0 deletions deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -4810,3 +4810,13 @@ def prysm_deps():
build_file = "//third_party:blst/blst.BUILD",
sha256 = "132124c074e59ead77e1828cc54b587a182ea67b781b72198e802af4696d78fe",
)

http_archive(
name = "com_github_prysmaticlabs_hashtree",
urls = [
"https://github.com/prysmaticlabs/hashtree/archive/refs/tags/v0.2.0.tar.gz",
],
strip_prefix = "hashtree-0.2.0",
build_file = "//third_party:hashtree/hashtree.BUILD",
sha256 = "26e6e14712040be81b5c9c08dc0ad2d48e03f2f9032806a76e98e438af10c1e0",
)
64 changes: 64 additions & 0 deletions third_party/hashtree/hashtree.BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
load("@prysm//tools/go:def.bzl", "go_library")
load("@io_bazel_rules_go//go:def.bzl", "go_test")

go_library(
name = "go_default_library",
srcs = [
"bindings.go",
"sha256_1_generic.go",
"bindings_amd64.go",
"bindings_arm64.go",
"wrapper_arm64.s",
"wrapper_linux_amd64.s",
"wrapper_windows_amd64.s",
],
deps = select({
"@io_bazel_rules_go//go/platform:amd64": ["@com_github_klauspost_cpuid_v2//:cpuid"],
"@io_bazel_rules_go//go/platform:arm64": ["@com_github_klauspost_cpuid_v2//:cpuid"],
"//conditions:default": []
}),
cgo = True,
copts = [
"-g -Wall -Werror -fpic",
"-O2",
"-Isrc",
],
cdeps = [":hashtree"],
importpath = "github.com/prysmaticlabs/hashtree",
visibility = ["//visibility:public"],
)

go_test(
name = "go_default_test",
srcs = [
"bindings_test.go",
],
embed = [":go_default_library"],
)

cc_library(
name = "hashtree",
srcs = [
"src/hashtree.c",
"src/sha256_sse_x1.S",
"src/sha256_avx_x1.S",
"src/sha256_avx_x4.S",
"src/sha256_avx_x8.S",
"src/sha256_avx_x16.S",
"src/sha256_shani.S",
"src/sha256_armv8_crypto.S",
"src/sha256_armv8_neon_x1.S",
"src/sha256_armv8_neon_x4.S",
],
hdrs = [
"src/hashtree.h",
],
copts = [
"-g -Wall -Werror -fpic",
"-O2",
"-Isrc",
"-fno-integrated-as",
],
visibility = ["//visibility:public"],
linkstatic = True,
)
Loading