OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 11 matching lines...) Expand all Loading... |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 * | 24 * |
25 */ | 25 */ |
26 | 26 |
27 #include "config.h" | 27 #include "config.h" |
28 #include "core/fetch/CrossOriginAccessControl.h" | 28 #include "core/fetch/CrossOriginAccessControl.h" |
29 | 29 |
30 #include "platform/network/HTTPParsers.h" | 30 #include "platform/network/HTTPParsers.h" |
31 #include "platform/network/ResourceResponse.h" | 31 #include "platform/network/ResourceResponse.h" |
| 32 #include "platform/weborigin/SchemeRegistry.h" |
32 #include "platform/weborigin/SecurityOrigin.h" | 33 #include "platform/weborigin/SecurityOrigin.h" |
33 #include "wtf/Threading.h" | 34 #include "wtf/Threading.h" |
34 #include "wtf/text/AtomicString.h" | 35 #include "wtf/text/AtomicString.h" |
35 #include "wtf/text/StringBuilder.h" | 36 #include "wtf/text/StringBuilder.h" |
36 | 37 |
37 namespace WebCore { | 38 namespace WebCore { |
38 | 39 |
39 bool isOnAccessControlSimpleRequestMethodWhitelist(const String& method) | 40 bool isOnAccessControlSimpleRequestMethodWhitelist(const String& method) |
40 { | 41 { |
41 return method == "GET" || method == "HEAD" || method == "POST"; | 42 return method == "GET" || method == "HEAD" || method == "POST"; |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 { | 197 { |
197 Vector<String> headers; | 198 Vector<String> headers; |
198 headerValue.split(',', false, headers); | 199 headerValue.split(',', false, headers); |
199 for (unsigned headerCount = 0; headerCount < headers.size(); headerCount++)
{ | 200 for (unsigned headerCount = 0; headerCount < headers.size(); headerCount++)
{ |
200 String strippedHeader = headers[headerCount].stripWhiteSpace(); | 201 String strippedHeader = headers[headerCount].stripWhiteSpace(); |
201 if (!strippedHeader.isEmpty()) | 202 if (!strippedHeader.isEmpty()) |
202 headerSet.add(strippedHeader); | 203 headerSet.add(strippedHeader); |
203 } | 204 } |
204 } | 205 } |
205 | 206 |
| 207 bool checkCrossOriginAccessRedirectionUrl(const KURL& requestUrl, String& errorD
escription) |
| 208 { |
| 209 if (!SchemeRegistry::shouldTreatURLSchemeAsCORSEnabled(requestUrl.protocol()
)) { |
| 210 errorDescription = "The request was redirected to a URL ('" + requestUrl
.string() + "') which has a disallowed scheme for cross-origin requests."; |
| 211 return false; |
| 212 } |
| 213 |
| 214 if (!(requestUrl.user().isEmpty() && requestUrl.pass().isEmpty())) { |
| 215 errorDescription = "The request was redirected to a URL ('" + requestUrl
.string() + "') containing userinfo, which is disallowed for cross-origin reques
ts."; |
| 216 return false; |
| 217 } |
| 218 |
| 219 return true; |
| 220 } |
| 221 |
206 } // namespace WebCore | 222 } // namespace WebCore |
OLD | NEW |