fatfs.c 60.1 KB
Newer Older
W
wenjun 已提交
1
/*
M
mamingshuai 已提交
2 3
 * Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
 * Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
W
wenjun 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice, this list of
 *    conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice, this list
 *    of conditions and the following disclaimer in the documentation and/or other materials
 *    provided with the distribution.
 *
 * 3. Neither the name of the copyright holder nor the names of its contributors may be used
 *    to endorse or promote products derived from this software without specific prior written
 *    permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include "fatfs.h"
#ifdef LOSCFG_FS_FAT
#include "ff.h"
#include "disk_pri.h"
W
wangchenyang 已提交
36
#include "diskio.h"
G
Guangyao Ma 已提交
37
#include "fs/file.h"
W
wangchenyang 已提交
38 39 40
#include "fs/fs.h"
#include "fs/dirent_fs.h"
#include "fs/mount.h"
M
mucor 已提交
41 42
#include "vnode.h"
#include "path_cache.h"
W
wenjun 已提交
43 44
#ifdef LOSCFG_FS_FAT_VIRTUAL_PARTITION
#include "virpartff.h"
W
wangchenyang 已提交
45
#include "errcode_fat.h"
W
wenjun 已提交
46
#endif
W
wangchenyang 已提交
47 48
#include "los_tables.h"
#include "user_copy.h"
W
wenjun 已提交
49
#include "los_vm_filemap.h"
50
#include "los_hash.h"
51
#include "los_vm_common.h"
W
wangchenyang 已提交
52 53 54 55 56 57 58
#include <time.h>
#include <errno.h>
#include <dirent.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
59
#include <fcntl.h>
W
wenjun 已提交
60 61


W
wangchenyang 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
struct VnodeOps fatfs_vops; /* forward define */
struct file_operations_vfs fatfs_fops;

#define BITMASK4 0x0F
#define BITMASK5 0x1F
#define BITMASK6 0x3F
#define BITMASK7 0x7F
#define FTIME_MIN_OFFSET 6 /* minute offset in word */
#define FTIME_HR_OFFSET 11 /* hour offset in word */
#define FTIME_MTH_OFFSET 5 /* month offset in word */
#define FTIME_YEAR_OFFSET 9 /* year offset in word */
#define FTIME_DATE_OFFSET 16 /* date offset in dword */
#define SEC_MULTIPLIER 2
#define YEAR_OFFSET 80 /* Year start from 1980 in FATFS, while start from 1900 in struct tm */

int fatfs_2_vfs(int result)
W
wenjun 已提交
78
{
W
wangchenyang 已提交
79
    int status = ENOERR;
W
wenjun 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97

#ifdef LOSCFG_FS_FAT_VIRTUAL_PARTITION
    if (result < 0 || result >= VIRERR_BASE) {
        return result;
    }
#else
    if (result < 0) {
        return result;
    }
#endif

    /* FatFs errno to Libc errno */
    switch (result) {
        case FR_OK:
            break;

        case FR_NO_FILE:
        case FR_NO_PATH:
W
wangchenyang 已提交
98
            status = ENOENT;
W
wenjun 已提交
99 100
            break;

101 102 103 104
        case FR_NO_FILESYSTEM:
            status = ENOTSUP;
            break;

W
wenjun 已提交
105
        case FR_INVALID_NAME:
W
wangchenyang 已提交
106
            status = EINVAL;
W
wenjun 已提交
107 108 109 110
            break;

        case FR_EXIST:
        case FR_INVALID_OBJECT:
W
wangchenyang 已提交
111
            status = EEXIST;
W
wenjun 已提交
112 113 114 115 116
            break;

        case FR_DISK_ERR:
        case FR_NOT_READY:
        case FR_INT_ERR:
W
wangchenyang 已提交
117
            status = EIO;
W
wenjun 已提交
118 119 120
            break;

        case FR_WRITE_PROTECTED:
W
wangchenyang 已提交
121
            status = EROFS;
W
wenjun 已提交
122 123 124
            break;
        case FR_MKFS_ABORTED:
        case FR_INVALID_PARAMETER:
W
wangchenyang 已提交
125
            status = EINVAL;
W
wenjun 已提交
126 127 128
            break;

        case FR_NO_SPACE_LEFT:
W
wangchenyang 已提交
129
            status = ENOSPC;
W
wenjun 已提交
130 131
            break;
        case FR_NO_DIRENTRY:
W
wangchenyang 已提交
132
            status = ENFILE;
W
wenjun 已提交
133 134
            break;
        case FR_NO_EMPTY_DIR:
W
wangchenyang 已提交
135
            status = ENOTEMPTY;
W
wenjun 已提交
136 137
            break;
        case FR_IS_DIR:
W
wangchenyang 已提交
138
            status = EISDIR;
W
wenjun 已提交
139 140
            break;
        case FR_NO_DIR:
W
wangchenyang 已提交
141
            status = ENOTDIR;
W
wenjun 已提交
142 143 144
            break;
        case FR_NO_EPERM:
        case FR_DENIED:
W
wangchenyang 已提交
145
            status = EPERM;
W
wenjun 已提交
146 147
            break;
        case FR_LOCKED:
W
wangchenyang 已提交
148 149
        case FR_TIMEOUT:
            status = EBUSY;
W
wenjun 已提交
150 151 152
            break;
#ifdef LOSCFG_FS_FAT_VIRTUAL_PARTITION
        case FR_MODIFIED:
W
wangchenyang 已提交
153
            status = -VIRERR_MODIFIED;
W
wenjun 已提交
154 155
            break;
        case FR_CHAIN_ERR:
W
wangchenyang 已提交
156
            status = -VIRERR_CHAIN_ERR;
W
wenjun 已提交
157 158
            break;
        case FR_OCCUPIED:
W
wangchenyang 已提交
159
            status = -VIRERR_OCCUPIED;
W
wenjun 已提交
160 161
            break;
        case FR_NOTCLEAR:
W
wangchenyang 已提交
162
            status = -VIRERR_NOTCLEAR;
W
wenjun 已提交
163 164
            break;
        case FR_NOTFIT:
W
wangchenyang 已提交
165
            status = -VIRERR_NOTFIT;
W
wenjun 已提交
166 167
            break;
        case FR_INVAILD_FATFS:
W
wangchenyang 已提交
168
            status = -VIRERR_INTER_ERR;
W
wenjun 已提交
169 170 171
            break;
#endif
        default:
W
wangchenyang 已提交
172
            status = -FAT_ERROR;
W
wenjun 已提交
173 174 175 176 177 178
            break;
    }

    return status;
}

J
JING 已提交
179 180 181 182 183 184 185 186 187 188 189 190 191
static bool fatfs_is_last_cluster(FATFS *fs, DWORD cclust)
{
    switch (fs->fs_type) {
        case FS_FAT12:
            return (cclust == FAT12_END_OF_CLUSTER);
        case FS_FAT16:
            return (cclust == FAT16_END_OF_CLUSTER);
        case FS_FAT32:
        default:
            return (cclust == FAT32_END_OF_CLUSTER);
    }
}

W
wangchenyang 已提交
192
static int fatfs_sync(unsigned long mountflags, FATFS *fs)
W
wenjun 已提交
193
{
W
wangchenyang 已提交
194
#ifdef LOSCFG_FS_FAT_CACHE
W
wenjun 已提交
195
    los_part *part = NULL;
196
    if (!(mountflags & (MS_NOSYNC | MS_RDONLY))) {
W
wangchenyang 已提交
197 198 199 200
        part = get_part((INT)fs->pdrv);
        if (part == NULL) {
            return -ENODEV;
        }
W
wenjun 已提交
201

W
wangchenyang 已提交
202
        (void)OsSdSync(part->disk_id);
W
wenjun 已提交
203 204
    }
#endif
W
wangchenyang 已提交
205
    return 0;
W
wenjun 已提交
206
}
W
wangchenyang 已提交
207 208 209 210
int fatfs_hash_cmp(struct Vnode *vp, void *arg)
{
    DIR_FILE *dfp_target = (DIR_FILE *)arg;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
W
wenjun 已提交
211

W
wangchenyang 已提交
212 213 214 215
    return dfp_target->f_dir.sect != dfp->f_dir.sect ||
              dfp_target->f_dir.dptr != dfp->f_dir.dptr ||
              dfp_target->fno.sclst != dfp->fno.sclst;
}
W
wenjun 已提交
216

W
wangchenyang 已提交
217
static DWORD fatfs_hash(QWORD sect, DWORD dptr, DWORD sclst)
W
wenjun 已提交
218
{
M
mucor 已提交
219 220 221 222
    DWORD hash = FNV1_32A_INIT;
    hash = LOS_HashFNV32aBuf(&sect, sizeof(QWORD), hash);
    hash = LOS_HashFNV32aBuf(&dptr, sizeof(DWORD), hash);
    hash = LOS_HashFNV32aBuf(&sclst, sizeof(DWORD), hash);
W
wenjun 已提交
223

W
wangchenyang 已提交
224
    return hash;
W
wenjun 已提交
225 226
}

W
wangchenyang 已提交
227 228 229 230 231
static mode_t fatfs_get_mode(BYTE attribute, mode_t fs_mode)
{
    mode_t mask = 0;
    if (attribute & AM_RDO) {
        mask = S_IWUSR | S_IWGRP | S_IWOTH;
W
wenjun 已提交
232
    }
W
wangchenyang 已提交
233 234 235
    fs_mode &= ~mask;
    if (attribute & AM_DIR) {
        fs_mode |= S_IFDIR;
C
chenjing 已提交
236 237
    } else if (attribute & AM_LNK) {
        fs_mode |= S_IFLNK;
W
wangchenyang 已提交
238 239
    } else {
        fs_mode |= S_IFREG;
W
wenjun 已提交
240
    }
W
wangchenyang 已提交
241
    return fs_mode;
W
wenjun 已提交
242 243
}

W
wangchen 已提交
244
static enum VnodeType fatfstype_2_vnodetype(BYTE type)
X
x_xiny 已提交
245
{
C
chenjing 已提交
246 247 248 249 250 251 252 253 254 255 256 257
    switch (type) {
        case AM_ARC:
            return VNODE_TYPE_REG;
        case AM_DIR:
            return VNODE_TYPE_DIR;
        case AM_LNK:
            return VNODE_TYPE_LNK;
        default:
            return VNODE_TYPE_UNKNOWN;
    }
}

258 259
#define DIR_SIZE 32
static FRESULT init_cluster(DIR_FILE *pdfp, DIR *dp_new, FATFS *fs, int type, const char *target, DWORD *clust)
C
chenjing 已提交
260 261 262 263
{
    FRESULT result;
    BYTE *dir = NULL;
    QWORD sect;
264
    DWORD pclust;
C
chenjing 已提交
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
    UINT n;

    /* Allocate a new cluster */
    *clust = create_chain(&(dp_new->obj), 0);
    if (*clust == 0) {
        return FR_NO_SPACE_LEFT;
    }
    if (*clust == 1 || *clust == DISK_ERROR) {
        return FR_DISK_ERR;
    }

    result = sync_window(fs); /* Flush FAT */
    if (result != FR_OK) {
        remove_chain(&(dp_new->obj), *clust, 0);
        return result;
    }

    /* Initialize the new cluster */
#ifndef LOSCFG_FS_FAT_VIRTUAL_PARTITION
    dir = fs->win;
#else
    dir = PARENTFS(fs)->win;
#endif

    sect = clst2sect(fs, *clust);
    mem_set(dir, 0, SS(fs));
    if (type == AM_LNK && target) {
        /* Write target to symlink */
X
x_xiny 已提交
293
        (void)strcpy_s((char *)dir, SS(fs), target);
294 295 296
    } else {
        /* Write the dir cluster */
        mem_set(dir, 0, SS(fs));
W
wangchen 已提交
297 298
        /* 11, the The max length of of the short file name,  Create "." entry */
        mem_set(dir + DIR_Name, ' ', 11);
299 300 301 302 303 304 305 306 307 308
        dir[DIR_Name] = '.';
        dir[DIR_Attr] = AM_DIR;
        st_clust(fs, dir, *clust);
        mem_cpy(dir + DIR_SIZE, dir, DIR_SIZE); /* Create ".." entry */
        dir[DIR_SIZE + 1] = '.'; /* Add extra "." */
        pclust = pdfp->fno.sclst;
        if (fs->fs_type == FS_FAT32 && pclust == fs->dirbase) {
            pclust = 0;
        }
        st_clust(fs, dir + DIR_SIZE, pclust);
C
chenjing 已提交
309
    }
310

C
chenjing 已提交
311
#ifndef LOSCFG_FS_FAT_VIRTUAL_PARTITION
312 313
    fs->winsect = sect++;
    fs->wflag = 1;
C
chenjing 已提交
314
#else
315 316
    PARENTFS(fs)->winsect = sect++;
    PARENTFS(fs)->wflag = 1;
317
#endif
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
    result = sync_window(fs);
    if (result != FR_OK) {
        remove_chain(&(dp_new->obj), *clust, 0);
        return result;
    }

    /* Rest of directory cluster should set to be zero */
    if (type == AM_DIR) {
        mem_set(dir, 0, SS(fs));
        for (n = fs->csize - 1; n > 0; n--) {
#ifndef LOSCFG_FS_FAT_VIRTUAL_PARTITION
            fs->winsect = sect++;
            fs->wflag = 1;
#else
            PARENTFS(fs)->winsect = sect++;
            PARENTFS(fs)->wflag = 1;
#endif
            result = sync_window(fs);
            if (result != FR_OK) {
                remove_chain(&(dp_new->obj), *clust, 0);
                return result;
            }
C
chenjing 已提交
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
        }
    }

    return FR_OK;
}

static int fatfs_create_obj(struct Vnode *parent, const char *name, int mode, struct Vnode **vpp, BYTE type, const char *target)
{
    struct Vnode *vp = NULL;
    FATFS *fs = (FATFS *)parent->originMount->data;
    DIR_FILE *dfp = (DIR_FILE *)parent->data;
    FILINFO *finfo = &(dfp->fno);
    DIR_FILE *dfp_new = NULL;
    FILINFO *finfo_new = NULL;
    DIR *dp_new = NULL;
    QWORD time;
    DWORD hash;
    DWORD clust = 0;
    FRESULT result;
    int ret;

    if ((type != AM_ARC) && (type != AM_DIR) && (type != AM_LNK)) {
        result = FR_INVALID_NAME;
        goto ERROR_EXIT;
    }

    dfp_new = (DIR_FILE *)zalloc(sizeof(DIR_FILE));
    if (dfp_new == NULL) {
        result = FR_NOT_ENOUGH_CORE;
        goto ERROR_EXIT;
    }

    ret = lock_fs(fs);
    if (ret == FALSE) { /* lock failed */
        result = FR_TIMEOUT;
        goto ERROR_FREE;
    }

    if (finfo->fattrib & AM_ARC || finfo->fattrib & AM_LNK) {
        result = FR_NO_DIR;
        goto ERROR_UNLOCK;
    }

    finfo_new = &(dfp_new->fno);
    LOS_ListInit(&finfo_new->fp_list);
    dp_new = &(dfp_new->f_dir);
    dp_new->obj.fs = fs;
    dp_new->obj.sclust = finfo->sclst;

    DEF_NAMBUF;
    INIT_NAMBUF(fs);

    result = create_name(dp_new, &name);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
    }

    result = dir_find(dp_new);
    if (result == FR_OK) {
        result = FR_EXIST;
        goto ERROR_UNLOCK;
    }

    if (type == AM_DIR || type == AM_LNK) {
404
        result = init_cluster(dfp, dp_new, fs, type, target, &clust);
C
chenjing 已提交
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
        if (result != FR_OK) {
            goto ERROR_UNLOCK;
        }
    }

    result = dir_register(dp_new);
    if (result != FR_OK) {
        goto ERROR_REMOVE_CHAIN;
    }

    /* Set the directory entry attribute */
    if (time_status == SYSTEM_TIME_ENABLE) {
        time = GET_FATTIME();
    } else {
        time = 0;
    }
    st_dword(dp_new->dir + DIR_CrtTime, time);
    st_dword(dp_new->dir + DIR_ModTime, time);
    st_word(dp_new->dir + DIR_LstAccDate, time >> FTIME_DATE_OFFSET);
    dp_new->dir[DIR_Attr] = type;
    if (((DWORD)mode & S_IWUSR) == 0) {
        dp_new->dir[DIR_Attr] |= AM_RDO;
    }
    st_clust(fs, dp_new->dir, clust);
    if (type == AM_ARC) {
        st_dword(dp_new->dir + DIR_FileSize, 0);
    } else if (type == AM_LNK) {
        st_dword(dp_new->dir + DIR_FileSize, strlen(target));
    }

#ifdef LOSCFG_FS_FAT_VIRTUAL_PARTITION
    PARENTFS(fs)->wflag = 1;
#else
    fs->wflag = 1;
#endif
    result = sync_fs(fs);
    if (result != FR_OK) {
        goto ERROR_REMOVE_CHAIN;
    }
    result = dir_read(dp_new, 0);
    if (result != FR_OK) {
        goto ERROR_REMOVE_CHAIN;
    }
    dp_new->blk_ofs = dir_ofs(dp_new);
    get_fileinfo(dp_new, finfo_new);
    if (type == AM_ARC) {
        dp_new->obj.objsize = 0;
    } else if (type == AM_LNK) {
        dp_new->obj.objsize = strlen(target);
Yansira's avatar
Yansira 已提交
454 455
    } else {
        finfo_new->fsize = fs->csize * SS(fs);
C
chenjing 已提交
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
    }

    ret = VnodeAlloc(&fatfs_vops, &vp);
    if (ret != 0) {
        result = FR_NOT_ENOUGH_CORE;
        goto ERROR_REMOVE_CHAIN;
    }

    vp->parent = parent;
    vp->fop = &fatfs_fops;
    vp->data = dfp_new;
    vp->originMount = parent->originMount;
    vp->uid = fs->fs_uid;
    vp->gid = fs->fs_gid;
    vp->mode = fatfs_get_mode(finfo_new->fattrib, fs->fs_mode);
    vp->type = fatfstype_2_vnodetype(type);

    hash = fatfs_hash(dp_new->sect, dp_new->dptr, finfo_new->sclst);
    ret = VfsHashInsert(vp, hash);
    if (ret != 0) {
        result = FR_NOT_ENOUGH_CORE;
        goto ERROR_REMOVE_CHAIN;
    }
    *vpp = vp;

    unlock_fs(fs, FR_OK);
    FREE_NAMBUF();
    return fatfs_sync(parent->originMount->mountFlags, fs);

ERROR_REMOVE_CHAIN:
    remove_chain(&(dp_new->obj), clust, 0);
ERROR_UNLOCK:
    unlock_fs(fs, result);
    FREE_NAMBUF();
ERROR_FREE:
    free(dfp_new);
ERROR_EXIT:
    return -fatfs_2_vfs(result);
}

W
wangchenyang 已提交
496
int fatfs_lookup(struct Vnode *parent, const char *path, int len, struct Vnode **vpp)
W
wenjun 已提交
497
{
W
wangchenyang 已提交
498 499 500 501 502 503 504 505
    struct Vnode *vp = NULL;
    FATFS *fs = (FATFS *)(parent->originMount->data);
    DIR_FILE *dfp;
    DIR *dp = NULL;
    FILINFO *finfo = NULL;
    DWORD hash;
    FRESULT result;
    int ret;
W
wenjun 已提交
506

W
wangchenyang 已提交
507 508 509 510
    dfp = (DIR_FILE *)zalloc(sizeof(DIR_FILE));
    if (dfp == NULL) {
        ret = ENOMEM;
        goto ERROR_EXIT;
W
wenjun 已提交
511 512
    }

W
wangchenyang 已提交
513 514 515 516
    ret = lock_fs(fs);
    if (ret == FALSE) {
        ret = EBUSY;
        goto ERROR_FREE;
W
wenjun 已提交
517
    }
W
wangchenyang 已提交
518 519 520 521 522 523 524 525 526 527 528 529
    finfo = &(dfp->fno);
    LOS_ListInit(&finfo->fp_list);
    dp = &(dfp->f_dir);
    dp->obj.fs = fs;
    dp->obj.sclust = ((DIR_FILE *)(parent->data))->fno.sclst;

    DEF_NAMBUF;
    INIT_NAMBUF(fs);
    result = create_name(dp, &path);
    if (result != FR_OK) {
        ret = fatfs_2_vfs(result);
        goto ERROR_UNLOCK;
W
wenjun 已提交
530 531
    }

W
wangchenyang 已提交
532 533 534 535 536
    result = dir_find(dp);
    if (result != FR_OK) {
        ret = fatfs_2_vfs(result);
        goto ERROR_UNLOCK;
    }
W
wenjun 已提交
537

W
wangchenyang 已提交
538 539 540 541 542
    if (dp->fn[NSFLAG] & NS_NONAME) {
        result = FR_INVALID_NAME;
        ret = fatfs_2_vfs(result);
        goto ERROR_UNLOCK;
    }
W
wenjun 已提交
543

W
wangchenyang 已提交
544 545
    get_fileinfo(dp, finfo);
    dp->obj.objsize = 0;
W
wenjun 已提交
546

W
wangchenyang 已提交
547 548 549 550 551 552 553 554
    hash = fatfs_hash(dp->sect, dp->dptr, finfo->sclst);
    ret = VfsHashGet(parent->originMount, hash, &vp, fatfs_hash_cmp, dfp);
    if (ret != 0) {
        ret = VnodeAlloc(&fatfs_vops, &vp);
        if (ret != 0) {
            ret = ENOMEM;
            result = FR_NOT_ENOUGH_CORE;
            goto ERROR_UNLOCK;
W
wenjun 已提交
555
        }
W
wangchenyang 已提交
556 557 558 559 560 561 562 563 564
        vp->parent = parent;
        vp->fop = &fatfs_fops;
        vp->data = dfp;
        vp->originMount = parent->originMount;
        vp->uid = fs->fs_uid;
        vp->gid = fs->fs_gid;
        vp->mode = fatfs_get_mode(finfo->fattrib, fs->fs_mode);
        if (finfo->fattrib & AM_DIR) {
            vp->type = VNODE_TYPE_DIR;
Yansira's avatar
Yansira 已提交
565
            finfo->fsize = fs->csize * SS(fs);
W
wangchenyang 已提交
566 567
        } else {
            vp->type = VNODE_TYPE_REG;
W
wenjun 已提交
568
        }
W
wangchenyang 已提交
569 570 571 572 573

        ret = VfsHashInsert(vp, hash);
        if (ret != 0) {
            result = FR_INVALID_PARAMETER;
            goto ERROR_UNLOCK;
W
wenjun 已提交
574 575
        }
    } else {
576
        vp->parent = parent;
W
wangchenyang 已提交
577
        free(dfp); /* hash hit dfp is no needed */
W
wenjun 已提交
578 579
    }

W
wangchenyang 已提交
580 581 582 583
    unlock_fs(fs, FR_OK);
    FREE_NAMBUF();
    *vpp = vp;
    return 0;
W
wenjun 已提交
584

W
wangchenyang 已提交
585 586 587 588 589 590 591
ERROR_UNLOCK:
    unlock_fs(fs, result);
    FREE_NAMBUF();
ERROR_FREE:
    free(dfp);
ERROR_EXIT:
    return -ret;
W
wenjun 已提交
592 593
}

W
wangchenyang 已提交
594
int fatfs_create(struct Vnode *parent, const char *name, int mode, struct Vnode **vpp)
W
wenjun 已提交
595
{
C
chenjing 已提交
596
    return fatfs_create_obj(parent, name, mode, vpp, AM_ARC, NULL);
W
wangchenyang 已提交
597
}
W
wenjun 已提交
598

W
wangchenyang 已提交
599 600 601 602 603 604 605 606 607 608 609 610 611 612
int fatfs_open(struct file *filep)
{
    struct Vnode *vp = filep->f_vnode;
    FATFS *fs = (FATFS *)vp->originMount->data;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
    DIR *dp = &(dfp->f_dir);
    FILINFO *finfo = &(dfp->fno);
    FIL *fp;
    int ret;

    fp = (FIL *)zalloc(sizeof(FIL));
    if (fp == NULL) {
        ret = ENOMEM;
        goto ERROR_EXIT;
W
wenjun 已提交
613
    }
W
wangchenyang 已提交
614 615 616
    ret = lock_fs(fs);
    if (ret == FALSE) {
        ret = EBUSY;
J
jianjian 已提交
617
        goto ERROR_FREE;
W
wenjun 已提交
618 619
    }

W
wangchenyang 已提交
620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635
    fp->dir_sect = dp->sect;
    fp->dir_ptr = dp->dir;
    fp->obj.sclust = finfo->sclst;
    fp->obj.objsize = finfo->fsize;
#if FF_USE_FASTSEEK
    fp->cltbl = 0; /* Disable fast seek mode */
#endif
    fp->obj.fs = fs;
    fp->obj.id = fs->id;
    fp->flag = FA_READ | FA_WRITE;
    fp->err = 0;
    fp->sect = 0;
    fp->fptr = 0;
    fp->buf = (BYTE*) ff_memalloc(SS(fs));
    if (fp->buf == NULL) {
        ret = ENOMEM;
J
jianjian 已提交
636
        goto ERROR_UNLOCK;
W
wangchenyang 已提交
637 638 639 640 641 642 643
    }
    LOS_ListAdd(&finfo->fp_list, &fp->fp_entry);
    unlock_fs(fs, FR_OK);

    filep->f_priv = fp;
    return fatfs_sync(vp->originMount->mountFlags, fs);

J
jianjian 已提交
644
ERROR_UNLOCK:
W
wangchenyang 已提交
645
    unlock_fs(fs, FR_OK);
J
jianjian 已提交
646
ERROR_FREE:
W
wangchenyang 已提交
647 648 649
    free(fp);
ERROR_EXIT:
    return -ret;
W
wenjun 已提交
650 651
}

W
wangchenyang 已提交
652
int fatfs_close(struct file *filep)
W
wenjun 已提交
653
{
W
wangchenyang 已提交
654 655 656 657
    FIL *fp = (FIL *)filep->f_priv;
    FATFS *fs = fp->obj.fs;
    FRESULT result;
    int ret;
W
wenjun 已提交
658

W
wangchenyang 已提交
659 660 661
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
662
    }
W
wangchenyang 已提交
663 664 665 666
#if !FF_FS_READONLY
    result = f_sync(fp); /* Flush cached data */
    if (result != FR_OK) {
        goto EXIT;
W
wenjun 已提交
667
    }
W
wangchenyang 已提交
668 669 670 671
    ret = fatfs_sync(filep->f_vnode->originMount->mountFlags, fs);
    if (ret != 0) {
        unlock_fs(fs, FR_OK);
        return ret;
W
wenjun 已提交
672
    }
W
wangchenyang 已提交
673 674 675 676 677 678 679 680
#endif
    LOS_ListDelete(&fp->fp_entry);
    ff_memfree(fp->buf);
    free(fp);
    filep->f_priv = NULL;
EXIT:
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
W
wenjun 已提交
681 682
}

W
wangchenyang 已提交
683
int fatfs_read(struct file *filep, char *buff, size_t count)
W
wenjun 已提交
684
{
W
wangchenyang 已提交
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
    FIL *fp = (FIL *)filep->f_priv;
    FATFS *fs = fp->obj.fs;
    struct Vnode *vp = filep->f_vnode;
    FILINFO *finfo = &((DIR_FILE *)(vp->data))->fno;
    size_t rcount;
    FRESULT result;
    int ret;

    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
    }
    fp->obj.objsize = finfo->fsize;
    fp->obj.sclust = finfo->sclst;
    result = f_read(fp, buff, count, &rcount);
    if (result != FR_OK) {
        goto EXIT;
W
wenjun 已提交
702
    }
W
wangchenyang 已提交
703 704 705 706 707
    filep->f_pos = fp->fptr;
EXIT:
    unlock_fs(fs, result);
    return rcount;
}
W
wenjun 已提交
708

W
wangchenyang 已提交
709 710 711 712 713 714
static FRESULT update_dir(DIR *dp, FILINFO *finfo)
{
    FATFS *fs = dp->obj.fs;
    DWORD tm;
    BYTE *dbuff = NULL;
    FRESULT result;
W
wenjun 已提交
715

W
wangchenyang 已提交
716 717 718 719 720 721 722 723 724 725 726 727
    result = move_window(fs, dp->sect);
    if (result != FR_OK) {
        return result;
    }
    dbuff = fs->win + dp->dptr % SS(fs);
    dbuff[DIR_Attr] = finfo->fattrib;
    st_clust(fs, dbuff, finfo->sclst); /* Update start cluster */
    st_dword(dbuff + DIR_FileSize, (DWORD)finfo->fsize); /* Update file size */
    if (time_status == SYSTEM_TIME_ENABLE) {
        tm = GET_FATTIME();
    } else {
        tm = 0;
W
wenjun 已提交
728
    }
W
wangchenyang 已提交
729 730 731 732 733 734 735 736 737
    st_dword(dbuff + DIR_ModTime, tm); /* Update mtime */
    st_word(dbuff + DIR_LstAccDate, tm >> FTIME_DATE_OFFSET); /* Update access date */
#ifndef LOSCFG_FS_FAT_VIRTUAL_PARTITION
    fs->wflag = 1;
#else
    PARENTFS(fs)->wflag = 1;
#endif
    return sync_fs(fs);
}
W
wenjun 已提交
738

W
wangchenyang 已提交
739 740 741 742 743 744 745
off64_t fatfs_lseek64(struct file *filep, off64_t offset, int whence)
{
    FIL *fp = (FIL *)filep->f_priv;
    FATFS *fs = fp->obj.fs;
    struct Vnode *vp = filep->f_vnode;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
    FILINFO *finfo = &(dfp->fno);
746
    struct Mount *mount = vp->originMount;
W
wangchenyang 已提交
747 748 749
    FSIZE_t fpos;
    FRESULT result;
    int ret;
W
wenjun 已提交
750

W
wangchenyang 已提交
751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
    switch (whence) {
        case SEEK_CUR:
            offset = filep->f_pos + offset;
            if (offset < 0) {
                return -EINVAL;
            }
            fpos = offset;
            break;
        case SEEK_SET:
            if (offset < 0) {
                return -EINVAL;
            }
            fpos = offset;
            break;
        case SEEK_END:
            offset = (off_t)((long long)finfo->fsize + offset);
            if (offset < 0) {
                return -EINVAL;
            }
            fpos = offset;
            break;
        default:
            return -EINVAL;
W
wenjun 已提交
774 775
    }

W
wangchenyang 已提交
776 777
    if (offset >= FAT32_MAXSIZE) {
        return -EINVAL;
W
wenjun 已提交
778 779
    }

W
wangchenyang 已提交
780 781 782
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
783
    }
784 785 786 787 788 789 790 791 792 793 794

    if (fpos > finfo->fsize) {
        if ((filep->f_oflags & O_ACCMODE) == O_RDONLY) {
            result = FR_DENIED;
            goto ERROR_EXIT;
        }
        if (mount->mountFlags & MS_RDONLY) {
            result = FR_WRITE_PROTECTED;
            goto ERROR_EXIT;
        }
    }
W
wangchenyang 已提交
795 796
    fp->obj.sclust = finfo->sclst;
    fp->obj.objsize = finfo->fsize;
W
wenjun 已提交
797

W
wangchenyang 已提交
798 799 800 801 802
    result = f_lseek(fp, fpos);
    finfo->fsize = fp->obj.objsize;
    finfo->sclst = fp->obj.sclust;
    if (result != FR_OK) {
        goto ERROR_EXIT;
W
wenjun 已提交
803 804
    }

W
wangchenyang 已提交
805 806 807
    result = f_sync(fp);
    if (result != FR_OK) {
        goto ERROR_EXIT;
W
wenjun 已提交
808
    }
W
wangchenyang 已提交
809
    filep->f_pos = fpos;
W
wenjun 已提交
810

W
wangchenyang 已提交
811 812 813 814 815 816
    unlock_fs(fs, FR_OK);
    return fpos;
ERROR_EXIT:
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
}
W
wenjun 已提交
817

W
wangchenyang 已提交
818 819 820
off_t fatfs_lseek(struct file *filep, off_t offset, int whence)
{
    return (off_t)fatfs_lseek64(filep, offset, whence);
W
wenjun 已提交
821 822
}

W
wangchenyang 已提交
823
static int update_filbuff(FILINFO *finfo, FIL *wfp, const char  *data)
W
wenjun 已提交
824
{
W
wangchenyang 已提交
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841
    LOS_DL_LIST *list = &finfo->fp_list;
    FATFS *fs = wfp->obj.fs;
    FIL *entry = NULL;
    int ret = 0;

    LOS_DL_LIST_FOR_EACH_ENTRY(entry, list, FIL, fp_entry) {
        if (entry == wfp) {
            continue;
        }
        if (entry->sect != 0) {
            if (disk_read(fs->pdrv, entry->buf, entry->sect, 1) != RES_OK) {
                ret = -1;
            }
        }
    }

    return ret;
W
wenjun 已提交
842 843
}

W
wangchenyang 已提交
844
int fatfs_write(struct file *filep, const char *buff, size_t count)
W
wenjun 已提交
845
{
W
wangchenyang 已提交
846 847 848 849 850
    FIL *fp = (FIL *)filep->f_priv;
    FATFS *fs = fp->obj.fs;
    struct Vnode *vp = filep->f_vnode;
    FILINFO *finfo = &(((DIR_FILE *)vp->data)->fno);
    size_t wcount;
W
wenjun 已提交
851
    FRESULT result;
W
wangchenyang 已提交
852
    int ret;
W
wenjun 已提交
853

W
wangchenyang 已提交
854 855 856
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
857
    }
W
wangchenyang 已提交
858 859 860 861 862
    fp->obj.objsize = finfo->fsize;
    fp->obj.sclust = finfo->sclst;
    result = f_write(fp, buff, count, &wcount);
    if (result != FR_OK) {
        goto ERROR_EXIT;
W
wenjun 已提交
863 864
    }

W
wangchenyang 已提交
865 866 867 868 869
    finfo->fsize = fp->obj.objsize;
    finfo->sclst = fp->obj.sclust;
    result = f_sync(fp);
    if (result != FR_OK) {
        goto ERROR_EXIT;
W
wenjun 已提交
870
    }
W
wangchenyang 已提交
871
    update_filbuff(finfo, fp, buff);
W
wenjun 已提交
872

W
wangchenyang 已提交
873
    filep->f_pos = fp->fptr;
W
wenjun 已提交
874

W
wangchenyang 已提交
875 876 877 878 879 880
    unlock_fs(fs, FR_OK);
    return wcount;
ERROR_EXIT:
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
}
W
wenjun 已提交
881

W
wangchenyang 已提交
882 883 884 885 886 887
int fatfs_fsync(struct file *filep)
{
    FIL *fp = filep->f_priv;
    FATFS *fs = fp->obj.fs;
    FRESULT result;
    int ret;
W
wenjun 已提交
888

W
wangchenyang 已提交
889 890 891
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
892 893
    }

W
wangchenyang 已提交
894 895 896 897 898 899 900 901 902 903 904 905 906 907 908
    result = f_sync(fp);
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
}

int fatfs_fallocate64(struct file *filep, int mode, off64_t offset, off64_t len)
{
    FIL *fp = (FIL *)filep->f_priv;
    FATFS *fs = fp->obj.fs;
    struct Vnode *vp = filep->f_vnode;
    FILINFO *finfo = &((DIR_FILE *)(vp->data))->fno;
    FRESULT result;
    int ret;

    if (offset < 0 || len <= 0) {
W
wenjun 已提交
909 910 911
        return -EINVAL;
    }

W
wangchenyang 已提交
912 913 914
    if (len >= FAT32_MAXSIZE || offset >= FAT32_MAXSIZE ||
        len + offset >= FAT32_MAXSIZE) {
        return -EINVAL;
W
wenjun 已提交
915 916
    }

W
wangchenyang 已提交
917 918
    if (mode != FALLOC_FL_KEEP_SIZE) {
        return -EINVAL;
W
wenjun 已提交
919 920
    }

W
wangchenyang 已提交
921 922 923
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
924
    }
W
wangchenyang 已提交
925
    result = f_expand(fp, (FSIZE_t)offset, (FSIZE_t)len, 1);
926 927 928 929 930
    if (result == FR_OK) {
        if (finfo->sclst == 0) {
            finfo->sclst = fp->obj.sclust;
        }
        result = f_sync(fp);
W
wangchenyang 已提交
931
    }
932
    unlock_fs(fs, result);
W
wenjun 已提交
933

W
wangchenyang 已提交
934
    return -fatfs_2_vfs(result);
W
wenjun 已提交
935 936
}

W
wangchenyang 已提交
937
static FRESULT realloc_cluster(FILINFO *finfo, FFOBJID *obj, FSIZE_t size)
W
wenjun 已提交
938
{
W
wangchenyang 已提交
939 940 941 942 943
    FATFS *fs = obj->fs;
    off64_t remain;
    DWORD cclust;
    DWORD pclust;
    QWORD csize;
W
wenjun 已提交
944 945
    FRESULT result;

W
wangchenyang 已提交
946 947 948 949 950 951 952 953 954
    if (size == 0) { /* Remove cluster chain */
        if (finfo->sclst != 0) {
            result = remove_chain(obj, finfo->sclst, 0);
            if (result != FR_OK) {
                return result;
            }
            finfo->sclst = 0;
        }
        return FR_OK;
W
wenjun 已提交
955 956
    }

W
wangchenyang 已提交
957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979
    remain = size;
    csize = SS(fs) * fs->csize;
    if (finfo->sclst == 0) { /* Allocate one cluster if file doesn't have any cluster */
        cclust = create_chain(obj, 0);
        if (cclust == 0) {
            return FR_NO_SPACE_LEFT;
        }
        if (cclust == 1 || cclust == DISK_ERROR) {
            return FR_DISK_ERR;
        }
        finfo->sclst = cclust;
    }
    cclust = finfo->sclst;
    while (remain > csize) { /* Follow or strentch the cluster chain */
        pclust = cclust;
        cclust = create_chain(obj, pclust);
        if (cclust == 0) {
            return FR_NO_SPACE_LEFT;
        }
        if (cclust == 1 || cclust == DISK_ERROR) {
            return FR_DISK_ERR;
        }
        remain -= csize;
W
wenjun 已提交
980
    }
W
wangchenyang 已提交
981 982 983 984 985
    pclust = cclust;
    cclust = get_fat(obj, pclust);
    if ((cclust == BAD_CLUSTER) || (cclust == DISK_ERROR)) {
        return FR_DISK_ERR;
    }
J
JING 已提交
986
    if (!fatfs_is_last_cluster(obj->fs, cclust)) { /* Remove extra cluster if existing */
W
wangchenyang 已提交
987 988 989 990
        result = remove_chain(obj, cclust, pclust);
        if (result != FR_OK) {
            return result;
        }
W
wenjun 已提交
991 992
    }

W
wangchenyang 已提交
993
    return FR_OK;
W
wenjun 已提交
994 995
}

W
wangchenyang 已提交
996
int fatfs_fallocate(struct file *filep, int mode, off_t offset, off_t len)
W
wenjun 已提交
997
{
W
wangchenyang 已提交
998
    return fatfs_fallocate64(filep, mode, offset, len);
W
wenjun 已提交
999 1000
}

W
wangchenyang 已提交
1001
int fatfs_truncate64(struct Vnode *vp, off64_t len)
W
wenjun 已提交
1002
{
W
wangchenyang 已提交
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
    FATFS *fs = (FATFS *)vp->originMount->data;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
    DIR *dp = &(dfp->f_dir);
    FILINFO *finfo = &(dfp->fno);
    FFOBJID object;
    FRESULT result = FR_OK;
    int ret;

    if (len < 0 || len >= FAT32_MAXSIZE) {
        return -EINVAL;
    }
W
wenjun 已提交
1014

W
wangchenyang 已提交
1015 1016 1017 1018
    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_OUT;
W
wenjun 已提交
1019
    }
W
wangchenyang 已提交
1020 1021 1022
    if (len == finfo->fsize) {
        unlock_fs(fs, FR_OK);
        return 0;
W
wenjun 已提交
1023 1024
    }

W
wangchenyang 已提交
1025 1026 1027 1028
    object.fs = fs;
    result = realloc_cluster(finfo, &object, (FSIZE_t)len);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
W
wenjun 已提交
1029
    }
W
wangchenyang 已提交
1030
    finfo->fsize = (FSIZE_t)len;
W
wenjun 已提交
1031

W
wangchenyang 已提交
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
    result = update_dir(dp, finfo);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
    }
    unlock_fs(fs, FR_OK);
    return fatfs_sync(vp->originMount->mountFlags, fs);
ERROR_UNLOCK:
    unlock_fs(fs, result);
ERROR_OUT:
    return -fatfs_2_vfs(result);
W
wenjun 已提交
1042 1043
}

W
wangchenyang 已提交
1044
int fatfs_truncate(struct Vnode *vp, off_t len)
W
wenjun 已提交
1045
{
W
wangchenyang 已提交
1046
    return fatfs_truncate64(vp, len);
W
wenjun 已提交
1047 1048
}

W
wangchenyang 已提交
1049
static int fat_bind_check(struct Vnode *blk_driver, los_part **partition)
W
wenjun 已提交
1050
{
W
wangchenyang 已提交
1051
    los_part *part = NULL;
W
wenjun 已提交
1052

W
wangchenyang 已提交
1053 1054
    if (blk_driver == NULL || blk_driver->data == NULL) {
        return ENODEV;
W
wenjun 已提交
1055 1056
    }

W
wangchenyang 已提交
1057 1058 1059
    struct drv_data *dd = blk_driver->data;
    if (dd->ops == NULL) {
        return ENODEV;
W
wenjun 已提交
1060
    }
W
wangchenyang 已提交
1061 1062 1063
    const struct block_operations *bops = dd->ops;
    if (bops->open == NULL) {
        return EINVAL;
W
wenjun 已提交
1064
    }
W
wangchenyang 已提交
1065 1066
    if (bops->open(blk_driver) < 0) {
        return EBUSY;
W
wenjun 已提交
1067 1068
    }

W
wangchenyang 已提交
1069
    part = los_part_find(blk_driver);
Y
YOUR_NAME 已提交
1070 1071 1072
    if (part == NULL) {
        return ENODEV;
    }
W
wangchenyang 已提交
1073 1074 1075
    if (part->part_name != NULL) {
        bops->close(blk_driver);
        return EBUSY;
W
wenjun 已提交
1076 1077
    }

W
wangchenyang 已提交
1078 1079 1080 1081
#ifndef FF_MULTI_PARTITION
    if (part->part_no_mbr > 1) {
        bops->close(blk_driver);
        return EPERM;
W
wenjun 已提交
1082 1083 1084
    }
#endif

W
wangchenyang 已提交
1085 1086
    *partition = part;
    return 0;
W
wenjun 已提交
1087 1088
}

W
wangchenyang 已提交
1089
int fatfs_mount(struct Mount *mnt, struct Vnode *blk_device, const void *data)
W
wenjun 已提交
1090
{
W
wangchenyang 已提交
1091 1092 1093 1094 1095 1096 1097
    struct Vnode *vp = NULL;
    FATFS *fs = NULL;
    DIR_FILE *dfp = NULL;
    los_part *part = NULL;
    QWORD start_sector;
    BYTE fmt;
    DWORD hash;
W
wenjun 已提交
1098
    FRESULT result;
W
wangchenyang 已提交
1099
    int ret;
W
wenjun 已提交
1100

W
wangchenyang 已提交
1101 1102 1103
    ret = fat_bind_check(blk_device, &part);
    if (ret != 0) {
        goto ERROR_EXIT;
W
wenjun 已提交
1104 1105
    }

W
wangchenyang 已提交
1106 1107 1108 1109
    ret = SetDiskPartName(part, "vfat");
    if (ret != 0) {
        ret = EIO;
        goto ERROR_EXIT;
W
wenjun 已提交
1110 1111
    }

W
wangchenyang 已提交
1112 1113 1114 1115
    fs = (FATFS *)zalloc(sizeof(FATFS));
    if (fs == NULL) {
        ret = ENOMEM;
        goto ERROR_PARTNAME;
W
wenjun 已提交
1116 1117
    }

W
wangchenyang 已提交
1118 1119 1120 1121 1122 1123
#ifdef LOSCFG_FS_FAT_VIRTUAL_PARTITION
    fs->vir_flag = FS_PARENT;
    fs->parent_fs = fs;
    fs->vir_amount = DISK_ERROR;
    fs->vir_avail = FS_VIRDISABLE;
#endif
W
wenjun 已提交
1124

W
wangchenyang 已提交
1125 1126 1127 1128
    ret = ff_cre_syncobj(0, &fs->sobj);
    if (ret == 0) { /* create sync object failed */
        ret = EINVAL;
        goto ERROR_WITH_FS;
W
wenjun 已提交
1129 1130
    }

W
wangchenyang 已提交
1131 1132 1133 1134
    ret = lock_fs(fs);
    if (ret == FALSE) {
        ret = EBUSY;
        goto ERROR_WITH_MUX;
W
wenjun 已提交
1135 1136
    }

W
wangchenyang 已提交
1137 1138
    fs->fs_type = 0;
    fs->pdrv = part->part_id;
W
wenjun 已提交
1139

W
wangchenyang 已提交
1140 1141 1142 1143
#if FF_MAX_SS != FF_MIN_SS  /* Get sector size (multiple sector size cfg only) */
    if (disk_ioctl(fs->pdrv, GET_SECTOR_SIZE, &(fs->ssize)) != RES_OK) {
        ret = EIO;
        goto ERROR_WITH_LOCK;
W
wenjun 已提交
1144
    }
W
wangchenyang 已提交
1145 1146 1147
    if (fs->ssize > FF_MAX_SS || fs->ssize < FF_MIN_SS || (fs->ssize & (fs->ssize - 1))) {
        ret = EIO;
        goto ERROR_WITH_LOCK;
W
wenjun 已提交
1148
    }
W
wangchenyang 已提交
1149
#endif
W
wenjun 已提交
1150

W
wangchenyang 已提交
1151 1152 1153 1154
    fs->win = (BYTE *)ff_memalloc(SS(fs));
    if (fs->win == NULL) {
        ret = ENOMEM;
        goto ERROR_WITH_LOCK;
W
wenjun 已提交
1155 1156
    }

W
wangchenyang 已提交
1157
    result = find_fat_partition(fs, part, &fmt, &start_sector);
W
wenjun 已提交
1158
    if (result != FR_OK) {
W
wangchenyang 已提交
1159 1160
        ret = fatfs_2_vfs(result);
        goto ERROR_WITH_FSWIN;
W
wenjun 已提交
1161 1162
    }

W
wangchenyang 已提交
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
    result = init_fatobj(fs, fmt, start_sector);
    if (result != FR_OK) {
        ret = fatfs_2_vfs(result);
        goto ERROR_WITH_FSWIN;
    }

    fs->fs_uid = mnt->vnodeBeCovered->uid;
    fs->fs_gid = mnt->vnodeBeCovered->gid;
    fs->fs_dmask = GetUmask();
    fs->fs_fmask = GetUmask();
    fs->fs_mode = mnt->vnodeBeCovered->mode & (S_IRWXU | S_IRWXG | S_IRWXO);

    dfp = (DIR_FILE *)zalloc(sizeof(DIR_FILE));
    if (dfp == NULL) {
        ret = ENOMEM;
        goto ERROR_WITH_FSWIN;
    }

    dfp->f_dir.obj.fs = fs;
    dfp->f_dir.obj.sclust = 0; /* set start clust 0, root */
    dfp->f_dir.obj.attr = AM_DIR;
    dfp->f_dir.obj.objsize = 0; /* dir size is 0 */
    dfp->fno.fsize = 0;
    dfp->fno.fdate = 0;
    dfp->fno.ftime = 0;
    dfp->fno.fattrib = AM_DIR;
    dfp->fno.sclst = 0;
Yansira's avatar
Yansira 已提交
1190
    dfp->fno.fsize = fs->csize * SS(fs);
W
wangchenyang 已提交
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
    dfp->fno.fname[0] = '/'; /* Mark as root dir */
    dfp->fno.fname[1] = '\0';
    LOS_ListInit(&(dfp->fno.fp_list));

    ret = VnodeAlloc(&fatfs_vops, &vp);
    if (ret != 0) {
        ret = ENOMEM;
        goto ERROR_WITH_FSWIN;
    }

    mnt->data = fs;
    mnt->vnodeCovered = vp;

    vp->parent = mnt->vnodeBeCovered;
    vp->fop = &fatfs_fops;
    vp->data = dfp;
    vp->originMount = mnt;
    vp->uid = fs->fs_uid;
    vp->gid = fs->fs_gid;
    vp->mode = mnt->vnodeBeCovered->mode;
    vp->type = VNODE_TYPE_DIR;

    hash = fatfs_hash(0, 0, 0);
    ret = VfsHashInsert(vp, hash);
    if (ret != 0) {
        ret = -ret;
        goto ERROR_WITH_LOCK;
    }
    unlock_fs(fs, FR_OK);
W
wenjun 已提交
1220 1221

    return 0;
W
wangchenyang 已提交
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237

ERROR_WITH_FSWIN:
    ff_memfree(fs->win);
ERROR_WITH_LOCK:
    unlock_fs(fs, FR_OK);
ERROR_WITH_MUX:
    ff_del_syncobj(&fs->sobj);
ERROR_WITH_FS:
    free(fs);
ERROR_PARTNAME:
    if (part->part_name) {
        free(part->part_name);
        part->part_name = NULL;
    }
ERROR_EXIT:
    return -ret;
W
wenjun 已提交
1238 1239
}

W
wangchenyang 已提交
1240
int fatfs_umount(struct Mount *mnt, struct Vnode **blkdriver)
W
wenjun 已提交
1241
{
W
wangchenyang 已提交
1242 1243 1244 1245
    struct Vnode *device;
    FATFS *fs = (FATFS *)mnt->data;
    los_part *part;
    int ret;
W
wenjun 已提交
1246

W
wangchenyang 已提交
1247 1248 1249
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
1250 1251
    }

W
wangchenyang 已提交
1252 1253 1254 1255
    part = get_part(fs->pdrv);
    if (part == NULL) {
        unlock_fs(fs, FR_OK);
        return -ENODEV;
W
wenjun 已提交
1256
    }
W
wangchenyang 已提交
1257 1258 1259 1260
    device = part->dev;
    if (device == NULL) {
        unlock_fs(fs, FR_OK);
        return -ENODEV;
W
wenjun 已提交
1261
    }
W
wangchenyang 已提交
1262 1263 1264 1265 1266
#ifdef LOSCFG_FS_FAT_CACHE
    ret = OsSdSync(part->disk_id);
    if (ret != 0) {
        unlock_fs(fs, FR_DISK_ERR);
        return -EIO;
W
wenjun 已提交
1267
    }
W
wangchenyang 已提交
1268 1269 1270 1271
#endif
    if (part->part_name != NULL) {
        free(part->part_name);
        part->part_name = NULL;
W
wenjun 已提交
1272 1273
    }

W
wangchenyang 已提交
1274 1275 1276 1277
    struct drv_data *dd = device->data;
    if (dd->ops == NULL) {
        unlock_fs(fs, FR_OK);
        return ENODEV;
W
wenjun 已提交
1278 1279
    }

W
wangchenyang 已提交
1280 1281 1282
    const struct block_operations *bops = dd->ops;
    if (bops != NULL && bops->close != NULL) {
        bops->close(*blkdriver);
W
wenjun 已提交
1283 1284
    }

W
wangchenyang 已提交
1285 1286
    if (fs->win != NULL) {
        ff_memfree(fs->win);
W
wenjun 已提交
1287 1288
    }

W
wangchenyang 已提交
1289
    unlock_fs(fs, FR_OK);
W
wenjun 已提交
1290

W
wangchenyang 已提交
1291 1292
    ret = ff_del_syncobj(&fs->sobj);
    if (ret == FALSE) {
W
wenjun 已提交
1293 1294
        return -EINVAL;
    }
W
wangchenyang 已提交
1295
    free(fs);
W
wenjun 已提交
1296

W
wangchenyang 已提交
1297
    *blkdriver = device;
W
wenjun 已提交
1298

W
wangchenyang 已提交
1299
    return 0;
W
wenjun 已提交
1300 1301
}

G
Guangyao Ma 已提交
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324
int fatfs_sync_adapt(struct Mount *mnt)
{
    (void)mnt;
    int ret = 0;
#ifdef LOSCFG_FS_FAT_CACHE
    struct Vnode *dev = NULL;
    los_part *part = NULL;

    if (mnt == NULL) {
        return -EINVAL;
    }

    dev = mnt->vnodeDev;
    part = los_part_find(dev);
    if (part == NULL) {
        return -EINVAL;
    }

    ret = OsSdSync(part->disk_id);
#endif
    return ret;
}

W
wangchenyang 已提交
1325
int fatfs_statfs(struct Mount *mnt, struct statfs *info)
W
wenjun 已提交
1326
{
W
wangchenyang 已提交
1327
    FATFS *fs = (FATFS *)mnt->data;
1328 1329 1330
    DWORD nclst = 0;
    FRESULT result = FR_OK;
    int ret;
W
wenjun 已提交
1331

W
wangchenyang 已提交
1332 1333 1334
    info->f_type = MSDOS_SUPER_MAGIC;
#if FF_MAX_SS != FF_MIN_SS
    info->f_bsize = fs->ssize * fs->csize;
W
wenjun 已提交
1335
#else
W
wangchenyang 已提交
1336
    info->f_bsize = FF_MIN_SS * fs->csize;
W
wenjun 已提交
1337
#endif
W
wangchenyang 已提交
1338
    info->f_blocks = fs->n_fatent;
1339 1340 1341 1342 1343 1344 1345 1346
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
    }
    /* free cluster is unavailable, update it */
    if (fs->free_clst == DISK_ERROR) {
        result = fat_count_free_entries(&nclst, fs);
    }
W
wangchenyang 已提交
1347 1348
    info->f_bfree = fs->free_clst;
    info->f_bavail = fs->free_clst;
1349
    unlock_fs(fs, result);
W
wenjun 已提交
1350

W
wangchenyang 已提交
1351 1352 1353
#if FF_USE_LFN
    /* Maximum length of filenames */
    info->f_namelen = FF_MAX_LFN;
W
wenjun 已提交
1354
#else
W
wangchenyang 已提交
1355 1356
    /* Maximum length of filenames: 8 is the basename length, 1 is the dot, 3 is the extension length */
    info->f_namelen = (8 + 1 + 3);
W
wenjun 已提交
1357
#endif
W
wangchenyang 已提交
1358 1359 1360 1361 1362 1363
    info->f_fsid.__val[0] = MSDOS_SUPER_MAGIC;
    info->f_fsid.__val[1] = 1;
    info->f_frsize = SS(fs) * fs->csize;
    info->f_files = 0;
    info->f_ffree = 0;
    info->f_flags = mnt->mountFlags;
W
wenjun 已提交
1364

1365
    return -fatfs_2_vfs(result);
W
wenjun 已提交
1366 1367
}

W
wangchenyang 已提交
1368
static inline int GET_SECONDS(WORD ftime)
W
wenjun 已提交
1369
{
W
wangchenyang 已提交
1370
    return (ftime & BITMASK5) * SEC_MULTIPLIER;
W
wenjun 已提交
1371
}
W
wangchenyang 已提交
1372
static inline int GET_MINUTES(WORD ftime)
W
wenjun 已提交
1373
{
W
wangchenyang 已提交
1374
    return (ftime >> FTIME_MIN_OFFSET) & BITMASK6;
W
wenjun 已提交
1375
}
W
wangchenyang 已提交
1376
static inline int GET_HOURS(WORD ftime)
W
wenjun 已提交
1377
{
W
wangchenyang 已提交
1378
    return (ftime >> FTIME_HR_OFFSET) & BITMASK5;
W
wenjun 已提交
1379
}
W
wangchenyang 已提交
1380
static inline int GET_DAY(WORD fdate)
W
wenjun 已提交
1381
{
W
wangchenyang 已提交
1382
    return fdate & BITMASK5;
W
wenjun 已提交
1383
}
W
wangchenyang 已提交
1384
static inline int GET_MONTH(WORD fdate)
W
wenjun 已提交
1385
{
W
wangchenyang 已提交
1386
    return (fdate >> FTIME_MTH_OFFSET) & BITMASK4;
W
wenjun 已提交
1387
}
W
wangchenyang 已提交
1388
static inline int GET_YEAR(WORD fdate)
W
wenjun 已提交
1389
{
W
wangchenyang 已提交
1390
    return (fdate >> FTIME_YEAR_OFFSET) & BITMASK7;
W
wenjun 已提交
1391 1392
}

W
wangchenyang 已提交
1393
static time_t fattime_transfer(WORD fdate, WORD ftime)
W
wenjun 已提交
1394
{
Y
YOUR_NAME 已提交
1395
    struct tm time = { 0 };
W
wangchenyang 已提交
1396 1397 1398 1399 1400 1401 1402 1403
    time.tm_sec = GET_SECONDS(ftime);
    time.tm_min = GET_MINUTES(ftime);
    time.tm_hour = GET_HOURS(ftime);
    time.tm_mday = GET_DAY(fdate);
    time.tm_mon = GET_MONTH(fdate);
    time.tm_year = GET_YEAR(fdate) + YEAR_OFFSET; /* Year start from 1980 in FATFS */
    time_t ret = mktime(&time);
    return ret;
W
wenjun 已提交
1404 1405
}

W
wangchenyang 已提交
1406
DWORD fattime_format(time_t time)
W
wenjun 已提交
1407
{
W
wangchenyang 已提交
1408 1409
    struct tm st;
    DWORD ftime;
W
wenjun 已提交
1410

W
wangchenyang 已提交
1411
    localtime_r(&time, &st);
W
wenjun 已提交
1412

W
wangchenyang 已提交
1413 1414 1415 1416
    ftime = (DWORD)st.tm_mday;
    ftime |= ((DWORD)st.tm_mon) << FTIME_MTH_OFFSET;
    ftime |= ((DWORD)((st.tm_year > YEAR_OFFSET) ? (st.tm_year - YEAR_OFFSET) : 0)) << FTIME_YEAR_OFFSET;
    ftime <<= FTIME_DATE_OFFSET;
W
wenjun 已提交
1417

W
wangchenyang 已提交
1418 1419 1420
    ftime = (DWORD)st.tm_sec / SEC_MULTIPLIER;
    ftime |= ((DWORD)st.tm_min) << FTIME_MIN_OFFSET;
    ftime |= ((DWORD)st.tm_hour) << FTIME_HR_OFFSET;
W
wenjun 已提交
1421

W
wangchenyang 已提交
1422
    return ftime;
W
wenjun 已提交
1423 1424
}

W
wangchenyang 已提交
1425
int fatfs_stat(struct Vnode *vp, struct stat* sp)
W
wenjun 已提交
1426
{
W
wangchenyang 已提交
1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444
    FATFS *fs = (FATFS *)vp->originMount->data;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
    FILINFO *finfo = &(dfp->fno);
    time_t time;
    int ret;

    ret = lock_fs(fs);
    if (ret == FALSE) {
        return EBUSY;
    }

    sp->st_dev = fs->pdrv;
    sp->st_mode = vp->mode;
    sp->st_nlink = 1;
    sp->st_uid = fs->fs_uid;
    sp->st_gid = fs->fs_gid;
    sp->st_size = finfo->fsize;
    sp->st_blksize = fs->csize * SS(fs);
Yansira's avatar
Yansira 已提交
1445 1446 1447 1448 1449
    if (finfo->fattrib & AM_ARC) {
        sp->st_blocks = finfo->fsize ? ((finfo->fsize - 1) / SS(fs) / fs->csize + 1) : 0;
    } else {
        sp->st_blocks = fs->csize;
    }
W
wangchenyang 已提交
1450 1451 1452
    time = fattime_transfer(finfo->fdate, finfo->ftime);
    sp->st_mtime = time;

Yansira's avatar
Yansira 已提交
1453 1454 1455
    /* Adapt to kstat member "long tv_sec" */
    sp->__st_mtim32.tv_sec = (long)time;

W
wangchenyang 已提交
1456 1457 1458
    unlock_fs(fs, FR_OK);
    return 0;
}
W
wenjun 已提交
1459

W
wangchenyang 已提交
1460 1461 1462 1463 1464 1465 1466 1467
void fatfs_chtime(DIR *dp, struct IATTR *attr)
{
    BYTE *dir = dp->dir;
    DWORD ftime;
    if (attr->attr_chg_valid & CHG_ATIME) {
        ftime = fattime_format(attr->attr_chg_atime);
        st_word(dir + DIR_LstAccDate, (ftime >> FTIME_DATE_OFFSET));
    }
W
wenjun 已提交
1468

W
wangchenyang 已提交
1469 1470 1471 1472
    if (attr->attr_chg_valid & CHG_CTIME) {
        ftime = fattime_format(attr->attr_chg_ctime);
        st_dword(dir + DIR_CrtTime, ftime);
    }
W
wenjun 已提交
1473

W
wangchenyang 已提交
1474 1475 1476
    if (attr->attr_chg_valid & CHG_MTIME) {
        ftime = fattime_format(attr->attr_chg_mtime);
        st_dword(dir + DIR_ModTime, ftime);
W
wenjun 已提交
1477
    }
W
wangchenyang 已提交
1478
}
W
wenjun 已提交
1479

W
wangchenyang 已提交
1480 1481 1482 1483 1484 1485 1486 1487 1488 1489
int fatfs_chattr(struct Vnode *vp, struct IATTR *attr)
{
    FATFS *fs = (FATFS *)vp->originMount->data;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
    DIR *dp = &(dfp->f_dir);
    FILINFO *finfo = &(dfp->fno);
    BYTE *dir = dp->dir;
    DWORD ftime;
    FRESULT result;
    int ret;
W
wenjun 已提交
1490

W
wangchenyang 已提交
1491 1492
    if (finfo->fname[0] == '/') { /* Is root dir of fatfs ? */
        return 0;
W
wenjun 已提交
1493 1494
    }

W
wangchenyang 已提交
1495 1496 1497 1498
    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_OUT;
W
wenjun 已提交
1499 1500
    }

W
wangchenyang 已提交
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515
    result = move_window(fs, dp->sect);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
    }

    if (attr->attr_chg_valid & CHG_MODE) {
        /* FAT only support readonly flag */
        if ((attr->attr_chg_mode & S_IWUSR) == 0 && (finfo->fattrib & AM_RDO) == 0) {
            dir[DIR_Attr] |= AM_RDO;
            finfo->fattrib |= AM_RDO;
            fs->wflag = 1;
        } else if ((attr->attr_chg_mode & S_IWUSR) != 0 && (finfo->fattrib & AM_RDO) != 0) {
            dir[DIR_Attr] &= ~AM_RDO;
            finfo->fattrib &= ~AM_RDO;
            fs->wflag = 1;
W
wenjun 已提交
1516
        }
W
wangchenyang 已提交
1517
        vp->mode = fatfs_get_mode(finfo->fattrib, fs->fs_mode);
W
wenjun 已提交
1518 1519
    }

W
wangchenyang 已提交
1520 1521 1522 1523 1524 1525
    if (attr->attr_chg_valid & (CHG_ATIME | CHG_CTIME | CHG_MTIME)) {
        fatfs_chtime(dp, attr);
        ftime = ld_dword(dp->dir + DIR_ModTime);
        finfo->fdate = (WORD)(ftime >> FTIME_DATE_OFFSET);
        finfo->ftime = (WORD)ftime;
    }
W
wenjun 已提交
1526

W
wangchenyang 已提交
1527 1528 1529
    result = sync_window(fs);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
W
wenjun 已提交
1530 1531
    }

W
wangchenyang 已提交
1532 1533 1534 1535 1536 1537
    unlock_fs(fs, FR_OK);
    return fatfs_sync(vp->originMount->mountFlags, fs);
ERROR_UNLOCK:
    unlock_fs(fs, result);
ERROR_OUT:
    return -fatfs_2_vfs(result);
W
wenjun 已提交
1538 1539
}

W
wangchenyang 已提交
1540
int fatfs_opendir(struct Vnode *vp, struct fs_dirent_s *idir)
W
wenjun 已提交
1541
{
W
wangchenyang 已提交
1542 1543 1544 1545 1546
    FATFS *fs = vp->originMount->data;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
    FILINFO *finfo = &(dfp->fno);
    DIR *dp;
    DWORD clst;
W
wenjun 已提交
1547
    FRESULT result;
W
wangchenyang 已提交
1548
    int ret;
W
wenjun 已提交
1549

W
wangchenyang 已提交
1550 1551 1552
    dp = (DIR*)zalloc(sizeof(DIR));
    if (dp == NULL) {
        return -ENOMEM;
W
wenjun 已提交
1553 1554
    }

W
wangchenyang 已提交
1555 1556 1557
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
1558
    }
W
wangchenyang 已提交
1559 1560 1561
    clst = finfo->sclst;
    dp->obj.fs = fs;
    dp->obj.sclust = clst;
W
wenjun 已提交
1562

W
wangchenyang 已提交
1563 1564 1565 1566 1567
    result = dir_sdi(dp, 0);
    if (result != FR_OK) {
        free(dp);
        unlock_fs(fs, result);
        return -fatfs_2_vfs(result);
W
wenjun 已提交
1568
    }
W
wangchenyang 已提交
1569 1570
    unlock_fs(fs, result);
    idir->u.fs_dir = dp;
W
wenjun 已提交
1571

W
wangchenyang 已提交
1572 1573
    return 0;
}
W
wenjun 已提交
1574

W
wangchenyang 已提交
1575 1576 1577 1578 1579 1580 1581 1582
int fatfs_readdir(struct Vnode *vp, struct fs_dirent_s *idir)
{
    FATFS *fs = vp->originMount->data;
    FILINFO fno;
    DIR* dp = (DIR*)idir->u.fs_dir;
    struct dirent *dirp = NULL;
    FRESULT result;
    int ret, i;
W
wenjun 已提交
1583

W
wangchenyang 已提交
1584 1585 1586
    ret = lock_fs(fs);
    if (ret == FALSE) { /* Lock fs failed */
        return -EBUSY;
W
wenjun 已提交
1587
    }
W
wangchenyang 已提交
1588 1589
    DEF_NAMBUF;
    INIT_NAMBUF(fs);
M
mucor 已提交
1590
    for (i = 0; i < idir->read_cnt; i++) {
1591 1592
        /* using dir_read_massive to promote performance */
        result = dir_read_massive(dp, 0);
W
wangchenyang 已提交
1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
        if (result == FR_NO_FILE) {
            break;
        } else if (result != FR_OK) {
            goto ERROR_UNLOCK;
        }
        get_fileinfo(dp, &fno);
        /* 0x00 for end of directory and 0xFF for directory is empty */
        if (fno.fname[0] == 0x00 || fno.fname[0] == (TCHAR)0xFF) {
            break;
        }
W
wenjun 已提交
1603

W
wangchenyang 已提交
1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
        dirp = &(idir->fd_dir[i]);
        if (fno.fattrib & AM_DIR) { /* is dir */
            dirp->d_type = DT_DIR;
        } else {
            dirp->d_type = DT_REG;
        }
        if (strncpy_s(dirp->d_name, sizeof(dirp->d_name), fno.fname, strlen(fno.fname)) != EOK) {
            result = FR_NOT_ENOUGH_CORE;
            goto ERROR_UNLOCK;
        }
        result = dir_next(dp, 0);
        if (result != FR_OK && result != FR_NO_FILE) {
            goto ERROR_UNLOCK;
        }
        idir->fd_position++;
        idir->fd_dir[i].d_off = idir->fd_position;
        idir->fd_dir[i].d_reclen = (uint16_t)sizeof(struct dirent);
W
wenjun 已提交
1621
    }
W
wangchenyang 已提交
1622 1623 1624 1625 1626 1627 1628 1629
    unlock_fs(fs, FR_OK);
    FREE_NAMBUF();
    return i;
ERROR_UNLOCK:
    unlock_fs(fs, result);
    FREE_NAMBUF();
    return -fatfs_2_vfs(result);
}
W
wenjun 已提交
1630

W
wangchenyang 已提交
1631 1632 1633 1634 1635 1636
int fatfs_rewinddir(struct Vnode *vp, struct fs_dirent_s *dir)
{
    DIR *dp = (DIR *)dir->u.fs_dir;
    FATFS *fs = dp->obj.fs;
    FRESULT result;
    int ret;
W
wenjun 已提交
1637

W
wangchenyang 已提交
1638 1639 1640
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
1641 1642
    }

W
wangchenyang 已提交
1643 1644 1645 1646
    result = dir_sdi(dp, 0);
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
}
W
wenjun 已提交
1647

W
wangchenyang 已提交
1648 1649 1650 1651 1652 1653
int fatfs_closedir(struct Vnode *vp, struct fs_dirent_s *dir)
{
    DIR *dp = (DIR *)dir->u.fs_dir;
    free(dp);
    dir->u.fs_dir = NULL;
    return 0;
W
wenjun 已提交
1654 1655
}

W
wangchenyang 已提交
1656
static FRESULT rename_check(DIR *dp_new, FILINFO *finfo_new, DIR *dp_old, FILINFO *finfo_old)
W
wenjun 已提交
1657
{
W
wangchenyang 已提交
1658
    DIR dir_sub;
W
wenjun 已提交
1659
    FRESULT result;
W
wangchenyang 已提交
1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679
    if (finfo_new->fattrib & AM_ARC) { /* new path is file */
        if (finfo_old->fattrib & AM_DIR) { /* but old path is dir */
            return FR_NO_DIR;
        }
    } else if (finfo_new->fattrib & AM_DIR) { /* new path is dir */
        if (finfo_old->fattrib & AM_ARC) { /* old path is file */
            return FR_IS_DIR;
        }
        dir_sub.obj.fs = dp_old->obj.fs;
        dir_sub.obj.sclust = finfo_new->sclst;
        result = dir_sdi(&dir_sub, 0);
        if (result != FR_OK) {
            return result;
        }
        result = dir_read(&dir_sub, 0);
        if (result == FR_OK) { /* new path isn't empty file */
            return FR_NO_EMPTY_DIR;
        }
    } else { /* System file or volume label */
        return FR_DENIED;
W
wenjun 已提交
1680
    }
W
wangchenyang 已提交
1681 1682
    return FR_OK;
}
W
wenjun 已提交
1683

W
wangchenyang 已提交
1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695
int fatfs_rename(struct Vnode *old_vnode, struct Vnode *new_parent, const char *oldname, const char *newname)
{
    FATFS *fs = (FATFS *)(old_vnode->originMount->data);
    DIR_FILE *dfp_old = (DIR_FILE *)old_vnode->data;
    DIR *dp_old = &(dfp_old->f_dir);
    FILINFO *finfo_old = &(dfp_old->fno);
    DIR_FILE *dfp_new = NULL;
    DIR* dp_new = NULL;
    FILINFO* finfo_new = NULL;
    DWORD clust;
    FRESULT result;
    int ret;
W
wenjun 已提交
1696

W
wangchenyang 已提交
1697 1698 1699
    ret = lock_fs(fs);
    if (ret == FALSE) { /* Lock fs failed */
        return -EBUSY;
W
wenjun 已提交
1700 1701
    }

W
wangchenyang 已提交
1702 1703 1704 1705
    dfp_new = (DIR_FILE *)zalloc(sizeof(DIR_FILE));
    if (dfp_new == NULL) {
        result = FR_NOT_ENOUGH_CORE;
        goto ERROR_UNLOCK;
W
wenjun 已提交
1706
    }
W
wangchenyang 已提交
1707 1708
    dp_new = &(dfp_new->f_dir);
    finfo_new = &(dfp_new->fno);
W
wenjun 已提交
1709

W
wangchenyang 已提交
1710 1711
    dp_new->obj.sclust = ((DIR_FILE *)(new_parent->data))->fno.sclst;
    dp_new->obj.fs = fs;
W
wenjun 已提交
1712

W
wangchenyang 已提交
1713 1714 1715 1716
    /* Find new path */
    DEF_NAMBUF;
    INIT_NAMBUF(fs);
    result = create_name(dp_new, &newname);
W
wenjun 已提交
1717
    if (result != FR_OK) {
W
wangchenyang 已提交
1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746
        goto ERROR_FREE;
    }
    result = dir_find(dp_new);
    if (result == FR_OK) { /* new path name exist */
        get_fileinfo(dp_new, finfo_new);
        result = rename_check(dp_new, finfo_new, dp_old, finfo_old);
        if (result != FR_OK) {
            goto ERROR_FREE;
        }
        result = dir_remove(dp_old);
        if (result != FR_OK) {
            goto ERROR_FREE;
        }
        clust = finfo_new->sclst;
        if (clust != 0) { /* remove the new path cluster chain if exists */
            result = remove_chain(&(dp_new->obj), clust, 0);
            if (result != FR_OK) {
                goto ERROR_FREE;
            }
        }
    } else { /* new path name not exist */
        result = dir_remove(dp_old);
        if (result != FR_OK) {
            goto ERROR_FREE;
        }
        result = dir_register(dp_new);
        if (result != FR_OK) {
            goto ERROR_FREE;
        }
W
wenjun 已提交
1747 1748
    }

W
wangchenyang 已提交
1749 1750 1751 1752 1753 1754 1755 1756 1757
    /* update new dir entry with old info */
    result = update_dir(dp_new, finfo_old);
    if (result != FR_OK) {
        goto ERROR_FREE;
    }
    result = dir_read(dp_new, 0);
    if (result != FR_OK) {
        goto ERROR_FREE;
    }
C
chenjing 已提交
1758
    dp_new->blk_ofs = dir_ofs(dp_new);
W
wangchenyang 已提交
1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778
    get_fileinfo(dp_new, finfo_new);

    dfp_new->fno.fp_list.pstNext = dfp_old->fno.fp_list.pstNext;
    dfp_new->fno.fp_list.pstPrev = dfp_old->fno.fp_list.pstPrev;
    ret = memcpy_s(dfp_old, sizeof(DIR_FILE), dfp_new, sizeof(DIR_FILE));
    if (ret != 0) {
        result = FR_NOT_ENOUGH_CORE;
        goto ERROR_FREE;
    }
    free(dfp_new);
    unlock_fs(fs, FR_OK);
    FREE_NAMBUF();
    return fatfs_sync(old_vnode->originMount->mountFlags, fs);

ERROR_FREE:
    free(dfp_new);
ERROR_UNLOCK:
    unlock_fs(fs, result);
    FREE_NAMBUF();
    return -fatfs_2_vfs(result);
W
wenjun 已提交
1779 1780 1781
}


W
wangchenyang 已提交
1782 1783 1784 1785 1786 1787 1788 1789 1790
static int fatfs_erase(los_part *part, int option)
{
    int opt = option;
    if ((UINT)opt & FMT_ERASE) {
        opt = (UINT)opt & (~FMT_ERASE);
        if (EraseDiskByID(part->disk_id, part->sector_start, part->sector_count) != LOS_OK) {
            PRINTK("Disk erase error.\n");
            return -1;
        }
W
wenjun 已提交
1791 1792
    }

W
wangchenyang 已提交
1793 1794
    if (opt != FM_FAT && opt != FM_FAT32) {
        opt = FM_ANY;
W
wenjun 已提交
1795 1796
    }

W
wangchenyang 已提交
1797 1798 1799 1800 1801 1802 1803 1804
    return opt;
}

static int fatfs_set_part_info(los_part *part)
{
    los_disk *disk = NULL;
    char *buf = NULL;
    int ret;
W
wenjun 已提交
1805

W
wangchenyang 已提交
1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816
    /* If there is no MBR before, the partition info needs to be changed after mkfs */
    if (part->type != EMMC && part->part_no_mbr == 0) {
        disk = get_disk(part->disk_id);
        if (disk == NULL) {
            return -EIO;
        }
        buf = (char *)zalloc(disk->sector_size);
        if (buf == NULL) {
            return -ENOMEM;
        }
        (void)memset_s(buf, disk->sector_size, 0, disk->sector_size);
1817
        ret = los_disk_read(part->disk_id, buf, 0, 1, TRUE); /* TRUE when not reading large data */
W
wangchenyang 已提交
1818 1819 1820 1821 1822 1823 1824 1825
        if (ret < 0) {
            free(buf);
            return -EIO;
        }
        part->sector_start = LD_DWORD_DISK(&buf[PAR_OFFSET + PAR_START_OFFSET]);
        part->sector_count = LD_DWORD_DISK(&buf[PAR_OFFSET + PAR_COUNT_OFFSET]);
        part->part_no_mbr = 1;
        part->filesystem_type = buf[PAR_OFFSET + PAR_TYPE_OFFSET];
W
wenjun 已提交
1826

W
wangchenyang 已提交
1827
        free(buf);
W
wenjun 已提交
1828
    }
W
wangchenyang 已提交
1829
    return 0;
W
wenjun 已提交
1830 1831
}

F
Far 已提交
1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870
static FRESULT fatfs_setlabel(los_part *part)
{
    QWORD start_sector = 0;
    BYTE fmt = 0;
    FATFS fs;
    FRESULT result;

#ifdef LOSCFG_FS_FAT_VIRTUAL_PARTITION
    fs.vir_flag = FS_PARENT;
    fs.parent_fs = &fs;
    fs.vir_amount = DISK_ERROR;
    fs.vir_avail = FS_VIRDISABLE;
#endif
    if (disk_ioctl(fs.pdrv, GET_SECTOR_SIZE, &(fs.ssize)) != RES_OK) {
        return -EIO;
    }
    fs.win = (BYTE *)ff_memalloc(fs.ssize);
    if (fs.win == NULL) {
        return -ENOMEM;
    }

    result = find_fat_partition(&fs, part, &fmt, &start_sector);
    if (result != FR_OK) {
        free(fs.win);
        return -fatfs_2_vfs(result);
    }

    result = init_fatobj(&fs, fmt, start_sector);
    if (result != FR_OK) {
        free(fs.win);
        return -fatfs_2_vfs(result);
    }

    result = set_volumn_label(&fs, FatLabel);
    free(fs.win);

    return result;
}

W
wangchenyang 已提交
1871
int fatfs_mkfs (struct Vnode *device, int sectors, int option)
W
wenjun 已提交
1872
{
W
wangchenyang 已提交
1873 1874 1875
    BYTE *work_buff = NULL;
    los_part *part = NULL;
    FRESULT result;
1876
    MKFS_PARM opt = {0};
W
wangchenyang 已提交
1877
    int ret;
W
wenjun 已提交
1878

W
wangchenyang 已提交
1879 1880 1881 1882
    part = los_part_find(device);
    if (part == NULL || device->data == NULL) {
        return -ENODEV;
    }
W
wenjun 已提交
1883

Y
YOUR_NAME 已提交
1884
    if (sectors < 0 || sectors > FAT32_MAX_CLUSTER_SIZE || ((DWORD)sectors & ((DWORD)sectors - 1))) {
W
wenjun 已提交
1885 1886 1887
        return -EINVAL;
    }

W
wangchenyang 已提交
1888
    if (option != FMT_FAT && option != FMT_FAT32 && option != FMT_ANY && option != FMT_ERASE) {
W
wenjun 已提交
1889 1890 1891
        return -EINVAL;
    }

W
wangchenyang 已提交
1892 1893 1894 1895 1896 1897 1898
    if (part->part_name != NULL) { /* The part is mounted */
        return -EBUSY;
    }
    option = fatfs_erase(part, option);
    work_buff = (BYTE *)zalloc(FF_MAX_SS);
    if (work_buff == NULL) {
        return -ENOMEM;
W
wenjun 已提交
1899 1900
    }

1901 1902 1903
    opt.n_sect = sectors;
    opt.fmt = (BYTE)option;
    result = _mkfs(part, &opt, work_buff, FF_MAX_SS);
W
wangchenyang 已提交
1904 1905 1906
    free(work_buff);
    if (result != FR_OK) {
        return -fatfs_2_vfs(result);
W
wenjun 已提交
1907 1908
    }

F
Far 已提交
1909 1910
    result = fatfs_setlabel(part);
    if (result == FR_OK) {
W
wangchenyang 已提交
1911
#ifdef LOSCFG_FS_FAT_CACHE
F
Far 已提交
1912 1913 1914 1915
        ret = OsSdSync(part->disk_id);
        if (ret != 0) {
            return -EIO;
        }
W
wenjun 已提交
1916
#endif
F
Far 已提交
1917
    }
W
wenjun 已提交
1918

W
wangchenyang 已提交
1919 1920 1921
    ret = fatfs_set_part_info(part);
    if (ret != 0) {
        return -EIO;
W
wenjun 已提交
1922 1923
    }

F
Far 已提交
1924
    return -fatfs_2_vfs(result);
W
wenjun 已提交
1925 1926
}

W
wangchenyang 已提交
1927
int fatfs_mkdir(struct Vnode *parent, const char *name, mode_t mode, struct Vnode **vpp)
W
wenjun 已提交
1928
{
C
chenjing 已提交
1929
    return fatfs_create_obj(parent, name, mode, vpp, AM_DIR, NULL);
W
wenjun 已提交
1930 1931
}

C
chenwei 已提交
1932
int fatfs_rmdir(struct Vnode *parent, struct Vnode *vp, const char *name)
W
wenjun 已提交
1933
{
W
wangchenyang 已提交
1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959
    FATFS *fs = (FATFS *)vp->originMount->data;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
    FILINFO *finfo = &(dfp->fno);
    DIR *dp = &(dfp->f_dir);
    DIR dir_sub;
    FRESULT result = FR_OK;
    int ret;

    if (finfo->fattrib & AM_ARC) {
        result = FR_NO_DIR;
        goto ERROR_OUT;
    }

    DEF_NAMBUF;
    INIT_NAMBUF(fs);

    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_OUT;
    }
    dir_sub.obj.fs = fs;
    dir_sub.obj.sclust = finfo->sclst;
    result = dir_sdi(&dir_sub, 0);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
W
wenjun 已提交
1960
    }
W
wangchenyang 已提交
1961 1962 1963 1964
    result = dir_read(&dir_sub, 0);
    if (result == FR_OK) {
        result = FR_NO_EMPTY_DIR;
        goto ERROR_UNLOCK;
W
wenjun 已提交
1965
    }
W
wangchenyang 已提交
1966 1967 1968
    result = dir_remove(dp); /* remove directory entry */
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
W
wenjun 已提交
1969
    }
W
wangchenyang 已提交
1970 1971 1972 1973
    /* Directory entry contains at least one cluster */
    result = remove_chain(&(dp->obj), finfo->sclst, 0);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
W
wenjun 已提交
1974 1975
    }

W
wangchenyang 已提交
1976 1977 1978
    unlock_fs(fs, FR_OK);
    FREE_NAMBUF();
    return fatfs_sync(vp->originMount->mountFlags, fs);
W
wenjun 已提交
1979

W
wangchenyang 已提交
1980 1981 1982 1983 1984 1985
ERROR_UNLOCK:
    unlock_fs(fs, result);
    FREE_NAMBUF();
ERROR_OUT:
    return -fatfs_2_vfs(result);
}
W
wenjun 已提交
1986

W
wangchenyang 已提交
1987 1988 1989 1990 1991 1992
int fatfs_reclaim(struct Vnode *vp)
{
    free(vp->data);
    vp->data = NULL;
    return 0;
}
W
wenjun 已提交
1993

C
chenwei 已提交
1994
int fatfs_unlink(struct Vnode *parent, struct Vnode *vp, const char *name)
W
wangchenyang 已提交
1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014
{
    FATFS *fs = (FATFS *)vp->originMount->data;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
    FILINFO *finfo = &(dfp->fno);
    DIR *dp = &(dfp->f_dir);
    FRESULT result = FR_OK;
    int ret;

    if (finfo->fattrib & AM_DIR) {
        result = FR_IS_DIR;
        goto ERROR_OUT;
    }
    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_OUT;
    }
    result = dir_remove(dp); /* remove directory entry */
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
W
wenjun 已提交
2015
    }
W
wangchenyang 已提交
2016 2017 2018 2019 2020
    if (finfo->sclst != 0) { /* if cluster chain exists */
        result = remove_chain(&(dp->obj), finfo->sclst, 0);
        if (result != FR_OK) {
            goto ERROR_UNLOCK;
        }
W
wenjun 已提交
2021
    }
W
wangchenyang 已提交
2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036
    result = sync_fs(fs);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
    }
    unlock_fs(fs, FR_OK);
    return fatfs_sync(vp->originMount->mountFlags, fs);

ERROR_UNLOCK:
    unlock_fs(fs, result);
ERROR_OUT:
    return -fatfs_2_vfs(result);
}

int fatfs_ioctl(struct file *filep, int req, unsigned long arg)
{
W
wenjun 已提交
2037 2038 2039 2040
    return -ENOSYS;
}

#define CHECK_FILE_NUM 3
W
wangchenyang 已提交
2041
static inline DWORD combine_time(FILINFO *finfo)
W
wenjun 已提交
2042
{
W
wangchenyang 已提交
2043 2044
    return (finfo->fdate << FTIME_DATE_OFFSET) | finfo->ftime;
}
W
wenjun 已提交
2045

W
wangchenyang 已提交
2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057
static UINT get_oldest_time(DIR_FILE df[], DWORD *oldest_time, UINT len)
{
    int i;
    DWORD old_time = combine_time(&(df[0].fno));
    DWORD time;
    UINT index = 0;
    for (i = 1; i < len; i++) {
        time = combine_time(&(df[i].fno));
        if (time < old_time) {
            old_time = time;
            index = i;
        }
W
wenjun 已提交
2058
    }
W
wangchenyang 已提交
2059 2060
    *oldest_time = old_time;
    return index;
W
wenjun 已提交
2061 2062
}

W
wangchenyang 已提交
2063
int fatfs_fscheck(struct Vnode* vp, struct fs_dirent_s *dir)
W
wenjun 已提交
2064
{
W
wangchenyang 已提交
2065 2066 2067 2068
    FATFS *fs = (FATFS *)vp->originMount->data;
    DIR_FILE df[CHECK_FILE_NUM] = {0};
    DIR *dp = NULL;
    FILINFO *finfo = &(((DIR_FILE *)(vp->data))->fno);
W
wenjun 已提交
2069
    FILINFO fno;
W
wangchenyang 已提交
2070 2071 2072 2073
    DWORD old_time = -1;
    DWORD time;
    UINT count;
    UINT index = 0;
W
wenjun 已提交
2074
    los_part *part = NULL;
W
wangchenyang 已提交
2075 2076
    FRESULT result;
    int ret;
W
wenjun 已提交
2077

W
wangchenyang 已提交
2078 2079
    if (fs->fs_type != FS_FAT32) {
        return -EINVAL;
W
wenjun 已提交
2080 2081
    }

W
wangchenyang 已提交
2082 2083 2084
    if ((finfo->fattrib & AM_DIR) == 0) {
        return -ENOTDIR;
    }
W
wenjun 已提交
2085

W
wangchenyang 已提交
2086 2087
    ret = fatfs_opendir(vp, dir);
    if (ret < 0) {
W
wenjun 已提交
2088 2089 2090
        return ret;
    }

W
wangchenyang 已提交
2091 2092 2093 2094
    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_WITH_DIR;
W
wenjun 已提交
2095 2096
    }

W
wangchenyang 已提交
2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112
    dp = (DIR *)dir->u.fs_dir;
    dp->obj.id = fs->id;
    for (count = 0; count < CHECK_FILE_NUM; count++) {
        if ((result = f_readdir(dp, &fno)) != FR_OK) {
            goto ERROR_UNLOCK;
        } else {
            if (fno.fname[0] == 0 || fno.fname[0] == (TCHAR)0xFF) {
                break;
            }
            (void)memcpy_s(&df[count].f_dir, sizeof(DIR), dp, sizeof(DIR));
            (void)memcpy_s(&df[count].fno, sizeof(FILINFO), &fno, sizeof(FILINFO));
            time = combine_time(&(df[count].fno));
            if (time < old_time) {
                old_time = time;
                index = count;
            }
W
wenjun 已提交
2113
        }
W
wangchenyang 已提交
2114 2115 2116
    }
    while ((result = f_readdir(dp, &fno)) == FR_OK) {
        if (fno.fname[0] == 0 || fno.fname[0] == (TCHAR)0xFF) {
W
wenjun 已提交
2117 2118
            break;
        }
W
wangchenyang 已提交
2119 2120 2121 2122 2123
        time = combine_time(&fno);
        if (time < old_time) {
            (void)memcpy_s(&df[index].f_dir, sizeof(DIR), dp, sizeof(DIR));
            (void)memcpy_s(&df[index].fno, sizeof(FILINFO), &fno, sizeof(FILINFO));
            index = get_oldest_time(df, &old_time, CHECK_FILE_NUM);
W
wenjun 已提交
2124
        }
W
wangchenyang 已提交
2125 2126 2127 2128
    }
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
    }
W
wenjun 已提交
2129

W
wangchenyang 已提交
2130 2131 2132 2133
    for (index = 0; index < count; index++) {
        result = f_fcheckfat(&df[index]);
        if (result != FR_OK) {
            goto ERROR_UNLOCK;
W
wenjun 已提交
2134 2135 2136
        }
    }

W
wangchenyang 已提交
2137 2138 2139 2140
    unlock_fs(fs, FR_OK);

    ret = fatfs_closedir(vp, dir);
    if (ret < 0) {
W
wenjun 已提交
2141 2142 2143 2144
        return ret;
    }

#ifdef LOSCFG_FS_FAT_CACHE
W
wangchenyang 已提交
2145
    part = get_part((INT)fs->pdrv);
W
wenjun 已提交
2146 2147 2148 2149 2150 2151
    if (part != NULL) {
        (void)OsSdSync(part->disk_id);
    }
#endif

    return 0;
W
wangchenyang 已提交
2152 2153 2154 2155 2156 2157

ERROR_UNLOCK:
    unlock_fs(fs, result);
ERROR_WITH_DIR:
    fatfs_closedir(vp, dir);
    return -fatfs_2_vfs(result);
W
wenjun 已提交
2158 2159
}

C
chenjing 已提交
2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210
int fatfs_symlink(struct Vnode *parentVnode, struct Vnode **newVnode, const char *path, const char *target)
{
    return fatfs_create_obj(parentVnode, path, 0, newVnode, AM_LNK, target);
}

ssize_t fatfs_readlink(struct Vnode *vnode, char *buffer, size_t bufLen)
{
    int ret;
    FRESULT res = FR_OK;
    DWORD clust;
    QWORD sect;
    DIR_FILE *dfp = (DIR_FILE *)(vnode->data);
    DIR *dp = &(dfp->f_dir);
    FATFS *fs = dp->obj.fs;
    FILINFO *finfo = &(dfp->fno);
    size_t targetLen = finfo->fsize;
    size_t cnt;

    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
    }

    clust = finfo->sclst;
    sect = clst2sect(fs, clust);    /* Get current sector */
    if (sect == 0) {
        res = FR_DISK_ERR;
        goto ERROUT;
    }

    if (move_window(fs, sect) != FR_OK) {
        res = FR_DISK_ERR;
        goto ERROUT;
    }

    cnt = (bufLen - 1) < targetLen ? (bufLen - 1) : targetLen;
    ret = LOS_CopyFromKernel(buffer, bufLen, fs->win, cnt);
    if (ret != EOK) {
        res = FR_INVALID_PARAMETER;
        goto ERROUT;
    }
    buffer[cnt] = '\0';

    unlock_fs(fs, FR_OK);
    return cnt;

ERROUT:
    unlock_fs(fs, res);
    return -fatfs_2_vfs(res);
}

2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411
ssize_t fatfs_readpage(struct Vnode *vnode, char *buff, off_t pos)
{
    FATFS *fs = (FATFS *)(vnode->originMount->data);
    DIR_FILE *dfp = (DIR_FILE *)(vnode->data);
    FILINFO *finfo = &(dfp->fno);
    FAT_ENTRY *ep = &(dfp->fat_entry);
    DWORD clust;
    DWORD sclust;
    QWORD sect;
    QWORD step;
    QWORD n;
    size_t position; /* byte offset */
    BYTE *buf = (BYTE *)buff;
    size_t buflen = PAGE_SIZE;
    FRESULT result;
    int ret;

    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_OUT;
    }

    if (finfo->fsize <= pos) {
        result = FR_OK;
        goto ERROR_UNLOCK;
    }

    if (ep->clst == 0) {
        ep->clst = finfo->sclst;
    }

    if (pos >= ep->pos) {
        clust = ep->clst;
        position = ep->pos;
    } else {
        clust = finfo->sclst;
        position = 0;
    }

    /* Get to the current cluster */
    n = pos / SS(fs) / fs->csize - position / SS(fs) / fs->csize;
    while (n--) {
        clust = get_fat(&(dfp->f_dir.obj), clust);
        if ((clust == BAD_CLUSTER) || (clust == DISK_ERROR)) {
            result = FR_DISK_ERR;
            goto ERROR_UNLOCK;
        }
    }

    /* Get to the currnet sector */
    sect = clst2sect(fs, clust);
    sect += (pos / SS(fs)) & (fs->csize - 1);

    /* How many sectors do we need to read once */
    if (fs->csize < buflen / SS(fs)) {
        step = fs->csize;
    } else {
        step = buflen / SS(fs);
    }

    n = 0;
    sclust = clust;
    while (n < buflen / SS(fs)) {
        if (disk_read(fs->pdrv, buf, sect, step) != RES_OK) {
            result = FR_DISK_ERR;
            goto ERROR_UNLOCK;
        }
        n += step;
        if (n >= buflen / SS(fs)) {
            break;
        }

        /* As cluster size is aligned, it must jump to next cluster when cluster size is less than pagesize */
        clust = get_fat(&(dfp->f_dir.obj), clust);
        if ((clust == BAD_CLUSTER) || (clust == DISK_ERROR)) {
            result = FR_DISK_ERR;
            goto ERROR_UNLOCK;
        } else if (fatfs_is_last_cluster(fs, clust)) {
            break; /* read end */
        }
        sect = clst2sect(fs, clust);
        buf += step * SS(fs);
    }

    ep->clst = sclust;
    ep->pos = pos;

    unlock_fs(fs, FR_OK);

    return (ssize_t)min(finfo->fsize - pos, n * SS(fs));

ERROR_UNLOCK:
    unlock_fs(fs, result);
ERROR_OUT:
    return -fatfs_2_vfs(result);
}

ssize_t fatfs_writepage(struct Vnode *vnode, char *buff, off_t pos, size_t buflen)
{
    FATFS *fs = (FATFS *)(vnode->originMount->data);
    DIR_FILE *dfp = (DIR_FILE *)(vnode->data);
    FILINFO *finfo = &(dfp->fno);
    FAT_ENTRY *ep = &(dfp->fat_entry);
    DWORD clust;
    DWORD sclst;
    QWORD sect;
    QWORD step;
    QWORD n;
    size_t position; /* byte offset */
    BYTE *buf = (BYTE *)buff;
    FRESULT result;
    FIL fil;
    int ret;

    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_OUT;
    }

    if (finfo->fsize <= pos) {
        result = FR_OK;
        goto ERROR_UNLOCK;
    }

    if (ep->clst == 0) {
        ep->clst = finfo->sclst;
    }

    if (pos >= ep->pos) {
        clust = ep->clst;
        position = ep->pos;
    } else {
        clust = finfo->sclst;
        position = 0;
    }

    /* Get to the current cluster */
    n = pos / SS(fs) / fs->csize - position / SS(fs) / fs->csize;
    while (n--) {
        clust = get_fat(&(dfp->f_dir.obj), clust);
        if ((clust == BAD_CLUSTER) || (clust == DISK_ERROR)) {
            result = FR_DISK_ERR;
            goto ERROR_UNLOCK;
        }
    }

    /* Get to the currnet sector */
    sect = clst2sect(fs, clust);
    sect += (pos / SS(fs)) & (fs->csize - 1);

    /* How many sectors do we need to read once */
    if (fs->csize < buflen / SS(fs)) {
        step = fs->csize;
    } else {
        step = buflen / SS(fs);
    }

    n = 0;
    sclst = clust;
    while (n < buflen / SS(fs)) {
        if (disk_write(fs->pdrv, buf, sect, step) != RES_OK) {
            result = FR_DISK_ERR;
            goto ERROR_UNLOCK;
        }
        n += step;
        if (n >= buflen / SS(fs)) {
            break;
        }

        /* As cluster size is aligned, it must jump to next cluster when cluster size is less than pagesize */
        clust = get_fat(&(dfp->f_dir.obj), clust);
        if ((clust == BAD_CLUSTER) || (clust == DISK_ERROR)) {
            result = FR_DISK_ERR;
            goto ERROR_UNLOCK;
        } else if (fatfs_is_last_cluster(fs, clust)) {
            break; /* read end */
        }
        sect = clst2sect(fs, clust);
        buf += step * SS(fs);
    }

    ep->clst = sclst;
    ep->pos = pos;

    fil.obj.fs = fs;
    if (update_filbuff(finfo, &fil, NULL) < 0) {
        result = FR_DISK_ERR;
        goto ERROR_UNLOCK;
    }

    unlock_fs(fs, FR_OK);

    return (ssize_t)min(finfo->fsize - pos, n * SS(fs));
ERROR_UNLOCK:
    unlock_fs(fs, result);
ERROR_OUT:
    return -fatfs_2_vfs(result);
}

W
wangchenyang 已提交
2412 2413 2414 2415 2416 2417 2418
struct VnodeOps fatfs_vops = {
    /* file ops */
    .Getattr = fatfs_stat,
    .Chattr = fatfs_chattr,
    .Lookup = fatfs_lookup,
    .Rename = fatfs_rename,
    .Create = fatfs_create,
2419 2420
    .ReadPage = fatfs_readpage,
    .WritePage = fatfs_writepage,
W
wangchenyang 已提交
2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432
    .Unlink = fatfs_unlink,
    .Reclaim = fatfs_reclaim,
    .Truncate = fatfs_truncate,
    .Truncate64 = fatfs_truncate64,
    /* dir ops */
    .Opendir = fatfs_opendir,
    .Readdir = fatfs_readdir,
    .Rewinddir = fatfs_rewinddir,
    .Closedir = fatfs_closedir,
    .Mkdir = fatfs_mkdir,
    .Rmdir = fatfs_rmdir,
    .Fscheck = fatfs_fscheck,
C
chenjing 已提交
2433 2434
    .Symlink = fatfs_symlink,
    .Readlink = fatfs_readlink,
W
wangchenyang 已提交
2435 2436 2437 2438 2439 2440
};

struct MountOps fatfs_mops = {
    .Mount = fatfs_mount,
    .Unmount = fatfs_umount,
    .Statfs = fatfs_statfs,
G
Guangyao Ma 已提交
2441
    .Sync = fatfs_sync_adapt,
W
wangchenyang 已提交
2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454
};

struct file_operations_vfs fatfs_fops = {
    .open = fatfs_open,
    .read = fatfs_read,
    .write = fatfs_write,
    .seek = fatfs_lseek,
    .close = fatfs_close,
    .mmap = OsVfsFileMmap,
    .fallocate = fatfs_fallocate,
    .fallocate64 = fatfs_fallocate64,
    .fsync = fatfs_fsync,
    .ioctl = fatfs_ioctl,
W
wenjun 已提交
2455 2456
};

W
wangchenyang 已提交
2457
FSMAP_ENTRY(fat_fsmap, "vfat", fatfs_mops, FALSE, TRUE);
W
wenjun 已提交
2458 2459

#endif /* LOSCFG_FS_FAT */