blob: c99d8016c78949b410dfe3c631290a2b736a7f6e [file] [log] [blame]
Kenny Root344ca102012-04-03 17:23:01 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <stdio.h>
18#include <stdlib.h>
19#include <fcntl.h>
20#include <unistd.h>
21#include <errno.h>
22#include <string.h>
23#include <dirent.h>
24#include <errno.h>
25#include <fcntl.h>
26
27#include <sys/types.h>
28#include <sys/stat.h>
29#include <sys/types.h>
30#include <sys/mman.h>
31#include <sys/mount.h>
32
33#include <linux/kdev_t.h>
34#include <linux/fs.h>
35
36#define LOG_TAG "Vold"
37
38#include <cutils/log.h>
39#include <cutils/properties.h>
40
41#include "Ext4.h"
Rom Lemarchand5593c852012-12-21 12:41:43 -080042#include "VoldUtil.h"
Kenny Root344ca102012-04-03 17:23:01 -070043
44#define MKEXT4FS_PATH "/system/bin/make_ext4fs";
45
46extern "C" int logwrap(int argc, const char **argv, int background);
47
48
49int Ext4::doMount(const char *fsPath, const char *mountPoint, bool ro, bool remount,
50 bool executable) {
51 int rc;
52 unsigned long flags;
53
54 flags = MS_NOATIME | MS_NODEV | MS_NOSUID | MS_DIRSYNC;
55
56 flags |= (executable ? 0 : MS_NOEXEC);
57 flags |= (ro ? MS_RDONLY : 0);
58 flags |= (remount ? MS_REMOUNT : 0);
59
60 rc = mount(fsPath, mountPoint, "ext4", flags, NULL);
61
62 if (rc && errno == EROFS) {
63 SLOGE("%s appears to be a read only filesystem - retrying mount RO", fsPath);
64 flags |= MS_RDONLY;
65 rc = mount(fsPath, mountPoint, "ext4", flags, NULL);
66 }
67
68 return rc;
69}
70
rpcraiga54e13a2012-09-21 14:17:08 -040071int Ext4::format(const char *fsPath, const char *mountpoint) {
Kenny Root344ca102012-04-03 17:23:01 -070072 int fd;
Rom Lemarchand5593c852012-12-21 12:41:43 -080073 const char *args[5];
Kenny Root344ca102012-04-03 17:23:01 -070074 int rc;
75
76 args[0] = MKEXT4FS_PATH;
77 args[1] = "-J";
rpcraiga54e13a2012-09-21 14:17:08 -040078 args[2] = "-a";
79 args[3] = mountpoint;
80 args[4] = fsPath;
Rom Lemarchand5593c852012-12-21 12:41:43 -080081 rc = logwrap(ARRAY_SIZE(args), args, 1);
Kenny Root344ca102012-04-03 17:23:01 -070082
83 if (rc == 0) {
84 SLOGI("Filesystem (ext4) formatted OK");
85 return 0;
86 } else {
87 SLOGE("Format (ext4) failed (unknown exit code %d)", rc);
88 errno = EIO;
89 return -1;
90 }
91 return 0;
92}