recovery: Clean up get_args().

Test: Boot into new recovery image, verify the parsed parameters.
Change-Id: Ieefafb26cc4147ce4cb9ced4297cdb3b5d1d3789
This commit is contained in:
Tao Bao 2016-12-02 11:32:19 -08:00
parent d2c56629ab
commit f0ed159f48

View file

@ -186,9 +186,6 @@ struct selabel_handle* sehandle;
* 9. main() calls reboot() to boot main system * 9. main() calls reboot() to boot main system
*/ */
static const int MAX_ARG_LENGTH = 4096;
static const int MAX_ARGS = 100;
// open a given path, mounting partitions as necessary // open a given path, mounting partitions as necessary
FILE* fopen_path(const char *path, const char *mode) { FILE* fopen_path(const char *path, const char *mode) {
if (ensure_path_mounted(path) != 0) { if (ensure_path_mounted(path) != 0) {
@ -310,79 +307,68 @@ static void redirect_stdio(const char* filename) {
// - the actual command line // - the actual command line
// - the bootloader control block (one per line, after "recovery") // - the bootloader control block (one per line, after "recovery")
// - the contents of COMMAND_FILE (one per line) // - the contents of COMMAND_FILE (one per line)
static void static std::vector<std::string> get_args(const int argc, char** const argv) {
get_args(int *argc, char ***argv) { CHECK_GT(argc, 0);
bootloader_message boot = {};
std::string err;
if (!read_bootloader_message(&boot, &err)) {
LOG(ERROR) << err;
// If fails, leave a zeroed bootloader_message.
memset(&boot, 0, sizeof(boot));
}
stage = strndup(boot.stage, sizeof(boot.stage));
if (boot.command[0] != 0) { bootloader_message boot = {};
std::string boot_command = std::string(boot.command, sizeof(boot.command)); std::string err;
LOG(INFO) << "Boot command: " << boot_command; if (!read_bootloader_message(&boot, &err)) {
} LOG(ERROR) << err;
// If fails, leave a zeroed bootloader_message.
boot = {};
}
stage = strndup(boot.stage, sizeof(boot.stage));
if (boot.status[0] != 0) { if (boot.command[0] != 0) {
std::string boot_status = std::string(boot.status, sizeof(boot.status)); std::string boot_command = std::string(boot.command, sizeof(boot.command));
LOG(INFO) << "Boot status: " << boot_status; LOG(INFO) << "Boot command: " << boot_command;
} }
// --- if arguments weren't supplied, look in the bootloader control block if (boot.status[0] != 0) {
if (*argc <= 1) { std::string boot_status = std::string(boot.status, sizeof(boot.status));
boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination LOG(INFO) << "Boot status: " << boot_status;
const char *arg = strtok(boot.recovery, "\n"); }
if (arg != NULL && !strcmp(arg, "recovery")) {
*argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
(*argv)[0] = strdup(arg);
for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
if ((arg = strtok(NULL, "\n")) == NULL) break;
(*argv)[*argc] = strdup(arg);
}
LOG(INFO) << "Got arguments from boot message";
} else if (boot.recovery[0] != 0) {
std::string boot_recovery = std::string(boot.recovery, 20);
LOG(ERROR) << "Bad boot message\n" << "\"" <<boot_recovery << "\"";
}
}
// --- if that doesn't work, try the command file (if we have /cache). std::vector<std::string> args(argv, argv + argc);
if (*argc <= 1 && has_cache) {
FILE *fp = fopen_path(COMMAND_FILE, "r");
if (fp != NULL) {
char *token;
char *argv0 = (*argv)[0];
*argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
(*argv)[0] = argv0; // use the same program name
char buf[MAX_ARG_LENGTH]; // --- if arguments weren't supplied, look in the bootloader control block
for (*argc = 1; *argc < MAX_ARGS; ++*argc) { if (argc == 1) {
if (!fgets(buf, sizeof(buf), fp)) break; boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
token = strtok(buf, "\r\n"); std::string boot_recovery(boot.recovery);
if (token != NULL) { std::vector<std::string> tokens = android::base::Split(boot_recovery, "\n");
(*argv)[*argc] = strdup(token); // Strip newline. if (!tokens.empty() && tokens[0] == "recovery") {
} else { for (auto it = tokens.begin() + 1; it != tokens.end(); it++) {
--*argc; // Skip empty and '\0'-filled tokens.
} if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
} }
LOG(INFO) << "Got " << args.size() << " arguments from boot message";
} else if (boot.recovery[0] != 0) {
LOG(ERROR) << "Bad boot message: \"" << boot_recovery << "\"";
}
}
check_and_fclose(fp, COMMAND_FILE); // --- if that doesn't work, try the command file (if we have /cache).
LOG(INFO) << "Got arguments from " << COMMAND_FILE; if (argc == 1 && has_cache) {
} std::string content;
if (android::base::ReadFileToString(COMMAND_FILE, &content)) {
std::vector<std::string> tokens = android::base::Split(content, "\n");
for (auto it = tokens.begin() + 1; it != tokens.end(); it++) {
// Skip empty and '\0'-filled tokens.
if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
}
LOG(INFO) << "Got " << args.size() << " arguments from " << COMMAND_FILE;
} }
}
// --> write the arguments we have back into the bootloader control block // Write the arguments (excluding the filename in args[0]) back into the
// always boot into recovery after this (until finish_recovery() is called) // bootloader control block. So the device will always boot into recovery to
std::vector<std::string> options; // finish the pending work, until finish_recovery() is called.
for (int i = 1; i < *argc; ++i) { std::vector<std::string> options(args.cbegin() + 1, args.cend());
options.push_back((*argv)[i]); if (!write_bootloader_message(options, &err)) {
} LOG(ERROR) << err;
if (!write_bootloader_message(options, &err)) { }
LOG(ERROR) << err;
} return args;
} }
static void static void
@ -1430,7 +1416,10 @@ int main(int argc, char **argv) {
load_volume_table(); load_volume_table();
has_cache = volume_for_path(CACHE_ROOT) != nullptr; has_cache = volume_for_path(CACHE_ROOT) != nullptr;
get_args(&argc, &argv); std::vector<std::string> args = get_args(argc, argv);
std::vector<char*> args_to_parse(args.size());
std::transform(args.cbegin(), args.cend(), args_to_parse.begin(),
[](const std::string& arg) { return const_cast<char*>(arg.c_str()); });
const char *update_package = NULL; const char *update_package = NULL;
bool should_wipe_data = false; bool should_wipe_data = false;
@ -1447,7 +1436,8 @@ int main(int argc, char **argv) {
int arg; int arg;
int option_index; int option_index;
while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) { while ((arg = getopt_long(args_to_parse.size(), args_to_parse.data(), "", OPTIONS,
&option_index)) != -1) {
switch (arg) { switch (arg) {
case 'n': android::base::ParseInt(optarg, &retry_count, 0); break; case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
case 'u': update_package = optarg; break; case 'u': update_package = optarg; break;
@ -1529,8 +1519,8 @@ int main(int argc, char **argv) {
device->StartRecovery(); device->StartRecovery();
printf("Command:"); printf("Command:");
for (arg = 0; arg < argc; arg++) { for (const auto& arg : args) {
printf(" \"%s\"", argv[arg]); printf(" \"%s\"", arg.c_str());
} }
printf("\n"); printf("\n");