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-25 19:39:07 +00:00
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/wait.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");
|
2010-02-25 20:03:17 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (firmware_update_pending()) {
|
|
|
|
ui_print("\nReboot via menu to complete\ninstallation.\n");
|
|
|
|
}
|
|
|
|
ui_print("\nInstall from sdcard complete.\n");
|
|
|
|
ui_set_background(BACKGROUND_ICON_NONE);
|
2010-02-22 05:10:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-02-22 16:53:34 +00:00
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
int chosen_item = get_menu_selection(headers, list, 0);
|
|
|
|
if (chosen_item == GO_BACK)
|
|
|
|
break;
|
|
|
|
static char ret[PATH_MAX];
|
|
|
|
strcpy(ret, files[chosen_item]);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
return NULL;
|
2010-02-22 05:10:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2010-02-25 19:39:07 +00:00
|
|
|
// This was pulled from bionic: The default system command always looks
|
|
|
|
// for shell in /system/bin/sh. This is bad.
|
|
|
|
#define _PATH_BSHELL "/sbin/sh"
|
|
|
|
#define system recovery_system
|
|
|
|
extern char **environ;
|
|
|
|
int
|
|
|
|
system(const char *command)
|
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
sig_t intsave, quitsave;
|
|
|
|
sigset_t mask, omask;
|
|
|
|
int pstat;
|
|
|
|
char *argp[] = {"sh", "-c", NULL, NULL};
|
|
|
|
|
|
|
|
if (!command) /* just checking... */
|
|
|
|
return(1);
|
|
|
|
|
|
|
|
argp[2] = (char *)command;
|
|
|
|
|
|
|
|
sigemptyset(&mask);
|
|
|
|
sigaddset(&mask, SIGCHLD);
|
|
|
|
sigprocmask(SIG_BLOCK, &mask, &omask);
|
|
|
|
switch (pid = vfork()) {
|
|
|
|
case -1: /* error */
|
|
|
|
sigprocmask(SIG_SETMASK, &omask, NULL);
|
|
|
|
return(-1);
|
|
|
|
case 0: /* child */
|
|
|
|
sigprocmask(SIG_SETMASK, &omask, NULL);
|
|
|
|
execve(_PATH_BSHELL, argp, environ);
|
|
|
|
_exit(127);
|
|
|
|
}
|
|
|
|
|
|
|
|
intsave = (sig_t) bsd_signal(SIGINT, SIG_IGN);
|
|
|
|
quitsave = (sig_t) bsd_signal(SIGQUIT, SIG_IGN);
|
|
|
|
pid = waitpid(pid, (int *)&pstat, 0);
|
|
|
|
sigprocmask(SIG_SETMASK, &omask, NULL);
|
|
|
|
(void)bsd_signal(SIGINT, intsave);
|
|
|
|
(void)bsd_signal(SIGQUIT, quitsave);
|
|
|
|
return (pid == -1 ? -1 : pstat);
|
|
|
|
}
|
|
|
|
|
2010-02-22 05:10:25 +00:00
|
|
|
void do_nandroid_backup()
|
|
|
|
{
|
|
|
|
ui_print("Performing backup...\n");
|
2010-02-25 19:39:07 +00:00
|
|
|
int ret = system("/sbin/nandroid-mobile.sh backup /sdcard/clockworkmod/backup/");
|
|
|
|
if (ret != 0)
|
2010-02-22 06:02:24 +00:00
|
|
|
{
|
2010-02-25 19:39:07 +00:00
|
|
|
ui_print("Error while backing up! Error code: %d\n", ret);
|
2010-02-22 06:02:24 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-02-22 05:10:25 +00:00
|
|
|
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
|
|
|
|
};
|
|
|
|
|
2010-02-24 06:41:36 +00:00
|
|
|
char* file = choose_file_menu("/sdcard/clockworkmod/backup/", "", headers);
|
2010-02-22 05:10:25 +00:00
|
|
|
if (file == NULL)
|
|
|
|
return;
|
|
|
|
char* command[PATH_MAX];
|
|
|
|
sprintf(command, "nandroid-mobile.sh restore %s", file);
|
|
|
|
ui_print("Performing restore...\n");
|
2010-02-22 16:53:34 +00:00
|
|
|
int ret = system(command);
|
2010-02-22 06:02:24 +00:00
|
|
|
if (ret != 0)
|
|
|
|
{
|
|
|
|
ui_print("Error while restoring!\n");
|
|
|
|
return;
|
|
|
|
}
|
2010-02-22 05:10:25 +00:00
|
|
|
ui_print("Restore complete.\n");
|
2010-02-12 06:27:06 +00:00
|
|
|
}
|