fatfs.c 51.8 KB
Newer Older
1
/*
2 3
 * Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
 * Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
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
 *
 * 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"
35
#include "fs/vfs_util.h"
36
#include "disk_pri.h"
37 38 39 40 41 42 43
#include "diskio.h"
#include "fs/fs.h"
#include "fs/dirent_fs.h"
#include "fs_other.h"
#include "fs/mount.h"
#include "fs/vnode.h"
#include "fs/path_cache.h"
44 45
#ifdef LOSCFG_FS_FAT_VIRTUAL_PARTITION
#include "virpartff.h"
46
#include "errcode_fat.h"
47
#endif
48 49
#include "los_tables.h"
#include "user_copy.h"
50
#include "los_vm_filemap.h"
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
#include <time.h>
#include <errno.h>
#include <dirent.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>

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 */
73
// 结果转化 fat 转 vfs
74
int fatfs_2_vfs(int result)
75
{
76
    int status = ENOERR;
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94

#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:
95
            status = ENOENT;
96 97
            break;

98 99 100 101
        case FR_NO_FILESYSTEM:
            status = ENOTSUP;
            break;

102
        case FR_INVALID_NAME:
103
            status = EINVAL;
104 105 106 107
            break;

        case FR_EXIST:
        case FR_INVALID_OBJECT:
108
            status = EEXIST;
109 110 111 112 113
            break;

        case FR_DISK_ERR:
        case FR_NOT_READY:
        case FR_INT_ERR:
114
            status = EIO;
115 116 117
            break;

        case FR_WRITE_PROTECTED:
118
            status = EROFS;
119 120 121
            break;
        case FR_MKFS_ABORTED:
        case FR_INVALID_PARAMETER:
122
            status = EINVAL;
123 124 125
            break;

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

    return status;
}

176 177 178 179 180 181 182 183 184 185 186 187 188
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);
    }
}

189
static int fatfs_sync(unsigned long mountflags, FATFS *fs)
190
{
191
#ifdef LOSCFG_FS_FAT_CACHE
192
    los_part *part = NULL;
193 194 195 196 197
    if (mountflags != MS_NOSYNC) {
        part = get_part((INT)fs->pdrv);
        if (part == NULL) {
            return -ENODEV;
        }
198

199
        (void)OsSdSync(part->disk_id);
200 201
    }
#endif
202
    return 0;
203
}
204 205
//哈希值比较函数,返回int
//typedef int VfsHashCmp(struct Vnode *vnode, void *arg);
206 207 208 209
int fatfs_hash_cmp(struct Vnode *vp, void *arg)
{
    DIR_FILE *dfp_target = (DIR_FILE *)arg;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
210

211 212 213 214
    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;
}
215
//生成hash值的过程
216
static DWORD fatfs_hash(QWORD sect, DWORD dptr, DWORD sclst)
217
{
218 219 220 221
    DWORD hash = FNV1_32_INIT;
    hash = fnv_32_buf(&sect, sizeof(QWORD), hash);
    hash = fnv_32_buf(&dptr, sizeof(DWORD), hash);
    hash = fnv_32_buf(&sclst, sizeof(DWORD), hash);
222

223
    return hash;
224 225
}

226 227 228 229 230
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;
231
    }
232 233 234 235 236
    fs_mode &= ~mask;
    if (attribute & AM_DIR) {
        fs_mode |= S_IFDIR;
    } else {
        fs_mode |= S_IFREG;
237
    }
238
    return fs_mode;
239
}
240
// fat文件系统对 Lookup 接口的实现
241
int fatfs_lookup(struct Vnode *parent, const char *path, int len, struct Vnode **vpp)
242
{
243 244 245 246 247 248 249 250
    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;
251

252 253 254 255
    dfp = (DIR_FILE *)zalloc(sizeof(DIR_FILE));
    if (dfp == NULL) {
        ret = ENOMEM;
        goto ERROR_EXIT;
256 257
    }

258 259 260 261
    ret = lock_fs(fs);
    if (ret == FALSE) {
        ret = EBUSY;
        goto ERROR_FREE;
262
    }
263 264 265 266 267 268 269 270 271 272 273 274
    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;
275 276
    }

277 278 279 280 281
    result = dir_find(dp);
    if (result != FR_OK) {
        ret = fatfs_2_vfs(result);
        goto ERROR_UNLOCK;
    }
282

283 284 285 286 287
    if (dp->fn[NSFLAG] & NS_NONAME) {
        result = FR_INVALID_NAME;
        ret = fatfs_2_vfs(result);
        goto ERROR_UNLOCK;
    }
288

289 290
    get_fileinfo(dp, finfo);
    dp->obj.objsize = 0;
291

292 293 294 295 296 297 298 299
    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;
300
        }
301 302 303 304 305 306 307 308 309 310 311
        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;
        } else {
            vp->type = VNODE_TYPE_REG;
312
        }
313 314 315 316 317

        ret = VfsHashInsert(vp, hash);
        if (ret != 0) {
            result = FR_INVALID_PARAMETER;
            goto ERROR_UNLOCK;
318 319
        }
    } else {
320
        vp->parent = parent;
321
        free(dfp); /* hash hit dfp is no needed */
322 323
    }

324 325 326 327
    unlock_fs(fs, FR_OK);
    FREE_NAMBUF();
    *vpp = vp;
    return 0;
328

