Add capability to traverse inodes in the NuttX psuedo-filesystem

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5004 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-08-03 19:11:11 +00:00
parent 446e9ba0d1
commit d4c88180c3
23 changed files with 463 additions and 100 deletions
+2
View File
@@ -3118,4 +3118,6 @@
* arch/arm/src/stm32/stm32*_rcc.c and .h: If CONFIG_PM is defined, add a * arch/arm/src/stm32/stm32*_rcc.c and .h: If CONFIG_PM is defined, add a
function called stm32_clockenable() that can be used by PM logic to re-start function called stm32_clockenable() that can be used by PM logic to re-start
the PLL after re-awakening from deep sleep modes. the PLL after re-awakening from deep sleep modes.
* fs/fs_foreachinode.c and fs/fs_foreachmountpoint.c: All logic to traverse
inodes and mountpoints in the NuttX psuedo-file system.
+1 -1
View File
@@ -537,7 +537,7 @@ fi
This capability also depends on: This capability also depends on:
<ul> <ul>
<li><code>CONFIG_DISABLE_MOUNTPOINT</code> not set <li><code>CONFIG_DISABLE_MOUNTPOINT</code> not set
<li><code>CONFIG_NFILE_DESCRIPTORS</code> &lt; 4 <li><code>CONFIG_NFILE_DESCRIPTORS</code> &gt; 4
<li><code>CONFIG_FS_ROMFS</code> enabled <li><code>CONFIG_FS_ROMFS</code> enabled
</ul> </ul>
</p> </p>
+1 -1
View File
@@ -2,7 +2,7 @@
# drivers/bch/Make.defs # drivers/bch/Make.defs
# #
# Copyright (C) 2008, 2011 Gregory Nutt. All rights reserved. # Copyright (C) 2008, 2011 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions # modification, are permitted provided that the following conditions
+1 -1
View File
@@ -2,7 +2,7 @@
* drivers/bch/bch_internal.h * drivers/bch/bch_internal.h
* *
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved. * Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
+1 -1
View File
@@ -2,7 +2,7 @@
* drivers/bch/bchdev_driver.c * drivers/bch/bchdev_driver.c
* *
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved. * Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
+6 -5
View File
@@ -1,8 +1,8 @@
/**************************************************************************** /****************************************************************************
* drivers/bch/bchdev_register.c * drivers/bch/bchdev_register.c
* *
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved. * Copyright (C) 2008-2009, 2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
@@ -70,12 +70,13 @@
* Name: bchdev_register * Name: bchdev_register
* *
* Description: * Description:
* Setup so that it exports the block driver referenced by * Setup so that it exports the block driver referenced by 'blkdev' as a
* 'blkdev' as a character device 'chardev' * character device 'chardev'
* *
****************************************************************************/ ****************************************************************************/
int bchdev_register(const char *blkdev, const char *chardev, bool readonly) int bchdev_register(FAR const char *blkdev, FAR const char *chardev,
bool readonly)
{ {
FAR void *handle; FAR void *handle;
int ret; int ret;
+6 -4
View File
@@ -1,8 +1,8 @@
/**************************************************************************** /****************************************************************************
* drivers/bch/bchdev_unregister.c * drivers/bch/bchdev_unregister.c
* *
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved. * Copyright (C) 2008-2009, 2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
@@ -78,11 +78,12 @@
* Name: bchdev_unregister * Name: bchdev_unregister
* *
* Description: * Description:
* Undo the setup performed by losetup * Unregister character driver access to a block device that was created
* by a previous call to bchdev_register().
* *
****************************************************************************/ ****************************************************************************/
int bchdev_unregister(const char *chardev) int bchdev_unregister(FAR const char *chardev)
{ {
FAR struct bchlib_s *bch; FAR struct bchlib_s *bch;
int fd; int fd;
@@ -144,6 +145,7 @@ int bchdev_unregister(const char *chardev)
{ {
goto errout_with_lock; goto errout_with_lock;
} }
sched_unlock(); sched_unlock();
/* Release the internal structure */ /* Release the internal structure */
+1 -1
View File
@@ -2,7 +2,7 @@
* drivers/bch/bchlib_cache.c * drivers/bch/bchlib_cache.c
* *
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved. * Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
+1 -1
View File
@@ -2,7 +2,7 @@
* drivers/bch/bchlib_read.c * drivers/bch/bchlib_read.c
* *
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved. * Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
+1 -1
View File
@@ -2,7 +2,7 @@
* drivers/bch/bchlib_sem.c * drivers/bch/bchlib_sem.c
* *
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved. * Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
+1 -1
View File
@@ -2,7 +2,7 @@
* drivers/bch/bchlib_setup.c * drivers/bch/bchlib_setup.c
* *
* Copyright (C) 2008-2009, 2011 Gregory Nutt. All rights reserved. * Copyright (C) 2008-2009, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
+1 -1
View File
@@ -2,7 +2,7 @@
* drivers/bch/bchlib_teardown.c * drivers/bch/bchlib_teardown.c
* *
* Copyright (C) 2008-2009, 2011 Gregory Nutt. All rights reserved. * Copyright (C) 2008-2009, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
+1 -1
View File
@@ -2,7 +2,7 @@
* drivers/bch/bchlib_write.c * drivers/bch/bchlib_write.c
* *
* Copyright (C) 2008-2009, 2011 Gregory Nutt. All rights reserved. * Copyright (C) 2008-2009, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
+9 -1
View File
@@ -1,7 +1,7 @@
/**************************************************************************** /****************************************************************************
* drivers/dev_null.c * drivers/dev_null.c
* *
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved. * Copyright (C) 2008-2009, 2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@@ -121,6 +121,14 @@ static int devzero_poll(FAR struct file *filp, FAR struct pollfd *fds,
* Public Functions * Public Functions
****************************************************************************/ ****************************************************************************/
/****************************************************************************
* Name: devzero_register
*
* Description:
* Register /dev/zero
*
****************************************************************************/
void devzero_register(void) void devzero_register(void)
{ {
(void)register_driver("/dev/zero", &devzero_fops, 0666, NULL); (void)register_driver("/dev/zero", &devzero_fops, 0666, NULL);
+24 -22
View File
@@ -35,10 +35,10 @@
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
ASRCS = ASRCS =
AOBJS = $(ASRCS:.S=$(OBJEXT)) AOBJS = $(ASRCS:.S=$(OBJEXT))
CSRCS = CSRCS =
# If there are no file descriptors configured, then a small part of the # If there are no file descriptors configured, then a small part of the
# logic in this directory may still apply to socket descriptors # logic in this directory may still apply to socket descriptors
@@ -48,27 +48,28 @@ ifneq ($(CONFIG_NSOCKET_DESCRIPTORS),0)
# Socket descriptor support # Socket descriptor support
CSRCS += fs_close.c fs_read.c fs_write.c fs_ioctl.c fs_poll.c fs_select.c CSRCS += fs_close.c fs_read.c fs_write.c fs_ioctl.c fs_poll.c fs_select.c
endif endif
# Support for network access using streams # Support for network access using streams
ifneq ($(CONFIG_NFILE_STREAMS),0) ifneq ($(CONFIG_NFILE_STREAMS),0)
CSRCS += fs_fdopen.c CSRCS += fs_fdopen.c
endif endif
else else
# Common file/socket descriptor support # Common file/socket descriptor support
CSRCS += fs_open.c fs_close.c fs_read.c fs_write.c fs_ioctl.c \ CSRCS += fs_close.c fs_closedir.c fs_dup.c fs_dup2.c fs_fcntl.c \
fs_poll.c fs_select.c fs_lseek.c fs_dup.c fs_filedup.c \ fs_filedup.c fs_filedup2.c fs_ioctl.c fs_lseek.c fs_open.c \
fs_dup2.c fs_fcntl.c fs_filedup2.c fs_opendir.c fs_closedir.c \ fs_opendir.c fs_poll.c fs_read.c fs_readdir.c fs_rewinddir.c \
fs_stat.c fs_readdir.c fs_seekdir.c fs_rewinddir.c fs_files.c \ fs_seekdir.c fs_stat.c fs_statfs.c fs_select.c fs_write.c
fs_inode.c fs_inodefind.c fs_inodereserve.c fs_statfs.c \ CSRCS += fs_files.c fs_foreachinode.c fs_inode.c fs_inodeaddref.c \
fs_inoderemove.c fs_registerdriver.c fs_unregisterdriver.c \ fs_inodefind.c fs_inoderelease.c fs_inoderemove.c \
fs_inodeaddref.c fs_inoderelease.c fs_inodereserve.c
CSRCS += fs_registerblockdriver.c fs_unregisterblockdriver.c \ CSRCS += fs_registerdriver.c fs_unregisterdriver.c
CSRCS += fs_registerblockdriver.c fs_unregisterblockdriver.c \
fs_findblockdriver.c fs_openblockdriver.c fs_closeblockdriver.c fs_findblockdriver.c fs_openblockdriver.c fs_closeblockdriver.c
include mmap/Make.defs include mmap/Make.defs
@@ -76,22 +77,23 @@ include mmap/Make.defs
# Stream support # Stream support
ifneq ($(CONFIG_NFILE_STREAMS),0) ifneq ($(CONFIG_NFILE_STREAMS),0)
CSRCS += fs_fdopen.c CSRCS += fs_fdopen.c
endif endif
# System logging to a character device (or file) # System logging to a character device (or file)
ifeq ($(CONFIG_SYSLOG),y) ifeq ($(CONFIG_SYSLOG),y)
ifeq ($(CONFIG_SYSLOG_CHAR),y) ifeq ($(CONFIG_SYSLOG_CHAR),y)
CSRCS += fs_syslog.c CSRCS += fs_syslog.c
endif endif
endif endif
# Additional files required is mount-able file systems are supported # Additional files required is mount-able file systems are supported
ifneq ($(CONFIG_DISABLE_MOUNTPOINT),y) ifneq ($(CONFIG_DISABLE_MOUNTPOINT),y)
CSRCS += fs_mount.c fs_umount.c fs_fsync.c fs_unlink.c fs_rename.c \ CSRCS += fs_fsync.c fs_mkdir.c fs_mount.c fs_rename.c fs_rmdir.c \
fs_mkdir.c fs_rmdir.c fs_umount.c fs_unlink.c
CSRCS += fs_foreachmountpoint.c
include fat/Make.defs include fat/Make.defs
include romfs/Make.defs include romfs/Make.defs
include nxffs/Make.defs include nxffs/Make.defs
@@ -99,15 +101,15 @@ include nfs/Make.defs
endif endif
endif endif
COBJS = $(CSRCS:.c=$(OBJEXT)) COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS) SRCS = $(ASRCS) $(CSRCS)
OBJS = $(AOBJS) $(COBJS) OBJS = $(AOBJS) $(COBJS)
BIN = libfs$(LIBEXT) BIN = libfs$(LIBEXT)
SUBDIRS = mmap fat romfs nxffs:nfs SUBDIRS = mmap fat romfs nxffs:nfs
VPATH = mmap:fat:romfs:nxffs:nfs VPATH = mmap:fat:romfs:nxffs:nfs
all: $(BIN) all: $(BIN)
+6 -5
View File
@@ -1,7 +1,7 @@
/**************************************************************************** /****************************************************************************
* fs/fs_filedup.c * fs/fs_filedup.c
* *
* Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@@ -68,10 +68,11 @@
* Name: file_dup OR dup * Name: file_dup OR dup
* *
* Description: * Description:
* Clone a file descriptor to an arbitray descriptor number. If socket * Clone a file descriptor 'fd' to an arbitray descriptor number (any value
* descriptors are implemented, then this is called by dup() for the case * greater than or equal to 'minfd'). If socket descriptors are
* of file descriptors. If socket descriptors are not implemented, then * implemented, then this is called by dup() for the case of file
* this function IS dup(). * descriptors. If socket descriptors are not implemented, then this
* function IS dup().
* *
****************************************************************************/ ****************************************************************************/
+6 -6
View File
@@ -1,7 +1,7 @@
/**************************************************************************** /****************************************************************************
* fs/fs_filedup2.c * fs/fs_filedup2.c
* *
* Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@@ -64,13 +64,13 @@
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
* Name: file_dup2 * Name: file_dup2 OR dup2
* *
* Description: * Description:
* Clone a file descriptor or socket descriptor to a specific descriptor * Clone a file descriptor to a specific descriptor number. If socket
* number. If socket descriptors are implemented, then this is called by * descriptors are implemented, then this is called by dup2() for the
* dup2() for the case of file descriptors. If socket descriptors are not * case of file descriptors. If socket descriptors are not implemented,
* implemented, then this function IS dup2(). * then this function IS dup2().
* *
****************************************************************************/ ****************************************************************************/
+7 -4
View File
@@ -56,7 +56,7 @@
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
* Public Types * Private Types
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
@@ -182,7 +182,8 @@ FAR struct filelist *files_alloclist(void)
/**************************************************************************** /****************************************************************************
* Name: files_addreflist * Name: files_addreflist
* *
* Description: Increase the reference count on a file list * Description:
* Increase the reference count on a file list
* *
****************************************************************************/ ****************************************************************************/
@@ -209,7 +210,8 @@ int files_addreflist(FAR struct filelist *list)
/**************************************************************************** /****************************************************************************
* Name: files_releaselist * Name: files_releaselist
* *
* Description: Release a reference to the file list * Description:
* Release a reference to the file list
* *
****************************************************************************/ ****************************************************************************/
@@ -264,7 +266,8 @@ int files_releaselist(FAR struct filelist *list)
* Name: files_dup * Name: files_dup
* *
* Description: * Description:
* Assign an inode to a specific files structure. This is the heart of dup2. * Assign an inode to a specific files structure. This is the heart of
* dup2.
* *
****************************************************************************/ ****************************************************************************/
+9 -1
View File
@@ -1,7 +1,7 @@
/**************************************************************************** /****************************************************************************
* fs_open.c * fs_open.c
* *
* Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@@ -58,6 +58,10 @@
/**************************************************************************** /****************************************************************************
* Name: inode_checkflags * Name: inode_checkflags
*
* Description:
* Check if the access described by 'oflags' is supported on 'inode'
*
****************************************************************************/ ****************************************************************************/
int inode_checkflags(FAR struct inode *inode, int oflags) int inode_checkflags(FAR struct inode *inode, int oflags)
@@ -75,6 +79,10 @@ int inode_checkflags(FAR struct inode *inode, int oflags)
/**************************************************************************** /****************************************************************************
* Name: open * Name: open
*
* Description:
* Standard 'open' interface
*
****************************************************************************/ ****************************************************************************/
int open(const char *path, int oflags, ...) int open(const char *path, int oflags, ...)
+1 -1
View File
@@ -67,7 +67,7 @@
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
* Name: register_driver * Name: register_blockdriver
* *
* Description: * Description:
* Register a block driver inode the pseudo file system. * Register a block driver inode the pseudo file system.
+5 -1
View File
@@ -68,7 +68,11 @@
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
* Name: unregister_blockdriver() * Name: unregister_blockdriver
*
* Description:
* Remove the block driver inode at 'path' from the psuedo-file system
*
****************************************************************************/ ****************************************************************************/
int unregister_blockdriver(const char *path) int unregister_blockdriver(const char *path)
+5 -1
View File
@@ -68,7 +68,11 @@
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
* Name: unregister_driver() * Name: unregister_driver
*
* Description:
* Remove the character driver inode at 'path' from the psuedo-file system
*
****************************************************************************/ ****************************************************************************/
int unregister_driver(FAR const char *path) int unregister_driver(FAR const char *path)
+367 -39
View File
@@ -216,6 +216,12 @@ struct inode
}; };
#define FSNODE_SIZE(n) (sizeof(struct inode) + (n)) #define FSNODE_SIZE(n) (sizeof(struct inode) + (n))
/* Callback used by foreach_inode to traverse all inodes in the pseudo-
* file system.
*/
typedef int (*foreach_inode_t)(FAR struct inode *inode, FAR void *arg);
/* This is the underlying representation of an open file. A file /* This is the underlying representation of an open file. A file
* descriptor is an index into an array of such types. The type associates * descriptor is an index into an array of such types. The type associates
* the file descriptor to the file state and to a set of inode operations. * the file descriptor to the file state and to a set of inode operations.
@@ -307,76 +313,302 @@ extern "C" {
#endif #endif
/* fs_inode.c ***************************************************************/ /* fs_inode.c ***************************************************************/
/****************************************************************************
* Name: fs_initialize
*
* Description:
* This is called from the OS initialization logic to configure the file
* system.
*
****************************************************************************/
/* These interfaces are used by drivers to register their EXTERN void weak_function fs_initialize(void);
* inodes in the inode tree.
*/
EXTERN void weak_function fs_initialize(void); /* fs_foreachinode.c ********************************************************/
/****************************************************************************
* Name: foreach_inode
*
* Description:
* Visit each inode in the pseudo-file system. The traversal is terminated
* when the callback 'handler' returns a non-zero value, or when all of
* the inodes have been visited.
*
* NOTE 1: Use with caution... The psuedo-file system is locked throughout
* the traversal.
* NOTE 2: The search algorithm is recursive and could, in principle, use
* an indeterminant amount of stack space. This will not usually be a
* real work issue.
*
****************************************************************************/
EXTERN int foreach_inode(foreach_inode_t handler, FAR void *arg);
/* fs_foreachmountpoint.c ***************************************************/
/****************************************************************************
* Name: foreach_mountpoint
*
* Description:
* Visit each mountpoint in the pseudo-file system. The traversal is
* terminated when the callback 'handler' returns a non-zero value, or when
* all of the mountpoints have been visited.
*
* This is just a front end "filter" to foreach_inode() that forwards only
* mountpoint inodes. It is intended to support the mount() command to
* when the mount command is used to enumerate mounts.
*
* NOTE 1: Use with caution... The psuedo-file system is locked throughout
* the traversal.
* NOTE 2: The search algorithm is recursive and could, in principle, use
* an indeterminant amount of stack space. This will not usually be a
* real work issue.
*
****************************************************************************/
#ifndef CONFIG_DISABLE_MOUNTPOUNT
EXTERN int foreach_mountpoint(foreach_inode_t handler, FAR void *arg);
#endif
/* fs_registerdriver.c ******************************************************/ /* fs_registerdriver.c ******************************************************/
/****************************************************************************
* Name: register_driver
*
* Description:
* Register a character driver inode the pseudo file system.
*
* Input parameters:
* path - The path to the inode to create
* fops - The file operations structure
* mode - inmode priviledges (not used)
* priv - Private, user data that will be associated with the inode.
*
* Returned Value:
* Zero on success (with the inode point in 'inode'); A negated errno
* value is returned on a failure (all error values returned by
* inode_reserve):
*
* EINVAL - 'path' is invalid for this operation
* EEXIST - An inode already exists at 'path'
* ENOMEM - Failed to allocate in-memory resources for the operation
*
****************************************************************************/
EXTERN int register_driver(const char *path, EXTERN int register_driver(const char *path,
const struct file_operations *fops, const struct file_operations *fops,
mode_t mode, void *priv); mode_t mode, void *priv);
/* fs_registerdriver.c ******************************************************/ /* fs_registerblockdriver.c *************************************************/
/****************************************************************************
* Name: register_blockdriver
*
* Description:
* Register a block driver inode the pseudo file system.
*
* Input parameters:
* path - The path to the inode to create
* bops - The block driver operations structure
* mode - inmode priviledges (not used)
* priv - Private, user data that will be associated with the inode.
*
* Returned Value:
* Zero on success (with the inode point in 'inode'); A negated errno
* value is returned on a failure (all error values returned by
* inode_reserve):
*
* EINVAL - 'path' is invalid for this operation
* EEXIST - An inode already exists at 'path'
* ENOMEM - Failed to allocate in-memory resources for the operation
*
****************************************************************************/
EXTERN int register_blockdriver(const char *path, EXTERN int register_blockdriver(const char *path,
const struct block_operations *bops, const struct block_operations *bops,
mode_t mode, void *priv); mode_t mode, void *priv);
/* fs_unregisterdriver.c ****************************************************/ /* fs_unregisterdriver.c ****************************************************/
/****************************************************************************
* Name: unregister_driver
*
* Description:
* Remove the character driver inode at 'path' from the psuedo-file system
*
****************************************************************************/
EXTERN int unregister_driver(const char *path); EXTERN int unregister_driver(const char *path);
/* fs_unregisterblockdriver.c ***********************************************/ /* fs_unregisterblockdriver.c ***********************************************/
/****************************************************************************
* Name: unregister_blockdriver
*
* Description:
* Remove the block driver inode at 'path' from the psuedo-file system
*
****************************************************************************/
EXTERN int unregister_blockdriver(const char *path); EXTERN int unregister_blockdriver(const char *path);
/* fs_open.c ****************************************************************/ /* fs_open.c ****************************************************************/
/****************************************************************************
* Name: inode_checkflags
*
* Description:
* Check if the access described by 'oflags' is supported on 'inode'
*
****************************************************************************/
EXTERN int inode_checkflags(FAR struct inode *inode, int oflags); EXTERN int inode_checkflags(FAR struct inode *inode, int oflags);
/* fs_files.c ***************************************************************/ /* fs_files.c ***************************************************************/
/****************************************************************************
* Name: files_alloclist
*
* Description: Allocate a list of files for a new task
*
****************************************************************************/
#if CONFIG_NFILE_DESCRIPTORS >0 #if CONFIG_NFILE_DESCRIPTORS > 0
EXTERN FAR struct filelist *files_alloclist(void); EXTERN FAR struct filelist *files_alloclist(void);
#endif
/****************************************************************************
* Name: files_addreflist
*
* Description:
* Increase the reference count on a file list
*
****************************************************************************/
#if CONFIG_NFILE_DESCRIPTORS > 0
EXTERN int files_addreflist(FAR struct filelist *list); EXTERN int files_addreflist(FAR struct filelist *list);
#endif
/****************************************************************************
* Name: files_releaselist
*
* Description:
* Release a reference to the file list
*
****************************************************************************/
#if CONFIG_NFILE_DESCRIPTORS > 0
EXTERN int files_releaselist(FAR struct filelist *list); EXTERN int files_releaselist(FAR struct filelist *list);
#endif
/****************************************************************************
* Name: files_dup
*
* Description:
* Assign an inode to a specific files structure. This is the heart of
* dup2.
*
****************************************************************************/
#if CONFIG_NFILE_DESCRIPTORS > 0
EXTERN int files_dup(FAR struct file *filep1, FAR struct file *filep2); EXTERN int files_dup(FAR struct file *filep1, FAR struct file *filep2);
#endif
/* fs_filedup.c *************************************************************/ /* fs_filedup.c *************************************************************/
/****************************************************************************
* Name: file_dup OR dup
*
* Description:
* Clone a file descriptor 'fd' to an arbitray descriptor number (any value
* greater than or equal to 'minfd'). If socket descriptors are
* implemented, then this is called by dup() for the case of file
* descriptors. If socket descriptors are not implemented, then this
* function IS dup().
*
* This alternative naming is used when dup could operate on both file and
* socket descritors to avoid drawing unused socket support into the link.
*
****************************************************************************/
/* Dupicate a file descriptor using any value greater than or equal to minfd */ #if CONFIG_NFILE_DESCRIPTORS > 0
EXTERN int file_dup(int fd, int minfd); EXTERN int file_dup(int fd, int minfd);
#endif
/* fs_filedup2.c ************************************************************/ /* fs_filedup2.c ************************************************************/
/****************************************************************************
* Name: file_dup2 OR dup2
*
* Description:
* Clone a file descriptor to a specific descriptor number. If socket
* descriptors are implemented, then this is called by dup2() for the
* case of file descriptors. If socket descriptors are not implemented,
* then this function IS dup2().
*
* This alternative naming is used when dup2 could operate on both file and
* socket descritors to avoid drawing unused socket support into the link.
*
****************************************************************************/
/* This alternative naming is used when dup could operate on both file and #if CONFIG_NFILE_DESCRIPTORS > 0
* socket descritors to avoid drawing unused socket support into the link.
*/
#if defined(CONFIG_NET) && CONFIG_NSOCKET_DESCRIPTORS > 0 #if defined(CONFIG_NET) && CONFIG_NSOCKET_DESCRIPTORS > 0
EXTERN int file_dup2(int fd1, int fd2); EXTERN int file_dup2(int fd1, int fd2);
#else #else
# define file_dup2(fd1, fd2) dup2(fd1, fd2) # define file_dup2(fd1, fd2) dup2(fd1, fd2)
#endif #endif
#endif
/* fs_openblockdriver.c *****************************************************/ /* fs_openblockdriver.c *****************************************************/
/****************************************************************************
* Name: open_blockdriver
*
* Description:
* Return the inode of the block driver specified by 'pathname'
*
* Inputs:
* pathname - the full path to the block driver to be opened
* mountflags - if MS_RDONLY is not set, then driver must support write
* operations (see include/sys/mount.h)
* ppinode - address of the location to return the inode reference
*
* Return:
* 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
*
****************************************************************************/
#if CONFIG_NFILE_DESCRIPTORS > 0
EXTERN int open_blockdriver(FAR const char *pathname, int mountflags, EXTERN int open_blockdriver(FAR const char *pathname, int mountflags,
FAR struct inode **ppinode); FAR struct inode **ppinode);
#endif
/* fs_closeblockdriver.c ****************************************************/ /* fs_closeblockdriver.c ****************************************************/
/****************************************************************************
* Name: close_blockdriver
*
* Description:
* Call the close method and release the inode
*
* Inputs:
* inode - reference to the inode of a block driver opened by open_blockdriver
*
* Return:
* Returns zero on success or a negated errno on failure:
*
* EINVAL - inode is NULL
* ENOTBLK - The inode is not a block driver
*
****************************************************************************/
#if CONFIG_NFILE_DESCRIPTORS > 0
EXTERN int close_blockdriver(FAR struct inode *inode); EXTERN int close_blockdriver(FAR struct inode *inode);
#endif #endif
/* fs_fdopen.c **************************************************************/ /* fs_fdopen.c **************************************************************/
/****************************************************************************
/* Used by the OS to clone stdin, stdout, stderr */ * Name: fs_fdopen
*
* Description:
* This function does the core operations for fopen and fdopen. It is
* used by the OS to clone stdin, stdout, stderr
*
****************************************************************************/
#if CONFIG_NFILE_STREAMS > 0 #if CONFIG_NFILE_STREAMS > 0
@@ -388,48 +620,144 @@ typedef struct _TCB _TCB;
EXTERN FAR struct file_struct *fs_fdopen(int fd, int oflags, FAR _TCB *tcb); EXTERN FAR struct file_struct *fs_fdopen(int fd, int oflags, FAR _TCB *tcb);
#endif #endif
/* lib_fflush.c *************************************************************/ /* lib/stdio/lib_fflush.c **************************************************/
/****************************************************************************
* Name: lib_flushall
*
* Description:
* Called either (1) by the OS when a task exits, or (2) from fflush()
* when a NULL stream argument is provided.
*
****************************************************************************/
#if CONFIG_NFILE_STREAMS > 0 #if CONFIG_NFILE_STREAMS > 0
EXTERN int lib_flushall(FAR struct streamlist *list); EXTERN int lib_flushall(FAR struct streamlist *list);
#endif #endif
/* drivers ******************************************************************/ /* drivers/dev_null.c *******************************************************/
/****************************************************************************
/* Call any of these to register the corresponding drivers in the drivers/ * Name: devnull_register
* subdirectory *
*/ * Description:
* Register /dev/null
/* Register /dev/null and /dev/zero */ *
****************************************************************************/
EXTERN void devnull_register(void); EXTERN void devnull_register(void);
/* drivers/dev_zero.c *******************************************************/
/****************************************************************************
* Name: devzero_register
*
* Description:
* Register /dev/zero
*
****************************************************************************/
EXTERN void devzero_register(void); EXTERN void devzero_register(void);
/* Setup the loop device so that it exports the file referenced by 'filename' /* drivers/loop.c ***********************************************************/
* as a block device. /****************************************************************************
*/ * Name: losetup
EXTERN int losetup(const char *devname, const char *filename, uint16_t sectsize,
off_t offset, bool readonly);
EXTERN int loteardown(const char *devname);
/* Setup so that the block driver referenced by 'blkdev' can be accessed
* similar to a character device.
* *
* Access via a character device: * Description:
*/ * Setup the loop device so that it exports the file referenced by 'filename'
* as a block device.
*
****************************************************************************/
EXTERN int bchdev_register(const char *blkdev, const char *chardev, bool readonly); EXTERN int losetup(FAR const char *devname, FAR const char *filename,
EXTERN int bchdev_unregister(const char *chardev); uint16_t sectsize, off_t offset, bool readonly);
/****************************************************************************
* Name: loteardown
*
* Description:
* Undo the setup performed by losetup
*
****************************************************************************/
EXTERN int loteardown(FAR const char *devname);
/* drivers/bch/bchdev_register.c ********************************************/
/****************************************************************************
* Name: bchdev_register
*
* Description:
* Setup so that it exports the block driver referenced by 'blkdev' as a
* character device 'chardev'
*
****************************************************************************/
EXTERN int bchdev_register(FAR const char *blkdev, FAR const char *chardev,
bool readonly);
/* drivers/bch/bchdev_unregister.c ******************************************/
/****************************************************************************
* Name: bchdev_unregister
*
* Description:
* Unregister character driver access to a block device that was created
* by a previous call to bchdev_register().
*
****************************************************************************/
EXTERN int bchdev_unregister(FAR const char *chardev);
/* Low level, direct access. NOTE: low-level access and character driver access /* Low level, direct access. NOTE: low-level access and character driver access
* are incompatible. One and only one access method should be implemented. * are incompatible. One and only one access method should be implemented.
*/ */
EXTERN int bchlib_setup(const char *blkdev, bool readonly, FAR void **handle); /* drivers/bch/bchlib_setup.c ***********************************************/
/****************************************************************************
* Name: bchlib_setup
*
* Description:
* Setup so that the block driver referenced by 'blkdev' can be accessed
* similar to a character device.
*
****************************************************************************/
EXTERN int bchlib_setup(FAR const char *blkdev, bool readonly,
FAR void **handle);
/* drivers/bch/bchlib_teardown.c ********************************************/
/****************************************************************************
* Name: bchlib_teardown
*
* Description:
* Setup so that the block driver referenced by 'blkdev' can be accessed
* similar to a character device.
*
****************************************************************************/
EXTERN int bchlib_teardown(FAR void *handle); EXTERN int bchlib_teardown(FAR void *handle);
EXTERN ssize_t bchlib_read(FAR void *handle, FAR char *buffer, size_t offset, size_t len);
EXTERN ssize_t bchlib_write(FAR void *handle, FAR const char *buffer, size_t offset, size_t len); /* drivers/bch/bchlib_read.c ************************************************/
/****************************************************************************
* Name: bchlib_read
*
* Description:
* Read from the block device set-up by bchlib_setup as if it were a
* character device.
*
****************************************************************************/
EXTERN ssize_t bchlib_read(FAR void *handle, FAR char *buffer, size_t offset,
size_t len);
/* drivers/bch/bchlib_write.c ***********************************************/
/****************************************************************************
* Name: bchlib_write
*
* Description:
* Write to the block device set-up by bchlib_setup as if it were a
* character device.
*
****************************************************************************/
EXTERN ssize_t bchlib_write(FAR void *handle, FAR const char *buffer,
size_t offset, size_t len);
#undef EXTERN #undef EXTERN
#if defined(__cplusplus) #if defined(__cplusplus)