安卓recovery流程分析【第一篇】

Android支持Recovery模式。在某些操作之后,系统会自动重启并进入到Recovery模式,用户按组合键开机(HOME+POWER),也可进入Recovery模式。该模式提供如下功能:

1、擦除用户数据
恢复系统到出厂模式,即擦除用户数据和缓存数据。

2、系统升级
系统升级的概念比较广,包括系统文件的升级、恢复损害的系统数据、firmware的升级,以及应用软件的维护,甚至影音文件的下载。系统升级需要使用特定的升级包,Android使用OTA[1]升级包,
其初衷在于可以发挥广域无线通信链路的优势,如3G。

首先,要说明的是,我想知道或得到recovery过长的所有详细log信息,这样以便于分析recovery的工作流程。

但是log 不能保存到/data 或者 /cache ,又不能保存到/tmp目录下,

因为下次开机的时候,/tmp目录的内容又会清空。

所以只能格式化之后,factory reset 彻底成功后,才把log 从/tmp 拷贝到 /cache下。

// 临时目录

static const char *TEMPORARY_LOG_FILE = “/tmp/recovery.log”;

// 所有log
static const char *LOG_FILE = “/cache/recovery/log”;

// 最后一部分log
static const char *LAST_LOG_FILE = “/cache/recovery/last_log”;

// factory reset 彻底成功后,会执行
static void finish_recovery(const char *send_intent) {
{
// Copy logs to cache so the system can find out what happened.
copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true); //追加
copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false); //直接覆盖
copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);

}

// 拷贝文件的实现
static void
copy_log_file(const char* source, const char* destination, int append) {
FILE *log = fopen_path(destination, append ? “a” : “w”);
if (log == NULL) {
LOGE(“Can’t open %s\n”, destination);
} else {
FILE *tmplog = fopen(source, “r”);
if (tmplog != NULL) {
if (append) {
fseek(tmplog, tmplog_offset, SEEK_SET); // Since last write
}
char buf[4096];
while (fgets(buf, sizeof(buf), tmplog)) fputs(buf, log);
if (append) {
tmplog_offset = ftell(tmplog);
}
check_and_fclose(tmplog, source);
}
check_and_fclose(log, destination);
}
}

我们知道,当我们通过按键或者应用进入recovery模式,实质是kernel起来后加载recovery.img,kernel起来后执行的第一个进程就是init,此进程会读入init.rc启动相应的服务。在recovery模式中,
启动的服务是执行recovery可执行文件,此文件是bootable/recovery/recovery.cpp文件生成的,我们就从recovery.cpp文件开始分析。

下面的代码位于bootable/recovery/etc/init.rc,由此可知,进入recovery模式后会执行sbin /recovery,此文件是bootable/recovery/recovery.cpp生成(可查看对应目录的Android.mk查看),
所以recovery.cpp是recovery模式的入口。

service recovery /sbin/recovery
seclabel u:r:recovery:s0

bootable/recovery/recovery.cpp

int
main(int argc, char **argv) {
 time_t start = time(NULL);
redirect_stdio(TEMPORARY_LOG_FILE);

// If this binary is started with the single argument "--adbd",        如果二进制文件使用单个参数"--adbd"启动
// instead of being the normal recovery binary, it turns into kind     而不是正常的recovery启动(不带参数即为正常启动)
// of a stripped-down version of adbd that only supports the           它变成精简版命令时只支持sideload命令。它必须是一个正确可用的参数
// 'sideload' command.  Note this must be a real argument, not         不在/cache/recovery/command中,也不受B2B控制
// anything in the command file or bootloader control block; the       
// only way recovery should be run with this argument is when it       是apply_from_adb()的副本
// starts a copy of itself from the apply_from_adb() function.
if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
    adb_main(0, DEFAULT_ADB_PORT);
    return 0;
}

printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));

load_volume_table();                //加载并建立分区表
get_args(&argc, &argv);             //从传入的参数或/cache/recovery/command文件中得到相应的命令

const char *send_intent = NULL;
const char *update_package = NULL;
bool should_wipe_data = false;
bool should_wipe_cache = false;
bool show_text = false;
bool sideload = false;
bool sideload_auto_reboot = false;
bool just_exit = false;
bool shutdown_after = false;


