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

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


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

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

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

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

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

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

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

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

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

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

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

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

    return status;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    return FR_OK;
}

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

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

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

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

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

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

    DEF_NAMBUF;
    INIT_NAMBUF(fs);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

W
wangchenyang 已提交
599 600 601 602 603 604 605 606 607 608
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;

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

W
wangchenyang 已提交
620 621 622 623 624 625 626 627 628 629 630 631 632
    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;
F
Far 已提交
633
    fp->buf = (BYTE *)fp + sizeof(FIL);
W
wangchenyang 已提交
634 635 636 637
    LOS_ListAdd(&finfo->fp_list, &fp->fp_entry);
    unlock_fs(fs, FR_OK);

    filep->f_priv = fp;
F
Far 已提交
638
    return 0;
W
wangchenyang 已提交
639

J
jianjian 已提交
640
ERROR_FREE:
W
wangchenyang 已提交
641 642 643
    free(fp);
ERROR_EXIT:
    return -ret;
W
wenjun 已提交
644 645
}

W
wangchenyang 已提交
646
int fatfs_close(struct file *filep)
W
wenjun 已提交
647
{
W
wangchenyang 已提交
648 649 650 651
    FIL *fp = (FIL *)filep->f_priv;
    FATFS *fs = fp->obj.fs;
    FRESULT result;
    int ret;
W
wenjun 已提交
652

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

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

    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
    }
    fp->obj.objsize = finfo->fsize;
    fp->obj.sclust = finfo->sclst;
    result = f_read(fp, buff, count, &rcount);
    if (result != FR_OK) {
        goto EXIT;
W
wenjun 已提交
695
    }
W
wangchenyang 已提交
696 697 698 699 700
    filep->f_pos = fp->fptr;
EXIT:
    unlock_fs(fs, result);
    return rcount;
}
W
wenjun 已提交
701

W
wangchenyang 已提交
702 703 704 705 706 707
static FRESULT update_dir(DIR *dp, FILINFO *finfo)
{
    FATFS *fs = dp->obj.fs;
    DWORD tm;
    BYTE *dbuff = NULL;
    FRESULT result;
W
wenjun 已提交
708

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

W
wangchenyang 已提交
732 733 734 735 736 737 738
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);
739
    struct Mount *mount = vp->originMount;
W
wangchenyang 已提交
740 741 742
    FSIZE_t fpos;
    FRESULT result;
    int ret;
W
wenjun 已提交
743

W
wangchenyang 已提交
744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766
    switch (whence) {
        case SEEK_CUR:
            offset = filep->f_pos + offset;
            if (offset < 0) {
                return -EINVAL;
            }
            fpos = offset;
            break;
        case SEEK_SET:
            if (offset < 0) {
                return -EINVAL;
            }
            fpos = offset;
            break;
        case SEEK_END:
            offset = (off_t)((long long)finfo->fsize + offset);
            if (offset < 0) {
                return -EINVAL;
            }
            fpos = offset;
            break;
        default:
            return -EINVAL;
W
wenjun 已提交
767 768
    }

W
wangchenyang 已提交
769 770
    if (offset >= FAT32_MAXSIZE) {
        return -EINVAL;
W
wenjun 已提交
771 772
    }

W
wangchenyang 已提交
773 774 775
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
776
    }
777 778 779 780 781 782 783 784 785 786 787

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

W
wangchenyang 已提交
791 792 793 794 795
    result = f_lseek(fp, fpos);
    finfo->fsize = fp->obj.objsize;
    finfo->sclst = fp->obj.sclust;
    if (result != FR_OK) {
        goto ERROR_EXIT;
W
wenjun 已提交
796 797
    }

W
wangchenyang 已提交
798 799 800
    result = f_sync(fp);
    if (result != FR_OK) {
        goto ERROR_EXIT;
W
wenjun 已提交
801
    }
W
wangchenyang 已提交
802
    filep->f_pos = fpos;
W
wenjun 已提交
803

W
wangchenyang 已提交
804 805 806 807 808 809
    unlock_fs(fs, FR_OK);
    return fpos;
ERROR_EXIT:
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
}
W
wenjun 已提交
810

W
wangchenyang 已提交
811 812 813
off_t fatfs_lseek(struct file *filep, off_t offset, int whence)
{
    return (off_t)fatfs_lseek64(filep, offset, whence);
W
wenjun 已提交
814 815
}

W
wangchenyang 已提交
816
static int update_filbuff(FILINFO *finfo, FIL *wfp, const char  *data)
W
wenjun 已提交
817
{
W
wangchenyang 已提交
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834
    LOS_DL_LIST *list = &finfo->fp_list;
    FATFS *fs = wfp->obj.fs;
    FIL *entry = NULL;
    int ret = 0;

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

    return ret;
W
wenjun 已提交
835 836
}

W
wangchenyang 已提交
837
int fatfs_write(struct file *filep, const char *buff, size_t count)
W
wenjun 已提交
838
{
W
wangchenyang 已提交
839 840 841 842 843
    FIL *fp = (FIL *)filep->f_priv;
    FATFS *fs = fp->obj.fs;
    struct Vnode *vp = filep->f_vnode;
    FILINFO *finfo = &(((DIR_FILE *)vp->data)->fno);
    size_t wcount;
W
wenjun 已提交
844
    FRESULT result;
W
wangchenyang 已提交
845
    int ret;
W
wenjun 已提交
846

W
wangchenyang 已提交
847 848 849
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
850
    }
W
wangchenyang 已提交
851 852 853 854 855
    fp->obj.objsize = finfo->fsize;
    fp->obj.sclust = finfo->sclst;
    result = f_write(fp, buff, count, &wcount);
    if (result != FR_OK) {
        goto ERROR_EXIT;
W
wenjun 已提交
856 857
    }

W
wangchenyang 已提交
858 859 860 861 862
    finfo->fsize = fp->obj.objsize;
    finfo->sclst = fp->obj.sclust;
    result = f_sync(fp);
    if (result != FR_OK) {
        goto ERROR_EXIT;
W
wenjun 已提交
863
    }
W
wangchenyang 已提交
864
    update_filbuff(finfo, fp, buff);
W
wenjun 已提交
865

W
wangchenyang 已提交
866
    filep->f_pos = fp->fptr;
W
wenjun 已提交
867

W
wangchenyang 已提交
868 869 870 871 872 873
    unlock_fs(fs, FR_OK);
    return wcount;
ERROR_EXIT:
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
}
W
wenjun 已提交
874

W
wangchenyang 已提交
875 876 877 878 879 880
int fatfs_fsync(struct file *filep)
{
    FIL *fp = filep->f_priv;
    FATFS *fs = fp->obj.fs;
    FRESULT result;
    int ret;
W
wenjun 已提交
881

W
wangchenyang 已提交
882 883 884
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
885 886
    }

W
wangchenyang 已提交
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901
    result = f_sync(fp);
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
}

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

    if (offset < 0 || len <= 0) {
W
wenjun 已提交
902 903 904
        return -EINVAL;
    }

W
wangchenyang 已提交
905 906 907
    if (len >= FAT32_MAXSIZE || offset >= FAT32_MAXSIZE ||
        len + offset >= FAT32_MAXSIZE) {
        return -EINVAL;
W
wenjun 已提交
908 909
    }

W
wangchenyang 已提交
910 911
    if (mode != FALLOC_FL_KEEP_SIZE) {
        return -EINVAL;
W
wenjun 已提交
912 913
    }

W
wangchenyang 已提交
914 915 916
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
917
    }
W
wangchenyang 已提交
918
    result = f_expand(fp, (FSIZE_t)offset, (FSIZE_t)len, 1);
919 920 921 922 923
    if (result == FR_OK) {
        if (finfo->sclst == 0) {
            finfo->sclst = fp->obj.sclust;
        }
        result = f_sync(fp);
W
wangchenyang 已提交
924
    }
925
    unlock_fs(fs, result);
W
wenjun 已提交
926

W
wangchenyang 已提交
927
    return -fatfs_2_vfs(result);
W
wenjun 已提交
928 929
}

W
wangchenyang 已提交
930
static FRESULT realloc_cluster(FILINFO *finfo, FFOBJID *obj, FSIZE_t size)
W
wenjun 已提交
931
{
W
wangchenyang 已提交
932 933 934 935 936
    FATFS *fs = obj->fs;
    off64_t remain;
    DWORD cclust;
    DWORD pclust;
    QWORD csize;
W
wenjun 已提交
937 938
    FRESULT result;

W
wangchenyang 已提交
939 940 941 942 943 944 945 946 947
    if (size == 0) { /* Remove cluster chain */
        if (finfo->sclst != 0) {
            result = remove_chain(obj, finfo->sclst, 0);
            if (result != FR_OK) {
                return result;
            }
            finfo->sclst = 0;
        }
        return FR_OK;
W
wenjun 已提交
948 949
    }

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

W
wangchenyang 已提交
986
    return FR_OK;
W
wenjun 已提交
987 988
}

W
wangchenyang 已提交
989
int fatfs_fallocate(struct file *filep, int mode, off_t offset, off_t len)
W
wenjun 已提交
990
{
W
wangchenyang 已提交
991
    return fatfs_fallocate64(filep, mode, offset, len);
W
wenjun 已提交
992 993
}

W
wangchenyang 已提交
994
int fatfs_truncate64(struct Vnode *vp, off64_t len)
W
wenjun 已提交
995
{
W
wangchenyang 已提交
996 997 998 999 1000 1001 1002 1003 1004 1005 1006
    FATFS *fs = (FATFS *)vp->originMount->data;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
    DIR *dp = &(dfp->f_dir);
    FILINFO *finfo = &(dfp->fno);
    FFOBJID object;
    FRESULT result = FR_OK;
    int ret;

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

W
wangchenyang 已提交
1008 1009 1010 1011
    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_OUT;
W
wenjun 已提交
1012
    }
W
wangchenyang 已提交
1013 1014 1015
    if (len == finfo->fsize) {
        unlock_fs(fs, FR_OK);
        return 0;
W
wenjun 已提交
1016 1017
    }

W
wangchenyang 已提交
1018 1019 1020 1021
    object.fs = fs;
    result = realloc_cluster(finfo, &object, (FSIZE_t)len);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
W
wenjun 已提交
1022
    }
W
wangchenyang 已提交
1023
    finfo->fsize = (FSIZE_t)len;
W
wenjun 已提交
1024

W
wangchenyang 已提交
1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
    result = update_dir(dp, finfo);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
    }
    unlock_fs(fs, FR_OK);
    return fatfs_sync(vp->originMount->mountFlags, fs);
ERROR_UNLOCK:
    unlock_fs(fs, result);
ERROR_OUT:
    return -fatfs_2_vfs(result);
W
wenjun 已提交
1035 1036
}

