blob: b32ca0b28a8e8e0d701e757f0c56dfe2d58e103d [file] [log] [blame]
Koushik K. Dutta6060e5c2010-02-11 22:27:06 -08001#include <ctype.h>
2#include <errno.h>
3#include <fcntl.h>
4#include <getopt.h>
5#include <limits.h>
6#include <linux/input.h>
7#include <stdio.h>
8#include <stdlib.h>
9#include <string.h>
10#include <sys/reboot.h>
11#include <sys/types.h>
12#include <time.h>
13#include <unistd.h>
14
Koushik K. Duttae9234872010-02-12 00:43:24 -080015#include <sys/wait.h>
16#include <sys/limits.h>
17#include <dirent.h>
Koushik K. Dutta49f56892010-02-25 14:51:05 -080018#include <sys/stat.h>
Koushik K. Duttae9234872010-02-12 00:43:24 -080019
Koushik K. Dutta33370db2010-02-25 11:39:07 -080020#include <signal.h>
21#include <sys/wait.h>
22
Koushik K. Dutta6060e5c2010-02-11 22:27:06 -080023#include "bootloader.h"
24#include "common.h"
25#include "cutils/properties.h"
26#include "firmware.h"
27#include "install.h"
28#include "minui/minui.h"
29#include "minzip/DirUtil.h"
30#include "roots.h"
31#include "recovery_ui.h"
32
Koushik K. Duttaa85d7cc2010-03-12 17:00:58 -080033#include "../../external/yaffs2/yaffs2/utils/mkyaffs2image.h"
Koushik K. Dutta54305a82010-03-12 17:43:26 -080034#include "../../external/yaffs2/yaffs2/utils/unyaffs.h"
Koushik K. Duttaa85d7cc2010-03-12 17:00:58 -080035
Koushik K. Duttaee57bbc2010-03-12 23:21:12 -080036#include "extendedcommands.h"
37#include "nandroid.h"
Koushik Duttadf1e4062010-12-18 17:42:31 -080038#include "mounts.h"
Koushik Dutta9765a032010-12-18 21:31:02 -080039#include "flashutils/flashutils.h"
Koushik Duttabec09952010-12-19 20:37:57 -080040#include "edify/expr.h"
Koushik Dutta7adeadc2011-05-26 11:47:56 -070041#include <libgen.h>
42
Koushik K. Duttaee57bbc2010-03-12 23:21:12 -080043
Koushik K. Dutta6060e5c2010-02-11 22:27:06 -080044int signature_check_enabled = 1;
45int script_assert_enabled = 1;
Koushik Duttadf1e4062010-12-18 17:42:31 -080046static const char *SDCARD_UPDATE_FILE = "/sdcard/update.zip";
Koushik K. Dutta6060e5c2010-02-11 22:27:06 -080047
48void
49toggle_signature_check()
50{
51 signature_check_enabled = !signature_check_enabled;
52 ui_print("Signature Check: %s\n", signature_check_enabled ? "Enabled" : "Disabled");
53}
54
55void toggle_script_asserts()
56{
57 script_assert_enabled = !script_assert_enabled;
Koushik K. Duttae9234872010-02-12 00:43:24 -080058 ui_print("Script Asserts: %s\n", script_assert_enabled ? "Enabled" : "Disabled");
59}
60
Koushik K. Duttaea46fe22010-03-08 02:58:04 -080061int install_zip(const char* packagefilepath)
Koushik K. Duttae9234872010-02-12 00:43:24 -080062{
Koushik K. Duttabcdd0032010-02-21 21:10:25 -080063 ui_print("\n-- Installing: %s\n", packagefilepath);
Koushik Dutta9765a032010-12-18 21:31:02 -080064 if (device_flash_type() == MTD) {
65 set_sdcard_update_bootloader_message();
66 }
Koushik K. Duttabcdd0032010-02-21 21:10:25 -080067 int status = install_package(packagefilepath);
Koushik K. Duttaf3534d02010-04-18 18:06:24 -070068 ui_reset_progress();
Koushik K. Duttabcdd0032010-02-21 21:10:25 -080069 if (status != INSTALL_SUCCESS) {
70 ui_set_background(BACKGROUND_ICON_ERROR);
71 ui_print("Installation aborted.\n");
Koushik K. Duttaea46fe22010-03-08 02:58:04 -080072 return 1;
Steve Kondik4123b582010-11-14 03:18:40 -050073 }
Koushik K. Dutta001c5b52010-02-25 14:53:57 -080074 ui_set_background(BACKGROUND_ICON_NONE);
Koushik K. Dutta99fb6fe2010-03-03 00:42:58 -080075 ui_print("\nInstall from sdcard complete.\n");
Koushik K. Duttaea46fe22010-03-08 02:58:04 -080076 return 0;
Koushik K. Duttabcdd0032010-02-21 21:10:25 -080077}
78
Koushik Duttadf1e4062010-12-18 17:42:31 -080079char* INSTALL_MENU_ITEMS[] = { "apply /sdcard/update.zip",
Koushik K. Duttabcdd0032010-02-21 21:10:25 -080080 "choose zip from sdcard",
81 "toggle signature verification",
82 "toggle script asserts",
83 NULL };
84#define ITEM_APPLY_SDCARD 0
85#define ITEM_CHOOSE_ZIP 1
86#define ITEM_SIG_CHECK 2
87#define ITEM_ASSERTS 3
88
89void show_install_update_menu()
90{
91 static char* headers[] = { "Apply update from .zip file on SD card",
92 "",
Steve Kondik4123b582010-11-14 03:18:40 -050093 NULL
Koushik K. Duttabcdd0032010-02-21 21:10:25 -080094 };
95 for (;;)
96 {
Koushik Duttadf1e4062010-12-18 17:42:31 -080097 int chosen_item = get_menu_selection(headers, INSTALL_MENU_ITEMS, 0, 0);
Koushik K. Duttabcdd0032010-02-21 21:10:25 -080098 switch (chosen_item)
99 {
100 case ITEM_ASSERTS:
101 toggle_script_asserts();
102 break;
103 case ITEM_SIG_CHECK:
104 toggle_signature_check();
105 break;
106 case ITEM_APPLY_SDCARD:
Koushik Duttad63eaef2010-07-14 21:01:21 -0700107 {
108 if (confirm_selection("Confirm install?", "Yes - Install /sdcard/update.zip"))
Koushik Duttadf1e4062010-12-18 17:42:31 -0800109 install_zip(SDCARD_UPDATE_FILE);
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800110 break;
Koushik Duttad63eaef2010-07-14 21:01:21 -0700111 }
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800112 case ITEM_CHOOSE_ZIP:
113 show_choose_zip_menu();
114 break;
115 default:
116 return;
117 }
Steve Kondik4123b582010-11-14 03:18:40 -0500118
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800119 }
120}
121
Koushik K. Dutta1d53c4e2010-04-02 16:46:21 -0700122void free_string_array(char** array)
123{
124 if (array == NULL)
125 return;
126 char* cursor = array[0];
127 int i = 0;
128 while (cursor != NULL)
129 {
130 free(cursor);
131 cursor = array[++i];
132 }
133 free(array);
134}
135
Koushik K. Dutta49f56892010-02-25 14:51:05 -0800136char** gather_files(const char* directory, const char* fileExtensionOrDirectory, int* numFiles)
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800137{
Koushik K. Duttae9234872010-02-12 00:43:24 -0800138 char path[PATH_MAX] = "";
139 DIR *dir;
140 struct dirent *de;
141 int total = 0;
142 int i;
Koushik K. Duttaee57bbc2010-03-12 23:21:12 -0800143 char** files = NULL;
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800144 int pass;
145 *numFiles = 0;
146 int dirLen = strlen(directory);
Koushik K. Duttae9234872010-02-12 00:43:24 -0800147
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800148 dir = opendir(directory);
149 if (dir == NULL) {
150 ui_print("Couldn't open directory.\n");
151 return NULL;
152 }
Steve Kondik4123b582010-11-14 03:18:40 -0500153
Koushik K. Duttaee57bbc2010-03-12 23:21:12 -0800154 int extension_length = 0;
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800155 if (fileExtensionOrDirectory != NULL)
156 extension_length = strlen(fileExtensionOrDirectory);
Steve Kondik4123b582010-11-14 03:18:40 -0500157
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800158 int isCounting = 1;
159 i = 0;
160 for (pass = 0; pass < 2; pass++) {
161 while ((de=readdir(dir)) != NULL) {
162 // skip hidden files
163 if (de->d_name[0] == '.')
164 continue;
Steve Kondik4123b582010-11-14 03:18:40 -0500165
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800166 // NULL means that we are gathering directories, so skip this
167 if (fileExtensionOrDirectory != NULL)
168 {
169 // make sure that we can have the desired extension (prevent seg fault)
170 if (strlen(de->d_name) < extension_length)
171 continue;
172 // compare the extension
173 if (strcmp(de->d_name + strlen(de->d_name) - extension_length, fileExtensionOrDirectory) != 0)
174 continue;
175 }
176 else
177 {
178 struct stat info;
Koushik K. Dutta1d53c4e2010-04-02 16:46:21 -0700179 char fullFileName[PATH_MAX];
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800180 strcpy(fullFileName, directory);
181 strcat(fullFileName, de->d_name);
182 stat(fullFileName, &info);
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800183 // make sure it is a directory
184 if (!(S_ISDIR(info.st_mode)))
185 continue;
186 }
Steve Kondik4123b582010-11-14 03:18:40 -0500187
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800188 if (pass == 0)
189 {
190 total++;
191 continue;
192 }
Steve Kondik4123b582010-11-14 03:18:40 -0500193
Koushik K. Dutta49f56892010-02-25 14:51:05 -0800194 files[i] = (char*) malloc(dirLen + strlen(de->d_name) + 2);
195 strcpy(files[i], directory);
196 strcat(files[i], de->d_name);
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800197 if (fileExtensionOrDirectory == NULL)
198 strcat(files[i], "/");
199 i++;
200 }
201 if (pass == 1)
202 break;
203 if (total == 0)
204 break;
205 rewinddir(dir);
206 *numFiles = total;
207 files = (char**) malloc((total+1)*sizeof(char*));
208 files[total]=NULL;
209 }
Koushik K. Dutta49f56892010-02-25 14:51:05 -0800210
211 if(closedir(dir) < 0) {
212 LOGE("Failed to close directory.");
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800213 }
214
215 if (total==0) {
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800216 return NULL;
217 }
218
agrabren1f76a5d2010-12-29 12:15:18 -0600219 // sort the result
220 if (files != NULL) {
221 for (i = 0; i < total; i++) {
222 int curMax = -1;
223 int j;
224 for (j = 0; j < total - i; j++) {
225 if (curMax == -1 || strcmp(files[curMax], files[j]) < 0)
226 curMax = j;
227 }
228 char* temp = files[curMax];
229 files[curMax] = files[total - i - 1];
230 files[total - i - 1] = temp;
231 }
232 }
Koushik Dutta1e8aaba2010-07-01 00:23:25 -0700233
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800234 return files;
Koushik K. Dutta49f56892010-02-25 14:51:05 -0800235}
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800236
Koushik K. Dutta49f56892010-02-25 14:51:05 -0800237// pass in NULL for fileExtensionOrDirectory and you will get a directory chooser
238char* choose_file_menu(const char* directory, const char* fileExtensionOrDirectory, const char* headers[])
239{
240 char path[PATH_MAX] = "";
241 DIR *dir;
242 struct dirent *de;
243 int numFiles = 0;
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800244 int numDirs = 0;
Koushik K. Dutta49f56892010-02-25 14:51:05 -0800245 int i;
Koushik K. Dutta1d53c4e2010-04-02 16:46:21 -0700246 char* return_value = NULL;
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800247 int dir_len = strlen(directory);
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800248
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800249 char** files = gather_files(directory, fileExtensionOrDirectory, &numFiles);
Koushik K. Duttaee57bbc2010-03-12 23:21:12 -0800250 char** dirs = NULL;
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800251 if (fileExtensionOrDirectory != NULL)
252 dirs = gather_files(directory, NULL, &numDirs);
253 int total = numDirs + numFiles;
254 if (total == 0)
255 {
256 ui_print("No files found.\n");
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800257 }
Koushik K. Dutta1d53c4e2010-04-02 16:46:21 -0700258 else
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800259 {
Koushik K. Dutta1d53c4e2010-04-02 16:46:21 -0700260 char** list = (char**) malloc((total + 1) * sizeof(char*));
261 list[total] = NULL;
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800262
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800263
Koushik K. Dutta1d53c4e2010-04-02 16:46:21 -0700264 for (i = 0 ; i < numDirs; i++)
Koushik K. Dutta001c5b52010-02-25 14:53:57 -0800265 {
Koushik K. Dutta1d53c4e2010-04-02 16:46:21 -0700266 list[i] = strdup(dirs[i] + dir_len);
267 }
268
269 for (i = 0 ; i < numFiles; i++)
270 {
271 list[numDirs + i] = strdup(files[i] + dir_len);
272 }
273
274 for (;;)
275 {
Koushik Duttadf1e4062010-12-18 17:42:31 -0800276 int chosen_item = get_menu_selection(headers, list, 0, 0);
Koushik K. Dutta1d53c4e2010-04-02 16:46:21 -0700277 if (chosen_item == GO_BACK)
278 break;
279 static char ret[PATH_MAX];
280 if (chosen_item < numDirs)
281 {
282 char* subret = choose_file_menu(dirs[chosen_item], fileExtensionOrDirectory, headers);
283 if (subret != NULL)
284 {
285 strcpy(ret, subret);
286 return_value = ret;
287 break;
288 }
289 continue;
Steve Kondik4123b582010-11-14 03:18:40 -0500290 }
Koushik K. Dutta1d53c4e2010-04-02 16:46:21 -0700291 strcpy(ret, files[chosen_item - numDirs]);
292 return_value = ret;
293 break;
294 }
295 free_string_array(list);
Koushik K. Dutta981b0cd2010-02-22 08:53:34 -0800296 }
Koushik K. Dutta1d53c4e2010-04-02 16:46:21 -0700297
298 free_string_array(files);
299 free_string_array(dirs);
300 return return_value;
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800301}
302
303void show_choose_zip_menu()
304{
Koushik Duttadf1e4062010-12-18 17:42:31 -0800305 if (ensure_path_mounted("/sdcard") != 0) {
Koushik K. Duttae9234872010-02-12 00:43:24 -0800306 LOGE ("Can't mount /sdcard\n");
307 return;
308 }
309
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800310 static char* headers[] = { "Choose a zip to apply",
311 "",
Steve Kondik4123b582010-11-14 03:18:40 -0500312 NULL
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800313 };
Steve Kondik4123b582010-11-14 03:18:40 -0500314
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800315 char* file = choose_file_menu("/sdcard/", ".zip", headers);
316 if (file == NULL)
317 return;
Koushik Duttad63eaef2010-07-14 21:01:21 -0700318 static char* confirm_install = "Confirm install?";
319 static char confirm[PATH_MAX];
320 sprintf(confirm, "Yes - Install %s", basename(file));
321 if (confirm_selection(confirm_install, confirm))
Koushik Duttadf1e4062010-12-18 17:42:31 -0800322 install_zip(file);
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800323}
324
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800325void show_nandroid_restore_menu()
326{
Koushik Duttadf1e4062010-12-18 17:42:31 -0800327 if (ensure_path_mounted("/sdcard") != 0) {
Koushik K. Dutta54305a82010-03-12 17:43:26 -0800328 LOGE ("Can't mount /sdcard\n");
Koushik K. Duttaee57bbc2010-03-12 23:21:12 -0800329 return;
Koushik K. Dutta54305a82010-03-12 17:43:26 -0800330 }
Steve Kondik4123b582010-11-14 03:18:40 -0500331
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800332 static char* headers[] = { "Choose an image to restore",
333 "",
Steve Kondik4123b582010-11-14 03:18:40 -0500334 NULL
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800335 };
Koushik K. Duttae9234872010-02-12 00:43:24 -0800336
Koushik K. Dutta49f56892010-02-25 14:51:05 -0800337 char* file = choose_file_menu("/sdcard/clockworkmod/backup/", NULL, headers);
Koushik K. Duttabcdd0032010-02-21 21:10:25 -0800338 if (file == NULL)
339 return;
Koushik Duttad63eaef2010-07-14 21:01:21 -0700340
341 if (confirm_selection("Confirm restore?", "Yes - Restore"))
Koushik Dutta5b7f34a2010-12-29 23:36:03 -0800342 nandroid_restore(file, 1, 1, 1, 1, 1, 0);
Koushik K. Dutta03173782010-02-26 14:14:23 -0800343}
344
jt113447d86a32011-02-27 18:54:09 -0600345#ifndef BOARD_UMS_LUNFILE
346#define BOARD_UMS_LUNFILE "/sys/devices/platform/usb_mass_storage/lun0/file"
347#endif
348
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700349void show_mount_usb_storage_menu()
Koushik K. Dutta03173782010-02-26 14:14:23 -0800350{
Koushik Duttaf1cb0d52011-01-01 20:03:30 -0800351 int fd;
Koushik Duttadf1e4062010-12-18 17:42:31 -0800352 Volume *vol = volume_for_path("/sdcard");
jt113447d86a32011-02-27 18:54:09 -0600353 if ((fd = open(BOARD_UMS_LUNFILE, O_WRONLY)) < 0) {
Koushik Duttaf1cb0d52011-01-01 20:03:30 -0800354 LOGE("Unable to open ums lunfile (%s)", strerror(errno));
355 return -1;
356 }
357
mik_osdf3004b2011-04-26 19:15:22 +0300358 if ((write(fd, vol->device, strlen(vol->device)) < 0) &&
359 (!vol->device2 || (write(fd, vol->device, strlen(vol->device2)) < 0))) {
Koushik Duttaf1cb0d52011-01-01 20:03:30 -0800360 LOGE("Unable to write to ums lunfile (%s)", strerror(errno));
361 close(fd);
362 return -1;
363 }
Koushik K. Dutta03173782010-02-26 14:14:23 -0800364 static char* headers[] = { "USB Mass Storage device",
365 "Leaving this menu unmount",
366 "your SD card from your PC.",
367 "",
Steve Kondik4123b582010-11-14 03:18:40 -0500368 NULL
Koushik K. Dutta03173782010-02-26 14:14:23 -0800369 };
Steve Kondik4123b582010-11-14 03:18:40 -0500370
Koushik K. Dutta03173782010-02-26 14:14:23 -0800371 static char* list[] = { "Unmount", NULL };
Steve Kondik4123b582010-11-14 03:18:40 -0500372
Koushik K. Dutta03173782010-02-26 14:14:23 -0800373 for (;;)
374 {
Koushik Duttadf1e4062010-12-18 17:42:31 -0800375 int chosen_item = get_menu_selection(headers, list, 0, 0);
Koushik K. Dutta03173782010-02-26 14:14:23 -0800376 if (chosen_item == GO_BACK || chosen_item == 0)
377 break;
378 }
Steve Kondik4123b582010-11-14 03:18:40 -0500379
jt113447d86a32011-02-27 18:54:09 -0600380 if ((fd = open(BOARD_UMS_LUNFILE, O_WRONLY)) < 0) {
Koushik Duttaf1cb0d52011-01-01 20:03:30 -0800381 LOGE("Unable to open ums lunfile (%s)", strerror(errno));
382 return -1;
383 }
384
385 char ch = 0;
386 if (write(fd, &ch, 1) < 0) {
387 LOGE("Unable to write to ums lunfile (%s)", strerror(errno));
388 close(fd);
389 return -1;
390 }
Koushik K. Duttae81cb752010-02-26 17:44:33 -0800391}
Koushik K. Duttaf68aaaf2010-03-07 13:39:21 -0800392
Koushik Duttad63eaef2010-07-14 21:01:21 -0700393int confirm_selection(const char* title, const char* confirm)
Koushik K. Dutta16f0b492010-03-19 14:37:11 -0700394{
Koushik Duttaceddcd52010-08-23 16:13:14 -0700395 struct stat info;
396 if (0 == stat("/sdcard/clockworkmod/.no_confirm", &info))
397 return 1;
398
Koushik Duttad63eaef2010-07-14 21:01:21 -0700399 char* confirm_headers[] = { title, " THIS CAN NOT BE UNDONE.", "", NULL };
400 char* items[] = { "No",
401 "No",
402 "No",
403 "No",
404 "No",
405 "No",
406 "No",
Koushik Duttaecd32fa2010-07-14 18:38:02 -0700407 confirm, //" Yes -- wipe partition", // [7
Koushik Duttad63eaef2010-07-14 21:01:21 -0700408 "No",
409 "No",
410 "No",
Koushik K. Dutta16f0b492010-03-19 14:37:11 -0700411 NULL };
412
Koushik Duttadf1e4062010-12-18 17:42:31 -0800413 int chosen_item = get_menu_selection(confirm_headers, items, 0, 0);
Koushik K. Dutta16f0b492010-03-19 14:37:11 -0700414 return chosen_item == 7;
415}
416
Koushik Duttada32b542011-01-01 17:55:22 -0800417#define MKE2FS_BIN "/sbin/mke2fs"
418#define TUNE2FS_BIN "/sbin/tune2fs"
419#define E2FSCK_BIN "/sbin/e2fsck"
420
Koushik Duttada32b542011-01-01 17:55:22 -0800421int format_unknown_device(const char *device, const char* path, const char *fs_type)
Koushik K. Dutta3f995392010-03-30 23:29:43 -0700422{
Koushik Dutta2e454492011-01-01 18:06:17 -0800423 LOGI("Formatting unknown device.\n");
Koushik Duttaa8708c62011-01-01 18:00:27 -0800424
Koushik Duttada32b542011-01-01 17:55:22 -0800425 // device may simply be a name, like "system"
Koushik Dutta41873472011-05-26 17:30:43 -0700426 if (get_flash_type(fs_type) != UNSUPPORTED)
Koushik Dutta8a6bc772011-05-26 11:14:15 -0700427 return erase_raw_partition(fs_type, device);
Koushik Duttada32b542011-01-01 17:55:22 -0800428
Koushik Dutta9f52e5f2011-01-02 14:11:24 -0800429 // if this is SDEXT:, don't worry about it if it does not exist.
Koushik Duttadf1e4062010-12-18 17:42:31 -0800430 if (0 == strcmp(path, "/sd-ext"))
Koushik K. Duttaf3534d02010-04-18 18:06:24 -0700431 {
432 struct stat st;
Koushik Duttadf1e4062010-12-18 17:42:31 -0800433 Volume *vol = volume_for_path("/sd-ext");
434 if (vol == NULL || 0 != stat(vol->device, &st))
Koushik K. Duttaf3534d02010-04-18 18:06:24 -0700435 {
436 ui_print("No app2sd partition found. Skipping format of /sd-ext.\n");
437 return 0;
438 }
439 }
Koushik Dutta2f73e582010-04-18 16:00:21 -0700440
Koushik Dutta9f52e5f2011-01-02 14:11:24 -0800441 if (NULL != fs_type) {
442 if (strcmp("ext3", fs_type) == 0) {
443 LOGI("Formatting ext3 device.\n");
444 if (0 != ensure_path_unmounted(path)) {
445 LOGE("Error while unmounting %s.\n", path);
446 return -12;
447 }
448 return format_ext3_device(device);
449 }
450
451 if (strcmp("ext2", fs_type) == 0) {
452 LOGI("Formatting ext2 device.\n");
453 if (0 != ensure_path_unmounted(path)) {
454 LOGE("Error while unmounting %s.\n", path);
455 return -12;
456 }
457 return format_ext2_device(device);
458 }
459 }
460
Koushik Duttadf1e4062010-12-18 17:42:31 -0800461 if (0 != ensure_path_mounted(path))
Koushik K. Dutta3f995392010-03-30 23:29:43 -0700462 {
463 ui_print("Error mounting %s!\n", path);
Koushik Duttacd44ab92010-06-23 00:02:14 -0700464 ui_print("Skipping format...\n");
465 return 0;
Koushik K. Dutta3f995392010-03-30 23:29:43 -0700466 }
467
468 static char tmp[PATH_MAX];
Koushik Dutta50822992011-06-08 19:03:27 -0700469 if (strcmp(path, "/data") == 0) {
470 sprintf(tmp, "cd /data ; for f in $(ls -a | grep -v ^media$); do rm -rf $f; done");
471 __system(tmp);
472 }
473 else {
474 sprintf(tmp, "rm -rf %s/*", path);
475 __system(tmp);
476 sprintf(tmp, "rm -rf %s/.*", path);
477 __system(tmp);
478 }
Steve Kondik4123b582010-11-14 03:18:40 -0500479
Koushik Duttadf1e4062010-12-18 17:42:31 -0800480 ensure_path_unmounted(path);
Koushik K. Dutta3f995392010-03-30 23:29:43 -0700481 return 0;
482}
483
Koushik Duttadf1e4062010-12-18 17:42:31 -0800484//#define MOUNTABLE_COUNT 5
485//#define DEVICE_COUNT 4
486//#define MMC_COUNT 2
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700487
Kolja Dummann92796ec2011-02-13 20:59:30 +0100488typedef struct {
489 char mount[255];
490 char unmount[255];
491 Volume* v;
492} MountMenuEntry;
493
494typedef struct {
495 char txt[255];
496 Volume* v;
497} FormatMenuEntry;
498
Steve Kondik0d878512011-04-09 01:41:45 -0400499int is_safe_to_format(char* name)
500{
Brandon Bennett9ad8ba22011-05-07 23:42:58 -0600501 char str[255];
502 char* partition;
j_r0dd14d9e752011-06-09 18:37:28 -0400503 property_get("ro.cwm.forbid_format", str, "/misc,/radio,/bootloader,/recovery,/efs");
Brandon Bennett9ad8ba22011-05-07 23:42:58 -0600504
505 partition = strtok(str, ", ");
506 while (partition != NULL) {
507 if (strcmp(name, partition) == 0) {
508 return 0;
509 }
510 partition = strtok(NULL, ", ");
511 }
512
513 return 1;
Steve Kondik0d878512011-04-09 01:41:45 -0400514}
515
Koushik K. Dutta5899ac92010-03-19 13:34:36 -0700516void show_partition_menu()
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700517{
Koushik Duttaceddcd52010-08-23 16:13:14 -0700518 static char* headers[] = { "Mounts and Storage Menu",
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700519 "",
Steve Kondik4123b582010-11-14 03:18:40 -0500520 NULL
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700521 };
522
Kolja Dummann92796ec2011-02-13 20:59:30 +0100523 static MountMenuEntry* mount_menue = NULL;
524 static FormatMenuEntry* format_menue = NULL;
525
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700526 typedef char* string;
Steve Kondik4123b582010-11-14 03:18:40 -0500527
Kolja Dummann92796ec2011-02-13 20:59:30 +0100528 int i, mountable_volumes, formatable_volumes;
529 int num_volumes;
530 Volume* device_volumes;
Steve Kondik4123b582010-11-14 03:18:40 -0500531
Kolja Dummann92796ec2011-02-13 20:59:30 +0100532 num_volumes = get_num_volumes();
533 device_volumes = get_device_volumes();
534
535 string options[255];
536
537 if(!device_volumes)
538 return;
539
540 mountable_volumes = 0;
541 formatable_volumes = 0;
542
543 mount_menue = malloc(num_volumes * sizeof(MountMenuEntry));
544 format_menue = malloc(num_volumes * sizeof(FormatMenuEntry));
545
546 for (i = 0; i < num_volumes; ++i) {
547 Volume* v = &device_volumes[i];
Koushik Dutta67fa0c32011-03-17 11:37:21 -0700548 if(strcmp("ramdisk", v->fs_type) != 0 && strcmp("mtd", v->fs_type) != 0 && strcmp("emmc", v->fs_type) != 0 && strcmp("bml", v->fs_type) != 0)
Kolja Dummann92796ec2011-02-13 20:59:30 +0100549 {
550 sprintf(&mount_menue[mountable_volumes].mount, "mount %s", v->mount_point);
551 sprintf(&mount_menue[mountable_volumes].unmount, "unmount %s", v->mount_point);
552 mount_menue[mountable_volumes].v = &device_volumes[i];
553 ++mountable_volumes;
Steve Kondik0d878512011-04-09 01:41:45 -0400554 if (is_safe_to_format(v->mount_point)) {
555 sprintf(&format_menue[formatable_volumes].txt, "format %s", v->mount_point);
556 format_menue[formatable_volumes].v = &device_volumes[i];
557 ++formatable_volumes;
558 }
Kolja Dummann92796ec2011-02-13 20:59:30 +0100559 }
Steve Kondik0d878512011-04-09 01:41:45 -0400560 else if (strcmp("ramdisk", v->fs_type) != 0 && strcmp("mtd", v->fs_type) == 0 && is_safe_to_format(v->mount_point))
Kolja Dummann92796ec2011-02-13 20:59:30 +0100561 {
562 sprintf(&format_menue[formatable_volumes].txt, "format %s", v->mount_point);
563 format_menue[formatable_volumes].v = &device_volumes[i];
564 ++formatable_volumes;
565 }
566 }
567
Koushik Duttadf1e4062010-12-18 17:42:31 -0800568
Koushik Duttad63eaef2010-07-14 21:01:21 -0700569 static char* confirm_format = "Confirm format?";
Koushik Duttaecd32fa2010-07-14 18:38:02 -0700570 static char* confirm = "Yes - Format";
wjbcea6eba2011-04-30 21:04:04 -0400571 char confirm_string[255];
Steve Kondik4123b582010-11-14 03:18:40 -0500572
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700573 for (;;)
574 {
Steve Kondik4123b582010-11-14 03:18:40 -0500575
Kolja Dummann92796ec2011-02-13 20:59:30 +0100576 for (i = 0; i < mountable_volumes; i++)
577 {
578 MountMenuEntry* e = &mount_menue[i];
579 Volume* v = e->v;
580 if(is_path_mounted(v->mount_point))
581 options[i] = e->unmount;
582 else
583 options[i] = e->mount;
584 }
Steve Kondik4123b582010-11-14 03:18:40 -0500585
Kolja Dummann92796ec2011-02-13 20:59:30 +0100586 for (i = 0; i < formatable_volumes; i++)
587 {
588 FormatMenuEntry* e = &format_menue[i];
Steve Kondik4123b582010-11-14 03:18:40 -0500589
Kolja Dummann92796ec2011-02-13 20:59:30 +0100590 options[mountable_volumes+i] = e->txt;
591 }
592
593 options[mountable_volumes+formatable_volumes] = "mount USB storage";
594 options[mountable_volumes+formatable_volumes + 1] = NULL;
595
596 int chosen_item = get_menu_selection(headers, &options, 0, 0);
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700597 if (chosen_item == GO_BACK)
598 break;
Kolja Dummann92796ec2011-02-13 20:59:30 +0100599 if (chosen_item == (mountable_volumes+formatable_volumes))
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700600 {
601 show_mount_usb_storage_menu();
602 }
Kolja Dummann92796ec2011-02-13 20:59:30 +0100603 else if (chosen_item < mountable_volumes)
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700604 {
Kolja Dummann92796ec2011-02-13 20:59:30 +0100605 MountMenuEntry* e = &mount_menue[chosen_item];
606 Volume* v = e->v;
607
608 if (is_path_mounted(v->mount_point))
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700609 {
Kolja Dummann92796ec2011-02-13 20:59:30 +0100610 if (0 != ensure_path_unmounted(v->mount_point))
611 ui_print("Error unmounting %s!\n", v->mount_point);
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700612 }
613 else
614 {
Kolja Dummann92796ec2011-02-13 20:59:30 +0100615 if (0 != ensure_path_mounted(v->mount_point))
616 ui_print("Error mounting %s!\n", v->mount_point);
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700617 }
618 }
Kolja Dummann92796ec2011-02-13 20:59:30 +0100619 else if (chosen_item < (mountable_volumes + formatable_volumes))
Koushik K. Dutta5899ac92010-03-19 13:34:36 -0700620 {
Kolja Dummann92796ec2011-02-13 20:59:30 +0100621 chosen_item = chosen_item - mountable_volumes;
622 FormatMenuEntry* e = &format_menue[chosen_item];
623 Volume* v = e->v;
624
wjbcea6eba2011-04-30 21:04:04 -0400625 sprintf(confirm_string, "%s - %s", v->mount_point, confirm_format);
626
627 if (!confirm_selection(confirm_string, confirm))
Koushik K. Dutta16f0b492010-03-19 14:37:11 -0700628 continue;
Kolja Dummann92796ec2011-02-13 20:59:30 +0100629 ui_print("Formatting %s...\n", v->mount_point);
630 if (0 != format_volume(v->mount_point))
631 ui_print("Error formatting %s!\n", v->mount_point);
Koushik K. Dutta3f995392010-03-30 23:29:43 -0700632 else
633 ui_print("Done.\n");
Koushik K. Dutta5899ac92010-03-19 13:34:36 -0700634 }
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700635 }
Kolja Dummann92796ec2011-02-13 20:59:30 +0100636
637 free(mount_menue);
638 free(format_menue);
639
Koushik K. Duttab9546a82010-03-14 22:42:30 -0700640}
641
Koushik K. Dutta72a1db62010-03-07 14:10:26 -0800642#define EXTENDEDCOMMAND_SCRIPT "/cache/recovery/extendedcommand"
643
644int extendedcommand_file_exists()
Koushik K. Duttaf68aaaf2010-03-07 13:39:21 -0800645{
Koushik K. Duttaf68aaaf2010-03-07 13:39:21 -0800646 struct stat file_info;
Koushik K. Dutta72a1db62010-03-07 14:10:26 -0800647 return 0 == stat(EXTENDEDCOMMAND_SCRIPT, &file_info);
648}
649
Koushik Duttabec09952010-12-19 20:37:57 -0800650int edify_main(int argc, char** argv) {
651 load_volume_table();
652 process_volumes();
653 RegisterBuiltins();
654 RegisterRecoveryHooks();
655 FinishRegistration();
Koushik Duttadf1e4062010-12-18 17:42:31 -0800656
Koushik Duttabec09952010-12-19 20:37:57 -0800657 if (argc != 2) {
658 printf("edify <filename>\n");
Koushik K. Duttaf68aaaf2010-03-07 13:39:21 -0800659 return 1;
Koushik K. Duttaf68aaaf2010-03-07 13:39:21 -0800660 }
661
Koushik Duttabec09952010-12-19 20:37:57 -0800662 FILE* f = fopen(argv[1], "r");
663 if (f == NULL) {
664 printf("%s: %s: No such file or directory\n", argv[0], argv[1]);
665 return 1;
666 }
667 char buffer[8192];
668 int size = fread(buffer, 1, 8191, f);
669 fclose(f);
670 buffer[size] = '\0';
671
672 Expr* root;
673 int error_count = 0;
674 yy_scan_bytes(buffer, size);
675 int error = yyparse(&root, &error_count);
676 printf("parse returned %d; %d errors encountered\n", error, error_count);
677 if (error == 0 || error_count > 0) {
678
679 //ExprDump(0, root, buffer);
680
681 State state;
682 state.cookie = NULL;
683 state.script = buffer;
684 state.errmsg = NULL;
685
686 char* result = Evaluate(&state, root);
687 if (result == NULL) {
688 printf("result was NULL, message is: %s\n",
689 (state.errmsg == NULL ? "(NULL)" : state.errmsg));
690 free(state.errmsg);
691 } else {
692 printf("result is [%s]\n", result);
Koushik K. Duttaf68aaaf2010-03-07 13:39:21 -0800693 }
Steve Kondik4123b582010-11-14 03:18:40 -0500694 }
Koushik Duttabec09952010-12-19 20:37:57 -0800695 return 0;
Koushik K. Duttaf68aaaf2010-03-07 13:39:21 -0800696}
Koushik K. Dutta72a1db62010-03-07 14:10:26 -0800697
Koushik K. Dutta6771aca2010-04-03 23:28:39 -0700698int run_script(char* filename)
Koushik K. Dutta3836f722010-03-11 22:17:43 -0800699{
700 struct stat file_info;
701 if (0 != stat(filename, &file_info)) {
702 printf("Error executing stat on file: %s\n", filename);
703 return 1;
704 }
Steve Kondik4123b582010-11-14 03:18:40 -0500705
Koushik K. Dutta3836f722010-03-11 22:17:43 -0800706 int script_len = file_info.st_size;
Koushik K. Dutta707fa6d2010-03-23 11:44:33 -0700707 char* script_data = (char*)malloc(script_len + 1);
Koushik K. Dutta3836f722010-03-11 22:17:43 -0800708 FILE *file = fopen(filename, "rb");
709 fread(script_data, script_len, 1, file);
Koushik K. Dutta707fa6d2010-03-23 11:44:33 -0700710 // supposedly not necessary, but let's be safe.
711 script_data[script_len] = '\0';
Koushik K. Dutta3836f722010-03-11 22:17:43 -0800712 fclose(file);
Koushik Duttae25908b2010-06-21 08:16:19 -0700713 LOGI("Running script:\n");
714 LOGI("\n%s\n", script_data);
Koushik K. Dutta3836f722010-03-11 22:17:43 -0800715
Koushik K. Duttaf3534d02010-04-18 18:06:24 -0700716 int ret = run_script_from_buffer(script_data, script_len, filename);
Koushik K. Dutta1d53c4e2010-04-02 16:46:21 -0700717 free(script_data);
718 return ret;
Koushik K. Dutta3836f722010-03-11 22:17:43 -0800719}
720
Koushik K. Dutta72a1db62010-03-07 14:10:26 -0800721int run_and_remove_extendedcommand()
722{
Koushik K. Dutta6771aca2010-04-03 23:28:39 -0700723 char tmp[PATH_MAX];
724 sprintf(tmp, "cp %s /tmp/%s", EXTENDEDCOMMAND_SCRIPT, basename(EXTENDEDCOMMAND_SCRIPT));
725 __system(tmp);
726 remove(EXTENDEDCOMMAND_SCRIPT);
Koushik K. Dutta3a25cf52010-03-08 19:22:41 -0800727 int i = 0;
728 for (i = 20; i > 0; i--) {
729 ui_print("Waiting for SD Card to mount (%ds)\n", i);
Koushik Duttadf1e4062010-12-18 17:42:31 -0800730 if (ensure_path_mounted("/sdcard") == 0) {
Koushik K. Dutta3a25cf52010-03-08 19:22:41 -0800731 ui_print("SD Card mounted...\n");
732 break;
733 }
734 sleep(1);
735 }
Koushik Dutta92077c12010-07-15 00:10:08 -0700736 remove("/sdcard/clockworkmod/.recoverycheckpoint");
Koushik K. Dutta3a25cf52010-03-08 19:22:41 -0800737 if (i == 0) {
738 ui_print("Timed out waiting for SD card... continuing anyways.");
739 }
Steve Kondik4123b582010-11-14 03:18:40 -0500740
Koushik K. Dutta6771aca2010-04-03 23:28:39 -0700741 sprintf(tmp, "/tmp/%s", basename(EXTENDEDCOMMAND_SCRIPT));
742 return run_script(tmp);
Koushik K. Dutta72a1db62010-03-07 14:10:26 -0800743}
744
Koushik K. Duttafe84a7f2010-03-25 18:19:23 -0700745void show_nandroid_advanced_restore_menu()
746{
Koushik Duttadf1e4062010-12-18 17:42:31 -0800747 if (ensure_path_mounted("/sdcard") != 0) {
Koushik K. Duttafe84a7f2010-03-25 18:19:23 -0700748 LOGE ("Can't mount /sdcard\n");
749 return;
750 }
751
752 static char* advancedheaders[] = { "Choose an image to restore",
753 "",
754 "Choose an image to restore",
755 "first. The next menu will",
756 "you more options.",
757 "",
758 NULL
759 };
760
761 char* file = choose_file_menu("/sdcard/clockworkmod/backup/", NULL, advancedheaders);
762 if (file == NULL)
763 return;
764
765 static char* headers[] = { "Nandroid Advanced Restore",
766 "",
767 NULL
768 };
769
770 static char* list[] = { "Restore boot",
771 "Restore system",
772 "Restore data",
773 "Restore cache",
Koushik K. Dutta68b01902010-04-01 12:20:39 -0700774 "Restore sd-ext",
agrabren1f76a5d2010-12-29 12:15:18 -0600775 "Restore wimax",
Koushik K. Duttafe84a7f2010-03-25 18:19:23 -0700776 NULL
777 };
Koushik Dutta5b7f34a2010-12-29 23:36:03 -0800778
779 char tmp[PATH_MAX];
780 if (0 != get_partition_device("wimax", tmp)) {
781 // disable wimax restore option
782 list[5] = NULL;
783 }
Koushik Duttad63eaef2010-07-14 21:01:21 -0700784
785 static char* confirm_restore = "Confirm restore?";
786
Koushik Duttadf1e4062010-12-18 17:42:31 -0800787 int chosen_item = get_menu_selection(headers, list, 0, 0);
Koushik K. Duttafe84a7f2010-03-25 18:19:23 -0700788 switch (chosen_item)
789 {
790 case 0:
Koushik Duttad63eaef2010-07-14 21:01:21 -0700791 if (confirm_selection(confirm_restore, "Yes - Restore boot"))
agrabren1f76a5d2010-12-29 12:15:18 -0600792 nandroid_restore(file, 1, 0, 0, 0, 0, 0);
Koushik K. Duttafe84a7f2010-03-25 18:19:23 -0700793 break;
794 case 1:
Koushik Duttad63eaef2010-07-14 21:01:21 -0700795 if (confirm_selection(confirm_restore, "Yes - Restore system"))
agrabren1f76a5d2010-12-29 12:15:18 -0600796 nandroid_restore(file, 0, 1, 0, 0, 0, 0);
Koushik K. Duttafe84a7f2010-03-25 18:19:23 -0700797 break;
798 case 2:
Koushik Duttad63eaef2010-07-14 21:01:21 -0700799 if (confirm_selection(confirm_restore, "Yes - Restore data"))
agrabren1f76a5d2010-12-29 12:15:18 -0600800 nandroid_restore(file, 0, 0, 1, 0, 0, 0);
Koushik K. Duttafe84a7f2010-03-25 18:19:23 -0700801 break;
802 case 3:
Koushik Duttad63eaef2010-07-14 21:01:21 -0700803 if (confirm_selection(confirm_restore, "Yes - Restore cache"))
agrabren1f76a5d2010-12-29 12:15:18 -0600804 nandroid_restore(file, 0, 0, 0, 1, 0, 0);
Koushik K. Duttafe84a7f2010-03-25 18:19:23 -0700805 break;
Koushik Dutta2f73e582010-04-18 16:00:21 -0700806 case 4:
Koushik Duttad63eaef2010-07-14 21:01:21 -0700807 if (confirm_selection(confirm_restore, "Yes - Restore sd-ext"))
agrabren1f76a5d2010-12-29 12:15:18 -0600808 nandroid_restore(file, 0, 0, 0, 0, 1, 0);
809 break;
810 case 5:
811 if (confirm_selection(confirm_restore, "Yes - Restore wimax"))
812 nandroid_restore(file, 0, 0, 0, 0, 0, 1);
Koushik Dutta2f73e582010-04-18 16:00:21 -0700813 break;
Koushik K. Duttafe84a7f2010-03-25 18:19:23 -0700814 }
815}
816
Koushik K. Dutta5899ac92010-03-19 13:34:36 -0700817void show_nandroid_menu()
818{
819 static char* headers[] = { "Nandroid",
820 "",
Steve Kondik4123b582010-11-14 03:18:40 -0500821 NULL
Koushik K. Dutta5899ac92010-03-19 13:34:36 -0700822 };
823
Steve Kondik4123b582010-11-14 03:18:40 -0500824 static char* list[] = { "Backup",
Koushik K. Dutta5899ac92010-03-19 13:34:36 -0700825 "Restore",
Koushik K. Duttafe84a7f2010-03-25 18:19:23 -0700826 "Advanced Restore",
Koushik K. Dutta5899ac92010-03-19 13:34:36 -0700827 NULL
828 };
829
Koushik Duttadf1e4062010-12-18 17:42:31 -0800830 int chosen_item = get_menu_selection(headers, list, 0, 0);
Koushik K. Dutta5899ac92010-03-19 13:34:36 -0700831 switch (chosen_item)
832 {
833 case 0:
834 {
Koushik K. Dutta5899ac92010-03-19 13:34:36 -0700835 char backup_path[PATH_MAX];
Koushik K. Dutta6a26e7c2010-03-27 15:26:11 -0700836 time_t t = time(NULL);
837 struct tm *tmp = localtime(&t);
838 if (tmp == NULL)
839 {
840 struct timeval tp;
841 gettimeofday(&tp, NULL);
842 sprintf(backup_path, "/sdcard/clockworkmod/backup/%d", tp.tv_sec);
843 }
844 else
845 {
846 strftime(backup_path, sizeof(backup_path), "/sdcard/clockworkmod/backup/%F.%H.%M.%S", tmp);
847 }
Koushik K. Dutta5899ac92010-03-19 13:34:36 -0700848 nandroid_backup(backup_path);
849 }
850 break;
851 case 1:
852 show_nandroid_restore_menu();
853 break;
Koushik K. Duttafe84a7f2010-03-25 18:19:23 -0700854 case 2:
855 show_nandroid_advanced_restore_menu();
856 break;
Koushik K. Dutta5899ac92010-03-19 13:34:36 -0700857 }
Koushik K. Duttaa496b512010-03-19 14:51:45 -0700858}
859
Koushik Duttafd1579b2010-05-01 12:46:55 -0700860void wipe_battery_stats()
861{
Koushik Duttadf1e4062010-12-18 17:42:31 -0800862 ensure_path_mounted("/data");
Koushik Duttafd1579b2010-05-01 12:46:55 -0700863 remove("/data/system/batterystats.bin");
Koushik Duttadf1e4062010-12-18 17:42:31 -0800864 ensure_path_unmounted("/data");
Koushik Duttafd1579b2010-05-01 12:46:55 -0700865}
866
Koushik K. Duttaa496b512010-03-19 14:51:45 -0700867void show_advanced_menu()
868{
869 static char* headers[] = { "Advanced and Debugging Menu",
870 "",
871 NULL
872 };
873
Koushik K. Dutta7fe4d7b2010-04-06 23:04:52 -0700874 static char* list[] = { "Reboot Recovery",
Koushik Dutta49af23c2010-06-21 13:45:51 -0700875 "Wipe Dalvik Cache",
Koushik Duttafd1579b2010-05-01 12:46:55 -0700876 "Wipe Battery Stats",
Koushik Dutta598cfc72010-06-20 09:42:47 -0700877 "Report Error",
Koushik K. Dutta7fe4d7b2010-04-06 23:04:52 -0700878 "Key Test",
Koushik Duttae17a78d2010-08-29 12:35:10 -0700879#ifndef BOARD_HAS_SMALL_RECOVERY
Koushik Duttaceddcd52010-08-23 16:13:14 -0700880 "Partition SD Card",
881 "Fix Permissions",
Brint E. Kriebeld3522332010-12-11 20:52:06 -0700882#ifdef BOARD_HAS_SDCARD_INTERNAL
883 "Partition Internal SD Card",
884#endif
Koushik Duttae17a78d2010-08-29 12:35:10 -0700885#endif
Koushik K. Duttaa496b512010-03-19 14:51:45 -0700886 NULL
887 };
888
889 for (;;)
890 {
Koushik Duttadf1e4062010-12-18 17:42:31 -0800891 int chosen_item = get_menu_selection(headers, list, 0, 0);
Koushik K. Duttaa496b512010-03-19 14:51:45 -0700892 if (chosen_item == GO_BACK)
893 break;
894 switch (chosen_item)
895 {
896 case 0:
atinm54815c92011-05-03 00:25:01 -0400897#ifdef TARGET_RECOVERY_PRE_COMMAND
898 __system( TARGET_RECOVERY_PRE_COMMAND );
899#endif
Koushik K. Dutta7fe4d7b2010-04-06 23:04:52 -0700900 __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, "recovery");
901 break;
902 case 1:
Koushik Duttad63eaef2010-07-14 21:01:21 -0700903 {
Koushik Duttadf1e4062010-12-18 17:42:31 -0800904 if (0 != ensure_path_mounted("/data"))
Koushik Dutta49af23c2010-06-21 13:45:51 -0700905 break;
Koushik Duttadf1e4062010-12-18 17:42:31 -0800906 ensure_path_mounted("/sd-ext");
907 ensure_path_mounted("/cache");
Koushik Dutta6c7745d2010-08-07 12:17:13 -0700908 if (confirm_selection( "Confirm wipe?", "Yes - Wipe Dalvik Cache")) {
Koushik Duttad63eaef2010-07-14 21:01:21 -0700909 __system("rm -r /data/dalvik-cache");
Koushik Dutta6c7745d2010-08-07 12:17:13 -0700910 __system("rm -r /cache/dalvik-cache");
911 __system("rm -r /sd-ext/dalvik-cache");
912 }
Koushik Duttadf1e4062010-12-18 17:42:31 -0800913 ensure_path_unmounted("/data");
Koushik Dutta6c7745d2010-08-07 12:17:13 -0700914 ui_print("Dalvik Cache wiped.\n");
Koushik Duttafd1579b2010-05-01 12:46:55 -0700915 break;
Koushik Duttad63eaef2010-07-14 21:01:21 -0700916 }
Koushik Duttafd1579b2010-05-01 12:46:55 -0700917 case 2:
Koushik Duttad63eaef2010-07-14 21:01:21 -0700918 {
919 if (confirm_selection( "Confirm wipe?", "Yes - Wipe Battery Stats"))
920 wipe_battery_stats();
Koushik Dutta598cfc72010-06-20 09:42:47 -0700921 break;
Koushik Duttad63eaef2010-07-14 21:01:21 -0700922 }
Koushik Dutta598cfc72010-06-20 09:42:47 -0700923 case 3:
Koushik Dutta49af23c2010-06-21 13:45:51 -0700924 handle_failure(1);
925 break;
926 case 4:
Koushik K. Duttaa496b512010-03-19 14:51:45 -0700927 {
928 ui_print("Outputting key codes.\n");
929 ui_print("Go back to end debugging.\n");
930 int key;
931 int action;
932 do
933 {
934 key = ui_wait_key();
935 action = device_handle_key(key, 1);
936 ui_print("Key: %d\n", key);
937 }
938 while (action != GO_BACK);
Koushik Dutta56606a22010-08-23 16:15:33 -0700939 break;
Koushik K. Duttaa496b512010-03-19 14:51:45 -0700940 }
Koushik Duttaf0e31b82010-08-17 16:55:38 -0700941 case 5:
942 {
Koushik Duttaceddcd52010-08-23 16:13:14 -0700943 static char* ext_sizes[] = { "128M",
944 "256M",
945 "512M",
946 "1024M",
Brint E. Kriebel0b233312010-11-14 15:31:17 -0700947 "2048M",
948 "4096M",
Koushik Duttaceddcd52010-08-23 16:13:14 -0700949 NULL };
950
951 static char* swap_sizes[] = { "0M",
952 "32M",
953 "64M",
954 "128M",
955 "256M",
956 NULL };
957
958 static char* ext_headers[] = { "Ext Size", "", NULL };
959 static char* swap_headers[] = { "Swap Size", "", NULL };
960
Koushik Duttadf1e4062010-12-18 17:42:31 -0800961 int ext_size = get_menu_selection(ext_headers, ext_sizes, 0, 0);
Koushik Duttaceddcd52010-08-23 16:13:14 -0700962 if (ext_size == GO_BACK)
963 continue;
Steve Kondik4123b582010-11-14 03:18:40 -0500964
Koushik Duttadf1e4062010-12-18 17:42:31 -0800965 int swap_size = get_menu_selection(swap_headers, swap_sizes, 0, 0);
Koushik Duttaceddcd52010-08-23 16:13:14 -0700966 if (swap_size == GO_BACK)
967 continue;
968
969 char sddevice[256];
Koushik Duttadf1e4062010-12-18 17:42:31 -0800970 Volume *vol = volume_for_path("/sdcard");
971 strcpy(sddevice, vol->device);
Koushik Duttaceddcd52010-08-23 16:13:14 -0700972 // we only want the mmcblk, not the partition
973 sddevice[strlen("/dev/block/mmcblkX")] = NULL;
974 char cmd[PATH_MAX];
975 setenv("SDPATH", sddevice, 1);
976 sprintf(cmd, "sdparted -es %s -ss %s -efs ext3 -s", ext_sizes[ext_size], swap_sizes[swap_size]);
977 ui_print("Partitioning SD Card... please wait...\n");
978 if (0 == __system(cmd))
979 ui_print("Done!\n");
980 else
981 ui_print("An error occured while partitioning your SD Card. Please see /tmp/recovery.log for more details.\n");
Koushik Dutta56606a22010-08-23 16:15:33 -0700982 break;
Koushik Duttaf0e31b82010-08-17 16:55:38 -0700983 }
Koushik Dutta38e8b2b2010-08-17 22:21:53 -0700984 case 6:
985 {
Koushik Duttadf1e4062010-12-18 17:42:31 -0800986 ensure_path_mounted("/system");
987 ensure_path_mounted("/data");
Koushik Duttaceddcd52010-08-23 16:13:14 -0700988 ui_print("Fixing permissions...\n");
989 __system("fix_permissions");
990 ui_print("Done!\n");
Koushik Dutta56606a22010-08-23 16:15:33 -0700991 break;
Koushik Dutta38e8b2b2010-08-17 22:21:53 -0700992 }
Brint E. Kriebeld3522332010-12-11 20:52:06 -0700993 case 7:
994 {
995 static char* ext_sizes[] = { "128M",
996 "256M",
997 "512M",
998 "1024M",
999 "2048M",
1000 "4096M",
1001 NULL };
1002
1003 static char* swap_sizes[] = { "0M",
1004 "32M",
1005 "64M",
1006 "128M",
1007 "256M",
1008 NULL };
1009
1010 static char* ext_headers[] = { "Data Size", "", NULL };
1011 static char* swap_headers[] = { "Swap Size", "", NULL };
1012
Koushik Duttadf1e4062010-12-18 17:42:31 -08001013 int ext_size = get_menu_selection(ext_headers, ext_sizes, 0, 0);
Brint E. Kriebeld3522332010-12-11 20:52:06 -07001014 if (ext_size == GO_BACK)
1015 continue;
1016
1017 int swap_size = 0;
1018 if (swap_size == GO_BACK)
1019 continue;
1020
1021 char sddevice[256];
Koushik Duttadf1e4062010-12-18 17:42:31 -08001022 Volume *vol = volume_for_path("/emmc");
1023 strcpy(sddevice, vol->device);
Brint E. Kriebeld3522332010-12-11 20:52:06 -07001024 // we only want the mmcblk, not the partition
1025 sddevice[strlen("/dev/block/mmcblkX")] = NULL;
1026 char cmd[PATH_MAX];
1027 setenv("SDPATH", sddevice, 1);
1028 sprintf(cmd, "sdparted -es %s -ss %s -efs ext3 -s", ext_sizes[ext_size], swap_sizes[swap_size]);
1029 ui_print("Partitioning Internal SD Card... please wait...\n");
1030 if (0 == __system(cmd))
1031 ui_print("Done!\n");
1032 else
1033 ui_print("An error occured while partitioning your Internal SD Card. Please see /tmp/recovery.log for more details.\n");
1034 break;
1035 }
Koushik K. Duttaa496b512010-03-19 14:51:45 -07001036 }
1037 }
Koushik Dutta14239d22010-06-14 15:02:48 -07001038}
1039
Koushik Duttab643e4f2010-12-18 18:39:39 -08001040void write_fstab_root(char *path, FILE *file)
Koushik Dutta14239d22010-06-14 15:02:48 -07001041{
Koushik Duttab643e4f2010-12-18 18:39:39 -08001042 Volume *vol = volume_for_path(path);
1043 if (vol == NULL) {
Koushik Dutta9765a032010-12-18 21:31:02 -08001044 LOGW("Unable to get recovery.fstab info for %s during fstab generation!\n", path);
Koushik Dutta598cfc72010-06-20 09:42:47 -07001045 return;
Koushik Duttaa6522b32010-06-20 13:16:06 -07001046 }
Steve Kondik4123b582010-11-14 03:18:40 -05001047
Koushik Dutta31b74112010-12-20 08:49:20 -08001048 char device[200];
1049 if (vol->device[0] != '/')
1050 get_partition_device(vol->device, device);
1051 else
1052 strcpy(device, vol->device);
1053
1054 fprintf(file, "%s ", device);
Koushik Duttab643e4f2010-12-18 18:39:39 -08001055 fprintf(file, "%s ", path);
Koushik Duttaab1f8b82011-02-27 17:28:30 -08001056 // special case rfs cause auto will mount it as vfat on samsung.
1057 fprintf(file, "%s rw\n", vol->fs_type2 != NULL && strcmp(vol->fs_type, "rfs") != 0 ? "auto" : vol->fs_type);
Koushik Dutta14239d22010-06-14 15:02:48 -07001058}
1059
1060void create_fstab()
1061{
Koushik Duttab643e4f2010-12-18 18:39:39 -08001062 struct stat info;
Koushik Duttacd44ab92010-06-23 00:02:14 -07001063 __system("touch /etc/mtab");
Koushik Dutta14239d22010-06-14 15:02:48 -07001064 FILE *file = fopen("/etc/fstab", "w");
Koushik Duttaa6522b32010-06-20 13:16:06 -07001065 if (file == NULL) {
Koushik Duttab643e4f2010-12-18 18:39:39 -08001066 LOGW("Unable to create /etc/fstab!\n");
Koushik Dutta598cfc72010-06-20 09:42:47 -07001067 return;
Koushik Duttaa6522b32010-06-20 13:16:06 -07001068 }
Brandon Bennett6d0604b2011-01-28 13:39:10 -07001069 Volume *vol = volume_for_path("/boot");
Koushik Duttaa9f0e7f2011-02-12 10:21:11 -08001070 if (NULL != vol && strcmp(vol->fs_type, "mtd") != 0 && strcmp(vol->fs_type, "emmc") != 0 && strcmp(vol->fs_type, "bml") != 0)
Brandon Bennett6d0604b2011-01-28 13:39:10 -07001071 write_fstab_root("/boot", file);
Koushik Duttab643e4f2010-12-18 18:39:39 -08001072 write_fstab_root("/cache", file);
1073 write_fstab_root("/data", file);
Koushik Dutta5460f0c2010-12-18 22:37:49 -08001074 if (has_datadata()) {
1075 write_fstab_root("/datadata", file);
1076 }
Koushik Duttab643e4f2010-12-18 18:39:39 -08001077 write_fstab_root("/system", file);
1078 write_fstab_root("/sdcard", file);
1079 write_fstab_root("/sd-ext", file);
Koushik Dutta14239d22010-06-14 15:02:48 -07001080 fclose(file);
Koushik Dutta9765a032010-12-18 21:31:02 -08001081 LOGI("Completed outputting fstab.\n");
Koushik Dutta598cfc72010-06-20 09:42:47 -07001082}
1083
Koushik Dutta4196e0f2010-12-19 03:38:29 -08001084int bml_check_volume(const char *path) {
1085 ui_print("Checking %s...\n", path);
1086 ensure_path_unmounted(path);
1087 if (0 == ensure_path_mounted(path)) {
1088 ensure_path_unmounted(path);
1089 return 0;
1090 }
1091
1092 Volume *vol = volume_for_path(path);
1093 if (vol == NULL) {
1094 LOGE("Unable process volume! Skipping...\n");
1095 return 0;
1096 }
1097
Koushik Duttabec09952010-12-19 20:37:57 -08001098 ui_print("%s may be rfs. Checking...\n", path);
Koushik Dutta4196e0f2010-12-19 03:38:29 -08001099 char tmp[PATH_MAX];
1100 sprintf(tmp, "mount -t rfs %s %s", vol->device, path);
1101 int ret = __system(tmp);
1102 printf("%d\n", ret);
1103 return ret == 0 ? 1 : 0;
1104}
1105
1106void process_volumes() {
1107 create_fstab();
Koushik Dutta94caefe2011-06-10 09:17:30 -07001108 if (volume_for_path("/sdcard") == NULL) {
1109 rmdir("/sdcard");
1110 symlink("/data/media", "/sdcard");
1111 }
1112
Koushik Duttae8bc2c82011-02-27 14:00:19 -08001113 return;
1114
1115 // dead code.
Koushik Dutta4196e0f2010-12-19 03:38:29 -08001116 if (device_flash_type() != BML)
1117 return;
1118
1119 ui_print("Checking for ext4 partitions...\n");
1120 int ret = 0;
1121 ret = bml_check_volume("/system");
1122 ret |= bml_check_volume("/data");
1123 if (has_datadata())
1124 ret |= bml_check_volume("/datadata");
1125 ret |= bml_check_volume("/cache");
1126
1127 if (ret == 0) {
1128 ui_print("Done!\n");
1129 return;
1130 }
1131
Koushik Dutta745b5ff2010-12-21 00:58:43 -08001132 char backup_path[PATH_MAX];
1133 time_t t = time(NULL);
1134 char backup_name[PATH_MAX];
1135 struct timeval tp;
1136 gettimeofday(&tp, NULL);
1137 sprintf(backup_name, "before-ext4-convert-%d", tp.tv_sec);
1138 sprintf(backup_path, "/sdcard/clockworkmod/backup/%s", backup_name);
1139
Koushik Dutta4196e0f2010-12-19 03:38:29 -08001140 ui_set_show_text(1);
1141 ui_print("Filesystems need to be converted to ext4.\n");
1142 ui_print("A backup and restore will now take place.\n");
Koushik Duttabec09952010-12-19 20:37:57 -08001143 ui_print("If anything goes wrong, your backup will be\n");
Koushik Dutta745b5ff2010-12-21 00:58:43 -08001144 ui_print("named %s. Try restoring it\n", backup_name);
Koushik Duttabec09952010-12-19 20:37:57 -08001145 ui_print("in case of error.\n");
Koushik Dutta4196e0f2010-12-19 03:38:29 -08001146
Koushik Dutta745b5ff2010-12-21 00:58:43 -08001147 nandroid_backup(backup_path);
Koushik Dutta5b7f34a2010-12-29 23:36:03 -08001148 nandroid_restore(backup_path, 1, 1, 1, 1, 1, 0);
Koushik Dutta4196e0f2010-12-19 03:38:29 -08001149 ui_set_show_text(0);
1150}
1151
Koushik Dutta598cfc72010-06-20 09:42:47 -07001152void handle_failure(int ret)
1153{
1154 if (ret == 0)
1155 return;
Koushik Duttadf1e4062010-12-18 17:42:31 -08001156 if (0 != ensure_path_mounted("/sdcard"))
Koushik Dutta598cfc72010-06-20 09:42:47 -07001157 return;
Koushik Duttaa6522b32010-06-20 13:16:06 -07001158 mkdir("/sdcard/clockworkmod", S_IRWXU);
1159 __system("cp /tmp/recovery.log /sdcard/clockworkmod/recovery.log");
Koushik Dutta38e8b2b2010-08-17 22:21:53 -07001160 ui_print("/tmp/recovery.log was copied to /sdcard/clockworkmod/recovery.log. Please open ROM Manager to report the issue.\n");
Steve Kondik4123b582010-11-14 03:18:40 -05001161}
Koushik Duttadf1e4062010-12-18 17:42:31 -08001162
Koushik Duttadf1e4062010-12-18 17:42:31 -08001163int is_path_mounted(const char* path) {
1164 Volume* v = volume_for_path(path);
1165 if (v == NULL) {
1166 return 0;
1167 }
1168 if (strcmp(v->fs_type, "ramdisk") == 0) {
1169 // the ramdisk is always mounted.
1170 return 1;
1171 }
1172
1173 int result;
1174 result = scan_mounted_volumes();
1175 if (result < 0) {
1176 LOGE("failed to scan mounted volumes\n");
1177 return 0;
1178 }
1179
1180 const MountedVolume* mv =
1181 find_mounted_volume_by_mount_point(v->mount_point);
1182 if (mv) {
1183 // volume is already mounted
1184 return 1;
1185 }
1186 return 0;
1187}
Koushik Dutta5460f0c2010-12-18 22:37:49 -08001188
1189int has_datadata() {
1190 Volume *vol = volume_for_path("/datadata");
1191 return vol != NULL;
Koushik Duttad8e21c32011-01-04 10:46:23 -08001192}
1193
1194int volume_main(int argc, char **argv) {
1195 load_volume_table();
1196 return 0;
1197}