329 330 331 332 333 334 335
ERROR_UNLOCK:
    unlock_fs(fs, result);
    FREE_NAMBUF();
ERROR_FREE:
    free(dfp);
ERROR_EXIT:
    return -ret;
336 337
}

338
int fatfs_create(struct Vnode *parent, const char *name, int mode, struct Vnode **vpp)
339
{
340 341 342 343 344 345 346 347 348
    struct Vnode *vp = NULL;
    FATFS *fs = (FATFS *)parent->originMount->data;
    DIR_FILE *dfp;
    DIR *dp = NULL;
    FILINFO *finfo = NULL;
    QWORD time;
    DWORD hash;
    FRESULT result;
    int ret;
349

350 351 352 353 354 355 356 357 358 359
    dfp = (DIR_FILE *)zalloc(sizeof(DIR_FILE));
    if (dfp == NULL) {
        ret = ENOMEM;
        goto ERROR_EXIT;
    }
    ret = lock_fs(fs);
    if (ret == FALSE) { /* lock failed */
        ret = EBUSY;
        goto ERROR_FREE;
    }
360

361 362 363 364 365 366 367 368 369 370 371 372 373 374
    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, &name);
    if (result != FR_OK) {
        ret = fatfs_2_vfs(result);
        goto ERROR_UNLOCK;
    }
    result = dir_find(dp);
375
    if (result == FR_OK) {
376 377 378 379 380 381 382 383 384 385 386
        ret = EEXIST;
        goto ERROR_UNLOCK;
    }
    result = dir_register(dp);
    if (result != FR_OK) {
        ret = fatfs_2_vfs(result);
        goto ERROR_UNLOCK;
    }
    /* Set the directory entry attribute */
    if (time_status == SYSTEM_TIME_ENABLE) {
        time = GET_FATTIME();
387
    } else {
388
        time = 0;
389
    }
390 391 392 393 394 395 396 397 398
    st_dword(dp->dir + DIR_CrtTime, time);
    st_dword(dp->dir + DIR_ModTime, time);
    st_word(dp->dir + DIR_LstAccDate, time >> FTIME_DATE_OFFSET);
    dp->dir[DIR_Attr] = AM_ARC;
    if (((DWORD)mode & S_IWUSR) == 0) {
        dp->dir[DIR_Attr] |= AM_RDO;
    }
    st_clust(fs, dp->dir, 0);
    st_dword(dp->dir + DIR_FileSize, 0);
399

400 401 402 403
#ifdef LOSCFG_FS_FAT_VIRTUAL_PARTITION
    PARENTFS(fs)->wflag = 1;
#else
    fs->wflag = 1;
404
#endif
405 406 407 408
    result = sync_fs(fs);
    if (result != FR_OK) {
        ret = fatfs_2_vfs(result);
        goto ERROR_UNLOCK;
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
    result = dir_read(dp, 0);
    if (result != FR_OK) {
        ret = fatfs_2_vfs(result);
        goto ERROR_UNLOCK;
    }
    dp->blk_ofs = dir_ofs(dp);
    get_fileinfo(dp, finfo);
    dp->obj.objsize = 0;

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

    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);
    vp->type = VNODE_TYPE_REG;

    hash = fatfs_hash(dp->sect, dp->dptr, finfo->sclst);
    ret = VfsHashInsert(vp, hash);
    if (ret != 0) {
        ret = EINVAL;
        goto ERROR_UNLOCK;
    }
    *vpp = vp;

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

ERROR_UNLOCK:
    unlock_fs(fs, result);
    FREE_NAMBUF();
ERROR_FREE:
    free(dfp);
ERROR_EXIT:
    return -ret;
}
454
//打开 fat 格式文件
455 456 457 458 459 460 461 462 463 464 465 466 467 468
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;
469
    }
470 471 472 473
    ret = lock_fs(fs);
    if (ret == FALSE) {
        ret = EBUSY;
        goto ERROR_EXIT;
474 475
    }

476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
    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;
        goto ERROR_FREE;
    }
    LOS_ListAdd(&finfo->fp_list, &fp->fp_entry);
    unlock_fs(fs, FR_OK);

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

ERROR_FREE:
    unlock_fs(fs, FR_OK);
    free(fp);
ERROR_EXIT:
    return -ret;
505 506
}

507
int fatfs_close(struct file *filep)
508
{
509 510 511 512
    FIL *fp = (FIL *)filep->f_priv;
    FATFS *fs = fp->obj.fs;
    FRESULT result;
    int ret;
513

514 515 516
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
517
    }
518 519 520 521
#if !FF_FS_READONLY
    result = f_sync(fp); /* Flush cached data */
    if (result != FR_OK) {
        goto EXIT;
522
    }
523 524 525 526
    ret = fatfs_sync(filep->f_vnode->originMount->mountFlags, fs);
    if (ret != 0) {
        unlock_fs(fs, FR_OK);
        return ret;
527
    }
528 529 530 531 532 533 534 535
#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);
536 537
}

538
int fatfs_read(struct file *filep, char *buff, size_t count)
539
{
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
    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;
557
    }
558 559 560 561 562
    filep->f_pos = fp->fptr;
EXIT:
    unlock_fs(fs, result);
    return rcount;
}
563

564 565 566 567 568 569
static FRESULT update_dir(DIR *dp, FILINFO *finfo)
{
    FATFS *fs = dp->obj.fs;
    DWORD tm;
    BYTE *dbuff = NULL;
    FRESULT result;
570

571 572 573 574 575 576 577 578 579 580 581 582
    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;
583
    }
