diff options
author | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-14 17:40:32 +0000 |
---|---|---|
committer | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-14 17:40:32 +0000 |
commit | de1514fc1c55a317893647180f7a0a1377462a5f (patch) | |
tree | cd7d76f8717abc1f3f1c6454a8ccafc4c6d5b271 /sandbox | |
parent | 0e587ed091d445c4d9156e59857790dceee4063d (diff) | |
download | chromium_src-de1514fc1c55a317893647180f7a0a1377462a5f.zip chromium_src-de1514fc1c55a317893647180f7a0a1377462a5f.tar.gz chromium_src-de1514fc1c55a317893647180f7a0a1377462a5f.tar.bz2 |
Had a bug in the handle table unit test. Added GetHandleName to fix the bug and make handle management easier.
TEST=sbox_unittests --gtest_filter=HandleTable.*
BUG=89325
Review URL: http://codereview.chromium.org/7346027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92563 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox')
-rw-r--r-- | sandbox/src/handle_table.cc | 43 | ||||
-rw-r--r-- | sandbox/src/handle_table.h | 4 | ||||
-rw-r--r-- | sandbox/src/handle_table_unittest.cc | 39 |
3 files changed, 63 insertions, 23 deletions
diff --git a/sandbox/src/handle_table.cc b/sandbox/src/handle_table.cc index c7fcf0a..ab079ea 100644 --- a/sandbox/src/handle_table.cc +++ b/sandbox/src/handle_table.cc @@ -17,6 +17,8 @@ bool CompareHandleEntries(const SYSTEM_HANDLE_INFORMATION& a, return a.ProcessId < b.ProcessId; } +static NtQueryObject QueryObject = NULL; + } // namespace namespace sandbox { @@ -68,12 +70,11 @@ HandleTable::Iterator HandleTable::HandlesForProcess(ULONG process_id) const { key.ProcessId = process_id; const SYSTEM_HANDLE_INFORMATION* start = handle_info()->Information; - const SYSTEM_HANDLE_INFORMATION* finish = - &handle_info()->Information[handle_info()->NumberOfHandles]; + const SYSTEM_HANDLE_INFORMATION* finish = end(); start = std::lower_bound(start, finish, key, CompareHandleEntries); if (start->ProcessId != process_id) - return Iterator(*this, finish, finish); + return Iterator(*this, end(), end()); finish = std::upper_bound(start, finish, key, CompareHandleEntries); return Iterator(*this, start, finish); } @@ -84,7 +85,6 @@ HandleTable::HandleEntry::HandleEntry( } void HandleTable::HandleEntry::UpdateInfo(UpdateType flag) { - static NtQueryObject QueryObject = NULL; if (!QueryObject) ResolveNTFunctionPtr("NtQueryObject", &QueryObject); @@ -119,18 +119,8 @@ void HandleTable::HandleEntry::UpdateInfo(UpdateType flag) { switch (flag) { case UPDATE_INFO_AND_NAME: if (type_info_buffer_.size() && handle_name_.empty()) { - ULONG size = MAX_PATH; - scoped_ptr<UNICODE_STRING> name; - do { - name.reset(reinterpret_cast<UNICODE_STRING*>(new BYTE[size])); - result = QueryObject(reinterpret_cast<HANDLE>( - handle_entry_->Handle), ObjectNameInformation, name.get(), - size, &size); - } while (result == STATUS_INFO_LENGTH_MISMATCH); - - if (NT_SUCCESS(result)) { - handle_name_.assign(name->Buffer, name->Length / sizeof(wchar_t)); - } + GetHandleName(reinterpret_cast<HANDLE>(handle_entry_->Handle), + &handle_name_); } break; @@ -144,6 +134,27 @@ void HandleTable::HandleEntry::UpdateInfo(UpdateType flag) { } } +// Returns the object manager's name associated with a handle +BOOL GetHandleName(HANDLE handle, string16* handle_name) { + if (!QueryObject) + ResolveNTFunctionPtr("NtQueryObject", &QueryObject); + + ULONG size = MAX_PATH; + scoped_ptr<UNICODE_STRING> name; + NTSTATUS result; + + do { + name.reset(reinterpret_cast<UNICODE_STRING*>(new BYTE[size])); + result = QueryObject(handle, ObjectNameInformation, name.get(), + size, &size); + } while (result == STATUS_INFO_LENGTH_MISMATCH); + + if (NT_SUCCESS(result)) + handle_name->assign(name->Buffer, name->Length / sizeof(wchar_t)); + + return NT_SUCCESS(result); +} + const OBJECT_TYPE_INFORMATION* HandleTable::HandleEntry::TypeInfo() { UpdateInfo(UPDATE_INFO_ONLY); return type_info_buffer_.empty() ? NULL : type_info_internal(); diff --git a/sandbox/src/handle_table.h b/sandbox/src/handle_table.h index 9b1fc66..4814aab 100644 --- a/sandbox/src/handle_table.h +++ b/sandbox/src/handle_table.h @@ -155,6 +155,10 @@ class HandleTable { DISALLOW_COPY_AND_ASSIGN(HandleTable); }; +// Returns the object manager's name associated with a handle +BOOL GetHandleName(HANDLE handle, string16* handle_name); + + } // namespace sandbox #endif // SANDBOX_SRC_HANDLE_TABLE_H_ diff --git a/sandbox/src/handle_table_unittest.cc b/sandbox/src/handle_table_unittest.cc index 696037f..051cad2 100644 --- a/sandbox/src/handle_table_unittest.cc +++ b/sandbox/src/handle_table_unittest.cc @@ -8,16 +8,21 @@ #include "sandbox/tests/common/test_utils.h" #include "testing/gtest/include/gtest/gtest.h" -TEST(HandleTable, IsTableValid) { +// Flaky on the Vista bots: crbug.com/89325 +TEST(HandleTable, FLAKY_IsTableValid) { using sandbox::HandleTable; const ULONG my_process_id = ::GetCurrentProcessId(); ULONG last_process_id = 0; + USHORT last_handle = -1; ULONG total_handles = 0; bool found_my_process = false; bool found_other_process = false; HandleTable handles; + // Verify that we have some number of handles. EXPECT_NE(0u, handles.handle_info()->NumberOfHandles); + // Verify that an invalid process ID returns no handles. + EXPECT_TRUE(handles.HandlesForProcess(-1) == handles.end()); for (HandleTable::Iterator it = handles.begin(); it != handles.end(); ++it) { ULONG process_id = it->handle_entry()->ProcessId; @@ -25,6 +30,14 @@ TEST(HandleTable, IsTableValid) { found_my_process |= is_current_process; found_other_process |= !is_current_process; + // Duplicate handles in a process mean a corrupt table. + if (last_process_id == process_id) { + EXPECT_NE(last_handle, it->handle_entry()->Handle); + if (last_handle == it->handle_entry()->Handle) + return; // Just bail rather than spew errors. + } + + // Verify the sort order. EXPECT_LE(last_process_id, process_id); last_process_id = process_id; total_handles++; @@ -35,7 +48,8 @@ TEST(HandleTable, IsTableValid) { EXPECT_TRUE(found_other_process); } -TEST(HandleTable, FindHandle) { +// Flaky on the Vista bots: crbug.com/89325 +TEST(HandleTable, FLAKY_FindHandle) { using sandbox::HandleTable; // Create a temp file so we have a handle to find. @@ -47,19 +61,30 @@ TEST(HandleTable, FindHandle) { FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, FILE_FLAG_DELETE_ON_CLOSE, NULL); EXPECT_NE(INVALID_HANDLE_VALUE, file); + string16 handle_name; + ASSERT_NE(sandbox::GetHandleName(file, &handle_name), FALSE); - // Look for the handle in our process + // Look for the handle in our process. + int total_handles = 0; + int type_handles = 0; bool handle_found = false; HandleTable handles; for (HandleTable::Iterator it = handles.HandlesForProcess(::GetCurrentProcessId()); it != handles.end(); ++it) { - if (it->IsType(HandleTable::kTypeFile) && it->Name().compare(my_file)) { - handle_found = true; - break; + ++total_handles; + if (it->IsType(HandleTable::kTypeFile)) { + ++type_handles; + if (it->Name() == handle_name) { + handle_found = true; + break; + } } } - EXPECT_TRUE(handle_found); + + EXPECT_TRUE(handle_found) << "File not found in " << total_handles + << " handles (includes " << type_handles << " " << HandleTable::kTypeFile + << " handles):\n\t" << handle_name << "\n\t[" << my_file << "]"; // Clean up the file we made. EXPECT_TRUE(::CloseHandle(file)); |