// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // The file contains the implementation of the mini_installer re-versioner. // The main function (GenerateNextVersion) does the following in a temp dir: // - Extracts and unpacks setup.exe and the Chrome-bin folder from // mini_installer.exe. // - Inspects setup.exe to determine the current version. // - Runs through all .dll and .exe files: // - Replacing all occurrences of the Unicode version string in the files' // resources with the updated string. // - For all resources in which the string substitution is made, the binary // form of the version is also replaced. // - Re-packs setup.exe and Chrome-bin. // - Inserts them into the target mini_installer.exe. // // This code assumes that the host program 1) initializes the process-wide // CommandLine instance, and 2) resides in the output directory of a build // tree. When #2 is not the case, the --7za_path command-line switch may be // used to provide the (relative or absolute) path to the directory containing // 7za.exe. #include "chrome/installer/test/alternate_version_generator.h" #include #include #include #include #include #include #include #include #include "base/command_line.h" #include "base/files/file.h" #include "base/files/file_enumerator.h" #include "base/files/file_path.h" #include "base/files/file_util.h" #include "base/logging.h" #include "base/macros.h" #include "base/path_service.h" #include "base/process/launch.h" #include "base/process/process_handle.h" #include "base/strings/string16.h" #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "base/version.h" #include "base/win/pe_image.h" #include "base/win/scoped_handle.h" #include "chrome/installer/test/pe_image_resources.h" #include "chrome/installer/test/resource_loader.h" #include "chrome/installer/test/resource_updater.h" #include "chrome/installer/util/lzma_util.h" namespace { const wchar_t k7zaExe[] = L"7za.exe"; const wchar_t k7zaPathRelative[] = L"..\\..\\third_party\\lzma_sdk\\Executable"; const wchar_t kB7[] = L"B7"; const wchar_t kBl[] = L"BL"; const wchar_t kChromeBin[] = L"Chrome-bin"; const wchar_t kChromePacked7z[] = L"CHROME.PACKED.7Z"; const wchar_t kChrome7z[] = L"CHROME.7Z"; const wchar_t kExe[] = L"exe"; const wchar_t kExpandExe[] = L"expand.exe"; const wchar_t kExtDll[] = L".dll"; const wchar_t kExtExe[] = L".exe"; const wchar_t kMakeCab[] = L"makecab.exe"; const wchar_t kSetupEx_[] = L"setup.ex_"; const wchar_t kSetupExe[] = L"setup.exe"; const char kSwitch7zaPath[] = "7za_path"; const wchar_t kTempDirPrefix[] = L"mini_installer_test_temp"; // A helper class for creating and cleaning a temporary directory. A temporary // directory is created in Initialize and destroyed (along with all of its // contents) when the guard instance is destroyed. class ScopedTempDirectory { public: ScopedTempDirectory() { } ~ScopedTempDirectory() { if (!directory_.empty() && !base::DeleteFile(directory_, true)) { LOG(DFATAL) << "Failed deleting temporary directory \"" << directory_.value() << "\""; } } // Creates a temporary directory. bool Initialize() { DCHECK(directory_.empty()); if (!base::CreateNewTempDirectory(&kTempDirPrefix[0], &directory_)) { LOG(DFATAL) << "Failed creating temporary directory."; return false; } return true; } const base::FilePath& directory() const { DCHECK(!directory_.empty()); return directory_; } private: base::FilePath directory_; DISALLOW_COPY_AND_ASSIGN(ScopedTempDirectory); }; // class ScopedTempDirectory // A helper class for manipulating a Chrome product version. class ChromeVersion { public: static ChromeVersion FromHighLow(DWORD high, DWORD low) { return ChromeVersion(static_cast(high) << 32 | static_cast(low)); } static ChromeVersion FromString(const std::string& version_string) { Version version(version_string); DCHECK(version.IsValid()); const std::vector& c(version.components()); return ChromeVersion(static_cast(c[0]) << 48 | static_cast(c[1]) << 32 | static_cast(c[2]) << 16 | static_cast(c[3])); } ChromeVersion() { } explicit ChromeVersion(ULONGLONG value) : version_(value) { } WORD major() const { return static_cast(version_ >> 48); } WORD minor() const { return static_cast(version_ >> 32); } WORD build() const { return static_cast(version_ >> 16); } WORD patch() const { return static_cast(version_); } DWORD high() const { return static_cast(version_ >> 32); } DWORD low() const { return static_cast(version_); } ULONGLONG value() const { return version_; } void set_value(ULONGLONG value) { version_ = value; } std::wstring ToString() const; std::string ToASCII() const; private: ULONGLONG version_; }; // class ChromeVersion std::wstring ChromeVersion::ToString() const { wchar_t buffer[24]; int string_len = swprintf_s(&buffer[0], arraysize(buffer), L"%hu.%hu.%hu.%hu", major(), minor(), build(), patch()); DCHECK_NE(-1, string_len); DCHECK_GT(static_cast(arraysize(buffer)), string_len); return std::wstring(&buffer[0], string_len); } std::string ChromeVersion::ToASCII() const { char buffer[24]; int string_len = sprintf_s(&buffer[0], arraysize(buffer), "%hu.%hu.%hu.%hu", major(), minor(), build(), patch()); DCHECK_NE(-1, string_len); DCHECK_GT(static_cast(arraysize(buffer)), string_len); return std::string(&buffer[0], string_len); } // A read/write mapping of a file. // Note: base::MemoryMappedFile is not used because it doesn't support // read/write mappings. Adding such support across all platforms for this // Windows-only test code seems like overkill. class MappedFile { public: MappedFile() : size_(), mapping_(), view_() { } ~MappedFile(); bool Initialize(base::File file); void* data() const { return view_; } size_t size() const { return size_; } private: size_t size_; base::File file_; HANDLE mapping_; void* view_; DISALLOW_COPY_AND_ASSIGN(MappedFile); }; // class MappedFile MappedFile::~MappedFile() { if (view_ && !UnmapViewOfFile(view_)) PLOG(DFATAL) << "MappedFile failed to unmap view."; if (mapping_ && !CloseHandle(mapping_)) PLOG(DFATAL) << "Could not close file mapping handle."; } bool MappedFile::Initialize(base::File file) { DCHECK(mapping_ == NULL); bool result = false; base::File::Info file_info; if (file.GetInfo(&file_info)) { if (file_info.size <= static_cast(std::numeric_limits::max())) { mapping_ = CreateFileMapping(file.GetPlatformFile(), NULL, PAGE_READWRITE, 0, static_cast(file_info.size), NULL); if (mapping_ != NULL) { view_ = MapViewOfFile(mapping_, FILE_MAP_WRITE, 0, 0, static_cast(file_info.size)); if (view_) result = true; else PLOG(DFATAL) << "MapViewOfFile failed"; } else { PLOG(DFATAL) << "CreateFileMapping failed"; } } else { LOG(DFATAL) << "Files larger than " << std::numeric_limits::max() << " are not supported."; } } else { PLOG(DFATAL) << "file.GetInfo failed"; } file_ = std::move(file); return result; } // Calls CreateProcess with good default parameters and waits for the process // to terminate returning the process exit code. bool RunProcessAndWait(const wchar_t* exe_path, const std::wstring& cmdline, int* exit_code) { bool result = true; base::LaunchOptions options; options.wait = true; options.start_hidden = true; base::Process process = base::LaunchProcess(cmdline, options); if (process.IsValid()) { if (exit_code) { if (!GetExitCodeProcess(process.Handle(), reinterpret_cast(exit_code))) { PLOG(DFATAL) << "Failed getting the exit code for \"" << cmdline << "\"."; result = false; } else { DCHECK_NE(*exit_code, static_cast(STILL_ACTIVE)); } } } else { result = false; } return result; } // Retrieves the version number of |pe_file| from its version // resource, placing the value in |version|. Returns true on success. bool GetFileVersion(const base::FilePath& pe_file, ChromeVersion* version) { DCHECK(version); bool result = false; upgrade_test::ResourceLoader pe_file_loader; std::pair version_info_data; if (pe_file_loader.Initialize(pe_file) && pe_file_loader.Load( VS_VERSION_INFO, static_cast(reinterpret_cast(RT_VERSION)), &version_info_data)) { const VS_FIXEDFILEINFO* fixed_file_info; UINT ver_info_len; if (VerQueryValue(version_info_data.first, L"\\", reinterpret_cast( const_cast(&fixed_file_info)), &ver_info_len) != 0) { DCHECK_EQ(sizeof(VS_FIXEDFILEINFO), static_cast(ver_info_len)); *version = ChromeVersion::FromHighLow(fixed_file_info->dwFileVersionMS, fixed_file_info->dwFileVersionLS); result = true; } else { LOG(DFATAL) << "VerQueryValue failed to retrieve VS_FIXEDFILEINFO"; } } return result; } // Retrieves the version number of setup.exe in |work_dir| from its version // resource, placing the value in |version|. Returns true on success. bool GetSetupExeVersion(const base::FilePath& work_dir, ChromeVersion* version) { return GetFileVersion(work_dir.Append(&kSetupExe[0]), version); } // Replace all occurrences in the sequence [|dest_first|, |dest_last|) that // equals [|src_first|, |src_last|) with the sequence at |replacement_first| of // the same length. Returns true on success. If non-NULL, |replacements_made| // is set to true/false accordingly. bool ReplaceAll(uint8_t* dest_first, uint8_t* dest_last, const uint8_t* src_first, const uint8_t* src_last, const uint8_t* replacement_first, bool* replacements_made) { bool result = true; bool changed = false; do { dest_first = std::search(dest_first, dest_last, src_first, src_last); if (dest_first == dest_last) break; changed = true; if (memcpy_s(dest_first, dest_last - dest_first, replacement_first, src_last - src_first) != 0) { result = false; break; } dest_first += (src_last - src_first); } while (true); if (replacements_made != NULL) *replacements_made = changed; return result; } // A context structure in support of our EnumResource_Fn callback. struct VisitResourceContext { ChromeVersion current_version; std::wstring current_version_str; ChromeVersion new_version; std::wstring new_version_str; }; // struct VisitResourceContext // Replaces the old version with the new in a resource. A first pass is made to // replace the string form (e.g., "9.0.584.0"). If any replacements are made, a // second pass is made to replace the binary form (e.g., 0x0000024800000009). // A final pass is made to replace the ASCII string form. void VisitResource(const upgrade_test::EntryPath& path, uint8_t* data, DWORD size, DWORD code_page, uintptr_t context) { VisitResourceContext& ctx = *reinterpret_cast(context); // Replace all occurrences of current_version_str with new_version_str bool changing_version = false; if (ReplaceAll( data, data + size, reinterpret_cast(ctx.current_version_str.c_str()), reinterpret_cast(ctx.current_version_str.c_str() + ctx.current_version_str.size() + 1), reinterpret_cast(ctx.new_version_str.c_str()), &changing_version) && changing_version) { // Replace all binary occurrences of current_version with new_version. struct VersionPair { DWORD high; DWORD low; }; VersionPair cur_ver = { ctx.current_version.high(), ctx.current_version.low() }; VersionPair new_ver = { ctx.new_version.high(), ctx.new_version.low() }; ReplaceAll(data, data + size, reinterpret_cast(&cur_ver), reinterpret_cast(&cur_ver) + sizeof(cur_ver), reinterpret_cast(&new_ver), NULL); } // Replace all ASCII occurrences of current_version with new_version. std::string current_version(ctx.current_version.ToASCII()); std::string new_version(ctx.new_version.ToASCII()); ReplaceAll( data, data + size, reinterpret_cast(¤t_version[0]), reinterpret_cast(¤t_version[current_version.size()]), reinterpret_cast(&new_version[0]), NULL); } // Updates the version strings and numbers in all of |image_file|'s resources. bool UpdateVersionIfMatch(const base::FilePath& image_file, VisitResourceContext* context) { if (!context || context->current_version_str.size() < context->new_version_str.size()) { return false; } bool result = false; uint32_t flags = base::File::FLAG_OPEN | base::File::FLAG_READ | base::File::FLAG_WRITE | base::File::FLAG_EXCLUSIVE_READ | base::File::FLAG_EXCLUSIVE_WRITE; base::File file(image_file, flags); // It turns out that the underlying CreateFile can fail due to unhelpful // security software locking the newly created DLL. So add a few brief // retries to help tests that use this pass on machines thusly encumbered. int retries = 3; while (!file.IsValid() && retries-- > 0) { LOG(WARNING) << "Failed to open \"" << image_file.value() << "\"." << " Retrying " << retries << " more times."; Sleep(1000); file.Initialize(image_file, flags); } if (file.IsValid()) { MappedFile image_mapping; if (image_mapping.Initialize(std::move(file))) { base::win::PEImageAsData image( reinterpret_cast(image_mapping.data())); // PEImage class does not support other-architecture images. if (image.GetNTHeaders()->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR_MAGIC) { result = upgrade_test::EnumResources( image, &VisitResource, reinterpret_cast(context)); } else { result = true; } } } else { PLOG(DFATAL) << "Failed to open \"" << image_file.value() << "\""; } return result; } bool UpdateManifestVersion(const base::FilePath& manifest, VisitResourceContext* context) { std::string contents; if (!base::ReadFileToString(manifest, &contents)) return false; std::string old_version(context->current_version.ToASCII()); std::string new_version(context->new_version.ToASCII()); bool modified = false; if (!ReplaceAll(reinterpret_cast(&contents[0]), reinterpret_cast(&contents[contents.size()]), reinterpret_cast(&old_version[0]), reinterpret_cast(&old_version[old_version.size()]), reinterpret_cast(&new_version[0]), &modified)) { return false; } DCHECK(modified); int written = base::WriteFile(manifest, &contents[0], static_cast(contents.size())); return written != -1 && static_cast(written) == contents.size(); } bool IncrementNewVersion(upgrade_test::Direction direction, VisitResourceContext* ctx) { DCHECK(ctx); // Figure out a past or future version with the same string length as this one // by decrementing or incrementing each component. LONGLONG incrementer = (direction == upgrade_test::PREVIOUS_VERSION ? -1 : 1); do { if (incrementer == 0) { LOG(DFATAL) << "Improbable version at the cusp of complete rollover"; return false; } ctx->new_version.set_value(ctx->current_version.value() + incrementer); ctx->new_version_str = ctx->new_version.ToString(); incrementer <<= 16; } while (ctx->new_version_str.size() != ctx->current_version_str.size()); return true; } // Raises or lowers the version of all .exe and .dll files in |work_dir| as well // as the |work-dir|\Chrome-bin\w.x.y.z directory. |original_version| and // |new_version|, when non-null, are given the original and new version numbers // on success. bool ApplyAlternateVersion(const base::FilePath& work_dir, upgrade_test::Direction direction, std::wstring* original_version, std::wstring* new_version) { VisitResourceContext ctx; if (!GetSetupExeVersion(work_dir, &ctx.current_version)) return false; ctx.current_version_str = ctx.current_version.ToString(); if (!IncrementNewVersion(direction, &ctx)) return false; // Modify all .dll and .exe files with the current version. base::FileEnumerator all_files(work_dir, true, base::FileEnumerator::FILES); while (true) { base::FilePath file = all_files.Next(); if (file.empty()) break; std::wstring extension = file.Extension(); if ((extension == &kExtExe[0] || extension == &kExtDll[0]) && !UpdateVersionIfMatch(file, &ctx)) { return false; } } // Change the versioned directory. base::FilePath chrome_bin = work_dir.Append(&kChromeBin[0]); if (!base::Move(chrome_bin.Append(ctx.current_version_str), chrome_bin.Append(ctx.new_version_str))) { return false; } // Update the manifest (revise post-XP; see https://crbug.com/581133). base::FilePath current_manifest = chrome_bin.Append(ctx.new_version_str) .Append(ctx.current_version_str + L".manifest"); if (base::PathExists(current_manifest)) { base::FilePath new_manifest = current_manifest.DirName().Append(ctx.new_version_str + L".manifest"); if (!base::Move(current_manifest, new_manifest) || !UpdateManifestVersion(new_manifest, &ctx)) { return false; } } // Report the version numbers if requested. if (original_version) original_version->assign(ctx.current_version_str); if (new_version) new_version->assign(ctx.new_version_str); return true; } // Returns the path to the directory holding the 7za executable. By default, it // is assumed that the test resides in the tree's output directory, so the // relative path "..\..\third_party\lzma_sdk\Executable" is applied to the host // executable's directory. This can be overridden with the --7za_path // command-line switch. base::FilePath Get7zaPath() { base::FilePath l7za_path = base::CommandLine::ForCurrentProcess()->GetSwitchValuePath( &kSwitch7zaPath[0]); if (l7za_path.empty()) { base::FilePath dir_exe; if (!PathService::Get(base::DIR_EXE, &dir_exe)) LOG(DFATAL) << "Failed getting directory of host executable"; l7za_path = dir_exe.Append(&k7zaPathRelative[0]); } return l7za_path; } bool CreateArchive(const base::FilePath& output_file, const base::FilePath& input_path, int compression_level) { DCHECK(compression_level == 0 || compression_level >= 1 && compression_level <= 9 && (compression_level & 0x01) != 0); std::wstring command_line(1, L'"'); command_line .append(Get7zaPath().Append(&k7zaExe[0]).value()) .append(L"\" a -bd -t7z \"") .append(output_file.value()) .append(L"\" \"") .append(input_path.value()) .append(L"\" -mx") .append(1, L'0' + compression_level); int exit_code; if (!RunProcessAndWait(NULL, command_line, &exit_code)) return false; if (exit_code != 0) { LOG(DFATAL) << Get7zaPath().Append(&k7zaExe[0]).value() << " exited with code " << exit_code << " while creating " << output_file.value(); return false; } return true; } } // namespace namespace upgrade_test { bool GenerateAlternateVersion(const base::FilePath& original_installer_path, const base::FilePath& target_path, Direction direction, std::wstring* original_version, std::wstring* new_version) { // Create a temporary directory in which we'll do our work. ScopedTempDirectory work_dir; if (!work_dir.Initialize()) return false; // Copy the original mini_installer. base::FilePath mini_installer = work_dir.directory().Append(original_installer_path.BaseName()); if (!base::CopyFile(original_installer_path, mini_installer)) { LOG(DFATAL) << "Failed copying \"" << original_installer_path.value() << "\" to \"" << mini_installer.value() << "\""; return false; } base::FilePath setup_ex_ = work_dir.directory().Append(&kSetupEx_[0]); base::FilePath chrome_packed_7z; // Empty for component builds. base::FilePath chrome_7z; const wchar_t* archive_resource_name = nullptr; base::FilePath* archive_file = nullptr; // Load the original file and extract setup.ex_ and chrome.packed.7z { ResourceLoader resource_loader; std::pair resource_data; if (!resource_loader.Initialize(mini_installer)) return false; // Write out setup.ex_ if (!resource_loader.Load(&kSetupEx_[0], &kBl[0], &resource_data)) return false; int written = base::WriteFile(setup_ex_, reinterpret_cast(resource_data.first), static_cast(resource_data.second)); if (written != static_cast(resource_data.second)) { LOG(DFATAL) << "Failed writing \"" << setup_ex_.value() << "\""; return false; } // Write out chrome.packed.7z (static build) or chrome.7z (component build) if (resource_loader.Load(&kChromePacked7z[0], &kB7[0], &resource_data)) { archive_resource_name = &kChromePacked7z[0]; chrome_packed_7z = work_dir.directory().Append(archive_resource_name); archive_file = &chrome_packed_7z; } else if (resource_loader.Load(&kChrome7z[0], &kB7[0], &resource_data)) { archive_resource_name = &kChrome7z[0]; chrome_7z = work_dir.directory().Append(archive_resource_name); archive_file = &chrome_7z; } else { return false; } DCHECK(archive_resource_name); DCHECK(!chrome_packed_7z.empty() || !chrome_7z.empty()); DCHECK(archive_file); written = base::WriteFile( *archive_file, reinterpret_cast(resource_data.first), static_cast(resource_data.second)); if (written != static_cast(resource_data.second)) { LOG(DFATAL) << "Failed writing \"" << archive_file->value() << "\""; return false; } } // Expand setup.ex_ base::FilePath setup_exe = setup_ex_.ReplaceExtension(&kExe[0]); std::wstring command_line; command_line.append(1, L'"') .append(&kExpandExe[0]) .append(L"\" \"") .append(setup_ex_.value()) .append(L"\" \"") .append(setup_exe.value()) .append(1, L'\"'); int exit_code; if (!RunProcessAndWait(NULL, command_line, &exit_code)) return false; if (exit_code != 0) { LOG(DFATAL) << &kExpandExe[0] << " exited with code " << exit_code; return false; } // Unpack chrome.packed.7z (static build only). if (!chrome_packed_7z.empty()) { base::string16 chrome_7z_name; if (LzmaUtil::UnPackArchive(chrome_packed_7z.value(), work_dir.directory().value(), &chrome_7z_name) != NO_ERROR) { LOG(DFATAL) << "Failed unpacking \"" << chrome_packed_7z.value() << "\""; return false; } chrome_7z = base::FilePath(chrome_7z_name); } DCHECK(!chrome_7z.empty()); // Unpack chrome.7z if (LzmaUtil::UnPackArchive(chrome_7z.value(), work_dir.directory().value(), NULL) != NO_ERROR) { LOG(DFATAL) << "Failed unpacking \"" << chrome_7z.value() << "\""; return false; } // Get rid of intermediate files if (!base::DeleteFile(chrome_7z, false) || (!chrome_packed_7z.empty() && !base::DeleteFile(chrome_packed_7z, false)) || !base::DeleteFile(setup_ex_, false)) { LOG(DFATAL) << "Failed deleting intermediate files"; return false; } // Increment the version in all files. ApplyAlternateVersion(work_dir.directory(), direction, original_version, new_version); // Pack up files into chrome.7z if (!CreateArchive(chrome_7z, work_dir.directory().Append(&kChromeBin[0]), 0)) return false; // Compress chrome.7z into chrome.packed.7z for static builds. if (!chrome_packed_7z.empty() && !CreateArchive(chrome_packed_7z, chrome_7z, 9)) { return false; } // Compress setup.exe into setup.ex_ command_line.assign(1, L'"') .append(&kMakeCab[0]) .append(L"\" /D CompressionType=LZX /L \"") .append(work_dir.directory().value()) .append(L"\" \"") .append(setup_exe.value()); if (!RunProcessAndWait(NULL, command_line, &exit_code)) return false; if (exit_code != 0) { LOG(DFATAL) << &kMakeCab[0] << " exited with code " << exit_code; return false; } // Replace the mini_installer's setup.ex_ and chrome.packed.7z (or chrome.7z // in component builds) resources. ResourceUpdater updater; if (!updater.Initialize(mini_installer) || !updater.Update(&kSetupEx_[0], &kBl[0], MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US), setup_ex_) || !updater.Update(archive_resource_name, &kB7[0], MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US), *archive_file) || !updater.Commit()) { LOG(ERROR) << "It is common for this step to fail for very large resources," " as is the case for Debug component=shared_library builds. " "Try with a Release or component=static_library build."; return false; } // Finally, move the updated mini_installer into place. return base::Move(mini_installer, target_path); } bool GenerateAlternatePEFileVersion(const base::FilePath& original_file, const base::FilePath& target_file, Direction direction) { VisitResourceContext ctx; if (!GetFileVersion(original_file, &ctx.current_version)) { LOG(DFATAL) << "Failed reading version from \"" << original_file.value() << "\""; return false; } ctx.current_version_str = ctx.current_version.ToString(); if (!IncrementNewVersion(direction, &ctx)) { LOG(DFATAL) << "Failed to increment version from \"" << original_file.value() << "\""; return false; } Version new_version(base::UTF16ToASCII(ctx.new_version_str)); GenerateSpecificPEFileVersion(original_file, target_file, new_version); return true; } bool GenerateSpecificPEFileVersion(const base::FilePath& original_file, const base::FilePath& target_file, const Version& version) { // First copy original_file to target_file. if (!base::CopyFile(original_file, target_file)) { LOG(DFATAL) << "Failed copying \"" << original_file.value() << "\" to \"" << target_file.value() << "\""; return false; } VisitResourceContext ctx; if (!GetFileVersion(target_file, &ctx.current_version)) { LOG(DFATAL) << "Failed reading version from \"" << target_file.value() << "\""; return false; } ctx.current_version_str = ctx.current_version.ToString(); ctx.new_version = ChromeVersion::FromString(version.GetString()); ctx.new_version_str = ctx.new_version.ToString(); return UpdateVersionIfMatch(target_file, &ctx); } } // namespace upgrade_test