584 585 586 587 588 589 590 591 592
    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);
}
593

594 595 596 597 598 599 600 601 602 603
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);
    FSIZE_t fpos;
    FRESULT result;
    int ret;
604

605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
    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;
628 629
    }

630 631
    if (offset >= FAT32_MAXSIZE) {
        return -EINVAL;
632 633
    }

634 635 636
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
637
    }
638 639
    fp->obj.sclust = finfo->sclst;
    fp->obj.objsize = finfo->fsize;
640

641 642 643 644 645
    result = f_lseek(fp, fpos);
    finfo->fsize = fp->obj.objsize;
    finfo->sclst = fp->obj.sclust;
    if (result != FR_OK) {
        goto ERROR_EXIT;
646 647
    }

648 649 650
    result = f_sync(fp);
    if (result != FR_OK) {
        goto ERROR_EXIT;
651
    }
652
    filep->f_pos = fpos;
653

654 655 656 657 658 659
    unlock_fs(fs, FR_OK);
    return fpos;
ERROR_EXIT:
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
}
660

661 662 663
off_t fatfs_lseek(struct file *filep, off_t offset, int whence)
{
    return (off_t)fatfs_lseek64(filep, offset, whence);
664 665
}

666
static int update_filbuff(FILINFO *finfo, FIL *wfp, const char  *data)
667
{
668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684
    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;
685 686
}

687
int fatfs_write(struct file *filep, const char *buff, size_t count)
688
{
689 690 691 692 693
    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;
694
    FRESULT result;
695
    int ret;
696

697 698 699
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
700
    }
701 702 703 704 705
    fp->obj.objsize = finfo->fsize;
    fp->obj.sclust = finfo->sclst;
    result = f_write(fp, buff, count, &wcount);
    if (result != FR_OK) {
        goto ERROR_EXIT;
706 707
    }

708 709 710 711 712
    finfo->fsize = fp->obj.objsize;
    finfo->sclst = fp->obj.sclust;
    result = f_sync(fp);
    if (result != FR_OK) {
        goto ERROR_EXIT;
713
    }
714
    update_filbuff(finfo, fp, buff);
715

716
    filep->f_pos = fp->fptr;
717

718 719 720 721 722 723
    unlock_fs(fs, FR_OK);
    return wcount;
ERROR_EXIT:
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
}
724

725 726 727 728 729 730
int fatfs_fsync(struct file *filep)
{
    FIL *fp = filep->f_priv;
    FATFS *fs = fp->obj.fs;
    FRESULT result;
    int ret;
731

732 733 734
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
735 736
    }

737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
    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) {
752 753 754
        return -EINVAL;
    }

755 756 757
    if (len >= FAT32_MAXSIZE || offset >= FAT32_MAXSIZE ||
        len + offset >= FAT32_MAXSIZE) {
        return -EINVAL;
758 759
    }

760 761
    if (mode != FALLOC_FL_KEEP_SIZE) {
        return -EINVAL;
762 763
    }

764 765 766
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
767
    }
768 769 770 771 772 773
    result = f_expand(fp, (FSIZE_t)offset, (FSIZE_t)len, 1);
    if (result == FR_OK && finfo->sclst == 0) {
        finfo->sclst = fp->obj.sclust;
    }
    result = f_sync(fp);
    unlock_fs(fs, FR_OK);
774

775
    return -fatfs_2_vfs(result);
776 777
}

778
static FRESULT realloc_cluster(FILINFO *finfo, FFOBJID *obj, FSIZE_t size)
779
{
780 781 782 783 784
    FATFS *fs = obj->fs;
    off64_t remain;
    DWORD cclust;
    DWORD pclust;
    QWORD csize;
785 786
    FRESULT result;

787 788 789 790 791 792 793 794 795
    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;
796 797
    }

798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
    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;
821
    }
822 823 824 825 826
    pclust = cclust;
    cclust = get_fat(obj, pclust);
    if ((cclust == BAD_CLUSTER) || (cclust == DISK_ERROR)) {
        return FR_DISK_ERR;
    }
827
    if (!fatfs_is_last_cluster(obj->fs, cclust)) { /* Remove extra cluster if existing */
828 829 830 831
        result = remove_chain(obj, cclust, pclust);
        if (result != FR_OK) {
            return result;
        }
832 833
    }

834
    return FR_OK;
835 836
}

837
int fatfs_fallocate(struct file *filep, int mode, off_t offset, off_t len)
838
{
839
    return fatfs_fallocate64(filep, mode, offset, len);
840 841
}

842
int fatfs_truncate64(struct Vnode *vp, off64_t len)
843
{
844 845 846 847 848 849 850 851 852
    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) {
853 854 855
        return -EINVAL;
    }

856 857 858 859
    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_OUT;
860
    }
861 862 863
    if (len == finfo->fsize) {
        unlock_fs(fs, FR_OK);
        return 0;
864 865
    }

866 867 868 869
    object.fs = fs;
    result = realloc_cluster(finfo, &object, (FSIZE_t)len);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
870
    }
871
    finfo->fsize = (FSIZE_t)len;
872

873 874 875 876 877 878 879 880 881 882
    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);
883 884
}

