fstab_mount.c 12.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * Copyright (c) 2021 Huawei Device Co., Ltd.
 * 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 <string.h>
#include <stdbool.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <unistd.h>
X
xionglei6 已提交
24
#include "beget_ext.h"
25 26 27 28
#include "fs_manager/fs_manager.h"
#include "init_utils.h"
#include "securec.h"

S
sun_fan 已提交
29 30 31 32 33 34
#ifdef __cplusplus
#if __cplusplus
extern "C" {
#endif
#endif

35
#define FS_MANAGER_BUFFER_SIZE 512
S
sun_fan 已提交
36
#define BLOCK_SIZE_BUFFER (64)
37
#define RESIZE_BUFFER_SIZE 1024
S
sun_fan 已提交
38

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
bool IsSupportedFilesystem(const char *fsType)
{
    static const char *supportedFilesystem[] = {"ext4", "f2fs", NULL};

    bool supported = false;
    int index = 0;
    if (fsType != NULL) {
        while (supportedFilesystem[index] != NULL) {
            if (strcmp(supportedFilesystem[index++], fsType) == 0) {
                supported = true;
                break;
            }
        }
    }
    return supported;
}

static int ExecCommand(int argc, char **argv)
{
    if (argc == 0 || argv == NULL || argv[0] == NULL) {
        return -1;
    }
    pid_t pid = fork();
    if (pid < 0) {
X
xionglei6 已提交
63
        BEGET_LOGE("Fork new process to format failed: %d", errno);
64 65 66 67 68 69 70 71 72
        return -1;
    }
    if (pid == 0) {
        execv(argv[0], argv);
        exit(-1);
    }
    int status;
    waitpid(pid, &status, 0);
    if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
X
xionglei6 已提交
73
        BEGET_LOGE("Command %s failed with status %d", argv[0], WEXITSTATUS(status));
74 75 76 77 78 79 80 81 82 83 84
    }
    return WEXITSTATUS(status);
}

int DoFormat(const char *devPath, const char *fsType)
{
    if (devPath == NULL || fsType == NULL) {
        return -1;
    }

    if (!IsSupportedFilesystem(fsType)) {
X
xionglei6 已提交
85
        BEGET_LOGE("Do not support filesystem \" %s \"", fsType);
86 87 88 89 90 91 92
        return -1;
    }
    int ret = 0;
    char blockSizeBuffer[BLOCK_SIZE_BUFFER] = {0};
    if (strcmp(fsType, "ext4") == 0) {
        const unsigned int blockSize = 4096;
        if (snprintf_s(blockSizeBuffer, BLOCK_SIZE_BUFFER, BLOCK_SIZE_BUFFER - 1, "%u", blockSize) == -1) {
X
xionglei6 已提交
93
            BEGET_LOGE("Failed to build block size buffer");
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
            return -1;
        }
        char *formatCmds[] = {
            "/bin/mke2fs", "-F", "-t", (char *)fsType, "-b", blockSizeBuffer, (char *)devPath, NULL
        };
        int argc = ARRAY_LENGTH(formatCmds);
        char **argv = (char **)formatCmds;
        ret = ExecCommand(argc, argv);
    } else if (strcmp(fsType, "f2fs") == 0) {
        char *formatCmds[] = {
            "/bin/make_f2fs", (char *)devPath, NULL
        };
        int argc = ARRAY_LENGTH(formatCmds);
        char **argv = (char **)formatCmds;
        ret = ExecCommand(argc, argv);
    }
    return ret;
}

MountStatus GetMountStatusForMountPoint(const char *mp)
{
    if (mp == NULL) {
        return MOUNT_ERROR;
    }
    char buffer[FS_MANAGER_BUFFER_SIZE] = {0};
    const int expectedItems = 6;
    int count = 0;
    char **mountItems = NULL;
    MountStatus status = MOUNT_ERROR;
    bool found = false;

    FILE *fp = fopen("/proc/mounts", "r");
    if (fp == NULL) {
        return status;
    }
    while (fgets(buffer, sizeof(buffer) - 1, fp) != NULL) {
X
xionglei6 已提交
130
        size_t n = strlen(buffer);
131 132 133 134 135 136 137 138 139 140 141 142 143 144
        if (buffer[n - 1] == '\n') {
            buffer[n - 1] = '\0';
        }
        mountItems = SplitStringExt(buffer, " ", &count, expectedItems);
        if (mountItems != NULL && count == expectedItems) {
            // Second item in /proc/mounts is mount point
            if (strcmp(mountItems[1], mp) == 0) {
                FreeStringVector(mountItems, count);
                found = true;
                break;
            }
            FreeStringVector(mountItems, count);
        }
    }
X
xionglei6 已提交
145
    if (found) {
146 147 148 149
        status = MOUNT_MOUNTED;
    } else if (feof(fp) > 0) {
        status = MOUNT_UMOUNTED;
    }
S
sun_fan 已提交
150
    (void)fclose(fp);
151 152 153 154
    fp = NULL;
    return status;
}

