344 lines
9.2 KiB
C
Executable File
344 lines
9.2 KiB
C
Executable File
/*
|
|
* Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
|
|
* Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
* are permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
* conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
|
* provided with the distribution.
|
|
*
|
|
* 3. Neither the name of the copyright holder nor the names of its contributors may be used
|
|
* to endorse or promote products derived from this software without specific prior written
|
|
* permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include "fatfs.h"
|
|
#include "dirent.h"
|
|
#include "errno.h"
|
|
#include "fcntl.h"
|
|
#include "securec.h"
|
|
#include "stdio.h"
|
|
#include "stdlib.h"
|
|
#include "string.h"
|
|
#include "sys/mount.h"
|
|
#include "sys/statfs.h"
|
|
#include "sys/stat.h"
|
|
#include "unistd.h"
|
|
|
|
#ifdef LOSCFG_NET_LWIP_SACK
|
|
#include "lwip/lwipopts.h"
|
|
#define CONFIG_NSOCKET_DESCRIPTORS LWIP_CONFIG_NUM_SOCKETS
|
|
#else
|
|
#define CONFIG_NSOCKET_DESCRIPTORS 0
|
|
#endif
|
|
|
|
#define CONFIG_NFILE_DESCRIPTORS FAT_MAX_OPEN_FILES /* only for random currently */
|
|
|
|
#ifdef LOSCFG_RANDOM_DEV
|
|
#include "hks_client.h"
|
|
#define RANDOM_DEV_FD CONFIG_NFILE_DESCRIPTORS + CONFIG_NSOCKET_DESCRIPTORS
|
|
#define RANDOM_DEV_PATH "/dev/random"
|
|
#endif
|
|
|
|
#define FREE_AND_SET_NULL(ptr) do { \
|
|
free(ptr); \
|
|
ptr = NULL; \
|
|
} while (0)
|
|
|
|
#ifdef LOSCFG_RANDOM_DEV
|
|
/**
|
|
* @brief Get canonical form of a given path based on cwd(Current working directory).
|
|
*
|
|
* @param cwd Indicates the current working directory.
|
|
* @param path Indicates the path to be canonicalization.
|
|
* @param buf Indicates the pointer to the buffer where the result will be return.
|
|
* @param bufSize Indicates the size of the buffer.
|
|
* @return Returns the length of the canonical path.
|
|
*
|
|
* @attention if path is an absolute path, cwd is ignored. if cwd if not specified, it is assumed to be root('/').
|
|
* if the buffer is not big enough the result will be truncated, but the return value will always be the
|
|
* length of the canonical path.
|
|
*/
|
|
static size_t GetCanonicalPath(const char *cwd, const char *path, char *buf, size_t bufSize)
|
|
{
|
|
size_t offset;
|
|
if (!path) {
|
|
path = "";
|
|
}
|
|
|
|
if (!cwd || path[0] == '/') {
|
|
cwd = "";
|
|
}
|
|
|
|
offset = strlen("///") + 1; // three '/' and one '\0'
|
|
size_t tmpLen = strlen(cwd) + strlen(path) + offset;
|
|
char *tmpBuf = (char *)malloc(tmpLen);
|
|
if (tmpBuf == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
if (-1 == sprintf_s(tmpBuf, tmpLen, "/%s/%s/", cwd, path)) {
|
|
free(tmpBuf);
|
|
return 0;
|
|
}
|
|
|
|
char *p;
|
|
/* replace /./ to / */
|
|
offset = strlen("/./") - 1;
|
|
while ((p = strstr(tmpBuf, "/./")) != NULL) {
|
|
if (EOK != memmove_s(p, tmpLen - (p - tmpBuf), p + offset, tmpLen - (p - tmpBuf) - offset)) {
|
|
free(tmpBuf);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/* replace // to / */
|
|
while ((p = strstr(tmpBuf, "//")) != NULL) {
|
|
if (EOK != memmove_s(p, tmpLen - (p - tmpBuf), p + 1, tmpLen - (p - tmpBuf) - 1)) {
|
|
free(tmpBuf);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/* handle /../ (e.g., replace /aa/bb/../ to /aa/) */
|
|
offset = strlen("/../") - 1;
|
|
while ((p = strstr(tmpBuf, "/../")) != NULL) {
|
|
char *start = p;
|
|
while (start > tmpBuf && *(start - 1) != '/') {
|
|
--start;
|
|
}
|
|
if (EOK != memmove_s(start, tmpLen - (start - tmpBuf), p + offset, tmpLen - (p - tmpBuf) - offset)) {
|
|
free(tmpBuf);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
size_t totalLen = strlen(tmpBuf);
|
|
/* strip the last / */
|
|
if (totalLen > 1 && tmpBuf[totalLen - 1] == '/') {
|
|
tmpBuf[--totalLen] = 0;
|
|
}
|
|
|
|
if (!buf || bufSize == 0) {
|
|
free(tmpBuf);
|
|
return totalLen;
|
|
}
|
|
|
|
if (EOK != memcpy_s(buf, bufSize, tmpBuf, (((totalLen + 1) > bufSize) ? bufSize : (totalLen + 1)))) {
|
|
free(tmpBuf);
|
|
return 0;
|
|
}
|
|
|
|
buf[bufSize - 1] = 0;
|
|
free(tmpBuf);
|
|
return totalLen;
|
|
}
|
|
#endif
|
|
|
|
int mount(const char *source, const char *target,
|
|
const char *filesystemtype, unsigned long mountflags,
|
|
const void *data)
|
|
{
|
|
return fatfs_mount(source, target, filesystemtype, mountflags, data);
|
|
}
|
|
|
|
int umount(const char *target)
|
|
{
|
|
return fatfs_umount(target);
|
|
}
|
|
|
|
int umount2(const char *target, int flag)
|
|
{
|
|
return fatfs_umount2(target, flag);
|
|
}
|
|
|
|
int open(const char *path, int oflag, ...)
|
|
{
|
|
#ifdef LOSCFG_RANDOM_DEV
|
|
unsigned flags = O_RDONLY | O_WRONLY | O_RDWR | O_APPEND | O_CREAT | O_LARGEFILE | O_TRUNC | O_EXCL | O_DIRECTORY;
|
|
if ((unsigned)oflag & ~flags) {
|
|
errno = EINVAL;
|
|
return -1;
|
|
}
|
|
|
|
size_t pathLen = strlen(path) + 1;
|
|
char *canonicalPath = (char *)malloc(pathLen);
|
|
if (!canonicalPath) {
|
|
errno = ENOMEM;
|
|
return -1;
|
|
}
|
|
if (GetCanonicalPath(NULL, path, canonicalPath, pathLen) == 0) {
|
|
FREE_AND_SET_NULL(canonicalPath);
|
|
errno = ENOMEM;
|
|
return -1;
|
|
}
|
|
|
|
if (strcmp(canonicalPath, RANDOM_DEV_PATH) == 0) {
|
|
FREE_AND_SET_NULL(canonicalPath);
|
|
if ((O_ACCMODE & (unsigned)oflag) != O_RDONLY) {
|
|
errno = EPERM;
|
|
return -1;
|
|
}
|
|
if ((unsigned)oflag & O_DIRECTORY) {
|
|
errno = ENOTDIR;
|
|
return -1;
|
|
}
|
|
return RANDOM_DEV_FD;
|
|
}
|
|
if (strcmp(canonicalPath, "/") == 0 || strcmp(canonicalPath, "/dev") == 0) {
|
|
FREE_AND_SET_NULL(canonicalPath);
|
|
if ((unsigned)oflag & O_DIRECTORY) {
|
|
errno = EPERM;
|
|
return -1;
|
|
}
|
|
errno = EISDIR;
|
|
return -1;
|
|
}
|
|
FREE_AND_SET_NULL(canonicalPath);
|
|
#endif
|
|
return fatfs_open(path, oflag);
|
|
}
|
|
|
|
int close(int fd)
|
|
{
|
|
#ifdef LOSCFG_RANDOM_DEV
|
|
if (fd == RANDOM_DEV_FD) {
|
|
return 0;
|
|
}
|
|
#endif
|
|
#ifdef LOSCFG_NET_LWIP_SACK
|
|
if (fd >= CONFIG_NFILE_DESCRIPTORS && fd < (CONFIG_NFILE_DESCRIPTORS + CONFIG_NSOCKET_DESCRIPTORS)) {
|
|
return closesocket(fd);
|
|
}
|
|
#endif
|
|
return fatfs_close(fd);
|
|
}
|
|
|
|
ssize_t read(int fd, void *buf, size_t nbyte)
|
|
{
|
|
#ifdef LOSCFG_RANDOM_DEV
|
|
if (fd == RANDOM_DEV_FD) {
|
|
if (nbyte == 0) {
|
|
return 0;
|
|
}
|
|
if (buf == NULL) {
|
|
errno = EINVAL;
|
|
return -1;
|
|
}
|
|
if (nbyte > 1024) {
|
|
nbyte = 1024; /* hks_generate_random: random_size must <= 1024 */
|
|
}
|
|
struct hks_blob key = {HKS_BLOB_TYPE_RAW, (uint8_t *)buf, nbyte};
|
|
if (hks_generate_random(&key) != 0) {
|
|
errno = EIO;
|
|
return -1;
|
|
}
|
|
return (ssize_t)nbyte;
|
|
}
|
|
#endif
|
|
#ifdef LOSCFG_NET_LWIP_SACK
|
|
if (fd >= CONFIG_NFILE_DESCRIPTORS && fd < (CONFIG_NFILE_DESCRIPTORS + CONFIG_NSOCKET_DESCRIPTORS)) {
|
|
return recv(fd, buf, nbyte, 0);
|
|
}
|
|
#endif
|
|
return fatfs_read(fd, buf, nbyte);
|
|
}
|
|
|
|
ssize_t write(int fd, const void *buf, size_t nbyte)
|
|
{
|
|
#ifdef LOSCFG_RANDOM_DEV
|
|
if (fd == RANDOM_DEV_FD) {
|
|
errno = EBADF; /* "/dev/random" is readonly */
|
|
return -1;
|
|
}
|
|
#endif
|
|
#ifdef LOSCFG_NET_LWIP_SACK
|
|
if (fd >= CONFIG_NFILE_DESCRIPTORS && fd < (CONFIG_NFILE_DESCRIPTORS + CONFIG_NSOCKET_DESCRIPTORS)) {
|
|
return send(fd, buf, nbyte, 0);
|
|
}
|
|
#endif
|
|
return fatfs_write(fd, buf, nbyte);
|
|
}
|
|
|
|
off_t lseek(int fd, off_t offset, int whence)
|
|
{
|
|
return fatfs_lseek(fd, offset, whence);
|
|
}
|
|
|
|
int unlink(const char *path)
|
|
{
|
|
return fatfs_unlink(path);
|
|
}
|
|
|
|
int fstat(int fd, struct stat *buf)
|
|
{
|
|
return fatfs_fstat(fd, buf);
|
|
}
|
|
|
|
int stat(const char *path, struct stat *buf)
|
|
{
|
|
return fatfs_stat(path, buf);
|
|
}
|
|
|
|
int fsync(int fd)
|
|
{
|
|
return fatfs_fsync(fd);
|
|
}
|
|
|
|
int mkdir(const char *path, mode_t mode)
|
|
{
|
|
return fatfs_mkdir(path, mode);
|
|
}
|
|
|
|
DIR *opendir(const char *dirName)
|
|
{
|
|
return fatfs_opendir(dirName);
|
|
}
|
|
|
|
struct dirent *readdir(DIR *dir)
|
|
{
|
|
return fatfs_readdir(dir);
|
|
}
|
|
|
|
int closedir(DIR *dir)
|
|
{
|
|
return fatfs_closedir(dir);
|
|
}
|
|
|
|
int rmdir(const char *path)
|
|
{
|
|
return fatfs_rmdir(path);
|
|
}
|
|
|
|
int rename(const char *oldName, const char *newName)
|
|
{
|
|
return fatfs_rename(oldName, newName);
|
|
}
|
|
|
|
int statfs(const char *path, struct statfs *buf)
|
|
{
|
|
return fatfs_statfs(path, buf);
|
|
}
|
|
|
|
int ftruncate(int fd, off_t length)
|
|
{
|
|
return fatfs_ftruncate(fd, length);
|
|
}
|