| /* |
| * Copyright (C) 2006, 2007, 2009 Apple Inc. 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 Computer, 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 "SubresourceLoader.h" |
| |
| #include "Document.h" |
| #include "DocumentLoader.h" |
| #include "Frame.h" |
| #include "FrameLoader.h" |
| #include "ResourceHandle.h" |
| #include "SecurityOrigin.h" |
| #include "SubresourceLoaderClient.h" |
| #include <wtf/RefCountedLeakCounter.h> |
| #include <wtf/StdLibExtras.h> |
| |
| namespace WebCore { |
| |
| DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, subresourceLoaderCounter, ("SubresourceLoader")); |
| |
| SubresourceLoader::SubresourceLoader(Frame* frame, SubresourceLoaderClient* client, const ResourceLoaderOptions& options) |
| : ResourceLoader(frame, options) |
| , m_client(client) |
| , m_loadingMultipartContent(false) |
| { |
| #ifndef NDEBUG |
| subresourceLoaderCounter.increment(); |
| #endif |
| } |
| |
| SubresourceLoader::~SubresourceLoader() |
| { |
| #ifndef NDEBUG |
| subresourceLoaderCounter.decrement(); |
| #endif |
| } |
| |
| PassRefPtr<SubresourceLoader> SubresourceLoader::create(Frame* frame, SubresourceLoaderClient* client, const ResourceRequest& request, const ResourceLoaderOptions& options) |
| { |
| if (!frame) |
| return 0; |
| |
| FrameLoader* frameLoader = frame->loader(); |
| if (options.securityCheck == DoSecurityCheck && (frameLoader->state() == FrameStateProvisional || !frameLoader->activeDocumentLoader() || frameLoader->activeDocumentLoader()->isStopping())) |
| return 0; |
| |
| ResourceRequest newRequest = request; |
| |
| // Note: We skip the Content-Security-Policy check here because we check |
| // the Content-Security-Policy at the CachedResourceLoader layer so we can |
| // handle different resource types differently. |
| |
| String outgoingReferrer; |
| String outgoingOrigin; |
| if (request.httpReferrer().isNull()) { |
| outgoingReferrer = frameLoader->outgoingReferrer(); |
| outgoingOrigin = frameLoader->outgoingOrigin(); |
| } else { |
| outgoingReferrer = request.httpReferrer(); |
| outgoingOrigin = SecurityOrigin::createFromString(outgoingReferrer)->toString(); |
| } |
| |
| if (SecurityOrigin::shouldHideReferrer(request.url(), outgoingReferrer)) |
| newRequest.clearHTTPReferrer(); |
| else if (!request.httpReferrer()) |
| newRequest.setHTTPReferrer(outgoingReferrer); |
| FrameLoader::addHTTPOriginIfNeeded(newRequest, outgoingOrigin); |
| |
| frameLoader->addExtraFieldsToSubresourceRequest(newRequest); |
| |
| RefPtr<SubresourceLoader> subloader(adoptRef(new SubresourceLoader(frame, client, options))); |
| if (!subloader->init(newRequest)) |
| return 0; |
| subloader->documentLoader()->addSubresourceLoader(subloader.get()); |
| |
| return subloader.release(); |
| } |
| |
| void SubresourceLoader::willSendRequest(ResourceRequest& newRequest, const ResourceResponse& redirectResponse) |
| { |
| // Store the previous URL because the call to ResourceLoader::willSendRequest will modify it. |
| KURL previousURL = request().url(); |
| |
| ResourceLoader::willSendRequest(newRequest, redirectResponse); |
| if (!previousURL.isNull() && !newRequest.isNull() && previousURL != newRequest.url() && m_client) |
| m_client->willSendRequest(this, newRequest, redirectResponse); |
| } |
| |
| void SubresourceLoader::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) |
| { |
| RefPtr<SubresourceLoader> protect(this); |
| |
| if (m_client) |
| m_client->didSendData(this, bytesSent, totalBytesToBeSent); |
| } |
| |
| void SubresourceLoader::didReceiveResponse(const ResourceResponse& r) |
| { |
| ASSERT(!r.isNull()); |
| |
| if (r.isMultipart()) |
| m_loadingMultipartContent = true; |
| |
| // Reference the object in this method since the additional processing can do |
| // anything including removing the last reference to this object; one example of this is 3266216. |
| RefPtr<SubresourceLoader> protect(this); |
| |
| if (m_client) |
| m_client->didReceiveResponse(this, r); |
| |
| // The loader can cancel a load if it receives a multipart response for a non-image |
| if (reachedTerminalState()) |
| return; |
| ResourceLoader::didReceiveResponse(r); |
| |
| RefPtr<SharedBuffer> buffer = resourceData(); |
| if (m_loadingMultipartContent && buffer && buffer->size()) { |
| // Since a subresource loader does not load multipart sections progressively, |
| // deliver the previously received data to the loader all at once now. |
| // Then clear the data to make way for the next multipart section. |
| if (m_client) |
| m_client->didReceiveData(this, buffer->data(), buffer->size()); |
| clearResourceData(); |
| |
| // After the first multipart section is complete, signal to delegates that this load is "finished" |
| m_documentLoader->subresourceLoaderFinishedLoadingOnePart(this); |
| didFinishLoadingOnePart(0); |
| } |
| } |
| |
| void SubresourceLoader::didReceiveData(const char* data, int length, long long encodedDataLength, bool allAtOnce) |
| { |
| // Reference the object in this method since the additional processing can do |
| // anything including removing the last reference to this object; one example of this is 3266216. |
| RefPtr<SubresourceLoader> protect(this); |
| |
| ResourceLoader::didReceiveData(data, length, encodedDataLength, allAtOnce); |
| |
| // A subresource loader does not load multipart sections progressively. |
| // So don't deliver any data to the loader yet. |
| if (!m_loadingMultipartContent && m_client) |
| m_client->didReceiveData(this, data, length); |
| } |
| |
| void SubresourceLoader::didReceiveCachedMetadata(const char* data, int length) |
| { |
| // Reference the object in this method since the additional processing can do |
| // anything including removing the last reference to this object; one example of this is 3266216. |
| RefPtr<SubresourceLoader> protect(this); |
| |
| if (m_client) |
| m_client->didReceiveCachedMetadata(this, data, length); |
| } |
| |
| void SubresourceLoader::didFinishLoading(double finishTime) |
| { |
| if (cancelled()) |
| return; |
| ASSERT(!reachedTerminalState()); |
| |
| // Calling removeSubresourceLoader will likely result in a call to deref, so we must protect ourselves. |
| RefPtr<SubresourceLoader> protect(this); |
| |
| if (m_client) |
| m_client->didFinishLoading(this, finishTime); |
| |
| m_handle = 0; |
| |
| if (cancelled()) |
| return; |
| m_documentLoader->removeSubresourceLoader(this); |
| ResourceLoader::didFinishLoading(finishTime); |
| } |
| |
| void SubresourceLoader::didFail(const ResourceError& error) |
| { |
| if (cancelled()) |
| return; |
| ASSERT(!reachedTerminalState()); |
| |
| // Calling removeSubresourceLoader will likely result in a call to deref, so we must protect ourselves. |
| RefPtr<SubresourceLoader> protect(this); |
| |
| if (m_client) |
| m_client->didFail(this, error); |
| |
| m_handle = 0; |
| |
| if (cancelled()) |
| return; |
| m_documentLoader->removeSubresourceLoader(this); |
| ResourceLoader::didFail(error); |
| } |
| |
| void SubresourceLoader::willCancel(const ResourceError& error) |
| { |
| if (m_client) |
| m_client->didFail(this, error); |
| } |
| |
| void SubresourceLoader::didCancel(const ResourceError&) |
| { |
| m_documentLoader->removeSubresourceLoader(this); |
| } |
| |
| } |