2 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 #import "ResourceHandleInternal.h"
31 #import "AuthenticationChallenge.h"
32 #import "AuthenticationMac.h"
34 #import "BlobRegistry.h"
35 #import "BlockExceptions.h"
36 #import "CredentialStorage.h"
37 #import "CachedResourceLoader.h"
38 #import "EmptyProtocolDefinitions.h"
39 #import "FormDataStreamMac.h"
41 #import "FrameLoader.h"
43 #import "MIMETypeRegistry.h"
45 #import "ResourceError.h"
46 #import "ResourceResponse.h"
47 #import "SchedulePair.h"
49 #import "SharedBuffer.h"
50 #import "SubresourceLoader.h"
51 #import "WebCoreSystemInterface.h"
52 #import "WebCoreURLResponse.h"
53 #import <wtf/text/CString.h>
54 #import <wtf/UnusedParam.h>
56 #ifdef BUILDING_ON_TIGER
57 typedef int NSInteger;
60 using namespace WebCore;
62 @interface WebCoreResourceHandleAsDelegate : NSObject <NSURLConnectionDelegate> {
63 ResourceHandle* m_handle;
65 - (id)initWithHandle:(ResourceHandle*)handle;
69 // WebCoreNSURLConnectionDelegateProxy exists so that we can cast m_proxy to it in order
70 // to disambiguate the argument type in the -setDelegate: call. This avoids a spurious
71 // warning that the compiler would otherwise emit.
72 @interface WebCoreNSURLConnectionDelegateProxy : NSObject <NSURLConnectionDelegate>
73 - (void)setDelegate:(id<NSURLConnectionDelegate>)delegate;
76 @interface NSURLConnection (NSURLConnectionTigerPrivate)
77 - (NSData *)_bufferedData;
80 @interface NSURLConnection (Details)
81 -(id)_initWithRequest:(NSURLRequest *)request delegate:(id)delegate usesCache:(BOOL)usesCacheFlag maxContentLength:(long long)maxContentLength startImmediately:(BOOL)startImmediately connectionProperties:(NSDictionary *)connectionProperties;
84 @interface NSURLRequest (Details)
85 - (id)_propertyForKey:(NSString *)key;
88 #ifndef BUILDING_ON_TIGER
90 class WebCoreSynchronousLoaderClient : public ResourceHandleClient {
92 static PassOwnPtr<WebCoreSynchronousLoaderClient> create()
94 return adoptPtr(new WebCoreSynchronousLoaderClient);
97 virtual ~WebCoreSynchronousLoaderClient();
99 void setAllowStoredCredentials(bool allow) { m_allowStoredCredentials = allow; }
100 NSURLResponse *response() { return m_response; }
101 NSMutableData *data() { return m_data; }
102 NSError *error() { return m_error; }
103 bool isDone() { return m_isDone; }
106 WebCoreSynchronousLoaderClient()
107 : m_allowStoredCredentials(false)
115 virtual void willSendRequest(ResourceHandle*, ResourceRequest&, const ResourceResponse& /*redirectResponse*/);
116 virtual bool shouldUseCredentialStorage(ResourceHandle*);
117 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&);
118 virtual void didReceiveResponse(ResourceHandle*, const ResourceResponse&);
119 virtual void didReceiveData(ResourceHandle*, const char*, int, int /*lengthReceived*/);
120 virtual void didFinishLoading(ResourceHandle*, double /*finishTime*/);
121 virtual void didFail(ResourceHandle*, const ResourceError&);
122 #if USE(PROTECTION_SPACE_AUTH_CALLBACK)
123 virtual bool canAuthenticateAgainstProtectionSpace(ResourceHandle*, const ProtectionSpace&);
126 bool m_allowStoredCredentials;
127 NSURLResponse *m_response;
128 NSMutableData *m_data;
133 static NSString *WebCoreSynchronousLoaderRunLoopMode = @"WebCoreSynchronousLoaderRunLoopMode";
139 #ifdef BUILDING_ON_TIGER
140 static unsigned inNSURLConnectionCallback;
144 static bool isInitializingConnection;
147 class CallbackGuard {
151 #ifdef BUILDING_ON_TIGER
152 ++inNSURLConnectionCallback;
157 #ifdef BUILDING_ON_TIGER
158 ASSERT(inNSURLConnectionCallback > 0);
159 --inNSURLConnectionCallback;
164 #ifndef BUILDING_ON_TIGER
165 static String encodeBasicAuthorization(const String& user, const String& password)
167 return base64Encode((user + ":" + password).utf8());
171 ResourceHandleInternal::~ResourceHandleInternal()
175 ResourceHandle::~ResourceHandle()
178 d->m_currentWebChallenge.setAuthenticationClient(0);
180 LOG(Network, "Handle %p destroyed", this);
183 static const double MaxFoundationVersionWithoutdidSendBodyDataDelegate = 677.21;
184 bool ResourceHandle::didSendBodyDataDelegateExists()
186 return NSFoundationVersionNumber > MaxFoundationVersionWithoutdidSendBodyDataDelegate;
189 void ResourceHandle::createNSURLConnection(id delegate, bool shouldUseCredentialStorage, bool shouldContentSniff)
191 // Credentials for ftp can only be passed in URL, the connection:didReceiveAuthenticationChallenge: delegate call won't be made.
192 if ((!d->m_user.isEmpty() || !d->m_pass.isEmpty())
193 #ifndef BUILDING_ON_TIGER
194 && !firstRequest().url().protocolInHTTPFamily() // On Tiger, always pass credentials in URL, so that they get stored even if the request gets cancelled right away.
197 KURL urlWithCredentials(firstRequest().url());
198 urlWithCredentials.setUser(d->m_user);
199 urlWithCredentials.setPass(d->m_pass);
200 firstRequest().setURL(urlWithCredentials);
203 // If a URL already has cookies, then we'll relax the 3rd party cookie policy and accept new cookies.
204 NSHTTPCookieStorage *sharedStorage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
205 if ([sharedStorage cookieAcceptPolicy] == NSHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain && [[sharedStorage cookiesForURL:firstRequest().url()] count])
206 firstRequest().setFirstPartyForCookies(firstRequest().url());
208 #if !defined(BUILDING_ON_TIGER)
209 if (shouldUseCredentialStorage && firstRequest().url().protocolInHTTPFamily()) {
210 if (d->m_user.isEmpty() && d->m_pass.isEmpty()) {
211 // <rdar://problem/7174050> - For URLs that match the paths of those previously challenged for HTTP Basic authentication,
212 // try and reuse the credential preemptively, as allowed by RFC 2617.
213 d->m_initialCredential = CredentialStorage::get(firstRequest().url());
215 // If there is already a protection space known for the URL, update stored credentials before sending a request.
216 // This makes it possible to implement logout by sending an XMLHttpRequest with known incorrect credentials, and aborting it immediately
217 // (so that an authentication dialog doesn't pop up).
218 CredentialStorage::set(Credential(d->m_user, d->m_pass, CredentialPersistenceNone), firstRequest().url());
222 if (!d->m_initialCredential.isEmpty()) {
223 // FIXME: Support Digest authentication, and Proxy-Authorization.
224 String authHeader = "Basic " + encodeBasicAuthorization(d->m_initialCredential.user(), d->m_initialCredential.password());
225 firstRequest().addHTTPHeaderField("Authorization", authHeader);
228 NSURLRequest *nsRequest = firstRequest().nsURLRequest();
229 if (!shouldContentSniff) {
230 NSMutableURLRequest *mutableRequest = [[nsRequest copy] autorelease];
231 wkSetNSURLRequestShouldContentSniff(mutableRequest, NO);
232 nsRequest = mutableRequest;
235 #if !defined(BUILDING_ON_LEOPARD)
236 ASSERT([NSURLConnection instancesRespondToSelector:@selector(_initWithRequest:delegate:usesCache:maxContentLength:startImmediately:connectionProperties:)]);
237 static bool supportsSettingConnectionProperties = true;
239 static bool supportsSettingConnectionProperties = [NSURLConnection instancesRespondToSelector:@selector(_initWithRequest:delegate:usesCache:maxContentLength:startImmediately:connectionProperties:)];
242 #if USE(CFURLSTORAGESESSIONS)
243 if (CFURLStorageSessionRef storageSession = privateBrowsingStorageSession())
244 nsRequest = [wkCopyRequestWithStorageSession(storageSession, nsRequest) autorelease];
247 if (supportsSettingConnectionProperties) {
248 NSDictionary *sessionID = shouldUseCredentialStorage ? [NSDictionary dictionary] : [NSDictionary dictionaryWithObject:@"WebKitPrivateSession" forKey:@"_kCFURLConnectionSessionID"];
249 NSDictionary *propertyDictionary = [NSDictionary dictionaryWithObject:sessionID forKey:@"kCFURLConnectionSocketStreamProperties"];
250 d->m_connection.adoptNS([[NSURLConnection alloc] _initWithRequest:nsRequest delegate:delegate usesCache:YES maxContentLength:0 startImmediately:NO connectionProperties:propertyDictionary]);
254 d->m_connection.adoptNS([[NSURLConnection alloc] initWithRequest:nsRequest delegate:delegate startImmediately:NO]);
258 // Building on Tiger. Don't use WebCore credential storage, don't try to disable content sniffing.
259 UNUSED_PARAM(shouldUseCredentialStorage);
260 UNUSED_PARAM(shouldContentSniff);
261 d->m_connection.adoptNS([[NSURLConnection alloc] initWithRequest:firstRequest().nsURLRequest() delegate:delegate]);
265 bool ResourceHandle::start(NetworkingContext* context)
270 BEGIN_BLOCK_OBJC_EXCEPTIONS;
272 // If NetworkingContext is invalid then we are no longer attached to a Page,
273 // this must be an attempted load from an unload event handler, so let's just block it.
274 if (!context->isValid())
278 isInitializingConnection = YES;
282 d->m_proxy.adoptNS(wkCreateNSURLConnectionDelegateProxy());
283 [static_cast<WebCoreNSURLConnectionDelegateProxy*>(d->m_proxy.get()) setDelegate:ResourceHandle::delegate()];
285 bool shouldUseCredentialStorage = !client() || client()->shouldUseCredentialStorage(this);
287 if (!ResourceHandle::didSendBodyDataDelegateExists())
288 associateStreamWithResourceHandle([firstRequest().nsURLRequest() HTTPBodyStream], this);
290 #ifdef BUILDING_ON_TIGER
291 // A conditional request sent by WebCore (e.g. to update appcache) can be for a resource that is not cacheable by NSURLConnection,
292 // which can get confused and fail to load it in this case.
293 if (firstRequest().isConditional())
294 firstRequest().setCachePolicy(ReloadIgnoringCacheData);
297 d->m_needsSiteSpecificQuirks = context->needsSiteSpecificQuirks();
299 createNSURLConnection(
301 shouldUseCredentialStorage,
302 d->m_shouldContentSniff || context->localFileContentSniffingEnabled());
304 #ifndef BUILDING_ON_TIGER
305 bool scheduled = false;
306 if (SchedulePairHashSet* scheduledPairs = context->scheduledRunLoopPairs()) {
307 SchedulePairHashSet::iterator end = scheduledPairs->end();
308 for (SchedulePairHashSet::iterator it = scheduledPairs->begin(); it != end; ++it) {
309 if (NSRunLoop *runLoop = (*it)->nsRunLoop()) {
310 [connection() scheduleInRunLoop:runLoop forMode:(NSString *)(*it)->mode()];
316 // Start the connection if we did schedule with at least one runloop.
317 // We can't start the connection until we have one runloop scheduled.
319 [connection() start];
321 d->m_startWhenScheduled = true;
325 isInitializingConnection = NO;
328 LOG(Network, "Handle %p starting connection %p for %@", this, connection(), firstRequest().nsURLRequest());
330 if (d->m_connection) {
331 if (d->m_defersLoading)
332 wkSetNSURLConnectionDefersCallbacks(connection(), YES);
337 END_BLOCK_OBJC_EXCEPTIONS;
342 void ResourceHandle::cancel()
344 LOG(Network, "Handle %p cancel connection %p", this, d->m_connection.get());
346 // Leaks were seen on HTTP tests without this; can be removed once <rdar://problem/6886937> is fixed.
347 if (d->m_currentMacChallenge)
348 [[d->m_currentMacChallenge sender] cancelAuthenticationChallenge:d->m_currentMacChallenge];
350 if (!ResourceHandle::didSendBodyDataDelegateExists())
351 disassociateStreamWithResourceHandle([firstRequest().nsURLRequest() HTTPBodyStream]);
352 [d->m_connection.get() cancel];
355 void ResourceHandle::platformSetDefersLoading(bool defers)
358 wkSetNSURLConnectionDefersCallbacks(d->m_connection.get(), defers);
361 void ResourceHandle::schedule(SchedulePair* pair)
363 #ifndef BUILDING_ON_TIGER
364 NSRunLoop *runLoop = pair->nsRunLoop();
367 [d->m_connection.get() scheduleInRunLoop:runLoop forMode:(NSString *)pair->mode()];
368 if (d->m_startWhenScheduled) {
369 [d->m_connection.get() start];
370 d->m_startWhenScheduled = false;
377 void ResourceHandle::unschedule(SchedulePair* pair)
379 #ifndef BUILDING_ON_TIGER
380 if (NSRunLoop *runLoop = pair->nsRunLoop())
381 [d->m_connection.get() unscheduleFromRunLoop:runLoop forMode:(NSString *)pair->mode()];
387 WebCoreResourceHandleAsDelegate *ResourceHandle::delegate()
389 if (!d->m_delegate) {
390 WebCoreResourceHandleAsDelegate *delegate = [[WebCoreResourceHandleAsDelegate alloc] initWithHandle:this];
391 d->m_delegate = delegate;
394 return d->m_delegate.get();
397 void ResourceHandle::releaseDelegate()
402 [d->m_proxy.get() setDelegate:nil];
403 [d->m_delegate.get() detachHandle];
407 bool ResourceHandle::supportsBufferedData()
409 static bool supportsBufferedData = [NSURLConnection instancesRespondToSelector:@selector(_bufferedData)];
410 return supportsBufferedData;
413 PassRefPtr<SharedBuffer> ResourceHandle::bufferedData()
415 if (ResourceHandle::supportsBufferedData())
416 return SharedBuffer::wrapNSData([d->m_connection.get() _bufferedData]);
421 id ResourceHandle::releaseProxy()
423 id proxy = [[d->m_proxy.get() retain] autorelease];
425 [proxy setDelegate:nil];
429 NSURLConnection *ResourceHandle::connection() const
431 return d->m_connection.get();
434 bool ResourceHandle::loadsBlocked()
436 #ifndef BUILDING_ON_TIGER
439 // On Tiger, if we're in an NSURLConnection callback, that blocks all other NSURLConnection callbacks.
440 // On Leopard and newer, it blocks only callbacks on that same NSURLConnection object, which is not
441 // a problem in practice.
442 return inNSURLConnectionCallback != 0;
446 bool ResourceHandle::willLoadFromCache(ResourceRequest& request, Frame*)
448 #ifndef BUILDING_ON_TIGER
449 request.setCachePolicy(ReturnCacheDataDontLoad);
450 NSURLResponse *nsURLResponse = nil;
451 BEGIN_BLOCK_OBJC_EXCEPTIONS;
453 [NSURLConnection sendSynchronousRequest:request.nsURLRequest() returningResponse:&nsURLResponse error:nil];
455 END_BLOCK_OBJC_EXCEPTIONS;
457 return nsURLResponse;
459 // <rdar://problem/6803217> - Re-enable after <rdar://problem/6786454> is resolved.
460 UNUSED_PARAM(request);
465 void ResourceHandle::loadResourceSynchronously(NetworkingContext* context, const ResourceRequest& request, StoredCredentials storedCredentials, ResourceError& error, ResourceResponse& response, Vector<char>& data)
467 LOG(Network, "ResourceHandle::loadResourceSynchronously:%@ allowStoredCredentials:%u", request.nsURLRequest(), storedCredentials);
470 if (request.url().protocolIs("blob"))
471 if (blobRegistry().loadResourceSynchronously(request, error, response, data))
475 NSError *nsError = nil;
476 NSURLResponse *nsURLResponse = nil;
477 NSData *result = nil;
479 ASSERT(!request.isEmpty());
481 #ifndef BUILDING_ON_TIGER
482 OwnPtr<WebCoreSynchronousLoaderClient> client = WebCoreSynchronousLoaderClient::create();
483 client->setAllowStoredCredentials(storedCredentials == AllowStoredCredentials);
485 RefPtr<ResourceHandle> handle = adoptRef(new ResourceHandle(request, client.get(), false /*defersLoading*/, true /*shouldContentSniff*/));
487 if (context && handle->d->m_scheduledFailureType != NoFailure) {
488 error = context->blockedError(request);
492 handle->createNSURLConnection(
493 handle->delegate(), // A synchronous request cannot turn into a download, so there is no need to proxy the delegate.
494 storedCredentials == AllowStoredCredentials,
495 handle->shouldContentSniff() || (context && context->localFileContentSniffingEnabled()));
497 [handle->connection() scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:WebCoreSynchronousLoaderRunLoopMode];
498 [handle->connection() start];
500 while (!client->isDone())
501 [[NSRunLoop currentRunLoop] runMode:WebCoreSynchronousLoaderRunLoopMode beforeDate:[NSDate distantFuture]];
503 result = client->data();
504 nsURLResponse = client->response();
505 nsError = client->error();
507 [handle->connection() cancel];
510 UNUSED_PARAM(storedCredentials);
511 UNUSED_PARAM(context);
512 NSURLRequest *firstRequest = request.nsURLRequest();
514 // If a URL already has cookies, then we'll relax the 3rd party cookie policy and accept new cookies.
515 NSHTTPCookieStorage *sharedStorage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
516 if ([sharedStorage cookieAcceptPolicy] == NSHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain && [[sharedStorage cookiesForURL:[firstRequest URL]] count]) {
517 NSMutableURLRequest *mutableRequest = [[firstRequest mutableCopy] autorelease];
518 [mutableRequest setMainDocumentURL:[mutableRequest URL]];
519 firstRequest = mutableRequest;
522 BEGIN_BLOCK_OBJC_EXCEPTIONS;
523 result = [NSURLConnection sendSynchronousRequest:firstRequest returningResponse:&nsURLResponse error:&nsError];
524 END_BLOCK_OBJC_EXCEPTIONS;
528 response = nsURLResponse;
530 response = ResourceResponse(request.url(), String(), 0, String(), String());
531 if ([nsError domain] == NSURLErrorDomain)
532 switch ([nsError code]) {
533 case NSURLErrorUserCancelledAuthentication:
534 // FIXME: we should really return the actual HTTP response, but sendSynchronousRequest doesn't provide us with one.
535 response.setHTTPStatusCode(401);
538 response.setHTTPStatusCode([nsError code]);
541 response.setHTTPStatusCode(404);
544 data.resize([result length]);
545 memcpy(data.data(), [result bytes], [result length]);
550 void ResourceHandle::willSendRequest(ResourceRequest& request, const ResourceResponse& redirectResponse)
552 const KURL& url = request.url();
553 d->m_user = url.user();
554 d->m_pass = url.pass();
555 d->m_lastHTTPMethod = request.httpMethod();
556 request.removeCredentials();
557 if (!protocolHostAndPortAreEqual(request.url(), redirectResponse.url()))
558 request.clearHTTPAuthorization();
560 #if USE(CFURLSTORAGESESSIONS)
561 if (CFURLStorageSessionRef storageSession = privateBrowsingStorageSession())
562 request.setStorageSession(storageSession);
565 client()->willSendRequest(this, request, redirectResponse);
568 bool ResourceHandle::shouldUseCredentialStorage()
571 return client()->shouldUseCredentialStorage(this);
576 void ResourceHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge)
578 ASSERT(!d->m_currentMacChallenge);
579 ASSERT(d->m_currentWebChallenge.isNull());
580 // Since NSURLConnection networking relies on keeping a reference to the original NSURLAuthenticationChallenge,
581 // we make sure that is actually present
582 ASSERT(challenge.nsURLAuthenticationChallenge());
584 if (!d->m_user.isNull() && !d->m_pass.isNull()) {
585 NSURLCredential *credential = [[NSURLCredential alloc] initWithUser:d->m_user
587 persistence:NSURLCredentialPersistenceForSession];
588 d->m_currentMacChallenge = challenge.nsURLAuthenticationChallenge();
589 d->m_currentWebChallenge = challenge;
590 receivedCredential(challenge, core(credential));
591 [credential release];
592 // FIXME: Per the specification, the user shouldn't be asked for credentials if there were incorrect ones provided explicitly.
593 d->m_user = String();
594 d->m_pass = String();
598 #ifndef BUILDING_ON_TIGER
599 if (!client() || client()->shouldUseCredentialStorage(this)) {
600 if (!d->m_initialCredential.isEmpty() || challenge.previousFailureCount()) {
601 // The stored credential wasn't accepted, stop using it.
602 // There is a race condition here, since a different credential might have already been stored by another ResourceHandle,
603 // but the observable effect should be very minor, if any.
604 CredentialStorage::remove(challenge.protectionSpace());
607 if (!challenge.previousFailureCount()) {
608 Credential credential = CredentialStorage::get(challenge.protectionSpace());
609 if (!credential.isEmpty() && credential != d->m_initialCredential) {
610 ASSERT(credential.persistence() == CredentialPersistenceNone);
611 if (challenge.failureResponse().httpStatusCode() == 401) {
612 // Store the credential back, possibly adding it as a default for this directory.
613 CredentialStorage::set(credential, challenge.protectionSpace(), firstRequest().url());
615 [challenge.sender() useCredential:mac(credential) forAuthenticationChallenge:mac(challenge)];
622 d->m_currentMacChallenge = challenge.nsURLAuthenticationChallenge();
623 d->m_currentWebChallenge = core(d->m_currentMacChallenge);
624 d->m_currentWebChallenge.setAuthenticationClient(this);
627 client()->didReceiveAuthenticationChallenge(this, d->m_currentWebChallenge);
630 void ResourceHandle::didCancelAuthenticationChallenge(const AuthenticationChallenge& challenge)
632 ASSERT(d->m_currentMacChallenge);
633 ASSERT(d->m_currentMacChallenge == challenge.nsURLAuthenticationChallenge());
634 ASSERT(!d->m_currentWebChallenge.isNull());
637 client()->didCancelAuthenticationChallenge(this, challenge);
640 #if USE(PROTECTION_SPACE_AUTH_CALLBACK)
641 bool ResourceHandle::canAuthenticateAgainstProtectionSpace(const ProtectionSpace& protectionSpace)
644 return client()->canAuthenticateAgainstProtectionSpace(this, protectionSpace);
650 void ResourceHandle::receivedCredential(const AuthenticationChallenge& challenge, const Credential& credential)
652 ASSERT(!challenge.isNull());
653 if (challenge != d->m_currentWebChallenge)
656 // FIXME: Support empty credentials. Currently, an empty credential cannot be stored in WebCore credential storage, as that's empty value for its map.
657 if (credential.isEmpty()) {
658 receivedRequestToContinueWithoutCredential(challenge);
662 #ifdef BUILDING_ON_TIGER
663 if (credential.persistence() == CredentialPersistenceNone) {
664 // NSURLCredentialPersistenceNone doesn't work on Tiger, so we have to use session persistence.
665 Credential webCredential(credential.user(), credential.password(), CredentialPersistenceForSession);
666 [[d->m_currentMacChallenge sender] useCredential:mac(webCredential) forAuthenticationChallenge:d->m_currentMacChallenge];
669 if (credential.persistence() == CredentialPersistenceForSession && (!d->m_needsSiteSpecificQuirks || ![[[mac(challenge) protectionSpace] host] isEqualToString:@"gallery.me.com"])) {
670 // Manage per-session credentials internally, because once NSURLCredentialPersistenceForSession is used, there is no way
671 // to ignore it for a particular request (short of removing it altogether).
672 // <rdar://problem/6867598> gallery.me.com is temporarily whitelisted, so that QuickTime plug-in could see the credentials.
673 Credential webCredential(credential, CredentialPersistenceNone);
675 if (challenge.failureResponse().httpStatusCode() == 401)
676 urlToStore = firstRequest().url();
677 CredentialStorage::set(webCredential, core([d->m_currentMacChallenge protectionSpace]), urlToStore);
678 [[d->m_currentMacChallenge sender] useCredential:mac(webCredential) forAuthenticationChallenge:d->m_currentMacChallenge];
681 [[d->m_currentMacChallenge sender] useCredential:mac(credential) forAuthenticationChallenge:d->m_currentMacChallenge];
683 clearAuthentication();
686 void ResourceHandle::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& challenge)
688 ASSERT(!challenge.isNull());
689 if (challenge != d->m_currentWebChallenge)
692 [[d->m_currentMacChallenge sender] continueWithoutCredentialForAuthenticationChallenge:d->m_currentMacChallenge];
694 clearAuthentication();
697 void ResourceHandle::receivedCancellation(const AuthenticationChallenge& challenge)
699 if (challenge != d->m_currentWebChallenge)
703 client()->receivedCancellation(this, challenge);
706 #if USE(CFURLSTORAGESESSIONS)
708 RetainPtr<CFURLStorageSessionRef> ResourceHandle::createPrivateBrowsingStorageSession(CFStringRef identifier)
710 return RetainPtr<CFURLStorageSessionRef>(AdoptCF, wkCreatePrivateStorageSession(identifier));
713 String ResourceHandle::privateBrowsingStorageSessionIdentifierDefaultBase()
715 return String([[NSBundle mainBundle] bundleIdentifier]);
720 } // namespace WebCore
722 @implementation WebCoreResourceHandleAsDelegate
724 - (id)initWithHandle:(ResourceHandle*)handle
738 - (NSURLRequest *)connection:(NSURLConnection *)connection willSendRequest:(NSURLRequest *)newRequest redirectResponse:(NSURLResponse *)redirectResponse
740 UNUSED_PARAM(connection);
742 // the willSendRequest call may cancel this load, in which case self could be deallocated
743 RetainPtr<WebCoreResourceHandleAsDelegate> protect(self);
745 if (!m_handle || !m_handle->client())
748 // See <rdar://problem/5380697> . This is a workaround for a behavior change in CFNetwork where willSendRequest gets called more often.
749 if (!redirectResponse)
753 if ([redirectResponse isKindOfClass:[NSHTTPURLResponse class]])
754 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:%d, Location:<%@>", m_handle, connection, [newRequest description], static_cast<int>([(id)redirectResponse statusCode]), [[(id)redirectResponse allHeaderFields] objectForKey:@"Location"]);
756 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:non-HTTP", m_handle, connection, [newRequest description]);
759 if ([redirectResponse isKindOfClass:[NSHTTPURLResponse class]] && [(NSHTTPURLResponse *)redirectResponse statusCode] == 307) {
760 String lastHTTPMethod = m_handle->lastHTTPMethod();
761 if (!equalIgnoringCase(lastHTTPMethod, String([newRequest HTTPMethod]))) {
762 NSMutableURLRequest *mutableRequest = [newRequest mutableCopy];
763 [mutableRequest setHTTPMethod:lastHTTPMethod];
765 FormData* body = m_handle->firstRequest().httpBody();
766 if (!equalIgnoringCase(lastHTTPMethod, "GET") && body && !body->isEmpty())
767 WebCore::setHTTPBody(mutableRequest, body);
769 String originalContentType = m_handle->firstRequest().httpContentType();
770 if (!originalContentType.isEmpty())
771 [mutableRequest setValue:originalContentType forHTTPHeaderField:@"Content-Type"];
773 newRequest = [mutableRequest autorelease];
778 ResourceRequest request = newRequest;
780 // Should not set Referer after a redirect from a secure resource to non-secure one.
781 if (!request.url().protocolIs("https") && protocolIs(request.httpReferrer(), "https"))
782 request.clearHTTPReferrer();
784 m_handle->willSendRequest(request, redirectResponse);
786 if (!ResourceHandle::didSendBodyDataDelegateExists()) {
787 // The client may change the request's body stream, in which case we have to re-associate
788 // the handle with the new stream so upload progress callbacks continue to work correctly.
789 NSInputStream* oldBodyStream = [newRequest HTTPBodyStream];
790 NSInputStream* newBodyStream = [request.nsURLRequest() HTTPBodyStream];
791 if (oldBodyStream != newBodyStream) {
792 disassociateStreamWithResourceHandle(oldBodyStream);
793 associateStreamWithResourceHandle(newBodyStream, m_handle);
797 return request.nsURLRequest();
800 - (BOOL)connectionShouldUseCredentialStorage:(NSURLConnection *)connection
802 UNUSED_PARAM(connection);
804 LOG(Network, "Handle %p delegate connectionShouldUseCredentialStorage:%p", m_handle, connection);
810 return m_handle->shouldUseCredentialStorage();
813 - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
815 UNUSED_PARAM(connection);
817 LOG(Network, "Handle %p delegate connection:%p didReceiveAuthenticationChallenge:%p", m_handle, connection, challenge);
822 m_handle->didReceiveAuthenticationChallenge(core(challenge));
825 - (void)connection:(NSURLConnection *)connection didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
827 UNUSED_PARAM(connection);
829 LOG(Network, "Handle %p delegate connection:%p didCancelAuthenticationChallenge:%p", m_handle, connection, challenge);
834 m_handle->didCancelAuthenticationChallenge(core(challenge));
837 #if USE(PROTECTION_SPACE_AUTH_CALLBACK)
838 - (BOOL)connection:(NSURLConnection *)unusedConnection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace
840 UNUSED_PARAM(unusedConnection);
846 return m_handle->canAuthenticateAgainstProtectionSpace(core(protectionSpace));
850 - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)r
852 UNUSED_PARAM(connection);
854 LOG(Network, "Handle %p delegate connection:%p didReceiveResponse:%p (HTTP status %d, reported MIMEType '%s')", m_handle, connection, r, [r respondsToSelector:@selector(statusCode)] ? [(id)r statusCode] : 0, [[r MIMEType] UTF8String]);
856 if (!m_handle || !m_handle->client())
860 // Avoid MIME type sniffing if the response comes back as 304 Not Modified.
861 int statusCode = [r respondsToSelector:@selector(statusCode)] ? [(id)r statusCode] : 0;
862 if (statusCode != 304)
863 [r adjustMIMETypeIfNecessary];
865 if ([m_handle->firstRequest().nsURLRequest() _propertyForKey:@"ForceHTMLMIMEType"])
866 [r _setMIMEType:@"text/html"];
869 const KURL& url = [r URL];
870 if (url.isLocalFile()) {
871 // FIXME: Workaround for <rdar://problem/6917571>: The WML file extension ".wml" is not mapped to
872 // the right MIME type, work around that CFNetwork problem, to unbreak WML support for local files.
873 const String& path = url.path();
875 DEFINE_STATIC_LOCAL(const String, wmlExt, (".wml"));
876 if (path.endsWith(wmlExt, false)) {
877 static NSString* defaultMIMETypeString = [(NSString*) defaultMIMEType() retain];
878 if ([[r MIMEType] isEqualToString:defaultMIMETypeString])
879 [r _setMIMEType:@"text/vnd.wap.wml"];
884 m_handle->client()->didReceiveResponse(m_handle, r);
887 - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data lengthReceived:(long long)lengthReceived
889 UNUSED_PARAM(connection);
891 LOG(Network, "Handle %p delegate connection:%p didReceiveData:%p lengthReceived:%lld", m_handle, connection, data, lengthReceived);
893 if (!m_handle || !m_handle->client())
895 // FIXME: If we get more than 2B bytes in a single chunk, this code won't do the right thing.
896 // However, with today's computers and networking speeds, this won't happen in practice.
897 // Could be an issue with a giant local file.
899 m_handle->client()->didReceiveData(m_handle, (const char*)[data bytes], [data length], static_cast<int>(lengthReceived));
902 - (void)connection:(NSURLConnection *)connection willStopBufferingData:(NSData *)data
904 UNUSED_PARAM(connection);
906 LOG(Network, "Handle %p delegate connection:%p willStopBufferingData:%p", m_handle, connection, data);
908 if (!m_handle || !m_handle->client())
910 // FIXME: If we get a resource with more than 2B bytes, this code won't do the right thing.
911 // However, with today's computers and networking speeds, this won't happen in practice.
912 // Could be an issue with a giant local file.
914 m_handle->client()->willStopBufferingData(m_handle, (const char*)[data bytes], static_cast<int>([data length]));
917 - (void)connection:(NSURLConnection *)connection didSendBodyData:(NSInteger)bytesWritten totalBytesWritten:(NSInteger)totalBytesWritten totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite
919 UNUSED_PARAM(connection);
920 UNUSED_PARAM(bytesWritten);
922 LOG(Network, "Handle %p delegate connection:%p didSendBodyData:%d totalBytesWritten:%d totalBytesExpectedToWrite:%d", m_handle, connection, bytesWritten, totalBytesWritten, totalBytesExpectedToWrite);
924 if (!m_handle || !m_handle->client())
927 m_handle->client()->didSendData(m_handle, totalBytesWritten, totalBytesExpectedToWrite);
930 - (void)connectionDidFinishLoading:(NSURLConnection *)connection
932 UNUSED_PARAM(connection);
934 LOG(Network, "Handle %p delegate connectionDidFinishLoading:%p", m_handle, connection);
936 if (!m_handle || !m_handle->client())
940 if (!ResourceHandle::didSendBodyDataDelegateExists())
941 disassociateStreamWithResourceHandle([m_handle->firstRequest().nsURLRequest() HTTPBodyStream]);
943 m_handle->client()->didFinishLoading(m_handle, 0);
946 - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
948 UNUSED_PARAM(connection);
950 LOG(Network, "Handle %p delegate connection:%p didFailWithError:%@", m_handle, connection, error);
952 if (!m_handle || !m_handle->client())
956 if (!ResourceHandle::didSendBodyDataDelegateExists())
957 disassociateStreamWithResourceHandle([m_handle->firstRequest().nsURLRequest() HTTPBodyStream]);
959 m_handle->client()->didFail(m_handle, error);
962 #ifdef BUILDING_ON_TIGER
963 - (void)_callConnectionWillCacheResponseWithInfo:(NSMutableDictionary *)info
965 NSURLConnection *connection = [info objectForKey:@"connection"];
966 NSCachedURLResponse *cachedResponse = [info objectForKey:@"cachedResponse"];
967 NSCachedURLResponse *result = [self connection:connection willCacheResponse:cachedResponse];
969 [info setObject:result forKey:@"result"];
973 - (NSCachedURLResponse *)connection:(NSURLConnection *)connection willCacheResponse:(NSCachedURLResponse *)cachedResponse
975 LOG(Network, "Handle %p delegate connection:%p willCacheResponse:%p", m_handle, connection, cachedResponse);
977 #ifdef BUILDING_ON_TIGER
978 // On Tiger CFURLConnection can sometimes call the connection:willCacheResponse: delegate method on
979 // a secondary thread instead of the main thread. If this happens perform the work on the main thread.
980 if (!pthread_main_np()) {
981 NSMutableDictionary *info = [[NSMutableDictionary alloc] init];
983 [info setObject:connection forKey:@"connection"];
985 [info setObject:cachedResponse forKey:@"cachedResponse"];
987 // Include synchronous url connection's mode as an acceptable run loopmode
988 // <rdar://problem/5511842>
989 NSArray *modes = [[NSArray alloc] initWithObjects:(NSString *)kCFRunLoopCommonModes, @"NSSynchronousURLConnection_PrivateMode", nil];
990 [self performSelectorOnMainThread:@selector(_callConnectionWillCacheResponseWithInfo:) withObject:info waitUntilDone:YES modes:modes];
993 NSCachedURLResponse *result = [[info valueForKey:@"result"] retain];
996 return [result autorelease];
999 UNUSED_PARAM(connection);
1003 if (isInitializingConnection)
1004 LOG_ERROR("connection:willCacheResponse: was called inside of [NSURLConnection initWithRequest:delegate:] (4067625)");
1007 if (!m_handle || !m_handle->client())
1010 CallbackGuard guard;
1012 NSCachedURLResponse *newResponse = m_handle->client()->willCacheResponse(m_handle, cachedResponse);
1013 if (newResponse != cachedResponse)
1016 CacheStoragePolicy policy = static_cast<CacheStoragePolicy>([newResponse storagePolicy]);
1018 m_handle->client()->willCacheResponse(m_handle, policy);
1020 if (static_cast<NSURLCacheStoragePolicy>(policy) != [newResponse storagePolicy])
1021 newResponse = [[[NSCachedURLResponse alloc] initWithResponse:[newResponse response]
1022 data:[newResponse data]
1023 userInfo:[newResponse userInfo]
1024 storagePolicy:static_cast<NSURLCacheStoragePolicy>(policy)] autorelease];
1031 #ifndef BUILDING_ON_TIGER
1033 WebCoreSynchronousLoaderClient::~WebCoreSynchronousLoaderClient()
1035 [m_response release];
1040 void WebCoreSynchronousLoaderClient::willSendRequest(ResourceHandle* handle, ResourceRequest& request, const ResourceResponse& /*redirectResponse*/)
1042 // FIXME: This needs to be fixed to follow the redirect correctly even for cross-domain requests.
1043 if (!protocolHostAndPortAreEqual(handle->firstRequest().url(), request.url())) {
1045 m_error = [[NSError alloc] initWithDomain:NSURLErrorDomain code:NSURLErrorBadServerResponse userInfo:nil];
1052 bool WebCoreSynchronousLoaderClient::shouldUseCredentialStorage(ResourceHandle*)
1054 // FIXME: We should ask FrameLoaderClient whether using credential storage is globally forbidden.
1055 return m_allowStoredCredentials;
1058 #if USE(PROTECTION_SPACE_AUTH_CALLBACK)
1059 bool WebCoreSynchronousLoaderClient::canAuthenticateAgainstProtectionSpace(ResourceHandle*, const ProtectionSpace&)
1061 // FIXME: We should ask FrameLoaderClient.
1066 void WebCoreSynchronousLoaderClient::didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge& challenge)
1068 // FIXME: The user should be asked for credentials, as in async case.
1069 [challenge.sender() continueWithoutCredentialForAuthenticationChallenge:challenge.nsURLAuthenticationChallenge()];
1072 void WebCoreSynchronousLoaderClient::didReceiveResponse(ResourceHandle*, const ResourceResponse& response)
1074 [m_response release];
1075 m_response = [response.nsURLResponse() copy];
1078 void WebCoreSynchronousLoaderClient::didReceiveData(ResourceHandle*, const char* data, int length, int /*lengthReceived*/)
1081 m_data = [[NSMutableData alloc] init];
1082 [m_data appendBytes:data length:length];
1085 void WebCoreSynchronousLoaderClient::didFinishLoading(ResourceHandle*, double)
1090 void WebCoreSynchronousLoaderClient::didFail(ResourceHandle*, const ResourceError& error)
1094 m_error = [error copy];
1098 #endif // BUILDING_ON_TIGER
1100 #endif // !USE(CFNETWORK)