885
int fatfs_truncate(struct Vnode *vp, off_t len)
886
{
887
    return fatfs_truncate64(vp, len);
888 889
}

890
static int fat_bind_check(struct Vnode *blk_driver, los_part **partition)
891
{
892
    los_part *part = NULL;
893

894 895
    if (blk_driver == NULL || blk_driver->data == NULL) {
        return ENODEV;
896 897
    }

898 899 900
    struct drv_data *dd = blk_driver->data;
    if (dd->ops == NULL) {
        return ENODEV;
901
    }
902 903 904
    const struct block_operations *bops = dd->ops;
    if (bops->open == NULL) {
        return EINVAL;
905
    }
906 907
    if (bops->open(blk_driver) < 0) {
        return EBUSY;
908 909
    }

910 911 912
    part = los_part_find(blk_driver);
    if (part == NULL) {
        return ENODEV;
913
    }
914 915 916
    if (part->part_name != NULL) {
        bops->close(blk_driver);
        return EBUSY;
917 918
    }

919 920 921 922
#ifndef FF_MULTI_PARTITION
    if (part->part_no_mbr > 1) {
        bops->close(blk_driver);
        return EPERM;
923 924 925
    }
#endif

926 927
    *partition = part;
    return 0;
928 929
}

930
int fatfs_mount(struct Mount *mnt, struct Vnode *blk_device, const void *data)
931
{
932 933 934 935 936 937 938
    struct Vnode *vp = NULL;
    FATFS *fs = NULL;
    DIR_FILE *dfp = NULL;
    los_part *part = NULL;
    QWORD start_sector;
    BYTE fmt;
    DWORD hash;
939
    FRESULT result;
940
    int ret;
941

942 943 944
    ret = fat_bind_check(blk_device, &part);
    if (ret != 0) {
        goto ERROR_EXIT;
945 946
    }

947 948 949 950
    ret = SetDiskPartName(part, "vfat");
    if (ret != 0) {
        ret = EIO;
        goto ERROR_EXIT;
951 952
    }

953 954 955 956
    fs = (FATFS *)zalloc(sizeof(FATFS));
    if (fs == NULL) {
        ret = ENOMEM;
        goto ERROR_PARTNAME;
957 958
    }

959 960 961 962 963 964
#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
965

966 967 968 969
    ret = ff_cre_syncobj(0, &fs->sobj);
    if (ret == 0) { /* create sync object failed */
        ret = EINVAL;
        goto ERROR_WITH_FS;
970 971
    }

972 973 974 975
    ret = lock_fs(fs);
    if (ret == FALSE) {
        ret = EBUSY;
        goto ERROR_WITH_MUX;
976 977
    }

978 979
    fs->fs_type = 0;
    fs->pdrv = part->part_id;
980

981 982 983 984
#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;
985
    }
986 987 988
    if (fs->ssize > FF_MAX_SS || fs->ssize < FF_MIN_SS || (fs->ssize & (fs->ssize - 1))) {
        ret = EIO;
        goto ERROR_WITH_LOCK;
989
    }
990
#endif
991

992 993 994 995
    fs->win = (BYTE *)ff_memalloc(SS(fs));
    if (fs->win == NULL) {
        ret = ENOMEM;
        goto ERROR_WITH_LOCK;
996 997
    }

998
    result = find_fat_partition(fs, part, &fmt, &start_sector);
999
    if (result != FR_OK) {
1000 1001
        ret = fatfs_2_vfs(result);
        goto ERROR_WITH_FSWIN;
1002 1003
    }

1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
    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;
    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);
1060 1061 1062

    return 0;

1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
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;
1075
    }
1076 1077
ERROR_EXIT:
    return -ret;
1078 1079
}

1080
int fatfs_umount(struct Mount *mnt, struct Vnode **blkdriver)
1081
{
1082 1083 1084 1085
    struct Vnode *device;
    FATFS *fs = (FATFS *)mnt->data;
    los_part *part;
    int ret;
1086

1087 1088 1089
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
1090 1091
    }

1092 1093 1094 1095
    part = get_part(fs->pdrv);
    if (part == NULL) {
        unlock_fs(fs, FR_OK);
        return -ENODEV;
1096
    }
1097 1098 1099 1100
    device = part->dev;
    if (device == NULL) {
        unlock_fs(fs, FR_OK);
        return -ENODEV;
1101
    }
1102 1103 1104 1105 1106
#ifdef LOSCFG_FS_FAT_CACHE
    ret = OsSdSync(part->disk_id);
    if (ret != 0) {
        unlock_fs(fs, FR_DISK_ERR);
        return -EIO;
1107 1108
    }
#endif
1109 1110 1111
    if (part->part_name != NULL) {
        free(part->part_name);
        part->part_name = NULL;
1112 1113
    }

1114 1115 1116 1117
    struct drv_data *dd = device->data;
    if (dd->ops == NULL) {
        unlock_fs(fs, FR_OK);
        return ENODEV;
1118 1119
    }

1120 1121 1122
    const struct block_operations *bops = dd->ops;
    if (bops != NULL && bops->close != NULL) {
        bops->close(*blkdriver);
1123 1124
    }

1125 1126
    if (fs->win != NULL) {
        ff_memfree(fs->win);
1127 1128
    }

1129
    unlock_fs(fs, FR_OK);
1130

1131 1132 1133
    ret = ff_del_syncobj(&fs->sobj);
    if (ret == FALSE) {
        return -EINVAL;
1134
    }