155 156 157 158
static int DoResizeF2fs(const char* device, const unsigned long long size)
{
    char *file = "/system/bin/resize.f2fs";
    if (access(file, F_OK) != 0) {
X
xionglei6 已提交
159
        BEGET_LOGE("resize.f2fs is not exists.");
160 161 162 163 164 165 166 167 168 169 170 171
        return -1;
    }

    int ret = 0;
    if (size <= 0) {
        char *cmd[] = {
            file, "-s", (char *)device, NULL
        };
        int argc = ARRAY_LENGTH(cmd);
        char **argv = (char **)cmd;
        ret = ExecCommand(argc, argv);
    } else {
X
xionglei6 已提交
172 173
        unsigned long long realSize = size *
            ((unsigned long long)RESIZE_BUFFER_SIZE * RESIZE_BUFFER_SIZE / FS_MANAGER_BUFFER_SIZE);
174
        char sizeStr[RESIZE_BUFFER_SIZE] = {0};
175
        sprintf_s(sizeStr, RESIZE_BUFFER_SIZE, "%llu", realSize);
176 177 178 179 180 181 182
        char *cmd[] = {
            file, "-s", "-t", sizeStr, (char *)device, NULL
        };
        int argc = ARRAY_LENGTH(cmd);
        char **argv = (char **)cmd;
        ret = ExecCommand(argc, argv);
    }
X
xionglei6 已提交
183
    BEGET_LOGI("resize.f2fs is ending.");
184 185 186 187 188 189 190
    return ret;
}

static int DoFsckF2fs(const char* device)
{
    char *file = "/system/bin/fsck.f2fs";
    if (access(file, F_OK) != 0) {
X
xionglei6 已提交
191
        BEGET_LOGE("fsck.f2fs is not exists.");
192 193 194 195 196 197 198 199
        return -1;
    }

    char *cmd[] = {
        file, "-a", (char *)device, NULL
    };
    int argc = ARRAY_LENGTH(cmd);
    char **argv = (char **)cmd;
X
xionglei6 已提交
200
    BEGET_LOGI("fsck.f2fs is ending.");
X
xlfeng 已提交
201
    return ExecCommand(argc, argv);
202 203 204 205 206 207
}

static int DoResizeExt(const char* device, const unsigned long long size)
{
    char *file = "/system/bin/resize2fs";
    if (access(file, F_OK) != 0) {
X
xionglei6 已提交
208
        BEGET_LOGE("resize2fs is not exists.");
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
        return -1;
    }

    int ret = 0;
    if (size <= 0) {
        char *cmd[] = {
            file, "-f", (char *)device, NULL
        };
        int argc = ARRAY_LENGTH(cmd);
        char **argv = (char **)cmd;
        ret = ExecCommand(argc, argv);
    } else {
        char sizeStr[RESIZE_BUFFER_SIZE] = {0};
        sprintf_s(sizeStr, RESIZE_BUFFER_SIZE, "%lluM", size);
        char *cmd[] = {
            file, "-f", (char *)device, sizeStr, NULL
        };
        int argc = ARRAY_LENGTH(cmd);
        char **argv = (char **)cmd;
        ret = ExecCommand(argc, argv);
    }
X
xionglei6 已提交
230
    BEGET_LOGI("resize2fs is ending.");
231 232 233 234 235 236 237
    return ret;
}

