fatfs.c 50.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 73 74 75
#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 */

int fatfs_2_vfs(int result)
76
{
77
    int status = ENOERR;
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96

#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:
        case FR_NO_FILESYSTEM:
97
            status = ENOENT;
98 99 100
            break;

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

        case FR_EXIST:
        case FR_INVALID_OBJECT:
106
            status = EEXIST;
107 108 109 110 111
            break;

        case FR_DISK_ERR:
        case FR_NOT_READY:
        case FR_INT_ERR:
112
            status = EIO;
113 114 115
            break;

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

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

    return status;
}

174
static int fatfs_sync(unsigned long mountflags, FATFS *fs)
175
{
176
#ifdef LOSCFG_FS_FAT_CACHE
177
    los_part *part = NULL;
178 179 180 181 182
    if (mountflags != MS_NOSYNC) {
        part = get_part((INT)fs->pdrv);
        if (part == NULL) {
            return -ENODEV;
        }
183

184
        (void)OsSdSync(part->disk_id);
185 186
    }
#endif
187
    return 0;
188
}
189 190 191 192
int fatfs_hash_cmp(struct Vnode *vp, void *arg)
{
    DIR_FILE *dfp_target = (DIR_FILE *)arg;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
193

194 195 196 197
    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;
}
198

199
static DWORD fatfs_hash(QWORD sect, DWORD dptr, DWORD sclst)
200
{
201 202 203 204
    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);
205

206
    return hash;
207 208
}

209 210 211 212 213
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;
214
    }
215 216 217 218 219
    fs_mode &= ~mask;
    if (attribute & AM_DIR) {
        fs_mode |= S_IFDIR;
    } else {
        fs_mode |= S_IFREG;
220
    }
221
    return fs_mode;
222 223
}

224
int fatfs_lookup(struct Vnode *parent, const char *path, int len, struct Vnode **vpp)
225
{
226 227 228 229 230 231 232 233
    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;
234

235 236 237 238
    dfp = (DIR_FILE *)zalloc(sizeof(DIR_FILE));
    if (dfp == NULL) {
        ret = ENOMEM;
        goto ERROR_EXIT;
239 240
    }

241 242 243 244
    ret = lock_fs(fs);
    if (ret == FALSE) {
        ret = EBUSY;
        goto ERROR_FREE;
245
    }
246 247 248 249 250 251 252 253 254 255 256 257
    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;
258 259
    }

260 261 262 263 264
    result = dir_find(dp);
    if (result != FR_OK) {
        ret = fatfs_2_vfs(result);
        goto ERROR_UNLOCK;
    }
265

266 267 268 269 270
    if (dp->fn[NSFLAG] & NS_NONAME) {
        result = FR_INVALID_NAME;
        ret = fatfs_2_vfs(result);
        goto ERROR_UNLOCK;
    }
271

272 273
    get_fileinfo(dp, finfo);
    dp->obj.objsize = 0;
274

275 276 277 278 279 280 281 282
    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;
283
        }
284 285 286 287 288 289 290 291 292 293 294
        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;
295
        }
296 297 298 299 300

        ret = VfsHashInsert(vp, hash);
        if (ret != 0) {
            result = FR_INVALID_PARAMETER;
            goto ERROR_UNLOCK;
301 302
        }
    } else {
303
        free(dfp); /* hash hit dfp is no needed */
304 305
    }

306 307 308 309
    unlock_fs(fs, FR_OK);
    FREE_NAMBUF();
    *vpp = vp;
    return 0;
310

311 312 313 314 315 316 317
ERROR_UNLOCK:
    unlock_fs(fs, result);
    FREE_NAMBUF();
ERROR_FREE:
    free(dfp);
ERROR_EXIT:
    return -ret;
318 319
}

320
int fatfs_create(struct Vnode *parent, const char *name, int mode, struct Vnode **vpp)
321
{
322 323 324 325 326 327 328 329 330
    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;
331

332 333 334 335 336 337 338 339 340 341
    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;
    }
