fs: Reimplement file_open to not depend on nx_open
on the other hand, open/nx_open call file_open instead Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com> Change-Id: I66990a77cdeb6ff18f7bf48a65bbc7b701dad552
This commit is contained in:
parent
7a953bb154
commit
0032ddb8bf
@ -119,7 +119,7 @@ int find_blockdriver(FAR const char *pathname, int mountflags,
|
||||
****************************************************************************/
|
||||
|
||||
#if !defined(CONFIG_DISABLE_MOUNTPOINT)
|
||||
int block_proxy(FAR const char *blkdev, int oflags);
|
||||
int block_proxy(FAR struct file *filep, FAR const char *blkdev, int oflags);
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
@ -105,10 +105,10 @@ static FAR char *unique_chardev(void)
|
||||
|
||||
/* Make sure that file name is not in use */
|
||||
|
||||
ret = stat(devbuf, &statbuf);
|
||||
ret = nx_stat(devbuf, &statbuf, 1);
|
||||
if (ret < 0)
|
||||
{
|
||||
DEBUGASSERT(errno == ENOENT);
|
||||
DEBUGASSERT(ret == -ENOENT);
|
||||
return strdup(devbuf);
|
||||
}
|
||||
|
||||
@ -147,12 +147,11 @@ static FAR char *unique_chardev(void)
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
int block_proxy(FAR const char *blkdev, int oflags)
|
||||
int block_proxy(FAR struct file *filep, FAR const char *blkdev, int oflags)
|
||||
{
|
||||
FAR char *chardev;
|
||||
bool readonly;
|
||||
int ret;
|
||||
int fd;
|
||||
|
||||
DEBUGASSERT(blkdev);
|
||||
|
||||
@ -183,10 +182,9 @@ int block_proxy(FAR const char *blkdev, int oflags)
|
||||
/* Open the newly created character driver */
|
||||
|
||||
oflags &= ~(O_CREAT | O_EXCL | O_APPEND | O_TRUNC);
|
||||
fd = nx_open(chardev, oflags);
|
||||
if (fd < 0)
|
||||
ret = file_open(filep, chardev, oflags);
|
||||
if (ret < 0)
|
||||
{
|
||||
ret = fd;
|
||||
ferr("ERROR: Failed to open %s: %d\n", chardev, ret);
|
||||
goto errout_with_bchdev;
|
||||
}
|
||||
@ -209,7 +207,7 @@ int block_proxy(FAR const char *blkdev, int oflags)
|
||||
*/
|
||||
|
||||
kmm_free(chardev);
|
||||
return fd;
|
||||
return OK;
|
||||
|
||||
errout_with_bchdev:
|
||||
unlink(chardev);
|
||||
|
@ -36,7 +36,7 @@
|
||||
CSRCS += fs_files.c fs_foreachinode.c fs_inode.c fs_inodeaddref.c
|
||||
CSRCS += fs_inodebasename.c fs_inodefind.c fs_inodefree.c fs_inoderelease.c
|
||||
CSRCS += fs_inoderemove.c fs_inodereserve.c fs_inodesearch.c
|
||||
CSRCS += fs_fileopen.c fs_filedetach.c
|
||||
CSRCS += fs_filedetach.c
|
||||
|
||||
# Include inode/utils build support
|
||||
|
||||
|
@ -1,110 +0,0 @@
|
||||
/****************************************************************************
|
||||
* fs/inode/fs_fileopen.c
|
||||
*
|
||||
* Copyright (C) 2018-2019 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
*
|
||||
* 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 NuttX 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 OWNER 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.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
#include <nuttx/config.h>
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <fcntl.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <nuttx/fs/fs.h>
|
||||
|
||||
#include "inode/inode.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Name: file_open
|
||||
*
|
||||
* Description:
|
||||
* file_open() is similar to the standard 'open' interface except that it
|
||||
* returns an instance of 'struct file' rather than a file descriptor. It
|
||||
* also is not a cancellation point and does not modify the errno variable.
|
||||
*
|
||||
* Input Parameters:
|
||||
* filep - The caller provided location in which to return the 'struct
|
||||
* file' instance.
|
||||
* path - The full path to the file to be open.
|
||||
* oflags - open flags
|
||||
* ... - Variable number of arguments, may include 'mode_t mode'
|
||||
*
|
||||
* Returned Value:
|
||||
* Zero (OK) is returned on success. On failure, a negated errno value is
|
||||
* returned.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
int file_open(FAR struct file *filep, FAR const char *path, int oflags, ...)
|
||||
{
|
||||
va_list ap;
|
||||
int ret;
|
||||
int fd;
|
||||
|
||||
DEBUGASSERT(filep != NULL && path != NULL);
|
||||
|
||||
/* At present, this is just a placeholder. It is just a wrapper around
|
||||
* nx_open() followed by a called to file_detach(). Ideally, this should
|
||||
* a native open function that opens the VFS node directly without using
|
||||
* any file descriptors.
|
||||
*/
|
||||
|
||||
va_start(ap, oflags);
|
||||
fd = nx_vopen(path, oflags, ap);
|
||||
va_end(ap);
|
||||
|
||||
if (fd < 0)
|
||||
{
|
||||
return fd;
|
||||
}
|
||||
|
||||
/* Detach the file structure from the file descriptor so that it can be
|
||||
* used on any thread.
|
||||
*/
|
||||
|
||||
ret = file_detach(fd, filep);
|
||||
if (ret < 0)
|
||||
{
|
||||
nx_close(fd);
|
||||
return ret;
|
||||
}
|
||||
|
||||
return OK;
|
||||
}
|
132
fs/vfs/fs_open.c
132
fs/vfs/fs_open.c
@ -80,31 +80,30 @@ int inode_checkflags(FAR struct inode *inode, int oflags)
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* Name: nx_vopen
|
||||
* Name: file_vopen
|
||||
*
|
||||
* Description:
|
||||
* nx_vopen() is identical to 'nx_open' except that it accepts a va_list
|
||||
* file_vopen() is identical to 'file_open' except that it accepts va_list
|
||||
* as an argument versus taking a variable length list of arguments.
|
||||
*
|
||||
* nx_vopen() is an internal NuttX interface and should not be called from
|
||||
* applications.
|
||||
* file_vopen() is an internal NuttX interface and should not be called
|
||||
* from applications.
|
||||
*
|
||||
* Returned Value:
|
||||
* The new file descriptor is returned on success; a negated errno value is
|
||||
* returned on any failure.
|
||||
* Zero (OK) is returned on success. On failure, a negated errno value is
|
||||
* returned.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
int nx_vopen(FAR const char *path, int oflags, va_list ap)
|
||||
int file_vopen(FAR struct file *filep,
|
||||
FAR const char *path, int oflags, va_list ap)
|
||||
{
|
||||
struct inode_search_s desc;
|
||||
FAR struct file *filep;
|
||||
FAR struct inode *inode;
|
||||
#if defined(CONFIG_FILE_MODE) || !defined(CONFIG_DISABLE_MOUNTPOINT)
|
||||
mode_t mode = 0666;
|
||||
#endif
|
||||
int ret;
|
||||
int fd;
|
||||
|
||||
if (path == NULL)
|
||||
{
|
||||
@ -160,20 +159,11 @@ int nx_vopen(FAR const char *path, int oflags, va_list ap)
|
||||
/* Release the inode reference */
|
||||
|
||||
inode_release(inode);
|
||||
RELEASE_SEARCH(&desc);
|
||||
|
||||
/* Get the file descriptor of the opened character driver proxy */
|
||||
|
||||
fd = block_proxy(path, oflags);
|
||||
if (fd < 0)
|
||||
{
|
||||
ret = fd;
|
||||
goto errout_with_search;
|
||||
}
|
||||
|
||||
/* Return the file descriptor */
|
||||
|
||||
RELEASE_SEARCH(&desc);
|
||||
return fd;
|
||||
return block_proxy(filep, path, oflags);
|
||||
}
|
||||
else
|
||||
#endif
|
||||
@ -204,20 +194,10 @@ int nx_vopen(FAR const char *path, int oflags, va_list ap)
|
||||
|
||||
/* Associate the inode with a file structure */
|
||||
|
||||
fd = files_allocate(inode, oflags, 0, NULL, 0);
|
||||
if (fd < 0)
|
||||
{
|
||||
ret = fd;
|
||||
goto errout_with_inode;
|
||||
}
|
||||
|
||||
/* Get the file structure corresponding to the file descriptor. */
|
||||
|
||||
ret = fs_getfilep(fd, &filep);
|
||||
if (ret < 0)
|
||||
{
|
||||
goto errout_with_inode;
|
||||
}
|
||||
filep->f_oflags = oflags;
|
||||
filep->f_pos = 0;
|
||||
filep->f_inode = inode;
|
||||
filep->f_priv = NULL;
|
||||
|
||||
/* Perform the driver open operation. NOTE that the open method may be
|
||||
* called many times. The driver/mountpoint logic should handled this
|
||||
@ -241,16 +221,14 @@ int nx_vopen(FAR const char *path, int oflags, va_list ap)
|
||||
|
||||
if (ret < 0)
|
||||
{
|
||||
goto errout_with_fd;
|
||||
goto errout_with_inode;
|
||||
}
|
||||
|
||||
RELEASE_SEARCH(&desc);
|
||||
return fd;
|
||||
|
||||
errout_with_fd:
|
||||
files_release(fd);
|
||||
return OK;
|
||||
|
||||
errout_with_inode:
|
||||
filep->f_inode = NULL;
|
||||
inode_release(inode);
|
||||
|
||||
errout_with_search:
|
||||
@ -258,6 +236,82 @@ errout_with_search:
|
||||
return ret;
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* Name: file_open
|
||||
*
|
||||
* Description:
|
||||
* file_open() is similar to the standard 'open' interface except that it
|
||||
* returns an instance of 'struct file' rather than a file descriptor. It
|
||||
* also is not a cancellation point and does not modify the errno variable.
|
||||
*
|
||||
* Input Parameters:
|
||||
* filep - The caller provided location in which to return the 'struct
|
||||
* file' instance.
|
||||
* path - The full path to the file to be open.
|
||||
* oflags - open flags
|
||||
* ... - Variable number of arguments, may include 'mode_t mode'
|
||||
*
|
||||
* Returned Value:
|
||||
* Zero (OK) is returned on success. On failure, a negated errno value is
|
||||
* returned.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
int file_open(FAR struct file *filep, FAR const char *path, int oflags, ...)
|
||||
{
|
||||
va_list ap;
|
||||
int ret;
|
||||
|
||||
va_start(ap, oflags);
|
||||
ret = file_vopen(filep, path, oflags, ap);
|
||||
va_end(ap);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* Name: nx_vopen
|
||||
*
|
||||
* Description:
|
||||
* nx_vopen() is identical to 'nx_open' except that it accepts a va_list
|
||||
* as an argument versus taking a variable length list of arguments.
|
||||
*
|
||||
* nx_vopen() is an internal NuttX interface and should not be called from
|
||||
* applications.
|
||||
*
|
||||
* Returned Value:
|
||||
* The new file descriptor is returned on success; a negated errno value is
|
||||
* returned on any failure.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
int nx_vopen(FAR const char *path, int oflags, va_list ap)
|
||||
{
|
||||
struct file filep;
|
||||
int ret;
|
||||
int fd;
|
||||
|
||||
/* Let file_vopen() do all of the work */
|
||||
|
||||
ret = file_vopen(&filep, path, oflags, ap);
|
||||
if (ret < 0)
|
||||
{
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* Allocate a new file descriptor for the inode */
|
||||
|
||||
fd = files_allocate(filep.f_inode, filep.f_oflags,
|
||||
filep.f_pos, filep.f_priv, 0);
|
||||
if (fd < 0)
|
||||
{
|
||||
file_close(&filep);
|
||||
return fd;
|
||||
}
|
||||
|
||||
return fd;
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* Name: nx_open
|
||||
*
|
||||
|
@ -835,6 +835,8 @@ int nx_dup2(int fd1, int fd2);
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
int file_vopen(FAR struct file *filep,
|
||||
FAR const char *path, int oflags, va_list ap);
|
||||
int file_open(FAR struct file *filep, FAR const char *path, int oflags, ...);
|
||||
|
||||
/****************************************************************************
|
||||
|
Loading…
x
Reference in New Issue
Block a user