pdq 0.5.1

PDF operations library
Documentation
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
//! Best-effort cross-reference reconstruction for damaged files.
//!
//! Scope decision from issue #14: pdq repairs files whose xref/trailer data is
//! damaged, using the same recovery strategy qpdf, Poppler, pdf.js and mutool
//! converge on — sweep the raw buffer for `N G obj` headers and rebuild the
//! cross-reference table from what is actually in the file, ignoring the
//! damaged table entirely.
//!
//! Two properties keep this free for well-formed files:
//!
//! * It never runs eagerly. Callers reach it only after the normal parse
//!   fails (load time) or after a fetch proves the xref lies about an offset
//!   (fetch time, see [`is_offset_damage`]) — error paths a healthy file
//!   never enters.
//! * Its output is the same metadata-only `Document` (reference table +
//!   trailer) that `crate::xrefboot` produces, wrapped in the same lazy
//!   reader. There is no separate "repaired" pipeline: downstream count,
//!   copy, split, merge, and write behavior is identical by construction.
//!
//! Encrypted files are never repaired: the lazy reader would hand out
//! still-encrypted bytes, so those inputs keep today's hard error and are
//! qpdf territory. Outputs produced from a repaired source are always full
//! rewrites — the merge byte-copy fast path refuses repaired sources so
//! damage is never copied through verbatim.

use std::collections::{BTreeMap, HashSet};
use std::path::Path;

use lopdf::{
    xref::{Xref, XrefEntry, XrefType},
    Dictionary, Document, Object, ObjectId, Reader,
};
use memchr::memmem;

use crate::{
    filter::decode_stream_content,
    lazy::PdfSource,
    xrefboot::{is_delimiter, is_whitespace, parse_version, Lexer},
    PdfOpsError, Result,
};

/// `XrefEntry::Compressed` indexes are u16, so an object stream can
/// contribute at most this many recovered entries.
const MAX_OBJSTM_ENTRIES: usize = u16::MAX as usize + 1;

/// True for fetch-time errors that prove the cross-reference table lies about
/// an offset: the recorded position holds a different object, or bytes that
/// are not an object at all. These — and only these — justify a repair retry.
/// `ObjectNotFound`/`MissingXrefEntry` must NOT trigger one: dangling
/// references are common in perfectly valid files and are already tolerated
/// as `Null` by the copy paths, so treating them as damage would run a
/// full-buffer scan on healthy inputs.
pub(crate) fn is_offset_damage(err: &PdfOpsError) -> bool {
    matches!(
        err,
        PdfOpsError::Pdf(lopdf::Error::ObjectIdMismatch | lopdf::Error::IndirectObject { .. })
    )
}

/// Run `operation` over a lazily opened source, retrying exactly once with a
/// force-reconstructed source when the first run fails with an error that
/// proves the xref lies (see [`is_offset_damage`]). This is the wrapper for
/// single-input operations: the whole operation re-runs against the repaired
/// source, so the recovered table replaces the damaged one wholesale (qpdf
/// semantics) instead of mixing entries from both.
///
/// Healthy files pay nothing: the retry branch sits on the error path, and a
/// successful first run returns untouched.
pub(crate) fn with_repair_retry<'a, T>(
    buffer: &'a [u8],
    path: &Path,
    password: Option<&str>,
    operation: impl Fn(&PdfSource<'a>) -> Result<T>,
) -> Result<T> {
    let source = PdfSource::open(buffer, path, password)?;
    match operation(&source) {
        Err(err) if is_offset_damage(&err) && !source.repaired() => {
            match PdfSource::open_repaired(buffer, path) {
                Some(repaired) => operation(&repaired),
                // Unrepairable: surface the original failure, not a new one.
                None => Err(err),
            }
        }
        result => result,
    }
}