342

343 344 345 346 347 348 349 350 351 352 353 354 355 356
    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);
357
    if (result == FR_OK) {
358 359 360 361 362 363 364 365 366 367 368
        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();
369
    } else {
370
        time = 0;
371
    }
372 373 374 375 376 377 378 379 380
    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);
381

382 383 384 385
#ifdef LOSCFG_FS_FAT_VIRTUAL_PARTITION
    PARENTFS(fs)->wflag = 1;
#else
    fs->wflag = 1;
386
#endif
387 388 389 390
    result = sync_fs(fs);
    if (result != FR_OK) {
        ret = fatfs_2_vfs(result);
        goto ERROR_UNLOCK;
391
    }
392 393 394 395 396 397 398 399 400 401 402 403 404 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
    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;
}
436

437 438 439 440 441 442 443 444 445 446 447 448 449 450
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;
451
    }
452 453 454 455
    ret = lock_fs(fs);
    if (ret == FALSE) {
        ret = EBUSY;
        goto ERROR_EXIT;
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
    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;
487 488
}

489
int fatfs_close(struct file *filep)
490
{
491 492 493 494
    FIL *fp = (FIL *)filep->f_priv;
    FATFS *fs = fp->obj.fs;
    FRESULT result;
    int ret;
495

496 497 498
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
499
    }
500 501 502 503
#if !FF_FS_READONLY
    result = f_sync(fp); /* Flush cached data */
    if (result != FR_OK) {
        goto EXIT;
504
    }
505 506 507 508
    ret = fatfs_sync(filep->f_vnode->originMount->mountFlags, fs);
    if (ret != 0) {
        unlock_fs(fs, FR_OK);
        return ret;
509
    }
510 511 512 513 514 515 516 517
#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);
518 519
}

520
int fatfs_read(struct file *filep, char *buff, size_t count)
521
{
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
    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;
539
    }
540 541 542 543 544
    filep->f_pos = fp->fptr;
EXIT:
    unlock_fs(fs, result);
    return rcount;
}
545

546 547 548 549 550 551
static FRESULT update_dir(DIR *dp, FILINFO *finfo)
{
    FATFS *fs = dp->obj.fs;
    DWORD tm;
    BYTE *dbuff = NULL;
    FRESULT result;
552

553 554 555 556 557 558 559 560 561 562 563 564
    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;
565
    }
566 567 568 569 570 571 572 573 574
    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);
}
575

576 577 578 579 580 581 582 583 584 585
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;
586

587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
    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;
610 611
    }

612 613
    if (offset >= FAT32_MAXSIZE) {
        return -EINVAL;
614 615
    }

616 617 618
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
619
    }
620 621
    fp->obj.sclust = finfo->sclst;
    fp->obj.objsize = finfo->fsize;
622

623 624 625 626 627
    result = f_lseek(fp, fpos);
    finfo->fsize = fp->obj.objsize;
    finfo->sclst = fp->obj.sclust;
    if (result != FR_OK) {
        goto ERROR_EXIT;
628 629
    }

630 631 632
    result = f_sync(fp);
    if (result != FR_OK) {
        goto ERROR_EXIT;
633
    }
634
    filep->f_pos = fpos;
635

636 637 638 639 640 641
    unlock_fs(fs, FR_OK);
    return fpos;
ERROR_EXIT:
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
}
642

643 644 645
off_t fatfs_lseek(struct file *filep, off_t offset, int whence)
{
    return (off_t)fatfs_lseek64(filep, offset, whence);
646 647
}

648
static int update_filbuff(FILINFO *finfo, FIL *wfp, const char  *data)
649
{
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
    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;
667 668
}

669
int fatfs_write(struct file *filep, const char *buff, size_t count)
670
{
671 672 673 674 675
    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;
676
    FRESULT result;
677
    int ret;
678

679 680 681
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
682
    }
