2007-12-31 23:52:53 +00:00
|
|
|
/****************************************************************************
|
2014-09-28 11:06:21 -06:00
|
|
|
* fs/inode/fs_inodefind.c
|
2007-03-14 22:41:09 +00:00
|
|
|
*
|
2020-03-29 17:36:19 -06:00
|
|
|
* 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
|
2007-03-14 22:41:09 +00:00
|
|
|
*
|
2020-03-29 17:36:19 -06:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-03-14 22:41:09 +00:00
|
|
|
*
|
2020-03-29 17:36:19 -06:00
|
|
|
* 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.
|
2007-03-14 22:41:09 +00:00
|
|
|
*
|
2007-12-31 23:52:53 +00:00
|
|
|
****************************************************************************/
|
2007-03-14 22:41:09 +00:00
|
|
|
|
2007-12-31 23:52:53 +00:00
|
|
|
/****************************************************************************
|
2007-03-14 22:41:09 +00:00
|
|
|
* Included Files
|
2007-12-31 23:52:53 +00:00
|
|
|
****************************************************************************/
|
2007-03-14 22:41:09 +00:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2009-12-15 00:18:32 +00:00
|
|
|
|
2017-02-04 11:21:44 -06:00
|
|
|
#include <assert.h>
|
2007-03-14 22:41:09 +00:00
|
|
|
#include <errno.h>
|
2017-02-04 11:21:44 -06:00
|
|
|
|
2012-03-21 18:01:07 +00:00
|
|
|
#include <nuttx/fs/fs.h>
|
2009-12-15 00:18:32 +00:00
|
|
|
|
2014-09-29 07:14:38 -06:00
|
|
|
#include "inode/inode.h"
|
2007-03-14 22:41:09 +00:00
|
|
|
|
2007-12-31 23:52:53 +00:00
|
|
|
/****************************************************************************
|
2007-03-14 22:41:09 +00:00
|
|
|
* Public Functions
|
2007-12-31 23:52:53 +00:00
|
|
|
****************************************************************************/
|
2007-03-14 22:41:09 +00:00
|
|
|
|
2007-12-31 23:52:53 +00:00
|
|
|
/****************************************************************************
|
2017-02-04 12:51:14 -06:00
|
|
|
* Name: inode_find
|
2007-03-14 22:41:09 +00:00
|
|
|
*
|
|
|
|
* Description:
|
2012-07-14 21:05:40 +00:00
|
|
|
* This is called from the open() logic to get a reference to the inode
|
2017-02-04 12:51:14 -06:00
|
|
|
* associated with a path. This is accomplished by calling inode_search().
|
2017-02-05 09:51:42 -06:00
|
|
|
* inode_find() is a simple wrapper around inode_search(). The primary
|
|
|
|
* difference between inode_find() and inode_search is that inode_find()
|
2017-02-04 12:51:14 -06:00
|
|
|
* will lock the inode tree and increment the reference count on the inode.
|
2017-02-02 13:01:21 -06:00
|
|
|
*
|
2007-12-31 23:52:53 +00:00
|
|
|
****************************************************************************/
|
2007-03-14 22:41:09 +00:00
|
|
|
|
2017-02-05 09:51:42 -06:00
|
|
|
int inode_find(FAR struct inode_search_s *desc)
|
2007-03-14 22:41:09 +00:00
|
|
|
{
|
2017-02-04 11:21:44 -06:00
|
|
|
int ret;
|
2007-03-14 22:41:09 +00:00
|
|
|
|
2012-07-14 21:05:40 +00:00
|
|
|
/* Find the node matching the path. If found, increment the count of
|
|
|
|
* references on the node.
|
2007-03-14 22:41:09 +00:00
|
|
|
*/
|
|
|
|
|
2022-09-06 14:18:45 +08:00
|
|
|
ret = inode_lock();
|
2020-03-29 17:36:19 -06:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-02-05 09:51:42 -06:00
|
|
|
ret = inode_search(desc);
|
2017-02-04 11:21:44 -06:00
|
|
|
if (ret >= 0)
|
2007-03-14 22:41:09 +00:00
|
|
|
{
|
2017-02-04 11:21:44 -06:00
|
|
|
/* Found it */
|
|
|
|
|
2017-02-05 09:51:42 -06:00
|
|
|
FAR struct inode *node = desc->node;
|
2017-02-04 11:21:44 -06:00
|
|
|
DEBUGASSERT(node != NULL);
|
|
|
|
|
|
|
|
/* Increment the reference count on the inode */
|
|
|
|
|
2007-03-14 22:41:09 +00:00
|
|
|
node->i_crefs++;
|
|
|
|
}
|
2012-07-14 21:05:40 +00:00
|
|
|
|
2022-09-06 14:18:45 +08:00
|
|
|
inode_unlock();
|
2017-02-05 09:51:42 -06:00
|
|
|
return ret;
|
2007-03-14 22:41:09 +00:00
|
|
|
}
|