/// Rebuild a metadata-only `Document` (reference table + trailer) by scanning
/// `buffer` for object headers, ignoring the file's own xref data entirely.
/// Returns `None` when the buffer cannot be repaired — encrypted, no
/// recoverable objects, or no root that resolves to a catalog — in which case
/// callers surface their original error.
pub(crate) fn reconstruct_document(buffer: &[u8]) -> Option<Document> {
    let headers = scan_object_headers(buffer);
    if headers.is_empty() {
        return None;
    }

    // Classify the recovered objects by their header dictionary: catalogs
    // (root fallback), object streams (their members need Compressed
    // entries), and xref streams (whose dict doubles as a trailer).
    let mut catalogs: Vec<(u32, ObjectId)> = Vec::new();
    let mut object_streams: Vec<ObjStmCandidate> = Vec::new();
    let mut xref_trailers: Vec<(u32, Dictionary)> = Vec::new();
    for (&id, header) in &headers {
        let Some((dict, dict_end)) = parse_header_dict(buffer, header.offset) else {
            continue;
        };
        match dict.get(b"Type").ok().and_then(|t| t.as_name().ok()) {
            Some(b"Catalog") => catalogs.push((header.offset, (id, header.generation))),
            Some(b"ObjStm") => object_streams.push(ObjStmCandidate {
                container: id,
                dict,
                dict_end,
            }),
            Some(b"XRef") => xref_trailers.push((header.offset, dict)),
            _ => {}
        }
    }

    let trailers = recover_trailers(buffer, &xref_trailers);
    // Encrypted inputs cannot be repaired: object streams and strings would
    // come out still encrypted. A parsed trailer or xref-stream dictionary
    // naming /Encrypt is authoritative; when none carries a root (the
    // lowest-trust catalog-fallback path) a raw byte scan for an
    // `/Encrypt N G R` entry backstops files whose trailers were destroyed
    // along with the encryption reference they held.
    if trailers.saw_encrypt {
        return None;
    }
    if trailers.best.is_none() && contains_encrypt_reference(buffer) {
        return None;
    }
    let trailer_source = trailers.best;

    // Root candidates in order of trust: the recovered trailer's /Root
    // (generation normalized to the scanned header when they disagree, since
    // lookups resolve strictly by (id, generation)), then the catalog object
    // that appears last in the file. When neither exists the catalog may
    // live compressed inside an object stream, so the expansion below is
    // asked to look for one among the members it decodes.
    let mut root_candidates: Vec<ObjectId> = Vec::new();
    if let Some(dict) = &trailer_source {
        if let Ok(root) = dict.get(b"Root").and_then(Object::as_reference) {
            root_candidates.push(match headers.get(&root.0) {
                Some(header) if header.generation != root.1 => (root.0, header.generation),
                _ => root,
            });
        }
    }
    if let Some(&(_, id)) = catalogs.iter().max_by_key(|(offset, _)| *offset) {
        if !root_candidates.contains(&id) {
            root_candidates.push(id);
        }
    }
    let scan_members_for_catalog = root_candidates.is_empty();

    let mut entries: BTreeMap<u32, XrefEntry> = headers
        .iter()
        .map(|(&id, header)| {
            (
                id,
                XrefEntry::Normal {
                    offset: header.offset,
                    generation: header.generation,
                },
            )
        })
        .collect();
    let mut member_catalogs: Vec<ObjectId> = Vec::new();
    for candidate in &object_streams {
        // Best effort: an object stream that cannot be decoded just
        // contributes nothing; its members stay unresolvable.
        let _ = expand_object_stream(
            buffer,
            &headers,
            candidate,
            &mut entries,
            scan_members_for_catalog.then_some(&mut member_catalogs),
        );
    }
    root_candidates.extend(member_catalogs);
    if root_candidates.is_empty() {
        return None;
    }

    let version = recover_version(buffer);
    let max_id = *entries.keys().next_back()?;
    let mut xref = Xref::new(max_id.checked_add(1)?, XrefType::CrossReferenceTable);
    xref.entries = entries;

    let mut document = Document::new();
    document.version = version;
    document.max_id = max_id;
    document.reference_table = xref;

    // The recovered table is only trusted when a root candidate actually
    // resolves to a catalog-shaped dictionary through it.
    for root in root_candidates {
        let mut trailer = Dictionary::new();
        trailer.set("Size", i64::from(max_id) + 1);
        trailer.set("Root", Object::Reference(root));
        if let Some(source) = &trailer_source {
            for key in [b"Info".as_slice(), b"ID".as_slice()] {
                if let Ok(value) = source.get(key) {
                    trailer.set(key, value.clone());
                }
            }
        }
        document.trailer = trailer;
        let (returned, is_catalog) = root_resolves_to_catalog(buffer, document, root);
        document = returned;
        if is_catalog {
            return Some(document);
        }
    }
    None
}