683 684 685 686 687
    fp->obj.objsize = finfo->fsize;
    fp->obj.sclust = finfo->sclst;
    result = f_write(fp, buff, count, &wcount);
    if (result != FR_OK) {
        goto ERROR_EXIT;
688 689
    }

690 691 692 693 694
    finfo->fsize = fp->obj.objsize;
    finfo->sclst = fp->obj.sclust;
    result = f_sync(fp);
    if (result != FR_OK) {
        goto ERROR_EXIT;
695
    }
696
    update_filbuff(finfo, fp, buff);
697

698
    filep->f_pos = fp->fptr;
699

700 701 702 703 704 705
    unlock_fs(fs, FR_OK);
    return wcount;
ERROR_EXIT:
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
}
706

707 708 709 710 711 712
int fatfs_fsync(struct file *filep)
{
    FIL *fp = filep->f_priv;
    FATFS *fs = fp->obj.fs;
    FRESULT result;
    int ret;
713

714 715 716
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
717 718
    }

719 720 721 722 723 724 725 726 727 728 729 730 731 732 733
    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) {
734 735 736
        return -EINVAL;
    }

737 738 739
    if (len >= FAT32_MAXSIZE || offset >= FAT32_MAXSIZE ||
        len + offset >= FAT32_MAXSIZE) {
        return -EINVAL;
740 741
    }

742 743
    if (mode != FALLOC_FL_KEEP_SIZE) {
        return -EINVAL;
744 745
    }

746 747 748
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
749
    }
750 751 752 753 754 755
    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);
756

757
    return -fatfs_2_vfs(result);
758 759
}

760
static FRESULT realloc_cluster(FILINFO *finfo, FFOBJID *obj, FSIZE_t size)
761
{
762 763 764 765 766
    FATFS *fs = obj->fs;
    off64_t remain;
    DWORD cclust;
    DWORD pclust;
    QWORD csize;
767 768
    FRESULT result;

769 770 771 772 773 774 775 776 777
    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;
778 779
    }

780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802
    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;
803
    }
804 805 806 807 808 809 810 811 812 813
    pclust = cclust;
    cclust = get_fat(obj, pclust);
    if ((cclust == BAD_CLUSTER) || (cclust == DISK_ERROR)) {
        return FR_DISK_ERR;
    }
    if (cclust != END_OF_FILE) { /* Remove extra cluster if existing */
        result = remove_chain(obj, cclust, pclust);
        if (result != FR_OK) {
            return result;
        }
814 815
    }

816
    return FR_OK;
817 818
}

819
int fatfs_fallocate(struct file *filep, int mode, off_t offset, off_t len)
820
{
821
    return fatfs_fallocate64(filep, mode, offset, len);
822 823
}

824
int fatfs_truncate64(struct Vnode *vp, off64_t len)
825
{
826 827 828 829 830 831 832 833 834
    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) {
835 836 837
        return -EINVAL;
    }

838 839 840 841
    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_OUT;
842
    }
843 844 845
    if (len == finfo->fsize) {
        unlock_fs(fs, FR_OK);
        return 0;
846 847
    }

848 849 850 851
    object.fs = fs;
    result = realloc_cluster(finfo, &object, (FSIZE_t)len);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
852
    }
853
    finfo->fsize = (FSIZE_t)len;
854

855 856 857 858 859 860 861 862 863 864
    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);
865 866
}

867
int fatfs_truncate(struct Vnode *vp, off_t len)
868
{
869
    return fatfs_truncate64(vp, len);
870 871
}

872
static int fat_bind_check(struct Vnode *blk_driver, los_part **partition)
873
{
874
    los_part *part = NULL;
875

876 877
    if (blk_driver == NULL || blk_driver->data == NULL) {
        return ENODEV;
878 879
    }

880 881 882
    struct drv_data *dd = blk_driver->data;
    if (dd->ops == NULL) {
        return ENODEV;
883
    }
884 885 886
    const struct block_operations *bops = dd->ops;
    if (bops->open == NULL) {
        return EINVAL;
887
    }
888 889
    if (bops->open(blk_driver) < 0) {
        return EBUSY;
890 891
    }

892 893 894
    part = los_part_find(blk_driver);
    if (part == NULL) {
        return ENODEV;
895
    }
896 897 898
    if (part->part_name != NULL) {
        bops->close(blk_driver);
        return EBUSY;
899 900
    }

901 902 903 904
#ifndef FF_MULTI_PARTITION
    if (part->part_no_mbr > 1) {
        bops->close(blk_driver);
        return EPERM;
905 906 907
    }
#endif

908 909
    *partition = part;
    return 0;
910 911
}

