302 lines
8.0 KiB
C
302 lines
8.0 KiB
C
/*
|
|
* Copyright (c) 2021-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 "proc_file.h"
|
|
|
|
#include <sys/statfs.h>
|
|
#include <stdlib.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
|
|
#include "fs/dirent_fs.h"
|
|
#include "los_tables.h"
|
|
#include "internal.h"
|
|
|
|
#define PROCFS_DEFAULT_MODE 0555
|
|
|
|
#ifdef LOSCFG_FS_PROC
|
|
static struct VnodeOps g_procfsVops;
|
|
static struct file_operations_vfs g_procfsFops;
|
|
|
|
static struct ProcDirEntry *VnodeToEntry(struct Vnode *node)
|
|
{
|
|
return (struct ProcDirEntry *)(node->data);
|
|
}
|
|
|
|
static struct Vnode *EntryToVnode(struct ProcDirEntry *entry)
|
|
{
|
|
struct Vnode *node = NULL;
|
|
|
|
(void)VnodeAlloc(&g_procfsVops, &node);
|
|
node->fop = &g_procfsFops;
|
|
node->data = entry;
|
|
node->type = entry->type;
|
|
if (node->type == VNODE_TYPE_DIR) {
|
|
node->mode = S_IFDIR | PROCFS_DEFAULT_MODE;
|
|
} else {
|
|
node->mode = S_IFREG | PROCFS_DEFAULT_MODE;
|
|
}
|
|
return node;
|
|
}
|
|
|
|
static int EntryMatch(const char *name, int len, const struct ProcDirEntry *pn)
|
|
{
|
|
if (len != pn->nameLen) {
|
|
return 0;
|
|
}
|
|
return !strncmp(name, pn->name, len);
|
|
}
|
|
|
|
int VfsProcfsRead(struct file *filep, char *buffer, size_t buflen)
|
|
{
|
|
ssize_t size;
|
|
struct ProcDirEntry *entry = NULL;
|
|
if ((filep == NULL) || (filep->f_vnode == NULL) || (buffer == NULL)) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
entry = VnodeToEntry(filep->f_vnode);
|
|
size = (ssize_t)ReadProcFile(entry, (void *)buffer, buflen);
|
|
filep->f_pos = entry->pf->fPos;
|
|
|
|
return size;
|
|
}
|
|
|
|
int VfsProcfsLookup(struct Vnode *parent, const char *name, int len, struct Vnode **vpp)
|
|
{
|
|
if (parent == NULL || name == NULL || len <= 0 || vpp == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
struct ProcDirEntry *entry = VnodeToEntry(parent);
|
|
if (entry == NULL) {
|
|
return -ENODATA;
|
|
}
|
|
entry = entry->subdir;
|
|
while (1) {
|
|
if (entry == NULL) {
|
|
return -ENOENT;
|
|
}
|
|
if (EntryMatch(name, len, entry)) {
|
|
break;
|
|
}
|
|
entry = entry->next;
|
|
}
|
|
|
|
*vpp = EntryToVnode(entry);
|
|
if ((*vpp) == NULL) {
|
|
return -ENOMEM;
|
|
}
|
|
(*vpp)->originMount = parent->originMount;
|
|
(*vpp)->parent = parent;
|
|
return LOS_OK;
|
|
}
|
|
|
|
int VfsProcfsMount(struct Mount *mnt, struct Vnode *device, const void *data)
|
|
{
|
|
struct Vnode *vp = NULL;
|
|
int ret;
|
|
|
|
spin_lock_init(&procfsLock);
|
|
procfsInit = true;
|
|
|
|
ret = VnodeAlloc(&g_procfsVops, &vp);
|
|
if (ret != 0) {
|
|
return -ENOMEM;
|
|
}
|
|
|
|
struct ProcDirEntry *root = GetProcRootEntry();
|
|
vp->data = root;
|
|
vp->originMount = mnt;
|
|
vp->fop = &g_procfsFops;
|
|
mnt->data = NULL;
|
|
mnt->vnodeCovered = vp;
|
|
vp->type = root->type;
|
|
if (vp->type == VNODE_TYPE_DIR) {
|
|
vp->mode = S_IFDIR | PROCFS_DEFAULT_MODE;
|
|
} else {
|
|
vp->mode = S_IFREG | PROCFS_DEFAULT_MODE;
|
|
}
|
|
|
|
return LOS_OK;
|
|
}
|
|
|
|
int VfsProcfsUnmount(void *handle, struct Vnode **blkdriver)
|
|
{
|
|
(void)handle;
|
|
(void)blkdriver;
|
|
return -EPERM;
|
|
}
|
|
|
|
int VfsProcfsStat(struct Vnode *node, struct stat *buf)
|
|
{
|
|
struct ProcDirEntry *entry = VnodeToEntry(node);
|
|
|
|
(void)memset_s(buf, sizeof(struct stat), 0, sizeof(struct stat));
|
|
buf->st_mode = entry->mode;
|
|
|
|
return LOS_OK;
|
|
}
|
|
|
|
int VfsProcfsReaddir(struct Vnode *node, struct fs_dirent_s *dir)
|
|
{
|
|
int result;
|
|
char *buffer = NULL;
|
|
int buflen = NAME_MAX;
|
|
unsigned int min_size;
|
|
unsigned int dst_name_size;
|
|
struct ProcDirEntry *pde = NULL;
|
|
int i = 0;
|
|
|
|
if (dir == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
if (node->type != VNODE_TYPE_DIR) {
|
|
return -ENOTDIR;
|
|
}
|
|
pde = VnodeToEntry(node);
|
|
|
|
while (i < dir->read_cnt) {
|
|
buffer = (char *)zalloc(sizeof(char) * NAME_MAX);
|
|
if (buffer == NULL) {
|
|
PRINT_ERR("malloc failed\n");
|
|
return -ENOMEM;
|
|
}
|
|
|
|
result = ReadProcFile(pde, (void *)buffer, buflen);
|
|
if (result != ENOERR) {
|
|
free(buffer);
|
|
break;
|
|
}
|
|
dst_name_size = sizeof(dir->fd_dir[i].d_name);
|
|
min_size = (dst_name_size < NAME_MAX) ? dst_name_size : NAME_MAX;
|
|
result = strncpy_s(dir->fd_dir[i].d_name, dst_name_size, buffer, min_size);
|
|
if (result != EOK) {
|
|
free(buffer);
|
|
return -ENAMETOOLONG;
|
|
}
|
|
dir->fd_dir[i].d_name[dst_name_size - 1] = '\0';
|
|
dir->fd_position++;
|
|
dir->fd_dir[i].d_off = dir->fd_position;
|
|
dir->fd_dir[i].d_reclen = (uint16_t)sizeof(struct dirent);
|
|
|
|
i++;
|
|
free(buffer);
|
|
}
|
|
|
|
return i;
|
|
}
|
|
|
|
int VfsProcfsOpendir(struct Vnode *node, struct fs_dirent_s *dir)
|
|
{
|
|
struct ProcDirEntry *pde = VnodeToEntry(node);
|
|
if (pde == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
pde->pdirCurrent = pde->subdir;
|
|
pde->pf->fPos = 0;
|
|
|
|
return LOS_OK;
|
|
}
|
|
|
|
int VfsProcfsOpen(struct file *filep)
|
|
{
|
|
if (filep == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
struct Vnode *node = filep->f_vnode;
|
|
struct ProcDirEntry *pde = VnodeToEntry(node);
|
|
if (ProcOpen(pde->pf) != OK) {
|
|
return -ENOMEM;
|
|
}
|
|
if (S_ISREG(pde->mode) && (pde->procFileOps != NULL) && (pde->procFileOps->open != NULL)) {
|
|
(void)pde->procFileOps->open((struct Vnode *)pde, pde->pf);
|
|
}
|
|
if (S_ISDIR(pde->mode)) {
|
|
pde->pdirCurrent = pde->subdir;
|
|
pde->pf->fPos = 0;
|
|
}
|
|
filep->f_priv = (void *)pde;
|
|
return LOS_OK;
|
|
}
|
|
|
|
int VfsProcfsClose(struct file *filep)
|
|
{
|
|
int result = 0;
|
|
if (filep == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
struct Vnode *node = filep->f_vnode;
|
|
struct ProcDirEntry *pde = VnodeToEntry(node);
|
|
pde->pf->fPos = 0;
|
|
if ((pde->procFileOps != NULL) && (pde->procFileOps->release != NULL)) {
|
|
result = pde->procFileOps->release((struct Vnode *)pde, pde->pf);
|
|
}
|
|
LosBufRelease(pde->pf->sbuf);
|
|
pde->pf->sbuf = NULL;
|
|
|
|
return result;
|
|
}
|
|
|
|
int VfsProcfsStatfs(struct Mount *mnt, struct statfs *buf)
|
|
{
|
|
(void)memset_s(buf, sizeof(struct statfs), 0, sizeof(struct statfs));
|
|
buf->f_type = PROCFS_MAGIC;
|
|
|
|
return LOS_OK;
|
|
}
|
|
|
|
int VfsProcfsClosedir(struct Vnode *vp, struct fs_dirent_s *dir)
|
|
{
|
|
return LOS_OK;
|
|
}
|
|
|
|
const struct MountOps procfs_operations = {
|
|
.Mount = VfsProcfsMount,
|
|
.Unmount = NULL,
|
|
.Statfs = VfsProcfsStatfs,
|
|
};
|
|
|
|
static struct VnodeOps g_procfsVops = {
|
|
.Lookup = VfsProcfsLookup,
|
|
.Getattr = VfsProcfsStat,
|
|
.Readdir = VfsProcfsReaddir,
|
|
.Opendir = VfsProcfsOpendir,
|
|
.Closedir = VfsProcfsClosedir
|
|
};
|
|
|
|
static struct file_operations_vfs g_procfsFops = {
|
|
.read = VfsProcfsRead,
|
|
.open = VfsProcfsOpen,
|
|
.close = VfsProcfsClose
|
|
};
|
|
|
|
FSMAP_ENTRY(procfs_fsmap, "procfs", procfs_operations, FALSE, FALSE);
|
|
#endif
|