W
wangchenyang 已提交
1037
int fatfs_truncate(struct Vnode *vp, off_t len)
W
wenjun 已提交
1038
{
W
wangchenyang 已提交
1039
    return fatfs_truncate64(vp, len);
W
wenjun 已提交
1040 1041
}

W
wangchenyang 已提交
1042
static int fat_bind_check(struct Vnode *blk_driver, los_part **partition)
W
wenjun 已提交
1043
{
W
wangchenyang 已提交
1044
    los_part *part = NULL;
W
wenjun 已提交
1045

W
wangchenyang 已提交
1046 1047
    if (blk_driver == NULL || blk_driver->data == NULL) {
        return ENODEV;
W
wenjun 已提交
1048 1049
    }

W
wangchenyang 已提交
1050 1051 1052
    struct drv_data *dd = blk_driver->data;
    if (dd->ops == NULL) {
        return ENODEV;
W
wenjun 已提交
1053
    }
W
wangchenyang 已提交
1054 1055 1056
    const struct block_operations *bops = dd->ops;
    if (bops->open == NULL) {
        return EINVAL;
W
wenjun 已提交
1057
    }
W
wangchenyang 已提交
1058 1059
    if (bops->open(blk_driver) < 0) {
        return EBUSY;
W
wenjun 已提交
1060 1061
    }

W
wangchenyang 已提交
1062
    part = los_part_find(blk_driver);
Y
YOUR_NAME 已提交
1063 1064 1065
    if (part == NULL) {
        return ENODEV;
    }
W
wangchenyang 已提交
1066 1067 1068
    if (part->part_name != NULL) {
        bops->close(blk_driver);
        return EBUSY;
W
wenjun 已提交
1069 1070
    }

W
wangchenyang 已提交
1071 1072 1073 1074
#ifndef FF_MULTI_PARTITION
    if (part->part_no_mbr > 1) {
        bops->close(blk_driver);
        return EPERM;
W
wenjun 已提交
1075 1076 1077
    }
#endif

W
wangchenyang 已提交
1078 1079
    *partition = part;
    return 0;
W
wenjun 已提交
1080 1081
}

W
wangchenyang 已提交
1082
int fatfs_mount(struct Mount *mnt, struct Vnode *blk_device, const void *data)
W
wenjun 已提交
1083
{
W
wangchenyang 已提交
1084 1085 1086 1087 1088 1089 1090
    struct Vnode *vp = NULL;
    FATFS *fs = NULL;
    DIR_FILE *dfp = NULL;
    los_part *part = NULL;
    QWORD start_sector;
    BYTE fmt;
    DWORD hash;
W
wenjun 已提交
1091
    FRESULT result;
W
wangchenyang 已提交
1092
    int ret;
W
wenjun 已提交
1093

W
wangchenyang 已提交
1094 1095 1096
    ret = fat_bind_check(blk_device, &part);
    if (ret != 0) {
        goto ERROR_EXIT;
W
wenjun 已提交
1097 1098
    }

W
wangchenyang 已提交
1099 1100 1101 1102
    ret = SetDiskPartName(part, "vfat");
    if (ret != 0) {
        ret = EIO;
        goto ERROR_EXIT;
W
wenjun 已提交
1103 1104
    }

W
wangchenyang 已提交
1105 1106 1107 1108
    fs = (FATFS *)zalloc(sizeof(FATFS));
    if (fs == NULL) {
        ret = ENOMEM;
        goto ERROR_PARTNAME;
W
wenjun 已提交
1109 1110
    }

W
wangchenyang 已提交
1111 1112 1113 1114 1115 1116
#ifdef LOSCFG_FS_FAT_VIRTUAL_PARTITION
    fs->vir_flag = FS_PARENT;
    fs->parent_fs = fs;
    fs->vir_amount = DISK_ERROR;
    fs->vir_avail = FS_VIRDISABLE;
#endif
W
wenjun 已提交
1117

W
wangchenyang 已提交
1118 1119 1120 1121
    ret = ff_cre_syncobj(0, &fs->sobj);
    if (ret == 0) { /* create sync object failed */
        ret = EINVAL;
        goto ERROR_WITH_FS;
W
wenjun 已提交
1122 1123
    }

W
wangchenyang 已提交
1124 1125 1126 1127
    ret = lock_fs(fs);
    if (ret == FALSE) {
        ret = EBUSY;
        goto ERROR_WITH_MUX;
W
wenjun 已提交
1128 1129
    }

W
wangchenyang 已提交
1130 1131
    fs->fs_type = 0;
    fs->pdrv = part->part_id;
W
wenjun 已提交
1132

W
wangchenyang 已提交
1133 1134 1135 1136
#if FF_MAX_SS != FF_MIN_SS  /* Get sector size (multiple sector size cfg only) */
    if (disk_ioctl(fs->pdrv, GET_SECTOR_SIZE, &(fs->ssize)) != RES_OK) {
        ret = EIO;
        goto ERROR_WITH_LOCK;
W
wenjun 已提交
1137
    }
W
wangchenyang 已提交
1138 1139 1140
    if (fs->ssize > FF_MAX_SS || fs->ssize < FF_MIN_SS || (fs->ssize & (fs->ssize - 1))) {
        ret = EIO;
        goto ERROR_WITH_LOCK;
W
wenjun 已提交
1141
    }
W
wangchenyang 已提交
1142
#endif
W
wenjun 已提交
1143

W
wangchenyang 已提交
1144 1145 1146 1147
    fs->win = (BYTE *)ff_memalloc(SS(fs));
    if (fs->win == NULL) {
        ret = ENOMEM;
        goto ERROR_WITH_LOCK;
W
wenjun 已提交
1148 1149
    }

W
wangchenyang 已提交
1150
    result = find_fat_partition(fs, part, &fmt, &start_sector);
W
wenjun 已提交
1151
    if (result != FR_OK) {
W
wangchenyang 已提交
1152 1153
        ret = fatfs_2_vfs(result);
        goto ERROR_WITH_FSWIN;
W
wenjun 已提交
1154 1155
    }

W
wangchenyang 已提交
1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182
    result = init_fatobj(fs, fmt, start_sector);
    if (result != FR_OK) {
        ret = fatfs_2_vfs(result);
        goto ERROR_WITH_FSWIN;
    }

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

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

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

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

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

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

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

    return 0;
W
wangchenyang 已提交
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230

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

W
wangchenyang 已提交
1233
int fatfs_umount(struct Mount *mnt, struct Vnode **blkdriver)
W
wenjun 已提交
1234
{
W
wangchenyang 已提交
1235 1236 1237 1238
    struct Vnode *device;
    FATFS *fs = (FATFS *)mnt->data;
    los_part *part;
    int ret;
W
wenjun 已提交
1239

W
wangchenyang 已提交
1240 1241 1242
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
1243 1244
    }

W
wangchenyang 已提交
1245 1246 1247 1248
    part = get_part(fs->pdrv);
    if (part == NULL) {
        unlock_fs(fs, FR_OK);
        return -ENODEV;
W
wenjun 已提交
1249
    }
W
wangchenyang 已提交
1250 1251 1252 1253
    device = part->dev;
    if (device == NULL) {
        unlock_fs(fs, FR_OK);
        return -ENODEV;
W
wenjun 已提交
1254
    }
W
wangchenyang 已提交
1255 1256 1257 1258 1259
#ifdef LOSCFG_FS_FAT_CACHE
    ret = OsSdSync(part->disk_id);
    if (ret != 0) {
        unlock_fs(fs, FR_DISK_ERR);
        return -EIO;
W
wenjun 已提交
1260
    }
W
wangchenyang 已提交
1261 1262 1263 1264
#endif
    if (part->part_name != NULL) {
        free(part->part_name);
        part->part_name = NULL;
W
wenjun 已提交
1265 1266
    }

W
wangchenyang 已提交
1267 1268 1269 1270
    struct drv_data *dd = device->data;
    if (dd->ops == NULL) {
        unlock_fs(fs, FR_OK);
        return ENODEV;
W
wenjun 已提交
1271 1272
    }

W
wangchenyang 已提交
1273 1274 1275
    const struct block_operations *bops = dd->ops;
    if (bops != NULL && bops->close != NULL) {
        bops->close(*blkdriver);
W
wenjun 已提交
1276 1277
    }

W
wangchenyang 已提交
1278 1279
    if (fs->win != NULL) {
        ff_memfree(fs->win);
W
wenjun 已提交
1280 1281
    }

W
wangchenyang 已提交
1282
    unlock_fs(fs, FR_OK);
W
wenjun 已提交
1283

W
wangchenyang 已提交
1284 1285
    ret = ff_del_syncobj(&fs->sobj);
    if (ret == FALSE) {
W
wenjun 已提交
1286 1287
        return -EINVAL;
    }
W
wangchenyang 已提交
1288
    free(fs);
W
wenjun 已提交
1289

W
wangchenyang 已提交
1290
    *blkdriver = device;
W
wenjun 已提交
1291

W
wangchenyang 已提交
1292
    return 0;
W
wenjun 已提交
1293 1294
}

