11package encoding
22
3+ import (
4+ "crypto/sha256"
5+ "encoding/hex"
6+ "errors"
7+ "fmt"
8+
9+ "github.com/scroll-tech/go-ethereum/common"
10+ "github.com/scroll-tech/go-ethereum/crypto"
11+ "github.com/scroll-tech/go-ethereum/crypto/kzg4844"
12+ "github.com/scroll-tech/go-ethereum/log"
13+ )
14+
15+ // DACodecV9 updates the implementation of the base function checkCompressedDataCompatibility
16+ // to use the V9 compatibility check (checkCompressedDataCompatibilityV9) instead of the previous V7 version.
17+ //
18+ // As per Go's rules for shadowing methods with struct embedding, we need to override
19+ // all methods that (transitively) call checkCompressedDataCompatibility:
20+ // - checkCompressedDataCompatibility (updated to use V9)
21+ // - constructBlob (calls checkCompressedDataCompatibility)
22+ // - NewDABatch (calls constructBlob)
23+ // - CheckChunkCompressedDataCompatibility (calls CheckBatchCompressedDataCompatibility)
24+ // - CheckBatchCompressedDataCompatibility (calls checkCompressedDataCompatibility)
25+ // - estimateL1CommitBatchSizeAndBlobSize (calls checkCompressedDataCompatibility)
26+ // - EstimateChunkL1CommitBatchSizeAndBlobSize (calls estimateL1CommitBatchSizeAndBlobSize)
27+ // - EstimateBatchL1CommitBatchSizeAndBlobSize (calls estimateL1CommitBatchSizeAndBlobSize)
28+
329type DACodecV9 struct {
430 DACodecV8
531}
@@ -12,3 +38,184 @@ func NewDACodecV9() *DACodecV9 {
1238 },
1339 }
1440}
41+
42+ // checkCompressedDataCompatibility checks the compressed data compatibility for a batch.
43+ // It constructs a blob payload, compresses the data, and checks the compressed data compatibility.
44+ // flag checkLength indicates whether to check the length of the compressed data against the original data.
45+ // If checkLength is true, this function returns if compression is needed based on the compressed data's length, which is used when doing batch bytes encoding.
46+ // If checkLength is false, this function returns the result of the compatibility check, which is used when determining the chunk and batch contents.
47+ func (d * DACodecV9 ) checkCompressedDataCompatibility (payloadBytes []byte , checkLength bool ) ([]byte , bool , error ) {
48+ compressedPayloadBytes , err := d .CompressScrollBatchBytes (payloadBytes )
49+ if err != nil {
50+ return nil , false , fmt .Errorf ("failed to compress blob payload: %w" , err )
51+ }
52+
53+ if err = checkCompressedDataCompatibilityV9 (compressedPayloadBytes ); err != nil {
54+ log .Warn ("Compressed data compatibility check failed" , "err" , err , "payloadBytes" , hex .EncodeToString (payloadBytes ), "compressedPayloadBytes" , hex .EncodeToString (compressedPayloadBytes ))
55+ return nil , false , nil
56+ }
57+
58+ // check if compressed data is bigger or equal to the original data -> no need to compress
59+ if checkLength && len (compressedPayloadBytes ) >= len (payloadBytes ) {
60+ log .Warn ("Compressed data is bigger or equal to the original data" , "payloadBytes" , hex .EncodeToString (payloadBytes ), "compressedPayloadBytes" , hex .EncodeToString (compressedPayloadBytes ))
61+ return nil , false , nil
62+ }
63+
64+ return compressedPayloadBytes , true , nil
65+ }
66+
67+ // NewDABatch creates a DABatch including blob from the provided Batch.
68+ func (d * DACodecV9 ) NewDABatch (batch * Batch ) (DABatch , error ) {
69+ if len (batch .Blocks ) == 0 {
70+ return nil , errors .New ("batch must contain at least one block" )
71+ }
72+
73+ if err := checkBlocksBatchVSChunksConsistency (batch ); err != nil {
74+ return nil , fmt .Errorf ("failed to check blocks batch vs chunks consistency: %w" , err )
75+ }
76+
77+ blob , blobVersionedHash , blobBytes , challengeDigest , err := d .constructBlob (batch )
78+ if err != nil {
79+ return nil , fmt .Errorf ("failed to construct blob: %w" , err )
80+ }
81+
82+ daBatch , err := newDABatchV7 (d .Version (), batch .Index , blobVersionedHash , batch .ParentBatchHash , blob , blobBytes , challengeDigest )
83+ if err != nil {
84+ return nil , fmt .Errorf ("failed to construct DABatch: %w" , err )
85+ }
86+
87+ return daBatch , nil
88+ }
89+
90+ func (d * DACodecV9 ) constructBlob (batch * Batch ) (* kzg4844.Blob , common.Hash , []byte , common.Hash , error ) {
91+ blobBytes := make ([]byte , blobEnvelopeV7OffsetPayload )
92+
93+ payloadBytes , err := d .constructBlobPayload (batch )
94+ if err != nil {
95+ return nil , common.Hash {}, nil , common.Hash {}, fmt .Errorf ("failed to construct blob payload: %w" , err )
96+ }
97+
98+ compressedPayloadBytes , enableCompression , err := d .checkCompressedDataCompatibility (payloadBytes , true /* checkLength */ )
99+ if err != nil {
100+ return nil , common.Hash {}, nil , common.Hash {}, fmt .Errorf ("failed to check batch compressed data compatibility: %w" , err )
101+ }
102+
103+ isCompressedFlag := uint8 (0x0 )
104+ if enableCompression {
105+ isCompressedFlag = 0x1
106+ payloadBytes = compressedPayloadBytes
107+ }
108+
109+ sizeSlice := encodeSize3Bytes (uint32 (len (payloadBytes )))
110+
111+ blobBytes [blobEnvelopeV7OffsetVersion ] = uint8 (d .Version ())
112+ copy (blobBytes [blobEnvelopeV7OffsetByteSize :blobEnvelopeV7OffsetCompressedFlag ], sizeSlice )
113+ blobBytes [blobEnvelopeV7OffsetCompressedFlag ] = isCompressedFlag
114+ blobBytes = append (blobBytes , payloadBytes ... )
115+
116+ if len (blobBytes ) > maxEffectiveBlobBytes {
117+ log .Error ("ConstructBlob: Blob payload exceeds maximum size" , "size" , len (blobBytes ), "blobBytes" , hex .EncodeToString (blobBytes ))
118+ return nil , common.Hash {}, nil , common.Hash {}, fmt .Errorf ("blob exceeds maximum size: got %d, allowed %d" , len (blobBytes ), maxEffectiveBlobBytes )
119+ }
120+
121+ // convert raw data to BLSFieldElements
122+ blob , err := makeBlobCanonical (blobBytes )
123+ if err != nil {
124+ return nil , common.Hash {}, nil , common.Hash {}, fmt .Errorf ("failed to convert blobBytes to canonical form: %w" , err )
125+ }
126+
127+ // compute blob versioned hash
128+ c , err := kzg4844 .BlobToCommitment (blob )
129+ if err != nil {
130+ return nil , common.Hash {}, nil , common.Hash {}, fmt .Errorf ("failed to create blob commitment: %w" , err )
131+ }
132+ blobVersionedHash := kzg4844 .CalcBlobHashV1 (sha256 .New (), & c )
133+
134+ // compute challenge digest for codecv7, different from previous versions,
135+ // the blob bytes are padded to the max effective blob size, which is 131072 / 32 * 31 due to the blob encoding
136+ paddedBlobBytes := make ([]byte , maxEffectiveBlobBytes )
137+ copy (paddedBlobBytes , blobBytes )
138+
139+ challengeDigest := crypto .Keccak256Hash (crypto .Keccak256 (paddedBlobBytes ), blobVersionedHash [:])
140+
141+ return blob , blobVersionedHash , blobBytes , challengeDigest , nil
142+ }
143+
144+ // CheckChunkCompressedDataCompatibility checks the compressed data compatibility for a batch built from a single chunk.
145+ func (d * DACodecV9 ) CheckChunkCompressedDataCompatibility (c * Chunk ) (bool , error ) {
146+ // filling the needed fields for the batch used in the check
147+ b := & Batch {
148+ Chunks : []* Chunk {c },
149+ PrevL1MessageQueueHash : c .PrevL1MessageQueueHash ,
150+ PostL1MessageQueueHash : c .PostL1MessageQueueHash ,
151+ Blocks : c .Blocks ,
152+ }
153+
154+ return d .CheckBatchCompressedDataCompatibility (b )
155+ }
156+
157+ // CheckBatchCompressedDataCompatibility checks the compressed data compatibility for a batch.
158+ func (d * DACodecV9 ) CheckBatchCompressedDataCompatibility (b * Batch ) (bool , error ) {
159+ if len (b .Blocks ) == 0 {
160+ return false , errors .New ("batch must contain at least one block" )
161+ }
162+
163+ if err := checkBlocksBatchVSChunksConsistency (b ); err != nil {
164+ return false , fmt .Errorf ("failed to check blocks batch vs chunks consistency: %w" , err )
165+ }
166+
167+ payloadBytes , err := d .constructBlobPayload (b )
168+ if err != nil {
169+ return false , fmt .Errorf ("failed to construct blob payload: %w" , err )
170+ }
171+
172+ // This check is only used for sanity checks. If the check fails, it means that the compression did not work as expected.
173+ // rollup-relayer will try popping the last chunk of the batch (or last block of the chunk when in proposing chunks) and try again to see if it works as expected.
174+ // Since length check is used for DA and proving efficiency, it does not need to be checked here.
175+ _ , compatible , err := d .checkCompressedDataCompatibility (payloadBytes , false /* checkLength */ )
176+ if err != nil {
177+ return false , fmt .Errorf ("failed to check batch compressed data compatibility: %w" , err )
178+ }
179+
180+ return compatible , nil
181+ }
182+
183+ func (d * DACodecV9 ) estimateL1CommitBatchSizeAndBlobSize (batch * Batch ) (uint64 , uint64 , error ) {
184+ if len (batch .Blocks ) == 0 {
185+ return 0 , 0 , errors .New ("batch must contain at least one block" )
186+ }
187+
188+ blobBytes := make ([]byte , blobEnvelopeV7OffsetPayload )
189+
190+ payloadBytes , err := d .constructBlobPayload (batch )
191+ if err != nil {
192+ return 0 , 0 , fmt .Errorf ("failed to construct blob payload: %w" , err )
193+ }
194+
195+ compressedPayloadBytes , enableCompression , err := d .checkCompressedDataCompatibility (payloadBytes , true /* checkLength */ )
196+ if err != nil {
197+ return 0 , 0 , fmt .Errorf ("failed to check batch compressed data compatibility: %w" , err )
198+ }
199+
200+ if enableCompression {
201+ blobBytes = append (blobBytes , compressedPayloadBytes ... )
202+ } else {
203+ blobBytes = append (blobBytes , payloadBytes ... )
204+ }
205+
206+ return blobEnvelopeV7OffsetPayload + uint64 (len (payloadBytes )), calculatePaddedBlobSize (uint64 (len (blobBytes ))), nil
207+ }
208+
209+ // EstimateChunkL1CommitBatchSizeAndBlobSize estimates the L1 commit batch size and blob size for a single chunk.
210+ func (d * DACodecV9 ) EstimateChunkL1CommitBatchSizeAndBlobSize (chunk * Chunk ) (uint64 , uint64 , error ) {
211+ return d .estimateL1CommitBatchSizeAndBlobSize (& Batch {
212+ Blocks : chunk .Blocks ,
213+ PrevL1MessageQueueHash : chunk .PrevL1MessageQueueHash ,
214+ PostL1MessageQueueHash : chunk .PostL1MessageQueueHash ,
215+ })
216+ }
217+
218+ // EstimateBatchL1CommitBatchSizeAndBlobSize estimates the L1 commit batch size and blob size for a batch.
219+ func (d * DACodecV9 ) EstimateBatchL1CommitBatchSizeAndBlobSize (batch * Batch ) (uint64 , uint64 , error ) {
220+ return d .estimateL1CommitBatchSizeAndBlobSize (batch )
221+ }
0 commit comments