123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481 |
- /*
- * Copyright (C) 2012-2013 Samsung Electronics Co., Ltd.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
- #include <linux/version.h>
- #include <linux/module.h>
- #include <linux/init.h>
- #include "exfat_version.h"
- #include "exfat_config.h"
- #include "exfat_global.h"
- #include "exfat_data.h"
- #include "exfat_oal.h"
- #include "exfat_part.h"
- #include "exfat_nls.h"
- #include "exfat_api.h"
- #include "exfat_super.h"
- #include "exfat.h"
- extern FS_STRUCT_T fs_struct[];
- extern struct semaphore z_sem;
- INT32 FsInit(void)
- {
- INT32 i;
- for (i = 0; i < MAX_DRIVE; i++) {
- fs_struct[i].mounted = FALSE;
- fs_struct[i].sb = NULL;
- sm_init(&(fs_struct[i].v_sem));
- }
- return(ffsInit());
- }
- INT32 FsShutdown(void)
- {
- INT32 i;
- for (i = 0; i < MAX_DRIVE; i++) {
- if (!fs_struct[i].mounted) continue;
- ffsUmountVol(fs_struct[i].sb);
- }
- return(ffsShutdown());
- }
- INT32 FsMountVol(struct super_block *sb)
- {
- INT32 err, drv;
- sm_P(&z_sem);
- for (drv = 0; drv < MAX_DRIVE; drv++) {
- if (!fs_struct[drv].mounted) break;
- }
- if (drv >= MAX_DRIVE) {
- err = FFS_ERROR;
- goto ret_unlock;
- }
- sm_P(&(fs_struct[drv].v_sem));
- err = buf_init(sb);
- if (!err) {
- err = ffsMountVol(sb, drv);
- }
- sm_V(&(fs_struct[drv].v_sem));
- if (!err) {
- fs_struct[drv].mounted = TRUE;
- fs_struct[drv].sb = sb;
- } else {
- buf_shutdown(sb);
- }
- ret_unlock:
- sm_V(&z_sem);
- return(err);
- }
- INT32 FsUmountVol(struct super_block *sb)
- {
- INT32 err;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- sm_P(&z_sem);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsUmountVol(sb);
- buf_shutdown(sb);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- fs_struct[p_fs->drv].mounted = FALSE;
- fs_struct[p_fs->drv].sb = NULL;
- sm_V(&z_sem);
- return(err);
- }
- INT32 FsGetVolInfo(struct super_block *sb, VOL_INFO_T *info)
- {
- INT32 err;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- if (info == NULL) return(FFS_ERROR);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsGetVolInfo(sb, info);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsSyncVol(struct super_block *sb, INT32 do_sync)
- {
- INT32 err;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsSyncVol(sb, do_sync);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsLookupFile(struct inode *inode, UINT8 *path, FILE_ID_T *fid)
- {
- INT32 err;
- struct super_block *sb = inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- if ((fid == NULL) || (path == NULL) || (STRLEN(path) == 0))
- return(FFS_ERROR);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsLookupFile(inode, path, fid);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsCreateFile(struct inode *inode, UINT8 *path, UINT8 mode, FILE_ID_T *fid)
- {
- INT32 err;
- struct super_block *sb = inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- if ((fid == NULL) || (path == NULL) || (STRLEN(path) == 0))
- return(FFS_ERROR);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsCreateFile(inode, path, mode, fid);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsReadFile(struct inode *inode, FILE_ID_T *fid, void *buffer, UINT64 count, UINT64 *rcount)
- {
- INT32 err;
- struct super_block *sb = inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- if (fid == NULL) return(FFS_INVALIDFID);
- if (buffer == NULL) return(FFS_ERROR);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsReadFile(inode, fid, buffer, count, rcount);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsWriteFile(struct inode *inode, FILE_ID_T *fid, void *buffer, UINT64 count, UINT64 *wcount)
- {
- INT32 err;
- struct super_block *sb = inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- if (fid == NULL) return(FFS_INVALIDFID);
- if (buffer == NULL) return(FFS_ERROR);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsWriteFile(inode, fid, buffer, count, wcount);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsTruncateFile(struct inode *inode, UINT64 old_size, UINT64 new_size)
- {
- INT32 err;
- struct super_block *sb = inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- PRINTK("FsTruncateFile entered (inode %p size %llu)\n", inode, new_size);
- err = ffsTruncateFile(inode, old_size, new_size);
- PRINTK("FsTruncateFile exitted (%d)\n", err);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsMoveFile(struct inode *old_parent_inode, FILE_ID_T *fid, struct inode *new_parent_inode, struct dentry *new_dentry)
- {
- INT32 err;
- struct super_block *sb = old_parent_inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- if (fid == NULL) return(FFS_INVALIDFID);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsMoveFile(old_parent_inode, fid, new_parent_inode, new_dentry);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsRemoveFile(struct inode *inode, FILE_ID_T *fid)
- {
- INT32 err;
- struct super_block *sb = inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- if (fid == NULL) return(FFS_INVALIDFID);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsRemoveFile(inode, fid);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsSetAttr(struct inode *inode, UINT32 attr)
- {
- INT32 err;
- struct super_block *sb = inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsSetAttr(inode, attr);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsReadStat(struct inode *inode, DIR_ENTRY_T *info)
- {
- INT32 err;
- struct super_block *sb = inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsGetStat(inode, info);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsWriteStat(struct inode *inode, DIR_ENTRY_T *info)
- {
- INT32 err;
- struct super_block *sb = inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- PRINTK("FsWriteStat entered (inode %p info %p\n", inode, info);
- err = ffsSetStat(inode, info);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- PRINTK("FsWriteStat exited (%d)\n", err);
- return(err);
- }
- INT32 FsMapCluster(struct inode *inode, INT32 clu_offset, UINT32 *clu)
- {
- INT32 err;
- struct super_block *sb = inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- if (clu == NULL) return(FFS_ERROR);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsMapCluster(inode, clu_offset, clu);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsCreateDir(struct inode *inode, UINT8 *path, FILE_ID_T *fid)
- {
- INT32 err;
- struct super_block *sb = inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- if ((fid == NULL) || (path == NULL) || (STRLEN(path) == 0))
- return(FFS_ERROR);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsCreateDir(inode, path, fid);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsReadDir(struct inode *inode, DIR_ENTRY_T *dir_entry)
- {
- INT32 err;
- struct super_block *sb = inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- if (dir_entry == NULL) return(FFS_ERROR);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsReadDir(inode, dir_entry);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsRemoveDir(struct inode *inode, FILE_ID_T *fid)
- {
- INT32 err;
- struct super_block *sb = inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- if (fid == NULL) return(FFS_INVALIDFID);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsRemoveDir(inode, fid);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- INT32 FsRemoveEntry(struct inode *inode, FILE_ID_T *fid)
- {
- INT32 err;
- struct super_block *sb = inode->i_sb;
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- if (fid == NULL) return(FFS_INVALIDFID);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- err = ffsRemoveEntry(inode, fid);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return(err);
- }
- EXPORT_SYMBOL(FsMountVol);
- EXPORT_SYMBOL(FsUmountVol);
- EXPORT_SYMBOL(FsGetVolInfo);
- EXPORT_SYMBOL(FsSyncVol);
- EXPORT_SYMBOL(FsLookupFile);
- EXPORT_SYMBOL(FsCreateFile);
- EXPORT_SYMBOL(FsReadFile);
- EXPORT_SYMBOL(FsWriteFile);
- EXPORT_SYMBOL(FsTruncateFile);
- EXPORT_SYMBOL(FsMoveFile);
- EXPORT_SYMBOL(FsRemoveFile);
- EXPORT_SYMBOL(FsSetAttr);
- EXPORT_SYMBOL(FsReadStat);
- EXPORT_SYMBOL(FsWriteStat);
- EXPORT_SYMBOL(FsMapCluster);
- EXPORT_SYMBOL(FsCreateDir);
- EXPORT_SYMBOL(FsReadDir);
- EXPORT_SYMBOL(FsRemoveDir);
- EXPORT_SYMBOL(FsRemoveEntry);
- #if EXFAT_CONFIG_KERNEL_DEBUG
- INT32 FsReleaseCache(struct super_block *sb)
- {
- FS_INFO_T *p_fs = &(EXFAT_SB(sb)->fs_info);
- sm_P(&(fs_struct[p_fs->drv].v_sem));
- FAT_release_all(sb);
- buf_release_all(sb);
- sm_V(&(fs_struct[p_fs->drv].v_sem));
- return 0;
- }
- EXPORT_SYMBOL(FsReleaseCache);
- #endif
- static int __init init_exfat_core(void)
- {
- int err;
- printk(KERN_INFO "exFAT: Core Version %s\n", EXFAT_VERSION);
- err = FsInit();
- if (err) {
- if (err == FFS_MEMORYERR)
- return -ENOMEM;
- else
- return -EIO;
- }
- return 0;
- }
- static void __exit exit_exfat_core(void)
- {
- FsShutdown();
- }
- module_init(init_exfat_core);
- module_exit(exit_exfat_core);
- MODULE_LICENSE("GPL");
|