int arg;
while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {         //while循环解析command或者传入的参数,并把对应的功能设置为true或给相应的变量赋值
    switch (arg) {
    case 'i': send_intent = optarg; break;
    case 'u': update_package = optarg; break;
    case 'w': should_wipe_data = true; break;
    case 'c': should_wipe_cache = true; break;
    case 't': show_text = true; break;
    case 's': sideload = true; break;
    case 'a': sideload = true; sideload_auto_reboot = true; break;
    case 'x': just_exit = true; break;
    case 'l': locale = optarg; break;
    case 'g': {
        if (stage == NULL || *stage == '\0') {
            char buffer[20] = "1/";
            strncat(buffer, optarg, sizeof(buffer)-3);
            stage = strdup(buffer);
        }
        break;
    }
    case 'p': shutdown_after = true; break;
    case 'r': reason = optarg; break;
    case '?':
        LOGE("Invalid command argument\n");
        continue;
    }
}

if (locale == NULL) {          //设置语言
    load_locale_from_cache();
}
printf("locale is [%s]\n", locale);
printf("stage is [%s]\n", stage);
printf("reason is [%s]\n", reason);
/*初始化UI*/
 Device* device = make_device();
 ui = device->GetUI();
gCurrentUI = ui;
show_text = true;
ui->SetLocale(locale);
ui->Init();



int st_cur, st_max;
if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
    ui->SetStage(st_cur, st_max);
}

ui->SetBackground(RecoveryUI::NONE);           //设置recovery界面背景
if (show_text) ui->ShowText(true);             //设置界面上是否能够显示字符,使能ui->print函数开关

struct selinux_opt seopts[] = {                //设置selinux权限    
  { SELABEL_OPT_PATH, "/file_contexts" }
};

sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);

if (!sehandle) {
    ui->Print("Warning: No file_contexts\n");
}

device->StartRecovery();       //此函数为空,没做任何事情

printf("Command:");                      //打印/cache/recovery/command的参数
for (arg = 0; arg < argc; arg++) {
    printf(" \"%s\"", argv[arg]);
}
printf("\n");

if (update_package) {                          //根据下面的注释可知,对old "root" 路径进行修改,把其放在/cache/文件中 。  当安装包的路径是以CACHE:开头,把其改为/cache/开头                               
    // For backwards compatibility on the cache partition only, if
    // we're given an old 'root' path "CACHE:foo", change it to
    // "/cache/foo".
    if (strncmp(update_package, "CACHE:", 6) == 0) {
        int len = strlen(update_package) + 10;
        char* modified_path = (char*)malloc(len);
        strlcpy(modified_path, "/cache/", len);
        strlcat(modified_path, update_package+6, len);
        printf("(replacing path \"%s\" with \"%s\")\n",
               update_package, modified_path);
        update_package = modified_path;
    }
}
printf("\n");

property_list(print_property, NULL);              //打印属性列表,其实现没有找到代码在哪里,找到后会更新此文章
printf("\n");

ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);

int status = INSTALL_SUCCESS;    //设置标志位,默认为 INSTALL_SUCCESS

if (update_package != NULL) {     //install package情况
    status = install_package(update_package, &should_wipe_cache, TEMPORARY_INSTALL_FILE, true);     //安装ota升级包
    if (status == INSTALL_SUCCESS && should_wipe_cache) {   //如果安装前点击了清楚缓存,执行下面的语句,安装成功后清楚缓存
        wipe_cache(false, device);   
    }
    if (status != INSTALL_SUCCESS) {                  //安装失败,打印log,并根据is_ro_debuggable()决定是否打开ui->print信息(此信息显示在屏幕上)
        ui->Print("Installation aborted.\n");
        if (is_ro_debuggable()) {
            ui->ShowText(true);
        }
    }
} else if (should_wipe_data) {     //只清除用户数据
    if (!wipe_data(false, device)) {
        status = INSTALL_ERROR;
    }
} else if (should_wipe_cache) {    //只清除缓存
    if (!wipe_cache(false, device)) {
        status = INSTALL_ERROR;
    }
} else if (sideload) {       //执行adb reboot sideload命令后会跑到这个代码段
    // 'adb reboot sideload' acts the same as user presses key combinations
    // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
    // display will NOT be turned on by default. And it will reboot after
    // sideload finishes even if there are errors. Unless one turns on the
    // text display during the installation. This is to enable automated
    // testing.
    if (!sideload_auto_reboot) {
        ui->ShowText(true);
    }
    status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
    if (status == INSTALL_SUCCESS && should_wipe_cache) {
        if (!wipe_cache(false, device)) {
            status = INSTALL_ERROR;
        }
    }
    ui->Print("\nInstall from ADB complete (status: %d).\n", status);
    if (sideload_auto_reboot) {
        ui->Print("Rebooting automatically.\n");
    }
} else if (!just_exit) {              //当command命令中有just_exit字段
    status = INSTALL_NONE;  // No command specified
    ui->SetBackground(RecoveryUI::NONE);

    if (is_ro_debuggable()) {

        ui->ShowText(true);
    }
}

if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {   //安装失败,复制log信息到/cache/recovery/。如果进行了wipe_data/wipe_cache/apply_from_sdcard(也就是修改了flash),
 //直接return结束recovery,否则现实error背景图片
    copy_logs();
    ui->SetBackground(RecoveryUI::ERROR);
}

Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT; 
if ((status != INSTALL_SUCCESS && !sideload_auto_reboot) || ui->IsTextVisible()) {       //status在just_exit中已经变为none,会执行此if语句
#ifdef SUPPORT_UTF8_MULTILINGUAL
    ml_select(device);
#endif
    Device::BuiltinAction temp = prompt_and_wait(device, status);       //prompt_and_wait()函数是个死循环 开始显示recovery选项 并处理用户通过按键或者触摸屏的选项,如Reboot system等
    if (temp != Device::NO_ACTION) {
        after = temp;
    }
}

finish_recovery(send_intent);

switch (after) {
    case Device::SHUTDOWN:
        ui->Print("Shutting down...\n");
        property_set(ANDROID_RB_PROPERTY, "shutdown,");
        break;

    case Device::REBOOT_BOOTLOADER:
        ui->Print("Rebooting to bootloader...\n");
        property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
        break;

    default:
        char reason[PROPERTY_VALUE_MAX];
        snprintf(reason, PROPERTY_VALUE_MAX, "reboot,%s", device->GetRebootReason());
        ui->Print("Rebooting...\n");
        property_set(ANDROID_RB_PROPERTY, reason);
        break;
}
sleep(5); 
return EXIT_SUCCESS;

}

上面的代码中已经把recovery启动后的流程描述的差不多了,下面是一点细节性的描述。

1.获取command命令

get_args(&argc, &argv);

此函数没有什么可说的,先判断是否有参数传进来,如果有解析传入的命令,否则从/cache/recovery/command文件中解析命令

注意,此函数会先把struct bootloader_message boot写入到misc分区,目的是防止断电等原因导致关机,开机后lk会从misc分区中读取相关信息,如果发现是"boot-recovery"会再次进入recovery模式,
misc分区会在退出recovery时被清除,以至于可以正常开机,如果手机每次都是进入recovery而不能正常开机,可以分析是否没有清楚misc分区。

struct bootloader_message {
char command[32];
char status[32];
char recovery[768];

// The 'recovery' field used to be 1024 bytes.  It has only ever
// been used to store the recovery command line, so 768 bytes
// should be plenty.  We carve off the last 256 bytes to store the
// stage string (for multistage packages) and possible future
// expansion.
char stage[32];
char reserved[224];
};

// command line args come from, in decreasing precedence:
//   - the actual command line
//   - the bootloader control block (one per line, after "recovery")
//   - the contents of COMMAND_FILE (one per line)

 static void
 get_args(int *argc, char ***argv) {
struct bootloader_message boot;
memset(&boot, 0, sizeof(boot));
get_bootloader_message(&boot);  // this may fail, leaving a zeroed structure
stage = strndup(boot.stage, sizeof(boot.stage));

if (boot.command[0] != 0 && boot.command[0] != 255) {
    LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
}

if (boot.status[0] != 0 && boot.status[0] != 255) {
    LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
}

// --- if arguments weren't supplied, look in the bootloader control block
if (*argc <= 1) {
    boot.recovery[sizeof(boot.recovery) - 1] = '\0';  // Ensure termination
    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);
        }
        LOGI("Got arguments from boot message\n");
    } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
        LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
    }
}

// --- if that doesn't work, try the command file
if (*argc <= 1) {
    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];
        for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
            if (!fgets(buf, sizeof(buf), fp)) break;
            token = strtok(buf, "\r\n");
            if (token != NULL) {
                (*argv)[*argc] = strdup(token);  // Strip newline.
            } else {
                --*argc;
            }
        }

        check_and_fclose(fp, COMMAND_FILE);
        LOGI("Got arguments from %s\n", COMMAND_FILE);
    }
}

// --> write the arguments we have back into the bootloader control block
// always boot into recovery after this (until finish_recovery() is called)
strlcpy(boot.command, "boot-recovery", sizeof(boot.command));  //***************************************************
strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
int i;
for (i = 1; i < *argc; ++i) {
    strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
    strlcat(boot.recovery, "\n", sizeof(boot.recovery));
}
set_bootloader_message(&boot);
}

2.解析command命令

while ((arg = getopt_long(argc, argv, “”, OPTIONS, NULL)) != -1) {…}

可知从/cache/recovery/command文件中获取并与OPTIONS列表参数进行比较,把相应的字符串赋值或者修改相应的变量。

//while循环解析command或者传入的参数,并把对应的功能设置为true或给相应的变量赋值,下面是command中可能的命令及其value /*
static const struct option OPTIONS[] = {
{ "send_intent", required_argument, NULL, 'i' },
{ "update_package", required_argument, NULL, 'u' },
{ "wipe_data", no_argument, NULL, 'w' },
{ "wipe_cache", no_argument, NULL, 'c' },
{ "show_text", no_argument, NULL, 't' },
{ "sideload", no_argument, NULL, 's' },
{ "sideload_auto_reboot", no_argument, NULL, 'a' },
{ "just_exit", no_argument, NULL, 'x' },
{ "locale", required_argument, NULL, 'l' },
{ "stages", required_argument, NULL, 'g' },
{ "shutdown_after", no_argument, NULL, 'p' },
{ "reason", required_argument, NULL, 'r' },
{ NULL, 0, NULL, 0 },
};

3.安装升级包

status = install_package(update_package, &should_wipe_cache, TEMPORARY_INSTALL_FILE, true);

此函数安装升级包,update_package是路径,从/cache/recovery/command文件中解析.

static const char *TEMPORARY_INSTALL_FILE = “/tmp/last_install”; TEMPORARY_INSTALL_FILE存放升级时的log信息,后面会把此文件复制到/cache/recovery/文件中

bootable/recovery/install.cpp

 int
install_package(const char* path, bool* wipe_cache, const char* install_file,
            bool needs_mount)
{
 modified_flash = true; 

FILE* install_log = fopen_path(install_file, "w");        //打开log文件
if (install_log) {
    fputs(path, install_log);                             //向log文件中写入安装包路径
    fputc('\n', install_log);
} else {
    LOGE("failed to open last_install: %s\n", strerror(errno));
}
int result;
if (setup_install_mounts() != 0) {                       //mount /tmp和/cache ,成功返回0
    LOGE("failed to set up expected mounts for install; aborting\n");
    result = INSTALL_ERROR;
} else {
    result = really_install_package(path, wipe_cache, needs_mount);       //执行安装
}
if (install_log) {             //向log文件写入安装结果,成功写入1,失败写入0
    fputc(result == INSTALL_SUCCESS ? '1' : '0', install_log);
    fputc('\n', install_log);
    fclose(install_log);
}
return result;
}	


int setup_install_mounts() {                         //挂载/cache和/tmp分区
if (fstab == NULL) {
    LOGE("can't set up install mounts: no fstab loaded\n");
    return -1;
}
for (int i = 0; i < fstab->num_entries; ++i) {
    Volume* v = fstab->recs + i;

    if (strcmp(v->mount_point, "/tmp") == 0 ||
        strcmp(v->mount_point, "/cache") == 0) {
        if (ensure_path_mounted(v->mount_point) != 0) {
            LOGE("failed to mount %s\n", v->mount_point);
            return -1;
        }

    } else {
        if (ensure_path_unmounted(v->mount_point) != 0) {
            LOGE("failed to unmount %s\n", v->mount_point);
            return -1;
        }
    }
}
return 0;
}


static int
 really_install_package(const char *path, bool* wipe_cache, bool needs_mount)
{
ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);                   //设置背景为安装背景,就是小机器人
ui->Print("Finding update package...\n");             
// Give verification half the progress bar...
ui->SetProgressType(RecoveryUI::DETERMINATE);                            //初始化升级时进度条       
ui->ShowProgress(VERIFICATION_PROGRESS_FRACTION, VERIFICATION_PROGRESS_TIME);        //设置进度条时间
LOGI("Update location: %s\n", path);

// Map the update package into memory.
ui->Print("Opening update package...\n");

if (path && needs_mount) {                            //判断升级包所在路径是否被挂在
    ensure_path_mounted((path[0] == '@') ? path + 1 : path);
}

MemMapping map;                                 //把升级包路径映射到内存中
if (sysMapFile(path, &map) != 0) {
    LOGE("failed to map file\n");
    return INSTALL_CORRUPT;
}

int numKeys;                                   //加载密钥
Certificate* loadedKeys = load_keys(PUBLIC_KEYS_FILE, &numKeys);
if (loadedKeys == NULL) {
    LOGE("Failed to load keys\n");
    return INSTALL_CORRUPT;
}
LOGI("%d key(s) loaded from %s\n", numKeys, PUBLIC_KEYS_FILE);

ui->Print("Verifying update package...\n");

int err;                                  //校验升级包是否被修改,一般在调试ota升级时会把这段代码进行屏蔽,使本地编译的升级包可以正常升级
err = verify_file(map.addr, map.length, loadedKeys, numKeys);
free(loadedKeys);
LOGI("verify_file returned %d\n", err);
if (err != VERIFY_SUCCESS) {
    LOGE("signature verification failed\n");
    sysReleaseMap(&map);
    return INSTALL_CORRUPT;
}

/* Try to open the package.
 */
ZipArchive zip;                 //打开升级包
err = mzOpenZipArchive(map.addr, map.length, &zip);
if (err != 0) {
    LOGE("Can't open %s\n(%s)\n", path, err != -1 ? strerror(err) : "bad");
    sysReleaseMap(&map);          //这行代码很重要,只有失败时才释放map内存,结束安装。提前释放map内存会导致下面代码无法正常进行,界面上会显示失败。
    return INSTALL_CORRUPT;
}

/* Verify and install the contents of the package.
 */
ui->Print("Installing update...\n");
ui->SetEnableReboot(false);
int result = try_update_binary(path, &zip, wipe_cache);        //执行安装包内的执行脚本
ui->SetEnableReboot(true);
ui->Print("\n");

sysReleaseMap(&map);

#ifdef USE_MDTP
/* If MDTP update failed, return an error such that recovery will not finish. */
if (result == INSTALL_SUCCESS) {
    if (!mdtp_update()) {
        ui->Print("Unable to verify integrity of /system for MDTP, update aborted.\n");
        return INSTALL_ERROR;
    }
    ui->Print("Successfully verified integrity of /system for MDTP.\n");
}
#endif /* USE_MDTP */

return result;
}

install_package流程:

1).设置ui界面,包括背景和进度条

2).检查是否挂在tmp和cache,tmp存放升级log,cache存放升级包

3).加载密钥并校验升级包,防止升级包被用户自己修改

4).打开升级包,并执行升级包内的安装程序

4.执行升级包中的升级文件

try_update_binary()

 try_update_binary(const char* path, ZipArchive* zip, bool* wipe_cache) {
const ZipEntry* binary_entry =                                     //在升级包中查找是否存在 META-INF/com/google/android/update-binary文件
        mzFindZipEntry(zip, ASSUMED_UPDATE_BINARY_NAME);
if (binary_entry == NULL) {
    mzCloseZipArchive(zip);
    return INSTALL_CORRUPT;
}

const char* binary = "/tmp/update_binary";      //在tmp中创建临时文件夹,权限755
unlink(binary);
int fd = creat(binary, 0755);
if (fd < 0) {
    mzCloseZipArchive(zip);
    LOGE("Can't make %s\n", binary);
    return INSTALL_ERROR;
}
bool ok = mzExtractZipEntryToFile(zip, binary_entry, fd);     //把update.zip升级包解压到/tmp/update_binary文件夹中
sync();
close(fd);
mzCloseZipArchive(zip);

if (!ok) {
    LOGE("Can't copy %s\n", ASSUMED_UPDATE_BINARY_NAME);
    return INSTALL_ERROR;
}

int pipefd[2];
pipe(pipefd);

// When executing the update binary contained in the package, the
// arguments passed are:
//
//   - the version number for this interface
//
//   - an fd to which the program can write in order to update the
//     progress bar.  The program can write single-line commands:
//
//        progress <frac> <secs>
//            fill up the next <frac> part of of the progress bar
//            over <secs> seconds.  If <secs> is zero, use
//            set_progress commands to manually control the
//            progress of this segment of the bar.
//
//        set_progress <frac>
//            <frac> should be between 0.0 and 1.0; sets the
//            progress bar within the segment defined by the most
//            recent progress command.
//
//        firmware <"hboot"|"radio"> <filename>
//            arrange to install the contents of <filename> in the
//            given partition on reboot.
//
//            (API v2: <filename> may start with "PACKAGE:" to
//            indicate taking a file from the OTA package.)
//
//            (API v3: this command no longer exists.)
//
//        ui_print <string>
//            display <string> on the screen.
//
//        wipe_cache
//            a wipe of cache will be performed following a successful
//            installation.
//
//        clear_display
//            turn off the text display.
//
//        enable_reboot
//            packages can explicitly request that they want the user
//            to be able to reboot during installation (useful for
//            debugging packages that don't exit).
//
//   - the name of the package zip file.
//

const char** args = (const char**)malloc(sizeof(char*) * 5);          //创建指针数组,并分配内存
args[0] = binary;                                                     //[0]存放字符串 "/tmp/update_binary" ,也就是升级包解压的目的地址
args[1] = EXPAND(RECOVERY_API_VERSION);   // defined in Android.mk    //[1]存放RECOVERY_API_VERSION,在Android.mk中定义,我的值为3  RECOVERY_API_VERSION := 3
char* temp = (char*)malloc(10);
sprintf(temp, "%d", pipefd[1]);
args[2] = temp;
args[3] = (char*)path;                                                //[3]存放update.zip路径
args[4] = NULL;

pid_t pid = fork();                                                   //创建一个新进程,为子进程
if (pid == 0) {       //进程创建成功,执行META-INF/com/google/android/update-binary脚本,给脚本传入参数args
    umask(022);
    close(pipefd[0]);
    execv(binary, (char* const*)args);
    fprintf(stdout, "E:Can't run %s (%s)\n", binary, strerror(errno));
    _exit(-1);
}
close(pipefd[1]);

*wipe_cache = false;

char buffer[1024];
FILE* from_child = fdopen(pipefd[0], "r");
while (fgets(buffer, sizeof(buffer), from_child) != NULL) { //父进程通过管道pipe读取子进程的值,使用strtok分割函数把子进程传过来的参数进行解析,执行相应的ui修改
    char* command = strtok(buffer, " \n"); 
    if (command == NULL) {
        continue;
    } else if (strcmp(command, "progress") == 0) {
        char* fraction_s = strtok(NULL, " \n");
        char* seconds_s = strtok(NULL, " \n");

        float fraction = strtof(fraction_s, NULL);
        int seconds = strtol(seconds_s, NULL, 10);

        ui->ShowProgress(fraction * (1-VERIFICATION_PROGRESS_FRACTION), seconds);
    } else if (strcmp(command, "set_progress") == 0) {
        char* fraction_s = strtok(NULL, " \n");
        float fraction = strtof(fraction_s, NULL);
        ui->SetProgress(fraction);
    } else if (strcmp(command, "ui_print") == 0) {
        char* str = strtok(NULL, "\n");
        if (str) {
            ui->Print("%s", str);
        } else {
            ui->Print("\n");
        }
        fflush(stdout);
    } else if (strcmp(command, "wipe_cache") == 0) {
        *wipe_cache = true;
    } else if (strcmp(command, "clear_display") == 0) {
        ui->SetBackground(RecoveryUI::NONE);
    } else if (strcmp(command, "enable_reboot") == 0) {
        // packages can explicitly request that they want the user
        // to be able to reboot during installation (useful for
        // debugging packages that don't exit).
        ui->SetEnableReboot(true);
    } else {
        LOGE("unknown command [%s]\n", command);
    }
}
fclose(from_child);

int status;
waitpid(pid, &status, 0);
if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
    LOGE("Error in %s\n(Status %d)\n", path, WEXITSTATUS(status));
    return INSTALL_ERROR;
}

return INSTALL_SUCCESS;

}

try_update_binary流程:

  1. 查找META-INF/com/google/android/update-binary二进制脚本

  2. 解压update.zip包到/tmp/update_binary

  3. 创建子进程,执行update-binary二进制安装脚本,并通过管道与父进程通信,父进程更新ui界面。

到此,android 的 Recovery的流程已经分析完了,知道流程后再去分析Recovery的相关问题就比较容易了。

  • 1
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

零意@

您的打赏将是我继续创作的动力!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值