• This is CVE-2017-9208.
    
    The QPDF library uses object ID 0 internally as a sentinel to
    represent a direct object, but prior to this fix, was not blocking
    handling of 0 0 obj or 0 0 R as a special case. Creating an object in
    the file with 0 0 obj could cause various infinite loops. The PDF spec
    doesn't allow for object 0. Having qpdf handle object 0 might be a
    better fix, but changing all the places in the code that assumes objid
    == 0 means direct would be risky.
    Jay Berkenbilt authored
     
    Browse Dir »
  • This is CVE-2017-9209.
    Jay Berkenbilt authored
     
    Browse Dir »
  • This is CVE-2017-9210.
    
    The description string for an error message included unparsing an
    object, which is too complex of a thing to try to do while throwing an
    exception. There was only one example of this in the entire codebase,
    so it is not a pervasive problem. Fixing this eliminated one class of
    infinite loop errors.
    Jay Berkenbilt authored
     
    Browse Dir »






  • Pushing inherited objects to pages and getting all pages were both
    prone to stack overflow infinite loops if there were loops in the
    Pages dictionary. There is a general weakness in the code in that any
    part of the code that traverses the Pages structure would be prone to
    this and would have to implement its own loop detection. A more robust
    fix may provide some general method for handling the Pages structure,
    but it's probably not worth doing.
    
    Note: addition of *Internal2 private functions was done rather than
    changing signatures of existing methods to avoid breaking
    compatibility.
    Jay Berkenbilt authored
     
    Browse Dir »
  • Converting a password to an encryption key is supposed to copy up to a
    certain number of bytes from a digest. Make sure never to copy more
    than the size of the digest.
    Jay Berkenbilt authored
     
    Browse Dir »
  • When checking two objects preceding R while parsing, ensure that the
    objects are direct. This avoids stuff like 1 0 obj containing 1 0 R 0 R
    from causing an infinite loop in object resolution.
    Jay Berkenbilt authored
     
    Browse Dir »

  • Original reported here:
    https://bugs.launchpad.net/ubuntu/+source/qpdf/+bug/1397413
    
    The PDF specification says that the /Type key for nodes in the pages
    dictionary (both /Page and /Pages) is required, but some PDF files
    omit them. Use the presence of other keys to determine the type of
    pages tree node this is if the type key is not found.
    Jay Berkenbilt authored
     
    Browse Dir »


  • Jay Berkenbilt authored
     
    Browse Dir »
  • QPDFWriter was trying to make /Filter and /DecodeParms direct in all
    cases, but there are some cases where /DecodeParms may refer to a
    stream, which can't be direct. QPDFWriter doesn't actually need
    /DecodeParms to be direct in that case because it won't be able to
    filter the stream. Until we can handle this type of stream, just don't
    make /Filter and /DecodeParms direct if we can't filter the stream
    anyway.
    
    Fixes #34
    Jay Berkenbilt authored
     
    Browse Dir »







  • If NO_GET_ENVIRONMENT is #defined at compile time on Windows, do not
    call GetEnvironmentVariable.  QUtil::get_env will always return
    false.  This option is not available through configure.  This was
    added to support a specific user's requirements to avoid calling
    GetEnvironmentVariable from the Windows API.  Nothing in qpdf outside
    the test coverage system in qtest relies on QUtil::get_env.
    Jay Berkenbilt authored
     
    Browse Dir »



  • Ideally, the library should never call assert outside of test code,
    but it does in several places.  For some cases where the assertion
    might conceivably fail because of a problem with the input data,
    replace assertions with exceptions so that they can be trapped by the
    calling application.  This commit surely misses some cases and
    replaced some cases unnecessarily, but it should still be an
    improvement.
    Jay Berkenbilt authored
     
    Browse Dir »
  • In places where std::vector<T>(size_t) was used, either validate that
    the size parameter is sane or refactor code to avoid the need to
    pre-allocate the vector.
    Jay Berkenbilt authored
     
    Browse Dir »