1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2000 Stefan Schimanski (1Stein@gmx.de)
* Copyright (C) 2004-2017 Apple Inc. All rights reserved.
* Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "HTMLObjectElement.h"
#include "Attribute.h"
#include "CSSValueKeywords.h"
#include "CachedImage.h"
#include "ElementChildIteratorInlines.h"
#include "FrameLoader.h"
#include "HTMLDocument.h"
#include "HTMLFormElement.h"
#include "HTMLImageLoader.h"
#include "HTMLMetaElement.h"
#include "HTMLNames.h"
#include "HTMLParamElement.h"
#include "LocalFrame.h"
#include "MIMETypeRegistry.h"
#include "NodeList.h"
#include "NodeName.h"
#include "Page.h"
#include "RenderEmbeddedObject.h"
#include "RenderImage.h"
#include "RenderWidget.h"
#include "Settings.h"
#include "SubframeLoader.h"
#include "Text.h"
#include "Widget.h"
#include <wtf/IsoMallocInlines.h>
#include <wtf/Ref.h>
#include <wtf/RobinHoodHashSet.h>
#if PLATFORM(IOS_FAMILY)
#include "RuntimeApplicationChecks.h"
#endif
namespace WebCore {
WTF_MAKE_ISO_ALLOCATED_IMPL(HTMLObjectElement);
using namespace HTMLNames;
inline HTMLObjectElement::HTMLObjectElement(const QualifiedName& tagName, Document& document, HTMLFormElement* form)
: HTMLPlugInImageElement(tagName, document)
, FormListedElement(form)
{
ASSERT(hasTagName(objectTag));
}
Ref<HTMLObjectElement> HTMLObjectElement::create(const QualifiedName& tagName, Document& document, HTMLFormElement* form)
{
return adoptRef(*new HTMLObjectElement(tagName, document, form));
}
HTMLObjectElement::~HTMLObjectElement()
{
clearForm();
}
int HTMLObjectElement::defaultTabIndex() const
{
return 0;
}
bool HTMLObjectElement::hasPresentationalHintsForAttribute(const QualifiedName& name) const
{
if (name == borderAttr)
return true;
return HTMLPlugInImageElement::hasPresentationalHintsForAttribute(name);
}
void HTMLObjectElement::collectPresentationalHintsForAttribute(const QualifiedName& name, const AtomString& value, MutableStyleProperties& style)
{
if (name == borderAttr)
applyBorderAttributeToStyle(value, style);
else
HTMLPlugInImageElement::collectPresentationalHintsForAttribute(name, value, style);
}
void HTMLObjectElement::attributeChanged(const QualifiedName& name, const AtomString& oldValue, const AtomString& newValue, AttributeModificationReason attributeModificationReason)
{
HTMLPlugInImageElement::attributeChanged(name, oldValue, newValue, attributeModificationReason);
bool invalidateRenderer = false;
bool needsWidgetUpdate = false;
switch (name.nodeName()) {
case AttributeNames::typeAttr:
m_serviceType = newValue.string().left(newValue.find(';')).convertToASCIILowercase();
invalidateRenderer = !hasAttributeWithoutSynchronization(classidAttr);
needsWidgetUpdate = true;
break;
case AttributeNames::dataAttr:
// FIXME: trimming whitespace is probably redundant with the URL parser
m_url = newValue.string().trim(isASCIIWhitespace);
invalidateRenderer = !hasAttributeWithoutSynchronization(classidAttr);
needsWidgetUpdate = true;
updateImageLoaderWithNewURLSoon();
break;
case AttributeNames::classidAttr:
invalidateRenderer = true;
needsWidgetUpdate = true;
break;
default:
FormListedElement::parseAttribute(name, newValue);
break;
}
if (needsWidgetUpdate) {
setNeedsWidgetUpdate(true);
m_useFallbackContent = false;
}
if (!invalidateRenderer || !isConnected() || !renderer())
return;
scheduleUpdateForAfterStyleResolution();
invalidateStyleAndRenderersForSubtree();
}
static void mapDataParamToSrc(Vector<AtomString>& paramNames, Vector<AtomString>& paramValues)
{
// Some plugins don't understand the "data" attribute of the OBJECT tag (i.e. Real and WMP require "src" attribute).
bool foundSrcParam = false;
AtomString dataParamValue;
for (unsigned i = 0; i < paramNames.size(); ++i) {
if (equalLettersIgnoringASCIICase(paramNames[i], "src"_s))
foundSrcParam = true;
else if (equalLettersIgnoringASCIICase(paramNames[i], "data"_s))
dataParamValue = paramValues[i];
}
if (!foundSrcParam && !dataParamValue.isNull()) {
paramNames.append(AtomString { "src"_s });
paramValues.append(WTFMove(dataParamValue));
}
}
// FIXME: This function should not deal with url or serviceType!
void HTMLObjectElement::parametersForPlugin(Vector<AtomString>& paramNames, Vector<AtomString>& paramValues, String& url, String& serviceType)
{
HashSet<StringImpl*, ASCIICaseInsensitiveHash> uniqueParamNames;
String urlParameter;
// Scan the PARAM children and store their name/value pairs.
// Get the URL and type from the params if we don't already have them.
for (auto& param : childrenOfType<HTMLParamElement>(*this)) {
String name = param.name();
if (name.isEmpty())
continue;
uniqueParamNames.add(name.impl());
paramNames.append(param.name());
paramValues.append(param.value());
// FIXME: url adjustment does not belong in this function.
if (url.isEmpty() && urlParameter.isEmpty() && (equalLettersIgnoringASCIICase(name, "src"_s) || equalLettersIgnoringASCIICase(name, "movie"_s) || equalLettersIgnoringASCIICase(name, "code"_s) || equalLettersIgnoringASCIICase(name, "url"_s)))
urlParameter = param.value().string().trim(isASCIIWhitespace);
// FIXME: serviceType calculation does not belong in this function.
if (serviceType.isEmpty() && equalLettersIgnoringASCIICase(name, "type"_s)) {
serviceType = param.value();
size_t pos = serviceType.find(';');
if (pos != notFound)
serviceType = serviceType.left(pos);
}
}
// Turn the attributes of the <object> element into arrays, but don't override <param> values.
if (hasAttributes()) {
for (const Attribute& attribute : attributesIterator()) {
const AtomString& name = attribute.name().localName();
if (!uniqueParamNames.contains(name.impl())) {
paramNames.append(name);
paramValues.append(attribute.value());
}
}
}
mapDataParamToSrc(paramNames, paramValues);
// HTML5 says that an object resource's URL is specified by the object's data
// attribute, not by a param element. However, for compatibility, allow the
// resource's URL to be given by a param named "src", "movie", "code" or "url"
// if we know that resource points to a plug-in.
if (url.isEmpty() && !urlParameter.isEmpty()) {
auto& loader = document().frame()->loader().subframeLoader();
if (loader.resourceWillUsePlugin(urlParameter, serviceType))
url = urlParameter;
}
}
bool HTMLObjectElement::hasFallbackContent() const
{
for (RefPtr<Node> child = firstChild(); child; child = child->nextSibling()) {
// Ignore whitespace-only text, and <param> tags, any other content is fallback content.
if (is<Text>(*child)) {
if (!downcast<Text>(*child).data().containsOnly<isASCIIWhitespace>())
return true;
} else if (!is<HTMLParamElement>(*child))
return true;
}
return false;
}
// FIXME: This should be unified with HTMLEmbedElement::updateWidget and
// moved down into HTMLPluginImageElement.cpp
void HTMLObjectElement::updateWidget(CreatePlugins createPlugins)
{
ASSERT(!renderEmbeddedObject()->isPluginUnavailable());
ASSERT(needsWidgetUpdate());
// FIXME: This should ASSERT isFinishedParsingChildren() instead.
if (!isFinishedParsingChildren()) {
setNeedsWidgetUpdate(false);
return;
}
// FIXME: I'm not sure it's ever possible to get into updateWidget during a
// removal, but just in case we should avoid loading the frame to prevent
// security bugs.
if (!SubframeLoadingDisabler::canLoadFrame(*this)) {
setNeedsWidgetUpdate(false);
return;
}
String url = this->url();
String serviceType = this->serviceType();
// FIXME: These should be joined into a PluginParameters class.
Vector<AtomString> paramNames;
Vector<AtomString> paramValues;
parametersForPlugin(paramNames, paramValues, url, serviceType);
// Note: url is modified above by parametersForPlugin.
if (!canLoadURL(url)) {
setNeedsWidgetUpdate(false);
return;
}
// FIXME: It's unfortunate that we have this special case here.
// See http://trac.webkit.org/changeset/25128 and the plugins/netscape-plugin-setwindow-size.html test.
if (createPlugins == CreatePlugins::No && wouldLoadAsPlugIn(url, serviceType))
return;
setNeedsWidgetUpdate(false);
Ref protectedThis = *this; // Plugin loading can make arbitrary DOM mutations.
// HTML5 says that fallback content should be rendered if a non-empty
// classid is specified for which the UA can't find a suitable plug-in.
//
// Dispatching a beforeLoad event could have executed code that changed the document.
// Make sure the URL is still safe to load.
bool success = attributeWithoutSynchronization(classidAttr).isEmpty() && canLoadURL(url);
if (success)
success = requestObject(url, serviceType, paramNames, paramValues);
if (!success && hasFallbackContent())
renderFallbackContent();
}
Node::InsertedIntoAncestorResult HTMLObjectElement::insertedIntoAncestor(InsertionType insertionType, ContainerNode& parentOfInsertedTree)
{
HTMLPlugInImageElement::insertedIntoAncestor(insertionType, parentOfInsertedTree);
FormListedElement::elementInsertedIntoAncestor(*this, insertionType);
return InsertedIntoAncestorResult::NeedsPostInsertionCallback;
}
void HTMLObjectElement::didFinishInsertingNode()
{
resetFormOwner();
}
void HTMLObjectElement::removedFromAncestor(RemovalType removalType, ContainerNode& oldParentOfRemovedTree)
{
HTMLPlugInImageElement::removedFromAncestor(removalType, oldParentOfRemovedTree);
FormListedElement::elementRemovedFromAncestor(*this, removalType);
}
void HTMLObjectElement::childrenChanged(const ChildChange& change)
{
updateExposedState();
if (isConnected() && !m_useFallbackContent) {
setNeedsWidgetUpdate(true);
scheduleUpdateForAfterStyleResolution();
invalidateStyleForSubtree();
}
HTMLPlugInImageElement::childrenChanged(change);
}
bool HTMLObjectElement::isURLAttribute(const Attribute& attribute) const
{
return attribute.name() == dataAttr || attribute.name() == codebaseAttr || HTMLPlugInImageElement::isURLAttribute(attribute);
}
const AtomString& HTMLObjectElement::imageSourceURL() const
{
return attributeWithoutSynchronization(dataAttr);
}
void HTMLObjectElement::renderFallbackContent()
{
if (m_useFallbackContent)
return;
if (!isConnected())
return;
scheduleUpdateForAfterStyleResolution();
invalidateStyleAndRenderersForSubtree();
// Before we give up and use fallback content, check to see if this is a MIME type issue.
auto* loader = imageLoader();
if (loader && loader->image() && loader->image()->status() != CachedResource::LoadError) {
m_serviceType = loader->image()->response().mimeType();
if (!isImageType()) {
// If we don't think we have an image type anymore, then clear the image from the loader.
loader->clearImage();
return;
}
}
m_useFallbackContent = true;
}
static inline bool preventsParentObjectFromExposure(const Element& child)
{
static NeverDestroyed mostKnownTags = [] {
MemoryCompactLookupOnlyRobinHoodHashSet<QualifiedName> set;
auto* tags = HTMLNames::getHTMLTags();
set.reserveInitialCapacity(HTMLNames::HTMLTagsCount);
for (size_t i = 0; i < HTMLNames::HTMLTagsCount; i++) {
auto& tag = *tags[i];
// Only the param element was explicitly mentioned in the HTML specification rule
// we were trying to implement, but these are other known HTML elements that we
// have decided, over the years, to treat as children that do not prevent object
// names from being exposed.
if (tag == bgsoundTag
|| tag == detailsTag
|| tag == figcaptionTag
|| tag == figureTag
|| tag == paramTag
|| tag == summaryTag
|| tag == trackTag)
continue;
set.add(tag);
}
return set;
}();
return mostKnownTags.get().contains(child.tagQName());
}
static inline bool preventsParentObjectFromExposure(const Node& child)
{
if (is<Element>(child))
return preventsParentObjectFromExposure(downcast<Element>(child));
if (is<Text>(child))
return !downcast<Text>(child).data().containsOnly<isASCIIWhitespace>();
return true;
}
static inline bool shouldBeExposed(const HTMLObjectElement& element)
{
// FIXME: This should be redone to use the concept of an exposed object element,
// as documented in the HTML specification section describing DOM tree accessors.
// The rule we try to implement here, from older HTML specifications, is "object elements
// with no children other than param elements, unknown elements and whitespace can be found
// by name in a document, and other object elements cannot".
for (RefPtr child = element.firstChild(); child; child = child->nextSibling()) {
if (preventsParentObjectFromExposure(*child))
return false;
}
return true;
}
void HTMLObjectElement::updateExposedState()
{
bool wasExposed = std::exchange(m_isExposed, shouldBeExposed(*this));
if (m_isExposed != wasExposed && isConnected() && !isInShadowTree() && is<HTMLDocument>(document())) {
auto& document = downcast<HTMLDocument>(this->document());
auto& id = getIdAttribute();
if (!id.isEmpty()) {
if (m_isExposed)
document.addDocumentNamedItem(*id.impl(), *this);
else
document.removeDocumentNamedItem(*id.impl(), *this);
}
auto& name = getNameAttribute();
if (!name.isEmpty() && id != name) {
if (m_isExposed)
document.addDocumentNamedItem(*name.impl(), *this);
else
document.removeDocumentNamedItem(*name.impl(), *this);
}
}
}
void HTMLObjectElement::addSubresourceAttributeURLs(ListHashSet<URL>& urls) const
{
HTMLPlugInImageElement::addSubresourceAttributeURLs(urls);
addSubresourceURL(urls, document().completeURL(attributeWithoutSynchronization(dataAttr)));
}
void HTMLObjectElement::didMoveToNewDocument(Document& oldDocument, Document& newDocument)
{
FormListedElement::didMoveToNewDocument();
HTMLPlugInImageElement::didMoveToNewDocument(oldDocument, newDocument);
}
bool HTMLObjectElement::canContainRangeEndPoint() const
{
// Call through to HTMLElement because HTMLPlugInElement::canContainRangeEndPoint
// returns false unconditionally. An object element using fallback content is
// treated like a generic HTML element.
return m_useFallbackContent && HTMLElement::canContainRangeEndPoint();
}
}
|