fixed opening zip files with > 100k files in it cause by last check-in

This commit is contained in:
Nathan Moinvaziri 2012-06-27 04:24:09 -07:00
parent a39d6dfa81
commit f736321e0d
2 changed files with 34 additions and 43 deletions

35
unzip.c
View File

@ -104,6 +104,12 @@
#endif
/* compile with -Dlocal if your debugger can't find static symbols */
#define DISKHEADERMAGIC (0x08074b50)
#define LOCALHEADERMAGIC (0x04034b50)
#define CENTRALHEADERMAGIC (0x02014b50)
#define ENDHEADERMAGIC (0x06054b50)
#define ZIP64ENDHEADERMAGIC (0x06064b50)
#define ZIP64ENDLOCHEADERMAGIC (0x07064b50)
#ifndef CASESENSITIVITYDEFAULT_NO
# if !defined(unix) && !defined(CASESENSITIVITYDEFAULT_YES)
@ -224,7 +230,6 @@ typedef struct
IN assertion: the stream s has been sucessfully opened for reading.
*/
local int unz64local_getByte OF((
const zlib_filefunc64_32_def* pzlib_filefunc_def,
voidpf filestream,
@ -472,8 +477,10 @@ local ZPOS64_T unz64local_SearchCentralDir(const zlib_filefunc64_32_def* pzlib_f
break;
for (i=(int)uReadSize-3; (i--)>0;)
if (((*(buf+i))==0x50) && ((*(buf+i+1))==0x4b) &&
((*(buf+i+2))==0x05) && ((*(buf+i+3))==0x06))
if (((*(buf+i))==(ENDHEADERMAGIC & 0xff)) &&
((*(buf+i+1))==(ENDHEADERMAGIC >> 8 & 0xff)) &&
((*(buf+i+2))==(ENDHEADERMAGIC >> 16 & 0xff)) &&
((*(buf+i+3))==(ENDHEADERMAGIC >> 24 & 0xff)))
{
uPosFound = uReadPos+i;
break;
@ -502,27 +509,17 @@ local ZPOS64_T unz64local_SearchCentralDir64(const zlib_filefunc64_32_def* pzlib
const ZPOS64_T endcentraloffset)
{
ZPOS64_T relativeOffset;
ZPOS64_T uPosFound;
uLong uL;
if (ZSEEK64(*pzlib_filefunc_def,filestream,0,ZLIB_FILEFUNC_SEEK_END) != 0)
return 0;
/* Given location of end of central offset record we can */
relativeOffset = endcentraloffset + SIZECENTRALHEADERLOCATOR;
uPosFound = ZTELL64(*pzlib_filefunc_def,filestream) - relativeOffset;
if (uPosFound <= 0)
return 0;
/* Zip64 end of central directory locator */
if (ZSEEK64(*pzlib_filefunc_def,filestream, uPosFound,ZLIB_FILEFUNC_SEEK_SET)!=0)
if (ZSEEK64(*pzlib_filefunc_def,filestream,endcentraloffset - SIZECENTRALHEADERLOCATOR,ZLIB_FILEFUNC_SEEK_SET)!=0)
return 0;
/* read locator signature */
if (unz64local_getLong(pzlib_filefunc_def,filestream,&uL)!=UNZ_OK)
return 0;
if (uL != 0x07064b50)
if (uL != ZIP64ENDLOCHEADERMAGIC)
return 0;
/* number of the disk with the start of the zip64 end of central directory */
@ -549,7 +546,7 @@ local ZPOS64_T unz64local_SearchCentralDir64(const zlib_filefunc64_32_def* pzlib
if (unz64local_getLong(pzlib_filefunc_def,filestream,&uL)!=UNZ_OK)
return 0;
if (uL != 0x06064b50)
if (uL != ZIP64ENDHEADERMAGIC)
return 0;
return relativeOffset;
@ -648,7 +645,7 @@ local unzFile unzOpenInternal (const void *path,
if (unz64local_getShort(&us.z_filefunc, us.filestream,&us.gi.size_comment)!=UNZ_OK)
err=UNZ_ERRNO;
if ((err==UNZ_OK) && ((us.size_central_dir==0xffff) || (us.offset_central_dir==0xffffffff)))
if ((err==UNZ_OK) && ((us.gi.number_entry==0xffff) || (us.size_central_dir==0xffff) || (us.offset_central_dir==0xffffffff)))
{
/* Format should be Zip64, as the central directory or file size is too large */
central_pos = unz64local_SearchCentralDir64(&us.z_filefunc,us.filestream,central_pos);
@ -892,7 +889,7 @@ local int unz64local_GetCurrentFileInfoInternal (unzFile file,
{
if (unz64local_getLong(&s->z_filefunc, s->filestream_with_CD,&uMagic) != UNZ_OK)
err=UNZ_ERRNO;
else if (uMagic!=0x02014b50)
else if (uMagic!=CENTRALHEADERMAGIC)
err=UNZ_BADZIPFILE;
}
@ -1480,7 +1477,7 @@ local int unz64local_CheckCurrentFileCoherencyHeader (unz64_s* s, uInt* piSizeVa
{
if (unz64local_getLong(&s->z_filefunc, s->filestream,&uMagic) != UNZ_OK)
err=UNZ_ERRNO;
else if (uMagic!=0x04034b50)
else if (uMagic!=LOCALHEADERMAGIC)
err=UNZ_BADZIPFILE;
}

42
zip.c
View File

@ -113,12 +113,12 @@ const char zip_copyright[] =" zip 1.01 Copyright 1998-2004 Gilles Vollant - http
#define SIZEDATA_INDATABLOCK (4096-(4*4))
#define DISKHEADERMAGIC (0x08074b50)
#define LOCALHEADERMAGIC (0x04034b50)
#define CENTRALHEADERMAGIC (0x02014b50)
#define ENDHEADERMAGIC (0x06054b50)
#define ZIP64ENDHEADERMAGIC (0x6064b50)
#define ZIP64ENDLOCHEADERMAGIC (0x7064b50)
#define DISKHEADERMAGIC (0x08074b50)
#define LOCALHEADERMAGIC (0x04034b50)
#define CENTRALHEADERMAGIC (0x02014b50)
#define ENDHEADERMAGIC (0x06054b50)
#define ZIP64ENDHEADERMAGIC (0x06064b50)
#define ZIP64ENDLOCHEADERMAGIC (0x07064b50)
#define FLAG_LOCALHEADER_OFFSET (0x06)
#define CRC_LOCALHEADER_OFFSET (0x0e)
@ -600,7 +600,13 @@ local int zipGoToNextDisk(zipFile file)
return err;
}
local ZPOS64_T zip64local_SearchCentralDirInternal(const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, int magicCode)
/*
Locate the Central directory of a zipfile (at the end, just before
the global comment)
*/
local ZPOS64_T zip64local_SearchCentralDir OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream));
local ZPOS64_T zip64local_SearchCentralDir(const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream)
{
unsigned char* buf;
ZPOS64_T uSizeFile;
@ -642,10 +648,10 @@ local ZPOS64_T zip64local_SearchCentralDirInternal(const zlib_filefunc64_32_def*
break;
for (i=(int)uReadSize-3; (i--)>0;)
if ((*(buf+i))==(magicCode >> 24 & 0xff) &&
(*(buf+i+1))==(magicCode >> 16 & 0xff) &&
(*(buf+i+2))==(magicCode >> 8 & 0xff) &&
(*(buf+i+3))==(magicCode & 0xff))
if ((*(buf+i))==(ENDHEADERMAGIC & 0xff) &&
(*(buf+i+1))==(ENDHEADERMAGIC >> 8 & 0xff) &&
(*(buf+i+2))==(ENDHEADERMAGIC >> 16 & 0xff) &&
(*(buf+i+3))==(ENDHEADERMAGIC >> 24 & 0xff))
{
uPosFound = uReadPos+i;
break;
@ -658,17 +664,6 @@ local ZPOS64_T zip64local_SearchCentralDirInternal(const zlib_filefunc64_32_def*
return uPosFound;
}
/*
Locate the Central directory of a zipfile (at the end, just before
the global comment)
*/
local ZPOS64_T zip64local_SearchCentralDir OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream));
local ZPOS64_T zip64local_SearchCentralDir(const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream)
{
return zip64local_SearchCentralDirInternal(pzlib_filefunc_def, filestream, 0x504b0506);
}
#define SIZECENTRALHEADERLOCATOR (0x14) /* 20 */
/*
@ -860,8 +855,7 @@ int LoadCentralDirectoryRecord(zip64_internal* pziinit)
if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream,&size_central_dir)!=ZIP_OK)
err=ZIP_ERRNO;
/* offset of start of central directory with respect to the
starting disk number */
/* offset of start of central directory with respect to the starting disk number */
if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream,&offset_central_dir)!=ZIP_OK)
err=ZIP_ERRNO;
}