| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "core/fpdfapi/fpdf_parser/include/cpdf_parser.h" | 7 #include "core/fpdfapi/fpdf_parser/include/cpdf_parser.h" |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "core/fxcrt/include/fx_ext.h" | 22 #include "core/fxcrt/include/fx_ext.h" |
| 23 #include "core/fxcrt/include/fx_safe_types.h" | 23 #include "core/fxcrt/include/fx_safe_types.h" |
| 24 #include "third_party/base/stl_util.h" | 24 #include "third_party/base/stl_util.h" |
| 25 | 25 |
| 26 namespace { | 26 namespace { |
| 27 | 27 |
| 28 // A limit on the size of the xref table. Theoretical limits are higher, but | 28 // A limit on the size of the xref table. Theoretical limits are higher, but |
| 29 // this may be large enough in practice. | 29 // this may be large enough in practice. |
| 30 const int32_t kMaxXRefSize = 1048576; | 30 const int32_t kMaxXRefSize = 1048576; |
| 31 | 31 |
| 32 // A limit on the maximum object number in the xref table. Theoretical limits | |
| 33 // are higher, but this may be large enough in practice. | |
| 34 const uint32_t kMaxObjectNumber = 1048576; | |
| 35 | |
| 36 uint32_t GetVarInt(const uint8_t* p, int32_t n) { | 32 uint32_t GetVarInt(const uint8_t* p, int32_t n) { |
| 37 uint32_t result = 0; | 33 uint32_t result = 0; |
| 38 for (int32_t i = 0; i < n; ++i) | 34 for (int32_t i = 0; i < n; ++i) |
| 39 result = result * 256 + p[i]; | 35 result = result * 256 + p[i]; |
| 40 return result; | 36 return result; |
| 41 } | 37 } |
| 42 | 38 |
| 43 int32_t GetStreamNCount(CPDF_StreamAcc* pObjStream) { | 39 int32_t GetStreamNCount(CPDF_StreamAcc* pObjStream) { |
| 44 return pObjStream->GetDict()->GetIntegerBy("N"); | 40 return pObjStream->GetDict()->GetIntegerBy("N"); |
| 45 } | 41 } |
| (...skipping 1615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1661 if (!LoadLinearizedAllCrossRefV4(m_LastXRefOffset, m_dwXrefStartObjNum) && | 1657 if (!LoadLinearizedAllCrossRefV4(m_LastXRefOffset, m_dwXrefStartObjNum) && |
| 1662 !LoadLinearizedAllCrossRefV5(m_LastXRefOffset)) { | 1658 !LoadLinearizedAllCrossRefV5(m_LastXRefOffset)) { |
| 1663 m_LastXRefOffset = 0; | 1659 m_LastXRefOffset = 0; |
| 1664 m_pSyntax->m_MetadataObjnum = dwSaveMetadataObjnum; | 1660 m_pSyntax->m_MetadataObjnum = dwSaveMetadataObjnum; |
| 1665 return FORMAT_ERROR; | 1661 return FORMAT_ERROR; |
| 1666 } | 1662 } |
| 1667 | 1663 |
| 1668 m_pSyntax->m_MetadataObjnum = dwSaveMetadataObjnum; | 1664 m_pSyntax->m_MetadataObjnum = dwSaveMetadataObjnum; |
| 1669 return SUCCESS; | 1665 return SUCCESS; |
| 1670 } | 1666 } |
| OLD | NEW |