1135
    free(fs);
1136

1137
    *blkdriver = device;
1138

1139
    return 0;
1140 1141
}

1142
int fatfs_statfs(struct Mount *mnt, struct statfs *info)
1143
{
1144
    FATFS *fs = (FATFS *)mnt->data;
1145 1146 1147
    DWORD nclst = 0;
    FRESULT result = FR_OK;
    int ret;
1148

1149 1150 1151 1152 1153
    info->f_type = MSDOS_SUPER_MAGIC;
#if FF_MAX_SS != FF_MIN_SS
    info->f_bsize = fs->ssize * fs->csize;
#else
    info->f_bsize = FF_MIN_SS * fs->csize;
1154
#endif
1155
    info->f_blocks = fs->n_fatent;
1156 1157 1158 1159 1160 1161 1162 1163
    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);
    }
1164 1165
    info->f_bfree = fs->free_clst;
    info->f_bavail = fs->free_clst;
1166
    unlock_fs(fs, result);
1167

1168 1169 1170
#if FF_USE_LFN
    /* Maximum length of filenames */
    info->f_namelen = FF_MAX_LFN;
1171
#else
1172 1173
    /* Maximum length of filenames: 8 is the basename length, 1 is the dot, 3 is the extension length */
    info->f_namelen = (8 + 1 + 3);
1174
#endif
1175 1176 1177 1178 1179 1180 1181
    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;

1182
    return -fatfs_2_vfs(result);
1183 1184
}

1185
static inline int GET_SECONDS(WORD ftime)
1186
{
1187
    return (ftime & BITMASK5) * SEC_MULTIPLIER;
1188
}
1189
static inline int GET_MINUTES(WORD ftime)
1190
{
1191
    return (ftime >> FTIME_MIN_OFFSET) & BITMASK6;
1192
}
1193
static inline int GET_HOURS(WORD ftime)
1194
{
1195
    return (ftime >> FTIME_HR_OFFSET) & BITMASK5;
1196
}
1197
static inline int GET_DAY(WORD fdate)
1198
{
1199
    return fdate & BITMASK5;
1200
}
1201
static inline int GET_MONTH(WORD fdate)
1202
{
1203
    return (fdate >> FTIME_MTH_OFFSET) & BITMASK4;
1204
}
1205
static inline int GET_YEAR(WORD fdate)
1206
{
1207
    return (fdate >> FTIME_YEAR_OFFSET) & BITMASK7;
1208 1209
}

1210
static time_t fattime_transfer(WORD fdate, WORD ftime)
1211
{
1212 1213 1214 1215 1216 1217 1218 1219 1220
    struct tm time = { 0 };
    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;
1221 1222
}

1223
DWORD fattime_format(time_t time)
1224
{
1225 1226
    struct tm st;
    DWORD ftime;
1227

1228
    localtime_r(&time, &st);
1229

1230 1231 1232 1233
    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;
1234

1235 1236 1237
    ftime = (DWORD)st.tm_sec / SEC_MULTIPLIER;
    ftime |= ((DWORD)st.tm_min) << FTIME_MIN_OFFSET;
    ftime |= ((DWORD)st.tm_hour) << FTIME_HR_OFFSET;
1238

1239
    return ftime;
1240 1241
}

1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268
int fatfs_stat(struct Vnode *vp, struct stat* sp)
{
    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);
    sp->st_blocks = finfo->fsize ? ((finfo->fsize - 1) / SS(fs) / fs->csize + 1) : 0;
    time = fattime_transfer(finfo->fdate, finfo->ftime);
    sp->st_mtime = time;

    unlock_fs(fs, FR_OK);
    return 0;
}
1269

1270 1271 1272 1273 1274 1275 1276 1277
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));
    }
1278

1279 1280 1281 1282
    if (attr->attr_chg_valid & CHG_CTIME) {
        ftime = fattime_format(attr->attr_chg_ctime);
        st_dword(dir + DIR_CrtTime, ftime);
    }
1283

1284 1285 1286
    if (attr->attr_chg_valid & CHG_MTIME) {
        ftime = fattime_format(attr->attr_chg_mtime);
        st_dword(dir + DIR_ModTime, ftime);
1287
    }
1288
}
1289

1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
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;
1300

1301 1302
    if (finfo->fname[0] == '/') { /* Is root dir of fatfs ? */
        return 0;
1303 1304
    }

1305 1306 1307 1308
    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_OUT;
1309 1310
    }

1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325
    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;
1326
        }
1327
        vp->mode = fatfs_get_mode(finfo->fattrib, fs->fs_mode);
1328 1329
    }

1330 1331 1332 1333 1334 1335
    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;
    }
1336

1337 1338 1339
    result = sync_window(fs);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
1340 1341
    }

1342 1343 1344 1345 1346 1347
    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);
1348 1349
}

1350
int fatfs_opendir(struct Vnode *vp, struct fs_dirent_s *idir)
1351
{
1352 1353 1354 1355 1356
    FATFS *fs = vp->originMount->data;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
    FILINFO *finfo = &(dfp->fno);
    DIR *dp;
    DWORD clst;
1357
    FRESULT result;
1358
    int ret;
1359

1360 1361 1362
    dp = (DIR*)zalloc(sizeof(DIR));
    if (dp == NULL) {
        return -ENOMEM;
1363 1364
    }

1365 1366 1367
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
1368
    }
