* fs/vfs/fs_unlink.c
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <stdbool.h>
#include <unistd.h>
#include <assert.h>
#include <errno.h>
#include <nuttx/fs/fs.h>
#include "inode/inode.h"
#include "vfs.h"
* Pre-processor Definitions
****************************************************************************/
#undef FS_HAVE_UNLINK
#if !defined(CONFIG_DISABLE_MOUNTPOINT) || !defined(CONFIG_DISABLE_PSEUDOFS_OPERATIONS)
# define FS_HAVE_UNLINK 1
#endif
#ifdef FS_HAVE_UNLINK
* Public Functions
****************************************************************************/
* Name: nx_unlink
*
* Description: Remove a file managed a mountpoint
*
****************************************************************************/
int nx_unlink(FAR const char *pathname)
{
struct inode_search_s desc;
FAR struct inode *inode;
int ret;
* which may be a symbolic link)
*/
SETUP_SEARCH(&desc, pathname, true);
ret = inode_find(&desc);
if (ret < 0)
{
goto errout_with_search;
}
inode = desc.node;
DEBUGASSERT(inode != NULL);
#ifndef CONFIG_DISABLE_MOUNTPOINT
if (INODE_IS_MOUNTPT(inode) && inode->u.i_mops)
{
* mountpoint.
*/
if (inode->u.i_mops->unlink)
{
ret = inode->u.i_mops->unlink(inode, desc.relpath);
if (ret < 0)
{
goto errout_with_inode;
}
#ifdef CONFIG_FS_PATHCACHE
if (INODE_IS_PATHCACHE(inode))
{
pathcache_remove(pathname);
}
#endif
}
else
{
ret = -ENOSYS;
goto errout_with_inode;
}
}
else
#endif
{
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
* functioning as a directory and the directory is not empty.
*/
if (inode->i_child != NULL)
{
ret = -ENOTEMPTY;
goto errout_with_inode;
}
* open references to the driver instance, then the driver should
* release all resources because it is no longer accessible.
*/
if ((INODE_IS_DRIVER(inode) || INODE_IS_SHM(inode) ||
INODE_IS_PIPE(inode)) && inode->u.i_ops->unlink)
{
ret = inode->u.i_ops->unlink(inode);
if (ret < 0)
{
goto errout_with_inode;
}
}
#ifndef CONFIG_DISABLE_MOUNTPOINT
else if (INODE_IS_BLOCK(inode) && inode->u.i_bops->unlink)
{
ret = inode->u.i_bops->unlink(inode);
if (ret < 0)
{
goto errout_with_inode;
}
}
#endif
#ifdef CONFIG_FS_LINKS
else if (INODE_IS_SOFTLINK(inode) || INODE_IS_HARDLINK(inode))
{
* (i.e., it has no operations) or a soft link,
* then rm should remove the node.
*/
}
#endif
else if (INODE_IS_PSEUDODIR(inode))
{
ret = -EISDIR;
goto errout_with_inode;
}
else
{
ret = -ENXIO;
goto errout_with_inode;
}
* inode, it will not be deleted now. It will be deleted when all
* of the references to the inode have been released (perhaps
* when inode_release() is called below). inode_remove() will
* return -EBUSY to indicate that the inode was not deleted now.
*/
inode_lock();
ret = inode_remove(pathname);
inode_unlock();
if (ret < 0 && ret != -EBUSY)
{
goto errout_with_inode;
}
#endif
}
inode_release(inode);
RELEASE_SEARCH(&desc);
#ifdef CONFIG_FS_NOTIFY
notify_unlink(pathname);
#endif
return OK;
#if !defined(CONFIG_DISABLE_MOUNTPOINT) || !defined(CONFIG_DISABLE_PSEUDOFS_OPERATIONS)
errout_with_inode:
inode_release(inode);
#endif
errout_with_search:
RELEASE_SEARCH(&desc);
return ret;
}
* Name: unlink
*
* Description: Remove a file managed a mountpoint
*
****************************************************************************/
int unlink(FAR const char *pathname)
{
int ret;
ret = nx_unlink(pathname);
if (ret < 0)
{
set_errno(-ret);
return ERROR;
}
return OK;
}
#endif