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
use super::super::blocks::block::BlockHeader;
use super::super::blocks::block::BlockType;
use super::super::blocks::literals_section::LiteralsSection;
use super::super::blocks::literals_section::LiteralsSectionType;
use super::super::blocks::sequence_section::SequencesHeader;
use super::literals_section_decoder::{LiteralsView, decode_literals_zerocopy};
use super::sequence_section_decoder::decode_and_execute_sequences;
use crate::common::MAX_BLOCK_SIZE;
use crate::decoding::errors::DecodeSequenceError;
use crate::decoding::errors::{
BlockHeaderReadError, BlockSizeError, BlockTypeError, DecodeBlockContentError,
DecompressBlockError,
};
use crate::decoding::scratch::Workspace;
use crate::io::Read;
pub struct BlockDecoder {
header_buffer: [u8; 3],
internal_state: DecoderState,
}
enum DecoderState {
ReadyToDecodeNextHeader,
ReadyToDecodeNextBody,
#[allow(dead_code)]
Failed, //TODO put "self.internal_state = DecoderState::Failed;" everywhere an unresolvable error occurs
}
/// Create a new [BlockDecoder].
pub fn new() -> BlockDecoder {
BlockDecoder {
internal_state: DecoderState::ReadyToDecodeNextHeader,
header_buffer: [0u8; 3],
}
}
impl BlockDecoder {
/// Decode the body of a single block described by `header` from `source` into `workspace`.
///
/// Returns the number of bytes consumed from `source`.
/// The decode buffer inside `workspace` may be reserved or grown during
/// decoding. For some block types the decompressed size is known up front,
/// but this is not guaranteed before any data is written.
/// Slice-source fast path for `decode_block_content`. Consumes
/// the right number of bytes from `*source` (advancing the slice)
/// without going through the persistent `block_content_buffer`.
/// Used by `FrameDecoder::decode_all` where `source` is
/// already a `&[u8]` view into the user's input.
///
/// Returns the number of bytes consumed from `*source`.
pub fn decode_block_content_from_slice<W: Workspace>(
&mut self,
header: &BlockHeader,
workspace: &mut W,
source: &mut &[u8],
) -> Result<u64, DecodeBlockContentError> {
use DecoderState as State;
match self.internal_state {
State::ReadyToDecodeNextBody => { /* ok */ }
State::Failed => return Err(DecodeBlockContentError::DecoderStateIsFailed),
State::ReadyToDecodeNextHeader => {
return Err(DecodeBlockContentError::ExpectedHeaderOfPreviousBlock);
}
}
let block_type = header.block_type;
match block_type {
BlockType::RLE => {
// 1 byte from source via slice; no Read overhead.
if source.is_empty() {
// ErrorKind::UnexpectedEof matches what the streaming path
// gets from Read::read_exact on truncated input — callers
// and tests can detect truncation by kind alone, identical
// across slice-source and Read-source decode entry points.
return Err(DecodeBlockContentError::ReadError {
step: block_type,
source: crate::io::Error::from(crate::io::ErrorKind::UnexpectedEof),
});
}
// Peek the fill byte without advancing `*source` yet —
// `try_extend_and_fill` is fallible on fixed-capacity
// backends, and on `Err` the caller exits early. If we
// advanced first, the input cursor would diverge from
// the bytes_read accounting by one byte on the error
// path. Advance ONLY after the write succeeds, matching
// the Raw arm's split_at-then-try_push-then-advance shape.
let fill = source[0];
workspace
.split()
.buffer
.try_extend_and_fill(fill, header.decompressed_size as usize)
.map_err(|_| DecodeBlockContentError::BackendOverflow { step: block_type })?;
*source = &source[1..];
self.internal_state = State::ReadyToDecodeNextHeader;
Ok(1)
}
BlockType::Raw => {
// Raw payload IS the source bytes; push them
// directly to the buffer. For UserSliceBackend this
// is a single memcpy from input -> output, no
// intermediate Vec.
let n = header.decompressed_size as usize;
if source.len() < n {
return Err(DecodeBlockContentError::ReadError {
step: block_type,
source: crate::io::Error::from(crate::io::ErrorKind::UnexpectedEof),
});
}
let (payload, tail) = source.split_at(n);
// `try_push` returns `Err(BackendOverflow)` on
// `UserSliceBackend` when the Raw payload would push
// past the caller's output slice. Growable backends
// grow on demand and always succeed.
workspace
.split()
.buffer
.try_push(payload)
.map_err(|_| DecodeBlockContentError::BackendOverflow { step: block_type })?;
*source = tail;
self.internal_state = State::ReadyToDecodeNextHeader;
Ok(u64::from(header.decompressed_size))
}
BlockType::Reserved => {
panic!("Reserved-type block should be rejected during header parsing");
}
BlockType::Compressed => {
let n = header.content_size as usize;
if source.len() < n {
return Err(DecodeBlockContentError::ReadError {
step: block_type,
source: crate::io::Error::from(crate::io::ErrorKind::UnexpectedEof),
});
}
let (payload, tail) = source.split_at(n);
self.decompress_block_inplace(header, workspace, payload)?;
*source = tail;
self.internal_state = State::ReadyToDecodeNextHeader;
Ok(u64::from(header.content_size))
}
}
}
pub fn decode_block_content<W: Workspace>(
&mut self,
header: &BlockHeader,
workspace: &mut W,
mut source: impl Read,
) -> Result<u64, DecodeBlockContentError> {
match self.internal_state {
DecoderState::ReadyToDecodeNextBody => { /* Happy :) */ }
DecoderState::Failed => return Err(DecodeBlockContentError::DecoderStateIsFailed),
DecoderState::ReadyToDecodeNextHeader => {
return Err(DecodeBlockContentError::ExpectedHeaderOfPreviousBlock);
}
}
let block_type = header.block_type;
match block_type {
BlockType::RLE => {
let mut buf = [0u8; 1];
source.read_exact(&mut buf[..]).map_err(|err| {
DecodeBlockContentError::ReadError {
step: block_type,
source: err,
}
})?;
workspace
.split()
.buffer
.extend_and_fill(buf[0], header.decompressed_size as usize);
self.internal_state = DecoderState::ReadyToDecodeNextHeader;
Ok(1)
}
BlockType::Raw => {
// Pass `source` by value rather than `&mut source` — it isn't
// used after this match arm anyway, so moving avoids the
// borrow-by-reference indirection. (Both io shims provide a
// blanket `Read for &mut T`, so `&mut source` would also
// compile; the by-value form is just cleaner here.)
workspace
.split()
.buffer
.extend_from_reader(source, header.decompressed_size as usize)
.map_err(|err| DecodeBlockContentError::ReadError {
step: block_type,
source: err,
})?;
self.internal_state = DecoderState::ReadyToDecodeNextHeader;
Ok(u64::from(header.decompressed_size))
}
BlockType::Reserved => {
panic!(
"How did you even get this. The decoder should error out if it detects a reserved-type block"
);
}
BlockType::Compressed => {
self.decompress_block(header, workspace, source)?;
self.internal_state = DecoderState::ReadyToDecodeNextHeader;
Ok(u64::from(header.content_size))
}
}
}
fn decompress_block<W: Workspace>(
&mut self,
header: &BlockHeader,
workspace: &mut W,
mut source: impl Read,
) -> Result<(), DecompressBlockError> {
// Streaming-path entry: copy `content_size` bytes from the
// `Read` source into `block_content_buffer`, then dispatch
// to the in-place body via per-field borrows. The direct-
// decode path (`decode_all`) skips this copy by passing
// a borrowed slice of the input straight to
// `decompress_block_inplace_with_parts`.
let parts = workspace.split();
parts
.block_content_buffer
.resize(header.content_size as usize, 0);
source.read_exact(parts.block_content_buffer.as_mut_slice())?;
// Disjoint-fields borrow: `as_slice()` reborrows
// block_content_buffer as `&[u8]`; the other WorkspaceRef
// fields stay independently movable into the helper since
// each is a distinct struct field. No `unsafe` needed —
// Rust's borrow checker tracks per-field disjointness.
let raw = parts.block_content_buffer.as_slice();
self.decompress_block_inplace_with_parts(
header,
parts.huf,
parts.fse,
parts.buffer,
parts.offset_hist,
parts.literals_buffer,
parts.sequences,
raw,
)
}
/// Compressed-block fast path that takes the block content as a
/// borrowed slice (no per-block memcpy into
/// `block_content_buffer`).
///
/// Called by:
/// - `decompress_block` (streaming path) after it has copied the
/// compressed bytes from the source `Read` into the persistent
/// `block_content_buffer`.
/// - `decode_block_content_from_slice` (direct-decode path) where
/// the source is a `&[u8]` already, so the slice IS the input —
/// saving the per-block memcpy + anonymous-page first-touch on
/// `block_content_buffer.resize(...)`. At L-1 fast on
/// `decodecorpus-z000033` this `block_content_buffer` traffic
/// was the largest single contributor to the
/// `__memmove_avx_unaligned_erms` + `exc_page_fault` flame
/// on the post-#244 baseline (~30% of decode time combined).
pub(crate) fn decompress_block_inplace<W: Workspace>(
&mut self,
header: &BlockHeader,
workspace: &mut W,
raw: &[u8],
) -> Result<(), DecompressBlockError> {
let parts = workspace.split();
// block_content_buffer is intentionally NOT passed — the
// in-place body does not need it (raw already IS the block
// content). Dropping it here keeps the helper signature
// free of an unused-field reference.
self.decompress_block_inplace_with_parts(
header,
parts.huf,
parts.fse,
parts.buffer,
parts.offset_hist,
parts.literals_buffer,
parts.sequences,
raw,
)
}
/// Inner body of [`Self::decompress_block_inplace`] that takes
/// the scratch fields as disjoint `&mut` references. The split
/// happens at the call site (so the streaming path can keep its
/// `block_content_buffer` borrow alive while passing `raw =
/// block_content_buffer.as_slice()` here without aliasing the
/// other scratch fields). All `unsafe` from the previous
/// lifetime-widening trick is gone — disjoint-field borrows
/// type-check naturally.
#[allow(clippy::too_many_arguments)]
fn decompress_block_inplace_with_parts<B: super::buffer_backend::BufferBackend>(
&mut self,
header: &BlockHeader,
huf: &mut crate::decoding::scratch::HuffmanScratch,
fse: &mut crate::decoding::scratch::FSEScratch,
buffer: &mut crate::decoding::decode_buffer::DecodeBuffer<B>,
offset_hist: &mut [u32; 3],
literals_buffer: &mut alloc::vec::Vec<u8>,
sequences: &mut alloc::vec::Vec<crate::blocks::sequence_section::Sequence>,
raw: &[u8],
) -> Result<(), DecompressBlockError> {
let mut section = LiteralsSection::new();
let bytes_in_literals_header = section.parse_from_header(raw)?;
let raw = &raw[bytes_in_literals_header as usize..];
vprintln!(
"Found {} literalssection with regenerated size: {}, and compressed size: {:?}",
section.ls_type,
section.regenerated_size,
section.compressed_size
);
let upper_limit_for_literals = match section.compressed_size {
Some(x) => x as usize,
None => match section.ls_type {
LiteralsSectionType::RLE => 1,
LiteralsSectionType::Raw => section.regenerated_size as usize,
_ => panic!("Bug in this library"),
},
};
if raw.len() < upper_limit_for_literals {
return Err(DecompressBlockError::MalformedSectionHeader {
expected_len: upper_limit_for_literals,
remaining_bytes: raw.len(),
});
}
let raw_literals = &raw[..upper_limit_for_literals];
vprintln!("Slice for literals: {}", raw_literals.len());
literals_buffer.clear(); //all literals of the previous block must have been used in the sequence execution anyways. just be defensive here
// Zero-copy literals view — for Raw sections this borrows
// straight into `raw_literals` (no memcpy into the Vec).
// For RLE / HUF it materialises into `literals_buffer`
// and `data` is a slice over that buffer. Eliminates a major
// memcpy contributor (Vec::extend_from_slice → spec_extend)
// flagged at ~20% of decode time on the L-1 fast c_stream
// flamegraph.
let LiteralsView {
data: literals_view,
bytes_used: bytes_used_in_literals_section,
} = decode_literals_zerocopy(§ion, huf, raw_literals, literals_buffer)?;
assert!(
section.regenerated_size as usize == literals_view.len(),
"Wrong number of literals: {}, Should have been: {}",
literals_view.len(),
section.regenerated_size
);
assert!(bytes_used_in_literals_section == upper_limit_for_literals as u32);
let raw = &raw[upper_limit_for_literals..];
vprintln!("Slice for sequences with headers: {}", raw.len());
let mut seq_section = SequencesHeader::new();
let bytes_in_sequence_header = seq_section.parse_from_header(raw)?;
let raw = &raw[bytes_in_sequence_header as usize..];
vprintln!(
"Found sequencessection with sequences: {} and size: {}",
seq_section.num_sequences,
raw.len()
);
assert!(
u32::from(bytes_in_literals_header)
+ bytes_used_in_literals_section
+ u32::from(bytes_in_sequence_header)
+ raw.len() as u32
== header.content_size
);
vprintln!("Slice for sequences: {}", raw.len());
if seq_section.num_sequences != 0 {
// Fused decode + execute: avoids the Vec<Sequence> round-trip
// and inlines the per-iter execute_one_sequence work next to
// the FSE state advance. Falls back to the legacy two-pass
// pipeline internally when any of LL/ML/OF is in RLE mode.
// Pass field-level borrows from the WorkspaceRef so `raw`
// (immutable view into block_content_buffer) can coexist
// with the mutable borrows on the FSE / decode-buffer /
// offset-hist fields.
decode_and_execute_sequences(
&seq_section,
raw,
fse,
buffer,
offset_hist,
literals_view,
sequences,
)?;
} else {
if !raw.is_empty() {
return Err(DecompressBlockError::DecodeSequenceError(
DecodeSequenceError::ExtraBits {
bits_remaining: raw.len() as isize * 8,
},
));
}
buffer.push(literals_view);
sequences.clear();
}
Ok(())
}
/// Reads 3 bytes from the provided reader and returns
/// the deserialized header and the number of bytes read.
pub fn read_block_header(
&mut self,
mut r: impl Read,
) -> Result<(BlockHeader, u8), BlockHeaderReadError> {
//match self.internal_state {
// DecoderState::ReadyToDecodeNextHeader => {/* Happy :) */},
// DecoderState::Failed => return Err(format!("Cant decode next block if failed along the way. Results will be nonsense")),
// DecoderState::ReadyToDecodeNextBody => return Err(format!("Cant decode next block header, while expecting to decode the body of the previous block. Results will be nonsense")),
//}
r.read_exact(&mut self.header_buffer[0..3])?;
let btype = self.block_type()?;
if let BlockType::Reserved = btype {
return Err(BlockHeaderReadError::FoundReservedBlock);
}
let block_size = self.block_content_size()?;
let decompressed_size = match btype {
BlockType::Raw => block_size,
BlockType::RLE => block_size,
BlockType::Reserved => 0, //should be caught above, this is an error state
BlockType::Compressed => 0, //unknown but will be smaller than 128kb (or window_size if that is smaller than 128kb)
};
let content_size = match btype {
BlockType::Raw => block_size,
BlockType::Compressed => block_size,
BlockType::RLE => 1,
BlockType::Reserved => 0, //should be caught above, this is an error state
};
let last_block = self.is_last();
self.reset_buffer();
self.internal_state = DecoderState::ReadyToDecodeNextBody;
//just return 3. Blockheaders always take 3 bytes
Ok((
BlockHeader {
last_block,
block_type: btype,
decompressed_size,
content_size,
},
3,
))
}
fn reset_buffer(&mut self) {
self.header_buffer[0] = 0;
self.header_buffer[1] = 0;
self.header_buffer[2] = 0;
}
fn is_last(&self) -> bool {
self.header_buffer[0] & 0x1 == 1
}
fn block_type(&self) -> Result<BlockType, BlockTypeError> {
let t = (self.header_buffer[0] >> 1) & 0x3;
match t {
0 => Ok(BlockType::Raw),
1 => Ok(BlockType::RLE),
2 => Ok(BlockType::Compressed),
3 => Ok(BlockType::Reserved),
other => Err(BlockTypeError::InvalidBlocktypeNumber { num: other }),
}
}
fn block_content_size(&self) -> Result<u32, BlockSizeError> {
let val = self.block_content_size_unchecked();
if val > MAX_BLOCK_SIZE {
Err(BlockSizeError::BlockSizeTooLarge { size: val })
} else {
Ok(val)
}
}
fn block_content_size_unchecked(&self) -> u32 {
u32::from(self.header_buffer[0] >> 3) //push out type and last_block flags. Retain 5 bit
| (u32::from(self.header_buffer[1]) << 5)
| (u32::from(self.header_buffer[2]) << 13)
}
}
#[cfg(test)]
mod tests {
//! Coverage for `decode_block_content_from_slice` error branches —
//! truncated / empty source on each block type, plus the
//! `DecoderState::Failed` / `ReadyToDecodeNextHeader` entry-state
//! guards. The happy path is exercised indirectly via the
//! roundtrip tests on `decode_all`; these tests pin the
//! fail-fast behaviour for malformed input.
use super::*;
use crate::blocks::block::{BlockHeader, BlockType};
use crate::decoding::ringbuffer::RingBuffer;
use crate::decoding::scratch::DecoderScratch;
fn header(block_type: BlockType, decompressed_size: u32, content_size: u32) -> BlockHeader {
BlockHeader {
last_block: true,
block_type,
decompressed_size,
content_size,
}
}
fn fresh_workspace() -> DecoderScratch<RingBuffer> {
DecoderScratch::<RingBuffer>::new(1 << 20)
}
fn primed_decoder() -> BlockDecoder {
let mut d = new();
d.internal_state = DecoderState::ReadyToDecodeNextBody;
d
}
#[test]
fn rejects_when_internal_state_expects_header() {
// Default state is ReadyToDecodeNextHeader -> calling
// decode_block_content_from_slice on a body must error,
// not silently decode garbage.
let mut d = new();
let mut ws = fresh_workspace();
let mut src: &[u8] = &[];
let h = header(BlockType::RLE, 4, 1);
let err = d
.decode_block_content_from_slice(&h, &mut ws, &mut src)
.expect_err("must err on body before header");
assert!(matches!(
err,
DecodeBlockContentError::ExpectedHeaderOfPreviousBlock
));
}
#[test]
fn rejects_when_internal_state_failed() {
let mut d = new();
d.internal_state = DecoderState::Failed;
let mut ws = fresh_workspace();
let mut src: &[u8] = &[0x42];
let h = header(BlockType::RLE, 4, 1);
let err = d
.decode_block_content_from_slice(&h, &mut ws, &mut src)
.expect_err("must err on Failed state");
assert!(matches!(err, DecodeBlockContentError::DecoderStateIsFailed));
}
#[test]
fn rle_empty_source_errors_not_panics() {
// RLE block needs at least 1 fill byte in source. Empty
// source must return ReadError, not panic on source[0].
let mut d = primed_decoder();
let mut ws = fresh_workspace();
let mut src: &[u8] = &[];
let h = header(BlockType::RLE, 4, 1);
let err = d
.decode_block_content_from_slice(&h, &mut ws, &mut src)
.expect_err("must err on empty RLE source");
match &err {
DecodeBlockContentError::ReadError { step, source } => {
assert_eq!(*step, BlockType::RLE);
assert_eq!(
source.kind(),
crate::io::ErrorKind::UnexpectedEof,
"slice-source truncation must report UnexpectedEof to match the streaming path's Read::read_exact behaviour"
);
}
other => panic!("expected ReadError, got {other:?}"),
}
}
#[test]
fn raw_truncated_source_errors_not_panics() {
// Raw block header claims 10 decompressed bytes but only
// 3 are available -> ReadError. The pre-split bounds check
// catches this before split_at would panic.
let mut d = primed_decoder();
let mut ws = fresh_workspace();
let mut src: &[u8] = &[1, 2, 3];
let h = header(BlockType::Raw, 10, 10);
let err = d
.decode_block_content_from_slice(&h, &mut ws, &mut src)
.expect_err("must err on truncated raw source");
match &err {
DecodeBlockContentError::ReadError { step, source } => {
assert_eq!(*step, BlockType::Raw);
assert_eq!(source.kind(), crate::io::ErrorKind::UnexpectedEof);
}
other => panic!("expected ReadError, got {other:?}"),
}
}
#[test]
fn compressed_truncated_source_errors_not_panics() {
// Compressed block header claims 100 compressed bytes but
// only 8 are available -> ReadError. Pre-split bound check.
let mut d = primed_decoder();
let mut ws = fresh_workspace();
let mut src: &[u8] = &[0u8; 8];
let h = header(BlockType::Compressed, 0, 100);
let err = d
.decode_block_content_from_slice(&h, &mut ws, &mut src)
.expect_err("must err on truncated compressed source");
match &err {
DecodeBlockContentError::ReadError { step, source } => {
assert_eq!(*step, BlockType::Compressed);
assert_eq!(source.kind(), crate::io::ErrorKind::UnexpectedEof);
}
other => panic!("expected ReadError, got {other:?}"),
}
}
/// Exercise the BackendOverflow -> DecodeBlockContentError mapping
/// on the direct-decode path. Constructs a fixed-capacity
/// `UserSliceBackend` over a 4-byte slice and feeds it an RLE
/// block whose `decompressed_size` (10) exceeds the slice; the
/// `try_extend_and_fill` failure must surface as
/// `BackendOverflow { step: RLE }`, never panic.
#[test]
fn rle_oversized_against_user_slice_backend_returns_backend_overflow() {
use crate::decoding::decode_buffer::DecodeBuffer;
use crate::decoding::scratch::{DirectScratch, FSEScratch, HuffmanScratch};
use crate::decoding::user_slice_buf::UserSliceBackend;
let mut output = [0u8; 4];
let backend = UserSliceBackend::from_slice(&mut output);
let buffer = DecodeBuffer::from_backend(backend, 1 << 20);
let mut huf = HuffmanScratch::new();
let mut fse = FSEScratch::new();
let mut offset_hist = [1u32, 4, 8];
let mut literals_buffer = alloc::vec::Vec::new();
let mut sequences = alloc::vec::Vec::new();
let mut block_content_buffer = alloc::vec::Vec::new();
let mut direct = DirectScratch {
huf: &mut huf,
fse: &mut fse,
offset_hist: &mut offset_hist,
literals_buffer: &mut literals_buffer,
sequences: &mut sequences,
block_content_buffer: &mut block_content_buffer,
buffer,
};
let mut d = primed_decoder();
let payload = [0xCDu8];
let mut src: &[u8] = &payload;
let h = header(BlockType::RLE, 10, 1);
let err = d
.decode_block_content_from_slice(&h, &mut direct, &mut src)
.expect_err("RLE 10 bytes into 4-byte slice must error");
match err {
DecodeBlockContentError::BackendOverflow { step } => {
assert_eq!(step, BlockType::RLE);
}
other => panic!("expected BackendOverflow, got {other:?}"),
}
assert_eq!(direct.buffer.len(), 0, "no bytes written on overflow");
}
/// Regression test: on BackendOverflow error from the RLE
/// fallible write, the input `*source` must NOT have been
/// advanced. Otherwise `FrameDecoder::bytes_read_counter`
/// accounting is off by one byte on the error path: the caller
/// exits early and the 1-byte advance never gets reflected in
/// the read counter, but the next call would skip past the RLE
/// byte.
#[test]
fn rle_overflow_leaves_source_unadvanced() {
use crate::decoding::decode_buffer::DecodeBuffer;
use crate::decoding::scratch::{DirectScratch, FSEScratch, HuffmanScratch};
use crate::decoding::user_slice_buf::UserSliceBackend;
let mut output = [0u8; 4];
let backend = UserSliceBackend::from_slice(&mut output);
let buffer = DecodeBuffer::from_backend(backend, 1 << 20);
let mut huf = HuffmanScratch::new();
let mut fse = FSEScratch::new();
let mut offset_hist = [1u32, 4, 8];
let mut literals_buffer = alloc::vec::Vec::new();
let mut sequences = alloc::vec::Vec::new();
let mut block_content_buffer = alloc::vec::Vec::new();
let mut direct = DirectScratch {
huf: &mut huf,
fse: &mut fse,
offset_hist: &mut offset_hist,
literals_buffer: &mut literals_buffer,
sequences: &mut sequences,
block_content_buffer: &mut block_content_buffer,
buffer,
};
let mut d = primed_decoder();
let payload = [0xCDu8, 0xEE, 0xFF];
let mut src: &[u8] = &payload;
let h = header(BlockType::RLE, 10, 1);
let _ = d
.decode_block_content_from_slice(&h, &mut direct, &mut src)
.expect_err("RLE 10 bytes into 4-byte slice must error");
assert_eq!(
src.as_ptr(),
payload.as_ptr(),
"source advanced despite write failure"
);
assert_eq!(
src.len(),
payload.len(),
"source length changed on error path"
);
}
#[test]
fn rle_advances_source_by_one_byte_and_extends_buffer() {
// Happy path on a freshly primed decoder: 1 byte consumed
// from source, N bytes filled into buffer.
let mut d = primed_decoder();
let mut ws = fresh_workspace();
let payload = [0xCD, 0xFF, 0xAA];
let mut src: &[u8] = &payload;
let h = header(BlockType::RLE, 7, 1);
let consumed = d
.decode_block_content_from_slice(&h, &mut ws, &mut src)
.expect("RLE happy path");
assert_eq!(consumed, 1);
assert_eq!(src, &payload[1..], "1 byte consumed from source");
assert_eq!(ws.buffer.len(), 7, "buffer extended by decompressed_size");
}
}