Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
680b4e90
Kaydet (Commit)
680b4e90
authored
Şub 03, 2011
tarafından
Philipp Lohmann [pl]
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
vcl119: #163136# produce correct output when decrypting
üst
f1c483c9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
114 additions
and
15 deletions
+114
-15
pdfentries.cxx
sdext/source/pdfimport/pdfparse/pdfentries.cxx
+114
-15
No files found.
sdext/source/pdfimport/pdfparse/pdfentries.cxx
Dosyayı görüntüle @
680b4e90
...
...
@@ -59,6 +59,8 @@ struct EmitImplData
XRefTable
m_aXRefTable
;
// container of all indirect objects (usually a PDFFile*)
const
PDFContainer
*
m_pObjectContainer
;
unsigned
int
m_nDecryptObject
;
unsigned
int
m_nDecryptGeneration
;
// returns true if the xref table was updated
bool
insertXref
(
unsigned
int
nObject
,
unsigned
int
nGeneration
,
unsigned
int
nOffset
)
...
...
@@ -80,7 +82,9 @@ struct EmitImplData
}
EmitImplData
(
const
PDFContainer
*
pTopContainer
)
:
m_pObjectContainer
(
pTopContainer
)
m_pObjectContainer
(
pTopContainer
),
m_nDecryptObject
(
0
),
m_nDecryptGeneration
(
0
)
{}
~
EmitImplData
()
{}
bool
decrypt
(
const
sal_uInt8
*
pInBuffer
,
sal_uInt32
nLen
,
sal_uInt8
*
pOutBuffer
,
...
...
@@ -89,6 +93,12 @@ struct EmitImplData
const
PDFFile
*
pFile
=
dynamic_cast
<
const
PDFFile
*>
(
m_pObjectContainer
);
return
pFile
?
pFile
->
decrypt
(
pInBuffer
,
nLen
,
pOutBuffer
,
nObject
,
nGeneration
)
:
false
;
}
void
setDecryptObject
(
unsigned
int
nObject
,
unsigned
int
nGeneration
)
{
m_nDecryptObject
=
nObject
;
m_nDecryptGeneration
=
nGeneration
;
}
};
}
...
...
@@ -199,6 +209,46 @@ bool PDFString::emit( EmitContext& rWriteContext ) const
{
if
(
!
rWriteContext
.
write
(
" "
,
1
)
)
return
false
;
EmitImplData
*
pEData
=
getEmitData
(
rWriteContext
);
if
(
rWriteContext
.
m_bDecrypt
&&
pEData
&&
pEData
->
m_nDecryptObject
)
{
OString
aFiltered
(
getFilteredString
()
);
// decrypt inplace (evil since OString is supposed to be const
// however in this case we know that getFilteredString returned a singular string instance
pEData
->
decrypt
(
(
sal_uInt8
*
)
aFiltered
.
getStr
(),
aFiltered
.
getLength
(),
(
sal_uInt8
*
)
aFiltered
.
getStr
(),
pEData
->
m_nDecryptObject
,
pEData
->
m_nDecryptGeneration
);
// check for string or hex string
const
sal_Char
*
pStr
=
aFiltered
.
getStr
();
if
(
aFiltered
.
getLength
()
>
1
&&
(
(
pStr
[
0
]
==
sal_Char
(
0xff
)
&&
pStr
[
1
]
==
sal_Char
(
0xfe
))
||
(
pStr
[
0
]
==
sal_Char
(
0xfe
)
&&
pStr
[
1
]
==
sal_Char
(
0xff
))
)
)
{
static
const
char
pHexTab
[
16
]
=
{
'0'
,
'1'
,
'2'
,
'3'
,
'4'
,
'5'
,
'6'
,
'7'
,
'8'
,
'9'
,
'A'
,
'B'
,
'C'
,
'D'
,
'E'
,
'F'
};
if
(
!
rWriteContext
.
write
(
"<"
,
1
)
)
return
false
;
for
(
sal_Int32
i
=
0
;
i
<
aFiltered
.
getLength
();
i
++
)
{
if
(
!
rWriteContext
.
write
(
pHexTab
+
((
sal_uInt32
(
pStr
[
i
])
>>
4
)
&
0x0f
),
1
)
)
return
false
;
if
(
!
rWriteContext
.
write
(
pHexTab
+
(
sal_uInt32
(
pStr
[
i
])
&
0x0f
),
1
)
)
return
false
;
}
if
(
!
rWriteContext
.
write
(
">"
,
1
)
)
return
false
;
}
else
{
if
(
!
rWriteContext
.
write
(
"("
,
1
)
)
return
false
;
if
(
!
rWriteContext
.
write
(
aFiltered
.
getStr
(),
aFiltered
.
getLength
()
)
)
return
false
;
if
(
!
rWriteContext
.
write
(
")"
,
1
)
)
return
false
;
}
return
true
;
}
return
rWriteContext
.
write
(
m_aString
.
getStr
(),
m_aString
.
getLength
()
);
}
...
...
@@ -418,6 +468,15 @@ bool PDFContainer::emitSubElements( EmitContext& rWriteContext ) const
int
nEle
=
m_aSubElements
.
size
();
for
(
int
i
=
0
;
i
<
nEle
;
i
++
)
{
if
(
rWriteContext
.
m_bDecrypt
)
{
const
PDFName
*
pName
=
dynamic_cast
<
PDFName
*>
(
m_aSubElements
[
i
]);
if
(
pName
&&
pName
->
m_aName
.
equals
(
rtl
::
OString
(
"Encrypt"
)
)
)
{
i
++
;
continue
;
}
}
if
(
!
m_aSubElements
[
i
]
->
emit
(
rWriteContext
)
)
return
false
;
}
...
...
@@ -735,7 +794,7 @@ bool PDFObject::writeStream( EmitContext& rWriteContext, const PDFFile* pParsedF
{
char
*
pStream
=
NULL
;
unsigned
int
nBytes
=
0
;
if
(
getDeflatedStream
(
&
pStream
,
&
nBytes
,
pParsedFile
,
rWriteContext
)
&&
nBytes
)
if
(
getDeflatedStream
(
&
pStream
,
&
nBytes
,
pParsedFile
,
rWriteContext
)
&&
nBytes
&&
rWriteContext
.
m_bDeflate
)
{
sal_uInt8
*
pOutBytes
=
NULL
;
sal_uInt32
nOutBytes
=
0
;
...
...
@@ -767,17 +826,27 @@ bool PDFObject::emit( EmitContext& rWriteContext ) const
if
(
!
rWriteContext
.
write
(
aBuf
.
getStr
(),
aBuf
.
getLength
()
)
)
return
false
;
if
(
rWriteContext
.
m_bDeflate
&&
pEData
)
if
(
pEData
)
pEData
->
setDecryptObject
(
m_nNumber
,
m_nGeneration
);
if
(
(
rWriteContext
.
m_bDeflate
||
rWriteContext
.
m_bDecrypt
)
&&
pEData
)
{
char
*
pStream
=
NULL
;
unsigned
int
nBytes
=
0
;
if
(
getDeflatedStream
(
&
pStream
,
&
nBytes
,
pEData
->
m_pObjectContainer
,
rWriteContext
)
&&
pStream
&&
nBytes
)
bool
bDeflate
=
getDeflatedStream
(
&
pStream
,
&
nBytes
,
pEData
->
m_pObjectContainer
,
rWriteContext
);
if
(
pStream
&&
nBytes
)
{
// unzip the stream
sal_uInt8
*
pOutBytes
=
NULL
;
sal_uInt32
nOutBytes
=
0
;
unzipToBuffer
(
pStream
,
nBytes
,
&
pOutBytes
,
&
nOutBytes
);
if
(
bDeflate
&&
rWriteContext
.
m_bDeflate
)
unzipToBuffer
(
pStream
,
nBytes
,
&
pOutBytes
,
&
nOutBytes
);
else
{
// nothing to deflate, but decryption has happened
pOutBytes
=
(
sal_uInt8
*
)
pStream
;
nOutBytes
=
(
sal_uInt32
)
nBytes
;
}
if
(
nOutBytes
)
{
// clone this object
...
...
@@ -785,8 +854,32 @@ bool PDFObject::emit( EmitContext& rWriteContext ) const
// set length in the dictionary to new stream length
PDFNumber
*
pNewLen
=
new
PDFNumber
(
double
(
nOutBytes
)
);
pClone
->
m_pStream
->
m_pDict
->
insertValue
(
"Length"
,
pNewLen
);
// delete flatedecode filter
pClone
->
m_pStream
->
m_pDict
->
eraseValue
(
"Filter"
);
if
(
bDeflate
&&
rWriteContext
.
m_bDeflate
)
{
// delete flatedecode filter
std
::
hash_map
<
OString
,
PDFEntry
*
,
OStringHash
>::
const_iterator
it
=
pClone
->
m_pStream
->
m_pDict
->
m_aMap
.
find
(
"Filter"
);
if
(
it
!=
pClone
->
m_pStream
->
m_pDict
->
m_aMap
.
end
()
)
{
PDFName
*
pFilter
=
dynamic_cast
<
PDFName
*>
(
it
->
second
);
if
(
pFilter
&&
pFilter
->
m_aName
.
equals
(
"FlateDecode"
)
)
pClone
->
m_pStream
->
m_pDict
->
eraseValue
(
"Filter"
);
else
{
PDFArray
*
pArray
=
dynamic_cast
<
PDFArray
*>
(
it
->
second
);
if
(
pArray
&&
!
pArray
->
m_aSubElements
.
empty
()
)
{
pFilter
=
dynamic_cast
<
PDFName
*>
(
pArray
->
m_aSubElements
.
front
());
if
(
pFilter
&&
pFilter
->
m_aName
.
equals
(
"FlateDecode"
)
)
{
delete
pFilter
;
pArray
->
m_aSubElements
.
erase
(
pArray
->
m_aSubElements
.
begin
()
);
}
}
}
}
}
// write sub elements except stream
bool
bRet
=
true
;
...
...
@@ -805,17 +898,23 @@ bool PDFObject::emit( EmitContext& rWriteContext ) const
if
(
bRet
)
bRet
=
rWriteContext
.
write
(
"
\n
endstream
\n
endobj
\n
"
,
18
);
rtl_freeMemory
(
pStream
);
rtl_freeMemory
(
pOutBytes
);
if
(
pOutBytes
!=
(
sal_uInt8
*
)
pStream
)
rtl_freeMemory
(
pOutBytes
);
if
(
pEData
)
pEData
->
setDecryptObject
(
0
,
0
);
return
bRet
;
}
rtl_freeMemory
(
pOutBytes
);
if
(
pOutBytes
!=
(
sal_uInt8
*
)
pStream
)
rtl_freeMemory
(
pOutBytes
);
}
rtl_freeMemory
(
pStream
);
}
if
(
!
emitSubElements
(
rWriteContext
)
)
return
false
;
return
rWriteContext
.
write
(
"
\n
endobj
\n
"
,
8
);
bool
bRet
=
emitSubElements
(
rWriteContext
)
&&
rWriteContext
.
write
(
"
\n
endobj
\n
"
,
8
);
if
(
pEData
)
pEData
->
setDecryptObject
(
0
,
0
);
return
bRet
;
}
PDFEntry
*
PDFObject
::
clone
()
const
...
...
@@ -1304,13 +1403,13 @@ PDFFileImplData* PDFFile::impl_getData() const
if
(
pNum
)
m_pData
->
m_nPEntry
=
static_cast
<
sal_uInt32
>
(
static_cast
<
sal_Int32
>
(
pNum
->
m_fValue
));
#if OSL_DEBUG_LEVEL > 1
fprintf
(
stderr
,
"p entry is %p
\n
"
,
m_pData
->
m_nPEntry
);
fprintf
(
stderr
,
"p entry is %p
\n
"
,
(
void
*
)
m_pData
->
m_nPEntry
);
#endif
}
#if OSL_DEBUG_LEVEL > 1
fprintf
(
stderr
,
"Encryption dict: sec handler: %s, version = %d, revision = %d, key length = %d
\n
"
,
pFilter
?
OUStringToOString
(
pFilter
->
getFilteredName
(),
RTL_TEXTENCODING_UTF8
).
getStr
()
:
"<unknown>"
,
(
int
)
m_pData
->
m_nAlgoVersion
,
(
int
)
m_pData
->
m_nStandardRevision
,
m_pData
->
m_nKeyLength
);
(
int
)
m_pData
->
m_nAlgoVersion
,
(
int
)
m_pData
->
m_nStandardRevision
,
(
int
)
m_pData
->
m_nKeyLength
);
#endif
break
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment