summaryrefslogtreecommitdiff
path: root/sys/nfs/nfs_serv.c
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-03-31 13:16:48 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-03-31 13:16:48 +0000
commit21504931d6eeb371924b7751ab95d7209ef959db (patch)
treed80b42388119345065cd25ccf71050a3ed63ae26 /sys/nfs/nfs_serv.c
parent633344117da42400851635ede8dd4464fb125ae7 (diff)
From NetBSD: NFSv3 import (tomorrow's Net's kernel)
Open's patches kept in. i'll possibly take a look at Lite2 soon, is there smth usefull ?..
Diffstat (limited to 'sys/nfs/nfs_serv.c')
-rw-r--r--sys/nfs/nfs_serv.c2878
1 files changed, 2134 insertions, 744 deletions
diff --git a/sys/nfs/nfs_serv.c b/sys/nfs/nfs_serv.c
index 51c402b992e..88115b259ae 100644
--- a/sys/nfs/nfs_serv.c
+++ b/sys/nfs/nfs_serv.c
@@ -1,5 +1,5 @@
-/* $OpenBSD: nfs_serv.c,v 1.3 1996/02/29 09:24:52 niklas Exp $ */
-/* $NetBSD: nfs_serv.c,v 1.22 1996/02/09 21:48:27 christos Exp $ */
+/* $OpenBSD: nfs_serv.c,v 1.4 1996/03/31 13:15:41 mickey Exp $ */
+/* $NetBSD: nfs_serv.c,v 1.25 1996/03/02 15:55:52 jtk Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -36,11 +36,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * @(#)nfs_serv.c 8.4 (Berkeley) 6/4/94
+ * @(#)nfs_serv.c 8.7 (Berkeley) 5/14/95
*/
/*
- * nfs version 2 server calls to vnode ops
+ * nfs version 2 and 3 server calls to vnode ops
* - these routines generally have 3 phases
* 1 - break down and validate rpc request in mbuf list
* 2 - do the vnode ops for the request
@@ -55,6 +55,8 @@
* returning an error from the server function implies a fatal error
* such as a badly constructed rpc request that should be dropped without
* a reply.
+ * For Version 3, nfsm_reply() does not return for the error case, since
+ * most version 3 rpcs return more than the status for error cases.
*/
#include <sys/param.h>
@@ -64,13 +66,17 @@
#include <sys/namei.h>
#include <sys/vnode.h>
#include <sys/mount.h>
+#include <sys/socket.h>
+#include <sys/socketvar.h>
#include <sys/mbuf.h>
#include <sys/dirent.h>
#include <sys/stat.h>
+#include <sys/kernel.h>
+#include <ufs/ufs/dir.h>
#include <vm/vm.h>
-#include <nfs/nfsv2.h>
+#include <nfs/nfsproto.h>
#include <nfs/rpcv2.h>
#include <nfs/nfs.h>
#include <nfs/xdr_subs.h>
@@ -78,54 +84,77 @@
#include <nfs/nqnfs.h>
#include <nfs/nfs_var.h>
-/* Defs */
-#define TRUE 1
-#define FALSE 0
-
/* Global vars */
-extern u_long nfs_procids[NFS_NPROCS];
extern u_int32_t nfs_xdrneg1;
extern u_int32_t nfs_false, nfs_true;
-nfstype nfs_type[9] = { NFNON, NFREG, NFDIR, NFBLK, NFCHR, NFLNK, NFNON,
- NFCHR, NFNON };
+extern enum vtype nv3tov_type[8];
+extern struct nfsstats nfsstats;
+extern nfstype nfsv2_type[9];
+extern nfstype nfsv3_type[9];
+int nfsrvw_procrastinate = NFS_GATHERDELAY * 1000;
/*
- * nqnfs access service
+ * nfs v3 access service
*/
int
-nqnfsrv_access(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv3_access(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
struct vnode *vp;
- nfsv2fh_t nfh;
+ nfsfh_t nfh;
fhandle_t *fhp;
register u_int32_t *tl;
register int32_t t1;
caddr_t bpos;
- int error = 0, rdonly, cache = 0, mode = 0;
+ int error = 0, rdonly, cache = 0, getret;
char *cp2;
- struct mbuf *mb, *mreq;
+ struct mbuf *mb, *mreq, *mb2;
+ struct vattr va;
+ u_long testmode, nfsmode;
u_quad_t frev;
fhp = &nfh.fh_generic;
nfsm_srvmtofh(fhp);
- nfsm_dissect(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
- error = nfsrv_fhtovp(fhp, TRUE, &vp, cred, nfsd->nd_slp, nam, &rdonly);
- if (error)
- nfsm_reply(0);
- if (*tl++ == nfs_true)
- mode |= VREAD;
- if (*tl++ == nfs_true)
- mode |= VWRITE;
- if (*tl == nfs_true)
- mode |= VEXEC;
- error = nfsrv_access(vp, mode, cred, rdonly, nfsd->nd_procp);
+ nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
+ error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam, &rdonly,
+ (nfsd->nd_flag & ND_KERBAUTH));
+ if (error) {
+ nfsm_reply(NFSX_UNSIGNED);
+ nfsm_srvpostop_attr(1, (struct vattr *)0);
+ return (0);
+ }
+ nfsmode = fxdr_unsigned(u_int32_t, *tl);
+ if ((nfsmode & NFSV3ACCESS_READ) &&
+ nfsrv_access(vp, VREAD, cred, rdonly, procp))
+ nfsmode &= ~NFSV3ACCESS_READ;
+ if (vp->v_type == VDIR)
+ testmode = (NFSV3ACCESS_MODIFY | NFSV3ACCESS_EXTEND |
+ NFSV3ACCESS_DELETE);
+ else
+ testmode = (NFSV3ACCESS_MODIFY | NFSV3ACCESS_EXTEND);
+ if ((nfsmode & testmode) &&
+ nfsrv_access(vp, VWRITE, cred, rdonly, procp))
+ nfsmode &= ~testmode;
+ if (vp->v_type == VDIR)
+ testmode = NFSV3ACCESS_LOOKUP;
+ else
+ testmode = NFSV3ACCESS_EXECUTE;
+ if ((nfsmode & testmode) &&
+ nfsrv_access(vp, VEXEC, cred, rdonly, procp))
+ nfsmode &= ~testmode;
+ getret = VOP_GETATTR(vp, &va, cred, procp);
vput(vp);
- nfsm_reply(0);
+ nfsm_reply(NFSX_POSTOPATTR(1) + NFSX_UNSIGNED);
+ nfsm_srvpostop_attr(getret, &va);
+ nfsm_build(tl, u_int32_t *, NFSX_UNSIGNED);
+ *tl = txdr_unsigned(nfsmode);
nfsm_srvdone;
}
@@ -133,17 +162,20 @@ nqnfsrv_access(nfsd, mrep, md, dpos, cred, nam, mrq)
* nfs getattr service
*/
int
-nfsrv_getattr(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_getattr(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
- register struct nfsv2_fattr *fp;
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
+ register struct nfs_fattr *fp;
struct vattr va;
struct vnode *vp;
- nfsv2fh_t nfh;
+ nfsfh_t nfh;
fhandle_t *fhp;
register u_int32_t *tl;
register int32_t t1;
@@ -155,15 +187,20 @@ nfsrv_getattr(nfsd, mrep, md, dpos, cred, nam, mrq)
fhp = &nfh.fh_generic;
nfsm_srvmtofh(fhp);
- error = nfsrv_fhtovp(fhp, TRUE, &vp, cred, nfsd->nd_slp, nam, &rdonly);
- if (error)
+ error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam, &rdonly,
+ (nfsd->nd_flag & ND_KERBAUTH));
+ if (error) {
nfsm_reply(0);
- nqsrv_getl(vp, NQL_READ);
- error = VOP_GETATTR(vp, &va, cred, nfsd->nd_procp);
+ return (0);
+ }
+ nqsrv_getl(vp, ND_READ);
+ error = VOP_GETATTR(vp, &va, cred, procp);
vput(vp);
- nfsm_reply(NFSX_FATTR(nfsd->nd_nqlflag != NQL_NOVAL));
- nfsm_build(fp, struct nfsv2_fattr *, NFSX_FATTR(nfsd->nd_nqlflag != NQL_NOVAL));
- nfsm_srvfillattr;
+ nfsm_reply(NFSX_FATTR(nfsd->nd_flag & ND_NFSV3));
+ if (error)
+ return (0);
+ nfsm_build(fp, struct nfs_fattr *, NFSX_FATTR(nfsd->nd_flag & ND_NFSV3));
+ nfsm_srvfillattr(&va, fp);
nfsm_srvdone;
}
@@ -171,68 +208,97 @@ nfsrv_getattr(nfsd, mrep, md, dpos, cred, nam, mrq)
* nfs setattr service
*/
int
-nfsrv_setattr(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_setattr(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
- struct vattr va;
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
+ struct vattr va, preat;
register struct nfsv2_sattr *sp;
- register struct nfsv2_fattr *fp;
+ register struct nfs_fattr *fp;
struct vnode *vp;
- nfsv2fh_t nfh;
+ nfsfh_t nfh;
fhandle_t *fhp;
register u_int32_t *tl;
register int32_t t1;
caddr_t bpos;
- int error = 0, rdonly, cache;
+ int error = 0, rdonly, cache, preat_ret = 1, postat_ret = 1;
+ int v3 = (nfsd->nd_flag & ND_NFSV3), gcheck = 0;
char *cp2;
struct mbuf *mb, *mb2, *mreq;
- u_quad_t frev, frev2;
+ u_quad_t frev;
+ struct timespec guard;
fhp = &nfh.fh_generic;
nfsm_srvmtofh(fhp);
- nfsm_dissect(sp, struct nfsv2_sattr *,
- NFSX_SATTR(nfsd->nd_nqlflag != NQL_NOVAL));
- error = nfsrv_fhtovp(fhp, TRUE, &vp, cred, nfsd->nd_slp, nam, &rdonly);
- if (error)
- nfsm_reply(0);
- nqsrv_getl(vp, NQL_WRITE);
VATTR_NULL(&va);
- /*
- * Nah nah nah nah na nah
- * There is a bug in the Sun client that puts 0xffff in the mode
- * field of sattr when it should put in 0xffffffff. The u_short
- * doesn't sign extend.
- * --> check the low order 2 bytes for 0xffff
- */
- if ((fxdr_unsigned(int, sp->sa_mode) & 0xffff) != 0xffff)
- va.va_mode = nfstov_mode(sp->sa_mode);
- if (sp->sa_uid != nfs_xdrneg1)
- va.va_uid = fxdr_unsigned(uid_t, sp->sa_uid);
- if (sp->sa_gid != nfs_xdrneg1)
- va.va_gid = fxdr_unsigned(gid_t, sp->sa_gid);
- if (nfsd->nd_nqlflag == NQL_NOVAL) {
- if (sp->sa_nfssize != nfs_xdrneg1)
- va.va_size = fxdr_unsigned(u_quad_t, sp->sa_nfssize);
- if (sp->sa_nfsatime.nfs_sec != nfs_xdrneg1) {
+ if (v3) {
+ nfsm_srvsattr(&va);
+ nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
+ gcheck = fxdr_unsigned(int, *tl);
+ if (gcheck) {
+ nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
+ fxdr_nfsv3time(tl, &guard);
+ }
+ } else {
+ nfsm_dissect(sp, struct nfsv2_sattr *, NFSX_V2SATTR);
+ /*
+ * Nah nah nah nah na nah
+ * There is a bug in the Sun client that puts 0xffff in the mode
+ * field of sattr when it should put in 0xffffffff. The u_short
+ * doesn't sign extend.
+ * --> check the low order 2 bytes for 0xffff
+ */
+ if ((fxdr_unsigned(int, sp->sa_mode) & 0xffff) != 0xffff)
+ va.va_mode = nfstov_mode(sp->sa_mode);
+ if (sp->sa_uid != nfs_xdrneg1)
+ va.va_uid = fxdr_unsigned(uid_t, sp->sa_uid);
+ if (sp->sa_gid != nfs_xdrneg1)
+ va.va_gid = fxdr_unsigned(gid_t, sp->sa_gid);
+ if (sp->sa_size != nfs_xdrneg1)
+ va.va_size = fxdr_unsigned(u_quad_t, sp->sa_size);
+ if (sp->sa_atime.nfsv2_sec != nfs_xdrneg1) {
#ifdef notyet
- fxdr_nfstime(&sp->sa_nfsatime, &va.va_atime);
+ fxdr_nfsv2time(&sp->sa_atime, &va.va_atime);
#else
va.va_atime.tv_sec =
- fxdr_unsigned(int32_t, sp->sa_nfsatime.nfs_sec);
+ fxdr_unsigned(u_int32_t,sp->sa_atime.nfsv2_sec);
va.va_atime.tv_nsec = 0;
#endif
}
- if (sp->sa_nfsmtime.nfs_sec != nfs_xdrneg1)
- fxdr_nfstime(&sp->sa_nfsmtime, &va.va_mtime);
- } else {
- fxdr_hyper(&sp->sa_nqsize, &va.va_size);
- fxdr_nqtime(&sp->sa_nqatime, &va.va_atime);
- fxdr_nqtime(&sp->sa_nqmtime, &va.va_mtime);
- va.va_flags = fxdr_unsigned(u_int32_t, sp->sa_nqflags);
+ if (sp->sa_mtime.nfsv2_sec != nfs_xdrneg1)
+ fxdr_nfsv2time(&sp->sa_mtime, &va.va_mtime);
+
+ }
+
+ /*
+ * Now that we have all the fields, lets do it.
+ */
+ error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam, &rdonly,
+ (nfsd->nd_flag & ND_KERBAUTH));
+ if (error) {
+ nfsm_reply(2 * NFSX_UNSIGNED);
+ nfsm_srvwcc_data(preat_ret, &preat, postat_ret, &va);
+ return (0);
+ }
+ nqsrv_getl(vp, ND_WRITE);
+ if (v3) {
+ error = preat_ret = VOP_GETATTR(vp, &preat, cred, procp);
+ if (!error && gcheck &&
+ (preat.va_ctime.tv_sec != guard.tv_sec ||
+ preat.va_ctime.tv_nsec != guard.tv_nsec))
+ error = NFSERR_NOT_SYNC;
+ if (error) {
+ vput(vp);
+ nfsm_reply(NFSX_WCCDATA(v3));
+ nfsm_srvwcc_data(preat_ret, &preat, postat_ret, &va);
+ return (0);
+ }
}
/*
@@ -249,22 +315,22 @@ nfsrv_setattr(nfsd, mrep, md, dpos, cred, nam, mrq)
error = EISDIR;
goto out;
} else if ((error = nfsrv_access(vp, VWRITE, cred, rdonly,
- nfsd->nd_procp)) != 0)
+ procp)) != 0)
goto out;
}
- if ((error = VOP_SETATTR(vp, &va, cred, nfsd->nd_procp)) != 0) {
- vput(vp);
- nfsm_reply(0);
- }
- error = VOP_GETATTR(vp, &va, cred, nfsd->nd_procp);
+ error = VOP_SETATTR(vp, &va, cred, procp);
+ postat_ret = VOP_GETATTR(vp, &va, cred, procp);
+ if (!error)
+ error = postat_ret;
out:
vput(vp);
- nfsm_reply(NFSX_FATTR(nfsd->nd_nqlflag != NQL_NOVAL) + 2*NFSX_UNSIGNED);
- nfsm_build(fp, struct nfsv2_fattr *, NFSX_FATTR(nfsd->nd_nqlflag != NQL_NOVAL));
- nfsm_srvfillattr;
- if (nfsd->nd_nqlflag != NQL_NOVAL) {
- nfsm_build(tl, u_int32_t *, 2*NFSX_UNSIGNED);
- txdr_hyper(&frev2, tl);
+ nfsm_reply(NFSX_WCCORFATTR(v3));
+ if (v3) {
+ nfsm_srvwcc_data(preat_ret, &preat, postat_ret, &va);
+ return (0);
+ } else {
+ nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
+ nfsm_srvfillattr(&va, fp);
}
nfsm_srvdone;
}
@@ -273,73 +339,74 @@ out:
* nfs lookup rpc
*/
int
-nfsrv_lookup(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_lookup(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
- register struct nfsv2_fattr *fp;
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
+ register struct nfs_fattr *fp;
struct nameidata nd;
- struct vnode *vp;
- nfsv2fh_t nfh;
+ struct vnode *vp, *dirp;
+ nfsfh_t nfh;
fhandle_t *fhp;
register caddr_t cp;
register u_int32_t *tl;
register int32_t t1;
caddr_t bpos;
- int error = 0, cache, duration2, cache2, len;
+ int error = 0, cache, len, dirattr_ret = 1;
+ int v3 = (nfsd->nd_flag & ND_NFSV3);
char *cp2;
struct mbuf *mb, *mb2, *mreq;
- struct vattr va;
- u_quad_t frev, frev2;
+ struct vattr va, dirattr;
+ u_quad_t frev;
fhp = &nfh.fh_generic;
- duration2 = 0;
- if (nfsd->nd_nqlflag != NQL_NOVAL) {
- nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
- duration2 = fxdr_unsigned(int, *tl);
- }
nfsm_srvmtofh(fhp);
- nfsm_srvstrsiz(len, NFS_MAXNAMLEN);
+ nfsm_srvnamesiz(len);
nd.ni_cnd.cn_cred = cred;
nd.ni_cnd.cn_nameiop = LOOKUP;
nd.ni_cnd.cn_flags = LOCKLEAF | SAVESTART;
- if ((error = nfs_namei(&nd, fhp, len, nfsd->nd_slp, nam, &md, &dpos,
- nfsd->nd_procp)) != 0)
- nfsm_reply(0);
- nqsrv_getl(nd.ni_startdir, NQL_READ);
+ error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
+ &dirp, procp, (nfsd->nd_flag & ND_KERBAUTH));
+ if (dirp) {
+ if (v3)
+ dirattr_ret = VOP_GETATTR(dirp, &dirattr, cred,
+ procp);
+ vrele(dirp);
+ }
+ if (error) {
+ nfsm_reply(NFSX_POSTOPATTR(v3));
+ nfsm_srvpostop_attr(dirattr_ret, &dirattr);
+ return (0);
+ }
+ nqsrv_getl(nd.ni_startdir, ND_READ);
vrele(nd.ni_startdir);
FREE(nd.ni_cnd.cn_pnbuf, M_NAMEI);
vp = nd.ni_vp;
bzero((caddr_t)fhp, sizeof(nfh));
fhp->fh_fsid = vp->v_mount->mnt_stat.f_fsid;
- if ((error = VFS_VPTOFH(vp, &fhp->fh_fid)) != 0) {
- vput(vp);
- nfsm_reply(0);
- }
- if (duration2)
- (void) nqsrv_getlease(vp, &duration2, NQL_READ, nfsd,
- nam, &cache2, &frev2, cred);
- error = VOP_GETATTR(vp, &va, cred, nfsd->nd_procp);
+ error = VFS_VPTOFH(vp, &fhp->fh_fid);
+ if (!error)
+ error = VOP_GETATTR(vp, &va, cred, procp);
vput(vp);
- nfsm_reply(NFSX_FH + NFSX_FATTR(nfsd->nd_nqlflag != NQL_NOVAL) + 5*NFSX_UNSIGNED);
- if (nfsd->nd_nqlflag != NQL_NOVAL) {
- if (duration2) {
- nfsm_build(tl, u_int32_t *, 5*NFSX_UNSIGNED);
- *tl++ = txdr_unsigned(NQL_READ);
- *tl++ = txdr_unsigned(cache2);
- *tl++ = txdr_unsigned(duration2);
- txdr_hyper(&frev2, tl);
- } else {
- nfsm_build(tl, u_int32_t *, NFSX_UNSIGNED);
- *tl = 0;
- }
+ nfsm_reply(NFSX_SRVFH(v3) + NFSX_POSTOPORFATTR(v3) + NFSX_POSTOPATTR(v3));
+ if (error) {
+ nfsm_srvpostop_attr(dirattr_ret, &dirattr);
+ return (0);
+ }
+ nfsm_srvfhtom(fhp, v3);
+ if (v3) {
+ nfsm_srvpostop_attr(0, &va);
+ nfsm_srvpostop_attr(dirattr_ret, &dirattr);
+ } else {
+ nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
+ nfsm_srvfillattr(&va, fp);
}
- nfsm_srvfhtom(fhp);
- nfsm_build(fp, struct nfsv2_fattr *, NFSX_FATTR(nfsd->nd_nqlflag != NQL_NOVAL));
- nfsm_srvfillattr;
nfsm_srvdone;
}
@@ -347,24 +414,29 @@ nfsrv_lookup(nfsd, mrep, md, dpos, cred, nam, mrq)
* nfs readlink service
*/
int
-nfsrv_readlink(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_readlink(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
struct iovec iv[(NFS_MAXPATHLEN+MLEN-1)/MLEN];
register struct iovec *ivp = iv;
register struct mbuf *mp;
register u_int32_t *tl;
register int32_t t1;
caddr_t bpos;
- int error = 0, rdonly, cache, i, tlen, len;
+ int error = 0, rdonly, cache, i, tlen, len, getret;
+ int v3 = (nfsd->nd_flag & ND_NFSV3);
char *cp2;
struct mbuf *mb, *mb2, *mp2 = NULL, *mp3 = NULL, *mreq;
struct vnode *vp;
- nfsv2fh_t nfh;
+ struct vattr attr;
+ nfsfh_t nfh;
fhandle_t *fhp;
struct uio io, *uiop = &io;
u_quad_t frev;
@@ -400,22 +472,34 @@ nfsrv_readlink(nfsd, mrep, md, dpos, cred, nam, mrq)
uiop->uio_rw = UIO_READ;
uiop->uio_segflg = UIO_SYSSPACE;
uiop->uio_procp = (struct proc *)0;
- error = nfsrv_fhtovp(fhp, TRUE, &vp, cred, nfsd->nd_slp, nam, &rdonly);
+ error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
+ &rdonly, (nfsd->nd_flag & ND_KERBAUTH));
if (error) {
m_freem(mp3);
- nfsm_reply(0);
+ nfsm_reply(2 * NFSX_UNSIGNED);
+ nfsm_srvpostop_attr(1, (struct vattr *)0);
+ return (0);
}
if (vp->v_type != VLNK) {
- error = EINVAL;
+ if (v3)
+ error = EINVAL;
+ else
+ error = ENXIO;
goto out;
}
- nqsrv_getl(vp, NQL_READ);
+ nqsrv_getl(vp, ND_READ);
error = VOP_READLINK(vp, uiop, cred);
out:
+ getret = VOP_GETATTR(vp, &attr, cred, procp);
vput(vp);
if (error)
m_freem(mp3);
- nfsm_reply(NFSX_UNSIGNED);
+ nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_UNSIGNED);
+ if (v3) {
+ nfsm_srvpostop_attr(getret, &attr);
+ if (error)
+ return (0);
+ }
if (uiop->uio_resid > 0) {
len -= uiop->uio_resid;
tlen = nfsm_rndup(len);
@@ -431,26 +515,31 @@ out:
* nfs read service
*/
int
-nfsrv_read(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_read(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
register struct iovec *iv;
struct iovec *iv2;
register struct mbuf *m;
- register struct nfsv2_fattr *fp;
+ register struct nfs_fattr *fp;
register u_int32_t *tl;
register int32_t t1;
+ register int i;
caddr_t bpos;
- int error = 0, rdonly, cache, i, cnt, len, left, siz, tlen;
+ int error = 0, rdonly, cache, cnt, len, left, siz, tlen, getret;
+ int v3 = (nfsd->nd_flag & ND_NFSV3), reqlen;
char *cp2;
struct mbuf *mb, *mb2, *mreq;
struct mbuf *m2;
struct vnode *vp;
- nfsv2fh_t nfh;
+ nfsfh_t nfh;
fhandle_t *fhp;
struct uio io, *uiop = &io;
struct vattr va;
@@ -459,43 +548,58 @@ nfsrv_read(nfsd, mrep, md, dpos, cred, nam, mrq)
fhp = &nfh.fh_generic;
nfsm_srvmtofh(fhp);
- if (nfsd->nd_nqlflag == NQL_NOVAL) {
- nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
- off = (off_t)fxdr_unsigned(u_int32_t, *tl);
- } else {
+ if (v3) {
nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
fxdr_hyper(tl, &off);
+ } else {
+ nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
+ off = (off_t)fxdr_unsigned(u_int32_t, *tl);
+ }
+ nfsm_srvstrsiz(reqlen, NFS_SRVMAXDATA(nfsd));
+ error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
+ &rdonly, (nfsd->nd_flag & ND_KERBAUTH));
+ if (error) {
+ nfsm_reply(2 * NFSX_UNSIGNED);
+ nfsm_srvpostop_attr(1, (struct vattr *)0);
+ return (0);
}
- nfsm_srvstrsiz(cnt, NFS_MAXDATA);
- error = nfsrv_fhtovp(fhp, TRUE, &vp, cred, nfsd->nd_slp, nam, &rdonly);
- if (error)
- nfsm_reply(0);
if (vp->v_type != VREG) {
- error = (vp->v_type == VDIR) ? EISDIR : EACCES;
- vput(vp);
- nfsm_reply(0);
+ if (v3)
+ error = EINVAL;
+ else
+ error = (vp->v_type == VDIR) ? EISDIR : EACCES;
}
- nqsrv_getl(vp, NQL_READ);
- error = nfsrv_access(vp, VREAD, cred, rdonly, nfsd->nd_procp);
- if (error)
- goto out;
- error = nfsrv_access(vp, VEXEC, cred, rdonly, nfsd->nd_procp);
- if (error)
- goto out;
- error = VOP_GETATTR(vp, &va, cred, nfsd->nd_procp);
-
+ if (!error) {
+ nqsrv_getl(vp, ND_READ);
+ if ((error = nfsrv_access(vp, VREAD, cred, rdonly, procp)) != 0)
+ error = nfsrv_access(vp, VEXEC, cred, rdonly, procp);
+ }
+ getret = VOP_GETATTR(vp, &va, cred, procp);
+ if (!error)
+ error = getret;
if (error) {
-out:
vput(vp);
- nfsm_reply(0);
+ nfsm_reply(NFSX_POSTOPATTR(v3));
+ nfsm_srvpostop_attr(getret, &va);
+ return (0);
}
if (off >= va.va_size)
cnt = 0;
- else if ((off + cnt) > va.va_size)
+ else if ((off + reqlen) > va.va_size)
cnt = nfsm_rndup(va.va_size - off);
- nfsm_reply(NFSX_FATTR(nfsd->nd_nqlflag != NQL_NOVAL)+NFSX_UNSIGNED+nfsm_rndup(cnt));
- nfsm_build(fp, struct nfsv2_fattr *, NFSX_FATTR(nfsd->nd_nqlflag != NQL_NOVAL));
- nfsm_build(tl, u_int32_t *, NFSX_UNSIGNED);
+ else
+ cnt = reqlen;
+ nfsm_reply(NFSX_POSTOPORFATTR(v3) + 3 * NFSX_UNSIGNED+nfsm_rndup(cnt));
+ if (v3) {
+ nfsm_build(tl, u_int32_t *, NFSX_V3FATTR + 4 * NFSX_UNSIGNED);
+ *tl++ = nfs_true;
+ fp = (struct nfs_fattr *)tl;
+ tl += (NFSX_V3FATTR / sizeof (u_int32_t));
+ } else {
+ nfsm_build(tl, u_int32_t *, NFSX_V2FATTR + NFSX_UNSIGNED);
+ fp = (struct nfs_fattr *)tl;
+ tl += (NFSX_V2FATTR / sizeof (u_int32_t));
+ }
len = left = cnt;
if (cnt > 0) {
/*
@@ -503,19 +607,11 @@ out:
*/
i = 0;
m = m2 = mb;
- MALLOC(iv, struct iovec *,
- ((NFS_MAXDATA+MLEN-1)/MLEN) * sizeof (struct iovec),
- M_TEMP, M_WAITOK);
- iv2 = iv;
while (left > 0) {
siz = min(M_TRAILINGSPACE(m), left);
if (siz > 0) {
- m->m_len += siz;
- iv->iov_base = bpos;
- iv->iov_len = siz;
- iv++;
- i++;
left -= siz;
+ i++;
}
if (left > 0) {
MGET(m, M_WAIT, MT_DATA);
@@ -523,10 +619,28 @@ out:
m->m_len = 0;
m2->m_next = m;
m2 = m;
- bpos = mtod(m, caddr_t);
}
}
- uiop->uio_iov = iv2;
+ MALLOC(iv, struct iovec *, i * sizeof (struct iovec),
+ M_TEMP, M_WAITOK);
+ uiop->uio_iov = iv2 = iv;
+ m = mb;
+ left = cnt;
+ i = 0;
+ while (left > 0) {
+ if (m == NULL)
+ panic("nfsrv_read iov");
+ siz = min(M_TRAILINGSPACE(m), left);
+ if (siz > 0) {
+ iv->iov_base = mtod(m, caddr_t) + m->m_len;
+ iv->iov_len = siz;
+ m->m_len += siz;
+ left -= siz;
+ iv++;
+ i++;
+ }
+ m = m->m_next;
+ }
uiop->uio_iovcnt = i;
uiop->uio_offset = off;
uiop->uio_resid = cnt;
@@ -535,19 +649,30 @@ out:
error = VOP_READ(vp, uiop, IO_NODELOCKED, cred);
off = uiop->uio_offset;
FREE((caddr_t)iv2, M_TEMP);
- if (error || (error = VOP_GETATTR(vp, &va, cred, nfsd->nd_procp))) {
+ if (error || (getret = VOP_GETATTR(vp, &va, cred, procp)) != 0){
+ if (!error)
+ error = getret;
m_freem(mreq);
vput(vp);
- nfsm_reply(0);
+ nfsm_reply(NFSX_POSTOPATTR(v3));
+ nfsm_srvpostop_attr(getret, &va);
+ return (0);
}
} else
uiop->uio_resid = 0;
vput(vp);
- nfsm_srvfillattr;
+ nfsm_srvfillattr(&va, fp);
len -= uiop->uio_resid;
tlen = nfsm_rndup(len);
if (cnt != tlen || tlen != len)
- nfsm_adj(mb, cnt-tlen, tlen-len);
+ nfsm_adj(mb, cnt - tlen, tlen - len);
+ if (v3) {
+ *tl++ = txdr_unsigned(len);
+ if (len < reqlen)
+ *tl++ = nfs_true;
+ else
+ *tl++ = nfs_false;
+ }
*tl = txdr_unsigned(len);
nfsm_srvdone;
}
@@ -556,223 +681,685 @@ out:
* nfs write service
*/
int
-nfsrv_write(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_write(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
register struct iovec *ivp;
+ register int i, cnt;
register struct mbuf *mp;
- register struct nfsv2_fattr *fp;
- struct iovec iv[NFS_MAXIOVEC];
- struct vattr va;
+ register struct nfs_fattr *fp;
+ struct iovec *iv;
+ struct vattr va, forat;
register u_int32_t *tl;
register int32_t t1;
caddr_t bpos;
- int error = 0, rdonly, cache, siz, len, xfer;
- int ioflags = IO_SYNC | IO_NODELOCKED;
+ int error = 0, rdonly, cache, len, forat_ret = 1;
+ int ioflags, aftat_ret = 1, retlen, zeroing, adjust;
+ int stable = NFSV3WRITE_FILESYNC;
+ int v3 = (nfsd->nd_flag & ND_NFSV3);
char *cp2;
struct mbuf *mb, *mb2, *mreq;
struct vnode *vp;
- nfsv2fh_t nfh;
+ nfsfh_t nfh;
fhandle_t *fhp;
struct uio io, *uiop = &io;
off_t off;
u_quad_t frev;
+ if (mrep == NULL) {
+ *mrq = NULL;
+ return (0);
+ }
fhp = &nfh.fh_generic;
nfsm_srvmtofh(fhp);
- nfsm_dissect(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
- if (nfsd->nd_nqlflag == NQL_NOVAL) {
- off = (off_t)fxdr_unsigned(u_int32_t, *++tl);
- tl += 2;
- } else {
+ if (v3) {
+ nfsm_dissect(tl, u_int32_t *, 5 * NFSX_UNSIGNED);
fxdr_hyper(tl, &off);
+ tl += 3;
+ stable = fxdr_unsigned(int, *tl++);
+ } else {
+ nfsm_dissect(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
+ off = (off_t)fxdr_unsigned(u_int32_t, *++tl);
tl += 2;
- if (fxdr_unsigned(u_int32_t, *tl++))
- ioflags |= IO_APPEND;
- }
- len = fxdr_unsigned(int32_t, *tl);
- if (len > NFS_MAXDATA || len <= 0) {
- error = EBADRPC;
- nfsm_reply(0);
}
- if (dpos == (mtod(md, caddr_t)+md->m_len)) {
- mp = md->m_next;
- if (mp == NULL) {
- error = EBADRPC;
- nfsm_reply(0);
+ retlen = len = fxdr_unsigned(int32_t, *tl);
+ cnt = i = 0;
+
+ /*
+ * For NFS Version 2, it is not obvious what a write of zero length
+ * should do, but I might as well be consistent with Version 3,
+ * which is to return ok so long as there are no permission problems.
+ */
+ if (len > 0) {
+ zeroing = 1;
+ mp = mrep;
+ while (mp) {
+ if (mp == md) {
+ zeroing = 0;
+ adjust = dpos - mtod(mp, caddr_t);
+ mp->m_len -= adjust;
+ if (mp->m_len > 0 && adjust > 0)
+ NFSMADV(mp, adjust);
}
- } else {
- mp = md;
- siz = dpos-mtod(mp, caddr_t);
- mp->m_len -= siz;
- NFSMADV(mp, siz);
+ if (zeroing)
+ mp->m_len = 0;
+ else if (mp->m_len > 0) {
+ i += mp->m_len;
+ if (i > len) {
+ mp->m_len -= (i - len);
+ zeroing = 1;
+ }
+ if (mp->m_len > 0)
+ cnt++;
+ }
+ mp = mp->m_next;
+ }
}
- error = nfsrv_fhtovp(fhp, TRUE, &vp, cred, nfsd->nd_slp, nam, &rdonly);
- if (error)
- nfsm_reply(0);
+ if (len > NFS_MAXDATA || len < 0 || i < len) {
+ error = EIO;
+ nfsm_reply(2 * NFSX_UNSIGNED);
+ nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, &va);
+ return (0);
+ }
+ error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
+ &rdonly, (nfsd->nd_flag & ND_KERBAUTH));
+ if (error) {
+ nfsm_reply(2 * NFSX_UNSIGNED);
+ nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, &va);
+ return (0);
+ }
+ if (v3)
+ forat_ret = VOP_GETATTR(vp, &forat, cred, procp);
if (vp->v_type != VREG) {
- error = (vp->v_type == VDIR) ? EISDIR : EACCES;
- vput(vp);
- nfsm_reply(0);
+ if (v3)
+ error = EINVAL;
+ else
+ error = (vp->v_type == VDIR) ? EISDIR : EACCES;
+ }
+ if (!error) {
+ nqsrv_getl(vp, ND_WRITE);
+ error = nfsrv_access(vp, VWRITE, cred, rdonly, procp);
}
- nqsrv_getl(vp, NQL_WRITE);
- error = nfsrv_access(vp, VWRITE, cred, rdonly, nfsd->nd_procp);
if (error) {
vput(vp);
- nfsm_reply(0);
+ nfsm_reply(NFSX_WCCDATA(v3));
+ nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, &va);
+ return (0);
}
- uiop->uio_resid = 0;
- uiop->uio_rw = UIO_WRITE;
- uiop->uio_segflg = UIO_SYSSPACE;
- uiop->uio_procp = (struct proc *)0;
- /*
- * Do up to NFS_MAXIOVEC mbufs of write each iteration of the
- * loop until done.
- */
- while (len > 0 && uiop->uio_resid == 0) {
- ivp = iv;
- siz = 0;
- uiop->uio_iov = ivp;
- uiop->uio_iovcnt = 0;
- uiop->uio_offset = off;
- while (len > 0 && uiop->uio_iovcnt < NFS_MAXIOVEC && mp != NULL) {
+
+ if (len > 0) {
+ MALLOC(ivp, struct iovec *, cnt * sizeof (struct iovec), M_TEMP,
+ M_WAITOK);
+ uiop->uio_iov = iv = ivp;
+ uiop->uio_iovcnt = cnt;
+ mp = mrep;
+ while (mp) {
+ if (mp->m_len > 0) {
ivp->iov_base = mtod(mp, caddr_t);
- if (len < mp->m_len)
- ivp->iov_len = xfer = len;
- else
- ivp->iov_len = xfer = mp->m_len;
-#ifdef notdef
- /* Not Yet .. */
- if (M_HASCL(mp) && (((u_long)ivp->iov_base) & CLOFSET) == 0)
- ivp->iov_op = NULL; /* what should it be ?? */
- else
- ivp->iov_op = NULL;
-#endif
- uiop->uio_iovcnt++;
+ ivp->iov_len = mp->m_len;
ivp++;
- len -= xfer;
- siz += xfer;
- mp = mp->m_next;
- }
- if (len > 0 && mp == NULL) {
- error = EBADRPC;
- vput(vp);
- nfsm_reply(0);
- }
- uiop->uio_resid = siz;
- if ((error = VOP_WRITE(vp, uiop, ioflags, cred)) != 0) {
- vput(vp);
- nfsm_reply(0);
}
- off = uiop->uio_offset;
+ mp = mp->m_next;
+ }
+
+ /*
+ * XXX
+ * The IO_METASYNC flag indicates that all metadata (and not just
+ * enough to ensure data integrity) mus be written to stable storage
+ * synchronously.
+ * (IO_METASYNC is not yet implemented in 4.4BSD-Lite.)
+ */
+ if (stable == NFSV3WRITE_UNSTABLE)
+ ioflags = IO_NODELOCKED;
+ else if (stable == NFSV3WRITE_DATASYNC)
+ ioflags = (IO_SYNC | IO_NODELOCKED);
+ else
+ ioflags = (IO_METASYNC | IO_SYNC | IO_NODELOCKED);
+ uiop->uio_resid = len;
+ uiop->uio_rw = UIO_WRITE;
+ uiop->uio_segflg = UIO_SYSSPACE;
+ uiop->uio_procp = (struct proc *)0;
+ uiop->uio_offset = off;
+ error = VOP_WRITE(vp, uiop, ioflags, cred);
+ nfsstats.srvvop_writes++;
+ FREE((caddr_t)iv, M_TEMP);
}
- error = VOP_GETATTR(vp, &va, cred, nfsd->nd_procp);
+ aftat_ret = VOP_GETATTR(vp, &va, cred, procp);
vput(vp);
- nfsm_reply(NFSX_FATTR(nfsd->nd_nqlflag != NQL_NOVAL));
- nfsm_build(fp, struct nfsv2_fattr *, NFSX_FATTR(nfsd->nd_nqlflag != NQL_NOVAL));
- nfsm_srvfillattr;
- if (nfsd->nd_nqlflag != NQL_NOVAL) {
- nfsm_build(tl, u_int32_t *, 2*NFSX_UNSIGNED);
- txdr_hyper(&va.va_filerev, tl);
+ if (!error)
+ error = aftat_ret;
+ nfsm_reply(NFSX_PREOPATTR(v3) + NFSX_POSTOPORFATTR(v3) +
+ 2 * NFSX_UNSIGNED + NFSX_WRITEVERF(v3));
+ if (v3) {
+ nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, &va);
+ if (error)
+ return (0);
+ nfsm_build(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
+ *tl++ = txdr_unsigned(retlen);
+ if (stable == NFSV3WRITE_UNSTABLE)
+ *tl++ = txdr_unsigned(stable);
+ else
+ *tl++ = txdr_unsigned(NFSV3WRITE_FILESYNC);
+ /*
+ * Actually, there is no need to txdr these fields,
+ * but it may make the values more human readable,
+ * for debugging purposes.
+ */
+ *tl++ = txdr_unsigned(boottime.tv_sec);
+ *tl = txdr_unsigned(boottime.tv_usec);
+ } else {
+ nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
+ nfsm_srvfillattr(&va, fp);
}
nfsm_srvdone;
}
/*
+ * NFS write service with write gathering support. Called when
+ * nfsrvw_procrastinate > 0.
+ * See: Chet Juszczak, "Improving the Write Performance of an NFS Server",
+ * in Proc. of the Winter 1994 Usenix Conference, pg. 247-259, San Franscisco,
+ * Jan. 1994.
+ */
+int
+nfsrv_writegather(ndp, slp, procp, mrq)
+ struct nfsrv_descript **ndp;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
+{
+ register struct iovec *ivp;
+ register struct mbuf *mp;
+ register struct nfsrv_descript *wp, *nfsd, *owp, *swp;
+ register struct nfs_fattr *fp;
+ register int i = 0;
+ struct iovec *iov;
+ struct nfsrvw_delayhash *wpp;
+ struct ucred *cred;
+ struct vattr va, forat;
+ register u_int32_t *tl;
+ register int32_t t1;
+ caddr_t bpos, dpos;
+ int error = 0, rdonly, cache, len = 0, forat_ret = 1;
+ int ioflags, aftat_ret = 1, s, adjust, v3, zeroing;
+ char *cp2;
+ struct mbuf *mb, *mb2, *mreq, *mrep, *md;
+ struct vnode *vp;
+ struct uio io, *uiop = &io;
+ u_quad_t frev, cur_usec;
+
+ *mrq = NULL;
+ if (*ndp) {
+ nfsd = *ndp;
+ *ndp = NULL;
+ mrep = nfsd->nd_mrep;
+ md = nfsd->nd_md;
+ dpos = nfsd->nd_dpos;
+ cred = &nfsd->nd_cr;
+ v3 = (nfsd->nd_flag & ND_NFSV3);
+ LIST_INIT(&nfsd->nd_coalesce);
+ nfsd->nd_mreq = NULL;
+ nfsd->nd_stable = NFSV3WRITE_FILESYNC;
+ cur_usec = (u_quad_t)time.tv_sec * 1000000 + (u_quad_t)time.tv_usec;
+ nfsd->nd_time = cur_usec + nfsrvw_procrastinate;
+
+ /*
+ * Now, get the write header..
+ */
+ nfsm_srvmtofh(&nfsd->nd_fh);
+ if (v3) {
+ nfsm_dissect(tl, u_int32_t *, 5 * NFSX_UNSIGNED);
+ fxdr_hyper(tl, &nfsd->nd_off);
+ tl += 3;
+ nfsd->nd_stable = fxdr_unsigned(int, *tl++);
+ } else {
+ nfsm_dissect(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
+ nfsd->nd_off = (off_t)fxdr_unsigned(u_int32_t, *++tl);
+ tl += 2;
+ }
+ len = fxdr_unsigned(int32_t, *tl);
+ nfsd->nd_len = len;
+ nfsd->nd_eoff = nfsd->nd_off + len;
+
+ /*
+ * Trim the header out of the mbuf list and trim off any trailing
+ * junk so that the mbuf list has only the write data.
+ */
+ zeroing = 1;
+ i = 0;
+ mp = mrep;
+ while (mp) {
+ if (mp == md) {
+ zeroing = 0;
+ adjust = dpos - mtod(mp, caddr_t);
+ mp->m_len -= adjust;
+ if (mp->m_len > 0 && adjust > 0)
+ NFSMADV(mp, adjust);
+ }
+ if (zeroing)
+ mp->m_len = 0;
+ else {
+ i += mp->m_len;
+ if (i > len) {
+ mp->m_len -= (i - len);
+ zeroing = 1;
+ }
+ }
+ mp = mp->m_next;
+ }
+ if (len > NFS_MAXDATA || len < 0 || i < len) {
+nfsmout:
+ m_freem(mrep);
+ error = EIO;
+ nfsm_writereply(2 * NFSX_UNSIGNED, v3);
+ if (v3)
+ nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, &va);
+ nfsd->nd_mreq = mreq;
+ nfsd->nd_mrep = NULL;
+ nfsd->nd_time = 0;
+ }
+
+ /*
+ * Add this entry to the hash and time queues.
+ */
+ s = splsoftclock();
+ owp = NULL;
+ wp = slp->ns_tq.lh_first;
+ while (wp && wp->nd_time < nfsd->nd_time) {
+ owp = wp;
+ wp = wp->nd_tq.le_next;
+ }
+ if (owp) {
+ LIST_INSERT_AFTER(owp, nfsd, nd_tq);
+ } else {
+ LIST_INSERT_HEAD(&slp->ns_tq, nfsd, nd_tq);
+ }
+ if (nfsd->nd_mrep) {
+ wpp = NWDELAYHASH(slp, nfsd->nd_fh.fh_fid.fid_data);
+ owp = NULL;
+ wp = wpp->lh_first;
+ while (wp &&
+ bcmp((caddr_t)&nfsd->nd_fh,(caddr_t)&wp->nd_fh,NFSX_V3FH)) {
+ owp = wp;
+ wp = wp->nd_hash.le_next;
+ }
+ while (wp && wp->nd_off < nfsd->nd_off &&
+ !bcmp((caddr_t)&nfsd->nd_fh,(caddr_t)&wp->nd_fh,NFSX_V3FH)) {
+ owp = wp;
+ wp = wp->nd_hash.le_next;
+ }
+ if (owp) {
+ LIST_INSERT_AFTER(owp, nfsd, nd_hash);
+
+ /*
+ * Search the hash list for overlapping entries and
+ * coalesce.
+ */
+ for(; nfsd && NFSW_CONTIG(owp, nfsd); nfsd = wp) {
+ wp = nfsd->nd_hash.le_next;
+ if (NFSW_SAMECRED(owp, nfsd))
+ nfsrvw_coalesce(owp, nfsd);
+ }
+ } else {
+ LIST_INSERT_HEAD(wpp, nfsd, nd_hash);
+ }
+ }
+ splx(s);
+ }
+
+ /*
+ * Now, do VOP_WRITE()s for any one(s) that need to be done now
+ * and generate the associated reply mbuf list(s).
+ */
+loop1:
+ cur_usec = (u_quad_t)time.tv_sec * 1000000 + (u_quad_t)time.tv_usec;
+ s = splsoftclock();
+ for (nfsd = slp->ns_tq.lh_first; nfsd; nfsd = owp) {
+ owp = nfsd->nd_tq.le_next;
+ if (nfsd->nd_time > cur_usec)
+ break;
+ if (nfsd->nd_mreq)
+ continue;
+ LIST_REMOVE(nfsd, nd_tq);
+ LIST_REMOVE(nfsd, nd_hash);
+ splx(s);
+ mrep = nfsd->nd_mrep;
+ nfsd->nd_mrep = NULL;
+ cred = &nfsd->nd_cr;
+ v3 = (nfsd->nd_flag & ND_NFSV3);
+ forat_ret = aftat_ret = 1;
+ error = nfsrv_fhtovp(&nfsd->nd_fh, 1, &vp, cred, slp,
+ nfsd->nd_nam, &rdonly, (nfsd->nd_flag & ND_KERBAUTH));
+ if (!error) {
+ if (v3)
+ forat_ret = VOP_GETATTR(vp, &forat, cred, procp);
+ if (vp->v_type != VREG) {
+ if (v3)
+ error = EINVAL;
+ else
+ error = (vp->v_type == VDIR) ? EISDIR : EACCES;
+ }
+ } else
+ vp = NULL;
+ if (!error) {
+ nqsrv_getl(vp, ND_WRITE);
+ error = nfsrv_access(vp, VWRITE, cred, rdonly, procp);
+ }
+
+ if (nfsd->nd_stable == NFSV3WRITE_UNSTABLE)
+ ioflags = IO_NODELOCKED;
+ else if (nfsd->nd_stable == NFSV3WRITE_DATASYNC)
+ ioflags = (IO_SYNC | IO_NODELOCKED);
+ else
+ ioflags = (IO_METASYNC | IO_SYNC | IO_NODELOCKED);
+ uiop->uio_rw = UIO_WRITE;
+ uiop->uio_segflg = UIO_SYSSPACE;
+ uiop->uio_procp = (struct proc *)0;
+ uiop->uio_offset = nfsd->nd_off;
+ uiop->uio_resid = nfsd->nd_eoff - nfsd->nd_off;
+ if (uiop->uio_resid > 0) {
+ mp = mrep;
+ i = 0;
+ while (mp) {
+ if (mp->m_len > 0)
+ i++;
+ mp = mp->m_next;
+ }
+ uiop->uio_iovcnt = i;
+ MALLOC(iov, struct iovec *, i * sizeof (struct iovec),
+ M_TEMP, M_WAITOK);
+ uiop->uio_iov = ivp = iov;
+ mp = mrep;
+ while (mp) {
+ if (mp->m_len > 0) {
+ ivp->iov_base = mtod(mp, caddr_t);
+ ivp->iov_len = mp->m_len;
+ ivp++;
+ }
+ mp = mp->m_next;
+ }
+ if (!error) {
+ error = VOP_WRITE(vp, uiop, ioflags, cred);
+ nfsstats.srvvop_writes++;
+ }
+ FREE((caddr_t)iov, M_TEMP);
+ }
+ m_freem(mrep);
+ if (vp) {
+ aftat_ret = VOP_GETATTR(vp, &va, cred, procp);
+ vput(vp);
+ }
+
+ /*
+ * Loop around generating replies for all write rpcs that have
+ * now been completed.
+ */
+ swp = nfsd;
+ do {
+ if (error) {
+ nfsm_writereply(NFSX_WCCDATA(v3), v3);
+ if (v3) {
+ nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, &va);
+ }
+ } else {
+ nfsm_writereply(NFSX_PREOPATTR(v3) +
+ NFSX_POSTOPORFATTR(v3) + 2 * NFSX_UNSIGNED +
+ NFSX_WRITEVERF(v3), v3);
+ if (v3) {
+ nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, &va);
+ nfsm_build(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
+ *tl++ = txdr_unsigned(nfsd->nd_len);
+ *tl++ = txdr_unsigned(swp->nd_stable);
+ /*
+ * Actually, there is no need to txdr these fields,
+ * but it may make the values more human readable,
+ * for debugging purposes.
+ */
+ *tl++ = txdr_unsigned(boottime.tv_sec);
+ *tl = txdr_unsigned(boottime.tv_usec);
+ } else {
+ nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
+ nfsm_srvfillattr(&va, fp);
+ }
+ }
+ nfsd->nd_mreq = mreq;
+ if (nfsd->nd_mrep)
+ panic("nfsrv_write: nd_mrep not free");
+
+ /*
+ * Done. Put it at the head of the timer queue so that
+ * the final phase can return the reply.
+ */
+ s = splsoftclock();
+ if (nfsd != swp) {
+ nfsd->nd_time = 0;
+ LIST_INSERT_HEAD(&slp->ns_tq, nfsd, nd_tq);
+ }
+ nfsd = swp->nd_coalesce.lh_first;
+ if (nfsd) {
+ LIST_REMOVE(nfsd, nd_tq);
+ }
+ splx(s);
+ } while (nfsd);
+ s = splsoftclock();
+ swp->nd_time = 0;
+ LIST_INSERT_HEAD(&slp->ns_tq, swp, nd_tq);
+ splx(s);
+ goto loop1;
+ }
+ splx(s);
+
+ /*
+ * Search for a reply to return.
+ */
+ s = splsoftclock();
+ for (nfsd = slp->ns_tq.lh_first; nfsd; nfsd = nfsd->nd_tq.le_next)
+ if (nfsd->nd_mreq) {
+ LIST_REMOVE(nfsd, nd_tq);
+ *mrq = nfsd->nd_mreq;
+ *ndp = nfsd;
+ break;
+ }
+ splx(s);
+ return (0);
+}
+
+/*
+ * Coalesce the write request nfsd into owp. To do this we must:
+ * - remove nfsd from the queues
+ * - merge nfsd->nd_mrep into owp->nd_mrep
+ * - update the nd_eoff and nd_stable for owp
+ * - put nfsd on owp's nd_coalesce list
+ * NB: Must be called at splsoftclock().
+ */
+void
+nfsrvw_coalesce(owp, nfsd)
+ register struct nfsrv_descript *owp;
+ register struct nfsrv_descript *nfsd;
+{
+ register int overlap;
+ register struct mbuf *mp;
+
+ LIST_REMOVE(nfsd, nd_hash);
+ LIST_REMOVE(nfsd, nd_tq);
+ if (owp->nd_eoff < nfsd->nd_eoff) {
+ overlap = owp->nd_eoff - nfsd->nd_off;
+ if (overlap < 0)
+ panic("nfsrv_coalesce: bad off");
+ if (overlap > 0)
+ m_adj(nfsd->nd_mrep, overlap);
+ mp = owp->nd_mrep;
+ while (mp->m_next)
+ mp = mp->m_next;
+ mp->m_next = nfsd->nd_mrep;
+ owp->nd_eoff = nfsd->nd_eoff;
+ } else
+ m_freem(nfsd->nd_mrep);
+ nfsd->nd_mrep = NULL;
+ if (nfsd->nd_stable == NFSV3WRITE_FILESYNC)
+ owp->nd_stable = NFSV3WRITE_FILESYNC;
+ else if (nfsd->nd_stable == NFSV3WRITE_DATASYNC &&
+ owp->nd_stable == NFSV3WRITE_UNSTABLE)
+ owp->nd_stable = NFSV3WRITE_DATASYNC;
+ LIST_INSERT_HEAD(&owp->nd_coalesce, nfsd, nd_tq);
+}
+
+/*
* nfs create service
* now does a truncate to 0 length via. setattr if it already exists
*/
int
-nfsrv_create(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_create(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
- register struct nfsv2_fattr *fp;
- struct vattr va;
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
+ register struct nfs_fattr *fp;
+ struct vattr va, dirfor, diraft;
register struct nfsv2_sattr *sp;
register u_int32_t *tl;
struct nameidata nd;
register caddr_t cp;
register int32_t t1;
caddr_t bpos;
- int error = 0, rdev, cache, len, tsize;
+ int error = 0, cache, len, tsize, dirfor_ret = 1, diraft_ret = 1;
+ int rdev = 0;
+ int v3 = (nfsd->nd_flag & ND_NFSV3), how, exclusive_flag = 0;
char *cp2;
struct mbuf *mb, *mb2, *mreq;
- struct vnode *vp = NULL;
- nfsv2fh_t nfh;
+ struct vnode *vp = NULL, *dirp = NULL;
+ nfsfh_t nfh;
fhandle_t *fhp;
- u_quad_t frev;
+ u_quad_t frev, tempsize;
+ u_char cverf[NFSX_V3CREATEVERF];
nd.ni_cnd.cn_nameiop = 0;
fhp = &nfh.fh_generic;
nfsm_srvmtofh(fhp);
- nfsm_srvstrsiz(len, NFS_MAXNAMLEN);
+ nfsm_srvnamesiz(len);
nd.ni_cnd.cn_cred = cred;
nd.ni_cnd.cn_nameiop = CREATE;
nd.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF | SAVESTART;
- error = nfs_namei(&nd, fhp, len, nfsd->nd_slp, nam, &md, &dpos,
- nfsd->nd_procp);
- if (error)
- nfsm_reply(0);
+ error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
+ &dirp, procp, (nfsd->nd_flag & ND_KERBAUTH));
+ if (dirp) {
+ if (v3)
+ dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred,
+ procp);
+ else {
+ vrele(dirp);
+ dirp = (struct vnode *)0;
+ }
+ }
+ if (error) {
+ nfsm_reply(NFSX_WCCDATA(v3));
+ nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
+ if (dirp)
+ vrele(dirp);
+ return (0);
+ }
VATTR_NULL(&va);
- nfsm_dissect(sp, struct nfsv2_sattr *, NFSX_SATTR(nfsd->nd_nqlflag != NQL_NOVAL));
+ if (v3) {
+ nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
+ how = fxdr_unsigned(int, *tl);
+ switch (how) {
+ case NFSV3CREATE_GUARDED:
+ if (nd.ni_vp) {
+ error = EEXIST;
+ break;
+ }
+ case NFSV3CREATE_UNCHECKED:
+ nfsm_srvsattr(&va);
+ break;
+ case NFSV3CREATE_EXCLUSIVE:
+ nfsm_dissect(cp, caddr_t, NFSX_V3CREATEVERF);
+ bcopy(cp, cverf, NFSX_V3CREATEVERF);
+ exclusive_flag = 1;
+ if (nd.ni_vp == NULL)
+ va.va_mode = 0;
+ break;
+ };
+ va.va_type = VREG;
+ } else {
+ nfsm_dissect(sp, struct nfsv2_sattr *, NFSX_V2SATTR);
+ va.va_type = IFTOVT(fxdr_unsigned(u_int32_t, sp->sa_mode));
+ if (va.va_type == VNON)
+ va.va_type = VREG;
+ va.va_mode = nfstov_mode(sp->sa_mode);
+ switch (va.va_type) {
+ case VREG:
+ tsize = fxdr_unsigned(int32_t, sp->sa_size);
+ if (tsize != -1)
+ va.va_size = (u_quad_t)tsize;
+ break;
+ case VCHR:
+ case VBLK:
+ case VFIFO:
+ rdev = fxdr_unsigned(int32_t, sp->sa_size);
+ break;
+ default:
+ break;
+ };
+ }
+
/*
* Iff doesn't exist, create it
* otherwise just truncate to 0 length
* should I set the mode too ??
*/
if (nd.ni_vp == NULL) {
- va.va_type = IFTOVT(fxdr_unsigned(u_int32_t, sp->sa_mode));
- if (va.va_type == VNON)
- va.va_type = VREG;
- va.va_mode = nfstov_mode(sp->sa_mode);
- if (nfsd->nd_nqlflag == NQL_NOVAL)
- rdev = fxdr_unsigned(int32_t, sp->sa_nfssize);
- else
- rdev = fxdr_unsigned(int32_t, sp->sa_nqrdev);
if (va.va_type == VREG || va.va_type == VSOCK) {
vrele(nd.ni_startdir);
- nqsrv_getl(nd.ni_dvp, NQL_WRITE);
- error = VOP_CREATE(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd,
- &va);
- if (error)
- nfsm_reply(0);
- FREE(nd.ni_cnd.cn_pnbuf, M_NAMEI);
+ nqsrv_getl(nd.ni_dvp, ND_WRITE);
+ error = VOP_CREATE(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &va);
+ if (!error) {
+ FREE(nd.ni_cnd.cn_pnbuf, M_NAMEI);
+ if (exclusive_flag) {
+ exclusive_flag = 0;
+ VATTR_NULL(&va);
+ bcopy(cverf, (caddr_t)&va.va_atime,
+ NFSX_V3CREATEVERF);
+ error = VOP_SETATTR(nd.ni_vp, &va, cred,
+ procp);
+ }
+ }
} else if (va.va_type == VCHR || va.va_type == VBLK ||
va.va_type == VFIFO) {
if (va.va_type == VCHR && rdev == 0xffffffff)
va.va_type = VFIFO;
- if (va.va_type == VFIFO) {
-#ifndef FIFO
- VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
- vput(nd.ni_dvp);
- error = ENXIO;
- goto out;
-#endif /* FIFO */
- } else if ((error = suser(cred, (u_short *)0)) != 0) {
+ error = suser(cred, (u_short *)0);
+ if (error) {
+ vrele(nd.ni_startdir);
+ free(nd.ni_cnd.cn_pnbuf, M_NAMEI);
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
vput(nd.ni_dvp);
- goto out;
+ nfsm_reply(0);
+ return (error);
} else
va.va_rdev = (dev_t)rdev;
- nqsrv_getl(nd.ni_dvp, NQL_WRITE);
+ nqsrv_getl(nd.ni_dvp, ND_WRITE);
error = VOP_MKNOD(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd,
- &va);
+ &va);
if (error) {
vrele(nd.ni_startdir);
nfsm_reply(0);
}
nd.ni_cnd.cn_nameiop = LOOKUP;
nd.ni_cnd.cn_flags &= ~(LOCKPARENT | SAVESTART);
- nd.ni_cnd.cn_proc = nfsd->nd_procp;
- nd.ni_cnd.cn_cred = nfsd->nd_procp->p_ucred;
+ nd.ni_cnd.cn_proc = procp;
+ nd.ni_cnd.cn_cred = cred;
if ((error = lookup(&nd)) != 0) {
free(nd.ni_cnd.cn_pnbuf, M_NAMEI);
nfsm_reply(0);
@@ -786,10 +1373,11 @@ nfsrv_create(nfsd, mrep, md, dpos, cred, nam, mrq)
nfsm_reply(0);
}
} else {
+ vrele(nd.ni_startdir);
+ free(nd.ni_cnd.cn_pnbuf, M_NAMEI);
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
vput(nd.ni_dvp);
error = ENXIO;
- goto out;
}
vp = nd.ni_vp;
} else {
@@ -801,46 +1389,56 @@ nfsrv_create(nfsd, mrep, md, dpos, cred, nam, mrq)
else
vput(nd.ni_dvp);
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
- if (nfsd->nd_nqlflag == NQL_NOVAL) {
- tsize = fxdr_unsigned(int32_t, sp->sa_nfssize);
- if (tsize != -1)
- va.va_size = (u_quad_t)tsize;
- else
- va.va_size = -1;
- } else
- fxdr_hyper(&sp->sa_nqsize, &va.va_size);
if (va.va_size != -1) {
error = nfsrv_access(vp, VWRITE, cred,
- (nd.ni_cnd.cn_flags & RDONLY),
- nfsd->nd_procp);
- if (error) {
- vput(vp);
- nfsm_reply(0);
+ (nd.ni_cnd.cn_flags & RDONLY), procp);
+ if (!error) {
+ nqsrv_getl(vp, ND_WRITE);
+ tempsize = va.va_size;
+ VATTR_NULL(&va);
+ va.va_size = tempsize;
+ error = VOP_SETATTR(vp, &va, cred,
+ procp);
}
- nqsrv_getl(vp, NQL_WRITE);
- error = VOP_SETATTR(vp, &va, cred, nfsd->nd_procp);
- if (error) {
+ if (error)
vput(vp);
- nfsm_reply(0);
- }
}
}
- bzero((caddr_t)fhp, sizeof(nfh));
- fhp->fh_fsid = vp->v_mount->mnt_stat.f_fsid;
- if ((error = VFS_VPTOFH(vp, &fhp->fh_fid)) != 0) {
+ if (!error) {
+ bzero((caddr_t)fhp, sizeof(nfh));
+ fhp->fh_fsid = vp->v_mount->mnt_stat.f_fsid;
+ error = VFS_VPTOFH(vp, &fhp->fh_fid);
+ if (!error)
+ error = VOP_GETATTR(vp, &va, cred, procp);
vput(vp);
- nfsm_reply(0);
}
- error = VOP_GETATTR(vp, &va, cred, nfsd->nd_procp);
- vput(vp);
- nfsm_reply(NFSX_FH+NFSX_FATTR(nfsd->nd_nqlflag != NQL_NOVAL));
- nfsm_srvfhtom(fhp);
- nfsm_build(fp, struct nfsv2_fattr *, NFSX_FATTR(nfsd->nd_nqlflag != NQL_NOVAL));
- nfsm_srvfillattr;
- return (error);
+ if (v3) {
+ if (exclusive_flag && !error &&
+ bcmp(cverf, (caddr_t)&va.va_atime, NFSX_V3CREATEVERF))
+ error = EEXIST;
+ diraft_ret = VOP_GETATTR(dirp, &diraft, cred, procp);
+ vrele(dirp);
+ }
+ nfsm_reply(NFSX_SRVFH(v3) + NFSX_FATTR(v3) + NFSX_WCCDATA(v3));
+ if (v3) {
+ if (!error) {
+ nfsm_srvpostop_fh(fhp);
+ nfsm_srvpostop_attr(0, &va);
+ }
+ nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
+ } else {
+ nfsm_srvfhtom(fhp, v3);
+ nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
+ nfsm_srvfillattr(&va, fp);
+ }
+ return (0);
nfsmout:
- if (nd.ni_cnd.cn_nameiop || nd.ni_cnd.cn_flags)
+ if (dirp)
+ vrele(dirp);
+ if (nd.ni_cnd.cn_nameiop) {
vrele(nd.ni_startdir);
+ free((caddr_t)nd.ni_cnd.cn_pnbuf, M_NAMEI);
+ }
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
if (nd.ni_dvp == nd.ni_vp)
vrele(nd.ni_dvp);
@@ -849,68 +1447,241 @@ nfsmout:
if (nd.ni_vp)
vput(nd.ni_vp);
return (error);
+}
+/*
+ * nfs v3 mknod service
+ */
+int
+nfsrv_mknod(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
+{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
+ struct vattr va, dirfor, diraft;
+ register u_int32_t *tl;
+ struct nameidata nd;
+ register int32_t t1;
+ caddr_t bpos;
+ int error = 0, cache, len, dirfor_ret = 1, diraft_ret = 1;
+ u_int32_t major, minor;
+ enum vtype vtyp;
+ char *cp2;
+ struct mbuf *mb, *mb2, *mreq;
+ struct vnode *vp, *dirp = (struct vnode *)0;
+ nfsfh_t nfh;
+ fhandle_t *fhp;
+ u_quad_t frev;
+
+ nd.ni_cnd.cn_nameiop = 0;
+ fhp = &nfh.fh_generic;
+ nfsm_srvmtofh(fhp);
+ nfsm_srvnamesiz(len);
+ nd.ni_cnd.cn_cred = cred;
+ nd.ni_cnd.cn_nameiop = CREATE;
+ nd.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF | SAVESTART;
+ error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
+ &dirp, procp, (nfsd->nd_flag & ND_KERBAUTH));
+ if (dirp)
+ dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred, procp);
+ if (error) {
+ nfsm_reply(NFSX_WCCDATA(1));
+ nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
+ if (dirp)
+ vrele(dirp);
+ return (0);
+ }
+ nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
+ vtyp = nfsv3tov_type(*tl);
+ if (vtyp != VCHR && vtyp != VBLK && vtyp != VSOCK && vtyp != VFIFO) {
+ vrele(nd.ni_startdir);
+ free((caddr_t)nd.ni_cnd.cn_pnbuf, M_NAMEI);
+ error = NFSERR_BADTYPE;
+ VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
+ vput(nd.ni_dvp);
+ goto out;
+ }
+ VATTR_NULL(&va);
+ nfsm_srvsattr(&va);
+ if (vtyp == VCHR || vtyp == VBLK) {
+ nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
+ major = fxdr_unsigned(u_int32_t, *tl++);
+ minor = fxdr_unsigned(u_int32_t, *tl);
+ va.va_rdev = makedev(major, minor);
+ }
+
+ /*
+ * Iff doesn't exist, create it.
+ */
+ if (nd.ni_vp) {
+ vrele(nd.ni_startdir);
+ free((caddr_t)nd.ni_cnd.cn_pnbuf, M_NAMEI);
+ error = EEXIST;
+ VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
+ vput(nd.ni_dvp);
+ goto out;
+ }
+ va.va_type = vtyp;
+ if (vtyp == VSOCK) {
+ vrele(nd.ni_startdir);
+ nqsrv_getl(nd.ni_dvp, ND_WRITE);
+ error = VOP_CREATE(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &va);
+ if (!error)
+ FREE(nd.ni_cnd.cn_pnbuf, M_NAMEI);
+ } else {
+ error = suser(cred, (u_short *)0);
+ if (error) {
+ vrele(nd.ni_startdir);
+ free((caddr_t)nd.ni_cnd.cn_pnbuf, M_NAMEI);
+ VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
+ vput(nd.ni_dvp);
+ goto out;
+ }
+ nqsrv_getl(nd.ni_dvp, ND_WRITE);
+ error = VOP_MKNOD(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &va);
+ if (error) {
+ vrele(nd.ni_startdir);
+ goto out;
+ }
+ nd.ni_cnd.cn_nameiop = LOOKUP;
+ nd.ni_cnd.cn_flags &= ~(LOCKPARENT | SAVESTART);
+ nd.ni_cnd.cn_proc = procp;
+ nd.ni_cnd.cn_cred = procp->p_ucred;
+ error = lookup(&nd);
+ FREE(nd.ni_cnd.cn_pnbuf, M_NAMEI);
+ if (error)
+ goto out;
+ if (nd.ni_cnd.cn_flags & ISSYMLINK) {
+ vrele(nd.ni_dvp);
+ vput(nd.ni_vp);
+ VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
+ error = EINVAL;
+ }
+ }
out:
- vrele(nd.ni_startdir);
- free(nd.ni_cnd.cn_pnbuf, M_NAMEI);
- nfsm_reply(0);
- return 0;
+ vp = nd.ni_vp;
+ if (!error) {
+ bzero((caddr_t)fhp, sizeof(nfh));
+ fhp->fh_fsid = vp->v_mount->mnt_stat.f_fsid;
+ error = VFS_VPTOFH(vp, &fhp->fh_fid);
+ if (!error)
+ error = VOP_GETATTR(vp, &va, cred, procp);
+ vput(vp);
+ }
+ diraft_ret = VOP_GETATTR(dirp, &diraft, cred, procp);
+ vrele(dirp);
+ nfsm_reply(NFSX_SRVFH(1) + NFSX_POSTOPATTR(1) + NFSX_WCCDATA(1));
+ if (!error) {
+ nfsm_srvpostop_fh(fhp);
+ nfsm_srvpostop_attr(0, &va);
+ }
+ nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
+ return (0);
+nfsmout:
+ if (dirp)
+ vrele(dirp);
+ if (nd.ni_cnd.cn_nameiop) {
+ vrele(nd.ni_startdir);
+ free((caddr_t)nd.ni_cnd.cn_pnbuf, M_NAMEI);
+ }
+ VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
+ if (nd.ni_dvp == nd.ni_vp)
+ vrele(nd.ni_dvp);
+ else
+ vput(nd.ni_dvp);
+ if (nd.ni_vp)
+ vput(nd.ni_vp);
+ return (error);
}
/*
* nfs remove service
*/
int
-nfsrv_remove(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_remove(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
struct nameidata nd;
register u_int32_t *tl;
register int32_t t1;
caddr_t bpos;
- int error = 0, cache, len;
+ int error = 0, cache, len, dirfor_ret = 1, diraft_ret = 1;
+ int v3 = (nfsd->nd_flag & ND_NFSV3);
char *cp2;
struct mbuf *mb, *mreq;
- struct vnode *vp;
- nfsv2fh_t nfh;
+ struct vnode *vp, *dirp;
+ struct vattr dirfor, diraft;
+ nfsfh_t nfh;
fhandle_t *fhp;
u_quad_t frev;
+#ifndef nolint
+ vp = (struct vnode *)0;
+#endif
fhp = &nfh.fh_generic;
nfsm_srvmtofh(fhp);
- nfsm_srvstrsiz(len, NFS_MAXNAMLEN);
+ nfsm_srvnamesiz(len);
nd.ni_cnd.cn_cred = cred;
nd.ni_cnd.cn_nameiop = DELETE;
nd.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF;
- error = nfs_namei(&nd, fhp, len, nfsd->nd_slp, nam, &md, &dpos,
- nfsd->nd_procp);
- if (error)
- nfsm_reply(0);
- vp = nd.ni_vp;
- /*
- * The root of a mounted filesystem cannot be deleted.
- */
- if (vp->v_flag & VROOT) {
- VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
- if (nd.ni_dvp == vp)
- vrele(nd.ni_dvp);
+ error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
+ &dirp, procp, (nfsd->nd_flag & ND_KERBAUTH));
+ if (dirp) {
+ if (v3)
+ dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred,
+ procp);
else
- vput(nd.ni_dvp);
- vput(vp);
- error = EBUSY;
- goto out;
+ vrele(dirp);
}
- if (vp->v_flag & VTEXT)
- (void) vnode_pager_uncache(vp);
- nqsrv_getl(nd.ni_dvp, NQL_WRITE);
- nqsrv_getl(vp, NQL_WRITE);
- error = VOP_REMOVE(nd.ni_dvp, nd.ni_vp, &nd.ni_cnd);
+ if (!error) {
+ vp = nd.ni_vp;
+ if (vp->v_type == VDIR &&
+ (error = suser(cred, (u_short *)0)) != 0)
+ goto out;
+ /*
+ * The root of a mounted filesystem cannot be deleted.
+ */
+ if (vp->v_flag & VROOT) {
+ error = EBUSY;
+ goto out;
+ }
+ if (vp->v_flag & VTEXT)
+ (void) vnode_pager_uncache(vp);
out:
- nfsm_reply(0);
+ if (!error) {
+ nqsrv_getl(nd.ni_dvp, ND_WRITE);
+ nqsrv_getl(vp, ND_WRITE);
+ error = VOP_REMOVE(nd.ni_dvp, nd.ni_vp, &nd.ni_cnd);
+ } else {
+ VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
+ if (nd.ni_dvp == vp)
+ vrele(nd.ni_dvp);
+ else
+ vput(nd.ni_dvp);
+ vput(vp);
+ }
+ }
+ if (dirp && v3) {
+ diraft_ret = VOP_GETATTR(dirp, &diraft, cred, procp);
+ vrele(dirp);
+ }
+ nfsm_reply(NFSX_WCCDATA(v3));
+ if (v3) {
+ nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
+ return (0);
+ }
nfsm_srvdone;
}
@@ -918,32 +1689,42 @@ out:
* nfs rename service
*/
int
-nfsrv_rename(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_rename(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
register u_int32_t *tl;
register int32_t t1;
caddr_t bpos;
- int error = 0, cache, len, len2;
+ int error = 0, cache, len, len2, fdirfor_ret = 1, fdiraft_ret = 1;
+ int tdirfor_ret = 1, tdiraft_ret = 1;
+ int v3 = (nfsd->nd_flag & ND_NFSV3);
char *cp2;
struct mbuf *mb, *mreq;
struct nameidata fromnd, tond;
- struct vnode *fvp = NULL, *tvp, *tdvp;
- nfsv2fh_t fnfh, tnfh;
+ struct vnode *fvp, *tvp, *tdvp, *fdirp = (struct vnode *)0;
+ struct vnode *tdirp = (struct vnode *)0;
+ struct vattr fdirfor, fdiraft, tdirfor, tdiraft;
+ nfsfh_t fnfh, tnfh;
fhandle_t *ffhp, *tfhp;
u_quad_t frev;
uid_t saved_uid;
+#ifndef nolint
+ fvp = (struct vnode *)0;
+#endif
ffhp = &fnfh.fh_generic;
tfhp = &tnfh.fh_generic;
fromnd.ni_cnd.cn_nameiop = 0;
tond.ni_cnd.cn_nameiop = 0;
nfsm_srvmtofh(ffhp);
- nfsm_srvstrsiz(len, NFS_MAXNAMLEN);
+ nfsm_srvnamesiz(len);
/*
* Remember our original uid so that we can reset cr_uid before
* the second nfs_namei() call, in case it is remapped.
@@ -952,10 +1733,25 @@ nfsrv_rename(nfsd, mrep, md, dpos, cred, nam, mrq)
fromnd.ni_cnd.cn_cred = cred;
fromnd.ni_cnd.cn_nameiop = DELETE;
fromnd.ni_cnd.cn_flags = WANTPARENT | SAVESTART;
- error = nfs_namei(&fromnd, ffhp, len, nfsd->nd_slp, nam, &md,
- &dpos, nfsd->nd_procp);
- if (error)
- nfsm_reply(0);
+ error = nfs_namei(&fromnd, ffhp, len, slp, nam, &md,
+ &dpos, &fdirp, procp, (nfsd->nd_flag & ND_KERBAUTH));
+ if (fdirp) {
+ if (v3)
+ fdirfor_ret = VOP_GETATTR(fdirp, &fdirfor, cred,
+ procp);
+ else {
+ vrele(fdirp);
+ fdirp = (struct vnode *)0;
+ }
+ }
+ if (error) {
+ nfsm_reply(2 * NFSX_WCCDATA(v3));
+ nfsm_srvwcc_data(fdirfor_ret, &fdirfor, fdiraft_ret, &fdiraft);
+ nfsm_srvwcc_data(tdirfor_ret, &tdirfor, tdiraft_ret, &tdiraft);
+ if (fdirp)
+ vrele(fdirp);
+ return (0);
+ }
fvp = fromnd.ni_vp;
nfsm_srvmtofh(tfhp);
nfsm_strsiz(len2, NFS_MAXNAMLEN);
@@ -963,8 +1759,17 @@ nfsrv_rename(nfsd, mrep, md, dpos, cred, nam, mrq)
tond.ni_cnd.cn_cred = cred;
tond.ni_cnd.cn_nameiop = RENAME;
tond.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF | NOCACHE | SAVESTART;
- error = nfs_namei(&tond, tfhp, len2, nfsd->nd_slp, nam, &md,
- &dpos, nfsd->nd_procp);
+ error = nfs_namei(&tond, tfhp, len2, slp, nam, &md,
+ &dpos, &tdirp, procp, (nfsd->nd_flag & ND_KERBAUTH));
+ if (tdirp) {
+ if (v3)
+ tdirfor_ret = VOP_GETATTR(tdirp, &tdirfor, cred,
+ procp);
+ else {
+ vrele(tdirp);
+ tdirp = (struct vnode *)0;
+ }
+ }
if (error) {
VOP_ABORTOP(fromnd.ni_dvp, &fromnd.ni_cnd);
vrele(fromnd.ni_dvp);
@@ -975,27 +1780,45 @@ nfsrv_rename(nfsd, mrep, md, dpos, cred, nam, mrq)
tvp = tond.ni_vp;
if (tvp != NULL) {
if (fvp->v_type == VDIR && tvp->v_type != VDIR) {
- error = EISDIR;
+ if (v3)
+ error = EEXIST;
+ else
+ error = EISDIR;
goto out;
} else if (fvp->v_type != VDIR && tvp->v_type == VDIR) {
- error = ENOTDIR;
+ if (v3)
+ error = EEXIST;
+ else
+ error = ENOTDIR;
goto out;
}
if (tvp->v_type == VDIR && tvp->v_mountedhere) {
- error = EXDEV;
+ if (v3)
+ error = EXDEV;
+ else
+ error = ENOTEMPTY;
goto out;
}
}
if (fvp->v_type == VDIR && fvp->v_mountedhere) {
- error = EBUSY;
+ if (v3)
+ error = EXDEV;
+ else
+ error = ENOTEMPTY;
goto out;
}
if (fvp->v_mount != tdvp->v_mount) {
- error = EXDEV;
+ if (v3)
+ error = EXDEV;
+ else
+ error = ENOTEMPTY;
goto out;
}
if (fvp == tdvp)
- error = EINVAL;
+ if (v3)
+ error = EINVAL;
+ else
+ error = ENOTEMPTY;
/*
* If source is the same as the destination (that is the
* same vnode with the same name in the same directory),
@@ -1008,10 +1831,10 @@ nfsrv_rename(nfsd, mrep, md, dpos, cred, nam, mrq)
error = -1;
out:
if (!error) {
- nqsrv_getl(fromnd.ni_dvp, NQL_WRITE);
- nqsrv_getl(tdvp, NQL_WRITE);
+ nqsrv_getl(fromnd.ni_dvp, ND_WRITE);
+ nqsrv_getl(tdvp, ND_WRITE);
if (tvp)
- nqsrv_getl(tvp, NQL_WRITE);
+ nqsrv_getl(tvp, ND_WRITE);
error = VOP_RENAME(fromnd.ni_dvp, fromnd.ni_vp, &fromnd.ni_cnd,
tond.ni_dvp, tond.ni_vp, &tond.ni_cnd);
} else {
@@ -1025,21 +1848,39 @@ out:
VOP_ABORTOP(fromnd.ni_dvp, &fromnd.ni_cnd);
vrele(fromnd.ni_dvp);
vrele(fvp);
+ if (error == -1)
+ error = 0;
}
vrele(tond.ni_startdir);
FREE(tond.ni_cnd.cn_pnbuf, M_NAMEI);
out1:
+ if (fdirp) {
+ fdiraft_ret = VOP_GETATTR(fdirp, &fdiraft, cred, procp);
+ vrele(fdirp);
+ }
+ if (tdirp) {
+ tdiraft_ret = VOP_GETATTR(tdirp, &tdiraft, cred, procp);
+ vrele(tdirp);
+ }
vrele(fromnd.ni_startdir);
FREE(fromnd.ni_cnd.cn_pnbuf, M_NAMEI);
- nfsm_reply(0);
- return (error);
+ nfsm_reply(2 * NFSX_WCCDATA(v3));
+ if (v3) {
+ nfsm_srvwcc_data(fdirfor_ret, &fdirfor, fdiraft_ret, &fdiraft);
+ nfsm_srvwcc_data(tdirfor_ret, &tdirfor, tdiraft_ret, &tdiraft);
+ }
+ return (0);
nfsmout:
- if (tond.ni_cnd.cn_nameiop || tond.ni_cnd.cn_flags) {
+ if (fdirp)
+ vrele(fdirp);
+ if (tdirp)
+ vrele(tdirp);
+ if (tond.ni_cnd.cn_nameiop) {
vrele(tond.ni_startdir);
FREE(tond.ni_cnd.cn_pnbuf, M_NAMEI);
}
- if (fromnd.ni_cnd.cn_nameiop || fromnd.ni_cnd.cn_flags) {
+ if (fromnd.ni_cnd.cn_nameiop) {
vrele(fromnd.ni_startdir);
FREE(fromnd.ni_cnd.cn_pnbuf, M_NAMEI);
VOP_ABORTOP(fromnd.ni_dvp, &fromnd.ni_cnd);
@@ -1053,22 +1894,27 @@ nfsmout:
* nfs link service
*/
int
-nfsrv_link(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_link(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
struct nameidata nd;
register u_int32_t *tl;
register int32_t t1;
caddr_t bpos;
- int error = 0, rdonly, cache, len;
+ int error = 0, rdonly, cache, len, dirfor_ret = 1, diraft_ret = 1;
+ int getret = 1, v3 = (nfsd->nd_flag & ND_NFSV3);
char *cp2;
struct mbuf *mb, *mreq;
- struct vnode *vp;
- nfsv2fh_t nfh, dnfh;
+ struct vnode *vp, *xp, *dirp = (struct vnode *)0;
+ struct vattr dirfor, diraft, at;
+ nfsfh_t nfh, dnfh;
fhandle_t *fhp, *dfhp;
u_quad_t frev;
@@ -1076,33 +1922,69 @@ nfsrv_link(nfsd, mrep, md, dpos, cred, nam, mrq)
dfhp = &dnfh.fh_generic;
nfsm_srvmtofh(fhp);
nfsm_srvmtofh(dfhp);
- nfsm_srvstrsiz(len, NFS_MAXNAMLEN);
- error = nfsrv_fhtovp(fhp, FALSE, &vp, cred, nfsd->nd_slp, nam, &rdonly);
- if (error)
- nfsm_reply(0);
+ nfsm_srvnamesiz(len);
+ error = nfsrv_fhtovp(fhp, FALSE, &vp, cred, slp, nam,
+ &rdonly, (nfsd->nd_flag & ND_KERBAUTH));
+ if (error) {
+ nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_WCCDATA(v3));
+ nfsm_srvpostop_attr(getret, &at);
+ nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
+ return (0);
+ }
+ if (vp->v_type == VDIR && (error = suser(cred, (u_short *)0)) != 0)
+ goto out1;
nd.ni_cnd.cn_cred = cred;
nd.ni_cnd.cn_nameiop = CREATE;
nd.ni_cnd.cn_flags = LOCKPARENT;
- error = nfs_namei(&nd, dfhp, len, nfsd->nd_slp, nam, &md, &dpos,
- nfsd->nd_procp);
+ error = nfs_namei(&nd, dfhp, len, slp, nam, &md, &dpos,
+ &dirp, procp, (nfsd->nd_flag & ND_KERBAUTH));
+ if (dirp) {
+ if (v3)
+ dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred,
+ procp);
+ else {
+ vrele(dirp);
+ dirp = (struct vnode *)0;
+ }
+ }
if (error)
+ goto out1;
+ xp = nd.ni_vp;
+ if (xp != NULL) {
+ error = EEXIST;
goto out;
- if (nd.ni_vp) {
+ }
+ xp = nd.ni_dvp;
+ if (vp->v_mount != xp->v_mount)
+ error = EXDEV;
+out:
+ if (!error) {
+ nqsrv_getl(vp, ND_WRITE);
+ nqsrv_getl(xp, ND_WRITE);
+ error = VOP_LINK(nd.ni_dvp, vp, &nd.ni_cnd);
+ } else {
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
if (nd.ni_dvp == nd.ni_vp)
vrele(nd.ni_dvp);
else
vput(nd.ni_dvp);
- vrele(nd.ni_vp);
- error = EEXIST;
- goto out;
+ if (nd.ni_vp)
+ vrele(nd.ni_vp);
+ }
+out1:
+ if (v3)
+ getret = VOP_GETATTR(vp, &at, cred, procp);
+ if (dirp) {
+ diraft_ret = VOP_GETATTR(dirp, &diraft, cred, procp);
+ vrele(dirp);
}
- nqsrv_getl(nd.ni_dvp, NQL_WRITE);
- nqsrv_getl(vp, NQL_WRITE);
- error = VOP_LINK(nd.ni_dvp, vp, &nd.ni_cnd);
-out:
vrele(vp);
- nfsm_reply(0);
+ nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_WCCDATA(v3));
+ if (v3) {
+ nfsm_srvpostop_attr(getret, &at);
+ nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
+ return (0);
+ }
nfsm_srvdone;
}
@@ -1110,39 +1992,55 @@ out:
* nfs symbolic link service
*/
int
-nfsrv_symlink(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_symlink(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
- struct vattr va;
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
+ struct vattr va, dirfor, diraft;
struct nameidata nd;
register u_int32_t *tl;
register int32_t t1;
struct nfsv2_sattr *sp;
- caddr_t bpos;
+ char *bpos, *pathcp = NULL, *cp2;
struct uio io;
struct iovec iv;
- int error = 0, cache, len, len2;
- char *pathcp, *cp2;
- struct mbuf *mb, *mreq;
- nfsv2fh_t nfh;
+ int error = 0, cache, len, len2, dirfor_ret = 1, diraft_ret = 1;
+ int v3 = (nfsd->nd_flag & ND_NFSV3);
+ struct mbuf *mb, *mreq, *mb2;
+ struct vnode *dirp = (struct vnode *)0;
+ nfsfh_t nfh;
fhandle_t *fhp;
u_quad_t frev;
- pathcp = (char *)0;
+ nd.ni_cnd.cn_nameiop = 0;
fhp = &nfh.fh_generic;
nfsm_srvmtofh(fhp);
- nfsm_srvstrsiz(len, NFS_MAXNAMLEN);
+ nfsm_srvnamesiz(len);
nd.ni_cnd.cn_cred = cred;
nd.ni_cnd.cn_nameiop = CREATE;
- nd.ni_cnd.cn_flags = LOCKPARENT;
- error = nfs_namei(&nd, fhp, len, nfsd->nd_slp, nam, &md, &dpos,
- nfsd->nd_procp);
+ nd.ni_cnd.cn_flags = LOCKPARENT | SAVESTART;
+ error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
+ &dirp, procp, (nfsd->nd_flag & ND_KERBAUTH));
+ if (dirp) {
+ if (v3)
+ dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred,
+ procp);
+ else {
+ vrele(dirp);
+ dirp = (struct vnode *)0;
+ }
+ }
if (error)
goto out;
+ VATTR_NULL(&va);
+ if (v3)
+ nfsm_srvsattr(&va);
nfsm_strsiz(len2, NFS_MAXPATHLEN);
MALLOC(pathcp, caddr_t, len2 + 1, M_TEMP, M_WAITOK);
iv.iov_base = pathcp;
@@ -1155,9 +2053,14 @@ nfsrv_symlink(nfsd, mrep, md, dpos, cred, nam, mrq)
io.uio_rw = UIO_READ;
io.uio_procp = (struct proc *)0;
nfsm_mtouio(&io, len2);
- nfsm_dissect(sp, struct nfsv2_sattr *, NFSX_SATTR(nfsd->nd_nqlflag != NQL_NOVAL));
+ if (!v3) {
+ nfsm_dissect(sp, struct nfsv2_sattr *, NFSX_V2SATTR);
+ va.va_mode = fxdr_unsigned(u_int16_t, sp->sa_mode);
+ }
*(pathcp + len2) = '\0';
if (nd.ni_vp) {
+ vrele(nd.ni_startdir);
+ free(nd.ni_cnd.cn_pnbuf, M_NAMEI);
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
if (nd.ni_dvp == nd.ni_vp)
vrele(nd.ni_dvp);
@@ -1167,16 +2070,54 @@ nfsrv_symlink(nfsd, mrep, md, dpos, cred, nam, mrq)
error = EEXIST;
goto out;
}
- VATTR_NULL(&va);
- va.va_mode = fxdr_unsigned(u_int16_t, sp->sa_mode);
- nqsrv_getl(nd.ni_dvp, NQL_WRITE);
+ nqsrv_getl(nd.ni_dvp, ND_WRITE);
error = VOP_SYMLINK(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &va, pathcp);
+ if (error)
+ vrele(nd.ni_startdir);
+ else {
+ if (v3) {
+ nd.ni_cnd.cn_nameiop = LOOKUP;
+ nd.ni_cnd.cn_flags &= ~(LOCKPARENT | SAVESTART | FOLLOW);
+ nd.ni_cnd.cn_flags |= (NOFOLLOW | LOCKLEAF);
+ nd.ni_cnd.cn_proc = procp;
+ nd.ni_cnd.cn_cred = cred;
+ error = lookup(&nd);
+ if (!error) {
+ bzero((caddr_t)fhp, sizeof(nfh));
+ fhp->fh_fsid = nd.ni_vp->v_mount->mnt_stat.f_fsid;
+ error = VFS_VPTOFH(nd.ni_vp, &fhp->fh_fid);
+ if (!error)
+ error = VOP_GETATTR(nd.ni_vp, &va, cred,
+ procp);
+ vput(nd.ni_vp);
+ }
+ } else
+ vrele(nd.ni_startdir);
+ FREE(nd.ni_cnd.cn_pnbuf, M_NAMEI);
+ }
out:
if (pathcp)
FREE(pathcp, M_TEMP);
- nfsm_reply(0);
- return (error);
+ if (dirp) {
+ diraft_ret = VOP_GETATTR(dirp, &diraft, cred, procp);
+ vrele(dirp);
+ }
+ nfsm_reply(NFSX_SRVFH(v3) + NFSX_POSTOPATTR(v3) + NFSX_WCCDATA(v3));
+ if (v3) {
+ if (!error) {
+ nfsm_srvpostop_fh(fhp);
+ nfsm_srvpostop_attr(0, &va);
+ }
+ nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
+ }
+ return (0);
nfsmout:
+ if (nd.ni_cnd.cn_nameiop) {
+ vrele(nd.ni_startdir);
+ free(nd.ni_cnd.cn_pnbuf, M_NAMEI);
+ }
+ if (dirp)
+ vrele(dirp);
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
if (nd.ni_dvp == nd.ni_vp)
vrele(nd.ni_dvp);
@@ -1193,42 +2134,64 @@ nfsmout:
* nfs mkdir service
*/
int
-nfsrv_mkdir(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_mkdir(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
- struct vattr va;
- register struct nfsv2_fattr *fp;
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
+ struct vattr va, dirfor, diraft;
+ register struct nfs_fattr *fp;
struct nameidata nd;
register caddr_t cp;
register u_int32_t *tl;
register int32_t t1;
caddr_t bpos;
- int error = 0, cache, len;
+ int error = 0, cache, len, dirfor_ret = 1, diraft_ret = 1;
+ int v3 = (nfsd->nd_flag & ND_NFSV3);
char *cp2;
struct mbuf *mb, *mb2, *mreq;
- struct vnode *vp;
- nfsv2fh_t nfh;
+ struct vnode *vp, *dirp = (struct vnode *)0;
+ nfsfh_t nfh;
fhandle_t *fhp;
u_quad_t frev;
fhp = &nfh.fh_generic;
nfsm_srvmtofh(fhp);
- nfsm_srvstrsiz(len, NFS_MAXNAMLEN);
+ nfsm_srvnamesiz(len);
nd.ni_cnd.cn_cred = cred;
nd.ni_cnd.cn_nameiop = CREATE;
nd.ni_cnd.cn_flags = LOCKPARENT;
- error = nfs_namei(&nd, fhp, len, nfsd->nd_slp, nam, &md, &dpos,
- nfsd->nd_procp);
- if (error)
- nfsm_reply(0);
- nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
+ error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
+ &dirp, procp, (nfsd->nd_flag & ND_KERBAUTH));
+ if (dirp) {
+ if (v3)
+ dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred,
+ procp);
+ else {
+ vrele(dirp);
+ dirp = (struct vnode *)0;
+ }
+ }
+ if (error) {
+ nfsm_reply(NFSX_WCCDATA(v3));
+ nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
+ if (dirp)
+ vrele(dirp);
+ return (0);
+ }
VATTR_NULL(&va);
+ if (v3) {
+ nfsm_srvsattr(&va);
+ } else {
+ nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
+ va.va_mode = nfstov_mode(*tl++);
+ }
va.va_type = VDIR;
- va.va_mode = nfstov_mode(*tl++);
vp = nd.ni_vp;
if (vp != NULL) {
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
@@ -1238,26 +2201,40 @@ nfsrv_mkdir(nfsd, mrep, md, dpos, cred, nam, mrq)
vput(nd.ni_dvp);
vrele(vp);
error = EEXIST;
- nfsm_reply(0);
+ goto out;
}
- nqsrv_getl(nd.ni_dvp, NQL_WRITE);
- if ((error = VOP_MKDIR(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &va)) != 0)
- nfsm_reply(0);
- vp = nd.ni_vp;
- bzero((caddr_t)fhp, sizeof(nfh));
- fhp->fh_fsid = vp->v_mount->mnt_stat.f_fsid;
- if ((error = VFS_VPTOFH(vp, &fhp->fh_fid)) != 0) {
+ nqsrv_getl(nd.ni_dvp, ND_WRITE);
+ error = VOP_MKDIR(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &va);
+ if (!error) {
+ vp = nd.ni_vp;
+ bzero((caddr_t)fhp, sizeof(nfh));
+ fhp->fh_fsid = vp->v_mount->mnt_stat.f_fsid;
+ error = VFS_VPTOFH(vp, &fhp->fh_fid);
+ if (!error)
+ error = VOP_GETATTR(vp, &va, cred, procp);
vput(vp);
- nfsm_reply(0);
}
- error = VOP_GETATTR(vp, &va, cred, nfsd->nd_procp);
- vput(vp);
- nfsm_reply(NFSX_FH+NFSX_FATTR(nfsd->nd_nqlflag != NQL_NOVAL));
- nfsm_srvfhtom(fhp);
- nfsm_build(fp, struct nfsv2_fattr *, NFSX_FATTR(nfsd->nd_nqlflag != NQL_NOVAL));
- nfsm_srvfillattr;
- return (error);
+out:
+ if (dirp) {
+ diraft_ret = VOP_GETATTR(dirp, &diraft, cred, procp);
+ vrele(dirp);
+ }
+ nfsm_reply(NFSX_SRVFH(v3) + NFSX_POSTOPATTR(v3) + NFSX_WCCDATA(v3));
+ if (v3) {
+ if (!error) {
+ nfsm_srvpostop_fh(fhp);
+ nfsm_srvpostop_attr(0, &va);
+ }
+ nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
+ } else {
+ nfsm_srvfhtom(fhp, v3);
+ nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
+ nfsm_srvfillattr(&va, fp);
+ }
+ return (0);
nfsmout:
+ if (dirp)
+ vrele(dirp);
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
if (nd.ni_dvp == nd.ni_vp)
vrele(nd.ni_dvp);
@@ -1272,35 +2249,54 @@ nfsmout:
* nfs rmdir service
*/
int
-nfsrv_rmdir(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_rmdir(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
register u_int32_t *tl;
register int32_t t1;
caddr_t bpos;
- int error = 0, cache, len;
+ int error = 0, cache, len, dirfor_ret = 1, diraft_ret = 1;
+ int v3 = (nfsd->nd_flag & ND_NFSV3);
char *cp2;
struct mbuf *mb, *mreq;
- struct vnode *vp;
- nfsv2fh_t nfh;
+ struct vnode *vp, *dirp = (struct vnode *)0;
+ struct vattr dirfor, diraft;
+ nfsfh_t nfh;
fhandle_t *fhp;
struct nameidata nd;
u_quad_t frev;
fhp = &nfh.fh_generic;
nfsm_srvmtofh(fhp);
- nfsm_srvstrsiz(len, NFS_MAXNAMLEN);
+ nfsm_srvnamesiz(len);
nd.ni_cnd.cn_cred = cred;
nd.ni_cnd.cn_nameiop = DELETE;
nd.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF;
- error = nfs_namei(&nd, fhp, len, nfsd->nd_slp, nam, &md, &dpos,
- nfsd->nd_procp);
- if (error)
- nfsm_reply(0);
+ error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
+ &dirp, procp, (nfsd->nd_flag & ND_KERBAUTH));
+ if (dirp) {
+ if (v3)
+ dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred,
+ procp);
+ else {
+ vrele(dirp);
+ dirp = (struct vnode *)0;
+ }
+ }
+ if (error) {
+ nfsm_reply(NFSX_WCCDATA(v3));
+ nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
+ if (dirp)
+ vrele(dirp);
+ return (0);
+ }
vp = nd.ni_vp;
if (vp->v_type != VDIR) {
error = ENOTDIR;
@@ -1320,8 +2316,8 @@ nfsrv_rmdir(nfsd, mrep, md, dpos, cred, nam, mrq)
error = EBUSY;
out:
if (!error) {
- nqsrv_getl(nd.ni_dvp, NQL_WRITE);
- nqsrv_getl(vp, NQL_WRITE);
+ nqsrv_getl(nd.ni_dvp, ND_WRITE);
+ nqsrv_getl(vp, ND_WRITE);
error = VOP_RMDIR(nd.ni_dvp, nd.ni_vp, &nd.ni_cnd);
} else {
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
@@ -1331,7 +2327,15 @@ out:
vput(nd.ni_dvp);
vput(vp);
}
- nfsm_reply(0);
+ if (dirp) {
+ diraft_ret = VOP_GETATTR(dirp, &diraft, cred, procp);
+ vrele(dirp);
+ }
+ nfsm_reply(NFSX_WCCDATA(v3));
+ if (v3) {
+ nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
+ return (0);
+ }
nfsm_srvdone;
}
@@ -1351,11 +2355,13 @@ out:
* - it trims out records with d_fileno == 0
* this doesn't matter for Unix clients, but they might confuse clients
* for other os'.
+ * - it trims out records with d_type == DT_WHT
+ * these cannot be seen through NFS (unless we extend the protocol)
* NB: It is tempting to set eof to true if the VOP_READDIR() reads less
* than requested, but this may not apply to all filesystems. For
* example, client NFS does not { although it is never remote mounted
* anyhow }
- * The alternate call nqnfsrv_readdirlook() does lookups as well.
+ * The alternate call nfsrv_readdirplus() does lookups as well.
* PS: The NFS protocol spec. does not clarify what the "count" byte
* argument is a count of.. just name strings and file id's or the
* entire reply rpc or ...
@@ -1365,24 +2371,28 @@ out:
* "entry" structures, but are in the rpc.
*/
struct flrep {
- u_int32_t fl_cachable;
- u_int32_t fl_duration;
- u_int32_t fl_frev[2];
- nfsv2fh_t fl_nfh;
- u_int32_t fl_fattr[NFSX_NQFATTR / sizeof (u_int32_t)];
+ nfsuint64 fl_off;
+ u_int32_t fl_postopok;
+ u_int32_t fl_fattr[NFSX_V3FATTR / sizeof (u_int32_t)];
+ u_int32_t fl_fhok;
+ u_int32_t fl_fhsize;
+ u_int32_t fl_nfh[NFSX_V3FH / sizeof (u_int32_t)];
};
int
-nfsrv_readdir(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_readdir(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
register char *bp, *be;
register struct mbuf *mp;
- register struct dirent *dp = NULL;
+ register struct dirent *dp;
register caddr_t cp;
register u_int32_t *tl;
register int32_t t1;
@@ -1390,39 +2400,71 @@ nfsrv_readdir(nfsd, mrep, md, dpos, cred, nam, mrq)
struct mbuf *mb, *mb2, *mreq, *mp2;
char *cpos, *cend, *cp2, *rbuf;
struct vnode *vp;
- nfsv2fh_t nfh;
+ struct vattr at;
+ nfsfh_t nfh;
fhandle_t *fhp;
struct uio io;
struct iovec iv;
- int len, nlen, rem, xfer, tsiz, i, error = 0;
- int siz, cnt, fullsiz, eofflag, rdonly, cache;
- u_quad_t frev;
- u_long off, *cookiebuf, *cookie;
- int ncookies;
+ int len, nlen, rem, xfer, tsiz, i, error = 0, getret = 1;
+ int siz, cnt, fullsiz, eofflag, rdonly, cache, ncookies;
+ int v3 = (nfsd->nd_flag & ND_NFSV3);
+ u_quad_t frev, off, toff, verf;
+ u_long *cookies = NULL, *cookiep;
fhp = &nfh.fh_generic;
nfsm_srvmtofh(fhp);
- nfsm_dissect(tl, u_int32_t *, 2*NFSX_UNSIGNED);
- off = fxdr_unsigned(u_int32_t, *tl++);
+ if (v3) {
+ nfsm_dissect(tl, u_int32_t *, 5 * NFSX_UNSIGNED);
+ fxdr_hyper(tl, &toff);
+ tl += 2;
+ fxdr_hyper(tl, &verf);
+ tl += 2;
+ } else {
+ nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
+ toff = fxdr_unsigned(u_quad_t, *tl++);
+ }
+ off = toff;
cnt = fxdr_unsigned(int, *tl);
- siz = ((cnt+NFS_DIRBLKSIZ-1) & ~(NFS_DIRBLKSIZ-1));
- if (cnt > NFS_MAXREADDIR)
- siz = NFS_MAXREADDIR;
+ siz = ((cnt + DIRBLKSIZ - 1) & ~(DIRBLKSIZ - 1));
+ xfer = NFS_SRVMAXDATA(nfsd);
+ if (siz > xfer)
+ siz = xfer;
fullsiz = siz;
- ncookies = siz / 16; /* Guess at the number of cookies needed. */
- error = nfsrv_fhtovp(fhp, TRUE, &vp, cred, nfsd->nd_slp, nam, &rdonly);
- if (error)
- nfsm_reply(0);
- nqsrv_getl(vp, NQL_READ);
- error = nfsrv_access(vp, VEXEC, cred, rdonly, nfsd->nd_procp);
+ error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
+ &rdonly, (nfsd->nd_flag & ND_KERBAUTH));
+ if (error) {
+ nfsm_reply(NFSX_UNSIGNED);
+ nfsm_srvpostop_attr(getret, &at);
+ return (0);
+ }
+ nqsrv_getl(vp, ND_READ);
+ if (v3) {
+ error = getret = VOP_GETATTR(vp, &at, cred, procp);
+#ifdef NFS3_STRICTVERF
+ /*
+ * XXX This check is too strict for Solaris 2.5 clients.
+ */
+ if (!error && toff && verf != at.va_filerev)
+ error = NFSERR_BAD_COOKIE;
+#endif
+ }
+ if (!error)
+ error = nfsrv_access(vp, VEXEC, cred, rdonly, procp);
if (error) {
vput(vp);
- nfsm_reply(0);
+ nfsm_reply(NFSX_POSTOPATTR(v3));
+ nfsm_srvpostop_attr(getret, &at);
+ return (0);
}
+#ifdef Lite2_integrated
+ VOP_UNLOCK(vp, 0, procp);
+#else
VOP_UNLOCK(vp);
+#endif
MALLOC(rbuf, caddr_t, siz, M_TEMP, M_WAITOK);
- MALLOC(cookiebuf, u_long *, ncookies * sizeof(*cookiebuf), M_TEMP,
- M_WAITOK);
+ ncookies = siz / (5 * NFSX_UNSIGNED); /*7 for V3, but it's an est. so*/
+ MALLOC(cookies, u_long *, ncookies * sizeof (u_long *), M_TEMP,
+ M_WAITOK);
again:
iv.iov_base = rbuf;
iv.iov_len = fullsiz;
@@ -1433,14 +2475,37 @@ again:
io.uio_segflg = UIO_SYSSPACE;
io.uio_rw = UIO_READ;
io.uio_procp = (struct proc *)0;
- error = VOP_READDIR(vp, &io, cred, &eofflag, cookiebuf, ncookies);
- cookie = cookiebuf;
+ eofflag = 0;
+#ifdef Lite2_integrated
+ VOP_LOCK(vp, 0, procp);
+#else
+ VOP_LOCK(vp);
+#endif
+
+ error = VOP_READDIR(vp, &io, cred, &eofflag, cookies, ncookies);
+
off = (off_t)io.uio_offset;
+ if (!cookies && !error)
+ error = NFSERR_PERM;
+ if (v3) {
+ getret = VOP_GETATTR(vp, &at, cred, procp);
+ if (!error)
+ error = getret;
+ }
+
+#ifdef Lite2_integrated
+ VOP_UNLOCK(vp, 0, procp);
+#else
+ VOP_UNLOCK(vp);
+#endif
if (error) {
vrele(vp);
- free((caddr_t)cookiebuf, M_TEMP);
free((caddr_t)rbuf, M_TEMP);
- nfsm_reply(0);
+ if (cookies)
+ free((caddr_t)cookies, M_TEMP);
+ nfsm_reply(NFSX_POSTOPATTR(v3));
+ nfsm_srvpostop_attr(getret, &at);
+ return (0);
}
if (io.uio_resid) {
siz -= io.uio_resid;
@@ -1451,12 +2516,19 @@ again:
*/
if (siz == 0) {
vrele(vp);
- nfsm_reply(2*NFSX_UNSIGNED);
- nfsm_build(tl, u_int32_t *, 2*NFSX_UNSIGNED);
+ nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_COOKIEVERF(v3) +
+ 2 * NFSX_UNSIGNED);
+ if (v3) {
+ nfsm_srvpostop_attr(getret, &at);
+ nfsm_build(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
+ txdr_hyper(&at.va_filerev, tl);
+ tl += 2;
+ } else
+ nfsm_build(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
*tl++ = nfs_false;
*tl = nfs_true;
- FREE((caddr_t)cookiebuf, M_TEMP);
FREE((caddr_t)rbuf, M_TEMP);
+ FREE((caddr_t)cookies, M_TEMP);
return (0);
}
}
@@ -1467,31 +2539,41 @@ again:
*/
cpos = rbuf;
cend = rbuf + siz;
- while (cpos < cend) {
+ dp = (struct dirent *)cpos;
+ cookiep = cookies;
+
+ while ((dp->d_fileno == 0 || dp->d_type == DT_WHT) &&
+ cpos < cend && ncookies > 0) {
+ cpos += dp->d_reclen;
dp = (struct dirent *)cpos;
- if (dp->d_fileno == 0) {
- cpos += dp->d_reclen;
- cookie++;
- } else
- break;
+ cookiep++;
+ ncookies--;
}
- if (cpos >= cend) {
+ if (cpos >= cend || ncookies == 0) {
+ toff = off;
siz = fullsiz;
goto again;
}
- len = 3*NFSX_UNSIGNED; /* paranoia, probably can be 0 */
- nfsm_reply(siz);
+ len = 3 * NFSX_UNSIGNED; /* paranoia, probably can be 0 */
+ nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_COOKIEVERF(v3) + siz);
+ if (v3) {
+ nfsm_srvpostop_attr(getret, &at);
+ nfsm_build(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
+ txdr_hyper(&at.va_filerev, tl);
+ }
mp = mp2 = mb;
bp = bpos;
be = bp + M_TRAILINGSPACE(mp);
/* Loop through the records and build reply */
- while (cpos < cend) {
- if (dp->d_fileno != 0) {
+ while (cpos < cend && ncookies > 0) {
+ if (dp->d_fileno != 0 && dp->d_type != DT_WHT) {
nlen = dp->d_namlen;
rem = nfsm_rndup(nlen)-nlen;
- len += (4*NFSX_UNSIGNED + nlen + rem);
+ len += (4 * NFSX_UNSIGNED + nlen + rem);
+ if (v3)
+ len += 2 * NFSX_UNSIGNED;
if (len > cnt) {
eofflag = 0;
break;
@@ -1503,6 +2585,11 @@ again:
nfsm_clget;
*tl = nfs_true;
bp += NFSX_UNSIGNED;
+ if (v3) {
+ nfsm_clget;
+ *tl = 0;
+ bp += NFSX_UNSIGNED;
+ }
nfsm_clget;
*tl = txdr_unsigned(dp->d_fileno);
bp += NFSX_UNSIGNED;
@@ -1525,18 +2612,24 @@ again:
if (xfer > 0)
cp += tsiz;
}
- /* And null pad to a int32_t boundary */
+ /* And null pad to an int32_t boundary */
for (i = 0; i < rem; i++)
*bp++ = '\0';
nfsm_clget;
/* Finish off the record */
- *tl = txdr_unsigned(*cookie);
+ if (v3) {
+ *tl = 0;
+ bp += NFSX_UNSIGNED;
+ nfsm_clget;
+ }
+ *tl = txdr_unsigned(*cookiep);
bp += NFSX_UNSIGNED;
}
cpos += dp->d_reclen;
dp = (struct dirent *)cpos;
- cookie++;
+ cookiep++;
+ ncookies--;
}
vrele(vp);
nfsm_clget;
@@ -1553,22 +2646,25 @@ again:
mp->m_len = bp - mtod(mp, caddr_t);
} else
mp->m_len += bp - bpos;
- FREE(cookiebuf, M_TEMP);
- FREE(rbuf, M_TEMP);
+ FREE((caddr_t)rbuf, M_TEMP);
+ FREE((caddr_t)cookies, M_TEMP);
nfsm_srvdone;
}
int
-nqnfsrv_readdirlook(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_readdirplus(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
register char *bp, *be;
register struct mbuf *mp;
- register struct dirent *dp = NULL;
+ register struct dirent *dp;
register caddr_t cp;
register u_int32_t *tl;
register int32_t t1;
@@ -1577,42 +2673,67 @@ nqnfsrv_readdirlook(nfsd, mrep, md, dpos, cred, nam, mrq)
char *cpos, *cend, *cp2, *rbuf;
struct vnode *vp, *nvp;
struct flrep fl;
- nfsv2fh_t nfh;
- fhandle_t *fhp;
+ nfsfh_t nfh;
+ fhandle_t *fhp, *nfhp = (fhandle_t *)fl.fl_nfh;
struct uio io;
struct iovec iv;
- struct vattr va;
- struct nfsv2_fattr *fp;
- int len, nlen, rem, xfer, tsiz, i, error = 0, duration2, cache2;
- int siz, cnt, fullsiz, eofflag, rdonly, cache;
- u_quad_t frev, frev2;
- u_long off, *cookiebuf, *cookie;
- int ncookies;
+ struct vattr va, at, *vap = &va;
+ struct nfs_fattr *fp;
+ int len, nlen, rem, xfer, tsiz, i, error = 0, getret = 1;
+ int siz, cnt, fullsiz, eofflag, rdonly, cache, dirlen, ncookies;
+ u_quad_t frev, off, toff, verf;
+ u_long *cookies = NULL, *cookiep;
fhp = &nfh.fh_generic;
nfsm_srvmtofh(fhp);
- nfsm_dissect(tl, u_int32_t *, 3*NFSX_UNSIGNED);
- off = fxdr_unsigned(u_int32_t, *tl++);
- cnt = fxdr_unsigned(int, *tl++);
- duration2 = fxdr_unsigned(int, *tl);
- siz = ((cnt+NFS_DIRBLKSIZ-1) & ~(NFS_DIRBLKSIZ-1));
- if (cnt > NFS_MAXREADDIR)
- siz = NFS_MAXREADDIR;
+ nfsm_dissect(tl, u_int32_t *, 6 * NFSX_UNSIGNED);
+ fxdr_hyper(tl, &toff);
+ tl += 2;
+ fxdr_hyper(tl, &verf);
+ tl += 2;
+ siz = fxdr_unsigned(int, *tl++);
+ cnt = fxdr_unsigned(int, *tl);
+ off = toff;
+ siz = ((siz + DIRBLKSIZ - 1) & ~(DIRBLKSIZ - 1));
+ xfer = NFS_SRVMAXDATA(nfsd);
+ if (siz > xfer)
+ siz = xfer;
fullsiz = siz;
- ncookies = siz / 16; /* Guess at the number of cookies needed. */
- error = nfsrv_fhtovp(fhp, TRUE, &vp, cred, nfsd->nd_slp, nam, &rdonly);
- if (error)
- nfsm_reply(0);
- nqsrv_getl(vp, NQL_READ);
- error = nfsrv_access(vp, VEXEC, cred, rdonly, nfsd->nd_procp);
+ error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
+ &rdonly, (nfsd->nd_flag & ND_KERBAUTH));
+ if (error) {
+ nfsm_reply(NFSX_UNSIGNED);
+ nfsm_srvpostop_attr(getret, &at);
+ return (0);
+ }
+ error = getret = VOP_GETATTR(vp, &at, cred, procp);
+#ifdef NFS3_STRICTVERF
+ /*
+ * XXX This check is too strict for Solaris 2.5 clients.
+ */
+ if (!error && toff && verf != at.va_filerev)
+ error = NFSERR_BAD_COOKIE;
+#endif
+ if (!error) {
+ nqsrv_getl(vp, ND_READ);
+ error = nfsrv_access(vp, VEXEC, cred, rdonly, procp);
+ }
if (error) {
vput(vp);
- nfsm_reply(0);
+ nfsm_reply(NFSX_V3POSTOPATTR);
+ nfsm_srvpostop_attr(getret, &at);
+ return (0);
}
+#ifdef Lite2_integrated
+ VOP_UNLOCK(vp, 0, procp);
+#else
VOP_UNLOCK(vp);
+#endif
+
MALLOC(rbuf, caddr_t, siz, M_TEMP, M_WAITOK);
- MALLOC(cookiebuf, u_long *, ncookies * sizeof(*cookiebuf), M_TEMP,
- M_WAITOK);
+ ncookies = siz / (7 * NFSX_UNSIGNED);
+ MALLOC(cookies, u_long *, ncookies * sizeof (u_long *), M_TEMP,
+ M_WAITOK);
again:
iv.iov_base = rbuf;
iv.iov_len = fullsiz;
@@ -1623,14 +2744,35 @@ again:
io.uio_segflg = UIO_SYSSPACE;
io.uio_rw = UIO_READ;
io.uio_procp = (struct proc *)0;
- error = VOP_READDIR(vp, &io, cred, &eofflag, cookiebuf, ncookies);
- cookie = cookiebuf;
- off = (u_long)io.uio_offset;
+ eofflag = 0;
+
+#ifdef Lite2_integrated
+ VOP_LOCK(vp, 0, procp);
+#else
+ VOP_LOCK(vp);
+#endif
+ error = VOP_READDIR(vp, &io, cred, &eofflag, cookies, ncookies);
+
+ off = (u_quad_t)io.uio_offset;
+ getret = VOP_GETATTR(vp, &at, cred, procp);
+
+#ifdef Lite2_integrated
+ VOP_UNLOCK(vp, 0, procp);
+#else
+ VOP_UNLOCK(vp);
+#endif
+ if (!cookies && !error)
+ error = NFSERR_PERM;
+ if (!error)
+ error = getret;
if (error) {
vrele(vp);
- free((caddr_t)cookiebuf, M_TEMP);
+ if (cookies)
+ free((caddr_t)cookies, M_TEMP);
free((caddr_t)rbuf, M_TEMP);
- nfsm_reply(0);
+ nfsm_reply(NFSX_V3POSTOPATTR);
+ nfsm_srvpostop_attr(getret, &at);
+ return (0);
}
if (io.uio_resid) {
siz -= io.uio_resid;
@@ -1641,11 +2783,15 @@ again:
*/
if (siz == 0) {
vrele(vp);
- nfsm_reply(2 * NFSX_UNSIGNED);
- nfsm_build(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
+ nfsm_reply(NFSX_V3POSTOPATTR + NFSX_V3COOKIEVERF +
+ 2 * NFSX_UNSIGNED);
+ nfsm_srvpostop_attr(getret, &at);
+ nfsm_build(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
+ txdr_hyper(&at.va_filerev, tl);
+ tl += 2;
*tl++ = nfs_false;
*tl = nfs_true;
- FREE((caddr_t)cookiebuf, M_TEMP);
+ FREE((caddr_t)cookies, M_TEMP);
FREE((caddr_t)rbuf, M_TEMP);
return (0);
}
@@ -1657,28 +2803,34 @@ again:
*/
cpos = rbuf;
cend = rbuf + siz;
- while (cpos < cend) {
+ dp = (struct dirent *)cpos;
+ cookiep = cookies;
+
+ while ((dp->d_fileno == 0 || dp->d_type == DT_WHT)
+ && cpos < cend && ncookies > 0) {
+ cpos += dp->d_reclen;
dp = (struct dirent *)cpos;
- if (dp->d_fileno == 0) {
- cpos += dp->d_reclen;
- cookie++;
- } else
- break;
+ cookiep++;
+ ncookies--;
}
- if (cpos >= cend) {
+ if (cpos >= cend || ncookies == 0) {
+ toff = off;
siz = fullsiz;
goto again;
}
- len = 3 * NFSX_UNSIGNED; /* paranoia, probably can be 0 */
- nfsm_reply(siz);
+ dirlen = len = NFSX_V3POSTOPATTR + NFSX_V3COOKIEVERF + 2 * NFSX_UNSIGNED;
+ nfsm_reply(cnt);
+ nfsm_srvpostop_attr(getret, &at);
+ nfsm_build(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
+ txdr_hyper(&at.va_filerev, tl);
mp = mp2 = mb;
bp = bpos;
be = bp + M_TRAILINGSPACE(mp);
/* Loop through the records and build reply */
- while (cpos < cend) {
- if (dp->d_fileno != 0) {
+ while (cpos < cend && ncookies > 0) {
+ if (dp->d_fileno != 0 && dp->d_type != DT_WHT) {
nlen = dp->d_namlen;
rem = nfsm_rndup(nlen)-nlen;
@@ -1688,59 +2840,51 @@ again:
*/
if (VFS_VGET(vp->v_mount, dp->d_fileno, &nvp))
goto invalid;
- bzero((caddr_t)&fl.fl_nfh, sizeof (nfsv2fh_t));
- fl.fl_nfh.fh_generic.fh_fsid =
+ bzero((caddr_t)nfhp, NFSX_V3FH);
+ nfhp->fh_fsid =
nvp->v_mount->mnt_stat.f_fsid;
- if (VFS_VPTOFH(nvp, &fl.fl_nfh.fh_generic.fh_fid)) {
+ if (VFS_VPTOFH(nvp, &nfhp->fh_fid)) {
vput(nvp);
goto invalid;
}
- if (duration2) {
- (void) nqsrv_getlease(nvp, &duration2, NQL_READ,
- nfsd, nam, &cache2, &frev2, cred);
- fl.fl_duration = txdr_unsigned(duration2);
- fl.fl_cachable = txdr_unsigned(cache2);
- txdr_hyper(&frev2, fl.fl_frev);
- } else
- fl.fl_duration = 0;
- if (VOP_GETATTR(nvp, &va, cred, nfsd->nd_procp)) {
+ if (VOP_GETATTR(nvp, vap, cred, procp)) {
vput(nvp);
goto invalid;
}
vput(nvp);
- fp = (struct nfsv2_fattr *)&fl.fl_fattr;
- nfsm_srvfillattr;
- len += (4*NFSX_UNSIGNED + nlen + rem + NFSX_FH
- + NFSX_NQFATTR);
- if (len > cnt) {
+
+ /*
+ * If either the dircount or maxcount will be
+ * exceeded, get out now. Both of these lengths
+ * are calculated conservatively, including all
+ * XDR overheads.
+ */
+ len += (7 * NFSX_UNSIGNED + nlen + rem + NFSX_V3FH +
+ NFSX_V3POSTOPATTR);
+ dirlen += (6 * NFSX_UNSIGNED + nlen + rem);
+ if (len > cnt || dirlen > fullsiz) {
eofflag = 0;
break;
}
+
/*
* Build the directory record xdr from
* the dirent entry.
*/
+ fp = (struct nfs_fattr *)&fl.fl_fattr;
+ nfsm_srvfillattr(vap, fp);
+ fl.fl_fhsize = txdr_unsigned(NFSX_V3FH);
+ fl.fl_fhok = nfs_true;
+ fl.fl_postopok = nfs_true;
+ fl.fl_off.nfsuquad[0] = 0;
+ fl.fl_off.nfsuquad[1] = txdr_unsigned(*cookiep);
+
nfsm_clget;
*tl = nfs_true;
bp += NFSX_UNSIGNED;
-
- /*
- * For readdir_and_lookup copy the stuff out.
- */
- xfer = sizeof (struct flrep);
- cp = (caddr_t)&fl;
- while (xfer > 0) {
- nfsm_clget;
- if ((bp+xfer) > be)
- tsiz = be-bp;
- else
- tsiz = xfer;
- bcopy(cp, bp, tsiz);
- bp += tsiz;
- xfer -= tsiz;
- if (xfer > 0)
- cp += tsiz;
- }
+ nfsm_clget;
+ *tl = 0;
+ bp += NFSX_UNSIGNED;
nfsm_clget;
*tl = txdr_unsigned(dp->d_fileno);
bp += NFSX_UNSIGNED;
@@ -1753,8 +2897,8 @@ again:
cp = dp->d_name;
while (xfer > 0) {
nfsm_clget;
- if ((bp+xfer) > be)
- tsiz = be-bp;
+ if ((bp + xfer) > be)
+ tsiz = be - bp;
else
tsiz = xfer;
bcopy(cp, bp, tsiz);
@@ -1763,19 +2907,33 @@ again:
if (xfer > 0)
cp += tsiz;
}
- /* And null pad to a int32_t boundary */
+ /* And null pad to an int32_t boundary */
for (i = 0; i < rem; i++)
*bp++ = '\0';
- nfsm_clget;
- /* Finish off the record */
- *tl = txdr_unsigned(*cookie);
- bp += NFSX_UNSIGNED;
+ /*
+ * Now copy the flrep structure out.
+ */
+ xfer = sizeof (struct flrep);
+ cp = (caddr_t)&fl;
+ while (xfer > 0) {
+ nfsm_clget;
+ if ((bp + xfer) > be)
+ tsiz = be - bp;
+ else
+ tsiz = xfer;
+ bcopy(cp, bp, tsiz);
+ bp += tsiz;
+ xfer -= tsiz;
+ if (xfer > 0)
+ cp += tsiz;
+ }
}
invalid:
cpos += dp->d_reclen;
dp = (struct dirent *)cpos;
- cookie++;
+ cookiep++;
+ ncookies--;
}
vrele(vp);
nfsm_clget;
@@ -1792,8 +2950,70 @@ invalid:
mp->m_len = bp - mtod(mp, caddr_t);
} else
mp->m_len += bp - bpos;
- FREE(cookiebuf, M_TEMP);
- FREE(rbuf, M_TEMP);
+ FREE((caddr_t)cookies, M_TEMP);
+ FREE((caddr_t)rbuf, M_TEMP);
+ nfsm_srvdone;
+}
+
+/*
+ * nfs commit service
+ */
+int
+nfsrv_commit(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
+{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
+ struct vattr bfor, aft;
+ struct vnode *vp;
+ nfsfh_t nfh;
+ fhandle_t *fhp;
+ register u_int32_t *tl;
+ register int32_t t1;
+ caddr_t bpos;
+ int error = 0, rdonly, for_ret = 1, aft_ret = 1, cnt, cache;
+ char *cp2;
+ struct mbuf *mb, *mb2, *mreq;
+ u_quad_t frev, off;
+
+#ifndef nolint
+ cache = 0;
+#endif
+ fhp = &nfh.fh_generic;
+ nfsm_srvmtofh(fhp);
+ nfsm_dissect(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
+
+ /*
+ * XXX At this time VOP_FSYNC() does not accept offset and byte
+ * count parameters, so these arguments are useless (someday maybe).
+ */
+ fxdr_hyper(tl, &off);
+ tl += 2;
+ cnt = fxdr_unsigned(int, *tl);
+ error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
+ &rdonly, (nfsd->nd_flag & ND_KERBAUTH));
+ if (error) {
+ nfsm_reply(2 * NFSX_UNSIGNED);
+ nfsm_srvwcc_data(for_ret, &bfor, aft_ret, &aft);
+ return (0);
+ }
+ for_ret = VOP_GETATTR(vp, &bfor, cred, procp);
+ error = VOP_FSYNC(vp, cred, MNT_WAIT, procp);
+ aft_ret = VOP_GETATTR(vp, &aft, cred, procp);
+ vput(vp);
+ nfsm_reply(NFSX_V3WCCDATA + NFSX_V3WRITEVERF);
+ nfsm_srvwcc_data(for_ret, &bfor, aft_ret, &aft);
+ if (!error) {
+ nfsm_build(tl, u_int32_t *, NFSX_V3WRITEVERF);
+ *tl++ = txdr_unsigned(boottime.tv_sec);
+ *tl = txdr_unsigned(boottime.tv_usec);
+ } else
+ return (0);
nfsm_srvdone;
}
@@ -1801,69 +3021,241 @@ invalid:
* nfs statfs service
*/
int
-nfsrv_statfs(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_statfs(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
register struct statfs *sf;
- register struct nfsv2_statfs *sfp;
+ register struct nfs_statfs *sfp;
register u_int32_t *tl;
register int32_t t1;
caddr_t bpos;
- int error = 0, rdonly, cache = 0, isnq;
+ int error = 0, rdonly, cache, getret = 1;
+ int v3 = (nfsd->nd_flag & ND_NFSV3);
char *cp2;
struct mbuf *mb, *mb2, *mreq;
struct vnode *vp;
- nfsv2fh_t nfh;
+ struct vattr at;
+ nfsfh_t nfh;
fhandle_t *fhp;
struct statfs statfs;
- u_quad_t frev;
+ u_quad_t frev, tval;
+#ifndef nolint
+ cache = 0;
+#endif
fhp = &nfh.fh_generic;
- isnq = (nfsd->nd_nqlflag != NQL_NOVAL);
nfsm_srvmtofh(fhp);
- error = nfsrv_fhtovp(fhp, TRUE, &vp, cred, nfsd->nd_slp, nam, &rdonly);
- if (error)
- nfsm_reply(0);
+ error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
+ &rdonly, (nfsd->nd_flag & ND_KERBAUTH));
+ if (error) {
+ nfsm_reply(NFSX_UNSIGNED);
+ nfsm_srvpostop_attr(getret, &at);
+ return (0);
+ }
sf = &statfs;
- error = VFS_STATFS(vp->v_mount, sf, nfsd->nd_procp);
+ error = VFS_STATFS(vp->v_mount, sf, procp);
+ getret = VOP_GETATTR(vp, &at, cred, procp);
vput(vp);
- nfsm_reply(NFSX_STATFS(isnq));
- nfsm_build(sfp, struct nfsv2_statfs *, NFSX_STATFS(isnq));
- sfp->sf_tsize = txdr_unsigned(NFS_MAXDGRAMDATA);
- sfp->sf_bsize = txdr_unsigned(sf->f_bsize);
- sfp->sf_blocks = txdr_unsigned(sf->f_blocks);
- sfp->sf_bfree = txdr_unsigned(sf->f_bfree);
- sfp->sf_bavail = txdr_unsigned(sf->f_bavail);
- if (isnq) {
- sfp->sf_files = txdr_unsigned(sf->f_files);
- sfp->sf_ffree = txdr_unsigned(sf->f_ffree);
+ nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_STATFS(v3));
+ if (v3)
+ nfsm_srvpostop_attr(getret, &at);
+ if (error)
+ return (0);
+ nfsm_build(sfp, struct nfs_statfs *, NFSX_STATFS(v3));
+ if (v3) {
+ tval = (u_quad_t)sf->f_blocks;
+ tval *= (u_quad_t)sf->f_bsize;
+ txdr_hyper(&tval, &sfp->sf_tbytes);
+ tval = (u_quad_t)sf->f_bfree;
+ tval *= (u_quad_t)sf->f_bsize;
+ txdr_hyper(&tval, &sfp->sf_fbytes);
+ tval = (u_quad_t)sf->f_bavail;
+ tval *= (u_quad_t)sf->f_bsize;
+ txdr_hyper(&tval, &sfp->sf_abytes);
+ sfp->sf_tfiles.nfsuquad[0] = 0;
+ sfp->sf_tfiles.nfsuquad[1] = txdr_unsigned(sf->f_files);
+ sfp->sf_ffiles.nfsuquad[0] = 0;
+ sfp->sf_ffiles.nfsuquad[1] = txdr_unsigned(sf->f_ffree);
+ sfp->sf_afiles.nfsuquad[0] = 0;
+ sfp->sf_afiles.nfsuquad[1] = txdr_unsigned(sf->f_ffree);
+ sfp->sf_invarsec = 0;
+ } else {
+ sfp->sf_tsize = txdr_unsigned(NFS_MAXDGRAMDATA);
+ sfp->sf_bsize = txdr_unsigned(sf->f_bsize);
+ sfp->sf_blocks = txdr_unsigned(sf->f_blocks);
+ sfp->sf_bfree = txdr_unsigned(sf->f_bfree);
+ sfp->sf_bavail = txdr_unsigned(sf->f_bavail);
}
nfsm_srvdone;
}
/*
+ * nfs fsinfo service
+ */
+int
+nfsrv_fsinfo(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
+{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
+ register u_int32_t *tl;
+ register struct nfsv3_fsinfo *sip;
+ register int32_t t1;
+ caddr_t bpos;
+ int error = 0, rdonly, cache, getret = 1, pref;
+ char *cp2;
+ struct mbuf *mb, *mb2, *mreq;
+ struct vnode *vp;
+ struct vattr at;
+ nfsfh_t nfh;
+ fhandle_t *fhp;
+ u_quad_t frev;
+
+#ifndef nolint
+ cache = 0;
+#endif
+ fhp = &nfh.fh_generic;
+ nfsm_srvmtofh(fhp);
+ error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
+ &rdonly, (nfsd->nd_flag & ND_KERBAUTH));
+ if (error) {
+ nfsm_reply(NFSX_UNSIGNED);
+ nfsm_srvpostop_attr(getret, &at);
+ return (0);
+ }
+ getret = VOP_GETATTR(vp, &at, cred, procp);
+ vput(vp);
+ nfsm_reply(NFSX_V3POSTOPATTR + NFSX_V3FSINFO);
+ nfsm_srvpostop_attr(getret, &at);
+ nfsm_build(sip, struct nfsv3_fsinfo *, NFSX_V3FSINFO);
+
+ /*
+ * XXX
+ * There should be file system VFS OP(s) to get this information.
+ * For now, assume ufs.
+ */
+ if (slp->ns_so->so_type == SOCK_DGRAM)
+ pref = NFS_MAXDGRAMDATA;
+ else
+ pref = NFS_MAXDATA;
+ sip->fs_rtmax = txdr_unsigned(NFS_MAXDATA);
+ sip->fs_rtpref = txdr_unsigned(pref);
+ sip->fs_rtmult = txdr_unsigned(NFS_FABLKSIZE);
+ sip->fs_wtmax = txdr_unsigned(NFS_MAXDATA);
+ sip->fs_wtpref = txdr_unsigned(pref);
+ sip->fs_wtmult = txdr_unsigned(NFS_FABLKSIZE);
+ sip->fs_dtpref = txdr_unsigned(pref);
+ sip->fs_maxfilesize.nfsuquad[0] = 0xffffffff;
+ sip->fs_maxfilesize.nfsuquad[1] = 0xffffffff;
+ sip->fs_timedelta.nfsv3_sec = 0;
+ sip->fs_timedelta.nfsv3_nsec = txdr_unsigned(1);
+ sip->fs_properties = txdr_unsigned(NFSV3FSINFO_LINK |
+ NFSV3FSINFO_SYMLINK | NFSV3FSINFO_HOMOGENEOUS |
+ NFSV3FSINFO_CANSETTIME);
+ nfsm_srvdone;
+}
+
+/*
+ * nfs pathconf service
+ */
+int
+nfsrv_pathconf(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
+{
+ struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
+ struct mbuf *nam = nfsd->nd_nam;
+ caddr_t dpos = nfsd->nd_dpos;
+ struct ucred *cred = &nfsd->nd_cr;
+ register u_int32_t *tl;
+ register struct nfsv3_pathconf *pc;
+ register int32_t t1;
+ caddr_t bpos;
+ int error = 0, rdonly, cache, getret = 1;
+ register_t linkmax, namemax, chownres, notrunc;
+ char *cp2;
+ struct mbuf *mb, *mb2, *mreq;
+ struct vnode *vp;
+ struct vattr at;
+ nfsfh_t nfh;
+ fhandle_t *fhp;
+ u_quad_t frev;
+
+#ifndef nolint
+ cache = 0;
+#endif
+ fhp = &nfh.fh_generic;
+ nfsm_srvmtofh(fhp);
+ error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
+ &rdonly, (nfsd->nd_flag & ND_KERBAUTH));
+ if (error) {
+ nfsm_reply(NFSX_UNSIGNED);
+ nfsm_srvpostop_attr(getret, &at);
+ return (0);
+ }
+ error = VOP_PATHCONF(vp, _PC_LINK_MAX, &linkmax);
+ if (!error)
+ error = VOP_PATHCONF(vp, _PC_NAME_MAX, &namemax);
+ if (!error)
+ error = VOP_PATHCONF(vp, _PC_CHOWN_RESTRICTED, &chownres);
+ if (!error)
+ error = VOP_PATHCONF(vp, _PC_NO_TRUNC, &notrunc);
+ getret = VOP_GETATTR(vp, &at, cred, procp);
+ vput(vp);
+ nfsm_reply(NFSX_V3POSTOPATTR + NFSX_V3PATHCONF);
+ nfsm_srvpostop_attr(getret, &at);
+ if (error)
+ return (0);
+ nfsm_build(pc, struct nfsv3_pathconf *, NFSX_V3PATHCONF);
+
+ pc->pc_linkmax = txdr_unsigned(linkmax);
+ pc->pc_namemax = txdr_unsigned(namemax);
+ pc->pc_notrunc = txdr_unsigned(notrunc);
+ pc->pc_chownrestricted = txdr_unsigned(chownres);
+
+ /*
+ * These should probably be supported by VOP_PATHCONF(), but
+ * until msdosfs is exportable (why would you want to?), the
+ * Unix defaults should be ok.
+ */
+ pc->pc_caseinsensitive = nfs_false;
+ pc->pc_casepreserving = nfs_true;
+ nfsm_srvdone;
+}
+
+/*
* Null operation, used by clients to ping server
*/
/* ARGSUSED */
int
-nfsrv_null(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_null(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
+ struct mbuf *mrep = nfsd->nd_mrep;
caddr_t bpos;
- int error = VNOVAL, cache = 0;
+ int error = NFSERR_RETVOID, cache = 0;
struct mbuf *mb, *mreq;
u_quad_t frev;
nfsm_reply(0);
- return (error);
+ return (0);
}
/*
@@ -1871,13 +3263,13 @@ nfsrv_null(nfsd, mrep, md, dpos, cred, nam, mrq)
*/
/* ARGSUSED */
int
-nfsrv_noop(nfsd, mrep, md, dpos, cred, nam, mrq)
- struct nfsd *nfsd;
- struct mbuf *mrep, *md;
- caddr_t dpos;
- struct ucred *cred;
- struct mbuf *nam, **mrq;
+nfsrv_noop(nfsd, slp, procp, mrq)
+ struct nfsrv_descript *nfsd;
+ struct nfssvc_sock *slp;
+ struct proc *procp;
+ struct mbuf **mrq;
{
+ struct mbuf *mrep = nfsd->nd_mrep;
caddr_t bpos;
int error, cache = 0;
struct mbuf *mb, *mreq;
@@ -1888,7 +3280,7 @@ nfsrv_noop(nfsd, mrep, md, dpos, cred, nam, mrq)
else
error = EPROCUNAVAIL;
nfsm_reply(0);
- return (error);
+ return (0);
}
/*
@@ -1920,14 +3312,11 @@ nfsrv_access(vp, flags, cred, rdonly, p)
*/
if (rdonly || (vp->v_mount->mnt_flag & MNT_RDONLY)) {
switch (vp->v_type) {
- case VREG: case VDIR: case VLNK:
+ case VREG:
+ case VDIR:
+ case VLNK:
return (EROFS);
- case VNON:
- case VBLK:
- case VCHR:
- case VSOCK:
- case VFIFO:
- case VBAD:
+ default:
break;
}
}
@@ -1939,9 +3328,10 @@ nfsrv_access(vp, flags, cred, rdonly, p)
if ((vp->v_flag & VTEXT) && !vnode_pager_uncache(vp))
return (ETXTBSY);
}
- if ((error = VOP_GETATTR(vp, &vattr, cred, p)) != 0)
+ error = VOP_GETATTR(vp, &vattr, cred, p);
+ if (error)
return (error);
- if ((error = VOP_ACCESS(vp, flags, cred, p)) &&
+ if ((error = VOP_ACCESS(vp, flags, cred, p)) != 0 &&
cred->cr_uid != vattr.va_uid)
return (error);
return (0);