912
int fatfs_mount(struct Mount *mnt, struct Vnode *blk_device, const void *data)
913
{
914 915 916 917 918 919 920
    struct Vnode *vp = NULL;
    FATFS *fs = NULL;
    DIR_FILE *dfp = NULL;
    los_part *part = NULL;
    QWORD start_sector;
    BYTE fmt;
    DWORD hash;
921
    FRESULT result;
922
    int ret;
923

924 925 926
    ret = fat_bind_check(blk_device, &part);
    if (ret != 0) {
        goto ERROR_EXIT;
927 928
    }

929 930 931 932
    ret = SetDiskPartName(part, "vfat");
    if (ret != 0) {
        ret = EIO;
        goto ERROR_EXIT;
933 934
    }

935 936 937 938
    fs = (FATFS *)zalloc(sizeof(FATFS));
    if (fs == NULL) {
        ret = ENOMEM;
        goto ERROR_PARTNAME;
939 940
    }

941 942 943 944 945 946
#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
947

948 949 950 951
    ret = ff_cre_syncobj(0, &fs->sobj);
    if (ret == 0) { /* create sync object failed */
        ret = EINVAL;
        goto ERROR_WITH_FS;
952 953
    }

954 955 956 957
    ret = lock_fs(fs);
    if (ret == FALSE) {
        ret = EBUSY;
        goto ERROR_WITH_MUX;
958 959
    }

960 961
    fs->fs_type = 0;
    fs->pdrv = part->part_id;
962

963 964 965 966
#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;
967
    }
968 969 970
    if (fs->ssize > FF_MAX_SS || fs->ssize < FF_MIN_SS || (fs->ssize & (fs->ssize - 1))) {
        ret = EIO;
        goto ERROR_WITH_LOCK;
971
    }
972
#endif
973

974 975 976 977
    fs->win = (BYTE *)ff_memalloc(SS(fs));
    if (fs->win == NULL) {
        ret = ENOMEM;
        goto ERROR_WITH_LOCK;
978 979
    }

980
    result = find_fat_partition(fs, part, &fmt, &start_sector);
981
    if (result != FR_OK) {
982 983
        ret = fatfs_2_vfs(result);
        goto ERROR_WITH_FSWIN;
984 985
    }

986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 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
    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);
1042 1043 1044

    return 0;

1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
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;
1057
    }
1058 1059
ERROR_EXIT:
    return -ret;
1060 1061
}

1062
int fatfs_umount(struct Mount *mnt, struct Vnode **blkdriver)
1063
{
1064 1065 1066 1067
    struct Vnode *device;
    FATFS *fs = (FATFS *)mnt->data;
    los_part *part;
    int ret;
1068

1069 1070 1071
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
1072 1073
    }

1074 1075 1076 1077
    part = get_part(fs->pdrv);
    if (part == NULL) {
        unlock_fs(fs, FR_OK);
        return -ENODEV;
1078
    }
1079 1080 1081 1082
    device = part->dev;
    if (device == NULL) {
        unlock_fs(fs, FR_OK);
        return -ENODEV;
1083
    }
1084 1085 1086 1087 1088
#ifdef LOSCFG_FS_FAT_CACHE
    ret = OsSdSync(part->disk_id);
    if (ret != 0) {
        unlock_fs(fs, FR_DISK_ERR);
        return -EIO;
1089 1090
    }
#endif
1091 1092 1093
    if (part->part_name != NULL) {
        free(part->part_name);
        part->part_name = NULL;
1094 1095
    }

