2009-03-04 03:28:42 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
2010-09-20 19:16:13 +00:00
|
|
|
#include <ctype.h>
|
2009-03-04 03:28:42 +00:00
|
|
|
|
|
|
|
#include "mtdutils/mtdutils.h"
|
2010-12-19 01:42:31 +00:00
|
|
|
#include "mounts.h"
|
2009-03-04 03:28:42 +00:00
|
|
|
#include "roots.h"
|
|
|
|
#include "common.h"
|
2010-09-20 19:16:13 +00:00
|
|
|
#include "make_ext4fs.h"
|
2009-03-04 03:28:42 +00:00
|
|
|
|
2011-05-26 18:47:56 +00:00
|
|
|
#include "flashutils/flashutils.h"
|
|
|
|
#include "extendedcommands.h"
|
|
|
|
|
2011-02-13 19:59:30 +00:00
|
|
|
int num_volumes;
|
|
|
|
Volume* device_volumes;
|
|
|
|
|
|
|
|
int get_num_volumes() {
|
|
|
|
return num_volumes;
|
|
|
|
}
|
|
|
|
|
|
|
|
Volume* get_device_volumes() {
|
|
|
|
return device_volumes;
|
|
|
|
}
|
2009-03-04 03:28:42 +00:00
|
|
|
|
2011-03-02 20:32:13 +00:00
|
|
|
static int is_null(const char* sz) {
|
|
|
|
if (sz == NULL)
|
|
|
|
return 1;
|
|
|
|
if (strcmp("NULL", sz) == 0)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char* dupe_string(const char* sz) {
|
|
|
|
if (is_null(sz))
|
|
|
|
return NULL;
|
|
|
|
return strdup(sz);
|
|
|
|
}
|
|
|
|
|
2011-02-17 23:55:21 +00:00
|
|
|
static int parse_options(char* options, Volume* volume) {
|
|
|
|
char* option;
|
|
|
|
while (option = strtok(options, ",")) {
|
|
|
|
options = NULL;
|
|
|
|
|
|
|
|
if (strncmp(option, "length=", 7) == 0) {
|
|
|
|
volume->length = strtoll(option+7, NULL, 10);
|
2011-11-17 00:00:35 +00:00
|
|
|
} else if (strncmp(option, "fstype2=", 8) == 0) {
|
|
|
|
volume->fs_type2 = volume->fs_type;
|
2012-01-29 22:02:39 +00:00
|
|
|
volume->fs_type = strdup(option + 8);
|
2011-11-17 00:00:35 +00:00
|
|
|
} else if (strncmp(option, "fs_options=", 11) == 0) {
|
2012-01-29 22:02:39 +00:00
|
|
|
volume->fs_options = strdup(option + 11);
|
2011-11-17 00:00:35 +00:00
|
|
|
} else if (strncmp(option, "fs_options2=", 12) == 0) {
|
2012-01-29 22:02:39 +00:00
|
|
|
volume->fs_options2 = strdup(option + 12);
|
2011-02-17 23:55:21 +00:00
|
|
|
} else {
|
|
|
|
LOGE("bad option \"%s\"\n", option);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
void load_volume_table() {
|
|
|
|
int alloc = 2;
|
|
|
|
device_volumes = malloc(alloc * sizeof(Volume));
|
2009-03-04 03:28:42 +00:00
|
|
|
|
2010-09-21 23:49:26 +00:00
|
|
|
// Insert an entry for /tmp, which is the ramdisk and is always mounted.
|
|
|
|
device_volumes[0].mount_point = "/tmp";
|
|
|
|
device_volumes[0].fs_type = "ramdisk";
|
|
|
|
device_volumes[0].device = NULL;
|
|
|
|
device_volumes[0].device2 = NULL;
|
2011-11-17 00:00:35 +00:00
|
|
|
device_volumes[0].fs_type2 = NULL;
|
2011-03-02 05:41:54 +00:00
|
|
|
device_volumes[0].fs_options = NULL;
|
|
|
|
device_volumes[0].fs_options2 = NULL;
|
2011-02-17 23:55:21 +00:00
|
|
|
device_volumes[0].length = 0;
|
2010-09-21 23:49:26 +00:00
|
|
|
num_volumes = 1;
|
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
FILE* fstab = fopen("/etc/recovery.fstab", "r");
|
|
|
|
if (fstab == NULL) {
|
|
|
|
LOGE("failed to open /etc/recovery.fstab (%s)\n", strerror(errno));
|
|
|
|
return;
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
char buffer[1024];
|
|
|
|
int i;
|
|
|
|
while (fgets(buffer, sizeof(buffer)-1, fstab)) {
|
|
|
|
for (i = 0; buffer[i] && isspace(buffer[i]); ++i);
|
|
|
|
if (buffer[i] == '\0' || buffer[i] == '#') continue;
|
2009-03-04 03:28:42 +00:00
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
char* original = strdup(buffer);
|
2009-03-04 03:28:42 +00:00
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
char* mount_point = strtok(buffer+i, " \t\n");
|
|
|
|
char* fs_type = strtok(NULL, " \t\n");
|
|
|
|
char* device = strtok(NULL, " \t\n");
|
|
|
|
// lines may optionally have a second device, to use if
|
|
|
|
// mounting the first one fails.
|
2011-02-17 23:55:21 +00:00
|
|
|
char* options = NULL;
|
2010-09-20 19:16:13 +00:00
|
|
|
char* device2 = strtok(NULL, " \t\n");
|
2011-02-17 23:55:21 +00:00
|
|
|
if (device2) {
|
|
|
|
if (device2[0] == '/') {
|
|
|
|
options = strtok(NULL, " \t\n");
|
|
|
|
} else {
|
|
|
|
options = device2;
|
|
|
|
device2 = NULL;
|
|
|
|
}
|
|
|
|
}
|
2009-03-04 03:28:42 +00:00
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
if (mount_point && fs_type && device) {
|
|
|
|
while (num_volumes >= alloc) {
|
|
|
|
alloc *= 2;
|
|
|
|
device_volumes = realloc(device_volumes, alloc*sizeof(Volume));
|
|
|
|
}
|
|
|
|
device_volumes[num_volumes].mount_point = strdup(mount_point);
|
|
|
|
device_volumes[num_volumes].fs_type = strdup(fs_type);
|
|
|
|
device_volumes[num_volumes].device = strdup(device);
|
|
|
|
device_volumes[num_volumes].device2 =
|
|
|
|
device2 ? strdup(device2) : NULL;
|
2011-03-02 20:32:13 +00:00
|
|
|
|
2011-02-17 23:55:21 +00:00
|
|
|
device_volumes[num_volumes].length = 0;
|
2011-11-23 22:06:12 +00:00
|
|
|
|
|
|
|
device_volumes[num_volumes].fs_type2 = NULL;
|
|
|
|
device_volumes[num_volumes].fs_options = NULL;
|
|
|
|
device_volumes[num_volumes].fs_options2 = NULL;
|
|
|
|
|
2011-02-17 23:55:21 +00:00
|
|
|
if (parse_options(options, device_volumes + num_volumes) != 0) {
|
|
|
|
LOGE("skipping malformed recovery.fstab line: %s\n", original);
|
|
|
|
} else {
|
|
|
|
++num_volumes;
|
2011-02-27 22:00:19 +00:00
|
|
|
}
|
2010-09-20 19:16:13 +00:00
|
|
|
} else {
|
|
|
|
LOGE("skipping malformed recovery.fstab line: %s\n", original);
|
|
|
|
}
|
|
|
|
free(original);
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
fclose(fstab);
|
2009-03-04 03:28:42 +00:00
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
printf("recovery filesystem table\n");
|
|
|
|
printf("=========================\n");
|
|
|
|
for (i = 0; i < num_volumes; ++i) {
|
|
|
|
Volume* v = &device_volumes[i];
|
2011-02-17 23:55:21 +00:00
|
|
|
printf(" %d %s %s %s %s %lld\n", i, v->mount_point, v->fs_type,
|
|
|
|
v->device, v->device2, v->length);
|
2010-07-09 00:27:55 +00:00
|
|
|
}
|
2010-09-20 19:16:13 +00:00
|
|
|
printf("\n");
|
|
|
|
}
|
2009-03-04 03:28:42 +00:00
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
Volume* volume_for_path(const char* path) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < num_volumes; ++i) {
|
|
|
|
Volume* v = device_volumes+i;
|
|
|
|
int len = strlen(v->mount_point);
|
|
|
|
if (strncmp(path, v->mount_point, len) == 0 &&
|
|
|
|
(path[len] == '\0' || path[len] == '/')) {
|
|
|
|
return v;
|
|
|
|
}
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
2010-09-20 19:16:13 +00:00
|
|
|
return NULL;
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
|
|
|
|
2011-02-27 22:00:19 +00:00
|
|
|
int try_mount(const char* device, const char* mount_point, const char* fs_type, const char* fs_options) {
|
2011-02-09 14:12:44 +00:00
|
|
|
if (device == NULL || mount_point == NULL || fs_type == NULL)
|
|
|
|
return -1;
|
2011-02-27 22:00:19 +00:00
|
|
|
int ret = 0;
|
|
|
|
if (fs_options == NULL) {
|
|
|
|
ret = mount(device, mount_point, fs_type,
|
2011-02-09 14:12:44 +00:00
|
|
|
MS_NOATIME | MS_NODEV | MS_NODIRATIME, "");
|
2011-02-27 22:00:19 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
char mount_cmd[PATH_MAX];
|
2011-02-28 01:00:47 +00:00
|
|
|
sprintf(mount_cmd, "mount -t %s -o%s %s %s", fs_type, fs_options, device, mount_point);
|
2011-02-27 22:00:19 +00:00
|
|
|
ret = __system(mount_cmd);
|
|
|
|
}
|
2011-02-09 14:12:44 +00:00
|
|
|
if (ret == 0)
|
|
|
|
return 0;
|
|
|
|
LOGW("failed to mount %s (%s)\n", device, strerror(errno));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-06-10 16:45:52 +00:00
|
|
|
int is_data_media() {
|
|
|
|
Volume *data = volume_for_path("/data");
|
2011-11-26 18:55:00 +00:00
|
|
|
return data != NULL && strcmp(data->fs_type, "auto") == 0 || volume_for_path("/sdcard") == NULL;
|
2011-06-10 16:45:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void setup_data_media() {
|
|
|
|
rmdir("/sdcard");
|
|
|
|
mkdir("/data/media", 0755);
|
|
|
|
symlink("/data/media", "/sdcard");
|
|
|
|
}
|
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
int ensure_path_mounted(const char* path) {
|
2011-09-01 06:26:45 +00:00
|
|
|
return ensure_path_mounted_at_mount_point(path, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ensure_path_mounted_at_mount_point(const char* path, const char* mount_point) {
|
2010-09-20 19:16:13 +00:00
|
|
|
Volume* v = volume_for_path(path);
|
|
|
|
if (v == NULL) {
|
2011-06-09 02:03:27 +00:00
|
|
|
// no /sdcard? let's assume /data/media
|
2011-06-10 16:45:52 +00:00
|
|
|
if (strstr(path, "/sdcard") == path && is_data_media()) {
|
2011-11-23 22:06:12 +00:00
|
|
|
LOGI("using /data/media, no /sdcard found.\n");
|
2011-06-09 02:03:27 +00:00
|
|
|
int ret;
|
|
|
|
if (0 != (ret = ensure_path_mounted("/data")))
|
|
|
|
return ret;
|
2011-06-10 16:45:52 +00:00
|
|
|
setup_data_media();
|
2011-06-09 02:03:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2010-09-20 19:16:13 +00:00
|
|
|
LOGE("unknown volume for path [%s]\n", path);
|
2009-03-04 03:28:42 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2010-09-21 23:49:26 +00:00
|
|
|
if (strcmp(v->fs_type, "ramdisk") == 0) {
|
|
|
|
// the ramdisk is always mounted.
|
|
|
|
return 0;
|
|
|
|
}
|
2009-03-04 03:28:42 +00:00
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
int result;
|
|
|
|
result = scan_mounted_volumes();
|
|
|
|
if (result < 0) {
|
|
|
|
LOGE("failed to scan mounted volumes\n");
|
2009-03-04 03:28:42 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-09-01 06:26:45 +00:00
|
|
|
if (NULL == mount_point)
|
|
|
|
mount_point = v->mount_point;
|
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
const MountedVolume* mv =
|
2011-09-01 06:26:45 +00:00
|
|
|
find_mounted_volume_by_mount_point(mount_point);
|
2010-09-20 19:16:13 +00:00
|
|
|
if (mv) {
|
|
|
|
// volume is already mounted
|
2009-03-04 03:28:42 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-01 06:26:45 +00:00
|
|
|
mkdir(mount_point, 0755); // in case it doesn't already exist
|
2010-09-20 19:16:13 +00:00
|
|
|
|
|
|
|
if (strcmp(v->fs_type, "yaffs2") == 0) {
|
|
|
|
// mount an MTD partition as a YAFFS2 filesystem.
|
2009-03-04 03:28:42 +00:00
|
|
|
mtd_scan_partitions();
|
2010-09-20 19:16:13 +00:00
|
|
|
const MtdPartition* partition;
|
|
|
|
partition = mtd_find_partition_by_name(v->device);
|
2009-03-04 03:28:42 +00:00
|
|
|
if (partition == NULL) {
|
2010-09-20 19:16:13 +00:00
|
|
|
LOGE("failed to find \"%s\" partition to mount at \"%s\"\n",
|
2011-09-01 06:26:45 +00:00
|
|
|
v->device, mount_point);
|
2009-03-04 03:28:42 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2011-09-01 06:26:45 +00:00
|
|
|
return mtd_mount_partition(partition, mount_point, v->fs_type, 0);
|
2010-09-20 19:16:13 +00:00
|
|
|
} else if (strcmp(v->fs_type, "ext4") == 0 ||
|
2011-02-09 14:12:44 +00:00
|
|
|
strcmp(v->fs_type, "ext3") == 0 ||
|
2011-02-28 01:28:30 +00:00
|
|
|
strcmp(v->fs_type, "rfs") == 0 ||
|
2010-09-20 19:16:13 +00:00
|
|
|
strcmp(v->fs_type, "vfat") == 0) {
|
2011-09-01 06:26:45 +00:00
|
|
|
if ((result = try_mount(v->device, mount_point, v->fs_type, v->fs_options)) == 0)
|
2011-02-10 00:15:54 +00:00
|
|
|
return 0;
|
2011-09-01 06:26:45 +00:00
|
|
|
if ((result = try_mount(v->device2, mount_point, v->fs_type, v->fs_options)) == 0)
|
2011-02-10 00:15:54 +00:00
|
|
|
return 0;
|
2011-09-01 06:26:45 +00:00
|
|
|
if ((result = try_mount(v->device, mount_point, v->fs_type2, v->fs_options2)) == 0)
|
2011-02-10 00:32:42 +00:00
|
|
|
return 0;
|
2011-09-01 06:26:45 +00:00
|
|
|
if ((result = try_mount(v->device2, mount_point, v->fs_type2, v->fs_options2)) == 0)
|
2011-02-10 00:32:42 +00:00
|
|
|
return 0;
|
2011-02-09 14:12:44 +00:00
|
|
|
return result;
|
2010-12-19 05:58:43 +00:00
|
|
|
} else {
|
2010-12-19 11:38:29 +00:00
|
|
|
// let's try mounting with the mount binary and hope for the best.
|
|
|
|
char mount_cmd[PATH_MAX];
|
|
|
|
sprintf(mount_cmd, "mount %s", path);
|
|
|
|
return __system(mount_cmd);
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 06:26:45 +00:00
|
|
|
LOGE("unknown fs_type \"%s\" for %s\n", v->fs_type, mount_point);
|
2010-09-20 19:16:13 +00:00
|
|
|
return -1;
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
int ensure_path_unmounted(const char* path) {
|
2011-06-09 02:03:27 +00:00
|
|
|
// if we are using /data/media, do not ever unmount volumes /data or /sdcard
|
|
|
|
if (volume_for_path("/sdcard") == NULL && (strstr(path, "/sdcard") == path || strstr(path, "/data") == path)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
Volume* v = volume_for_path(path);
|
|
|
|
if (v == NULL) {
|
2011-06-09 02:03:27 +00:00
|
|
|
// no /sdcard? let's assume /data/media
|
2011-06-10 16:45:52 +00:00
|
|
|
if (strstr(path, "/sdcard") == path && is_data_media()) {
|
2011-06-09 02:03:27 +00:00
|
|
|
return ensure_path_unmounted("/data");
|
|
|
|
}
|
2010-09-20 19:16:13 +00:00
|
|
|
LOGE("unknown volume for path [%s]\n", path);
|
2009-03-04 03:28:42 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2010-09-21 23:49:26 +00:00
|
|
|
if (strcmp(v->fs_type, "ramdisk") == 0) {
|
|
|
|
// the ramdisk is always mounted; you can't unmount it.
|
|
|
|
return -1;
|
|
|
|
}
|
2009-03-04 03:28:42 +00:00
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
int result;
|
|
|
|
result = scan_mounted_volumes();
|
|
|
|
if (result < 0) {
|
|
|
|
LOGE("failed to scan mounted volumes\n");
|
|
|
|
return -1;
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
2010-09-20 19:16:13 +00:00
|
|
|
|
|
|
|
const MountedVolume* mv =
|
|
|
|
find_mounted_volume_by_mount_point(v->mount_point);
|
|
|
|
if (mv == NULL) {
|
|
|
|
// volume is already unmounted
|
2009-03-04 03:28:42 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
return unmount_mounted_volume(mv);
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
int format_volume(const char* volume) {
|
|
|
|
Volume* v = volume_for_path(volume);
|
|
|
|
if (v == NULL) {
|
2011-06-15 06:39:59 +00:00
|
|
|
// no /sdcard? let's assume /data/media
|
2011-06-15 07:00:55 +00:00
|
|
|
if (strstr(volume, "/sdcard") == volume && is_data_media()) {
|
|
|
|
return format_unknown_device(NULL, volume, NULL);
|
2011-06-15 06:39:59 +00:00
|
|
|
}
|
2010-12-19 02:57:47 +00:00
|
|
|
// silent failure for sd-ext
|
|
|
|
if (strcmp(volume, "/sd-ext") == 0)
|
|
|
|
return -1;
|
2010-09-20 19:16:13 +00:00
|
|
|
LOGE("unknown volume \"%s\"\n", volume);
|
|
|
|
return -1;
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
2011-12-18 21:49:52 +00:00
|
|
|
// check to see if /data is being formatted, and if it is /data/media
|
|
|
|
// Note: the /sdcard check is redundant probably, just being safe.
|
2011-11-26 18:55:00 +00:00
|
|
|
if (strstr(volume, "/data") == volume && volume_for_path("/sdcard") == NULL && is_data_media()) {
|
2011-12-18 21:49:52 +00:00
|
|
|
return format_unknown_device(NULL, volume, NULL);
|
2011-11-26 18:55:00 +00:00
|
|
|
}
|
2010-09-21 23:49:26 +00:00
|
|
|
if (strcmp(v->fs_type, "ramdisk") == 0) {
|
|
|
|
// you can't format the ramdisk.
|
|
|
|
LOGE("can't format_volume \"%s\"", volume);
|
|
|
|
return -1;
|
|
|
|
}
|
2010-09-20 19:16:13 +00:00
|
|
|
if (strcmp(v->mount_point, volume) != 0) {
|
2011-01-02 22:11:24 +00:00
|
|
|
#if 0
|
2010-09-20 19:16:13 +00:00
|
|
|
LOGE("can't give path \"%s\" to format_volume\n", volume);
|
2009-03-04 03:28:42 +00:00
|
|
|
return -1;
|
2011-01-02 22:11:24 +00:00
|
|
|
#endif
|
|
|
|
return format_unknown_device(v->device, volume, NULL);
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
if (ensure_path_unmounted(volume) != 0) {
|
|
|
|
LOGE("format_volume failed to unmount \"%s\"\n", v->mount_point);
|
2009-03-04 03:28:42 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-09-20 19:16:13 +00:00
|
|
|
if (strcmp(v->fs_type, "yaffs2") == 0 || strcmp(v->fs_type, "mtd") == 0) {
|
2009-03-04 03:28:42 +00:00
|
|
|
mtd_scan_partitions();
|
2010-09-20 19:16:13 +00:00
|
|
|
const MtdPartition* partition = mtd_find_partition_by_name(v->device);
|
2009-03-04 03:28:42 +00:00
|
|
|
if (partition == NULL) {
|
2010-09-20 19:16:13 +00:00
|
|
|
LOGE("format_volume: no MTD partition \"%s\"\n", v->device);
|
2009-03-04 03:28:42 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2010-09-20 19:16:13 +00:00
|
|
|
|
|
|
|
MtdWriteContext *write = mtd_write_partition(partition);
|
|
|
|
if (write == NULL) {
|
|
|
|
LOGW("format_volume: can't open MTD \"%s\"\n", v->device);
|
|
|
|
return -1;
|
|
|
|
} else if (mtd_erase_blocks(write, -1) == (off_t) -1) {
|
|
|
|
LOGW("format_volume: can't erase MTD \"%s\"\n", v->device);
|
|
|
|
mtd_write_close(write);
|
|
|
|
return -1;
|
|
|
|
} else if (mtd_write_close(write)) {
|
|
|
|
LOGW("format_volume: can't close MTD \"%s\"\n", v->device);
|
|
|
|
return -1;
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
2010-09-20 19:16:13 +00:00
|
|
|
return 0;
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
2010-09-20 19:16:13 +00:00
|
|
|
|
|
|
|
if (strcmp(v->fs_type, "ext4") == 0) {
|
2011-02-17 23:55:21 +00:00
|
|
|
int result = make_ext4fs(v->device, v->length);
|
2010-09-20 19:16:13 +00:00
|
|
|
if (result != 0) {
|
|
|
|
LOGE("format_volume: make_extf4fs failed on %s\n", v->device);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-12-19 06:29:27 +00:00
|
|
|
#if 0
|
2010-09-20 19:16:13 +00:00
|
|
|
LOGE("format_volume: fs_type \"%s\" unsupported\n", v->fs_type);
|
2009-03-04 03:28:42 +00:00
|
|
|
return -1;
|
2010-12-19 06:29:27 +00:00
|
|
|
#endif
|
2011-01-02 02:00:27 +00:00
|
|
|
return format_unknown_device(v->device, volume, v->fs_type);
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|