/// One recovered `N G obj` header. `offset` points at the first digit of the
/// object number, computed from the header's real position in the buffer —
/// which makes the recovered table immune to the junk-before-`%PDF-` and
/// offset-relative-to-header problems of the original xref.
struct ScannedHeader {
    offset: u32,
    generation: u16,
}

/// Sweep the buffer for `N G obj` headers. Later occurrences of an id win,
/// approximating incremental-update semantics: an appended replacement sits
/// after the object it supersedes.
fn scan_object_headers(buffer: &[u8]) -> BTreeMap<u32, ScannedHeader> {
    let mut headers = BTreeMap::new();
    for pos in memmem::find_iter(buffer, b"obj") {
        if let Some((id, header)) = parse_header_at(buffer, pos) {
            headers.insert(id, header);
        }
    }
    headers
}

/// Validate and parse the `N G obj` header whose `obj` keyword starts at
/// `keyword_pos`, walking backwards over the generation and object number.
fn parse_header_at(buffer: &[u8], keyword_pos: usize) -> Option<(u32, ScannedHeader)> {
    // `obj` must end at a token boundary (`objx` is not a keyword).
    if let Some(&byte) = buffer.get(keyword_pos + 3) {
        if !is_whitespace(byte) && !is_delimiter(byte) {
            return None;
        }
    }

    let gen_end = skip_whitespace_backwards(buffer, keyword_pos)?;
    let (gen_start, generation) = parse_digits_backwards(buffer, gen_end)?;
    let generation = u16::try_from(generation).ok()?;
    let id_end = skip_whitespace_backwards(buffer, gen_start)?;
    let (id_start, id) = parse_digits_backwards(buffer, id_end)?;
    let id = u32::try_from(id).ok().filter(|id| *id > 0)?;

    // The object number must start at a token boundary, so `/F12 0 obj`
    // inside a content stream does not register as object 12.
    if id_start > 0 {
        let byte = buffer[id_start - 1];
        if !is_whitespace(byte) && !is_delimiter(byte) {
            return None;
        }
    }

    // Plausibility: the bytes after `obj` must begin a PDF object (or an
    // empty object's `endobj`), which filters most `N G obj` lookalikes
    // inside string and stream payloads.
    let mut lexer = Lexer {
        buffer,
        pos: keyword_pos + 3,
    };
    lexer.skip_whitespace();
    if !matches!(
        lexer.peek(),
        Some(
            b'<' | b'[' | b'/' | b'(' | b'+' | b'-' | b'.' | b'0'
                ..=b'9' | b't' | b'f' | b'n' | b'e'
        )
    ) {
        return None;
    }

    let offset = u32::try_from(id_start).ok()?;
    Some((id, ScannedHeader { offset, generation }))
}

/// Step backwards over whitespace ending at `end`; at least one whitespace
/// byte is required (the tokens of a header cannot touch).
fn skip_whitespace_backwards(buffer: &[u8], end: usize) -> Option<usize> {
    let mut pos = end;
    while pos > 0 && is_whitespace(buffer[pos - 1]) {
        pos -= 1;
    }
    (pos < end).then_some(pos)
}

/// Parse the digit run ending at `end`, returning its start and value.
fn parse_digits_backwards(buffer: &[u8], end: usize) -> Option<(usize, u64)> {
    let mut start = end;
    while start > 0 && buffer[start - 1].is_ascii_digit() {
        start -= 1;
    }
    // At most 10 digits: enough for any u32 id and keeps the value in u64.
    if start == end || end - start > 10 {
        return None;
    }
    let mut value: u64 = 0;
    for &byte in &buffer[start..end] {
        value = value * 10 + u64::from(byte - b'0');
    }
    Some((start, value))
}

/// Parse the dictionary of the object whose header starts at `offset`,
/// returning it with the buffer position just past the closing `>>`.
/// Non-dictionary objects return `None` cheaply (first byte check).
fn parse_header_dict(buffer: &[u8], offset: u32) -> Option<(Dictionary, usize)> {
    let mut lexer = Lexer {
        buffer,
        pos: offset as usize,
    };
    lexer.skip_whitespace();
    lexer.parse_unsigned::<u32>()?;
    lexer.skip_whitespace();
    lexer.parse_unsigned::<u16>()?;
    lexer.skip_whitespace();
    if !lexer.try_keyword(b"obj") {
        return None;
    }
    lexer.skip_whitespace();
    if lexer.peek() != Some(b'<') {
        return None;
    }
    match lexer.parse_object(0)? {
        Object::Dictionary(dict) => Some((dict, lexer.pos)),
        _ => None,
    }
}