1369 1370 1371
    clst = finfo->sclst;
    dp->obj.fs = fs;
    dp->obj.sclust = clst;
1372

1373 1374 1375 1376 1377
    result = dir_sdi(dp, 0);
    if (result != FR_OK) {
        free(dp);
        unlock_fs(fs, result);
        return -fatfs_2_vfs(result);
1378
    }
1379 1380
    unlock_fs(fs, result);
    idir->u.fs_dir = dp;
1381

1382 1383
    return 0;
}
1384

1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412
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;

    ret = lock_fs(fs);
    if (ret == FALSE) { /* Lock fs failed */
        return -EBUSY;
    }
    DEF_NAMBUF;
    INIT_NAMBUF(fs);
    for (i = 0; i < idir->read_cnt; i++) {
        /* using dir_read_massive to promote performance */
        result = dir_read_massive(dp, 0);
        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;
        }
1413

1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439
        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);
    }
    unlock_fs(fs, FR_OK);
    FREE_NAMBUF();
    return i;
ERROR_UNLOCK:
    unlock_fs(fs, result);
    FREE_NAMBUF();
    return -fatfs_2_vfs(result);
}
1440

1441 1442 1443 1444 1445 1446 1447 1448 1449 1450
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;

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

1453 1454 1455 1456
    result = dir_sdi(dp, 0);
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
}
1457

1458 1459 1460 1461 1462 1463 1464
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;
}
1465

1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489
static FRESULT rename_check(DIR *dp_new, FILINFO *finfo_new, DIR *dp_old, FILINFO *finfo_old)
{
    DIR dir_sub;
    FRESULT result;
    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;
1490
    }
1491
    return FR_OK;
1492 1493
}

1494
int fatfs_rename(struct Vnode *old_vnode, struct Vnode *new_parent, const char *oldname, const char *newname)
1495
{
1496 1497 1498 1499 1500 1501 1502 1503
    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;
1504
    FRESULT result;
1505
    int ret;
1506

1507 1508 1509
    ret = lock_fs(fs);
    if (ret == FALSE) { /* Lock fs failed */
        return -EBUSY;
1510 1511
    }

1512 1513 1514 1515
    dfp_new = (DIR_FILE *)zalloc(sizeof(DIR_FILE));
    if (dfp_new == NULL) {
        result = FR_NOT_ENOUGH_CORE;
        goto ERROR_UNLOCK;
1516
    }
1517 1518
    dp_new = &(dfp_new->f_dir);
    finfo_new = &(dfp_new->fno);
1519

1520 1521
    dp_new->obj.sclust = ((DIR_FILE *)(new_parent->data))->fno.sclst;
    dp_new->obj.fs = fs;
1522

1523 1524 1525 1526 1527 1528
    /* Find new path */
    DEF_NAMBUF;
    INIT_NAMBUF(fs);
    result = create_name(dp_new, &newname);
    if (result != FR_OK) {
        goto ERROR_FREE;
1529
    }
1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556
    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;
        }
1557 1558
    }

1559 1560
    /* update new dir entry with old info */
    result = update_dir(dp_new, finfo_old);
1561
    if (result != FR_OK) {
1562
        goto ERROR_FREE;
1563
    }
1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588
    result = dir_read(dp_new, 0);
    if (result != FR_OK) {
        goto ERROR_FREE;
    }
    dp_new->blk_ofs = dir_ofs(dp_new);
    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);
1589 1590 1591
}


1592 1593 1594 1595 1596 1597 1598 1599 1600
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;
        }
1601 1602
    }

1603 1604
    if (opt != FM_FAT && opt != FM_FAT32) {
        opt = FM_ANY;
1605 1606
    }

1607 1608
    return opt;
}
1609

1610 1611 1612 1613 1614
static int fatfs_set_part_info(los_part *part)
{
    los_disk *disk = NULL;
    char *buf = NULL;
    int ret;
1615

1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635
    /* 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);
        ret = los_disk_read(part->disk_id, buf, 0, 1, TRUE); /* TRUE when not reading large data */
        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];
1636

1637 1638 1639
        free(buf);
    }
    return 0;
1640 1641
}

1642
int fatfs_mkfs (struct Vnode *device, int sectors, int option)
1643
{
1644 1645 1646 1647
    BYTE *work_buff = NULL;
    los_part *part = NULL;
    FRESULT result;
    int ret;
1648

1649 1650 1651 1652
    part = los_part_find(device);
    if (part == NULL || device->data == NULL) {
        return -ENODEV;
    }
1653

1654
    if (sectors < 0 || sectors > FAT32_MAX_CLUSTER_SIZE || ((DWORD)sectors & ((DWORD)sectors - 1))) {
1655 1656 1657
        return -EINVAL;
    }

1658
    if (option != FMT_FAT && option != FMT_FAT32 && option != FMT_ANY && option != FMT_ERASE) {
1659 1660 1661
        return -EINVAL;
    }

1662 1663 1664 1665 1666 1667 1668
    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;
1669 1670
    }

1671 1672 1673 1674
    result = _mkfs(part, sectors, option, work_buff, FF_MAX_SS);
    free(work_buff);
    if (result != FR_OK) {
        return -fatfs_2_vfs(result);
1675 1676
    }

1677 1678 1679 1680 1681
#ifdef LOSCFG_FS_FAT_CACHE
    ret = OsSdSync(part->disk_id);
    if (ret != 0) {
        return -EIO;
    }
