Bug 1260836 - Add functionality to allow CRX files to be handled as ZIP files. r=spohl

MozReview-Commit-ID: 9JeSC6L4x6Z
This commit is contained in:
Kirk Steuber 2016-04-06 18:28:24 -07:00
parent 16d812c527
commit a5ac9bebd2
2 changed files with 64 additions and 10 deletions

View File

@ -165,6 +165,8 @@ nsZipHandle::nsZipHandle()
, mLen(0)
, mMap(nullptr)
, mRefCnt(0)
, mFileStart(nullptr)
, mTotalLen(0)
{
MOZ_COUNT_CTOR(nsZipHandle);
}
@ -215,8 +217,9 @@ nsresult nsZipHandle::Init(nsIFile *file, nsZipHandle **ret,
#endif
handle->mMap = map;
handle->mFile.Init(file);
handle->mLen = (uint32_t) size;
handle->mFileData = buf;
handle->mTotalLen = (uint32_t) size;
handle->mFileStart = buf;
handle->findDataStart();
handle.forget(ret);
return NS_OK;
}
@ -237,8 +240,9 @@ nsresult nsZipHandle::Init(nsZipArchive *zip, const char *entry,
handle->mMap = nullptr;
handle->mFile.Init(zip, entry);
handle->mLen = handle->mBuf->Length();
handle->mFileData = handle->mBuf->Buffer();
handle->mTotalLen = handle->mBuf->Length();
handle->mFileStart = handle->mBuf->Buffer();
handle->findDataStart();
handle.forget(ret);
return NS_OK;
}
@ -248,15 +252,56 @@ nsresult nsZipHandle::Init(const uint8_t* aData, uint32_t aLen,
{
RefPtr<nsZipHandle> handle = new nsZipHandle();
handle->mFileData = aData;
handle->mLen = aLen;
handle->mFileStart = aData;
handle->mTotalLen = aLen;
handle->findDataStart();
handle.forget(aRet);
return NS_OK;
}
// This function finds the start of the ZIP data. If the file is a regular ZIP,
// this is just the start of the file. If the file is a CRX file, the start of
// the data is after the CRX header.
// CRX header reference: (CRX version 2)
// Header requires little-endian byte ordering with 4-byte alignment.
// 32 bits : magicNumber - Defined as a |char m[] = "Cr24"|.
// Equivilant to |uint32_t m = 0x34327243|.
// 32 bits : version - Unsigned integer representing the CRX file
// format version. Currently equal to 2.
// 32 bits : pubKeyLength - Unsigned integer representing the length
// of the public key in bytes.
// 32 bits : sigLength - Unsigned integer representing the length
// of the signature in bytes.
// pubKeyLength : publicKey - Contents of the author's public key.
// sigLength : signature - Signature of the ZIP content.
// Signature is created using the RSA
// algorighm with the SHA-1 hash function.
void nsZipHandle::findDataStart()
{
// In the CRX header, integers are 32 bits. Our pointer to the file is of
// type |uint8_t|, which is guaranteed to be 8 bits.
const uint32_t CRXIntSize = 4;
if (mTotalLen > CRXIntSize * 4 && xtolong(mFileStart) == kCRXMagic) {
const uint8_t* headerData = mFileStart;
headerData += CRXIntSize * 2; // Skip magic number and version number
uint32_t pubKeyLength = xtolong(headerData);
headerData += CRXIntSize;
uint32_t sigLength = xtolong(headerData);
uint32_t headerSize = CRXIntSize * 4 + pubKeyLength + sigLength;
if (mTotalLen > headerSize) {
mLen = mTotalLen - headerSize;
mFileData = mFileStart + headerSize;
return;
}
}
mLen = mTotalLen;
mFileData = mFileStart;
}
int64_t nsZipHandle::SizeOfMapping()
{
return mLen;
return mTotalLen;
}
nsresult nsZipHandle::GetNSPRFileDesc(PRFileDesc** aNSPRFileDesc)
@ -276,9 +321,10 @@ nsresult nsZipHandle::GetNSPRFileDesc(PRFileDesc** aNSPRFileDesc)
nsZipHandle::~nsZipHandle()
{
if (mMap) {
PR_MemUnmap((void *)mFileData, mLen);
PR_MemUnmap((void *)mFileStart, mTotalLen);
PR_CloseFileMap(mMap);
}
mFileStart = nullptr;
mFileData = nullptr;
mMap = nullptr;
mBuf = nullptr;

View File

@ -408,19 +408,27 @@ public:
nsresult GetNSPRFileDesc(PRFileDesc** aNSPRFileDesc);
protected:
const uint8_t * mFileData; /* pointer to mmaped file */
uint32_t mLen; /* length of file and memory mapped area */
const uint8_t * mFileData; /* pointer to zip data */
uint32_t mLen; /* length of zip data */
mozilla::FileLocation mFile; /* source file if any, for logging */
private:
nsZipHandle();
~nsZipHandle();
void findDataStart();
PRFileMap * mMap; /* nspr datastructure for mmap */
mozilla::AutoFDClose mNSPRFileDesc;
nsAutoPtr<nsZipItemPtr<uint8_t> > mBuf;
mozilla::ThreadSafeAutoRefCnt mRefCnt; /* ref count */
NS_DECL_OWNINGTHREAD
const uint8_t * mFileStart; /* pointer to mmaped file */
uint32_t mTotalLen; /* total length of the mmaped file */
/* Magic number for CRX type expressed in Big Endian since it is a literal */
static const uint32_t kCRXMagic = 0x34327243;
};
nsresult gZlibInit(z_stream *zs);