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 445 446 447 448 449 450 451 452 453 454 455
|
/*
* Copyright (C) 2006-2022 Apple Inc. All rights reserved.
* Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
* Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/)
* Copyright (C) 2008 Alp Toker <alp@atoker.com>
* Copyright (C) Research In Motion Limited 2009. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Apple Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "SubframeLoader.h"
#include "ContentSecurityPolicy.h"
#include "DNS.h"
#include "DiagnosticLoggingClient.h"
#include "DiagnosticLoggingKeys.h"
#include "DocumentInlines.h"
#include "DocumentLoader.h"
#include "HTMLFrameElement.h"
#include "HTMLIFrameElement.h"
#include "HTMLNames.h"
#include "HTMLObjectElement.h"
#include "LocalFrame.h"
#include "LocalFrameLoaderClient.h"
#include "MIMETypeRegistry.h"
#include "MixedContentChecker.h"
#include "NavigationScheduler.h"
#include "OriginAccessPatterns.h"
#include "Page.h"
#include "PluginData.h"
#include "PluginDocument.h"
#include "RenderBoxInlines.h"
#include "RenderEmbeddedObject.h"
#include "RenderView.h"
#include "ScriptController.h"
#include "SecurityOrigin.h"
#include "SecurityPolicy.h"
#include "Settings.h"
#include "UserContentProvider.h"
#include <wtf/CompletionHandler.h>
namespace WebCore {
using namespace HTMLNames;
static bool canLoadJavaScriptURL(HTMLFrameOwnerElement& ownerElement, const URL& url)
{
ASSERT(url.protocolIsJavaScript());
if (!ownerElement.protectedDocument()->checkedContentSecurityPolicy()->allowJavaScriptURLs(aboutBlankURL().string(), { }, url.string(), &ownerElement))
return false;
if (!ownerElement.canLoadScriptURL(url))
return false;
return true;
}
FrameLoader::SubframeLoader::SubframeLoader(LocalFrame& frame)
: m_frame(frame)
{
}
Ref<LocalFrame> FrameLoader::SubframeLoader::protectedFrame() const
{
return m_frame.get();
}
void FrameLoader::SubframeLoader::clear()
{
m_containsPlugins = false;
}
bool FrameLoader::SubframeLoader::canCreateSubFrame() const
{
Ref frame = m_frame.get();
if (!frame->page() || frame->protectedPage()->subframeCount() >= Page::maxNumberOfFrames)
return false;
if (frame->tree().depth() >= Page::maxFrameDepth)
return false;
return true;
}
void FrameLoader::SubframeLoader::createFrameIfNecessary(HTMLFrameOwnerElement& ownerElement, const AtomString& frameName)
{
if (ownerElement.contentFrame())
return;
if (!canCreateSubFrame())
return;
protectedFrame()->protectedLoader()->client().createFrame(frameName, ownerElement);
if (!ownerElement.contentFrame())
return;
if (RefPtr contentDocument = downcast<LocalFrame>(*ownerElement.contentFrame()).document())
contentDocument->setReferrerPolicy(ownerElement.referrerPolicy());
}
bool FrameLoader::SubframeLoader::requestFrame(HTMLFrameOwnerElement& ownerElement, const String& urlString, const AtomString& frameName, LockHistory lockHistory, LockBackForwardList lockBackForwardList)
{
// Support for <frame src="javascript:string">
URL url = completeURL(urlString);
if (shouldConvertInvalidURLsToBlank() && !url.isValid())
url = aboutBlankURL();
// Check the CSP of the embedder to determine if we allow execution of javascript: URLs via child frame navigation.
if (url.protocolIsJavaScript() && !canLoadJavaScriptURL(ownerElement, url))
url = aboutBlankURL();
return loadOrRedirectSubframe(ownerElement, url, frameName, lockHistory, lockBackForwardList);
}
bool FrameLoader::SubframeLoader::resourceWillUsePlugin(const String& url, const String& mimeType)
{
URL completedURL;
if (!url.isEmpty())
completedURL = completeURL(url);
bool useFallback;
return shouldUsePlugin(completedURL, mimeType, false, useFallback);
}
bool FrameLoader::SubframeLoader::pluginIsLoadable(const URL& url, const HTMLPlugInImageElement& ownerElement, const String& mimeType) const
{
if (RefPtr document = m_frame->document()) {
bool isFullMainFramePlugin = m_frame->isMainFrame() && is<PluginDocument>(m_frame->document());
if (document->isSandboxed(SandboxFlag::Plugins) && !(isFullMainFramePlugin && ownerElement.shouldBypassCSPForPDFPlugin(mimeType)))
return false;
Ref securityOrigin = document->securityOrigin();
if (!securityOrigin->canDisplay(url, OriginAccessPatternsForWebProcess::singleton())) {
FrameLoader::reportLocalLoadFailed(protectedFrame().ptr(), url.string());
return false;
}
if (!portAllowed(url) || isIPAddressDisallowed(url)) {
FrameLoader::reportBlockedLoadFailed(protectedFrame(), url);
return false;
}
if (MixedContentChecker::shouldBlockRequestForRunnableContent(protectedFrame(), securityOrigin, url))
return false;
}
return true;
}
static String findPluginMIMETypeFromURL(Page& page, const URL& url)
{
auto lastPathComponent = url.lastPathComponent();
size_t dotIndex = lastPathComponent.reverseFind('.');
if (dotIndex == notFound)
return { };
auto extensionFromURL = lastPathComponent.substring(dotIndex + 1);
for (auto& type : page.pluginData().webVisibleMimeTypes()) {
for (auto& extension : type.extensions) {
if (equalIgnoringASCIICase(extensionFromURL, extension))
return type.type;
}
}
return { };
}
bool FrameLoader::SubframeLoader::requestPlugin(HTMLPlugInImageElement& ownerElement, const URL& url, const String& explicitMIMEType, const Vector<AtomString>& paramNames, const Vector<AtomString>& paramValues, bool useFallback)
{
String mimeType = explicitMIMEType;
if (mimeType.isEmpty()) {
if (RefPtr page = ownerElement.document().page())
mimeType = findPluginMIMETypeFromURL(*page, url);
}
// Application plug-ins are plug-ins implemented by the user agent, for example Qt plug-ins,
// as opposed to third-party code such as Flash. The user agent decides whether or not they are
// permitted, rather than WebKit.
if (!(m_frame->settings().legacyPluginQuirkForMailSignaturesEnabled() || MIMETypeRegistry::isApplicationPluginMIMEType(mimeType)))
return false;
if (!pluginIsLoadable(url, ownerElement, mimeType))
return false;
ASSERT(ownerElement.hasTagName(objectTag) || ownerElement.hasTagName(embedTag));
return loadPlugin(ownerElement, url, explicitMIMEType, paramNames, paramValues, useFallback);
}
static void logPluginRequest(Page* page, const String& mimeType, const URL& url)
{
if (!page)
return;
String newMIMEType = mimeType;
if (!newMIMEType) {
// Try to figure out the MIME type from the URL extension.
newMIMEType = findPluginMIMETypeFromURL(*page, url);
if (!newMIMEType)
return;
}
String pluginFile = page->pluginData().pluginFileForWebVisibleMimeType(newMIMEType);
String description = !pluginFile ? newMIMEType : pluginFile;
page->sawPlugin(description);
}
bool FrameLoader::SubframeLoader::requestObject(HTMLPlugInImageElement& ownerElement, const String& url, const AtomString& frameName, const String& mimeType, const Vector<AtomString>& paramNames, const Vector<AtomString>& paramValues)
{
if (url.isEmpty() && mimeType.isEmpty())
return false;
Ref document = ownerElement.document();
URL completedURL;
if (!url.isEmpty())
completedURL = completeURL(url);
document->checkedContentSecurityPolicy()->upgradeInsecureRequestIfNeeded(completedURL, ContentSecurityPolicy::InsecureRequestType::Load);
// Historically, we haven't run javascript URLs in <embed> / <object> elements.
if (completedURL.protocolIsJavaScript())
return false;
bool hasFallbackContent = [&] {
auto* objectElement = dynamicDowncast<HTMLObjectElement>(ownerElement);
return objectElement && objectElement->hasFallbackContent();
}();
bool useFallback;
if (shouldUsePlugin(completedURL, mimeType, hasFallbackContent, useFallback)) {
bool success = requestPlugin(ownerElement, completedURL, mimeType, paramNames, paramValues, useFallback);
logPluginRequest(document->protectedPage().get(), mimeType, completedURL);
return success;
}
// If the plug-in element already contains a subframe, loadOrRedirectSubframe will re-use it. Otherwise,
// it will create a new frame and set it as the RenderWidget's Widget, causing what was previously
// in the widget to be torn down.
return loadOrRedirectSubframe(ownerElement, completedURL, frameName, LockHistory::Yes, LockBackForwardList::Yes);
}
LocalFrame* FrameLoader::SubframeLoader::loadOrRedirectSubframe(HTMLFrameOwnerElement& ownerElement, const URL& requestURL, const AtomString& frameName, LockHistory lockHistory, LockBackForwardList lockBackForwardList)
{
Ref initiatingDocument = ownerElement.document();
URL upgradedRequestURL = requestURL;
initiatingDocument->checkedContentSecurityPolicy()->upgradeInsecureRequestIfNeeded(upgradedRequestURL, ContentSecurityPolicy::InsecureRequestType::Load);
RefPtr frame = ownerElement.contentFrame();
if (frame) {
CompletionHandler<void(ScheduleLocationChangeResult)> stopDelayingLoadEvent = [] (ScheduleLocationChangeResult) { };
if (upgradedRequestURL.protocolIsJavaScript()) {
Ref ownerDocument = ownerElement.document();
ownerDocument->incrementLoadEventDelayCount();
stopDelayingLoadEvent = [ownerDocument = WTFMove(ownerDocument)] (ScheduleLocationChangeResult) {
ownerDocument->decrementLoadEventDelayCount();
};
}
if (RefPtr localFrame = dynamicDowncast<LocalFrame>(*frame); localFrame && localFrame->loader().isComplete()) {
if (RefPtr page = localFrame->page())
page->willChangeLocationInCompletelyLoadedSubframe();
}
frame->protectedNavigationScheduler()->scheduleLocationChange(initiatingDocument, initiatingDocument->protectedSecurityOrigin(), upgradedRequestURL, m_frame->loader().outgoingReferrer(), lockHistory, lockBackForwardList, NavigationHistoryBehavior::Auto, WTFMove(stopDelayingLoadEvent));
} else
frame = loadSubframe(ownerElement, upgradedRequestURL, frameName, m_frame->loader().outgoingReferrerURL());
if (!frame)
return nullptr;
ASSERT(ownerElement.contentFrame() == frame || !ownerElement.contentFrame());
return dynamicDowncast<LocalFrame>(ownerElement.contentFrame());
}
RefPtr<LocalFrame> FrameLoader::SubframeLoader::loadSubframe(HTMLFrameOwnerElement& ownerElement, const URL& url, const AtomString& name, const URL& referrer)
{
Ref frame = m_frame.get();
Ref document = ownerElement.document();
if (!document->securityOrigin().canDisplay(url, OriginAccessPatternsForWebProcess::singleton())) {
FrameLoader::reportLocalLoadFailed(frame.ptr(), url.string());
return nullptr;
}
if (!portAllowed(url) || isIPAddressDisallowed(url)) {
FrameLoader::reportBlockedLoadFailed(frame, url);
return nullptr;
}
if (!SubframeLoadingDisabler::canLoadFrame(ownerElement))
return nullptr;
if (!canCreateSubFrame())
return nullptr;
// Prevent initial empty document load from triggering load events.
document->incrementLoadEventDelayCount();
RefPtr subFrame = frame->loader().client().createFrame(name, ownerElement);
if (!subFrame) {
frame->protectedLoader()->checkCallImplicitClose();
document->decrementLoadEventDelayCount();
return nullptr;
}
ReferrerPolicy policy = ownerElement.referrerPolicy();
if (policy == ReferrerPolicy::EmptyString)
policy = document->referrerPolicy();
// For any new (about:blank) browsing context, step 16 of
// https://html.spec.whatwg.org/#creating-a-new-browsing-context requires
// setting the referrer to "the serialization of creator's URL" — that is,
// the full URL, without regard to Referrer Policy.
// And rather than doing this in SecurityPolicy::generateReferrerHeader,
// we do it here because per-spec, this should only happen when creating
// a new browsing context — and per step 13 of the spec algorithm at
// https://html.spec.whatwg.org/#initialise-the-document-object, should
// not happen when creating and initializing a new Document object (in
// which case, Referrer Policy is applied).
auto referrerToUse = url.isAboutBlank() ? referrer.string() : SecurityPolicy::generateReferrerHeader(policy, url, referrer, OriginAccessPatternsForWebProcess::singleton());
frame->protectedLoader()->loadURLIntoChildFrame(url, referrerToUse, *subFrame);
#if ENABLE(CONTENT_EXTENSIONS)
RefPtr subFramePage = subFrame->page();
if ((url.isAboutBlank() || url.isAboutSrcDoc()) && subFramePage) {
subFramePage->protectedUserContentProvider()->userContentExtensionBackend().forEach([&] (const String& identifier, ContentExtensions::ContentExtension& extension) {
if (RefPtr styleSheetContents = extension.globalDisplayNoneStyleSheet())
subFrame->document()->extensionStyleSheets().maybeAddContentExtensionSheet(identifier, *styleSheetContents);
});
}
#endif
document->decrementLoadEventDelayCount();
// The frame's onload handler may have removed it from the document.
if (!subFrame || !subFrame->tree().parent()) {
frame->protectedLoader()->checkCallImplicitClose();
return nullptr;
}
// All new frames will have m_isComplete set to true at this point due to synchronously loading
// an empty document in FrameLoader::init(). But many frames will now be starting an
// asynchronous load of url, so we set m_isComplete to false and then check if the load is
// actually completed below. (Note that we set m_isComplete to false even for synchronous
// loads, so that checkCompleted() below won't bail early.)
// FIXME: Can we remove this entirely? m_isComplete normally gets set to false when a load is committed.
subFrame->protectedLoader()->started();
{
CheckedPtr renderWidget = dynamicDowncast<RenderWidget>(ownerElement.renderer());
RefPtr view = subFrame->view();
if (renderWidget && view)
renderWidget->setWidget(WTFMove(view));
}
frame->protectedLoader()->checkCallImplicitClose();
// Some loads are performed synchronously (e.g., about:blank and loads
// cancelled by returning a null ResourceRequest from requestFromDelegate).
// In these cases, the synchronous load would have finished
// before we could connect the signals, so make sure to send the
// completed() signal for the child by hand and mark the load as being
// complete.
// FIXME: In this case the Frame will have finished loading before
// it's being added to the child list. It would be a good idea to
// create the child first, then invoke the loader separately.
if (subFrame->loader().state() == FrameState::Complete && !subFrame->loader().policyDocumentLoader())
subFrame->protectedLoader()->checkCompleted();
if (!subFrame->tree().parent())
return nullptr;
return subFrame;
}
bool FrameLoader::SubframeLoader::shouldUsePlugin(const URL& url, const String& mimeType, bool hasFallback, bool& useFallback)
{
Ref frame = m_frame.get();
ObjectContentType objectType = frame->protectedLoader()->client().objectContentType(url, mimeType);
// If an object's content can't be handled and it has no fallback, let
// it be handled as a plugin to show the broken plugin icon.
useFallback = objectType == ObjectContentType::None && hasFallback;
return objectType == ObjectContentType::None || objectType == ObjectContentType::PlugIn;
}
bool FrameLoader::SubframeLoader::loadPlugin(HTMLPlugInImageElement& pluginElement, const URL& url, const String& mimeType, const Vector<AtomString>& paramNames, const Vector<AtomString>& paramValues, bool useFallback)
{
if (useFallback)
return false;
Ref document = pluginElement.document();
WeakPtr renderer = pluginElement.renderEmbeddedObject();
// FIXME: This code should not depend on renderer!
if (!renderer)
return false;
RefPtr pluginDocument = dynamicDowncast<PluginDocument>(document);
bool loadManually = pluginDocument && !m_containsPlugins && pluginDocument->shouldLoadPluginManually();
if (document->ownerElement() && document->settings().useImageDocumentForSubframePDF())
loadManually = false;
auto widget = m_frame->loader().client().createPlugin(pluginElement, url, paramNames, paramValues, mimeType, loadManually);
// The call to createPlugin *may* cause this renderer to disappear from underneath.
if (!renderer)
return false;
if (!widget) {
if (!renderer->isPluginUnavailable())
CheckedRef { *renderer }->setPluginUnavailabilityReason(PluginUnavailabilityReason::PluginMissing);
return false;
}
CheckedRef { *renderer }->setWidget(WTFMove(widget));
m_containsPlugins = true;
return true;
}
URL FrameLoader::SubframeLoader::completeURL(const String& url) const
{
ASSERT(m_frame->document());
return m_frame->protectedDocument()->completeURL(url);
}
bool FrameLoader::SubframeLoader::shouldConvertInvalidURLsToBlank() const
{
return m_frame->settings().shouldConvertInvalidURLsToBlank();
}
} // namespace WebCore
|