1682 1683
#endif

1684 1685 1686
    ret = fatfs_set_part_info(part);
    if (ret != 0) {
        return -EIO;
1687 1688
    }

1689
    return 0;
1690 1691
}

1692
int fatfs_mkdir(struct Vnode *parent, const char *name, mode_t mode, struct Vnode **vpp)
1693
{
1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729
    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;
    QWORD sect;
    DWORD clust;
    BYTE *dir = NULL;
    DWORD hash;
    FRESULT result = FR_OK;
    int ret;
    UINT n;

    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_OUT;
    }
    if (finfo->fattrib & AM_ARC) {
        result = FR_NO_DIR;
        goto ERROR_UNLOCK;
    }
    DEF_NAMBUF;
    INIT_NAMBUF(fs);

    dfp_new = (DIR_FILE *)zalloc(sizeof(DIR_FILE));
    if (dfp_new == NULL) {
        result = FR_NOT_ENOUGH_CORE;
        goto ERROR_UNLOCK;
    }
    LOS_ListInit(&(dfp_new->fno.fp_list));
    dfp_new->f_dir.obj.sclust = finfo->sclst;
    dfp_new->f_dir.obj.fs = fs;
    result = create_name(&(dfp_new->f_dir), &name);
    if (result != FR_OK) {
        goto ERROR_FREE;
1730
    }
1731 1732 1733 1734
    result = dir_find(&(dfp_new->f_dir));
    if (result == FR_OK) {
        result = FR_EXIST;
        goto ERROR_FREE;
1735
    }
1736 1737 1738 1739 1740
    /* Allocate new chain for directory */
    clust = create_chain(&(dfp_new->f_dir.obj), 0);
    if (clust == 0) {
        result = FR_NO_SPACE_LEFT;
        goto ERROR_FREE;
1741
    }
1742 1743 1744
    if (clust == 1 || clust == DISK_ERROR) {
        result = FR_DISK_ERR;
        goto ERROR_FREE;
1745
    }
1746 1747 1748 1749 1750 1751 1752 1753 1754 1755
    result = sync_window(fs); /* Flush FAT */
    if (result != FR_OK) {
        goto ERROR_REMOVE_CHAIN;
    }
    /* Initialize the new directory */
#ifndef LOSCFG_FS_FAT_VIRTUAL_PARTITION
    dir = fs->win;
#else
    dir = PARENTFS(fs)->win;
#endif
1756

1757 1758 1759 1760 1761 1762
    sect = clst2sect(fs, clust);
    mem_set(dir, 0, SS(fs));
    for (n = fs->csize; n > 0; n--) {    /* Write zero to directory */
#ifndef LOSCFG_FS_FAT_VIRTUAL_PARTITION
        fs->winsect = sect++;
        fs->wflag = 1;
1763
#else
1764 1765 1766 1767
        PARENTFS(fs)->winsect = sect++;
        PARENTFS(fs)->wflag = 1;
        result = sync_window(fs);
        if (result != FR_OK) break;
1768 1769 1770
#endif
    }

1771 1772
    if (result != FR_OK) {
        goto ERROR_REMOVE_CHAIN;
1773
    }
1774 1775 1776
    result = dir_register(&(dfp_new->f_dir));
    if (result != FR_OK) {
        goto ERROR_REMOVE_CHAIN;
1777
    }
1778 1779 1780 1781 1782 1783 1784 1785 1786
    dir = dfp_new->f_dir.dir;
    st_dword(dir + DIR_ModTime, 0); /* Set the time */
    st_clust(fs, dir, clust); /* Set the start cluster */
    dir[DIR_Attr] = AM_DIR; /* Set the attrib */
    if ((mode & S_IWUSR) == 0) {
        dir[DIR_Attr] |= AM_RDO;
    }
#ifndef LOSCFG_FS_FAT_VIRTUAL_PARTITION
    fs->wflag = 1;
1787
#else
1788
    PARENTFS(fs)->wflag = 1;
1789
#endif
1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837
    result = sync_fs(fs);
    if (result != FR_OK) {
        goto ERROR_REMOVE_CHAIN;
    }

    /* Set the FILINFO struct */
    result = dir_read(&(dfp_new->f_dir), 0);
    if (result != FR_OK) {
        goto ERROR_REMOVE_CHAIN;
    }
    dfp_new->f_dir.blk_ofs = dir_ofs(&(dfp_new->f_dir));
    get_fileinfo(&(dfp_new->f_dir), &(dfp_new->fno));

    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(dfp_new->fno.fattrib, fs->fs_mode);
    vp->type = VNODE_TYPE_DIR;

    hash = fatfs_hash(dfp_new->f_dir.sect, dfp_new->f_dir.dptr, dfp_new->fno.sclst);
    ret = VfsHashInsert(vp, hash);
    if (ret != 0) {
        result = FR_NOT_ENOUGH_CORE;
        goto ERROR_REMOVE_CHAIN;
    }

    unlock_fs(fs, FR_OK);
    FREE_NAMBUF();
    *vpp = vp;
    return fatfs_sync(vp->originMount->mountFlags, fs);

ERROR_REMOVE_CHAIN:
    remove_chain(&(dfp_new->f_dir.obj), clust, 0);
ERROR_FREE:
    free(dfp_new);
