2000-02-14 01:57:01 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2004-04-18 22:01:16 +00:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-06-01 21:08:32 +00:00
|
|
|
*
|
2004-04-18 22:01:16 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1999-06-01 21:08:32 +00:00
|
|
|
*
|
2004-04-18 22:01:16 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1999-06-01 21:08:32 +00:00
|
|
|
*
|
2004-04-18 22:01:16 +00:00
|
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
|
|
* March 31, 1998.
|
1999-06-01 21:08:32 +00:00
|
|
|
*
|
2004-04-18 22:01:16 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Daniel Veditz <dveditz@netscape.com>
|
|
|
|
* Samir Gehani <sgehani@netscape.com>
|
|
|
|
* Mitch Stoltz <mstoltz@netsape.com>
|
|
|
|
* Pierre Phaneuf <pp@ludusdesign.com>
|
2006-03-29 22:10:37 +00:00
|
|
|
* Jeff Walden <jwalden+code@mit.edu>
|
2004-04-18 22:01:16 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-06-01 21:08:32 +00:00
|
|
|
#include <string.h>
|
2000-01-29 00:03:57 +00:00
|
|
|
#include "nsJARInputStream.h"
|
|
|
|
#include "nsJAR.h"
|
2002-04-27 05:33:09 +00:00
|
|
|
#include "nsILocalFile.h"
|
2000-04-26 03:50:07 +00:00
|
|
|
#include "nsIConsoleService.h"
|
2005-06-01 16:06:53 +00:00
|
|
|
#include "nsICryptoHash.h"
|
2006-05-02 19:33:09 +00:00
|
|
|
#include "prprf.h"
|
2000-03-21 04:21:28 +00:00
|
|
|
|
2000-02-21 20:19:16 +00:00
|
|
|
#ifdef XP_UNIX
|
|
|
|
#include <sys/stat.h>
|
2003-04-02 22:45:08 +00:00
|
|
|
#elif defined (XP_WIN) || defined(XP_OS2)
|
2000-02-21 20:19:16 +00:00
|
|
|
#include <io.h>
|
|
|
|
#endif
|
|
|
|
|
2000-02-14 01:57:01 +00:00
|
|
|
//----------------------------------------------
|
|
|
|
// nsJARManifestItem declaration
|
|
|
|
//----------------------------------------------
|
|
|
|
/*
|
|
|
|
* nsJARManifestItem contains meta-information pertaining
|
|
|
|
* to an individual JAR entry, taken from the
|
|
|
|
* META-INF/MANIFEST.MF and META-INF/ *.SF files.
|
|
|
|
* This is security-critical information, defined here so it is not
|
|
|
|
* accessible from anywhere else.
|
|
|
|
*/
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
JAR_INVALID = 1,
|
2000-03-21 04:21:28 +00:00
|
|
|
JAR_INTERNAL = 2,
|
|
|
|
JAR_EXTERNAL = 3
|
2000-02-14 01:57:01 +00:00
|
|
|
} JARManifestItemType;
|
|
|
|
|
|
|
|
class nsJARManifestItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
JARManifestItemType mType;
|
|
|
|
|
2000-03-21 04:21:28 +00:00
|
|
|
// True if the second step of verification (VerifyEntry)
|
2000-02-14 01:57:01 +00:00
|
|
|
// has taken place:
|
2000-07-12 03:10:33 +00:00
|
|
|
PRBool entryVerified;
|
2000-02-14 01:57:01 +00:00
|
|
|
|
2000-03-21 04:21:28 +00:00
|
|
|
// Not signed, valid, or failure code
|
|
|
|
PRInt16 status;
|
2000-02-14 01:57:01 +00:00
|
|
|
|
|
|
|
// Internal storage of digests
|
2009-04-07 09:24:58 +00:00
|
|
|
nsCString calculatedSectionDigest;
|
|
|
|
nsCString storedEntryDigest;
|
2000-02-14 01:57:01 +00:00
|
|
|
|
|
|
|
nsJARManifestItem();
|
|
|
|
virtual ~nsJARManifestItem();
|
|
|
|
};
|
|
|
|
|
|
|
|
//-------------------------------------------------
|
|
|
|
// nsJARManifestItem constructors and destructor
|
|
|
|
//-------------------------------------------------
|
|
|
|
nsJARManifestItem::nsJARManifestItem(): mType(JAR_INTERNAL),
|
2000-07-12 03:10:33 +00:00
|
|
|
entryVerified(PR_FALSE),
|
2009-04-07 09:24:58 +00:00
|
|
|
status(JAR_NOT_SIGNED)
|
2000-02-14 01:57:01 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsJARManifestItem::~nsJARManifestItem()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------
|
|
|
|
// nsJAR constructor/destructor
|
|
|
|
//----------------------------------------------
|
2008-10-10 15:04:34 +00:00
|
|
|
static PRBool
|
2000-01-29 00:03:57 +00:00
|
|
|
DeleteManifestEntry(nsHashKey* aKey, void* aData, void* closure)
|
1999-06-01 21:08:32 +00:00
|
|
|
{
|
2000-02-14 01:57:01 +00:00
|
|
|
//-- deletes an entry in mManifestData.
|
2005-06-14 10:29:45 +00:00
|
|
|
delete (nsJARManifestItem*)aData;
|
2000-01-29 00:03:57 +00:00
|
|
|
return PR_TRUE;
|
1999-06-01 21:08:32 +00:00
|
|
|
}
|
|
|
|
|
2000-04-26 03:50:07 +00:00
|
|
|
// The following initialization makes a guess of 10 entries per jarfile.
|
|
|
|
nsJAR::nsJAR(): mManifestData(nsnull, nsnull, DeleteManifestEntry, nsnull, 10),
|
2006-05-02 19:33:09 +00:00
|
|
|
mParsedManifest(PR_FALSE),
|
|
|
|
mGlobalStatus(JAR_MANIFEST_NOT_PARSED),
|
2003-06-25 01:13:36 +00:00
|
|
|
mReleaseTime(PR_INTERVAL_NO_TIMEOUT),
|
|
|
|
mCache(nsnull),
|
|
|
|
mLock(nsnull),
|
2006-05-02 19:33:09 +00:00
|
|
|
mTotalItemsInManifest(0)
|
1999-11-12 06:13:13 +00:00
|
|
|
{
|
|
|
|
}
|
1999-06-01 21:08:32 +00:00
|
|
|
|
|
|
|
nsJAR::~nsJAR()
|
2000-06-07 09:05:22 +00:00
|
|
|
{
|
|
|
|
Close();
|
1999-06-01 21:08:32 +00:00
|
|
|
}
|
|
|
|
|
2001-02-23 00:15:04 +00:00
|
|
|
NS_IMPL_THREADSAFE_QUERY_INTERFACE2(nsJAR, nsIZipReader, nsIJAR)
|
2000-08-23 03:18:53 +00:00
|
|
|
NS_IMPL_THREADSAFE_ADDREF(nsJAR)
|
|
|
|
|
|
|
|
// Custom Release method works with nsZipReaderCache...
|
|
|
|
nsrefcnt nsJAR::Release(void)
|
|
|
|
{
|
|
|
|
nsrefcnt count;
|
|
|
|
NS_PRECONDITION(0 != mRefCnt, "dup release");
|
|
|
|
count = PR_AtomicDecrement((PRInt32 *)&mRefCnt);
|
|
|
|
NS_LOG_RELEASE(this, count, "nsJAR");
|
|
|
|
if (0 == count) {
|
|
|
|
mRefCnt = 1; /* stabilize */
|
|
|
|
/* enable this to find non-threadsafe destructors: */
|
2005-01-12 19:20:01 +00:00
|
|
|
/* NS_ASSERT_OWNINGTHREAD(nsJAR); */
|
2000-08-23 03:18:53 +00:00
|
|
|
NS_DELETEXPCOM(this);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else if (1 == count && mCache) {
|
|
|
|
nsresult rv = mCache->ReleaseZip(this);
|
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "failed to release zip file");
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
1999-06-01 21:08:32 +00:00
|
|
|
|
2000-02-14 01:57:01 +00:00
|
|
|
//----------------------------------------------
|
2001-02-23 00:15:04 +00:00
|
|
|
// nsIZipReader implementation
|
2000-02-14 01:57:01 +00:00
|
|
|
//----------------------------------------------
|
2000-04-12 07:58:24 +00:00
|
|
|
|
1999-06-01 21:08:32 +00:00
|
|
|
NS_IMETHODIMP
|
2006-05-02 19:33:09 +00:00
|
|
|
nsJAR::Open(nsIFile* zipFile)
|
1999-06-01 21:08:32 +00:00
|
|
|
{
|
2009-01-22 15:12:00 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(zipFile);
|
2006-05-02 19:33:09 +00:00
|
|
|
if (mLock) return NS_ERROR_FAILURE; // Already open!
|
|
|
|
|
1999-11-12 06:13:13 +00:00
|
|
|
mZipFile = zipFile;
|
2008-10-01 05:25:29 +00:00
|
|
|
|
2000-09-15 21:56:20 +00:00
|
|
|
mLock = PR_NewLock();
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_ENSURE_TRUE(mLock, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
2010-01-23 16:40:21 +00:00
|
|
|
return mZip.OpenArchive(zipFile);
|
1999-06-01 21:08:32 +00:00
|
|
|
}
|
|
|
|
|
2000-04-12 07:58:24 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsJAR::GetFile(nsIFile* *result)
|
|
|
|
{
|
|
|
|
*result = mZipFile;
|
2003-09-24 01:48:09 +00:00
|
|
|
NS_IF_ADDREF(*result);
|
2000-04-12 07:58:24 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-06-01 21:08:32 +00:00
|
|
|
NS_IMETHODIMP
|
2006-05-02 19:33:09 +00:00
|
|
|
nsJAR::Close()
|
1999-11-12 06:13:13 +00:00
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
if (mLock) {
|
|
|
|
PR_DestroyLock(mLock);
|
|
|
|
mLock = nsnull;
|
|
|
|
}
|
2000-01-24 21:28:28 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
mParsedManifest = PR_FALSE;
|
2008-11-13 15:38:16 +00:00
|
|
|
mManifestData.Reset();
|
2006-05-02 19:33:09 +00:00
|
|
|
mGlobalStatus = JAR_MANIFEST_NOT_PARSED;
|
|
|
|
mTotalItemsInManifest = 0;
|
1999-11-12 06:13:13 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
return mZip.CloseArchive();
|
1999-11-12 06:13:13 +00:00
|
|
|
}
|
|
|
|
|
2000-12-27 07:05:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsJAR::Test(const char *aEntryName)
|
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
return mZip.Test(aEntryName);
|
2000-12-27 07:05:55 +00:00
|
|
|
}
|
|
|
|
|
1999-11-12 06:13:13 +00:00
|
|
|
NS_IMETHODIMP
|
2000-01-24 21:28:28 +00:00
|
|
|
nsJAR::Extract(const char *zipEntry, nsIFile* outFile)
|
1999-06-01 21:08:32 +00:00
|
|
|
{
|
2000-09-15 21:56:20 +00:00
|
|
|
// nsZipArchive and zlib are not thread safe
|
|
|
|
// we need to use a lock to prevent bug #51267
|
|
|
|
nsAutoLock lock(mLock);
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsILocalFile> localFile = do_QueryInterface(outFile, &rv);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
nsZipItem *item = mZip.GetItem(zipEntry);
|
|
|
|
NS_ENSURE_TRUE(item, NS_ERROR_FILE_TARGET_DOES_NOT_EXIST);
|
2004-08-17 00:12:04 +00:00
|
|
|
|
2006-03-29 22:10:37 +00:00
|
|
|
// Remove existing file or directory so we set permissions correctly.
|
|
|
|
// If it's a directory that already exists and contains files, throw
|
|
|
|
// an exception and return.
|
|
|
|
|
|
|
|
//XXX Bug 332139:
|
|
|
|
//XXX If we guarantee that rv in the case of a non-empty directory
|
|
|
|
//XXX is always FILE_DIR_NOT_EMPTY, we can remove
|
|
|
|
//XXX |rv == NS_ERROR_FAILURE| - bug 322183 needs to be completely
|
|
|
|
//XXX fixed before that can happen
|
|
|
|
rv = localFile->Remove(PR_FALSE);
|
|
|
|
if (rv == NS_ERROR_FILE_DIR_NOT_EMPTY ||
|
|
|
|
rv == NS_ERROR_FAILURE)
|
|
|
|
return rv;
|
2004-08-17 00:12:04 +00:00
|
|
|
|
2009-10-17 15:54:54 +00:00
|
|
|
if (item->IsDirectory())
|
2006-03-29 22:10:37 +00:00
|
|
|
{
|
2009-10-17 15:54:54 +00:00
|
|
|
rv = localFile->Create(nsIFile::DIRECTORY_TYPE, item->Mode());
|
2006-03-29 22:10:37 +00:00
|
|
|
//XXX Do this in nsZipArchive? It would be nice to keep extraction
|
|
|
|
//XXX code completely there, but that would require a way to get a
|
|
|
|
//XXX PRDir from localFile.
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PRFileDesc* fd;
|
2009-10-17 15:54:54 +00:00
|
|
|
rv = localFile->OpenNSPRFileDesc(PR_WRONLY | PR_CREATE_FILE, item->Mode(), &fd);
|
2006-03-29 22:10:37 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
// ExtractFile also closes the fd handle and resolves the symlink if needed
|
|
|
|
nsCAutoString path;
|
|
|
|
rv = outFile->GetNativePath(path);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-02-21 20:19:16 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
rv = mZip.ExtractFile(item, path.get(), fd);
|
2000-03-28 03:38:06 +00:00
|
|
|
}
|
2006-05-02 19:33:09 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-03-28 03:38:06 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
// nsIFile needs milliseconds, while prtime is in microseconds.
|
|
|
|
// non-fatal if this fails, ignore errors
|
2009-12-15 23:01:08 +00:00
|
|
|
outFile->SetLastModifiedTime(item->LastModTime() / PR_USEC_PER_MSEC);
|
2006-05-02 19:33:09 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
1999-11-12 06:13:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2006-05-02 19:33:09 +00:00
|
|
|
nsJAR::GetEntry(const char *aEntryName, nsIZipEntry* *result)
|
1999-11-12 06:13:13 +00:00
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
nsZipItem* zipItem = mZip.GetItem(aEntryName);
|
|
|
|
NS_ENSURE_TRUE(zipItem, NS_ERROR_FILE_TARGET_DOES_NOT_EXIST);
|
1999-11-12 06:13:13 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
nsJARItem* jarItem = new nsJARItem(zipItem);
|
|
|
|
NS_ENSURE_TRUE(jarItem, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
NS_ADDREF(*result = jarItem);
|
1999-06-01 21:08:32 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsJAR::HasEntry(const nsACString &aEntryName, PRBool *result)
|
|
|
|
{
|
|
|
|
*result = mZip.GetItem(PromiseFlatCString(aEntryName).get()) != nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsJAR::FindEntries(const char *aPattern, nsIUTF8StringEnumerator **result)
|
1999-06-23 06:16:28 +00:00
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(result);
|
2006-03-29 22:10:37 +00:00
|
|
|
|
|
|
|
nsZipFind *find;
|
2006-05-02 19:33:09 +00:00
|
|
|
nsresult rv = mZip.FindInit(aPattern, &find);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
1999-06-23 06:16:28 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
nsIUTF8StringEnumerator *zipEnum = new nsJAREnumerator(find);
|
|
|
|
if (!zipEnum) {
|
|
|
|
delete find;
|
1999-11-12 06:13:13 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2006-05-02 19:33:09 +00:00
|
|
|
}
|
1999-06-23 06:16:28 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_ADDREF(*result = zipEnum);
|
1999-11-12 06:13:13 +00:00
|
|
|
return NS_OK;
|
1999-06-23 06:16:28 +00:00
|
|
|
}
|
|
|
|
|
1999-10-26 19:43:26 +00:00
|
|
|
NS_IMETHODIMP
|
2000-07-12 03:10:33 +00:00
|
|
|
nsJAR::GetInputStream(const char* aFilename, nsIInputStream** result)
|
1999-10-26 19:43:26 +00:00
|
|
|
{
|
2006-10-10 13:24:57 +00:00
|
|
|
return GetInputStreamWithSpec(EmptyCString(), aFilename, result);
|
|
|
|
}
|
2006-09-24 16:23:31 +00:00
|
|
|
|
2006-10-10 13:24:57 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsJAR::GetInputStreamWithSpec(const nsACString& aJarDirSpec,
|
|
|
|
const char* aEntryName, nsIInputStream** result)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aEntryName);
|
|
|
|
NS_ENSURE_ARG_POINTER(result);
|
2006-09-24 16:23:31 +00:00
|
|
|
|
2006-10-10 13:24:57 +00:00
|
|
|
// Watch out for the jar:foo.zip!/ (aDir is empty) top-level special case!
|
|
|
|
nsZipItem *item = nsnull;
|
|
|
|
if (*aEntryName) {
|
|
|
|
// First check if item exists in jar
|
|
|
|
item = mZip.GetItem(aEntryName);
|
|
|
|
if (!item) return NS_ERROR_FILE_TARGET_DOES_NOT_EXIST;
|
|
|
|
}
|
2003-03-14 18:59:51 +00:00
|
|
|
nsJARInputStream* jis = new nsJARInputStream();
|
2006-10-10 13:24:57 +00:00
|
|
|
// addref now so we can call InitFile/InitDirectory()
|
|
|
|
NS_ENSURE_TRUE(jis, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
NS_ADDREF(*result = jis);
|
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
2009-10-17 15:54:54 +00:00
|
|
|
if (!item || item->IsDirectory()) {
|
2009-08-12 20:50:12 +00:00
|
|
|
rv = jis->InitDirectory(this, aJarDirSpec, aEntryName);
|
2006-10-10 13:24:57 +00:00
|
|
|
} else {
|
2009-10-04 17:20:45 +00:00
|
|
|
rv = jis->InitFile(this, item);
|
2006-10-10 13:24:57 +00:00
|
|
|
}
|
2003-03-14 18:59:51 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_RELEASE(*result);
|
|
|
|
}
|
2006-10-10 13:24:57 +00:00
|
|
|
return rv;
|
2000-01-29 00:03:57 +00:00
|
|
|
}
|
|
|
|
|
2001-02-23 00:15:04 +00:00
|
|
|
//----------------------------------------------
|
|
|
|
// nsIJAR implementation
|
|
|
|
//----------------------------------------------
|
|
|
|
|
2000-04-26 03:50:07 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsJAR::GetCertificatePrincipal(const char* aFilename, nsIPrincipal** aPrincipal)
|
2000-01-29 00:03:57 +00:00
|
|
|
{
|
2000-02-14 01:57:01 +00:00
|
|
|
//-- Parameter check
|
2000-03-21 04:21:28 +00:00
|
|
|
if (!aPrincipal)
|
2000-01-29 00:03:57 +00:00
|
|
|
return NS_ERROR_NULL_POINTER;
|
2000-03-21 04:21:28 +00:00
|
|
|
*aPrincipal = nsnull;
|
2000-01-29 00:03:57 +00:00
|
|
|
|
2000-07-12 03:10:33 +00:00
|
|
|
//-- Parse the manifest
|
2008-11-18 19:11:35 +00:00
|
|
|
nsresult rv = ParseManifest();
|
2000-07-12 03:10:33 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
2006-05-02 19:33:09 +00:00
|
|
|
if (mGlobalStatus == JAR_NO_MANIFEST)
|
2000-07-12 03:10:33 +00:00
|
|
|
return NS_OK;
|
|
|
|
|
2000-04-26 03:50:07 +00:00
|
|
|
PRInt16 requestedStatus;
|
|
|
|
if (aFilename)
|
2000-01-29 00:03:57 +00:00
|
|
|
{
|
2000-04-26 03:50:07 +00:00
|
|
|
//-- Find the item
|
2000-08-10 06:19:37 +00:00
|
|
|
nsCStringKey key(aFilename);
|
2007-07-08 07:08:04 +00:00
|
|
|
nsJARManifestItem* manItem = static_cast<nsJARManifestItem*>(mManifestData.Get(&key));
|
2000-04-26 03:50:07 +00:00
|
|
|
if (!manItem)
|
|
|
|
return NS_OK;
|
2000-07-12 03:10:33 +00:00
|
|
|
//-- Verify the item against the manifest
|
|
|
|
if (!manItem->entryVerified)
|
2000-04-26 03:50:07 +00:00
|
|
|
{
|
2000-07-12 03:10:33 +00:00
|
|
|
nsXPIDLCString entryData;
|
|
|
|
PRUint32 entryDataLen;
|
|
|
|
rv = LoadEntry(aFilename, getter_Copies(entryData), &entryDataLen);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2006-05-02 19:33:09 +00:00
|
|
|
rv = VerifyEntry(manItem, entryData, entryDataLen);
|
2000-07-12 03:10:33 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-04-26 03:50:07 +00:00
|
|
|
}
|
|
|
|
requestedStatus = manItem->status;
|
2000-01-29 00:03:57 +00:00
|
|
|
}
|
2000-04-26 03:50:07 +00:00
|
|
|
else // User wants identity of signer w/o verifying any entries
|
|
|
|
requestedStatus = mGlobalStatus;
|
2000-01-29 00:03:57 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
if (requestedStatus != JAR_VALID_MANIFEST)
|
2000-04-26 03:50:07 +00:00
|
|
|
ReportError(aFilename, requestedStatus);
|
|
|
|
else // Valid signature
|
2000-01-29 00:03:57 +00:00
|
|
|
{
|
2000-04-26 03:50:07 +00:00
|
|
|
*aPrincipal = mPrincipal;
|
2000-03-21 04:21:28 +00:00
|
|
|
NS_IF_ADDREF(*aPrincipal);
|
2000-02-14 01:57:01 +00:00
|
|
|
}
|
2000-03-21 04:21:28 +00:00
|
|
|
return NS_OK;
|
2000-05-10 01:49:33 +00:00
|
|
|
}
|
|
|
|
|
2002-12-13 22:24:12 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsJAR::GetManifestEntriesCount(PRUint32* count)
|
|
|
|
{
|
|
|
|
*count = mTotalItemsInManifest;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
nsresult
|
|
|
|
nsJAR::GetJarPath(nsACString& aResult)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(mZipFile);
|
|
|
|
|
|
|
|
return mZipFile->GetNativePath(aResult);
|
|
|
|
}
|
|
|
|
|
2000-01-29 00:03:57 +00:00
|
|
|
//----------------------------------------------
|
|
|
|
// nsJAR private implementation
|
|
|
|
//----------------------------------------------
|
2000-02-14 01:57:01 +00:00
|
|
|
nsresult
|
2000-03-30 08:09:45 +00:00
|
|
|
nsJAR::LoadEntry(const char* aFilename, char** aBuf, PRUint32* aBufLen)
|
2000-01-29 00:03:57 +00:00
|
|
|
{
|
2000-07-12 03:10:33 +00:00
|
|
|
//-- Get a stream for reading the file
|
2000-01-29 00:03:57 +00:00
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIInputStream> manifestStream;
|
2000-07-12 03:10:33 +00:00
|
|
|
rv = GetInputStream(aFilename, getter_AddRefs(manifestStream));
|
2000-01-29 00:03:57 +00:00
|
|
|
if (NS_FAILED(rv)) return NS_ERROR_FILE_TARGET_DOES_NOT_EXIST;
|
|
|
|
|
|
|
|
//-- Read the manifest file into memory
|
|
|
|
char* buf;
|
|
|
|
PRUint32 len;
|
|
|
|
rv = manifestStream->Available(&len);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2002-10-31 06:23:52 +00:00
|
|
|
if (len == PRUint32(-1))
|
|
|
|
return NS_ERROR_FILE_CORRUPTED; // bug 164695
|
2000-02-14 01:57:01 +00:00
|
|
|
buf = (char*)PR_MALLOC(len+1);
|
2000-01-29 00:03:57 +00:00
|
|
|
if (!buf) return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
PRUint32 bytesRead;
|
|
|
|
rv = manifestStream->Read(buf, len, &bytesRead);
|
|
|
|
if (bytesRead != len)
|
|
|
|
rv = NS_ERROR_FILE_CORRUPTED;
|
2002-10-31 06:23:52 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
PR_FREEIF(buf);
|
|
|
|
return rv;
|
|
|
|
}
|
2000-02-14 01:57:01 +00:00
|
|
|
buf[len] = '\0'; //Null-terminate the buffer
|
2000-01-29 00:03:57 +00:00
|
|
|
*aBuf = buf;
|
|
|
|
if (aBufLen)
|
|
|
|
*aBufLen = len;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-14 01:57:01 +00:00
|
|
|
PRInt32
|
|
|
|
nsJAR::ReadLine(const char** src)
|
2000-01-29 00:03:57 +00:00
|
|
|
{
|
|
|
|
//--Moves pointer to beginning of next line and returns line length
|
|
|
|
// not including CR/LF.
|
|
|
|
PRInt32 length;
|
|
|
|
char* eol = PL_strpbrk(*src, "\r\n");
|
|
|
|
|
|
|
|
if (eol == nsnull) // Probably reached end of file before newline
|
|
|
|
{
|
|
|
|
length = PL_strlen(*src);
|
|
|
|
if (length == 0) // immediate end-of-file
|
|
|
|
*src = nsnull;
|
|
|
|
else // some data left on this line
|
|
|
|
*src += length;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
length = eol - *src;
|
|
|
|
if (eol[0] == '\r' && eol[1] == '\n') // CR LF, so skip 2
|
|
|
|
*src = eol+2;
|
|
|
|
else // Either CR or LF, so skip 1
|
|
|
|
*src = eol+1;
|
|
|
|
}
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2000-04-26 03:50:07 +00:00
|
|
|
//-- The following #defines are used by ParseManifest()
|
|
|
|
// and ParseOneFile(). The header strings are defined in the JAR specification.
|
|
|
|
#define JAR_MF 1
|
|
|
|
#define JAR_SF 2
|
|
|
|
#define JAR_MF_SEARCH_STRING "(M|/M)ETA-INF/(M|m)(ANIFEST|anifest).(MF|mf)$"
|
|
|
|
#define JAR_SF_SEARCH_STRING "(M|/M)ETA-INF/*.(SF|sf)$"
|
|
|
|
#define JAR_MF_HEADER (const char*)"Manifest-Version: 1.0"
|
|
|
|
#define JAR_SF_HEADER (const char*)"Signature-Version: 1.0"
|
|
|
|
|
|
|
|
nsresult
|
2008-11-18 19:11:35 +00:00
|
|
|
nsJAR::ParseManifest()
|
2000-04-26 03:50:07 +00:00
|
|
|
{
|
|
|
|
//-- Verification Step 1
|
|
|
|
if (mParsedManifest)
|
|
|
|
return NS_OK;
|
|
|
|
//-- (1)Manifest (MF) file
|
2006-05-02 19:33:09 +00:00
|
|
|
nsCOMPtr<nsIUTF8StringEnumerator> files;
|
|
|
|
nsresult rv = FindEntries(JAR_MF_SEARCH_STRING, getter_AddRefs(files));
|
2000-04-26 03:50:07 +00:00
|
|
|
if (!files) rv = NS_ERROR_FAILURE;
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
//-- Load the file into memory
|
2006-05-02 19:33:09 +00:00
|
|
|
PRBool more;
|
|
|
|
rv = files->HasMore(&more);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (!more)
|
2000-07-12 03:10:33 +00:00
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
mGlobalStatus = JAR_NO_MANIFEST;
|
2000-07-12 03:10:33 +00:00
|
|
|
mParsedManifest = PR_TRUE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2006-05-02 19:33:09 +00:00
|
|
|
|
|
|
|
nsCAutoString manifestFilename;
|
|
|
|
rv = files->GetNext(manifestFilename);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// Check if there is more than one manifest, if so then error!
|
|
|
|
rv = files->HasMore(&more);
|
2000-07-12 03:10:33 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
if (more)
|
|
|
|
{
|
|
|
|
mParsedManifest = PR_TRUE;
|
|
|
|
return NS_ERROR_FILE_CORRUPTED; // More than one MF file
|
|
|
|
}
|
2006-05-02 19:33:09 +00:00
|
|
|
|
2000-04-26 03:50:07 +00:00
|
|
|
nsXPIDLCString manifestBuffer;
|
2006-05-02 19:33:09 +00:00
|
|
|
PRUint32 manifestLen;
|
|
|
|
rv = LoadEntry(manifestFilename.get(), getter_Copies(manifestBuffer), &manifestLen);
|
2000-04-26 03:50:07 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
//-- Parse it
|
2006-05-02 19:33:09 +00:00
|
|
|
rv = ParseOneFile(manifestBuffer, JAR_MF);
|
2000-04-26 03:50:07 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
//-- (2)Signature (SF) file
|
|
|
|
// If there are multiple signatures, we select one.
|
|
|
|
rv = FindEntries(JAR_SF_SEARCH_STRING, getter_AddRefs(files));
|
|
|
|
if (!files) rv = NS_ERROR_FAILURE;
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
//-- Get an SF file
|
2006-05-02 19:33:09 +00:00
|
|
|
rv = files->HasMore(&more);
|
2000-07-12 03:10:33 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
2006-05-02 19:33:09 +00:00
|
|
|
if (!more)
|
2000-07-12 03:10:33 +00:00
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
mGlobalStatus = JAR_NO_MANIFEST;
|
2000-07-12 03:10:33 +00:00
|
|
|
mParsedManifest = PR_TRUE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2006-05-02 19:33:09 +00:00
|
|
|
rv = files->GetNext(manifestFilename);
|
2000-04-26 03:50:07 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
rv = LoadEntry(manifestFilename.get(), getter_Copies(manifestBuffer), &manifestLen);
|
2000-04-26 03:50:07 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
//-- Get its corresponding signature file
|
2006-05-02 19:33:09 +00:00
|
|
|
nsCAutoString sigFilename(manifestFilename);
|
2000-04-26 03:50:07 +00:00
|
|
|
PRInt32 extension = sigFilename.RFindChar('.') + 1;
|
|
|
|
NS_ASSERTION(extension != 0, "Manifest Parser: Missing file extension.");
|
|
|
|
(void)sigFilename.Cut(extension, 2);
|
|
|
|
nsXPIDLCString sigBuffer;
|
|
|
|
PRUint32 sigLen;
|
2000-05-12 07:53:02 +00:00
|
|
|
{
|
|
|
|
nsCAutoString tempFilename(sigFilename); tempFilename.Append("rsa", 3);
|
2001-10-25 06:13:52 +00:00
|
|
|
rv = LoadEntry(tempFilename.get(), getter_Copies(sigBuffer), &sigLen);
|
2000-05-12 07:53:02 +00:00
|
|
|
}
|
2000-04-26 03:50:07 +00:00
|
|
|
if (NS_FAILED(rv))
|
Bit checkin for bug 68045, r/sr=waterson&shaver, second attempt. It all works
for me on optimized and debug gcc2.96, rh7.1.
- Better failure codes from nsXULPrototypeScript::Deserialize.
- Call nsXULDocument::AbortFastLoads after nsXULPrototypeScript::Serialize
failure, instead of just nulling the FastLoad service's output stream.
- Expose nsXULDocument::AbortFastLoads via nsIXULPrototypeCache, for use from
nsChromeProtocolHandler.cpp. AbortFastLoads flushes the XUL cache now, for
good measure.
- The needless "Current" adjective in nsIFastLoadService attribute and method
names is no more.
- Add a do_GetFastLoadService() helper, to use CID instead of contractid, and
to let the compiler consolidate the static inline CID.
- Add "nglayout.debug.checksum_xul_fastload_file" pref so people can do without
the checksum verification step when reading a FastLoad file.
- Verify the FastLoad file checksum, by default. Also, cache it in the FastLoad
service so we don't recompute it when re-opening the FastLoad file as mailnews
and other top-levels start up. Fill the checksum cache in EndFastLoad, when
the last pseudo-concurrent top-level finishes loading.
My hope to compute the checksum while writing the FastLoad file ran afoul of
misordered writes. The old code to checksum the in-memory nsFastLoadHeader
also was broken on little endian platforms. Now all checksumming is done via
a separate read pass over the complete file, save for the header's checksum
field, which is summed as if it contained zero.
- Track and check FastLoad file dependencies. This required groveling with a
bunch of Necko interfaces in nsChromeProtocolHandler::NewChannel -- read it
and weep. Dependency checking, as well as checksum access and computation,
use better-factored nsIFastLoad{File,Read,Write}Control interfaces.
- nsBufferedStream::Seek wasn't flushing the buffer when seeking backward
within the buffer, but it must, because mCursor bounds the amount to write
if the buffer contains the end of file.
- Add an unbufferedStream readonly attribute to nsIStreamBufferAccess, so we
don't have to screw around with the bufferying layer when checksumming. Also
implement nsIStreamBufferAccess in nsBufferedOutputStream.
- nsISeekableOutputStream was bogus, based on a bad state I had put the
nsBufferedOutputStream code in on its way from being completely broken when
you seek backwards outside of the buffer. Removing this interface required
using nsIFastLoadFileIO in nsFastLoadFileWriter, and it also required careful
ordering of Close calls (the Reader must close after the Writer or Updater,
so that the Reader's underlying, unbuffered input stream can be read by
nsFastLoadFileWriter::Close to compute the checksum.
- Miscellaneous tab/indentation, comment typo, bracing, if( => if ( style,
nsnull vs. 0, useless variable elimination, tortured control flow,
AutoString instead of String, and gratuitous ; after nsISupportsUtils.h
macro call cleanups.
2001-08-21 20:51:34 +00:00
|
|
|
{
|
|
|
|
nsCAutoString tempFilename(sigFilename); tempFilename.Append("RSA", 3);
|
2001-10-25 06:13:52 +00:00
|
|
|
rv = LoadEntry(tempFilename.get(), getter_Copies(sigBuffer), &sigLen);
|
Bit checkin for bug 68045, r/sr=waterson&shaver, second attempt. It all works
for me on optimized and debug gcc2.96, rh7.1.
- Better failure codes from nsXULPrototypeScript::Deserialize.
- Call nsXULDocument::AbortFastLoads after nsXULPrototypeScript::Serialize
failure, instead of just nulling the FastLoad service's output stream.
- Expose nsXULDocument::AbortFastLoads via nsIXULPrototypeCache, for use from
nsChromeProtocolHandler.cpp. AbortFastLoads flushes the XUL cache now, for
good measure.
- The needless "Current" adjective in nsIFastLoadService attribute and method
names is no more.
- Add a do_GetFastLoadService() helper, to use CID instead of contractid, and
to let the compiler consolidate the static inline CID.
- Add "nglayout.debug.checksum_xul_fastload_file" pref so people can do without
the checksum verification step when reading a FastLoad file.
- Verify the FastLoad file checksum, by default. Also, cache it in the FastLoad
service so we don't recompute it when re-opening the FastLoad file as mailnews
and other top-levels start up. Fill the checksum cache in EndFastLoad, when
the last pseudo-concurrent top-level finishes loading.
My hope to compute the checksum while writing the FastLoad file ran afoul of
misordered writes. The old code to checksum the in-memory nsFastLoadHeader
also was broken on little endian platforms. Now all checksumming is done via
a separate read pass over the complete file, save for the header's checksum
field, which is summed as if it contained zero.
- Track and check FastLoad file dependencies. This required groveling with a
bunch of Necko interfaces in nsChromeProtocolHandler::NewChannel -- read it
and weep. Dependency checking, as well as checksum access and computation,
use better-factored nsIFastLoad{File,Read,Write}Control interfaces.
- nsBufferedStream::Seek wasn't flushing the buffer when seeking backward
within the buffer, but it must, because mCursor bounds the amount to write
if the buffer contains the end of file.
- Add an unbufferedStream readonly attribute to nsIStreamBufferAccess, so we
don't have to screw around with the bufferying layer when checksumming. Also
implement nsIStreamBufferAccess in nsBufferedOutputStream.
- nsISeekableOutputStream was bogus, based on a bad state I had put the
nsBufferedOutputStream code in on its way from being completely broken when
you seek backwards outside of the buffer. Removing this interface required
using nsIFastLoadFileIO in nsFastLoadFileWriter, and it also required careful
ordering of Close calls (the Reader must close after the Writer or Updater,
so that the Reader's underlying, unbuffered input stream can be read by
nsFastLoadFileWriter::Close to compute the checksum.
- Miscellaneous tab/indentation, comment typo, bracing, if( => if ( style,
nsnull vs. 0, useless variable elimination, tortured control flow,
AutoString instead of String, and gratuitous ; after nsISupportsUtils.h
macro call cleanups.
2001-08-21 20:51:34 +00:00
|
|
|
}
|
2000-07-12 03:10:33 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
mGlobalStatus = JAR_NO_MANIFEST;
|
2000-07-12 03:10:33 +00:00
|
|
|
mParsedManifest = PR_TRUE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2002-12-13 22:24:12 +00:00
|
|
|
|
2008-11-18 19:11:35 +00:00
|
|
|
//-- Get the signature verifier service
|
|
|
|
nsCOMPtr<nsISignatureVerifier> verifier =
|
|
|
|
do_GetService(SIGNATURE_VERIFIER_CONTRACTID, &rv);
|
|
|
|
if (NS_FAILED(rv)) // No signature verifier available
|
|
|
|
{
|
|
|
|
mGlobalStatus = JAR_NO_MANIFEST;
|
|
|
|
mParsedManifest = PR_TRUE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-04-26 03:50:07 +00:00
|
|
|
//-- Verify that the signature file is a valid signature of the SF file
|
2000-05-10 01:49:33 +00:00
|
|
|
PRInt32 verifyError;
|
|
|
|
rv = verifier->VerifySignature(sigBuffer, sigLen, manifestBuffer, manifestLen,
|
|
|
|
&verifyError, getter_AddRefs(mPrincipal));
|
2000-04-26 03:50:07 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
2002-12-13 22:24:12 +00:00
|
|
|
if (mPrincipal && verifyError == 0)
|
2006-05-02 19:33:09 +00:00
|
|
|
mGlobalStatus = JAR_VALID_MANIFEST;
|
2000-05-10 01:49:33 +00:00
|
|
|
else if (verifyError == nsISignatureVerifier::VERIFY_ERROR_UNKNOWN_CA)
|
2006-05-02 19:33:09 +00:00
|
|
|
mGlobalStatus = JAR_INVALID_UNKNOWN_CA;
|
2000-05-10 01:49:33 +00:00
|
|
|
else
|
2006-05-02 19:33:09 +00:00
|
|
|
mGlobalStatus = JAR_INVALID_SIG;
|
2000-05-10 01:49:33 +00:00
|
|
|
|
2000-04-26 03:50:07 +00:00
|
|
|
//-- Parse the SF file. If the verification above failed, principal
|
|
|
|
// is null, and ParseOneFile will mark the relevant entries as invalid.
|
|
|
|
// if ParseOneFile fails, then it has no effect, and we can safely
|
|
|
|
// continue to the next SF file, or return.
|
2006-05-02 19:33:09 +00:00
|
|
|
ParseOneFile(manifestBuffer, JAR_SF);
|
2000-07-12 03:10:33 +00:00
|
|
|
mParsedManifest = PR_TRUE;
|
2000-04-26 03:50:07 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-02-14 01:57:01 +00:00
|
|
|
nsresult
|
2006-05-02 19:33:09 +00:00
|
|
|
nsJAR::ParseOneFile(const char* filebuf, PRInt16 aFileType)
|
2000-01-29 00:03:57 +00:00
|
|
|
{
|
2000-03-21 04:21:28 +00:00
|
|
|
//-- Check file header
|
2000-01-29 00:03:57 +00:00
|
|
|
const char* nextLineStart = filebuf;
|
|
|
|
nsCAutoString curLine;
|
|
|
|
PRInt32 linelen;
|
|
|
|
linelen = ReadLine(&nextLineStart);
|
2000-03-21 04:21:28 +00:00
|
|
|
curLine.Assign(filebuf, linelen);
|
2000-09-03 05:54:31 +00:00
|
|
|
|
|
|
|
if ( ((aFileType == JAR_MF) && !curLine.Equals(JAR_MF_HEADER) ) ||
|
|
|
|
((aFileType == JAR_SF) && !curLine.Equals(JAR_SF_HEADER) ) )
|
2000-01-29 00:03:57 +00:00
|
|
|
return NS_ERROR_FILE_CORRUPTED;
|
|
|
|
|
2000-03-21 04:21:28 +00:00
|
|
|
//-- Skip header section
|
|
|
|
do {
|
|
|
|
linelen = ReadLine(&nextLineStart);
|
|
|
|
} while (linelen > 0);
|
|
|
|
|
|
|
|
//-- Set up parsing variables
|
|
|
|
const char* curPos;
|
|
|
|
const char* sectionStart = nextLineStart;
|
|
|
|
|
2002-08-06 00:51:46 +00:00
|
|
|
nsJARManifestItem* curItemMF = nsnull;
|
2000-03-21 04:21:28 +00:00
|
|
|
PRBool foundName = PR_FALSE;
|
|
|
|
if (aFileType == JAR_MF)
|
2003-11-17 20:44:14 +00:00
|
|
|
if (!(curItemMF = new nsJARManifestItem()))
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
2000-03-21 04:21:28 +00:00
|
|
|
nsCAutoString curItemName;
|
|
|
|
nsCAutoString storedSectionDigest;
|
|
|
|
|
2000-01-29 00:03:57 +00:00
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
curPos = nextLineStart;
|
|
|
|
linelen = ReadLine(&nextLineStart);
|
|
|
|
curLine.Assign(curPos, linelen);
|
|
|
|
if (linelen == 0)
|
|
|
|
// end of section (blank line or end-of-file)
|
|
|
|
{
|
|
|
|
if (aFileType == JAR_MF)
|
|
|
|
{
|
2002-12-13 22:24:12 +00:00
|
|
|
mTotalItemsInManifest++;
|
2000-03-21 04:21:28 +00:00
|
|
|
if (curItemMF->mType != JAR_INVALID)
|
2000-01-29 00:03:57 +00:00
|
|
|
{
|
2000-02-14 01:57:01 +00:00
|
|
|
//-- Did this section have a name: line?
|
2000-01-29 00:03:57 +00:00
|
|
|
if(!foundName)
|
2000-03-21 04:21:28 +00:00
|
|
|
curItemMF->mType = JAR_INVALID;
|
2000-01-29 00:03:57 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
//-- If it's an internal item, it must correspond
|
|
|
|
// to a valid jar entry
|
2006-05-02 19:33:09 +00:00
|
|
|
if (curItemMF->mType == JAR_INTERNAL)
|
|
|
|
{
|
|
|
|
PRBool exists;
|
2009-10-08 14:24:22 +00:00
|
|
|
nsresult rv = HasEntry(curItemName, &exists);
|
|
|
|
if (NS_FAILED(rv) || !exists)
|
2000-03-21 04:21:28 +00:00
|
|
|
curItemMF->mType = JAR_INVALID;
|
2000-01-29 00:03:57 +00:00
|
|
|
}
|
|
|
|
//-- Check for duplicates
|
2000-08-10 06:19:37 +00:00
|
|
|
nsCStringKey key(curItemName);
|
2000-01-29 00:03:57 +00:00
|
|
|
if (mManifestData.Exists(&key))
|
2000-03-21 04:21:28 +00:00
|
|
|
curItemMF->mType = JAR_INVALID;
|
2000-01-29 00:03:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-03-21 04:21:28 +00:00
|
|
|
if (curItemMF->mType == JAR_INVALID)
|
|
|
|
delete curItemMF;
|
2000-02-14 01:57:01 +00:00
|
|
|
else //-- calculate section digest
|
2000-01-29 00:03:57 +00:00
|
|
|
{
|
|
|
|
PRUint32 sectionLength = curPos - sectionStart;
|
2005-06-01 16:06:53 +00:00
|
|
|
CalculateDigest(sectionStart, sectionLength,
|
2009-04-07 09:24:58 +00:00
|
|
|
curItemMF->calculatedSectionDigest);
|
2000-01-29 00:03:57 +00:00
|
|
|
//-- Save item in the hashtable
|
2000-08-10 06:19:37 +00:00
|
|
|
nsCStringKey itemKey(curItemName);
|
2000-03-21 04:21:28 +00:00
|
|
|
mManifestData.Put(&itemKey, (void*)curItemMF);
|
2000-01-29 00:03:57 +00:00
|
|
|
}
|
|
|
|
if (nextLineStart == nsnull) // end-of-file
|
|
|
|
break;
|
|
|
|
|
|
|
|
sectionStart = nextLineStart;
|
2003-11-17 20:44:14 +00:00
|
|
|
if (!(curItemMF = new nsJARManifestItem()))
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2000-01-29 00:03:57 +00:00
|
|
|
} // (aFileType == JAR_MF)
|
|
|
|
else
|
|
|
|
//-- file type is SF, compare digest with calculated
|
|
|
|
// section digests from MF file.
|
|
|
|
{
|
|
|
|
if (foundName)
|
|
|
|
{
|
2000-03-21 04:21:28 +00:00
|
|
|
nsJARManifestItem* curItemSF;
|
2000-08-10 06:19:37 +00:00
|
|
|
nsCStringKey key(curItemName);
|
2000-03-21 04:21:28 +00:00
|
|
|
curItemSF = (nsJARManifestItem*)mManifestData.Get(&key);
|
|
|
|
if(curItemSF)
|
2000-01-29 00:03:57 +00:00
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_ASSERTION(curItemSF->status == JAR_NOT_SIGNED,
|
2000-03-21 04:21:28 +00:00
|
|
|
"SECURITY ERROR: nsJARManifestItem not correctly initialized");
|
2000-04-26 03:50:07 +00:00
|
|
|
curItemSF->status = mGlobalStatus;
|
2006-05-02 19:33:09 +00:00
|
|
|
if (curItemSF->status == JAR_VALID_MANIFEST)
|
2000-03-21 04:21:28 +00:00
|
|
|
{ // Compare digests
|
2003-05-23 21:34:47 +00:00
|
|
|
if (storedSectionDigest.IsEmpty())
|
2006-05-02 19:33:09 +00:00
|
|
|
curItemSF->status = JAR_NOT_SIGNED;
|
2000-03-21 04:21:28 +00:00
|
|
|
else
|
2000-01-29 00:03:57 +00:00
|
|
|
{
|
2009-04-07 09:24:58 +00:00
|
|
|
if (!storedSectionDigest.Equals(curItemSF->calculatedSectionDigest))
|
2006-05-02 19:33:09 +00:00
|
|
|
curItemSF->status = JAR_INVALID_MANIFEST;
|
2009-04-07 09:24:58 +00:00
|
|
|
curItemSF->calculatedSectionDigest.Truncate();
|
|
|
|
storedSectionDigest.Truncate();
|
2000-01-29 00:03:57 +00:00
|
|
|
}
|
2000-02-14 01:57:01 +00:00
|
|
|
} // (aPrincipal != nsnull)
|
2000-03-21 04:21:28 +00:00
|
|
|
} // if(curItemSF)
|
2000-01-29 00:03:57 +00:00
|
|
|
} // if(foundName)
|
|
|
|
|
|
|
|
if(nextLineStart == nsnull) // end-of-file
|
|
|
|
break;
|
|
|
|
} // aFileType == JAR_SF
|
|
|
|
foundName = PR_FALSE;
|
|
|
|
continue;
|
|
|
|
} // if(linelen == 0)
|
|
|
|
|
|
|
|
//-- Look for continuations (beginning with a space) on subsequent lines
|
|
|
|
// and append them to the current line.
|
|
|
|
while(*nextLineStart == ' ')
|
|
|
|
{
|
|
|
|
curPos = nextLineStart;
|
|
|
|
PRInt32 continuationLen = ReadLine(&nextLineStart) - 1;
|
2000-02-14 01:57:01 +00:00
|
|
|
nsCAutoString continuation(curPos+1, continuationLen);
|
2000-01-29 00:03:57 +00:00
|
|
|
curLine += continuation;
|
|
|
|
linelen += continuationLen;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-- Find colon in current line, this separates name from value
|
|
|
|
PRInt32 colonPos = curLine.FindChar(':');
|
|
|
|
if (colonPos == -1) // No colon on line, ignore line
|
|
|
|
continue;
|
|
|
|
//-- Break down the line
|
|
|
|
nsCAutoString lineName;
|
|
|
|
curLine.Left(lineName, colonPos);
|
|
|
|
nsCAutoString lineData;
|
|
|
|
curLine.Mid(lineData, colonPos+2, linelen - (colonPos+2));
|
|
|
|
|
|
|
|
//-- Lines to look for:
|
2000-02-14 01:57:01 +00:00
|
|
|
// (1) Digest:
|
2009-04-07 09:24:58 +00:00
|
|
|
if (lineName.LowerCaseEqualsLiteral("sha1-digest"))
|
2000-01-29 00:03:57 +00:00
|
|
|
//-- This is a digest line, save the data in the appropriate place
|
|
|
|
{
|
|
|
|
if(aFileType == JAR_MF)
|
2009-04-07 09:24:58 +00:00
|
|
|
curItemMF->storedEntryDigest = lineData;
|
2000-01-29 00:03:57 +00:00
|
|
|
else
|
2000-02-14 01:57:01 +00:00
|
|
|
storedSectionDigest = lineData;
|
2000-01-29 00:03:57 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// (2) Name: associates this manifest section with a file in the jar.
|
2009-04-07 09:24:58 +00:00
|
|
|
if (!foundName && lineName.LowerCaseEqualsLiteral("name"))
|
2000-01-29 00:03:57 +00:00
|
|
|
{
|
2000-03-21 04:21:28 +00:00
|
|
|
curItemName = lineData;
|
2000-01-29 00:03:57 +00:00
|
|
|
foundName = PR_TRUE;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// (3) Magic: this may be an inline Javascript.
|
|
|
|
// We can't do any other kind of magic.
|
2009-04-07 09:24:58 +00:00
|
|
|
if (aFileType == JAR_MF && lineName.LowerCaseEqualsLiteral("magic"))
|
2000-01-29 00:03:57 +00:00
|
|
|
{
|
2009-04-07 09:24:58 +00:00
|
|
|
if (lineData.LowerCaseEqualsLiteral("javascript"))
|
2000-03-21 04:21:28 +00:00
|
|
|
curItemMF->mType = JAR_EXTERNAL;
|
2000-01-29 00:03:57 +00:00
|
|
|
else
|
2000-03-21 04:21:28 +00:00
|
|
|
curItemMF->mType = JAR_INVALID;
|
2000-01-29 00:03:57 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // for (;;)
|
1999-10-26 19:43:26 +00:00
|
|
|
return NS_OK;
|
2000-01-29 00:03:57 +00:00
|
|
|
} //ParseOneFile()
|
|
|
|
|
2000-02-14 01:57:01 +00:00
|
|
|
nsresult
|
2006-05-02 19:33:09 +00:00
|
|
|
nsJAR::VerifyEntry(nsJARManifestItem* aManItem, const char* aEntryData,
|
2000-02-14 01:57:01 +00:00
|
|
|
PRUint32 aLen)
|
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
if (aManItem->status == JAR_VALID_MANIFEST)
|
2000-02-14 01:57:01 +00:00
|
|
|
{
|
2009-04-07 09:24:58 +00:00
|
|
|
if (aManItem->storedEntryDigest.IsEmpty())
|
2000-03-21 04:21:28 +00:00
|
|
|
// No entry digests in manifest file. Entry is unsigned.
|
2006-05-02 19:33:09 +00:00
|
|
|
aManItem->status = JAR_NOT_SIGNED;
|
2000-02-14 01:57:01 +00:00
|
|
|
else
|
|
|
|
{ //-- Calculate and compare digests
|
2009-04-07 09:24:58 +00:00
|
|
|
nsCString calculatedEntryDigest;
|
|
|
|
nsresult rv = CalculateDigest(aEntryData, aLen, calculatedEntryDigest);
|
2000-05-10 01:49:33 +00:00
|
|
|
if (NS_FAILED(rv)) return NS_ERROR_FAILURE;
|
2009-04-07 09:24:58 +00:00
|
|
|
if (!aManItem->storedEntryDigest.Equals(calculatedEntryDigest))
|
2006-05-02 19:33:09 +00:00
|
|
|
aManItem->status = JAR_INVALID_ENTRY;
|
2009-04-07 09:24:58 +00:00
|
|
|
aManItem->storedEntryDigest.Truncate();
|
2000-02-14 01:57:01 +00:00
|
|
|
}
|
|
|
|
}
|
2000-07-12 03:10:33 +00:00
|
|
|
aManItem->entryVerified = PR_TRUE;
|
|
|
|
return NS_OK;
|
2000-03-28 03:38:06 +00:00
|
|
|
}
|
|
|
|
|
2000-04-26 03:50:07 +00:00
|
|
|
void nsJAR::ReportError(const char* aFilename, PRInt16 errorCode)
|
|
|
|
{
|
|
|
|
//-- Generate error message
|
2000-05-10 01:49:33 +00:00
|
|
|
nsAutoString message;
|
2004-06-17 00:13:25 +00:00
|
|
|
message.AssignLiteral("Signature Verification Error: the signature on ");
|
2000-04-26 03:50:07 +00:00
|
|
|
if (aFilename)
|
2000-04-27 19:49:53 +00:00
|
|
|
message.AppendWithConversion(aFilename);
|
2000-04-26 03:50:07 +00:00
|
|
|
else
|
2004-06-17 00:13:25 +00:00
|
|
|
message.AppendLiteral("this .jar archive");
|
|
|
|
message.AppendLiteral(" is invalid because ");
|
2000-04-26 03:50:07 +00:00
|
|
|
switch(errorCode)
|
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
case JAR_NOT_SIGNED:
|
2004-06-17 00:13:25 +00:00
|
|
|
message.AppendLiteral("the archive did not contain a valid PKCS7 signature.");
|
2000-04-26 03:50:07 +00:00
|
|
|
break;
|
2006-05-02 19:33:09 +00:00
|
|
|
case JAR_INVALID_SIG:
|
|
|
|
message.AppendLiteral("the digital signature (*.RSA) file is not a valid signature of the signature instruction file (*.SF).");
|
2000-04-26 03:50:07 +00:00
|
|
|
break;
|
2006-05-02 19:33:09 +00:00
|
|
|
case JAR_INVALID_UNKNOWN_CA:
|
2004-06-17 00:13:25 +00:00
|
|
|
message.AppendLiteral("the certificate used to sign this file has an unrecognized issuer.");
|
2000-04-26 03:50:07 +00:00
|
|
|
break;
|
2006-05-02 19:33:09 +00:00
|
|
|
case JAR_INVALID_MANIFEST:
|
|
|
|
message.AppendLiteral("the signature instruction file (*.SF) does not contain a valid hash of the MANIFEST.MF file.");
|
2000-04-26 03:50:07 +00:00
|
|
|
break;
|
2006-05-02 19:33:09 +00:00
|
|
|
case JAR_INVALID_ENTRY:
|
2004-06-17 00:13:25 +00:00
|
|
|
message.AppendLiteral("the MANIFEST.MF file does not contain a valid hash of the file being verified.");
|
2000-04-26 03:50:07 +00:00
|
|
|
break;
|
2006-05-02 19:33:09 +00:00
|
|
|
case JAR_NO_MANIFEST:
|
|
|
|
message.AppendLiteral("the archive did not contain a manifest.");
|
|
|
|
break;
|
2000-04-26 03:50:07 +00:00
|
|
|
default:
|
2004-06-17 00:13:25 +00:00
|
|
|
message.AppendLiteral("of an unknown problem.");
|
2000-04-26 03:50:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Report error in JS console
|
2000-09-14 23:20:49 +00:00
|
|
|
nsCOMPtr<nsIConsoleService> console(do_GetService("@mozilla.org/consoleservice;1"));
|
2000-04-26 03:50:07 +00:00
|
|
|
if (console)
|
|
|
|
{
|
2001-09-29 08:28:41 +00:00
|
|
|
console->LogStringMessage(message.get());
|
2000-04-26 03:50:07 +00:00
|
|
|
}
|
2001-05-15 06:43:03 +00:00
|
|
|
#ifdef DEBUG
|
2001-09-29 08:28:41 +00:00
|
|
|
char* messageCstr = ToNewCString(message);
|
2001-05-15 06:43:03 +00:00
|
|
|
if (!messageCstr) return;
|
|
|
|
fprintf(stderr, "%s\n", messageCstr);
|
|
|
|
nsMemory::Free(messageCstr);
|
2000-05-10 01:49:33 +00:00
|
|
|
#endif
|
2000-04-26 03:50:07 +00:00
|
|
|
}
|
|
|
|
|
2000-03-21 04:21:28 +00:00
|
|
|
|
2005-06-01 16:06:53 +00:00
|
|
|
nsresult nsJAR::CalculateDigest(const char* aInBuf, PRUint32 aLen,
|
2009-04-07 09:24:58 +00:00
|
|
|
nsCString& digest)
|
2000-03-21 04:21:28 +00:00
|
|
|
{
|
|
|
|
nsresult rv;
|
2005-06-01 16:06:53 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsICryptoHash> hasher = do_CreateInstance("@mozilla.org/security/hash;1", &rv);
|
2000-03-21 04:21:28 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2005-06-01 16:06:53 +00:00
|
|
|
rv = hasher->Init(nsICryptoHash::SHA1);
|
2000-03-21 04:21:28 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
2005-06-01 16:06:53 +00:00
|
|
|
|
|
|
|
rv = hasher->Update((const PRUint8*) aInBuf, aLen);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2009-04-07 09:24:58 +00:00
|
|
|
return hasher->Finish(PR_TRUE, digest);
|
2000-03-21 04:21:28 +00:00
|
|
|
}
|
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_IMPL_THREADSAFE_ISUPPORTS1(nsJAREnumerator, nsIUTF8StringEnumerator)
|
|
|
|
|
2000-01-29 00:03:57 +00:00
|
|
|
//----------------------------------------------
|
2006-05-02 19:33:09 +00:00
|
|
|
// nsJAREnumerator::HasMore
|
1999-06-23 06:16:28 +00:00
|
|
|
//----------------------------------------------
|
1999-06-01 21:08:32 +00:00
|
|
|
NS_IMETHODIMP
|
2006-05-02 19:33:09 +00:00
|
|
|
nsJAREnumerator::HasMore(PRBool* aResult)
|
1999-06-01 21:08:32 +00:00
|
|
|
{
|
1999-06-23 06:16:28 +00:00
|
|
|
// try to get the next element
|
2009-10-17 15:54:54 +00:00
|
|
|
if (!mName) {
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_ASSERTION(mFind, "nsJAREnumerator: Missing zipFind.");
|
2009-10-17 15:54:54 +00:00
|
|
|
nsresult rv = mFind->FindNext( &mName, &mNameLen );
|
2006-05-02 19:33:09 +00:00
|
|
|
if (rv == NS_ERROR_FILE_TARGET_DOES_NOT_EXIST) {
|
|
|
|
*aResult = PR_FALSE; // No more matches available
|
1999-06-23 06:16:28 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, NS_ERROR_FAILURE); // no error translation
|
1999-06-23 06:16:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*aResult = PR_TRUE;
|
|
|
|
return NS_OK;
|
1999-06-01 21:08:32 +00:00
|
|
|
}
|
|
|
|
|
1999-06-23 06:16:28 +00:00
|
|
|
//----------------------------------------------
|
|
|
|
// nsJAREnumerator::GetNext
|
|
|
|
//----------------------------------------------
|
|
|
|
NS_IMETHODIMP
|
2006-05-02 19:33:09 +00:00
|
|
|
nsJAREnumerator::GetNext(nsACString& aResult)
|
1999-06-23 06:16:28 +00:00
|
|
|
{
|
|
|
|
// check if the current item is "stale"
|
2009-10-17 15:54:54 +00:00
|
|
|
if (!mName) {
|
2006-05-02 19:33:09 +00:00
|
|
|
PRBool bMore;
|
|
|
|
nsresult rv = HasMore(&bMore);
|
|
|
|
if (NS_FAILED(rv) || !bMore)
|
|
|
|
return NS_ERROR_FAILURE; // no error translation
|
1999-07-15 23:06:52 +00:00
|
|
|
}
|
2009-10-17 15:54:54 +00:00
|
|
|
aResult.Assign(mName, mNameLen);
|
|
|
|
mName = 0; // we just gave this one away
|
2006-05-02 19:33:09 +00:00
|
|
|
return NS_OK;
|
1999-06-23 06:16:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-29 22:10:37 +00:00
|
|
|
NS_IMPL_THREADSAFE_ISUPPORTS1(nsJARItem, nsIZipEntry)
|
1999-06-23 06:16:28 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
nsJARItem::nsJARItem(nsZipItem* aZipItem)
|
2009-10-17 15:54:54 +00:00
|
|
|
: mSize(aZipItem->Size()),
|
|
|
|
mRealsize(aZipItem->RealSize()),
|
|
|
|
mCrc32(aZipItem->CRC32()),
|
2009-12-15 23:01:08 +00:00
|
|
|
mLastModTime(aZipItem->LastModTime()),
|
2009-10-17 15:54:54 +00:00
|
|
|
mCompression(aZipItem->Compression()),
|
|
|
|
mIsDirectory(aZipItem->IsDirectory()),
|
2006-05-02 19:33:09 +00:00
|
|
|
mIsSynthetic(aZipItem->isSynthetic)
|
2000-01-29 00:03:57 +00:00
|
|
|
{
|
1999-06-23 06:16:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------
|
|
|
|
// nsJARItem::GetCompression
|
|
|
|
//------------------------------------------
|
2006-03-29 22:10:37 +00:00
|
|
|
NS_IMETHODIMP
|
1999-06-23 06:16:28 +00:00
|
|
|
nsJARItem::GetCompression(PRUint16 *aCompression)
|
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aCompression);
|
1999-06-23 06:16:28 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
*aCompression = mCompression;
|
1999-06-23 06:16:28 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------
|
|
|
|
// nsJARItem::GetSize
|
|
|
|
//------------------------------------------
|
2006-03-29 22:10:37 +00:00
|
|
|
NS_IMETHODIMP
|
1999-06-23 06:16:28 +00:00
|
|
|
nsJARItem::GetSize(PRUint32 *aSize)
|
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aSize);
|
1999-06-23 06:16:28 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
*aSize = mSize;
|
1999-06-23 06:16:28 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------
|
|
|
|
// nsJARItem::GetRealSize
|
|
|
|
//------------------------------------------
|
2006-03-29 22:10:37 +00:00
|
|
|
NS_IMETHODIMP
|
1999-11-12 06:13:13 +00:00
|
|
|
nsJARItem::GetRealSize(PRUint32 *aRealsize)
|
1999-06-23 06:16:28 +00:00
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aRealsize);
|
1999-06-23 06:16:28 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
*aRealsize = mRealsize;
|
1999-06-23 06:16:28 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------
|
|
|
|
// nsJARItem::GetCrc32
|
|
|
|
//------------------------------------------
|
2006-03-29 22:10:37 +00:00
|
|
|
NS_IMETHODIMP
|
1999-11-12 06:13:13 +00:00
|
|
|
nsJARItem::GetCRC32(PRUint32 *aCrc32)
|
1999-06-23 06:16:28 +00:00
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aCrc32);
|
1999-06-23 06:16:28 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
*aCrc32 = mCrc32;
|
1999-06-23 06:16:28 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2000-01-29 00:03:57 +00:00
|
|
|
|
2006-03-29 22:10:37 +00:00
|
|
|
//------------------------------------------
|
|
|
|
// nsJARItem::GetIsDirectory
|
|
|
|
//------------------------------------------
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsJARItem::GetIsDirectory(PRBool *aIsDirectory)
|
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aIsDirectory);
|
2006-03-29 22:10:37 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
*aIsDirectory = mIsDirectory;
|
2006-03-29 22:10:37 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------
|
|
|
|
// nsJARItem::GetIsSynthetic
|
|
|
|
//------------------------------------------
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_IMETHODIMP
|
2006-03-29 22:10:37 +00:00
|
|
|
nsJARItem::GetIsSynthetic(PRBool *aIsSynthetic)
|
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aIsSynthetic);
|
2006-03-29 22:10:37 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
*aIsSynthetic = mIsSynthetic;
|
2006-03-29 22:10:37 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------
|
|
|
|
// nsJARItem::GetLastModifiedTime
|
|
|
|
//------------------------------------------
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsJARItem::GetLastModifiedTime(PRTime* aLastModTime)
|
|
|
|
{
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aLastModTime);
|
2006-03-29 22:10:37 +00:00
|
|
|
|
2009-12-15 23:01:08 +00:00
|
|
|
*aLastModTime = mLastModTime;
|
2006-03-29 22:10:37 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-04-12 07:58:24 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsIZipReaderCache
|
|
|
|
|
2000-10-31 22:44:20 +00:00
|
|
|
NS_IMPL_THREADSAFE_ISUPPORTS3(nsZipReaderCache, nsIZipReaderCache, nsIObserver, nsISupportsWeakReference)
|
2000-04-12 07:58:24 +00:00
|
|
|
|
|
|
|
nsZipReaderCache::nsZipReaderCache()
|
2000-04-26 21:27:52 +00:00
|
|
|
: mLock(nsnull),
|
2000-10-31 22:44:20 +00:00
|
|
|
mZips(16)
|
2000-08-24 07:38:41 +00:00
|
|
|
#ifdef ZIP_CACHE_HIT_RATE
|
2000-10-31 22:44:20 +00:00
|
|
|
,
|
2000-08-24 07:38:41 +00:00
|
|
|
mZipCacheLookups(0),
|
|
|
|
mZipCacheHits(0),
|
|
|
|
mZipCacheFlushes(0),
|
2000-10-31 22:44:20 +00:00
|
|
|
mZipSyncMisses(0)
|
2000-08-24 07:38:41 +00:00
|
|
|
#endif
|
2000-04-12 07:58:24 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsZipReaderCache::Init(PRUint32 cacheSize)
|
|
|
|
{
|
2000-10-31 22:44:20 +00:00
|
|
|
mCacheSize = cacheSize;
|
|
|
|
|
|
|
|
// Register as a memory pressure observer
|
2001-07-25 07:54:28 +00:00
|
|
|
nsCOMPtr<nsIObserverService> os =
|
2004-11-27 17:25:25 +00:00
|
|
|
do_GetService("@mozilla.org/observer-service;1");
|
|
|
|
if (os)
|
2000-10-31 22:44:20 +00:00
|
|
|
{
|
2004-11-27 17:25:25 +00:00
|
|
|
os->AddObserver(this, "memory-pressure", PR_TRUE);
|
|
|
|
os->AddObserver(this, "chrome-flush-caches", PR_TRUE);
|
2000-10-31 22:44:20 +00:00
|
|
|
}
|
|
|
|
// ignore failure of the observer registration.
|
|
|
|
|
2000-04-12 07:58:24 +00:00
|
|
|
mLock = PR_NewLock();
|
|
|
|
return mLock ? NS_OK : NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
2008-10-10 15:04:34 +00:00
|
|
|
static PRBool
|
2000-08-23 03:18:53 +00:00
|
|
|
DropZipReaderCache(nsHashKey *aKey, void *aData, void* closure)
|
|
|
|
{
|
|
|
|
nsJAR* zip = (nsJAR*)aData;
|
|
|
|
zip->SetZipReaderCache(nsnull);
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
2000-04-12 07:58:24 +00:00
|
|
|
nsZipReaderCache::~nsZipReaderCache()
|
|
|
|
{
|
|
|
|
if (mLock)
|
|
|
|
PR_DestroyLock(mLock);
|
2000-08-23 03:18:53 +00:00
|
|
|
mZips.Enumerate(DropZipReaderCache, nsnull);
|
2000-08-24 07:38:41 +00:00
|
|
|
|
|
|
|
#ifdef ZIP_CACHE_HIT_RATE
|
2000-10-31 22:44:20 +00:00
|
|
|
printf("nsZipReaderCache size=%d hits=%d lookups=%d rate=%f%% flushes=%d missed %d\n",
|
|
|
|
mCacheSize, mZipCacheHits, mZipCacheLookups,
|
|
|
|
(float)mZipCacheHits / mZipCacheLookups,
|
|
|
|
mZipCacheFlushes, mZipSyncMisses);
|
2000-08-24 07:38:41 +00:00
|
|
|
#endif
|
2000-04-12 07:58:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsZipReaderCache::GetZip(nsIFile* zipFile, nsIZipReader* *result)
|
|
|
|
{
|
2008-09-06 15:06:47 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(zipFile);
|
2000-04-12 07:58:24 +00:00
|
|
|
nsresult rv;
|
2008-10-01 05:25:29 +00:00
|
|
|
nsCOMPtr<nsIJAR> antiLockZipGrip;
|
2000-04-12 07:58:24 +00:00
|
|
|
nsAutoLock lock(mLock);
|
|
|
|
|
2000-08-24 07:38:41 +00:00
|
|
|
#ifdef ZIP_CACHE_HIT_RATE
|
|
|
|
mZipCacheLookups++;
|
|
|
|
#endif
|
|
|
|
|
2002-04-27 05:33:09 +00:00
|
|
|
nsCAutoString path;
|
|
|
|
rv = zipFile->GetNativePath(path);
|
2000-05-25 08:30:29 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2001-06-29 23:16:52 +00:00
|
|
|
nsCStringKey key(path);
|
2007-07-08 07:08:04 +00:00
|
|
|
nsJAR* zip = static_cast<nsJAR*>(static_cast<nsIZipReader*>(mZips.Get(&key))); // AddRefs
|
2009-08-12 20:50:12 +00:00
|
|
|
if (zip) {
|
2000-08-24 07:38:41 +00:00
|
|
|
#ifdef ZIP_CACHE_HIT_RATE
|
|
|
|
mZipCacheHits++;
|
|
|
|
#endif
|
2000-10-31 22:44:20 +00:00
|
|
|
zip->ClearReleaseTime();
|
2000-04-12 07:58:24 +00:00
|
|
|
}
|
2000-08-23 03:18:53 +00:00
|
|
|
else {
|
2008-10-01 05:25:29 +00:00
|
|
|
if (zip) {
|
|
|
|
antiLockZipGrip = zip;
|
|
|
|
mZips.Remove(&key);
|
|
|
|
}
|
2000-08-23 03:18:53 +00:00
|
|
|
zip = new nsJAR();
|
|
|
|
if (zip == nsnull)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
NS_ADDREF(zip);
|
|
|
|
zip->SetZipReaderCache(this);
|
2000-04-12 07:58:24 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
rv = zip->Open(zipFile);
|
2000-08-23 03:18:53 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_RELEASE(zip);
|
|
|
|
return rv;
|
|
|
|
}
|
2000-04-12 07:58:24 +00:00
|
|
|
|
2007-07-08 07:08:04 +00:00
|
|
|
PRBool collision = mZips.Put(&key, static_cast<nsIZipReader*>(zip)); // AddRefs to 2
|
2000-08-23 03:18:53 +00:00
|
|
|
NS_ASSERTION(!collision, "horked");
|
2000-04-12 07:58:24 +00:00
|
|
|
}
|
|
|
|
*result = zip;
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2008-10-10 15:04:34 +00:00
|
|
|
static PRBool
|
2000-08-23 03:18:53 +00:00
|
|
|
FindOldestZip(nsHashKey *aKey, void *aData, void* closure)
|
|
|
|
{
|
|
|
|
nsJAR** oldestPtr = (nsJAR**)closure;
|
|
|
|
nsJAR* oldest = *oldestPtr;
|
|
|
|
nsJAR* current = (nsJAR*)aData;
|
|
|
|
PRIntervalTime currentReleaseTime = current->GetReleaseTime();
|
|
|
|
if (currentReleaseTime != PR_INTERVAL_NO_TIMEOUT) {
|
|
|
|
if (oldest == nsnull ||
|
|
|
|
currentReleaseTime < oldest->GetReleaseTime()) {
|
|
|
|
*oldestPtr = current;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
2000-10-31 22:44:20 +00:00
|
|
|
struct ZipFindData {nsJAR* zip; PRBool found;};
|
|
|
|
|
2008-10-10 15:04:34 +00:00
|
|
|
static PRBool
|
2000-10-31 22:44:20 +00:00
|
|
|
FindZip(nsHashKey *aKey, void *aData, void* closure)
|
|
|
|
{
|
|
|
|
ZipFindData* find_data = (ZipFindData*)closure;
|
|
|
|
|
|
|
|
if (find_data->zip == (nsJAR*)aData) {
|
|
|
|
find_data->found = PR_TRUE;
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
2000-08-23 03:18:53 +00:00
|
|
|
nsresult
|
|
|
|
nsZipReaderCache::ReleaseZip(nsJAR* zip)
|
2000-04-12 07:58:24 +00:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsAutoLock lock(mLock);
|
|
|
|
|
2000-10-31 22:44:20 +00:00
|
|
|
// It is possible that two thread compete for this zip. The dangerous
|
|
|
|
// case is where one thread Releases the zip and discovers that the ref
|
|
|
|
// count has gone to one. Before it can call this ReleaseZip method
|
|
|
|
// another thread calls our GetZip method. The ref count goes to two. That
|
2006-03-29 22:10:37 +00:00
|
|
|
// second thread then Releases the zip and the ref count goes to one. It
|
|
|
|
// then tries to enter this ReleaseZip method and blocks while the first
|
2000-10-31 22:44:20 +00:00
|
|
|
// thread is still here. The first thread continues and remove the zip from
|
|
|
|
// the cache and calls its Release method sending the ref count to 0 and
|
|
|
|
// deleting the zip. However, the second thread is still blocked at the
|
|
|
|
// start of ReleaseZip, but the 'zip' param now hold a reference to a
|
|
|
|
// deleted zip!
|
|
|
|
//
|
2006-03-29 22:10:37 +00:00
|
|
|
// So, we are going to try safeguarding here by searching our hashtable while
|
2000-10-31 22:44:20 +00:00
|
|
|
// locked here for the zip. We return fast if it is not found.
|
|
|
|
|
|
|
|
ZipFindData find_data = {zip, PR_FALSE};
|
|
|
|
mZips.Enumerate(FindZip, &find_data);
|
|
|
|
if (!find_data.found) {
|
|
|
|
#ifdef ZIP_CACHE_HIT_RATE
|
|
|
|
mZipSyncMisses++;
|
|
|
|
#endif
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-09-18 07:08:22 +00:00
|
|
|
zip->SetReleaseTime();
|
|
|
|
|
2000-08-23 03:18:53 +00:00
|
|
|
if (mZips.Count() <= mCacheSize)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
nsJAR* oldest = nsnull;
|
2000-10-31 22:44:20 +00:00
|
|
|
mZips.Enumerate(FindOldestZip, &oldest);
|
|
|
|
|
|
|
|
// Because of the craziness above it is possible that there is no zip that
|
|
|
|
// needs removing.
|
|
|
|
if (!oldest)
|
|
|
|
return NS_OK;
|
2000-08-23 03:18:53 +00:00
|
|
|
|
2000-08-24 07:38:41 +00:00
|
|
|
#ifdef ZIP_CACHE_HIT_RATE
|
|
|
|
mZipCacheFlushes++;
|
|
|
|
#endif
|
|
|
|
|
2000-10-31 22:44:20 +00:00
|
|
|
// Clear the cache pointer in case we gave out this oldest guy while
|
|
|
|
// his Release call was being made. Otherwise we could nest on ReleaseZip
|
|
|
|
// when the second owner calls Release and we are still here in this lock.
|
|
|
|
oldest->SetZipReaderCache(nsnull);
|
|
|
|
|
2000-08-23 03:18:53 +00:00
|
|
|
// remove from hashtable
|
2002-04-27 05:33:09 +00:00
|
|
|
nsCAutoString path;
|
2006-05-02 19:33:09 +00:00
|
|
|
rv = oldest->GetJarPath(path);
|
2000-05-25 08:30:29 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2001-06-29 23:16:52 +00:00
|
|
|
nsCStringKey key(path);
|
2000-08-23 03:18:53 +00:00
|
|
|
PRBool removed = mZips.Remove(&key); // Releases
|
|
|
|
NS_ASSERTION(removed, "botched");
|
2000-04-12 07:58:24 +00:00
|
|
|
|
2000-10-31 22:44:20 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-10-10 15:04:34 +00:00
|
|
|
static PRBool
|
2000-10-31 22:44:20 +00:00
|
|
|
FindFlushableZip(nsHashKey *aKey, void *aData, void* closure)
|
|
|
|
{
|
|
|
|
nsHashKey** flushableKeyPtr = (nsHashKey**)closure;
|
|
|
|
nsJAR* current = (nsJAR*)aData;
|
|
|
|
|
|
|
|
if (current->GetReleaseTime() != PR_INTERVAL_NO_TIMEOUT) {
|
|
|
|
*flushableKeyPtr = aKey;
|
|
|
|
current->SetZipReaderCache(nsnull);
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsZipReaderCache::Observe(nsISupports *aSubject,
|
2001-10-19 20:52:59 +00:00
|
|
|
const char *aTopic,
|
2000-10-31 22:44:20 +00:00
|
|
|
const PRUnichar *aSomeData)
|
|
|
|
{
|
2004-11-27 17:25:25 +00:00
|
|
|
if (strcmp(aTopic, "memory-pressure") == 0) {
|
2000-10-31 22:44:20 +00:00
|
|
|
nsAutoLock lock(mLock);
|
|
|
|
while (PR_TRUE) {
|
|
|
|
nsHashKey* flushable = nsnull;
|
|
|
|
mZips.Enumerate(FindFlushableZip, &flushable);
|
|
|
|
if ( ! flushable )
|
|
|
|
break;
|
|
|
|
PRBool removed = mZips.Remove(flushable); // Releases
|
|
|
|
NS_ASSERTION(removed, "botched");
|
|
|
|
|
|
|
|
#ifdef xDEBUG_jband
|
|
|
|
printf("flushed something from the jar cache\n");
|
|
|
|
#endif
|
|
|
|
}
|
2004-11-27 17:25:25 +00:00
|
|
|
}
|
|
|
|
else if (strcmp(aTopic, "chrome-flush-caches") == 0) {
|
|
|
|
mZips.Enumerate(DropZipReaderCache, nsnull);
|
|
|
|
mZips.Reset();
|
|
|
|
}
|
2000-04-12 07:58:24 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|