mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
520d6b7062
- Don't upgrade gfx features after device resets. (bug 1183910 part 5, r=mattwoodrow) (e53d0f91f) - Use the same graphics device parameters across processes. (bug 1183910 part 7, r=mattwoodrow) (083ae4f15) - Rename DriverInitCrashDetection to DriverCrashGuard. (bug 1190281 part 2, r=mattwoodrow) (9bd189d09) - Make DriverCrashGuard initialization lazy. (bug 1190281 part 3, r=mattwoodrow) (6821dc386) - Pull D3D11 logic out of DriverCrashGuard. (bug 1190281 part 4, r=mattwoodrow) (e499a0079) - Move telemetry recording into D3D11LayersCrashGuard. (bug 1190281 part 5, r=mattwoodrow) (b50a4c2b4) - Factor prefs out of DriverCrashGuard. (bug 1190281 part 6, r=mattwoodrow) (a3a1166ab) - Bug 1170939 - Close PBontentBridge when receving shut dwon message, r=khuey (5473d07f0) - Allow DriverCrashGuard to be used in content processes. (bug 1190281 part 7, r=mattwoodrow) (c9eaf8315) - Add a crash guard for DXVA2D3D9. (bug 1190281 part 8, r=mattwoodrow) (eceff5212) - Add driver crash guards to WebGL (bug 1190281 part 9, r=jgilbert,mattwoodrow) (c362b60c6) - Fix bogus assert in DriverCrashGuard. (bug 1190281 followup, r=mattwoodrow) (d4a7145bd) - Bug 968923 - part 5b - add nsIDOMWindowUtils::forceUseCounterFlush; r=bz (138d30251) - Bug 968923 - part 5c - add tests for use counters; r=bz (0c4b745e0) - Bug 554186 - Part 1: Unimplement NPN_Status API. r=josh (8759dad40) - Bug 554186 - Part 2: Remove unused nsPluginInstanceOwner::ShowNativeContextMenu(). r=josh (ad2ac0c4d) - Bug 1174913 - anchor and area mochitests. r=bz (ab2c58a34) - Bug 959992. Go back to not treating properties that the named properties object exposes as enumerable. r=peterv (0adeeb910) - Bug 1154974 (Part 1) - Give blobs serial numbers. r=bent (4602ca2cd) - Bug 1154974 (Part 2) - Merge image cache entries for blobs URIs with the same underlying blob. r=baku (3b64b409e) - Bug 1173314 - Make GetMozFullPath and GetMozFullPathInternal const. r=sicking (f8eaabb1e) - Bug 1167389 - Make FileList::mParent a smart pointer, and declare it to the cycle collector. r=ehsan (d1217e547) - Bug 1173390 - Remove the majority of the old directory picker implementation to prepare for the new implementation under bug 1164310. r=baku (750049972) - Bug 1164310, part 1 - Make the code for bypassing mobile security checks more general so that it can be used on non-mobile. r=baku (0486fb5ff) - Bug 1164310, part 2 - Implement an abstraction for a rooted filesystem for non-mobile devices. r=baku (f1d906bd6) - Bug 1164310, part 3 - Allow the DirState of blobs to be set explicitly. r=baku (13d832700) - Bug 1164310, part 4 - Implement the new HTMLInputElement API including the new Promise returning GetFilesAndDirectories. r=baku (d0f93ec19) - Bug 1164310, part 5 - Implement new anonymous content and layout pieces for directory picking via input elements. r=tnikkel (ac5a00781) - Bug 1164310, part 6 - Implement the new Promise returning DataTransfer.getFilesAndDirectories() API. r=baku (375fba953) - Bug 1164310 - Follow-up: Fix build bustage with --disable-accessibility. r=me (da0e6745b) - Bug 1164310, part 7 - Touch CLOBBER since bug 1177844 isn't fixed yet. r=me (5fa829742) - Bug 1185381 - Make FileList clonable - patch 1 - move code into FileList.h/.cpp, r=smaug (b85483178) - Bug 1185381 - Make FileList clonable - patch 2 - rename FILEIMPL_IID to BLOBIMPL_IID, r=smaug (0f920cd05) - Bug 1185360 - PostMessageEvent should not have a different behavior if the main principal subsumes the destination one., r=smaug (070ab034b) - Bug 1185381 - Make FileList clonable - patch 3 - FileListClonedData implementation, r=smaug (f4f082d18) - Bug 1185381 - Make FileList clonable - patch 4 - tests, r=smaug (fb3637313)
718 lines
18 KiB
C++
718 lines
18 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsHostObjectProtocolHandler.h"
|
|
#include "nsHostObjectURI.h"
|
|
#include "nsError.h"
|
|
#include "nsClassHashtable.h"
|
|
#include "nsNetUtil.h"
|
|
#include "nsIPrincipal.h"
|
|
#include "DOMMediaStream.h"
|
|
#include "mozilla/dom/MediaSource.h"
|
|
#include "nsIMemoryReporter.h"
|
|
#include "mozilla/dom/File.h"
|
|
#include "mozilla/Preferences.h"
|
|
#include "mozilla/LoadInfo.h"
|
|
|
|
using mozilla::dom::BlobImpl;
|
|
using mozilla::ErrorResult;
|
|
using mozilla::LoadInfo;
|
|
|
|
// -----------------------------------------------------------------------
|
|
// Hash table
|
|
struct DataInfo
|
|
{
|
|
// mObject is expected to be an nsIDOMBlob, DOMMediaStream, or MediaSource
|
|
nsCOMPtr<nsISupports> mObject;
|
|
nsCOMPtr<nsIPrincipal> mPrincipal;
|
|
nsCString mStack;
|
|
};
|
|
|
|
static nsClassHashtable<nsCStringHashKey, DataInfo>* gDataTable;
|
|
|
|
// Memory reporting for the hash table.
|
|
namespace mozilla {
|
|
|
|
class HostObjectURLsReporter final : public nsIMemoryReporter
|
|
{
|
|
~HostObjectURLsReporter() {}
|
|
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_IMETHOD CollectReports(nsIHandleReportCallback* aHandleReport,
|
|
nsISupports* aData, bool aAnonymize) override
|
|
{
|
|
return MOZ_COLLECT_REPORT(
|
|
"host-object-urls", KIND_OTHER, UNITS_COUNT,
|
|
gDataTable ? gDataTable->Count() : 0,
|
|
"The number of host objects stored for access via URLs "
|
|
"(e.g. blobs passed to URL.createObjectURL).");
|
|
}
|
|
};
|
|
|
|
NS_IMPL_ISUPPORTS(HostObjectURLsReporter, nsIMemoryReporter)
|
|
|
|
class BlobURLsReporter final : public nsIMemoryReporter
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_IMETHOD CollectReports(nsIHandleReportCallback* aCallback,
|
|
nsISupports* aData, bool aAnonymize) override
|
|
{
|
|
EnumArg env;
|
|
env.mCallback = aCallback;
|
|
env.mData = aData;
|
|
env.mAnonymize = aAnonymize;
|
|
|
|
if (gDataTable) {
|
|
gDataTable->EnumerateRead(CountCallback, &env);
|
|
gDataTable->EnumerateRead(ReportCallback, &env);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
// Initialize info->mStack to record JS stack info, if enabled.
|
|
// The string generated here is used in ReportCallback, below.
|
|
static void GetJSStackForBlob(DataInfo* aInfo)
|
|
{
|
|
nsCString& stack = aInfo->mStack;
|
|
MOZ_ASSERT(stack.IsEmpty());
|
|
const uint32_t maxFrames = Preferences::GetUint("memory.blob_report.stack_frames");
|
|
|
|
if (maxFrames == 0) {
|
|
return;
|
|
}
|
|
|
|
nsresult rv;
|
|
nsIXPConnect* xpc = nsContentUtils::XPConnect();
|
|
nsCOMPtr<nsIStackFrame> frame;
|
|
rv = xpc->GetCurrentJSStack(getter_AddRefs(frame));
|
|
NS_ENSURE_SUCCESS_VOID(rv);
|
|
|
|
nsAutoCString origin;
|
|
nsCOMPtr<nsIURI> principalURI;
|
|
if (NS_SUCCEEDED(aInfo->mPrincipal->GetURI(getter_AddRefs(principalURI)))
|
|
&& principalURI) {
|
|
principalURI->GetPrePath(origin);
|
|
}
|
|
|
|
for (uint32_t i = 0; i < maxFrames && frame; ++i) {
|
|
nsString fileNameUTF16;
|
|
int32_t lineNumber = 0;
|
|
|
|
frame->GetFilename(fileNameUTF16);
|
|
frame->GetLineNumber(&lineNumber);
|
|
|
|
if (!fileNameUTF16.IsEmpty()) {
|
|
NS_ConvertUTF16toUTF8 fileName(fileNameUTF16);
|
|
stack += "js(";
|
|
if (!origin.IsEmpty()) {
|
|
// Make the file name root-relative for conciseness if possible.
|
|
const char* originData;
|
|
uint32_t originLen;
|
|
|
|
originLen = origin.GetData(&originData);
|
|
// If fileName starts with origin + "/", cut up to that "/".
|
|
if (fileName.Length() >= originLen + 1 &&
|
|
memcmp(fileName.get(), originData, originLen) == 0 &&
|
|
fileName[originLen] == '/') {
|
|
fileName.Cut(0, originLen);
|
|
}
|
|
}
|
|
fileName.ReplaceChar('/', '\\');
|
|
stack += fileName;
|
|
if (lineNumber > 0) {
|
|
stack += ", line=";
|
|
stack.AppendInt(lineNumber);
|
|
}
|
|
stack += ")/";
|
|
}
|
|
|
|
rv = frame->GetCaller(getter_AddRefs(frame));
|
|
NS_ENSURE_SUCCESS_VOID(rv);
|
|
}
|
|
}
|
|
|
|
private:
|
|
~BlobURLsReporter() {}
|
|
|
|
struct EnumArg {
|
|
nsIHandleReportCallback* mCallback;
|
|
nsISupports* mData;
|
|
bool mAnonymize;
|
|
nsDataHashtable<nsPtrHashKey<nsIDOMBlob>, uint32_t> mRefCounts;
|
|
};
|
|
|
|
// Determine number of URLs per blob, to handle the case where it's > 1.
|
|
static PLDHashOperator CountCallback(nsCStringHashKey::KeyType aKey,
|
|
DataInfo* aInfo,
|
|
void* aUserArg)
|
|
{
|
|
EnumArg* envp = static_cast<EnumArg*>(aUserArg);
|
|
nsCOMPtr<nsIDOMBlob> blob;
|
|
|
|
blob = do_QueryInterface(aInfo->mObject);
|
|
if (blob) {
|
|
envp->mRefCounts.Put(blob, envp->mRefCounts.Get(blob) + 1);
|
|
}
|
|
return PL_DHASH_NEXT;
|
|
}
|
|
|
|
static PLDHashOperator ReportCallback(nsCStringHashKey::KeyType aKey,
|
|
DataInfo* aInfo,
|
|
void* aUserArg)
|
|
{
|
|
EnumArg* envp = static_cast<EnumArg*>(aUserArg);
|
|
nsCOMPtr<nsIDOMBlob> tmp = do_QueryInterface(aInfo->mObject);
|
|
nsRefPtr<Blob> blob = static_cast<Blob*>(tmp.get());
|
|
|
|
if (blob) {
|
|
NS_NAMED_LITERAL_CSTRING
|
|
(desc, "A blob URL allocated with URL.createObjectURL; the referenced "
|
|
"blob cannot be freed until all URLs for it have been explicitly "
|
|
"invalidated with URL.revokeObjectURL.");
|
|
nsAutoCString path, url, owner, specialDesc;
|
|
nsCOMPtr<nsIURI> principalURI;
|
|
uint64_t size = 0;
|
|
uint32_t refCount = 1;
|
|
DebugOnly<bool> blobWasCounted;
|
|
|
|
blobWasCounted = envp->mRefCounts.Get(blob, &refCount);
|
|
MOZ_ASSERT(blobWasCounted);
|
|
MOZ_ASSERT(refCount > 0);
|
|
|
|
bool isMemoryFile = blob->IsMemoryFile();
|
|
|
|
if (isMemoryFile) {
|
|
ErrorResult rv;
|
|
size = blob->GetSize(rv);
|
|
if (NS_WARN_IF(rv.Failed())) {
|
|
rv.SuppressException();
|
|
size = 0;
|
|
}
|
|
}
|
|
|
|
path = isMemoryFile ? "memory-blob-urls/" : "file-blob-urls/";
|
|
if (NS_SUCCEEDED(aInfo->mPrincipal->GetURI(getter_AddRefs(principalURI))) &&
|
|
principalURI != nullptr &&
|
|
NS_SUCCEEDED(principalURI->GetSpec(owner)) &&
|
|
!owner.IsEmpty()) {
|
|
owner.ReplaceChar('/', '\\');
|
|
path += "owner(";
|
|
if (envp->mAnonymize) {
|
|
path += "<anonymized>";
|
|
} else {
|
|
path += owner;
|
|
}
|
|
path += ")";
|
|
} else {
|
|
path += "owner unknown";
|
|
}
|
|
path += "/";
|
|
if (envp->mAnonymize) {
|
|
path += "<anonymized-stack>";
|
|
} else {
|
|
path += aInfo->mStack;
|
|
}
|
|
url = aKey;
|
|
url.ReplaceChar('/', '\\');
|
|
if (envp->mAnonymize) {
|
|
path += "<anonymized-url>";
|
|
} else {
|
|
path += url;
|
|
}
|
|
if (refCount > 1) {
|
|
nsAutoCString addrStr;
|
|
|
|
addrStr = "0x";
|
|
addrStr.AppendInt((uint64_t)(nsIDOMBlob*)blob, 16);
|
|
|
|
path += " ";
|
|
path.AppendInt(refCount);
|
|
path += "@";
|
|
path += addrStr;
|
|
|
|
specialDesc = desc;
|
|
specialDesc += "\n\nNOTE: This blob (address ";
|
|
specialDesc += addrStr;
|
|
specialDesc += ") has ";
|
|
specialDesc.AppendInt(refCount);
|
|
specialDesc += " URLs.";
|
|
if (isMemoryFile) {
|
|
specialDesc += " Its size is divided ";
|
|
specialDesc += refCount > 2 ? "among" : "between";
|
|
specialDesc += " them in this report.";
|
|
}
|
|
}
|
|
|
|
const nsACString& descString = specialDesc.IsEmpty()
|
|
? static_cast<const nsACString&>(desc)
|
|
: static_cast<const nsACString&>(specialDesc);
|
|
if (isMemoryFile) {
|
|
envp->mCallback->Callback(EmptyCString(),
|
|
path,
|
|
KIND_OTHER,
|
|
UNITS_BYTES,
|
|
size / refCount,
|
|
descString,
|
|
envp->mData);
|
|
}
|
|
else {
|
|
envp->mCallback->Callback(EmptyCString(),
|
|
path,
|
|
KIND_OTHER,
|
|
UNITS_COUNT,
|
|
1,
|
|
descString,
|
|
envp->mData);
|
|
}
|
|
}
|
|
return PL_DHASH_NEXT;
|
|
}
|
|
};
|
|
|
|
NS_IMPL_ISUPPORTS(BlobURLsReporter, nsIMemoryReporter)
|
|
|
|
} // namespace mozilla
|
|
|
|
void
|
|
nsHostObjectProtocolHandler::Init(void)
|
|
{
|
|
static bool initialized = false;
|
|
|
|
if (!initialized) {
|
|
initialized = true;
|
|
RegisterStrongMemoryReporter(new mozilla::HostObjectURLsReporter());
|
|
RegisterStrongMemoryReporter(new mozilla::BlobURLsReporter());
|
|
}
|
|
}
|
|
|
|
nsHostObjectProtocolHandler::nsHostObjectProtocolHandler()
|
|
{
|
|
Init();
|
|
}
|
|
|
|
nsresult
|
|
nsHostObjectProtocolHandler::AddDataEntry(const nsACString& aScheme,
|
|
nsISupports* aObject,
|
|
nsIPrincipal* aPrincipal,
|
|
nsACString& aUri)
|
|
{
|
|
Init();
|
|
|
|
nsresult rv = GenerateURIString(aScheme, aPrincipal, aUri);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (!gDataTable) {
|
|
gDataTable = new nsClassHashtable<nsCStringHashKey, DataInfo>;
|
|
}
|
|
|
|
DataInfo* info = new DataInfo;
|
|
|
|
info->mObject = aObject;
|
|
info->mPrincipal = aPrincipal;
|
|
mozilla::BlobURLsReporter::GetJSStackForBlob(info);
|
|
|
|
gDataTable->Put(aUri, info);
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
nsHostObjectProtocolHandler::RemoveDataEntry(const nsACString& aUri)
|
|
{
|
|
if (gDataTable) {
|
|
nsCString uriIgnoringRef;
|
|
int32_t hashPos = aUri.FindChar('#');
|
|
if (hashPos < 0) {
|
|
uriIgnoringRef = aUri;
|
|
}
|
|
else {
|
|
uriIgnoringRef = StringHead(aUri, hashPos);
|
|
}
|
|
gDataTable->Remove(uriIgnoringRef);
|
|
if (gDataTable->Count() == 0) {
|
|
delete gDataTable;
|
|
gDataTable = nullptr;
|
|
}
|
|
}
|
|
}
|
|
|
|
nsresult
|
|
nsHostObjectProtocolHandler::GenerateURIString(const nsACString &aScheme,
|
|
nsIPrincipal* aPrincipal,
|
|
nsACString& aUri)
|
|
{
|
|
nsresult rv;
|
|
nsCOMPtr<nsIUUIDGenerator> uuidgen =
|
|
do_GetService("@mozilla.org/uuid-generator;1", &rv);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsID id;
|
|
rv = uuidgen->GenerateUUIDInPlace(&id);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
char chars[NSID_LENGTH];
|
|
id.ToProvidedString(chars);
|
|
|
|
aUri = aScheme;
|
|
aUri.Append(':');
|
|
|
|
if (aPrincipal) {
|
|
nsAutoCString origin;
|
|
rv = nsContentUtils::GetASCIIOrigin(aPrincipal, origin);
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
return rv;
|
|
}
|
|
|
|
aUri.Append(origin);
|
|
aUri.Append('/');
|
|
}
|
|
|
|
aUri += Substring(chars + 1, chars + NSID_LENGTH - 2);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
static DataInfo*
|
|
GetDataInfo(const nsACString& aUri)
|
|
{
|
|
if (!gDataTable) {
|
|
return nullptr;
|
|
}
|
|
|
|
DataInfo* res;
|
|
nsCString uriIgnoringRef;
|
|
int32_t hashPos = aUri.FindChar('#');
|
|
if (hashPos < 0) {
|
|
uriIgnoringRef = aUri;
|
|
}
|
|
else {
|
|
uriIgnoringRef = StringHead(aUri, hashPos);
|
|
}
|
|
gDataTable->Get(uriIgnoringRef, &res);
|
|
|
|
return res;
|
|
}
|
|
|
|
nsIPrincipal*
|
|
nsHostObjectProtocolHandler::GetDataEntryPrincipal(const nsACString& aUri)
|
|
{
|
|
if (!gDataTable) {
|
|
return nullptr;
|
|
}
|
|
|
|
DataInfo* res = GetDataInfo(aUri);
|
|
|
|
if (!res) {
|
|
return nullptr;
|
|
}
|
|
|
|
return res->mPrincipal;
|
|
}
|
|
|
|
void
|
|
nsHostObjectProtocolHandler::Traverse(const nsACString& aUri,
|
|
nsCycleCollectionTraversalCallback& aCallback)
|
|
{
|
|
if (!gDataTable) {
|
|
return;
|
|
}
|
|
|
|
DataInfo* res;
|
|
gDataTable->Get(aUri, &res);
|
|
if (!res) {
|
|
return;
|
|
}
|
|
|
|
NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(aCallback, "HostObjectProtocolHandler DataInfo.mObject");
|
|
aCallback.NoteXPCOMChild(res->mObject);
|
|
}
|
|
|
|
static nsISupports*
|
|
GetDataObjectForSpec(const nsACString& aSpec)
|
|
{
|
|
DataInfo* info = GetDataInfo(aSpec);
|
|
return info ? info->mObject : nullptr;
|
|
}
|
|
|
|
static nsISupports*
|
|
GetDataObject(nsIURI* aURI)
|
|
{
|
|
nsCString spec;
|
|
aURI->GetSpec(spec);
|
|
return GetDataObjectForSpec(spec);
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
// Protocol handler
|
|
|
|
NS_IMPL_ISUPPORTS(nsHostObjectProtocolHandler, nsIProtocolHandler)
|
|
|
|
NS_IMETHODIMP
|
|
nsHostObjectProtocolHandler::GetDefaultPort(int32_t *result)
|
|
{
|
|
*result = -1;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsHostObjectProtocolHandler::GetProtocolFlags(uint32_t *result)
|
|
{
|
|
*result = URI_NORELATIVE | URI_NOAUTH | URI_LOADABLE_BY_SUBSUMERS |
|
|
URI_IS_LOCAL_RESOURCE | URI_NON_PERSISTABLE;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsHostObjectProtocolHandler::NewURI(const nsACString& aSpec,
|
|
const char *aCharset,
|
|
nsIURI *aBaseURI,
|
|
nsIURI **aResult)
|
|
{
|
|
*aResult = nullptr;
|
|
nsresult rv;
|
|
|
|
DataInfo* info = GetDataInfo(aSpec);
|
|
|
|
nsRefPtr<nsHostObjectURI> uri =
|
|
new nsHostObjectURI(info ? info->mPrincipal.get() : nullptr);
|
|
|
|
rv = uri->SetSpec(aSpec);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
NS_TryToSetImmutable(uri);
|
|
uri.forget(aResult);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsHostObjectProtocolHandler::NewChannel2(nsIURI* uri,
|
|
nsILoadInfo* aLoadInfo,
|
|
nsIChannel** result)
|
|
{
|
|
*result = nullptr;
|
|
|
|
nsCString spec;
|
|
uri->GetSpec(spec);
|
|
|
|
DataInfo* info = GetDataInfo(spec);
|
|
|
|
if (!info) {
|
|
return NS_ERROR_DOM_BAD_URI;
|
|
}
|
|
|
|
nsCOMPtr<BlobImpl> blob = do_QueryInterface(info->mObject);
|
|
if (!blob) {
|
|
return NS_ERROR_DOM_BAD_URI;
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
{
|
|
nsCOMPtr<nsIURIWithPrincipal> uriPrinc = do_QueryInterface(uri);
|
|
nsCOMPtr<nsIPrincipal> principal;
|
|
uriPrinc->GetPrincipal(getter_AddRefs(principal));
|
|
NS_ASSERTION(info->mPrincipal == principal, "Wrong principal!");
|
|
}
|
|
#endif
|
|
|
|
ErrorResult rv;
|
|
nsCOMPtr<nsIInputStream> stream;
|
|
blob->GetInternalStream(getter_AddRefs(stream), rv);
|
|
if (NS_WARN_IF(rv.Failed())) {
|
|
return rv.StealNSResult();
|
|
}
|
|
|
|
nsCOMPtr<nsIChannel> channel;
|
|
rv = NS_NewInputStreamChannelInternal(getter_AddRefs(channel),
|
|
uri,
|
|
stream,
|
|
EmptyCString(), // aContentType
|
|
EmptyCString(), // aContentCharset
|
|
aLoadInfo);
|
|
if (NS_WARN_IF(rv.Failed())) {
|
|
return rv.StealNSResult();
|
|
}
|
|
|
|
nsString type;
|
|
blob->GetType(type);
|
|
|
|
if (blob->IsFile()) {
|
|
nsString filename;
|
|
blob->GetName(filename);
|
|
channel->SetContentDispositionFilename(filename);
|
|
}
|
|
|
|
uint64_t size = blob->GetSize(rv);
|
|
if (NS_WARN_IF(rv.Failed())) {
|
|
return rv.StealNSResult();
|
|
}
|
|
|
|
channel->SetOriginalURI(uri);
|
|
channel->SetContentType(NS_ConvertUTF16toUTF8(type));
|
|
channel->SetContentLength(size);
|
|
|
|
channel.forget(result);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsHostObjectProtocolHandler::NewChannel(nsIURI* uri, nsIChannel* *result)
|
|
{
|
|
return NewChannel2(uri, nullptr, result);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsHostObjectProtocolHandler::AllowPort(int32_t port, const char *scheme,
|
|
bool *_retval)
|
|
{
|
|
// don't override anything.
|
|
*_retval = false;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsBlobProtocolHandler::GetScheme(nsACString &result)
|
|
{
|
|
result.AssignLiteral(BLOBURI_SCHEME);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMediaStreamProtocolHandler::GetScheme(nsACString &result)
|
|
{
|
|
result.AssignLiteral(MEDIASTREAMURI_SCHEME);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMediaSourceProtocolHandler::GetScheme(nsACString &result)
|
|
{
|
|
result.AssignLiteral(MEDIASOURCEURI_SCHEME);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFontTableProtocolHandler::GetScheme(nsACString &result)
|
|
{
|
|
result.AssignLiteral(FONTTABLEURI_SCHEME);
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
NS_GetBlobForBlobURI(nsIURI* aURI, BlobImpl** aBlob)
|
|
{
|
|
NS_ASSERTION(IsBlobURI(aURI), "Only call this with blob URIs");
|
|
|
|
*aBlob = nullptr;
|
|
|
|
nsCOMPtr<BlobImpl> blob = do_QueryInterface(GetDataObject(aURI));
|
|
if (!blob) {
|
|
return NS_ERROR_DOM_BAD_URI;
|
|
}
|
|
|
|
blob.forget(aBlob);
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
NS_GetBlobForBlobURISpec(const nsACString& aSpec, BlobImpl** aBlob)
|
|
{
|
|
*aBlob = nullptr;
|
|
|
|
nsCOMPtr<BlobImpl> blob = do_QueryInterface(GetDataObjectForSpec(aSpec));
|
|
if (!blob) {
|
|
return NS_ERROR_DOM_BAD_URI;
|
|
}
|
|
|
|
blob.forget(aBlob);
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
NS_GetStreamForBlobURI(nsIURI* aURI, nsIInputStream** aStream)
|
|
{
|
|
nsRefPtr<BlobImpl> blobImpl;
|
|
ErrorResult rv;
|
|
rv = NS_GetBlobForBlobURI(aURI, getter_AddRefs(blobImpl));
|
|
if (NS_WARN_IF(rv.Failed())) {
|
|
return rv.StealNSResult();
|
|
}
|
|
|
|
blobImpl->GetInternalStream(aStream, rv);
|
|
if (NS_WARN_IF(rv.Failed())) {
|
|
return rv.StealNSResult();
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
NS_GetStreamForMediaStreamURI(nsIURI* aURI, mozilla::DOMMediaStream** aStream)
|
|
{
|
|
NS_ASSERTION(IsMediaStreamURI(aURI), "Only call this with mediastream URIs");
|
|
|
|
nsISupports* dataObject = GetDataObject(aURI);
|
|
if (!dataObject) {
|
|
return NS_ERROR_DOM_BAD_URI;
|
|
}
|
|
|
|
*aStream = nullptr;
|
|
return CallQueryInterface(dataObject, aStream);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFontTableProtocolHandler::NewURI(const nsACString& aSpec,
|
|
const char *aCharset,
|
|
nsIURI *aBaseURI,
|
|
nsIURI **aResult)
|
|
{
|
|
nsRefPtr<nsIURI> uri;
|
|
|
|
// Either you got here via a ref or a fonttable: uri
|
|
if (aSpec.Length() && aSpec.CharAt(0) == '#') {
|
|
nsresult rv = aBaseURI->CloneIgnoringRef(getter_AddRefs(uri));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
uri->SetRef(aSpec);
|
|
} else {
|
|
// Relative URIs (other than #ref) are not meaningful within the
|
|
// fonttable: scheme.
|
|
// If aSpec is a relative URI -other- than a bare #ref,
|
|
// this will leave uri empty, and we'll return a failure code below.
|
|
uri = new nsSimpleURI();
|
|
uri->SetSpec(aSpec);
|
|
}
|
|
|
|
bool schemeIs;
|
|
if (NS_FAILED(uri->SchemeIs(FONTTABLEURI_SCHEME, &schemeIs)) || !schemeIs) {
|
|
NS_WARNING("Non-fonttable spec in nsFontTableProtocolHander");
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
}
|
|
|
|
uri.forget(aResult);
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
NS_GetSourceForMediaSourceURI(nsIURI* aURI, mozilla::dom::MediaSource** aSource)
|
|
{
|
|
NS_ASSERTION(IsMediaSourceURI(aURI), "Only call this with mediasource URIs");
|
|
|
|
*aSource = nullptr;
|
|
|
|
nsCOMPtr<mozilla::dom::MediaSource> source = do_QueryInterface(GetDataObject(aURI));
|
|
if (!source) {
|
|
return NS_ERROR_DOM_BAD_URI;
|
|
}
|
|
|
|
source.forget(aSource);
|
|
return NS_OK;
|
|
}
|