2020-09-08 10:21:39 +08:00
|
|
|
/*
|
2021-03-11 18:43:57 +08:00
|
|
|
* Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
|
|
|
|
* Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
|
2020-09-08 10:21:39 +08:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
* conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
|
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
|
|
|
* provided with the distribution.
|
|
|
|
*
|
|
|
|
* 3. Neither the name of the copyright holder nor the names of its contributors may be used
|
|
|
|
* to endorse or promote products derived from this software without specific prior written
|
|
|
|
* permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _VFS_CONFIG_H_
|
|
|
|
#define _VFS_CONFIG_H_
|
|
|
|
|
|
|
|
#include "los_config.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#if __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#define CONFIG_DISABLE_MQUEUE // disable posix mqueue inode configure
|
|
|
|
|
|
|
|
/* file system configur */
|
|
|
|
|
|
|
|
#define CONFIG_FS_WRITABLE // enable file system can be written
|
|
|
|
#define CONFIG_FS_READABLE // enable file system can be read
|
|
|
|
#define CONFIG_DEBUG_FS // enable vfs debug function
|
|
|
|
|
|
|
|
|
|
|
|
/* fatfs cache configur */
|
|
|
|
/* config block size for fat file system, only can be 0,32,64,128,256,512,1024 */
|
|
|
|
#define CONFIG_FS_FAT_SECTOR_PER_BLOCK 64
|
|
|
|
|
|
|
|
/* config block num for fat file system */
|
|
|
|
#define CONFIG_FS_FAT_READ_NUMS 7
|
|
|
|
#define CONFIG_FS_FAT_BLOCK_NUMS 28
|
|
|
|
|
|
|
|
#ifdef LOSCFG_FS_FAT_CACHE_SYNC_THREAD
|
|
|
|
|
|
|
|
/* config the priority of sync task */
|
|
|
|
|
|
|
|
#define CONFIG_FS_FAT_SYNC_THREAD_PRIO 10
|
|
|
|
|
|
|
|
/* config dirty ratio of bcache for fat file system */
|
|
|
|
|
2021-03-11 18:43:57 +08:00
|
|
|
#define CONFIG_FS_FAT_DIRTY_RATIO 60
|
2020-09-08 10:21:39 +08:00
|
|
|
|
|
|
|
/* config time interval of sync thread for fat file system, in milliseconds */
|
|
|
|
|
|
|
|
#define CONFIG_FS_FAT_SYNC_INTERVAL 5000
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define CONFIG_FS_FLASH_BLOCK_NUM 1
|
|
|
|
|
feat: support link/symlink/readlink
新增link/symlink/readlink接口的系统调用及内核实现,当前仅支持jffs2文件系统。具体接口说明如下:
一、hard link
接口原型:
int link(const char *oldpath, const char *newpath);
int linkat(int olddirfd, const char *oldpath, int newdirfd, const char *newpath, int flags);
作用:
创建oldpath的硬链接,名为newpath。
功能说明:
1、newpath与oldpath必须在同一挂载分区内。
2、若newpath已存在,不会覆盖,错误码EEXIST。
3、oldpath必须为普通文件或者软链接文件。
4、如果oldpath是一个软链接文件,那么:
若调用link接口或者linkat(flags=0),创建出软链接文件的硬链接;
若调用linkat(flags = AT_SYMLINK_FOLLOW),创建出软链接所指向源文件的硬链接。
5、oldpath与newpath对应同一个文件,对oldpath与newpath任一名字的操作都是直接操作文件,没有“原始文件”的说法。
6、使用cp命令拷贝一个硬链接文件,生成文件的拷贝,新文件的nlink数为1。
7、删除oldpath或newpath,底层文件仍存在,可以通过另一个path访问。只有当两个path都删除之后,才会真正将文件删除,空间释放。
二、symbol link
接口原型:
int symlink(const char *target, const char *linkpath);
int symlinkat(const char *target, int newdirfd, const char *linkpath);
作用:
创建一个软链接文件linkpath,存储字符串target。
功能说明:
1、target可以为任意字符串(长度小于PATH_MAX)。
2、若linkpath文件名已存在,不会覆盖,错误码EEXIST。
3、用readlink函数可读取软链接的target内容。
4、软链接文件本身大小为target长度。
5、ls时软链接文件类型显示为 'l'。
6、symlink最大循环次数为CONFIG_FS_MAX_LNK_CNT(目前为40),超出则返回错误,错误码ELOOP。
7、使用cp命令拷贝一个软链接文件:
若target是一个文件:创建一个源文件的拷贝,类型为普通文件;
若target非文件:拷贝失败。
三、readlink
接口原型:
ssize_t readlink(const char *pathname, char *buf, size_t bufsiz);
ssize_t readlinkat(int dirfd, const char *pathname, char *buf, size_t bufsiz);
作用:
读取软链接文件存放的的target内容。
功能说明:
1、pathname必须为软链接文件,否则错误码EINVAL。
2、如果bufsiz小于target长度,则截断target。
close #I3Q0OD
Change-Id: I3864d6069b627b705a369e8e32dc1eb922dc0157
Signed-off-by: chenjing <chenjing139@huawei.com>
2021-06-04 10:30:12 +08:00
|
|
|
#define CONFIG_FS_MAX_LNK_CNT 40
|
|
|
|
|
2020-09-08 10:21:39 +08:00
|
|
|
/* nfs configure */
|
|
|
|
|
|
|
|
#define CONFIG_NFS_MACHINE_NAME "IPC" // nfs device name is IPC
|
|
|
|
#define CONFIG_NFS_MACHINE_NAME_SIZE 3 // size of nfs machine name
|
|
|
|
|
|
|
|
|
|
|
|
/* file descriptors configure */
|
|
|
|
|
|
|
|
#define CONFIG_NFILE_STREAMS 1 // enable file stream
|
|
|
|
#define CONFIG_STDIO_BUFFER_SIZE 0
|
|
|
|
#define CONFIG_NUNGET_CHARS 0
|
|
|
|
|
2021-03-11 18:43:57 +08:00
|
|
|
#define FD_SET_TOTAL_SIZE (FD_SETSIZE + CONFIG_NEXPANED_DESCRIPTORS)
|
|
|
|
#define FD_SETSIZE (CONFIG_NFILE_DESCRIPTORS + CONFIG_NSOCKET_DESCRIPTORS)
|
|
|
|
#define CONFIG_NEXPANED_DESCRIPTORS (CONFIG_NTIME_DESCRIPTORS + CONFIG_NQUEUE_DESCRIPTORS)
|
|
|
|
#define TIMER_FD_OFFSET FD_SETSIZE
|
|
|
|
#define MQUEUE_FD_OFFSET (FD_SETSIZE + CONFIG_NTIME_DESCRIPTORS)
|
2020-09-08 10:21:39 +08:00
|
|
|
|
|
|
|
/* net configure */
|
|
|
|
|
|
|
|
#ifdef LOSCFG_NET_LWIP_SACK // enable socket and net function
|
|
|
|
#include "lwip/lwipopts.h"
|
|
|
|
#define CONFIG_NSOCKET_DESCRIPTORS LWIP_CONFIG_NUM_SOCKETS // max numbers of socket descriptor
|
|
|
|
|
|
|
|
/* max numbers of other descriptors except socket descriptors */
|
|
|
|
|
|
|
|
#define CONFIG_NFILE_DESCRIPTORS 512
|
|
|
|
#define CONFIG_NET_SENDFILE 1 // enable sendfile function
|
|
|
|
#define CONFIG_NET_TCP 1 // enable sendfile and send function
|
|
|
|
#else
|
|
|
|
#define CONFIG_NSOCKET_DESCRIPTORS 0
|
|
|
|
#define CONFIG_NFILE_DESCRIPTORS 512
|
|
|
|
#define CONFIG_NET_SENDFILE 0 // disable sendfile function
|
|
|
|
#define CONFIG_NET_TCP 0 // disable sendfile and send function
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define NR_OPEN_DEFAULT CONFIG_NFILE_DESCRIPTORS
|
|
|
|
|
2021-03-11 18:43:57 +08:00
|
|
|
/* time configure */
|
|
|
|
|
|
|
|
#define CONFIG_NTIME_DESCRIPTORS 0
|
|
|
|
|
|
|
|
/* mqueue configure */
|
|
|
|
|
|
|
|
#define CONFIG_NQUEUE_DESCRIPTORS 256
|
|
|
|
|
2020-09-08 10:21:39 +08:00
|
|
|
/* directory configure */
|
|
|
|
|
|
|
|
#define VFS_USING_WORKDIR // enable current working directory
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#if __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|