ERROR_UNLOCK:
    unlock_fs(fs, result);
    FREE_NAMBUF();
ERROR_OUT:
    return -fatfs_2_vfs(result);
1838 1839
}

1840
int fatfs_rmdir(struct Vnode *parent, struct Vnode *vp, char *name)
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
    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;
1868
    }
1869 1870 1871 1872
    result = dir_read(&dir_sub, 0);
    if (result == FR_OK) {
        result = FR_NO_EMPTY_DIR;
        goto ERROR_UNLOCK;
1873
    }
1874 1875 1876
    result = dir_remove(dp); /* remove directory entry */
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
1877
    }
1878 1879 1880 1881
    /* Directory entry contains at least one cluster */
    result = remove_chain(&(dp->obj), finfo->sclst, 0);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
1882 1883
    }

1884 1885 1886
    unlock_fs(fs, FR_OK);
    FREE_NAMBUF();
    return fatfs_sync(vp->originMount->mountFlags, fs);
1887

1888 1889 1890 1891 1892 1893
ERROR_UNLOCK:
    unlock_fs(fs, result);
    FREE_NAMBUF();
ERROR_OUT:
    return -fatfs_2_vfs(result);
}
1894

1895 1896 1897 1898 1899 1900
int fatfs_reclaim(struct Vnode *vp)
{
    free(vp->data);
    vp->data = NULL;
    return 0;
}
1901

1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922
int fatfs_unlink(struct Vnode *parent, struct Vnode *vp, char *name)
{
    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;
1923
    }
1924 1925 1926 1927 1928
    if (finfo->sclst != 0) { /* if cluster chain exists */
        result = remove_chain(&(dp->obj), finfo->sclst, 0);
        if (result != FR_OK) {
            goto ERROR_UNLOCK;
        }
1929
    }
1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944
    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)
{
1945 1946 1947 1948
    return -ENOSYS;
}

#define CHECK_FILE_NUM 3
1949
static inline DWORD combine_time(FILINFO *finfo)
1950
{
1951 1952
    return (finfo->fdate << FTIME_DATE_OFFSET) | finfo->ftime;
}
1953

1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965
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;
        }
1966
    }
1967 1968
    *oldest_time = old_time;
    return index;
1969 1970
}

1971
int fatfs_fscheck(struct Vnode* vp, struct fs_dirent_s *dir)
1972
{
1973 1974 1975 1976
    FATFS *fs = (FATFS *)vp->originMount->data;
    DIR_FILE df[CHECK_FILE_NUM] = {0};
    DIR *dp = NULL;
    FILINFO *finfo = &(((DIR_FILE *)(vp->data))->fno);
1977
    FILINFO fno;
1978 1979 1980 1981
    DWORD old_time = -1;
    DWORD time;
    UINT count;
    UINT index = 0;
1982
    los_part *part = NULL;
1983 1984
    FRESULT result;
    int ret;
1985

1986 1987
    if (fs->fs_type != FS_FAT32) {
        return -EINVAL;
1988 1989
    }

1990 1991 1992
    if ((finfo->fattrib & AM_DIR) == 0) {
        return -ENOTDIR;
    }
1993

1994 1995
    ret = fatfs_opendir(vp, dir);
    if (ret < 0) {
1996 1997 1998
        return ret;
    }

1999 2000 2001 2002
    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_WITH_DIR;
2003 2004
    }

2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020
    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;
            }
2021
        }
2022 2023 2024
    }
    while ((result = f_readdir(dp, &fno)) == FR_OK) {
        if (fno.fname[0] == 0 || fno.fname[0] == (TCHAR)0xFF) {
2025 2026
            break;
        }
2027 2028 2029 2030 2031
        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);
2032
        }
2033 2034 2035 2036
    }
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
    }
2037

2038 2039 2040 2041
    for (index = 0; index < count; index++) {
        result = f_fcheckfat(&df[index]);
        if (result != FR_OK) {
            goto ERROR_UNLOCK;
2042 2043 2044
        }
    }

2045 2046 2047 2048
    unlock_fs(fs, FR_OK);

    ret = fatfs_closedir(vp, dir);
    if (ret < 0) {
2049 2050 2051 2052
        return ret;
    }

#ifdef LOSCFG_FS_FAT_CACHE
2053
    part = get_part((INT)fs->pdrv);
2054 2055 2056 2057 2058 2059
    if (part != NULL) {
        (void)OsSdSync(part->disk_id);
    }
#endif

    return 0;
2060 2061 2062 2063 2064 2065

ERROR_UNLOCK:
    unlock_fs(fs, result);
ERROR_WITH_DIR:
    fatfs_closedir(vp, dir);
    return -fatfs_2_vfs(result);
2066 2067
}

2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086
struct VnodeOps fatfs_vops = {
    /* file ops */
    .Getattr = fatfs_stat,
    .Chattr = fatfs_chattr,
    .Lookup = fatfs_lookup,
    .Rename = fatfs_rename,
    .Create = fatfs_create,
    .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,
2087 2088
};

2089 2090 2091 2092 2093
struct MountOps fatfs_mops = {
    .Mount = fatfs_mount,
    .Unmount = fatfs_umount,
    .Statfs = fatfs_statfs,
};
2094

2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108
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,
};

FSMAP_ENTRY(fat_fsmap, "vfat", fatfs_mops, FALSE, TRUE);
2109 2110

#endif /* LOSCFG_FS_FAT */