/// Everything trailer recovery learns about the file.
struct RecoveredTrailers {
    /// The trailer to trust: the last parseable `trailer` dict carrying a
    /// /Root reference, else the last recovered /Type /XRef dictionary
    /// (xref-stream files have no `trailer` keyword; their stream dict
    /// doubles as the trailer).
    best: Option<Dictionary>,
    /// True when ANY parseable trailer or xref-stream dictionary named
    /// /Encrypt — including root-less ones the recovery would not use.
    saw_encrypt: bool,
}

fn recover_trailers(buffer: &[u8], xref_trailers: &[(u32, Dictionary)]) -> RecoveredTrailers {
    let mut best: Option<Dictionary> = None;
    let mut saw_encrypt = false;
    for pos in memmem::find_iter(buffer, b"trailer") {
        if pos > 0 {
            let prev = buffer[pos - 1];
            if !is_whitespace(prev) && !is_delimiter(prev) {
                continue;
            }
        }
        let mut lexer = Lexer { buffer, pos };
        if !lexer.try_keyword(b"trailer") {
            continue;
        }
        let Some(Object::Dictionary(dict)) = lexer.parse_object(0) else {
            continue;
        };
        saw_encrypt |= dict.has(b"Encrypt");
        if dict
            .get(b"Root")
            .map(|root| root.as_reference().is_ok())
            .unwrap_or(false)
        {
            best = Some(dict);
        }
    }
    saw_encrypt |= xref_trailers.iter().any(|(_, dict)| dict.has(b"Encrypt"));
    let best = best.or_else(|| {
        xref_trailers
            .iter()
            .filter(|(_, dict)| {
                dict.get(b"Root")
                    .map(|root| root.as_reference().is_ok())
                    .unwrap_or(false)
            })
            .max_by_key(|(offset, _)| *offset)
            .map(|(_, dict)| dict.clone())
    });
    RecoveredTrailers { best, saw_encrypt }
}

/// True when the buffer contains what looks like a trailer's encryption
/// entry: the `/Encrypt` name followed by an `N G R` reference. Requiring the
/// reference tail keeps prose mentions of "/Encrypt" inside page content from
/// blocking repair, while still catching encrypted files whose trailer
/// dictionaries no longer parse.
fn contains_encrypt_reference(buffer: &[u8]) -> bool {
    memmem::find_iter(buffer, b"/Encrypt").any(|pos| {
        let mut lexer = Lexer {
            buffer,
            pos: pos + b"/Encrypt".len(),
        };
        // The name must end here (`/EncryptMetadata` is a different key).
        match lexer.peek() {
            Some(byte) if is_whitespace(byte) || is_delimiter(byte) => {}
            _ => return false,
        }
        (|| {
            lexer.skip_whitespace();
            lexer.parse_unsigned::<u32>()?;
            lexer.skip_whitespace();
            lexer.parse_unsigned::<u16>()?;
            lexer.skip_whitespace();
            lexer.try_keyword(b"R").then_some(())
        })()
        .is_some()
    })
}

/// An object whose recovered header dictionary is `/Type /ObjStm`.
struct ObjStmCandidate {
    container: u32,
    dict: Dictionary,
    /// Buffer position just past the dictionary's closing `>>`.
    dict_end: usize,
}

