mirror of
https://github.com/apache/nuttx.git
synced 2026-05-21 04:52:02 +08:00
NFS update + make some examples configurable as NSH built-ins
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4501 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
+1
-1
@@ -42,7 +42,7 @@ CSRCS +=
|
||||
# Files required for NFS RPC
|
||||
|
||||
ASRCS +=
|
||||
CSRCS += rpc_clnt.c
|
||||
CSRCS += rpc_clnt.c nfs_socket.c
|
||||
|
||||
# Argument for dependency checking
|
||||
|
||||
|
||||
+136
-137
@@ -1,6 +1,14 @@
|
||||
/*
|
||||
* Copyright (c) 1989, 1993, 1995
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
/****************************************************************************
|
||||
* fs/nfs/nfs.h
|
||||
*
|
||||
* 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.
|
||||
@@ -30,11 +38,18 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)nfs.h 8.4 (Berkeley) 5/1/95
|
||||
*/
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef _NFS_NFS_H_
|
||||
#define _NFS_NFS_H_
|
||||
#ifndef __FS_NFS_NFS_H
|
||||
#define __FS_NFS_NFS_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
#define NFS_TICKINTVL 5 /* Desired time for a tick (msec) */
|
||||
#define NFS_HZ (CLOCKS_PER_SEC / nfs_ticks) /* Ticks/sec */
|
||||
@@ -62,9 +77,7 @@
|
||||
#define NFS_DIRBLKSIZ 1024 /* Must be a multiple of DIRBLKSIZ */
|
||||
#define NFS_READDIRBLKSIZ 512 /* Size of read dir blocks. XXX */
|
||||
|
||||
/*
|
||||
* Oddballs
|
||||
*/
|
||||
/* Oddballs */
|
||||
|
||||
#define NFS_CMPFH(n, f, s) \
|
||||
((n)->n_fhsize == (s) && !bcmp((void *)(n)->n_fhp, (void *)(f), (s)))
|
||||
@@ -73,9 +86,7 @@
|
||||
(((n)->nd_flag & ND_NFSV3) ? (((n)->nd_nam2) ? \
|
||||
NFS_MAXDGRAMDATA : NFS_MAXDATA) : NFS_V2MAXDATA)
|
||||
|
||||
/*
|
||||
* sys/malloc.h needs M_NFSDIROFF, M_NFSRVDESC and M_NFSBIGFH added.
|
||||
*/
|
||||
/* sys/malloc.h needs M_NFSDIROFF, M_NFSRVDESC and M_NFSBIGFH added. */
|
||||
|
||||
#ifndef M_NFSRVDESC
|
||||
# define M_NFSRVDESC M_TEMP
|
||||
@@ -87,15 +98,104 @@
|
||||
# define M_NFSBIGFH M_TEMP
|
||||
#endif
|
||||
|
||||
/*
|
||||
* The B_INVAFTERWRITE flag should be set to whatever is required by the
|
||||
/*The B_INVAFTERWRITE flag should be set to whatever is required by the
|
||||
* buffer cache code to say "Invalidate the block after it is written back".
|
||||
*/
|
||||
|
||||
#define B_INVAFTERWRITE B_INVAL
|
||||
|
||||
/* Flags for nfssvc() system call. */
|
||||
|
||||
#define NFSSVC_BIOD 0x002
|
||||
#define NFSSVC_NFSD 0x004
|
||||
#define NFSSVC_ADDSOCK 0x008
|
||||
#define NFSSVC_AUTHIN 0x010
|
||||
#define NFSSVC_GOTAUTH 0x040
|
||||
#define NFSSVC_AUTHINFAIL 0x080
|
||||
#define NFSSVC_MNTD 0x100
|
||||
|
||||
/* fs.nfs sysctl(3) identifiers */
|
||||
|
||||
#define NFS_NFSSTATS 1 /* struct: struct nfsstats */
|
||||
#define NFS_NIOTHREADS 2 /* number of i/o threads */
|
||||
#define NFS_MAXID 3
|
||||
|
||||
#define FS_NFS_NAMES { \
|
||||
{ 0, 0 }, \
|
||||
{ "nfsstats", CTLTYPE_STRUCT }, \
|
||||
{ "iothreads", CTLTYPE_INT } \
|
||||
}
|
||||
|
||||
#define NFSINT_SIGMASK (sigmask(SIGINT)|sigmask(SIGTERM)|sigmask(SIGKILL)| \
|
||||
sigmask(SIGHUP)|sigmask(SIGQUIT))
|
||||
|
||||
/*
|
||||
* Structures for the nfssvc(2) syscall.
|
||||
* Socket errors ignored for connectionless sockets??
|
||||
* For now, ignore them all
|
||||
*/
|
||||
|
||||
#define NFSIGNORE_SOERROR(s, e) \
|
||||
((e) != EINTR && (e) != ERESTART && (e) != EWOULDBLOCK && \
|
||||
((s) & PR_CONNREQUIRED) == 0)
|
||||
|
||||
/* Flag values for r_flags */
|
||||
|
||||
#define R_TIMING 0x01/* timing request (in mntp) */
|
||||
#define R_SENT 0x02/* request has been sent */
|
||||
#define R_SOFTTERM 0x04/* soft mnt, too many retries */
|
||||
#define R_INTR 0x08/* intr mnt, signal pending */
|
||||
#define R_SOCKERR 0x10/* Fatal error on socket */
|
||||
#define R_TPRINTFMSG 0x20/* Did a tprintf msg. */
|
||||
#define R_MUSTRESEND 0x40/* Must resend request */
|
||||
|
||||
/* On fast networks, the estimator will try to reduce the
|
||||
* timeout lower than the latency of the server's disks,
|
||||
* which results in too many timeouts, so cap the lower
|
||||
* bound.
|
||||
*/
|
||||
|
||||
#define NFS_MINRTO (NFS_HZ >> 2)
|
||||
|
||||
/* Keep the RTO from increasing to unreasonably large values
|
||||
* when a server is not responding.
|
||||
*/
|
||||
|
||||
#define NFS_MAXRTO (20 * NFS_HZ)
|
||||
|
||||
#define NFS_MAX_TIMER (NFS_WRITE_TIMER)
|
||||
#define NFS_INITRTT (NFS_HZ << 3)
|
||||
|
||||
/* Bits for "ns_flag" */
|
||||
|
||||
#define SLP_VALID 0x01/* connection is usable */
|
||||
#define SLP_DOREC 0x02/* receive operation required */
|
||||
#define SLP_NEEDQ 0x04/* connection has data to queue from socket */
|
||||
#define SLP_DISCONN 0x08/* connection is closed */
|
||||
#define SLP_GETSTREAM 0x10/* extracting RPC from TCP connection */
|
||||
#define SLP_LASTFRAG 0x20/* last fragment received on TCP connection */
|
||||
#define SLP_ALLFLAGS 0xff/* convenience */
|
||||
|
||||
#define SLP_INIT 0x01/* NFS data undergoing initialization */
|
||||
#define SLP_WANTINIT 0x02/* thread waiting on NFS initialization */
|
||||
|
||||
/* Bits for "nfsd_flag" */
|
||||
|
||||
#define NFSD_WAITING 0x01
|
||||
#define NFSD_REQINPROG 0x02
|
||||
#define NFSD_NEEDAUTH 0x04
|
||||
#define NFSD_AUTHFAIL 0x08
|
||||
|
||||
/* Bits for "nd_flag" */
|
||||
|
||||
#define ND_NFSV3 0x08
|
||||
|
||||
#define NFSD_CHECKSLP 0x01
|
||||
|
||||
/****************************************************************************
|
||||
* Public Types
|
||||
****************************************************************************/
|
||||
|
||||
/* Structures for the nfssvc(2) syscall.
|
||||
* Not that anyone besides nfsd(8) should ever use it.
|
||||
*/
|
||||
|
||||
@@ -119,9 +219,7 @@ struct nfsd_srvargs
|
||||
uint32_t nsd_ttl; /* credential ttl (sec) */
|
||||
};
|
||||
|
||||
/*
|
||||
* Stats structure
|
||||
*/
|
||||
/* Stats structure */
|
||||
|
||||
struct nfsstats
|
||||
{
|
||||
@@ -161,34 +259,11 @@ struct nfsstats
|
||||
uint64_t srvvop_writes;
|
||||
};
|
||||
|
||||
/*
|
||||
* Flags for nfssvc() system call.
|
||||
*/
|
||||
/****************************************************************************
|
||||
* Public Types
|
||||
****************************************************************************/
|
||||
|
||||
#define NFSSVC_BIOD 0x002
|
||||
#define NFSSVC_NFSD 0x004
|
||||
#define NFSSVC_ADDSOCK 0x008
|
||||
#define NFSSVC_AUTHIN 0x010
|
||||
#define NFSSVC_GOTAUTH 0x040
|
||||
#define NFSSVC_AUTHINFAIL 0x080
|
||||
#define NFSSVC_MNTD 0x100
|
||||
|
||||
/*
|
||||
* fs.nfs sysctl(3) identifiers
|
||||
*/
|
||||
|
||||
#define NFS_NFSSTATS 1 /* struct: struct nfsstats */
|
||||
#define NFS_NIOTHREADS 2 /* number of i/o threads */
|
||||
#define NFS_MAXID 3
|
||||
|
||||
#define FS_NFS_NAMES { \
|
||||
{ 0, 0 }, \
|
||||
{ "nfsstats", CTLTYPE_STRUCT }, \
|
||||
{ "iothreads", CTLTYPE_INT } \
|
||||
}
|
||||
|
||||
/*
|
||||
* The set of signals the interrupt an I/O in progress for NFSMNT_INT mounts.
|
||||
/* The set of signals the interrupt an I/O in progress for NFSMNT_INT mounts.
|
||||
* What should be in this set is open to debate, but I believe that since
|
||||
* I/O system calls on ufs are never interrupted by signals the set should
|
||||
* be minimal. My reasoning is that many current programs that use signals
|
||||
@@ -196,34 +271,16 @@ struct nfsstats
|
||||
* by them and break.
|
||||
*/
|
||||
|
||||
#ifdef _KERNEL
|
||||
extern int nfs_niothreads;
|
||||
|
||||
struct uio;
|
||||
struct buf;
|
||||
struct vattr;
|
||||
struct nameidata; /* XXX */
|
||||
|
||||
#define NFSINT_SIGMASK (sigmask(SIGINT)|sigmask(SIGTERM)|sigmask(SIGKILL)| \
|
||||
sigmask(SIGHUP)|sigmask(SIGQUIT))
|
||||
|
||||
/*
|
||||
* Socket errors ignored for connectionless sockets??
|
||||
* For now, ignore them all
|
||||
*/
|
||||
|
||||
#define NFSIGNORE_SOERROR(s, e) \
|
||||
((e) != EINTR && (e) != ERESTART && (e) != EWOULDBLOCK && \
|
||||
((s) & PR_CONNREQUIRED) == 0)
|
||||
|
||||
/*
|
||||
* Nfs outstanding request list element
|
||||
*/
|
||||
/* Nfs outstanding request list element */
|
||||
|
||||
struct nfsreq
|
||||
{
|
||||
dq_entry_t r_chain;
|
||||
void *r_dpos;
|
||||
struct nfsmount *r_nmp;
|
||||
uint32_t r_xid;
|
||||
int r_flags; /* flags on request, see below */
|
||||
@@ -233,31 +290,6 @@ struct nfsreq
|
||||
int r_rtt; /* RTT for rpc */
|
||||
};
|
||||
|
||||
/* Flag values for r_flags */
|
||||
|
||||
#define R_TIMING 0x01/* timing request (in mntp) */
|
||||
#define R_SENT 0x02/* request has been sent */
|
||||
#define R_SOFTTERM 0x04/* soft mnt, too many retries */
|
||||
#define R_INTR 0x08/* intr mnt, signal pending */
|
||||
#define R_SOCKERR 0x10/* Fatal error on socket */
|
||||
#define R_TPRINTFMSG 0x20/* Did a tprintf msg. */
|
||||
#define R_MUSTRESEND 0x40/* Must resend request */
|
||||
|
||||
/*
|
||||
* On fast networks, the estimator will try to reduce the
|
||||
* timeout lower than the latency of the server's disks,
|
||||
* which results in too many timeouts, so cap the lower
|
||||
* bound.
|
||||
*/
|
||||
|
||||
#define NFS_MINRTO (NFS_HZ >> 2)
|
||||
|
||||
/*
|
||||
* Keep the RTO from increasing to unreasonably large values
|
||||
* when a server is not responding.
|
||||
*/
|
||||
#define NFS_MAXRTO (20 * NFS_HZ)
|
||||
|
||||
enum nfs_rto_timers
|
||||
{
|
||||
NFS_DEFAULT_TIMER,
|
||||
@@ -267,12 +299,7 @@ enum nfs_rto_timers
|
||||
NFS_WRITE_TIMER,
|
||||
};
|
||||
|
||||
#define NFS_MAX_TIMER (NFS_WRITE_TIMER)
|
||||
#define NFS_INITRTT (NFS_HZ << 3)
|
||||
|
||||
/*
|
||||
* Network address hash list element
|
||||
*/
|
||||
/* Network address hash list element */
|
||||
|
||||
union nethostaddr
|
||||
{
|
||||
@@ -285,38 +312,14 @@ struct nfssvc_sock
|
||||
TAILQ_ENTRY(nfssvc_sock) ns_chain; /* List of all nfssvc_sock's */
|
||||
struct file *ns_fp; /* fp from the... */
|
||||
struct socket *ns_so; /* ...socket this struct wraps */
|
||||
struct mbuf *ns_nam; /* MT_SONAME of client */
|
||||
struct mbuf *ns_raw; /* head of unpeeked mbufs */
|
||||
struct mbuf *ns_rawend; /* tail of unpeeked mbufs */
|
||||
struct mbuf *ns_rec; /* queued RPC records */
|
||||
struct mbuf *ns_recend; /* last queued RPC record */
|
||||
struct mbuf *ns_frag; /* end of record fragment */
|
||||
int ns_flag; /* socket status flags */
|
||||
int ns_solock; /* lock for connected socket */
|
||||
int ns_cc; /* actual chars queued */
|
||||
int ns_reclen; /* length of first queued record */
|
||||
u_int32_t ns_sref; /* # of refs to this struct */
|
||||
uint32_t ns_sref; /* # of refs to this struct */
|
||||
};
|
||||
|
||||
/* Bits for "ns_flag" */
|
||||
|
||||
#define SLP_VALID 0x01/* connection is usable */
|
||||
#define SLP_DOREC 0x02/* receive operation required */
|
||||
#define SLP_NEEDQ 0x04/* connection has data to queue from socket */
|
||||
#define SLP_DISCONN 0x08/* connection is closed */
|
||||
#define SLP_GETSTREAM 0x10/* extracting RPC from TCP connection */
|
||||
#define SLP_LASTFRAG 0x20/* last fragment received on TCP connection */
|
||||
#define SLP_ALLFLAGS 0xff/* convenience */
|
||||
|
||||
extern TAILQ_HEAD(nfssvc_sockhead, nfssvc_sock) nfssvc_sockhead;
|
||||
extern int nfssvc_sockhead_flag;
|
||||
|
||||
#define SLP_INIT 0x01/* NFS data undergoing initialization */
|
||||
#define SLP_WANTINIT 0x02/* thread waiting on NFS initialization */
|
||||
|
||||
/*
|
||||
* One of these structures is allocated for each nfsd.
|
||||
*/
|
||||
/* One of these structures is allocated for each nfsd. */
|
||||
|
||||
struct nfsd
|
||||
{
|
||||
@@ -326,35 +329,31 @@ struct nfsd
|
||||
struct nfsrv_descript *nfsd_nd; /* Associated nfsrv_descript */
|
||||
};
|
||||
|
||||
/* Bits for "nfsd_flag" */
|
||||
|
||||
#define NFSD_WAITING 0x01
|
||||
#define NFSD_REQINPROG 0x02
|
||||
#define NFSD_NEEDAUTH 0x04
|
||||
#define NFSD_AUTHFAIL 0x08
|
||||
|
||||
/*
|
||||
* This structure is used by the server for describing each request.
|
||||
*/
|
||||
/* This structure is used by the server for describing each request. */
|
||||
|
||||
struct nfsrv_descript
|
||||
{
|
||||
unsigned int nd_procnum; /* RPC # */
|
||||
int nd_flag; /* nd_flag */
|
||||
int nd_repstat; /* Reply status */
|
||||
u_int32_t nd_retxid; /* Reply xid */
|
||||
uint32_t nd_retxid; /* Reply xid */
|
||||
};
|
||||
|
||||
/* Bits for "nd_flag" */
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
#define ND_NFSV3 0x08
|
||||
extern int nfs_niothreads;
|
||||
extern TAILQ_HEAD(nfssvc_sockhead, nfssvc_sock) nfssvc_sockhead;
|
||||
extern int nfssvc_sockhead_flag;
|
||||
|
||||
extern struct pool nfsreqpl;
|
||||
extern struct pool nfs_node_pool;
|
||||
extern TAILQ_HEAD(nfsdhead, nfsd) nfsd_head;
|
||||
extern int nfsd_head_flag;
|
||||
|
||||
#define NFSD_CHECKSLP 0x01
|
||||
/****************************************************************************
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
#endif /* _KERNEL */
|
||||
#endif /* _NFS_NFS_H */
|
||||
|
||||
@@ -0,0 +1,145 @@
|
||||
/****************************************************************************
|
||||
* fs/nfs/nfs_args.h
|
||||
*
|
||||
* 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.
|
||||
* 4. 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.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __FS_NFS_NFS_ARGS_H
|
||||
#define __FS_NFS_NFS_ARGS_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
/* File identifier */
|
||||
|
||||
#define MAXFIDSZ 16
|
||||
|
||||
/* NFS mount option flags */
|
||||
|
||||
#define NFSMNT_SOFT 0x00000001 /* soft mount (hard is default) */
|
||||
#define NFSMNT_WSIZE 0x00000002 /* set write size */
|
||||
#define NFSMNT_RSIZE 0x00000004 /* set read size */
|
||||
#define NFSMNT_TIMEO 0x00000008 /* set initial timeout */
|
||||
#define NFSMNT_RETRANS 0x00000010 /* set number of request retries */
|
||||
#define NFSMNT_MAXGRPS 0x00000020 /* set maximum grouplist size */
|
||||
#define NFSMNT_INT 0x00000040 /* allow interrupts on hard mount */
|
||||
#define NFSMNT_NOCONN 0x00000080 /* Don't Connect the socket */
|
||||
|
||||
/* 0x100 free, was NFSMNT_NQNFS */
|
||||
|
||||
#define NFSMNT_NFSV3 0x00000200 /* Use NFS Version 3 protocol */
|
||||
|
||||
/* 0x400 free, was NFSMNT_KERB */
|
||||
|
||||
#define NFSMNT_DUMBTIMR 0x00000800 /* Don't estimate rtt dynamically */
|
||||
|
||||
/* 0x1000 free, was NFSMNT_LEASETERM */
|
||||
|
||||
#define NFSMNT_READAHEAD 0x00002000 /* set read ahead */
|
||||
#define NFSMNT_DEADTHRESH 0x00004000 /* set dead server retry thresh */
|
||||
#define NFSMNT_RESVPORT 0x00008000 /* Allocate a reserved port */
|
||||
#define NFSMNT_RDIRPLUS 0x00010000 /* Use Readdirplus for V3 */
|
||||
#define NFSMNT_READDIRSIZE 0x00020000 /* Set readdir size */
|
||||
#define NFSMNT_ACREGMIN 0x00040000
|
||||
#define NFSMNT_ACREGMAX 0x00080000
|
||||
#define NFSMNT_ACDIRMIN 0x00100000
|
||||
#define NFSMNT_ACDIRMAX 0x00200000
|
||||
#define NFSMNT_NOLOCKD 0x00400000 /* Locks are local */
|
||||
#define NFSMNT_NFSV4 0x00800000 /* Use NFS Version 4 protocol */
|
||||
#define NFSMNT_HASWRITEVERF 0x01000000 /* NFSv4 Write verifier */
|
||||
|
||||
/****************************************************************************
|
||||
* Public Types
|
||||
****************************************************************************/
|
||||
|
||||
typedef struct
|
||||
{
|
||||
int32_t val[2];
|
||||
} fsid_t; /* file system id type */
|
||||
|
||||
/* File identifier.
|
||||
* These are unique per filesystem on a single machine.
|
||||
*/
|
||||
|
||||
struct fid
|
||||
{
|
||||
unsigned short fid_len; /* length of data in bytes */
|
||||
unsigned short fid_reserved; /* force longword alignment */
|
||||
char fid_data[MAXFIDSZ]; /* data (variable length) */
|
||||
};
|
||||
|
||||
/* Generic file handle */
|
||||
|
||||
struct fhandle
|
||||
{
|
||||
fsid_t fh_fsid; /* File system id of mount point */
|
||||
struct fid fh_fid; /* File sys specific id */
|
||||
};
|
||||
|
||||
typedef struct fhandle fhandle_t;
|
||||
|
||||
/* Arguments to mount NFS */
|
||||
|
||||
struct nfs_args
|
||||
{
|
||||
int version; /* args structure version number */
|
||||
struct sockaddr *addr; /* file server address */
|
||||
int addrlen; /* length of address */
|
||||
int sotype; /* Socket type */
|
||||
int proto; /* and Protocol */
|
||||
unsigned char *fh; /* File handle to be mounted */
|
||||
int fhsize; /* Size, in bytes, of fh */
|
||||
int flags; /* flags */
|
||||
int wsize; /* write size in bytes */
|
||||
int rsize; /* read size in bytes */
|
||||
int readdirsize; /* readdir size in bytes */
|
||||
int timeo; /* initial timeout in .1 secs */
|
||||
int retrans; /* times to retry send */
|
||||
int maxgrouplist; /* Max. size of group list */
|
||||
int readahead; /* # of blocks to readahead */
|
||||
int leaseterm; /* Term (sec) of lease */
|
||||
int deadthresh; /* Retrans threshold */
|
||||
char *hostname; /* server's name */
|
||||
};
|
||||
|
||||
#endif /* __FS_NFS_NFS_ARGS_H */
|
||||
@@ -1,6 +1,14 @@
|
||||
/*
|
||||
* Copyright (c) 1989, 1993
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
/****************************************************************************
|
||||
* fs/nfs/nfs_mount.h
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
@@ -29,13 +37,33 @@
|
||||
* 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.
|
||||
*/
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef _NFSCLIENT_NFSMOUNT_H_
|
||||
#define _NFSCLIENT_NFSMOUNT_H_
|
||||
#ifndef __FS_NFS_NFS_MOUNT_H
|
||||
#define __FS_NFS_NFS_MOUNT_H
|
||||
|
||||
/*
|
||||
* Mount structure.
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
#define NFSOP(nmp, op) (*nmp->nm_nfsops->nn_##op)
|
||||
#define NFSHASOP(nmp, op) (nmp->nm_nfsops->nn_##op != NULL)
|
||||
#define NFSDAT(nmp, nam) (nmp->nm_nfsops->nn_##nam)
|
||||
|
||||
/* Convert mount ptr to nfsmount ptr. */
|
||||
|
||||
#define VFSTONFS(mp) ((struct nfsmount *)((mp)->i_private))
|
||||
|
||||
/****************************************************************************
|
||||
* Public Types
|
||||
****************************************************************************/
|
||||
|
||||
/* Mount structure.
|
||||
* One allocated on every NFS mount.
|
||||
* Holds NFS specific information for mount.
|
||||
*/
|
||||
@@ -44,7 +72,7 @@ struct nfsmount
|
||||
{
|
||||
int nm_flag; /* Flags for soft/hard... */
|
||||
int nm_state; /* Internal state flags */
|
||||
struct mount *nm_mountp; /* Vfs structure for this filesystem */
|
||||
struct inode *nm_mountp; /* Vfs structure for this filesystem */
|
||||
int nm_numgrps; /* Max. size of groupslist */
|
||||
nfsfh_t nm_fh; /* File handle of root dir */
|
||||
int nm_fhsize; /* Size of root file handle */
|
||||
@@ -70,37 +98,30 @@ struct nfsmount
|
||||
int nm_acdirmax; /* Directory attr cache max lifetime */
|
||||
int nm_acregmin; /* Reg file attr cache min lifetime */
|
||||
int nm_acregmax; /* Reg file attr cache max lifetime */
|
||||
u_char nm_verf[NFSX_V3WRITEVERF]; /* V3 write verifier */
|
||||
TAILQ_HEAD(, buf) nm_bufq; /* async io buffer queue */
|
||||
short nm_bufqlen; /* number of buffers in queue */
|
||||
short nm_bufqwant; /* process wants to add to the queue */
|
||||
int nm_bufqiods; /* number of iods processing queue */
|
||||
u_int64_t nm_maxfilesize; /* maximum file size */
|
||||
|
||||
struct nfsx_nfsops *nm_nfsops; /* Version specific ops. */
|
||||
|
||||
/* NFSv4 */
|
||||
|
||||
uint64_t nm_clientid;
|
||||
fsid_t nm_fsid;
|
||||
u_int nm_lease_time;
|
||||
time_t nm_last_renewal;
|
||||
|
||||
struct vnode *nm_dvp;
|
||||
unsigned char nm_verf[NFSX_V3WRITEVERF]; /* V3 write verifier */
|
||||
};
|
||||
|
||||
#define NFSOP(nmp, op) (*nmp->nm_nfsops->nn_##op)
|
||||
#define NFSHASOP(nmp, op) (nmp->nm_nfsops->nn_##op != NULL)
|
||||
#define NFSDAT(nmp, nam) (nmp->nm_nfsops->nn_##nam)
|
||||
/****************************************************************************
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
#if defined(_KERNEL)
|
||||
/* Prototypes for NFS mount operations: */
|
||||
|
||||
/*
|
||||
* Convert mount ptr to nfsmount ptr.
|
||||
*/
|
||||
|
||||
# define VFSTONFS(mp) ((struct nfsmount *)((mp)->mnt_data))
|
||||
|
||||
#endif
|
||||
int nfs_mount(struct mount *, const char *, void *, struct nameidata *,
|
||||
struct proc *);
|
||||
int mountnfs(struct nfs_args *, struct mount *, struct mbuf *, char *, char *);
|
||||
void nfs_decode_args(struct nfsmount *, struct nfs_args *, struct nfs_args *);
|
||||
int nfs_start(struct mount *, int, struct proc *);
|
||||
int nfs_unmount(struct mount *, int, struct proc *);
|
||||
int nfs_root(struct mount *, struct vnode **);
|
||||
int nfs_quotactl(struct mount *, int, uid_t, caddr_t, struct proc *);
|
||||
int nfs_statfs(struct mount *, struct statfs *, struct proc *);
|
||||
int nfs_sync(struct mount *, int, struct ucred *, struct proc *);
|
||||
int nfs_vget(struct mount *, ino_t, struct vnode **);
|
||||
int nfs_fhtovp(struct mount *, struct fid *, struct vnode **);
|
||||
int nfs_vptofh(struct vnode *, struct fid *);
|
||||
int nfs_fsinfo(struct nfsmount *, struct vnode *, struct ucred *,
|
||||
struct proc *);
|
||||
void nfs_init(void);
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,157 @@
|
||||
/****************************************************************************
|
||||
* fs/nfs/nfs_mount.h
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __FS_NFS_NFS_NODE_H
|
||||
#define __FS_NFS_NFS_NODE_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef _NFS_NFS_H_
|
||||
# include <nfs/nfs.h>
|
||||
#endif
|
||||
|
||||
#include <sys/rwlock.h>
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
/* Values for n_commitflags */
|
||||
|
||||
#define NFS_COMMIT_PUSH_VALID 0x0001/* push range valid */
|
||||
#define NFS_COMMIT_PUSHED_VALID 0x0002/* pushed range valid */
|
||||
|
||||
#define n_atim n_un1.nf_atim
|
||||
#define n_mtim n_un2.nf_mtim
|
||||
#define n_cookieverf n_un1.nd_cookieverf
|
||||
#define n_direofoffset n_un2.nd_direof
|
||||
|
||||
/* Flags for n_flag */
|
||||
|
||||
#define NFLUSHWANT 0x0001/* Want wakeup from a flush in prog. */
|
||||
#define NFLUSHINPROG 0x0002/* Avoid multiple calls to vinvalbuf() */
|
||||
#define NMODIFIED 0x0004/* Might have a modified buffer in bio */
|
||||
#define NWRITEERR 0x0008/* Flag write errors so close will know */
|
||||
#define NACC 0x0100/* Special file accessed */
|
||||
#define NUPD 0x0200/* Special file updated */
|
||||
#define NCHG 0x0400/* Special file times changed */
|
||||
|
||||
#define NFS_INVALIDATE_ATTRCACHE(np) ((np)->n_attrstamp = 0)
|
||||
|
||||
/* Convert between nfsnode pointers and vnode pointers */
|
||||
|
||||
#define VTONFS(vp) ((struct nfsnode *)(vp)->f_priv)
|
||||
#define NFSTOV(np) ((np)->n_vnode)
|
||||
|
||||
/****************************************************************************
|
||||
* Public Types
|
||||
****************************************************************************/
|
||||
|
||||
/* Silly rename structure that hangs off the nfsnode until the name
|
||||
* can be removed by nfs_inactive()
|
||||
|
||||
struct sillyrename
|
||||
{
|
||||
struct ucred *s_cred;
|
||||
struct vnode *s_dvp;
|
||||
long s_namlen;
|
||||
char s_name[24];
|
||||
};
|
||||
*/
|
||||
|
||||
/* The nfsnode is the nfs equivalent to ufs's inode. Any similarity
|
||||
* is purely coincidental.
|
||||
* There is a unique nfsnode allocated for each active file,
|
||||
* each current directory, each mounted-on file, text file, and the root.
|
||||
* An nfsnode is 'named' by its file handle. (nget/nfs_node.c)
|
||||
* If this structure exceeds 256 bytes (it is currently 256 using 4.4BSD-Lite
|
||||
* type definitions), file handles of > 32 bytes should probably be split out
|
||||
* into a separate malloc()'d data structure. (Reduce the size of nfsfh_t by
|
||||
* changing the definition in sys/mount.h of NFS_SMALLFH.)
|
||||
* NB: Hopefully the current order of the fields is such that everything will
|
||||
* be well aligned and, therefore, tightly packed.
|
||||
*/
|
||||
|
||||
struct nfsnode
|
||||
{
|
||||
RB_ENTRY(nfsnode) n_entry; /* filehandle/node tree. */
|
||||
uint64_t n_size; /* Current size of file */
|
||||
//struct vattr n_vattr; /* Vnode attribute cache */
|
||||
time_t n_attrstamp; /* Attr. cache timestamp */
|
||||
struct timespec n_mtime; /* Prev modify time. */
|
||||
time_t n_ctime; /* Prev create time. */
|
||||
nfsfh_t *n_fhp; /* NFS File Handle */
|
||||
struct inode *n_inode; /* associated inode */
|
||||
//struct lockf *n_lockf; /* Locking record of file */
|
||||
int n_error; /* Save write error value */
|
||||
union
|
||||
{
|
||||
struct timespec nf_atim; /* Special file times */
|
||||
nfsuint64 nd_cookieverf; /* Cookie verifier (dir only) */
|
||||
} n_un1;
|
||||
union
|
||||
{
|
||||
struct timespec nf_mtim;
|
||||
off_t nd_direof; /* Dir. EOF offset cache */
|
||||
} n_un2;
|
||||
//struct sillyrename *n_sillyrename; /* Ptr to silly rename struct */
|
||||
short n_fhsize; /* size in bytes, of fh */
|
||||
short n_flag; /* Flag for locking.. */
|
||||
nfsfh_t n_fh; /* Small File Handle */
|
||||
time_t n_accstamp; /* Access cache timestamp */
|
||||
uid_t n_accuid; /* Last access requester */
|
||||
int n_accmode; /* Last mode requested */
|
||||
int n_accerror; /* Last returned error */
|
||||
//struct ucred *n_rcred;
|
||||
//struct ucred *n_wcred;
|
||||
|
||||
off_t n_pushedlo; /* 1st blk in commited range */
|
||||
off_t n_pushedhi; /* Last block in range */
|
||||
off_t n_pushlo; /* 1st block in commit range */
|
||||
off_t n_pushhi; /* Last block in range */
|
||||
//struct rwlock n_commitlock; /* Serialize commits */
|
||||
int n_commitflags;
|
||||
};
|
||||
|
||||
#endif /* __FS_NFS_NFS_NODE_H */
|
||||
+42
-33
@@ -1,6 +1,14 @@
|
||||
/*
|
||||
* Copyright (c) 1989, 1993
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
/****************************************************************************
|
||||
* fs/nfs/nfs_proto.h
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
@@ -29,13 +37,21 @@
|
||||
* 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.
|
||||
*/
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef _NFS_NFSPROTO_H_
|
||||
#define _NFS_NFSPROTO_H_
|
||||
#ifndef __FS_NFS_NFS_PROTO_H
|
||||
#define __FS_NFS_NFS_PROTO_H
|
||||
|
||||
/*
|
||||
* Constants as defined in the Sun NFS Version 2 and 3 specs.
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
/* Constants as defined in the Sun NFS Version 2 and 3 specs.
|
||||
* "NFS: Network File System Protocol Specification" RFC1094
|
||||
* and in the "NFS: Network File System Version 3 Protocol
|
||||
* Specification"
|
||||
@@ -124,7 +140,8 @@
|
||||
#define NFSX_V3FSINFO 48
|
||||
#define NFSX_V3PATHCONF 24
|
||||
|
||||
/* variants for both versions */
|
||||
/* Variants for both versions */
|
||||
|
||||
#define NFSX_FH(v3) ((v3) ? (NFSX_V3FHMAX + NFSX_UNSIGNED) : \
|
||||
NFSX_V2FH)
|
||||
#define NFSX_SRVFH(v3) ((v3) ? NFSX_V3FH : NFSX_V2FH)
|
||||
@@ -142,7 +159,7 @@
|
||||
(2 * NFSX_UNSIGNED))
|
||||
#define NFSX_STATFS(v3) ((v3) ? NFSX_V3STATFS : NFSX_V2STATFS)
|
||||
|
||||
/* nfs rpc procedure numbers (before version mapping) */
|
||||
/* NFS RPC procedure numbers (before version mapping) */
|
||||
|
||||
#define NFSPROC_NULL 0
|
||||
#define NFSPROC_GETATTR 1
|
||||
@@ -191,9 +208,7 @@
|
||||
#define NFSV2PROC_READDIR 16
|
||||
#define NFSV2PROC_STATFS 17
|
||||
|
||||
/*
|
||||
* Constants used by the Version 3 protocol for various RPCs
|
||||
*/
|
||||
/* Constants used by the Version 3 protocol for various RPCs */
|
||||
|
||||
#define NFSV3SATTRTIME_DONTCHANGE 0
|
||||
#define NFSV3SATTRTIME_TOSERVER 1
|
||||
@@ -230,6 +245,14 @@
|
||||
#define nfsv2tov_type(a) nv2tov_type[fxdr_unsigned(uint32_t,(a))&0x7]
|
||||
#define nfsv3tov_type(a) nv3tov_type[fxdr_unsigned(uint32_t,(a))&0x7]
|
||||
|
||||
#ifndef NFS_MAXFHSIZE
|
||||
# define NFS_MAXFHSIZE 64
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Types
|
||||
****************************************************************************/
|
||||
|
||||
/* File types */
|
||||
|
||||
typedef enum
|
||||
@@ -244,15 +267,7 @@ typedef enum
|
||||
NFFIFO = 7
|
||||
} nfstype;
|
||||
|
||||
/* Structs for common parts of the rpc's */
|
||||
|
||||
/*
|
||||
* File Handle (32 bytes for version 2), variable up to 64 for version 3.
|
||||
*/
|
||||
|
||||
#ifndef NFS_MAXFHSIZE
|
||||
# define NFS_MAXFHSIZE 64
|
||||
#endif
|
||||
/* File Handle (32 bytes for version 2), variable up to 64 for version 3. */
|
||||
|
||||
union nfsfh
|
||||
{
|
||||
@@ -275,8 +290,7 @@ struct nfsv3_time
|
||||
};
|
||||
typedef struct nfsv3_time nfstime3;
|
||||
|
||||
/*
|
||||
* Quads are defined as arrays of 2 longs to ensure dense packing for the
|
||||
/* Quads are defined as arrays of 2 longs to ensure dense packing for the
|
||||
* protocol and to facilitate xdr conversion.
|
||||
*/
|
||||
|
||||
@@ -286,9 +300,7 @@ struct nfs_uquad
|
||||
};
|
||||
typedef struct nfs_uquad nfsuint64;
|
||||
|
||||
/*
|
||||
* NFS Version 3 special file number.
|
||||
*/
|
||||
/* NFS Version 3 special file number. */
|
||||
|
||||
struct nfsv3_spec
|
||||
{
|
||||
@@ -297,8 +309,7 @@ struct nfsv3_spec
|
||||
};
|
||||
typedef struct nfsv3_spec nfsv3spec;
|
||||
|
||||
/*
|
||||
* File attributes and setable attributes. These structures cover both
|
||||
/* File attributes and setable attributes. These structures cover both
|
||||
* NFS version 2 and the version 3 protocol. Note that the union is only
|
||||
* used so that one pointer can refer to both variants. These structures
|
||||
* go out on the wire and must be densely packed, so no quad data types
|
||||
@@ -342,7 +353,7 @@ struct nfs_fattr
|
||||
} fa_un;
|
||||
};
|
||||
|
||||
/* and some ugly defines for accessing union components */
|
||||
/* And some ugly defines for accessing union components */
|
||||
|
||||
#define fa2_size fa_un.fa_nfsv2.nfsv2fa_size
|
||||
#define fa2_blocksize fa_un.fa_nfsv2.nfsv2fa_blocksize
|
||||
@@ -372,9 +383,7 @@ struct nfsv2_sattr
|
||||
nfstime2 sa_mtime;
|
||||
};
|
||||
|
||||
/*
|
||||
* NFS Version 3 sattr structure for the new node creation case.
|
||||
*/
|
||||
/* NFS Version 3 sattr structure for the new node creation case. */
|
||||
|
||||
struct nfsv3_sattr
|
||||
{
|
||||
|
||||
+76
-88
@@ -1,7 +1,15 @@
|
||||
/*
|
||||
* copyright (c) 2004
|
||||
* the regents of the university of michigan
|
||||
* all rights reserved
|
||||
/****************************************************************************
|
||||
* fs/nfs/nfs_socket.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) 2004
|
||||
* the regents of the university of michigan
|
||||
* all rights reserved
|
||||
*
|
||||
* permission is granted to use, copy, create derivative works and redistribute
|
||||
* this software and such derivative works for any purpose, so long as the name
|
||||
@@ -20,54 +28,72 @@
|
||||
* consequential damages, with respect to any claim arising out of or in
|
||||
* connection with the use of the software, even if it has been or is hereafter
|
||||
* advised of the possibility of such damages.
|
||||
*/
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
/* wrappers around rpcclnt */
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
/* XXX add tryagain code in nfs_request_xx */
|
||||
|
||||
/*
|
||||
* Socket operations for use by nfs
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/malloc.h>
|
||||
#include <sys/mbuf.h>
|
||||
#include <sys/mount.h>
|
||||
#include <sys/socket.h>
|
||||
#include <queue.h>
|
||||
#include <time.h>
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <debug.h>
|
||||
|
||||
#include "rpc_clnt.h"
|
||||
#include "nfs_args.h"
|
||||
#include "rpc.h"
|
||||
#include "rpc_v2.h"
|
||||
#include "nfs_proto.h
|
||||
#include "nfs_proto.h"
|
||||
#include "nfs.h"
|
||||
#include "xdr_subs.h"
|
||||
#include "nfsmount.h"
|
||||
//#include <nfsx/nfs_common.h>
|
||||
#include "nfs_mount.h"
|
||||
#include "nfs_socket.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
/* Flag translations */
|
||||
|
||||
#define nfsmnt_to_rpcclnt(nf, rf, name) do { \
|
||||
if (nf & NFSMNT_##name)) { \
|
||||
rf |= RPCCLNT_##name \
|
||||
if (nf & NFSMNT_##name) { \
|
||||
rf |= RPCCLNT_##name; \
|
||||
} \
|
||||
} while(0)
|
||||
|
||||
static struct rpc_program nfs2_program =
|
||||
{
|
||||
NFS_PROG, NFS_VER2, "NFSv2"
|
||||
};
|
||||
/****************************************************************************
|
||||
* Private Variables
|
||||
****************************************************************************/
|
||||
|
||||
static struct rpc_program nfs3_program =
|
||||
{
|
||||
NFS_PROG, NFS_VER3, "NFSv3"
|
||||
};
|
||||
|
||||
static struct rpc_program nfs4_program =
|
||||
/****************************************************************************
|
||||
* Public Variables
|
||||
****************************************************************************/
|
||||
|
||||
int nfs_ticks;
|
||||
|
||||
/****************************************************************************
|
||||
* Private Functions
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
****************************************************************************/
|
||||
|
||||
void nfs_init(void)
|
||||
{
|
||||
NFS_PROG, NFS_VER4, "NFSv4"
|
||||
};
|
||||
rpcclnt_init();
|
||||
}
|
||||
|
||||
/* XXXMARIUS: name collision */
|
||||
int nfsx_connect(struct nfsmount *nmp)
|
||||
@@ -91,10 +117,10 @@ int nfsx_connect(struct nfsmount *nmp)
|
||||
nfsmnt_to_rpcclnt(nmp->nm_flag, rpc->rc_flag, NOCONN);
|
||||
nfsmnt_to_rpcclnt(nmp->nm_flag, rpc->rc_flag, DUMBTIMR);
|
||||
|
||||
rpc->rc_flag |= RPCCLNT_REDIRECT; /* Make this a mount option. */
|
||||
//rpc->rc_flag |= RPCCLNT_REDIRECT; /* Make this a mount option. */
|
||||
|
||||
rpc->rc_authtype = RPCAUTH_NULL; /* for now */
|
||||
rpc->rc_servername = nmp->nm_mountp->mnt_stat.f_mntfromname;
|
||||
//rpc->rc_servername = nmp->nm_mountp->mnt_stat.f_mntfromname;
|
||||
rpc->rc_name = (struct sockaddr *)nmp->nm_nam;
|
||||
|
||||
rpc->rc_sotype = nmp->nm_sotype;
|
||||
@@ -132,93 +158,55 @@ void nfsx_safedisconnect(struct nfsmount *nmp)
|
||||
}
|
||||
#endif
|
||||
|
||||
int
|
||||
nfsx_request_xx(struct nfsmount *nm, struct vnode *vp, struct mbuf *mrest,
|
||||
int procnum, cthread_t * td, struct ucred *cred,
|
||||
struct mbuf **mrp, struct mbuf **mdp, caddr_t * dposp)
|
||||
int nfsx_request_xx(struct nfsmount *nm, int procnum)
|
||||
{
|
||||
int error;
|
||||
u_int32_t *tl;
|
||||
struct nfsmount *nmp;
|
||||
struct rpcclnt *clnt;
|
||||
struct mbuf *md, *mrep;
|
||||
caddr_t dpos;
|
||||
struct rpc_reply reply;
|
||||
#if 0
|
||||
int t1;
|
||||
#endif /* 0 */
|
||||
|
||||
if (vp != NULL)
|
||||
nmp = VFSTONFS(vp->v_mount);
|
||||
else
|
||||
nmp = nm;
|
||||
int trylater_delay;
|
||||
|
||||
nmp = nm;
|
||||
clnt = &nmp->nm_rpcclnt;
|
||||
|
||||
#if 0
|
||||
tryagain:
|
||||
#endif
|
||||
|
||||
memset(&reply, 0, sizeof(reply));
|
||||
|
||||
if ((error = rpcclnt_request(clnt, mrest, procnum, td, cred, &reply)) != 0)
|
||||
if ((error = rpcclnt_request(clnt, procnum, &reply)) != 0)
|
||||
goto out;
|
||||
|
||||
mrep = reply.mrep;
|
||||
md = reply.result_md;
|
||||
dpos = reply.result_dpos;
|
||||
|
||||
tl = nfsm_dissect(u_int32_t *, NFSX_UNSIGNED);
|
||||
if (*tl != 0)
|
||||
if (reply->rpc_verfi.authtype != 0)
|
||||
{
|
||||
error = fxdr_unsigned(int, *tl);
|
||||
#if 0
|
||||
error = fxdr_unsigned(int, reply->rpc_verfi.authtype);
|
||||
|
||||
if ((nmp->nm_flag & NFSMNT_NFSV3) && error == NFSERR_TRYLATER)
|
||||
{
|
||||
m_freem(mrep);
|
||||
error = 0;
|
||||
waituntil = time_second + trylater_delay;
|
||||
while (time_second < waituntil)
|
||||
(void)tsleep(&lbolt, PSOCK, "nqnfstry", 0);
|
||||
trylater_delay *= nfs_backoff[trylater_cnt];
|
||||
if (trylater_cnt < NFS_NBACKOFF - 1)
|
||||
trylater_cnt++;
|
||||
trylater_delay *= NFS_TIMEOUTMUL;
|
||||
if (trylater_delay > NFS_MAXTIMEO)
|
||||
{
|
||||
trylater_delay = NFS_MAXTIMEO;
|
||||
}
|
||||
goto tryagain;
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
** If the File Handle was stale, invalidate the
|
||||
** lookup cache, just in case.
|
||||
**/
|
||||
if (error == ESTALE)
|
||||
if (vp != NULL)
|
||||
cache_purge(vp);
|
||||
else
|
||||
printf("%s: ESTALE on mount from server %s\n",
|
||||
nmp->nm_rpcclnt.rc_prog->prog_name,
|
||||
nmp->nm_rpcclnt.rc_servername);
|
||||
printf("%s: ESTALE on mount from server \n",
|
||||
nmp->nm_rpcclnt.rc_prog->prog_name);
|
||||
else
|
||||
printf("%s: unknown error %d from server %s\n",
|
||||
nmp->nm_rpcclnt.rc_prog->prog_name, error,
|
||||
nmp->nm_rpcclnt.rc_servername);
|
||||
printf("%s: unknown error %d from server \n",
|
||||
nmp->nm_rpcclnt.rc_prog->prog_name, error);
|
||||
goto out;
|
||||
}
|
||||
|
||||
m_freem(mrest);
|
||||
|
||||
*mrp = mrep;
|
||||
*mdp = md;
|
||||
*dposp = dpos;
|
||||
return (0);
|
||||
nfsmout:
|
||||
|
||||
out:
|
||||
/* XXX: don't free mrest if an error occured, to allow caller to retry */
|
||||
m_freem(mrest);
|
||||
m_freem(reply.mrep);
|
||||
*mrp = NULL;
|
||||
*mdp = NULL;
|
||||
|
||||
return (error);
|
||||
}
|
||||
|
||||
|
||||
+36
-36
@@ -1,7 +1,15 @@
|
||||
/*
|
||||
* copyright (c) 2004
|
||||
* the regents of the university of michigan
|
||||
* all rights reserved
|
||||
/****************************************************************************
|
||||
* fs/nfs/nfs_socket.h
|
||||
*
|
||||
* 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) 2004
|
||||
* the regents of the university of michigan
|
||||
* all rights reserved
|
||||
*
|
||||
* permission is granted to use, copy, create derivative works and redistribute
|
||||
* this software and such derivative works for any purpose, so long as the name
|
||||
@@ -20,50 +28,42 @@
|
||||
* consequential damages, with respect to any claim arising out of or in
|
||||
* connection with the use of the software, even if it has been or is hereafter
|
||||
* advised of the possibility of such damages.
|
||||
*/
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __NFSX_H_
|
||||
#define __NFSX_H_
|
||||
#ifndef __FS_NFS_NFS_SOCKET_H
|
||||
#define __FS_NFS_NFS_SOCKET_H
|
||||
|
||||
/* nfs_socket interface */
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
/* XXXMARIUS: name collision */
|
||||
/****************************************************************************
|
||||
* Pre-processor definitions
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
int nfsx_connect(struct nfsmount *);
|
||||
void nfsx_disconnect(struct nfsmount *);
|
||||
#ifdef CONFIG_NFS_TCPIP
|
||||
int nfsx_sigintr(struct nfsmount *, struct nfsreq *, cthread_t *);
|
||||
void nfsx_safedisconnect(struct nfsmount *);
|
||||
int nfsx_request_xx(struct nfsmount *, struct vnode *, struct mbuf *, int,
|
||||
cthread_t *, struct ucred *, struct mbuf **, struct mbuf **,
|
||||
caddr_t *);
|
||||
#define nfs_safedisconnect nfsx_safedisconnect
|
||||
#endif
|
||||
int nfsx_request_xx(struct nfsmount *, int);
|
||||
int nfsx_nmcancelreqs(struct nfsmount *);
|
||||
|
||||
#define nfs_connect nfs_connect_nfsx
|
||||
#define nfs_disconnect nfs_disconnect_nfsx
|
||||
#define nfs_nmcancelreqs nfsx_nmcancelreqs
|
||||
#define nfsx_request(nmp, m) \
|
||||
nfsx_request_xx(nmp, m)
|
||||
|
||||
#ifdef CONFIG_NFS_TCPIP
|
||||
#define nfs_sigintr nfs_sigintr_nfsx
|
||||
|
||||
/* XXX dros: defined in nfs.h */
|
||||
|
||||
#if 0
|
||||
void nfs_safedisconnect(struct nfsmount *);
|
||||
#endif
|
||||
|
||||
#define nfsx_request(vp, m, p, td, cr, m2, m3, c) \
|
||||
nfsx_request_xx(NULL, vp, m, p, td, cr, m2, m3, c)
|
||||
|
||||
#define nfsx_request_mnt(nmp, m, p, td, cr, m2, m3, c) \
|
||||
nfsx_request_xx(nmp, NULL, m, p, td, cr, m2, m3, c)
|
||||
|
||||
/* don't use this.. use nfsx_request() of nfsx_request_mnt() */
|
||||
|
||||
int nfs_request_xx(struct nfsmount *, struct vnode *, struct mbuf *, int,
|
||||
cthread_t *, struct ucred *, struct mbuf **, struct mbuf **,
|
||||
caddr_t *);
|
||||
|
||||
/* XXX dros: defined in nfs.h */
|
||||
|
||||
#if 0
|
||||
int nfs_nmcancelreqs(struct nfsmount *);
|
||||
#endif
|
||||
|
||||
#endif /* __NFSX_H_ */
|
||||
#endif /* __FS_NFS_NFS_SOCKET_H */
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
+3035
File diff suppressed because it is too large
Load Diff
+37
-16
@@ -1,7 +1,15 @@
|
||||
/*
|
||||
* copyright (c) 2003
|
||||
* the regents of the university of michigan
|
||||
* all rights reserved
|
||||
/****************************************************************************
|
||||
* fs/nfs/rpc.h
|
||||
*
|
||||
* 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) 2003
|
||||
* the regents of the university of michigan
|
||||
* all rights reserved
|
||||
*
|
||||
* permission is granted to use, copy, create derivative works and redistribute
|
||||
* this software and such derivative works for any purpose, so long as the name
|
||||
@@ -20,11 +28,9 @@
|
||||
* consequential damages, with respect to any claim arising out of or in
|
||||
* connection with the use of the software, even if it has been or is hereafter
|
||||
* advised of the possibility of such damages.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (c) 1989, 1993
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
*
|
||||
* Copyright (c) 1989, 1993
|
||||
* 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.
|
||||
@@ -57,13 +63,22 @@
|
||||
* 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.
|
||||
*/
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef _RPCCLNT_H_
|
||||
#define _RPCCLNT_H_
|
||||
#ifndef __FS_NFS_RPC_H
|
||||
#define __FS_NFS_RPC_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
/* for rpcclnt's rc_flags */
|
||||
|
||||
#define RPCCLNT_SOFT 0x001 /* soft mount (hard is details) */
|
||||
@@ -78,6 +93,10 @@
|
||||
#define RPCCLNT_RCVLOCK 0x400
|
||||
#define RPCCLNT_WANTRCV 0x800
|
||||
|
||||
/****************************************************************************
|
||||
* Public Types
|
||||
****************************************************************************/
|
||||
|
||||
struct rpc_program
|
||||
{
|
||||
uint32_t prog_id;
|
||||
@@ -155,8 +174,7 @@ struct rpc_reply
|
||||
struct rpc_auth_info rpc_verfi;
|
||||
};
|
||||
|
||||
/*
|
||||
* RPC Client connection context.
|
||||
/* RPC Client connection context.
|
||||
* One allocated on every NFS mount.
|
||||
* Holds RPC specific information for mount.
|
||||
*/
|
||||
@@ -202,19 +220,22 @@ struct rpcclnt
|
||||
|
||||
struct rpc_program * rc_prog;
|
||||
|
||||
char *rc_servername;
|
||||
//char *rc_servername;
|
||||
|
||||
int rc_proctlen; /* if == 0 then rc_proct == NULL */
|
||||
int * rc_proct;
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
/*
|
||||
void rpcclnt_create(struct rpcclnt ** rpc);
|
||||
void rpcclnt_destroy(struct rpcclnt * rpc);
|
||||
|
||||
#define rpcclnt_get(X) rpcclnt_create(&(X))
|
||||
#define rpcclnt_put(X) rpcclnt_destroy(X)
|
||||
|
||||
*/
|
||||
|
||||
void rpcclnt_init(void);
|
||||
|
||||
+497
-434
File diff suppressed because it is too large
Load Diff
+32
-13
@@ -1,7 +1,15 @@
|
||||
/*
|
||||
* copyright (c) 2003
|
||||
* the regents of the university of michigan
|
||||
* all rights reserved
|
||||
/****************************************************************************
|
||||
* fs/nfs/rpc_clnt_private.h
|
||||
*
|
||||
* 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) 2003
|
||||
* the regents of the university of michigan
|
||||
* all rights reserved
|
||||
*
|
||||
* permission is granted to use, copy, create derivative works and redistribute
|
||||
* this software and such derivative works for any purpose, so long as the name
|
||||
@@ -20,11 +28,9 @@
|
||||
* consequential damages, with respect to any claim arising out of or in
|
||||
* connection with the use of the software, even if it has been or is hereafter
|
||||
* advised of the possibility of such damages.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (c) 1989, 1993
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
*
|
||||
* Copyright (c) 1989, 1993
|
||||
* 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.
|
||||
@@ -57,10 +63,19 @@
|
||||
* 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.
|
||||
*/
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef _RPCCLNT_PRIVATE_H_
|
||||
#define _RPCCLNT_PRIVATE_H_
|
||||
#ifndef __FS_NFS_RPC_CLIENT_PRIVATE_H
|
||||
#define __FS_NFS_RPC_CLIENT_PRIVATE_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
#define RPCCLNT_DEBUG 1
|
||||
|
||||
@@ -114,6 +129,10 @@
|
||||
SIGISMEMBER(set, SIGHUP) || SIGISMEMBER(set, SIGKILL) || \
|
||||
SIGISMEMBER(set, SIGQUIT))
|
||||
|
||||
/****************************************************************************
|
||||
* Public Types
|
||||
****************************************************************************/
|
||||
|
||||
/* global rpcstats
|
||||
* XXX should be per rpcclnt */
|
||||
|
||||
@@ -126,4 +145,4 @@ struct rpcstats
|
||||
int rpcinvalid;
|
||||
};
|
||||
|
||||
#endif /* _RPCCLNT_PRIVATE_H_ */
|
||||
#endif /* __FS_NFS_RPC_CLIENT_PRIVATE_H */
|
||||
|
||||
@@ -59,34 +59,6 @@ struct lock
|
||||
int dummy;
|
||||
};
|
||||
|
||||
typedef struct { int32_t val[2]; } fsid_t; /* file system id type */
|
||||
|
||||
/*
|
||||
* File identifier.
|
||||
* These are unique per filesystem on a single machine.
|
||||
*/
|
||||
|
||||
#define MAXFIDSZ 16
|
||||
|
||||
struct fid
|
||||
{
|
||||
unsigned short fid_len; /* length of data in bytes */
|
||||
unsigned short fid_reserved; /* force longword alignment */
|
||||
char fid_data[MAXFIDSZ]; /* data (variable length) */
|
||||
};
|
||||
|
||||
/*
|
||||
* Generic file handle
|
||||
*/
|
||||
|
||||
struct fhandle
|
||||
{
|
||||
fsid_t fh_fsid; /* File system id of mount point */
|
||||
struct fid fh_fid; /* File sys specific id */
|
||||
};
|
||||
|
||||
typedef struct fhandle fhandle_t;
|
||||
|
||||
struct componentname
|
||||
{
|
||||
/* Arguments to lookup. */
|
||||
|
||||
@@ -0,0 +1,72 @@
|
||||
/****************************************************************************
|
||||
* include/nuttx/fs/nfs.h
|
||||
*
|
||||
* 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>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* 3. Neither the name NuttX nor the names of its contributors may be
|
||||
* used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __INCLUDE_NUTTX_FS_NFS_H
|
||||
#define __INCLUDE_NUTTX_FS_NFS_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Type Definitions
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef __cplusplus
|
||||
#define EXTERN extern "C"
|
||||
extern "C" {
|
||||
#else
|
||||
#define EXTERN extern
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
#undef EXTERN
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __INCLUDE_NUTTX_FS_NFS_H */
|
||||
Reference in New Issue
Block a user