OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/native_library.h" | 5 #include "base/native_library.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 | 8 |
9 #include "base/files/file_util.h" | 9 #include "base/files/file_util.h" |
10 #include "base/metrics/histogram_macros.h" | |
10 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
11 #include "base/strings/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
12 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
13 #include "base/threading/thread_restrictions.h" | 14 #include "base/threading/thread_restrictions.h" |
14 | 15 |
15 namespace base { | 16 namespace base { |
16 | 17 |
17 typedef HMODULE (WINAPI* LoadLibraryFunction)(const wchar_t* file_name); | 18 typedef HMODULE(WINAPI* AddDllDirectory)(PCWSTR NewDirectory); |
dcheng
2017/03/15 09:33:49
Nit: since we're changing this anyway, please swit
chengx
2017/03/15 18:59:25
Done.
| |
18 | 19 |
19 namespace { | 20 namespace { |
21 // This enum is used to back an UMA histogram, and should therefore be treated | |
22 // as append-only. | |
23 enum LoadLibraryResult { | |
24 // LoadLibraryExW API/flags are available and the call succeeds. | |
25 SUCCEED = 0, | |
26 // LoadLibraryExW API/flags are availabe to use but the call fails, then | |
27 // LoadLibraryW is used and succeeds. | |
28 FAIL_AND_SUCCEED, | |
29 // LoadLibraryExW API/flags are availabe to use but the call fails, then | |
30 // LoadLibraryW is used but fails as well. | |
31 FAIL_AND_FAIL, | |
32 // LoadLibraryExW API/flags are unavailabe to use, then LoadLibraryW is used | |
33 // and succeeds. | |
34 UNAVAILABLE_AND_SUCCEED, | |
35 // LoadLibraryExW API/flags are unavailabe to use, then LoadLibraryW is used | |
36 // but fails. | |
37 UNAVAILABLE_AND_FAIL, | |
38 // Add new items before this one, always keep this one at the end. | |
39 END | |
40 }; | |
41 | |
42 // A helper method to log library loading result to UMA. | |
43 void LogLibrarayLoadResultToUMA(LoadLibraryResult result) { | |
44 UMA_HISTOGRAM_ENUMERATION("LibraryLoader.LoadNativeLibraryWindows", result, | |
45 LoadLibraryResult::END); | |
46 } | |
47 | |
48 // A helper method to check if AddDllDirectory method is available, thus | |
49 // LOAD_LIBRARY_SEARCH_* flags are available on systems. | |
50 bool AreSearchFlagsAvailable() { | |
51 // The LOAD_LIBRARY_SEARCH_* flags are available on systems that have | |
52 // KB2533623 installed. To determine whether the flags are available, use | |
53 // GetProcAddress to get the address of the AddDllDirectory, | |
54 // RemoveDllDirectory, or SetDefaultDllDirectories function. If GetProcAddress | |
55 // succeeds, the LOAD_LIBRARY_SEARCH_* flags can be used with LoadLibraryEx. | |
56 // https://msdn.microsoft.com/en-us/library/windows/desktop/ms684179(v=vs.85). aspx | |
57 // The LOAD_LIBRARY_SEARCH_* flags are used in the LoadNativeLibraryHelper | |
58 // method. | |
59 auto add_dll_dir_func = reinterpret_cast<AddDllDirectory>( | |
60 GetProcAddress(GetModuleHandle(L"kernel32.dll"), "AddDllDirectory")); | |
61 return !!add_dll_dir_func; | |
62 } | |
63 | |
64 // A helper method to encode the library loading result to enum | |
65 // LoadLibraryResult. | |
66 LoadLibraryResult GetLoadLibraryResult(bool are_search_flags_available, | |
67 bool is_LoadLibraryW_succeeded) { | |
xhwang
2017/03/14 23:17:41
nit: we don't use upper cases in variable names...
chengx
2017/03/15 18:59:25
Done.
| |
68 LoadLibraryResult result; | |
69 if (are_search_flags_available) { | |
70 if (is_LoadLibraryW_succeeded) | |
71 result = LoadLibraryResult::FAIL_AND_SUCCEED; | |
72 else | |
73 result = LoadLibraryResult::FAIL_AND_FAIL; | |
74 } else if (is_LoadLibraryW_succeeded) { | |
75 result = LoadLibraryResult::UNAVAILABLE_AND_SUCCEED; | |
76 } else { | |
77 result = LoadLibraryResult::UNAVAILABLE_AND_FAIL; | |
78 } | |
79 return result; | |
80 } | |
20 | 81 |
21 NativeLibrary LoadNativeLibraryHelper(const FilePath& library_path, | 82 NativeLibrary LoadNativeLibraryHelper(const FilePath& library_path, |
22 LoadLibraryFunction load_library_api, | |
23 NativeLibraryLoadError* error) { | 83 NativeLibraryLoadError* error) { |
24 // LoadLibrary() opens the file off disk. | 84 // LoadLibrary() opens the file off disk. |
25 ThreadRestrictions::AssertIOAllowed(); | 85 ThreadRestrictions::AssertIOAllowed(); |
26 | 86 |
87 HMODULE module = nullptr; | |
88 | |
89 // This variable records the library loading result. | |
90 LoadLibraryResult load_library_result = LoadLibraryResult::SUCCEED; | |
91 | |
92 bool are_search_flags_available = AreSearchFlagsAvailable(); | |
93 if (are_search_flags_available) { | |
94 // LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR flag is needed to search the library | |
95 // directory as the library may have dependencies on DLLs in this | |
96 // directory. | |
97 module = ::LoadLibraryExW( | |
98 library_path.value().c_str(), nullptr, | |
99 LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR | LOAD_LIBRARY_SEARCH_DEFAULT_DIRS); | |
100 // If LoadLibraryExW succeeds, log this metric and return. | |
101 if (module) { | |
102 LogLibrarayLoadResultToUMA(load_library_result); | |
103 return module; | |
104 } | |
105 // GetLastError() needs to be called immediately after | |
106 // LoadLibraryExW call. | |
107 if (error) | |
108 error->code = GetLastError(); | |
109 } | |
110 | |
111 // If LoadLibraryExW API/flags are unavailable or API call fails, try | |
112 // LoadLibraryW API. | |
113 | |
27 // Switch the current directory to the library directory as the library | 114 // Switch the current directory to the library directory as the library |
28 // may have dependencies on DLLs in this directory. | 115 // may have dependencies on DLLs in this directory. |
29 bool restore_directory = false; | 116 bool restore_directory = false; |
30 FilePath current_directory; | 117 FilePath current_directory; |
31 if (GetCurrentDirectory(¤t_directory)) { | 118 if (GetCurrentDirectory(¤t_directory)) { |
32 FilePath plugin_path = library_path.DirName(); | 119 FilePath plugin_path = library_path.DirName(); |
33 if (!plugin_path.empty()) { | 120 if (!plugin_path.empty()) { |
34 SetCurrentDirectory(plugin_path); | 121 SetCurrentDirectory(plugin_path); |
35 restore_directory = true; | 122 restore_directory = true; |
36 } | 123 } |
37 } | 124 } |
38 | 125 |
39 HMODULE module = (*load_library_api)(library_path.value().c_str()); | 126 module = ::LoadLibraryW(library_path.value().c_str()); |
40 if (!module && error) { | 127 |
41 // GetLastError() needs to be called immediately after |load_library_api|. | 128 // GetLastError() needs to be called immediately after LoadLibraryW call. |
129 if (!module && error) | |
42 error->code = GetLastError(); | 130 error->code = GetLastError(); |
43 } | |
44 | 131 |
45 if (restore_directory) | 132 if (restore_directory) |
46 SetCurrentDirectory(current_directory); | 133 SetCurrentDirectory(current_directory); |
47 | 134 |
135 // Get the library loading result and log it to UMA. | |
136 LogLibrarayLoadResultToUMA( | |
137 GetLoadLibraryResult(are_search_flags_available, !!module)); | |
138 | |
48 return module; | 139 return module; |
49 } | 140 } |
50 | |
51 } // namespace | 141 } // namespace |
52 | 142 |
53 std::string NativeLibraryLoadError::ToString() const { | 143 std::string NativeLibraryLoadError::ToString() const { |
54 return StringPrintf("%u", code); | 144 return StringPrintf("%u", code); |
55 } | 145 } |
56 | 146 |
57 // static | 147 // static |
58 NativeLibrary LoadNativeLibraryWithOptions(const FilePath& library_path, | 148 NativeLibrary LoadNativeLibraryWithOptions(const FilePath& library_path, |
59 const NativeLibraryOptions& options, | 149 const NativeLibraryOptions& options, |
60 NativeLibraryLoadError* error) { | 150 NativeLibraryLoadError* error) { |
61 return LoadNativeLibraryHelper(library_path, LoadLibraryW, error); | 151 return LoadNativeLibraryHelper(library_path, error); |
62 } | |
63 | |
64 NativeLibrary LoadNativeLibraryDynamically(const FilePath& library_path) { | |
65 typedef HMODULE (WINAPI* LoadLibraryFunction)(const wchar_t* file_name); | |
66 | |
67 LoadLibraryFunction load_library = reinterpret_cast<LoadLibraryFunction>( | |
68 GetProcAddress(GetModuleHandle(L"kernel32.dll"), "LoadLibraryW")); | |
69 | |
70 return LoadNativeLibraryHelper(library_path, load_library, NULL); | |
71 } | 152 } |
72 | 153 |
73 // static | 154 // static |
74 void UnloadNativeLibrary(NativeLibrary library) { | 155 void UnloadNativeLibrary(NativeLibrary library) { |
75 FreeLibrary(library); | 156 FreeLibrary(library); |
76 } | 157 } |
77 | 158 |
78 // static | 159 // static |
79 void* GetFunctionPointerFromNativeLibrary(NativeLibrary library, | 160 void* GetFunctionPointerFromNativeLibrary(NativeLibrary library, |
80 StringPiece name) { | 161 StringPiece name) { |
81 return GetProcAddress(library, name.data()); | 162 return GetProcAddress(library, name.data()); |
82 } | 163 } |
83 | 164 |
84 // static | 165 // static |
85 std::string GetNativeLibraryName(StringPiece name) { | 166 std::string GetNativeLibraryName(StringPiece name) { |
86 DCHECK(IsStringASCII(name)); | 167 DCHECK(IsStringASCII(name)); |
87 return name.as_string() + ".dll"; | 168 return name.as_string() + ".dll"; |
88 } | 169 } |
89 | 170 |
90 } // namespace base | 171 } // namespace base |
OLD | NEW |