1999-06-01 21:08:32 +00:00
|
|
|
/* -*- Mode: C; tab-width: 4; 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-2000
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Don Bragg <dbragg@netscape.com>
|
|
|
|
* Samir Gehani <sgehani@netscape.com>
|
|
|
|
* Mitch Stoltz <mstoltz@netscape.com>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
|
|
|
|
|
|
#ifndef nsJAR_h__
|
|
|
|
#define nsJAR_h__
|
|
|
|
|
2000-01-29 00:03:57 +00:00
|
|
|
#include "nscore.h"
|
|
|
|
#include "pratom.h"
|
|
|
|
#include "prmem.h"
|
|
|
|
#include "prio.h"
|
|
|
|
#include "plstr.h"
|
|
|
|
#include "prlog.h"
|
1999-06-01 21:08:32 +00:00
|
|
|
#include "prtypes.h"
|
2000-08-23 03:18:53 +00:00
|
|
|
#include "prinrval.h"
|
2000-01-29 00:03:57 +00:00
|
|
|
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 04:29:02 +00:00
|
|
|
#include "mozilla/Mutex.h"
|
2000-01-29 00:03:57 +00:00
|
|
|
#include "nsIComponentManager.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2000-03-26 23:30:52 +00:00
|
|
|
#include "nsString.h"
|
2000-01-29 00:03:57 +00:00
|
|
|
#include "nsIFile.h"
|
2006-05-02 19:33:09 +00:00
|
|
|
#include "nsStringEnumerator.h"
|
2000-01-29 00:03:57 +00:00
|
|
|
#include "nsHashtable.h"
|
|
|
|
#include "nsIZipReader.h"
|
1999-06-23 06:16:28 +00:00
|
|
|
#include "nsZipArchive.h"
|
2000-04-26 03:50:07 +00:00
|
|
|
#include "nsIPrincipal.h"
|
2000-05-10 01:49:33 +00:00
|
|
|
#include "nsISignatureVerifier.h"
|
2000-10-31 22:44:20 +00:00
|
|
|
#include "nsIObserverService.h"
|
|
|
|
#include "nsWeakReference.h"
|
2001-10-19 20:52:59 +00:00
|
|
|
#include "nsIObserver.h"
|
1999-06-01 21:08:32 +00:00
|
|
|
|
1999-10-26 19:43:26 +00:00
|
|
|
class nsIInputStream;
|
2000-07-12 03:10:33 +00:00
|
|
|
class nsJARManifestItem;
|
2000-08-23 03:18:53 +00:00
|
|
|
class nsZipReaderCache;
|
1999-10-26 19:43:26 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
/* For mManifestStatus */
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
JAR_MANIFEST_NOT_PARSED = 0,
|
|
|
|
JAR_VALID_MANIFEST = 1,
|
|
|
|
JAR_INVALID_SIG = 2,
|
|
|
|
JAR_INVALID_UNKNOWN_CA = 3,
|
|
|
|
JAR_INVALID_MANIFEST = 4,
|
|
|
|
JAR_INVALID_ENTRY = 5,
|
|
|
|
JAR_NO_MANIFEST = 6,
|
|
|
|
JAR_NOT_SIGNED = 7
|
|
|
|
} JARManifestStatusType;
|
|
|
|
|
1999-06-01 21:08:32 +00:00
|
|
|
/*-------------------------------------------------------------------------
|
2000-01-29 00:03:57 +00:00
|
|
|
* Class nsJAR declaration.
|
|
|
|
* nsJAR serves as an XPCOM wrapper for nsZipArchive with the addition of
|
|
|
|
* JAR manifest file parsing.
|
1999-06-01 21:08:32 +00:00
|
|
|
*------------------------------------------------------------------------*/
|
2010-03-07 13:56:45 +00:00
|
|
|
class nsJAR : public nsIZipReader
|
1999-06-01 21:08:32 +00:00
|
|
|
{
|
2000-02-14 01:57:01 +00:00
|
|
|
// Allows nsJARInputStream to call the verification functions
|
2000-01-29 00:03:57 +00:00
|
|
|
friend class nsJARInputStream;
|
2010-09-09 03:38:34 +00:00
|
|
|
// Allows nsZipReaderCache to access mOuterZipEntry
|
|
|
|
friend class nsZipReaderCache;
|
2000-01-29 00:03:57 +00:00
|
|
|
|
1999-06-01 21:08:32 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
nsJAR();
|
1999-06-21 01:59:44 +00:00
|
|
|
virtual ~nsJAR();
|
1999-06-01 21:08:32 +00:00
|
|
|
|
2007-04-23 14:21:53 +00:00
|
|
|
NS_DEFINE_STATIC_CID_ACCESSOR( NS_ZIPREADER_CID )
|
1999-06-01 21:08:32 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
1999-08-21 08:54:47 +00:00
|
|
|
|
1999-11-12 06:13:13 +00:00
|
|
|
NS_DECL_NSIZIPREADER
|
2000-04-12 07:58:24 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
nsresult GetJarPath(nsACString& aResult);
|
|
|
|
|
2000-08-23 03:18:53 +00:00
|
|
|
PRIntervalTime GetReleaseTime() {
|
|
|
|
return mReleaseTime;
|
2000-10-31 22:44:20 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsReleased() {
|
2000-10-31 22:44:20 +00:00
|
|
|
return mReleaseTime != PR_INTERVAL_NO_TIMEOUT;
|
2000-08-23 03:18:53 +00:00
|
|
|
}
|
2000-09-18 07:08:22 +00:00
|
|
|
|
|
|
|
void SetReleaseTime() {
|
|
|
|
mReleaseTime = PR_IntervalNow();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClearReleaseTime() {
|
|
|
|
mReleaseTime = PR_INTERVAL_NO_TIMEOUT;
|
|
|
|
}
|
2000-08-23 03:18:53 +00:00
|
|
|
|
|
|
|
void SetZipReaderCache(nsZipReaderCache* cache) {
|
|
|
|
mCache = cache;
|
|
|
|
}
|
2003-03-14 18:59:51 +00:00
|
|
|
|
2000-04-12 07:58:24 +00:00
|
|
|
protected:
|
2000-01-29 00:03:57 +00:00
|
|
|
//-- Private data members
|
2000-04-26 03:50:07 +00:00
|
|
|
nsCOMPtr<nsIFile> mZipFile; // The zip/jar file on disk
|
2010-09-09 03:38:34 +00:00
|
|
|
nsCString mOuterZipEntry; // The entry in the zip this zip is reading from
|
2010-09-09 21:01:00 +00:00
|
|
|
nsAutoPtr<nsZipArchive> mZip; // The underlying zip archive
|
2000-04-26 03:50:07 +00:00
|
|
|
nsObjectHashtable mManifestData; // Stores metadata for each entry
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mParsedManifest; // True if manifest has been parsed
|
2000-04-26 03:50:07 +00:00
|
|
|
nsCOMPtr<nsIPrincipal> mPrincipal; // The entity which signed this file
|
|
|
|
PRInt16 mGlobalStatus; // Global signature verification status
|
2000-08-23 03:18:53 +00:00
|
|
|
PRIntervalTime mReleaseTime; // used by nsZipReaderCache for flushing entries
|
|
|
|
nsZipReaderCache* mCache; // if cached, this points to the cache it's contained in
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 04:29:02 +00:00
|
|
|
mozilla::Mutex mLock;
|
2008-10-01 05:25:29 +00:00
|
|
|
PRInt64 mMtime;
|
2002-12-13 22:24:12 +00:00
|
|
|
PRInt32 mTotalItemsInManifest;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mOpened;
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 04:29:02 +00:00
|
|
|
|
2008-11-18 19:11:35 +00:00
|
|
|
nsresult ParseManifest();
|
2000-04-26 03:50:07 +00:00
|
|
|
void ReportError(const char* aFilename, PRInt16 errorCode);
|
2011-09-28 23:14:45 +00:00
|
|
|
nsresult LoadEntry(const nsACString &aFilename, char** aBuf,
|
2000-01-29 00:03:57 +00:00
|
|
|
PRUint32* aBufLen = nsnull);
|
|
|
|
PRInt32 ReadLine(const char** src);
|
2006-05-02 19:33:09 +00:00
|
|
|
nsresult ParseOneFile(const char* filebuf, PRInt16 aFileType);
|
|
|
|
nsresult VerifyEntry(nsJARManifestItem* aEntry, const char* aEntryData,
|
2000-02-14 01:57:01 +00:00
|
|
|
PRUint32 aLen);
|
|
|
|
|
2005-06-01 16:06:53 +00:00
|
|
|
nsresult CalculateDigest(const char* aInBuf, PRUint32 aInBufLen,
|
2009-04-07 09:24:58 +00:00
|
|
|
nsCString& digest);
|
2000-03-21 04:21:28 +00:00
|
|
|
|
|
|
|
//-- Debugging
|
|
|
|
void DumpMetadata(const char* aMessage);
|
1999-06-23 06:16:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nsJARItem
|
|
|
|
*
|
|
|
|
* An individual JAR entry. A set of nsJARItems macthing a
|
|
|
|
* supplied pattern are returned in a nsJAREnumerator.
|
|
|
|
*/
|
2000-01-29 00:03:57 +00:00
|
|
|
class nsJARItem : public nsIZipEntry
|
1999-06-23 06:16:28 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
1999-11-12 06:13:13 +00:00
|
|
|
NS_DECL_NSIZIPENTRY
|
2000-01-29 00:03:57 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
nsJARItem(nsZipItem* aZipItem);
|
2007-04-23 14:21:53 +00:00
|
|
|
virtual ~nsJARItem() {}
|
2006-05-02 19:33:09 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
PRUint32 mSize; /* size in original file */
|
|
|
|
PRUint32 mRealsize; /* inflated size */
|
|
|
|
PRUint32 mCrc32;
|
2009-12-15 23:01:08 +00:00
|
|
|
PRTime mLastModTime;
|
2009-10-17 15:54:54 +00:00
|
|
|
PRUint16 mCompression;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mIsDirectory;
|
|
|
|
bool mIsSynthetic;
|
1999-06-23 06:16:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nsJAREnumerator
|
|
|
|
*
|
|
|
|
* Enumerates a list of files in a zip archive
|
|
|
|
* (based on a pattern match in its member nsZipFind).
|
|
|
|
*/
|
2006-05-02 19:33:09 +00:00
|
|
|
class nsJAREnumerator : public nsIUTF8StringEnumerator
|
1999-06-23 06:16:28 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_DECL_NSIUTF8STRINGENUMERATOR
|
1999-06-01 21:08:32 +00:00
|
|
|
|
2009-10-17 15:54:54 +00:00
|
|
|
nsJAREnumerator(nsZipFind *aFind) : mFind(aFind), mName(nsnull) {
|
2006-05-02 19:33:09 +00:00
|
|
|
NS_ASSERTION(mFind, "nsJAREnumerator: Missing zipFind.");
|
|
|
|
}
|
1999-06-01 21:08:32 +00:00
|
|
|
|
2006-05-02 19:33:09 +00:00
|
|
|
private:
|
1999-06-23 06:16:28 +00:00
|
|
|
nsZipFind *mFind;
|
2009-10-17 15:54:54 +00:00
|
|
|
const char* mName; // pointer to an name owned by mArchive -- DON'T delete
|
|
|
|
PRUint16 mNameLen;
|
2006-05-02 19:33:09 +00:00
|
|
|
|
|
|
|
~nsJAREnumerator() { delete mFind; }
|
1999-06-01 21:08:32 +00:00
|
|
|
};
|
|
|
|
|
2000-04-12 07:58:24 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2000-10-31 22:44:20 +00:00
|
|
|
#if defined(DEBUG_warren) || defined(DEBUG_jband)
|
2000-08-24 07:38:41 +00:00
|
|
|
#define ZIP_CACHE_HIT_RATE
|
|
|
|
#endif
|
2000-04-12 07:58:24 +00:00
|
|
|
|
2000-10-31 22:44:20 +00:00
|
|
|
class nsZipReaderCache : public nsIZipReaderCache, public nsIObserver,
|
|
|
|
public nsSupportsWeakReference
|
2000-04-12 07:58:24 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIZIPREADERCACHE
|
2000-10-31 22:44:20 +00:00
|
|
|
NS_DECL_NSIOBSERVER
|
2000-04-12 07:58:24 +00:00
|
|
|
|
|
|
|
nsZipReaderCache();
|
|
|
|
virtual ~nsZipReaderCache();
|
|
|
|
|
2000-08-23 03:18:53 +00:00
|
|
|
nsresult ReleaseZip(nsJAR* reader);
|
|
|
|
|
2000-04-12 07:58:24 +00:00
|
|
|
protected:
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 04:29:02 +00:00
|
|
|
mozilla::Mutex mLock;
|
2000-08-23 03:18:53 +00:00
|
|
|
PRInt32 mCacheSize;
|
|
|
|
nsSupportsHashtable mZips;
|
2000-08-24 07:38:41 +00:00
|
|
|
|
|
|
|
#ifdef ZIP_CACHE_HIT_RATE
|
|
|
|
PRUint32 mZipCacheLookups;
|
|
|
|
PRUint32 mZipCacheHits;
|
|
|
|
PRUint32 mZipCacheFlushes;
|
2000-10-31 22:44:20 +00:00
|
|
|
PRUint32 mZipSyncMisses;
|
2000-08-24 07:38:41 +00:00
|
|
|
#endif
|
|
|
|
|
2000-04-12 07:58:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-06-03 00:48:16 +00:00
|
|
|
#endif /* nsJAR_h__ */
|