/// Register `XrefEntry::Compressed` entries for the members of an object
/// stream. A top-level `N G obj` header always beats membership here: it is
/// direct evidence in the file, and incremental updates that replace a
/// compressed object append exactly such a header.
///
/// When `member_catalogs` is given (no root candidate was found elsewhere),
/// each member's dictionary is also inspected so a catalog compressed into an
/// object stream can still serve as the root.
fn expand_object_stream(
    buffer: &[u8],
    headers: &BTreeMap<u32, ScannedHeader>,
    candidate: &ObjStmCandidate,
    entries: &mut BTreeMap<u32, XrefEntry>,
    mut member_catalogs: Option<&mut Vec<ObjectId>>,
) -> Option<()> {
    let count = usize::try_from(candidate.dict.get(b"N").ok()?.as_i64().ok()?).ok()?;
    let content = stream_content(buffer, candidate, headers)?;
    let stream = lopdf::Stream::new(candidate.dict.clone(), content.to_vec());
    // An undecodable stream contributes nothing; an unfiltered one is its own
    // decoded content.
    let decoded = decode_stream_content(&stream).unwrap_or_else(|_| content.to_vec());
    let first = candidate
        .dict
        .get(b"First")
        .ok()
        .and_then(|first| first.as_i64().ok())
        .and_then(|first| usize::try_from(first).ok());

    let mut lexer = Lexer {
        buffer: &decoded,
        pos: 0,
    };
    for index in 0..count.min(MAX_OBJSTM_ENTRIES) {
        lexer.skip_whitespace();
        let id = lexer.parse_unsigned::<u32>()?;
        lexer.skip_whitespace();
        let member_offset = lexer.parse_unsigned::<u64>()?;
        if id == 0 {
            continue;
        }
        entries.entry(id).or_insert(XrefEntry::Compressed {
            container: candidate.container,
            index: index as u16,
        });
        if let (Some(catalogs), Some(first)) = (member_catalogs.as_deref_mut(), first) {
            let start = usize::try_from(member_offset)
                .ok()
                .and_then(|offset| first.checked_add(offset));
            if let Some(start) = start.filter(|start| *start < decoded.len()) {
                let mut member = Lexer {
                    buffer: &decoded,
                    pos: start,
                };
                if let Some(Object::Dictionary(dict)) = member.parse_object(0) {
                    // Compressed objects always have generation 0.
                    if dict.has_type(b"Catalog") {
                        catalogs.push((id, 0));
                    }
                }
            }
        }
    }
    Some(())
}

/// Slice the raw stream content following an object's dictionary, but only
/// when the declared /Length (direct, or indirect through the recovered
/// headers) verifies — `endstream` must sit right behind it. A lied-about
/// length makes the container unreadable for the runtime reader too (lopdf
/// trusts /Length), so registering its members would trade "missing object,
/// tolerated as null" for a hard error mid-copy; skipping the container is
/// the better degradation.
fn stream_content<'a>(
    buffer: &'a [u8],
    candidate: &ObjStmCandidate,
    headers: &BTreeMap<u32, ScannedHeader>,
) -> Option<&'a [u8]> {
    let mut lexer = Lexer {
        buffer,
        pos: candidate.dict_end,
    };
    lexer.skip_whitespace();
    if !lexer.try_keyword(b"stream") {
        return None;
    }
    lexer.consume_stream_eol()?;
    let start = lexer.pos;

    let length = resolve_stream_length(&candidate.dict, buffer, headers)?;
    let end = start
        .checked_add(length)
        .filter(|end| *end <= buffer.len())?;
    let mut tail = Lexer { buffer, pos: end };
    tail.skip_whitespace();
    tail.try_keyword(b"endstream").then(|| &buffer[start..end])
}

/// Resolve a stream dictionary's /Length: a direct integer, or an indirect
/// reference resolved through the recovered headers.
fn resolve_stream_length(
    dict: &Dictionary,
    buffer: &[u8],
    headers: &BTreeMap<u32, ScannedHeader>,
) -> Option<usize> {
    match dict.get(b"Length").ok()? {
        Object::Integer(length) => usize::try_from(*length).ok(),
        Object::Reference((id, generation)) => {
            let header = headers.get(id)?;
            if header.generation != *generation {
                return None;
            }
            let mut lexer = Lexer {
                buffer,
                pos: header.offset as usize,
            };
            lexer.skip_whitespace();
            lexer.parse_unsigned::<u32>()?;
            lexer.skip_whitespace();
            lexer.parse_unsigned::<u16>()?;
            lexer.skip_whitespace();
            if !lexer.try_keyword(b"obj") {
                return None;
            }
            match lexer.parse_object(0)? {
                Object::Integer(length) => usize::try_from(length).ok(),
                _ => None,
            }
        }
        _ => None,
    }
}

/// Version from the `%PDF-` header, tolerating leading junk; a mangled header
/// falls back to 1.4, which only affects the version stamp of rewrites.
fn recover_version(buffer: &[u8]) -> String {
    let window = &buffer[..buffer.len().min(1024)];
    memmem::find(window, b"%PDF-")
        .and_then(|pos| parse_version(&buffer[pos..]))
        .unwrap_or_else(|| "1.4".to_string())
}