G
Guangyao Ma 已提交
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317
int fatfs_sync_adapt(struct Mount *mnt)
{
    (void)mnt;
    int ret = 0;
#ifdef LOSCFG_FS_FAT_CACHE
    struct Vnode *dev = NULL;
    los_part *part = NULL;

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

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

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

W
wangchenyang 已提交
1318
int fatfs_statfs(struct Mount *mnt, struct statfs *info)
W
wenjun 已提交
1319
{
W
wangchenyang 已提交
1320
    FATFS *fs = (FATFS *)mnt->data;
1321 1322 1323
    DWORD nclst = 0;
    FRESULT result = FR_OK;
    int ret;
W
wenjun 已提交
1324

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

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

1358
    return -fatfs_2_vfs(result);
W
wenjun 已提交
1359 1360
}

W
wangchenyang 已提交
1361
static inline int GET_SECONDS(WORD ftime)
W
wenjun 已提交
1362
{
W
wangchenyang 已提交
1363
    return (ftime & BITMASK5) * SEC_MULTIPLIER;
W
wenjun 已提交
1364
}
W
wangchenyang 已提交
1365
static inline int GET_MINUTES(WORD ftime)
W
wenjun 已提交
1366
{
W
wangchenyang 已提交
1367
    return (ftime >> FTIME_MIN_OFFSET) & BITMASK6;
W
wenjun 已提交
1368
}
W
wangchenyang 已提交
1369
static inline int GET_HOURS(WORD ftime)
W
wenjun 已提交
1370
{
W
wangchenyang 已提交
1371
    return (ftime >> FTIME_HR_OFFSET) & BITMASK5;
W
wenjun 已提交
1372
}
W
wangchenyang 已提交
1373
static inline int GET_DAY(WORD fdate)
W
wenjun 已提交
1374
{
W
wangchenyang 已提交
1375
    return fdate & BITMASK5;
W
wenjun 已提交
1376
}
W
wangchenyang 已提交
1377
static inline int GET_MONTH(WORD fdate)
W
wenjun 已提交
1378
{
W
wangchenyang 已提交
1379
    return (fdate >> FTIME_MTH_OFFSET) & BITMASK4;
W
wenjun 已提交
1380
}
W
wangchenyang 已提交
1381
static inline int GET_YEAR(WORD fdate)
W
wenjun 已提交
1382
{
W
wangchenyang 已提交
1383
    return (fdate >> FTIME_YEAR_OFFSET) & BITMASK7;
W
wenjun 已提交
1384 1385
}

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

W
wangchenyang 已提交
1399
DWORD fattime_format(time_t time)
W
wenjun 已提交
1400
{
W
wangchenyang 已提交
1401 1402
    struct tm st;
    DWORD ftime;
W
wenjun 已提交
1403

W
wangchenyang 已提交
1404
    localtime_r(&time, &st);
W
wenjun 已提交
1405

W
wangchenyang 已提交
1406 1407 1408 1409
    ftime = (DWORD)st.tm_mday;
    ftime |= ((DWORD)st.tm_mon) << FTIME_MTH_OFFSET;
    ftime |= ((DWORD)((st.tm_year > YEAR_OFFSET) ? (st.tm_year - YEAR_OFFSET) : 0)) << FTIME_YEAR_OFFSET;
    ftime <<= FTIME_DATE_OFFSET;
W
wenjun 已提交
1410

W
wangchenyang 已提交
1411 1412 1413
    ftime = (DWORD)st.tm_sec / SEC_MULTIPLIER;
    ftime |= ((DWORD)st.tm_min) << FTIME_MIN_OFFSET;
    ftime |= ((DWORD)st.tm_hour) << FTIME_HR_OFFSET;
W
wenjun 已提交
1414

W
wangchenyang 已提交
1415
    return ftime;
W
wenjun 已提交
1416 1417
}

W
wangchenyang 已提交
1418
int fatfs_stat(struct Vnode *vp, struct stat* sp)
W
wenjun 已提交
1419
{
W
wangchenyang 已提交
1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437
    FATFS *fs = (FATFS *)vp->originMount->data;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
    FILINFO *finfo = &(dfp->fno);
    time_t time;
    int ret;

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

    sp->st_dev = fs->pdrv;
    sp->st_mode = vp->mode;
    sp->st_nlink = 1;
    sp->st_uid = fs->fs_uid;
    sp->st_gid = fs->fs_gid;
    sp->st_size = finfo->fsize;
    sp->st_blksize = fs->csize * SS(fs);
Yansira's avatar
Yansira 已提交
1438 1439 1440 1441 1442
    if (finfo->fattrib & AM_ARC) {
        sp->st_blocks = finfo->fsize ? ((finfo->fsize - 1) / SS(fs) / fs->csize + 1) : 0;
    } else {
        sp->st_blocks = fs->csize;
    }
W
wangchenyang 已提交
1443 1444 1445
    time = fattime_transfer(finfo->fdate, finfo->ftime);
    sp->st_mtime = time;

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

W
wangchenyang 已提交
1449 1450 1451
    unlock_fs(fs, FR_OK);
    return 0;
}
W
wenjun 已提交
1452

W
wangchenyang 已提交
1453 1454 1455 1456 1457 1458 1459 1460
void fatfs_chtime(DIR *dp, struct IATTR *attr)
{
    BYTE *dir = dp->dir;
    DWORD ftime;
    if (attr->attr_chg_valid & CHG_ATIME) {
        ftime = fattime_format(attr->attr_chg_atime);
        st_word(dir + DIR_LstAccDate, (ftime >> FTIME_DATE_OFFSET));
    }
W
wenjun 已提交
1461

W
wangchenyang 已提交
1462 1463 1464 1465
    if (attr->attr_chg_valid & CHG_CTIME) {
        ftime = fattime_format(attr->attr_chg_ctime);
        st_dword(dir + DIR_CrtTime, ftime);
    }
W
wenjun 已提交
1466

W
wangchenyang 已提交
1467 1468 1469
    if (attr->attr_chg_valid & CHG_MTIME) {
        ftime = fattime_format(attr->attr_chg_mtime);
        st_dword(dir + DIR_ModTime, ftime);
W
wenjun 已提交
1470
    }
W
wangchenyang 已提交
1471
}
W
wenjun 已提交
1472

W
wangchenyang 已提交
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
int fatfs_chattr(struct Vnode *vp, struct IATTR *attr)
{
    FATFS *fs = (FATFS *)vp->originMount->data;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
    DIR *dp = &(dfp->f_dir);
    FILINFO *finfo = &(dfp->fno);
    BYTE *dir = dp->dir;
    DWORD ftime;
    FRESULT result;
    int ret;
W
wenjun 已提交
1483

W
wangchenyang 已提交
1484 1485
    if (finfo->fname[0] == '/') { /* Is root dir of fatfs ? */
        return 0;
W
wenjun 已提交
1486 1487
    }

W
wangchenyang 已提交
1488 1489 1490 1491
    ret = lock_fs(fs);
    if (ret == FALSE) {
        result = FR_TIMEOUT;
        goto ERROR_OUT;
W
wenjun 已提交
1492 1493
    }

W
wangchenyang 已提交
1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508
    result = move_window(fs, dp->sect);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
    }

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

W
wangchenyang 已提交
1513 1514 1515 1516 1517 1518
    if (attr->attr_chg_valid & (CHG_ATIME | CHG_CTIME | CHG_MTIME)) {
        fatfs_chtime(dp, attr);
        ftime = ld_dword(dp->dir + DIR_ModTime);
        finfo->fdate = (WORD)(ftime >> FTIME_DATE_OFFSET);
        finfo->ftime = (WORD)ftime;
    }
W
wenjun 已提交
1519

W
wangchenyang 已提交
1520 1521 1522
    result = sync_window(fs);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
W
wenjun 已提交
1523 1524
    }

