forked from anza-xyz/agave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmerkle.rs
More file actions
1858 lines (1756 loc) · 70.2 KB
/
Copy pathmerkle.rs
File metadata and controls
1858 lines (1756 loc) · 70.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#[cfg(test)]
use crate::shred::ShredType;
use {
crate::{
shred::{
self,
common::impl_shred_common,
dispatch,
merkle_tree::*,
payload::{Payload, PayloadMutGuard},
shred_code, shred_data,
traits::{
Shred as ShredTrait, ShredCode as ShredCodeTrait, ShredData as ShredDataTrait,
},
CodingShredHeader, DataShredHeader, Error, ProcessShredsStats, ShredCommonHeader,
ShredFlags, ShredVariant, CODING_SHREDS_PER_FEC_BLOCK, DATA_SHREDS_PER_FEC_BLOCK,
SHREDS_PER_FEC_BLOCK, SIZE_OF_CODING_SHRED_HEADERS, SIZE_OF_DATA_SHRED_HEADERS,
SIZE_OF_SIGNATURE,
},
shredder::ReedSolomonCache,
},
assert_matches::debug_assert_matches,
itertools::{Either, Itertools},
rayon::{prelude::*, ThreadPool},
reed_solomon_erasure::Error::{InvalidIndex, TooFewParityShards},
solana_clock::Slot,
solana_hash::Hash,
solana_keypair::Keypair,
solana_perf::packet::deserialize_from_with_limit,
solana_pubkey::Pubkey,
solana_sha256_hasher::hashv,
solana_signature::Signature,
solana_signer::Signer,
static_assertions::const_assert_eq,
std::{
cmp::Ordering,
io::{Cursor, Write},
ops::Range,
time::Instant,
},
};
const_assert_eq!(ShredData::SIZE_OF_PAYLOAD, 1203);
// Layout: {common, data} headers | data buffer
// | [Merkle root of the previous erasure batch if chained]
// | Merkle proof
// | [Retransmitter's signature if resigned]
// The slice past signature till the end of the data buffer is erasure coded.
// The slice past signature and before the merkle proof is hashed to generate
// the Merkle tree. The root of the Merkle tree is signed.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct ShredData {
common_header: ShredCommonHeader,
data_header: DataShredHeader,
payload: Payload,
}
// Layout: {common, coding} headers | erasure coded shard
// | [Merkle root of the previous erasure batch if chained]
// | Merkle proof
// | [Retransmitter's signature if resigned]
// The slice past signature and before the merkle proof is hashed to generate
// the Merkle tree. The root of the Merkle tree is signed.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct ShredCode {
common_header: ShredCommonHeader,
coding_header: CodingShredHeader,
payload: Payload,
}
#[derive(Clone, Debug, Eq, PartialEq)]
pub(crate) enum Shred {
ShredCode(ShredCode),
ShredData(ShredData),
}
impl Shred {
dispatch!(fn erasure_shard_index(&self) -> Result<usize, Error>);
dispatch!(fn erasure_shard_mut(&mut self) -> Result<PayloadMutGuard<'_, Range<usize>>, Error>);
dispatch!(fn merkle_node(&self) -> Result<Hash, Error>);
dispatch!(fn sanitize(&self) -> Result<(), Error>);
dispatch!(fn set_chained_merkle_root(&mut self, chained_merkle_root: &Hash) -> Result<(), Error>);
dispatch!(fn set_signature(&mut self, signature: Signature));
dispatch!(fn signed_data(&self) -> Result<Hash, Error>);
dispatch!(pub(super) fn common_header(&self) -> &ShredCommonHeader);
dispatch!(pub(super) fn payload(&self) -> &Payload);
dispatch!(pub(super) fn set_retransmitter_signature(&mut self, signature: &Signature) -> Result<(), Error>);
#[inline]
fn fec_set_index(&self) -> u32 {
self.common_header().fec_set_index
}
#[inline]
fn merkle_proof(&self) -> Result<impl Iterator<Item = &MerkleProofEntry>, Error> {
match self {
Self::ShredCode(shred) => shred.merkle_proof().map(Either::Left),
Self::ShredData(shred) => shred.merkle_proof().map(Either::Right),
}
}
#[inline]
fn set_merkle_proof<'a, I>(&mut self, proof: I) -> Result<(), Error>
where
I: IntoIterator<Item = Result<&'a MerkleProofEntry, Error>>,
{
match self {
Self::ShredCode(shred) => shred.set_merkle_proof(proof),
Self::ShredData(shred) => shred.set_merkle_proof(proof),
}
}
#[must_use]
fn verify(&self, pubkey: &Pubkey) -> bool {
match self.signed_data() {
Ok(data) => self.signature().verify(pubkey.as_ref(), data.as_ref()),
Err(_) => false,
}
}
#[inline]
fn signature(&self) -> &Signature {
&self.common_header().signature
}
pub(super) fn from_payload<T: AsRef<[u8]>>(shred: T) -> Result<Self, Error>
where
Payload: From<T>,
{
match shred::layout::get_shred_variant(shred.as_ref())? {
ShredVariant::MerkleCode { .. } => Ok(Self::ShredCode(ShredCode::from_payload(shred)?)),
ShredVariant::MerkleData { .. } => Ok(Self::ShredData(ShredData::from_payload(shred)?)),
}
}
}
#[cfg(test)]
impl Shred {
dispatch!(fn erasure_shard(&self) -> Result<&[u8], Error>);
dispatch!(fn proof_size(&self) -> Result<u8, Error>);
dispatch!(pub(super) fn chained_merkle_root(&self) -> Result<Hash, Error>);
dispatch!(pub(super) fn merkle_root(&self) -> Result<Hash, Error>);
dispatch!(pub(super) fn retransmitter_signature(&self) -> Result<Signature, Error>);
dispatch!(pub(super) fn retransmitter_signature_offset(&self) -> Result<usize, Error>);
fn index(&self) -> u32 {
self.common_header().index
}
fn shred_type(&self) -> ShredType {
ShredType::from(self.common_header().shred_variant)
}
}
impl ShredData {
impl_merkle_shred!(MerkleData);
// Offset into the payload where the erasure coded slice begins.
const ERASURE_SHARD_START_OFFSET: usize = SIZE_OF_SIGNATURE;
// Given shred payload, ShredVariant{..} and DataShredHeader.size, returns
// the slice storing ledger entries in the shred.
pub(super) fn get_data(
shred: &[u8],
proof_size: u8,
resigned: bool,
size: u16, // DataShredHeader.size
) -> Result<&[u8], Error> {
let size = usize::from(size);
let data_buffer_size = Self::capacity(proof_size, resigned)?;
(Self::SIZE_OF_HEADERS..=Self::SIZE_OF_HEADERS + data_buffer_size)
.contains(&size)
.then(|| shred.get(Self::SIZE_OF_HEADERS..size))
.flatten()
.ok_or_else(|| Error::InvalidDataSize {
size: size as u16,
payload: shred.len(),
})
}
pub(super) fn get_merkle_root(shred: &[u8], proof_size: u8, resigned: bool) -> Option<Hash> {
debug_assert_eq!(
shred::layout::get_shred_variant(shred).unwrap(),
ShredVariant::MerkleData {
proof_size,
resigned,
},
);
// Shred index in the erasure batch.
let index = {
let fec_set_index = shred::layout::get_fec_set_index(shred)?;
shred::layout::get_index(shred)?
.checked_sub(fec_set_index)
.map(usize::try_from)?
.ok()?
};
let proof_offset = Self::get_proof_offset(proof_size, resigned).ok()?;
let proof = get_merkle_proof(shred, proof_offset, proof_size).ok()?;
let node = get_merkle_node(shred, SIZE_OF_SIGNATURE..proof_offset).ok()?;
get_merkle_root(index, node, proof).ok()
}
pub(crate) const fn const_capacity(proof_size: u8, resigned: bool) -> Result<usize, u8> {
// Merkle proof is generated and signed after coding shreds are
// generated. Coding shred headers cannot be erasure coded either.
match Self::SIZE_OF_PAYLOAD.checked_sub(
Self::SIZE_OF_HEADERS
+ SIZE_OF_MERKLE_ROOT
+ (proof_size as usize) * SIZE_OF_MERKLE_PROOF_ENTRY
+ if resigned { SIZE_OF_SIGNATURE } else { 0 },
) {
Some(v) => Ok(v),
None => Err(proof_size),
}
}
}
impl ShredCode {
impl_merkle_shred!(MerkleCode);
// Offset into the payload where the erasure coded slice begins.
const ERASURE_SHARD_START_OFFSET: usize = Self::SIZE_OF_HEADERS;
pub(super) fn get_merkle_root(shred: &[u8], proof_size: u8, resigned: bool) -> Option<Hash> {
debug_assert_eq!(
shred::layout::get_shred_variant(shred).unwrap(),
ShredVariant::MerkleCode {
proof_size,
resigned,
},
);
// Shred index in the erasure batch.
let index = {
let num_data_shreds = <[u8; 2]>::try_from(shred.get(83..85)?)
.map(u16::from_le_bytes)
.map(usize::from)
.ok()?;
let position = <[u8; 2]>::try_from(shred.get(87..89)?)
.map(u16::from_le_bytes)
.map(usize::from)
.ok()?;
num_data_shreds.checked_add(position)?
};
let proof_offset = Self::get_proof_offset(proof_size, resigned).ok()?;
let proof = get_merkle_proof(shred, proof_offset, proof_size).ok()?;
let node = get_merkle_node(shred, SIZE_OF_SIGNATURE..proof_offset).ok()?;
get_merkle_root(index, node, proof).ok()
}
}
macro_rules! impl_merkle_shred {
($variant:ident) => {
// proof_size is the number of merkle proof entries.
#[inline]
fn proof_size(&self) -> Result<u8, Error> {
match self.common_header.shred_variant {
ShredVariant::$variant { proof_size, .. } => Ok(proof_size),
_ => Err(Error::InvalidShredVariant),
}
}
// For ShredCode, size of buffer embedding erasure codes.
// For ShredData, maximum size of ledger data that can be embedded in a
// data-shred, which is also equal to:
// ShredCode::capacity(proof_size, chained, resigned).unwrap()
// - ShredData::SIZE_OF_HEADERS
// + SIZE_OF_SIGNATURE
pub(super) fn capacity(proof_size: u8, resigned: bool) -> Result<usize, Error> {
// Merkle proof is generated and signed after coding shreds are
// generated. Coding shred headers cannot be erasure coded either.
Self::SIZE_OF_PAYLOAD
.checked_sub(
Self::SIZE_OF_HEADERS
+ SIZE_OF_MERKLE_ROOT
+ usize::from(proof_size) * SIZE_OF_MERKLE_PROOF_ENTRY
+ if resigned { SIZE_OF_SIGNATURE } else { 0 },
)
.ok_or(Error::InvalidProofSize(proof_size))
}
// Where the merkle proof starts in the shred binary.
fn proof_offset(&self) -> Result<usize, Error> {
let ShredVariant::$variant {
proof_size,
resigned,
} = self.common_header.shred_variant
else {
return Err(Error::InvalidShredVariant);
};
Self::get_proof_offset(proof_size, resigned)
}
fn get_proof_offset(proof_size: u8, resigned: bool) -> Result<usize, Error> {
Ok(Self::SIZE_OF_HEADERS + Self::capacity(proof_size, resigned)? + SIZE_OF_MERKLE_ROOT)
}
fn chained_merkle_root_offset(&self) -> Result<usize, Error> {
let ShredVariant::$variant {
proof_size,
resigned,
} = self.common_header.shred_variant
else {
return Err(Error::InvalidShredVariant);
};
Self::get_chained_merkle_root_offset(proof_size, resigned)
}
pub(super) fn get_chained_merkle_root_offset(
proof_size: u8,
resigned: bool,
) -> Result<usize, Error> {
Ok(Self::SIZE_OF_HEADERS + Self::capacity(proof_size, resigned)?)
}
pub(super) fn chained_merkle_root(&self) -> Result<Hash, Error> {
let offset = self.chained_merkle_root_offset()?;
self.payload
.get(offset..offset + SIZE_OF_MERKLE_ROOT)
.map(|chained_merkle_root| {
<[u8; SIZE_OF_MERKLE_ROOT]>::try_from(chained_merkle_root)
.map(Hash::new_from_array)
.unwrap()
})
.ok_or(Error::InvalidPayloadSize(self.payload.len()))
}
fn set_chained_merkle_root(&mut self, chained_merkle_root: &Hash) -> Result<(), Error> {
let offset = self.chained_merkle_root_offset()?;
let Some(mut buffer) = self.payload.get_mut(offset..offset + SIZE_OF_MERKLE_ROOT)
else {
return Err(Error::InvalidPayloadSize(self.payload.len()));
};
buffer.copy_from_slice(chained_merkle_root.as_ref());
Ok(())
}
pub(super) fn merkle_root(&self) -> Result<Hash, Error> {
let proof_size = self.proof_size()?;
let index = self.erasure_shard_index()?;
let proof_offset = self.proof_offset()?;
let proof = get_merkle_proof(&self.payload, proof_offset, proof_size)?;
let node = get_merkle_node(&self.payload, SIZE_OF_SIGNATURE..proof_offset)?;
get_merkle_root(index, node, proof)
}
fn merkle_proof(&self) -> Result<impl Iterator<Item = &MerkleProofEntry>, Error> {
let proof_size = self.proof_size()?;
let proof_offset = self.proof_offset()?;
get_merkle_proof(&self.payload, proof_offset, proof_size)
}
fn merkle_node(&self) -> Result<Hash, Error> {
let proof_offset = self.proof_offset()?;
get_merkle_node(&self.payload, SIZE_OF_SIGNATURE..proof_offset)
}
fn set_merkle_proof<'a, I>(&mut self, proof: I) -> Result<(), Error>
where
I: IntoIterator<Item = Result<&'a MerkleProofEntry, Error>>,
{
let proof_size = self.proof_size()?;
let proof_offset = self.proof_offset()?;
let mut slice = self
.payload
.get_mut(proof_offset..)
.ok_or(Error::InvalidProofSize(proof_size))?;
let mut cursor = Cursor::new(slice.as_mut());
let proof_size = usize::from(proof_size);
proof.into_iter().enumerate().try_for_each(|(k, entry)| {
if k >= proof_size {
return Err(Error::InvalidMerkleProof);
}
Ok(cursor.write_all(&entry?[..])?)
})?;
// Verify that exactly proof_size many entries are written.
if cursor.position() as usize != proof_size * SIZE_OF_MERKLE_PROOF_ENTRY {
return Err(Error::InvalidMerkleProof);
}
Ok(())
}
pub(super) fn retransmitter_signature(&self) -> Result<Signature, Error> {
let offset = self.retransmitter_signature_offset()?;
self.payload
.get(offset..offset + SIZE_OF_SIGNATURE)
.map(|bytes| <[u8; SIZE_OF_SIGNATURE]>::try_from(bytes).unwrap())
.map(Signature::from)
.ok_or(Error::InvalidPayloadSize(self.payload.len()))
}
fn set_retransmitter_signature(&mut self, signature: &Signature) -> Result<(), Error> {
let offset = self.retransmitter_signature_offset()?;
let Some(mut buffer) = self.payload.get_mut(offset..offset + SIZE_OF_SIGNATURE) else {
return Err(Error::InvalidPayloadSize(self.payload.len()));
};
buffer.copy_from_slice(signature.as_ref());
Ok(())
}
pub(super) fn retransmitter_signature_offset(&self) -> Result<usize, Error> {
let ShredVariant::$variant {
proof_size,
resigned,
} = self.common_header.shred_variant
else {
return Err(Error::InvalidShredVariant);
};
Self::get_retransmitter_signature_offset(proof_size, resigned)
}
pub(super) fn get_retransmitter_signature_offset(
proof_size: u8,
resigned: bool,
) -> Result<usize, Error> {
if !resigned {
return Err(Error::InvalidShredVariant);
}
let proof_offset = Self::get_proof_offset(proof_size, resigned)?;
Ok(proof_offset + usize::from(proof_size) * SIZE_OF_MERKLE_PROOF_ENTRY)
}
// Returns the offsets into the payload which are erasure coded.
fn erasure_shard_offsets(&self) -> Result<Range<usize>, Error> {
if self.payload.len() != Self::SIZE_OF_PAYLOAD {
return Err(Error::InvalidPayloadSize(self.payload.len()));
}
let ShredVariant::$variant {
proof_size,
resigned,
} = self.common_header.shred_variant
else {
return Err(Error::InvalidShredVariant);
};
let offset = Self::SIZE_OF_HEADERS + Self::capacity(proof_size, resigned)?;
Ok(Self::ERASURE_SHARD_START_OFFSET..offset)
}
// Returns the erasure coded slice as an immutable reference.
fn erasure_shard(&self) -> Result<&[u8], Error> {
self.payload
.get(self.erasure_shard_offsets()?)
.ok_or(Error::InvalidPayloadSize(self.payload.len()))
}
// Returns the erasure coded slice as a mutable reference.
fn erasure_shard_mut(&mut self) -> Result<PayloadMutGuard<'_, Range<usize>>, Error> {
let offsets = self.erasure_shard_offsets()?;
let payload_size = self.payload.len();
self.payload
.get_mut(offsets)
.ok_or(Error::InvalidPayloadSize(payload_size))
}
};
}
use {impl_merkle_shred, solana_packet::PACKET_DATA_SIZE};
impl<'a> ShredTrait<'a> for ShredData {
type SignedData = Hash;
impl_shred_common!();
// Also equal to:
// ShredData::SIZE_OF_HEADERS
// + ShredData::capacity(proof_size, chained, resigned).unwrap()
// + if chained { SIZE_OF_MERKLE_ROOT } else { 0 }
// + usize::from(proof_size) * SIZE_OF_MERKLE_PROOF_ENTRY
// + if resigned { SIZE_OF_SIGNATURE } else { 0 }
const SIZE_OF_PAYLOAD: usize =
ShredCode::SIZE_OF_PAYLOAD - ShredCode::SIZE_OF_HEADERS + SIZE_OF_SIGNATURE;
const SIZE_OF_HEADERS: usize = SIZE_OF_DATA_SHRED_HEADERS;
fn from_payload<T>(payload: T) -> Result<Self, Error>
where
Payload: From<T>,
{
let mut payload = Payload::from(payload);
// see: https://github.com/solana-labs/solana/pull/10109
if payload.len() < Self::SIZE_OF_PAYLOAD {
return Err(Error::InvalidPayloadSize(payload.len()));
}
payload.truncate(Self::SIZE_OF_PAYLOAD);
let (common_header, data_header): (ShredCommonHeader, _) =
deserialize_from_with_limit(&payload[..], PACKET_DATA_SIZE)?;
if !matches!(common_header.shred_variant, ShredVariant::MerkleData { .. }) {
return Err(Error::InvalidShredVariant);
}
let shred = Self {
common_header,
data_header,
payload,
};
shred.sanitize()?;
Ok(shred)
}
fn erasure_shard_index(&self) -> Result<usize, Error> {
shred_data::erasure_shard_index(self).ok_or_else(|| {
let headers = Box::new((self.common_header, self.data_header));
Error::InvalidErasureShardIndex(headers)
})
}
fn erasure_shard(&self) -> Result<&[u8], Error> {
Self::erasure_shard(self)
}
fn sanitize(&self) -> Result<(), Error> {
let shred_variant = self.common_header.shred_variant;
if !matches!(shred_variant, ShredVariant::MerkleData { .. }) {
return Err(Error::InvalidShredVariant);
}
let _ = self.merkle_proof()?;
shred_data::sanitize(self)
}
fn signed_data(&'a self) -> Result<Self::SignedData, Error> {
self.merkle_root()
}
}
impl<'a> ShredTrait<'a> for ShredCode {
type SignedData = Hash;
impl_shred_common!();
const SIZE_OF_PAYLOAD: usize = shred_code::ShredCode::SIZE_OF_PAYLOAD;
const SIZE_OF_HEADERS: usize = SIZE_OF_CODING_SHRED_HEADERS;
fn from_payload<T>(payload: T) -> Result<Self, Error>
where
Payload: From<T>,
{
let mut payload = Payload::from(payload);
let (common_header, coding_header): (ShredCommonHeader, _) =
deserialize_from_with_limit(&payload[..], PACKET_DATA_SIZE)?;
if !matches!(common_header.shred_variant, ShredVariant::MerkleCode { .. }) {
return Err(Error::InvalidShredVariant);
}
// see: https://github.com/solana-labs/solana/pull/10109
if payload.len() < Self::SIZE_OF_PAYLOAD {
return Err(Error::InvalidPayloadSize(payload.len()));
}
payload.truncate(Self::SIZE_OF_PAYLOAD);
let shred = Self {
common_header,
coding_header,
payload,
};
shred.sanitize()?;
Ok(shred)
}
fn erasure_shard_index(&self) -> Result<usize, Error> {
shred_code::erasure_shard_index(self).ok_or_else(|| {
let headers = Box::new((self.common_header, self.coding_header));
Error::InvalidErasureShardIndex(headers)
})
}
fn erasure_shard(&self) -> Result<&[u8], Error> {
Self::erasure_shard(self)
}
fn sanitize(&self) -> Result<(), Error> {
let shred_variant = self.common_header.shred_variant;
if !matches!(shred_variant, ShredVariant::MerkleCode { .. }) {
return Err(Error::InvalidShredVariant);
}
let _ = self.merkle_proof()?;
shred_code::sanitize(self)
}
fn signed_data(&'a self) -> Result<Self::SignedData, Error> {
self.merkle_root()
}
}
impl ShredDataTrait for ShredData {
#[inline]
fn data_header(&self) -> &DataShredHeader {
&self.data_header
}
#[inline]
fn data(&self) -> Result<&[u8], Error> {
let ShredVariant::MerkleData {
proof_size,
resigned,
} = self.common_header.shred_variant
else {
return Err(Error::InvalidShredVariant);
};
Self::get_data(&self.payload, proof_size, resigned, self.data_header.size)
}
}
impl ShredCodeTrait for ShredCode {
#[inline]
fn coding_header(&self) -> &CodingShredHeader {
&self.coding_header
}
}
fn get_merkle_proof(
shred: &[u8],
proof_offset: usize, // Where the merkle proof starts.
proof_size: u8, // Number of proof entries.
) -> Result<impl Iterator<Item = &MerkleProofEntry>, Error> {
let proof_size = usize::from(proof_size) * SIZE_OF_MERKLE_PROOF_ENTRY;
Ok(shred
.get(proof_offset..proof_offset + proof_size)
.ok_or(Error::InvalidPayloadSize(shred.len()))?
.chunks(SIZE_OF_MERKLE_PROOF_ENTRY)
.map(<&MerkleProofEntry>::try_from)
.map(Result::unwrap))
}
fn get_merkle_node(shred: &[u8], offsets: Range<usize>) -> Result<Hash, Error> {
let node = shred
.get(offsets)
.ok_or(Error::InvalidPayloadSize(shred.len()))?;
Ok(hashv(&[MERKLE_HASH_PREFIX_LEAF, node]))
}
pub(super) fn recover(
mut shreds: Vec<Shred>,
reed_solomon_cache: &ReedSolomonCache,
) -> Result<impl Iterator<Item = Result<Shred, Error>> + use<>, Error> {
// Sort shreds by their erasure shard index.
// In particular this places all data shreds before coding shreds.
let is_sorted = |(a, b)| cmp_shred_erasure_shard_index(a, b).is_le();
if !shreds.iter().tuple_windows().all(is_sorted) {
shreds.sort_unstable_by(cmp_shred_erasure_shard_index);
}
// Grab {common, coding} headers from the last coding shred.
// Incoming shreds are resigned immediately after signature verification,
// so we can just grab the retransmitter signature from one of the
// available shreds and attach it to the recovered shreds.
let (common_header, coding_header, merkle_root, chained_merkle_root, retransmitter_signature) = {
// The last shred must be a coding shred by the above sorting logic.
let Some(Shred::ShredCode(shred)) = shreds.last() else {
return Err(Error::from(TooFewParityShards));
};
let position = u32::from(shred.coding_header.position);
let index = shred.common_header.index.checked_sub(position);
let common_header = ShredCommonHeader {
index: index.ok_or(Error::from(InvalidIndex))?,
..shred.common_header
};
let coding_header = CodingShredHeader {
position: 0u16,
..shred.coding_header
};
(
common_header,
coding_header,
shred.merkle_root()?,
shred.chained_merkle_root().ok(),
shred.retransmitter_signature().ok(),
)
};
debug_assert_matches!(common_header.shred_variant, ShredVariant::MerkleCode { .. });
let (proof_size, resigned) = match common_header.shred_variant {
ShredVariant::MerkleCode {
proof_size,
resigned,
} => (proof_size, resigned),
ShredVariant::MerkleData { .. } => {
return Err(Error::InvalidShredVariant);
}
};
debug_assert!(!resigned || retransmitter_signature.is_some());
// Verify that shreds belong to the same erasure batch
// and have consistent headers.
debug_assert!(shreds.iter().all(|shred| {
let ShredCommonHeader {
signature: _, // signature are verified further below.
shred_variant,
slot,
index: _,
version,
fec_set_index,
} = shred.common_header();
slot == &common_header.slot
&& version == &common_header.version
&& fec_set_index == &common_header.fec_set_index
&& match shred {
Shred::ShredData(_) => {
shred_variant
== &ShredVariant::MerkleData {
proof_size,
resigned,
}
}
Shred::ShredCode(shred) => {
let CodingShredHeader {
num_data_shreds,
num_coding_shreds,
position: _,
} = shred.coding_header;
shred_variant
== &ShredVariant::MerkleCode {
proof_size,
resigned,
}
&& num_data_shreds == coding_header.num_data_shreds
&& num_coding_shreds == coding_header.num_coding_shreds
}
}
}));
let num_data_shreds = usize::from(coding_header.num_data_shreds);
let num_coding_shreds = usize::from(coding_header.num_coding_shreds);
let num_shards = num_data_shreds + num_coding_shreds;
// Identify which shreds are missing and create stub shreds in their place.
let mut mask = vec![false; num_shards];
let mut shreds = {
let make_stub_shred = |erasure_shard_index| {
make_stub_shred(
erasure_shard_index,
&common_header,
&coding_header,
&chained_merkle_root,
&retransmitter_signature,
)
};
let mut batch = Vec::with_capacity(num_shards);
// By the sorting logic earlier above, this visits shreds in the order
// of their erasure shard index.
for shred in shreds {
// The leader signs the Merkle root and shreds in the same erasure
// batch have the same Merkle root. So the signatures are the same
// or shreds are not from the same erasure batch.
if shred.signature() != &common_header.signature {
return Err(Error::InvalidMerkleRoot);
}
let erasure_shard_index = shred.erasure_shard_index()?;
if !(batch.len()..num_shards).contains(&erasure_shard_index) {
return Err(Error::from(InvalidIndex));
}
// Push stub shreds as placeholder for the missing shreds in
// between.
while batch.len() < erasure_shard_index {
batch.push(make_stub_shred(batch.len())?);
}
mask[erasure_shard_index] = true;
batch.push(shred);
}
// Push stub shreds as placeholder for the missing shreds at the end.
while batch.len() < num_shards {
batch.push(make_stub_shred(batch.len())?);
}
batch
};
// Obtain erasure encoded shards from the shreds and reconstruct shreds.
let mut shards = shreds
.iter_mut()
.zip(&mask)
.map(|(shred, &mask)| Ok((shred.erasure_shard_mut()?, mask)))
.collect::<Result<Vec<_>, Error>>()?;
reed_solomon_cache
.get(num_data_shreds, num_coding_shreds)?
.reconstruct(&mut shards)?;
// Drop the mut guards to allow further mutation below.
drop(shards);
// Verify and sanitize recovered shreds, re-compute the Merkle tree and set
// the merkle proof on the recovered shreds.
let nodes = shreds
.iter_mut()
.zip(&mask)
.enumerate()
.map(|(index, (shred, mask))| {
if !mask {
if index < num_data_shreds {
let Shred::ShredData(shred) = shred else {
return Err(Error::InvalidRecoveredShred);
};
let (common_header, data_header) =
deserialize_from_with_limit(&shred.payload[..], PACKET_DATA_SIZE)?;
if shred.common_header != common_header {
return Err(Error::InvalidRecoveredShred);
}
shred.data_header = data_header;
} else if !matches!(shred, Shred::ShredCode(_)) {
return Err(Error::InvalidRecoveredShred);
}
shred.sanitize()?;
}
shred.merkle_node()
});
let tree = make_merkle_tree(nodes)?;
// The attached signature verifies only if we obtain the same Merkle root.
// Because shreds obtained from turbine or repair are sig-verified, this
// also means that we don't need to verify signatures for recovered shreds.
if tree.last() != Some(&merkle_root) {
return Err(Error::InvalidMerkleRoot);
}
let set_merkle_proof = move |(index, (mut shred, mask)): (_, (Shred, _))| {
if mask {
debug_assert!({
let proof = make_merkle_proof(index, num_shards, &tree);
shred.merkle_proof()?.map(Some).eq(proof.map(Result::ok))
});
Ok(None)
} else {
let proof = make_merkle_proof(index, num_shards, &tree);
shred.set_merkle_proof(proof)?;
// Already sanitized after reconstruct.
debug_assert_matches!(shred.sanitize(), Ok(()));
// Assert that shred payload is fully populated.
debug_assert_eq!(shred, {
let shred = shred.payload().clone();
Shred::from_payload(shred).unwrap()
});
Ok(Some(shred))
}
};
Ok(shreds
.into_iter()
.zip(mask)
.enumerate()
.map(set_merkle_proof)
.filter_map(Result::transpose))
}
// Compares shreds of the same erasure batch by their erasure shard index
// within the erasure batch.
#[inline]
fn cmp_shred_erasure_shard_index(a: &Shred, b: &Shred) -> Ordering {
debug_assert_eq!(
a.common_header().fec_set_index,
b.common_header().fec_set_index
);
// Ordering by erasure shard index is equivalent to:
// * ShredType::Data < ShredType::Code.
// * Tie break by shred index.
match (a, b) {
(Shred::ShredCode(_), Shred::ShredData(_)) => Ordering::Greater,
(Shred::ShredData(_), Shred::ShredCode(_)) => Ordering::Less,
(Shred::ShredCode(a), Shred::ShredCode(b)) => {
a.common_header.index.cmp(&b.common_header.index)
}
(Shred::ShredData(a), Shred::ShredData(b)) => {
a.common_header.index.cmp(&b.common_header.index)
}
}
}
// Creates a minimally populated shred which will be a placeholder for a
// missing shred when running erasure recovery. This allows us to obtain
// mutable references to erasure coded slices within the shreds and reconstruct
// shreds in place.
fn make_stub_shred(
erasure_shard_index: usize,
common_header: &ShredCommonHeader,
coding_header: &CodingShredHeader,
chained_merkle_root: &Option<Hash>,
retransmitter_signature: &Option<Signature>,
) -> Result<Shred, Error> {
let num_data_shreds = usize::from(coding_header.num_data_shreds);
let mut shred = if let Some(position) = erasure_shard_index.checked_sub(num_data_shreds) {
let position = u16::try_from(position).map_err(|_| Error::from(InvalidIndex))?;
let common_header = ShredCommonHeader {
index: common_header.index + u32::from(position),
..*common_header
};
let coding_header = CodingShredHeader {
position,
..*coding_header
};
// For coding shreds {common,coding} headers are not part of the
// erasure coded slice and need to be written to the payload here.
let mut payload = vec![0u8; ShredCode::SIZE_OF_PAYLOAD];
bincode::serialize_into(&mut payload[..], &(&common_header, &coding_header))?;
Shred::ShredCode(ShredCode {
common_header,
coding_header,
payload: Payload::from(payload),
})
} else {
let ShredVariant::MerkleCode { proof_size, .. } = common_header.shred_variant else {
return Err(Error::InvalidShredVariant);
};
let shred_variant = ShredVariant::MerkleData {
proof_size,
resigned: retransmitter_signature.is_some(),
};
let index = common_header.fec_set_index
+ u32::try_from(erasure_shard_index).map_err(|_| InvalidIndex)?;
let common_header = ShredCommonHeader {
shred_variant,
index,
..*common_header
};
// Data header will be overwritten from the recovered shard.
let data_header = DataShredHeader {
parent_offset: 0u16,
flags: ShredFlags::empty(),
size: 0u16,
};
// For data shreds only the signature part of the {common,data} headers
// is not erasure coded and it needs to be written to the payload here.
let mut payload = vec![0u8; ShredData::SIZE_OF_PAYLOAD];
payload[..SIZE_OF_SIGNATURE].copy_from_slice(common_header.signature.as_ref());
Shred::ShredData(ShredData {
common_header,
data_header,
// Recovered data shreds are concurrently inserted into blockstore
// while their payload is sent to retransmit-stage. Using a shared
// payload between the two concurrent paths will reduce allocations
// and memcopies.
payload: Payload::from(payload),
})
};
if let Some(chained_merkle_root) = chained_merkle_root {
shred.set_chained_merkle_root(chained_merkle_root)?;
}
if let Some(signature) = retransmitter_signature {
shred.set_retransmitter_signature(signature)?;
}
Ok(shred)
}
// Generates data shreds for the current erasure batch.
// Updates ShredCommonHeader.index for data shreds of the next batch.
fn make_shreds_data<'a>(
common_header: &'a mut ShredCommonHeader,
mut data_header: DataShredHeader,
chunks: impl IntoIterator<Item = &'a [u8]> + 'a,
) -> impl Iterator<Item = ShredData> + 'a {
debug_assert_matches!(common_header.shred_variant, ShredVariant::MerkleData { .. });
chunks.into_iter().map(move |chunk| {
debug_assert_matches!(common_header.shred_variant,
ShredVariant::MerkleData { proof_size, resigned }
if chunk.len() <= ShredData::capacity(proof_size, resigned).unwrap()
);
let size = ShredData::SIZE_OF_HEADERS + chunk.len();
let mut payload = vec![0u8; ShredData::SIZE_OF_PAYLOAD];
payload[ShredData::SIZE_OF_HEADERS..size].copy_from_slice(chunk);
data_header.size = size as u16;
let shred = ShredData {
common_header: *common_header,
data_header,
payload: Payload::from(payload),
};
common_header.index += 1;
shred
})
}
// Generates coding shred blanks for the current erasure batch.
// Updates ShredCommonHeader.index for coding shreds of the next batch.
// These have the correct headers, but none of the payloads and signatures.
fn make_shreds_code_header_only(
common_header: &mut ShredCommonHeader,
) -> impl Iterator<Item = ShredCode> + '_ {
debug_assert_matches!(common_header.shred_variant, ShredVariant::MerkleCode { .. });
let mut coding_header = CodingShredHeader {
num_data_shreds: DATA_SHREDS_PER_FEC_BLOCK as u16,
num_coding_shreds: CODING_SHREDS_PER_FEC_BLOCK as u16,
position: 0,
};
std::iter::repeat_with(move || {
let shred = ShredCode {
common_header: *common_header,
coding_header,
payload: Payload::from(vec![0u8; ShredCode::SIZE_OF_PAYLOAD]),
};
common_header.index += 1;
coding_header.position += 1;
shred
})
.take(CODING_SHREDS_PER_FEC_BLOCK)
}
#[allow(clippy::too_many_arguments)]
pub(crate) fn make_shreds_from_data(
thread_pool: &ThreadPool,
keypair: &Keypair,
chained_merkle_root: Hash,
data: &[u8], // Serialized &[Entry]
slot: Slot,
parent_slot: Slot,
shred_version: u16,
reference_tick: u8,
is_last_in_slot: bool,
next_shred_index: u32,
next_code_index: u32,
reed_solomon_cache: &ReedSolomonCache,
stats: &mut ProcessShredsStats,
) -> Result<Vec<Shred>, Error> {
let now = Instant::now();
let proof_size = PROOF_ENTRIES_FOR_32_32_BATCH;
// unsigned data_buffer size
let data_buffer_per_shred_size = ShredData::capacity(proof_size, false)?;
let data_buffer_total_size = DATA_SHREDS_PER_FEC_BLOCK * data_buffer_per_shred_size;
// signed data_buffer size
let data_buffer_per_shred_size_signed = if is_last_in_slot {
ShredData::capacity(proof_size, true)?