Skip to content
Snippets Groups Projects
fs_open.c 5.15 KiB
Newer Older
/****************************************************************************
patacongo's avatar
patacongo committed
 * fs_open.c
 *
 *   Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
patacongo's avatar
patacongo committed
 *   Author: Gregory Nutt <spudmonkey@racsa.co.cr>
 *
 * 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
patacongo's avatar
patacongo committed
 *    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.
 *
 ****************************************************************************/
patacongo's avatar
patacongo committed

/****************************************************************************
patacongo's avatar
patacongo committed
 * Included Files
 ****************************************************************************/
patacongo's avatar
patacongo committed

#include <nuttx/config.h>
#include <sys/types.h>
patacongo's avatar
patacongo committed
#include <sched.h>
#include <errno.h>
#ifdef CONFIG_FILE_MODE
#include <stdarg.h>
#endif
#include <nuttx/fs.h>
#include "fs_internal.h"

/****************************************************************************
patacongo's avatar
patacongo committed
 * Private Functions
 ****************************************************************************/
patacongo's avatar
patacongo committed

/****************************************************************************
patacongo's avatar
patacongo committed
 * Public Functions
 ****************************************************************************/
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
int inode_checkflags(FAR struct inode *inode, int oflags)
patacongo's avatar
patacongo committed
{
patacongo's avatar
patacongo committed
  if (((oflags & O_RDOK) != 0 && !inode->u.i_ops->read) ||
      ((oflags & O_WROK) != 0 && !inode->u.i_ops->write))
patacongo's avatar
patacongo committed
    {
      return -EACCES;
patacongo's avatar
patacongo committed
    }
  else
    {
      return OK;
    }
}

int open(const char *path, int oflags, ...)
{
  struct filelist  *list;
patacongo's avatar
patacongo committed
  FAR struct inode *inode;
  const char       *relpath = NULL;
patacongo's avatar
patacongo committed
#if defined(CONFIG_FILE_MODE) || !defined(CONFIG_DISABLE_MOUNTPOINT)
  mode_t            mode = 0666;
  int               ret;
  int               fd;
patacongo's avatar
patacongo committed

  /* Get the thread-specific file list */

  list = sched_getfiles();
  if (!list)
    {
      ret = EMFILE;
      goto errout;
patacongo's avatar
patacongo committed
    }

#ifdef CONFIG_FILE_MODE
# warning "File creation not implemented"

  /* If the file is opened for creation, then get the mode bits */

  if (oflags & (O_WRONLY|O_CREAT) != 0)
    {
      va_list ap;
      va_start(ap, oflags);
      mode = va_arg(ap, mode_t);
      va_end(ap);
    }
#endif

  /* Get an inode for this file */

patacongo's avatar
patacongo committed
  inode = inode_find(path, &relpath);
patacongo's avatar
patacongo committed
  if (!inode)
    {
      /* "O_CREAT is not set and the named file does not exist.  Or,
patacongo's avatar
patacongo committed
       *  a directory component in pathname does not exist or is a
       *  dangling symbolic link."
patacongo's avatar
patacongo committed
       */

      ret = ENOENT;
      goto errout;
patacongo's avatar
patacongo committed
    }

  /* Verify that the inode is valid and either a "normal" or a mountpoint.  We
patacongo's avatar
patacongo committed
   * specifically exclude block drivers.
   */

  if ((!INODE_IS_DRIVER(inode) && !INODE_IS_MOUNTPT(inode)) || !inode->u.i_ops)
      ret = ENXIO;
      goto errout_with_inode;
patacongo's avatar
patacongo committed
  /* Make sure that the inode supports the requested access */

  ret = inode_checkflags(inode, oflags);
  if (ret < 0)
patacongo's avatar
patacongo committed
    {
      ret = -ret;
      goto errout_with_inode;
patacongo's avatar
patacongo committed
    }

  /* Associate the inode with a file structure */

  fd = files_allocate(inode, oflags, 0);
  if (fd < 0)
    {
      ret = EMFILE;
      goto errout_with_inode;
patacongo's avatar
patacongo committed
    }

patacongo's avatar
patacongo committed
  /* Perform the driver open operation.  NOTE that the open method may
   * be called many times.  The driver/mountpoint logic should handled this
   * becuase it may also be closed that many times.
   */
patacongo's avatar
patacongo committed

  ret = OK;
  if (inode->u.i_ops->open)
patacongo's avatar
patacongo committed
    {
#ifndef CONFIG_DISABLE_MOUNTPOINT
patacongo's avatar
patacongo committed
      if (INODE_IS_MOUNTPT(inode))
        {
          ret = inode->u.i_mops->open((FAR struct file*)&list->fl_files[fd],
                                      relpath, oflags, mode);
          ret = inode->u.i_ops->open((FAR struct file*)&list->fl_files[fd]);
patacongo's avatar
patacongo committed
    }

patacongo's avatar
patacongo committed
    {
      ret = -ret;
      goto errout_with_fd;
patacongo's avatar
patacongo committed
    }

  return fd;

 errout_with_fd:
  files_release(fd);
 errout_with_inode:
  inode_release(inode);
 errout:
  *get_errno_ptr() = ret;
  return ERROR;
patacongo's avatar
patacongo committed
}