// Copyright 2016 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #ifndef CORE_FPDFAPI_PARSER_CPDF_PARSER_H_ #define CORE_FPDFAPI_PARSER_CPDF_PARSER_H_ #include #include #include #include #include #include #include #include "core/fpdfapi/parser/cpdf_cross_ref_table.h" #include "core/fpdfapi/parser/cpdf_indirect_object_holder.h" #include "core/fxcrt/bytestring.h" #include "core/fxcrt/fx_types.h" #include "core/fxcrt/retain_ptr.h" #include "core/fxcrt/unowned_ptr.h" class CPDF_Array; class CPDF_Dictionary; class CPDF_LinearizedHeader; class CPDF_Object; class CPDF_ObjectStream; class CPDF_ReadValidator; class CPDF_SecurityHandler; class CPDF_SyntaxParser; class IFX_ArchiveStream; class IFX_SeekableReadStream; class CPDF_Parser { public: class ParsedObjectsHolder : public CPDF_IndirectObjectHolder { public: virtual bool TryInit() = 0; }; enum Error { SUCCESS = 0, FILE_ERROR, FORMAT_ERROR, PASSWORD_ERROR, HANDLER_ERROR }; // A limit on the maximum object number in the xref table. Theoretical limits // are higher, but this may be large enough in practice. // Note: This was 1M, but https://crbug.com/910009 encountered a PDF with // object numbers in the 1.7M range. The PDF only has 10K objects, but they // are non-consecutive. static constexpr uint32_t kMaxObjectNumber = 4 * 1024 * 1024; static constexpr size_t kInvalidPos = std::numeric_limits::max(); explicit CPDF_Parser(ParsedObjectsHolder* holder); CPDF_Parser(); ~CPDF_Parser(); Error StartParse(RetainPtr pFile, const ByteString& password); Error StartLinearizedParse(RetainPtr validator, const ByteString& password); ByteString GetPassword() const { return m_Password; } // Take the GetPassword() value and encode it, if necessary, based on the // password encoding conversion. ByteString GetEncodedPassword() const; const CPDF_Dictionary* GetTrailer() const; uint32_t GetTrailerObjectNumber() const; // Returns a new trailer which combines the last read trailer with the /Root // and /Info from previous ones. RetainPtr GetCombinedTrailer() const; FX_FILESIZE GetLastXRefOffset() const { return m_LastXRefOffset; } uint32_t GetPermissions(bool get_owner_perms) const; uint32_t GetRootObjNum() const; uint32_t GetInfoObjNum() const; RetainPtr GetIDArray() const; RetainPtr GetEncryptDict() const; RetainPtr ParseIndirectObject(uint32_t objnum); uint32_t GetLastObjNum() const; bool IsValidObjectNumber(uint32_t objnum) const; FX_FILESIZE GetObjectPositionOrZero(uint32_t objnum) const; const RetainPtr& GetSecurityHandler() const { return m_pSecurityHandler; } bool IsObjectFree(uint32_t objnum) const; int GetFileVersion() const { return m_FileVersion; } bool IsXRefStream() const { return m_bXRefStream; } FX_FILESIZE GetDocumentSize() const; uint32_t GetFirstPageNo() const; const CPDF_LinearizedHeader* GetLinearizedHeader() const { return m_pLinearized.get(); } bool xref_table_rebuilt() const { return m_bXRefTableRebuilt; } std::vector GetTrailerEnds(); bool WriteToArchive(IFX_ArchiveStream* archive, FX_FILESIZE src_size); const CPDF_CrossRefTable* GetCrossRefTableForTesting() const { return m_CrossRefTable.get(); } CPDF_Dictionary* GetMutableTrailerForTesting(); RetainPtr ParseIndirectObjectAtForTesting(FX_FILESIZE pos) { return ParseIndirectObjectAt(pos, 0); } void SetLinearizedHeaderForTesting( std::unique_ptr pLinearized); protected: bool LoadCrossRefTable(FX_FILESIZE pos, bool skip); bool RebuildCrossRef(); Error StartParseInternal(); FX_FILESIZE ParseStartXRef(); std::unique_ptr ParseLinearizedHeader(); void SetSyntaxParserForTesting(std::unique_ptr parser); private: friend class CPDF_DataAvail; struct CrossRefObjData { uint32_t obj_num = 0; CPDF_CrossRefTable::ObjectInfo info; }; bool LoadAllCrossRefTablesAndStreams(FX_FILESIZE xref_offset); bool FindAllCrossReferenceTablesAndStream( FX_FILESIZE main_xref_offset, std::vector& xref_list, std::vector& xref_stream_list); bool LoadCrossRefStream(FX_FILESIZE* pos, bool is_main_xref); void ProcessCrossRefStreamEntry(pdfium::span entry_span, pdfium::span field_widths, uint32_t obj_num); RetainPtr LoadTrailer(); Error SetEncryptHandler(); void ReleaseEncryptHandler(); bool LoadLinearizedAllCrossRefTable(FX_FILESIZE main_xref_offset); bool LoadLinearizedAllCrossRefStream(FX_FILESIZE main_xref_offset); Error LoadLinearizedMainXRefTable(); const CPDF_ObjectStream* GetObjectStream(uint32_t object_number); RetainPtr GetRoot() const; // A simple check whether the cross reference table matches with // the objects. bool VerifyCrossRefTable(); RetainPtr ParseIndirectObjectAt(FX_FILESIZE pos, uint32_t objnum); // If out_objects is null, the parser position will be moved to end subsection // without additional validation. bool ParseAndAppendCrossRefSubsectionData( uint32_t start_objnum, uint32_t count, std::vector* out_objects); bool ParseCrossRefTable(std::vector* out_objects); void MergeCrossRefObjectsData(const std::vector& objects); bool InitSyntaxParser(RetainPtr validator); bool ParseFileVersion(); void SetPassword(const ByteString& password) { m_Password = password; } std::unique_ptr m_pSyntax; std::unique_ptr m_pOwnedObjectsHolder; UnownedPtr m_pObjectsHolder; bool m_bHasParsed = false; bool m_bXRefStream = false; bool m_bXRefTableRebuilt = false; int m_FileVersion = 0; uint32_t m_MetadataObjnum = 0; // m_CrossRefTable must be destroyed after m_pSecurityHandler due to the // ownership of the ID array data. std::unique_ptr m_CrossRefTable; FX_FILESIZE m_LastXRefOffset = 0; ByteString m_Password; std::unique_ptr m_pLinearized; // A map of object numbers to indirect streams. std::map> m_ObjectStreamMap; // All indirect object numbers that are being parsed. std::set m_ParsingObjNums; RetainPtr m_pSecurityHandler; }; #endif // CORE_FPDFAPI_PARSER_CPDF_PARSER_H_