static int DoFsckExt(const char* device)
{
    char *file = "/system/bin/e2fsck";
    if (access(file, F_OK) != 0) {
X
xionglei6 已提交
238
        BEGET_LOGE("e2fsck is not exists.");
239 240 241 242 243 244 245 246
        return -1;
    }

    char *cmd[] = {
        file, "-y", (char *)device, NULL
    };
    int argc = ARRAY_LENGTH(cmd);
    char **argv = (char **)cmd;
X
xionglei6 已提交
247
    BEGET_LOGI("e2fsck is ending.");
248 249 250
    return ExecCommand(argc, argv);
}

251 252 253 254 255 256 257
static int Mount(const char *source, const char *target, const char *fsType,
    unsigned long flags, const char *data)
{
    struct stat st = {};
    int rc = -1;

    if (source == NULL || target == NULL || fsType == NULL) {
W
Wen liumin 已提交
258
        BEGET_LOGE("Invalid argument for mount.");
259 260 261
        return -1;
    }
    if (stat(target, &st) != 0 && errno != ENOENT) {
X
xionglei6 已提交
262
        BEGET_LOGE("Cannot get stat of \" %s \", err = %d", target, errno);
263 264 265 266 267 268 269
        return -1;
    }
    if ((st.st_mode & S_IFMT) == S_IFLNK) { // link, delete it.
        unlink(target);
    }
    if (mkdir(target, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH) < 0) {
        if (errno != EEXIST) {
X
xionglei6 已提交
270
            BEGET_LOGE("Failed to create dir \" %s \", err = %d", target, errno);
271 272 273 274
            return -1;
        }
    }
    errno = 0;
S
sun_fan 已提交
275
    while ((rc = mount(source, target, fsType, flags, data)) != 0) {
276
        if (errno == EAGAIN) {
X
xionglei6 已提交
277
            BEGET_LOGE("Mount %s to %s failed. try again", source, target);
278 279
            continue;
        }
280 281 282 283
        if (errno == EBUSY) {
            rc = 0;
        }
        break;
284 285 286 287 288 289 290 291 292 293 294 295 296 297
    }
    return rc;
}

int MountOneItem(FstabItem *item)
{
    if (item == NULL) {
        return -1;
    }
    unsigned long mountFlags;
    char fsSpecificData[FS_MANAGER_BUFFER_SIZE] = {0};

    mountFlags = GetMountFlags(item->mountOptions, fsSpecificData, sizeof(fsSpecificData));
    if (!IsSupportedFilesystem(item->fsType)) {
X
xionglei6 已提交
298
        BEGET_LOGE("Unsupported file system \" %s \"", item->fsType);
X
xionglei6 已提交
299
        return 0;
300 301
    }
    if (FM_MANAGER_WAIT_ENABLED(item->fsManagerFlags)) {
H
huangshan 已提交
302
        WaitForFile(item->deviceName, WAIT_MAX_SECOND);
303
    }
304 305 306 307

    if (strcmp(item->fsType, "f2fs") == 0 && strcmp(item->mountPoint, "/data") == 0) {
        int ret = DoResizeF2fs(item->deviceName, 0);
        if (ret != 0) {
X
xionglei6 已提交
308
            BEGET_LOGE("Failed to resize.f2fs dir %s , ret = %d", item->deviceName, ret);
309 310 311 312
        }

        ret = DoFsckF2fs(item->deviceName);
        if (ret != 0) {
X
xionglei6 已提交
313
            BEGET_LOGE("Failed to fsck.f2fs dir %s , ret = %d", item->deviceName, ret);
314 315 316 317
        }
    } else if (strcmp(item->fsType, "ext4") == 0 && strcmp(item->mountPoint, "/data") == 0) {
        int ret = DoResizeExt(item->deviceName, 0);
        if (ret != 0) {
X
xionglei6 已提交
318
            BEGET_LOGE("Failed to resize2fs dir %s , ret = %d", item->deviceName, ret);
319 320 321
        }
        ret = DoFsckExt(item->deviceName);
        if (ret != 0) {
X
xionglei6 已提交
322
            BEGET_LOGE("Failed to e2fsck dir %s , ret = %d", item->deviceName, ret);
323 324 325
        }
    }

326 327
    int rc = Mount(item->deviceName, item->mountPoint, item->fsType, mountFlags, fsSpecificData);
    if (rc != 0) {
X
xionglei6 已提交
328
        BEGET_LOGE("Mount %s to %s failed %d", item->deviceName, item->mountPoint, errno);
329
    } else {
X
xionglei6 已提交
330
        BEGET_LOGI("Mount %s to %s successful", item->deviceName, item->mountPoint);
331 332 333 334
    }
    return rc;
}