1096 1097 1098 1099
    struct drv_data *dd = device->data;
    if (dd->ops == NULL) {
        unlock_fs(fs, FR_OK);
        return ENODEV;
1100 1101
    }

1102 1103 1104
    const struct block_operations *bops = dd->ops;
    if (bops != NULL && bops->close != NULL) {
        bops->close(*blkdriver);
1105 1106
    }

1107 1108
    if (fs->win != NULL) {
        ff_memfree(fs->win);
1109 1110
    }

1111
    unlock_fs(fs, FR_OK);
1112

1113 1114 1115
    ret = ff_del_syncobj(&fs->sobj);
    if (ret == FALSE) {
        return -EINVAL;
1116
    }
1117
    free(fs);
1118

1119
    *blkdriver = device;
1120

1121
    return 0;
1122 1123
}

1124
int fatfs_statfs(struct Mount *mnt, struct statfs *info)
1125
{
1126
    FATFS *fs = (FATFS *)mnt->data;
1127

1128 1129 1130 1131 1132
    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;
1133
#endif
1134 1135 1136
    info->f_blocks = fs->n_fatent;
    info->f_bfree = fs->free_clst;
    info->f_bavail = fs->free_clst;
1137

1138 1139 1140
#if FF_USE_LFN
    /* Maximum length of filenames */
    info->f_namelen = FF_MAX_LFN;
1141
#else
1142 1143
    /* Maximum length of filenames: 8 is the basename length, 1 is the dot, 3 is the extension length */
    info->f_namelen = (8 + 1 + 3);
1144
#endif
1145 1146 1147 1148 1149 1150 1151 1152
    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;

    return 0;
1153 1154
}

1155
static inline int GET_SECONDS(WORD ftime)
1156
{
1157
    return (ftime & BITMASK5) * SEC_MULTIPLIER;
1158
}
1159
static inline int GET_MINUTES(WORD ftime)
1160
{
1161
    return (ftime >> FTIME_MIN_OFFSET) & BITMASK6;
1162
}
1163
static inline int GET_HOURS(WORD ftime)
1164
{
1165
    return (ftime >> FTIME_HR_OFFSET) & BITMASK5;
1166
}
1167
static inline int GET_DAY(WORD fdate)
1168
{
1169
    return fdate & BITMASK5;
1170
}
1171
static inline int GET_MONTH(WORD fdate)
1172
{
1173
    return (fdate >> FTIME_MTH_OFFSET) & BITMASK4;
1174
}
1175
static inline int GET_YEAR(WORD fdate)
1176
{
1177
    return (fdate >> FTIME_YEAR_OFFSET) & BITMASK7;
1178 1179
}

1180
static time_t fattime_transfer(WORD fdate, WORD ftime)
1181
{
1182 1183 1184 1185 1186 1187 1188 1189 1190
    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;
1191 1192
}

1193
DWORD fattime_format(time_t time)
1194
{
1195 1196
    struct tm st;
    DWORD ftime;
1197

1198
    localtime_r(&time, &st);
1199

1200 1201 1202 1203
    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;
1204

1205 1206 1207
    ftime = (DWORD)st.tm_sec / SEC_MULTIPLIER;
    ftime |= ((DWORD)st.tm_min) << FTIME_MIN_OFFSET;
    ftime |= ((DWORD)st.tm_hour) << FTIME_HR_OFFSET;
1208

1209
    return ftime;
1210 1211
}

1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238
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;
}
1239

1240 1241 1242 1243 1244 1245 1246 1247
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));
    }
1248

1249 1250 1251 1252
    if (attr->attr_chg_valid & CHG_CTIME) {
        ftime = fattime_format(attr->attr_chg_ctime);
        st_dword(dir + DIR_CrtTime, ftime);
    }
1253

1254 1255 1256
    if (attr->attr_chg_valid & CHG_MTIME) {
        ftime = fattime_format(attr->attr_chg_mtime);
        st_dword(dir + DIR_ModTime, ftime);
1257
    }
