From aa50728980036f07fda232cea974fd80c89b7cb7 Mon Sep 17 00:00:00 2001 From: Artem Strygin Date: Tue, 24 Jul 2018 10:14:24 +0000 Subject: Fix encryption dictionary owning. Return encryption dictionary as const reference from CPDF_Parser. Create a copy in CPDF_Creator if needed. Change-Id: I270f71d307d818fba7f65ebe379f5942ae816934 Reviewed-on: https://pdfium-review.googlesource.com/38390 Reviewed-by: Lei Zhang Commit-Queue: Art Snake --- core/fpdfapi/parser/cpdf_parser.cpp | 66 ++++++++++++++++--------------------- 1 file changed, 29 insertions(+), 37 deletions(-) (limited to 'core/fpdfapi/parser/cpdf_parser.cpp') diff --git a/core/fpdfapi/parser/cpdf_parser.cpp b/core/fpdfapi/parser/cpdf_parser.cpp index 4d3835795c..16077fd39e 100644 --- a/core/fpdfapi/parser/cpdf_parser.cpp +++ b/core/fpdfapi/parser/cpdf_parser.cpp @@ -119,10 +119,6 @@ bool CPDF_Parser::IsObjectFree(uint32_t objnum) const { return GetObjectType(objnum) == ObjectType::kFree; } -void CPDF_Parser::SetEncryptDictionary(const CPDF_Dictionary* pDict) { - m_pEncryptDict = pDict ? ToDictionary(pDict->Clone()) : nullptr; -} - RetainPtr CPDF_Parser::GetFileAccess() const { return m_pSyntax->GetFileAccess(); } @@ -260,37 +256,24 @@ CPDF_Parser::Error CPDF_Parser::SetEncryptHandler() { if (!GetTrailer()) return FORMAT_ERROR; - const CPDF_Object* pEncryptObj = GetTrailer()->GetObjectFor("Encrypt"); - if (pEncryptObj) { - if (const CPDF_Dictionary* pEncryptDict = pEncryptObj->AsDictionary()) { - SetEncryptDictionary(pEncryptDict); - } else if (const CPDF_Reference* pRef = pEncryptObj->AsReference()) { - pEncryptObj = - m_pObjectsHolder->GetOrParseIndirectObject(pRef->GetRefObjNum()); - if (pEncryptObj) - SetEncryptDictionary(pEncryptObj->GetDict()); - } - } + const CPDF_Dictionary* pEncryptDict = GetEncryptDict(); + if (!pEncryptDict) + return SUCCESS; - if (m_pEncryptDict) { - ByteString filter = m_pEncryptDict->GetStringFor("Filter"); - if (filter != "Standard") - return HANDLER_ERROR; + if (pEncryptDict->GetStringFor("Filter") != "Standard") + return HANDLER_ERROR; - std::unique_ptr pSecurityHandler = - pdfium::MakeUnique(); - if (!pSecurityHandler->OnInit(m_pEncryptDict.get(), GetIDArray(), - m_Password)) - return PASSWORD_ERROR; + std::unique_ptr pSecurityHandler = + pdfium::MakeUnique(); + if (!pSecurityHandler->OnInit(pEncryptDict, GetIDArray(), m_Password)) + return PASSWORD_ERROR; - m_pSecurityHandler = std::move(pSecurityHandler); - } + m_pSecurityHandler = std::move(pSecurityHandler); return SUCCESS; } void CPDF_Parser::ReleaseEncryptHandler() { m_pSecurityHandler.reset(); - SetEncryptDictionary(nullptr); } // Ideally, all the cross reference entries should be verified. @@ -828,6 +811,24 @@ CPDF_Dictionary* CPDF_Parser::GetRoot() const { return obj ? obj->GetDict() : nullptr; } +const CPDF_Dictionary* CPDF_Parser::GetEncryptDict() const { + if (!GetTrailer()) + return nullptr; + + const CPDF_Object* pEncryptObj = GetTrailer()->GetObjectFor("Encrypt"); + if (!pEncryptObj) + return nullptr; + + if (pEncryptObj->IsDictionary()) + return ToDictionary(pEncryptObj); + + if (pEncryptObj->IsReference()) { + return ToDictionary(m_pObjectsHolder->GetOrParseIndirectObject( + pEncryptObj->AsReference()->GetRefObjNum())); + } + return nullptr; +} + const CPDF_Dictionary* CPDF_Parser::GetTrailer() const { return m_CrossRefTable->trailer(); } @@ -954,16 +955,7 @@ std::unique_ptr CPDF_Parser::LoadTrailerV4() { } uint32_t CPDF_Parser::GetPermissions() const { - if (!m_pSecurityHandler) - return 0xFFFFFFFF; - - uint32_t dwPermission = m_pSecurityHandler->GetPermissions(); - if (m_pEncryptDict && m_pEncryptDict->GetStringFor("Filter") == "Standard") { - // See PDF Reference 1.7, page 123, table 3.20. - dwPermission &= 0xFFFFFFFC; - dwPermission |= 0xFFFFF0C0; - } - return dwPermission; + return m_pSecurityHandler ? m_pSecurityHandler->GetPermissions() : 0xFFFFFFFF; } std::unique_ptr CPDF_Parser::ParseLinearizedHeader() { -- cgit v1.2.3