Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AndroidSystemCore
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Werner Sembach
AndroidSystemCore
Commits
64406ab1
Commit
64406ab1
authored
Sep 12, 2017
by
TreeHugger Robot
Committed by
Android (Google) Code Review
Sep 12, 2017
Browse files
Options
Downloads
Plain Diff
Merge "zip_archive: reject files that don't start with an LFH signature." into lmp-dev
parents
c17624db
2d516d2d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
libziparchive/zip_archive.cc
+16
-0
16 additions, 0 deletions
libziparchive/zip_archive.cc
libziparchive/zip_archive_test.cc
+49
-0
49 additions, 0 deletions
libziparchive/zip_archive_test.cc
with
65 additions
and
0 deletions
libziparchive/zip_archive.cc
+
16
−
0
View file @
64406ab1
...
...
@@ -670,6 +670,22 @@ static int32_t ParseZipArchive(ZipArchive* archive) {
goto
bail
;
}
}
uint32_t
lfh_start_bytes
;
if
(
!
archive
->
mapped_zip
.
ReadAtOffset
(
reinterpret_cast
<
uint8_t
*>
(
&
lfh_start_bytes
),
sizeof
(
uint32_t
),
0
))
{
ALOGW
(
"Zip: Unable to read header for entry at offset == 0."
);
return
-
1
;
}
if
(
lfh_start_bytes
!=
LocalFileHeader
::
kSignature
)
{
ALOGW
(
"Zip: Entry at offset zero has invalid LFH signature %"
PRIx32
,
lfh_start_bytes
);
#if defined(__ANDROID__)
android_errorWriteLog
(
0x534e4554
,
"64211847"
);
#endif
return
-
1
;
}
ALOGV
(
"+++ zip good scan %"
PRIu16
" entries"
,
num_entries
);
result
=
0
;
...
...
This diff is collapsed.
Click to expand it.
libziparchive/zip_archive_test.cc
+
49
−
0
View file @
64406ab1
...
...
@@ -256,6 +256,55 @@ TEST(ziparchive, ExtractToFile) {
close
(
fd
);
}
// A zip file whose local file header at offset zero is corrupted.
//
// ---------------
// cat foo > a.txt
// zip a.zip a.txt
// cat a.zip | xxd -i
//
// Manual changes :
// [2] = 0xff // Corrupt the LFH signature of entry 0.
// [3] = 0xff // Corrupt the LFH signature of entry 0.
static
const
std
::
vector
<
uint8_t
>
kZipFileWithBrokenLfhSignature
{
//[lfh-sig-----------], [lfh contents---------------------------------
0x50
,
0x4b
,
0xff
,
0xff
,
0x0a
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x77
,
0x80
,
//--------------------------------------------------------------------
0x09
,
0x4b
,
0xa8
,
0x65
,
0x32
,
0x7e
,
0x04
,
0x00
,
0x00
,
0x00
,
0x04
,
0x00
,
//-------------------------------] [file-name-----------------], [---
0x00
,
0x00
,
0x05
,
0x00
,
0x1c
,
0x00
,
0x61
,
0x2e
,
0x74
,
0x78
,
0x74
,
0x55
,
// entry-contents------------------------------------------------------
0x54
,
0x09
,
0x00
,
0x03
,
0x51
,
0x24
,
0x8b
,
0x59
,
0x51
,
0x24
,
0x8b
,
0x59
,
//--------------------------------------------------------------------
0x75
,
0x78
,
0x0b
,
0x00
,
0x01
,
0x04
,
0x89
,
0x42
,
0x00
,
0x00
,
0x04
,
0x88
,
//-------------------------------------], [cd-record-sig-------], [---
0x13
,
0x00
,
0x00
,
0x66
,
0x6f
,
0x6f
,
0x0a
,
0x50
,
0x4b
,
0x01
,
0x02
,
0x1e
,
// cd-record-----------------------------------------------------------
0x03
,
0x0a
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x77
,
0x80
,
0x09
,
0x4b
,
0xa8
,
//--------------------------------------------------------------------
0x65
,
0x32
,
0x7e
,
0x04
,
0x00
,
0x00
,
0x00
,
0x04
,
0x00
,
0x00
,
0x00
,
0x05
,
//--------------------------------------------------------------------
0x00
,
0x18
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x01
,
0x00
,
0x00
,
0x00
,
0xa0
,
//-] [lfh-file-header-off-], [file-name-----------------], [extra----
0x81
,
0x00
,
0x00
,
0x00
,
0x00
,
0x61
,
0x2e
,
0x74
,
0x78
,
0x74
,
0x55
,
0x54
,
//--------------------------------------------------------------------
0x05
,
0x00
,
0x03
,
0x51
,
0x24
,
0x8b
,
0x59
,
0x75
,
0x78
,
0x0b
,
0x00
,
0x01
,
//-------------------------------------------------------], [eocd-sig-
0x04
,
0x89
,
0x42
,
0x00
,
0x00
,
0x04
,
0x88
,
0x13
,
0x00
,
0x00
,
0x50
,
0x4b
,
//-------], [---------------------------------------------------------
0x05
,
0x06
,
0x00
,
0x00
,
0x00
,
0x00
,
0x01
,
0x00
,
0x01
,
0x00
,
0x4b
,
0x00
,
//-------------------------------------------]
0x00
,
0x00
,
0x43
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
};
TEST
(
ziparchive
,
BrokenLfhSignature
)
{
TemporaryFile
tmp_file
;
ASSERT_NE
(
-
1
,
tmp_file
.
fd
);
ASSERT_TRUE
(
android
::
base
::
WriteFully
(
tmp_file
.
fd
,
&
kZipFileWithBrokenLfhSignature
[
0
],
kZipFileWithBrokenLfhSignature
.
size
()));
ZipArchiveHandle
handle
;
ASSERT_EQ
(
-
1
,
OpenArchiveFd
(
tmp_file
.
fd
,
"LeadingNonZipBytes"
,
&
handle
));
}
int
main
(
int
argc
,
char
**
argv
)
{
::
testing
::
InitGoogleTest
(
&
argc
,
argv
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment