mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
263 lines
8.7 KiB
C++
263 lines
8.7 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
// vim:cindent:ts=2:et:sw=2:
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* 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/
|
|
*
|
|
* 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.
|
|
*
|
|
* The Original Code is Mozilla Foundation code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Mozilla Foundation.
|
|
* Portions created by the Initial Developer are Copyright (C) 2008
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* John Daggett <jdaggett@mozilla.com>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either of 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 ***** */
|
|
|
|
/* code for loading in @font-face defined font data */
|
|
|
|
#ifdef MOZ_LOGGING
|
|
#define FORCE_PR_LOG /* Allow logging in the release build */
|
|
#endif /* MOZ_LOGGING */
|
|
#include "prlog.h"
|
|
|
|
#include "nsFontFaceLoader.h"
|
|
|
|
#include "nsError.h"
|
|
#include "nsIFile.h"
|
|
#include "nsILocalFile.h"
|
|
#include "nsIStreamListener.h"
|
|
#include "nsNetUtil.h"
|
|
#include "nsIChannelEventSink.h"
|
|
#include "nsIInterfaceRequestor.h"
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsPresContext.h"
|
|
#include "nsIPresShell.h"
|
|
#include "nsIDocument.h"
|
|
#include "nsIFrame.h"
|
|
#include "nsIPrincipal.h"
|
|
#include "nsIScriptSecurityManager.h"
|
|
|
|
#include "nsDirectoryServiceUtils.h"
|
|
#include "nsDirectoryServiceDefs.h"
|
|
#include "nsIContentPolicy.h"
|
|
#include "nsContentPolicyUtils.h"
|
|
#include "nsContentErrors.h"
|
|
#include "nsCrossSiteListenerProxy.h"
|
|
|
|
#ifdef PR_LOGGING
|
|
static PRLogModuleInfo *gFontDownloaderLog = PR_NewLogModule("fontdownloader");
|
|
#endif /* PR_LOGGING */
|
|
|
|
#define LOG(args) PR_LOG(gFontDownloaderLog, PR_LOG_DEBUG, args)
|
|
#define LOG_ENABLED() PR_LOG_TEST(gFontDownloaderLog, PR_LOG_DEBUG)
|
|
|
|
|
|
nsFontFaceLoader::nsFontFaceLoader(gfxFontEntry *aFontToLoad, nsIURI *aFontURI,
|
|
gfxUserFontSet::LoaderContext *aContext)
|
|
: mFontEntry(aFontToLoad), mFontURI(aFontURI), mLoaderContext(aContext)
|
|
{
|
|
|
|
}
|
|
|
|
nsFontFaceLoader::~nsFontFaceLoader()
|
|
{
|
|
|
|
}
|
|
|
|
NS_IMPL_ISUPPORTS1(nsFontFaceLoader, nsIStreamLoaderObserver)
|
|
|
|
NS_IMETHODIMP
|
|
nsFontFaceLoader::OnStreamComplete(nsIStreamLoader* aLoader,
|
|
nsISupports* aContext,
|
|
nsresult aStatus,
|
|
PRUint32 aStringLen,
|
|
const PRUint8* aString)
|
|
{
|
|
|
|
#ifdef PR_LOGGING
|
|
if (LOG_ENABLED()) {
|
|
nsCAutoString fontURI;
|
|
mFontURI->GetSpec(fontURI);
|
|
if (NS_SUCCEEDED(aStatus)) {
|
|
LOG(("fontdownloader (%p) download completed - font uri: (%s)\n",
|
|
this, fontURI.get()));
|
|
} else {
|
|
LOG(("fontdownloader (%p) download failed - font uri: (%s) error: %8.8x\n",
|
|
this, fontURI.get(), aStatus));
|
|
}
|
|
}
|
|
#endif
|
|
|
|
PRBool fontUpdate;
|
|
|
|
// whether an error occurred or not, notify the user font set of the completion
|
|
fontUpdate = mLoaderContext->mUserFontSet->OnLoadComplete(mFontEntry,
|
|
aString, aStringLen,
|
|
aStatus);
|
|
|
|
// when new font loaded, need to reflow
|
|
if (fontUpdate) {
|
|
nsFontFaceLoaderContext *loaderCtx
|
|
= static_cast<nsFontFaceLoaderContext*> (mLoaderContext);
|
|
|
|
nsIPresShell *ps = loaderCtx->mPresContext->PresShell();
|
|
if (ps) {
|
|
// Update layout for the presence of the new font. Since this is
|
|
// asynchronous, reflows will coalesce.
|
|
// nsPresContext::FlushUserFontSet does the same thing when we
|
|
// remove a user font set, for fonts becoming unavailable, or when
|
|
// we add one, because if we change it dynamically we need to
|
|
// trigger reflow to cause gfx to request the fonts.
|
|
ps->StyleChangeReflow();
|
|
LOG(("fontdownloader (%p) reflow\n", this));
|
|
}
|
|
}
|
|
|
|
return aStatus;
|
|
}
|
|
|
|
nsresult
|
|
nsFontFaceLoader::CreateHandler(gfxFontEntry *aFontToLoad,
|
|
nsIURI *aFontURI,
|
|
nsIURI *aReferrerURI,
|
|
gfxUserFontSet::LoaderContext *aContext)
|
|
{
|
|
nsresult rv;
|
|
|
|
// check same-site origin
|
|
nsFontFaceLoaderContext *loaderCtx
|
|
= static_cast<nsFontFaceLoaderContext*> (aContext);
|
|
|
|
nsIPresShell *ps = loaderCtx->mPresContext->PresShell();
|
|
if (!ps)
|
|
return NS_ERROR_FAILURE;
|
|
|
|
NS_ASSERTION(aFontURI, "null font uri");
|
|
if (!aFontURI)
|
|
return NS_ERROR_FAILURE;
|
|
|
|
// xxx - need to detect system principal here
|
|
nsCOMPtr<nsIPrincipal> principal = ps->GetDocument()->NodePrincipal();
|
|
|
|
rv = CheckLoadAllowed(principal, aFontURI, ps->GetDocument());
|
|
if (NS_FAILED(rv)) {
|
|
nsCAutoString fontURI, referrerURI;
|
|
aFontURI->GetSpec(fontURI);
|
|
if (aReferrerURI)
|
|
aReferrerURI->GetSpec(referrerURI);
|
|
LOG(("fontdownloader download blocked - font uri: (%s) "
|
|
"referrer uri: (%s) err: %8.8x\n",
|
|
fontURI.get(), referrerURI.get(), rv));
|
|
return rv;
|
|
}
|
|
|
|
nsRefPtr<nsFontFaceLoader> fontLoader = new nsFontFaceLoader(aFontToLoad,
|
|
aFontURI,
|
|
aContext);
|
|
if (!fontLoader)
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
#ifdef PR_LOGGING
|
|
if (LOG_ENABLED()) {
|
|
nsCAutoString fontURI, referrerURI;
|
|
aFontURI->GetSpec(fontURI);
|
|
if (aReferrerURI)
|
|
aReferrerURI->GetSpec(referrerURI);
|
|
LOG(("fontdownloader (%p) download start - font uri: (%s) "
|
|
"referrer uri: (%s)\n",
|
|
fontLoader.get(), fontURI.get(), referrerURI.get()));
|
|
}
|
|
#endif
|
|
|
|
nsCOMPtr<nsIStreamLoader> streamLoader;
|
|
nsCOMPtr<nsILoadGroup> loadGroup(ps->GetDocument()->GetDocumentLoadGroup());
|
|
|
|
nsCOMPtr<nsIChannel> channel;
|
|
rv = NS_NewChannel(getter_AddRefs(channel),
|
|
aFontURI,
|
|
nsnull,
|
|
loadGroup,
|
|
nsnull,
|
|
nsIRequest::LOAD_NORMAL);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsCOMPtr<nsIHttpChannel> httpChannel(do_QueryInterface(channel));
|
|
if (httpChannel)
|
|
httpChannel->SetReferrer(aReferrerURI);
|
|
rv = NS_NewStreamLoader(getter_AddRefs(streamLoader), fontLoader);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// unless data url, open with cross-site listener
|
|
PRBool isData = PR_FALSE;
|
|
if (NS_SUCCEEDED(aFontURI->SchemeIs("data", &isData)) && isData) {
|
|
rv = channel->AsyncOpen(streamLoader, nsnull);
|
|
} else {
|
|
nsCOMPtr<nsIStreamListener> listener =
|
|
new nsCrossSiteListenerProxy(streamLoader, principal, channel,
|
|
PR_FALSE, &rv);
|
|
NS_ENSURE_TRUE(listener, NS_ERROR_OUT_OF_MEMORY);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = channel->AsyncOpen(listener, nsnull);
|
|
}
|
|
|
|
return rv;
|
|
}
|
|
|
|
nsresult
|
|
nsFontFaceLoader::CheckLoadAllowed(nsIPrincipal* aSourcePrincipal,
|
|
nsIURI* aTargetURI,
|
|
nsISupports* aContext)
|
|
{
|
|
nsresult rv;
|
|
|
|
if (!aSourcePrincipal)
|
|
return NS_OK;
|
|
|
|
// check content policy
|
|
PRInt16 shouldLoad = nsIContentPolicy::ACCEPT;
|
|
rv = NS_CheckContentLoadPolicy(nsIContentPolicy::TYPE_FONT,
|
|
aTargetURI,
|
|
aSourcePrincipal,
|
|
aContext,
|
|
EmptyCString(), // mime type
|
|
nsnull,
|
|
&shouldLoad,
|
|
nsContentUtils::GetContentPolicy(),
|
|
nsContentUtils::GetSecurityManager());
|
|
|
|
if (NS_FAILED(rv) || NS_CP_REJECTED(shouldLoad)) {
|
|
return NS_ERROR_CONTENT_BLOCKED;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
|