/// Check that `root` resolves through the recovered table to a dictionary
/// that looks like a catalog. The document moves through the `Reader` and
/// back so the caller can keep it without cloning the reference table.
fn root_resolves_to_catalog(buffer: &[u8], document: Document, root: ObjectId) -> (Document, bool) {
    let reader = Reader {
        buffer,
        document,
        encryption_state: None,
        raw_objects: BTreeMap::new(),
        password: None,
        strict: false,
    };
    let is_catalog = reader
        .get_object(root, &mut HashSet::new())
        .ok()
        .and_then(|object| {
            object
                .as_dict()
                .map(|dict| dict.has_type(b"Catalog") || dict.has(b"Pages"))
                .ok()
        })
        .unwrap_or(false);
    (reader.document, is_catalog)
}

#[cfg(test)]
mod tests {
    use super::*;

    fn scanned_ids(buffer: &[u8]) -> Vec<u32> {
        scan_object_headers(buffer).into_keys().collect()
    }

    #[test]
    fn header_scan_finds_headers_across_whitespace_styles() {
        let headers = scan_object_headers(
            b"%PDF-1.4\n1 0 obj\n<< >>\nendobj\r\n2 0 obj<< >>endobj\n3\t0\tobj\n[1 2]\nendobj\n",
        );
        assert_eq!(headers.keys().copied().collect::<Vec<_>>(), vec![1, 2, 3]);
        assert_eq!(headers[&1].offset, 9);
        assert_eq!(headers[&1].generation, 0);
    }

    #[test]
    fn header_scan_rejects_lookalikes() {
        // Digits glued to a name are not an object number.
        assert!(scanned_ids(b"/F12 0 obj << >>").is_empty());
        // `obj` followed by a delimiter that cannot start an object is
        // string/stream payload, not a header.
        assert!(scanned_ids(b"(see 1 0 obj)").is_empty());
        // Generation beyond u16 is implausible.
        assert!(scanned_ids(b" 1 99999999 obj << >>").is_empty());
        // Object number 0 is always free.
        assert!(scanned_ids(b" 0 0 obj << >>").is_empty());
        // Missing whitespace between the tokens is not a header.
        assert!(scanned_ids(b" 10obj << >>").is_empty());
    }

    #[test]
    fn header_scan_later_duplicate_wins() {
        let buffer = b" 5 0 obj\n<< /A 1 >>\nendobj\n 5 0 obj\n<< /A 2 >>\nendobj\n";
        let headers = scan_object_headers(buffer);
        assert_eq!(headers.len(), 1);
        assert_eq!(headers[&5].offset, 28);
    }

    /// A three-object document whose xref/trailer bytes are replaced by
    /// `tail`. Offsets shift with the length of `prefix`, which the scan must
    /// not care about.
    fn damaged_pdf(prefix: &[u8], tail: &[u8]) -> Vec<u8> {
        let mut pdf = prefix.to_vec();
        pdf.extend_from_slice(b"%PDF-1.4\n");
        pdf.extend_from_slice(b"1 0 obj\n<< /Type /Catalog /Pages 2 0 R >>\nendobj\n");
        pdf.extend_from_slice(b"2 0 obj\n<< /Type /Pages /Kids [3 0 R] /Count 1 >>\nendobj\n");
        pdf.extend_from_slice(
            b"3 0 obj\n<< /Type /Page /Parent 2 0 R /MediaBox [0 0 10 10] >>\nendobj\n",
        );
        pdf.extend_from_slice(tail);
        pdf
    }

    #[test]
    fn reconstructs_without_any_trailer() {
        let pdf = damaged_pdf(b"", b"xref\ngarbage that is not a table\n%%EOF\n");
        let document = reconstruct_document(&pdf).expect("catalog fallback should recover");
        assert_eq!(
            document
                .trailer
                .get(b"Root")
                .unwrap()
                .as_reference()
                .unwrap(),
            (1, 0)
        );
        assert_eq!(document.trailer.get(b"Size").unwrap().as_i64().unwrap(), 4);
        for id in 1..=3u32 {
            assert!(
                matches!(
                    document.reference_table.get(id),
                    Some(XrefEntry::Normal { .. })
                ),
                "object {id} missing from the recovered table"
            );
        }
    }