1258
}
1259

1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
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;
1270

1271 1272
    if (finfo->fname[0] == '/') { /* Is root dir of fatfs ? */
        return 0;
1273 1274
    }

1275 1276 1277 1278
    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_OUT;
1279 1280
    }

1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295
    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;
1296
        }
1297
        vp->mode = fatfs_get_mode(finfo->fattrib, fs->fs_mode);
1298 1299
    }

1300 1301 1302 1303 1304 1305
    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;
    }
1306

1307 1308 1309
    result = sync_window(fs);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
1310 1311
    }

1312 1313 1314 1315 1316 1317
    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);
1318 1319
}

1320
int fatfs_opendir(struct Vnode *vp, struct fs_dirent_s *idir)
1321
{
1322 1323 1324 1325 1326
    FATFS *fs = vp->originMount->data;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
    FILINFO *finfo = &(dfp->fno);
    DIR *dp;
    DWORD clst;
1327
    FRESULT result;
1328
    int ret;
1329

1330 1331 1332
    dp = (DIR*)zalloc(sizeof(DIR));
    if (dp == NULL) {
        return -ENOMEM;
1333 1334
    }

1335 1336 1337
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
1338
    }
1339 1340 1341
    clst = finfo->sclst;
    dp->obj.fs = fs;
    dp->obj.sclust = clst;
1342

1343 1344 1345 1346 1347
    result = dir_sdi(dp, 0);
    if (result != FR_OK) {
        free(dp);
        unlock_fs(fs, result);
        return -fatfs_2_vfs(result);
1348
    }
1349 1350
    unlock_fs(fs, result);
    idir->u.fs_dir = dp;
1351

1352 1353
    return 0;
}
1354

1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382
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;
        }
1383

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
        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);
}
1410

1411 1412 1413 1414 1415 1416 1417 1418 1419 1420
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;
1421 1422
    }

1423 1424 1425 1426
    result = dir_sdi(dp, 0);
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
}
1427

1428 1429 1430 1431 1432 1433 1434
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;
}
1435

1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459
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;
1460
    }
1461
    return FR_OK;
1462 1463
}

1464
int fatfs_rename(struct Vnode *old_vnode, struct Vnode *new_parent, const char *oldname, const char *newname)
1465
{
1466 1467 1468 1469 1470 1471 1472 1473
    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;
1474
    FRESULT result;
1475
    int ret;
1476

1477 1478 1479
    ret = lock_fs(fs);
    if (ret == FALSE) { /* Lock fs failed */
        return -EBUSY;
1480 1481
    }

1482 1483 1484 1485
    dfp_new = (DIR_FILE *)zalloc(sizeof(DIR_FILE));
    if (dfp_new == NULL) {
        result = FR_NOT_ENOUGH_CORE;
        goto ERROR_UNLOCK;
1486
    }
1487 1488
    dp_new = &(dfp_new->f_dir);
    finfo_new = &(dfp_new->fno);
1489

1490 1491
    dp_new->obj.sclust = ((DIR_FILE *)(new_parent->data))->fno.sclst;
    dp_new->obj.fs = fs;
1492

1493 1494 1495 1496 1497 1498
    /* Find new path */
    DEF_NAMBUF;
    INIT_NAMBUF(fs);
    result = create_name(dp_new, &newname);
    if (result != FR_OK) {
        goto ERROR_FREE;
1499
    }
1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526
    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;
        }
1527 1528
    }

1529 1530
    /* update new dir entry with old info */
    result = update_dir(dp_new, finfo_old);
1531
    if (result != FR_OK) {
1532
        goto ERROR_FREE;
1533
    }
1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558
    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);
1559 1560 1561
}


1562 1563 1564 1565 1566 1567 1568 1569 1570
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;
        }
1571 1572
    }

1573 1574
    if (opt != FM_FAT && opt != FM_FAT32) {
        opt = FM_ANY;
1575 1576
    }

1577 1578
    return opt;
}
1579

1580 1581 1582 1583 1584
static int fatfs_set_part_info(los_part *part)
{
    los_disk *disk = NULL;
    char *buf = NULL;
    int ret;
1585

1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605
    /* 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];
1606

1607 1608 1609
        free(buf);
    }
    return 0;
1610 1611
}

1612
int fatfs_mkfs (struct Vnode *device, int sectors, int option)
1613
{
1614 1615 1616 1617
    BYTE *work_buff = NULL;
    los_part *part = NULL;
    FRESULT result;
    int ret;
1618

1619 1620 1621 1622
    part = los_part_find(device);
    if (part == NULL || device->data == NULL) {
        return -ENODEV;
    }
1623

1624
    if (sectors < 0 || sectors > FAT32_MAX_CLUSTER_SIZE || ((DWORD)sectors & ((DWORD)sectors - 1))) {
1625 1626 1627
        return -EINVAL;
    }

1628
    if (option != FMT_FAT && option != FMT_FAT32 && option != FMT_ANY && option != FMT_ERASE) {
1629 1630 1631
        return -EINVAL;
    }

1632 1633 1634 1635 1636 1637 1638
    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;
1639 1640
    }

1641 1642 1643 1644
    result = _mkfs(part, sectors, option, work_buff, FF_MAX_SS);
    free(work_buff);
    if (result != FR_OK) {
        return -fatfs_2_vfs(result);
1645 1646
    }

1647 1648 1649 1650 1651
#ifdef LOSCFG_FS_FAT_CACHE
    ret = OsSdSync(part->disk_id);
    if (ret != 0) {
        return -EIO;
    }
1652 1653
#endif

1654 1655 1656
    ret = fatfs_set_part_info(part);
    if (ret != 0) {
        return -EIO;
1657 1658
    }

1659
    return 0;
1660 1661
}

1662
int fatfs_mkdir(struct Vnode *parent, const char *name, mode_t mode, struct Vnode **vpp)
1663
{
1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699
    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;
1700
    }
1701 1702 1703 1704
    result = dir_find(&(dfp_new->f_dir));
    if (result == FR_OK) {
        result = FR_EXIST;
        goto ERROR_FREE;
1705
    }
1706 1707 1708 1709 1710
    /* 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;
1711
    }
1712 1713 1714
    if (clust == 1 || clust == DISK_ERROR) {
        result = FR_DISK_ERR;
        goto ERROR_FREE;
1715
    }
1716 1717 1718 1719 1720 1721 1722 1723 1724 1725
    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
1726

1727 1728 1729 1730 1731 1732
    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;
1733
#else
1734 1735 1736 1737
        PARENTFS(fs)->winsect = sect++;
        PARENTFS(fs)->wflag = 1;
        result = sync_window(fs);
        if (result != FR_OK) break;
1738 1739 1740
#endif
    }

1741 1742
    if (result != FR_OK) {
        goto ERROR_REMOVE_CHAIN;
1743
    }
1744 1745 1746
    result = dir_register(&(dfp_new->f_dir));
    if (result != FR_OK) {
        goto ERROR_REMOVE_CHAIN;
1747
    }
1748 1749 1750 1751 1752 1753 1754 1755 1756
    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;
1757
#else
1758
    PARENTFS(fs)->wflag = 1;
1759
#endif
1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807
    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);
1808 1809
}

1810
int fatfs_rmdir(struct Vnode *parent, struct Vnode *vp, char *name)
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
    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;
1838
    }
1839 1840 1841 1842
    result = dir_read(&dir_sub, 0);
    if (result == FR_OK) {
        result = FR_NO_EMPTY_DIR;
        goto ERROR_UNLOCK;
1843
    }
1844 1845 1846
    result = dir_remove(dp); /* remove directory entry */
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
1847
    }
1848 1849 1850 1851
    /* Directory entry contains at least one cluster */
    result = remove_chain(&(dp->obj), finfo->sclst, 0);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
1852 1853
    }

1854 1855 1856
    unlock_fs(fs, FR_OK);
    FREE_NAMBUF();
    return fatfs_sync(vp->originMount->mountFlags, fs);
1857

1858 1859 1860 1861 1862 1863
ERROR_UNLOCK:
    unlock_fs(fs, result);
    FREE_NAMBUF();
ERROR_OUT:
    return -fatfs_2_vfs(result);
}
1864

1865 1866 1867 1868 1869 1870
int fatfs_reclaim(struct Vnode *vp)
{
    free(vp->data);
    vp->data = NULL;
    return 0;
}
1871

1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892
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;
1893
    }
1894 1895 1896 1897 1898
    if (finfo->sclst != 0) { /* if cluster chain exists */
        result = remove_chain(&(dp->obj), finfo->sclst, 0);
        if (result != FR_OK) {
            goto ERROR_UNLOCK;
        }
1899
    }
1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914
    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)
{
1915 1916 1917 1918
    return -ENOSYS;
}

#define CHECK_FILE_NUM 3
1919
static inline DWORD combine_time(FILINFO *finfo)
1920
{
1921 1922
    return (finfo->fdate << FTIME_DATE_OFFSET) | finfo->ftime;
}
1923

1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935
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;
        }
1936
    }
1937 1938
    *oldest_time = old_time;
    return index;
1939 1940
}

1941
int fatfs_fscheck(struct Vnode* vp, struct fs_dirent_s *dir)
1942
{
1943 1944 1945 1946
    FATFS *fs = (FATFS *)vp->originMount->data;
    DIR_FILE df[CHECK_FILE_NUM] = {0};
    DIR *dp = NULL;
    FILINFO *finfo = &(((DIR_FILE *)(vp->data))->fno);
1947
    FILINFO fno;
1948 1949 1950 1951
    DWORD old_time = -1;
    DWORD time;
    UINT count;
    UINT index = 0;
1952
    los_part *part = NULL;
1953 1954
    FRESULT result;
    int ret;
1955

1956 1957
    if (fs->fs_type != FS_FAT32) {
        return -EINVAL;
1958 1959
    }

1960 1961 1962
    if ((finfo->fattrib & AM_DIR) == 0) {
        return -ENOTDIR;
    }
1963

1964 1965
    ret = fatfs_opendir(vp, dir);
    if (ret < 0) {
1966 1967 1968
        return ret;
    }

1969 1970 1971 1972
    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_WITH_DIR;
1973 1974
    }

1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990
    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;
            }
1991
        }
1992 1993 1994
    }
    while ((result = f_readdir(dp, &fno)) == FR_OK) {
        if (fno.fname[0] == 0 || fno.fname[0] == (TCHAR)0xFF) {
1995 1996
            break;
        }
1997 1998 1999 2000 2001
        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);
2002
        }
2003 2004 2005 2006
    }
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
    }
2007

2008 2009 2010 2011
    for (index = 0; index < count; index++) {
        result = f_fcheckfat(&df[index]);
        if (result != FR_OK) {
            goto ERROR_UNLOCK;
2012 2013 2014
        }
    }

2015 2016 2017 2018
    unlock_fs(fs, FR_OK);

    ret = fatfs_closedir(vp, dir);
    if (ret < 0) {
2019 2020 2021 2022
        return ret;
    }

#ifdef LOSCFG_FS_FAT_CACHE
2023
    part = get_part((INT)fs->pdrv);
2024 2025 2026 2027 2028 2029
    if (part != NULL) {
        (void)OsSdSync(part->disk_id);
    }
#endif

    return 0;
2030 2031 2032 2033 2034 2035

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

2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056
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,
2057 2058
};

2059 2060 2061 2062 2063
struct MountOps fatfs_mops = {
    .Mount = fatfs_mount,
    .Unmount = fatfs_umount,
    .Statfs = fatfs_statfs,
};
2064

2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078
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);
2079 2080

#endif /* LOSCFG_FS_FAT */