W
wangchenyang 已提交
1525 1526 1527 1528 1529 1530
    unlock_fs(fs, FR_OK);
    return fatfs_sync(vp->originMount->mountFlags, fs);
ERROR_UNLOCK:
    unlock_fs(fs, result);
ERROR_OUT:
    return -fatfs_2_vfs(result);
W
wenjun 已提交
1531 1532
}

W
wangchenyang 已提交
1533
int fatfs_opendir(struct Vnode *vp, struct fs_dirent_s *idir)
W
wenjun 已提交
1534
{
W
wangchenyang 已提交
1535 1536 1537 1538 1539
    FATFS *fs = vp->originMount->data;
    DIR_FILE *dfp = (DIR_FILE *)vp->data;
    FILINFO *finfo = &(dfp->fno);
    DIR *dp;
    DWORD clst;
W
wenjun 已提交
1540
    FRESULT result;
W
wangchenyang 已提交
1541
    int ret;
W
wenjun 已提交
1542

W
wangchenyang 已提交
1543 1544 1545
    dp = (DIR*)zalloc(sizeof(DIR));
    if (dp == NULL) {
        return -ENOMEM;
W
wenjun 已提交
1546 1547
    }

W
wangchenyang 已提交
1548 1549 1550
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
1551
    }
W
wangchenyang 已提交
1552 1553 1554
    clst = finfo->sclst;
    dp->obj.fs = fs;
    dp->obj.sclust = clst;
W
wenjun 已提交
1555

W
wangchenyang 已提交
1556 1557 1558 1559 1560
    result = dir_sdi(dp, 0);
    if (result != FR_OK) {
        free(dp);
        unlock_fs(fs, result);
        return -fatfs_2_vfs(result);
W
wenjun 已提交
1561
    }
W
wangchenyang 已提交
1562 1563
    unlock_fs(fs, result);
    idir->u.fs_dir = dp;
W
wenjun 已提交
1564

W
wangchenyang 已提交
1565 1566
    return 0;
}
W
wenjun 已提交
1567

W
wangchenyang 已提交
1568 1569 1570 1571 1572 1573 1574 1575
int fatfs_readdir(struct Vnode *vp, struct fs_dirent_s *idir)
{
    FATFS *fs = vp->originMount->data;
    FILINFO fno;
    DIR* dp = (DIR*)idir->u.fs_dir;
    struct dirent *dirp = NULL;
    FRESULT result;
    int ret, i;
W
wenjun 已提交
1576

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

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

W
wangchenyang 已提交
1624 1625 1626 1627 1628 1629
int fatfs_rewinddir(struct Vnode *vp, struct fs_dirent_s *dir)
{
    DIR *dp = (DIR *)dir->u.fs_dir;
    FATFS *fs = dp->obj.fs;
    FRESULT result;
    int ret;
W
wenjun 已提交
1630

W
wangchenyang 已提交
1631 1632 1633
    ret = lock_fs(fs);
    if (ret == FALSE) {
        return -EBUSY;
W
wenjun 已提交
1634 1635
    }

W
wangchenyang 已提交
1636 1637 1638 1639
    result = dir_sdi(dp, 0);
    unlock_fs(fs, result);
    return -fatfs_2_vfs(result);
}
W
wenjun 已提交
1640

W
wangchenyang 已提交
1641 1642 1643 1644 1645 1646
int fatfs_closedir(struct Vnode *vp, struct fs_dirent_s *dir)
{
    DIR *dp = (DIR *)dir->u.fs_dir;
    free(dp);
    dir->u.fs_dir = NULL;
    return 0;
W
wenjun 已提交
1647 1648
}

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

W
wangchenyang 已提交
1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688
int fatfs_rename(struct Vnode *old_vnode, struct Vnode *new_parent, const char *oldname, const char *newname)
{
    FATFS *fs = (FATFS *)(old_vnode->originMount->data);
    DIR_FILE *dfp_old = (DIR_FILE *)old_vnode->data;
    DIR *dp_old = &(dfp_old->f_dir);
    FILINFO *finfo_old = &(dfp_old->fno);
    DIR_FILE *dfp_new = NULL;
    DIR* dp_new = NULL;
    FILINFO* finfo_new = NULL;
    DWORD clust;
    FRESULT result;
    int ret;
W
wenjun 已提交
1689

W
wangchenyang 已提交
1690 1691 1692
    ret = lock_fs(fs);
    if (ret == FALSE) { /* Lock fs failed */
        return -EBUSY;
W
wenjun 已提交
1693 1694
    }

W
wangchenyang 已提交
1695 1696 1697 1698
    dfp_new = (DIR_FILE *)zalloc(sizeof(DIR_FILE));
    if (dfp_new == NULL) {
        result = FR_NOT_ENOUGH_CORE;
        goto ERROR_UNLOCK;
W
wenjun 已提交
1699
    }
W
wangchenyang 已提交
1700 1701
    dp_new = &(dfp_new->f_dir);
    finfo_new = &(dfp_new->fno);
W
wenjun 已提交
1702

W
wangchenyang 已提交
1703 1704
    dp_new->obj.sclust = ((DIR_FILE *)(new_parent->data))->fno.sclst;
    dp_new->obj.fs = fs;
W
wenjun 已提交
1705

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

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

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

ERROR_FREE:
    free(dfp_new);
ERROR_UNLOCK:
    unlock_fs(fs, result);
    FREE_NAMBUF();
    return -fatfs_2_vfs(result);
W
wenjun 已提交
1772 1773 1774
}


W
wangchenyang 已提交
1775 1776 1777 1778 1779 1780 1781 1782 1783
static int fatfs_erase(los_part *part, int option)
{
    int opt = option;
    if ((UINT)opt & FMT_ERASE) {
        opt = (UINT)opt & (~FMT_ERASE);
        if (EraseDiskByID(part->disk_id, part->sector_start, part->sector_count) != LOS_OK) {
            PRINTK("Disk erase error.\n");
            return -1;
        }
W
wenjun 已提交
1784 1785
    }

W
wangchenyang 已提交
1786 1787
    if (opt != FM_FAT && opt != FM_FAT32) {
        opt = FM_ANY;
W
wenjun 已提交
1788 1789
    }

W
wangchenyang 已提交
1790 1791 1792 1793 1794 1795 1796 1797
    return opt;
}

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

W
wangchenyang 已提交
1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809
    /* 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);
1810
        ret = los_disk_read(part->disk_id, buf, 0, 1, TRUE); /* TRUE when not reading large data */
W
wangchenyang 已提交
1811 1812 1813 1814 1815 1816 1817 1818
        if (ret < 0) {
            free(buf);
            return -EIO;
        }
        part->sector_start = LD_DWORD_DISK(&buf[PAR_OFFSET + PAR_START_OFFSET]);
        part->sector_count = LD_DWORD_DISK(&buf[PAR_OFFSET + PAR_COUNT_OFFSET]);
        part->part_no_mbr = 1;
        part->filesystem_type = buf[PAR_OFFSET + PAR_TYPE_OFFSET];
W
wenjun 已提交
1819

W
wangchenyang 已提交
1820
        free(buf);
W
wenjun 已提交
1821
    }
W
wangchenyang 已提交
1822
    return 0;
W
wenjun 已提交
1823 1824
}

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

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

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

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

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

    return result;
}

X
x_xiny 已提交
1864
int fatfs_mkfs(struct Vnode *device, int sectors, int option)
W
wenjun 已提交
1865
{
W
wangchenyang 已提交
1866 1867 1868
    BYTE *work_buff = NULL;
    los_part *part = NULL;
    FRESULT result;
1869
    MKFS_PARM opt = {0};
W
wangchenyang 已提交
1870
    int ret;
W
wenjun 已提交
1871

W
wangchenyang 已提交
1872 1873 1874 1875
    part = los_part_find(device);
    if (part == NULL || device->data == NULL) {
        return -ENODEV;
    }
W
wenjun 已提交
1876

Y
YOUR_NAME 已提交
1877
    if (sectors < 0 || sectors > FAT32_MAX_CLUSTER_SIZE || ((DWORD)sectors & ((DWORD)sectors - 1))) {
W
wenjun 已提交
1878 1879 1880
        return -EINVAL;
    }

W
wangchenyang 已提交
1881
    if (option != FMT_FAT && option != FMT_FAT32 && option != FMT_ANY && option != FMT_ERASE) {
W
wenjun 已提交
1882 1883 1884
        return -EINVAL;
    }

W
wangchenyang 已提交
1885 1886 1887 1888 1889 1890 1891
    if (part->part_name != NULL) { /* The part is mounted */
        return -EBUSY;
    }
    option = fatfs_erase(part, option);
    work_buff = (BYTE *)zalloc(FF_MAX_SS);
    if (work_buff == NULL) {
        return -ENOMEM;
W
wenjun 已提交
1892 1893
    }

1894 1895 1896
    opt.n_sect = sectors;
    opt.fmt = (BYTE)option;
    result = _mkfs(part, &opt, work_buff, FF_MAX_SS);
W
wangchenyang 已提交
1897 1898 1899
    free(work_buff);
    if (result != FR_OK) {
        return -fatfs_2_vfs(result);
W
wenjun 已提交
1900 1901
    }

F
Far 已提交
1902 1903
    result = fatfs_setlabel(part);
    if (result == FR_OK) {
W
wangchenyang 已提交
1904
#ifdef LOSCFG_FS_FAT_CACHE
F
Far 已提交
1905 1906 1907 1908
        ret = OsSdSync(part->disk_id);
        if (ret != 0) {
            return -EIO;
        }
W
wenjun 已提交
1909
#endif
F
Far 已提交
1910
    }
W
wenjun 已提交
1911

W
wangchenyang 已提交
1912 1913 1914
    ret = fatfs_set_part_info(part);
    if (ret != 0) {
        return -EIO;
W
wenjun 已提交
1915 1916
    }

F
Far 已提交
1917
    return -fatfs_2_vfs(result);
W
wenjun 已提交
1918 1919
}

W
wangchenyang 已提交
1920
int fatfs_mkdir(struct Vnode *parent, const char *name, mode_t mode, struct Vnode **vpp)
W
wenjun 已提交
1921
{
C
chenjing 已提交
1922
    return fatfs_create_obj(parent, name, mode, vpp, AM_DIR, NULL);
W
wenjun 已提交
1923 1924
}

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

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

    DEF_NAMBUF;
    INIT_NAMBUF(fs);

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

W
wangchenyang 已提交
1969 1970 1971
    unlock_fs(fs, FR_OK);
    FREE_NAMBUF();
    return fatfs_sync(vp->originMount->mountFlags, fs);
W
wenjun 已提交
1972

W
wangchenyang 已提交
1973 1974 1975 1976 1977 1978
ERROR_UNLOCK:
    unlock_fs(fs, result);
    FREE_NAMBUF();
ERROR_OUT:
    return -fatfs_2_vfs(result);
}
W
wenjun 已提交
1979

W
wangchenyang 已提交
1980 1981 1982 1983 1984 1985
int fatfs_reclaim(struct Vnode *vp)
{
    free(vp->data);
    vp->data = NULL;
    return 0;
}
W
wenjun 已提交
1986

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

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

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

int fatfs_ioctl(struct file *filep, int req, unsigned long arg)
{
W
wenjun 已提交
2030 2031 2032 2033
    return -ENOSYS;
}

#define CHECK_FILE_NUM 3
W
wangchenyang 已提交
2034
static inline DWORD combine_time(FILINFO *finfo)
W
wenjun 已提交
2035
{
W
wangchenyang 已提交
2036 2037
    return (finfo->fdate << FTIME_DATE_OFFSET) | finfo->ftime;
}
W
wenjun 已提交
2038

W
wangchenyang 已提交
2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050
static UINT get_oldest_time(DIR_FILE df[], DWORD *oldest_time, UINT len)
{
    int i;
    DWORD old_time = combine_time(&(df[0].fno));
    DWORD time;
    UINT index = 0;
    for (i = 1; i < len; i++) {
        time = combine_time(&(df[i].fno));
        if (time < old_time) {
            old_time = time;
            index = i;
        }
W
wenjun 已提交
2051
    }
W
wangchenyang 已提交
2052 2053
    *oldest_time = old_time;
    return index;
W
wenjun 已提交
2054 2055
}

2056
static FRESULT fscheck(DIR *dp)
W
wenjun 已提交
2057
{
W
wangchenyang 已提交
2058
    DIR_FILE df[CHECK_FILE_NUM] = {0};
W
wenjun 已提交
2059
    FILINFO fno;
W
wangchenyang 已提交
2060
    UINT index = 0;
2061 2062 2063
    UINT count;
    DWORD time;
    DWORD old_time = -1;
W
wangchenyang 已提交
2064 2065 2066
    FRESULT result;
    for (count = 0; count < CHECK_FILE_NUM; count++) {
        if ((result = f_readdir(dp, &fno)) != FR_OK) {
2067
            return result;
W
wangchenyang 已提交
2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078
        } else {
            if (fno.fname[0] == 0 || fno.fname[0] == (TCHAR)0xFF) {
                break;
            }
            (void)memcpy_s(&df[count].f_dir, sizeof(DIR), dp, sizeof(DIR));
            (void)memcpy_s(&df[count].fno, sizeof(FILINFO), &fno, sizeof(FILINFO));
            time = combine_time(&(df[count].fno));
            if (time < old_time) {
                old_time = time;
                index = count;
            }
W
wenjun 已提交
2079
        }
W
wangchenyang 已提交
2080 2081 2082
    }
    while ((result = f_readdir(dp, &fno)) == FR_OK) {
        if (fno.fname[0] == 0 || fno.fname[0] == (TCHAR)0xFF) {
W
wenjun 已提交
2083 2084
            break;
        }
W
wangchenyang 已提交
2085 2086 2087 2088 2089
        time = combine_time(&fno);
        if (time < old_time) {
            (void)memcpy_s(&df[index].f_dir, sizeof(DIR), dp, sizeof(DIR));
            (void)memcpy_s(&df[index].fno, sizeof(FILINFO), &fno, sizeof(FILINFO));
            index = get_oldest_time(df, &old_time, CHECK_FILE_NUM);
W
wenjun 已提交
2090
        }
W
wangchenyang 已提交
2091
    }
2092 2093 2094 2095
    index = 0;
    while (result == FR_OK && index < count) {
        result = f_fcheckfat(&df[index]);
        ++index;
W
wangchenyang 已提交
2096
    }
W
wenjun 已提交
2097

2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135
    return result;
}

int fatfs_fscheck(struct Vnode* vp, struct fs_dirent_s *dir)
{
    FATFS *fs = (FATFS *)vp->originMount->data;
    DIR *dp = NULL;
    FILINFO *finfo = &(((DIR_FILE *)(vp->data))->fno);
#ifdef LOSCFG_FS_FAT_CACHE
    los_part *part = NULL;
#endif
    FRESULT result;
    int ret;

    if (fs->fs_type != FS_FAT32) {
        return -EINVAL;
    }

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

    ret = fatfs_opendir(vp, dir);
    if (ret < 0) {
        return ret;
    }

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

    dp = (DIR *)dir->u.fs_dir;
    dp->obj.id = fs->id;
    result = fscheck(dp);
    if (result != FR_OK) {
        goto ERROR_UNLOCK;
W
wenjun 已提交
2136 2137
    }

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

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

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

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

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

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

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

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

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

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

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

    unlock_fs(fs, FR_OK);
    return cnt;

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

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

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

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

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

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

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

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

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

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

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

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

    unlock_fs(fs, FR_OK);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    unlock_fs(fs, FR_OK);

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

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

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

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

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

#endif /* LOSCFG_FS_FAT */