1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/zucchini/main_utils.h"
#include <stddef.h>
#include <memory>
#include <ostream>
#include <string>
#include <string_view>
#include <vector>
#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/logging.h"
#include "base/process/process_handle.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "components/zucchini/io_utils.h"
#include "components/zucchini/version_info.h"
#include "components/zucchini/zucchini_commands.h"
#if BUILDFLAG(IS_WIN)
// clang-format off
#include <windows.h> // Must be in front of other Windows header files.
// clang-format on
#include <psapi.h>
#endif
namespace {
/******** Command ********/
// Specifications for a Zucchini command.
struct Command {
constexpr Command(const char* name_in,
const char* usage_in,
int num_args_in,
CommandFunction command_function_in)
: name(name_in),
usage(usage_in),
num_args(num_args_in),
command_function(command_function_in) {}
Command(const Command&) = default;
~Command() = default;
// Unique name of command. |-name| is used to select from command-line.
const char* const name;
// Usage help text of command.
const char* const usage;
// Number of arguments (assumed to be filenames) used by the command.
const int num_args;
// Main function to run for the command.
const CommandFunction command_function;
};
/******** List of Zucchini commands ********/
constexpr Command kCommands[] = {
{"gen",
"-gen <old_file> <new_file> <patch_file> [-raw] [-keep]"
" [-start-scan-at=#] [-impose=#+#=#+#,#+#=#+#,...]",
3, &MainGen},
{"apply", "-apply <old_file> <patch_file> <new_file> [-keep]", 3,
&MainApply},
{"verify", "-verify <patch_file>", 1, &MainVerify},
{"read", "-read <exe> [-dump]", 1, &MainRead},
{"detect", "-detect <archive_file> [-start-scan-at=#]", 1, &MainDetect},
{"match",
"-match <old_file> <new_file> [-start-scan-at=#]"
" [-impose=#+#=#+#,#+#=#+#,...]",
2, &MainMatch},
{"crc32", "-crc32 <file>", 1, &MainCrc32},
{"suffix-array", "-suffix-array <file>", 1, &MainSuffixArray},
};
/******** GetPeakMemoryMetrics ********/
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
// Linux does not have an exact mapping to the values used on Windows so use a
// close approximation:
// peak_virtual_memory ~= peak_page_file_usage
// resident_set_size_hwm (high water mark) ~= peak_working_set_size
//
// On failure the input values will be set to 0.
void GetPeakMemoryMetrics(size_t* peak_virtual_memory,
size_t* resident_set_size_hwm) {
*peak_virtual_memory = 0;
*resident_set_size_hwm = 0;
auto status_path =
base::FilePath("/proc")
.Append(base::NumberToString(base::GetCurrentProcessHandle()))
.Append("status");
std::string contents_string;
base::ReadFileToString(status_path, &contents_string);
std::vector<std::string_view> lines = base::SplitStringPiece(
contents_string, "\n", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
for (const auto& line : lines) {
// Tokens should generally be of the form "Metric: <val> kB"
std::vector<std::string_view> tokens = base::SplitStringPiece(
line, " ", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
if (tokens.size() < 2)
continue;
if (tokens[0] == "VmPeak:") {
if (base::StringToSizeT(tokens[1], peak_virtual_memory)) {
*peak_virtual_memory *= 1024; // in kiB
if (*resident_set_size_hwm)
return;
}
} else if (tokens[0] == "VmHWM:") {
if (base::StringToSizeT(tokens[1], resident_set_size_hwm)) {
*resident_set_size_hwm *= 1024; // in kiB
if (*peak_virtual_memory)
return;
}
}
}
}
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_WIN)
// On failure the input values will be set to 0.
void GetPeakMemoryMetrics(size_t* peak_page_file_usage,
size_t* peak_working_set_size) {
*peak_page_file_usage = 0;
*peak_working_set_size = 0;
PROCESS_MEMORY_COUNTERS pmc;
if (::GetProcessMemoryInfo(::GetCurrentProcess(), &pmc, sizeof(pmc))) {
*peak_page_file_usage = pmc.PeakPagefileUsage;
*peak_working_set_size = pmc.PeakWorkingSetSize;
}
}
#endif // BUILDFLAG(IS_WIN)
/******** ScopedResourceUsageTracker ********/
// A class to track and log system resource usage.
class ScopedResourceUsageTracker {
public:
// Initializes states for tracking.
ScopedResourceUsageTracker() {
start_time_ = base::TimeTicks::Now();
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_WIN)
GetPeakMemoryMetrics(&start_peak_page_file_usage_,
&start_peak_working_set_size_);
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_WIN)
}
// Computes and prints usage.
~ScopedResourceUsageTracker() {
base::TimeTicks end_time = base::TimeTicks::Now();
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_WIN)
size_t cur_peak_page_file_usage = 0;
size_t cur_peak_working_set_size = 0;
GetPeakMemoryMetrics(&cur_peak_page_file_usage, &cur_peak_working_set_size);
LOG(INFO) << "Zucchini.PeakPagefileUsage "
<< cur_peak_page_file_usage / 1024 << " KiB";
LOG(INFO) << "Zucchini.PeakPagefileUsageChange "
<< (cur_peak_page_file_usage - start_peak_page_file_usage_) / 1024
<< " KiB";
LOG(INFO) << "Zucchini.PeakWorkingSetSize "
<< cur_peak_working_set_size / 1024 << " KiB";
LOG(INFO) << "Zucchini.PeakWorkingSetSizeChange "
<< (cur_peak_working_set_size - start_peak_working_set_size_) /
1024
<< " KiB";
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_WIN)
LOG(INFO) << "Zucchini.TotalTime " << (end_time - start_time_).InSecondsF()
<< " s";
}
private:
base::TimeTicks start_time_;
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_WIN)
size_t start_peak_page_file_usage_ = 0;
size_t start_peak_working_set_size_ = 0;
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_WIN)
};
/******** Helper functions ********/
// Translates |command_line| arguments to a vector of base::FilePath (expecting
// exactly |expected_count|). On success, writes the results to |paths| and
// returns true. Otherwise returns false.
bool CheckAndGetFilePathParams(const base::CommandLine& command_line,
size_t expected_count,
std::vector<base::FilePath>* paths) {
const base::CommandLine::StringVector& args = command_line.GetArgs();
if (args.size() != expected_count)
return false;
paths->clear();
paths->reserve(args.size());
for (const auto& arg : args)
paths->emplace_back(arg);
return true;
}
// Prints main Zucchini usage text.
void PrintUsage(std::ostream& err) {
err << "Version: " << zucchini::kMajorVersion << "."
<< zucchini::kMinorVersion << std::endl;
err << "Usage:" << std::endl;
for (const Command& command : kCommands)
err << " zucchini " << command.usage << std::endl;
}
} // namespace
/******** Exported Functions ********/
zucchini::status::Code RunZucchiniCommand(const base::CommandLine& command_line,
std::ostream& out,
std::ostream& err) {
// Look for a command with name that matches input.
const Command* command_use = nullptr;
for (const Command& command : kCommands) {
if (command_line.HasSwitch(command.name)) {
if (command_use) { // Too many commands found.
command_use = nullptr; // Set to null to flag error.
break;
}
command_use = &command;
}
}
// Expect exactly 1 matching command. If 0 or >= 2, print usage and quit.
if (!command_use) {
err << "Must have exactly one of:" << std::endl;
err << " [";
zucchini::PrefixSep sep(", ");
for (const Command& command : kCommands)
err << sep << "-" << command.name;
err << "]" << std::endl;
PrintUsage(err);
return zucchini::status::kStatusInvalidParam;
}
// Try to parse filename arguments. On failure, print usage and quit.
std::vector<base::FilePath> paths;
if (!CheckAndGetFilePathParams(command_line, command_use->num_args, &paths)) {
err << command_use->usage << std::endl;
PrintUsage(err);
return zucchini::status::kStatusInvalidParam;
}
ScopedResourceUsageTracker resource_usage_tracker;
return command_use->command_function(
{raw_ref(command_line), raw_ref(paths), raw_ref(out), raw_ref(err)});
}
|