[DFS] add Kconfig for dfs-v2.0 (#7156)
* [DFS] add Kconfig for dfs-v2.0 * [DFS] Optimize the SConscript. * [dfs] move old dfs to dfs/dfs_v1
This commit is contained in:
parent
accab17fa5
commit
23955edf53
|
@ -16,7 +16,7 @@ config RT_USING_USER_MAIN
|
||||||
|
|
||||||
config RT_MAIN_THREAD_PRIORITY
|
config RT_MAIN_THREAD_PRIORITY
|
||||||
int "Set main thread priority"
|
int "Set main thread priority"
|
||||||
default 4 if RT_THREAD_PRIORITY_8
|
default 4 if RT_THREAD_PRIORITY_8
|
||||||
default 10 if RT_THREAD_PRIORITY_32
|
default 10 if RT_THREAD_PRIORITY_32
|
||||||
default 85 if RT_THREAD_PRIORITY_256
|
default 85 if RT_THREAD_PRIORITY_256
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
menuconfig RT_USING_DFS
|
menu "DFS: device virtual file system"
|
||||||
|
|
||||||
|
config RT_USING_DFS
|
||||||
bool "DFS: device virtual file system"
|
bool "DFS: device virtual file system"
|
||||||
select RT_USING_MUTEX
|
select RT_USING_MUTEX
|
||||||
default y
|
default y
|
||||||
|
@ -14,18 +16,6 @@ if RT_USING_DFS
|
||||||
bool "Using working directory"
|
bool "Using working directory"
|
||||||
default y
|
default y
|
||||||
|
|
||||||
config DFS_FILESYSTEMS_MAX
|
|
||||||
int "The maximal number of mounted file system"
|
|
||||||
default 4
|
|
||||||
|
|
||||||
config DFS_FILESYSTEM_TYPES_MAX
|
|
||||||
int "The maximal number of file system type"
|
|
||||||
default 4
|
|
||||||
|
|
||||||
config DFS_FD_MAX
|
|
||||||
int "The maximal number of opened files"
|
|
||||||
default 16
|
|
||||||
|
|
||||||
config RT_USING_DFS_MNTTABLE
|
config RT_USING_DFS_MNTTABLE
|
||||||
bool "Using mount table for file system"
|
bool "Using mount table for file system"
|
||||||
default n
|
default n
|
||||||
|
@ -38,132 +28,25 @@ if RT_USING_DFS
|
||||||
};
|
};
|
||||||
The mount_table must be terminated with NULL.
|
The mount_table must be terminated with NULL.
|
||||||
|
|
||||||
config RT_USING_DFS_ELMFAT
|
config DFS_FD_MAX
|
||||||
bool "Enable elm-chan fatfs"
|
int "The maximal number of opened files"
|
||||||
default n
|
default 16
|
||||||
help
|
|
||||||
FatFs is a generic FAT/exFAT file system module for small embedded systems.
|
|
||||||
|
|
||||||
if RT_USING_DFS_ELMFAT
|
choice
|
||||||
menu "elm-chan's FatFs, Generic FAT Filesystem Module"
|
prompt "The version of DFS"
|
||||||
config RT_DFS_ELM_CODE_PAGE
|
default RT_USING_DFS_V1
|
||||||
int "OEM code page"
|
default RT_USING_DFS_V2 if RT_USING_SMART
|
||||||
default 437
|
|
||||||
|
|
||||||
config RT_DFS_ELM_WORD_ACCESS
|
config RT_USING_DFS_V1
|
||||||
bool "Using RT_DFS_ELM_WORD_ACCESS"
|
bool "DFS v1.0"
|
||||||
default y
|
|
||||||
|
|
||||||
choice
|
config RT_USING_DFS_V2
|
||||||
prompt "Support long file name"
|
bool "DFS v2.0"
|
||||||
default RT_DFS_ELM_USE_LFN_3
|
endchoice
|
||||||
|
|
||||||
config RT_DFS_ELM_USE_LFN_0
|
source "$RTT_DIR/components/dfs/dfs_v1/Kconfig"
|
||||||
bool "0: LFN disable"
|
source "$RTT_DIR/components/dfs/dfs_v2/Kconfig"
|
||||||
|
|
||||||
config RT_DFS_ELM_USE_LFN_1
|
|
||||||
bool "1: LFN with static LFN working buffer"
|
|
||||||
|
|
||||||
config RT_DFS_ELM_USE_LFN_2
|
|
||||||
bool "2: LFN with dynamic LFN working buffer on the stack"
|
|
||||||
|
|
||||||
config RT_DFS_ELM_USE_LFN_3
|
|
||||||
bool "3: LFN with dynamic LFN working buffer on the heap"
|
|
||||||
endchoice
|
|
||||||
|
|
||||||
config RT_DFS_ELM_USE_LFN
|
|
||||||
int
|
|
||||||
default 0 if RT_DFS_ELM_USE_LFN_0
|
|
||||||
default 1 if RT_DFS_ELM_USE_LFN_1
|
|
||||||
default 2 if RT_DFS_ELM_USE_LFN_2
|
|
||||||
default 3 if RT_DFS_ELM_USE_LFN_3
|
|
||||||
|
|
||||||
choice
|
|
||||||
prompt "Support unicode for long file name"
|
|
||||||
default RT_DFS_ELM_LFN_UNICODE_0
|
|
||||||
|
|
||||||
config RT_DFS_ELM_LFN_UNICODE_0
|
|
||||||
bool "0: ANSI/OEM in current CP (TCHAR = char)"
|
|
||||||
|
|
||||||
config RT_DFS_ELM_LFN_UNICODE_1
|
|
||||||
bool "1: Unicode in UTF-16 (TCHAR = WCHAR)"
|
|
||||||
|
|
||||||
config RT_DFS_ELM_LFN_UNICODE_2
|
|
||||||
bool "2: Unicode in UTF-8 (TCHAR = char)"
|
|
||||||
|
|
||||||
config RT_DFS_ELM_LFN_UNICODE_3
|
|
||||||
bool "3: Unicode in UTF-32 (TCHAR = DWORD)"
|
|
||||||
endchoice
|
|
||||||
|
|
||||||
config RT_DFS_ELM_LFN_UNICODE
|
|
||||||
int
|
|
||||||
default 0 if RT_DFS_ELM_LFN_UNICODE_0
|
|
||||||
default 1 if RT_DFS_ELM_LFN_UNICODE_1
|
|
||||||
default 2 if RT_DFS_ELM_LFN_UNICODE_2
|
|
||||||
default 3 if RT_DFS_ELM_LFN_UNICODE_3
|
|
||||||
|
|
||||||
config RT_DFS_ELM_MAX_LFN
|
|
||||||
int "Maximal size of file name length"
|
|
||||||
range 12 255
|
|
||||||
default 255
|
|
||||||
|
|
||||||
config RT_DFS_ELM_DRIVES
|
|
||||||
int "Number of volumes (logical drives) to be used."
|
|
||||||
default 2
|
|
||||||
|
|
||||||
config RT_DFS_ELM_MAX_SECTOR_SIZE
|
|
||||||
int "Maximum sector size to be handled."
|
|
||||||
default 512
|
|
||||||
help
|
|
||||||
If you use some spi nor flash for fatfs, please set this the erase sector size, for example 4096.
|
|
||||||
|
|
||||||
config RT_DFS_ELM_USE_ERASE
|
|
||||||
bool "Enable sector erase feature"
|
|
||||||
default n
|
|
||||||
|
|
||||||
config RT_DFS_ELM_REENTRANT
|
|
||||||
bool "Enable the reentrancy (thread safe) of the FatFs module"
|
|
||||||
default y
|
|
||||||
|
|
||||||
config RT_DFS_ELM_MUTEX_TIMEOUT
|
|
||||||
int "Timeout of thread-safe protection mutex"
|
|
||||||
range 0 1000000
|
|
||||||
default 3000
|
|
||||||
depends on RT_DFS_ELM_REENTRANT
|
|
||||||
endmenu
|
|
||||||
endif
|
|
||||||
|
|
||||||
config RT_USING_DFS_DEVFS
|
|
||||||
bool "Using devfs for device objects"
|
|
||||||
default y
|
|
||||||
|
|
||||||
config RT_USING_DFS_ROMFS
|
|
||||||
bool "Enable ReadOnly file system on flash"
|
|
||||||
default n
|
|
||||||
|
|
||||||
config RT_USING_DFS_CROMFS
|
|
||||||
bool "Enable ReadOnly compressed file system on flash"
|
|
||||||
default n
|
|
||||||
# select PKG_USING_ZLIB
|
|
||||||
|
|
||||||
config RT_USING_DFS_RAMFS
|
|
||||||
bool "Enable RAM file system"
|
|
||||||
select RT_USING_MEMHEAP
|
|
||||||
default n
|
|
||||||
|
|
||||||
config RT_USING_DFS_TMPFS
|
|
||||||
bool "Enable TMP file system"
|
|
||||||
default n
|
|
||||||
|
|
||||||
config RT_USING_DFS_NFS
|
|
||||||
bool "Using NFS v3 client file system"
|
|
||||||
depends on RT_USING_LWIP
|
|
||||||
default n
|
|
||||||
|
|
||||||
if RT_USING_DFS_NFS
|
|
||||||
config RT_NFS_HOST_EXPORT
|
|
||||||
string "NFSv3 host export"
|
|
||||||
default "192.168.1.5:/"
|
|
||||||
endif
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
endmenu
|
||||||
|
|
|
@ -1,26 +1,15 @@
|
||||||
from building import *
|
# RT-Thread building script for bridge
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
from building import *
|
||||||
|
|
||||||
# The set of source files associated with this SConscript file.
|
|
||||||
src = Split('''
|
|
||||||
src/dfs.c
|
|
||||||
src/dfs_file.c
|
|
||||||
src/dfs_fs.c
|
|
||||||
''')
|
|
||||||
cwd = GetCurrentDir()
|
cwd = GetCurrentDir()
|
||||||
CPPPATH = [cwd + "/include"]
|
objs = []
|
||||||
|
list = os.listdir(cwd)
|
||||||
|
|
||||||
if GetDepend('DFS_USING_POSIX'):
|
for d in list:
|
||||||
src += ['src/dfs_posix.c']
|
path = os.path.join(cwd, d)
|
||||||
|
if os.path.isfile(os.path.join(path, 'SConscript')):
|
||||||
|
objs = objs + SConscript(os.path.join(d, 'SConscript'))
|
||||||
|
|
||||||
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS'], CPPPATH = CPPPATH)
|
Return('objs')
|
||||||
|
|
||||||
if GetDepend('RT_USING_DFS'):
|
|
||||||
# search in the file system implementation
|
|
||||||
list = os.listdir(cwd)
|
|
||||||
|
|
||||||
for item in list:
|
|
||||||
if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
|
|
||||||
group = group + SConscript(os.path.join(item, 'SConscript'))
|
|
||||||
|
|
||||||
Return('group')
|
|
||||||
|
|
|
@ -0,0 +1,138 @@
|
||||||
|
if RT_USING_DFS_V1
|
||||||
|
config DFS_FILESYSTEMS_MAX
|
||||||
|
int "The maximal number of mounted file system"
|
||||||
|
default 4
|
||||||
|
|
||||||
|
config DFS_FILESYSTEM_TYPES_MAX
|
||||||
|
int "The maximal number of file system type"
|
||||||
|
default 4
|
||||||
|
|
||||||
|
config RT_USING_DFS_ELMFAT
|
||||||
|
bool "Enable elm-chan fatfs"
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
FatFs is a generic FAT/exFAT file system module for small embedded systems.
|
||||||
|
|
||||||
|
if RT_USING_DFS_ELMFAT
|
||||||
|
menu "elm-chan's FatFs, Generic FAT Filesystem Module"
|
||||||
|
config RT_DFS_ELM_CODE_PAGE
|
||||||
|
int "OEM code page"
|
||||||
|
default 437
|
||||||
|
|
||||||
|
config RT_DFS_ELM_WORD_ACCESS
|
||||||
|
bool "Using RT_DFS_ELM_WORD_ACCESS"
|
||||||
|
default y
|
||||||
|
|
||||||
|
choice
|
||||||
|
prompt "Support long file name"
|
||||||
|
default RT_DFS_ELM_USE_LFN_3
|
||||||
|
|
||||||
|
config RT_DFS_ELM_USE_LFN_0
|
||||||
|
bool "0: LFN disable"
|
||||||
|
|
||||||
|
config RT_DFS_ELM_USE_LFN_1
|
||||||
|
bool "1: LFN with static LFN working buffer"
|
||||||
|
|
||||||
|
config RT_DFS_ELM_USE_LFN_2
|
||||||
|
bool "2: LFN with dynamic LFN working buffer on the stack"
|
||||||
|
|
||||||
|
config RT_DFS_ELM_USE_LFN_3
|
||||||
|
bool "3: LFN with dynamic LFN working buffer on the heap"
|
||||||
|
endchoice
|
||||||
|
|
||||||
|
config RT_DFS_ELM_USE_LFN
|
||||||
|
int
|
||||||
|
default 0 if RT_DFS_ELM_USE_LFN_0
|
||||||
|
default 1 if RT_DFS_ELM_USE_LFN_1
|
||||||
|
default 2 if RT_DFS_ELM_USE_LFN_2
|
||||||
|
default 3 if RT_DFS_ELM_USE_LFN_3
|
||||||
|
|
||||||
|
choice
|
||||||
|
prompt "Support unicode for long file name"
|
||||||
|
default RT_DFS_ELM_LFN_UNICODE_0
|
||||||
|
|
||||||
|
config RT_DFS_ELM_LFN_UNICODE_0
|
||||||
|
bool "0: ANSI/OEM in current CP (TCHAR = char)"
|
||||||
|
|
||||||
|
config RT_DFS_ELM_LFN_UNICODE_1
|
||||||
|
bool "1: Unicode in UTF-16 (TCHAR = WCHAR)"
|
||||||
|
|
||||||
|
config RT_DFS_ELM_LFN_UNICODE_2
|
||||||
|
bool "2: Unicode in UTF-8 (TCHAR = char)"
|
||||||
|
|
||||||
|
config RT_DFS_ELM_LFN_UNICODE_3
|
||||||
|
bool "3: Unicode in UTF-32 (TCHAR = DWORD)"
|
||||||
|
endchoice
|
||||||
|
|
||||||
|
config RT_DFS_ELM_LFN_UNICODE
|
||||||
|
int
|
||||||
|
default 0 if RT_DFS_ELM_LFN_UNICODE_0
|
||||||
|
default 1 if RT_DFS_ELM_LFN_UNICODE_1
|
||||||
|
default 2 if RT_DFS_ELM_LFN_UNICODE_2
|
||||||
|
default 3 if RT_DFS_ELM_LFN_UNICODE_3
|
||||||
|
|
||||||
|
config RT_DFS_ELM_MAX_LFN
|
||||||
|
int "Maximal size of file name length"
|
||||||
|
range 12 255
|
||||||
|
default 255
|
||||||
|
|
||||||
|
config RT_DFS_ELM_DRIVES
|
||||||
|
int "Number of volumes (logical drives) to be used."
|
||||||
|
default 2
|
||||||
|
|
||||||
|
config RT_DFS_ELM_MAX_SECTOR_SIZE
|
||||||
|
int "Maximum sector size to be handled."
|
||||||
|
default 512
|
||||||
|
help
|
||||||
|
If you use some spi nor flash for fatfs, please set this the erase sector size, for example 4096.
|
||||||
|
|
||||||
|
config RT_DFS_ELM_USE_ERASE
|
||||||
|
bool "Enable sector erase feature"
|
||||||
|
default n
|
||||||
|
|
||||||
|
config RT_DFS_ELM_REENTRANT
|
||||||
|
bool "Enable the reentrancy (thread safe) of the FatFs module"
|
||||||
|
default y
|
||||||
|
|
||||||
|
config RT_DFS_ELM_MUTEX_TIMEOUT
|
||||||
|
int "Timeout of thread-safe protection mutex"
|
||||||
|
range 0 1000000
|
||||||
|
default 3000
|
||||||
|
depends on RT_DFS_ELM_REENTRANT
|
||||||
|
endmenu
|
||||||
|
endif
|
||||||
|
|
||||||
|
config RT_USING_DFS_DEVFS
|
||||||
|
bool "Using devfs for device objects"
|
||||||
|
default y
|
||||||
|
|
||||||
|
config RT_USING_DFS_ROMFS
|
||||||
|
bool "Enable ReadOnly file system on flash"
|
||||||
|
default n
|
||||||
|
|
||||||
|
config RT_USING_DFS_CROMFS
|
||||||
|
bool "Enable ReadOnly compressed file system on flash"
|
||||||
|
default n
|
||||||
|
# select PKG_USING_ZLIB
|
||||||
|
|
||||||
|
config RT_USING_DFS_RAMFS
|
||||||
|
bool "Enable RAM file system"
|
||||||
|
select RT_USING_MEMHEAP
|
||||||
|
default n
|
||||||
|
|
||||||
|
config RT_USING_DFS_TMPFS
|
||||||
|
bool "Enable TMP file system"
|
||||||
|
default n
|
||||||
|
|
||||||
|
config RT_USING_DFS_NFS
|
||||||
|
bool "Using NFS v3 client file system"
|
||||||
|
depends on RT_USING_LWIP
|
||||||
|
default n
|
||||||
|
|
||||||
|
if RT_USING_DFS_NFS
|
||||||
|
config RT_NFS_HOST_EXPORT
|
||||||
|
string "NFSv3 host export"
|
||||||
|
default "192.168.1.5:/"
|
||||||
|
endif
|
||||||
|
|
||||||
|
endif
|
|
@ -0,0 +1,25 @@
|
||||||
|
from building import *
|
||||||
|
import os
|
||||||
|
|
||||||
|
# The set of source files associated with this SConscript file.
|
||||||
|
src = []
|
||||||
|
cwd = GetCurrentDir()
|
||||||
|
CPPPATH = [cwd + "/include"]
|
||||||
|
group = []
|
||||||
|
|
||||||
|
if GetDepend('RT_USING_DFS') and not GetDepend('RT_USING_DFS_V2'):
|
||||||
|
src = ['src/dfs.c', 'src/dfs_file.c', 'src/dfs_fs.c']
|
||||||
|
|
||||||
|
if GetDepend('DFS_USING_POSIX'):
|
||||||
|
src += ['src/dfs_posix.c']
|
||||||
|
|
||||||
|
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS'], CPPPATH = CPPPATH)
|
||||||
|
|
||||||
|
# search in the file system implementation
|
||||||
|
list = os.listdir(cwd)
|
||||||
|
|
||||||
|
for item in list:
|
||||||
|
if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
|
||||||
|
group = group + SConscript(os.path.join(item, 'SConscript'))
|
||||||
|
|
||||||
|
Return('group')
|
|
@ -0,0 +1,35 @@
|
||||||
|
if RT_USING_DFS_V2
|
||||||
|
config RT_USING_DFS_DEVFS
|
||||||
|
bool "Using devfs for device objects"
|
||||||
|
default y
|
||||||
|
|
||||||
|
config RT_USING_DFS_ROMFS
|
||||||
|
bool "Enable ReadOnly file system on flash"
|
||||||
|
default n
|
||||||
|
|
||||||
|
config RT_USING_DFS_CROMFS
|
||||||
|
bool "Enable ReadOnly compressed file system on flash"
|
||||||
|
default n
|
||||||
|
# select PKG_USING_ZLIB
|
||||||
|
|
||||||
|
config RT_USING_DFS_RAMFS
|
||||||
|
bool "Enable RAM file system"
|
||||||
|
select RT_USING_MEMHEAP
|
||||||
|
default n
|
||||||
|
|
||||||
|
config RT_USING_DFS_TMPFS
|
||||||
|
bool "Enable TMP file system"
|
||||||
|
default n
|
||||||
|
|
||||||
|
config RT_USING_DFS_NFS
|
||||||
|
bool "Using NFS v3 client file system"
|
||||||
|
depends on RT_USING_LWIP
|
||||||
|
default n
|
||||||
|
|
||||||
|
if RT_USING_DFS_NFS
|
||||||
|
config RT_NFS_HOST_EXPORT
|
||||||
|
string "NFSv3 host export"
|
||||||
|
default "192.168.1.5:/"
|
||||||
|
endif
|
||||||
|
|
||||||
|
endif
|
|
@ -0,0 +1,25 @@
|
||||||
|
from building import *
|
||||||
|
import os
|
||||||
|
|
||||||
|
# The set of source files associated with this SConscript file.
|
||||||
|
src = []
|
||||||
|
cwd = GetCurrentDir()
|
||||||
|
CPPPATH = [cwd + "/include"]
|
||||||
|
group = []
|
||||||
|
|
||||||
|
if GetDepend('RT_USING_DFS') and GetDepend('RT_USING_DFS_V2'):
|
||||||
|
src = ['src/dfs.c', 'src/dfs_file.c', 'src/dfs_fs.c']
|
||||||
|
|
||||||
|
if GetDepend('DFS_USING_POSIX'):
|
||||||
|
src += ['src/dfs_posix.c']
|
||||||
|
|
||||||
|
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS'], CPPPATH = CPPPATH)
|
||||||
|
|
||||||
|
# search in the file system implementation
|
||||||
|
list = os.listdir(cwd)
|
||||||
|
|
||||||
|
for item in list:
|
||||||
|
if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
|
||||||
|
group = group + SConscript(os.path.join(item, 'SConscript'))
|
||||||
|
|
||||||
|
Return('group')
|
|
@ -0,0 +1,4 @@
|
||||||
|
# files format check exclude path, please follow the instructions below to modify;
|
||||||
|
|
||||||
|
dir_path:
|
||||||
|
- elmfat
|
|
@ -0,0 +1,15 @@
|
||||||
|
# RT-Thread building script for bridge
|
||||||
|
|
||||||
|
import os
|
||||||
|
from building import *
|
||||||
|
|
||||||
|
cwd = GetCurrentDir()
|
||||||
|
objs = []
|
||||||
|
list = os.listdir(cwd)
|
||||||
|
|
||||||
|
for d in list:
|
||||||
|
path = os.path.join(cwd, d)
|
||||||
|
if os.path.isfile(os.path.join(path, 'SConscript')):
|
||||||
|
objs = objs + SConscript(os.path.join(d, 'SConscript'))
|
||||||
|
|
||||||
|
Return('objs')
|
|
@ -0,0 +1,11 @@
|
||||||
|
# RT-Thread building script for component
|
||||||
|
|
||||||
|
from building import *
|
||||||
|
|
||||||
|
cwd = GetCurrentDir()
|
||||||
|
src = Glob('*.c')
|
||||||
|
CPPPATH = [cwd]
|
||||||
|
|
||||||
|
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS','RT_USING_DFS_CROMFS'], CPPPATH = CPPPATH)
|
||||||
|
|
||||||
|
Return('group')
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,16 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2006-2020, RT-Thread Development Team
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*
|
||||||
|
* Change Logs:
|
||||||
|
* Date Author Notes
|
||||||
|
* 2020/08/21 ShaoJinchun firset version
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __DFS_CROMFS_H__
|
||||||
|
#define __DFS_CROMFS_H__
|
||||||
|
|
||||||
|
int dfs_cromfs_init(void);
|
||||||
|
|
||||||
|
#endif /*__DFS_CROMFS_H__*/
|
|
@ -0,0 +1,11 @@
|
||||||
|
# RT-Thread building script for component
|
||||||
|
|
||||||
|
from building import *
|
||||||
|
|
||||||
|
cwd = GetCurrentDir()
|
||||||
|
src = Glob('*.c')
|
||||||
|
CPPPATH = [cwd]
|
||||||
|
|
||||||
|
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_DEVFS'], CPPPATH = CPPPATH)
|
||||||
|
|
||||||
|
Return('group')
|
|
@ -0,0 +1,416 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*
|
||||||
|
* Change Logs:
|
||||||
|
* Date Author Notes
|
||||||
|
* 2018-02-11 Bernard Ignore O_CREAT flag in open.
|
||||||
|
*/
|
||||||
|
#include <rthw.h>
|
||||||
|
#include <rtthread.h>
|
||||||
|
#include <rtdevice.h>
|
||||||
|
|
||||||
|
#include <dfs.h>
|
||||||
|
#include <dfs_fs.h>
|
||||||
|
#include <dfs_file.h>
|
||||||
|
|
||||||
|
#include "devfs.h"
|
||||||
|
|
||||||
|
struct device_dirent
|
||||||
|
{
|
||||||
|
rt_device_t *devices;
|
||||||
|
rt_uint16_t read_index;
|
||||||
|
rt_uint16_t device_count;
|
||||||
|
};
|
||||||
|
|
||||||
|
int dfs_device_fs_mount(struct dfs_filesystem *fs, unsigned long rwflag, const void *data)
|
||||||
|
{
|
||||||
|
return RT_EOK;
|
||||||
|
}
|
||||||
|
|
||||||
|
int dfs_device_fs_statfs(struct dfs_filesystem *fs, struct statfs *buf)
|
||||||
|
{
|
||||||
|
buf->f_bsize = 512;
|
||||||
|
buf->f_blocks = 2048 * 64; // 64M
|
||||||
|
buf->f_bfree = buf->f_blocks;
|
||||||
|
buf->f_bavail = buf->f_bfree;
|
||||||
|
|
||||||
|
return RT_EOK;
|
||||||
|
}
|
||||||
|
|
||||||
|
int dfs_device_fs_ioctl(struct dfs_fd *file, int cmd, void *args)
|
||||||
|
{
|
||||||
|
rt_err_t result;
|
||||||
|
rt_device_t dev_id;
|
||||||
|
|
||||||
|
RT_ASSERT(file != RT_NULL);
|
||||||
|
|
||||||
|
/* get device handler */
|
||||||
|
dev_id = (rt_device_t)file->vnode->data;
|
||||||
|
RT_ASSERT(dev_id != RT_NULL);
|
||||||
|
|
||||||
|
if ((file->vnode->path[0] == '/') && (file->vnode->path[1] == '\0'))
|
||||||
|
return -RT_ENOSYS;
|
||||||
|
|
||||||
|
/* close device handler */
|
||||||
|
result = rt_device_control(dev_id, cmd, args);
|
||||||
|
if (result == RT_EOK)
|
||||||
|
return RT_EOK;
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
int dfs_device_fs_read(struct dfs_fd *file, void *buf, size_t count)
|
||||||
|
{
|
||||||
|
int result;
|
||||||
|
rt_device_t dev_id;
|
||||||
|
|
||||||
|
RT_ASSERT(file != RT_NULL);
|
||||||
|
|
||||||
|
/* get device handler */
|
||||||
|
dev_id = (rt_device_t)file->vnode->data;
|
||||||
|
RT_ASSERT(dev_id != RT_NULL);
|
||||||
|
|
||||||
|
if ((file->vnode->path[0] == '/') && (file->vnode->path[1] == '\0'))
|
||||||
|
return -RT_ENOSYS;
|
||||||
|
|
||||||
|
/* read device data */
|
||||||
|
result = rt_device_read(dev_id, file->pos, buf, count);
|
||||||
|
file->pos += result;
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
int dfs_device_fs_write(struct dfs_fd *file, const void *buf, size_t count)
|
||||||
|
{
|
||||||
|
int result;
|
||||||
|
rt_device_t dev_id;
|
||||||
|
|
||||||
|
RT_ASSERT(file != RT_NULL);
|
||||||
|
|
||||||
|
/* get device handler */
|
||||||
|
dev_id = (rt_device_t)file->vnode->data;
|
||||||
|
RT_ASSERT(dev_id != RT_NULL);
|
||||||
|
|
||||||
|
if ((file->vnode->path[0] == '/') && (file->vnode->path[1] == '\0'))
|
||||||
|
return -RT_ENOSYS;
|
||||||
|
|
||||||
|
/* read device data */
|
||||||
|
result = rt_device_write(dev_id, file->pos, buf, count);
|
||||||
|
file->pos += result;
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
int dfs_device_fs_close(struct dfs_fd *file)
|
||||||
|
{
|
||||||
|
rt_err_t result;
|
||||||
|
rt_device_t dev_id;
|
||||||
|
|
||||||
|
RT_ASSERT(file != RT_NULL);
|
||||||
|
RT_ASSERT(file->vnode->ref_count > 0);
|
||||||
|
|
||||||
|
if (file->vnode->ref_count > 1)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (file->vnode->type == FT_DIRECTORY && (file->vnode->path[0] == '/') && (file->vnode->path[1] == '\0'))
|
||||||
|
{
|
||||||
|
struct device_dirent *root_dirent;
|
||||||
|
|
||||||
|
root_dirent = (struct device_dirent *)file->vnode->data;
|
||||||
|
RT_ASSERT(root_dirent != RT_NULL);
|
||||||
|
|
||||||
|
/* release dirent */
|
||||||
|
rt_free(root_dirent);
|
||||||
|
return RT_EOK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* get device handler */
|
||||||
|
dev_id = (rt_device_t)file->vnode->data;
|
||||||
|
RT_ASSERT(dev_id != RT_NULL);
|
||||||
|
|
||||||
|
/* close device handler */
|
||||||
|
result = rt_device_close(dev_id);
|
||||||
|
if (result == RT_EOK)
|
||||||
|
{
|
||||||
|
file->vnode->data = RT_NULL;
|
||||||
|
|
||||||
|
return RT_EOK;
|
||||||
|
}
|
||||||
|
|
||||||
|
return -EIO;
|
||||||
|
}
|
||||||
|
|
||||||
|
int dfs_device_fs_open(struct dfs_fd *file)
|
||||||
|
{
|
||||||
|
rt_err_t result;
|
||||||
|
rt_device_t device;
|
||||||
|
|
||||||
|
RT_ASSERT(file->vnode->ref_count > 0);
|
||||||
|
if (file->vnode->ref_count > 1)
|
||||||
|
{
|
||||||
|
file->pos = 0;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
/* open root directory */
|
||||||
|
if ((file->vnode->path[0] == '/') && (file->vnode->path[1] == '\0') &&
|
||||||
|
(file->flags & O_DIRECTORY))
|
||||||
|
{
|
||||||
|
struct rt_object *object;
|
||||||
|
struct rt_list_node *node;
|
||||||
|
struct rt_object_information *information;
|
||||||
|
struct device_dirent *root_dirent;
|
||||||
|
rt_uint32_t count = 0;
|
||||||
|
|
||||||
|
/* lock scheduler */
|
||||||
|
rt_enter_critical();
|
||||||
|
|
||||||
|
/* traverse device object */
|
||||||
|
information = rt_object_get_information(RT_Object_Class_Device);
|
||||||
|
RT_ASSERT(information != RT_NULL);
|
||||||
|
for (node = information->object_list.next; node != &(information->object_list); node = node->next)
|
||||||
|
{
|
||||||
|
count ++;
|
||||||
|
}
|
||||||
|
rt_exit_critical();
|
||||||
|
|
||||||
|
root_dirent = (struct device_dirent *)rt_malloc(sizeof(struct device_dirent) +
|
||||||
|
count * sizeof(rt_device_t));
|
||||||
|
if (root_dirent != RT_NULL)
|
||||||
|
{
|
||||||
|
/* lock scheduler */
|
||||||
|
rt_enter_critical();
|
||||||
|
|
||||||
|
root_dirent->devices = (rt_device_t *)(root_dirent + 1);
|
||||||
|
root_dirent->read_index = 0;
|
||||||
|
root_dirent->device_count = count;
|
||||||
|
count = 0;
|
||||||
|
/* get all device node */
|
||||||
|
for (node = information->object_list.next; node != &(information->object_list); node = node->next)
|
||||||
|
{
|
||||||
|
/* avoid memory write through */
|
||||||
|
if (count == root_dirent->device_count)
|
||||||
|
{
|
||||||
|
rt_kprintf("warning: There are newly added devices that are not displayed!");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
object = rt_list_entry(node, struct rt_object, list);
|
||||||
|
root_dirent->devices[count] = (rt_device_t)object;
|
||||||
|
count ++;
|
||||||
|
}
|
||||||
|
rt_exit_critical();
|
||||||
|
}
|
||||||
|
|
||||||
|
/* set data */
|
||||||
|
file->vnode->data = root_dirent;
|
||||||
|
|
||||||
|
return RT_EOK;
|
||||||
|
}
|
||||||
|
#ifdef RT_USING_DEV_BUS
|
||||||
|
else if (file->flags & O_CREAT)
|
||||||
|
{
|
||||||
|
if (!(file->flags & O_DIRECTORY))
|
||||||
|
{
|
||||||
|
return -ENOSYS;
|
||||||
|
}
|
||||||
|
/* regester bus device */
|
||||||
|
if (rt_device_bus_create(&file->vnode->path[1], 0) == RT_NULL)
|
||||||
|
{
|
||||||
|
return -EEXIST;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
device = rt_device_find(&file->vnode->path[1]);
|
||||||
|
if (device == RT_NULL)
|
||||||
|
{
|
||||||
|
return -ENODEV;
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef RT_USING_POSIX_DEVIO
|
||||||
|
if (device->fops)
|
||||||
|
{
|
||||||
|
/* use device fops */
|
||||||
|
file->vnode->fops = device->fops;
|
||||||
|
file->vnode->data = (void *)device;
|
||||||
|
|
||||||
|
/* use fops */
|
||||||
|
if (file->vnode->fops->open)
|
||||||
|
{
|
||||||
|
result = file->vnode->fops->open(file);
|
||||||
|
if (result == RT_EOK || result == -RT_ENOSYS)
|
||||||
|
{
|
||||||
|
file->vnode->type = FT_DEVICE;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
#endif /* RT_USING_POSIX_DEVIO */
|
||||||
|
{
|
||||||
|
result = rt_device_open(device, RT_DEVICE_OFLAG_RDWR);
|
||||||
|
if (result == RT_EOK || result == -RT_ENOSYS)
|
||||||
|
{
|
||||||
|
file->vnode->data = device;
|
||||||
|
file->vnode->type = FT_DEVICE;
|
||||||
|
return RT_EOK;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
file->vnode->data = RT_NULL;
|
||||||
|
/* open device failed. */
|
||||||
|
return -EIO;
|
||||||
|
}
|
||||||
|
|
||||||
|
int dfs_device_fs_unlink(struct dfs_filesystem *fs, const char *path)
|
||||||
|
{
|
||||||
|
#ifdef RT_USING_DEV_BUS
|
||||||
|
rt_device_t dev_id;
|
||||||
|
|
||||||
|
dev_id = rt_device_find(&path[1]);
|
||||||
|
if (dev_id == RT_NULL)
|
||||||
|
{
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (dev_id->type != RT_Device_Class_Bus)
|
||||||
|
{
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
rt_device_bus_destroy(dev_id);
|
||||||
|
#endif
|
||||||
|
return RT_EOK;
|
||||||
|
}
|
||||||
|
|
||||||
|
int dfs_device_fs_stat(struct dfs_filesystem *fs, const char *path, struct stat *st)
|
||||||
|
{
|
||||||
|
/* stat root directory */
|
||||||
|
if ((path[0] == '/') && (path[1] == '\0'))
|
||||||
|
{
|
||||||
|
st->st_dev = 0;
|
||||||
|
|
||||||
|
st->st_mode = S_IFREG | S_IRUSR | S_IRGRP | S_IROTH |
|
||||||
|
S_IWUSR | S_IWGRP | S_IWOTH;
|
||||||
|
st->st_mode &= ~S_IFREG;
|
||||||
|
st->st_mode |= S_IFDIR | S_IXUSR | S_IXGRP | S_IXOTH;
|
||||||
|
|
||||||
|
st->st_size = 0;
|
||||||
|
st->st_mtime = 0;
|
||||||
|
|
||||||
|
return RT_EOK;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
rt_device_t dev_id;
|
||||||
|
|
||||||
|
dev_id = rt_device_find(&path[1]);
|
||||||
|
if (dev_id != RT_NULL)
|
||||||
|
{
|
||||||
|
st->st_dev = 0;
|
||||||
|
|
||||||
|
st->st_mode = S_IRUSR | S_IRGRP | S_IROTH |
|
||||||
|
S_IWUSR | S_IWGRP | S_IWOTH;
|
||||||
|
|
||||||
|
if (dev_id->type == RT_Device_Class_Char)
|
||||||
|
st->st_mode |= S_IFCHR;
|
||||||
|
else if (dev_id->type == RT_Device_Class_Block)
|
||||||
|
st->st_mode |= S_IFBLK;
|
||||||
|
else if (dev_id->type == RT_Device_Class_Pipe)
|
||||||
|
st->st_mode |= S_IFIFO;
|
||||||
|
else if (dev_id->type == RT_Device_Class_Bus)
|
||||||
|
st->st_mode |= S_IFDIR;
|
||||||
|
else
|
||||||
|
st->st_mode |= S_IFREG;
|
||||||
|
|
||||||
|
st->st_size = 0;
|
||||||
|
st->st_mtime = 0;
|
||||||
|
|
||||||
|
return RT_EOK;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return -ENOENT;
|
||||||
|
}
|
||||||
|
|
||||||
|
int dfs_device_fs_getdents(struct dfs_fd *file, struct dirent *dirp, uint32_t count)
|
||||||
|
{
|
||||||
|
rt_uint32_t index;
|
||||||
|
rt_object_t object;
|
||||||
|
struct dirent *d;
|
||||||
|
struct device_dirent *root_dirent;
|
||||||
|
|
||||||
|
root_dirent = (struct device_dirent *)file->vnode->data;
|
||||||
|
RT_ASSERT(root_dirent != RT_NULL);
|
||||||
|
|
||||||
|
/* make integer count */
|
||||||
|
count = (count / sizeof(struct dirent));
|
||||||
|
if (count == 0)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
for (index = 0; index < count && index + root_dirent->read_index < root_dirent->device_count;
|
||||||
|
index ++)
|
||||||
|
{
|
||||||
|
object = (rt_object_t)root_dirent->devices[root_dirent->read_index + index];
|
||||||
|
|
||||||
|
d = dirp + index;
|
||||||
|
if ((((rt_device_t)object)->type) == RT_Device_Class_Bus)
|
||||||
|
{
|
||||||
|
d->d_type = DT_DIR;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
d->d_type = DT_REG;
|
||||||
|
}
|
||||||
|
d->d_namlen = RT_NAME_MAX;
|
||||||
|
d->d_reclen = (rt_uint16_t)sizeof(struct dirent);
|
||||||
|
rt_strncpy(d->d_name, object->name, RT_NAME_MAX);
|
||||||
|
}
|
||||||
|
|
||||||
|
root_dirent->read_index += index;
|
||||||
|
|
||||||
|
return index * sizeof(struct dirent);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int dfs_device_fs_poll(struct dfs_fd *fd, struct rt_pollreq *req)
|
||||||
|
{
|
||||||
|
int mask = 0;
|
||||||
|
|
||||||
|
return mask;
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct dfs_file_ops _device_fops =
|
||||||
|
{
|
||||||
|
dfs_device_fs_open,
|
||||||
|
dfs_device_fs_close,
|
||||||
|
dfs_device_fs_ioctl,
|
||||||
|
dfs_device_fs_read,
|
||||||
|
dfs_device_fs_write,
|
||||||
|
RT_NULL, /* flush */
|
||||||
|
RT_NULL, /* lseek */
|
||||||
|
dfs_device_fs_getdents,
|
||||||
|
dfs_device_fs_poll,
|
||||||
|
};
|
||||||
|
|
||||||
|
static const struct dfs_filesystem_ops _device_fs =
|
||||||
|
{
|
||||||
|
"devfs",
|
||||||
|
DFS_FS_FLAG_DEFAULT,
|
||||||
|
&_device_fops,
|
||||||
|
dfs_device_fs_mount,
|
||||||
|
RT_NULL, /*unmount*/
|
||||||
|
RT_NULL, /*mkfs*/
|
||||||
|
dfs_device_fs_statfs,
|
||||||
|
dfs_device_fs_unlink,
|
||||||
|
dfs_device_fs_stat,
|
||||||
|
RT_NULL, /*rename*/
|
||||||
|
};
|
||||||
|
|
||||||
|
int devfs_init(void)
|
||||||
|
{
|
||||||
|
/* register device file system */
|
||||||
|
dfs_register(&_device_fs);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*
|
||||||
|
* Change Logs:
|
||||||
|
* Date Author Notes
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __DEVICE_FS_H__
|
||||||
|
#define __DEVICE_FS_H__
|
||||||
|
|
||||||
|
#include <rtthread.h>
|
||||||
|
|
||||||
|
int devfs_init(void);
|
||||||
|
|
||||||
|
#endif
|
|
@ -0,0 +1,10 @@
|
||||||
|
# files format check exclude path, please follow the instructions below to modify;
|
||||||
|
# If you need to exclude an entire folder, add the folder path in dir_path;
|
||||||
|
# If you need to exclude a file, add the path to the file in file_path.
|
||||||
|
|
||||||
|
file_path:
|
||||||
|
- diskio.h
|
||||||
|
- ff.c
|
||||||
|
- ff.h
|
||||||
|
- ffconf.h
|
||||||
|
- ffunicode.c
|
|
@ -0,0 +1,359 @@
|
||||||
|
----------------------------------------------------------------------------
|
||||||
|
Revision history of FatFs module
|
||||||
|
----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
R0.00 (February 26, 2006)
|
||||||
|
|
||||||
|
Prototype.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.01 (April 29, 2006)
|
||||||
|
|
||||||
|
The first release.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.02 (June 01, 2006)
|
||||||
|
|
||||||
|
Added FAT12 support.
|
||||||
|
Removed unbuffered mode.
|
||||||
|
Fixed a problem on small (<32M) partition.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.02a (June 10, 2006)
|
||||||
|
|
||||||
|
Added a configuration option (_FS_MINIMUM).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.03 (September 22, 2006)
|
||||||
|
|
||||||
|
Added f_rename().
|
||||||
|
Changed option _FS_MINIMUM to _FS_MINIMIZE.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.03a (December 11, 2006)
|
||||||
|
|
||||||
|
Improved cluster scan algorithm to write files fast.
|
||||||
|
Fixed f_mkdir() creates incorrect directory on FAT32.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.04 (February 04, 2007)
|
||||||
|
|
||||||
|
Added f_mkfs().
|
||||||
|
Supported multiple drive system.
|
||||||
|
Changed some interfaces for multiple drive system.
|
||||||
|
Changed f_mountdrv() to f_mount().
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.04a (April 01, 2007)
|
||||||
|
|
||||||
|
Supported multiple partitions on a physical drive.
|
||||||
|
Added a capability of extending file size to f_lseek().
|
||||||
|
Added minimization level 3.
|
||||||
|
Fixed an endian sensitive code in f_mkfs().
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.04b (May 05, 2007)
|
||||||
|
|
||||||
|
Added a configuration option _USE_NTFLAG.
|
||||||
|
Added FSINFO support.
|
||||||
|
Fixed DBCS name can result FR_INVALID_NAME.
|
||||||
|
Fixed short seek (<= csize) collapses the file object.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.05 (August 25, 2007)
|
||||||
|
|
||||||
|
Changed arguments of f_read(), f_write() and f_mkfs().
|
||||||
|
Fixed f_mkfs() on FAT32 creates incorrect FSINFO.
|
||||||
|
Fixed f_mkdir() on FAT32 creates incorrect directory.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.05a (February 03, 2008)
|
||||||
|
|
||||||
|
Added f_truncate() and f_utime().
|
||||||
|
Fixed off by one error at FAT sub-type determination.
|
||||||
|
Fixed btr in f_read() can be mistruncated.
|
||||||
|
Fixed cached sector is not flushed when create and close without write.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.06 (April 01, 2008)
|
||||||
|
|
||||||
|
Added fputc(), fputs(), fprintf() and fgets().
|
||||||
|
Improved performance of f_lseek() on moving to the same or following cluster.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.07 (April 01, 2009)
|
||||||
|
|
||||||
|
Merged Tiny-FatFs as a configuration option. (_FS_TINY)
|
||||||
|
Added long file name feature. (_USE_LFN)
|
||||||
|
Added multiple code page feature. (_CODE_PAGE)
|
||||||
|
Added re-entrancy for multitask operation. (_FS_REENTRANT)
|
||||||
|
Added auto cluster size selection to f_mkfs().
|
||||||
|
Added rewind option to f_readdir().
|
||||||
|
Changed result code of critical errors.
|
||||||
|
Renamed string functions to avoid name collision.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.07a (April 14, 2009)
|
||||||
|
|
||||||
|
Septemberarated out OS dependent code on reentrant cfg.
|
||||||
|
Added multiple sector size feature.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.07c (June 21, 2009)
|
||||||
|
|
||||||
|
Fixed f_unlink() can return FR_OK on error.
|
||||||
|
Fixed wrong cache control in f_lseek().
|
||||||
|
Added relative path feature.
|
||||||
|
Added f_chdir() and f_chdrive().
|
||||||
|
Added proper case conversion to extended character.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.07e (November 03, 2009)
|
||||||
|
|
||||||
|
Septemberarated out configuration options from ff.h to ffconf.h.
|
||||||
|
Fixed f_unlink() fails to remove a sub-directory on _FS_RPATH.
|
||||||
|
Fixed name matching error on the 13 character boundary.
|
||||||
|
Added a configuration option, _LFN_UNICODE.
|
||||||
|
Changed f_readdir() to return the SFN with always upper case on non-LFN cfg.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.08 (May 15, 2010)
|
||||||
|
|
||||||
|
Added a memory configuration option. (_USE_LFN = 3)
|
||||||
|
Added file lock feature. (_FS_SHARE)
|
||||||
|
Added fast seek feature. (_USE_FASTSEEK)
|
||||||
|
Changed some types on the API, XCHAR->TCHAR.
|
||||||
|
Changed .fname in the FILINFO structure on Unicode cfg.
|
||||||
|
String functions support UTF-8 encoding files on Unicode cfg.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.08a (August 16, 2010)
|
||||||
|
|
||||||
|
Added f_getcwd(). (_FS_RPATH = 2)
|
||||||
|
Added sector erase feature. (_USE_ERASE)
|
||||||
|
Moved file lock semaphore table from fs object to the bss.
|
||||||
|
Fixed f_mkfs() creates wrong FAT32 volume.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.08b (January 15, 2011)
|
||||||
|
|
||||||
|
Fast seek feature is also applied to f_read() and f_write().
|
||||||
|
f_lseek() reports required table size on creating CLMP.
|
||||||
|
Extended format syntax of f_printf().
|
||||||
|
Ignores duplicated directory separators in given path name.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.09 (September 06, 2011)
|
||||||
|
|
||||||
|
f_mkfs() supports multiple partition to complete the multiple partition feature.
|
||||||
|
Added f_fdisk().
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.09a (August 27, 2012)
|
||||||
|
|
||||||
|
Changed f_open() and f_opendir() reject null object pointer to avoid crash.
|
||||||
|
Changed option name _FS_SHARE to _FS_LOCK.
|
||||||
|
Fixed assertion failure due to OS/2 EA on FAT12/16 volume.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.09b (January 24, 2013)
|
||||||
|
|
||||||
|
Added f_setlabel() and f_getlabel().
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.10 (October 02, 2013)
|
||||||
|
|
||||||
|
Added selection of character encoding on the file. (_STRF_ENCODE)
|
||||||
|
Added f_closedir().
|
||||||
|
Added forced full FAT scan for f_getfree(). (_FS_NOFSINFO)
|
||||||
|
Added forced mount feature with changes of f_mount().
|
||||||
|
Improved behavior of volume auto detection.
|
||||||
|
Improved write throughput of f_puts() and f_printf().
|
||||||
|
Changed argument of f_chdrive(), f_mkfs(), disk_read() and disk_write().
|
||||||
|
Fixed f_write() can be truncated when the file size is close to 4GB.
|
||||||
|
Fixed f_open(), f_mkdir() and f_setlabel() can return incorrect value on error.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.10a (January 15, 2014)
|
||||||
|
|
||||||
|
Added arbitrary strings as drive number in the path name. (_STR_VOLUME_ID)
|
||||||
|
Added a configuration option of minimum sector size. (_MIN_SS)
|
||||||
|
2nd argument of f_rename() can have a drive number and it will be ignored.
|
||||||
|
Fixed f_mount() with forced mount fails when drive number is >= 1. (appeared at R0.10)
|
||||||
|
Fixed f_close() invalidates the file object without volume lock.
|
||||||
|
Fixed f_closedir() returns but the volume lock is left acquired. (appeared at R0.10)
|
||||||
|
Fixed creation of an entry with LFN fails on too many SFN collisions. (appeared at R0.07)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.10b (May 19, 2014)
|
||||||
|
|
||||||
|
Fixed a hard error in the disk I/O layer can collapse the directory entry.
|
||||||
|
Fixed LFN entry is not deleted when delete/rename an object with lossy converted SFN. (appeared at R0.07)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.10c (November 09, 2014)
|
||||||
|
|
||||||
|
Added a configuration option for the platforms without RTC. (_FS_NORTC)
|
||||||
|
Changed option name _USE_ERASE to _USE_TRIM.
|
||||||
|
Fixed volume label created by Mac OS X cannot be retrieved with f_getlabel(). (appeared at R0.09b)
|
||||||
|
Fixed a potential problem of FAT access that can appear on disk error.
|
||||||
|
Fixed null pointer dereference on attempting to delete the root direcotry. (appeared at R0.08)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.11 (February 09, 2015)
|
||||||
|
|
||||||
|
Added f_findfirst(), f_findnext() and f_findclose(). (_USE_FIND)
|
||||||
|
Fixed f_unlink() does not remove cluster chain of the file. (appeared at R0.10c)
|
||||||
|
Fixed _FS_NORTC option does not work properly. (appeared at R0.10c)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.11a (September 05, 2015)
|
||||||
|
|
||||||
|
Fixed wrong media change can lead a deadlock at thread-safe configuration.
|
||||||
|
Added code page 771, 860, 861, 863, 864, 865 and 869. (_CODE_PAGE)
|
||||||
|
Removed some code pages actually not exist on the standard systems. (_CODE_PAGE)
|
||||||
|
Fixed errors in the case conversion teble of code page 437 and 850 (ff.c).
|
||||||
|
Fixed errors in the case conversion teble of Unicode (cc*.c).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.12 (April 12, 2016)
|
||||||
|
|
||||||
|
Added support for exFAT file system. (_FS_EXFAT)
|
||||||
|
Added f_expand(). (_USE_EXPAND)
|
||||||
|
Changed some members in FINFO structure and behavior of f_readdir().
|
||||||
|
Added an option _USE_CHMOD.
|
||||||
|
Removed an option _WORD_ACCESS.
|
||||||
|
Fixed errors in the case conversion table of Unicode (cc*.c).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.12a (July 10, 2016)
|
||||||
|
|
||||||
|
Added support for creating exFAT volume with some changes of f_mkfs().
|
||||||
|
Added a file open method FA_OPEN_APPEND. An f_lseek() following f_open() is no longer needed.
|
||||||
|
f_forward() is available regardless of _FS_TINY.
|
||||||
|
Fixed f_mkfs() creates wrong volume. (appeared at R0.12)
|
||||||
|
Fixed wrong memory read in create_name(). (appeared at R0.12)
|
||||||
|
Fixed compilation fails at some configurations, _USE_FASTSEEK and _USE_FORWARD.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.12b (September 04, 2016)
|
||||||
|
|
||||||
|
Made f_rename() be able to rename objects with the same name but case.
|
||||||
|
Fixed an error in the case conversion teble of code page 866. (ff.c)
|
||||||
|
Fixed writing data is truncated at the file offset 4GiB on the exFAT volume. (appeared at R0.12)
|
||||||
|
Fixed creating a file in the root directory of exFAT volume can fail. (appeared at R0.12)
|
||||||
|
Fixed f_mkfs() creating exFAT volume with too small cluster size can collapse unallocated memory. (appeared at R0.12)
|
||||||
|
Fixed wrong object name can be returned when read directory at Unicode cfg. (appeared at R0.12)
|
||||||
|
Fixed large file allocation/removing on the exFAT volume collapses allocation bitmap. (appeared at R0.12)
|
||||||
|
Fixed some internal errors in f_expand() and f_lseek(). (appeared at R0.12)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.12c (March 04, 2017)
|
||||||
|
|
||||||
|
Improved write throughput at the fragmented file on the exFAT volume.
|
||||||
|
Made memory usage for exFAT be able to be reduced as decreasing _MAX_LFN.
|
||||||
|
Fixed successive f_getfree() can return wrong count on the FAT12/16 volume. (appeared at R0.12)
|
||||||
|
Fixed configuration option _VOLUMES cannot be set 10. (appeared at R0.10c)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.13 (May 21, 2017)
|
||||||
|
|
||||||
|
Changed heading character of configuration keywords "_" to "FF_".
|
||||||
|
Removed ASCII-only configuration, FF_CODE_PAGE = 1. Use FF_CODE_PAGE = 437 instead.
|
||||||
|
Added f_setcp(), run-time code page configuration. (FF_CODE_PAGE = 0)
|
||||||
|
Improved cluster allocation time on stretch a deep buried cluster chain.
|
||||||
|
Improved processing time of f_mkdir() with large cluster size by using FF_USE_LFN = 3.
|
||||||
|
Improved NoFatChain flag of the fragmented file to be set after it is truncated and got contiguous.
|
||||||
|
Fixed archive attribute is left not set when a file on the exFAT volume is renamed. (appeared at R0.12)
|
||||||
|
Fixed exFAT FAT entry can be collapsed when write or lseek operation to the existing file is done. (appeared at R0.12c)
|
||||||
|
Fixed creating a file can fail when a new cluster allocation to the exFAT directory occures. (appeared at R0.12c)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.13a (October 14, 2017)
|
||||||
|
|
||||||
|
Added support for UTF-8 encoding on the API. (FF_LFN_UNICODE = 2)
|
||||||
|
Added options for file name output buffer. (FF_LFN_BUF, FF_SFN_BUF).
|
||||||
|
Added dynamic memory allocation option for working buffer of f_mkfs() and f_fdisk().
|
||||||
|
Fixed f_fdisk() and f_mkfs() create the partition table with wrong CHS parameters. (appeared at R0.09)
|
||||||
|
Fixed f_unlink() can cause lost clusters at fragmented file on the exFAT volume. (appeared at R0.12c)
|
||||||
|
Fixed f_setlabel() rejects some valid characters for exFAT volume. (appeared at R0.12)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.13b (April 07, 2018)
|
||||||
|
|
||||||
|
Added support for UTF-32 encoding on the API. (FF_LFN_UNICODE = 3)
|
||||||
|
Added support for Unix style volume ID. (FF_STR_VOLUME_ID = 2)
|
||||||
|
Fixed accesing any object on the exFAT root directory beyond the cluster boundary can fail. (appeared at R0.12c)
|
||||||
|
Fixed f_setlabel() does not reject some invalid characters. (appeared at R0.09b)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.13c (October 14, 2018)
|
||||||
|
Supported stdint.h for C99 and later. (integer.h was included in ff.h)
|
||||||
|
Fixed reading a directory gets infinite loop when the last directory entry is not empty. (appeared at R0.12)
|
||||||
|
Fixed creating a sub-directory in the fragmented sub-directory on the exFAT volume collapses FAT chain of the parent directory. (appeared at R0.12)
|
||||||
|
Fixed f_getcwd() cause output buffer overrun when the buffer has a valid drive number. (appeared at R0.13b)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.14 (October 14, 2019)
|
||||||
|
Added support for 64-bit LBA and GUID partition table (FF_LBA64 = 1)
|
||||||
|
Changed some API functions, f_mkfs() and f_fdisk().
|
||||||
|
Fixed f_open() function cannot find the file with file name in length of FF_MAX_LFN characters.
|
||||||
|
Fixed f_readdir() function cannot retrieve long file names in length of FF_MAX_LFN - 1 characters.
|
||||||
|
Fixed f_readdir() function returns file names with wrong case conversion. (appeared at R0.12)
|
||||||
|
Fixed f_mkfs() function can fail to create exFAT volume in the second partition. (appeared at R0.12)
|
||||||
|
|
||||||
|
|
||||||
|
R0.14a (December 5, 2020)
|
||||||
|
Limited number of recursive calls in f_findnext().
|
||||||
|
Fixed old floppy disks formatted with MS-DOS 2.x and 3.x cannot be mounted.
|
||||||
|
Fixed some compiler warnings.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
R0.14b (April 17, 2021)
|
||||||
|
Made FatFs uses standard library <string.h> for copy, compare and search instead of built-in string functions.
|
||||||
|
Added support for long long integer and floating point to f_printf(). (FF_STRF_LLI and FF_STRF_FP)
|
||||||
|
Made path name parser ignore the terminating separator to allow "dir/".
|
||||||
|
Improved the compatibility in Unix style path name feature.
|
||||||
|
Fixed the file gets dead-locked when f_open() failed with some conditions. (appeared at R0.12a)
|
||||||
|
Fixed f_mkfs() can create wrong exFAT volume due to a timing dependent error. (appeared at R0.12)
|
||||||
|
Fixed code page 855 cannot be set by f_setcp().
|
||||||
|
Fixed some compiler warnings.
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
FatFs Module Source Files R0.14b
|
||||||
|
|
||||||
|
|
||||||
|
FILES
|
||||||
|
|
||||||
|
00readme.txt This file.
|
||||||
|
00history.txt Revision history.
|
||||||
|
ff.c FatFs module.
|
||||||
|
ffconf.h Configuration file of FatFs module.
|
||||||
|
ff.h Common include file for FatFs and application module.
|
||||||
|
diskio.h Common include file for FatFs and disk I/O module.
|
||||||
|
diskio.c An example of glue function to attach existing disk I/O module to FatFs.
|
||||||
|
ffunicode.c Optional Unicode utility functions.
|
||||||
|
ffsystem.c An example of optional O/S related functions.
|
||||||
|
|
||||||
|
|
||||||
|
Low level disk I/O module is not included in this archive because the FatFs
|
||||||
|
module is only a generic file system layer and it does not depend on any specific
|
||||||
|
storage device. You need to provide a low level disk I/O module written to
|
||||||
|
control the storage device that attached to the target system.
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
# RT-Thread building script for component
|
||||||
|
|
||||||
|
from building import *
|
||||||
|
|
||||||
|
cwd = GetCurrentDir()
|
||||||
|
src = Glob('*.c')
|
||||||
|
CPPPATH = [cwd]
|
||||||
|
|
||||||
|
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_ELMFAT'], CPPPATH = CPPPATH)
|
||||||
|
|
||||||
|
Return('group')
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,24 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*
|
||||||
|
* Change Logs:
|
||||||
|
* Date Author Notes
|
||||||
|
* 2010-02-06 Bernard Add elm_init function declaration
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __DFS_ELM_H__
|
||||||
|
#define __DFS_ELM_H__
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int elm_init(void);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
|
@ -0,0 +1,77 @@
|
||||||
|
/*-----------------------------------------------------------------------/
|
||||||
|
/ Low level disk interface modlue include file (C)ChaN, 2019 /
|
||||||
|
/-----------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifndef _DISKIO_DEFINED
|
||||||
|
#define _DISKIO_DEFINED
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Status of Disk Functions */
|
||||||
|
typedef BYTE DSTATUS;
|
||||||
|
|
||||||
|
/* Results of Disk Functions */
|
||||||
|
typedef enum {
|
||||||
|
RES_OK = 0, /* 0: Successful */
|
||||||
|
RES_ERROR, /* 1: R/W Error */
|
||||||
|
RES_WRPRT, /* 2: Write Protected */
|
||||||
|
RES_NOTRDY, /* 3: Not Ready */
|
||||||
|
RES_PARERR /* 4: Invalid Parameter */
|
||||||
|
} DRESULT;
|
||||||
|
|
||||||
|
|
||||||
|
/*---------------------------------------*/
|
||||||
|
/* Prototypes for disk control functions */
|
||||||
|
|
||||||
|
|
||||||
|
DSTATUS disk_initialize (BYTE pdrv);
|
||||||
|
DSTATUS disk_status (BYTE pdrv);
|
||||||
|
DRESULT disk_read (BYTE pdrv, BYTE* buff, LBA_t sector, UINT count);
|
||||||
|
DRESULT disk_write (BYTE pdrv, const BYTE* buff, LBA_t sector, UINT count);
|
||||||
|
DRESULT disk_ioctl (BYTE pdrv, BYTE cmd, void* buff);
|
||||||
|
|
||||||
|
|
||||||
|
/* Disk Status Bits (DSTATUS) */
|
||||||
|
|
||||||
|
#define STA_NOINIT 0x01 /* Drive not initialized */
|
||||||
|
#define STA_NODISK 0x02 /* No medium in the drive */
|
||||||
|
#define STA_PROTECT 0x04 /* Write protected */
|
||||||
|
|
||||||
|
|
||||||
|
/* Command code for disk_ioctrl fucntion */
|
||||||
|
|
||||||
|
/* Generic command (Used by FatFs) */
|
||||||
|
#define CTRL_SYNC 0 /* Complete pending write process (needed at FF_FS_READONLY == 0) */
|
||||||
|
#define GET_SECTOR_COUNT 1 /* Get media size (needed at FF_USE_MKFS == 1) */
|
||||||
|
#define GET_SECTOR_SIZE 2 /* Get sector size (needed at FF_MAX_SS != FF_MIN_SS) */
|
||||||
|
#define GET_BLOCK_SIZE 3 /* Get erase block size (needed at FF_USE_MKFS == 1) */
|
||||||
|
#define CTRL_TRIM 4 /* Inform device that the data on the block of sectors is no longer used (needed at FF_USE_TRIM == 1) */
|
||||||
|
|
||||||
|
/* Generic command (Not used by FatFs) */
|
||||||
|
#define CTRL_POWER 5 /* Get/Set power status */
|
||||||
|
#define CTRL_LOCK 6 /* Lock/Unlock media removal */
|
||||||
|
#define CTRL_EJECT 7 /* Eject media */
|
||||||
|
#define CTRL_FORMAT 8 /* Create physical format on the media */
|
||||||
|
|
||||||
|
/* MMC/SDC specific ioctl command */
|
||||||
|
#define MMC_GET_TYPE 10 /* Get card type */
|
||||||
|
#define MMC_GET_CSD 11 /* Get CSD */
|
||||||
|
#define MMC_GET_CID 12 /* Get CID */
|
||||||
|
#define MMC_GET_OCR 13 /* Get OCR */
|
||||||
|
#define MMC_GET_SDSTAT 14 /* Get SD status */
|
||||||
|
#define ISDIO_READ 55 /* Read data form SD iSDIO register */
|
||||||
|
#define ISDIO_WRITE 56 /* Write data to SD iSDIO register */
|
||||||
|
#define ISDIO_MRITE 57 /* Masked write data to SD iSDIO register */
|
||||||
|
|
||||||
|
/* ATA/CF specific ioctl command */
|
||||||
|
#define ATA_GET_REV 20 /* Get F/W revision */
|
||||||
|
#define ATA_GET_MODEL 21 /* Get model name */
|
||||||
|
#define ATA_GET_SN 22 /* Get serial number */
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,424 @@
|
||||||
|
/*----------------------------------------------------------------------------/
|
||||||
|
/ FatFs - Generic FAT Filesystem module R0.14b /
|
||||||
|
/-----------------------------------------------------------------------------/
|
||||||
|
/
|
||||||
|
/ Copyright (C) 2021, ChaN, all right reserved.
|
||||||
|
/
|
||||||
|
/ FatFs module is an open source software. Redistribution and use of FatFs in
|
||||||
|
/ source and binary forms, with or without modification, are permitted provided
|
||||||
|
/ that the following condition is met:
|
||||||
|
|
||||||
|
/ 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
/ this condition and the following disclaimer.
|
||||||
|
/
|
||||||
|
/ This software is provided by the copyright holder and contributors "AS IS"
|
||||||
|
/ and any warranties related to this software are DISCLAIMED.
|
||||||
|
/ The copyright owner or contributors be NOT LIABLE for any damages caused
|
||||||
|
/ by use of this software.
|
||||||
|
/
|
||||||
|
/----------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef FF_DEFINED
|
||||||
|
#define FF_DEFINED 86631 /* Revision ID */
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <rtthread.h>
|
||||||
|
#include "ffconf.h" /* FatFs configuration options */
|
||||||
|
|
||||||
|
#if FF_DEFINED != FFCONF_DEF
|
||||||
|
#error Wrong configuration file (ffconf.h).
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Integer types used for FatFs API */
|
||||||
|
|
||||||
|
#if defined(_WIN32) /* Windows VC++ (for development only) */
|
||||||
|
#define FF_INTDEF 2
|
||||||
|
#include <windows.h>
|
||||||
|
typedef unsigned __int64 QWORD;
|
||||||
|
#include <float.h>
|
||||||
|
#define isnan(v) _isnan(v)
|
||||||
|
#define isinf(v) (!_finite(v))
|
||||||
|
|
||||||
|
#elif (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__cplusplus) /* C99 or later */
|
||||||
|
#define FF_INTDEF 2
|
||||||
|
#include <stdint.h>
|
||||||
|
typedef unsigned int UINT; /* int must be 16-bit or 32-bit */
|
||||||
|
typedef unsigned char BYTE; /* char must be 8-bit */
|
||||||
|
typedef uint16_t WORD; /* 16-bit unsigned integer */
|
||||||
|
typedef uint32_t DWORD; /* 32-bit unsigned integer */
|
||||||
|
typedef uint64_t QWORD; /* 64-bit unsigned integer */
|
||||||
|
typedef WORD WCHAR; /* UTF-16 character type */
|
||||||
|
|
||||||
|
#else /* Earlier than C99 */
|
||||||
|
#define FF_INTDEF 1
|
||||||
|
typedef unsigned int UINT; /* int must be 16-bit or 32-bit */
|
||||||
|
typedef unsigned char BYTE; /* char must be 8-bit */
|
||||||
|
typedef unsigned short WORD; /* 16-bit unsigned integer */
|
||||||
|
typedef unsigned long DWORD; /* 32-bit unsigned integer */
|
||||||
|
typedef WORD WCHAR; /* UTF-16 character type */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Type of file size and LBA variables */
|
||||||
|
|
||||||
|
#if FF_FS_EXFAT
|
||||||
|
#if FF_INTDEF != 2
|
||||||
|
#error exFAT feature wants C99 or later
|
||||||
|
#endif
|
||||||
|
typedef QWORD FSIZE_t;
|
||||||
|
#if FF_LBA64
|
||||||
|
typedef QWORD LBA_t;
|
||||||
|
#else
|
||||||
|
typedef DWORD LBA_t;
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
|
#if FF_LBA64
|
||||||
|
#error exFAT needs to be enabled when enable 64-bit LBA
|
||||||
|
#endif
|
||||||
|
typedef DWORD FSIZE_t;
|
||||||
|
typedef DWORD LBA_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Type of path name strings on FatFs API (TCHAR) */
|
||||||
|
|
||||||
|
#if FF_USE_LFN && FF_LFN_UNICODE == 1 /* Unicode in UTF-16 encoding */
|
||||||
|
typedef WCHAR TCHAR;
|
||||||
|
#define _T(x) L ## x
|
||||||
|
#define _TEXT(x) L ## x
|
||||||
|
#elif FF_USE_LFN && FF_LFN_UNICODE == 2 /* Unicode in UTF-8 encoding */
|
||||||
|
typedef char TCHAR;
|
||||||
|
#define _T(x) u8 ## x
|
||||||
|
#define _TEXT(x) u8 ## x
|
||||||
|
#elif FF_USE_LFN && FF_LFN_UNICODE == 3 /* Unicode in UTF-32 encoding */
|
||||||
|
typedef DWORD TCHAR;
|
||||||
|
#define _T(x) U ## x
|
||||||
|
#define _TEXT(x) U ## x
|
||||||
|
#elif FF_USE_LFN && (FF_LFN_UNICODE < 0 || FF_LFN_UNICODE > 3)
|
||||||
|
#error Wrong FF_LFN_UNICODE setting
|
||||||
|
#else /* ANSI/OEM code in SBCS/DBCS */
|
||||||
|
typedef char TCHAR;
|
||||||
|
#define _T(x) x
|
||||||
|
#define _TEXT(x) x
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Definitions of volume management */
|
||||||
|
|
||||||
|
#if FF_MULTI_PARTITION /* Multiple partition configuration */
|
||||||
|
typedef struct {
|
||||||
|
BYTE pd; /* Physical drive number */
|
||||||
|
BYTE pt; /* Partition: 0:Auto detect, 1-4:Forced partition) */
|
||||||
|
} PARTITION;
|
||||||
|
extern PARTITION VolToPart[]; /* Volume - Partition mapping table */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if FF_STR_VOLUME_ID
|
||||||
|
#ifndef FF_VOLUME_STRS
|
||||||
|
extern const char* VolumeStr[FF_VOLUMES]; /* User defied volume ID */
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Filesystem object structure (FATFS) */
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
BYTE fs_type; /* Filesystem type (0:not mounted) */
|
||||||
|
BYTE pdrv; /* Associated physical drive */
|
||||||
|
BYTE n_fats; /* Number of FATs (1 or 2) */
|
||||||
|
BYTE wflag; /* win[] flag (b0:dirty) */
|
||||||
|
BYTE fsi_flag; /* FSINFO flags (b7:disabled, b0:dirty) */
|
||||||
|
WORD id; /* Volume mount ID */
|
||||||
|
WORD n_rootdir; /* Number of root directory entries (FAT12/16) */
|
||||||
|
WORD csize; /* Cluster size [sectors] */
|
||||||
|
#if FF_MAX_SS != FF_MIN_SS
|
||||||
|
WORD ssize; /* Sector size (512, 1024, 2048 or 4096) */
|
||||||
|
#endif
|
||||||
|
#if FF_USE_LFN
|
||||||
|
WCHAR* lfnbuf; /* LFN working buffer */
|
||||||
|
#endif
|
||||||
|
#if FF_FS_EXFAT
|
||||||
|
BYTE* dirbuf; /* Directory entry block scratchpad buffer for exFAT */
|
||||||
|
#endif
|
||||||
|
#if FF_FS_REENTRANT
|
||||||
|
FF_SYNC_t sobj; /* Identifier of sync object */
|
||||||
|
#endif
|
||||||
|
#if !FF_FS_READONLY
|
||||||
|
DWORD last_clst; /* Last allocated cluster */
|
||||||
|
DWORD free_clst; /* Number of free clusters */
|
||||||
|
#endif
|
||||||
|
#if FF_FS_RPATH
|
||||||
|
DWORD cdir; /* Current directory start cluster (0:root) */
|
||||||
|
#if FF_FS_EXFAT
|
||||||
|
DWORD cdc_scl; /* Containing directory start cluster (invalid when cdir is 0) */
|
||||||
|
DWORD cdc_size; /* b31-b8:Size of containing directory, b7-b0: Chain status */
|
||||||
|
DWORD cdc_ofs; /* Offset in the containing directory (invalid when cdir is 0) */
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
DWORD n_fatent; /* Number of FAT entries (number of clusters + 2) */
|
||||||
|
DWORD fsize; /* Size of an FAT [sectors] */
|
||||||
|
LBA_t volbase; /* Volume base sector */
|
||||||
|
LBA_t fatbase; /* FAT base sector */
|
||||||
|
LBA_t dirbase; /* Root directory base sector/cluster */
|
||||||
|
LBA_t database; /* Data base sector */
|
||||||
|
#if FF_FS_EXFAT
|
||||||
|
LBA_t bitbase; /* Allocation bitmap base sector */
|
||||||
|
#endif
|
||||||
|
LBA_t winsect; /* Current sector appearing in the win[] */
|
||||||
|
BYTE win[FF_MAX_SS]; /* Disk access window for Directory, FAT (and file data at tiny cfg) */
|
||||||
|
} FATFS;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Object ID and allocation information (FFOBJID) */
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
FATFS* fs; /* Pointer to the hosting volume of this object */
|
||||||
|
WORD id; /* Hosting volume mount ID */
|
||||||
|
BYTE attr; /* Object attribute */
|
||||||
|
BYTE stat; /* Object chain status (b1-0: =0:not contiguous, =2:contiguous, =3:fragmented in this session, b2:sub-directory stretched) */
|
||||||
|
DWORD sclust; /* Object data start cluster (0:no cluster or root directory) */
|
||||||
|
FSIZE_t objsize; /* Object size (valid when sclust != 0) */
|
||||||
|
#if FF_FS_EXFAT
|
||||||
|
DWORD n_cont; /* Size of first fragment - 1 (valid when stat == 3) */
|
||||||
|
DWORD n_frag; /* Size of last fragment needs to be written to FAT (valid when not zero) */
|
||||||
|
DWORD c_scl; /* Containing directory start cluster (valid when sclust != 0) */
|
||||||
|
DWORD c_size; /* b31-b8:Size of containing directory, b7-b0: Chain status (valid when c_scl != 0) */
|
||||||
|
DWORD c_ofs; /* Offset in the containing directory (valid when file object and sclust != 0) */
|
||||||
|
#endif
|
||||||
|
#if FF_FS_LOCK
|
||||||
|
UINT lockid; /* File lock ID origin from 1 (index of file semaphore table Files[]) */
|
||||||
|
#endif
|
||||||
|
} FFOBJID;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* File object structure (FIL) */
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
FFOBJID obj; /* Object identifier (must be the 1st member to detect invalid object pointer) */
|
||||||
|
BYTE flag; /* File status flags */
|
||||||
|
BYTE err; /* Abort flag (error code) */
|
||||||
|
FSIZE_t fptr; /* File read/write pointer (Zeroed on file open) */
|
||||||
|
DWORD clust; /* Current cluster of fpter (invalid when fptr is 0) */
|
||||||
|
LBA_t sect; /* Sector number appearing in buf[] (0:invalid) */
|
||||||
|
#if !FF_FS_READONLY
|
||||||
|
LBA_t dir_sect; /* Sector number containing the directory entry (not used at exFAT) */
|
||||||
|
BYTE* dir_ptr; /* Pointer to the directory entry in the win[] (not used at exFAT) */
|
||||||
|
#endif
|
||||||
|
#if FF_USE_FASTSEEK
|
||||||
|
DWORD* cltbl; /* Pointer to the cluster link map table (nulled on open, set by application) */
|
||||||
|
#endif
|
||||||
|
#if !FF_FS_TINY
|
||||||
|
BYTE buf[FF_MAX_SS]; /* File private data read/write window */
|
||||||
|
#endif
|
||||||
|
} FIL;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Directory object structure (DIR) */
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
FFOBJID obj; /* Object identifier */
|
||||||
|
DWORD dptr; /* Current read/write offset */
|
||||||
|
DWORD clust; /* Current cluster */
|
||||||
|
LBA_t sect; /* Current sector (0:Read operation has terminated) */
|
||||||
|
BYTE* dir; /* Pointer to the directory item in the win[] */
|
||||||
|
BYTE fn[12]; /* SFN (in/out) {body[8],ext[3],status[1]} */
|
||||||
|
#if FF_USE_LFN
|
||||||
|
DWORD blk_ofs; /* Offset of current entry block being processed (0xFFFFFFFF:Invalid) */
|
||||||
|
#endif
|
||||||
|
#if FF_USE_FIND
|
||||||
|
const TCHAR* pat; /* Pointer to the name matching pattern */
|
||||||
|
#endif
|
||||||
|
} DIR;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* File information structure (FILINFO) */
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
FSIZE_t fsize; /* File size */
|
||||||
|
WORD fdate; /* Modified date */
|
||||||
|
WORD ftime; /* Modified time */
|
||||||
|
BYTE fattrib; /* File attribute */
|
||||||
|
#if FF_USE_LFN
|
||||||
|
TCHAR altname[FF_SFN_BUF + 1];/* Altenative file name */
|
||||||
|
TCHAR fname[FF_LFN_BUF + 1]; /* Primary file name */
|
||||||
|
#else
|
||||||
|
TCHAR fname[12 + 1]; /* File name */
|
||||||
|
#endif
|
||||||
|
} FILINFO;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Format parameter structure (MKFS_PARM) */
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
BYTE fmt; /* Format option (FM_FAT, FM_FAT32, FM_EXFAT and FM_SFD) */
|
||||||
|
BYTE n_fat; /* Number of FATs */
|
||||||
|
UINT align; /* Data area alignment (sector) */
|
||||||
|
UINT n_root; /* Number of root directory entries */
|
||||||
|
DWORD au_size; /* Cluster size (byte) */
|
||||||
|
} MKFS_PARM;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* File function return code (FRESULT) */
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
FR_OK = 0, /* (0) Succeeded */
|
||||||
|
FR_DISK_ERR, /* (1) A hard error occurred in the low level disk I/O layer */
|
||||||
|
FR_INT_ERR, /* (2) Assertion failed */
|
||||||
|
FR_NOT_READY, /* (3) The physical drive cannot work */
|
||||||
|
FR_NO_FILE, /* (4) Could not find the file */
|
||||||
|
FR_NO_PATH, /* (5) Could not find the path */
|
||||||
|
FR_INVALID_NAME, /* (6) The path name format is invalid */
|
||||||
|
FR_DENIED, /* (7) Access denied due to prohibited access or directory full */
|
||||||
|
FR_EXIST, /* (8) Access denied due to prohibited access */
|
||||||
|
FR_INVALID_OBJECT, /* (9) The file/directory object is invalid */
|
||||||
|
FR_WRITE_PROTECTED, /* (10) The physical drive is write protected */
|
||||||
|
FR_INVALID_DRIVE, /* (11) The logical drive number is invalid */
|
||||||
|
FR_NOT_ENABLED, /* (12) The volume has no work area */
|
||||||
|
FR_NO_FILESYSTEM, /* (13) There is no valid FAT volume */
|
||||||
|
FR_MKFS_ABORTED, /* (14) The f_mkfs() aborted due to any problem */
|
||||||
|
FR_TIMEOUT, /* (15) Could not get a grant to access the volume within defined period */
|
||||||
|
FR_LOCKED, /* (16) The operation is rejected according to the file sharing policy */
|
||||||
|
FR_NOT_ENOUGH_CORE, /* (17) LFN working buffer could not be allocated */
|
||||||
|
FR_TOO_MANY_OPEN_FILES, /* (18) Number of open files > FF_FS_LOCK */
|
||||||
|
FR_INVALID_PARAMETER /* (19) Given parameter is invalid */
|
||||||
|
} FRESULT;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------*/
|
||||||
|
/* FatFs module application interface */
|
||||||
|
|
||||||
|
FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */
|
||||||
|
FRESULT f_close (FIL* fp); /* Close an open file object */
|
||||||
|
FRESULT f_read (FIL* fp, void* buff, UINT btr, UINT* br); /* Read data from the file */
|
||||||
|
FRESULT f_write (FIL* fp, const void* buff, UINT btw, UINT* bw); /* Write data to the file */
|
||||||
|
FRESULT f_lseek (FIL* fp, FSIZE_t ofs); /* Move file pointer of the file object */
|
||||||
|
FRESULT f_truncate (FIL* fp); /* Truncate the file */
|
||||||
|
FRESULT f_sync (FIL* fp); /* Flush cached data of the writing file */
|
||||||
|
FRESULT f_opendir (DIR* dp, const TCHAR* path); /* Open a directory */
|
||||||
|
FRESULT f_closedir (DIR* dp); /* Close an open directory */
|
||||||
|
FRESULT f_readdir (DIR* dp, FILINFO* fno); /* Read a directory item */
|
||||||
|
FRESULT f_seekdir(DIR *dj, int offset); /* Seek in directory */
|
||||||
|
FRESULT f_findfirst (DIR* dp, FILINFO* fno, const TCHAR* path, const TCHAR* pattern); /* Find first file */
|
||||||
|
FRESULT f_findnext (DIR* dp, FILINFO* fno); /* Find next file */
|
||||||
|
FRESULT f_mkdir (const TCHAR* path); /* Create a sub directory */
|
||||||
|
FRESULT f_unlink (const TCHAR* path); /* Delete an existing file or directory */
|
||||||
|
FRESULT f_rename (const TCHAR* path_old, const TCHAR* path_new); /* Rename/Move a file or directory */
|
||||||
|
FRESULT f_stat (const TCHAR* path, FILINFO* fno); /* Get file status */
|
||||||
|
FRESULT f_chmod (const TCHAR* path, BYTE attr, BYTE mask); /* Change attribute of a file/dir */
|
||||||
|
FRESULT f_utime (const TCHAR* path, const FILINFO* fno); /* Change timestamp of a file/dir */
|
||||||
|
FRESULT f_chdir (const TCHAR* path); /* Change current directory */
|
||||||
|
FRESULT f_chdrive (const TCHAR* path); /* Change current drive */
|
||||||
|
FRESULT f_getcwd (TCHAR* buff, UINT len); /* Get current directory */
|
||||||
|
FRESULT f_getfree (const TCHAR* path, DWORD* nclst, FATFS** fatfs); /* Get number of free clusters on the drive */
|
||||||
|
FRESULT f_getlabel (const TCHAR* path, TCHAR* label, DWORD* vsn); /* Get volume label */
|
||||||
|
FRESULT f_setlabel (const TCHAR* label); /* Set volume label */
|
||||||
|
FRESULT f_forward (FIL* fp, UINT(*func)(const BYTE*,UINT), UINT btf, UINT* bf); /* Forward data to the stream */
|
||||||
|
FRESULT f_expand (FIL* fp, FSIZE_t fsz, BYTE opt); /* Allocate a contiguous block to the file */
|
||||||
|
FRESULT f_mount (FATFS* fs, const TCHAR* path, BYTE opt); /* Mount/Unmount a logical drive */
|
||||||
|
FRESULT f_mkfs (const TCHAR* path, const MKFS_PARM* opt, void* work, UINT len); /* Create a FAT volume */
|
||||||
|
FRESULT f_fdisk (BYTE pdrv, const LBA_t ptbl[], void* work); /* Divide a physical drive into some partitions */
|
||||||
|
FRESULT f_setcp (WORD cp); /* Set current code page */
|
||||||
|
int f_putc (TCHAR c, FIL* fp); /* Put a character to the file */
|
||||||
|
int f_puts (const TCHAR* str, FIL* cp); /* Put a string to the file */
|
||||||
|
int f_printf (FIL* fp, const TCHAR* str, ...); /* Put a formatted string to the file */
|
||||||
|
TCHAR* f_gets (TCHAR* buff, int len, FIL* fp); /* Get a string from the file */
|
||||||
|
|
||||||
|
#define f_eof(fp) ((int)((fp)->fptr == (fp)->obj.objsize))
|
||||||
|
#define f_error(fp) ((fp)->err)
|
||||||
|
#define f_tell(fp) ((fp)->fptr)
|
||||||
|
#define f_size(fp) ((fp)->obj.objsize)
|
||||||
|
#define f_rewind(fp) f_lseek((fp), 0)
|
||||||
|
#define f_rewinddir(dp) f_readdir((dp), 0)
|
||||||
|
#define f_rmdir(path) f_unlink(path)
|
||||||
|
#define f_unmount(path) f_mount(0, path, 0)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------*/
|
||||||
|
/* Additional user defined functions */
|
||||||
|
|
||||||
|
/* RTC function */
|
||||||
|
#if !FF_FS_READONLY && !FF_FS_NORTC
|
||||||
|
DWORD get_fattime (void);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* LFN support functions */
|
||||||
|
#if FF_USE_LFN >= 1 /* Code conversion (defined in unicode.c) */
|
||||||
|
WCHAR ff_oem2uni (WCHAR oem, WORD cp); /* OEM code to Unicode conversion */
|
||||||
|
WCHAR ff_uni2oem (DWORD uni, WORD cp); /* Unicode to OEM code conversion */
|
||||||
|
DWORD ff_wtoupper (DWORD uni); /* Unicode upper-case conversion */
|
||||||
|
#endif
|
||||||
|
#if FF_USE_LFN == 3 /* Dynamic memory allocation */
|
||||||
|
void* ff_memalloc (UINT msize); /* Allocate memory block */
|
||||||
|
void ff_memfree (void* mblock); /* Free memory block */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Sync functions */
|
||||||
|
#if FF_FS_REENTRANT
|
||||||
|
int ff_cre_syncobj (BYTE vol, FF_SYNC_t* sobj); /* Create a sync object */
|
||||||
|
int ff_req_grant (FF_SYNC_t sobj); /* Lock sync object */
|
||||||
|
void ff_rel_grant (FF_SYNC_t sobj); /* Unlock sync object */
|
||||||
|
int ff_del_syncobj (FF_SYNC_t sobj); /* Delete a sync object */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------*/
|
||||||
|
/* Flags and offset address */
|
||||||
|
|
||||||
|
|
||||||
|
/* File access mode and open method flags (3rd argument of f_open) */
|
||||||
|
#define FA_READ 0x01
|
||||||
|
#define FA_WRITE 0x02
|
||||||
|
#define FA_OPEN_EXISTING 0x00
|
||||||
|
#define FA_CREATE_NEW 0x04
|
||||||
|
#define FA_CREATE_ALWAYS 0x08
|
||||||
|
#define FA_OPEN_ALWAYS 0x10
|
||||||
|
#define FA_OPEN_APPEND 0x30
|
||||||
|
|
||||||
|
/* Fast seek controls (2nd argument of f_lseek) */
|
||||||
|
#define CREATE_LINKMAP ((FSIZE_t)0 - 1)
|
||||||
|
|
||||||
|
/* Format options (2nd argument of f_mkfs) */
|
||||||
|
#define FM_FAT 0x01
|
||||||
|
#define FM_FAT32 0x02
|
||||||
|
#define FM_EXFAT 0x04
|
||||||
|
#define FM_ANY 0x07
|
||||||
|
#define FM_SFD 0x08
|
||||||
|
|
||||||
|
/* Filesystem type (FATFS.fs_type) */
|
||||||
|
#define FS_FAT12 1
|
||||||
|
#define FS_FAT16 2
|
||||||
|
#define FS_FAT32 3
|
||||||
|
#define FS_EXFAT 4
|
||||||
|
|
||||||
|
/* File attribute bits for directory entry (FILINFO.fattrib) */
|
||||||
|
#define AM_RDO 0x01 /* Read only */
|
||||||
|
#define AM_HID 0x02 /* Hidden */
|
||||||
|
#define AM_SYS 0x04 /* System */
|
||||||
|
#define AM_DIR 0x10 /* Directory */
|
||||||
|
#define AM_ARC 0x20 /* Archive */
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* FF_DEFINED */
|
|
@ -0,0 +1,342 @@
|
||||||
|
/*---------------------------------------------------------------------------/
|
||||||
|
/ FatFs Functional Configurations
|
||||||
|
/---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#define FFCONF_DEF 86631 /* Revision ID */
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------/
|
||||||
|
/ Function Configurations
|
||||||
|
/---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#define FF_FS_READONLY 0
|
||||||
|
/* This option switches read-only configuration. (0:Read/Write or 1:Read-only)
|
||||||
|
/ Read-only configuration removes writing API functions, f_write(), f_sync(),
|
||||||
|
/ f_unlink(), f_mkdir(), f_chmod(), f_rename(), f_truncate(), f_getfree()
|
||||||
|
/ and optional writing functions as well. */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_FS_MINIMIZE 0
|
||||||
|
/* This option defines minimization level to remove some basic API functions.
|
||||||
|
/
|
||||||
|
/ 0: Basic functions are fully enabled.
|
||||||
|
/ 1: f_stat(), f_getfree(), f_unlink(), f_mkdir(), f_truncate() and f_rename()
|
||||||
|
/ are removed.
|
||||||
|
/ 2: f_opendir(), f_readdir() and f_closedir() are removed in addition to 1.
|
||||||
|
/ 3: f_lseek() function is removed in addition to 2. */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_USE_FIND 0
|
||||||
|
/* This option switches filtered directory read functions, f_findfirst() and
|
||||||
|
/ f_findnext(). (0:Disable, 1:Enable 2:Enable with matching altname[] too) */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_USE_MKFS 1
|
||||||
|
/* This option switches f_mkfs() function. (0:Disable or 1:Enable) */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_USE_FASTSEEK 1
|
||||||
|
/* This option switches fast seek function. (0:Disable or 1:Enable) */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_USE_EXPAND 0
|
||||||
|
/* This option switches f_expand function. (0:Disable or 1:Enable) */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_USE_CHMOD 0
|
||||||
|
/* This option switches attribute manipulation functions, f_chmod() and f_utime().
|
||||||
|
/ (0:Disable or 1:Enable) Also FF_FS_READONLY needs to be 0 to enable this option. */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_USE_LABEL 0
|
||||||
|
/* This option switches volume label functions, f_getlabel() and f_setlabel().
|
||||||
|
/ (0:Disable or 1:Enable) */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_USE_FORWARD 0
|
||||||
|
/* This option switches f_forward() function. (0:Disable or 1:Enable) */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_USE_STRFUNC 0
|
||||||
|
#define FF_PRINT_LLI 0
|
||||||
|
#define FF_PRINT_FLOAT 0
|
||||||
|
#define FF_STRF_ENCODE 3
|
||||||
|
/* FF_USE_STRFUNC switches string functions, f_gets(), f_putc(), f_puts() and
|
||||||
|
/ f_printf().
|
||||||
|
/
|
||||||
|
/ 0: Disable. FF_PRINT_LLI, FF_PRINT_FLOAT and FF_STRF_ENCODE have no effect.
|
||||||
|
/ 1: Enable without LF-CRLF conversion.
|
||||||
|
/ 2: Enable with LF-CRLF conversion.
|
||||||
|
/
|
||||||
|
/ FF_PRINT_LLI = 1 makes f_printf() support long long argument and FF_PRINT_FLOAT = 1/2
|
||||||
|
makes f_printf() support floating point argument. These features want C99 or later.
|
||||||
|
/ When FF_LFN_UNICODE >= 1 with LFN enabled, string functions convert the character
|
||||||
|
/ encoding in it. FF_STRF_ENCODE selects assumption of character encoding ON THE FILE
|
||||||
|
/ to be read/written via those functions.
|
||||||
|
/
|
||||||
|
/ 0: ANSI/OEM in current CP
|
||||||
|
/ 1: Unicode in UTF-16LE
|
||||||
|
/ 2: Unicode in UTF-16BE
|
||||||
|
/ 3: Unicode in UTF-8
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------/
|
||||||
|
/ Locale and Namespace Configurations
|
||||||
|
/---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifdef RT_DFS_ELM_CODE_PAGE
|
||||||
|
# define FF_CODE_PAGE RT_DFS_ELM_CODE_PAGE
|
||||||
|
#else
|
||||||
|
# define FF_CODE_PAGE 936
|
||||||
|
#endif
|
||||||
|
/* This option specifies the OEM code page to be used on the target system.
|
||||||
|
/ Incorrect code page setting can cause a file open failure.
|
||||||
|
/
|
||||||
|
/ 437 - U.S.
|
||||||
|
/ 720 - Arabic
|
||||||
|
/ 737 - Greek
|
||||||
|
/ 771 - KBL
|
||||||
|
/ 775 - Baltic
|
||||||
|
/ 850 - Latin 1
|
||||||
|
/ 852 - Latin 2
|
||||||
|
/ 855 - Cyrillic
|
||||||
|
/ 857 - Turkish
|
||||||
|
/ 860 - Portuguese
|
||||||
|
/ 861 - Icelandic
|
||||||
|
/ 862 - Hebrew
|
||||||
|
/ 863 - Canadian French
|
||||||
|
/ 864 - Arabic
|
||||||
|
/ 865 - Nordic
|
||||||
|
/ 866 - Russian
|
||||||
|
/ 869 - Greek 2
|
||||||
|
/ 932 - Japanese (DBCS)
|
||||||
|
/ 936 - Simplified Chinese (DBCS)
|
||||||
|
/ 949 - Korean (DBCS)
|
||||||
|
/ 950 - Traditional Chinese (DBCS)
|
||||||
|
/ 0 - Include all code pages above and configured by f_setcp()
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#if RT_DFS_ELM_USE_LFN
|
||||||
|
#define FF_USE_LFN RT_DFS_ELM_USE_LFN
|
||||||
|
#define FF_MAX_LFN RT_DFS_ELM_MAX_LFN
|
||||||
|
#else
|
||||||
|
#define FF_USE_LFN 0 /* 0 to 3 */
|
||||||
|
#define FF_MAX_LFN 255 /* Maximum LFN length to handle (12 to 255) */
|
||||||
|
#endif
|
||||||
|
/* The FF_USE_LFN switches the support for LFN (long file name).
|
||||||
|
/
|
||||||
|
/ 0: Disable LFN. FF_MAX_LFN has no effect.
|
||||||
|
/ 1: Enable LFN with static working buffer on the BSS. Always NOT thread-safe.
|
||||||
|
/ 2: Enable LFN with dynamic working buffer on the STACK.
|
||||||
|
/ 3: Enable LFN with dynamic working buffer on the HEAP.
|
||||||
|
/
|
||||||
|
/ To enable the LFN, ffunicode.c needs to be added to the project. The LFN function
|
||||||
|
/ requiers certain internal working buffer occupies (FF_MAX_LFN + 1) * 2 bytes and
|
||||||
|
/ additional (FF_MAX_LFN + 44) / 15 * 32 bytes when exFAT is enabled.
|
||||||
|
/ The FF_MAX_LFN defines size of the working buffer in UTF-16 code unit and it can
|
||||||
|
/ be in range of 12 to 255. It is recommended to be set it 255 to fully support LFN
|
||||||
|
/ specification.
|
||||||
|
/ When use stack for the working buffer, take care on stack overflow. When use heap
|
||||||
|
/ memory for the working buffer, memory management functions, ff_memalloc() and
|
||||||
|
/ ff_memfree() exemplified in ffsystem.c, need to be added to the project. */
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef RT_DFS_ELM_LFN_UNICODE
|
||||||
|
/* This option switches the character encoding on the API when LFN is enabled.
|
||||||
|
/
|
||||||
|
/ 0: ANSI/OEM in current CP (TCHAR = char)
|
||||||
|
/ 1: Unicode in UTF-16 (TCHAR = WCHAR)
|
||||||
|
/ 2: Unicode in UTF-8 (TCHAR = char)
|
||||||
|
/ 3: Unicode in UTF-32 (TCHAR = DWORD)
|
||||||
|
/
|
||||||
|
/ Also behavior of string I/O functions will be affected by this option.
|
||||||
|
/ When LFN is not enabled, this option has no effect. */
|
||||||
|
#define FF_LFN_UNICODE RT_DFS_ELM_LFN_UNICODE /* 0:ANSI/OEM or 1:Unicode */
|
||||||
|
#else
|
||||||
|
#define FF_LFN_UNICODE 0 /* 0:ANSI/OEM or 1:Unicode */
|
||||||
|
#endif
|
||||||
|
/* This option switches the character encoding on the API when LFN is enabled.
|
||||||
|
/
|
||||||
|
/ 0: ANSI/OEM in current CP (TCHAR = char)
|
||||||
|
/ 1: Unicode in UTF-16 (TCHAR = WCHAR)
|
||||||
|
/ 2: Unicode in UTF-8 (TCHAR = char)
|
||||||
|
/ 3: Unicode in UTF-32 (TCHAR = DWORD)
|
||||||
|
/
|
||||||
|
/ Also behavior of string I/O functions will be affected by this option.
|
||||||
|
/ When LFN is not enabled, this option has no effect. */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_LFN_BUF 255
|
||||||
|
#define FF_SFN_BUF 12
|
||||||
|
/* This set of options defines size of file name members in the FILINFO structure
|
||||||
|
/ which is used to read out directory items. These values should be suffcient for
|
||||||
|
/ the file names to read. The maximum possible length of the read file name depends
|
||||||
|
/ on character encoding. When LFN is not enabled, these options have no effect. */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_FS_RPATH 0
|
||||||
|
/* This option configures support for relative path.
|
||||||
|
/
|
||||||
|
/ 0: Disable relative path and remove related functions.
|
||||||
|
/ 1: Enable relative path. f_chdir() and f_chdrive() are available.
|
||||||
|
/ 2: f_getcwd() function is available in addition to 1.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------/
|
||||||
|
/ Drive/Volume Configurations
|
||||||
|
/---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifdef RT_DFS_ELM_DRIVES
|
||||||
|
#define FF_VOLUMES RT_DFS_ELM_DRIVES
|
||||||
|
#else
|
||||||
|
#define FF_VOLUMES 1
|
||||||
|
#endif
|
||||||
|
/* Number of volumes (logical drives) to be used. (1-10) */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_STR_VOLUME_ID 0
|
||||||
|
#define FF_VOLUME_STRS "RAM","NAND","CF","SD","SD2","USB","USB2","USB3"
|
||||||
|
/* FF_STR_VOLUME_ID switches support for volume ID in arbitrary strings.
|
||||||
|
/ When FF_STR_VOLUME_ID is set to 1 or 2, arbitrary strings can be used as drive
|
||||||
|
/ number in the path name. FF_VOLUME_STRS defines the volume ID strings for each
|
||||||
|
/ logical drives. Number of items must not be less than FF_VOLUMES. Valid
|
||||||
|
/ characters for the volume ID strings are A-Z, a-z and 0-9, however, they are
|
||||||
|
/ compared in case-insensitive. If FF_STR_VOLUME_ID >= 1 and FF_VOLUME_STRS is
|
||||||
|
/ not defined, a user defined volume string table needs to be defined as:
|
||||||
|
/
|
||||||
|
/ const char* VolumeStr[FF_VOLUMES] = {"ram","flash","sd","usb",...
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_MULTI_PARTITION 0
|
||||||
|
/* This option switches support for multiple volumes on the physical drive.
|
||||||
|
/ By default (0), each logical drive number is bound to the same physical drive
|
||||||
|
/ number and only an FAT volume found on the physical drive will be mounted.
|
||||||
|
/ When this function is enabled (1), each logical drive number can be bound to
|
||||||
|
/ arbitrary physical drive and partition listed in the VolToPart[]. Also f_fdisk()
|
||||||
|
/ funciton will be available. */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_MIN_SS 512
|
||||||
|
#ifdef RT_DFS_ELM_MAX_SECTOR_SIZE
|
||||||
|
#define FF_MAX_SS RT_DFS_ELM_MAX_SECTOR_SIZE
|
||||||
|
#else
|
||||||
|
#define FF_MAX_SS 512 /* 512, 1024, 2048 or 4096 */
|
||||||
|
#endif
|
||||||
|
/* This set of options configures the range of sector size to be supported. (512,
|
||||||
|
/ 1024, 2048 or 4096) Always set both 512 for most systems, generic memory card and
|
||||||
|
/ harddisk, but a larger value may be required for on-board flash memory and some
|
||||||
|
/ type of optical media. When FF_MAX_SS is larger than FF_MIN_SS, FatFs is configured
|
||||||
|
/ for variable sector size mode and disk_ioctl() function needs to implement
|
||||||
|
/ GET_SECTOR_SIZE command. */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_LBA64 0
|
||||||
|
/* This option switches support for 64-bit LBA. (0:Disable or 1:Enable)
|
||||||
|
/ To enable the 64-bit LBA, also exFAT needs to be enabled. (FF_FS_EXFAT == 1) */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_MIN_GPT 0x10000000
|
||||||
|
/* Minimum number of sectors to switch GPT as partitioning format in f_mkfs and
|
||||||
|
/ f_fdisk function. 0x100000000 max. This option has no effect when FF_LBA64 == 0. */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_USE_TRIM 0
|
||||||
|
/* This option switches support for ATA-TRIM. (0:Disable or 1:Enable)
|
||||||
|
/ To enable Trim function, also CTRL_TRIM command should be implemented to the
|
||||||
|
/ disk_ioctl() function. */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------/
|
||||||
|
/ System Configurations
|
||||||
|
/---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#define FF_FS_TINY 0
|
||||||
|
/* This option switches tiny buffer configuration. (0:Normal or 1:Tiny)
|
||||||
|
/ At the tiny configuration, size of file object (FIL) is shrinked FF_MAX_SS bytes.
|
||||||
|
/ Instead of private sector buffer eliminated from the file object, common sector
|
||||||
|
/ buffer in the filesystem object (FATFS) is used for the file data transfer. */
|
||||||
|
|
||||||
|
#ifdef RT_DFS_ELM_USE_EXFAT
|
||||||
|
#define FF_FS_EXFAT 1
|
||||||
|
#else
|
||||||
|
#define FF_FS_EXFAT 0
|
||||||
|
#endif
|
||||||
|
/* This option switches support for exFAT filesystem. (0:Disable or 1:Enable)
|
||||||
|
/ To enable exFAT, also LFN needs to be enabled. (FF_USE_LFN >= 1)
|
||||||
|
/ Note that enabling exFAT discards ANSI C (C89) compatibility. */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_FS_NORTC 0
|
||||||
|
#define FF_NORTC_MON 1
|
||||||
|
#define FF_NORTC_MDAY 1
|
||||||
|
#define FF_NORTC_YEAR 2020
|
||||||
|
/* The option FF_FS_NORTC switches timestamp functiton. If the system does not have
|
||||||
|
/ any RTC function or valid timestamp is not needed, set FF_FS_NORTC = 1 to disable
|
||||||
|
/ the timestamp function. Every object modified by FatFs will have a fixed timestamp
|
||||||
|
/ defined by FF_NORTC_MON, FF_NORTC_MDAY and FF_NORTC_YEAR in local time.
|
||||||
|
/ To enable timestamp function (FF_FS_NORTC = 0), get_fattime() function need to be
|
||||||
|
/ added to the project to read current time form real-time clock. FF_NORTC_MON,
|
||||||
|
/ FF_NORTC_MDAY and FF_NORTC_YEAR have no effect.
|
||||||
|
/ These options have no effect in read-only configuration (FF_FS_READONLY = 1). */
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_FS_NOFSINFO 0
|
||||||
|
/* If you need to know correct free space on the FAT32 volume, set bit 0 of this
|
||||||
|
/ option, and f_getfree() function at first time after volume mount will force
|
||||||
|
/ a full FAT scan. Bit 1 controls the use of last allocated cluster number.
|
||||||
|
/
|
||||||
|
/ bit0=0: Use free cluster count in the FSINFO if available.
|
||||||
|
/ bit0=1: Do not trust free cluster count in the FSINFO.
|
||||||
|
/ bit1=0: Use last allocated cluster number in the FSINFO if available.
|
||||||
|
/ bit1=1: Do not trust last allocated cluster number in the FSINFO.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#define FF_FS_LOCK 0
|
||||||
|
/* The option FF_FS_LOCK switches file lock function to control duplicated file open
|
||||||
|
/ and illegal operation to open objects. This option must be 0 when FF_FS_READONLY
|
||||||
|
/ is 1.
|
||||||
|
/
|
||||||
|
/ 0: Disable file lock function. To avoid volume corruption, application program
|
||||||
|
/ should avoid illegal open, remove and rename to the open objects.
|
||||||
|
/ >0: Enable file lock function. The value defines how many files/sub-directories
|
||||||
|
/ can be opened simultaneously under file lock control. Note that the file
|
||||||
|
/ lock control is independent of re-entrancy. */
|
||||||
|
|
||||||
|
|
||||||
|
/* #include <somertos.h> // O/S definitions */
|
||||||
|
#include <rtdef.h>
|
||||||
|
#ifdef RT_DFS_ELM_REENTRANT
|
||||||
|
#define FF_FS_REENTRANT 1 /* 0 or 1 */
|
||||||
|
#else
|
||||||
|
#define FF_FS_REENTRANT 0 /* 0:Disable or 1:Enable */
|
||||||
|
#endif
|
||||||
|
#ifndef RT_DFS_ELM_MUTEX_TIMEOUT
|
||||||
|
#define RT_DFS_ELM_MUTEX_TIMEOUT 3000
|
||||||
|
#endif
|
||||||
|
#define FF_FS_TIMEOUT RT_DFS_ELM_MUTEX_TIMEOUT
|
||||||
|
#define FF_SYNC_t rt_mutex_t
|
||||||
|
/* The option FF_FS_REENTRANT switches the re-entrancy (thread safe) of the FatFs
|
||||||
|
/ module itself. Note that regardless of this option, file access to different
|
||||||
|
/ volume is always re-entrant and volume control functions, f_mount(), f_mkfs()
|
||||||
|
/ and f_fdisk() function, are always not re-entrant. Only file/directory access
|
||||||
|
/ to the same volume is under control of this function.
|
||||||
|
/
|
||||||
|
/ 0: Disable re-entrancy. FF_FS_TIMEOUT and FF_SYNC_t have no effect.
|
||||||
|
/ 1: Enable re-entrancy. Also user provided synchronization handlers,
|
||||||
|
/ ff_req_grant(), ff_rel_grant(), ff_del_syncobj() and ff_cre_syncobj()
|
||||||
|
/ function, must be added to the project. Samples are available in
|
||||||
|
/ option/syscall.c.
|
||||||
|
/
|
||||||
|
/ The FF_FS_TIMEOUT defines timeout period in unit of time tick.
|
||||||
|
/ The FF_SYNC_t defines O/S dependent sync object type. e.g. HANDLE, ID, OS_EVENT*,
|
||||||
|
/ SemaphoreHandle_t and etc. A header file for O/S definitions needs to be
|
||||||
|
/ included somewhere in the scope of ff.h. */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*--- End of configuration options ---*/
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,13 @@
|
||||||
|
# RT-Thread building script for component
|
||||||
|
|
||||||
|
from building import *
|
||||||
|
|
||||||
|
cwd = GetCurrentDir()
|
||||||
|
src = Glob('*.c') + Glob('rpc/*.c')
|
||||||
|
CPPPATH = [cwd]
|
||||||
|
|
||||||
|
SrcRemove(src, ['rpc/auth_none.c'])
|
||||||
|
|
||||||
|
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_NFS'], CPPPATH = CPPPATH)
|
||||||
|
|
||||||
|
Return('group')
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,15 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*
|
||||||
|
* Change Logs:
|
||||||
|
* Date Author Notes
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __NFS_H__
|
||||||
|
#define __NFS_H__
|
||||||
|
|
||||||
|
int nfs_init(void);
|
||||||
|
|
||||||
|
#endif
|
|
@ -0,0 +1,131 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*
|
||||||
|
* Change Logs:
|
||||||
|
* Date Author Notes
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
* Please do not edit this file.
|
||||||
|
* It was generated using rpcgen.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _MOUNT_H_RPCGEN
|
||||||
|
#define _MOUNT_H_RPCGEN
|
||||||
|
|
||||||
|
#include <rpc/rpc.h>
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* This file is copied from RFC1813
|
||||||
|
* Copyright 1995 Sun Micrososystems (I assume)
|
||||||
|
*/
|
||||||
|
#define MNTPATHLEN 1024
|
||||||
|
#define MNTNAMLEN 255
|
||||||
|
#define FHSIZE3 64
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
unsigned int fhandle3_len;
|
||||||
|
char *fhandle3_val;
|
||||||
|
} fhandle3;
|
||||||
|
|
||||||
|
typedef char *dirpath;
|
||||||
|
|
||||||
|
typedef char *name;
|
||||||
|
|
||||||
|
typedef struct exportnode *exports;
|
||||||
|
|
||||||
|
typedef struct groupnode *groups;
|
||||||
|
|
||||||
|
typedef struct mountbody *mountlist;
|
||||||
|
|
||||||
|
enum mountstat3 {
|
||||||
|
MNT3_OK = 0,
|
||||||
|
MNT3ERR_PERM = 1,
|
||||||
|
MNT3ERR_NOENT = 2,
|
||||||
|
MNT3ERR_IO = 5,
|
||||||
|
MNT3ERR_ACCES = 13,
|
||||||
|
MNT3ERR_NOTDIR = 20,
|
||||||
|
MNT3ERR_INVAL = 22,
|
||||||
|
MNT3ERR_NAMETOOLONG = 63,
|
||||||
|
MNT3ERR_NOTSUPP = 10004,
|
||||||
|
MNT3ERR_SERVERFAULT = 10006
|
||||||
|
};
|
||||||
|
typedef enum mountstat3 mountstat3;
|
||||||
|
|
||||||
|
struct mountres3_ok {
|
||||||
|
fhandle3 fhandle;
|
||||||
|
struct {
|
||||||
|
unsigned int auth_flavors_len;
|
||||||
|
int *auth_flavors_val;
|
||||||
|
} auth_flavors;
|
||||||
|
};
|
||||||
|
typedef struct mountres3_ok mountres3_ok;
|
||||||
|
|
||||||
|
struct mountres3 {
|
||||||
|
mountstat3 fhs_status;
|
||||||
|
union {
|
||||||
|
mountres3_ok mountinfo;
|
||||||
|
} mountres3_u;
|
||||||
|
};
|
||||||
|
typedef struct mountres3 mountres3;
|
||||||
|
|
||||||
|
struct mountbody {
|
||||||
|
name ml_hostname;
|
||||||
|
dirpath ml_directory;
|
||||||
|
mountlist ml_next;
|
||||||
|
};
|
||||||
|
typedef struct mountbody mountbody;
|
||||||
|
|
||||||
|
struct groupnode {
|
||||||
|
name gr_name;
|
||||||
|
groups gr_next;
|
||||||
|
};
|
||||||
|
typedef struct groupnode groupnode;
|
||||||
|
|
||||||
|
struct exportnode {
|
||||||
|
dirpath ex_dir;
|
||||||
|
groups ex_groups;
|
||||||
|
exports ex_next;
|
||||||
|
};
|
||||||
|
typedef struct exportnode exportnode;
|
||||||
|
|
||||||
|
#define MOUNT_PROGRAM 100005
|
||||||
|
#define MOUNT_V3 3
|
||||||
|
|
||||||
|
#define MOUNTPROC3_NULL 0
|
||||||
|
extern enum clnt_stat mountproc3_null_3(void *, CLIENT *);
|
||||||
|
#define MOUNTPROC3_MNT 1
|
||||||
|
extern enum clnt_stat mountproc3_mnt_3(dirpath , mountres3 *, CLIENT *);
|
||||||
|
#define MOUNTPROC3_DUMP 2
|
||||||
|
extern enum clnt_stat mountproc3_dump_3(mountlist *, CLIENT *);
|
||||||
|
#define MOUNTPROC3_UMNT 3
|
||||||
|
extern enum clnt_stat mountproc3_umnt_3(dirpath , void *, CLIENT *);
|
||||||
|
#define MOUNTPROC3_UMNTALL 4
|
||||||
|
extern enum clnt_stat mountproc3_umntall_3(void *, CLIENT *);
|
||||||
|
#define MOUNTPROC3_EXPORT 5
|
||||||
|
extern enum clnt_stat mountproc3_export_3(exports *, CLIENT *);
|
||||||
|
|
||||||
|
/* the xdr functions */
|
||||||
|
|
||||||
|
extern bool_t xdr_fhandle3(XDR *, fhandle3*);
|
||||||
|
extern bool_t xdr_dirpath(XDR *, dirpath*);
|
||||||
|
extern bool_t xdr_name(XDR *, name*);
|
||||||
|
extern bool_t xdr_exports(XDR *, exports*);
|
||||||
|
extern bool_t xdr_groups(XDR *, groups*);
|
||||||
|
extern bool_t xdr_mountlist(XDR *, mountlist*);
|
||||||
|
extern bool_t xdr_mountstat3(XDR *, mountstat3*);
|
||||||
|
extern bool_t xdr_mountres3_ok(XDR *, mountres3_ok*);
|
||||||
|
extern bool_t xdr_mountres3(XDR *, mountres3*);
|
||||||
|
extern bool_t xdr_mountbody(XDR *, mountbody*);
|
||||||
|
extern bool_t xdr_groupnode(XDR *, groupnode*);
|
||||||
|
extern bool_t xdr_exportnode(XDR *, exportnode*);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* !_MOUNT_H_RPCGEN */
|
|
@ -0,0 +1,68 @@
|
||||||
|
%/* This file is copied from RFC1813
|
||||||
|
% * Copyright 1995 Sun Micrososystems (I assume)
|
||||||
|
% */
|
||||||
|
|
||||||
|
const MNTPATHLEN = 1024; /* Maximum bytes in a path name */
|
||||||
|
const MNTNAMLEN = 255; /* Maximum bytes in a name */
|
||||||
|
const FHSIZE3 = 64; /* Maximum bytes in a V3 file handle */
|
||||||
|
|
||||||
|
typedef opaque fhandle3<FHSIZE3>;
|
||||||
|
typedef string dirpath<MNTPATHLEN>;
|
||||||
|
typedef string name<MNTNAMLEN>;
|
||||||
|
|
||||||
|
typedef struct exportnode *exports;
|
||||||
|
typedef struct groupnode *groups;
|
||||||
|
typedef struct mountbody *mountlist;
|
||||||
|
|
||||||
|
enum mountstat3 {
|
||||||
|
MNT3_OK = 0, /* no error */
|
||||||
|
MNT3ERR_PERM = 1, /* Not owner */
|
||||||
|
MNT3ERR_NOENT = 2, /* No such file or directory */
|
||||||
|
MNT3ERR_IO = 5, /* I/O error */
|
||||||
|
MNT3ERR_ACCES = 13, /* Permission denied */
|
||||||
|
MNT3ERR_NOTDIR = 20, /* Not a directory */
|
||||||
|
MNT3ERR_INVAL = 22, /* Invalid argument */
|
||||||
|
MNT3ERR_NAMETOOLONG = 63, /* Filename too long */
|
||||||
|
MNT3ERR_NOTSUPP = 10004, /* Operation not supported */
|
||||||
|
MNT3ERR_SERVERFAULT = 10006 /* A failure on the server */
|
||||||
|
};
|
||||||
|
|
||||||
|
struct mountres3_ok {
|
||||||
|
fhandle3 fhandle;
|
||||||
|
int auth_flavors<>;
|
||||||
|
};
|
||||||
|
|
||||||
|
union mountres3 switch (mountstat3 fhs_status) {
|
||||||
|
case MNT3_OK:
|
||||||
|
mountres3_ok mountinfo;
|
||||||
|
default:
|
||||||
|
void;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct mountbody {
|
||||||
|
name ml_hostname;
|
||||||
|
dirpath ml_directory;
|
||||||
|
mountlist ml_next;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct groupnode {
|
||||||
|
name gr_name;
|
||||||
|
groups gr_next;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct exportnode {
|
||||||
|
dirpath ex_dir;
|
||||||
|
groups ex_groups;
|
||||||
|
exports ex_next;
|
||||||
|
};
|
||||||
|
|
||||||
|
program MOUNT_PROGRAM {
|
||||||
|
version MOUNT_V3 {
|
||||||
|
void MOUNTPROC3_NULL(void) = 0;
|
||||||
|
mountres3 MOUNTPROC3_MNT(dirpath) = 1;
|
||||||
|
mountlist MOUNTPROC3_DUMP(void) = 2;
|
||||||
|
void MOUNTPROC3_UMNT(dirpath) = 3;
|
||||||
|
void MOUNTPROC3_UMNTALL(void) = 4;
|
||||||
|
exports MOUNTPROC3_EXPORT(void) = 5;
|
||||||
|
} = 3;
|
||||||
|
} = 100005;
|
|
@ -0,0 +1,78 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*
|
||||||
|
* Change Logs:
|
||||||
|
* Date Author Notes
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
* Please do not edit this file.
|
||||||
|
* It was generated using rpcgen.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <string.h> /* for memset */
|
||||||
|
#include "mount.h"
|
||||||
|
|
||||||
|
/* This file is copied from RFC1813
|
||||||
|
* Copyright 1995 Sun Micrososystems (I assume)
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef char* caddr_t;
|
||||||
|
|
||||||
|
/* Default timeout can be changed using clnt_control() */
|
||||||
|
static struct timeval TIMEOUT = { 25, 0 };
|
||||||
|
|
||||||
|
enum clnt_stat
|
||||||
|
mountproc3_null_3(void *clnt_res, CLIENT *clnt)
|
||||||
|
{
|
||||||
|
return (clnt_call(clnt, MOUNTPROC3_NULL,
|
||||||
|
(xdrproc_t) xdr_void, (caddr_t) NULL,
|
||||||
|
(xdrproc_t) xdr_void, (caddr_t) clnt_res,
|
||||||
|
TIMEOUT));
|
||||||
|
}
|
||||||
|
|
||||||
|
enum clnt_stat
|
||||||
|
mountproc3_mnt_3(dirpath arg1, mountres3 *clnt_res, CLIENT *clnt)
|
||||||
|
{
|
||||||
|
return (clnt_call(clnt, MOUNTPROC3_MNT,
|
||||||
|
(xdrproc_t) xdr_dirpath, (caddr_t) &arg1,
|
||||||
|
(xdrproc_t) xdr_mountres3, (caddr_t) clnt_res,
|
||||||
|
TIMEOUT));
|
||||||
|
}
|
||||||
|
|
||||||
|
enum clnt_stat
|
||||||
|
mountproc3_dump_3(mountlist *clnt_res, CLIENT *clnt)
|
||||||
|
{
|
||||||
|
return (clnt_call(clnt, MOUNTPROC3_DUMP,
|
||||||
|
(xdrproc_t) xdr_void, (caddr_t) NULL,
|
||||||
|
(xdrproc_t) xdr_mountlist, (caddr_t) clnt_res,
|
||||||
|
TIMEOUT));
|
||||||
|
}
|
||||||
|
|
||||||
|
enum clnt_stat
|
||||||
|
mountproc3_umnt_3(dirpath arg1, void *clnt_res, CLIENT *clnt)
|
||||||
|
{
|
||||||
|
return (clnt_call(clnt, MOUNTPROC3_UMNT,
|
||||||
|
(xdrproc_t) xdr_dirpath, (caddr_t) &arg1,
|
||||||
|
(xdrproc_t) xdr_void, (caddr_t) clnt_res,
|
||||||
|
TIMEOUT));
|
||||||
|
}
|
||||||
|
|
||||||
|
enum clnt_stat
|
||||||
|
mountproc3_umntall_3(void *clnt_res, CLIENT *clnt)
|
||||||
|
{
|
||||||
|
return (clnt_call(clnt, MOUNTPROC3_UMNTALL,
|
||||||
|
(xdrproc_t) xdr_void, (caddr_t) NULL,
|
||||||
|
(xdrproc_t) xdr_void, (caddr_t) clnt_res,
|
||||||
|
TIMEOUT));
|
||||||
|
}
|
||||||
|
|
||||||
|
enum clnt_stat
|
||||||
|
mountproc3_export_3(exports *clnt_res, CLIENT *clnt)
|
||||||
|
{
|
||||||
|
return (clnt_call(clnt, MOUNTPROC3_EXPORT,
|
||||||
|
(xdrproc_t) xdr_void, (caddr_t) NULL,
|
||||||
|
(xdrproc_t) xdr_exports, (caddr_t) clnt_res,
|
||||||
|
TIMEOUT));
|
||||||
|
}
|
|
@ -0,0 +1,142 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*
|
||||||
|
* Change Logs:
|
||||||
|
* Date Author Notes
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
* Please do not edit this file.
|
||||||
|
* It was generated using rpcgen.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "mount.h"
|
||||||
|
/* This file is copied from RFC1813
|
||||||
|
* Copyright 1995 Sun Micrososystems (I assume)
|
||||||
|
*/
|
||||||
|
|
||||||
|
bool_t
|
||||||
|
xdr_fhandle3(register XDR *xdrs, fhandle3 *objp)
|
||||||
|
{
|
||||||
|
if (!xdr_bytes(xdrs, (char **)&objp->fhandle3_val, (unsigned int *) &objp->fhandle3_len, FHSIZE3))
|
||||||
|
return (FALSE);
|
||||||
|
return (TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool_t
|
||||||
|
xdr_dirpath(register XDR *xdrs, dirpath *objp)
|
||||||
|
{
|
||||||
|
if (!xdr_string(xdrs, objp, MNTPATHLEN))
|
||||||
|
return (FALSE);
|
||||||
|
return (TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool_t
|
||||||
|
xdr_name(register XDR *xdrs, name *objp)
|
||||||
|
{
|
||||||
|
if (!xdr_string(xdrs, objp, MNTNAMLEN))
|
||||||
|
return (FALSE);
|
||||||
|
return (TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool_t
|
||||||
|
xdr_exports(register XDR *xdrs, exports *objp)
|
||||||
|
{
|
||||||
|
if (!xdr_pointer(xdrs, (char **)objp, sizeof (struct exportnode), (xdrproc_t) xdr_exportnode))
|
||||||
|
return (FALSE);
|
||||||
|
return (TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool_t
|
||||||
|
xdr_groups(register XDR *xdrs, groups *objp)
|
||||||
|
{
|
||||||
|
if (!xdr_pointer(xdrs, (char **)objp, sizeof (struct groupnode), (xdrproc_t) xdr_groupnode))
|
||||||
|
return (FALSE);
|
||||||
|
return (TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool_t
|
||||||
|
xdr_mountlist(register XDR *xdrs, mountlist *objp)
|
||||||
|
{
|
||||||
|
if (!xdr_pointer(xdrs, (char **)objp, sizeof (struct mountbody), (xdrproc_t) xdr_mountbody))
|
||||||
|
return (FALSE);
|
||||||
|
return (TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool_t
|
||||||
|
xdr_mountstat3(register XDR *xdrs, mountstat3 *objp)
|
||||||
|
{
|
||||||
|
int enum_objp;
|
||||||
|
|
||||||
|
enum_objp = *objp;
|
||||||
|
|
||||||
|
if (!xdr_enum(xdrs, (enum_t *)&enum_objp))
|
||||||
|
{
|
||||||
|
*objp = (mountstat3)enum_objp;
|
||||||
|
return (FALSE);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool_t
|
||||||
|
xdr_mountres3_ok(register XDR *xdrs, mountres3_ok *objp)
|
||||||
|
{
|
||||||
|
if (!xdr_fhandle3(xdrs, &objp->fhandle))
|
||||||
|
return (FALSE);
|
||||||
|
if (!xdr_array(xdrs, (char **)&objp->auth_flavors.auth_flavors_val, (unsigned int *) &objp->auth_flavors.auth_flavors_len, ~0,
|
||||||
|
sizeof (int), (xdrproc_t) xdr_int))
|
||||||
|
return (FALSE);
|
||||||
|
return (TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool_t
|
||||||
|
xdr_mountres3(register XDR *xdrs, mountres3 *objp)
|
||||||
|
{
|
||||||
|
if (!xdr_mountstat3(xdrs, &objp->fhs_status))
|
||||||
|
return (FALSE);
|
||||||
|
switch (objp->fhs_status) {
|
||||||
|
case MNT3_OK:
|
||||||
|
if (!xdr_mountres3_ok(xdrs, &objp->mountres3_u.mountinfo))
|
||||||
|
return (FALSE);
|
||||||
|
break;
|
||||||
|
default :
|
||||||
|
return (FALSE);
|
||||||
|
}
|
||||||
|
return (TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool_t
|
||||||
|
xdr_mountbody(register XDR *xdrs, mountbody *objp)
|
||||||
|
{
|
||||||
|
if (!xdr_name(xdrs, &objp->ml_hostname))
|
||||||
|
return (FALSE);
|
||||||
|
if (!xdr_dirpath(xdrs, &objp->ml_directory))
|
||||||
|
return (FALSE);
|
||||||
|
if (!xdr_mountlist(xdrs, &objp->ml_next))
|
||||||
|
return (FALSE);
|
||||||
|
return (TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool_t
|
||||||
|
xdr_groupnode(register XDR *xdrs, groupnode *objp)
|
||||||
|
{
|
||||||
|
if (!xdr_name(xdrs, &objp->gr_name))
|
||||||
|
return (FALSE);
|
||||||
|
if (!xdr_groups(xdrs, &objp->gr_next))
|
||||||
|
return (FALSE);
|
||||||
|
return (TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool_t
|
||||||
|
xdr_exportnode(register XDR *xdrs, exportnode *objp)
|
||||||
|
{
|
||||||
|
if (!xdr_dirpath(xdrs, &objp->ex_dir))
|
||||||
|
return (FALSE);
|
||||||
|
if (!xdr_groups(xdrs, &objp->ex_groups))
|
||||||
|
return (FALSE);
|
||||||
|
if (!xdr_exports(xdrs, &objp->ex_next))
|
||||||
|
return (FALSE);
|
||||||
|
return (TRUE);
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,774 @@
|
||||||
|
%/* This file is copied from RFC1813
|
||||||
|
% * Copyright 1995 Sun Micrososystems (I assume)
|
||||||
|
% */
|
||||||
|
|
||||||
|
const NFS3_FHSIZE = 64;
|
||||||
|
const NFS3_COOKIEVERFSIZE = 8;
|
||||||
|
const NFS3_CREATEVERFSIZE = 8;
|
||||||
|
const NFS3_WRITEVERFSIZE = 8;
|
||||||
|
|
||||||
|
const ACCESS3_READ = 0x0001;
|
||||||
|
const ACCESS3_LOOKUP = 0x0002;
|
||||||
|
const ACCESS3_MODIFY = 0x0004;
|
||||||
|
const ACCESS3_EXTEND = 0x0008;
|
||||||
|
const ACCESS3_DELETE = 0x0010;
|
||||||
|
const ACCESS3_EXECUTE = 0x0020;
|
||||||
|
|
||||||
|
const FSF3_LINK = 0x0001;
|
||||||
|
const FSF3_SYMLINK = 0x0002;
|
||||||
|
const FSF3_HOMOGENEOUS = 0x0008;
|
||||||
|
const FSF3_CANSETTIME = 0x0010;
|
||||||
|
|
||||||
|
typedef unsigned hyper uint64;
|
||||||
|
typedef hyper int64;
|
||||||
|
typedef unsigned long uint32;
|
||||||
|
typedef long int32;
|
||||||
|
typedef string filename3<>;
|
||||||
|
typedef string nfspath3<>;
|
||||||
|
typedef uint64 fileid3;
|
||||||
|
typedef uint64 cookie3;
|
||||||
|
typedef opaque cookieverf3[NFS3_COOKIEVERFSIZE];
|
||||||
|
typedef opaque createverf3[NFS3_CREATEVERFSIZE];
|
||||||
|
typedef opaque writeverf3[NFS3_WRITEVERFSIZE];
|
||||||
|
typedef uint32 uid3;
|
||||||
|
typedef uint32 gid3;
|
||||||
|
typedef uint64 size3;
|
||||||
|
typedef uint64 offset3;
|
||||||
|
typedef uint32 mode3;
|
||||||
|
typedef uint32 count3;
|
||||||
|
|
||||||
|
enum nfsstat3 {
|
||||||
|
NFS3_OK = 0,
|
||||||
|
NFS3ERR_PERM = 1,
|
||||||
|
NFS3ERR_NOENT = 2,
|
||||||
|
NFS3ERR_IO = 5,
|
||||||
|
NFS3ERR_NXIO = 6,
|
||||||
|
NFS3ERR_ACCES = 13,
|
||||||
|
NFS3ERR_EXIST = 17,
|
||||||
|
NFS3ERR_XDEV = 18,
|
||||||
|
NFS3ERR_NODEV = 19,
|
||||||
|
NFS3ERR_NOTDIR = 20,
|
||||||
|
NFS3ERR_ISDIR = 21,
|
||||||
|
NFS3ERR_INVAL = 22,
|
||||||
|
NFS3ERR_FBIG = 27,
|
||||||
|
NFS3ERR_NOSPC = 28,
|
||||||
|
NFS3ERR_ROFS = 30,
|
||||||
|
NFS3ERR_MLINK = 31,
|
||||||
|
NFS3ERR_NAMETOOLONG = 63,
|
||||||
|
NFS3ERR_NOTEMPTY = 66,
|
||||||
|
NFS3ERR_DQUOT = 69,
|
||||||
|
NFS3ERR_STALE = 70,
|
||||||
|
NFS3ERR_REMOTE = 71,
|
||||||
|
NFS3ERR_BADHANDLE = 10001,
|
||||||
|
NFS3ERR_NOT_SYNC = 10002,
|
||||||
|
NFS3ERR_BAD_COOKIE = 10003,
|
||||||
|
NFS3ERR_NOTSUPP = 10004,
|
||||||
|
NFS3ERR_TOOSMALL = 10005,
|
||||||
|
NFS3ERR_SERVERFAULT = 10006,
|
||||||
|
NFS3ERR_BADTYPE = 10007,
|
||||||
|
NFS3ERR_JUKEBOX = 10008
|
||||||
|
};
|
||||||
|
|
||||||
|
enum ftype3 {
|
||||||
|
NFS3REG = 1,
|
||||||
|
NFS3DIR = 2,
|
||||||
|
NFS3BLK = 3,
|
||||||
|
NFS3CHR = 4,
|
||||||
|
NFS3LNK = 5,
|
||||||
|
NFS3SOCK = 6,
|
||||||
|
NFS3FIFO = 7
|
||||||
|
};
|
||||||
|
enum stable_how {
|
||||||
|
UNSTABLE = 0,
|
||||||
|
DATA_SYNC = 1,
|
||||||
|
FILE_SYNC = 2
|
||||||
|
};
|
||||||
|
|
||||||
|
enum createmode3 {
|
||||||
|
UNCHECKED = 0,
|
||||||
|
GUARDED = 1,
|
||||||
|
EXCLUSIVE = 2
|
||||||
|
};
|
||||||
|
|
||||||
|
struct specdata3 {
|
||||||
|
uint32 specdata1;
|
||||||
|
uint32 specdata2;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct nfs_fh3 {
|
||||||
|
opaque data<NFS3_FHSIZE>;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct nfstime3 {
|
||||||
|
uint32 seconds;
|
||||||
|
uint32 nseconds;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct fattr3 {
|
||||||
|
ftype3 type;
|
||||||
|
mode3 mode;
|
||||||
|
uint32 nlink;
|
||||||
|
uid3 uid;
|
||||||
|
gid3 gid;
|
||||||
|
size3 size;
|
||||||
|
size3 used;
|
||||||
|
specdata3 rdev;
|
||||||
|
uint64 fsid;
|
||||||
|
fileid3 fileid;
|
||||||
|
nfstime3 atime;
|
||||||
|
nfstime3 mtime;
|
||||||
|
nfstime3 ctime;
|
||||||
|
};
|
||||||
|
|
||||||
|
union post_op_attr switch (bool attributes_follow) {
|
||||||
|
case TRUE:
|
||||||
|
fattr3 attributes;
|
||||||
|
case FALSE:
|
||||||
|
void;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct wcc_attr {
|
||||||
|
size3 size;
|
||||||
|
nfstime3 mtime;
|
||||||
|
nfstime3 ctime;
|
||||||
|
};
|
||||||
|
|
||||||
|
union pre_op_attr switch (bool attributes_follow) {
|
||||||
|
case TRUE:
|
||||||
|
wcc_attr attributes;
|
||||||
|
case FALSE:
|
||||||
|
void;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct wcc_data {
|
||||||
|
pre_op_attr before;
|
||||||
|
post_op_attr after;
|
||||||
|
};
|
||||||
|
|
||||||
|
union post_op_fh3 switch (bool handle_follows) {
|
||||||
|
case TRUE:
|
||||||
|
nfs_fh3 handle;
|
||||||
|
case FALSE:
|
||||||
|
void;
|
||||||
|
};
|
||||||
|
|
||||||
|
enum time_how {
|
||||||
|
DONT_CHANGE = 0,
|
||||||
|
SET_TO_SERVER_TIME = 1,
|
||||||
|
SET_TO_CLIENT_TIME = 2
|
||||||
|
};
|
||||||
|
|
||||||
|
union set_mode3 switch (bool set_it) {
|
||||||
|
case TRUE:
|
||||||
|
mode3 mode;
|
||||||
|
default:
|
||||||
|
void;
|
||||||
|
};
|
||||||
|
|
||||||
|
union set_uid3 switch (bool set_it) {
|
||||||
|
case TRUE:
|
||||||
|
uid3 uid;
|
||||||
|
default:
|
||||||
|
void;
|
||||||
|
};
|
||||||
|
|
||||||
|
union set_gid3 switch (bool set_it) {
|
||||||
|
case TRUE:
|
||||||
|
gid3 gid;
|
||||||
|
default:
|
||||||
|
void;
|
||||||
|
};
|
||||||
|
|
||||||
|
union set_size3 switch (bool set_it) {
|
||||||
|
case TRUE:
|
||||||
|
size3 size;
|
||||||
|
default:
|
||||||
|
void;
|
||||||
|
};
|
||||||
|
|
||||||
|
union set_atime switch (time_how set_it) {
|
||||||
|
case SET_TO_CLIENT_TIME:
|
||||||
|
nfstime3 atime;
|
||||||
|
default:
|
||||||
|
void;
|
||||||
|
};
|
||||||
|
|
||||||
|
union set_mtime switch (time_how set_it) {
|
||||||
|
case SET_TO_CLIENT_TIME:
|
||||||
|
nfstime3 mtime;
|
||||||
|
default:
|
||||||
|
void;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct sattr3 {
|
||||||
|
set_mode3 mode;
|
||||||
|
set_uid3 uid;
|
||||||
|
set_gid3 gid;
|
||||||
|
set_size3 size;
|
||||||
|
set_atime atime;
|
||||||
|
set_mtime mtime;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct diropargs3 {
|
||||||
|
nfs_fh3 dir;
|
||||||
|
filename3 name;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
struct GETATTR3args {
|
||||||
|
nfs_fh3 object;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct GETATTR3resok {
|
||||||
|
fattr3 obj_attributes;
|
||||||
|
};
|
||||||
|
|
||||||
|
union GETATTR3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
GETATTR3resok resok;
|
||||||
|
default:
|
||||||
|
void;
|
||||||
|
};
|
||||||
|
|
||||||
|
union sattrguard3 switch (bool check) {
|
||||||
|
case TRUE:
|
||||||
|
nfstime3 obj_ctime;
|
||||||
|
case FALSE:
|
||||||
|
void;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct SETATTR3args {
|
||||||
|
nfs_fh3 object;
|
||||||
|
sattr3 new_attributes;
|
||||||
|
sattrguard3 guard;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct SETATTR3resok {
|
||||||
|
wcc_data obj_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct SETATTR3resfail {
|
||||||
|
wcc_data obj_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
union SETATTR3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
SETATTR3resok resok;
|
||||||
|
default:
|
||||||
|
SETATTR3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct LOOKUP3args {
|
||||||
|
diropargs3 what;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct LOOKUP3resok {
|
||||||
|
nfs_fh3 object;
|
||||||
|
post_op_attr obj_attributes;
|
||||||
|
post_op_attr dir_attributes;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct LOOKUP3resfail {
|
||||||
|
post_op_attr dir_attributes;
|
||||||
|
};
|
||||||
|
|
||||||
|
union LOOKUP3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
LOOKUP3resok resok;
|
||||||
|
default:
|
||||||
|
LOOKUP3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct ACCESS3args {
|
||||||
|
nfs_fh3 object;
|
||||||
|
uint32 access;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct ACCESS3resok {
|
||||||
|
post_op_attr obj_attributes;
|
||||||
|
uint32 access;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct ACCESS3resfail {
|
||||||
|
post_op_attr obj_attributes;
|
||||||
|
};
|
||||||
|
|
||||||
|
union ACCESS3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
ACCESS3resok resok;
|
||||||
|
default:
|
||||||
|
ACCESS3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct READLINK3args {
|
||||||
|
nfs_fh3 symlink;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct READLINK3resok {
|
||||||
|
post_op_attr symlink_attributes;
|
||||||
|
nfspath3 data;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct READLINK3resfail {
|
||||||
|
post_op_attr symlink_attributes;
|
||||||
|
};
|
||||||
|
|
||||||
|
union READLINK3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
READLINK3resok resok;
|
||||||
|
default:
|
||||||
|
READLINK3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct READ3args {
|
||||||
|
nfs_fh3 file;
|
||||||
|
offset3 offset;
|
||||||
|
count3 count;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct READ3resok {
|
||||||
|
post_op_attr file_attributes;
|
||||||
|
count3 count;
|
||||||
|
bool eof;
|
||||||
|
opaque data<>;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct READ3resfail {
|
||||||
|
post_op_attr file_attributes;
|
||||||
|
};
|
||||||
|
|
||||||
|
union READ3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
READ3resok resok;
|
||||||
|
default:
|
||||||
|
READ3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct WRITE3args {
|
||||||
|
nfs_fh3 file;
|
||||||
|
offset3 offset;
|
||||||
|
count3 count;
|
||||||
|
stable_how stable;
|
||||||
|
opaque data<>;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct WRITE3resok {
|
||||||
|
wcc_data file_wcc;
|
||||||
|
count3 count;
|
||||||
|
stable_how committed;
|
||||||
|
writeverf3 verf;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct WRITE3resfail {
|
||||||
|
wcc_data file_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
union WRITE3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
WRITE3resok resok;
|
||||||
|
default:
|
||||||
|
WRITE3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
union createhow3 switch (createmode3 mode) {
|
||||||
|
case UNCHECKED:
|
||||||
|
case GUARDED:
|
||||||
|
sattr3 obj_attributes;
|
||||||
|
case EXCLUSIVE:
|
||||||
|
createverf3 verf;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct CREATE3args {
|
||||||
|
diropargs3 where;
|
||||||
|
createhow3 how;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct CREATE3resok {
|
||||||
|
post_op_fh3 obj;
|
||||||
|
post_op_attr obj_attributes;
|
||||||
|
wcc_data dir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct CREATE3resfail {
|
||||||
|
wcc_data dir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
union CREATE3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
CREATE3resok resok;
|
||||||
|
default:
|
||||||
|
CREATE3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct MKDIR3args {
|
||||||
|
diropargs3 where;
|
||||||
|
sattr3 attributes;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct MKDIR3resok {
|
||||||
|
post_op_fh3 obj;
|
||||||
|
post_op_attr obj_attributes;
|
||||||
|
wcc_data dir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct MKDIR3resfail {
|
||||||
|
wcc_data dir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
union MKDIR3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
MKDIR3resok resok;
|
||||||
|
default:
|
||||||
|
MKDIR3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct symlinkdata3 {
|
||||||
|
sattr3 symlink_attributes;
|
||||||
|
nfspath3 symlink_data;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct SYMLINK3args {
|
||||||
|
diropargs3 where;
|
||||||
|
symlinkdata3 symlink;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct SYMLINK3resok {
|
||||||
|
post_op_fh3 obj;
|
||||||
|
post_op_attr obj_attributes;
|
||||||
|
wcc_data dir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct SYMLINK3resfail {
|
||||||
|
wcc_data dir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
union SYMLINK3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
SYMLINK3resok resok;
|
||||||
|
default:
|
||||||
|
SYMLINK3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct devicedata3 {
|
||||||
|
sattr3 dev_attributes;
|
||||||
|
specdata3 spec;
|
||||||
|
};
|
||||||
|
|
||||||
|
union mknoddata3 switch (ftype3 type) {
|
||||||
|
case NFS3CHR:
|
||||||
|
case NFS3BLK:
|
||||||
|
devicedata3 device;
|
||||||
|
case NFS3SOCK:
|
||||||
|
case NFS3FIFO:
|
||||||
|
sattr3 pipe_attributes;
|
||||||
|
default:
|
||||||
|
void;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct MKNOD3args {
|
||||||
|
diropargs3 where;
|
||||||
|
mknoddata3 what;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct MKNOD3resok {
|
||||||
|
post_op_fh3 obj;
|
||||||
|
post_op_attr obj_attributes;
|
||||||
|
wcc_data dir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct MKNOD3resfail {
|
||||||
|
wcc_data dir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
union MKNOD3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
MKNOD3resok resok;
|
||||||
|
default:
|
||||||
|
MKNOD3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct REMOVE3args {
|
||||||
|
diropargs3 object;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct REMOVE3resok {
|
||||||
|
wcc_data dir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct REMOVE3resfail {
|
||||||
|
wcc_data dir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
union REMOVE3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
REMOVE3resok resok;
|
||||||
|
default:
|
||||||
|
REMOVE3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct RMDIR3args {
|
||||||
|
diropargs3 object;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct RMDIR3resok {
|
||||||
|
wcc_data dir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct RMDIR3resfail {
|
||||||
|
wcc_data dir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
union RMDIR3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
RMDIR3resok resok;
|
||||||
|
default:
|
||||||
|
RMDIR3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct RENAME3args {
|
||||||
|
diropargs3 from;
|
||||||
|
diropargs3 to;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct RENAME3resok {
|
||||||
|
wcc_data fromdir_wcc;
|
||||||
|
wcc_data todir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct RENAME3resfail {
|
||||||
|
wcc_data fromdir_wcc;
|
||||||
|
wcc_data todir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
union RENAME3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
RENAME3resok resok;
|
||||||
|
default:
|
||||||
|
RENAME3resfail resfail;
|
||||||
|
};
|
||||||
|
struct LINK3args {
|
||||||
|
nfs_fh3 file;
|
||||||
|
diropargs3 link;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct LINK3resok {
|
||||||
|
post_op_attr file_attributes;
|
||||||
|
wcc_data linkdir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct LINK3resfail {
|
||||||
|
post_op_attr file_attributes;
|
||||||
|
wcc_data linkdir_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
union LINK3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
LINK3resok resok;
|
||||||
|
default:
|
||||||
|
LINK3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct READDIR3args {
|
||||||
|
nfs_fh3 dir;
|
||||||
|
cookie3 cookie;
|
||||||
|
cookieverf3 cookieverf;
|
||||||
|
count3 count;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct entry3 {
|
||||||
|
fileid3 fileid;
|
||||||
|
filename3 name;
|
||||||
|
cookie3 cookie;
|
||||||
|
entry3 *nextentry;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct dirlist3 {
|
||||||
|
entry3 *entries;
|
||||||
|
bool eof;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct READDIR3resok {
|
||||||
|
post_op_attr dir_attributes;
|
||||||
|
cookieverf3 cookieverf;
|
||||||
|
dirlist3 reply;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct READDIR3resfail {
|
||||||
|
post_op_attr dir_attributes;
|
||||||
|
};
|
||||||
|
|
||||||
|
union READDIR3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
READDIR3resok resok;
|
||||||
|
default:
|
||||||
|
READDIR3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct READDIRPLUS3args {
|
||||||
|
nfs_fh3 dir;
|
||||||
|
cookie3 cookie;
|
||||||
|
cookieverf3 cookieverf;
|
||||||
|
count3 dircount;
|
||||||
|
count3 maxcount;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct entryplus3 {
|
||||||
|
fileid3 fileid;
|
||||||
|
filename3 name;
|
||||||
|
cookie3 cookie;
|
||||||
|
post_op_attr name_attributes;
|
||||||
|
post_op_fh3 name_handle;
|
||||||
|
entryplus3 *nextentry;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct dirlistplus3 {
|
||||||
|
entryplus3 *entries;
|
||||||
|
bool eof;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct READDIRPLUS3resok {
|
||||||
|
post_op_attr dir_attributes;
|
||||||
|
cookieverf3 cookieverf;
|
||||||
|
dirlistplus3 reply;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct READDIRPLUS3resfail {
|
||||||
|
post_op_attr dir_attributes;
|
||||||
|
};
|
||||||
|
|
||||||
|
union READDIRPLUS3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
READDIRPLUS3resok resok;
|
||||||
|
default:
|
||||||
|
READDIRPLUS3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct FSSTAT3args {
|
||||||
|
nfs_fh3 fsroot;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct FSSTAT3resok {
|
||||||
|
post_op_attr obj_attributes;
|
||||||
|
size3 tbytes;
|
||||||
|
size3 fbytes;
|
||||||
|
size3 abytes;
|
||||||
|
size3 tfiles;
|
||||||
|
size3 ffiles;
|
||||||
|
size3 afiles;
|
||||||
|
uint32 invarsec;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct FSSTAT3resfail {
|
||||||
|
post_op_attr obj_attributes;
|
||||||
|
};
|
||||||
|
|
||||||
|
union FSSTAT3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
FSSTAT3resok resok;
|
||||||
|
default:
|
||||||
|
FSSTAT3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct FSINFO3args {
|
||||||
|
nfs_fh3 fsroot;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct FSINFO3resok {
|
||||||
|
post_op_attr obj_attributes;
|
||||||
|
uint32 rtmax;
|
||||||
|
uint32 rtpref;
|
||||||
|
uint32 rtmult;
|
||||||
|
uint32 wtmax;
|
||||||
|
uint32 wtpref;
|
||||||
|
uint32 wtmult;
|
||||||
|
uint32 dtpref;
|
||||||
|
size3 maxfilesize;
|
||||||
|
nfstime3 time_delta;
|
||||||
|
uint32 properties;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct FSINFO3resfail {
|
||||||
|
post_op_attr obj_attributes;
|
||||||
|
};
|
||||||
|
|
||||||
|
union FSINFO3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
FSINFO3resok resok;
|
||||||
|
default:
|
||||||
|
FSINFO3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct PATHCONF3args {
|
||||||
|
nfs_fh3 object;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct PATHCONF3resok {
|
||||||
|
post_op_attr obj_attributes;
|
||||||
|
uint32 linkmax;
|
||||||
|
uint32 name_max;
|
||||||
|
bool no_trunc;
|
||||||
|
bool chown_restricted;
|
||||||
|
bool case_insensitive;
|
||||||
|
bool case_preserving;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct PATHCONF3resfail {
|
||||||
|
post_op_attr obj_attributes;
|
||||||
|
};
|
||||||
|
|
||||||
|
union PATHCONF3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
PATHCONF3resok resok;
|
||||||
|
default:
|
||||||
|
PATHCONF3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct COMMIT3args {
|
||||||
|
nfs_fh3 file;
|
||||||
|
offset3 offset;
|
||||||
|
count3 count;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct COMMIT3resok {
|
||||||
|
wcc_data file_wcc;
|
||||||
|
writeverf3 verf;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct COMMIT3resfail {
|
||||||
|
wcc_data file_wcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
union COMMIT3res switch (nfsstat3 status) {
|
||||||
|
case NFS3_OK:
|
||||||
|
COMMIT3resok resok;
|
||||||
|
default:
|
||||||
|
COMMIT3resfail resfail;
|
||||||
|
};
|
||||||
|
|
||||||
|
program NFS_PROGRAM {
|
||||||
|
version NFS_V3 {
|
||||||
|
void NFSPROC3_NULL(void) = 0;
|
||||||
|
GETATTR3res NFSPROC3_GETATTR(GETATTR3args) = 1;
|
||||||
|
SETATTR3res NFSPROC3_SETATTR(SETATTR3args) = 2;
|
||||||
|
LOOKUP3res NFSPROC3_LOOKUP(LOOKUP3args) = 3;
|
||||||
|
ACCESS3res NFSPROC3_ACCESS(ACCESS3args) = 4;
|
||||||
|
READLINK3res NFSPROC3_READLINK(READLINK3args) = 5;
|
||||||
|
READ3res NFSPROC3_READ(READ3args) = 6;
|
||||||
|
WRITE3res NFSPROC3_WRITE(WRITE3args) = 7;
|
||||||
|
CREATE3res NFSPROC3_CREATE(CREATE3args) = 8;
|
||||||
|
MKDIR3res NFSPROC3_MKDIR(MKDIR3args) = 9;
|
||||||
|
SYMLINK3res NFSPROC3_SYMLINK(SYMLINK3args) = 10;
|
||||||
|
MKNOD3res NFSPROC3_MKNOD(MKNOD3args) = 11;
|
||||||
|
REMOVE3res NFSPROC3_REMOVE(REMOVE3args) = 12;
|
||||||
|
RMDIR3res NFSPROC3_RMDIR(RMDIR3args) = 13;
|
||||||
|
RENAME3res NFSPROC3_RENAME(RENAME3args) = 14;
|
||||||
|
LINK3res NFSPROC3_LINK(LINK3args) = 15;
|
||||||
|
READDIR3res NFSPROC3_READDIR(READDIR3args) = 16;
|
||||||
|
READDIRPLUS3res NFSPROC3_READDIRPLUS(READDIRPLUS3args) = 17;
|
||||||
|
FSSTAT3res NFSPROC3_FSSTAT(FSSTAT3args) = 18;
|
||||||
|
FSINFO3res NFSPROC3_FSINFO(FSINFO3args) = 19;
|
||||||
|
PATHCONF3res NFSPROC3_PATHCONF(PATHCONF3args) = 20;
|
||||||
|
COMMIT3res NFSPROC3_COMMIT(COMMIT3args) = 21;
|
||||||
|
} = 3;
|
||||||
|
} = 100003;
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue