Uploaded image for project: 'PDFBox'
  1. PDFBox
  2. PDFBOX-3321

ASCII stream data size is increased when written

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Critical
    • Resolution: Fixed
    • 1.8.11
    • 1.8.12
    • Parsing

    Description

      This bug is quite complicated and was discovered when visual signatures were used along with parsing of the document with Preflight before signing.

      I dig a bit trying to investigate this bug nature as the bug does not appear regularly. It appears that it manifests itself under such conditions:

      1. Document is parsed when opened (ex. by Preflight) and entry with number value is detected, which is marked as direct by BaseParser.parseCOSDictionary(BaseParser.java:381);
      2. Stream with ASCII filter is created or present in document having the same length as the number found in step 1 (ex. when visual signature is created by calling SignatureOptions#setVisualSignature());
      3. While written COSWriter checks the stream length by its direct property. If /Length is present and is flaged as direct, it is not recalculated when written.

      As a result, when doucument is written, the stream length is changed: written stream is increased by 2 bytes, while /Length entry still indicate the original length. That violates PDF requirements for the /Length entry:

      The number of bytes from the beginning of the line following the keyword stream to the last byte just before the keyword endstream. (There may be an additional EOL marker, preceding endstream, that is not included in the count and is not logically part of the stream data.)

      These bugs complement to this effect:

      • PDFBOX-3320 & PDFBOX-2685, as number used for stream length is marked as direct;
      • BaseParser.parseCOSStream(BaseParser.java:490) parses ASCII stream using EndstreamOutputStream class, which always includes all characters till the endstream keyword, though CRLF preceding endstream is not part of the stream data;
      • COSWriter checks the stream length by its direct property, even though it could be set as indirect via COSObject. As it is flaged as direct due to mutability of cached COSNumber, the stream length is not recalculated.

      As COSWriter always adds CRLF at the end of the stream, the final stream data increased by 2 bytes.

      Attachments

        Activity

          People

            tilman Tilman Hausherr
            abyss Petras
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: