2010-02-12 06:27:06 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <linux/input.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/reboot.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2010-02-12 08:43:24 +00:00
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sys/limits.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
|
2010-02-12 06:27:06 +00:00
|
|
|
#include "bootloader.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "cutils/properties.h"
|
|
|
|
#include "firmware.h"
|
|
|
|
#include "install.h"
|
|
|
|
#include "minui/minui.h"
|
|
|
|
#include "minzip/DirUtil.h"
|
|
|
|
#include "roots.h"
|
|
|
|
#include "recovery_ui.h"
|
|
|
|
|
|
|
|
int signature_check_enabled = 1;
|
|
|
|
int script_assert_enabled = 1;
|
2010-02-22 05:10:25 +00:00
|
|
|
static const char *SDCARD_PACKAGE_FILE = "SDCARD:update.zip";
|
2010-02-12 06:27:06 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
toggle_signature_check()
|
|
|
|
{
|
|
|
|
signature_check_enabled = !signature_check_enabled;
|
|
|
|
ui_print("Signature Check: %s\n", signature_check_enabled ? "Enabled" : "Disabled");
|
|
|
|
}
|
|
|
|
|
|
|
|
void toggle_script_asserts()
|
|
|
|
{
|
|
|
|
script_assert_enabled = !script_assert_enabled;
|
2010-02-12 08:43:24 +00:00
|
|
|
ui_print("Script Asserts: %s\n", script_assert_enabled ? "Enabled" : "Disabled");
|
|
|
|
}
|
|
|
|
|
2010-02-22 05:10:25 +00:00
|
|
|
void install_zip(const char* packagefilepath)
|
|
|
|
{
|
|
|
|
ui_print("\n-- Installing: %s\n", packagefilepath);
|
|
|
|
set_sdcard_update_bootloader_message();
|
|
|
|
int status = install_package(packagefilepath);
|
|
|
|
if (status != INSTALL_SUCCESS) {
|
|
|
|
ui_set_background(BACKGROUND_ICON_ERROR);
|
|
|
|
ui_print("Installation aborted.\n");
|
|
|
|
} else if (!ui_text_visible()) {
|
|
|
|
return; // reboot if logs aren't visible
|
|
|
|
} else {
|
|
|
|
if (firmware_update_pending()) {
|
|
|
|
ui_print("\nReboot via menu to complete\n"
|
|
|
|
"installation.\n");
|
|
|
|
} else {
|
|
|
|
ui_print("\nInstall from sdcard complete.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char* INSTALL_MENU_ITEMS[] = { "apply sdcard:update.zip",
|
|
|
|
"choose zip from sdcard",
|
|
|
|
"toggle signature verification",
|
|
|
|
"toggle script asserts",
|
|
|
|
NULL };
|
|
|
|
#define ITEM_APPLY_SDCARD 0
|
|
|
|
#define ITEM_CHOOSE_ZIP 1
|
|
|
|
#define ITEM_SIG_CHECK 2
|
|
|
|
#define ITEM_ASSERTS 3
|
|
|
|
|
|
|
|
void show_install_update_menu()
|
|
|
|
{
|
|
|
|
static char* headers[] = { "Apply update from .zip file on SD card",
|
|
|
|
"",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
int chosen_item = get_menu_selection(headers, INSTALL_MENU_ITEMS, 0);
|
|
|
|
switch (chosen_item)
|
|
|
|
{
|
|
|
|
case ITEM_ASSERTS:
|
|
|
|
toggle_script_asserts();
|
|
|
|
break;
|
|
|
|
case ITEM_SIG_CHECK:
|
|
|
|
toggle_signature_check();
|
|
|
|
break;
|
|
|
|
case ITEM_APPLY_SDCARD:
|
|
|
|
install_zip(SDCARD_PACKAGE_FILE);
|
|
|
|
break;
|
|
|
|
case ITEM_CHOOSE_ZIP:
|
|
|
|
show_choose_zip_menu();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char* choose_file_menu(const char* directory, const char* extension, const char* headers[])
|
2010-02-12 08:43:24 +00:00
|
|
|
{
|
|
|
|
char path[PATH_MAX] = "";
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *de;
|
|
|
|
int total = 0;
|
|
|
|
int i;
|
|
|
|
char** files;
|
|
|
|
char** list;
|
|
|
|
|
2010-02-22 05:10:25 +00:00
|
|
|
dir = opendir(directory);
|
2010-02-12 08:43:24 +00:00
|
|
|
if (dir == NULL) {
|
2010-02-22 05:10:25 +00:00
|
|
|
ui_print("Couldn't open directory.\n");
|
|
|
|
return NULL;
|
2010-02-12 08:43:24 +00:00
|
|
|
}
|
2010-02-22 05:10:25 +00:00
|
|
|
|
2010-02-12 08:43:24 +00:00
|
|
|
const int extension_length = strlen(extension);
|
2010-02-22 05:10:25 +00:00
|
|
|
|
2010-02-12 08:43:24 +00:00
|
|
|
while ((de=readdir(dir)) != NULL) {
|
|
|
|
if (de->d_name[0] != '.' && strlen(de->d_name) > extension_length && strcmp(de->d_name + strlen(de->d_name) - extension_length, extension) == 0) {
|
|
|
|
total++;
|
2010-02-22 05:10:25 +00:00
|
|
|
}
|
2010-02-12 08:43:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (total==0) {
|
2010-02-22 05:10:25 +00:00
|
|
|
ui_print("No files found.\n");
|
2010-02-12 08:43:24 +00:00
|
|
|
if(closedir(dir) < 0) {
|
2010-02-22 05:10:25 +00:00
|
|
|
LOGE("Failed to close directory.");
|
2010-02-12 08:43:24 +00:00
|
|
|
}
|
2010-02-22 05:10:25 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2010-02-12 08:43:24 +00:00
|
|
|
|
2010-02-22 05:10:25 +00:00
|
|
|
files = (char**) malloc((total+1)*sizeof(char*));
|
|
|
|
files[total]=NULL;
|
2010-02-12 08:43:24 +00:00
|
|
|
|
2010-02-22 05:10:25 +00:00
|
|
|
list = (char**) malloc((total+1)*sizeof(char*));
|
|
|
|
list[total]=NULL;
|
|
|
|
|
|
|
|
rewinddir(dir);
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while ((de = readdir(dir)) != NULL) {
|
|
|
|
if (de->d_name[0] != '.' && strlen(de->d_name) > extension_length && strcmp(de->d_name + strlen(de->d_name) - extension_length, extension) == 0) {
|
|
|
|
files[i] = (char*) malloc(strlen(directory)+strlen(de->d_name)+1);
|
|
|
|
strcpy(files[i], directory);
|
|
|
|
strcat(files[i], de->d_name);
|
|
|
|
|
|
|
|
list[i] = (char*) malloc(strlen(de->d_name)+1);
|
|
|
|
strcpy(list[i], de->d_name);
|
|
|
|
|
|
|
|
i++;
|
2010-02-12 08:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
2010-02-22 05:10:25 +00:00
|
|
|
|
|
|
|
if (closedir(dir) <0) {
|
|
|
|
LOGE("Failure closing directory.");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int chosen_item = get_menu_selection(headers, list, 1);
|
|
|
|
static char ret[PATH_MAX];
|
|
|
|
strcpy(ret, files[chosen_item]);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void show_choose_zip_menu()
|
|
|
|
{
|
|
|
|
if (ensure_root_path_mounted("SDCARD:") != 0) {
|
|
|
|
LOGE ("Can't mount /sdcard\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char* headers[] = { "Choose a zip to apply",
|
|
|
|
"",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
char* file = choose_file_menu("/sdcard/", ".zip", headers);
|
|
|
|
if (file == NULL)
|
|
|
|
return;
|
|
|
|
char sdcard_package_file[1024];
|
|
|
|
strcpy(sdcard_package_file, "SDCARD:");
|
|
|
|
strcat(sdcard_package_file, file + strlen("/sdcard/"));
|
|
|
|
install_zip(sdcard_package_file);
|
|
|
|
}
|
|
|
|
|
|
|
|
void do_nandroid_backup()
|
|
|
|
{
|
|
|
|
ui_print("Performing backup...\n");
|
|
|
|
system("/sbin/nandroid-mobile.sh backup");
|
|
|
|
ui_print("Backup complete.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void show_nandroid_restore_menu()
|
|
|
|
{
|
|
|
|
if (ensure_root_path_mounted("SDCARD:") != 0) {
|
|
|
|
LOGE ("Can't mount /sdcard\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char* headers[] = { "Choose an image to restore",
|
|
|
|
"",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
system("cat /proc/cmdline | sed 's/.*serialno=//' | cut -d' ' -f1 > /.deviceid");
|
|
|
|
FILE *deviceIdFile = fopen(".deviceid", "r");
|
|
|
|
char deviceId[256];
|
|
|
|
if (deviceIdFile == NULL)
|
|
|
|
{
|
|
|
|
ui_print("Unable to retrieve device id.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int readCount = fread(deviceId, 1, sizeof(deviceId), deviceIdFile);
|
|
|
|
if (readCount == 0)
|
|
|
|
{
|
|
|
|
ui_print("Unable to retrieve device id.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
deviceId[readCount - 1] = NULL;
|
|
|
|
fclose(deviceIdFile);
|
|
|
|
char backupDirectory[PATH_MAX];
|
|
|
|
sprintf(backupDirectory, "/sdcard/nandroid/%s/", deviceId);
|
|
|
|
|
|
|
|
char* file = choose_file_menu(backupDirectory, "", headers);
|
|
|
|
if (file == NULL)
|
|
|
|
return;
|
|
|
|
char* command[PATH_MAX];
|
|
|
|
sprintf(command, "nandroid-mobile.sh restore %s", file);
|
|
|
|
ui_print("Performing restore...\n");
|
|
|
|
system(command);
|
|
|
|
ui_print("Restore complete.\n");
|
2010-02-12 06:27:06 +00:00
|
|
|
}
|