    #[test]
    fn reconstructs_with_junk_before_header() {
        // Mail-mangled files carry junk before `%PDF-`, shifting every stored
        // offset; recovered offsets come from real positions, so the page
        // walk must still resolve.
        let pdf = damaged_pdf(b"From mail-gateway garbage line\n", b"%%EOF\n");
        let document = reconstruct_document(&pdf).expect("junk prefix should not matter");
        let Some(XrefEntry::Normal { offset, .. }) = document.reference_table.get(1) else {
            panic!("object 1 missing");
        };
        assert_eq!(&pdf[*offset as usize..*offset as usize + 7], b"1 0 obj");
    }

    #[test]
    fn trailer_root_wins_over_catalog_fallback() {
        // A parseable trailer names the root even when its /Size is junk and
        // startxref points nowhere.
        let pdf = damaged_pdf(
            b"",
            b"trailer\n<< /Root 1 0 R /Size -7 >>\nstartxref\n999999\n%%EOF\n",
        );
        let document = reconstruct_document(&pdf).expect("trailer should recover");
        assert_eq!(
            document
                .trailer
                .get(b"Root")
                .unwrap()
                .as_reference()
                .unwrap(),
            (1, 0)
        );
    }

    #[test]
    fn refuses_encrypted_and_unrecoverable_buffers() {
        // Encrypted: the lazy reader cannot decrypt, so repair must refuse.
        let pdf = damaged_pdf(b"", b"trailer\n<< /Root 1 0 R /Encrypt 9 0 R >>\n%%EOF\n");
        assert!(reconstruct_document(&pdf).is_none());
        // A root-less (unusable) trailer naming /Encrypt still proves
        // encryption and must refuse.
        let pdf = damaged_pdf(b"", b"trailer\n<< /Encrypt 9 0 R >>\n%%EOF\n");
        assert!(reconstruct_document(&pdf).is_none());
        // No parseable trailer at all, but the destroyed one's
        // `/Encrypt N G R` entry survives in the raw bytes: the byte-scan
        // backstop on the catalog-fallback path must refuse.
        let pdf = damaged_pdf(b"", b"trailer garbage /Encrypt 9 0 R garbage\n%%EOF\n");
        assert!(reconstruct_document(&pdf).is_none());
        // No object headers at all.
        assert!(reconstruct_document(b"not a pdf, no objects here").is_none());
        // Headers but no catalog and no trailer: nothing to trust as root.
        assert!(
            reconstruct_document(b"%PDF-1.4\n1 0 obj\n<< /Type /Font >>\nendobj\n%%EOF\n")
                .is_none()
        );
    }

    #[test]
    fn prose_encrypt_mentions_do_not_block_repair() {
        // "/Encrypt" appearing as page content (here: inside a string object)
        // is not an encryption entry: no reference tail follows, and the
        // recovered trailer is authoritative about the file being plain.
        let mut pdf = damaged_pdf(b"", b"");
        pdf.extend_from_slice(b"4 0 obj\n(how /Encrypt works in PDF)\nendobj\n");
        pdf.extend_from_slice(b"trailer\n<< /Root 1 0 R >>\nstartxref\n999999\n%%EOF\n");
        assert!(
            reconstruct_document(&pdf).is_some(),
            "a prose /Encrypt mention must not block repair"
        );

        // Same file without any recoverable trailer: the byte-scan backstop
        // runs, but must still not match a name lacking the reference tail.
        let mut pdf = damaged_pdf(b"", b"");
        pdf.extend_from_slice(b"4 0 obj\n(how /Encrypt works in PDF)\nendobj\n%%EOF\n");
        assert!(
            reconstruct_document(&pdf).is_some(),
            "prose /Encrypt without an N G R tail must not trip the backstop"
        );

        // /EncryptMetadata is a different key and must not match either.
        let mut pdf = damaged_pdf(b"", b"");
        pdf.extend_from_slice(b"4 0 obj\n<< /EncryptMetadata 5 0 R >>\nendobj\n%%EOF\n");
        assert!(reconstruct_document(&pdf).is_some());
    }

