* fs/nfs/nfs_vfsops.c
*
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-FileCopyrightText: 2012-2018 Gregory Nutt. All rights reserved.
* SPDX-FileCopyrightText: 2012 Jose Pablo Rojas Vargas. All rights reserved.
* SPDX-FileContributor: Jose Pablo Rojas Vargas <jrojas@nx-engineering.com>
* SPDX-FileContributor: Gregory Nutt <gnutt@nuttx.org>
*
* 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
****************************************************************************/
#include <nuttx/config.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/statfs.h>
#include <sys/stat.h>
#include <inttypes.h>
#include <stdint.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <time.h>
#include <assert.h>
#include <errno.h>
#include <debug.h>
#include <nuttx/kmalloc.h>
#include <nuttx/fs/fs.h>
#include <nuttx/fs/nfs.h>
#include <nuttx/net/netconfig.h>
#include <net/if.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "fs_heap.h"
#include "nfs.h"
#include "rpc.h"
#include "nfs_proto.h"
#include "nfs_node.h"
#include "nfs_mount.h"
#include "xdr_subs.h"
* Pre-processor Definitions
****************************************************************************/
#define DIRENT_NFS_MAXHANDLE 64
#define DIRENT_NFS_VERFLEN 8
* match the NFS versions.
*/
#if NFSX_V3FHMAX != DIRENT_NFS_MAXHANDLE
# error "Length of file handle in fs_dirent_s is incorrect"
#endif
#if NFSX_V3COOKIEVERF != DIRENT_NFS_VERFLEN
# error "Length of cookie verify in fs_dirent_s is incorrect"
#endif
* Private Types
****************************************************************************/
struct nfs_dir_s
{
struct fs_dirent_s nfs_base;
uint8_t nfs_fhsize;
uint8_t nfs_fhandle[DIRENT_NFS_MAXHANDLE];
uint8_t nfs_verifier[DIRENT_NFS_VERFLEN];
uint32_t nfs_cookie[2];
};
* Private Data
****************************************************************************/
static uint32_t nfs_true;
static uint32_t nfs_false;
static uint32_t nfs_xdrneg1;
* Private Function Prototypes
****************************************************************************/
static int nfs_filecreate(FAR struct nfsmount *nmp,
FAR struct nfsnode *np, FAR const char *relpath,
mode_t mode);
static int nfs_filechstat(FAR struct nfsmount *nmp,
FAR struct nfsnode *np,
FAR const struct stat *buf, int flags);
static int nfs_fileopen(FAR struct nfsmount *nmp,
FAR struct nfsnode *np, FAR const char *relpath,
int oflags, mode_t mode);
static int nfs_open(FAR struct file *filep, FAR const char *relpath,
int oflags, mode_t mode);
static int nfs_close(FAR struct file *filep);
static ssize_t nfs_read(FAR struct file *filep, FAR char *buffer,
size_t buflen);
static ssize_t nfs_write(FAR struct file *filep, FAR const char *buffer,
size_t buflen);
static off_t nfs_seek(FAR struct file *filep, off_t offset, int whence);
static int nfs_sync(FAR struct file *filep);
static int nfs_dup(FAR const struct file *oldp, FAR struct file *newp);
static int nfs_fsinfo(FAR struct nfsmount *nmp);
static int nfs_fstat(FAR const struct file *filep, FAR struct stat *buf);
static int nfs_fchstat(FAR const struct file *filep,
FAR const struct stat *buf, int flags);
static int nfs_truncate(FAR struct file *filep, off_t length);
static int nfs_opendir(FAR struct inode *mountpt,
FAR const char *relpath, FAR struct fs_dirent_s **dir);
static int nfs_closedir(FAR struct inode *mountpt,
FAR struct fs_dirent_s *dir);
static int nfs_readdir(FAR struct inode *mountpt,
FAR struct fs_dirent_s *dir,
FAR struct dirent *entry);
static int nfs_rewinddir(FAR struct inode *mountpt,
FAR struct fs_dirent_s *dir);
static void nfs_decode_args(FAR struct nfs_mount_parameters *nprmt,
FAR struct nfs_args *argp);
static int nfs_bind(FAR struct inode *blkdriver, FAR const void *data,
FAR void **handle);
static int nfs_unbind(FAR void *handle, FAR struct inode **blkdriver,
unsigned int flags);
static int nfs_statfs(FAR struct inode *mountpt,
FAR struct statfs *buf);
static int nfs_remove(FAR struct inode *mountpt,
FAR const char *relpath);
static int nfs_mkdir(FAR struct inode *mountpt,
FAR const char *relpath, mode_t mode);
static int nfs_rmdir(FAR struct inode *mountpt,
FAR const char *relpath);
static int nfs_rename(FAR struct inode *mountpt,
FAR const char *oldrelpath, FAR const char *newrelpath);
static mode_t nfs_stat_mode(unsigned int mode, unsigned int type);
static int nfs_stat(FAR struct inode *mountpt, FAR const char *relpath,
FAR struct stat *buf);
static int nfs_chstat(FAR struct inode *mountpt, FAR const char *relpath,
FAR const struct stat *buf, int flags);
* Public Data
****************************************************************************/
#ifdef CONFIG_NFS_STATISTICS
struct nfsstats nfsstats;
#endif
const struct mountpt_operations g_nfs_operations =
{
nfs_open,
nfs_close,
nfs_read,
nfs_write,
nfs_seek,
NULL,
NULL,
nfs_truncate,
NULL,
NULL,
NULL,
nfs_sync,
nfs_dup,
nfs_fstat,
nfs_fchstat,
nfs_opendir,
nfs_closedir,
nfs_readdir,
nfs_rewinddir,
nfs_bind,
nfs_unbind,
nfs_statfs,
nfs_remove,
nfs_mkdir,
nfs_rmdir,
nfs_rename,
nfs_stat,
nfs_chstat
};
* Private Functions
****************************************************************************/
* Name: nfs_filecreate
*
* 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 negative errno value on failure.
*
****************************************************************************/
static int nfs_filecreate(FAR struct nfsmount *nmp, FAR struct nfsnode *np,
FAR const char *relpath, mode_t mode)
{
struct file_handle fhandle;
struct nfs_fattr fattr;
char filename[NAME_MAX + 1];
FAR uint32_t *ptr;
uint32_t tmp;
int namelen;
int reqlen;
int ret;
ret = nfs_finddir(nmp, relpath, &fhandle, &fattr, filename);
if (ret != OK)
{
ferr("ERROR: nfs_finddir returned: %d\n", ret);
return ret;
}
ptr = (FAR uint32_t *)&nmp->nm_msgbuffer.create.create;
reqlen = 0;
*ptr++ = txdr_unsigned(fhandle.length);
reqlen += sizeof(uint32_t);
memcpy(ptr, &fhandle.handle, fhandle.length);
reqlen += uint32_alignup(fhandle.length);
ptr += uint32_increment(fhandle.length);
namelen = strlen(filename);
*ptr++ = txdr_unsigned(namelen);
reqlen += sizeof(uint32_t);
memcpy(ptr, filename, namelen);
ptr += uint32_increment(namelen);
reqlen += uint32_alignup(namelen);
*ptr++ = HTONL(NFSV3CREATE_GUARDED);
reqlen += sizeof(uint32_t);
* bit settings are the same (at least for the bits of interest).
*/
*ptr++ = nfs_true;
reqlen += sizeof(uint32_t);
tmp = mode & (NFSMODE_IXOTH | NFSMODE_IWOTH | NFSMODE_IROTH |
NFSMODE_IXGRP | NFSMODE_IWGRP | NFSMODE_IRGRP |
NFSMODE_IXUSR | NFSMODE_IWUSR | NFSMODE_IRUSR |
NFSMODE_SAVETEXT | NFSMODE_ISGID | NFSMODE_ISUID);
*ptr++ = txdr_unsigned(tmp);
reqlen += sizeof(uint32_t);
*ptr++ = nfs_true;
*ptr++ = 0;
reqlen += 2*sizeof(uint32_t);
*ptr++ = nfs_true;
*ptr++ = 0;
reqlen += 2*sizeof(uint32_t);
*ptr++ = nfs_true;
*ptr++ = 0;
*ptr++ = 0;
reqlen += 3*sizeof(uint32_t);
*ptr++ = HTONL(NFSV3SATTRTIME_DONTCHANGE);
*ptr++ = HTONL(NFSV3SATTRTIME_DONTCHANGE);
reqlen += 2*sizeof(uint32_t);
nfs_statistics(NFSPROC_CREATE);
ret = nfs_request(nmp, NFSPROC_CREATE,
&nmp->nm_msgbuffer.create, reqlen,
nmp->nm_iobuffer, nmp->nm_buflen);
if (ret == OK)
{
ptr = (FAR uint32_t *)&((FAR struct rpc_reply_create *)
nmp->nm_iobuffer)->create;
tmp = *ptr++;
if (!tmp)
{
ferr("ERROR: no file handle follows\n");
return -EINVAL;
}
tmp = *ptr++;
tmp = fxdr_unsigned(uint32_t, tmp);
DEBUGASSERT(tmp <= NFSX_V3FHMAX);
np->n_fhsize = (uint8_t)tmp;
memcpy(&np->n_fhandle, ptr, tmp);
ptr += uint32_increment(tmp);
tmp = *ptr++;
if (!tmp)
{
fwarn("WARNING: no file attributes\n");
}
else
{
nfs_attrupdate(np, (FAR struct nfs_fattr *)ptr);
}
}
return ret;
}
* Name: nfs_filechstat
*
* Description:
* Change the status of an open file. This is part of the file open logic.
*
* Returned Value:
* 0 on success; a negative errno value on failure.
*
****************************************************************************/
static int nfs_filechstat(FAR struct nfsmount *nmp, FAR struct nfsnode *np,
FAR const struct stat *buf, int flags)
{
FAR uint32_t *ptr;
int reqlen;
int ret;
finfo("Changing file status\n");
ptr = (FAR uint32_t *)&nmp->nm_msgbuffer.setattr.setattr;
reqlen = 0;
*ptr++ = txdr_unsigned(np->n_fhsize);
reqlen += sizeof(uint32_t);
memcpy(ptr, &np->n_fhandle, np->n_fhsize);
reqlen += uint32_alignup(np->n_fhsize);
ptr += uint32_increment(np->n_fhsize);
if (flags & CH_STAT_MODE)
{
*ptr++ = nfs_true;
*ptr++ = txdr_unsigned(buf->st_mode);
reqlen += 2 * sizeof(uint32_t);
}
else
{
*ptr++ = nfs_false;
reqlen += sizeof(uint32_t);
}
if (flags & CH_STAT_UID)
{
*ptr++ = nfs_true;
*ptr++ = txdr_unsigned(buf->st_uid);
reqlen += 2 * sizeof(uint32_t);
}
else
{
*ptr++ = nfs_false;
reqlen += sizeof(uint32_t);
}
if (flags & CH_STAT_GID)
{
*ptr++ = nfs_true;
*ptr++ = txdr_unsigned(buf->st_gid);
reqlen += 2 * sizeof(uint32_t);
}
else
{
*ptr++ = nfs_false;
reqlen += sizeof(uint32_t);
}
if (flags & CH_STAT_SIZE)
{
*ptr++ = nfs_true;
txdr_hyper(buf->st_size, ptr);
ptr += 2;
reqlen += 3 * sizeof(uint32_t);
}
else
{
*ptr++ = nfs_false;
reqlen += sizeof(uint32_t);
}
if (flags & CH_STAT_ATIME)
{
*ptr++ = nfs_true;
txdr_nfsv3time(&buf->st_atim, ptr);
ptr += 2;
reqlen += 3 * sizeof(uint32_t);
}
else
{
*ptr++ = nfs_false;
reqlen += sizeof(uint32_t);
}
if (flags & CH_STAT_MTIME)
{
*ptr++ = nfs_true;
txdr_nfsv3time(&buf->st_mtim, ptr);
ptr += 2;
reqlen += 3 * sizeof(uint32_t);
}
else
{
*ptr++ = nfs_false;
reqlen += sizeof(uint32_t);
}
*ptr++ = nfs_false;
reqlen += sizeof(uint32_t);
nfs_statistics(NFSPROC_SETATTR);
ret = nfs_request(nmp, NFSPROC_SETATTR,
&nmp->nm_msgbuffer.setattr, reqlen,
nmp->nm_iobuffer, nmp->nm_buflen);
if (ret != OK)
{
ferr("ERROR: nfs_request failed: %d\n", ret);
return ret;
}
ptr = (FAR uint32_t *)&((FAR struct rpc_reply_setattr *)
nmp->nm_iobuffer)->setattr;
if (*ptr++ != 0)
{
ptr += uint32_increment(sizeof(struct wcc_attr));
}
if (*ptr++ != 0)
{
nfs_attrupdate(np, (FAR struct nfs_fattr *)ptr);
}
return OK;
}
* Name: nfs_fileopen
*
* Description:
* Open a file. This is part of the file open logic that attempts to open
* an existing file.
*
* Returned Value:
* 0 on success; a negative errno value on failure.
*
****************************************************************************/
static int nfs_fileopen(FAR struct nfsmount *nmp, FAR struct nfsnode *np,
FAR const char *relpath, int oflags, mode_t mode)
{
struct file_handle fhandle;
struct nfs_fattr fattr;
uint32_t tmp;
int ret = 0;
ret = nfs_findnode(nmp, relpath, &fhandle, &fattr, NULL);
if (ret != OK)
{
ferr("ERROR: nfs_findnode returned: %d\n", ret);
return ret;
}
tmp = fxdr_unsigned(uint32_t, fattr.fa_type);
if (tmp == NFDIR)
{
ferr("ERROR: Path is a directory\n");
return -EISDIR;
}
if ((oflags & O_WRONLY) != 0)
{
* group, or other (we are probably "other" and may still not be
* able to write).
*/
tmp = fxdr_unsigned(uint32_t, fattr.fa_mode);
if ((tmp & (NFSMODE_IWOTH | NFSMODE_IWGRP | NFSMODE_IWUSR)) == 0)
{
ferr("ERROR: File is read-only: %08" PRIx32 "\n", tmp);
return -EACCES;
}
}
if ((oflags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
{
ferr("ERROR: File exists\n");
return -EEXIST;
}
*
* Copy the file handle.
*/
np->n_fhsize = (uint8_t)fhandle.length;
memcpy(&np->n_fhandle, &fhandle.handle, fhandle.length);
nfs_attrupdate(np, &fattr);
* 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.
*/
if ((oflags & (O_TRUNC | O_WRONLY)) == (O_TRUNC | O_WRONLY))
{
struct stat buf;
* the SETATTR call by setting the length to zero.
*/
buf.st_size = 0;
return nfs_filechstat(nmp, np, &buf, CH_STAT_SIZE);
}
return OK;
}
* Name: nfs_open
*
* 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.
*
****************************************************************************/
static int nfs_open(FAR struct file *filep, FAR const char *relpath,
int oflags, mode_t mode)
{
FAR struct nfsmount *nmp;
FAR struct nfsnode *np;
int ret;
* mountpoint private data from the inode structure
*/
nmp = filep->f_inode->i_private;
DEBUGASSERT(nmp != NULL);
np = fs_heap_zalloc(sizeof(struct nfsnode));
if (!np)
{
ferr("ERROR: Failed to allocate private data\n");
return -ENOMEM;
}
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
fs_heap_free(np);
return ret;
}
ret = nfs_fileopen(nmp, np, relpath, oflags, mode);
if (ret != OK)
{
* the open failed because the file does not exist. That is not
* necessarily an ret; that may only mean that we have to create the
* file.
*/
if (ret != -ENOENT)
{
ferr("ERROR: nfs_fileopen failed: %d\n", ret);
goto errout_with_lock;
}
* 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)
{
* to create it.
*/
ferr("ERROR: File does not exist\n");
goto errout_with_lock;
}
ret = nfs_filecreate(nmp, np, relpath, mode);
if (ret != OK)
{
ferr("ERROR: nfs_filecreate failed: %d\n", ret);
goto errout_with_lock;
}
}
* non-zero elements)
*/
np->n_crefs = 1;
filep->f_priv = np;
* the file.
*/
if ((oflags & (O_APPEND | O_WRONLY)) == (O_APPEND | O_WRONLY))
{
filep->f_pos = (off_t)np->n_size;
}
* 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.
* We cannot unmount the file system if this list is not empty!
*/
np->n_next = nmp->nm_head;
nmp->nm_head = np;
nxmutex_unlock(&nmp->nm_lock);
return OK;
errout_with_lock:
if (np)
{
fs_heap_free(np);
}
nxmutex_unlock(&nmp->nm_lock);
return ret;
}
* Name: nfs_close
*
* Description:
* Close a file.
*
* Returned Value:
* 0 on success; a negated errno value on failure.
*
****************************************************************************/
static int nfs_close(FAR struct file *filep)
{
FAR struct nfsmount *nmp;
FAR struct nfsnode *np;
FAR struct nfsnode *prev;
FAR struct nfsnode *curr;
int ret;
DEBUGASSERT(filep->f_priv != NULL);
nmp = filep->f_inode->i_private;
np = (FAR struct nfsnode *)filep->f_priv;
DEBUGASSERT(nmp != NULL);
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return ret;
}
* decrement to zero, then that is all we have to do.
*/
if (np->n_crefs > 1)
{
np->n_crefs--;
ret = OK;
}
* free up all resources associated with the open file.
*
* First, find our file structure in the list of file structures
* contained in the mount structure.
*/
else
{
ret = -EINVAL;
for (prev = NULL, curr = nmp->nm_head;
curr;
prev = curr, curr = curr->n_next)
{
if (np == curr)
{
if (prev)
{
prev->n_next = np->n_next;
}
else
{
nmp->nm_head = np->n_next;
}
fs_heap_free(np);
ret = OK;
break;
}
}
}
filep->f_priv = NULL;
nxmutex_unlock(&nmp->nm_lock);
return ret;
}
* Name: nfs_read
*
* Returned Value:
* The (non-negative) number of bytes read on success; a negated errno
* value on failure.
*
****************************************************************************/
static ssize_t nfs_read(FAR struct file *filep, FAR char *buffer,
size_t buflen)
{
FAR struct nfsmount *nmp;
FAR struct nfsnode *np;
ssize_t readsize;
ssize_t tmp;
ssize_t bytesread;
size_t reqlen;
FAR uint32_t *ptr;
int ret = 0;
finfo("Read %zu bytes from offset %jd\n",
buflen, (intmax_t)filep->f_pos);
DEBUGASSERT(filep->f_priv != NULL);
nmp = filep->f_inode->i_private;
np = (FAR struct nfsnode *)filep->f_priv;
DEBUGASSERT(nmp != NULL);
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return (ssize_t)ret;
}
* it does not exceed the number of bytes left in the file.
*/
tmp = np->n_size - filep->f_pos;
if (buflen > tmp)
{
buflen = tmp;
finfo("Read size truncated to %zu\n", buflen);
}
for (bytesread = 0; bytesread < buflen; )
{
* maximum
*/
readsize = buflen - bytesread;
if (readsize > nmp->nm_rsize)
{
readsize = nmp->nm_rsize;
}
* size
*/
tmp = SIZEOF_rpc_reply_read(readsize);
if (tmp > nmp->nm_buflen)
{
readsize -= (tmp - nmp->nm_buflen);
}
ptr = (FAR uint32_t *)&nmp->nm_msgbuffer.read.read;
reqlen = 0;
*ptr++ = txdr_unsigned((uint32_t)np->n_fhsize);
reqlen += sizeof(uint32_t);
memcpy(ptr, &np->n_fhandle, np->n_fhsize);
reqlen += uint32_alignup(np->n_fhsize);
ptr += uint32_increment(np->n_fhsize);
txdr_hyper((uint64_t)filep->f_pos, ptr);
ptr += 2;
reqlen += 2*sizeof(uint32_t);
*ptr = txdr_unsigned(readsize);
reqlen += sizeof(uint32_t);
finfo("Reading %zu bytes\n", readsize);
nfs_statistics(NFSPROC_READ);
ret = nfs_request(nmp, NFSPROC_READ,
&nmp->nm_msgbuffer.read, reqlen,
nmp->nm_iobuffer, nmp->nm_buflen);
if (ret)
{
ferr("ERROR: nfs_request failed: %d\n", ret);
goto errout_with_lock;
}
* response data.
*/
ptr = (FAR uint32_t *)
&((FAR struct rpc_reply_read *)nmp->nm_iobuffer)->read;
tmp = *ptr++;
if (tmp != 0)
{
nfs_attrupdate(np, (FAR struct nfs_fattr *)ptr);
ptr += uint32_increment(sizeof(struct nfs_fattr));
}
* the same as the length that is included in the read data?
*
* Just skip over if for now.
*/
ptr++;
tmp = *ptr++;
readsize = fxdr_unsigned(uint32_t, *ptr);
ptr++;
memcpy(buffer, ptr, readsize);
filep->f_pos += readsize;
bytesread += readsize;
buffer += readsize;
if (tmp != 0)
{
break;
}
}
errout_with_lock:
nxmutex_unlock(&nmp->nm_lock);
return bytesread > 0 ? bytesread : ret;
}
* Name: nfs_write
*
* Returned Value:
* The (non-negative) number of bytes written on success; a negated errno
* value on failure.
*
****************************************************************************/
static ssize_t nfs_write(FAR struct file *filep, FAR const char *buffer,
size_t buflen)
{
FAR struct nfsmount *nmp;
FAR struct nfsnode *np;
ssize_t writesize;
ssize_t bufsize;
ssize_t byteswritten = 0;
size_t reqlen;
FAR uint32_t *ptr;
uint32_t tmp;
int commit = 0;
int committed = NFSV3WRITE_FILESYNC;
int ret;
finfo("Write %zu bytes to offset %jd\n",
buflen, (intmax_t)filep->f_pos);
DEBUGASSERT(filep->f_priv != NULL);
nmp = filep->f_inode->i_private;
np = (FAR struct nfsnode *)filep->f_priv;
DEBUGASSERT(nmp != NULL);
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return (ssize_t)ret;
}
if (np->n_size + buflen < np->n_size)
{
ret = -EFBIG;
goto errout_with_lock;
}
for (byteswritten = 0; byteswritten < buflen; )
{
* maximum.
*/
writesize = buflen - byteswritten;
if (writesize > nmp->nm_wsize)
{
writesize = nmp->nm_wsize;
}
* buffer size.
*/
bufsize = SIZEOF_rpc_call_write(writesize);
if (bufsize > nmp->nm_buflen)
{
writesize -= (bufsize - nmp->nm_buflen);
}
* arguments, skipping over the RPC header. Write is unique among the
* RPC calls in that the entry RPC calls message lies in the I/O buffer
*/
ptr = (FAR uint32_t *)&((FAR struct rpc_call_write *)
nmp->nm_iobuffer)->write;
reqlen = 0;
*ptr++ = txdr_unsigned((uint32_t)np->n_fhsize);
reqlen += sizeof(uint32_t);
memcpy(ptr, &np->n_fhandle, np->n_fhsize);
reqlen += uint32_alignup(np->n_fhsize);
ptr += uint32_increment(np->n_fhsize);
txdr_hyper((uint64_t)filep->f_pos, ptr);
ptr += 2;
reqlen += 2*sizeof(uint32_t);
*ptr++ = txdr_unsigned(writesize);
*ptr++ = txdr_unsigned(committed);
reqlen += 2*sizeof(uint32_t);
*ptr++ = txdr_unsigned(writesize);
reqlen += sizeof(uint32_t);
memcpy(ptr, buffer, writesize);
reqlen += uint32_alignup(writesize);
nfs_statistics(NFSPROC_WRITE);
ret = nfs_request(nmp, NFSPROC_WRITE,
nmp->nm_iobuffer, reqlen,
&nmp->nm_msgbuffer.write,
sizeof(struct rpc_reply_write));
if (ret)
{
ferr("ERROR: nfs_request failed: %d\n", ret);
goto errout_with_lock;
}
ptr = (FAR uint32_t *)&nmp->nm_msgbuffer.write.write;
tmp = *ptr++;
if (tmp != 0)
{
ptr += uint32_increment(sizeof(struct wcc_attr));
}
tmp = *ptr++;
if (tmp != 0)
{
nfs_attrupdate(np, (FAR struct nfs_fattr *)ptr);
ptr += uint32_increment(sizeof(struct nfs_fattr));
}
tmp = fxdr_unsigned(uint32_t, *ptr);
ptr++;
if (tmp < 1 || tmp > writesize)
{
ret = -EIO;
goto errout_with_lock;
}
writesize = tmp;
commit = *ptr++;
if (committed == NFSV3WRITE_FILESYNC)
{
committed = commit;
}
else if (committed == NFSV3WRITE_DATASYNC &&
commit == NFSV3WRITE_UNSTABLE)
{
committed = commit;
}
filep->f_pos += writesize;
byteswritten += writesize;
buffer += writesize;
}
errout_with_lock:
nxmutex_unlock(&nmp->nm_lock);
return byteswritten > 0 ? byteswritten : ret;
}
* Name: nfs_seek
*
* Returned Value:
* Returns the resulting offset location as measured in bytes from the
* beginning of the file.
*
****************************************************************************/
static off_t nfs_seek(FAR struct file *filep, off_t offset, int whence)
{
FAR struct nfsmount *nmp;
FAR struct nfsnode *np;
off_t ret;
DEBUGASSERT(filep->f_priv != NULL);
nmp = filep->f_inode->i_private;
np = (FAR struct nfsnode *)filep->f_priv;
DEBUGASSERT(nmp != NULL);
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return ret;
}
switch (whence)
{
case SEEK_SET:
break;
case SEEK_CUR:
offset += filep->f_pos;
break;
case SEEK_END:
offset += np->n_size;
break;
default:
nxmutex_unlock(&nmp->nm_lock);
return -EINVAL;
}
if (offset >= 0)
{
filep->f_pos = offset;
}
else
{
ret = -EINVAL;
}
nxmutex_unlock(&nmp->nm_lock);
return ret < 0 ? ret : offset;
}
* Name: nfs_sync
*
* Description:
* Synchronize the file state on disk to match internal, in memory state.
*
****************************************************************************/
static int nfs_sync(FAR struct file *filep)
{
return 0;
}
* Name: nfs_dup
*
* Description:
* Duplicate open file data in the new file structure.
*
****************************************************************************/
static int nfs_dup(FAR const struct file *oldp, FAR struct file *newp)
{
FAR struct nfsmount *nmp;
FAR struct nfsnode *np;
int ret;
finfo("Dup %p->%p\n", oldp, newp);
DEBUGASSERT(oldp->f_priv != NULL && oldp->f_inode != NULL);
nmp = oldp->f_inode->i_private;
np = (FAR struct nfsnode *)oldp->f_priv;
DEBUGASSERT(nmp != NULL);
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return ret;
}
DEBUGASSERT(np->n_crefs < 0xff);
np->n_crefs++;
newp->f_priv = np;
nxmutex_unlock(&nmp->nm_lock);
return OK;
}
* Name: nfs_fstat
*
* Description:
* Obtain information about an open file associated with the file
* structure 'filep', and will write it to the area pointed to by 'buf'.
*
****************************************************************************/
static int nfs_fstat(FAR const struct file *filep, FAR struct stat *buf)
{
FAR struct nfsmount *nmp;
FAR struct nfsnode *np;
int ret;
finfo("Buf %p\n", buf);
DEBUGASSERT(buf != NULL);
DEBUGASSERT(filep->f_priv != NULL);
np = (FAR struct nfsnode *)filep->f_priv;
nmp = filep->f_inode->i_private;
DEBUGASSERT(nmp != NULL);
memset(buf, 0, sizeof(*buf));
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return ret;
}
* structure.
*/
buf->st_mode = nfs_stat_mode(np->n_mode, np->n_type);
buf->st_size = (off_t)np->n_size;
buf->st_atim = np->n_atime;
buf->st_mtim = np->n_mtime;
buf->st_ctim = np->n_ctime;
nxmutex_unlock(&nmp->nm_lock);
return OK;
}
* Name: nfs_fchstat
*
* Description:
* Change information about an open file associated with the file
* structure 'filep'.
*
****************************************************************************/
static int nfs_fchstat(FAR const struct file *filep,
FAR const struct stat *buf, int flags)
{
FAR struct nfsmount *nmp;
FAR struct nfsnode *np;
int ret;
finfo("Buf %p\n", buf);
DEBUGASSERT(buf != NULL);
DEBUGASSERT(filep->f_priv != NULL);
np = (FAR struct nfsnode *)filep->f_priv;
nmp = filep->f_inode->i_private;
DEBUGASSERT(nmp != NULL);
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return ret;
}
ret = nfs_filechstat(nmp, np, buf, flags);
nxmutex_unlock(&nmp->nm_lock);
return ret;
}
* Name: nfs_truncate
*
* Description:
* Set the length of the open, regular file associated with the file
* structure 'filep' to 'length'.
*
****************************************************************************/
static int nfs_truncate(FAR struct file *filep, off_t length)
{
FAR struct nfsmount *nmp;
FAR struct nfsnode *np;
int ret;
finfo("Truncate to %ld bytes\n", (long)length);
DEBUGASSERT(filep->f_priv != NULL);
nmp = filep->f_inode->i_private;
np = (FAR struct nfsnode *)filep->f_priv;
DEBUGASSERT(nmp != NULL);
ret = nxmutex_lock(&nmp->nm_lock);
if (ret >= 0)
{
struct stat buf;
buf.st_size = length;
ret = nfs_filechstat(nmp, np, &buf, CH_STAT_SIZE);
nxmutex_unlock(&nmp->nm_lock);
}
return ret;
}
* Name: nfs_opendir
*
* Description:
* Open a directory for read access
*
* Returned Value:
* 0 on success; a negated errno value on failure.
*
****************************************************************************/
static int nfs_opendir(FAR struct inode *mountpt, FAR const char *relpath,
FAR struct fs_dirent_s **dir)
{
FAR struct nfsmount *nmp;
FAR struct nfs_dir_s *ndir;
struct file_handle fhandle;
struct nfs_fattr obj_attributes;
uint32_t objtype;
int ret;
finfo("relpath: \"%s\"\n", relpath ? relpath : "NULL");
DEBUGASSERT(mountpt != NULL && mountpt->i_private != NULL && dir);
nmp = mountpt->i_private;
ndir = fs_heap_zalloc(sizeof(*ndir));
if (ndir == NULL)
{
return -ENOMEM;
}
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
goto errout_with_ndir;
}
ret = nfs_findnode(nmp, relpath, &fhandle, &obj_attributes, NULL);
if (ret != OK)
{
ferr("ERROR: nfs_findnode failed: %d\n", ret);
goto errout_with_lock;
}
objtype = fxdr_unsigned(uint32_t, obj_attributes.fa_type);
if (objtype != NFDIR)
{
ferr("ERROR: Not a directory, type=%" PRId32 "\n", objtype);
ret = -ENOTDIR;
goto errout_with_lock;
}
* used later when readdir() is called.
*/
ndir->nfs_fhsize = (uint8_t)fhandle.length;
DEBUGASSERT(fhandle.length <= DIRENT_NFS_MAXHANDLE);
memcpy(ndir->nfs_fhandle, &fhandle.handle, fhandle.length);
*dir = &ndir->nfs_base;
nxmutex_unlock(&nmp->nm_lock);
return 0;
errout_with_lock:
nxmutex_unlock(&nmp->nm_lock);
errout_with_ndir:
fs_heap_free(ndir);
return ret;
}
* Name: nfs_closedir
*
* Description:
* Close directory
*
* Returned Value:
* 0 on success; a negated errno value on failure.
*
****************************************************************************/
static int nfs_closedir(FAR struct inode *mountpt,
FAR struct fs_dirent_s *dir)
{
DEBUGASSERT(dir);
fs_heap_free(dir);
return 0;
}
* Name: nfs_readdir
*
* Description: Read from directory
*
* Returned Value:
* 0 on success; a negated errno value on failure.
*
****************************************************************************/
static int nfs_readdir(FAR struct inode *mountpt,
FAR struct fs_dirent_s *dir,
FAR struct dirent *entry)
{
FAR struct nfsmount *nmp;
FAR struct nfs_dir_s *ndir;
struct file_handle fhandle;
struct nfs_fattr obj_attributes;
uint32_t readsize;
uint32_t tmp;
FAR uint32_t *ptr;
FAR uint8_t *name;
unsigned int length;
int reqlen;
int ret;
finfo("Entry\n");
DEBUGASSERT(mountpt != NULL && mountpt->i_private != NULL);
nmp = mountpt->i_private;
ndir = (FAR struct nfs_dir_s *)dir;
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return ret;
}
read_dir:
* the dirent structure.
*/
ptr = (FAR uint32_t *)&nmp->nm_msgbuffer.readdir.readdir;
reqlen = 0;
*ptr++ = txdr_unsigned((uint32_t)ndir->nfs_fhsize);
reqlen += sizeof(uint32_t);
memcpy(ptr, ndir->nfs_fhandle, ndir->nfs_fhsize);
reqlen += uint32_alignup(ndir->nfs_fhsize);
ptr += uint32_increment(ndir->nfs_fhsize);
ptr[0] = ndir->nfs_cookie[0];
ptr[1] = ndir->nfs_cookie[1];
ptr += 2;
reqlen += 2*sizeof(uint32_t);
memcpy(ptr, ndir->nfs_verifier, DIRENT_NFS_VERFLEN);
ptr += uint32_increment(DIRENT_NFS_VERFLEN);
reqlen += DIRENT_NFS_VERFLEN;
* time)
*/
readsize = nmp->nm_readdirsize;
tmp = SIZEOF_rpc_reply_readdir(readsize);
if (tmp > nmp->nm_buflen)
{
readsize -= (tmp - nmp->nm_buflen);
}
*ptr = txdr_unsigned(readsize);
reqlen += sizeof(uint32_t);
nfs_statistics(NFSPROC_READDIR);
ret = nfs_request(nmp, NFSPROC_READDIR,
&nmp->nm_msgbuffer.readdir, reqlen,
nmp->nm_iobuffer, nmp->nm_buflen);
if (ret != OK)
{
ferr("ERROR: nfs_request failed: %d\n", ret);
goto errout_with_lock;
}
* 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
*/
ptr = (FAR uint32_t *)
&((FAR struct rpc_reply_readdir *)nmp->nm_iobuffer)->readdir;
tmp = *ptr++;
if (tmp != 0)
{
ptr += uint32_increment(sizeof(struct nfs_fattr));
}
memcpy(ndir->nfs_verifier, ptr, DIRENT_NFS_VERFLEN);
ptr += uint32_increment(DIRENT_NFS_VERFLEN);
next_entry:
* will appear next.
*/
tmp = *ptr++;
if (tmp == 0)
{
* end-of-directory indication.
*/
tmp = *ptr++;
if (tmp != 0)
{
finfo("End of directory\n");
ret = -ENOENT;
goto errout_with_lock;
}
* file?
*/
else
{
finfo("No data but not end of directory???\n");
goto read_dir;
}
}
* will follow the header. Each entry is of the form:
*
* File ID (8 bytes)
* Name length (4 bytes)
* Name string (variable size but in multiples of 4 bytes)
* Cookie (8 bytes)
* next entry (4 bytes)
*/
ptr += 2;
tmp = *ptr++;
length = fxdr_unsigned(uint32_t, tmp);
name = (FAR uint8_t *)ptr;
* now points to the cookie.
*/
ptr += uint32_increment(length);
ndir->nfs_cookie[0] = *ptr++;
ndir->nfs_cookie[1] = *ptr++;
if (length > NAME_MAX)
{
length = NAME_MAX;
}
memcpy(entry->d_name, name, length);
entry->d_name[length] = '\0';
finfo("name: \"%s\"\n", entry->d_name);
if (strcmp(entry->d_name, ".") == 0 ||
strcmp(entry->d_name, "..") == 0)
{
goto next_entry;
}
* the file type.
*/
fhandle.length = (uint32_t)ndir->nfs_fhsize;
memcpy(&fhandle.handle, ndir->nfs_fhandle, fhandle.length);
ret = nfs_lookup(nmp, entry->d_name, &fhandle, &obj_attributes, NULL);
if (ret != OK)
{
ferr("ERROR: nfs_lookup failed: %d\n", ret);
goto errout_with_lock;
}
tmp = fxdr_unsigned(uint32_t, obj_attributes.fa_type);
switch (tmp)
{
default:
case NFNON:
break;
case NFSOCK:
entry->d_type = DTYPE_SOCK;
break;
case NFLNK:
entry->d_type = DTYPE_LINK;
break;
case NFREG:
entry->d_type = DTYPE_FILE;
break;
case NFDIR:
entry->d_type = DTYPE_DIRECTORY;
break;
case NFBLK:
entry->d_type = DTYPE_BLK;
break;
case NFFIFO:
entry->d_type = DTYPE_FIFO;
break;
case NFCHR:
entry->d_type = DTYPE_CHR;
break;
}
finfo("type: %d->%d\n", (int)tmp, entry->d_type);
errout_with_lock:
nxmutex_unlock(&nmp->nm_lock);
return ret;
}
* Name: nfs_rewinddir
*
* Description:
* Reset the directory traversal logic to the first entry in the open
* directory.
*
* Returned Value:
* 0 on success; a negated errno value on failure.
*
****************************************************************************/
static int nfs_rewinddir(FAR struct inode *mountpt,
FAR struct fs_dirent_s *dir)
{
FAR struct nfs_dir_s *ndir;
finfo("Entry\n");
DEBUGASSERT(mountpt != NULL && dir != NULL);
ndir = (FAR struct nfs_dir_s *)dir;
* file handle.
*/
memset(&ndir->nfs_verifier, 0, DIRENT_NFS_VERFLEN);
ndir->nfs_cookie[0] = 0;
ndir->nfs_cookie[1] = 0;
return OK;
}
* Name: nfs_decode_args
*
* Returned Value:
* None
*
****************************************************************************/
static void nfs_decode_args(FAR struct nfs_mount_parameters *nprmt,
FAR struct nfs_args *argp)
{
int maxio;
if ((argp->flags & NFSMNT_TIMEO) != 0 && argp->timeo > 0)
{
if (argp->timeo < NFS_MINTIMEO)
{
nprmt->timeo = NFS_MINTIMEO;
}
else if (argp->timeo > NFS_MAXTIMEO)
{
nprmt->timeo = NFS_MAXTIMEO;
}
else
{
nprmt->timeo = argp->timeo;
}
}
if ((argp->flags & NFSMNT_RETRANS) != 0 && argp->retrans > 1)
{
if (argp->retrans < NFS_MAXREXMIT)
{
nprmt->retry = argp->retrans;
}
else
{
nprmt->retry = NFS_MAXREXMIT;
}
}
if ((argp->flags & NFSMNT_SOFT) == 0)
{
nprmt->retry = NFS_MAXREXMIT + 1;
}
if (argp->sotype == SOCK_DGRAM)
{
maxio = NFS_MAXDGRAMDATA;
}
else
{
maxio = NFS_MAXDATA;
}
if (maxio > MAXBSIZE)
{
maxio = MAXBSIZE;
}
* transfer
*/
if ((argp->flags & NFSMNT_WSIZE) != 0 && argp->wsize > 0)
{
nprmt->wsize = argp->wsize;
nprmt->wsize &= ~(NFS_FABLKSIZE - 1);
if (nprmt->wsize <= 0)
{
nprmt->wsize = NFS_FABLKSIZE;
}
}
if (nprmt->wsize > maxio)
{
nprmt->wsize = maxio;
}
* transfer
*/
if ((argp->flags & NFSMNT_RSIZE) != 0 && argp->rsize > 0)
{
nprmt->rsize = argp->rsize;
nprmt->rsize &= ~(NFS_FABLKSIZE - 1);
if (nprmt->rsize <= 0)
{
nprmt->rsize = NFS_FABLKSIZE;
}
}
if (nprmt->rsize > maxio)
{
nprmt->rsize = maxio;
}
* transfer
*/
if ((argp->flags & NFSMNT_READDIRSIZE) != 0 && argp->readdirsize > 0)
{
nprmt->readdirsize = argp->readdirsize;
nprmt->readdirsize &= ~(NFS_DIRBLKSIZ - 1);
if (nprmt->readdirsize < NFS_DIRBLKSIZ)
{
nprmt->readdirsize = NFS_DIRBLKSIZ;
}
}
else if (argp->flags & NFSMNT_RSIZE)
{
nprmt->readdirsize = nprmt->rsize;
}
if (nprmt->readdirsize > maxio)
{
nprmt->readdirsize = maxio;
}
}
* Name: nfs_bind
*
* Description:
* This implements a portion of the mount operation. This function allocates
* and initializes the mountpoint private data and gets mount information
* from the NFS server. The final binding of the private data (containing
* NFS server mount information) to the mountpoint is performed by mount().
*
* Returned Value:
* 0 on success; a negated errno value on failure.
*
****************************************************************************/
static int nfs_bind(FAR struct inode *blkdriver, FAR const void *data,
FAR void **handle)
{
FAR struct nfs_args *argp = (FAR struct nfs_args *)data;
FAR struct nfsmount *nmp;
FAR struct rpcclnt *rpc;
struct nfs_mount_parameters nprmt;
uint32_t buflen;
uint32_t tmp;
int ret = 0;
DEBUGASSERT(data && handle);
* settings in the argp->flags.
*/
nprmt.timeo = NFS_TIMEO;
nprmt.retry = NFS_RETRANS;
nprmt.wsize = NFS_WSIZE;
nprmt.rsize = NFS_RSIZE;
nprmt.readdirsize = NFS_READDIRSIZE;
nfs_decode_args(&nprmt, argp);
* First, get the maximum size of a read and a write transfer.
*/
buflen = SIZEOF_rpc_call_write(nprmt.wsize);
tmp = SIZEOF_rpc_reply_read(nprmt.rsize);
if (tmp > buflen)
{
buflen = tmp;
}
tmp = SIZEOF_rpc_reply_readdir(nprmt.readdirsize);
if (tmp > buflen)
{
buflen = tmp;
}
*
* In the case where there are multiple network devices with different
* link layer protocols, each network device may support a different
* UDP MSS value. Here we arbitrarily select the minimum MSS for
* that case.
*/
if (argp->sotype == SOCK_DGRAM && buflen > MIN_UDP_MSS)
{
buflen = MIN_UDP_MSS;
}
nmp = fs_heap_zalloc(SIZEOF_nfsmount(buflen));
if (!nmp)
{
ferr("ERROR: Failed to allocate mountpoint structure\n");
return -ENOMEM;
}
nmp->nm_buflen = (uint16_t)buflen;
* nxmutex_lock() is called at the completion of
* initialization, incrementing the count to one.
*/
nxmutex_init(&nmp->nm_lock);
* controls access */
nfs_true = txdr_unsigned(TRUE);
nfs_false = txdr_unsigned(FALSE);
nfs_xdrneg1 = txdr_unsigned(-1);
rpcclnt_init();
nmp->nm_wsize = nprmt.wsize;
nmp->nm_rsize = nprmt.rsize;
nmp->nm_readdirsize = nprmt.readdirsize;
strlcpy(nmp->nm_path, argp->path, sizeof(nmp->nm_path));
memcpy(&nmp->nm_nam, &argp->addr, argp->addrlen);
rpc = fs_heap_zalloc(sizeof(struct rpcclnt));
if (!rpc)
{
ferr("ERROR: Failed to allocate rpc structure\n");
goto bad;
}
finfo("Connecting\n");
rpc->rc_path = nmp->nm_path;
rpc->rc_name = &nmp->nm_nam;
rpc->rc_sotype = argp->sotype;
rpc->rc_timeo = nprmt.timeo;
rpc->rc_retry = nprmt.retry;
nmp->nm_rpcclnt = rpc;
ret = rpcclnt_connect(nmp->nm_rpcclnt);
if (ret != OK)
{
ferr("ERROR: nfs_connect failed: %d\n", ret);
goto bad;
}
nmp->nm_fhsize = nmp->nm_rpcclnt->rc_fhsize;
nmp->nm_fh = &nmp->nm_rpcclnt->rc_fh;
ret = nfs_fsinfo(nmp);
if (ret)
{
ferr("ERROR: nfs_fsinfo failed: %d\n", ret);
goto bad;
}
*handle = nmp;
finfo("Successfully mounted\n");
return OK;
bad:
if (nmp->nm_rpcclnt)
{
rpcclnt_disconnect(nmp->nm_rpcclnt);
fs_heap_free(nmp->nm_rpcclnt);
}
nxmutex_destroy(&nmp->nm_lock);
fs_heap_free(nmp);
return ret;
}
* Name: nfs_unbind
*
* Description: This implements the filesystem portion of the umount
* operation.
*
* Returned Value:
* 0 on success; a negated errno value on failure.
*
****************************************************************************/
static int nfs_unbind(FAR void *handle, FAR struct inode **blkdriver,
unsigned int flags)
{
FAR struct nfsmount *nmp = (FAR struct nfsmount *)handle;
int ret;
finfo("Entry\n");
DEBUGASSERT(nmp);
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return ret;
}
* looking at the list of file structures in the mount structure. If this
* list not empty, then there are open files and we cannot unmount now (or
* a crash is sure to follow).
*/
if (nmp->nm_head != NULL)
{
ferr("ERROR; There are open files: %p\n", nmp->nm_head);
* no open file references.
*/
ret = (flags != 0) ? -ENOSYS : -EBUSY;
goto errout_with_lock;
}
rpcclnt_disconnect(nmp->nm_rpcclnt);
nxmutex_destroy(&nmp->nm_lock);
fs_heap_free(nmp->nm_rpcclnt);
fs_heap_free(nmp);
return OK;
errout_with_lock:
nxmutex_unlock(&nmp->nm_lock);
return ret;
}
* Name: nfs_fsinfo
*
* Description:
* Return information about root directory.
*
* Returned Value:
* 0 on success; negative errno value on failure
*
* Assumptions:
* The caller has exclusive access to the NFS mount structure
*
****************************************************************************/
static int nfs_fsinfo(FAR struct nfsmount *nmp)
{
FAR struct rpc_call_fs *fsinfo;
FAR struct rpc_reply_getattr *attr;
FAR uint32_t *ptr;
uint32_t pref;
uint32_t max;
int ret = 0;
fsinfo = &nmp->nm_msgbuffer.fsinfo;
fsinfo->fs.fsroot.length = txdr_unsigned(nmp->nm_fhsize);
memcpy(&fsinfo->fs.fsroot.handle, nmp->nm_fh, nmp->nm_fhsize);
nfs_statistics(NFSPROC_FSINFO);
ret = nfs_request(nmp, NFSPROC_FSINFO,
fsinfo, sizeof(struct FS3args),
nmp->nm_iobuffer, nmp->nm_buflen);
if (ret)
{
return ret;
}
ptr = (FAR uint32_t *)
&((FAR struct rpc_reply_fsinfo *)nmp->nm_iobuffer)->fsinfo;
if (*ptr++ != 0)
{
memcpy(&nmp->nm_fattr, ptr, sizeof(struct nfs_fattr));
ptr += uint32_increment(sizeof(struct nfs_fattr));
}
max = fxdr_unsigned(uint32_t, *ptr++);
pref = fxdr_unsigned(uint32_t, *ptr++);
ptr += 1;
if (pref < nmp->nm_rsize)
{
nmp->nm_rsize = (pref + NFS_FABLKSIZE - 1) & ~(NFS_FABLKSIZE - 1);
}
if (max < nmp->nm_rsize)
{
nmp->nm_rsize = max & ~(NFS_FABLKSIZE - 1);
if (nmp->nm_rsize == 0)
{
nmp->nm_rsize = max;
}
}
max = fxdr_unsigned(uint32_t, *ptr++);
pref = fxdr_unsigned(uint32_t, *ptr++);
ptr += 1;
if (pref < nmp->nm_wsize)
{
nmp->nm_wsize = (pref + NFS_FABLKSIZE - 1) & ~(NFS_FABLKSIZE - 1);
}
if (max < nmp->nm_wsize)
{
nmp->nm_wsize = max & ~(NFS_FABLKSIZE - 1);
if (nmp->nm_wsize == 0)
{
nmp->nm_wsize = max;
}
}
pref = fxdr_unsigned(uint32_t, *ptr++);
if (pref < nmp->nm_readdirsize)
{
nmp->nm_readdirsize = (pref + NFS_DIRBLKSIZ - 1) &
~(NFS_DIRBLKSIZ - 1);
}
if (nmp->nm_fattr.fa_type == 0)
{
nfs_statistics(NFSPROC_GETATTR);
ret = nfs_request(nmp, NFSPROC_GETATTR,
fsinfo, sizeof(struct FS3args),
nmp->nm_iobuffer, nmp->nm_buflen);
if (ret)
{
return ret;
}
attr = (FAR struct rpc_reply_getattr *)nmp->nm_iobuffer;
memcpy(&nmp->nm_fattr, &attr->attr, sizeof(struct nfs_fattr));
}
return OK;
}
* Name: nfs_statfs
*
* Description:
* Return filesystem statistics
*
* Returned Value:
* 0 on success; a negated errno value on failure.
*
****************************************************************************/
static int nfs_statfs(FAR struct inode *mountpt, FAR struct statfs *sbp)
{
FAR struct nfsmount *nmp;
FAR struct rpc_call_fs *fsstat;
FAR struct rpc_reply_fsstat *sfp;
uint64_t tquad;
int ret;
DEBUGASSERT(mountpt && mountpt->i_private);
nmp = mountpt->i_private;
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return ret;
}
sbp->f_type = NFS_SUPER_MAGIC;
fsstat = &nmp->nm_msgbuffer.fsstat;
fsstat->fs.fsroot.length = txdr_unsigned(nmp->nm_fhsize);
memcpy(&fsstat->fs.fsroot.handle, nmp->nm_fh, nmp->nm_fhsize);
nfs_statistics(NFSPROC_FSSTAT);
ret = nfs_request(nmp, NFSPROC_FSSTAT,
fsstat, sizeof(struct FS3args),
nmp->nm_iobuffer, nmp->nm_buflen);
if (ret)
{
goto errout_with_lock;
}
sfp = (FAR struct rpc_reply_fsstat *)nmp->nm_iobuffer;
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;
errout_with_lock:
nxmutex_unlock(&nmp->nm_lock);
return ret;
}
* Name: nfs_remove
*
* Description:
* Remove a file
*
* Returned Value:
* 0 on success; a negated errno value on failure.
*
****************************************************************************/
static int nfs_remove(FAR struct inode *mountpt, FAR const char *relpath)
{
FAR struct nfsmount *nmp;
struct file_handle fhandle;
struct nfs_fattr fattr;
char filename[NAME_MAX + 1];
FAR uint32_t *ptr;
int namelen;
int reqlen;
int ret;
DEBUGASSERT(mountpt && mountpt->i_private);
nmp = mountpt->i_private;
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return ret;
}
ret = nfs_finddir(nmp, relpath, &fhandle, &fattr, filename);
if (ret != OK)
{
ferr("ERROR: nfs_finddir returned: %d\n", ret);
goto errout_with_lock;
}
ptr = (FAR uint32_t *)&nmp->nm_msgbuffer.removef.remove;
reqlen = 0;
*ptr++ = txdr_unsigned(fhandle.length);
reqlen += sizeof(uint32_t);
memcpy(ptr, &fhandle.handle, fhandle.length);
reqlen += uint32_alignup(fhandle.length);
ptr += uint32_increment(fhandle.length);
namelen = strlen(filename);
*ptr++ = txdr_unsigned(namelen);
reqlen += sizeof(uint32_t);
memcpy(ptr, filename, namelen);
reqlen += uint32_alignup(namelen);
nfs_statistics(NFSPROC_REMOVE);
ret = nfs_request(nmp, NFSPROC_REMOVE,
&nmp->nm_msgbuffer.removef, reqlen,
nmp->nm_iobuffer, nmp->nm_buflen);
errout_with_lock:
nxmutex_unlock(&nmp->nm_lock);
return ret;
}
* Name: nfs_mkdir
*
* Description:
* Create a directory
*
* Returned Value:
* 0 on success; a negated errno value on failure.
*
****************************************************************************/
static int nfs_mkdir(FAR struct inode *mountpt, FAR const char *relpath,
mode_t mode)
{
FAR struct nfsmount *nmp;
struct file_handle fhandle;
struct nfs_fattr fattr;
char dirname[NAME_MAX + 1];
FAR uint32_t *ptr;
uint32_t tmp;
int namelen;
int reqlen;
int ret;
DEBUGASSERT(mountpt && mountpt->i_private);
nmp = mountpt->i_private;
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return ret;
}
* created
*/
ret = nfs_finddir(nmp, relpath, &fhandle, &fattr, dirname);
if (ret != OK)
{
ferr("ERROR: nfs_finddir returned: %d\n", ret);
goto errout_with_lock;
}
ptr = (FAR uint32_t *)&nmp->nm_msgbuffer.mkdir.mkdir;
reqlen = 0;
*ptr++ = txdr_unsigned(fhandle.length);
reqlen += sizeof(uint32_t);
memcpy(ptr, &fhandle.handle, fhandle.length);
ptr += uint32_increment(fhandle.length);
reqlen += uint32_alignup(fhandle.length);
namelen = strlen(dirname);
*ptr++ = txdr_unsigned(namelen);
reqlen += sizeof(uint32_t);
memcpy(ptr, dirname, namelen);
ptr += uint32_increment(namelen);
reqlen += uint32_alignup(namelen);
* bit settings are the same (at least for the bits of interest).
*/
*ptr++ = nfs_true;
reqlen += sizeof(uint32_t);
tmp = mode & (NFSMODE_IXOTH | NFSMODE_IWOTH | NFSMODE_IROTH |
NFSMODE_IXGRP | NFSMODE_IWGRP | NFSMODE_IRGRP |
NFSMODE_IXUSR | NFSMODE_IWUSR | NFSMODE_IRUSR |
NFSMODE_SAVETEXT | NFSMODE_ISGID | NFSMODE_ISUID);
*ptr++ = txdr_unsigned(tmp);
reqlen += sizeof(uint32_t);
*ptr++ = nfs_true;
*ptr++ = 0;
reqlen += 2*sizeof(uint32_t);
*ptr++ = nfs_true;
*ptr++ = 0;
reqlen += 2*sizeof(uint32_t);
*ptr++ = nfs_false;
reqlen += sizeof(uint32_t);
*ptr++ = HTONL(NFSV3SATTRTIME_DONTCHANGE);
*ptr++ = HTONL(NFSV3SATTRTIME_DONTCHANGE);
reqlen += 2*sizeof(uint32_t);
nfs_statistics(NFSPROC_MKDIR);
ret = nfs_request(nmp, NFSPROC_MKDIR,
&nmp->nm_msgbuffer.mkdir, reqlen,
&nmp->nm_iobuffer, nmp->nm_buflen);
if (ret)
{
ferr("ERROR: nfs_request failed: %d\n", ret);
}
errout_with_lock:
nxmutex_unlock(&nmp->nm_lock);
return ret;
}
* Name: nfs_rmdir
*
* Description:
* Remove a directory
*
* Returned Value:
* 0 on success; a negated errno value on failure.
*
****************************************************************************/
static int nfs_rmdir(FAR struct inode *mountpt, FAR const char *relpath)
{
FAR struct nfsmount *nmp;
struct file_handle fhandle;
struct nfs_fattr fattr;
char dirname[NAME_MAX + 1];
FAR uint32_t *ptr;
int namelen;
int reqlen;
int ret;
DEBUGASSERT(mountpt && mountpt->i_private);
nmp = mountpt->i_private;
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return ret;
}
* removed
*/
ret = nfs_finddir(nmp, relpath, &fhandle, &fattr, dirname);
if (ret != OK)
{
ferr("ERROR: nfs_finddir returned: %d\n", ret);
goto errout_with_lock;
}
ptr = (FAR uint32_t *)&nmp->nm_msgbuffer.rmdir.rmdir;
reqlen = 0;
*ptr++ = txdr_unsigned(fhandle.length);
reqlen += sizeof(uint32_t);
memcpy(ptr, &fhandle.handle, fhandle.length);
reqlen += uint32_alignup(fhandle.length);
ptr += uint32_increment(fhandle.length);
namelen = strlen(dirname);
*ptr++ = txdr_unsigned(namelen);
reqlen += sizeof(uint32_t);
memcpy(ptr, dirname, namelen);
reqlen += uint32_alignup(namelen);
nfs_statistics(NFSPROC_RMDIR);
ret = nfs_request(nmp, NFSPROC_RMDIR,
&nmp->nm_msgbuffer.rmdir, reqlen,
nmp->nm_iobuffer, nmp->nm_buflen);
errout_with_lock:
nxmutex_unlock(&nmp->nm_lock);
return ret;
}
* Name: nfs_rename
*
* Description:
* Rename a file or directory
*
* Returned Value:
* 0 on success; a negated errno value on failure.
*
****************************************************************************/
static int nfs_rename(FAR struct inode *mountpt, FAR const char *oldrelpath,
FAR const char *newrelpath)
{
FAR struct nfsmount *nmp;
struct file_handle from_handle;
struct file_handle to_handle;
char from_name[NAME_MAX + 1];
char to_name[NAME_MAX + 1];
struct nfs_fattr fattr;
FAR uint32_t *ptr;
int namelen;
int reqlen;
int ret;
DEBUGASSERT(mountpt && mountpt->i_private);
nmp = mountpt->i_private;
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return ret;
}
ret = nfs_finddir(nmp, oldrelpath, &from_handle, &fattr, from_name);
if (ret != OK)
{
ferr("ERROR: nfs_finddir returned: %d\n", ret);
goto errout_with_lock;
}
ret = nfs_finddir(nmp, newrelpath, &to_handle, &fattr, to_name);
if (ret != OK)
{
ferr("ERROR: nfs_finddir returned: %d\n", ret);
goto errout_with_lock;
}
ptr = (FAR uint32_t *)&nmp->nm_msgbuffer.renamef.rename;
reqlen = 0;
*ptr++ = txdr_unsigned(from_handle.length);
reqlen += sizeof(uint32_t);
memcpy(ptr, &from_handle.handle, from_handle.length);
reqlen += uint32_alignup(from_handle.length);
ptr += uint32_increment(from_handle.length);
namelen = strlen(from_name);
*ptr++ = txdr_unsigned(namelen);
reqlen += sizeof(uint32_t);
memcpy(ptr, from_name, namelen);
reqlen += uint32_alignup(namelen);
ptr += uint32_increment(namelen);
*ptr++ = txdr_unsigned(to_handle.length);
reqlen += sizeof(uint32_t);
memcpy(ptr, &to_handle.handle, to_handle.length);
ptr += uint32_increment(to_handle.length);
reqlen += uint32_alignup(to_handle.length);
namelen = strlen(to_name);
*ptr++ = txdr_unsigned(namelen);
reqlen += sizeof(uint32_t);
memcpy(ptr, to_name, namelen);
reqlen += uint32_alignup(namelen);
nfs_statistics(NFSPROC_RENAME);
ret = nfs_request(nmp, NFSPROC_RENAME,
&nmp->nm_msgbuffer.renamef, reqlen,
nmp->nm_iobuffer, nmp->nm_buflen);
errout_with_lock:
nxmutex_unlock(&nmp->nm_lock);
return ret;
}
* Name: nfs_stat_mode
*
* Description:
* Convert NFSv3's type and mode to NuttX's mode
*
* Returned Value:
* Return NuttX's mode
*
****************************************************************************/
static mode_t nfs_stat_mode(unsigned int mode, unsigned int type)
{
* as in the NFSv3 spec.
*/
mode &= (NFSMODE_IXOTH | NFSMODE_IWOTH | NFSMODE_IROTH |
NFSMODE_IXGRP | NFSMODE_IWGRP | NFSMODE_IRGRP |
NFSMODE_IXUSR | NFSMODE_IWUSR | NFSMODE_IRUSR |
NFSMODE_SAVETEXT | NFSMODE_ISGID | NFSMODE_ISUID);
switch (type)
{
default:
case NFNON:
break;
case NFREG:
mode |= S_IFREG;
break;
case NFDIR:
mode |= S_IFDIR;
break;
case NFBLK:
mode |= S_IFBLK;
break;
case NFCHR:
mode |= S_IFCHR;
break;
case NFLNK:
mode |= S_IFLNK;
break;
case NFSOCK:
mode |= S_IFSOCK;
break;
case NFFIFO:
mode |= S_IFIFO;
break;
}
return mode;
}
* Name: nfs_stat
*
* Description:
* Return information about the file system object at 'relpath'
*
* Returned Value:
* 0 on success; a negated errno value on failure.
*
****************************************************************************/
static int nfs_stat(FAR struct inode *mountpt, FAR const char *relpath,
FAR struct stat *buf)
{
FAR struct nfsmount *nmp;
struct file_handle fhandle;
struct nfs_fattr attributes;
struct timespec ts;
int ret;
DEBUGASSERT(mountpt && mountpt->i_private);
nmp = mountpt->i_private;
DEBUGASSERT(nmp && buf);
memset(buf, 0, sizeof(*buf));
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return ret;
}
ret = nfs_findnode(nmp, relpath, &fhandle, &attributes, NULL);
if (ret != OK)
{
ferr("ERROR: nfs_findnode failed: %d\n", ret);
goto errout_with_lock;
}
buf->st_mode = nfs_stat_mode(fxdr_unsigned(uint16_t, attributes.fa_mode),
fxdr_unsigned(uint8_t, attributes.fa_type));
buf->st_size = fxdr_hyper(&attributes.fa_size);
fxdr_nfsv3time(&attributes.fa_mtime, &ts);
buf->st_mtime = ts.tv_sec;
fxdr_nfsv3time(&attributes.fa_atime, &ts);
buf->st_atime = ts.tv_sec;
fxdr_nfsv3time(&attributes.fa_ctime, &ts);
buf->st_ctime = ts.tv_sec;
errout_with_lock:
nxmutex_unlock(&nmp->nm_lock);
return ret;
}
* Name: nfs_chstat
*
* Description:
* Change information about the file system object at 'relpath'
*
* Returned Value:
* 0 on success; a negated errno value on failure.
*
****************************************************************************/
static int nfs_chstat(FAR struct inode *mountpt, FAR const char *relpath,
FAR const struct stat *buf, int flags)
{
FAR struct nfsmount *nmp;
struct file_handle fhandle;
struct nfsnode np;
int ret;
DEBUGASSERT(mountpt && mountpt->i_private);
nmp = mountpt->i_private;
DEBUGASSERT(nmp && buf);
ret = nxmutex_lock(&nmp->nm_lock);
if (ret < 0)
{
return ret;
}
ret = nfs_findnode(nmp, relpath, &fhandle, NULL, NULL);
if (ret != OK)
{
ferr("ERROR: nfs_findnode failed: %d\n", ret);
goto errout_with_lock;
}
np.n_fhsize = (uint8_t)fhandle.length;
memcpy(&np.n_fhandle, &fhandle.handle, fhandle.length);
ret = nfs_filechstat(nmp, &np, buf, flags);
errout_with_lock:
nxmutex_unlock(&nmp->nm_lock);
return ret;
}