[WebSocket] Send (request|response)_headers_text to the inspector.
[chromium-blink-merge.git] / content / browser / child_process_security_policy_unittest.cc
blobe2096696b04cb253374a7390703bd2e7c2fa5b44
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include <set>
6 #include <string>
8 #include "base/basictypes.h"
9 #include "base/files/file_path.h"
10 #include "base/platform_file.h"
11 #include "content/browser/child_process_security_policy_impl.h"
12 #include "content/public/common/url_constants.h"
13 #include "content/test/test_content_browser_client.h"
14 #include "testing/gtest/include/gtest/gtest.h"
15 #include "url/gurl.h"
16 #include "webkit/browser/fileapi/file_permission_policy.h"
17 #include "webkit/browser/fileapi/file_system_url.h"
18 #include "webkit/browser/fileapi/isolated_context.h"
19 #include "webkit/common/fileapi/file_system_types.h"
21 namespace content {
22 namespace {
24 const int kRendererID = 42;
25 const int kWorkerRendererID = kRendererID + 1;
27 #if defined(FILE_PATH_USES_DRIVE_LETTERS)
28 #define TEST_PATH(x) FILE_PATH_LITERAL("c:") FILE_PATH_LITERAL(x)
29 #else
30 #define TEST_PATH(x) FILE_PATH_LITERAL(x)
31 #endif
33 class ChildProcessSecurityPolicyTestBrowserClient
34 : public TestContentBrowserClient {
35 public:
36 ChildProcessSecurityPolicyTestBrowserClient() {}
38 virtual bool IsHandledURL(const GURL& url) OVERRIDE {
39 return schemes_.find(url.scheme()) != schemes_.end();
42 void ClearSchemes() {
43 schemes_.clear();
46 void AddScheme(const std::string& scheme) {
47 schemes_.insert(scheme);
50 private:
51 std::set<std::string> schemes_;
54 } // namespace
56 class ChildProcessSecurityPolicyTest : public testing::Test {
57 public:
58 ChildProcessSecurityPolicyTest() : old_browser_client_(NULL) {
61 virtual void SetUp() {
62 old_browser_client_ = SetBrowserClientForTesting(&test_browser_client_);
64 // Claim to always handle chrome:// URLs because the CPSP's notion of
65 // allowing WebUI bindings is hard-wired to this particular scheme.
66 test_browser_client_.AddScheme(kChromeUIScheme);
68 // Claim to always handle file:// URLs like the browser would.
69 // net::URLRequest::IsHandledURL() no longer claims support for default
70 // protocols as this is the responsibility of the browser (which is
71 // responsible for adding the appropriate ProtocolHandler).
72 test_browser_client_.AddScheme(kFileScheme);
75 virtual void TearDown() {
76 test_browser_client_.ClearSchemes();
77 SetBrowserClientForTesting(old_browser_client_);
80 protected:
81 void RegisterTestScheme(const std::string& scheme) {
82 test_browser_client_.AddScheme(scheme);
85 void GrantPermissionsForFile(ChildProcessSecurityPolicyImpl* p,
86 int child_id,
87 const base::FilePath& file,
88 int permissions) {
89 p->GrantPermissionsForFile(child_id, file, permissions);
92 void CheckHasNoFileSystemPermission(ChildProcessSecurityPolicyImpl* p,
93 const std::string& child_id) {
94 EXPECT_FALSE(p->CanReadFileSystem(kRendererID, child_id));
95 EXPECT_FALSE(p->CanReadWriteFileSystem(kRendererID, child_id));
96 EXPECT_FALSE(p->CanCopyIntoFileSystem(kRendererID, child_id));
97 EXPECT_FALSE(p->CanDeleteFromFileSystem(kRendererID, child_id));
100 void CheckHasNoFileSystemFilePermission(ChildProcessSecurityPolicyImpl* p,
101 const base::FilePath& file,
102 const fileapi::FileSystemURL& url) {
103 EXPECT_FALSE(p->CanReadFile(kRendererID, file));
104 EXPECT_FALSE(p->CanCreateReadWriteFile(kRendererID, file));
105 EXPECT_FALSE(p->CanReadFileSystemFile(kRendererID, url));
106 EXPECT_FALSE(p->CanWriteFileSystemFile(kRendererID, url));
107 EXPECT_FALSE(p->CanCreateFileSystemFile(kRendererID, url));
108 EXPECT_FALSE(p->CanCreateReadWriteFileSystemFile(kRendererID, url));
109 EXPECT_FALSE(p->CanCopyIntoFileSystemFile(kRendererID, url));
110 EXPECT_FALSE(p->CanDeleteFileSystemFile(kRendererID, url));
113 private:
114 ChildProcessSecurityPolicyTestBrowserClient test_browser_client_;
115 ContentBrowserClient* old_browser_client_;
119 TEST_F(ChildProcessSecurityPolicyTest, IsWebSafeSchemeTest) {
120 ChildProcessSecurityPolicyImpl* p =
121 ChildProcessSecurityPolicyImpl::GetInstance();
123 EXPECT_TRUE(p->IsWebSafeScheme(kHttpScheme));
124 EXPECT_TRUE(p->IsWebSafeScheme(kHttpsScheme));
125 EXPECT_TRUE(p->IsWebSafeScheme(kFtpScheme));
126 EXPECT_TRUE(p->IsWebSafeScheme(kDataScheme));
127 EXPECT_TRUE(p->IsWebSafeScheme("feed"));
128 EXPECT_TRUE(p->IsWebSafeScheme(chrome::kBlobScheme));
129 EXPECT_TRUE(p->IsWebSafeScheme(kFileSystemScheme));
131 EXPECT_FALSE(p->IsWebSafeScheme("registered-web-safe-scheme"));
132 p->RegisterWebSafeScheme("registered-web-safe-scheme");
133 EXPECT_TRUE(p->IsWebSafeScheme("registered-web-safe-scheme"));
135 EXPECT_FALSE(p->IsWebSafeScheme(kChromeUIScheme));
138 TEST_F(ChildProcessSecurityPolicyTest, IsPseudoSchemeTest) {
139 ChildProcessSecurityPolicyImpl* p =
140 ChildProcessSecurityPolicyImpl::GetInstance();
142 EXPECT_TRUE(p->IsPseudoScheme(chrome::kAboutScheme));
143 EXPECT_TRUE(p->IsPseudoScheme(kJavaScriptScheme));
144 EXPECT_TRUE(p->IsPseudoScheme(kViewSourceScheme));
146 EXPECT_FALSE(p->IsPseudoScheme("registered-pseudo-scheme"));
147 p->RegisterPseudoScheme("registered-pseudo-scheme");
148 EXPECT_TRUE(p->IsPseudoScheme("registered-pseudo-scheme"));
150 EXPECT_FALSE(p->IsPseudoScheme(kChromeUIScheme));
153 TEST_F(ChildProcessSecurityPolicyTest, StandardSchemesTest) {
154 ChildProcessSecurityPolicyImpl* p =
155 ChildProcessSecurityPolicyImpl::GetInstance();
157 p->Add(kRendererID);
159 // Safe
160 EXPECT_TRUE(p->CanRequestURL(kRendererID, GURL("http://www.google.com/")));
161 EXPECT_TRUE(p->CanRequestURL(kRendererID, GURL("https://www.paypal.com/")));
162 EXPECT_TRUE(p->CanRequestURL(kRendererID, GURL("ftp://ftp.gnu.org/")));
163 EXPECT_TRUE(p->CanRequestURL(kRendererID, GURL("data:text/html,<b>Hi</b>")));
164 EXPECT_TRUE(p->CanRequestURL(kRendererID,
165 GURL("view-source:http://www.google.com/")));
166 EXPECT_TRUE(p->CanRequestURL(
167 kRendererID, GURL("filesystem:http://localhost/temporary/a.gif")));
169 // Dangerous
170 EXPECT_FALSE(p->CanRequestURL(kRendererID,
171 GURL("file:///etc/passwd")));
172 EXPECT_FALSE(p->CanRequestURL(kRendererID,
173 GURL("chrome://foo/bar")));
175 p->Remove(kRendererID);
178 TEST_F(ChildProcessSecurityPolicyTest, AboutTest) {
179 ChildProcessSecurityPolicyImpl* p =
180 ChildProcessSecurityPolicyImpl::GetInstance();
182 p->Add(kRendererID);
184 EXPECT_TRUE(p->CanRequestURL(kRendererID, GURL("about:blank")));
185 EXPECT_TRUE(p->CanRequestURL(kRendererID, GURL("about:BlAnK")));
186 EXPECT_TRUE(p->CanRequestURL(kRendererID, GURL("aBouT:BlAnK")));
187 EXPECT_TRUE(p->CanRequestURL(kRendererID, GURL("aBouT:blank")));
189 EXPECT_FALSE(p->CanRequestURL(kRendererID, GURL("about:memory")));
190 EXPECT_FALSE(p->CanRequestURL(kRendererID, GURL("about:crash")));
191 EXPECT_FALSE(p->CanRequestURL(kRendererID, GURL("about:cache")));
192 EXPECT_FALSE(p->CanRequestURL(kRendererID, GURL("about:hang")));
194 EXPECT_FALSE(p->CanRequestURL(kRendererID, GURL("aBoUt:memory")));
195 EXPECT_FALSE(p->CanRequestURL(kRendererID, GURL("about:CrASh")));
196 EXPECT_FALSE(p->CanRequestURL(kRendererID, GURL("abOuT:cAChe")));
198 // Requests for about: pages should be denied.
199 p->GrantRequestURL(kRendererID, GURL("about:crash"));
200 EXPECT_FALSE(p->CanRequestURL(kRendererID, GURL("about:crash")));
202 // These requests for chrome:// pages should be granted.
203 GURL chrome_url("chrome://foo");
204 p->GrantRequestURL(kRendererID, chrome_url);
205 EXPECT_TRUE(p->CanRequestURL(kRendererID, chrome_url));
207 p->Remove(kRendererID);
210 TEST_F(ChildProcessSecurityPolicyTest, JavaScriptTest) {
211 ChildProcessSecurityPolicyImpl* p =
212 ChildProcessSecurityPolicyImpl::GetInstance();
214 p->Add(kRendererID);
216 EXPECT_FALSE(p->CanRequestURL(kRendererID, GURL("javascript:alert('xss')")));
217 p->GrantRequestURL(kRendererID, GURL("javascript:alert('xss')"));
218 EXPECT_FALSE(p->CanRequestURL(kRendererID, GURL("javascript:alert('xss')")));
220 p->Remove(kRendererID);
223 TEST_F(ChildProcessSecurityPolicyTest, RegisterWebSafeSchemeTest) {
224 ChildProcessSecurityPolicyImpl* p =
225 ChildProcessSecurityPolicyImpl::GetInstance();
227 p->Add(kRendererID);
229 // Currently, "asdf" is destined for ShellExecute, so it is allowed.
230 EXPECT_TRUE(p->CanRequestURL(kRendererID, GURL("asdf:rockers")));
232 // Once we register "asdf", we default to deny.
233 RegisterTestScheme("asdf");
234 EXPECT_FALSE(p->CanRequestURL(kRendererID, GURL("asdf:rockers")));
236 // We can allow new schemes by adding them to the whitelist.
237 p->RegisterWebSafeScheme("asdf");
238 EXPECT_TRUE(p->CanRequestURL(kRendererID, GURL("asdf:rockers")));
240 // Cleanup.
241 p->Remove(kRendererID);
244 TEST_F(ChildProcessSecurityPolicyTest, CanServiceCommandsTest) {
245 ChildProcessSecurityPolicyImpl* p =
246 ChildProcessSecurityPolicyImpl::GetInstance();
248 p->Add(kRendererID);
250 EXPECT_FALSE(p->CanRequestURL(kRendererID, GURL("file:///etc/passwd")));
251 p->GrantRequestURL(kRendererID, GURL("file:///etc/passwd"));
252 EXPECT_TRUE(p->CanRequestURL(kRendererID, GURL("file:///etc/passwd")));
254 // We should forget our state if we repeat a renderer id.
255 p->Remove(kRendererID);
256 p->Add(kRendererID);
257 EXPECT_FALSE(p->CanRequestURL(kRendererID, GURL("file:///etc/passwd")));
258 p->Remove(kRendererID);
261 TEST_F(ChildProcessSecurityPolicyTest, ViewSource) {
262 ChildProcessSecurityPolicyImpl* p =
263 ChildProcessSecurityPolicyImpl::GetInstance();
265 p->Add(kRendererID);
267 // View source is determined by the embedded scheme.
268 EXPECT_TRUE(p->CanRequestURL(kRendererID,
269 GURL("view-source:http://www.google.com/")));
270 EXPECT_FALSE(p->CanRequestURL(kRendererID,
271 GURL("view-source:file:///etc/passwd")));
272 EXPECT_FALSE(p->CanRequestURL(kRendererID, GURL("file:///etc/passwd")));
273 EXPECT_FALSE(p->CanRequestURL(
274 kRendererID, GURL("view-source:view-source:http://www.google.com/")));
276 p->GrantRequestURL(kRendererID, GURL("view-source:file:///etc/passwd"));
277 // View source needs to be able to request the embedded scheme.
278 EXPECT_TRUE(p->CanRequestURL(kRendererID,
279 GURL("view-source:file:///etc/passwd")));
280 EXPECT_TRUE(p->CanRequestURL(kRendererID, GURL("file:///etc/passwd")));
282 p->Remove(kRendererID);
285 TEST_F(ChildProcessSecurityPolicyTest, SpecificFile) {
286 ChildProcessSecurityPolicyImpl* p =
287 ChildProcessSecurityPolicyImpl::GetInstance();
289 p->Add(kRendererID);
291 GURL icon_url("file:///tmp/foo.png");
292 GURL sensitive_url("file:///etc/passwd");
293 EXPECT_FALSE(p->CanRequestURL(kRendererID, icon_url));
294 EXPECT_FALSE(p->CanRequestURL(kRendererID, sensitive_url));
296 p->GrantRequestSpecificFileURL(kRendererID, icon_url);
297 EXPECT_TRUE(p->CanRequestURL(kRendererID, icon_url));
298 EXPECT_FALSE(p->CanRequestURL(kRendererID, sensitive_url));
300 p->GrantRequestURL(kRendererID, icon_url);
301 EXPECT_TRUE(p->CanRequestURL(kRendererID, icon_url));
302 EXPECT_TRUE(p->CanRequestURL(kRendererID, sensitive_url));
304 p->Remove(kRendererID);
307 TEST_F(ChildProcessSecurityPolicyTest, FileSystemGrantsTest) {
308 ChildProcessSecurityPolicyImpl* p =
309 ChildProcessSecurityPolicyImpl::GetInstance();
311 p->Add(kRendererID);
312 std::string read_id = fileapi::IsolatedContext::GetInstance()->
313 RegisterFileSystemForVirtualPath(fileapi::kFileSystemTypeTest,
314 "read_filesystem",
315 base::FilePath());
316 std::string read_write_id = fileapi::IsolatedContext::GetInstance()->
317 RegisterFileSystemForVirtualPath(fileapi::kFileSystemTypeTest,
318 "read_write_filesystem",
319 base::FilePath());
320 std::string copy_into_id = fileapi::IsolatedContext::GetInstance()->
321 RegisterFileSystemForVirtualPath(fileapi::kFileSystemTypeTest,
322 "copy_into_filesystem",
323 base::FilePath());
324 std::string delete_from_id = fileapi::IsolatedContext::GetInstance()->
325 RegisterFileSystemForVirtualPath(fileapi::kFileSystemTypeTest,
326 "delete_from_filesystem",
327 base::FilePath());
329 // Test initially having no permissions.
330 CheckHasNoFileSystemPermission(p, read_id);
331 CheckHasNoFileSystemPermission(p, read_write_id);
332 CheckHasNoFileSystemPermission(p, copy_into_id);
333 CheckHasNoFileSystemPermission(p, delete_from_id);
335 // Testing varying combinations of grants and checks.
336 p->GrantReadFileSystem(kRendererID, read_id);
337 EXPECT_TRUE(p->CanReadFileSystem(kRendererID, read_id));
338 EXPECT_FALSE(p->CanReadWriteFileSystem(kRendererID, read_id));
339 EXPECT_FALSE(p->CanCopyIntoFileSystem(kRendererID, read_id));
340 EXPECT_FALSE(p->CanDeleteFromFileSystem(kRendererID, read_id));
342 p->GrantReadFileSystem(kRendererID, read_write_id);
343 p->GrantWriteFileSystem(kRendererID, read_write_id);
344 EXPECT_TRUE(p->CanReadFileSystem(kRendererID, read_write_id));
345 EXPECT_TRUE(p->CanReadWriteFileSystem(kRendererID, read_write_id));
346 EXPECT_FALSE(p->CanCopyIntoFileSystem(kRendererID, read_write_id));
347 EXPECT_FALSE(p->CanDeleteFromFileSystem(kRendererID, read_write_id));
349 p->GrantCopyIntoFileSystem(kRendererID, copy_into_id);
350 EXPECT_FALSE(p->CanReadFileSystem(kRendererID, copy_into_id));
351 EXPECT_FALSE(p->CanReadWriteFileSystem(kRendererID, copy_into_id));
352 EXPECT_TRUE(p->CanCopyIntoFileSystem(kRendererID, copy_into_id));
353 EXPECT_FALSE(p->CanDeleteFromFileSystem(kRendererID, copy_into_id));
355 p->GrantDeleteFromFileSystem(kRendererID, delete_from_id);
356 EXPECT_FALSE(p->CanReadFileSystem(kRendererID, delete_from_id));
357 EXPECT_FALSE(p->CanReadWriteFileSystem(kRendererID, delete_from_id));
358 EXPECT_FALSE(p->CanCopyIntoFileSystem(kRendererID, delete_from_id));
359 EXPECT_TRUE(p->CanDeleteFromFileSystem(kRendererID, delete_from_id));
361 // Test revoke permissions on renderer ID removal.
362 p->Remove(kRendererID);
363 CheckHasNoFileSystemPermission(p, read_id);
364 CheckHasNoFileSystemPermission(p, read_write_id);
365 CheckHasNoFileSystemPermission(p, copy_into_id);
366 CheckHasNoFileSystemPermission(p, delete_from_id);
368 // Test having no permissions upon re-adding same renderer ID.
369 p->Add(kRendererID);
370 CheckHasNoFileSystemPermission(p, read_id);
371 CheckHasNoFileSystemPermission(p, read_write_id);
372 CheckHasNoFileSystemPermission(p, copy_into_id);
373 CheckHasNoFileSystemPermission(p, delete_from_id);
375 // Cleanup.
376 p->Remove(kRendererID);
377 fileapi::IsolatedContext::GetInstance()->RevokeFileSystem(read_id);
378 fileapi::IsolatedContext::GetInstance()->RevokeFileSystem(read_write_id);
379 fileapi::IsolatedContext::GetInstance()->RevokeFileSystem(copy_into_id);
380 fileapi::IsolatedContext::GetInstance()->RevokeFileSystem(delete_from_id);
383 TEST_F(ChildProcessSecurityPolicyTest, FilePermissionGrantingAndRevoking) {
384 ChildProcessSecurityPolicyImpl* p =
385 ChildProcessSecurityPolicyImpl::GetInstance();
387 p->RegisterFileSystemPermissionPolicy(
388 fileapi::kFileSystemTypeTest,
389 fileapi::FILE_PERMISSION_USE_FILE_PERMISSION);
391 p->Add(kRendererID);
392 base::FilePath file(TEST_PATH("/dir/testfile"));
393 file = file.NormalizePathSeparators();
394 fileapi::FileSystemURL url = fileapi::FileSystemURL::CreateForTest(
395 GURL("http://foo/"), fileapi::kFileSystemTypeTest, file);
397 // Test initially having no permissions.
398 CheckHasNoFileSystemFilePermission(p, file, url);
400 // Testing every combination of permissions granting and revoking.
401 p->GrantReadFile(kRendererID, file);
402 EXPECT_TRUE(p->CanReadFile(kRendererID, file));
403 EXPECT_FALSE(p->CanCreateReadWriteFile(kRendererID, file));
404 EXPECT_TRUE(p->CanReadFileSystemFile(kRendererID, url));
405 EXPECT_FALSE(p->CanWriteFileSystemFile(kRendererID, url));
406 EXPECT_FALSE(p->CanCreateFileSystemFile(kRendererID, url));
407 EXPECT_FALSE(p->CanCreateReadWriteFileSystemFile(kRendererID, url));
408 EXPECT_FALSE(p->CanCopyIntoFileSystemFile(kRendererID, url));
409 EXPECT_FALSE(p->CanDeleteFileSystemFile(kRendererID, url));
410 p->RevokeAllPermissionsForFile(kRendererID, file);
411 CheckHasNoFileSystemFilePermission(p, file, url);
413 p->GrantCreateReadWriteFile(kRendererID, file);
414 EXPECT_TRUE(p->CanReadFile(kRendererID, file));
415 EXPECT_TRUE(p->CanCreateReadWriteFile(kRendererID, file));
416 EXPECT_TRUE(p->CanReadFileSystemFile(kRendererID, url));
417 EXPECT_TRUE(p->CanWriteFileSystemFile(kRendererID, url));
418 EXPECT_TRUE(p->CanCreateFileSystemFile(kRendererID, url));
419 EXPECT_TRUE(p->CanCreateReadWriteFileSystemFile(kRendererID, url));
420 EXPECT_TRUE(p->CanCopyIntoFileSystemFile(kRendererID, url));
421 EXPECT_TRUE(p->CanDeleteFileSystemFile(kRendererID, url));
422 p->RevokeAllPermissionsForFile(kRendererID, file);
423 CheckHasNoFileSystemFilePermission(p, file, url);
425 // Test revoke permissions on renderer ID removal.
426 p->GrantCreateReadWriteFile(kRendererID, file);
427 EXPECT_TRUE(p->CanReadFile(kRendererID, file));
428 EXPECT_TRUE(p->CanCreateReadWriteFile(kRendererID, file));
429 EXPECT_TRUE(p->CanReadFileSystemFile(kRendererID, url));
430 EXPECT_TRUE(p->CanWriteFileSystemFile(kRendererID, url));
431 EXPECT_TRUE(p->CanCreateFileSystemFile(kRendererID, url));
432 EXPECT_TRUE(p->CanCreateReadWriteFileSystemFile(kRendererID, url));
433 EXPECT_TRUE(p->CanCopyIntoFileSystemFile(kRendererID, url));
434 EXPECT_TRUE(p->CanDeleteFileSystemFile(kRendererID, url));
435 p->Remove(kRendererID);
436 CheckHasNoFileSystemFilePermission(p, file, url);
438 // Test having no permissions upon re-adding same renderer ID.
439 p->Add(kRendererID);
440 CheckHasNoFileSystemFilePermission(p, file, url);
442 // Cleanup.
443 p->Remove(kRendererID);
446 TEST_F(ChildProcessSecurityPolicyTest, FilePermissions) {
447 base::FilePath granted_file = base::FilePath(TEST_PATH("/home/joe"));
448 base::FilePath sibling_file = base::FilePath(TEST_PATH("/home/bob"));
449 base::FilePath child_file = base::FilePath(TEST_PATH("/home/joe/file"));
450 base::FilePath parent_file = base::FilePath(TEST_PATH("/home"));
451 base::FilePath parent_slash_file = base::FilePath(TEST_PATH("/home/"));
452 base::FilePath child_traversal1 =
453 base::FilePath(TEST_PATH("/home/joe/././file"));
454 base::FilePath child_traversal2 = base::FilePath(
455 TEST_PATH("/home/joe/file/../otherfile"));
456 base::FilePath evil_traversal1 =
457 base::FilePath(TEST_PATH("/home/joe/../../etc/passwd"));
458 base::FilePath evil_traversal2 = base::FilePath(
459 TEST_PATH("/home/joe/./.././../etc/passwd"));
460 base::FilePath self_traversal =
461 base::FilePath(TEST_PATH("/home/joe/../joe/file"));
462 base::FilePath relative_file = base::FilePath(FILE_PATH_LITERAL("home/joe"));
464 ChildProcessSecurityPolicyImpl* p =
465 ChildProcessSecurityPolicyImpl::GetInstance();
467 // Grant permissions for a file.
468 p->Add(kRendererID);
469 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, granted_file,
470 base::PLATFORM_FILE_OPEN));
472 GrantPermissionsForFile(p, kRendererID, granted_file,
473 base::PLATFORM_FILE_OPEN |
474 base::PLATFORM_FILE_OPEN_TRUNCATED |
475 base::PLATFORM_FILE_READ |
476 base::PLATFORM_FILE_WRITE);
477 EXPECT_TRUE(p->HasPermissionsForFile(kRendererID, granted_file,
478 base::PLATFORM_FILE_OPEN |
479 base::PLATFORM_FILE_OPEN_TRUNCATED |
480 base::PLATFORM_FILE_READ |
481 base::PLATFORM_FILE_WRITE));
482 EXPECT_TRUE(p->HasPermissionsForFile(kRendererID, granted_file,
483 base::PLATFORM_FILE_OPEN |
484 base::PLATFORM_FILE_READ));
485 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, granted_file,
486 base::PLATFORM_FILE_CREATE));
487 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, granted_file, 0));
488 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, granted_file,
489 base::PLATFORM_FILE_CREATE |
490 base::PLATFORM_FILE_OPEN_TRUNCATED |
491 base::PLATFORM_FILE_READ |
492 base::PLATFORM_FILE_WRITE));
493 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, sibling_file,
494 base::PLATFORM_FILE_OPEN |
495 base::PLATFORM_FILE_READ));
496 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, parent_file,
497 base::PLATFORM_FILE_OPEN |
498 base::PLATFORM_FILE_READ));
499 EXPECT_TRUE(p->HasPermissionsForFile(kRendererID, child_file,
500 base::PLATFORM_FILE_OPEN |
501 base::PLATFORM_FILE_READ));
502 EXPECT_TRUE(p->HasPermissionsForFile(kRendererID, child_traversal1,
503 base::PLATFORM_FILE_OPEN |
504 base::PLATFORM_FILE_READ));
505 EXPECT_TRUE(p->HasPermissionsForFile(kRendererID, child_traversal2,
506 base::PLATFORM_FILE_OPEN |
507 base::PLATFORM_FILE_READ));
508 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, evil_traversal1,
509 base::PLATFORM_FILE_OPEN |
510 base::PLATFORM_FILE_READ));
511 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, evil_traversal2,
512 base::PLATFORM_FILE_OPEN |
513 base::PLATFORM_FILE_READ));
514 // CPSP doesn't allow this case for the sake of simplicity.
515 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, self_traversal,
516 base::PLATFORM_FILE_OPEN |
517 base::PLATFORM_FILE_READ));
518 p->Remove(kRendererID);
520 // Grant permissions for the directory the file is in.
521 p->Add(kRendererID);
522 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, granted_file,
523 base::PLATFORM_FILE_OPEN));
524 GrantPermissionsForFile(p, kRendererID, parent_file,
525 base::PLATFORM_FILE_OPEN |
526 base::PLATFORM_FILE_READ);
527 EXPECT_TRUE(p->HasPermissionsForFile(kRendererID, granted_file,
528 base::PLATFORM_FILE_OPEN));
529 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, granted_file,
530 base::PLATFORM_FILE_READ |
531 base::PLATFORM_FILE_WRITE));
532 p->Remove(kRendererID);
534 // Grant permissions for the directory the file is in (with trailing '/').
535 p->Add(kRendererID);
536 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, granted_file,
537 base::PLATFORM_FILE_OPEN));
538 GrantPermissionsForFile(p, kRendererID, parent_slash_file,
539 base::PLATFORM_FILE_OPEN |
540 base::PLATFORM_FILE_READ);
541 EXPECT_TRUE(p->HasPermissionsForFile(kRendererID, granted_file,
542 base::PLATFORM_FILE_OPEN));
543 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, granted_file,
544 base::PLATFORM_FILE_READ |
545 base::PLATFORM_FILE_WRITE));
547 // Grant permissions for the file (should overwrite the permissions granted
548 // for the directory).
549 GrantPermissionsForFile(p, kRendererID, granted_file,
550 base::PLATFORM_FILE_TEMPORARY);
551 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, granted_file,
552 base::PLATFORM_FILE_OPEN));
553 EXPECT_TRUE(p->HasPermissionsForFile(kRendererID, granted_file,
554 base::PLATFORM_FILE_TEMPORARY));
556 // Revoke all permissions for the file (it should inherit its permissions
557 // from the directory again).
558 p->RevokeAllPermissionsForFile(kRendererID, granted_file);
559 EXPECT_TRUE(p->HasPermissionsForFile(kRendererID, granted_file,
560 base::PLATFORM_FILE_OPEN |
561 base::PLATFORM_FILE_READ));
562 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, granted_file,
563 base::PLATFORM_FILE_TEMPORARY));
564 p->Remove(kRendererID);
566 // Grant file permissions for the file to main thread renderer process,
567 // make sure its worker thread renderer process inherits those.
568 p->Add(kRendererID);
569 GrantPermissionsForFile(p, kRendererID, granted_file,
570 base::PLATFORM_FILE_OPEN |
571 base::PLATFORM_FILE_READ);
572 EXPECT_TRUE(p->HasPermissionsForFile(kRendererID, granted_file,
573 base::PLATFORM_FILE_OPEN |
574 base::PLATFORM_FILE_READ));
575 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, granted_file,
576 base::PLATFORM_FILE_WRITE));
577 p->AddWorker(kWorkerRendererID, kRendererID);
578 EXPECT_TRUE(p->HasPermissionsForFile(kWorkerRendererID, granted_file,
579 base::PLATFORM_FILE_OPEN |
580 base::PLATFORM_FILE_READ));
581 EXPECT_FALSE(p->HasPermissionsForFile(kWorkerRendererID, granted_file,
582 base::PLATFORM_FILE_WRITE));
583 p->Remove(kRendererID);
584 EXPECT_FALSE(p->HasPermissionsForFile(kWorkerRendererID, granted_file,
585 base::PLATFORM_FILE_OPEN |
586 base::PLATFORM_FILE_READ));
587 p->Remove(kWorkerRendererID);
589 p->Add(kRendererID);
590 GrantPermissionsForFile(p, kRendererID, relative_file,
591 base::PLATFORM_FILE_OPEN);
592 EXPECT_FALSE(p->HasPermissionsForFile(kRendererID, relative_file,
593 base::PLATFORM_FILE_OPEN));
594 p->Remove(kRendererID);
597 TEST_F(ChildProcessSecurityPolicyTest, CanServiceWebUIBindings) {
598 ChildProcessSecurityPolicyImpl* p =
599 ChildProcessSecurityPolicyImpl::GetInstance();
601 GURL url("chrome://thumb/http://www.google.com/");
603 p->Add(kRendererID);
605 EXPECT_FALSE(p->HasWebUIBindings(kRendererID));
606 EXPECT_FALSE(p->CanRequestURL(kRendererID, url));
607 p->GrantWebUIBindings(kRendererID);
608 EXPECT_TRUE(p->HasWebUIBindings(kRendererID));
609 EXPECT_TRUE(p->CanRequestURL(kRendererID, url));
611 p->Remove(kRendererID);
614 TEST_F(ChildProcessSecurityPolicyTest, RemoveRace) {
615 ChildProcessSecurityPolicyImpl* p =
616 ChildProcessSecurityPolicyImpl::GetInstance();
618 GURL url("file:///etc/passwd");
619 base::FilePath file(TEST_PATH("/etc/passwd"));
621 p->Add(kRendererID);
623 p->GrantRequestURL(kRendererID, url);
624 p->GrantReadFile(kRendererID, file);
625 p->GrantWebUIBindings(kRendererID);
627 EXPECT_TRUE(p->CanRequestURL(kRendererID, url));
628 EXPECT_TRUE(p->CanReadFile(kRendererID, file));
629 EXPECT_TRUE(p->HasWebUIBindings(kRendererID));
631 p->Remove(kRendererID);
633 // Renderers are added and removed on the UI thread, but the policy can be
634 // queried on the IO thread. The ChildProcessSecurityPolicy needs to be
635 // prepared to answer policy questions about renderers who no longer exist.
637 // In this case, we default to secure behavior.
638 EXPECT_FALSE(p->CanRequestURL(kRendererID, url));
639 EXPECT_FALSE(p->CanReadFile(kRendererID, file));
640 EXPECT_FALSE(p->HasWebUIBindings(kRendererID));
643 } // namespace content