Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Crashpad Authors. All rights reserved. | |
| 2 // | |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 // you may not use this file except in compliance with the License. | |
| 5 // You may obtain a copy of the License at | |
| 6 // | |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | |
| 8 // | |
| 9 // Unless required by applicable law or agreed to in writing, software | |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 12 // See the License for the specific language governing permissions and | |
| 13 // limitations under the License. | |
| 14 | |
| 15 #include "util/win/module_version.h" | |
| 16 | |
| 17 #include <windows.h> | |
| 18 | |
| 19 #include "base/logging.h" | |
| 20 #include "base/memory/scoped_ptr.h" | |
| 21 #include "base/strings/utf_string_conversions.h" | |
| 22 | |
| 23 namespace crashpad { | |
| 24 | |
|
cpu_(ooo_6.6-7.5)
2015/05/13 01:34:12
fyi you can have modules without fixedfileinfo, I
scottmg
2015/05/13 02:12:41
That fails at GetFileVersionInfo() and then will e
| |
| 25 bool GetModuleVersionAndType(const base::FilePath& path, | |
| 26 VS_FIXEDFILEINFO* vs_fixedfileinfo) { | |
| 27 DWORD size = GetFileVersionInfoSize(path.value().c_str(), nullptr); | |
| 28 if (!size) { | |
| 29 PLOG(WARNING) << "GetFileVersionInfoSize: " | |
| 30 << base::UTF16ToUTF8(path.value()); | |
| 31 } else { | |
| 32 scoped_ptr<uint8_t[]> data(new uint8_t[size]); | |
| 33 if (!GetFileVersionInfo(path.value().c_str(), 0, size, data.get())) { | |
| 34 PLOG(WARNING) << "GetFileVersionInfo: " | |
|
cpu_(ooo_6.6-7.5)
2015/05/13 01:34:12
fwiw, this is slooow. Specially for a big binary.
scottmg
2015/05/13 02:12:41
I was wondering about that. I was vaguely hoping i
| |
| 35 << base::UTF16ToUTF8(path.value()); | |
| 36 } else { | |
| 37 VS_FIXEDFILEINFO* fixed_file_info; | |
| 38 UINT size; | |
| 39 if (!VerQueryValue(data.get(), | |
| 40 L"\\", | |
| 41 reinterpret_cast<void**>(&fixed_file_info), | |
| 42 &size)) { | |
| 43 PLOG(WARNING) << "VerQueryValue"; | |
| 44 } else { | |
| 45 *vs_fixedfileinfo = *fixed_file_info; | |
| 46 vs_fixedfileinfo->dwFileFlags &= vs_fixedfileinfo->dwFileFlagsMask; | |
| 47 return true; | |
| 48 } | |
| 49 } | |
| 50 } | |
| 51 | |
| 52 return false; | |
| 53 } | |
| 54 | |
| 55 } // namespace crashpad | |
| OLD | NEW |