2008-08-02 16:25:34 +02:00
|
|
|
/****************************************************************************
|
2014-09-28 19:06:21 +02:00
|
|
|
* fs/driver/fs_openblockdriver.c
|
2008-08-02 16:25:34 +02:00
|
|
|
*
|
2021-02-03 14:47:23 +01: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
|
2008-08-02 16:25:34 +02:00
|
|
|
*
|
2021-02-03 14:47:23 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2008-08-02 16:25:34 +02:00
|
|
|
*
|
2021-02-03 14:47:23 +01: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.
|
2008-08-02 16:25:34 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2009-12-15 01:18:32 +01:00
|
|
|
|
2008-08-02 16:25:34 +02:00
|
|
|
#include <debug.h>
|
|
|
|
#include <errno.h>
|
2012-03-21 19:01:07 +01:00
|
|
|
#include <nuttx/fs/fs.h>
|
2008-08-02 16:25:34 +02:00
|
|
|
|
2014-09-29 15:14:38 +02:00
|
|
|
#include "inode/inode.h"
|
|
|
|
#include "driver/driver.h"
|
2008-08-02 16:25:34 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: open_blockdriver
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return the inode of the block driver specified by 'pathname'
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Input Parameters:
|
2008-08-02 16:25:34 +02:00
|
|
|
* pathname - the full path to the block driver to be opened
|
2008-11-14 16:09:39 +01:00
|
|
|
* mountflags - if MS_RDONLY is not set, then driver must support write
|
2008-08-02 16:25:34 +02:00
|
|
|
* operations (see include/sys/mount.h)
|
|
|
|
* ppinode - address of the location to return the inode reference
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2008-08-02 16:25:34 +02:00
|
|
|
* Returns zero on success or a negated errno on failure:
|
|
|
|
*
|
|
|
|
* EINVAL - pathname or pinode is NULL
|
|
|
|
* ENOENT - No block driver of this name is registered
|
|
|
|
* ENOTBLK - The inode associated with the pathname is not a block driver
|
|
|
|
* EACCESS - The MS_RDONLY option was not set but this driver does not
|
|
|
|
* support write access
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-07-14 23:05:40 +02:00
|
|
|
int open_blockdriver(FAR const char *pathname, int mountflags,
|
|
|
|
FAR struct inode **ppinode)
|
2008-08-02 16:25:34 +02:00
|
|
|
{
|
|
|
|
FAR struct inode *inode;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Minimal sanity checks */
|
|
|
|
|
2016-06-11 22:14:08 +02:00
|
|
|
#ifdef CONFIG_DEBUG_FEATURES
|
2008-08-02 16:25:34 +02:00
|
|
|
if (!ppinode)
|
|
|
|
{
|
2018-11-08 16:59:18 +01:00
|
|
|
return -EINVAL;
|
2008-08-02 16:25:34 +02:00
|
|
|
}
|
2008-08-02 19:22:22 +02:00
|
|
|
#endif
|
2008-08-02 16:25:34 +02:00
|
|
|
|
|
|
|
/* Find the inode associated with this block driver name. find_blockdriver
|
|
|
|
* will perform all additional error checking.
|
|
|
|
*/
|
|
|
|
|
|
|
|
ret = find_blockdriver(pathname, mountflags, &inode);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2018-11-08 16:59:18 +01:00
|
|
|
#ifdef CONFIG_MTD
|
|
|
|
/* Not block device, mtd device? let's try it. */
|
|
|
|
|
|
|
|
return mtd_proxy(pathname, mountflags, ppinode);
|
|
|
|
#else
|
2016-06-12 01:14:02 +02:00
|
|
|
ferr("ERROR: Failed to file %s block driver\n", pathname);
|
2018-11-08 16:59:18 +01:00
|
|
|
return ret;
|
|
|
|
#endif
|
2008-08-02 16:25:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Open the block driver. Note that no mutually exclusive access
|
|
|
|
* to the driver is enforced here. That must be done in the driver
|
|
|
|
* if needed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (inode->u.i_bops->open)
|
|
|
|
{
|
|
|
|
ret = inode->u.i_bops->open(inode);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2016-06-12 01:14:02 +02:00
|
|
|
ferr("ERROR: %s driver open failed\n", pathname);
|
2018-11-08 16:59:18 +01:00
|
|
|
inode_release(inode);
|
|
|
|
return ret;
|
2008-08-02 16:25:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*ppinode = inode;
|
|
|
|
return OK;
|
|
|
|
}
|