2008-05-31 22:14:15 +02:00
|
|
|
/****************************************************************************
|
2014-09-28 19:06:21 +02:00
|
|
|
* fs/inode/fs_inode.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2020-03-30 01:36:19 +02: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-02-18 00:21:28 +01:00
|
|
|
*
|
2020-03-30 01:36:19 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2020-03-30 01:36:19 +02: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-02-18 00:21:28 +01:00
|
|
|
*
|
2008-05-31 22:14:15 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-05-31 22:14:15 +02:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2008-05-31 22:14:15 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2017-02-03 18:23:57 +01:00
|
|
|
#include <unistd.h>
|
2017-02-02 17:39:41 +01:00
|
|
|
#include <assert.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <errno.h>
|
|
|
|
|
2012-03-21 19:01:07 +01:00
|
|
|
#include <nuttx/fs/fs.h>
|
2020-02-01 08:17:32 +01:00
|
|
|
#include <nuttx/semaphore.h>
|
2011-04-05 23:18:03 +02:00
|
|
|
|
2014-09-29 15:14:38 +02:00
|
|
|
#include "inode/inode.h"
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-05-31 22:14:15 +02:00
|
|
|
/****************************************************************************
|
2009-12-15 01:18:32 +01:00
|
|
|
* Pre-processor Definitions
|
2008-05-31 22:14:15 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2017-01-27 15:50:01 +01:00
|
|
|
#define NO_HOLDER ((pid_t)-1)
|
2013-11-28 20:12:14 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
2016-04-14 18:14:38 +02:00
|
|
|
|
2013-11-28 20:12:14 +01:00
|
|
|
/* Implements a re-entrant mutex for inode access. This must be re-entrant
|
|
|
|
* because there can be cycles. For example, it may be necessary to destroy
|
|
|
|
* a block driver inode on umount() after a removable block device has been
|
2019-02-09 17:00:37 +01:00
|
|
|
* removed. In that case umount() holds the inode semaphore, but the block
|
2013-11-28 20:30:06 +01:00
|
|
|
* driver may callback to unregister_blockdriver() after the un-mount,
|
2019-02-09 17:00:37 +01:00
|
|
|
* requiring the semaphore again.
|
2013-11-28 20:12:14 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
struct inode_sem_s
|
|
|
|
{
|
|
|
|
sem_t sem; /* The semaphore */
|
|
|
|
pid_t holder; /* The current holder of the semaphore */
|
|
|
|
int16_t count; /* Number of counts held */
|
|
|
|
};
|
|
|
|
|
2008-05-31 22:14:15 +02:00
|
|
|
/****************************************************************************
|
2016-02-22 01:08:58 +01:00
|
|
|
* Private Data
|
2008-05-31 22:14:15 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-11-28 20:12:14 +01:00
|
|
|
static struct inode_sem_s g_inode_sem;
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-05-31 22:14:15 +02:00
|
|
|
/****************************************************************************
|
2007-03-14 23:41:09 +01:00
|
|
|
* Public Functions
|
2008-05-31 22:14:15 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-05-31 22:14:15 +02:00
|
|
|
/****************************************************************************
|
2014-10-06 16:11:37 +02:00
|
|
|
* Name: inode_initialize
|
2007-03-14 23:41:09 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2012-07-14 23:05:40 +02:00
|
|
|
* This is called from the OS initialization logic to configure the file
|
|
|
|
* system.
|
2007-03-14 23:41:09 +01:00
|
|
|
*
|
2008-05-31 22:14:15 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2014-10-06 16:11:37 +02:00
|
|
|
void inode_initialize(void)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2014-10-06 16:11:37 +02:00
|
|
|
/* Initialize the semaphore to one (to support one-at-a-time access to the
|
|
|
|
* inode tree).
|
2007-03-14 23:41:09 +01:00
|
|
|
*/
|
|
|
|
|
2020-01-02 17:49:34 +01:00
|
|
|
nxsem_init(&g_inode_sem.sem, 0, 1);
|
2013-11-28 20:12:14 +01:00
|
|
|
g_inode_sem.holder = NO_HOLDER;
|
|
|
|
g_inode_sem.count = 0;
|
2013-11-28 20:30:06 +01:00
|
|
|
|
2020-09-15 11:42:42 +02:00
|
|
|
/* Reserve the root node */
|
|
|
|
|
|
|
|
inode_root_reserve();
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
|
|
|
|
2008-05-31 22:14:15 +02:00
|
|
|
/****************************************************************************
|
2007-03-14 23:41:09 +01:00
|
|
|
* Name: inode_semtake
|
2012-08-04 00:04:14 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2013-11-28 20:12:14 +01:00
|
|
|
* Get exclusive access to the in-memory inode tree (g_inode_sem).
|
2012-08-04 00:04:14 +02:00
|
|
|
*
|
2008-05-31 22:14:15 +02:00
|
|
|
****************************************************************************/
|
2007-03-14 23:41:09 +01:00
|
|
|
|
2020-03-30 01:36:19 +02:00
|
|
|
int inode_semtake(void)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2013-11-28 20:12:14 +01:00
|
|
|
pid_t me;
|
2020-03-30 01:36:19 +02:00
|
|
|
int ret = OK;
|
2013-11-28 20:12:14 +01:00
|
|
|
|
|
|
|
/* Do we already hold the semaphore? */
|
|
|
|
|
|
|
|
me = getpid();
|
|
|
|
if (me == g_inode_sem.holder)
|
|
|
|
{
|
|
|
|
/* Yes... just increment the count */
|
|
|
|
|
|
|
|
g_inode_sem.count++;
|
2013-11-28 20:30:06 +01:00
|
|
|
DEBUGASSERT(g_inode_sem.count > 0);
|
2013-11-28 20:12:14 +01:00
|
|
|
}
|
|
|
|
|
2007-03-14 23:41:09 +01:00
|
|
|
/* Take the semaphore (perhaps waiting) */
|
|
|
|
|
2013-11-28 20:12:14 +01:00
|
|
|
else
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2020-03-30 01:36:19 +02:00
|
|
|
ret = nxsem_wait_uninterruptible(&g_inode_sem.sem);
|
|
|
|
if (ret >= 0)
|
|
|
|
{
|
|
|
|
/* No we hold the semaphore */
|
|
|
|
|
|
|
|
g_inode_sem.holder = me;
|
|
|
|
g_inode_sem.count = 1;
|
|
|
|
}
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2020-03-30 01:36:19 +02:00
|
|
|
|
|
|
|
return ret;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
|
|
|
|
2008-05-31 22:14:15 +02:00
|
|
|
/****************************************************************************
|
2007-03-14 23:41:09 +01:00
|
|
|
* Name: inode_semgive
|
2012-08-04 00:04:14 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2013-11-28 20:12:14 +01:00
|
|
|
* Relinquish exclusive access to the in-memory inode tree (g_inode_sem).
|
2012-08-04 00:04:14 +02:00
|
|
|
*
|
2008-05-31 22:14:15 +02:00
|
|
|
****************************************************************************/
|
2007-03-14 23:41:09 +01:00
|
|
|
|
|
|
|
void inode_semgive(void)
|
|
|
|
{
|
2013-11-28 20:12:14 +01:00
|
|
|
DEBUGASSERT(g_inode_sem.holder == getpid());
|
|
|
|
|
|
|
|
/* Is this our last count on the semaphore? */
|
|
|
|
|
|
|
|
if (g_inode_sem.count > 1)
|
|
|
|
{
|
|
|
|
/* No.. just decrement the count */
|
|
|
|
|
|
|
|
g_inode_sem.count--;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Yes.. then we can really release the semaphore */
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_inode_sem.holder = NO_HOLDER;
|
|
|
|
g_inode_sem.count = 0;
|
2017-10-03 23:35:24 +02:00
|
|
|
nxsem_post(&g_inode_sem.sem);
|
2013-11-28 20:12:14 +01:00
|
|
|
}
|
2007-03-14 23:41:09 +01:00
|
|
|
}
|