/* -*- 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 "mozilla/ArrayUtils.h" #include "mozilla/BasicEvents.h" #include "nsDOMDataTransfer.h" #include "nsIDOMDocument.h" #include "nsIVariant.h" #include "nsISupportsPrimitives.h" #include "nsDOMClassInfoID.h" #include "nsIScriptSecurityManager.h" #include "nsDOMLists.h" #include "nsError.h" #include "nsIDragService.h" #include "nsIClipboard.h" #include "nsContentUtils.h" #include "nsIContent.h" #include "nsCRT.h" #include "nsIScriptObjectPrincipal.h" #include "nsIScriptContext.h" #include "nsIDocument.h" #include "nsIScriptGlobalObject.h" using namespace mozilla; using namespace mozilla::dom; NS_IMPL_CYCLE_COLLECTION_CLASS(nsDOMDataTransfer) NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsDOMDataTransfer) if (tmp->mFiles) { tmp->mFiles->Disconnect(); NS_IMPL_CYCLE_COLLECTION_UNLINK(mFiles) } NS_IMPL_CYCLE_COLLECTION_UNLINK(mDragTarget) NS_IMPL_CYCLE_COLLECTION_UNLINK(mDragImage) NS_IMPL_CYCLE_COLLECTION_UNLINK_END NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(nsDOMDataTransfer) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mFiles) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mDragTarget) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mDragImage) NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END NS_IMPL_CYCLE_COLLECTING_ADDREF(nsDOMDataTransfer) NS_IMPL_CYCLE_COLLECTING_RELEASE(nsDOMDataTransfer) DOMCI_DATA(DataTransfer, nsDOMDataTransfer) NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsDOMDataTransfer) NS_INTERFACE_MAP_ENTRY(nsIDOMDataTransfer) NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIDOMDataTransfer) NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(DataTransfer) NS_INTERFACE_MAP_END // the size of the array const char nsDOMDataTransfer::sEffects[8][9] = { "none", "copy", "move", "copyMove", "link", "copyLink", "linkMove", "all" }; nsDOMDataTransfer::nsDOMDataTransfer(uint32_t aEventType, bool aIsExternal, int32_t aClipboardType) : mEventType(aEventType), mDropEffect(nsIDragService::DRAGDROP_ACTION_NONE), mEffectAllowed(nsIDragService::DRAGDROP_ACTION_UNINITIALIZED), mCursorState(false), mReadOnly(true), mIsExternal(aIsExternal), mUserCancelled(false), mIsCrossDomainSubFrameDrop(false), mClipboardType(aClipboardType), mDragImageX(0), mDragImageY(0) { // For these events, we want to be able to add data to the data transfer, so // clear the readonly state. Otherwise, the data is already present. For // external usage, cache the data from the native clipboard or drag. if (aEventType == NS_CUT || aEventType == NS_COPY || aEventType == NS_DRAGDROP_START || aEventType == NS_DRAGDROP_GESTURE) { mReadOnly = false; } else if (mIsExternal) { if (aEventType == NS_PASTE) { CacheExternalClipboardFormats(); } else if (aEventType >= NS_DRAGDROP_EVENT_START && aEventType <= NS_DRAGDROP_LEAVE_SYNTH) { CacheExternalDragFormats(); } } } nsDOMDataTransfer::nsDOMDataTransfer(uint32_t aEventType, const uint32_t aEffectAllowed, bool aCursorState, bool aIsExternal, bool aUserCancelled, bool aIsCrossDomainSubFrameDrop, int32_t aClipboardType, nsTArray >& aItems, nsIDOMElement* aDragImage, uint32_t aDragImageX, uint32_t aDragImageY) : mEventType(aEventType), mDropEffect(nsIDragService::DRAGDROP_ACTION_NONE), mEffectAllowed(aEffectAllowed), mCursorState(aCursorState), mReadOnly(true), mIsExternal(aIsExternal), mUserCancelled(aUserCancelled), mIsCrossDomainSubFrameDrop(aIsCrossDomainSubFrameDrop), mClipboardType(aClipboardType), mItems(aItems), mDragImage(aDragImage), mDragImageX(aDragImageX), mDragImageY(aDragImageY) { // The items are copied from aItems into mItems. There is no need to copy // the actual data in the items as the data transfer will be read only. The // draggesture and dragstart events are the only times when items are // modifiable, but those events should have been using the first constructor // above. NS_ASSERTION(aEventType != NS_DRAGDROP_GESTURE && aEventType != NS_DRAGDROP_START, "invalid event type for nsDOMDataTransfer constructor"); } NS_IMETHODIMP nsDOMDataTransfer::GetDropEffect(nsAString& aDropEffect) { aDropEffect.AssignASCII(sEffects[mDropEffect]); return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::SetDropEffect(const nsAString& aDropEffect) { // the drop effect can only be 'none', 'copy', 'move' or 'link'. for (uint32_t e = 0; e <= nsIDragService::DRAGDROP_ACTION_LINK; e++) { if (aDropEffect.EqualsASCII(sEffects[e])) { // don't allow copyMove if (e != (nsIDragService::DRAGDROP_ACTION_COPY | nsIDragService::DRAGDROP_ACTION_MOVE)) mDropEffect = e; break; } } return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::GetEffectAllowed(nsAString& aEffectAllowed) { if (mEffectAllowed == nsIDragService::DRAGDROP_ACTION_UNINITIALIZED) aEffectAllowed.AssignLiteral("uninitialized"); else aEffectAllowed.AssignASCII(sEffects[mEffectAllowed]); return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::SetEffectAllowed(const nsAString& aEffectAllowed) { if (aEffectAllowed.EqualsLiteral("uninitialized")) { mEffectAllowed = nsIDragService::DRAGDROP_ACTION_UNINITIALIZED; return NS_OK; } static_assert(nsIDragService::DRAGDROP_ACTION_NONE == 0, "DRAGDROP_ACTION_NONE constant is wrong"); static_assert(nsIDragService::DRAGDROP_ACTION_COPY == 1, "DRAGDROP_ACTION_COPY constant is wrong"); static_assert(nsIDragService::DRAGDROP_ACTION_MOVE == 2, "DRAGDROP_ACTION_MOVE constant is wrong"); static_assert(nsIDragService::DRAGDROP_ACTION_LINK == 4, "DRAGDROP_ACTION_LINK constant is wrong"); for (uint32_t e = 0; e < ArrayLength(sEffects); e++) { if (aEffectAllowed.EqualsASCII(sEffects[e])) { mEffectAllowed = e; break; } } return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::GetDropEffectInt(uint32_t* aDropEffect) { *aDropEffect = mDropEffect; return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::SetDropEffectInt(uint32_t aDropEffect) { mDropEffect = aDropEffect; return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::GetEffectAllowedInt(uint32_t* aEffectAllowed) { *aEffectAllowed = mEffectAllowed; return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::SetEffectAllowedInt(uint32_t aEffectAllowed) { mEffectAllowed = aEffectAllowed; return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::GetMozUserCancelled(bool* aUserCancelled) { *aUserCancelled = mUserCancelled; return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::GetFiles(nsIDOMFileList** aFileList) { *aFileList = nullptr; if (mEventType != NS_DRAGDROP_DROP && mEventType != NS_DRAGDROP_DRAGDROP && mEventType != NS_PASTE) { return NS_OK; } if (!mFiles) { mFiles = new nsDOMFileList(static_cast(this)); uint32_t count = mItems.Length(); for (uint32_t i = 0; i < count; i++) { nsCOMPtr variant; nsresult rv = MozGetDataAt(NS_ConvertUTF8toUTF16(kFileMime), i, getter_AddRefs(variant)); NS_ENSURE_SUCCESS(rv, rv); if (!variant) continue; nsCOMPtr supports; rv = variant->GetAsISupports(getter_AddRefs(supports)); if (NS_FAILED(rv)) continue; nsCOMPtr file = do_QueryInterface(supports); if (!file) continue; nsRefPtr domFile = new nsDOMFileFile(file); if (!mFiles->Append(domFile)) return NS_ERROR_FAILURE; } } *aFileList = mFiles; NS_ADDREF(*aFileList); return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::GetTypes(nsIDOMDOMStringList** aTypes) { *aTypes = nullptr; nsRefPtr types = new nsDOMStringList(); if (mItems.Length()) { const nsTArray& item = mItems[0]; for (uint32_t i = 0; i < item.Length(); i++) types->Add(item[i].mFormat); bool filePresent, filePromisePresent; types->Contains(NS_LITERAL_STRING(kFileMime), &filePresent); types->Contains(NS_LITERAL_STRING("application/x-moz-file-promise"), &filePromisePresent); if (filePresent || filePromisePresent) types->Add(NS_LITERAL_STRING("Files")); } *aTypes = types; NS_ADDREF(*aTypes); return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::GetData(const nsAString& aFormat, nsAString& aData) { // return an empty string if data for the format was not found aData.Truncate(); nsCOMPtr data; nsresult rv = MozGetDataAt(aFormat, 0, getter_AddRefs(data)); if (rv == NS_ERROR_DOM_INDEX_SIZE_ERR) { return NS_OK; } NS_ENSURE_SUCCESS(rv, rv); if (data) { nsAutoString stringdata; data->GetAsAString(stringdata); // for the URL type, parse out the first URI from the list. The URIs are // separated by newlines nsAutoString lowercaseFormat; rv = nsContentUtils::ASCIIToLower(aFormat, lowercaseFormat); if (NS_FAILED(rv)) { return rv; } if (lowercaseFormat.EqualsLiteral("url")) { int32_t lastidx = 0, idx; int32_t length = stringdata.Length(); while (lastidx < length) { idx = stringdata.FindChar('\n', lastidx); // lines beginning with # are comments if (stringdata[lastidx] == '#') { if (idx == -1) break; } else { if (idx == -1) aData.Assign(Substring(stringdata, lastidx)); else aData.Assign(Substring(stringdata, lastidx, idx - lastidx)); aData = nsContentUtils::TrimWhitespace(aData, true); return NS_OK; } lastidx = idx + 1; } } else { aData = stringdata; } } return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::SetData(const nsAString& aFormat, const nsAString& aData) { nsCOMPtr variant = do_CreateInstance(NS_VARIANT_CONTRACTID); NS_ENSURE_TRUE(variant, NS_ERROR_OUT_OF_MEMORY); variant->SetAsAString(aData); return MozSetDataAt(aFormat, variant, 0); } NS_IMETHODIMP nsDOMDataTransfer::ClearData(const nsAString& aFormat) { nsresult rv = MozClearDataAt(aFormat, 0); return (rv == NS_ERROR_DOM_INDEX_SIZE_ERR) ? NS_OK : rv; } NS_IMETHODIMP nsDOMDataTransfer::GetMozItemCount(uint32_t* aCount) { *aCount = mItems.Length(); return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::GetMozCursor(nsAString& aCursorState) { if (mCursorState) { aCursorState.AssignLiteral("default"); } else { aCursorState.AssignLiteral("auto"); } return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::SetMozCursor(const nsAString& aCursorState) { // Lock the cursor to an arrow during the drag. mCursorState = aCursorState.EqualsLiteral("default"); return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::GetMozSourceNode(nsIDOMNode** aSourceNode) { *aSourceNode = nullptr; nsCOMPtr dragSession = nsContentUtils::GetDragSession(); if (!dragSession) return NS_OK; nsCOMPtr sourceNode; dragSession->GetSourceNode(getter_AddRefs(sourceNode)); if (sourceNode && !nsContentUtils::CanCallerAccess(sourceNode)) return NS_OK; sourceNode.swap(*aSourceNode); return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::MozTypesAt(uint32_t aIndex, nsIDOMDOMStringList** aTypes) { *aTypes = nullptr; // Only the first item is valid for clipboard events if (aIndex > 0 && (mEventType == NS_CUT || mEventType == NS_COPY || mEventType == NS_PASTE)) { return NS_ERROR_DOM_INDEX_SIZE_ERR; } nsRefPtr types = new nsDOMStringList(); if (aIndex < mItems.Length()) { // note that you can retrieve the types regardless of their principal nsTArray& item = mItems[aIndex]; for (uint32_t i = 0; i < item.Length(); i++) types->Add(item[i].mFormat); } *aTypes = types; NS_ADDREF(*aTypes); return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::MozGetDataAt(const nsAString& aFormat, uint32_t aIndex, nsIVariant** aData) { *aData = nullptr; if (aFormat.IsEmpty()) return NS_OK; if (aIndex >= mItems.Length()) { return NS_ERROR_DOM_INDEX_SIZE_ERR; } // Only the first item is valid for clipboard events if (aIndex > 0 && (mEventType == NS_CUT || mEventType == NS_COPY || mEventType == NS_PASTE)) { return NS_ERROR_DOM_INDEX_SIZE_ERR; } nsAutoString format; GetRealFormat(aFormat, format); nsTArray& item = mItems[aIndex]; // Check if the caller is allowed to access the drag data. Callers with // chrome privileges can always read the data. During the // drop event, allow retrieving the data except in the case where the // source of the drag is in a child frame of the caller. In that case, // we only allow access to data of the same principal. During other events, // only allow access to the data with the same principal. nsIPrincipal* principal = nullptr; if (mIsCrossDomainSubFrameDrop || (mEventType != NS_DRAGDROP_DROP && mEventType != NS_DRAGDROP_DRAGDROP && mEventType != NS_PASTE && !nsContentUtils::IsCallerChrome())) { nsresult rv = NS_OK; principal = GetCurrentPrincipal(&rv); NS_ENSURE_SUCCESS(rv, rv); } uint32_t count = item.Length(); for (uint32_t i = 0; i < count; i++) { TransferItem& formatitem = item[i]; if (formatitem.mFormat.Equals(format)) { bool subsumes; if (formatitem.mPrincipal && principal && (NS_FAILED(principal->Subsumes(formatitem.mPrincipal, &subsumes)) || !subsumes)) return NS_ERROR_DOM_SECURITY_ERR; if (!formatitem.mData) { FillInExternalData(formatitem, aIndex); } else { nsCOMPtr data; formatitem.mData->GetAsISupports(getter_AddRefs(data)); // Make sure the code that is calling us is same-origin with the data. nsCOMPtr pt = do_QueryInterface(data); if (pt) { nsresult rv = NS_OK; nsIScriptContext* c = pt->GetContextForEventHandlers(&rv); NS_ENSURE_TRUE(c && NS_SUCCEEDED(rv), NS_ERROR_DOM_SECURITY_ERR); nsIGlobalObject* go = c->GetGlobalObject(); NS_ENSURE_TRUE(go, NS_ERROR_DOM_SECURITY_ERR); nsCOMPtr sp = do_QueryInterface(go); MOZ_ASSERT(sp, "This cannot fail on the main thread."); nsIPrincipal* dataPrincipal = sp->GetPrincipal(); NS_ENSURE_TRUE(dataPrincipal, NS_ERROR_DOM_SECURITY_ERR); NS_ENSURE_TRUE(principal || (principal = GetCurrentPrincipal(&rv)), NS_ERROR_DOM_SECURITY_ERR); NS_ENSURE_SUCCESS(rv, rv); bool equals = false; NS_ENSURE_TRUE(NS_SUCCEEDED(principal->Equals(dataPrincipal, &equals)) && equals, NS_ERROR_DOM_SECURITY_ERR); } } *aData = formatitem.mData; NS_IF_ADDREF(*aData); return NS_OK; } } return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::MozSetDataAt(const nsAString& aFormat, nsIVariant* aData, uint32_t aIndex) { NS_ENSURE_TRUE(aData, NS_ERROR_NULL_POINTER); if (aFormat.IsEmpty()) return NS_OK; if (mReadOnly) return NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR; // Specifying an index less than the current length will replace an existing // item. Specifying an index equal to the current length will add a new item. if (aIndex > mItems.Length()) { return NS_ERROR_DOM_INDEX_SIZE_ERR; } // Only the first item is valid for clipboard events if (aIndex > 0 && (mEventType == NS_CUT || mEventType == NS_COPY || mEventType == NS_PASTE)) { return NS_ERROR_DOM_INDEX_SIZE_ERR; } // don't allow non-chrome to add file data // XXX perhaps this should also limit any non-string type as well if ((aFormat.EqualsLiteral("application/x-moz-file-promise") || aFormat.EqualsLiteral("application/x-moz-file")) && !nsContentUtils::IsCallerChrome()) { return NS_ERROR_DOM_SECURITY_ERR; } nsresult rv = NS_OK; nsIPrincipal* principal = GetCurrentPrincipal(&rv); NS_ENSURE_SUCCESS(rv, rv); return SetDataWithPrincipal(aFormat, aData, aIndex, principal); } NS_IMETHODIMP nsDOMDataTransfer::MozClearDataAt(const nsAString& aFormat, uint32_t aIndex) { if (mReadOnly) return NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR; if (aIndex >= mItems.Length()) { return NS_ERROR_DOM_INDEX_SIZE_ERR; } // Only the first item is valid for clipboard events if (aIndex > 0 && (mEventType == NS_CUT || mEventType == NS_COPY || mEventType == NS_PASTE)) { return NS_ERROR_DOM_INDEX_SIZE_ERR; } nsAutoString format; GetRealFormat(aFormat, format); nsresult rv = NS_OK; nsIPrincipal* principal = GetCurrentPrincipal(&rv); NS_ENSURE_SUCCESS(rv, rv); // if the format is empty, clear all formats bool clearall = format.IsEmpty(); nsTArray& item = mItems[aIndex]; // count backwards so that the count and index don't have to be adjusted // after removing an element for (int32_t i = item.Length() - 1; i >= 0; i--) { TransferItem& formatitem = item[i]; if (clearall || formatitem.mFormat.Equals(format)) { // don't allow removing data that has a stronger principal bool subsumes; if (formatitem.mPrincipal && principal && (NS_FAILED(principal->Subsumes(formatitem.mPrincipal, &subsumes)) || !subsumes)) return NS_ERROR_DOM_SECURITY_ERR; item.RemoveElementAt(i); // if a format was specified, break out. Otherwise, loop around until // all formats have been removed if (!clearall) break; } } // if the last format for an item is removed, remove the entire item if (!item.Length()) mItems.RemoveElementAt(aIndex); return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::SetDragImage(nsIDOMElement* aImage, int32_t aX, int32_t aY) { if (mReadOnly) return NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR; if (aImage) { nsCOMPtr content = do_QueryInterface(aImage); NS_ENSURE_TRUE(content, NS_ERROR_INVALID_ARG); } mDragImage = aImage; mDragImageX = aX; mDragImageY = aY; return NS_OK; } NS_IMETHODIMP nsDOMDataTransfer::AddElement(nsIDOMElement* aElement) { NS_ENSURE_TRUE(aElement, NS_ERROR_NULL_POINTER); if (aElement) { nsCOMPtr content = do_QueryInterface(aElement); NS_ENSURE_TRUE(content, NS_ERROR_INVALID_ARG); } if (mReadOnly) return NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR; mDragTarget = do_QueryInterface(aElement); return NS_OK; } nsresult nsDOMDataTransfer::Clone(uint32_t aEventType, bool aUserCancelled, bool aIsCrossDomainSubFrameDrop, nsIDOMDataTransfer** aNewDataTransfer) { nsDOMDataTransfer* newDataTransfer = new nsDOMDataTransfer(aEventType, mEffectAllowed, mCursorState, mIsExternal, aUserCancelled, aIsCrossDomainSubFrameDrop, mClipboardType, mItems, mDragImage, mDragImageX, mDragImageY); *aNewDataTransfer = newDataTransfer; NS_ADDREF(*aNewDataTransfer); return NS_OK; } already_AddRefed nsDOMDataTransfer::GetTransferables(nsIDOMNode* aDragTarget) { MOZ_ASSERT(aDragTarget); nsCOMPtr transArray = do_CreateInstance("@mozilla.org/supports-array;1"); if (!transArray) { return nullptr; } nsCOMPtr dragNode = do_QueryInterface(aDragTarget); if (!dragNode) { return nullptr; } nsIDocument* doc = dragNode->GetCurrentDoc(); if (!doc) { return nullptr; } nsILoadContext* loadContext = doc->GetLoadContext(); uint32_t count = mItems.Length(); for (uint32_t i = 0; i < count; i++) { nsCOMPtr transferable = GetTransferable(i, loadContext); if (transferable) { transArray->AppendElement(transferable); } } return transArray.forget(); } already_AddRefed nsDOMDataTransfer::GetTransferable(uint32_t aIndex, nsILoadContext* aLoadContext) { if (aIndex >= mItems.Length()) { return nullptr; } nsTArray& item = mItems[aIndex]; uint32_t count = item.Length(); if (!count) { return nullptr; } nsCOMPtr transferable = do_CreateInstance("@mozilla.org/widget/transferable;1"); if (!transferable) { return nullptr; } transferable->Init(aLoadContext); bool added = false; for (uint32_t f = 0; f < count; f++) { const TransferItem& formatitem = item[f]; if (!formatitem.mData) { // skip empty items continue; } uint32_t length; nsCOMPtr convertedData; if (!ConvertFromVariant(formatitem.mData, getter_AddRefs(convertedData), &length)) { continue; } // the underlying drag code uses text/unicode, so use that instead of text/plain const char* format; NS_ConvertUTF16toUTF8 utf8format(formatitem.mFormat); if (utf8format.EqualsLiteral("text/plain")) { format = kUnicodeMime; } else { format = utf8format.get(); } // if a converter is set for a format, set the converter for the // transferable and don't add the item nsCOMPtr converter = do_QueryInterface(convertedData); if (converter) { transferable->AddDataFlavor(format); transferable->SetConverter(converter); continue; } nsresult rv = transferable->SetTransferData(format, convertedData, length); if (NS_FAILED(rv)) { return nullptr; } added = true; } // only return the transferable if data was successfully added to it if (added) { return transferable.forget(); } return nullptr; } bool nsDOMDataTransfer::ConvertFromVariant(nsIVariant* aVariant, nsISupports** aSupports, uint32_t* aLength) { *aSupports = nullptr; *aLength = 0; uint16_t type; aVariant->GetDataType(&type); if (type == nsIDataType::VTYPE_INTERFACE || type == nsIDataType::VTYPE_INTERFACE_IS) { nsCOMPtr data; if (NS_FAILED(aVariant->GetAsISupports(getter_AddRefs(data)))) return false; nsCOMPtr fdp = do_QueryInterface(data); if (fdp) { // for flavour data providers, use kFlavorHasDataProvider (which has the // value 0) as the length. NS_ADDREF(*aSupports = fdp); *aLength = nsITransferable::kFlavorHasDataProvider; } else { // wrap the item in an nsISupportsInterfacePointer nsCOMPtr ptrSupports = do_CreateInstance(NS_SUPPORTS_INTERFACE_POINTER_CONTRACTID); if (!ptrSupports) return false; ptrSupports->SetData(data); NS_ADDREF(*aSupports = ptrSupports); *aLength = sizeof(nsISupportsInterfacePointer *); } return true; } char16_t* chrs; uint32_t len = 0; nsresult rv = aVariant->GetAsWStringWithSize(&len, &chrs); if (NS_FAILED(rv)) return false; nsAutoString str; str.Adopt(chrs, len); nsCOMPtr strSupports(do_CreateInstance(NS_SUPPORTS_STRING_CONTRACTID)); if (!strSupports) return false; strSupports->SetData(str); *aSupports = strSupports; NS_ADDREF(*aSupports); // each character is two bytes *aLength = str.Length() << 1; return true; } void nsDOMDataTransfer::ClearAll() { mItems.Clear(); } nsresult nsDOMDataTransfer::SetDataWithPrincipal(const nsAString& aFormat, nsIVariant* aData, uint32_t aIndex, nsIPrincipal* aPrincipal) { nsAutoString format; GetRealFormat(aFormat, format); // check if the item for the format already exists. In that case, // just replace it. TransferItem* formatitem; if (aIndex < mItems.Length()) { nsTArray& item = mItems[aIndex]; uint32_t count = item.Length(); for (uint32_t i = 0; i < count; i++) { TransferItem& itemformat = item[i]; if (itemformat.mFormat.Equals(format)) { // don't allow replacing data that has a stronger principal bool subsumes; if (itemformat.mPrincipal && aPrincipal && (NS_FAILED(aPrincipal->Subsumes(itemformat.mPrincipal, &subsumes)) || !subsumes)) return NS_ERROR_DOM_SECURITY_ERR; itemformat.mPrincipal = aPrincipal; itemformat.mData = aData; return NS_OK; } } // add a new format formatitem = item.AppendElement(); } else { NS_ASSERTION(aIndex == mItems.Length(), "Index out of range"); // add a new index nsTArray* item = mItems.AppendElement(); NS_ENSURE_TRUE(item, NS_ERROR_OUT_OF_MEMORY); formatitem = item->AppendElement(); } NS_ENSURE_TRUE(formatitem, NS_ERROR_OUT_OF_MEMORY); formatitem->mFormat = format; formatitem->mPrincipal = aPrincipal; formatitem->mData = aData; return NS_OK; } nsIPrincipal* nsDOMDataTransfer::GetCurrentPrincipal(nsresult* rv) { nsIScriptSecurityManager* ssm = nsContentUtils::GetSecurityManager(); nsCOMPtr currentPrincipal; *rv = ssm->GetSubjectPrincipal(getter_AddRefs(currentPrincipal)); NS_ENSURE_SUCCESS(*rv, nullptr); if (!currentPrincipal) ssm->GetSystemPrincipal(getter_AddRefs(currentPrincipal)); return currentPrincipal.get(); } void nsDOMDataTransfer::GetRealFormat(const nsAString& aInFormat, nsAString& aOutFormat) { // treat text/unicode as equivalent to text/plain nsAutoString lowercaseFormat; nsContentUtils::ASCIIToLower(aInFormat, lowercaseFormat); if (lowercaseFormat.EqualsLiteral("text") || lowercaseFormat.EqualsLiteral("text/unicode")) aOutFormat.AssignLiteral("text/plain"); else if (lowercaseFormat.EqualsLiteral("url")) aOutFormat.AssignLiteral("text/uri-list"); else aOutFormat.Assign(lowercaseFormat); } void nsDOMDataTransfer::CacheExternalData(const char* aFormat, uint32_t aIndex, nsIPrincipal* aPrincipal) { if (strcmp(aFormat, kUnicodeMime) == 0) { SetDataWithPrincipal(NS_LITERAL_STRING("text/plain"), nullptr, aIndex, aPrincipal); } else { if (strcmp(aFormat, kURLDataMime) == 0) { SetDataWithPrincipal(NS_LITERAL_STRING("text/uri-list"), nullptr, aIndex, aPrincipal); } SetDataWithPrincipal(NS_ConvertUTF8toUTF16(aFormat), nullptr, aIndex, aPrincipal); } } void nsDOMDataTransfer::CacheExternalDragFormats() { // Called during the constructor to cache the formats available from an // external drag. The data associated with each format will be set to null. // This data will instead only be retrieved in FillInExternalDragData when // asked for, as it may be time consuming for the source application to // generate it. nsCOMPtr dragSession = nsContentUtils::GetDragSession(); if (!dragSession) return; // make sure that the system principal is used for external drags nsIScriptSecurityManager* ssm = nsContentUtils::GetSecurityManager(); nsCOMPtr sysPrincipal; ssm->GetSystemPrincipal(getter_AddRefs(sysPrincipal)); // there isn't a way to get a list of the formats that might be available on // all platforms, so just check for the types that can actually be imported // XXXndeakin there are some other formats but those are platform specific. const char* formats[] = { kFileMime, kHTMLMime, kURLMime, kURLDataMime, kUnicodeMime }; uint32_t count; dragSession->GetNumDropItems(&count); for (uint32_t c = 0; c < count; c++) { for (uint32_t f = 0; f < ArrayLength(formats); f++) { // IsDataFlavorSupported doesn't take an index as an argument and just // checks if any of the items support a particular flavor, even though // the GetData method does take an index. Here, we just assume that // every item being dragged has the same set of flavors. bool supported; dragSession->IsDataFlavorSupported(formats[f], &supported); // if the format is supported, add an item to the array with null as // the data. When retrieved, GetRealData will read the data. if (supported) { CacheExternalData(formats[f], c, sysPrincipal); } } } } void nsDOMDataTransfer::CacheExternalClipboardFormats() { NS_ASSERTION(mEventType == NS_PASTE, "caching clipboard data for invalid event"); // Called during the constructor for paste events to cache the formats // available on the clipboard. As with CacheExternalDragFormats, the // data will only be retrieved when needed. nsCOMPtr clipboard = do_GetService("@mozilla.org/widget/clipboard;1"); if (!clipboard || mClipboardType < 0) { return; } nsIScriptSecurityManager* ssm = nsContentUtils::GetSecurityManager(); nsCOMPtr sysPrincipal; ssm->GetSystemPrincipal(getter_AddRefs(sysPrincipal)); // there isn't a way to get a list of the formats that might be available on // all platforms, so just check for the types that can actually be imported const char* formats[] = { kFileMime, kHTMLMime, kURLMime, kURLDataMime, kUnicodeMime }; for (uint32_t f = 0; f < mozilla::ArrayLength(formats); ++f) { // check each format one at a time bool supported; clipboard->HasDataMatchingFlavors(&(formats[f]), 1, mClipboardType, &supported); // if the format is supported, add an item to the array with null as // the data. When retrieved, GetRealData will read the data. if (supported) { CacheExternalData(formats[f], 0, sysPrincipal); } } } void nsDOMDataTransfer::FillInExternalData(TransferItem& aItem, uint32_t aIndex) { NS_PRECONDITION(mIsExternal, "Not an external data transfer"); if (aItem.mData) { return; } // only drag and paste events should be calling FillInExternalData NS_ASSERTION(mEventType != NS_CUT && mEventType != NS_COPY, "clipboard event with empty data"); NS_ConvertUTF16toUTF8 utf8format(aItem.mFormat); const char* format = utf8format.get(); if (strcmp(format, "text/plain") == 0) format = kUnicodeMime; else if (strcmp(format, "text/uri-list") == 0) format = kURLDataMime; nsCOMPtr trans = do_CreateInstance("@mozilla.org/widget/transferable;1"); if (!trans) return; trans->Init(nullptr); trans->AddDataFlavor(format); if (mEventType == NS_PASTE) { MOZ_ASSERT(aIndex == 0, "index in clipboard must be 0"); nsCOMPtr clipboard = do_GetService("@mozilla.org/widget/clipboard;1"); if (!clipboard || mClipboardType < 0) { return; } clipboard->GetData(trans, mClipboardType); } else { nsCOMPtr dragSession = nsContentUtils::GetDragSession(); if (!dragSession) { return; } #ifdef DEBUG // Since this is an external drag, the source document will always be null. nsCOMPtr domDoc; dragSession->GetSourceDocument(getter_AddRefs(domDoc)); MOZ_ASSERT(!domDoc); #endif dragSession->GetData(trans, aIndex); } uint32_t length = 0; nsCOMPtr data; trans->GetTransferData(format, getter_AddRefs(data), &length); if (!data) return; nsCOMPtr variant = do_CreateInstance(NS_VARIANT_CONTRACTID); if (!variant) return; nsCOMPtr supportsstr = do_QueryInterface(data); if (supportsstr) { nsAutoString str; supportsstr->GetData(str); variant->SetAsAString(str); } else { variant->SetAsISupports(data); } aItem.mData = variant; }