1999-06-02 01:08:32 +04:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1999-06-02 01:08:32 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03: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-02 01:08:32 +04:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code,
|
|
|
|
* released March 31, 1998.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
1999-11-06 06:43:54 +03:00
|
|
|
* Corporation. Portions created by Netscape are
|
2000-02-14 04:57:01 +03:00
|
|
|
* Copyright (C) 1998-2000 Netscape Communications Corporation. All
|
1999-11-06 06:43:54 +03:00
|
|
|
* Rights Reserved.
|
1999-06-02 01:08:32 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* Contributor(s):
|
1999-06-02 01:08:32 +04:00
|
|
|
* Don Bragg <dbragg@netscape.com>
|
1999-06-23 10:16:28 +04:00
|
|
|
* Samir Gehani <sgehani@netscape.com>
|
1999-10-26 23:43:26 +04:00
|
|
|
* Mitch Stoltz <mstoltz@netscape.com>
|
1999-06-02 01:08:32 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef nsJAR_h__
|
|
|
|
#define nsJAR_h__
|
|
|
|
|
2000-01-29 03:03:57 +03:00
|
|
|
#include "nscore.h"
|
|
|
|
#include "pratom.h"
|
|
|
|
#include "prmem.h"
|
|
|
|
#include "prio.h"
|
|
|
|
#include "plstr.h"
|
|
|
|
#include "prlog.h"
|
1999-06-02 01:08:32 +04:00
|
|
|
#include "prtypes.h"
|
2000-01-29 03:03:57 +03:00
|
|
|
#include "xp_regexp.h"
|
|
|
|
|
|
|
|
#include "nsRepository.h"
|
|
|
|
#include "nsIComponentManager.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsString2.h"
|
|
|
|
#include "nsIFile.h"
|
1999-06-23 10:16:28 +04:00
|
|
|
#include "nsIEnumerator.h"
|
2000-01-29 03:03:57 +03:00
|
|
|
#include "nsVoidArray.h"
|
|
|
|
#include "nsHashtable.h"
|
|
|
|
|
|
|
|
#include "nsIZipReader.h"
|
1999-06-23 10:16:28 +04:00
|
|
|
#include "nsZipArchive.h"
|
|
|
|
#include "zipfile.h"
|
1999-06-02 01:08:32 +04:00
|
|
|
|
1999-10-26 23:43:26 +04:00
|
|
|
class nsIInputStream;
|
2000-01-29 03:03:57 +03:00
|
|
|
class nsIPrincipal;
|
1999-10-26 23:43:26 +04:00
|
|
|
|
1999-06-02 01:08:32 +04:00
|
|
|
/*-------------------------------------------------------------------------
|
2000-01-29 03:03:57 +03:00
|
|
|
* Class nsJAR declaration.
|
|
|
|
* nsJAR serves as an XPCOM wrapper for nsZipArchive with the addition of
|
|
|
|
* JAR manifest file parsing.
|
1999-06-02 01:08:32 +04:00
|
|
|
*------------------------------------------------------------------------*/
|
1999-11-12 09:13:13 +03:00
|
|
|
class nsJAR : public nsIZipReader
|
1999-06-02 01:08:32 +04:00
|
|
|
{
|
2000-02-14 04:57:01 +03:00
|
|
|
// Allows nsJARInputStream to call the verification functions
|
2000-01-29 03:03:57 +03:00
|
|
|
friend class nsJARInputStream;
|
|
|
|
|
1999-06-02 01:08:32 +04:00
|
|
|
public:
|
|
|
|
|
|
|
|
nsJAR();
|
1999-06-21 05:59:44 +04:00
|
|
|
virtual ~nsJAR();
|
1999-06-02 01:08:32 +04:00
|
|
|
|
1999-11-12 09:13:13 +03:00
|
|
|
NS_DEFINE_STATIC_CID_ACCESSOR( NS_ZIPREADER_CID );
|
1999-06-02 01:08:32 +04:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
1999-08-21 12:54:47 +04:00
|
|
|
|
1999-11-12 09:13:13 +03:00
|
|
|
NS_DECL_NSIZIPREADER
|
1999-06-23 10:16:28 +04:00
|
|
|
|
|
|
|
private:
|
2000-01-29 03:03:57 +03:00
|
|
|
//-- Private data members
|
2000-02-14 04:57:01 +03:00
|
|
|
nsCOMPtr<nsIFile> mZipFile; // The zip/jar file on disk
|
|
|
|
nsZipArchive mZip; // The underlying zip archive
|
|
|
|
nsObjectHashtable mManifestData; // Stores metadata for each entry
|
|
|
|
PRBool step1Complete; // True if manifest has been parsed
|
2000-01-29 03:03:57 +03:00
|
|
|
nsISupports* mVerificationService;
|
|
|
|
|
|
|
|
//-- Private functions
|
2000-02-14 04:57:01 +03:00
|
|
|
nsresult CreateInputStream(const char* aFilename, nsJAR* aJAR,
|
|
|
|
nsIInputStream** is);
|
2000-01-29 03:03:57 +03:00
|
|
|
nsresult LoadEntry(const char* aFilename, const char** aBuf,
|
|
|
|
PRUint32* aBufLen = nsnull);
|
|
|
|
PRInt32 ReadLine(const char** src);
|
|
|
|
nsresult ParseOneFile(const char* filebuf, PRInt16 aFileType,
|
2000-02-14 04:57:01 +03:00
|
|
|
nsIPrincipal* aPrincipal = nsnull);
|
|
|
|
nsresult VerifyEntry(const char* aEntryName, char* aEntryData,
|
|
|
|
PRUint32 aLen);
|
|
|
|
|
|
|
|
//-- Debugging
|
|
|
|
void DumpMetadata(const char* aMessage);
|
2000-01-29 03:03:57 +03:00
|
|
|
|
|
|
|
//-- The following private functions are implemented in nsJARStubs.cpp
|
|
|
|
static PRBool SupportsRSAVerification();
|
2000-02-14 04:57:01 +03:00
|
|
|
nsresult CalculateDigest(const char* aInBuf, PRUint32 aInBufLen,
|
|
|
|
char** digest);
|
2000-01-29 03:03:57 +03:00
|
|
|
nsresult VerifySignature(const char* sfBuf, const char* rsaBuf,
|
|
|
|
PRUint32 rsaBufLen, nsIPrincipal** aPrincipal);
|
1999-06-23 10:16:28 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nsJARItem
|
|
|
|
*
|
|
|
|
* An individual JAR entry. A set of nsJARItems macthing a
|
|
|
|
* supplied pattern are returned in a nsJAREnumerator.
|
|
|
|
*/
|
2000-01-29 03:03:57 +03:00
|
|
|
class nsJARItem : public nsIZipEntry
|
1999-06-23 10:16:28 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
1999-11-12 09:13:13 +03:00
|
|
|
NS_DECL_NSIZIPENTRY
|
2000-01-29 03:03:57 +03:00
|
|
|
|
|
|
|
void Init(nsZipItem* aZipItem);
|
1999-06-23 10:16:28 +04:00
|
|
|
|
|
|
|
nsJARItem();
|
|
|
|
virtual ~nsJARItem();
|
2000-01-29 03:03:57 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
nsZipItem* mZipItem;
|
1999-06-23 10:16:28 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nsJAREnumerator
|
|
|
|
*
|
|
|
|
* Enumerates a list of files in a zip archive
|
|
|
|
* (based on a pattern match in its member nsZipFind).
|
|
|
|
*/
|
|
|
|
class nsJAREnumerator : public nsISimpleEnumerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
1999-11-12 09:13:13 +03:00
|
|
|
NS_DECL_NSISIMPLEENUMERATOR
|
1999-06-02 01:08:32 +04:00
|
|
|
|
1999-06-23 10:16:28 +04:00
|
|
|
nsJAREnumerator(nsZipFind *aFind);
|
|
|
|
virtual ~nsJAREnumerator();
|
1999-06-02 01:08:32 +04:00
|
|
|
|
1999-06-23 10:16:28 +04:00
|
|
|
protected:
|
|
|
|
nsZipArchive *mArchive; // pointer extracted from mFind for efficiency
|
|
|
|
nsZipFind *mFind;
|
|
|
|
nsZipItem *mCurr; // raw pointer to an nsZipItem owned by mArchive -- DON'T delete
|
|
|
|
PRBool mIsCurrStale;
|
1999-06-02 01:08:32 +04:00
|
|
|
};
|
|
|
|
|
1999-06-03 04:48:16 +04:00
|
|
|
#endif /* nsJAR_h__ */
|
|
|
|
|