335
static int CheckRequiredAndMount(FstabItem *item, bool required)
336
{
S
sun_fan 已提交
337
    int rc = 0;
338
    if (item == NULL) {
S
sun_fan 已提交
339
        return -1;
340 341 342 343 344 345 346 347 348 349 350 351 352
    }
    if (required) { // Mount partition during first startup.
        if (FM_MANAGER_REQUIRED_ENABLED(item->fsManagerFlags)) {
            rc = MountOneItem(item);
        }
    } else { // Mount partition during second startup.
        if (!FM_MANAGER_REQUIRED_ENABLED(item->fsManagerFlags)) {
            rc = MountOneItem(item);
        }
    }
    return rc;
}

X
xionglei6 已提交
353
int MountAllWithFstab(const Fstab *fstab, bool required)
354
{
X
xionglei6 已提交
355
    if (fstab == NULL) {
356 357 358 359 360 361 362
        return -1;
    }

    FstabItem *item = NULL;
    int rc = -1;
    for (item = fstab->head; item != NULL; item = item->next) {
        rc = CheckRequiredAndMount(item, required);
S
sun_fan 已提交
363 364 365
        if (required && (rc < 0)) { // Init fail to mount in the first stage and exit directly.
            break;
        }
366
    }
X
xionglei6 已提交
367 368 369 370 371 372 373 374 375 376
    return rc;
}

int MountAllWithFstabFile(const char *fstabFile, bool required)
{
    if (fstabFile == NULL || *fstabFile == '\0') {
        return -1;
    }
    Fstab *fstab = NULL;
    if ((fstab = ReadFstabFromFile(fstabFile, false)) == NULL) {
X
xionglei6 已提交
377
        BEGET_LOGE("[fs_manager][error] Read fstab file \" %s \" failed\n", fstabFile);
X
xionglei6 已提交
378 379 380 381
        return -1;
    }

    int rc = MountAllWithFstab(fstab, required);
382 383 384 385 386 387 388 389 390 391 392 393
    ReleaseFstab(fstab);
    fstab = NULL;
    return rc;
}

int UmountAllWithFstabFile(const char *fstabFile)
{
    if (fstabFile == NULL || *fstabFile == '\0') {
        return -1;
    }
    Fstab *fstab = NULL;
    if ((fstab = ReadFstabFromFile(fstabFile, false)) == NULL) {
X
xionglei6 已提交
394
        BEGET_LOGE("Read fstab file \" %s \" failed.", fstabFile);
S
sun_fan 已提交
395
        return -1;
396 397 398 399 400
    }

    FstabItem *item = NULL;
    int rc = -1;
    for (item = fstab->head; item != NULL; item = item->next) {
X
xionglei6 已提交
401
        BEGET_LOGI("Umount %s.", item->mountPoint);
402 403
        MountStatus status = GetMountStatusForMountPoint(item->mountPoint);
        if (status == MOUNT_ERROR) {
X
xionglei6 已提交
404
            BEGET_LOGW("Cannot get mount status of mount point \" %s \"", item->mountPoint);
405 406
            continue; // Cannot get mount status, just ignore it and try next one.
        } else if (status == MOUNT_UMOUNTED) {
X
xionglei6 已提交
407
            BEGET_LOGI("Mount point \" %s \" already unmounted. device path: %s, fs type: %s.",
408 409 410 411 412
                item->mountPoint, item->deviceName, item->fsType);
            continue;
        } else {
            rc = umount(item->mountPoint);
            if (rc == -1) {
X
xionglei6 已提交
413
                BEGET_LOGE("Umount %s failed, device path: %s, fs type: %s, err = %d.",
414 415
                    item->mountPoint, item->deviceName, item->fsType, errno);
            } else {
X
xionglei6 已提交
416
                BEGET_LOGE("Umount %s successfully.", item->mountPoint);
417 418 419 420 421 422 423 424 425 426 427
            }
        }
    }
    ReleaseFstab(fstab);
    fstab = NULL;
    return rc;
}
#ifdef __cplusplus
#if __cplusplus
}
#endif
X
xionglei6 已提交
428
#endif