    #[test]
    fn expands_object_stream_members() {
        // Catalog (5) and pages (6) live inside an uncompressed object
        // stream; page 7 is top-level. The trailer is destroyed, so the root
        // must be found through the recovered compressed entries.
        let members =
            b"<< /Type /Catalog /Pages 6 0 R >> << /Type /Pages /Kids [7 0 R] /Count 1 >>";
        let pairs = "5 0 6 34 ";
        let first = pairs.len();
        let content = format!("{pairs}{}", String::from_utf8_lossy(members));
        let mut pdf = Vec::new();
        pdf.extend_from_slice(b"%PDF-1.5\n");
        pdf.extend_from_slice(
            format!(
                "4 0 obj\n<< /Type /ObjStm /N 2 /First {first} /Length {} >>\nstream\n{content}\nendstream\nendobj\n",
                content.len()
            )
            .as_bytes(),
        );
        pdf.extend_from_slice(
            b"7 0 obj\n<< /Type /Page /Parent 6 0 R /MediaBox [0 0 10 10] >>\nendobj\n",
        );
        pdf.extend_from_slice(b"garbage instead of an xref stream\n%%EOF\n");

        let document = reconstruct_document(&pdf).expect("object stream members should recover");
        assert_eq!(
            document
                .trailer
                .get(b"Root")
                .unwrap()
                .as_reference()
                .unwrap(),
            (5, 0)
        );
        assert!(matches!(
            document.reference_table.get(5),
            Some(XrefEntry::Compressed {
                container: 4,
                index: 0
            })
        ));
        assert!(matches!(
            document.reference_table.get(6),
            Some(XrefEntry::Compressed {
                container: 4,
                index: 1
            })
        ));
        // Top-level headers always beat object-stream membership.
        assert!(matches!(
            document.reference_table.get(7),
            Some(XrefEntry::Normal { .. })
        ));
    }

    #[test]
    fn top_level_header_beats_object_stream_membership() {
        // Object 6 is both a member of the stream and (later) a top-level
        // object, as an incremental update would leave it.
        let members = b"<< /Type /Catalog /Pages 6 0 R >> << /Ignored true >>";
        let content = format!("5 0 6 34 {}", String::from_utf8_lossy(members));
        let mut pdf = Vec::new();
        pdf.extend_from_slice(b"%PDF-1.5\n");
        pdf.extend_from_slice(
            format!(
                "4 0 obj\n<< /Type /ObjStm /N 2 /First 9 /Length {} >>\nstream\n{content}\nendstream\nendobj\n",
                content.len()
            )
            .as_bytes(),
        );
        pdf.extend_from_slice(
            b"6 0 obj\n<< /Type /Pages /Kids [7 0 R] /Count 1 >>\nendobj\n\
              7 0 obj\n<< /Type /Page /Parent 6 0 R /MediaBox [0 0 10 10] >>\nendobj\n%%EOF\n",
        );

        let document = reconstruct_document(&pdf).expect("should recover");
        assert!(matches!(
            document.reference_table.get(6),
            Some(XrefEntry::Normal { .. })
        ));
    }

    #[test]
    fn skips_object_streams_whose_length_lies() {
        // /Length claims 5 bytes, so the runtime reader (which trusts
        // /Length) could never decode this container. Its members must NOT
        // be registered — a missing object degrades to null during copies,
        // while a registered-but-unreadable one would be a hard error.
        let content = "5 0 6 34 << /Ignored true >> << /Ignored true >>";
        let mut pdf = Vec::new();
        pdf.extend_from_slice(b"%PDF-1.5\n");
        pdf.extend_from_slice(
            format!(
                "4 0 obj\n<< /Type /ObjStm /N 2 /First 9 /Length 5 >>\nstream\n{content}\nendstream\nendobj\n"
            )
            .as_bytes(),
        );
        pdf.extend_from_slice(
            b"1 0 obj\n<< /Type /Catalog /Pages 2 0 R >>\nendobj\n\
              2 0 obj\n<< /Type /Pages /Kids [] /Count 0 >>\nendobj\n%%EOF\n",
        );

        let document = reconstruct_document(&pdf).expect("top-level objects still recover");
        assert!(
            document.reference_table.get(5).is_none(),
            "members of an unreadable container must not be registered"
        );
        assert!(matches!(
            document.reference_table.get(4),
            Some(XrefEntry::Normal { .. })
        ));
        assert_eq!(
            document
                .trailer
                .get(b"Root")
                .unwrap()
                .as_reference()
                .unwrap(),
            (1, 0)
        );
    }
}