2017-02-02 17:39:41 +01:00
|
|
|
/****************************************************************************
|
2017-02-03 00:11:08 +01:00
|
|
|
* fs/vfs/fs_link.c
|
2017-02-02 17:39:41 +01:00
|
|
|
*
|
|
|
|
* Copyright (C) 2017 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 <sys/stat.h>
|
2017-02-04 18:46:54 +01:00
|
|
|
#include <stdbool.h>
|
2017-02-03 00:11:08 +01:00
|
|
|
#include <unistd.h>
|
2017-02-02 22:24:39 +01:00
|
|
|
#include <string.h>
|
2017-02-02 17:39:41 +01:00
|
|
|
#include <errno.h>
|
|
|
|
|
2017-02-02 22:24:39 +01:00
|
|
|
#include <nuttx/kmalloc.h>
|
2017-02-02 17:39:41 +01:00
|
|
|
#include <nuttx/fs/fs.h>
|
|
|
|
|
|
|
|
#include "inode/inode.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_PSEUDOFS_SOFTLINKS
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: link
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* The link() function will create a new link (directory entry) for the
|
2017-02-03 00:11:08 +01:00
|
|
|
* existing file, path2. This implementation is simplied for use with
|
2017-02-02 17:39:41 +01:00
|
|
|
* NuttX in these ways:
|
|
|
|
*
|
|
|
|
* - Links may be created only within the NuttX top-level, pseudo file
|
|
|
|
* system. No file system currently supported by NuttX provides
|
|
|
|
* symbolic links.
|
|
|
|
* - For the same reason, only soft links are implemented.
|
|
|
|
* - File privileges are ignored.
|
|
|
|
* - c_time is not updated.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* path1 - Points to a pathname naming an existing file.
|
|
|
|
* path2 - Points to a pathname naming the new directory entry to be created.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* On success, zero (OK) is returned. Otherwise, -1 (ERROR) is returned
|
|
|
|
* the the errno variable is set appropriately.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int link(FAR const char *path1, FAR const char *path2)
|
|
|
|
{
|
|
|
|
FAR struct inode *inode;
|
|
|
|
int errcode;
|
|
|
|
int ret;
|
|
|
|
|
2017-02-03 00:11:08 +01:00
|
|
|
/* Both paths must be absolute. We need only check path1 here. path2 will
|
2017-02-02 20:01:21 +01:00
|
|
|
* be checked by inode find.
|
|
|
|
*/
|
|
|
|
|
2017-02-03 00:11:08 +01:00
|
|
|
if (path1 == NULL || *path1 != '/')
|
2017-02-02 20:01:21 +01:00
|
|
|
{
|
2017-02-02 22:24:39 +01:00
|
|
|
errcode = EINVAL;
|
2017-02-02 20:01:21 +01:00
|
|
|
goto errout;
|
|
|
|
}
|
2017-02-02 17:39:41 +01:00
|
|
|
|
2017-02-03 00:11:08 +01:00
|
|
|
/* Check that no inode exists at the 'path1' and that the path up to 'path1'
|
2017-02-02 17:39:41 +01:00
|
|
|
* does not lie on a mounted volume.
|
|
|
|
*/
|
|
|
|
|
2017-02-04 18:46:54 +01:00
|
|
|
inode = inode_find(path2, NULL, false);
|
2017-02-02 17:39:41 +01:00
|
|
|
if (inode != NULL)
|
|
|
|
{
|
|
|
|
#ifndef CONFIG_DISABLE_MOUNTPOINT
|
|
|
|
/* Check if the inode is a mountpoint. */
|
|
|
|
|
|
|
|
if (INODE_IS_MOUNTPT(inode))
|
|
|
|
{
|
2017-02-02 22:24:39 +01:00
|
|
|
/* Symbolic links within the mounted volume are not supported */
|
2017-02-02 17:39:41 +01:00
|
|
|
|
|
|
|
errcode = ENOSYS;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2017-02-03 00:11:08 +01:00
|
|
|
/* A node already exists in the pseudofs at 'path1' */
|
2017-02-02 17:39:41 +01:00
|
|
|
|
2017-02-02 22:24:39 +01:00
|
|
|
errcode = EEXIST;
|
2017-02-02 17:39:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
goto errout_with_inode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* No inode exists that contains this path. Create a new inode in the
|
|
|
|
* pseudo-filesystem at this location.
|
|
|
|
*/
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
2017-02-03 00:11:08 +01:00
|
|
|
/* Copy path1 */
|
2017-02-02 17:39:41 +01:00
|
|
|
|
2017-02-03 00:11:08 +01:00
|
|
|
FAR char *newpath2 = strdup(path1);
|
2017-02-02 17:39:41 +01:00
|
|
|
if (newpath2 == NULL)
|
|
|
|
{
|
|
|
|
errcode = ENOMEM;
|
2017-02-02 20:01:21 +01:00
|
|
|
goto errout;
|
2017-02-02 17:39:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create an inode in the pseudo-filesystem at this path.
|
|
|
|
* NOTE that the new inode will be created with a reference
|
|
|
|
* count of zero.
|
|
|
|
*/
|
|
|
|
|
|
|
|
inode_semtake();
|
2017-02-03 00:11:08 +01:00
|
|
|
ret = inode_reserve(path2, &inode);
|
2017-02-02 17:39:41 +01:00
|
|
|
inode_semgive();
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2017-02-02 22:24:39 +01:00
|
|
|
kmm_free(newpath2);
|
2017-02-02 17:39:41 +01:00
|
|
|
errcode = -ret;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize the inode */
|
|
|
|
|
|
|
|
INODE_SET_SOFTLINK(inode);
|
|
|
|
inode->u.i_link = newpath2;
|
|
|
|
inode->i_crefs = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Symbolic link successfully created */
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
|
|
|
|
errout_with_inode:
|
|
|
|
inode_release(inode);
|
|
|
|
errout:
|
|
|
|
set_errno(errcode);
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_PSEUDOFS_SOFTLINKS */
|