2012-03-22 01:51:01 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* fs/nfs/nfs_vfsops.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
|
|
|
* Copyright (C) 2012 Jose Pablo Rojas Vargas. All rights reserved.
|
|
|
|
* Author: Jose Pablo Rojas Vargas <jrojas@nx-engineering.com>
|
|
|
|
*
|
|
|
|
* Leveraged from OpenBSD:
|
|
|
|
*
|
|
|
|
* Copyright (c) 1989, 1993, 1995
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Rick Macklem at The University of Guelph.
|
|
|
|
*
|
|
|
|
* 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 of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
#include <nuttx/config.h>
|
2012-04-28 01:29:24 +02:00
|
|
|
|
2012-03-22 01:51:01 +01:00
|
|
|
#include <sys/socket.h>
|
2012-04-17 01:01:21 +02:00
|
|
|
#include <sys/statfs.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2012-04-14 02:27:44 +02:00
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
2012-03-27 02:23:40 +02:00
|
|
|
#include <queue.h>
|
2012-04-17 01:01:21 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
2012-04-14 02:27:44 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
2012-04-19 01:31:47 +02:00
|
|
|
#include <time.h>
|
|
|
|
#include <nuttx/kmalloc.h>
|
2012-03-29 01:27:24 +02:00
|
|
|
#include <nuttx/fs/dirent.h>
|
2012-03-28 02:10:43 +02:00
|
|
|
#include <nuttx/fs/fs.h>
|
2012-04-23 21:55:32 +02:00
|
|
|
#include <nuttx/fs/nfs.h>
|
2012-04-26 01:22:09 +02:00
|
|
|
#include <semaphore.h>
|
2012-03-22 01:51:01 +01:00
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
2012-04-23 22:33:25 +02:00
|
|
|
#include "nfs.h"
|
2012-04-19 01:31:47 +02:00
|
|
|
#include "rpc.h"
|
2012-04-17 01:01:21 +02:00
|
|
|
#include "nfs_proto.h"
|
2012-03-28 02:10:43 +02:00
|
|
|
#include "nfs_node.h"
|
|
|
|
#include "nfs_mount.h"
|
|
|
|
#include "xdr_subs.h"
|
2012-04-19 01:31:47 +02:00
|
|
|
#include "nfs_socket.h"
|
2012-03-22 01:51:01 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-03-27 02:23:40 +02:00
|
|
|
#define NFS_DIRHDSIZ (sizeof (struct nfs_dirent) - (MAXNAMLEN + 1))
|
|
|
|
#define NFS_DIRENT_OVERHEAD offsetof(struct nfs_dirent, dirent)
|
|
|
|
|
2012-03-22 01:51:01 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Type Definitions
|
|
|
|
****************************************************************************/
|
2012-04-28 01:29:24 +02:00
|
|
|
|
2012-03-27 02:23:40 +02:00
|
|
|
struct nfs_dirent
|
2012-03-22 01:51:01 +01:00
|
|
|
{
|
2012-03-27 02:23:40 +02:00
|
|
|
uint32_t cookie[2];
|
|
|
|
struct dirent dirent;
|
2012-03-22 01:51:01 +01:00
|
|
|
};
|
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
static int nfs_create(FAR struct nfsmount *nmp, struct nfsnode *np,
|
|
|
|
FAR const char *relpath, mode_t mode);
|
2012-04-17 01:01:21 +02:00
|
|
|
static int nfs_open(FAR struct file *filep, const char *relpath,
|
2012-06-07 18:53:46 +02:00
|
|
|
int oflags, mode_t mode);
|
2012-04-17 01:01:21 +02:00
|
|
|
static ssize_t nfs_read(FAR struct file *filep, char *buffer, size_t buflen);
|
|
|
|
static ssize_t nfs_write(FAR struct file *filep, const char *buffer,
|
2012-06-07 18:53:46 +02:00
|
|
|
size_t buflen);
|
2012-05-29 01:40:20 +02:00
|
|
|
static int nfs_opendir(struct inode *mountpt, const char *relpath,
|
2012-06-07 18:53:46 +02:00
|
|
|
struct fs_dirent_s *dir);
|
2012-04-17 01:01:21 +02:00
|
|
|
static int nfs_readdir(struct inode *mountpt, struct fs_dirent_s *dir);
|
2012-04-21 01:15:41 +02:00
|
|
|
static int nfs_bind(FAR struct inode *blkdriver, const void *data,
|
2012-06-07 18:53:46 +02:00
|
|
|
void **handle);
|
2012-04-21 01:15:41 +02:00
|
|
|
static int nfs_unbind(void *handle, FAR struct inode **blkdriver);
|
2012-04-17 01:01:21 +02:00
|
|
|
static int nfs_statfs(struct inode *mountpt, struct statfs *buf);
|
|
|
|
static int nfs_remove(struct inode *mountpt, const char *relpath);
|
|
|
|
static int nfs_mkdir(struct inode *mountpt, const char *relpath,
|
2012-06-07 18:53:46 +02:00
|
|
|
mode_t mode);
|
2012-04-17 01:01:21 +02:00
|
|
|
static int nfs_rmdir(struct inode *mountpt, const char *relpath);
|
|
|
|
static int nfs_rename(struct inode *mountpt, const char *oldrelpath,
|
2012-06-07 18:53:46 +02:00
|
|
|
const char *newrelpath);
|
|
|
|
static int nfs_getfsinfo(struct nfsmount *nmp, const char *relpath,
|
|
|
|
struct stat *buf);
|
2012-04-17 01:01:21 +02:00
|
|
|
static int nfs_fsinfo(struct inode *mountpt, const char *relpath,
|
2012-06-07 18:53:46 +02:00
|
|
|
struct stat *buf);
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-03-22 01:51:01 +01:00
|
|
|
/****************************************************************************
|
2012-03-27 02:23:40 +02:00
|
|
|
* External Public Data (this belong in a header file)
|
2012-03-22 01:51:01 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
2012-04-21 01:15:41 +02:00
|
|
|
extern uint32_t nfs_true;
|
|
|
|
extern uint32_t nfs_false;
|
2012-03-27 02:23:40 +02:00
|
|
|
extern uint32_t nfs_xdrneg1;
|
2012-03-22 01:51:01 +01:00
|
|
|
extern struct nfsstats nfsstats;
|
|
|
|
extern int nfs_ticks;
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-03-27 02:23:40 +02:00
|
|
|
* Public Data
|
2012-03-22 01:51:01 +01:00
|
|
|
****************************************************************************/
|
2012-03-27 02:23:40 +02:00
|
|
|
/* nfs vfs operations. */
|
|
|
|
|
2012-04-21 01:15:41 +02:00
|
|
|
const struct mountpt_operations nfs_operations =
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
2012-03-27 02:23:40 +02:00
|
|
|
nfs_open, /* open */
|
2012-04-17 01:01:21 +02:00
|
|
|
NULL, /* close */
|
2012-03-27 02:23:40 +02:00
|
|
|
nfs_read, /* read */
|
|
|
|
nfs_write, /* write */
|
|
|
|
NULL, /* seek */
|
2012-04-10 01:35:45 +02:00
|
|
|
NULL, /* ioctl */
|
2012-04-17 01:01:21 +02:00
|
|
|
NULL, /* sync */
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-05-29 01:40:20 +02:00
|
|
|
nfs_opendir, /* opendir */
|
2012-03-27 02:23:40 +02:00
|
|
|
NULL, /* closedir */
|
|
|
|
nfs_readdir, /* readdir */
|
|
|
|
NULL, /* rewinddir */
|
|
|
|
|
2012-04-21 01:15:41 +02:00
|
|
|
nfs_bind, /* bind */
|
|
|
|
nfs_unbind, /* unbind */
|
2012-03-27 02:23:40 +02:00
|
|
|
nfs_statfs, /* statfs */
|
|
|
|
|
|
|
|
nfs_remove, /* unlink */
|
|
|
|
nfs_mkdir, /* mkdir */
|
|
|
|
nfs_rmdir, /* rmdir */
|
|
|
|
nfs_rename, /* rename */
|
2012-04-17 01:01:21 +02:00
|
|
|
nfs_fsinfo /* stat */
|
2012-03-27 02:23:40 +02:00
|
|
|
};
|
2012-03-22 01:51:01 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-03-27 02:23:40 +02:00
|
|
|
* Public Functions
|
2012-03-22 01:51:01 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: nfs_create
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Create a file. This is part of the file open logic that is executed if
|
|
|
|
* the user asks to create a file.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a positive errno value on failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int nfs_create(FAR struct nfsmount *nmp, struct nfsnode *np,
|
|
|
|
FAR const char *relpath, mode_t mode)
|
|
|
|
{
|
|
|
|
//struct nfs_fattr vap;
|
|
|
|
struct nfsv3_sattr sp;
|
|
|
|
struct CREATE3args create;
|
|
|
|
struct rpc_reply_create resok;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
nfsstats.rpccnt[NFSPROC_CREATE]++;
|
|
|
|
memset(&sp, 0, sizeof(struct nfsv3_sattr));
|
|
|
|
//memset(&vap, 0, sizeof(struct nfs_fattr));
|
|
|
|
//vap = nmp->nm_head->n_fattr;
|
|
|
|
sp.sa_modetrue = true;
|
|
|
|
sp.sa_mode = txdr_unsigned(mode);
|
|
|
|
sp.sa_uidfalse = nfs_xdrneg1;
|
|
|
|
sp.sa_gidfalse = nfs_xdrneg1;
|
|
|
|
sp.sa_sizefalse = 0;
|
|
|
|
sp.sa_atimetype = txdr_unsigned(NFSV3SATTRTIME_DONTCHANGE);
|
|
|
|
sp.sa_mtimetype = txdr_unsigned(NFSV3SATTRTIME_DONTCHANGE);
|
|
|
|
//txdr_nfsv3time2(&vap.fa3_atime, &sp.sa_atime);
|
|
|
|
//txdr_nfsv3time2(&vap.fa3_mtime, &sp.sa_mtime);
|
|
|
|
|
|
|
|
memset(&create, 0, sizeof(struct CREATE3args));
|
|
|
|
memset(&resok, 0, sizeof(struct rpc_reply_create));
|
|
|
|
memcpy(&create.how, &sp, sizeof(struct nfsv3_sattr));
|
|
|
|
#warning "BUG HERE: np has not yet been initialized"
|
|
|
|
create.where.dir.length = txdr_unsigned(np->n_fhsize);
|
|
|
|
memcpy(&create.where.dir.handle, &np->n_fhp, sizeof(nfsfh_t));
|
|
|
|
create.where.length = txdr_unsigned(64);
|
|
|
|
strncpy(create.where.name, relpath, 64);
|
|
|
|
|
|
|
|
error = nfs_request(nmp, NFSPROC_CREATE, (FAR const void *)&create,
|
|
|
|
(void *)&resok, sizeof(struct rpc_reply_create));
|
|
|
|
}
|
|
|
|
while (error == EOPNOTSUPP);
|
|
|
|
|
|
|
|
if (error == 0)
|
|
|
|
{
|
|
|
|
//np->nfsv3_type = fxdr_unsigned(uint32_t, resok.attributes.fa_type);
|
|
|
|
|
|
|
|
np->n_open = true;
|
|
|
|
memcpy(&np->n_fhp, &resok.create.fshandle.handle, sizeof(nfsfh_t));
|
|
|
|
np->n_size = fxdr_hyper(&resok.create.attributes.fa3_size);
|
|
|
|
memcpy(&resok.create.attributes, &np->n_fattr, sizeof(struct nfs_fattr));
|
|
|
|
fxdr_nfsv3time(&resok.create.attributes.fa3_mtime, &np->n_mtime)
|
|
|
|
np->n_ctime = fxdr_hyper(&resok.create.attributes.fa3_ctime);
|
|
|
|
}
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: nfs_open
|
|
|
|
*
|
2012-06-07 18:53:46 +02:00
|
|
|
* Description:
|
|
|
|
* If oflags == O_CREAT it creates a file, if not it check to see if the
|
|
|
|
* type is ok and that deletion is not in progress.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a negated errno value on failure.
|
|
|
|
*
|
2012-04-17 01:01:21 +02:00
|
|
|
****************************************************************************/
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-05-31 01:21:37 +02:00
|
|
|
static int nfs_open(FAR struct file *filep, FAR const char *relpath,
|
|
|
|
int oflags, mode_t mode)
|
2012-03-27 02:23:40 +02:00
|
|
|
{
|
2012-06-09 17:55:10 +02:00
|
|
|
struct stat buf;
|
2012-04-10 01:35:45 +02:00
|
|
|
struct inode *in;
|
2012-05-31 01:21:37 +02:00
|
|
|
//struct nfs_fattr vap;
|
2012-04-10 01:35:45 +02:00
|
|
|
struct nfsmount *nmp;
|
|
|
|
struct nfsnode *np;
|
2012-06-09 17:55:10 +02:00
|
|
|
bool readonly;
|
2012-04-10 01:35:45 +02:00
|
|
|
int error = 0;
|
2012-03-27 02:23:40 +02:00
|
|
|
|
|
|
|
/* Sanity checks */
|
|
|
|
|
2012-04-10 01:35:45 +02:00
|
|
|
DEBUGASSERT(filep->f_inode != NULL);
|
|
|
|
|
|
|
|
/* Get the mountpoint inode reference from the file structure and the
|
|
|
|
* mountpoint private data from the inode structure
|
|
|
|
*/
|
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
in = filep->f_inode;
|
2012-04-12 02:42:01 +02:00
|
|
|
nmp = (struct nfsmount*)in->i_private;
|
2012-04-10 01:35:45 +02:00
|
|
|
|
|
|
|
DEBUGASSERT(nmp != NULL);
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
/* Pre-allocate the file private data to describe the opened file. */
|
|
|
|
|
|
|
|
np = (struct nfsnode *)kzalloc(sizeof(struct nfsnode));
|
|
|
|
if (!np)
|
|
|
|
{
|
|
|
|
fdbg("ERROR: Failed to allocate private data\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2012-04-10 01:35:45 +02:00
|
|
|
/* Check if the mount is still healthy */
|
|
|
|
|
|
|
|
nfs_semtake(nmp);
|
|
|
|
error = nfs_checkmount(nmp);
|
|
|
|
if (error != 0)
|
2012-03-27 02:23:40 +02:00
|
|
|
{
|
2012-04-10 01:35:45 +02:00
|
|
|
goto errout_with_semaphore;
|
2012-03-27 02:23:40 +02:00
|
|
|
}
|
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
/* First check if the file already exists */
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
error = nfs_getfsinfo(nmp, relpath, &buf);
|
|
|
|
if (error == 0)
|
|
|
|
{
|
|
|
|
/* Check if the file is a directory */
|
2012-04-14 02:27:44 +02:00
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
if (S_ISDIR(buf.st_mode))
|
2012-04-10 01:35:45 +02:00
|
|
|
{
|
2012-06-09 17:55:10 +02:00
|
|
|
/* Exit with EISDIR if we attempt to open an directory */
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
fdbg("ERROR: Path is a directory\n");
|
|
|
|
error = EISDIR;
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
2012-06-02 01:12:17 +02:00
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
/* Check if the caller has sufficient privileges to open the file */
|
2012-06-02 01:12:17 +02:00
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
readonly = ((buf.st_mode & (S_IWOTH|S_IWGRP|S_IXUSR)) == 0);
|
|
|
|
if (((oflags & O_WRONLY) != 0) && readonly)
|
|
|
|
{
|
|
|
|
fdbg("ERROR: File is read-only\n");
|
|
|
|
error = EACCES;
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
2012-06-02 01:12:17 +02:00
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
/* It would be an error if we are asked to create it exclusively */
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
if ((oflags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL))
|
|
|
|
{
|
|
|
|
/* Already exists -- can't create it exclusively */
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
fdbg("ERROR: File exists\n");
|
|
|
|
error = EEXIST;
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
/* If O_TRUNC is specified and the file is opened for writing,
|
|
|
|
* then truncate the file. This operation requires that the file is
|
|
|
|
* writable, but we have already checked that. O_TRUNC without write
|
|
|
|
* access is ignored.
|
|
|
|
*/
|
2012-04-10 01:35:45 +02:00
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
if ((oflags & (O_TRUNC|O_WRONLY)) == (O_TRUNC|O_WRONLY))
|
2012-03-27 02:23:40 +02:00
|
|
|
{
|
2012-06-09 17:55:10 +02:00
|
|
|
/* Truncate the file to zero length */
|
|
|
|
|
|
|
|
fvdbg("Truncating file\n");
|
|
|
|
#warning "Missing logic"
|
2012-03-27 02:23:40 +02:00
|
|
|
}
|
2012-04-14 02:27:44 +02:00
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
/* Initialize the file private data from the FSINFO return data */
|
|
|
|
/* NOTE: This will require some re-structuring */
|
|
|
|
#if 0
|
|
|
|
np->n_open = true;
|
|
|
|
memcpy(&np->n_fhp, &resok.fsinfo.fshandle.handle, sizeof(nfsfh_t));
|
|
|
|
np->n_size = fxdr_hyper(&resok.fsinfo.attributes.fa3_size);
|
|
|
|
memcpy(&resok.fsinfo.attributes, &np->n_fattr, sizeof(struct nfs_fattr));
|
|
|
|
fxdr_nfsv3time(&resok.fsinfo.attributes.fa3_mtime, &np->n_mtime)
|
|
|
|
np->n_ctime = fxdr_hyper(&resok.fsinfo.attributes.fa3_ctime);
|
|
|
|
#else
|
|
|
|
#warning "Missing logic"
|
|
|
|
fdbg("ERROR: Logic to open an existing file is not fully implemented");
|
|
|
|
errno = ENOSYS; /* Just fail for now */
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
#endif
|
|
|
|
/* Fall through to finish the file open operation */
|
2012-03-27 02:23:40 +02:00
|
|
|
}
|
2012-06-09 17:55:10 +02:00
|
|
|
|
|
|
|
/* An error occurred while getting the file status */
|
|
|
|
|
2012-04-10 01:35:45 +02:00
|
|
|
else
|
2012-03-27 02:23:40 +02:00
|
|
|
{
|
2012-06-09 17:55:10 +02:00
|
|
|
/* Check if the stat failed because the file does not exist. */
|
|
|
|
#warning "Missing logic"
|
|
|
|
|
|
|
|
/* If the file does not exist then check if we were asked to create
|
|
|
|
* the file. If the O_CREAT bit is set in the oflags then we should
|
|
|
|
* create the file if it does not exist.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ((oflags & O_CREAT) == 0)
|
2012-03-27 02:23:40 +02:00
|
|
|
{
|
2012-06-09 17:55:10 +02:00
|
|
|
/* Return ENOENT if the file does not exist and we were not asked
|
|
|
|
* to create it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
fdbg("ERROR: File does not exist\n");
|
|
|
|
error = ENOENT;
|
2012-06-07 18:53:46 +02:00
|
|
|
goto errout_with_semaphore;
|
2012-04-10 01:35:45 +02:00
|
|
|
}
|
2012-06-09 17:55:10 +02:00
|
|
|
|
|
|
|
/* Create the file */
|
2012-04-10 01:35:45 +02:00
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
error = nfs_create(nmp, np, relpath, mode);
|
|
|
|
if (error != 0)
|
2012-04-10 01:35:45 +02:00
|
|
|
{
|
2012-06-09 17:55:10 +02:00
|
|
|
fdbg("ERROR: nfs_create failed: %d\n", error);
|
|
|
|
goto errout_with_semaphore;
|
2012-03-27 02:23:40 +02:00
|
|
|
}
|
2012-06-09 17:55:10 +02:00
|
|
|
|
|
|
|
/* Fall through to finish the file open operation */
|
2012-03-27 02:23:40 +02:00
|
|
|
}
|
2012-04-10 01:35:45 +02:00
|
|
|
|
2012-06-09 17:55:10 +02:00
|
|
|
/* Initialize the file private data (only need to initialize
|
|
|
|
* non-zero elements)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Attach the private data to the struct file instance */
|
|
|
|
|
|
|
|
filep->f_priv = np;
|
|
|
|
|
|
|
|
/* Then insert the new instance into the mountpoint structure.
|
|
|
|
* It needs to be there (1) to handle error conditions that effect
|
|
|
|
* all files, and (2) to inform the umount logic that we are busy
|
|
|
|
* (but a simple reference count could have done that).
|
|
|
|
*/
|
|
|
|
|
|
|
|
np->n_next = nmp->nm_head;
|
|
|
|
np->n_flag |= NMODIFIED;
|
|
|
|
nmp->nm_head = np->n_next;
|
|
|
|
|
2012-04-10 01:35:45 +02:00
|
|
|
/* For open/close consistency. */
|
|
|
|
|
|
|
|
NFS_INVALIDATE_ATTRCACHE(np);
|
2012-06-09 17:55:10 +02:00
|
|
|
nfs_semgive(nmp);
|
|
|
|
return OK;
|
2012-04-10 01:35:45 +02:00
|
|
|
|
|
|
|
errout_with_semaphore:
|
2012-05-08 01:33:39 +02:00
|
|
|
kfree(np);
|
2012-04-10 01:35:45 +02:00
|
|
|
nfs_semgive(nmp);
|
2012-06-07 18:53:46 +02:00
|
|
|
return -error;
|
2012-03-27 02:23:40 +02:00
|
|
|
}
|
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
#undef COMP
|
|
|
|
#ifdef COMP
|
2012-04-10 01:35:45 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: nfs_close
|
2012-06-07 18:53:46 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a negated errno value on failure.
|
|
|
|
*
|
2012-04-10 01:35:45 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
static int nfs_close(FAR struct file *filep) done
|
2012-03-27 02:23:40 +02:00
|
|
|
{
|
2012-04-10 01:35:45 +02:00
|
|
|
struct nfsmount *nmp;
|
|
|
|
struct nfsnode *np;
|
2012-03-27 02:23:40 +02:00
|
|
|
int error = 0;
|
|
|
|
|
2012-06-06 23:51:03 +02:00
|
|
|
fvdbg("Closing\n");
|
2012-04-10 01:35:45 +02:00
|
|
|
|
2012-03-27 02:23:40 +02:00
|
|
|
/* Sanity checks */
|
|
|
|
|
|
|
|
DEBUGASSERT(filep->f_priv != NULL && filep->f_inode != NULL);
|
2012-04-10 01:35:45 +02:00
|
|
|
|
|
|
|
/* Recover our private data from the struct file instance */
|
|
|
|
|
|
|
|
np = filep->f_priv;
|
|
|
|
nmp = filep->f_inode->i_private;
|
|
|
|
|
2012-03-27 02:23:40 +02:00
|
|
|
DEBUGASSERT(nmp != NULL);
|
|
|
|
|
|
|
|
if (np->nfsv3_type == NFREG)
|
|
|
|
{
|
|
|
|
error = nfs_sync(filep);
|
|
|
|
kfree(np);
|
|
|
|
filep->f_priv = NULL;
|
|
|
|
}
|
2012-04-10 01:35:45 +02:00
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
return -error;
|
2012-03-27 02:23:40 +02:00
|
|
|
}
|
2012-04-17 01:01:21 +02:00
|
|
|
#endif
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-04-10 01:35:45 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: nfs_read
|
2012-06-07 18:53:46 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The (non-negative) number of bytes read on success; a negated errno
|
|
|
|
* value on failure.
|
|
|
|
*
|
2012-04-10 01:35:45 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2012-04-28 01:29:24 +02:00
|
|
|
static ssize_t nfs_read(FAR struct file *filep, char *buffer, size_t buflen)
|
2012-03-27 02:23:40 +02:00
|
|
|
{
|
2012-04-12 02:42:01 +02:00
|
|
|
struct nfsmount *nmp;
|
|
|
|
struct nfsnode *np;
|
2012-05-23 02:15:53 +02:00
|
|
|
uint32_t readsize;
|
2012-04-14 02:27:44 +02:00
|
|
|
int bytesleft;
|
|
|
|
uint64_t offset;
|
2012-04-28 01:29:24 +02:00
|
|
|
struct READ3args read;
|
2012-06-07 03:03:34 +02:00
|
|
|
struct rpc_reply_read resok;
|
2012-04-14 02:27:44 +02:00
|
|
|
uint8_t *userbuffer = (uint8_t*)buffer;
|
2012-04-12 02:42:01 +02:00
|
|
|
int error = 0;
|
|
|
|
int len;
|
|
|
|
|
2012-06-06 23:51:03 +02:00
|
|
|
fvdbg("Read %d bytes from offset %d\n", buflen, filep->f_pos);
|
2012-04-12 02:42:01 +02:00
|
|
|
|
|
|
|
/* Sanity checks */
|
|
|
|
|
|
|
|
DEBUGASSERT(filep->f_priv != NULL && filep->f_inode != NULL);
|
|
|
|
|
|
|
|
/* Recover our private data from the struct file instance */
|
|
|
|
|
2012-04-14 02:27:44 +02:00
|
|
|
np = (struct nfsnode*) filep->f_priv;
|
|
|
|
nmp = (struct nfsmount*) filep->f_inode->i_private;
|
|
|
|
offset = 0;
|
2012-04-12 02:42:01 +02:00
|
|
|
|
|
|
|
DEBUGASSERT(nmp != NULL);
|
|
|
|
|
|
|
|
/* Make sure that the mount is still healthy */
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
nfs_semtake(nmp);
|
2012-04-12 02:42:01 +02:00
|
|
|
error = nfs_checkmount(nmp);
|
|
|
|
if (error != 0)
|
|
|
|
{
|
2012-06-06 23:51:03 +02:00
|
|
|
fdbg("nfs_checkmount failed: %d\n", error);
|
2012-04-12 02:42:01 +02:00
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (np->nfsv3_type != NFREG)
|
2012-04-10 01:35:45 +02:00
|
|
|
{
|
2012-06-06 23:51:03 +02:00
|
|
|
fdbg("read eacces typ=%d\n", np->nfsv3_type);
|
2012-06-07 18:53:46 +02:00
|
|
|
error = EACCES;
|
|
|
|
goto errout_with_semaphore;
|
2012-04-12 02:42:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((nmp->nm_flag & (NFSMNT_NFSV3 | NFSMNT_GOTFSINFO)) == NFSMNT_NFSV3)
|
|
|
|
{
|
2012-06-07 18:53:46 +02:00
|
|
|
(void)nfs_getfsinfo(nmp, NULL, NULL);
|
2012-04-12 02:42:01 +02:00
|
|
|
}
|
|
|
|
|
2012-04-14 02:27:44 +02:00
|
|
|
/* Get the number of bytes left in the file */
|
2012-04-12 02:42:01 +02:00
|
|
|
|
|
|
|
bytesleft = np->n_size - filep->f_pos;
|
2012-04-14 02:27:44 +02:00
|
|
|
readsize = 0;
|
2012-04-12 02:42:01 +02:00
|
|
|
|
|
|
|
/* Truncate read count so that it does not exceed the number
|
|
|
|
* of bytes left in the file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (buflen > bytesleft)
|
|
|
|
{
|
|
|
|
buflen = bytesleft;
|
|
|
|
}
|
|
|
|
|
2012-04-28 01:29:24 +02:00
|
|
|
len = nmp->nm_rsize;
|
|
|
|
if (len < buflen)
|
|
|
|
{
|
|
|
|
error = EFBIG;
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
|
|
|
nfsstats.rpccnt[NFSPROC_READ]++;
|
2012-04-14 02:27:44 +02:00
|
|
|
|
|
|
|
again:
|
2012-05-06 01:17:25 +02:00
|
|
|
memset(&read, 0, sizeof(struct READ3args));
|
2012-06-08 02:14:54 +02:00
|
|
|
memset(&resok, 0, sizeof(struct rpc_reply_read));
|
2012-05-23 02:15:53 +02:00
|
|
|
read.file = txdr_unsigned(np->nfsv3_type);
|
|
|
|
read.count = txdr_unsigned(buflen);
|
|
|
|
read.offset = txdr_unsigned(offset);
|
2012-04-12 02:42:01 +02:00
|
|
|
|
2012-06-07 03:03:34 +02:00
|
|
|
error = nfs_request(nmp, NFSPROC_READ, (FAR const void *)&read,
|
|
|
|
(void *)&resok, sizeof(struct rpc_reply_read));
|
2012-04-28 01:29:24 +02:00
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
2012-04-12 02:42:01 +02:00
|
|
|
|
2012-06-08 02:14:54 +02:00
|
|
|
if (resok.read.eof == true)
|
2012-04-28 01:29:24 +02:00
|
|
|
{
|
2012-06-07 03:03:34 +02:00
|
|
|
readsize = fxdr_unsigned(uint32_t, resok.read.count);
|
|
|
|
np->n_fattr = resok.read.file_attributes;//
|
|
|
|
memcpy(userbuffer, resok.read.data, readsize);
|
2012-04-28 01:29:24 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
goto again;
|
|
|
|
}
|
2012-04-10 01:35:45 +02:00
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
nfs_semgive(nmp);
|
2012-04-12 02:42:01 +02:00
|
|
|
return readsize;
|
|
|
|
|
|
|
|
errout_with_semaphore:
|
|
|
|
nfs_semgive(nmp);
|
2012-06-07 18:53:46 +02:00
|
|
|
return -error;
|
2012-03-27 02:23:40 +02:00
|
|
|
}
|
|
|
|
|
2012-04-14 02:27:44 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: nfs_write
|
2012-06-07 18:53:46 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The (non-negative) number of bytes written on success; a negated errno
|
|
|
|
* value on failure.
|
|
|
|
*
|
2012-04-14 02:27:44 +02:00
|
|
|
****************************************************************************/
|
2012-04-12 02:42:01 +02:00
|
|
|
|
2012-04-14 02:27:44 +02:00
|
|
|
static ssize_t
|
2012-04-28 01:29:24 +02:00
|
|
|
nfs_write(FAR struct file *filep, const char *buffer, size_t buflen)
|
2012-03-27 02:23:40 +02:00
|
|
|
{
|
2012-04-14 02:27:44 +02:00
|
|
|
struct inode *inode;
|
2012-04-12 02:42:01 +02:00
|
|
|
struct nfsmount *nmp;
|
|
|
|
struct nfsnode *np;
|
2012-04-14 02:27:44 +02:00
|
|
|
unsigned int writesize;
|
2012-04-28 01:29:24 +02:00
|
|
|
struct WRITE3args write;
|
2012-06-07 03:03:34 +02:00
|
|
|
struct rpc_reply_write resok;
|
2012-04-14 02:27:44 +02:00
|
|
|
uint8_t *userbuffer = (uint8_t*)buffer;
|
2012-04-12 02:42:01 +02:00
|
|
|
int error = 0;
|
2012-04-14 02:27:44 +02:00
|
|
|
uint64_t offset;
|
2012-04-12 02:42:01 +02:00
|
|
|
int len;
|
2012-06-08 02:14:54 +02:00
|
|
|
int commit = 0;
|
2012-03-27 02:23:40 +02:00
|
|
|
int committed = NFSV3WRITE_FILESYNC;
|
|
|
|
|
2012-04-14 02:27:44 +02:00
|
|
|
/* Sanity checks */
|
2012-04-12 02:42:01 +02:00
|
|
|
|
|
|
|
DEBUGASSERT(filep->f_priv != NULL && filep->f_inode != NULL);
|
|
|
|
|
|
|
|
/* Recover our private data from the struct file instance */
|
|
|
|
|
2012-04-14 02:27:44 +02:00
|
|
|
np = (struct nfsnode *)filep->f_priv;
|
|
|
|
inode = filep->f_inode;
|
|
|
|
nmp = (struct nfsmount *)inode->i_private;
|
|
|
|
offset = 0;
|
2012-04-12 02:42:01 +02:00
|
|
|
|
|
|
|
DEBUGASSERT(nmp != NULL);
|
|
|
|
|
|
|
|
/* Make sure that the mount is still healthy */
|
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
nfs_semtake(nmp);
|
2012-04-12 02:42:01 +02:00
|
|
|
error = nfs_checkmount(nmp);
|
|
|
|
if (error != 0)
|
2012-04-10 01:35:45 +02:00
|
|
|
{
|
2012-04-12 02:42:01 +02:00
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if the file size would exceed the range of off_t */
|
|
|
|
|
|
|
|
if (np->n_size + buflen < np->n_size)
|
|
|
|
{
|
2012-06-07 18:53:46 +02:00
|
|
|
error = EFBIG;
|
2012-04-12 02:42:01 +02:00
|
|
|
goto errout_with_semaphore;
|
2012-04-10 01:35:45 +02:00
|
|
|
}
|
|
|
|
|
2012-04-14 02:27:44 +02:00
|
|
|
len = nmp->nm_wsize;
|
|
|
|
if (len < buflen)
|
2012-03-27 02:23:40 +02:00
|
|
|
{
|
2012-06-07 18:53:46 +02:00
|
|
|
error = EFBIG;
|
2012-04-14 02:27:44 +02:00
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
2012-05-23 02:15:53 +02:00
|
|
|
|
2012-04-14 02:27:44 +02:00
|
|
|
writesize = 0;
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-04-14 02:27:44 +02:00
|
|
|
nfsstats.rpccnt[NFSPROC_WRITE]++;
|
2012-05-06 01:17:25 +02:00
|
|
|
memset(&write, 0, sizeof(struct WRITE3args));
|
2012-06-08 02:14:54 +02:00
|
|
|
memset(&resok, 0, sizeof(struct rpc_reply_write));
|
|
|
|
write.file = txdr_unsigned(np->nfsv3_type);
|
2012-05-31 01:21:37 +02:00
|
|
|
write.offset = txdr_unsigned(offset);
|
2012-06-08 02:14:54 +02:00
|
|
|
write.count = txdr_unsigned(buflen);
|
2012-05-31 01:21:37 +02:00
|
|
|
write.stable = txdr_unsigned(committed);
|
2012-04-28 01:29:24 +02:00
|
|
|
memcpy((void *)write.data, userbuffer, buflen);
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-05-31 01:21:37 +02:00
|
|
|
error = nfs_request(nmp, NFSPROC_WRITE, (FAR const void *)&write,
|
2012-06-07 03:03:34 +02:00
|
|
|
(FAR void *)&resok, sizeof(struct rpc_reply_write));
|
2012-04-14 02:27:44 +02:00
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-06-08 02:14:54 +02:00
|
|
|
writesize = resok.write.count;
|
2012-04-14 02:27:44 +02:00
|
|
|
if (writesize == 0)
|
|
|
|
{
|
2012-06-09 02:08:18 +02:00
|
|
|
error = EIO;
|
2012-04-14 02:27:44 +02:00
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-06-08 02:14:54 +02:00
|
|
|
commit = resok.write.committed;
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&np->n_fattr, &resok.write.file_wcc.after, sizeof(struct nfs_fattr));
|
2012-04-10 01:35:45 +02:00
|
|
|
|
2012-04-14 02:27:44 +02:00
|
|
|
/* Return the lowest committment level obtained by any of the RPCs. */
|
2012-04-10 01:35:45 +02:00
|
|
|
|
2012-04-14 02:27:44 +02:00
|
|
|
if (committed == NFSV3WRITE_FILESYNC)
|
|
|
|
{
|
|
|
|
committed = commit;
|
|
|
|
}
|
|
|
|
else if (committed == NFSV3WRITE_DATASYNC &&
|
|
|
|
commit == NFSV3WRITE_UNSTABLE)
|
|
|
|
{
|
2012-05-23 02:15:53 +02:00
|
|
|
committed = commit;
|
2012-04-14 02:27:44 +02:00
|
|
|
}
|
2012-04-10 01:35:45 +02:00
|
|
|
|
2012-04-14 02:27:44 +02:00
|
|
|
if ((nmp->nm_flag & NFSMNT_HASWRITEVERF) == 0)
|
|
|
|
{
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy((void*) nmp->nm_verf, (void*) resok.write.verf, NFSX_V3WRITEVERF);
|
2012-04-14 02:27:44 +02:00
|
|
|
nmp->nm_flag |= NFSMNT_HASWRITEVERF;
|
|
|
|
}
|
2012-06-07 03:03:34 +02:00
|
|
|
else if (strncmp((char*) resok.write.verf, (char*) nmp->nm_verf, NFSX_V3WRITEVERF))
|
2012-04-14 02:27:44 +02:00
|
|
|
{
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy((void*) nmp->nm_verf, (void*) resok.write.verf, NFSX_V3WRITEVERF);
|
2012-03-27 02:23:40 +02:00
|
|
|
}
|
2012-04-10 01:35:45 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
fxdr_nfsv3time(&np->n_fattr.fa3_mtime, &np->n_mtime)
|
2012-04-14 02:27:44 +02:00
|
|
|
|
|
|
|
nfs_semgive(nmp);
|
|
|
|
return writesize;
|
|
|
|
|
2012-04-12 02:42:01 +02:00
|
|
|
errout_with_semaphore:
|
|
|
|
nfs_semgive(nmp);
|
2012-06-07 18:53:46 +02:00
|
|
|
return -error;
|
2012-03-27 02:23:40 +02:00
|
|
|
}
|
|
|
|
|
2012-05-29 01:40:20 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: nfs_opendir
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Open a directory for read access
|
|
|
|
*
|
2012-06-07 18:53:46 +02:00
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a negated errno value on failure.
|
|
|
|
*
|
2012-05-29 01:40:20 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int nfs_opendir(struct inode *mountpt, const char *relpath,
|
|
|
|
struct fs_dirent_s *dir)
|
|
|
|
{
|
|
|
|
struct nfsmount *nmp;
|
2012-05-31 01:21:37 +02:00
|
|
|
struct nfsnode *np;
|
2012-06-02 01:12:17 +02:00
|
|
|
//struct nfs_dirinfo_s dirinfo;
|
2012-05-29 01:40:20 +02:00
|
|
|
int ret;
|
|
|
|
|
2012-06-06 23:51:03 +02:00
|
|
|
fvdbg("relpath: \"%s\"\n", relpath ? relpath : "NULL");
|
2012-05-29 01:40:20 +02:00
|
|
|
|
|
|
|
/* Sanity checks */
|
|
|
|
|
|
|
|
DEBUGASSERT(mountpt != NULL && mountpt->i_private != NULL);
|
|
|
|
|
|
|
|
/* Recover our private data from the inode instance */
|
|
|
|
|
|
|
|
nmp = mountpt->i_private;
|
2012-05-31 01:21:37 +02:00
|
|
|
np = nmp->nm_head;
|
2012-05-29 01:40:20 +02:00
|
|
|
|
|
|
|
/* Make sure that the mount is still healthy */
|
|
|
|
|
|
|
|
nfs_semtake(nmp);
|
|
|
|
ret = nfs_checkmount(nmp);
|
|
|
|
if (ret != OK)
|
|
|
|
{
|
|
|
|
fdbg("nfs_checkmount failed: %d\n", ret);
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The entry is a directory */
|
|
|
|
|
2012-06-06 23:51:03 +02:00
|
|
|
if (np->nfsv3_type != NFDIR)
|
2012-05-31 01:21:37 +02:00
|
|
|
{
|
2012-06-06 23:51:03 +02:00
|
|
|
fdbg("open eacces type=%d\n", np->nfsv3_type);
|
2012-06-07 18:53:46 +02:00
|
|
|
ret = EACCES;
|
|
|
|
goto errout_with_semaphore;
|
2012-05-31 01:21:37 +02:00
|
|
|
}
|
|
|
|
|
2012-06-06 23:51:03 +02:00
|
|
|
/* The requested directory must be the volume-relative "root" directory */
|
|
|
|
|
|
|
|
if (relpath && relpath[0] != '\0')
|
|
|
|
{
|
2012-06-07 18:53:46 +02:00
|
|
|
ret = ENOENT;
|
2012-06-06 23:51:03 +02:00
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
2012-05-31 01:21:37 +02:00
|
|
|
if (np->n_flag & NMODIFIED)
|
|
|
|
{
|
|
|
|
if (np->nfsv3_type == NFDIR)
|
|
|
|
{
|
|
|
|
np->n_direofoffset = 0;
|
2012-06-06 23:51:03 +02:00
|
|
|
dir->u.nfs.nd_direoffset = 0;
|
2012-05-31 01:21:37 +02:00
|
|
|
dir->u.nfs.cookie[0] = 0;
|
|
|
|
dir->u.nfs.cookie[1] = 0;
|
|
|
|
}
|
|
|
|
}
|
2012-06-02 01:12:17 +02:00
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
ret = OK;
|
2012-05-29 01:40:20 +02:00
|
|
|
|
|
|
|
errout_with_semaphore:
|
|
|
|
nfs_semgive(nmp);
|
2012-06-07 18:53:46 +02:00
|
|
|
return -ret;
|
2012-05-29 01:40:20 +02:00
|
|
|
}
|
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: nfs_readdirrpc
|
|
|
|
*
|
2012-06-07 18:53:46 +02:00
|
|
|
* Description:
|
|
|
|
* The function below stuff the cookies in after the name.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a positive errno value on failure.
|
|
|
|
*
|
2012-04-17 01:01:21 +02:00
|
|
|
****************************************************************************/
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-04-28 01:29:24 +02:00
|
|
|
int nfs_readdirrpc(struct nfsmount *nmp, struct nfsnode *np,
|
2012-06-08 17:45:40 +02:00
|
|
|
struct fs_dirent_s *dir)
|
2012-03-27 02:23:40 +02:00
|
|
|
{
|
2012-06-08 17:45:40 +02:00
|
|
|
/* This buffer needs to go into struct fs_dirent_s nuttx/dirent.h */
|
|
|
|
uint32_t buffer[64];
|
2012-06-09 02:08:18 +02:00
|
|
|
struct READDIR3args rddir;
|
2012-06-08 17:45:40 +02:00
|
|
|
struct rpc_reply_readdir *resok;
|
2012-06-09 02:08:18 +02:00
|
|
|
uint32_t tmp;
|
2012-06-08 17:45:40 +02:00
|
|
|
uint32_t *ptr; /* This goes in fs_dirent_s */
|
|
|
|
uint8_t *name;
|
2012-06-09 02:08:18 +02:00
|
|
|
unsigned int length;
|
|
|
|
bool more;
|
|
|
|
bool eod;
|
2012-06-07 18:53:46 +02:00
|
|
|
int error = 0;
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-06-08 17:45:40 +02:00
|
|
|
/* Check in 'dir' if we are have directories entries?
|
|
|
|
* 1) have data, and
|
|
|
|
* 2) Index of the last returned entry has nextentry != 0
|
|
|
|
*
|
|
|
|
* If we have returned entries then read more entries if:
|
|
|
|
* 3) EOF = 0
|
|
|
|
*/
|
2012-06-09 02:08:18 +02:00
|
|
|
|
|
|
|
more = false; /* Set 'more' to true if we have buffered entries to be processed */
|
|
|
|
eod = false; /* Set 'eod' if we are at the end of the directory */
|
2012-03-27 02:23:40 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
/* Loop while we need more data (!more) and we are not at the end of
|
|
|
|
* the directory (!eod)
|
|
|
|
*/
|
|
|
|
|
|
|
|
while (!more && !eod)
|
2012-03-27 02:23:40 +02:00
|
|
|
{
|
2012-06-09 02:08:18 +02:00
|
|
|
/* Request a block directory enries */
|
|
|
|
|
2012-03-27 02:23:40 +02:00
|
|
|
nfsstats.rpccnt[NFSPROC_READDIR]++;
|
2012-06-09 02:08:18 +02:00
|
|
|
memset(&rddir, 0, sizeof(struct READDIR3args));
|
|
|
|
rddir.dir.length = txdr_unsigned(np->n_fhsize);
|
|
|
|
memcpy(&rddir.dir.handle, &np->n_fhp, sizeof(nfsfh_t));
|
|
|
|
rddir.count = txdr_unsigned(nmp->nm_readdirsize);
|
2012-05-23 02:15:53 +02:00
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
if (nfsstats.rpccnt[NFSPROC_READDIR] == 1)
|
2012-03-27 02:23:40 +02:00
|
|
|
{
|
2012-06-09 02:08:18 +02:00
|
|
|
rddir.cookie.nfsuquad[0] = 0;
|
|
|
|
rddir.cookie.nfsuquad[1] = 0;
|
|
|
|
memset(&rddir.cookieverf, 0, NFSX_V3COOKIEVERF);
|
2012-03-27 02:23:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-06-09 02:08:18 +02:00
|
|
|
rddir.cookie.nfsuquad[0] = dir->u.nfs.cookie[0];
|
|
|
|
rddir.cookie.nfsuquad[1] = dir->u.nfs.cookie[1];
|
|
|
|
memcpy(&rddir.cookieverf, &np->n_cookieverf, NFSX_V3COOKIEVERF);
|
2012-03-27 02:23:40 +02:00
|
|
|
}
|
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
error = nfs_request(nmp, NFSPROC_READDIR, (FAR const void *)&rddir,
|
2012-06-08 17:45:40 +02:00
|
|
|
(FAR void *)buffer, sizeof(buffer));
|
2012-03-27 02:23:40 +02:00
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
goto nfsmout;
|
|
|
|
}
|
2012-06-07 20:47:20 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
/* A new group of entries was successfully read. Process the
|
|
|
|
* information contained in the response header. This information
|
|
|
|
* includes:
|
|
|
|
*
|
|
|
|
* 1) Attributes follow indication - 4 bytes
|
|
|
|
* 2) Directory attributes - sizeof(struct nfs_fattr)
|
|
|
|
* 3) Cookie verifier - NFSX_V3COOKIEVERF bytes
|
|
|
|
* 4) Values follows indication - 4 bytes
|
|
|
|
*/
|
2012-06-07 20:47:20 +02:00
|
|
|
|
2012-06-08 17:45:40 +02:00
|
|
|
resok = (struct rpc_reply_readdir *)buffer;
|
2012-06-07 20:47:20 +02:00
|
|
|
|
2012-06-08 17:45:40 +02:00
|
|
|
/* Start with the first entry */
|
2012-06-07 20:47:20 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
ptr = (uint32_t*)&resok->readdir;
|
2012-06-07 20:47:20 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
/* Check if attributes follow, if 0 so Skip over the attributes */
|
2012-03-31 01:56:35 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
if (resok->readdir.attributes_follow == 1)
|
|
|
|
{
|
|
|
|
/* Get attibutes */
|
|
|
|
|
|
|
|
memcpy(&np->n_fattr, &resok->readdir.dir_attributes,
|
|
|
|
sizeof(struct nfs_fattr));
|
|
|
|
}
|
|
|
|
#warning "Won't the structure format be wrong if there are no attributes -- this will need to be parsed too"
|
|
|
|
|
|
|
|
/* Save the verification cookie */
|
|
|
|
|
|
|
|
memcpy(&np->n_cookieverf, &resok->readdir.cookieverf, NFSX_V3WRITEVERF);
|
|
|
|
|
|
|
|
/* Get a point to the entries (if any) */
|
|
|
|
|
|
|
|
ptr = (uint32_t*)&resok->readdir.reply;
|
|
|
|
|
|
|
|
/* Check if values follow. If no values follow, then the EOF indication
|
|
|
|
* will appear next.
|
2012-03-31 01:56:35 +02:00
|
|
|
*/
|
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
if (resok->readdir.value_follows == 0)
|
|
|
|
{
|
|
|
|
/* No values follow, then the reply should consist only of a 4-byte
|
|
|
|
* end-of-directory indication.
|
|
|
|
*/
|
|
|
|
|
|
|
|
more = false; /* No entries follow */
|
|
|
|
eod = (*ptr != 0); /* We are (probably) at the end of the directory */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
more = true; /* Assume that entries follow */
|
|
|
|
eod = false; /* Assume that we are not at the end of the directory */
|
|
|
|
}
|
2012-03-27 02:23:40 +02:00
|
|
|
}
|
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
/* If we are not at the end of the directory listing, then a set of entries
|
|
|
|
* will follow the header. Each entry is of the form:
|
|
|
|
*
|
|
|
|
* File ID (8 bytes)
|
|
|
|
* Name length (4 bytes)
|
|
|
|
* Name string (varaiable size but in multiples of 4 bytes)
|
|
|
|
* Cookie (8 bytes)
|
|
|
|
* next entry (4 bytes)
|
|
|
|
*
|
|
|
|
* If 'more' is true, then we have more directory entries to process.
|
|
|
|
*/
|
2012-06-08 17:45:40 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
if (more)
|
|
|
|
{
|
|
|
|
/* There is an entry. Get the file ID and point to the length */
|
|
|
|
/* Missing logic to get the file ID */
|
2012-06-08 17:45:40 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
ptr += 2;
|
2012-06-08 17:45:40 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
/* Get the length and point to the name */
|
2012-06-08 17:45:40 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
tmp = *ptr++;
|
|
|
|
length = fxdr_unsigned(uint32_t, tmp);
|
|
|
|
name = (uint8_t*)ptr;
|
2012-06-08 17:45:40 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
/* Increment the pointer past the name (allowing for padding). ptr
|
|
|
|
* now points to the cookie.
|
|
|
|
*/
|
2012-06-08 17:45:40 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
ptr += (length + 3) >> 2;
|
|
|
|
|
|
|
|
/* Save the cookie and increment the pointer to the next entry */
|
|
|
|
|
|
|
|
dir->u.nfs.cookie[0] = *ptr++;
|
|
|
|
dir->u.nfs.cookie[1] = *ptr++;
|
|
|
|
|
|
|
|
ptr++; /* Just skip over the nextentry for now */
|
|
|
|
|
|
|
|
/* Return the directory entry to the caller. On subsequent calls to
|
|
|
|
* readdir(), we will return the next entry. And so on until all of
|
|
|
|
* the entries have been returned. Then read the next next block
|
|
|
|
* of entries until EOF is reported.
|
|
|
|
*/
|
2012-06-08 17:45:40 +02:00
|
|
|
#warning "Not implemented"
|
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
/* Return the name of the node to the caller */
|
|
|
|
|
|
|
|
if (length > NAME_MAX)
|
|
|
|
{
|
|
|
|
length = NAME_MAX;
|
|
|
|
}
|
|
|
|
memcpy(dir->fd_dir.d_name, name, length);
|
|
|
|
dir->fd_dir.d_name[length] = '\0';
|
|
|
|
fvdbg("name: \"%s\"\n", dir->fd_dir.d_name);
|
|
|
|
|
|
|
|
/* Get the file attributes associated with this name and return
|
|
|
|
* the file type.
|
|
|
|
*/
|
2012-06-08 17:45:40 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
#if 0 /* There is no point in enabling until nfs_getfsinfo handles the relative path */
|
|
|
|
if ((nmp->nm_flag & (NFSMNT_NFSV3 | NFSMNT_GOTFSINFO)) == NFSMNT_NFSV3)
|
|
|
|
{
|
|
|
|
struct stat buf
|
|
|
|
char *path;
|
2012-06-08 17:45:40 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
/* Construct the full path to the file */
|
2012-06-08 17:45:40 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
asprintf(&path, "%s/%s", relpath, dir->fd_dir.d_name);
|
|
|
|
if (path)
|
|
|
|
{
|
|
|
|
/* Then stat the file */
|
|
|
|
|
|
|
|
int ret = nfs_getfsinfo(nmp, path, &buf);
|
|
|
|
if (ret == OK)
|
|
|
|
{
|
|
|
|
if (S_ISREG(buf.st_mode))
|
|
|
|
{
|
|
|
|
dir->fd_dir.d_type = DTYPE_FILE;
|
|
|
|
}
|
|
|
|
else if (S_ISDIR(buf.st_mode))
|
|
|
|
{
|
|
|
|
dir->fd_dir.d_type = DTYPE_FILE;
|
|
|
|
}
|
|
|
|
else if (S_ISCHR(buf.st_mode) || S_ISFIFO(buf.st_mode))
|
|
|
|
{
|
|
|
|
dir->fd_dir.d_type = DTYPE_FILE;
|
|
|
|
}
|
|
|
|
else if (S_ISBLK(buf.st_mode))
|
|
|
|
{
|
|
|
|
dir->fd_dir.d_type = DTYPE_FILE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
#warning "Other types should be ignored ... go to the next entry"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free the allocated string */
|
|
|
|
|
|
|
|
kfree(path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#warning "Missing logic"
|
|
|
|
dir->fd_dir.d_type = DTYPE_FILE;
|
|
|
|
#endif
|
|
|
|
error = 0;
|
|
|
|
}
|
2012-06-08 20:56:01 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
/* We are at the end of the directory. If 'eod' is true then we all of the
|
|
|
|
* directory entries have been processed and we are at the end of the
|
|
|
|
* directory.
|
|
|
|
*/
|
2012-06-08 17:45:40 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
if (eod)
|
|
|
|
{
|
|
|
|
/* We signal the end of the directory by returning the
|
|
|
|
* special error -ENOENT
|
|
|
|
*/
|
2012-06-08 17:45:40 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
fvdbg("End of directory\n");
|
|
|
|
error = ENOENT;
|
|
|
|
}
|
2012-06-08 17:45:40 +02:00
|
|
|
|
2012-03-27 02:23:40 +02:00
|
|
|
nfsmout:
|
2012-04-10 01:35:45 +02:00
|
|
|
return error;
|
2012-03-27 02:23:40 +02:00
|
|
|
}
|
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
/****************************************************************************
|
2012-04-19 01:31:47 +02:00
|
|
|
* Name: nfs_readdir
|
2012-04-17 01:01:21 +02:00
|
|
|
*
|
2012-05-08 01:33:39 +02:00
|
|
|
* Description: Read from directory
|
2012-04-17 01:01:21 +02:00
|
|
|
*
|
2012-06-07 18:53:46 +02:00
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a negated errno value on failure.
|
|
|
|
*
|
2012-04-17 01:01:21 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2012-04-28 01:29:24 +02:00
|
|
|
static int nfs_readdir(struct inode *mountpt, struct fs_dirent_s *dir)
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
2012-04-19 01:31:47 +02:00
|
|
|
int error = 0;
|
|
|
|
struct nfsmount *nmp;
|
|
|
|
struct nfsnode *np;
|
2012-05-23 02:15:53 +02:00
|
|
|
//struct nfs_dirent *ndp;
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-06-06 23:51:03 +02:00
|
|
|
fvdbg("Entry\n");
|
2012-04-19 01:31:47 +02:00
|
|
|
|
|
|
|
/* Sanity checks */
|
|
|
|
|
|
|
|
DEBUGASSERT(mountpt != NULL && mountpt->i_private != NULL);
|
|
|
|
|
|
|
|
/* Recover our private data from the inode instance */
|
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
nmp = mountpt->i_private;
|
|
|
|
np = nmp->nm_head;
|
2012-04-19 01:31:47 +02:00
|
|
|
dir->fd_root = mountpt;
|
|
|
|
|
|
|
|
/* Make sure that the mount is still healthy */
|
|
|
|
|
|
|
|
nfs_semtake(nmp);
|
|
|
|
error = nfs_checkmount(nmp);
|
|
|
|
if (error != 0)
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
2012-06-07 18:53:46 +02:00
|
|
|
fdbg("ERROR: nfs_checkmount failed: %d\n", error);
|
2012-04-19 01:31:47 +02:00
|
|
|
goto errout_with_semaphore;
|
2012-04-17 01:01:21 +02:00
|
|
|
}
|
2012-04-19 01:31:47 +02:00
|
|
|
|
2012-06-02 01:12:17 +02:00
|
|
|
dir->fd_dir.d_name[0] = '\0';
|
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
if (np->nfsv3_type != NFDIR)
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
2012-04-19 01:31:47 +02:00
|
|
|
error = EPERM;
|
|
|
|
goto errout_with_semaphore;
|
2012-04-17 01:01:21 +02:00
|
|
|
}
|
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
dir->u.nfs.nd_direoffset = np->n_direofoffset;
|
2012-06-02 01:12:17 +02:00
|
|
|
dir->fd_dir.d_type = np->nfsv3_type;
|
2012-04-19 01:31:47 +02:00
|
|
|
|
|
|
|
/* First, check for hit on the EOF offset */
|
|
|
|
|
|
|
|
if (dir->u.nfs.nd_direoffset != 0)
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
2012-04-19 01:31:47 +02:00
|
|
|
nfsstats.direofcache_hits++;
|
2012-06-07 18:53:46 +02:00
|
|
|
//np->n_open = true;
|
|
|
|
goto success_with_semaphore;
|
2012-04-17 01:01:21 +02:00
|
|
|
}
|
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
if ((nmp->nm_flag & (NFSMNT_NFSV3 | NFSMNT_GOTFSINFO)) == NFSMNT_NFSV3)
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
2012-06-07 18:53:46 +02:00
|
|
|
(void)nfs_getfsinfo(nmp, NULL, NULL);
|
2012-04-19 01:31:47 +02:00
|
|
|
}
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
/* Read and return one directory entry. */
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
error = nfs_readdirrpc(nmp, np, dir);
|
|
|
|
if (error != 0)
|
2012-04-19 01:31:47 +02:00
|
|
|
{
|
2012-06-07 18:53:46 +02:00
|
|
|
goto errout_with_semaphore;
|
2012-04-17 01:01:21 +02:00
|
|
|
}
|
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
success_with_semaphore:
|
|
|
|
error = 0;
|
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
errout_with_semaphore:
|
|
|
|
nfs_semgive(nmp);
|
2012-06-07 18:53:46 +02:00
|
|
|
return -error;
|
2012-04-17 01:01:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-04-19 01:31:47 +02:00
|
|
|
* Name: nfs_decode_args
|
2012-06-07 18:53:46 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
2012-04-17 01:01:21 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2012-04-28 01:29:24 +02:00
|
|
|
void nfs_decode_args(struct nfsmount *nmp, struct nfs_args *argp)
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
2012-04-19 01:31:47 +02:00
|
|
|
int adjsock = 0;
|
|
|
|
int maxio;
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
#ifdef CONFIG_NFS_TCPIP
|
|
|
|
/* Re-bind if rsrvd port requested and wasn't on one */
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
adjsock = !(nmp->nm_flag & NFSMNT_RESVPORT)
|
|
|
|
&& (argp->flags & NFSMNT_RESVPORT);
|
|
|
|
#endif
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
/* Also re-bind if we're switching to/from a connected UDP socket */
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
adjsock |= ((nmp->nm_flag & NFSMNT_NOCONN) != (argp->flags & NFSMNT_NOCONN));
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
/* Update flags atomically. Don't change the lock bits. */
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
nmp->nm_flag =
|
|
|
|
(argp->flags & ~NFSMNT_INTERNAL) | (nmp->nm_flag & NFSMNT_INTERNAL);
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
if ((argp->flags & NFSMNT_TIMEO) && argp->timeo > 0)
|
|
|
|
{
|
|
|
|
nmp->nm_timeo = (argp->timeo * NFS_HZ + 5) / 10;
|
|
|
|
if (nmp->nm_timeo < NFS_MINTIMEO)
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
2012-04-19 01:31:47 +02:00
|
|
|
nmp->nm_timeo = NFS_MINTIMEO;
|
2012-04-17 01:01:21 +02:00
|
|
|
}
|
2012-04-19 01:31:47 +02:00
|
|
|
else if (nmp->nm_timeo > NFS_MAXTIMEO)
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
2012-04-19 01:31:47 +02:00
|
|
|
nmp->nm_timeo = NFS_MAXTIMEO;
|
2012-04-17 01:01:21 +02:00
|
|
|
}
|
2012-04-19 01:31:47 +02:00
|
|
|
}
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
if ((argp->flags & NFSMNT_RETRANS) && argp->retrans > 1)
|
|
|
|
{
|
|
|
|
nmp->nm_retry = (argp->retrans < NFS_MAXREXMIT)? argp->retrans : NFS_MAXREXMIT;
|
|
|
|
}
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
if (!(nmp->nm_flag & NFSMNT_SOFT))
|
|
|
|
{
|
|
|
|
nmp->nm_retry = NFS_MAXREXMIT + 1; /* past clip limit */
|
|
|
|
}
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
if (argp->flags & NFSMNT_NFSV3)
|
|
|
|
{
|
|
|
|
if (argp->sotype == SOCK_DGRAM)
|
|
|
|
{
|
|
|
|
maxio = NFS_MAXDGRAMDATA;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
maxio = NFS_MAXDATA;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
maxio = NFS_V2MAXDATA;
|
|
|
|
}
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
if ((argp->flags & NFSMNT_WSIZE) && argp->wsize > 0)
|
|
|
|
{
|
|
|
|
int osize = nmp->nm_wsize;
|
|
|
|
nmp->nm_wsize = argp->wsize;
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
/* Round down to multiple of blocksize */
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
nmp->nm_wsize &= ~(NFS_FABLKSIZE - 1);
|
|
|
|
if (nmp->nm_wsize <= 0)
|
|
|
|
{
|
|
|
|
nmp->nm_wsize = NFS_FABLKSIZE;
|
|
|
|
}
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
adjsock |= (nmp->nm_wsize != osize);
|
|
|
|
}
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
if (nmp->nm_wsize > maxio)
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
2012-04-19 01:31:47 +02:00
|
|
|
nmp->nm_wsize = maxio;
|
2012-04-17 01:01:21 +02:00
|
|
|
}
|
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
if (nmp->nm_wsize > MAXBSIZE)
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
2012-04-19 01:31:47 +02:00
|
|
|
nmp->nm_wsize = MAXBSIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((argp->flags & NFSMNT_RSIZE) && argp->rsize > 0)
|
|
|
|
{
|
|
|
|
int osize = nmp->nm_rsize;
|
|
|
|
nmp->nm_rsize = argp->rsize;
|
|
|
|
|
|
|
|
/* Round down to multiple of blocksize */
|
|
|
|
|
|
|
|
nmp->nm_rsize &= ~(NFS_FABLKSIZE - 1);
|
|
|
|
if (nmp->nm_rsize <= 0)
|
|
|
|
{
|
|
|
|
nmp->nm_rsize = NFS_FABLKSIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
adjsock |= (nmp->nm_rsize != osize);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nmp->nm_rsize > maxio)
|
|
|
|
{
|
|
|
|
nmp->nm_rsize = maxio;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nmp->nm_rsize > MAXBSIZE)
|
|
|
|
{
|
|
|
|
nmp->nm_rsize = MAXBSIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((argp->flags & NFSMNT_READDIRSIZE) && argp->readdirsize > 0)
|
|
|
|
{
|
|
|
|
nmp->nm_readdirsize = argp->readdirsize;
|
|
|
|
|
|
|
|
/* Round down to multiple of blocksize */
|
|
|
|
|
|
|
|
nmp->nm_readdirsize &= ~(NFS_DIRBLKSIZ - 1);
|
|
|
|
if (nmp->nm_readdirsize < NFS_DIRBLKSIZ)
|
|
|
|
{
|
|
|
|
nmp->nm_readdirsize = NFS_DIRBLKSIZ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (argp->flags & NFSMNT_RSIZE)
|
|
|
|
{
|
|
|
|
nmp->nm_readdirsize = nmp->nm_rsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nmp->nm_readdirsize > maxio)
|
|
|
|
{
|
|
|
|
nmp->nm_readdirsize = maxio;
|
|
|
|
}
|
|
|
|
|
2012-05-18 03:11:57 +02:00
|
|
|
/*
|
2012-04-19 01:31:47 +02:00
|
|
|
if ((argp->flags & NFSMNT_MAXGRPS) && argp->maxgrouplist >= 0 &&
|
|
|
|
argp->maxgrouplist <= NFS_MAXGRPS)
|
|
|
|
{
|
|
|
|
nmp->nm_numgrps = argp->maxgrouplist;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((argp->flags & NFSMNT_READAHEAD) && argp->readahead >= 0 &&
|
|
|
|
argp->readahead <= NFS_MAXRAHEAD)
|
|
|
|
{
|
|
|
|
nmp->nm_readahead = argp->readahead;
|
|
|
|
}
|
2012-05-18 03:11:57 +02:00
|
|
|
*/
|
2012-04-19 01:31:47 +02:00
|
|
|
|
|
|
|
if (argp->flags & NFSMNT_ACREGMIN && argp->acregmin >= 0)
|
|
|
|
{
|
|
|
|
if (argp->acregmin > 0xffff)
|
|
|
|
{
|
|
|
|
nmp->nm_acregmin = 0xffff;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nmp->nm_acregmin = argp->acregmin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argp->flags & NFSMNT_ACREGMAX && argp->acregmax >= 0)
|
|
|
|
{
|
|
|
|
if (argp->acregmax > 0xffff)
|
|
|
|
{
|
|
|
|
nmp->nm_acregmax = 0xffff;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nmp->nm_acregmax = argp->acregmax;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nmp->nm_acregmin > nmp->nm_acregmax)
|
|
|
|
{
|
|
|
|
nmp->nm_acregmin = nmp->nm_acregmax;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argp->flags & NFSMNT_ACDIRMIN && argp->acdirmin >= 0)
|
|
|
|
{
|
|
|
|
if (argp->acdirmin > 0xffff)
|
|
|
|
{
|
|
|
|
nmp->nm_acdirmin = 0xffff;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nmp->nm_acdirmin = argp->acdirmin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argp->flags & NFSMNT_ACDIRMAX && argp->acdirmax >= 0)
|
|
|
|
{
|
|
|
|
if (argp->acdirmax > 0xffff)
|
|
|
|
{
|
|
|
|
nmp->nm_acdirmax = 0xffff;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nmp->nm_acdirmax = argp->acdirmax;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nmp->nm_acdirmin > nmp->nm_acdirmax)
|
|
|
|
{
|
|
|
|
nmp->nm_acdirmin = nmp->nm_acdirmax;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nmp->nm_so && adjsock)
|
|
|
|
{
|
|
|
|
nfs_disconnect(nmp);
|
|
|
|
if (nmp->nm_sotype == SOCK_DGRAM)
|
2012-05-23 02:15:53 +02:00
|
|
|
{
|
|
|
|
while (nfs_connect(nmp))
|
|
|
|
{
|
2012-06-06 23:51:03 +02:00
|
|
|
fvdbg("nfs_args: retrying connect\n");
|
2012-05-23 02:15:53 +02:00
|
|
|
}
|
|
|
|
}
|
2012-04-19 01:31:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: mountnfs
|
|
|
|
*
|
2012-06-07 18:53:46 +02:00
|
|
|
* Description:
|
|
|
|
* Common code for nfs_mount.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a positive errno value on failure.
|
2012-04-19 01:31:47 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-05-01 01:51:23 +02:00
|
|
|
int mountnfs(struct nfs_args *argp, void **handle)
|
2012-04-19 01:31:47 +02:00
|
|
|
{
|
2012-06-07 03:03:34 +02:00
|
|
|
FAR struct nfsmount *nmp;
|
|
|
|
struct nfsnode *np = NULL;
|
2012-06-06 23:51:03 +02:00
|
|
|
struct FS3args getattr;
|
|
|
|
struct rpc_reply_getattr resok;
|
2012-05-12 02:11:24 +02:00
|
|
|
int error = 0;
|
2012-04-19 01:31:47 +02:00
|
|
|
|
|
|
|
/* Create an instance of the mountpt state structure */
|
2012-04-26 01:22:09 +02:00
|
|
|
|
2012-06-07 03:03:34 +02:00
|
|
|
nmp = (FAR struct nfsmount *)kzalloc(sizeof(struct nfsmount));
|
2012-04-19 01:31:47 +02:00
|
|
|
if (!nmp)
|
|
|
|
{
|
2012-06-07 03:03:34 +02:00
|
|
|
fdbg("ERROR: Failed to allocate mountpoint structure\n");
|
2012-06-07 18:53:46 +02:00
|
|
|
return ENOMEM;
|
2012-04-19 01:31:47 +02:00
|
|
|
}
|
2012-04-26 01:22:09 +02:00
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
/* Initialize the allocated mountpt state structure. */
|
|
|
|
|
|
|
|
/* Initialize the semaphore that controls access. The initial count
|
|
|
|
* is zero, but nfs_semgive() is called at the completion of initialization,
|
|
|
|
* incrementing the count to one.
|
2012-04-19 01:31:47 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
sem_init(&nmp->nm_sem, 0, 0); /* Initialize the semaphore that controls access */
|
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
/* Initialize NFS */
|
|
|
|
|
2012-04-24 01:21:30 +02:00
|
|
|
nfs_init();
|
2012-06-07 03:03:34 +02:00
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
/* Set initial values of other fields */
|
|
|
|
|
2012-06-07 03:03:34 +02:00
|
|
|
nmp->nm_flag = argp->flags;
|
|
|
|
nmp->nm_timeo = NFS_TIMEO;
|
|
|
|
nmp->nm_retry = NFS_RETRANS;
|
|
|
|
nmp->nm_wsize = NFS_WSIZE;
|
|
|
|
nmp->nm_rsize = NFS_RSIZE;
|
2012-04-19 01:31:47 +02:00
|
|
|
nmp->nm_readdirsize = NFS_READDIRSIZE;
|
2012-06-07 03:03:34 +02:00
|
|
|
nmp->nm_numgrps = NFS_MAXGRPS;
|
|
|
|
nmp->nm_readahead = NFS_DEFRAHEAD;
|
|
|
|
nmp->nm_fhsize = NFSX_V3FHMAX;
|
|
|
|
nmp->nm_acregmin = NFS_MINATTRTIMO;
|
|
|
|
nmp->nm_acregmax = NFS_MAXATTRTIMO;
|
|
|
|
nmp->nm_acdirmin = NFS_MINATTRTIMO;
|
|
|
|
nmp->nm_acdirmax = NFS_MAXATTRTIMO;
|
2012-06-08 00:00:19 +02:00
|
|
|
|
2012-05-29 01:40:20 +02:00
|
|
|
strncpy(nmp->nm_path, argp->path, 90);
|
2012-06-08 00:00:19 +02:00
|
|
|
memcpy(&nmp->nm_nam, &argp->addr, argp->addrlen);
|
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
nfs_decode_args(nmp, argp);
|
|
|
|
|
2012-05-31 01:21:37 +02:00
|
|
|
/* Set up the sockets and per-host congestion */
|
|
|
|
|
2012-06-07 03:03:34 +02:00
|
|
|
nmp->nm_sotype = argp->sotype;
|
2012-05-31 01:21:37 +02:00
|
|
|
nmp->nm_soproto = argp->proto;
|
|
|
|
|
|
|
|
/* For Connection based sockets (TCP,...) defer the connect until
|
|
|
|
* the first request, in case the server is not responding.
|
|
|
|
*/
|
|
|
|
|
2012-06-07 03:03:34 +02:00
|
|
|
if (nmp->nm_sotype == SOCK_DGRAM)
|
2012-05-31 01:21:37 +02:00
|
|
|
{
|
2012-06-07 03:03:34 +02:00
|
|
|
/* Connection-less... connect now */
|
|
|
|
|
|
|
|
error = nfs_connect(nmp);
|
|
|
|
if (error != 0)
|
|
|
|
{
|
|
|
|
fdbg("ERROR: nfs_connect failed: %d\n", error);
|
|
|
|
goto bad;
|
|
|
|
}
|
2012-05-31 01:21:37 +02:00
|
|
|
}
|
|
|
|
|
2012-05-08 01:33:39 +02:00
|
|
|
/* Create an instance of the file private data to describe the opened
|
|
|
|
* file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
np = (struct nfsnode *)kzalloc(sizeof(struct nfsnode));
|
|
|
|
if (!np)
|
|
|
|
{
|
2012-06-07 03:03:34 +02:00
|
|
|
fdbg("ERROR: Failed to allocate private data\n");
|
2012-06-07 18:53:46 +02:00
|
|
|
error = ENOMEM;
|
2012-06-07 03:03:34 +02:00
|
|
|
goto bad;
|
2012-05-08 01:33:39 +02:00
|
|
|
}
|
|
|
|
|
2012-06-07 03:03:34 +02:00
|
|
|
np->nfsv3_type = NFDIR;
|
|
|
|
np->n_open = true;
|
|
|
|
np->n_flag |= NMODIFIED;
|
|
|
|
nmp->nm_head = np;
|
|
|
|
nmp->nm_mounted = true;
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&nmp->nm_fh, &nmp->nm_rpcclnt->rc_fh, sizeof(nfsfh_t));
|
2012-06-07 03:03:34 +02:00
|
|
|
nmp->nm_fhsize = NFSX_V2FH;
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&nmp->nm_head->n_fhp, &nmp->nm_fh, sizeof(nfsfh_t));
|
2012-05-29 01:40:20 +02:00
|
|
|
nmp->nm_head->n_fhsize = nmp->nm_fhsize;
|
2012-06-07 03:03:34 +02:00
|
|
|
nmp->nm_so = nmp->nm_rpcclnt->rc_so;
|
|
|
|
|
|
|
|
/* Get the file attributes */
|
2012-06-06 23:51:03 +02:00
|
|
|
|
|
|
|
memset(&getattr, 0, sizeof(struct FS3args));
|
|
|
|
memset(&resok, 0, sizeof(struct rpc_reply_getattr));
|
|
|
|
getattr.fsroot.length = txdr_unsigned(nmp->nm_fhsize);
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&getattr.fsroot.handle, &nmp->nm_fh, sizeof(nfsfh_t));
|
2012-06-06 23:51:03 +02:00
|
|
|
|
|
|
|
error = nfs_request(nmp, NFSPROC_GETATTR, (FAR const void *)&getattr,
|
2012-06-07 03:03:34 +02:00
|
|
|
(FAR void*)&resok, sizeof(struct rpc_reply_getattr));
|
2012-06-06 23:51:03 +02:00
|
|
|
if (error)
|
|
|
|
{
|
2012-06-07 03:03:34 +02:00
|
|
|
fdbg("ERROR: nfs_request failed: %d\n", error);
|
2012-06-06 23:51:03 +02:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
2012-06-07 03:03:34 +02:00
|
|
|
/* Save the file attributes */
|
2012-06-06 23:51:03 +02:00
|
|
|
|
2012-06-07 03:03:34 +02:00
|
|
|
memcpy(&np->n_fattr, &resok.attr, sizeof(struct nfs_fattr));
|
|
|
|
memcpy(&nmp->nm_fattr, &resok.attr, sizeof(struct nfs_fattr));
|
2012-06-06 23:51:03 +02:00
|
|
|
|
|
|
|
/* Mounted! */
|
|
|
|
|
2012-04-28 01:29:24 +02:00
|
|
|
*handle = (void*)nmp;
|
2012-04-19 01:31:47 +02:00
|
|
|
nfs_semgive(nmp);
|
|
|
|
|
2012-06-07 03:03:34 +02:00
|
|
|
fvdbg("Successfully mounted\n");
|
2012-04-19 01:31:47 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
bad:
|
2012-06-07 03:03:34 +02:00
|
|
|
/* Free all memory that was successfully allocated */
|
|
|
|
|
|
|
|
if (np)
|
|
|
|
{
|
|
|
|
kfree(np);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nmp)
|
|
|
|
{
|
|
|
|
/* Disconnect from the server */
|
|
|
|
|
|
|
|
nfs_disconnect(nmp);
|
|
|
|
|
|
|
|
/* Free connection-related resources */
|
|
|
|
|
|
|
|
sem_destroy(&nmp->nm_sem);
|
|
|
|
if (nmp->nm_so)
|
|
|
|
{
|
|
|
|
kfree(nmp->nm_so);
|
|
|
|
}
|
|
|
|
if (nmp->nm_rpcclnt)
|
|
|
|
{
|
|
|
|
kfree(nmp->nm_rpcclnt);
|
|
|
|
}
|
|
|
|
kfree(nmp);
|
|
|
|
}
|
2012-04-19 01:31:47 +02:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-04-21 01:15:41 +02:00
|
|
|
* Name: nfs_bind
|
2012-04-19 01:31:47 +02:00
|
|
|
*
|
|
|
|
* Description: This implements a portion of the mount operation. This
|
|
|
|
* function allocates and initializes the mountpoint private data and
|
|
|
|
* binds the blockdriver inode to the filesystem private data. The final
|
|
|
|
* binding of the private data (containing the blockdriver) to the
|
|
|
|
* mountpoint is performed by mount().
|
|
|
|
*
|
2012-06-07 18:53:46 +02:00
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a negated errno value on failure.
|
|
|
|
*
|
2012-04-19 01:31:47 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2012-04-28 01:29:24 +02:00
|
|
|
static int nfs_bind(struct inode *blkdriver, const void *data, void **handle)
|
2012-04-19 01:31:47 +02:00
|
|
|
{
|
|
|
|
struct nfs_args args;
|
2012-06-07 18:53:46 +02:00
|
|
|
int error;
|
2012-04-19 01:31:47 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&args, data, sizeof(struct nfs_args));
|
2012-04-19 01:31:47 +02:00
|
|
|
if (args.version == NFS_ARGSVERSION)
|
|
|
|
{
|
|
|
|
args.flags &= ~(NFSMNT_INTERNAL | NFSMNT_NOAC);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((args.flags & (NFSMNT_NFSV3 | NFSMNT_RDIRPLUS)) == NFSMNT_RDIRPLUS)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2012-05-01 01:51:23 +02:00
|
|
|
error = mountnfs(&args, handle);
|
2012-06-07 18:53:46 +02:00
|
|
|
return -error;
|
2012-04-19 01:31:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-04-26 01:22:09 +02:00
|
|
|
* Name: nfs_unbind
|
2012-04-19 01:31:47 +02:00
|
|
|
*
|
|
|
|
* Description: This implements the filesystem portion of the umount
|
|
|
|
* operation.
|
|
|
|
*
|
2012-06-07 18:53:46 +02:00
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a negated errno value on failure.
|
|
|
|
*
|
2012-04-19 01:31:47 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2012-04-28 01:29:24 +02:00
|
|
|
int nfs_unbind(void *handle, struct inode **blkdriver)
|
2012-04-19 01:31:47 +02:00
|
|
|
{
|
2012-05-12 02:11:24 +02:00
|
|
|
struct nfsmount *nmp = (struct nfsmount *)handle;
|
|
|
|
int error;
|
2012-04-19 01:31:47 +02:00
|
|
|
|
2012-06-06 23:51:03 +02:00
|
|
|
fvdbg("Entry\n");
|
2012-04-19 01:31:47 +02:00
|
|
|
|
|
|
|
if (!nmp)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nfs_semtake(nmp);
|
2012-05-12 02:11:24 +02:00
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
/* Umount */
|
|
|
|
|
2012-05-12 02:11:24 +02:00
|
|
|
error = rpcclnt_umount(nmp->nm_rpcclnt);
|
|
|
|
if (error)
|
|
|
|
{
|
2012-06-07 18:53:46 +02:00
|
|
|
fdbg("ERROR: rpcclnt_umount failed: %d\n", error);
|
2012-05-12 02:11:24 +02:00
|
|
|
}
|
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
/* Disconnect */
|
|
|
|
|
2012-05-08 01:33:39 +02:00
|
|
|
nfs_disconnect(nmp);
|
2012-06-07 18:53:46 +02:00
|
|
|
|
|
|
|
/* And free resources */
|
|
|
|
|
2012-05-08 01:33:39 +02:00
|
|
|
sem_destroy(&nmp->nm_sem);
|
|
|
|
kfree(nmp->nm_head);
|
|
|
|
kfree(nmp->nm_so);
|
|
|
|
kfree(nmp->nm_rpcclnt);
|
|
|
|
kfree(nmp);
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
return -error;
|
2012-04-17 01:01:21 +02:00
|
|
|
}
|
|
|
|
|
2012-03-29 01:27:24 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: nfs_statfs
|
|
|
|
*
|
2012-06-07 18:53:46 +02:00
|
|
|
* Description:
|
|
|
|
* Return filesystem statistics
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a negated errno value on failure.
|
2012-03-29 01:27:24 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
2012-03-22 01:51:01 +01:00
|
|
|
|
2012-04-28 01:29:24 +02:00
|
|
|
static int nfs_statfs(struct inode *mountpt, struct statfs *sbp)
|
2012-03-22 01:51:01 +01:00
|
|
|
{
|
2012-06-07 03:03:34 +02:00
|
|
|
struct rpc_reply_fsstat sfp;
|
2012-03-29 01:27:24 +02:00
|
|
|
struct nfsmount *nmp;
|
2012-03-22 01:51:01 +01:00
|
|
|
int error = 0;
|
|
|
|
uint64_t tquad;
|
2012-05-18 03:11:57 +02:00
|
|
|
struct FS3args fsstat;
|
2012-03-29 01:27:24 +02:00
|
|
|
|
|
|
|
/* Sanity checks */
|
|
|
|
|
|
|
|
DEBUGASSERT(mountpt && mountpt->i_private);
|
2012-03-22 01:51:01 +01:00
|
|
|
|
2012-03-29 01:27:24 +02:00
|
|
|
/* Get the mountpoint private data from the inode structure */
|
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
nmp = (struct nfsmount*)mountpt->i_private;
|
2012-03-29 01:27:24 +02:00
|
|
|
|
|
|
|
/* Check if the mount is still healthy */
|
|
|
|
|
|
|
|
nfs_semtake(nmp);
|
|
|
|
error = nfs_checkmount(nmp);
|
|
|
|
if (error < 0)
|
|
|
|
{
|
2012-06-06 23:51:03 +02:00
|
|
|
fdbg("nfs_checkmount failed: %d\n", error);
|
2012-03-29 01:27:24 +02:00
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
2012-04-10 01:35:45 +02:00
|
|
|
|
2012-03-27 02:23:40 +02:00
|
|
|
/* Fill in the statfs info */
|
|
|
|
|
|
|
|
memset(sbp, 0, sizeof(struct statfs));
|
|
|
|
sbp->f_type = NFS_SUPER_MAGIC;
|
2012-03-22 01:51:01 +01:00
|
|
|
|
2012-05-06 01:17:25 +02:00
|
|
|
if ((nmp->nm_flag & NFSMNT_GOTFSINFO) == 0)
|
2012-04-10 01:35:45 +02:00
|
|
|
{
|
2012-06-07 18:53:46 +02:00
|
|
|
(void)nfs_getfsinfo(nmp, NULL, NULL);
|
2012-04-10 01:35:45 +02:00
|
|
|
}
|
|
|
|
|
2012-03-22 01:51:01 +01:00
|
|
|
nfsstats.rpccnt[NFSPROC_FSSTAT]++;
|
2012-05-18 03:11:57 +02:00
|
|
|
memset(&fsstat, 0, sizeof(struct FS3args));
|
2012-06-07 03:03:34 +02:00
|
|
|
memset(&sfp, 0, sizeof(struct rpc_reply_fsstat));
|
2012-05-29 01:40:20 +02:00
|
|
|
fsstat.fsroot.length = txdr_unsigned(nmp->nm_fhsize);
|
|
|
|
fsstat.fsroot.handle = nmp->nm_fh;
|
2012-05-23 02:15:53 +02:00
|
|
|
|
2012-06-07 03:03:34 +02:00
|
|
|
error = nfs_request(nmp, NFSPROC_FSSTAT, (FAR const void *)&fsstat,
|
|
|
|
(FAR void *) &sfp, sizeof(struct rpc_reply_fsstat));
|
2012-03-22 01:51:01 +01:00
|
|
|
if (error)
|
2012-04-10 01:35:45 +02:00
|
|
|
{
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
2012-06-07 03:03:34 +02:00
|
|
|
nmp->nm_head->n_fattr = sfp.fsstat.obj_attributes;
|
2012-06-08 02:14:54 +02:00
|
|
|
sbp->f_bsize = NFS_FABLKSIZE;
|
|
|
|
tquad = fxdr_hyper(&sfp.fsstat.sf_tbytes);
|
|
|
|
sbp->f_blocks = tquad / (uint64_t) NFS_FABLKSIZE;
|
|
|
|
tquad = fxdr_hyper(&sfp.fsstat.sf_fbytes);
|
|
|
|
sbp->f_bfree = tquad / (uint64_t) NFS_FABLKSIZE;
|
|
|
|
tquad = fxdr_hyper(&sfp.fsstat.sf_abytes);
|
|
|
|
sbp->f_bavail = tquad / (uint64_t) NFS_FABLKSIZE;
|
|
|
|
tquad = fxdr_hyper(&sfp.fsstat.sf_tfiles);
|
|
|
|
sbp->f_files = tquad;
|
|
|
|
tquad = fxdr_hyper(&sfp.fsstat.sf_ffiles);
|
|
|
|
sbp->f_ffree = tquad;
|
|
|
|
sbp->f_namelen = NAME_MAX;
|
2012-04-10 01:35:45 +02:00
|
|
|
|
2012-03-29 01:27:24 +02:00
|
|
|
errout_with_semaphore:
|
|
|
|
nfs_semgive(nmp);
|
2012-06-07 18:53:46 +02:00
|
|
|
return -error;
|
2012-03-22 01:51:01 +01:00
|
|
|
}
|
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: nfs_remove
|
|
|
|
*
|
2012-06-07 18:53:46 +02:00
|
|
|
* Description:
|
|
|
|
* Remove a file
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a negated errno value on failure.
|
2012-04-17 01:01:21 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int nfs_remove(struct inode *mountpt, const char *relpath)
|
2012-03-27 02:23:40 +02:00
|
|
|
{
|
2012-04-19 01:31:47 +02:00
|
|
|
struct nfsmount *nmp;
|
2012-04-17 01:01:21 +02:00
|
|
|
struct nfsnode *np;
|
2012-04-28 01:29:24 +02:00
|
|
|
struct REMOVE3args remove;
|
2012-06-07 03:03:34 +02:00
|
|
|
struct rpc_reply_remove resok;
|
2012-04-17 01:01:21 +02:00
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
/* Sanity checks */
|
|
|
|
|
|
|
|
DEBUGASSERT(mountpt && mountpt->i_private);
|
|
|
|
|
|
|
|
/* Get the mountpoint private data from the inode structure */
|
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
nmp = (struct nfsmount*)mountpt->i_private;
|
2012-04-17 01:01:21 +02:00
|
|
|
np = nmp->nm_head;
|
|
|
|
|
|
|
|
/* Check if the mount is still healthy */
|
|
|
|
|
|
|
|
nfs_semtake(nmp);
|
2012-04-19 01:31:47 +02:00
|
|
|
error = nfs_checkmount(nmp);
|
2012-04-17 01:01:21 +02:00
|
|
|
if (error == 0)
|
|
|
|
{
|
|
|
|
/* If the file is open, the correct behavior is to remove the file
|
|
|
|
* name, but to keep the file cluster chain in place until the last
|
|
|
|
* open reference to the file is closed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Remove the file */
|
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
if (np->nfsv3_type != NFREG)
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
|
|
|
error = EPERM;
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do the rpc */
|
|
|
|
|
|
|
|
nfsstats.rpccnt[NFSPROC_REMOVE]++;
|
2012-05-06 01:17:25 +02:00
|
|
|
memset(&remove, 0, sizeof(struct REMOVE3args));
|
2012-06-07 03:03:34 +02:00
|
|
|
memset(&resok, 0, sizeof(struct rpc_reply_remove));
|
2012-05-29 01:40:20 +02:00
|
|
|
remove.object.dir.length = txdr_unsigned(np->n_fhsize);
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&remove.object.dir.handle, &np->n_fhp, sizeof(nfsfh_t));
|
2012-05-31 01:21:37 +02:00
|
|
|
remove.object.length = txdr_unsigned(64);
|
|
|
|
strncpy(remove.object.name, relpath, 64);
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-05-29 01:40:20 +02:00
|
|
|
error = nfs_request(nmp, NFSPROC_REMOVE, (FAR const void *)&remove,
|
2012-06-07 03:03:34 +02:00
|
|
|
(FAR void*)&resok, sizeof(struct rpc_reply_remove));
|
2012-04-17 01:01:21 +02:00
|
|
|
|
|
|
|
/* Kludge City: If the first reply to the remove rpc is lost..
|
|
|
|
* the reply to the retransmitted request will be ENOENT
|
|
|
|
* since the file was in fact removed
|
|
|
|
* Therefore, we cheat and return success.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (error == ENOENT)
|
|
|
|
{
|
|
|
|
error = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&np->n_fattr, &resok.remove.dir_wcc.after, sizeof(struct nfs_fattr));
|
2012-04-17 01:01:21 +02:00
|
|
|
np->n_flag |= NMODIFIED;
|
|
|
|
}
|
2012-05-23 02:15:53 +02:00
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
NFS_INVALIDATE_ATTRCACHE(np);
|
|
|
|
|
|
|
|
errout_with_semaphore:
|
|
|
|
nfs_semgive(nmp);
|
2012-06-07 18:53:46 +02:00
|
|
|
return -error;
|
2012-04-17 01:01:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: nfs_mkdir
|
|
|
|
*
|
2012-06-07 18:53:46 +02:00
|
|
|
* Description:
|
|
|
|
* Create a directory
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a negated errno value on failure.
|
2012-04-17 01:01:21 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int nfs_mkdir(struct inode *mountpt, const char *relpath, mode_t mode)
|
|
|
|
{
|
2012-04-19 01:31:47 +02:00
|
|
|
struct nfsv3_sattr sp;
|
2012-04-17 01:01:21 +02:00
|
|
|
struct nfsmount *nmp;
|
|
|
|
struct nfsnode *np;
|
2012-04-28 01:29:24 +02:00
|
|
|
struct MKDIR3args mkir;
|
2012-06-07 03:03:34 +02:00
|
|
|
struct rpc_reply_mkdir resok;
|
2012-04-17 01:01:21 +02:00
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
/* Sanity checks */
|
|
|
|
|
|
|
|
DEBUGASSERT(mountpt && mountpt->i_private);
|
|
|
|
|
|
|
|
/* Get the mountpoint private data from the inode structure */
|
|
|
|
|
|
|
|
nmp = (struct nfsmount*) mountpt->i_private;
|
2012-05-08 01:33:39 +02:00
|
|
|
np = nmp->nm_head;
|
2012-05-03 01:40:11 +02:00
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
/* Check if the mount is still healthy */
|
|
|
|
|
|
|
|
nfs_semtake(nmp);
|
|
|
|
error = nfs_checkmount(nmp);
|
|
|
|
if (error != 0)
|
|
|
|
{
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
|
|
|
nfsstats.rpccnt[NFSPROC_MKDIR]++;
|
2012-05-06 01:17:25 +02:00
|
|
|
memset(&mkir, 0, sizeof(struct MKDIR3args));
|
2012-06-07 03:03:34 +02:00
|
|
|
memset(&resok, 0, sizeof(struct rpc_reply_mkdir));
|
2012-05-29 01:40:20 +02:00
|
|
|
mkir.where.dir.length = txdr_unsigned(np->n_fhsize);
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&mkir.where.dir.handle, &np->n_fhp, sizeof(nfsfh_t));
|
2012-05-30 01:23:22 +02:00
|
|
|
mkir.where.length = txdr_unsigned(64);
|
|
|
|
strncpy(mkir.where.name, relpath, 64);
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-06-08 02:14:54 +02:00
|
|
|
sp.sa_modetrue = nfs_true;
|
|
|
|
sp.sa_mode = txdr_unsigned(mode);
|
|
|
|
sp.sa_uidfalse = 0;
|
|
|
|
sp.sa_gidfalse = 0;
|
2012-05-30 01:23:22 +02:00
|
|
|
sp.sa_sizefalse = 0;
|
2012-05-31 01:21:37 +02:00
|
|
|
sp.sa_atimetype = txdr_unsigned(NFSV3SATTRTIME_DONTCHANGE);
|
|
|
|
sp.sa_mtimetype = txdr_unsigned(NFSV3SATTRTIME_DONTCHANGE);
|
2012-05-08 01:33:39 +02:00
|
|
|
|
2012-06-06 23:51:03 +02:00
|
|
|
//memset(&sp.sa_atime, 0, sizeof(nfstime3));
|
|
|
|
//memset(&sp.sa_mtime, 0, sizeof(nfstime3));
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&mkir.attributes, &sp, sizeof(struct nfsv3_sattr));
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-05-29 01:40:20 +02:00
|
|
|
error = nfs_request(nmp, NFSPROC_MKDIR, (FAR const void *)&mkir,
|
2012-06-07 03:03:34 +02:00
|
|
|
(FAR void *)&resok, sizeof(struct rpc_reply_mkdir));
|
2012-04-17 01:01:21 +02:00
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
2012-05-31 01:21:37 +02:00
|
|
|
np->n_open = true;
|
2012-06-08 02:14:54 +02:00
|
|
|
np->nfsv3_type = fxdr_unsigned(uint32_t, resok.mkdir.obj_attributes.fa_type);
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&np->n_fhp, &resok.mkdir.fshandle.handle, sizeof(nfsfh_t));
|
2012-06-08 02:14:54 +02:00
|
|
|
np->n_size = fxdr_hyper(&resok.mkdir.obj_attributes.fa3_size);
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&np->n_fattr, &resok.mkdir.obj_attributes, sizeof(struct nfs_fattr));
|
2012-06-08 02:14:54 +02:00
|
|
|
fxdr_nfsv3time(&resok.mkdir.obj_attributes.fa3_mtime, &np->n_mtime)
|
|
|
|
np->n_ctime = fxdr_hyper(&resok.mkdir.obj_attributes.fa3_ctime);
|
2012-05-31 01:21:37 +02:00
|
|
|
np->n_flag |= NMODIFIED;
|
2012-05-08 01:33:39 +02:00
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
NFS_INVALIDATE_ATTRCACHE(np);
|
|
|
|
|
|
|
|
errout_with_semaphore:
|
|
|
|
nfs_semgive(nmp);
|
2012-06-07 18:53:46 +02:00
|
|
|
return -error;
|
2012-04-17 01:01:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: nfs_rmdir
|
|
|
|
*
|
2012-06-07 18:53:46 +02:00
|
|
|
* Description:
|
|
|
|
* Remove a directory
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a negated errno value on failure.
|
2012-04-17 01:01:21 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int nfs_rmdir(struct inode *mountpt, const char *relpath)
|
|
|
|
{
|
|
|
|
struct nfsmount *nmp;
|
|
|
|
struct nfsnode *np;
|
2012-04-28 01:29:24 +02:00
|
|
|
struct RMDIR3args rmdir;
|
2012-06-07 03:03:34 +02:00
|
|
|
struct rpc_reply_rmdir resok;
|
2012-04-17 01:01:21 +02:00
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
/* Sanity checks */
|
|
|
|
|
|
|
|
DEBUGASSERT(mountpt && mountpt->i_private);
|
|
|
|
|
|
|
|
/* Get the mountpoint private data from the inode structure */
|
|
|
|
|
|
|
|
nmp = (struct nfsmount *)mountpt->i_private;
|
2012-06-08 02:14:54 +02:00
|
|
|
np = nmp->nm_head;
|
2012-04-17 01:01:21 +02:00
|
|
|
|
|
|
|
/* Check if the mount is still healthy */
|
|
|
|
|
|
|
|
nfs_semtake(nmp);
|
2012-04-19 01:31:47 +02:00
|
|
|
error = nfs_checkmount(nmp);
|
2012-04-17 01:01:21 +02:00
|
|
|
if (error == 0)
|
|
|
|
{
|
|
|
|
/* Remove the directory */
|
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
if (np->nfsv3_type != NFDIR)
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
|
|
|
error = EPERM;
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do the rpc */
|
2012-04-28 01:29:24 +02:00
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
nfsstats.rpccnt[NFSPROC_RMDIR]++;
|
2012-05-06 01:17:25 +02:00
|
|
|
memset(&rmdir, 0, sizeof(struct RMDIR3args));
|
2012-06-07 03:03:34 +02:00
|
|
|
memset(&resok, 0, sizeof(struct rpc_reply_rmdir));
|
2012-05-29 01:40:20 +02:00
|
|
|
rmdir.object.dir.length = txdr_unsigned(np->n_fhsize);
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&rmdir.object.dir.handle, &np->n_fhp, sizeof(nfsfh_t));
|
2012-05-30 01:23:22 +02:00
|
|
|
rmdir.object.length = txdr_unsigned(64);
|
|
|
|
strncpy(rmdir.object.name, relpath, 64);
|
2012-04-28 01:29:24 +02:00
|
|
|
|
2012-05-29 01:40:20 +02:00
|
|
|
error = nfs_request(nmp, NFSPROC_RMDIR, (FAR const void *)&rmdir,
|
2012-06-07 03:03:34 +02:00
|
|
|
(FAR void *)&resok, sizeof(struct rpc_reply_rmdir));
|
2012-04-17 01:01:21 +02:00
|
|
|
if (error == ENOENT)
|
|
|
|
{
|
|
|
|
error = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&np->n_fattr, &resok.rmdir.dir_wcc.after, sizeof(struct nfs_fattr));
|
2012-04-17 01:01:21 +02:00
|
|
|
np->n_flag |= NMODIFIED;
|
|
|
|
}
|
2012-05-01 01:51:23 +02:00
|
|
|
|
2012-04-28 01:29:24 +02:00
|
|
|
NFS_INVALIDATE_ATTRCACHE(np);
|
2012-04-17 01:01:21 +02:00
|
|
|
|
|
|
|
errout_with_semaphore:
|
2012-04-28 01:29:24 +02:00
|
|
|
nfs_semgive(nmp);
|
2012-06-07 18:53:46 +02:00
|
|
|
return -error;
|
2012-04-17 01:01:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: nfs_rename
|
|
|
|
*
|
2012-06-07 18:53:46 +02:00
|
|
|
* Description:
|
|
|
|
* Rename a file or directory
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a negated errno value on failure.
|
2012-04-17 01:01:21 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-04-28 01:29:24 +02:00
|
|
|
static int nfs_rename(struct inode *mountpt, const char *oldrelpath,
|
2012-05-29 01:40:20 +02:00
|
|
|
const char *newrelpath)
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
2012-04-19 01:31:47 +02:00
|
|
|
struct nfsmount *nmp;
|
2012-04-17 01:01:21 +02:00
|
|
|
struct nfsnode *np;
|
2012-04-28 01:29:24 +02:00
|
|
|
struct RENAME3args rename;
|
2012-06-07 03:03:34 +02:00
|
|
|
struct rpc_reply_rename resok;
|
2012-04-17 01:01:21 +02:00
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
/* Sanity checks */
|
|
|
|
|
|
|
|
DEBUGASSERT(mountpt && mountpt->i_private);
|
|
|
|
|
|
|
|
/* Get the mountpoint private data from the inode structure */
|
|
|
|
|
|
|
|
nmp = (struct nfsmount *)mountpt->i_private;
|
2012-06-08 02:14:54 +02:00
|
|
|
np = nmp->nm_head;
|
2012-04-17 01:01:21 +02:00
|
|
|
|
|
|
|
/* Check if the mount is still healthy */
|
|
|
|
|
|
|
|
nfs_semtake(nmp);
|
|
|
|
error = nfs_checkmount(nmp);
|
|
|
|
if (error != 0)
|
|
|
|
{
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (np->nfsv3_type != NFREG && np->nfsv3_type != NFDIR)
|
|
|
|
{
|
2012-06-06 23:51:03 +02:00
|
|
|
fdbg("open eacces typ=%d\n", np->nfsv3_type);
|
2012-06-07 18:53:46 +02:00
|
|
|
error = EACCES;
|
2012-04-17 01:01:21 +02:00
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
|
|
|
nfsstats.rpccnt[NFSPROC_RENAME]++;
|
2012-05-06 01:17:25 +02:00
|
|
|
memset(&rename, 0, sizeof(struct RENAME3args));
|
2012-06-07 03:03:34 +02:00
|
|
|
memset(&resok, 0, sizeof(struct rpc_reply_rename));
|
2012-05-29 01:40:20 +02:00
|
|
|
rename.from.dir.length = txdr_unsigned(np->n_fhsize);
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&rename.from.dir.handle, &np->n_fhp, sizeof(nfsfh_t));
|
2012-05-30 01:23:22 +02:00
|
|
|
rename.from.length = txdr_unsigned(64);
|
|
|
|
strncpy(rename.from.name, oldrelpath, 64);
|
2012-05-29 01:40:20 +02:00
|
|
|
rename.to.dir.length = txdr_unsigned(np->n_fhsize);
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&rename.to.dir.handle, &np->n_fhp, sizeof(nfsfh_t));
|
2012-05-30 01:23:22 +02:00
|
|
|
rename.to.length = txdr_unsigned(64);
|
|
|
|
strncpy(rename.to.name, newrelpath, 64);
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-05-29 01:40:20 +02:00
|
|
|
error = nfs_request(nmp, NFSPROC_RENAME, (FAR const void *)&rename,
|
2012-06-07 03:03:34 +02:00
|
|
|
(FAR void *)&resok, sizeof(struct rpc_reply_rename));
|
2012-04-17 01:01:21 +02:00
|
|
|
|
2012-05-08 01:33:39 +02:00
|
|
|
/* ENOENT => 0 assuming that it is a reply to a retry. */
|
2012-04-17 01:01:21 +02:00
|
|
|
|
|
|
|
if (error == ENOENT)
|
|
|
|
{
|
|
|
|
error = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
2012-06-09 02:08:18 +02:00
|
|
|
memcpy(&np->n_fattr, &resok.rename.todir_wcc.after, sizeof(struct nfs_fattr));
|
2012-04-17 01:01:21 +02:00
|
|
|
np->n_flag |= NMODIFIED;
|
|
|
|
NFS_INVALIDATE_ATTRCACHE(np);
|
|
|
|
|
|
|
|
errout_with_semaphore:
|
2012-04-28 01:29:24 +02:00
|
|
|
nfs_semgive(nmp);
|
2012-06-07 18:53:46 +02:00
|
|
|
return -error;
|
2012-04-17 01:01:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-06-07 18:53:46 +02:00
|
|
|
* Name: nfs_getfsinfo
|
2012-04-17 01:01:21 +02:00
|
|
|
*
|
2012-06-07 18:53:46 +02:00
|
|
|
* Description:
|
|
|
|
* Return information about root directory. This is an internal version
|
|
|
|
* used only within this file.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; positive errno value on failure
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* The caller has exclusive access to the NFS mount structure
|
2012-04-17 01:01:21 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
static int nfs_getfsinfo(struct nfsmount *nmp, const char *relpath,
|
|
|
|
struct stat *buf)
|
2012-04-17 01:01:21 +02:00
|
|
|
{
|
2012-06-07 03:03:34 +02:00
|
|
|
struct rpc_reply_fsinfo fsp;
|
2012-05-18 03:11:57 +02:00
|
|
|
struct FS3args fsinfo;
|
2012-06-08 02:14:54 +02:00
|
|
|
uint32_t pref;
|
|
|
|
uint32_t max;
|
2012-04-17 01:01:21 +02:00
|
|
|
int error = 0;
|
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
#warning "relpath is not used! Additional logic will be required!"
|
2012-03-22 01:51:01 +01:00
|
|
|
|
2012-06-07 03:03:34 +02:00
|
|
|
memset(&fsinfo, 0, sizeof(struct FS3args));
|
2012-06-07 18:53:46 +02:00
|
|
|
memset(&fsp, 0, sizeof(struct rpc_reply_fsinfo));
|
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
nfsstats.rpccnt[NFSPROC_FSINFO]++;
|
2012-05-29 01:40:20 +02:00
|
|
|
fsinfo.fsroot.length = txdr_unsigned(nmp->nm_fhsize);
|
|
|
|
fsinfo.fsroot.handle = nmp->nm_fh;
|
2012-05-08 01:33:39 +02:00
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
/* Request FSINFO from the server */
|
|
|
|
|
2012-05-29 01:40:20 +02:00
|
|
|
error = nfs_request(nmp, NFSPROC_FSINFO, (FAR const void *)&fsinfo,
|
2012-06-07 03:03:34 +02:00
|
|
|
(FAR void *)&fsp, sizeof(struct rpc_reply_fsinfo));
|
2012-03-22 01:51:01 +01:00
|
|
|
if (error)
|
|
|
|
{
|
2012-06-07 18:53:46 +02:00
|
|
|
return error;
|
2012-03-22 01:51:01 +01:00
|
|
|
}
|
|
|
|
|
2012-06-06 23:51:03 +02:00
|
|
|
//nmp->nm_fattr = fsp.obj_attributes;
|
2012-06-08 02:14:54 +02:00
|
|
|
pref = fxdr_unsigned(uint32_t, fsp.fsinfo.fs_wtpref);
|
2012-03-22 01:51:01 +01:00
|
|
|
if (pref < nmp->nm_wsize)
|
2012-04-10 01:35:45 +02:00
|
|
|
{
|
|
|
|
nmp->nm_wsize = (pref + NFS_FABLKSIZE - 1) & ~(NFS_FABLKSIZE - 1);
|
|
|
|
}
|
|
|
|
|
2012-06-08 02:14:54 +02:00
|
|
|
max = fxdr_unsigned(uint32_t, fsp.fsinfo.fs_wtmax);
|
2012-03-22 01:51:01 +01:00
|
|
|
if (max < nmp->nm_wsize)
|
|
|
|
{
|
|
|
|
nmp->nm_wsize = max & ~(NFS_FABLKSIZE - 1);
|
|
|
|
if (nmp->nm_wsize == 0)
|
2012-06-09 02:08:18 +02:00
|
|
|
{
|
|
|
|
nmp->nm_wsize = max;
|
|
|
|
}
|
2012-03-22 01:51:01 +01:00
|
|
|
}
|
2012-04-10 01:35:45 +02:00
|
|
|
|
2012-06-08 02:14:54 +02:00
|
|
|
pref = fxdr_unsigned(uint32_t, fsp.fsinfo.fs_rtpref);
|
2012-03-22 01:51:01 +01:00
|
|
|
if (pref < nmp->nm_rsize)
|
2012-04-10 01:35:45 +02:00
|
|
|
{
|
|
|
|
nmp->nm_rsize = (pref + NFS_FABLKSIZE - 1) & ~(NFS_FABLKSIZE - 1);
|
|
|
|
}
|
|
|
|
|
2012-06-08 02:14:54 +02:00
|
|
|
max = fxdr_unsigned(uint32_t, fsp.fsinfo.fs_rtmax);
|
2012-03-22 01:51:01 +01:00
|
|
|
if (max < nmp->nm_rsize)
|
|
|
|
{
|
|
|
|
nmp->nm_rsize = max & ~(NFS_FABLKSIZE - 1);
|
|
|
|
if (nmp->nm_rsize == 0)
|
2012-04-10 01:35:45 +02:00
|
|
|
{
|
|
|
|
nmp->nm_rsize = max;
|
|
|
|
}
|
2012-03-22 01:51:01 +01:00
|
|
|
}
|
2012-04-12 02:42:01 +02:00
|
|
|
|
2012-06-08 02:14:54 +02:00
|
|
|
pref = fxdr_unsigned(uint32_t, fsp.fsinfo.fs_dtpref);
|
2012-03-22 01:51:01 +01:00
|
|
|
if (pref < nmp->nm_readdirsize)
|
2012-04-10 01:35:45 +02:00
|
|
|
{
|
|
|
|
nmp->nm_readdirsize = (pref + NFS_DIRBLKSIZ - 1) & ~(NFS_DIRBLKSIZ - 1);
|
|
|
|
}
|
|
|
|
|
2012-03-22 01:51:01 +01:00
|
|
|
if (max < nmp->nm_readdirsize)
|
|
|
|
{
|
|
|
|
nmp->nm_readdirsize = max & ~(NFS_DIRBLKSIZ - 1);
|
|
|
|
if (nmp->nm_readdirsize == 0)
|
2012-04-10 01:35:45 +02:00
|
|
|
{
|
|
|
|
nmp->nm_readdirsize = max;
|
|
|
|
}
|
2012-03-22 01:51:01 +01:00
|
|
|
}
|
|
|
|
|
2012-06-07 18:53:46 +02:00
|
|
|
/* Verify that the caller has provided a non-NULL location to return the
|
|
|
|
* FSINFO data.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (buf)
|
|
|
|
{
|
2012-06-09 02:08:18 +02:00
|
|
|
/* Construct the file mode. This is a 32-bit, encoded value containing
|
|
|
|
* both the access mode and the file type.
|
|
|
|
*/
|
|
|
|
|
|
|
|
uint32_t tmp = fxdr_unsigned(uint32_t, nmp->nm_fattr.fa_mode);
|
|
|
|
|
|
|
|
/* Here we exploit the fact that most mode bits are the same in NuttX
|
|
|
|
* as in the NFSv3 spec.
|
|
|
|
*/
|
|
|
|
|
|
|
|
uint32_t mode = tmp & (NFSMMODE_IXOTH|NFSMMODE_IWOTH|NFSMMODE_IROTH|
|
|
|
|
NFSMMODE_IXGRP|NFSMMODE_IWGRP|NFSMMODE_IRGRP|
|
|
|
|
NFSMMODE_IXUSR|NFSMMODE_IWUSR|NFSMMODE_IRUSR);
|
|
|
|
|
|
|
|
/* Handle the cases that are not the same */
|
|
|
|
|
|
|
|
if ((mode & NFSMMODE_ISGID) != 0)
|
|
|
|
{
|
|
|
|
mode |= S_ISGID;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((mode & NFSMMODE_ISUID) != 0)
|
|
|
|
{
|
|
|
|
mode |= S_ISUID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now OR in the file type */
|
|
|
|
|
|
|
|
tmp = fxdr_unsigned(uint32_t, nmp->nm_fattr.fa_type);
|
|
|
|
switch (tmp)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case NFNON: /* Unknown type */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NFREG: /* Regular file */
|
|
|
|
mode |= S_IFREG;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NFDIR: /* Directory */
|
|
|
|
mode |= S_IFDIR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NFBLK: /* Block special device file */
|
|
|
|
mode |= S_IFBLK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NFCHR: /* Character special device file */
|
|
|
|
mode |= S_IFCHR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NFLNK: /* Symbolic link */
|
|
|
|
mode |= S_IFLNK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NFSOCK: /* Socket */
|
|
|
|
mode |= S_IFSOCK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NFFIFO: /* Named pipe */
|
|
|
|
mode |= S_IFMT;
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
|
|
|
|
buf->st_mode = mode;
|
2012-06-07 18:53:46 +02:00
|
|
|
buf->st_size = fxdr_hyper(&nmp->nm_fattr.fa3_size);
|
|
|
|
buf->st_blksize = 0;
|
|
|
|
buf->st_blocks = 0;
|
|
|
|
buf->st_mtime = fxdr_hyper(&nmp->nm_fattr.fa3_mtime);
|
|
|
|
buf->st_atime = fxdr_hyper(&nmp->nm_fattr.fa3_atime);
|
|
|
|
buf->st_ctime = fxdr_hyper(&nmp->nm_fattr.fa3_ctime);
|
|
|
|
}
|
|
|
|
|
|
|
|
nmp->nm_flag |= NFSMNT_GOTFSINFO;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: nfs_fsinfo
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return information about root directory
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a negated errno value on failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int nfs_fsinfo(struct inode *mountpt, const char *relpath,
|
|
|
|
struct stat *buf)
|
|
|
|
{
|
|
|
|
struct nfsmount *nmp;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
/* Sanity checks */
|
|
|
|
|
|
|
|
DEBUGASSERT(mountpt && mountpt->i_private);
|
|
|
|
|
|
|
|
/* Get the mountpoint private data from the inode structure */
|
|
|
|
|
|
|
|
nmp = (struct nfsmount*)mountpt->i_private;
|
|
|
|
|
|
|
|
/* Check if the mount is still healthy */
|
|
|
|
|
|
|
|
nfs_semtake(nmp);
|
|
|
|
error = nfs_checkmount(nmp);
|
|
|
|
if (error == 0)
|
|
|
|
{
|
|
|
|
/* Get the requested FSINFO */
|
|
|
|
|
|
|
|
error = nfs_getfsinfo(nmp, relpath, buf);
|
|
|
|
}
|
|
|
|
|
2012-04-17 01:01:21 +02:00
|
|
|
nfs_semgive(nmp);
|
2012-06-07 18:53:46 +02:00
|
|
|
return -error;
|
2012-03-22 01:51:01 +01:00
|
|
|
}
|
|
|
|
|
2012-04-19 01:31:47 +02:00
|
|
|
#ifdef COMP
|
2012-04-12 02:42:01 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: nfs_sync
|
|
|
|
*
|
|
|
|
* Description: Flush out the buffer cache
|
|
|
|
*
|
2012-06-07 18:53:46 +02:00
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; a negated errno value on failure.
|
|
|
|
*
|
2012-04-12 02:42:01 +02:00
|
|
|
****************************************************************************/
|
2012-03-22 01:51:01 +01:00
|
|
|
|
2012-04-28 01:29:24 +02:00
|
|
|
int nfs_sync(struct file *filep)
|
2012-03-22 01:51:01 +01:00
|
|
|
{
|
2012-03-29 01:27:24 +02:00
|
|
|
struct inode *inode;
|
|
|
|
struct nfsmount *nmp;
|
|
|
|
struct nfsnode *np;
|
2012-04-12 02:42:01 +02:00
|
|
|
int error = 0;
|
2012-03-22 01:51:01 +01:00
|
|
|
|
2012-03-29 01:27:24 +02:00
|
|
|
/* Sanity checks */
|
|
|
|
|
|
|
|
DEBUGASSERT(filep->f_priv != NULL && filep->f_inode != NULL);
|
|
|
|
|
|
|
|
/* Recover our private data from the struct file instance */
|
|
|
|
|
|
|
|
np = filep->f_priv;
|
|
|
|
inode = filep->f_inode;
|
2012-04-12 02:42:01 +02:00
|
|
|
nmp = inode->i_private;
|
2012-03-29 01:27:24 +02:00
|
|
|
|
|
|
|
DEBUGASSERT(nmp != NULL);
|
2012-04-10 01:35:45 +02:00
|
|
|
|
2012-04-12 02:42:01 +02:00
|
|
|
/* Make sure that the mount is still healthy */
|
|
|
|
|
|
|
|
nfs_semtake(nmp);
|
|
|
|
error = nfs_checkmount(nmp);
|
|
|
|
if (error != 0)
|
|
|
|
{
|
|
|
|
goto errout_with_semaphore;
|
|
|
|
}
|
|
|
|
|
2012-03-22 01:51:01 +01:00
|
|
|
/* Force stale buffer cache information to be flushed. */
|
|
|
|
|
2012-04-12 02:42:01 +02:00
|
|
|
/* Check if the has been modified in any way */
|
|
|
|
|
|
|
|
if ((np->n_flag & NMODIFIED) != 0)
|
2012-04-14 02:27:44 +02:00
|
|
|
{
|
2012-04-28 01:29:24 +02:00
|
|
|
//error = VOP_FSYNC(vp, cred, waitfor, p);
|
2012-04-14 02:27:44 +02:00
|
|
|
}
|
2012-03-22 01:51:01 +01:00
|
|
|
|
2012-04-12 02:42:01 +02:00
|
|
|
errout_with_semaphore:
|
|
|
|
nfs_semgive(nmp);
|
2012-06-07 18:53:46 +02:00
|
|
|
return -error;
|
2012-03-22 01:51:01 +01:00
|
|
|
}
|
2012-04-17 01:01:21 +02:00
|
|
|
#endif
|