1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Rick Macklem at The University of Guelph.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1998-05-31 17:27:58 +00:00
|
|
|
* @(#)nfs_serv.c 8.8 (Berkeley) 7/31/95
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
1995-06-27 11:07:30 +00:00
|
|
|
* nfs version 2 and 3 server calls to vnode ops
|
1994-05-24 10:09:53 +00:00
|
|
|
* - these routines generally have 3 phases
|
|
|
|
* 1 - break down and validate rpc request in mbuf list
|
|
|
|
* 2 - do the vnode ops for the request
|
|
|
|
* (surprisingly ?? many are very similar to syscalls in vfs_syscalls.c)
|
|
|
|
* 3 - build the rpc reply in an mbuf list
|
|
|
|
* nb:
|
|
|
|
* - do not mix the phases, since the nfsm_?? macros can return failures
|
|
|
|
* on a bad rpc or similar and do not do any vrele() or vput()'s
|
|
|
|
*
|
|
|
|
* - the nfsm_reply() macro generates an nfs rpc reply with the nfs
|
|
|
|
* error number iff error != 0 whereas
|
|
|
|
* 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.
|
1995-06-27 11:07:30 +00:00
|
|
|
* 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.
|
1999-06-23 04:44:14 +00:00
|
|
|
*
|
|
|
|
* Other notes:
|
|
|
|
* Warning: always pay careful attention to resource cleanup on return
|
|
|
|
* and note that nfsm_*() macros can terminate a procedure on certain
|
|
|
|
* errors.
|
|
|
|
*
|
|
|
|
* VOP_ABORTOP() only frees the path component if HASBUF is set and
|
|
|
|
* SAVESTART is *not* set.
|
|
|
|
*
|
|
|
|
* Various VOP_*() routines tend to free the path component if an
|
|
|
|
* error occurs. If no error occurs, the VOP_*() routines only free
|
|
|
|
* the path component if SAVESTART is NOT set.
|
|
|
|
*
|
1999-11-13 20:58:17 +00:00
|
|
|
* lookup() and namei()
|
1999-06-23 04:44:14 +00:00
|
|
|
* may return garbage in various structural fields/return elements
|
|
|
|
* if an error is returned, and may garbage up nd.ni_dvp even if no
|
|
|
|
* error is returned and you did not request LOCKPARENT or WANTPARENT.
|
|
|
|
*
|
|
|
|
* We use the ni_cnd.cn_flags 'HASBUF' flag to track whether the name
|
|
|
|
* buffer has been freed or not. This is unique to nfs_serv.c for
|
|
|
|
* the moment, the rest of the system sets HASBUF but never clears it.
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/namei.h>
|
1996-09-03 14:25:27 +00:00
|
|
|
#include <sys/unistd.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/mount.h>
|
1995-06-27 11:07:30 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/socketvar.h>
|
1997-09-02 01:19:47 +00:00
|
|
|
#include <sys/malloc.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/dirent.h>
|
|
|
|
#include <sys/stat.h>
|
1995-06-27 11:07:30 +00:00
|
|
|
#include <sys/kernel.h>
|
1995-12-17 21:14:36 +00:00
|
|
|
#include <sys/sysctl.h>
|
1999-09-17 05:57:57 +00:00
|
|
|
#include <sys/buf.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
#include <vm/vm.h>
|
1995-12-07 12:48:31 +00:00
|
|
|
#include <vm/vm_extern.h>
|
1997-12-27 02:56:39 +00:00
|
|
|
#include <vm/vm_zone.h>
|
1998-01-31 11:56:53 +00:00
|
|
|
#include <vm/vm_object.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
#include <nfs/nfsproto.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <nfs/rpcv2.h>
|
|
|
|
#include <nfs/nfs.h>
|
|
|
|
#include <nfs/xdr_subs.h>
|
|
|
|
#include <nfs/nfsm_subs.h>
|
|
|
|
#include <nfs/nqnfs.h>
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
#ifdef NFSRV_DEBUG
|
|
|
|
#define nfsdbprintf(info) printf info
|
|
|
|
#else
|
|
|
|
#define nfsdbprintf(info)
|
|
|
|
#endif
|
|
|
|
|
1999-09-17 05:57:57 +00:00
|
|
|
#define MAX_COMMIT_COUNT (1024 * 1024)
|
|
|
|
|
1996-01-13 23:27:58 +00:00
|
|
|
nfstype nfsv3_type[9] = { NFNON, NFREG, NFDIR, NFBLK, NFCHR, NFLNK, NFSOCK,
|
|
|
|
NFFIFO, NFNON };
|
|
|
|
#ifndef NFS_NOSERVER
|
|
|
|
nfstype nfsv2_type[9] = { NFNON, NFREG, NFDIR, NFBLK, NFCHR, NFLNK, NFNON,
|
|
|
|
NFCHR, NFNON };
|
1994-05-24 10:09:53 +00:00
|
|
|
/* Global vars */
|
1998-05-31 20:09:01 +00:00
|
|
|
extern u_int32_t nfs_xdrneg1;
|
|
|
|
extern u_int32_t nfs_false, nfs_true;
|
1995-06-27 11:07:30 +00:00
|
|
|
extern enum vtype nv3tov_type[8];
|
|
|
|
extern struct nfsstats nfsstats;
|
1996-01-13 23:27:58 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
int nfsrvw_procrastinate = NFS_GATHERDELAY * 1000;
|
1997-05-10 16:59:36 +00:00
|
|
|
int nfsrvw_procrastinate_v3 = 0;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1999-02-16 10:49:55 +00:00
|
|
|
SYSCTL_DECL(_vfs_nfs);
|
|
|
|
|
1998-02-09 06:11:36 +00:00
|
|
|
static int nfs_async;
|
1996-04-30 23:23:09 +00:00
|
|
|
SYSCTL_INT(_vfs_nfs, OID_AUTO, async, CTLFLAG_RW, &nfs_async, 0, "");
|
1999-09-17 05:57:57 +00:00
|
|
|
static int nfs_commit_blks;
|
|
|
|
static int nfs_commit_miss;
|
|
|
|
SYSCTL_INT(_vfs_nfs, OID_AUTO, commit_blks, CTLFLAG_RW, &nfs_commit_blks, 0, "");
|
|
|
|
SYSCTL_INT(_vfs_nfs, OID_AUTO, commit_miss, CTLFLAG_RW, &nfs_commit_miss, 0, "");
|
1995-12-17 21:14:36 +00:00
|
|
|
|
|
|
|
static int nfsrv_access __P((struct vnode *,int,struct ucred *,int,
|
1998-05-20 09:05:48 +00:00
|
|
|
struct proc *, int));
|
1995-12-17 21:14:36 +00:00
|
|
|
static void nfsrvw_coalesce __P((struct nfsrv_descript *,
|
|
|
|
struct nfsrv_descript *));
|
1995-08-24 11:39:31 +00:00
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
/*
|
|
|
|
* Clear nameidata fields that are tested in nsfmout cleanup code prior
|
|
|
|
* to using first nfsm macro (that might jump to the cleanup code).
|
|
|
|
*/
|
|
|
|
|
|
|
|
static __inline
|
|
|
|
void
|
|
|
|
ndclear(struct nameidata *nd)
|
|
|
|
{
|
|
|
|
nd->ni_cnd.cn_flags = 0;
|
|
|
|
nd->ni_vp = NULL;
|
|
|
|
nd->ni_dvp = NULL;
|
|
|
|
nd->ni_startdir = NULL;
|
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
1995-06-27 11:07:30 +00:00
|
|
|
* nfs v3 access service
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv3_access(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
1999-06-23 04:44:14 +00:00
|
|
|
struct vnode *vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsfh_t nfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
int error = 0, rdonly, cache, getret;
|
1994-05-24 10:09:53 +00:00
|
|
|
char *cp2;
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mb, *mreq, *mb2;
|
|
|
|
struct vattr vattr, *vap = &vattr;
|
|
|
|
u_long testmode, nfsmode;
|
1994-05-24 10:09:53 +00:00
|
|
|
u_quad_t frev;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1995-06-27 11:07:30 +00:00
|
|
|
#ifndef nolint
|
|
|
|
cache = 0;
|
|
|
|
#endif
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
|
1998-05-31 17:27:58 +00:00
|
|
|
error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam, &rdonly,
|
|
|
|
(nfsd->nd_flag & ND_KERBAUTH), TRUE);
|
|
|
|
if (error) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_UNSIGNED);
|
|
|
|
nfsm_srvpostop_attr(1, (struct vattr *)0);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsmode = fxdr_unsigned(u_int32_t, *tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
if ((nfsmode & NFSV3ACCESS_READ) &&
|
1998-05-20 09:05:48 +00:00
|
|
|
nfsrv_access(vp, VREAD, cred, rdonly, procp, 0))
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsmode &= ~NFSV3ACCESS_READ;
|
|
|
|
if (vp->v_type == VDIR)
|
|
|
|
testmode = (NFSV3ACCESS_MODIFY | NFSV3ACCESS_EXTEND |
|
|
|
|
NFSV3ACCESS_DELETE);
|
|
|
|
else
|
|
|
|
testmode = (NFSV3ACCESS_MODIFY | NFSV3ACCESS_EXTEND);
|
|
|
|
if ((nfsmode & testmode) &&
|
1998-05-20 09:05:48 +00:00
|
|
|
nfsrv_access(vp, VWRITE, cred, rdonly, procp, 0))
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsmode &= ~testmode;
|
|
|
|
if (vp->v_type == VDIR)
|
|
|
|
testmode = NFSV3ACCESS_LOOKUP;
|
|
|
|
else
|
|
|
|
testmode = NFSV3ACCESS_EXECUTE;
|
|
|
|
if ((nfsmode & testmode) &&
|
1998-05-20 09:05:48 +00:00
|
|
|
nfsrv_access(vp, VEXEC, cred, rdonly, procp, 0))
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsmode &= ~testmode;
|
|
|
|
getret = VOP_GETATTR(vp, vap, cred, procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_POSTOPATTR(1) + NFSX_UNSIGNED);
|
|
|
|
nfsm_srvpostop_attr(getret, vap);
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_build(tl, u_int32_t *, NFSX_UNSIGNED);
|
1995-06-27 11:07:30 +00:00
|
|
|
*tl = txdr_unsigned(nfsmode);
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsmout:
|
|
|
|
if (vp)
|
|
|
|
vput(vp);
|
|
|
|
return(error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nfs getattr service
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_getattr(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
|
|
|
register struct nfs_fattr *fp;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct vattr va;
|
|
|
|
register struct vattr *vap = &va;
|
|
|
|
struct vnode *vp;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsfh_t nfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
|
|
|
int error = 0, rdonly, cache;
|
|
|
|
char *cp2;
|
|
|
|
struct mbuf *mb, *mb2, *mreq;
|
|
|
|
u_quad_t frev;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1998-05-31 17:27:58 +00:00
|
|
|
error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
|
|
|
|
&rdonly, (nfsd->nd_flag & ND_KERBAUTH), TRUE);
|
|
|
|
if (error) {
|
1994-05-24 10:09:53 +00:00
|
|
|
nfsm_reply(0);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
nqsrv_getl(vp, ND_READ);
|
|
|
|
error = VOP_GETATTR(vp, vap, cred, procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_FATTR(nfsd->nd_flag & ND_NFSV3));
|
1999-06-23 04:44:14 +00:00
|
|
|
if (error) {
|
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_build(fp, struct nfs_fattr *, NFSX_FATTR(nfsd->nd_flag & ND_NFSV3));
|
|
|
|
nfsm_srvfillattr(vap, fp);
|
1999-06-23 04:44:14 +00:00
|
|
|
/* fall through */
|
|
|
|
|
|
|
|
nfsmout:
|
|
|
|
if (vp)
|
|
|
|
vput(vp);
|
|
|
|
return(error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nfs setattr service
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_setattr(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
|
|
|
struct vattr va, preat;
|
1994-05-24 10:09:53 +00:00
|
|
|
register struct vattr *vap = &va;
|
|
|
|
register struct nfsv2_sattr *sp;
|
1995-06-27 11:07:30 +00:00
|
|
|
register struct nfs_fattr *fp;
|
1999-06-23 04:44:14 +00:00
|
|
|
struct vnode *vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsfh_t nfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
int error = 0, rdonly, cache, preat_ret = 1, postat_ret = 1;
|
|
|
|
int v3 = (nfsd->nd_flag & ND_NFSV3), gcheck = 0;
|
1994-05-24 10:09:53 +00:00
|
|
|
char *cp2;
|
|
|
|
struct mbuf *mb, *mb2, *mreq;
|
1995-06-27 11:07:30 +00:00
|
|
|
u_quad_t frev;
|
|
|
|
struct timespec guard;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
|
|
|
VATTR_NULL(vap);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3) {
|
|
|
|
nfsm_srvsattr(vap);
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
|
1995-06-27 11:07:30 +00:00
|
|
|
gcheck = fxdr_unsigned(int, *tl);
|
|
|
|
if (gcheck) {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
|
1995-06-27 11:07:30 +00:00
|
|
|
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)
|
|
|
|
vap->va_mode = nfstov_mode(sp->sa_mode);
|
|
|
|
if (sp->sa_uid != nfs_xdrneg1)
|
|
|
|
vap->va_uid = fxdr_unsigned(uid_t, sp->sa_uid);
|
|
|
|
if (sp->sa_gid != nfs_xdrneg1)
|
|
|
|
vap->va_gid = fxdr_unsigned(gid_t, sp->sa_gid);
|
|
|
|
if (sp->sa_size != nfs_xdrneg1)
|
|
|
|
vap->va_size = fxdr_unsigned(u_quad_t, sp->sa_size);
|
|
|
|
if (sp->sa_atime.nfsv2_sec != nfs_xdrneg1) {
|
1994-05-24 10:09:53 +00:00
|
|
|
#ifdef notyet
|
1995-06-27 11:07:30 +00:00
|
|
|
fxdr_nfsv2time(&sp->sa_atime, &vap->va_atime);
|
1994-05-24 10:09:53 +00:00
|
|
|
#else
|
1996-09-19 18:21:32 +00:00
|
|
|
vap->va_atime.tv_sec =
|
1998-05-31 20:09:01 +00:00
|
|
|
fxdr_unsigned(int32_t, sp->sa_atime.nfsv2_sec);
|
1996-09-19 18:21:32 +00:00
|
|
|
vap->va_atime.tv_nsec = 0;
|
1994-05-24 10:09:53 +00:00
|
|
|
#endif
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
if (sp->sa_mtime.nfsv2_sec != nfs_xdrneg1)
|
|
|
|
fxdr_nfsv2time(&sp->sa_mtime, &vap->va_mtime);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now that we have all the fields, lets do it.
|
|
|
|
*/
|
1998-05-31 17:27:58 +00:00
|
|
|
error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam, &rdonly,
|
|
|
|
(nfsd->nd_flag & ND_KERBAUTH), TRUE);
|
|
|
|
if (error) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(2 * NFSX_UNSIGNED);
|
|
|
|
nfsm_srvwcc_data(preat_ret, &preat, postat_ret, vap);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* vp now an active resource, pay careful attention to cleanup
|
|
|
|
*/
|
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
nqsrv_getl(vp, ND_WRITE);
|
|
|
|
if (v3) {
|
|
|
|
error = preat_ret = VOP_GETATTR(vp, &preat, cred, procp);
|
|
|
|
if (!error && gcheck &&
|
1996-09-19 18:21:32 +00:00
|
|
|
(preat.va_ctime.tv_sec != guard.tv_sec ||
|
|
|
|
preat.va_ctime.tv_nsec != guard.tv_nsec))
|
1995-06-27 11:07:30 +00:00
|
|
|
error = NFSERR_NOT_SYNC;
|
|
|
|
if (error) {
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_WCCDATA(v3));
|
|
|
|
nfsm_srvwcc_data(preat_ret, &preat, postat_ret, vap);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the size is being changed write acces is required, otherwise
|
|
|
|
* just check for a read only file system.
|
|
|
|
*/
|
|
|
|
if (vap->va_size == ((u_quad_t)((quad_t) -1))) {
|
|
|
|
if (rdonly || (vp->v_mount->mnt_flag & MNT_RDONLY)) {
|
|
|
|
error = EROFS;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (vp->v_type == VDIR) {
|
|
|
|
error = EISDIR;
|
|
|
|
goto out;
|
1998-05-31 17:27:58 +00:00
|
|
|
} else if ((error = nfsrv_access(vp, VWRITE, cred, rdonly,
|
|
|
|
procp, 0)) != 0)
|
1995-06-27 11:07:30 +00:00
|
|
|
goto out;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
error = VOP_SETATTR(vp, vap, cred, procp);
|
|
|
|
postat_ret = VOP_GETATTR(vp, vap, cred, procp);
|
|
|
|
if (!error)
|
|
|
|
error = postat_ret;
|
1994-05-24 10:09:53 +00:00
|
|
|
out:
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_WCCORFATTR(v3));
|
|
|
|
if (v3) {
|
|
|
|
nfsm_srvwcc_data(preat_ret, &preat, postat_ret, vap);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
} else {
|
|
|
|
nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
|
|
|
|
nfsm_srvfillattr(vap, fp);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
/* fall through */
|
|
|
|
|
|
|
|
nfsmout:
|
|
|
|
if (vp)
|
|
|
|
vput(vp);
|
|
|
|
return(error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nfs lookup rpc
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_lookup(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
|
|
|
register struct nfs_fattr *fp;
|
1997-07-16 09:06:30 +00:00
|
|
|
struct nameidata nd, ind, *ndp = &nd;
|
1995-06-27 11:07:30 +00:00
|
|
|
struct vnode *vp, *dirp;
|
|
|
|
nfsfh_t nfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp;
|
|
|
|
register caddr_t cp;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
int error = 0, cache, len, dirattr_ret = 1;
|
1997-07-16 09:06:30 +00:00
|
|
|
int v3 = (nfsd->nd_flag & ND_NFSV3), pubflag;
|
1994-05-24 10:09:53 +00:00
|
|
|
char *cp2;
|
|
|
|
struct mbuf *mb, *mb2, *mreq;
|
1995-06-27 11:07:30 +00:00
|
|
|
struct vattr va, dirattr, *vap = &va;
|
|
|
|
u_quad_t frev;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
|
|
|
ndclear(&nd);
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_srvnamesiz(len);
|
1997-07-16 09:06:30 +00:00
|
|
|
|
|
|
|
pubflag = nfs_ispublicfh(fhp);
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
nd.ni_cnd.cn_cred = cred;
|
|
|
|
nd.ni_cnd.cn_nameiop = LOOKUP;
|
|
|
|
nd.ni_cnd.cn_flags = LOCKLEAF | SAVESTART;
|
1995-06-27 11:07:30 +00:00
|
|
|
error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
|
1997-07-16 09:06:30 +00:00
|
|
|
&dirp, procp, (nfsd->nd_flag & ND_KERBAUTH), pubflag);
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
/*
|
|
|
|
* namei failure, only dirp to cleanup. Clear out garbarge from
|
|
|
|
* structure in case macros jump to nfsmout.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
if (dirp) {
|
|
|
|
if (v3)
|
|
|
|
dirattr_ret = VOP_GETATTR(dirp, &dirattr, cred,
|
|
|
|
procp);
|
|
|
|
vrele(dirp);
|
|
|
|
dirp = NULL;
|
|
|
|
}
|
|
|
|
nfsm_reply(NFSX_POSTOPATTR(v3));
|
|
|
|
nfsm_srvpostop_attr(dirattr_ret, &dirattr);
|
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Locate index file for public filehandle
|
|
|
|
*
|
|
|
|
* error is 0 on entry and 0 on exit from this block.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (pubflag) {
|
1997-07-16 09:06:30 +00:00
|
|
|
if (nd.ni_vp->v_type == VDIR && nfs_pub.np_index != NULL) {
|
|
|
|
/*
|
|
|
|
* Setup call to lookup() to see if we can find
|
|
|
|
* the index file. Arguably, this doesn't belong
|
1999-06-23 04:44:14 +00:00
|
|
|
* in a kernel.. Ugh. If an error occurs, do not
|
|
|
|
* try to install an index file and then clear the
|
|
|
|
* error.
|
|
|
|
*
|
|
|
|
* When we replace nd with ind and redirect ndp,
|
|
|
|
* maintenance of ni_startdir and ni_vp shift to
|
|
|
|
* ind and we have to clean them up in the old nd.
|
|
|
|
* However, the cnd resource continues to be maintained
|
|
|
|
* via the original nd. Confused? You aren't alone!
|
1997-07-16 09:06:30 +00:00
|
|
|
*/
|
|
|
|
ind = nd;
|
|
|
|
VOP_UNLOCK(nd.ni_vp, 0, procp);
|
|
|
|
ind.ni_pathlen = strlen(nfs_pub.np_index);
|
|
|
|
ind.ni_cnd.cn_nameptr = ind.ni_cnd.cn_pnbuf =
|
|
|
|
nfs_pub.np_index;
|
|
|
|
ind.ni_startdir = nd.ni_vp;
|
|
|
|
VREF(ind.ni_startdir);
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1997-07-16 09:06:30 +00:00
|
|
|
error = lookup(&ind);
|
1999-06-23 04:44:14 +00:00
|
|
|
ind.ni_dvp = NULL;
|
|
|
|
|
|
|
|
if (error == 0) {
|
1997-07-16 09:06:30 +00:00
|
|
|
/*
|
|
|
|
* Found an index file. Get rid of
|
1999-06-23 04:44:14 +00:00
|
|
|
* the old references. transfer nd.ni_vp'
|
1997-07-16 09:06:30 +00:00
|
|
|
*/
|
|
|
|
if (dirp)
|
|
|
|
vrele(dirp);
|
|
|
|
dirp = nd.ni_vp;
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_vp = NULL;
|
1997-07-16 09:06:30 +00:00
|
|
|
vrele(nd.ni_startdir);
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_startdir = NULL;
|
1997-07-16 09:06:30 +00:00
|
|
|
ndp = &ind;
|
1999-06-23 04:44:14 +00:00
|
|
|
}
|
|
|
|
error = 0;
|
1997-07-16 09:06:30 +00:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If the public filehandle was used, check that this lookup
|
|
|
|
* didn't result in a filehandle outside the publicly exported
|
1999-06-23 04:44:14 +00:00
|
|
|
* filesystem. We clear the poor vp here to avoid lockups due
|
|
|
|
* to NFS I/O.
|
1997-07-16 09:06:30 +00:00
|
|
|
*/
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
if (ndp->ni_vp->v_mount != nfs_pub.np_mount) {
|
1997-07-16 09:06:30 +00:00
|
|
|
vput(nd.ni_vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_vp = NULL;
|
1997-07-16 09:06:30 +00:00
|
|
|
error = EPERM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
if (dirp) {
|
|
|
|
if (v3)
|
|
|
|
dirattr_ret = VOP_GETATTR(dirp, &dirattr, cred,
|
|
|
|
procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(dirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
dirp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1997-07-16 09:06:30 +00:00
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
/*
|
|
|
|
* Resources at this point:
|
|
|
|
* ndp->ni_vp may not be NULL
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
if (error) {
|
|
|
|
nfsm_reply(NFSX_POSTOPATTR(v3));
|
|
|
|
nfsm_srvpostop_attr(dirattr_ret, &dirattr);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1997-07-16 09:06:30 +00:00
|
|
|
|
|
|
|
nqsrv_getl(ndp->ni_startdir, ND_READ);
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Clear out some resources prior to potentially blocking. This
|
|
|
|
* is not as critical as ni_dvp resources in other routines, but
|
|
|
|
* it helps.
|
|
|
|
*/
|
1997-07-16 09:06:30 +00:00
|
|
|
vrele(ndp->ni_startdir);
|
1999-06-23 04:44:14 +00:00
|
|
|
ndp->ni_startdir = NULL;
|
1997-09-21 04:24:27 +00:00
|
|
|
zfree(namei_zone, nd.ni_cnd.cn_pnbuf);
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_cnd.cn_flags &= ~HASBUF;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get underlying attribute, then release remaining resources ( for
|
|
|
|
* the same potential blocking reason ) and reply.
|
|
|
|
*/
|
1997-07-16 09:06:30 +00:00
|
|
|
vp = ndp->ni_vp;
|
1994-05-24 10:09:53 +00:00
|
|
|
bzero((caddr_t)fhp, sizeof(nfh));
|
|
|
|
fhp->fh_fsid = vp->v_mount->mnt_stat.f_fsid;
|
1994-10-02 17:27:07 +00:00
|
|
|
error = VFS_VPTOFH(vp, &fhp->fh_fid);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (!error)
|
|
|
|
error = VOP_GETATTR(vp, vap, cred, procp);
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
ndp->ni_vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_SRVFH(v3) + NFSX_POSTOPORFATTR(v3) + NFSX_POSTOPATTR(v3));
|
1994-10-02 17:27:07 +00:00
|
|
|
if (error) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_srvpostop_attr(dirattr_ret, &dirattr);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_srvfhtom(fhp, v3);
|
|
|
|
if (v3) {
|
|
|
|
nfsm_srvpostop_attr(0, vap);
|
|
|
|
nfsm_srvpostop_attr(dirattr_ret, &dirattr);
|
|
|
|
} else {
|
|
|
|
nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
|
|
|
|
nfsm_srvfillattr(vap, fp);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
nfsmout:
|
|
|
|
if (dirp)
|
|
|
|
vrele(dirp);
|
|
|
|
if (nd.ni_cnd.cn_flags & HASBUF)
|
|
|
|
zfree(namei_zone, nd.ni_cnd.cn_pnbuf);
|
|
|
|
if (ndp->ni_startdir)
|
|
|
|
vrele(ndp->ni_startdir);
|
|
|
|
if (ndp->ni_vp)
|
|
|
|
vput(ndp->ni_vp);
|
|
|
|
return (error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nfs readlink service
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_readlink(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct iovec iv[(NFS_MAXPATHLEN+MLEN-1)/MLEN];
|
|
|
|
register struct iovec *ivp = iv;
|
|
|
|
register struct mbuf *mp;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
int error = 0, rdonly, cache, i, tlen, len, getret;
|
|
|
|
int v3 = (nfsd->nd_flag & ND_NFSV3);
|
1994-05-24 10:09:53 +00:00
|
|
|
char *cp2;
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mb, *mb2, *mp2, *mp3, *mreq;
|
1999-06-23 04:44:14 +00:00
|
|
|
struct vnode *vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
struct vattr attr;
|
|
|
|
nfsfh_t nfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp;
|
|
|
|
struct uio io, *uiop = &io;
|
|
|
|
u_quad_t frev;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1995-06-27 11:07:30 +00:00
|
|
|
#ifndef nolint
|
1999-06-23 04:44:14 +00:00
|
|
|
mp2 = (struct mbuf *)0;
|
1995-06-27 11:07:30 +00:00
|
|
|
#endif
|
1999-06-23 04:44:14 +00:00
|
|
|
mp3 = NULL;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
|
|
|
len = 0;
|
|
|
|
i = 0;
|
|
|
|
while (len < NFS_MAXPATHLEN) {
|
|
|
|
MGET(mp, M_WAIT, MT_DATA);
|
|
|
|
MCLGET(mp, M_WAIT);
|
|
|
|
mp->m_len = NFSMSIZ(mp);
|
|
|
|
if (len == 0)
|
|
|
|
mp3 = mp2 = mp;
|
|
|
|
else {
|
|
|
|
mp2->m_next = mp;
|
|
|
|
mp2 = mp;
|
|
|
|
}
|
|
|
|
if ((len+mp->m_len) > NFS_MAXPATHLEN) {
|
|
|
|
mp->m_len = NFS_MAXPATHLEN-len;
|
|
|
|
len = NFS_MAXPATHLEN;
|
|
|
|
} else
|
|
|
|
len += mp->m_len;
|
|
|
|
ivp->iov_base = mtod(mp, caddr_t);
|
|
|
|
ivp->iov_len = mp->m_len;
|
|
|
|
i++;
|
|
|
|
ivp++;
|
|
|
|
}
|
|
|
|
uiop->uio_iov = iv;
|
|
|
|
uiop->uio_iovcnt = i;
|
|
|
|
uiop->uio_offset = 0;
|
|
|
|
uiop->uio_resid = len;
|
|
|
|
uiop->uio_rw = UIO_READ;
|
|
|
|
uiop->uio_segflg = UIO_SYSSPACE;
|
|
|
|
uiop->uio_procp = (struct proc *)0;
|
1998-05-31 17:27:58 +00:00
|
|
|
error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
|
|
|
|
&rdonly, (nfsd->nd_flag & ND_KERBAUTH), TRUE);
|
|
|
|
if (error) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(2 * NFSX_UNSIGNED);
|
|
|
|
nfsm_srvpostop_attr(1, (struct vattr *)0);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
if (vp->v_type != VLNK) {
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3)
|
|
|
|
error = EINVAL;
|
|
|
|
else
|
|
|
|
error = ENXIO;
|
1994-05-24 10:09:53 +00:00
|
|
|
goto out;
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
nqsrv_getl(vp, ND_READ);
|
1994-05-24 10:09:53 +00:00
|
|
|
error = VOP_READLINK(vp, uiop, cred);
|
|
|
|
out:
|
1995-06-27 11:07:30 +00:00
|
|
|
getret = VOP_GETATTR(vp, &attr, cred, procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_UNSIGNED);
|
|
|
|
if (v3) {
|
|
|
|
nfsm_srvpostop_attr(getret, &attr);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (error) {
|
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
if (uiop->uio_resid > 0) {
|
|
|
|
len -= uiop->uio_resid;
|
|
|
|
tlen = nfsm_rndup(len);
|
|
|
|
nfsm_adj(mp3, NFS_MAXPATHLEN-tlen, tlen-len);
|
|
|
|
}
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_build(tl, u_int32_t *, NFSX_UNSIGNED);
|
1994-05-24 10:09:53 +00:00
|
|
|
*tl = txdr_unsigned(len);
|
|
|
|
mb->m_next = mp3;
|
1999-06-23 04:44:14 +00:00
|
|
|
mp3 = NULL;
|
|
|
|
nfsmout:
|
|
|
|
if (mp3)
|
|
|
|
m_freem(mp3);
|
|
|
|
if (vp)
|
|
|
|
vput(vp);
|
|
|
|
return(error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nfs read service
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_read(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
1994-05-24 10:09:53 +00:00
|
|
|
register struct iovec *iv;
|
|
|
|
struct iovec *iv2;
|
|
|
|
register struct mbuf *m;
|
1995-06-27 11:07:30 +00:00
|
|
|
register struct nfs_fattr *fp;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1995-06-27 11:07:30 +00:00
|
|
|
register int i;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
int error = 0, rdonly, cache, cnt, len, left, siz, tlen, getret;
|
|
|
|
int v3 = (nfsd->nd_flag & ND_NFSV3), reqlen;
|
1994-05-24 10:09:53 +00:00
|
|
|
char *cp2;
|
|
|
|
struct mbuf *mb, *mb2, *mreq;
|
|
|
|
struct mbuf *m2;
|
|
|
|
struct vnode *vp;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsfh_t nfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp;
|
|
|
|
struct uio io, *uiop = &io;
|
|
|
|
struct vattr va, *vap = &va;
|
|
|
|
off_t off;
|
|
|
|
u_quad_t frev;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3) {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
|
1999-06-05 05:35:03 +00:00
|
|
|
off = fxdr_hyper(tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
} else {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
|
|
|
|
off = (off_t)fxdr_unsigned(u_int32_t, *tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
nfsm_srvstrsiz(reqlen, NFS_SRVMAXDATA(nfsd));
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Reference vp. If an error occurs, vp will be invalid, but we
|
|
|
|
* have to NULL it just in case. The macros might goto nfsmout
|
|
|
|
* as well.
|
|
|
|
*/
|
|
|
|
|
1998-05-31 17:27:58 +00:00
|
|
|
error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
|
|
|
|
&rdonly, (nfsd->nd_flag & ND_KERBAUTH), TRUE);
|
|
|
|
if (error) {
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(2 * NFSX_UNSIGNED);
|
|
|
|
nfsm_srvpostop_attr(1, (struct vattr *)0);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
if (vp->v_type != VREG) {
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3)
|
|
|
|
error = EINVAL;
|
|
|
|
else
|
|
|
|
error = (vp->v_type == VDIR) ? EISDIR : EACCES;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
if (!error) {
|
|
|
|
nqsrv_getl(vp, ND_READ);
|
1998-05-31 17:27:58 +00:00
|
|
|
if ((error = nfsrv_access(vp, VREAD, cred, rdonly, procp, 1)) != 0)
|
1998-05-20 09:05:48 +00:00
|
|
|
error = nfsrv_access(vp, VEXEC, cred, rdonly, procp, 1);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
getret = VOP_GETATTR(vp, vap, cred, procp);
|
|
|
|
if (!error)
|
|
|
|
error = getret;
|
1994-10-02 17:27:07 +00:00
|
|
|
if (error) {
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_POSTOPATTR(v3));
|
|
|
|
nfsm_srvpostop_attr(getret, vap);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
if (off >= vap->va_size)
|
|
|
|
cnt = 0;
|
1995-06-27 11:07:30 +00:00
|
|
|
else if ((off + reqlen) > vap->va_size)
|
1999-06-05 05:35:03 +00:00
|
|
|
cnt = vap->va_size - off;
|
1995-06-27 11:07:30 +00:00
|
|
|
else
|
|
|
|
cnt = reqlen;
|
|
|
|
nfsm_reply(NFSX_POSTOPORFATTR(v3) + 3 * NFSX_UNSIGNED+nfsm_rndup(cnt));
|
|
|
|
if (v3) {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_build(tl, u_int32_t *, NFSX_V3FATTR + 4 * NFSX_UNSIGNED);
|
1995-06-27 11:07:30 +00:00
|
|
|
*tl++ = nfs_true;
|
|
|
|
fp = (struct nfs_fattr *)tl;
|
1998-05-31 20:09:01 +00:00
|
|
|
tl += (NFSX_V3FATTR / sizeof (u_int32_t));
|
1995-06-27 11:07:30 +00:00
|
|
|
} else {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_build(tl, u_int32_t *, NFSX_V2FATTR + NFSX_UNSIGNED);
|
1995-06-27 11:07:30 +00:00
|
|
|
fp = (struct nfs_fattr *)tl;
|
1998-05-31 20:09:01 +00:00
|
|
|
tl += (NFSX_V2FATTR / sizeof (u_int32_t));
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1999-06-05 05:35:03 +00:00
|
|
|
len = left = nfsm_rndup(cnt);
|
1994-05-24 10:09:53 +00:00
|
|
|
if (cnt > 0) {
|
|
|
|
/*
|
|
|
|
* Generate the mbuf list with the uio_iov ref. to it.
|
|
|
|
*/
|
|
|
|
i = 0;
|
|
|
|
m = m2 = mb;
|
|
|
|
while (left > 0) {
|
|
|
|
siz = min(M_TRAILINGSPACE(m), left);
|
|
|
|
if (siz > 0) {
|
|
|
|
left -= siz;
|
1995-06-27 11:07:30 +00:00
|
|
|
i++;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
if (left > 0) {
|
|
|
|
MGET(m, M_WAIT, MT_DATA);
|
|
|
|
MCLGET(m, M_WAIT);
|
|
|
|
m->m_len = 0;
|
|
|
|
m2->m_next = m;
|
|
|
|
m2 = m;
|
|
|
|
}
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
MALLOC(iv, struct iovec *, i * sizeof (struct iovec),
|
|
|
|
M_TEMP, M_WAITOK);
|
|
|
|
uiop->uio_iov = iv2 = iv;
|
|
|
|
m = mb;
|
1999-06-05 05:35:03 +00:00
|
|
|
left = len;
|
1995-06-27 11:07:30 +00:00
|
|
|
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;
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
uiop->uio_iovcnt = i;
|
|
|
|
uiop->uio_offset = off;
|
1999-06-05 05:35:03 +00:00
|
|
|
uiop->uio_resid = len;
|
1994-05-24 10:09:53 +00:00
|
|
|
uiop->uio_rw = UIO_READ;
|
|
|
|
uiop->uio_segflg = UIO_SYSSPACE;
|
|
|
|
error = VOP_READ(vp, uiop, IO_NODELOCKED, cred);
|
|
|
|
off = uiop->uio_offset;
|
|
|
|
FREE((caddr_t)iv2, M_TEMP);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (error || (getret = VOP_GETATTR(vp, vap, cred, procp))) {
|
|
|
|
if (!error)
|
|
|
|
error = getret;
|
1994-05-24 10:09:53 +00:00
|
|
|
m_freem(mreq);
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_POSTOPATTR(v3));
|
|
|
|
nfsm_srvpostop_attr(getret, vap);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
} else {
|
1994-05-24 10:09:53 +00:00
|
|
|
uiop->uio_resid = 0;
|
1999-06-23 04:44:14 +00:00
|
|
|
}
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_srvfillattr(vap, fp);
|
1999-06-05 05:35:03 +00:00
|
|
|
tlen = len - uiop->uio_resid;
|
|
|
|
cnt = cnt < tlen ? cnt : tlen;
|
|
|
|
tlen = nfsm_rndup(cnt);
|
|
|
|
if (len != tlen || tlen != cnt)
|
|
|
|
nfsm_adj(mb, len - tlen, tlen - cnt);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3) {
|
1999-06-05 05:35:03 +00:00
|
|
|
*tl++ = txdr_unsigned(cnt);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (len < reqlen)
|
|
|
|
*tl++ = nfs_true;
|
|
|
|
else
|
|
|
|
*tl++ = nfs_false;
|
|
|
|
}
|
1999-06-05 05:35:03 +00:00
|
|
|
*tl = txdr_unsigned(cnt);
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsmout:
|
|
|
|
if (vp)
|
|
|
|
vput(vp);
|
|
|
|
return(error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nfs write service
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_write(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
1994-05-24 10:09:53 +00:00
|
|
|
register struct iovec *ivp;
|
1995-06-27 11:07:30 +00:00
|
|
|
register int i, cnt;
|
1994-05-24 10:09:53 +00:00
|
|
|
register struct mbuf *mp;
|
1995-06-27 11:07:30 +00:00
|
|
|
register struct nfs_fattr *fp;
|
|
|
|
struct iovec *iv;
|
|
|
|
struct vattr va, forat;
|
1994-05-24 10:09:53 +00:00
|
|
|
register struct vattr *vap = &va;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-10-29 15:33:36 +00:00
|
|
|
int error = 0, rdonly, cache, len, forat_ret = 1;
|
1995-06-27 11:07:30 +00:00
|
|
|
int ioflags, aftat_ret = 1, retlen, zeroing, adjust;
|
|
|
|
int stable = NFSV3WRITE_FILESYNC;
|
|
|
|
int v3 = (nfsd->nd_flag & ND_NFSV3);
|
1994-05-24 10:09:53 +00:00
|
|
|
char *cp2;
|
|
|
|
struct mbuf *mb, *mb2, *mreq;
|
1999-06-23 04:44:14 +00:00
|
|
|
struct vnode *vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsfh_t nfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp;
|
|
|
|
struct uio io, *uiop = &io;
|
|
|
|
off_t off;
|
|
|
|
u_quad_t frev;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1995-06-27 11:07:30 +00:00
|
|
|
if (mrep == NULL) {
|
|
|
|
*mrq = NULL;
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3) {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, 5 * NFSX_UNSIGNED);
|
1999-06-05 05:35:03 +00:00
|
|
|
off = fxdr_hyper(tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
tl += 3;
|
|
|
|
stable = fxdr_unsigned(int, *tl++);
|
|
|
|
} else {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
|
|
|
|
off = (off_t)fxdr_unsigned(u_int32_t, *++tl);
|
1994-05-24 10:09:53 +00:00
|
|
|
tl += 2;
|
1995-08-24 11:39:31 +00:00
|
|
|
if (nfs_async)
|
|
|
|
stable = NFSV3WRITE_UNSTABLE;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1998-05-31 20:09:01 +00:00
|
|
|
retlen = len = fxdr_unsigned(int32_t, *tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
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);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
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;
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
if (len > NFS_MAXDATA || len < 0 || i < len) {
|
|
|
|
error = EIO;
|
|
|
|
nfsm_reply(2 * NFSX_UNSIGNED);
|
|
|
|
nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, vap);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1998-05-31 17:27:58 +00:00
|
|
|
error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
|
|
|
|
&rdonly, (nfsd->nd_flag & ND_KERBAUTH), TRUE);
|
|
|
|
if (error) {
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(2 * NFSX_UNSIGNED);
|
|
|
|
nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, vap);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
if (v3)
|
|
|
|
forat_ret = VOP_GETATTR(vp, &forat, cred, procp);
|
1994-05-24 10:09:53 +00:00
|
|
|
if (vp->v_type != VREG) {
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3)
|
|
|
|
error = EINVAL;
|
|
|
|
else
|
|
|
|
error = (vp->v_type == VDIR) ? EISDIR : EACCES;
|
|
|
|
}
|
|
|
|
if (!error) {
|
|
|
|
nqsrv_getl(vp, ND_WRITE);
|
1998-05-20 09:05:48 +00:00
|
|
|
error = nfsrv_access(vp, VWRITE, cred, rdonly, procp, 1);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1994-10-02 17:27:07 +00:00
|
|
|
if (error) {
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_WCCDATA(v3));
|
|
|
|
nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, vap);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
ivp->iov_len = mp->m_len;
|
|
|
|
ivp++;
|
|
|
|
}
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
aftat_ret = VOP_GETATTR(vp, vap, cred, procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
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, vap);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (error) {
|
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
|
|
|
}
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_build(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
|
1995-06-27 11:07:30 +00:00
|
|
|
*tl++ = txdr_unsigned(retlen);
|
1997-06-03 13:56:55 +00:00
|
|
|
/*
|
|
|
|
* If nfs_async is set, then pretend the write was FILESYNC.
|
|
|
|
*/
|
|
|
|
if (stable == NFSV3WRITE_UNSTABLE && !nfs_async)
|
1995-06-27 11:07:30 +00:00
|
|
|
*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(vap, fp);
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsmout:
|
|
|
|
if (vp)
|
|
|
|
vput(vp);
|
|
|
|
return(error);
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
struct iovec *iov;
|
|
|
|
struct nfsrvw_delayhash *wpp;
|
|
|
|
struct ucred *cred;
|
|
|
|
struct vattr va, forat;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t bpos, dpos;
|
|
|
|
int error = 0, rdonly, cache, len, 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;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1995-06-27 11:07:30 +00:00
|
|
|
#ifndef nolint
|
|
|
|
i = 0;
|
|
|
|
len = 0;
|
|
|
|
#endif
|
|
|
|
*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;
|
1998-03-30 09:56:58 +00:00
|
|
|
cur_usec = nfs_curusec();
|
1997-05-10 16:59:36 +00:00
|
|
|
nfsd->nd_time = cur_usec +
|
|
|
|
(v3 ? nfsrvw_procrastinate_v3 : nfsrvw_procrastinate);
|
1995-06-27 11:07:30 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Now, get the write header..
|
|
|
|
*/
|
|
|
|
nfsm_srvmtofh(&nfsd->nd_fh);
|
|
|
|
if (v3) {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, 5 * NFSX_UNSIGNED);
|
1999-06-05 05:35:03 +00:00
|
|
|
nfsd->nd_off = fxdr_hyper(tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
tl += 3;
|
|
|
|
nfsd->nd_stable = fxdr_unsigned(int, *tl++);
|
|
|
|
} else {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
|
|
|
|
nfsd->nd_off = (off_t)fxdr_unsigned(u_int32_t, *++tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
tl += 2;
|
1995-08-24 11:39:31 +00:00
|
|
|
if (nfs_async)
|
|
|
|
nfsd->nd_stable = NFSV3WRITE_UNSTABLE;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1998-05-31 20:09:01 +00:00
|
|
|
len = fxdr_unsigned(int32_t, *tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
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;
|
|
|
|
}
|
1997-05-10 16:12:03 +00:00
|
|
|
NFS_DPF(WG, ("Q%03x", nfsd->nd_retxid & 0xfff));
|
1995-06-27 11:07:30 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
1995-06-27 11:07:30 +00:00
|
|
|
* Now, do VOP_WRITE()s for any one(s) that need to be done now
|
|
|
|
* and generate the associated reply mbuf list(s).
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
1995-06-27 11:07:30 +00:00
|
|
|
loop1:
|
1998-03-30 09:56:58 +00:00
|
|
|
cur_usec = nfs_curusec();
|
1995-06-27 11:07:30 +00:00
|
|
|
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;
|
1997-05-10 16:12:03 +00:00
|
|
|
NFS_DPF(WG, ("P%03x", nfsd->nd_retxid & 0xfff));
|
1995-06-27 11:07:30 +00:00
|
|
|
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,
|
1997-07-16 09:06:30 +00:00
|
|
|
nfsd->nd_nam, &rdonly, (nfsd->nd_flag & ND_KERBAUTH), TRUE);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (!error) {
|
|
|
|
if (v3)
|
|
|
|
forat_ret = VOP_GETATTR(vp, &forat, cred, procp);
|
|
|
|
if (vp->v_type != VREG) {
|
|
|
|
if (v3)
|
|
|
|
error = EINVAL;
|
1994-05-24 10:09:53 +00:00
|
|
|
else
|
1995-06-27 11:07:30 +00:00
|
|
|
error = (vp->v_type == VDIR) ? EISDIR : EACCES;
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
} else {
|
1995-06-27 11:07:30 +00:00
|
|
|
vp = NULL;
|
1999-06-23 04:44:14 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
if (!error) {
|
|
|
|
nqsrv_getl(vp, ND_WRITE);
|
1998-05-20 09:05:48 +00:00
|
|
|
error = nfsrv_access(vp, VWRITE, cred, rdonly, procp, 1);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
|
|
|
|
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);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
m_freem(mrep);
|
|
|
|
if (vp) {
|
|
|
|
aftat_ret = VOP_GETATTR(vp, &va, cred, procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Loop around generating replies for all write rpcs that have
|
|
|
|
* now been completed.
|
|
|
|
*/
|
|
|
|
swp = nfsd;
|
|
|
|
do {
|
1997-05-10 16:12:03 +00:00
|
|
|
NFS_DPF(WG, ("R%03x", nfsd->nd_retxid & 0xfff));
|
1995-06-27 11:07:30 +00:00
|
|
|
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);
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_build(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
|
1995-06-27 11:07:30 +00:00
|
|
|
*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;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
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) {
|
1997-05-10 16:12:03 +00:00
|
|
|
NFS_DPF(WG, ("X%03x", nfsd->nd_retxid & 0xfff));
|
1995-06-27 11:07:30 +00:00
|
|
|
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().
|
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static void
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrvw_coalesce(owp, nfsd)
|
|
|
|
register struct nfsrv_descript *owp;
|
|
|
|
register struct nfsrv_descript *nfsd;
|
|
|
|
{
|
|
|
|
register int overlap;
|
|
|
|
register struct mbuf *mp;
|
1997-05-10 16:12:03 +00:00
|
|
|
struct nfsrv_descript *p;
|
1995-06-27 11:07:30 +00:00
|
|
|
|
1997-05-10 16:12:03 +00:00
|
|
|
NFS_DPF(WG, ("C%03x-%03x",
|
|
|
|
nfsd->nd_retxid & 0xfff, owp->nd_retxid & 0xfff));
|
1995-06-27 11:07:30 +00:00
|
|
|
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);
|
1997-05-10 16:12:03 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If nfsd had anything else coalesced into it, transfer them
|
|
|
|
* to owp, otherwise their replies will never get sent.
|
|
|
|
*/
|
|
|
|
for (p = nfsd->nd_coalesce.lh_first; p;
|
|
|
|
p = nfsd->nd_coalesce.lh_first) {
|
|
|
|
LIST_REMOVE(p, nd_tq);
|
|
|
|
LIST_INSERT_HEAD(&owp->nd_coalesce, p, nd_tq);
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* nfs create service
|
|
|
|
* now does a truncate to 0 length via. setattr if it already exists
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_create(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
|
|
|
register struct nfs_fattr *fp;
|
|
|
|
struct vattr va, dirfor, diraft;
|
1994-05-24 10:09:53 +00:00
|
|
|
register struct vattr *vap = &va;
|
|
|
|
register struct nfsv2_sattr *sp;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct nameidata nd;
|
1998-05-31 20:09:01 +00:00
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
int error = 0, rdev, cache, len, tsize, dirfor_ret = 1, diraft_ret = 1;
|
|
|
|
int v3 = (nfsd->nd_flag & ND_NFSV3), how, exclusive_flag = 0;
|
1999-06-23 04:44:14 +00:00
|
|
|
caddr_t cp;
|
1994-05-24 10:09:53 +00:00
|
|
|
char *cp2;
|
|
|
|
struct mbuf *mb, *mb2, *mreq;
|
1999-06-23 04:44:14 +00:00
|
|
|
struct vnode *dirp = (struct vnode *)0;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsfh_t nfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp;
|
1995-06-27 11:07:30 +00:00
|
|
|
u_quad_t frev, tempsize;
|
|
|
|
u_char cverf[NFSX_V3CREATEVERF];
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1995-06-27 11:07:30 +00:00
|
|
|
#ifndef nolint
|
|
|
|
rdev = 0;
|
|
|
|
#endif
|
1999-06-23 04:44:14 +00:00
|
|
|
ndclear(&nd);
|
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
|
|
|
nfsm_srvnamesiz(len);
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
nd.ni_cnd.cn_cred = cred;
|
|
|
|
nd.ni_cnd.cn_nameiop = CREATE;
|
|
|
|
nd.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF | SAVESTART;
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Call namei and do initial cleanup to get a few things
|
|
|
|
* out of the way. If we get an initial error we cleanup
|
|
|
|
* and return here to avoid special-casing the invalid nd
|
|
|
|
* structure through the rest of the case. dirp may be
|
|
|
|
* set even if an error occurs, but the nd structure will not
|
|
|
|
* be valid at all if an error occurs so we have to invalidate it
|
|
|
|
* prior to calling nfsm_reply ( which might goto nfsmout ).
|
|
|
|
*/
|
1995-06-27 11:07:30 +00:00
|
|
|
error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
|
1997-07-16 09:06:30 +00:00
|
|
|
&dirp, procp, (nfsd->nd_flag & ND_KERBAUTH), FALSE);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (dirp) {
|
1999-06-23 04:44:14 +00:00
|
|
|
if (v3) {
|
1995-06-27 11:07:30 +00:00
|
|
|
dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred,
|
|
|
|
procp);
|
1999-06-23 04:44:14 +00:00
|
|
|
} else {
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(dirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
dirp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (error) {
|
|
|
|
nfsm_reply(NFSX_WCCDATA(v3));
|
|
|
|
nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
|
1999-06-30 04:29:13 +00:00
|
|
|
error = 0;
|
1999-06-23 04:44:14 +00:00
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* No error. Continue. State:
|
|
|
|
*
|
|
|
|
* startdir is valid ( we release this immediately )
|
|
|
|
* dirp may be valid
|
|
|
|
* nd.ni_vp may be valid
|
|
|
|
* nd.ni_dvp is valid
|
|
|
|
*
|
|
|
|
* The error state is set through the code and we may also do some
|
|
|
|
* opportunistic releasing of vnodes to avoid holding locks through
|
|
|
|
* NFS I/O. The cleanup at the end is a catch-all
|
|
|
|
*/
|
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
VATTR_NULL(vap);
|
|
|
|
if (v3) {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
|
1995-06-27 11:07:30 +00:00
|
|
|
how = fxdr_unsigned(int, *tl);
|
|
|
|
switch (how) {
|
|
|
|
case NFSV3CREATE_GUARDED:
|
|
|
|
if (nd.ni_vp) {
|
|
|
|
error = EEXIST;
|
|
|
|
break;
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
/* fall through */
|
1995-06-27 11:07:30 +00:00
|
|
|
case NFSV3CREATE_UNCHECKED:
|
|
|
|
nfsm_srvsattr(vap);
|
|
|
|
break;
|
|
|
|
case NFSV3CREATE_EXCLUSIVE:
|
|
|
|
nfsm_dissect(cp, caddr_t, NFSX_V3CREATEVERF);
|
|
|
|
bcopy(cp, cverf, NFSX_V3CREATEVERF);
|
|
|
|
exclusive_flag = 1;
|
|
|
|
if (nd.ni_vp == NULL)
|
|
|
|
vap->va_mode = 0;
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
vap->va_type = VREG;
|
|
|
|
} else {
|
|
|
|
nfsm_dissect(sp, struct nfsv2_sattr *, NFSX_V2SATTR);
|
1998-05-31 20:09:01 +00:00
|
|
|
vap->va_type = IFTOVT(fxdr_unsigned(u_int32_t, sp->sa_mode));
|
1995-06-27 11:07:30 +00:00
|
|
|
if (vap->va_type == VNON)
|
|
|
|
vap->va_type = VREG;
|
|
|
|
vap->va_mode = nfstov_mode(sp->sa_mode);
|
|
|
|
switch (vap->va_type) {
|
|
|
|
case VREG:
|
1998-05-31 20:09:01 +00:00
|
|
|
tsize = fxdr_unsigned(int32_t, sp->sa_size);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (tsize != -1)
|
|
|
|
vap->va_size = (u_quad_t)tsize;
|
|
|
|
break;
|
|
|
|
case VCHR:
|
|
|
|
case VBLK:
|
|
|
|
case VFIFO:
|
|
|
|
rdev = fxdr_unsigned(long, sp->sa_size);
|
|
|
|
break;
|
1998-05-31 17:27:58 +00:00
|
|
|
default:
|
|
|
|
break;
|
1995-06-27 11:07:30 +00:00
|
|
|
};
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Iff doesn't exist, create it
|
|
|
|
* otherwise just truncate to 0 length
|
1999-06-23 04:44:14 +00:00
|
|
|
* should I set the mode too ?
|
|
|
|
*
|
|
|
|
* The only possible error we can have at this point is EEXIST.
|
|
|
|
* nd.ni_vp will also be non-NULL in that case.
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
if (nd.ni_vp == NULL) {
|
|
|
|
if (vap->va_type == VREG || vap->va_type == VSOCK) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nqsrv_getl(nd.ni_dvp, ND_WRITE);
|
|
|
|
error = VOP_CREATE(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, vap);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (error) {
|
|
|
|
nd.ni_cnd.cn_flags &= ~HASBUF;
|
|
|
|
} else {
|
1996-08-21 21:56:23 +00:00
|
|
|
nfsrv_object_create(nd.ni_vp);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (exclusive_flag) {
|
|
|
|
exclusive_flag = 0;
|
|
|
|
VATTR_NULL(vap);
|
|
|
|
bcopy(cverf, (caddr_t)&vap->va_atime,
|
|
|
|
NFSX_V3CREATEVERF);
|
|
|
|
error = VOP_SETATTR(nd.ni_vp, vap, cred,
|
|
|
|
procp);
|
|
|
|
}
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
} else if (
|
|
|
|
vap->va_type == VCHR ||
|
|
|
|
vap->va_type == VBLK ||
|
|
|
|
vap->va_type == VFIFO
|
|
|
|
) {
|
|
|
|
/*
|
|
|
|
* Handle SysV FIFO node special cases. All other
|
|
|
|
* devices require super user to access.
|
|
|
|
*/
|
1994-05-24 10:09:53 +00:00
|
|
|
if (vap->va_type == VCHR && rdev == 0xffffffff)
|
|
|
|
vap->va_type = VFIFO;
|
1999-06-23 04:44:14 +00:00
|
|
|
if (vap->va_type != VFIFO &&
|
|
|
|
(error = suser_xxx(cred, 0, 0))) {
|
|
|
|
goto nfsmreply0;
|
|
|
|
}
|
|
|
|
vap->va_rdev = rdev;
|
1995-06-27 11:07:30 +00:00
|
|
|
nqsrv_getl(nd.ni_dvp, ND_WRITE);
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1998-05-07 04:58:58 +00:00
|
|
|
error = VOP_MKNOD(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, vap);
|
|
|
|
if (error) {
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_cnd.cn_flags &= ~HASBUF;
|
|
|
|
goto nfsmreply0;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1999-11-12 03:34:28 +00:00
|
|
|
vput(nd.ni_vp);
|
|
|
|
nd.ni_vp = NULL;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
/*
|
|
|
|
* release dvp prior to lookup
|
|
|
|
*/
|
|
|
|
vput(nd.ni_dvp);
|
|
|
|
nd.ni_dvp = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Setup for lookup.
|
|
|
|
*
|
|
|
|
* Even though LOCKPARENT was cleared, ni_dvp may
|
|
|
|
* be garbage.
|
|
|
|
*/
|
1994-05-24 10:09:53 +00:00
|
|
|
nd.ni_cnd.cn_nameiop = LOOKUP;
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_cnd.cn_flags &= ~(LOCKPARENT);
|
1995-06-27 11:07:30 +00:00
|
|
|
nd.ni_cnd.cn_proc = procp;
|
|
|
|
nd.ni_cnd.cn_cred = cred;
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
error = lookup(&nd);
|
|
|
|
nd.ni_dvp = NULL;
|
|
|
|
|
|
|
|
if (error != 0) {
|
1994-05-24 10:09:53 +00:00
|
|
|
nfsm_reply(0);
|
1999-06-23 04:44:14 +00:00
|
|
|
/* fall through on certain errors */
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1996-08-21 21:56:23 +00:00
|
|
|
nfsrv_object_create(nd.ni_vp);
|
1994-05-24 10:09:53 +00:00
|
|
|
if (nd.ni_cnd.cn_flags & ISSYMLINK) {
|
|
|
|
error = EINVAL;
|
1999-06-23 04:44:14 +00:00
|
|
|
goto nfsmreply0;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
error = ENXIO;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (vap->va_size != -1) {
|
1999-06-23 04:44:14 +00:00
|
|
|
error = nfsrv_access(nd.ni_vp, VWRITE, cred,
|
1998-05-20 09:05:48 +00:00
|
|
|
(nd.ni_cnd.cn_flags & RDONLY), procp, 0);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (!error) {
|
1999-06-23 04:44:14 +00:00
|
|
|
nqsrv_getl(nd.ni_vp, ND_WRITE);
|
1995-06-27 11:07:30 +00:00
|
|
|
tempsize = vap->va_size;
|
|
|
|
VATTR_NULL(vap);
|
|
|
|
vap->va_size = tempsize;
|
1999-06-23 04:44:14 +00:00
|
|
|
error = VOP_SETATTR(nd.ni_vp, vap, cred,
|
1995-06-27 11:07:30 +00:00
|
|
|
procp);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
if (!error) {
|
|
|
|
bzero((caddr_t)fhp, sizeof(nfh));
|
1999-06-23 04:44:14 +00:00
|
|
|
fhp->fh_fsid = nd.ni_vp->v_mount->mnt_stat.f_fsid;
|
|
|
|
error = VFS_VPTOFH(nd.ni_vp, &fhp->fh_fid);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (!error)
|
1999-06-23 04:44:14 +00:00
|
|
|
error = VOP_GETATTR(nd.ni_vp, vap, cred, procp);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3) {
|
|
|
|
if (exclusive_flag && !error &&
|
|
|
|
bcmp(cverf, (caddr_t)&vap->va_atime, NFSX_V3CREATEVERF))
|
|
|
|
error = EEXIST;
|
|
|
|
diraft_ret = VOP_GETATTR(dirp, &diraft, cred, procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(dirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
dirp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
nfsm_reply(NFSX_SRVFH(v3) + NFSX_FATTR(v3) + NFSX_WCCDATA(v3));
|
|
|
|
if (v3) {
|
|
|
|
if (!error) {
|
|
|
|
nfsm_srvpostop_fh(fhp);
|
|
|
|
nfsm_srvpostop_attr(0, vap);
|
|
|
|
}
|
|
|
|
nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
|
1999-07-28 08:20:49 +00:00
|
|
|
error = 0;
|
1995-06-27 11:07:30 +00:00
|
|
|
} else {
|
|
|
|
nfsm_srvfhtom(fhp, v3);
|
|
|
|
nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
|
|
|
|
nfsm_srvfillattr(vap, fp);
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
goto nfsmout;
|
|
|
|
|
|
|
|
nfsmreply0:
|
|
|
|
nfsm_reply(0);
|
|
|
|
error = 0;
|
|
|
|
/* fall through */
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
nfsmout:
|
1999-06-23 04:44:14 +00:00
|
|
|
if (nd.ni_startdir) {
|
|
|
|
vrele(nd.ni_startdir);
|
|
|
|
nd.ni_startdir = NULL;
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
if (dirp)
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(dirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (nd.ni_cnd.cn_flags & HASBUF) {
|
|
|
|
/*
|
|
|
|
* Since SAVESTART is set, we own the buffer and need to
|
|
|
|
* zfree it ourselves.
|
|
|
|
*/
|
|
|
|
if (nd.ni_dvp)
|
|
|
|
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
|
1997-09-21 04:24:27 +00:00
|
|
|
zfree(namei_zone, nd.ni_cnd.cn_pnbuf);
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
if (nd.ni_dvp) {
|
|
|
|
if (nd.ni_dvp == nd.ni_vp)
|
|
|
|
vrele(nd.ni_dvp);
|
|
|
|
else
|
|
|
|
vput(nd.ni_dvp);
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
if (nd.ni_vp)
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(nd.ni_vp);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
|
|
|
struct vattr va, dirfor, diraft;
|
|
|
|
register struct vattr *vap = &va;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
1995-06-27 11:07:30 +00:00
|
|
|
struct nameidata nd;
|
1998-05-31 20:09:01 +00:00
|
|
|
register int32_t t1;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t bpos;
|
1995-10-29 15:33:36 +00:00
|
|
|
int error = 0, cache, len, dirfor_ret = 1, diraft_ret = 1;
|
1998-05-31 20:09:01 +00:00
|
|
|
u_int32_t major, minor;
|
1995-06-27 11:07:30 +00:00
|
|
|
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;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
|
|
|
ndclear(&nd);
|
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
|
|
|
nfsm_srvnamesiz(len);
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
nd.ni_cnd.cn_cred = cred;
|
|
|
|
nd.ni_cnd.cn_nameiop = CREATE;
|
|
|
|
nd.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF | SAVESTART;
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Handle nfs_namei() call. If an error occurs, the nd structure
|
|
|
|
* is not valid. However, nfsm_*() routines may still jump to
|
|
|
|
* nfsmout.
|
|
|
|
*/
|
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
|
1997-07-16 09:06:30 +00:00
|
|
|
&dirp, procp, (nfsd->nd_flag & ND_KERBAUTH), FALSE);
|
1995-06-27 11:07:30 +00:00
|
|
|
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);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
|
1995-06-27 11:07:30 +00:00
|
|
|
vtyp = nfsv3tov_type(*tl);
|
|
|
|
if (vtyp != VCHR && vtyp != VBLK && vtyp != VSOCK && vtyp != VFIFO) {
|
|
|
|
error = NFSERR_BADTYPE;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
VATTR_NULL(vap);
|
|
|
|
nfsm_srvsattr(vap);
|
|
|
|
if (vtyp == VCHR || vtyp == VBLK) {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
|
|
|
|
major = fxdr_unsigned(u_int32_t, *tl++);
|
|
|
|
minor = fxdr_unsigned(u_int32_t, *tl);
|
1999-07-17 18:43:50 +00:00
|
|
|
vap->va_rdev = makeudev(major, minor);
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
/*
|
|
|
|
* Iff doesn't exist, create it.
|
|
|
|
*/
|
|
|
|
if (nd.ni_vp) {
|
|
|
|
error = EEXIST;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
vap->va_type = vtyp;
|
|
|
|
if (vtyp == VSOCK) {
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(nd.ni_startdir);
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_startdir = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nqsrv_getl(nd.ni_dvp, ND_WRITE);
|
|
|
|
error = VOP_CREATE(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, vap);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (error)
|
|
|
|
nd.ni_cnd.cn_flags &= ~HASBUF;
|
1995-06-27 11:07:30 +00:00
|
|
|
} else {
|
1999-06-23 04:44:14 +00:00
|
|
|
if (vtyp != VFIFO && (error = suser_xxx(cred, 0, 0)))
|
1995-06-27 11:07:30 +00:00
|
|
|
goto out;
|
|
|
|
nqsrv_getl(nd.ni_dvp, ND_WRITE);
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1998-05-07 04:58:58 +00:00
|
|
|
error = VOP_MKNOD(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, vap);
|
|
|
|
if (error) {
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_cnd.cn_flags &= ~HASBUF;
|
1995-06-27 11:07:30 +00:00
|
|
|
goto out;
|
|
|
|
}
|
1999-11-12 03:34:28 +00:00
|
|
|
vput(nd.ni_vp);
|
|
|
|
nd.ni_vp = NULL;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
/*
|
|
|
|
* Release dvp prior to lookup
|
|
|
|
*/
|
|
|
|
vput(nd.ni_dvp);
|
|
|
|
nd.ni_dvp = NULL;
|
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
nd.ni_cnd.cn_nameiop = LOOKUP;
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_cnd.cn_flags &= ~(LOCKPARENT);
|
1995-06-27 11:07:30 +00:00
|
|
|
nd.ni_cnd.cn_proc = procp;
|
|
|
|
nd.ni_cnd.cn_cred = procp->p_ucred;
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
error = lookup(&nd);
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_dvp = NULL;
|
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
if (error)
|
|
|
|
goto out;
|
1999-06-23 04:44:14 +00:00
|
|
|
if (nd.ni_cnd.cn_flags & ISSYMLINK)
|
1995-06-27 11:07:30 +00:00
|
|
|
error = EINVAL;
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* send response, cleanup, return.
|
|
|
|
*/
|
1994-05-24 10:09:53 +00:00
|
|
|
out:
|
1999-06-23 04:44:14 +00:00
|
|
|
if (nd.ni_startdir) {
|
|
|
|
vrele(nd.ni_startdir);
|
|
|
|
nd.ni_startdir = NULL;
|
|
|
|
}
|
|
|
|
if (nd.ni_cnd.cn_flags & HASBUF) {
|
|
|
|
/*
|
|
|
|
* Since SAVESTART is set, we own the buffer and need to
|
|
|
|
* zfree it ourselves.
|
|
|
|
*/
|
|
|
|
if (nd.ni_dvp)
|
|
|
|
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
|
|
|
|
nd.ni_cnd.cn_flags &= ~HASBUF;
|
|
|
|
zfree(namei_zone, nd.ni_cnd.cn_pnbuf);
|
|
|
|
}
|
|
|
|
if (nd.ni_dvp) {
|
|
|
|
if (nd.ni_dvp == nd.ni_vp)
|
|
|
|
vrele(nd.ni_dvp);
|
|
|
|
else
|
|
|
|
vput(nd.ni_dvp);
|
|
|
|
nd.ni_dvp = NULL;
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
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, vap, cred, procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
|
|
|
nd.ni_vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
diraft_ret = VOP_GETATTR(dirp, &diraft, cred, procp);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (dirp) {
|
|
|
|
vrele(dirp);
|
|
|
|
dirp = NULL;
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_SRVFH(1) + NFSX_POSTOPATTR(1) + NFSX_WCCDATA(1));
|
|
|
|
if (!error) {
|
|
|
|
nfsm_srvpostop_fh(fhp);
|
|
|
|
nfsm_srvpostop_attr(0, vap);
|
|
|
|
}
|
|
|
|
nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
|
1994-05-25 09:21:21 +00:00
|
|
|
return (0);
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsmout:
|
|
|
|
if (dirp)
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(dirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (nd.ni_startdir)
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(nd.ni_startdir);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (nd.ni_cnd.cn_flags & HASBUF) {
|
|
|
|
/*
|
|
|
|
* Since SAVESTART is set, we own the buffer and need to
|
|
|
|
* zfree it ourselves.
|
|
|
|
*/
|
|
|
|
if (nd.ni_dvp)
|
|
|
|
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
|
1997-09-21 04:24:27 +00:00
|
|
|
zfree(namei_zone, nd.ni_cnd.cn_pnbuf);
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
if (nd.ni_dvp) {
|
|
|
|
if (nd.ni_dvp == nd.ni_vp)
|
|
|
|
vrele(nd.ni_dvp);
|
|
|
|
else
|
|
|
|
vput(nd.ni_dvp);
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
if (nd.ni_vp)
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(nd.ni_vp);
|
1995-06-27 11:07:30 +00:00
|
|
|
return (error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nfs remove service
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_remove(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct nameidata nd;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
int error = 0, cache, len, dirfor_ret = 1, diraft_ret = 1;
|
|
|
|
int v3 = (nfsd->nd_flag & ND_NFSV3);
|
1994-05-24 10:09:53 +00:00
|
|
|
char *cp2;
|
1995-10-29 15:33:36 +00:00
|
|
|
struct mbuf *mb, *mreq;
|
1999-06-23 04:44:14 +00:00
|
|
|
struct vnode *dirp;
|
1995-06-27 11:07:30 +00:00
|
|
|
struct vattr dirfor, diraft;
|
|
|
|
nfsfh_t nfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp;
|
|
|
|
u_quad_t frev;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
|
|
|
ndclear(&nd);
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_srvnamesiz(len);
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
nd.ni_cnd.cn_cred = cred;
|
|
|
|
nd.ni_cnd.cn_nameiop = DELETE;
|
|
|
|
nd.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF;
|
1995-06-27 11:07:30 +00:00
|
|
|
error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
|
1997-07-16 09:06:30 +00:00
|
|
|
&dirp, procp, (nfsd->nd_flag & ND_KERBAUTH), FALSE);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (dirp) {
|
1999-06-23 04:44:14 +00:00
|
|
|
if (v3) {
|
1995-06-27 11:07:30 +00:00
|
|
|
dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred,
|
|
|
|
procp);
|
1999-06-23 04:44:14 +00:00
|
|
|
} else {
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(dirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
dirp = NULL;
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
if (error == 0) {
|
|
|
|
if (nd.ni_vp->v_type == VDIR) {
|
1997-03-25 05:08:28 +00:00
|
|
|
error = EPERM; /* POSIX */
|
1995-06-27 11:07:30 +00:00
|
|
|
goto out;
|
1997-03-25 05:08:28 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
/*
|
|
|
|
* The root of a mounted filesystem cannot be deleted.
|
|
|
|
*/
|
1999-06-23 04:44:14 +00:00
|
|
|
if (nd.ni_vp->v_flag & VROOT) {
|
1995-06-27 11:07:30 +00:00
|
|
|
error = EBUSY;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
if (!error) {
|
|
|
|
nqsrv_getl(nd.ni_dvp, ND_WRITE);
|
1999-06-23 04:44:14 +00:00
|
|
|
nqsrv_getl(nd.ni_vp, ND_WRITE);
|
1995-06-27 11:07:30 +00:00
|
|
|
error = VOP_REMOVE(nd.ni_dvp, nd.ni_vp, &nd.ni_cnd);
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_cnd.cn_flags &= ~HASBUF;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (dirp && v3) {
|
|
|
|
diraft_ret = VOP_GETATTR(dirp, &diraft, cred, procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(dirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
dirp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
nfsm_reply(NFSX_WCCDATA(v3));
|
|
|
|
if (v3) {
|
|
|
|
nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsmout:
|
|
|
|
if (nd.ni_cnd.cn_flags & HASBUF) {
|
|
|
|
/*
|
|
|
|
* Since SAVESTART is not set, this is sufficient to free
|
|
|
|
* the component buffer. It's actually a NOP since we
|
|
|
|
* do not save the name, but what the hey.
|
|
|
|
*/
|
|
|
|
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
|
|
|
|
}
|
|
|
|
if (nd.ni_dvp) {
|
|
|
|
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);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nfs rename service
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_rename(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
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);
|
1994-05-24 10:09:53 +00:00
|
|
|
char *cp2;
|
1995-10-29 15:33:36 +00:00
|
|
|
struct mbuf *mb, *mreq;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct nameidata fromnd, tond;
|
1995-06-27 11:07:30 +00:00
|
|
|
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;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *ffhp, *tfhp;
|
|
|
|
u_quad_t frev;
|
|
|
|
uid_t saved_uid;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1995-06-27 11:07:30 +00:00
|
|
|
#ifndef nolint
|
|
|
|
fvp = (struct vnode *)0;
|
|
|
|
#endif
|
1994-05-24 10:09:53 +00:00
|
|
|
ffhp = &fnfh.fh_generic;
|
|
|
|
tfhp = &tnfh.fh_generic;
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Clear fields incase goto nfsmout occurs from macro.
|
|
|
|
*/
|
|
|
|
|
|
|
|
ndclear(&fromnd);
|
|
|
|
ndclear(&tond);
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
nfsm_srvmtofh(ffhp);
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_srvnamesiz(len);
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Remember our original uid so that we can reset cr_uid before
|
|
|
|
* the second nfs_namei() call, in case it is remapped.
|
|
|
|
*/
|
|
|
|
saved_uid = cred->cr_uid;
|
|
|
|
fromnd.ni_cnd.cn_cred = cred;
|
|
|
|
fromnd.ni_cnd.cn_nameiop = DELETE;
|
|
|
|
fromnd.ni_cnd.cn_flags = WANTPARENT | SAVESTART;
|
1995-06-27 11:07:30 +00:00
|
|
|
error = nfs_namei(&fromnd, ffhp, len, slp, nam, &md,
|
1997-07-16 09:06:30 +00:00
|
|
|
&dpos, &fdirp, procp, (nfsd->nd_flag & ND_KERBAUTH), FALSE);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (fdirp) {
|
1999-06-23 04:44:14 +00:00
|
|
|
if (v3) {
|
1995-06-27 11:07:30 +00:00
|
|
|
fdirfor_ret = VOP_GETATTR(fdirp, &fdirfor, cred,
|
|
|
|
procp);
|
1999-06-23 04:44:14 +00:00
|
|
|
} else {
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(fdirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
fdirp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
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);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
fvp = fromnd.ni_vp;
|
|
|
|
nfsm_srvmtofh(tfhp);
|
|
|
|
nfsm_strsiz(len2, NFS_MAXNAMLEN);
|
|
|
|
cred->cr_uid = saved_uid;
|
|
|
|
tond.ni_cnd.cn_cred = cred;
|
|
|
|
tond.ni_cnd.cn_nameiop = RENAME;
|
|
|
|
tond.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF | NOCACHE | SAVESTART;
|
1995-06-27 11:07:30 +00:00
|
|
|
error = nfs_namei(&tond, tfhp, len2, slp, nam, &md,
|
1997-07-16 09:06:30 +00:00
|
|
|
&dpos, &tdirp, procp, (nfsd->nd_flag & ND_KERBAUTH), FALSE);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (tdirp) {
|
1999-06-23 04:44:14 +00:00
|
|
|
if (v3) {
|
1995-06-27 11:07:30 +00:00
|
|
|
tdirfor_ret = VOP_GETATTR(tdirp, &tdirfor, cred,
|
|
|
|
procp);
|
1999-06-23 04:44:14 +00:00
|
|
|
} else {
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(tdirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
tdirp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
if (error)
|
1994-05-24 10:09:53 +00:00
|
|
|
goto out1;
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
tdvp = tond.ni_dvp;
|
|
|
|
tvp = tond.ni_vp;
|
|
|
|
if (tvp != NULL) {
|
|
|
|
if (fvp->v_type == VDIR && tvp->v_type != VDIR) {
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3)
|
|
|
|
error = EEXIST;
|
|
|
|
else
|
|
|
|
error = EISDIR;
|
1994-05-24 10:09:53 +00:00
|
|
|
goto out;
|
|
|
|
} else if (fvp->v_type != VDIR && tvp->v_type == VDIR) {
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3)
|
|
|
|
error = EEXIST;
|
|
|
|
else
|
|
|
|
error = ENOTDIR;
|
1994-05-24 10:09:53 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (tvp->v_type == VDIR && tvp->v_mountedhere) {
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3)
|
|
|
|
error = EXDEV;
|
|
|
|
else
|
|
|
|
error = ENOTEMPTY;
|
1994-05-24 10:09:53 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (fvp->v_type == VDIR && fvp->v_mountedhere) {
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3)
|
|
|
|
error = EXDEV;
|
|
|
|
else
|
|
|
|
error = ENOTEMPTY;
|
1994-05-24 10:09:53 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (fvp->v_mount != tdvp->v_mount) {
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3)
|
|
|
|
error = EXDEV;
|
|
|
|
else
|
|
|
|
error = ENOTEMPTY;
|
1994-05-24 10:09:53 +00:00
|
|
|
goto out;
|
|
|
|
}
|
1999-05-06 18:13:11 +00:00
|
|
|
if (fvp == tdvp) {
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3)
|
|
|
|
error = EINVAL;
|
|
|
|
else
|
|
|
|
error = ENOTEMPTY;
|
1999-05-06 18:13:11 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* If source is the same as the destination (that is the
|
|
|
|
* same vnode with the same name in the same directory),
|
|
|
|
* then there is nothing to do.
|
|
|
|
*/
|
|
|
|
if (fvp == tvp && fromnd.ni_dvp == tdvp &&
|
|
|
|
fromnd.ni_cnd.cn_namelen == tond.ni_cnd.cn_namelen &&
|
|
|
|
!bcmp(fromnd.ni_cnd.cn_nameptr, tond.ni_cnd.cn_nameptr,
|
|
|
|
fromnd.ni_cnd.cn_namelen))
|
|
|
|
error = -1;
|
|
|
|
out:
|
|
|
|
if (!error) {
|
1999-06-23 04:44:14 +00:00
|
|
|
/*
|
|
|
|
* Do rename. If an error occured, the underlying path
|
|
|
|
* components are freed by the VOP routine. If no error
|
|
|
|
* occured, the SAVESTART flag prevents them from being
|
|
|
|
* freed.
|
|
|
|
*
|
|
|
|
* The VOP_RENAME function releases all vnode references &
|
|
|
|
* locks prior to returning so we need to clear the pointers
|
|
|
|
* to bypass cleanup code later on.
|
|
|
|
*/
|
1995-06-27 11:07:30 +00:00
|
|
|
nqsrv_getl(fromnd.ni_dvp, ND_WRITE);
|
|
|
|
nqsrv_getl(tdvp, ND_WRITE);
|
1995-05-29 04:01:09 +00:00
|
|
|
if (tvp) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nqsrv_getl(tvp, ND_WRITE);
|
1995-05-29 04:01:09 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
error = VOP_RENAME(fromnd.ni_dvp, fromnd.ni_vp, &fromnd.ni_cnd,
|
|
|
|
tond.ni_dvp, tond.ni_vp, &tond.ni_cnd);
|
1999-06-23 04:44:14 +00:00
|
|
|
fromnd.ni_dvp = NULL;
|
|
|
|
fromnd.ni_vp = NULL;
|
|
|
|
tond.ni_dvp = NULL;
|
|
|
|
tond.ni_vp = NULL;
|
|
|
|
if (error) {
|
|
|
|
fromnd.ni_cnd.cn_flags &= ~HASBUF;
|
|
|
|
tond.ni_cnd.cn_flags &= ~HASBUF;
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
} else {
|
1995-06-27 11:07:30 +00:00
|
|
|
if (error == -1)
|
|
|
|
error = 0;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
/* fall through */
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
out1:
|
1999-06-23 04:44:14 +00:00
|
|
|
if (fdirp)
|
1995-06-27 11:07:30 +00:00
|
|
|
fdiraft_ret = VOP_GETATTR(fdirp, &fdiraft, cred, procp);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (tdirp)
|
1995-06-27 11:07:30 +00:00
|
|
|
tdiraft_ret = VOP_GETATTR(tdirp, &tdiraft, cred, procp);
|
|
|
|
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);
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
/* fall through */
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
nfsmout:
|
1999-06-23 04:44:14 +00:00
|
|
|
/*
|
|
|
|
* Clear out tond related fields
|
|
|
|
*/
|
1995-06-27 11:07:30 +00:00
|
|
|
if (tdirp)
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(tdirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (tond.ni_startdir)
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(tond.ni_startdir);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (tond.ni_cnd.cn_flags & HASBUF) {
|
|
|
|
/*
|
|
|
|
* The VOP_ABORTOP is probably a NOP. Since we have set
|
|
|
|
* SAVESTART, we need to zfree the buffer ourselves.
|
|
|
|
*/
|
|
|
|
if (tond.ni_dvp)
|
|
|
|
VOP_ABORTOP(tond.ni_dvp, &tond.ni_cnd);
|
1997-09-21 04:24:27 +00:00
|
|
|
zfree(namei_zone, tond.ni_cnd.cn_pnbuf);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
if (tond.ni_dvp) {
|
|
|
|
if (tond.ni_dvp == tond.ni_vp)
|
|
|
|
vrele(tond.ni_dvp);
|
|
|
|
else
|
|
|
|
vput(tond.ni_dvp);
|
|
|
|
}
|
|
|
|
if (tond.ni_vp)
|
|
|
|
vput(tond.ni_vp);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clear out fromnd related fields
|
|
|
|
*/
|
|
|
|
if (fdirp)
|
|
|
|
vrele(fdirp);
|
|
|
|
if (fromnd.ni_startdir)
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(fromnd.ni_startdir);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (fromnd.ni_cnd.cn_flags & HASBUF) {
|
|
|
|
if (fromnd.ni_dvp)
|
|
|
|
VOP_ABORTOP(fromnd.ni_dvp, &fromnd.ni_cnd);
|
1997-09-21 04:24:27 +00:00
|
|
|
zfree(namei_zone, fromnd.ni_cnd.cn_pnbuf);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
if (fromnd.ni_dvp)
|
|
|
|
vrele(fromnd.ni_dvp);
|
|
|
|
if (fromnd.ni_vp)
|
|
|
|
vrele(fromnd.ni_vp);
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nfs link service
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_link(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct nameidata nd;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
int error = 0, rdonly, cache, len, dirfor_ret = 1, diraft_ret = 1;
|
|
|
|
int getret = 1, v3 = (nfsd->nd_flag & ND_NFSV3);
|
1994-05-24 10:09:53 +00:00
|
|
|
char *cp2;
|
1995-10-29 15:33:36 +00:00
|
|
|
struct mbuf *mb, *mreq;
|
1999-06-23 04:44:14 +00:00
|
|
|
struct vnode *vp = NULL, *xp, *dirp = (struct vnode *)0;
|
1995-06-27 11:07:30 +00:00
|
|
|
struct vattr dirfor, diraft, at;
|
|
|
|
nfsfh_t nfh, dnfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp, *dfhp;
|
|
|
|
u_quad_t frev;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
|
|
|
ndclear(&nd);
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
dfhp = &dnfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
|
|
|
nfsm_srvmtofh(dfhp);
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_srvnamesiz(len);
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1998-05-31 17:27:58 +00:00
|
|
|
error = nfsrv_fhtovp(fhp, FALSE, &vp, cred, slp, nam,
|
|
|
|
&rdonly, (nfsd->nd_flag & ND_KERBAUTH), TRUE);
|
|
|
|
if (error) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_WCCDATA(v3));
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
|
|
|
nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1997-03-25 05:08:28 +00:00
|
|
|
if (vp->v_type == VDIR) {
|
|
|
|
error = EPERM; /* POSIX */
|
1994-05-24 10:09:53 +00:00
|
|
|
goto out1;
|
1997-03-25 05:08:28 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
nd.ni_cnd.cn_cred = cred;
|
|
|
|
nd.ni_cnd.cn_nameiop = CREATE;
|
|
|
|
nd.ni_cnd.cn_flags = LOCKPARENT;
|
1995-06-27 11:07:30 +00:00
|
|
|
error = nfs_namei(&nd, dfhp, len, slp, nam, &md, &dpos,
|
1997-07-16 09:06:30 +00:00
|
|
|
&dirp, procp, (nfsd->nd_flag & ND_KERBAUTH), FALSE);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (dirp) {
|
1999-06-23 04:44:14 +00:00
|
|
|
if (v3) {
|
1995-06-27 11:07:30 +00:00
|
|
|
dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred,
|
|
|
|
procp);
|
1999-06-23 04:44:14 +00:00
|
|
|
} else {
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(dirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
dirp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
}
|
1994-10-02 17:27:07 +00:00
|
|
|
if (error)
|
1994-05-24 10:09:53 +00:00
|
|
|
goto out1;
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
xp = nd.ni_vp;
|
|
|
|
if (xp != NULL) {
|
|
|
|
error = EEXIST;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
xp = nd.ni_dvp;
|
|
|
|
if (vp->v_mount != xp->v_mount)
|
|
|
|
error = EXDEV;
|
|
|
|
out:
|
|
|
|
if (!error) {
|
1999-06-23 04:44:14 +00:00
|
|
|
/*
|
|
|
|
* Do the link op. Since SAVESTART is not set, the
|
|
|
|
* underlying path component is freed whether an error
|
|
|
|
* is returned or not.
|
|
|
|
*/
|
1995-06-27 11:07:30 +00:00
|
|
|
nqsrv_getl(vp, ND_WRITE);
|
|
|
|
nqsrv_getl(xp, ND_WRITE);
|
1997-03-25 05:13:40 +00:00
|
|
|
error = VOP_LINK(nd.ni_dvp, vp, &nd.ni_cnd);
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_cnd.cn_flags &= ~HASBUF;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
/* fall through */
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
out1:
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3)
|
|
|
|
getret = VOP_GETATTR(vp, &at, cred, procp);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (dirp)
|
1995-06-27 11:07:30 +00:00
|
|
|
diraft_ret = VOP_GETATTR(dirp, &diraft, cred, procp);
|
|
|
|
nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_WCCDATA(v3));
|
|
|
|
if (v3) {
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
|
|
|
nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
/* fall through */
|
|
|
|
|
|
|
|
nfsmout:
|
|
|
|
if (nd.ni_cnd.cn_flags & HASBUF) {
|
|
|
|
/*
|
|
|
|
* Since we are not using SAVESTART,
|
|
|
|
* VOP_ABORTOP is sufficient to free the path component
|
|
|
|
*/
|
|
|
|
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
|
|
|
|
/* zfree(namei_zone, nd.ni_cnd.cn_pnbuf); */
|
|
|
|
}
|
|
|
|
if (dirp)
|
|
|
|
vrele(dirp);
|
|
|
|
if (vp)
|
|
|
|
vrele(vp);
|
|
|
|
if (nd.ni_dvp) {
|
|
|
|
if (nd.ni_dvp == nd.ni_vp)
|
|
|
|
vrele(nd.ni_dvp);
|
|
|
|
else
|
|
|
|
vput(nd.ni_dvp);
|
|
|
|
}
|
|
|
|
if (nd.ni_vp)
|
|
|
|
vrele(nd.ni_vp);
|
|
|
|
return(error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nfs symbolic link service
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_symlink(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
|
|
|
struct vattr va, dirfor, diraft;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct nameidata nd;
|
|
|
|
register struct vattr *vap = &va;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct nfsv2_sattr *sp;
|
1995-10-29 15:33:36 +00:00
|
|
|
char *bpos, *pathcp = (char *)0, *cp2;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct uio io;
|
|
|
|
struct iovec iv;
|
1995-06-27 11:07:30 +00:00
|
|
|
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;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp;
|
|
|
|
u_quad_t frev;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
|
|
|
ndclear(&nd);
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_srvnamesiz(len);
|
1994-05-24 10:09:53 +00:00
|
|
|
nd.ni_cnd.cn_cred = cred;
|
|
|
|
nd.ni_cnd.cn_nameiop = CREATE;
|
1995-06-27 11:07:30 +00:00
|
|
|
nd.ni_cnd.cn_flags = LOCKPARENT | SAVESTART;
|
|
|
|
error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
|
1997-07-16 09:06:30 +00:00
|
|
|
&dirp, procp, (nfsd->nd_flag & ND_KERBAUTH), FALSE);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (dirp) {
|
1999-06-23 04:44:14 +00:00
|
|
|
if (v3) {
|
1995-06-27 11:07:30 +00:00
|
|
|
dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred,
|
|
|
|
procp);
|
1999-06-23 04:44:14 +00:00
|
|
|
} else {
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(dirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
dirp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
}
|
1994-10-02 17:27:07 +00:00
|
|
|
if (error)
|
1994-05-24 10:09:53 +00:00
|
|
|
goto out;
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
VATTR_NULL(vap);
|
|
|
|
if (v3)
|
|
|
|
nfsm_srvsattr(vap);
|
1994-05-24 10:09:53 +00:00
|
|
|
nfsm_strsiz(len2, NFS_MAXPATHLEN);
|
|
|
|
MALLOC(pathcp, caddr_t, len2 + 1, M_TEMP, M_WAITOK);
|
|
|
|
iv.iov_base = pathcp;
|
|
|
|
iv.iov_len = len2;
|
|
|
|
io.uio_resid = len2;
|
|
|
|
io.uio_offset = 0;
|
|
|
|
io.uio_iov = &iv;
|
|
|
|
io.uio_iovcnt = 1;
|
|
|
|
io.uio_segflg = UIO_SYSSPACE;
|
|
|
|
io.uio_rw = UIO_READ;
|
|
|
|
io.uio_procp = (struct proc *)0;
|
|
|
|
nfsm_mtouio(&io, len2);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (!v3) {
|
|
|
|
nfsm_dissect(sp, struct nfsv2_sattr *, NFSX_V2SATTR);
|
1998-05-31 20:09:01 +00:00
|
|
|
vap->va_mode = fxdr_unsigned(u_int16_t, sp->sa_mode);
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
*(pathcp + len2) = '\0';
|
|
|
|
if (nd.ni_vp) {
|
|
|
|
error = EEXIST;
|
|
|
|
goto out;
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* issue symlink op. SAVESTART is set so the underlying path component
|
1999-11-13 20:58:17 +00:00
|
|
|
* is only freed by the VOP if an error occurs.
|
1999-06-23 04:44:14 +00:00
|
|
|
*/
|
1995-06-27 11:07:30 +00:00
|
|
|
nqsrv_getl(nd.ni_dvp, ND_WRITE);
|
1994-05-24 10:09:53 +00:00
|
|
|
error = VOP_SYMLINK(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, vap, pathcp);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (error)
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_cnd.cn_flags &= ~HASBUF;
|
1999-11-13 20:58:17 +00:00
|
|
|
else {
|
|
|
|
vput(nd.ni_vp);
|
|
|
|
nd.ni_vp = NULL;
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
/*
|
|
|
|
* releases directory prior to potential lookup op.
|
|
|
|
*/
|
|
|
|
vput(nd.ni_dvp);
|
|
|
|
nd.ni_dvp = NULL;
|
|
|
|
|
|
|
|
if (error == 0) {
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3) {
|
1999-06-23 04:44:14 +00:00
|
|
|
/*
|
|
|
|
* Issue lookup. Leave SAVESTART set so we can easily free
|
|
|
|
* the name buffer later on.
|
|
|
|
*
|
|
|
|
* since LOCKPARENT is not set, ni_dvp will be garbage on
|
|
|
|
* return whether an error occurs or not.
|
|
|
|
*/
|
1995-06-27 11:07:30 +00:00
|
|
|
nd.ni_cnd.cn_nameiop = LOOKUP;
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_cnd.cn_flags &= ~(LOCKPARENT | FOLLOW);
|
1995-06-27 11:07:30 +00:00
|
|
|
nd.ni_cnd.cn_flags |= (NOFOLLOW | LOCKLEAF);
|
|
|
|
nd.ni_cnd.cn_proc = procp;
|
|
|
|
nd.ni_cnd.cn_cred = cred;
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
error = lookup(&nd);
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_dvp = NULL;
|
|
|
|
|
|
|
|
if (error == 0) {
|
1995-06-27 11:07:30 +00:00
|
|
|
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, vap, cred,
|
|
|
|
procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(nd.ni_vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
out:
|
1999-06-23 04:44:14 +00:00
|
|
|
/*
|
|
|
|
* These releases aren't strictly required, does even doing them
|
|
|
|
* make any sense? XXX can nfsm_reply() block?
|
|
|
|
*/
|
|
|
|
if (pathcp) {
|
1994-05-24 10:09:53 +00:00
|
|
|
FREE(pathcp, M_TEMP);
|
1999-06-23 04:44:14 +00:00
|
|
|
pathcp = NULL;
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
if (dirp) {
|
|
|
|
diraft_ret = VOP_GETATTR(dirp, &diraft, cred, procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(dirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
dirp = NULL;
|
|
|
|
}
|
|
|
|
if (nd.ni_startdir) {
|
|
|
|
vrele(nd.ni_startdir);
|
|
|
|
nd.ni_startdir = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
nfsm_reply(NFSX_SRVFH(v3) + NFSX_POSTOPATTR(v3) + NFSX_WCCDATA(v3));
|
|
|
|
if (v3) {
|
|
|
|
if (!error) {
|
|
|
|
nfsm_srvpostop_fh(fhp);
|
|
|
|
nfsm_srvpostop_attr(0, vap);
|
|
|
|
}
|
|
|
|
nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
/* fall through */
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
nfsmout:
|
1999-06-23 04:44:14 +00:00
|
|
|
if (nd.ni_cnd.cn_flags & HASBUF) {
|
|
|
|
/*
|
|
|
|
* Since SAVESTART is set, we own the buffer and need to
|
|
|
|
* zfree it ourselves.
|
|
|
|
*/
|
|
|
|
if (nd.ni_dvp)
|
|
|
|
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
|
|
|
|
zfree(namei_zone, nd.ni_cnd.cn_pnbuf);
|
|
|
|
}
|
|
|
|
if (nd.ni_dvp) {
|
|
|
|
if (nd.ni_dvp == nd.ni_vp)
|
|
|
|
vrele(nd.ni_dvp);
|
|
|
|
else
|
|
|
|
vput(nd.ni_dvp);
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
if (nd.ni_vp)
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(nd.ni_vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (nd.ni_startdir)
|
|
|
|
vrele(nd.ni_startdir);
|
|
|
|
if (dirp)
|
|
|
|
vrele(dirp);
|
1994-05-24 10:09:53 +00:00
|
|
|
if (pathcp)
|
|
|
|
FREE(pathcp, M_TEMP);
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nfs mkdir service
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_mkdir(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
|
|
|
struct vattr va, dirfor, diraft;
|
1994-05-24 10:09:53 +00:00
|
|
|
register struct vattr *vap = &va;
|
1995-06-27 11:07:30 +00:00
|
|
|
register struct nfs_fattr *fp;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct nameidata nd;
|
|
|
|
register caddr_t cp;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
int error = 0, cache, len, dirfor_ret = 1, diraft_ret = 1;
|
|
|
|
int v3 = (nfsd->nd_flag & ND_NFSV3);
|
1994-05-24 10:09:53 +00:00
|
|
|
char *cp2;
|
|
|
|
struct mbuf *mb, *mb2, *mreq;
|
1999-06-23 04:44:14 +00:00
|
|
|
struct vnode *dirp = NULL;
|
|
|
|
int vpexcl = 0;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsfh_t nfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp;
|
|
|
|
u_quad_t frev;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
|
|
|
ndclear(&nd);
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_srvnamesiz(len);
|
1994-05-24 10:09:53 +00:00
|
|
|
nd.ni_cnd.cn_cred = cred;
|
|
|
|
nd.ni_cnd.cn_nameiop = CREATE;
|
|
|
|
nd.ni_cnd.cn_flags = LOCKPARENT;
|
1999-06-23 04:44:14 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
|
1997-07-16 09:06:30 +00:00
|
|
|
&dirp, procp, (nfsd->nd_flag & ND_KERBAUTH), FALSE);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (dirp) {
|
1999-06-23 04:44:14 +00:00
|
|
|
if (v3) {
|
1995-06-27 11:07:30 +00:00
|
|
|
dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred,
|
|
|
|
procp);
|
1999-06-23 04:44:14 +00:00
|
|
|
} else {
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(dirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
dirp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (error) {
|
|
|
|
nfsm_reply(NFSX_WCCDATA(v3));
|
|
|
|
nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
VATTR_NULL(vap);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3) {
|
|
|
|
nfsm_srvsattr(vap);
|
|
|
|
} else {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
|
1995-06-27 11:07:30 +00:00
|
|
|
vap->va_mode = nfstov_mode(*tl++);
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* At this point nd.ni_dvp is referenced and exclusively locked and
|
|
|
|
* nd.ni_vp, if it exists, is referenced but not locked.
|
|
|
|
*/
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
vap->va_type = VDIR;
|
1999-06-23 04:44:14 +00:00
|
|
|
if (nd.ni_vp != NULL) {
|
|
|
|
/*
|
|
|
|
* Freeup path component. Since SAVESTART was not set,
|
|
|
|
* VOP_ABORTOP() will handle it.
|
|
|
|
*/
|
1994-05-24 10:09:53 +00:00
|
|
|
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_cnd.cn_flags &= ~HASBUF;
|
1994-05-24 10:09:53 +00:00
|
|
|
error = EEXIST;
|
1995-06-27 11:07:30 +00:00
|
|
|
goto out;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Issue mkdir op. Since SAVESTART is not set, the pathname
|
|
|
|
* component is freed by the VOP call. This will fill-in
|
|
|
|
* nd.ni_vp, reference, and exclusively lock it.
|
|
|
|
*/
|
1995-06-27 11:07:30 +00:00
|
|
|
nqsrv_getl(nd.ni_dvp, ND_WRITE);
|
1994-10-02 17:27:07 +00:00
|
|
|
error = VOP_MKDIR(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, vap);
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_cnd.cn_flags &= ~HASBUF;
|
|
|
|
vpexcl = 1;
|
|
|
|
|
1998-05-07 04:58:58 +00:00
|
|
|
vput(nd.ni_dvp);
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_dvp = NULL;
|
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
if (!error) {
|
|
|
|
bzero((caddr_t)fhp, sizeof(nfh));
|
1999-06-23 04:44:14 +00:00
|
|
|
fhp->fh_fsid = nd.ni_vp->v_mount->mnt_stat.f_fsid;
|
|
|
|
error = VFS_VPTOFH(nd.ni_vp, &fhp->fh_fid);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (!error)
|
1999-06-23 04:44:14 +00:00
|
|
|
error = VOP_GETATTR(nd.ni_vp, vap, cred, procp);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
out:
|
1999-06-23 04:44:14 +00:00
|
|
|
if (dirp)
|
1995-06-27 11:07:30 +00:00
|
|
|
diraft_ret = VOP_GETATTR(dirp, &diraft, cred, procp);
|
|
|
|
nfsm_reply(NFSX_SRVFH(v3) + NFSX_POSTOPATTR(v3) + NFSX_WCCDATA(v3));
|
|
|
|
if (v3) {
|
|
|
|
if (!error) {
|
|
|
|
nfsm_srvpostop_fh(fhp);
|
|
|
|
nfsm_srvpostop_attr(0, vap);
|
|
|
|
}
|
|
|
|
nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
|
|
|
|
} else {
|
|
|
|
nfsm_srvfhtom(fhp, v3);
|
|
|
|
nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
|
|
|
|
nfsm_srvfillattr(vap, fp);
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
/* fall through */
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
nfsmout:
|
1995-06-27 11:07:30 +00:00
|
|
|
if (dirp)
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(dirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (nd.ni_dvp) {
|
|
|
|
/*
|
|
|
|
* Since SAVESTART is not set, VOP_ABORTOP will always free
|
|
|
|
* the path component.
|
|
|
|
*/
|
|
|
|
if (nd.ni_cnd.cn_flags & HASBUF)
|
|
|
|
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
|
|
|
|
if (nd.ni_dvp == nd.ni_vp && vpexcl)
|
|
|
|
vrele(nd.ni_dvp);
|
|
|
|
else
|
|
|
|
vput(nd.ni_dvp);
|
|
|
|
}
|
|
|
|
if (nd.ni_vp) {
|
|
|
|
if (vpexcl)
|
|
|
|
vput(nd.ni_vp);
|
|
|
|
else
|
|
|
|
vrele(nd.ni_vp);
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nfs rmdir service
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_rmdir(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
int error = 0, cache, len, dirfor_ret = 1, diraft_ret = 1;
|
|
|
|
int v3 = (nfsd->nd_flag & ND_NFSV3);
|
1994-05-24 10:09:53 +00:00
|
|
|
char *cp2;
|
1995-10-29 15:33:36 +00:00
|
|
|
struct mbuf *mb, *mreq;
|
1995-06-27 11:07:30 +00:00
|
|
|
struct vnode *vp, *dirp = (struct vnode *)0;
|
|
|
|
struct vattr dirfor, diraft;
|
|
|
|
nfsfh_t nfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp;
|
|
|
|
struct nameidata nd;
|
|
|
|
u_quad_t frev;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
|
|
|
ndclear(&nd);
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_srvnamesiz(len);
|
1994-05-24 10:09:53 +00:00
|
|
|
nd.ni_cnd.cn_cred = cred;
|
|
|
|
nd.ni_cnd.cn_nameiop = DELETE;
|
|
|
|
nd.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF;
|
1995-06-27 11:07:30 +00:00
|
|
|
error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
|
1997-07-16 09:06:30 +00:00
|
|
|
&dirp, procp, (nfsd->nd_flag & ND_KERBAUTH), FALSE);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (dirp) {
|
1999-06-23 04:44:14 +00:00
|
|
|
if (v3) {
|
1995-06-27 11:07:30 +00:00
|
|
|
dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred,
|
|
|
|
procp);
|
1999-06-23 04:44:14 +00:00
|
|
|
} else {
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(dirp);
|
1999-06-23 04:44:14 +00:00
|
|
|
dirp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (error) {
|
|
|
|
nfsm_reply(NFSX_WCCDATA(v3));
|
|
|
|
nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
vp = nd.ni_vp;
|
|
|
|
if (vp->v_type != VDIR) {
|
|
|
|
error = ENOTDIR;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* No rmdir "." please.
|
|
|
|
*/
|
|
|
|
if (nd.ni_dvp == vp) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* The root of a mounted filesystem cannot be deleted.
|
|
|
|
*/
|
|
|
|
if (vp->v_flag & VROOT)
|
|
|
|
error = EBUSY;
|
|
|
|
out:
|
1999-06-23 04:44:14 +00:00
|
|
|
/*
|
|
|
|
* Issue or abort op. Since SAVESTART is not set, path name
|
|
|
|
* component is freed by the VOP after either.
|
|
|
|
*/
|
1994-05-24 10:09:53 +00:00
|
|
|
if (!error) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nqsrv_getl(nd.ni_dvp, ND_WRITE);
|
|
|
|
nqsrv_getl(vp, ND_WRITE);
|
1994-05-24 10:09:53 +00:00
|
|
|
error = VOP_RMDIR(nd.ni_dvp, nd.ni_vp, &nd.ni_cnd);
|
|
|
|
} else {
|
|
|
|
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
nd.ni_cnd.cn_flags &= ~HASBUF;
|
|
|
|
|
|
|
|
if (dirp)
|
1995-06-27 11:07:30 +00:00
|
|
|
diraft_ret = VOP_GETATTR(dirp, &diraft, cred, procp);
|
|
|
|
nfsm_reply(NFSX_WCCDATA(v3));
|
|
|
|
if (v3) {
|
|
|
|
nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
/* fall through */
|
|
|
|
|
|
|
|
nfsmout:
|
|
|
|
/*
|
|
|
|
* Since SAVESTART is not set, a VOP_ABORTOP is sufficient to
|
|
|
|
* deal with the pathname component.
|
|
|
|
*/
|
|
|
|
if (nd.ni_cnd.cn_flags & HASBUF)
|
|
|
|
VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
|
|
|
|
if (dirp)
|
|
|
|
vrele(dirp);
|
|
|
|
if (nd.ni_dvp) {
|
|
|
|
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);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nfs readdir service
|
|
|
|
* - mallocs what it thinks is enough to read
|
|
|
|
* count rounded up to a multiple of NFS_DIRBLKSIZ <= NFS_MAXREADDIR
|
|
|
|
* - calls VOP_READDIR()
|
|
|
|
* - loops around building the reply
|
|
|
|
* if the output generated exceeds count break out of loop
|
|
|
|
* The nfsm_clget macro is used here so that the reply will be packed
|
|
|
|
* tightly in mbuf clusters.
|
|
|
|
* - it only knows that it has encountered eof when the VOP_READDIR()
|
|
|
|
* reads nothing
|
|
|
|
* - as such one readdir rpc will return eof false although you are there
|
|
|
|
* and then the next will return eof
|
|
|
|
* - it trims out records with d_fileno == 0
|
|
|
|
* this doesn't matter for Unix clients, but they might confuse clients
|
|
|
|
* for other os'.
|
|
|
|
* 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 }
|
1995-06-27 11:07:30 +00:00
|
|
|
* The alternate call nfsrv_readdirplus() does lookups as well.
|
1994-05-24 10:09:53 +00:00
|
|
|
* 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 ...
|
|
|
|
* I tried just file name and id sizes and it confused the Sun client,
|
|
|
|
* so I am using the full rpc size now. The "paranoia.." comment refers
|
|
|
|
* to including the status longwords that are not a part of the dir.
|
|
|
|
* "entry" structures, but are in the rpc.
|
|
|
|
*/
|
|
|
|
struct flrep {
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsuint64 fl_off;
|
1998-05-31 20:09:01 +00:00
|
|
|
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)];
|
1994-05-24 10:09:53 +00:00
|
|
|
};
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_readdir(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
1994-05-24 10:09:53 +00:00
|
|
|
register char *bp, *be;
|
|
|
|
register struct mbuf *mp;
|
|
|
|
register struct dirent *dp;
|
|
|
|
register caddr_t cp;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
|
|
|
struct mbuf *mb, *mb2, *mreq, *mp2;
|
|
|
|
char *cpos, *cend, *cp2, *rbuf;
|
1999-06-23 04:44:14 +00:00
|
|
|
struct vnode *vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
struct vattr at;
|
|
|
|
nfsfh_t nfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp;
|
|
|
|
struct uio io;
|
|
|
|
struct iovec iv;
|
1995-06-27 11:07:30 +00:00
|
|
|
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;
|
1998-05-31 20:09:01 +00:00
|
|
|
u_long *cookies = NULL, *cookiep; /* needs to be int64_t or off_t */
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3) {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, 5 * NFSX_UNSIGNED);
|
1999-06-05 05:35:03 +00:00
|
|
|
toff = fxdr_hyper(tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
tl += 2;
|
1999-06-05 05:35:03 +00:00
|
|
|
verf = fxdr_hyper(tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
tl += 2;
|
|
|
|
} else {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
|
1995-06-27 11:07:30 +00:00
|
|
|
toff = fxdr_unsigned(u_quad_t, *tl++);
|
1999-06-05 05:35:03 +00:00
|
|
|
verf = 0; /* shut up gcc */
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
off = toff;
|
1994-05-24 10:09:53 +00:00
|
|
|
cnt = fxdr_unsigned(int, *tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
siz = ((cnt + DIRBLKSIZ - 1) & ~(DIRBLKSIZ - 1));
|
|
|
|
xfer = NFS_SRVMAXDATA(nfsd);
|
|
|
|
if (siz > xfer)
|
|
|
|
siz = xfer;
|
1994-05-24 10:09:53 +00:00
|
|
|
fullsiz = siz;
|
1998-05-31 17:27:58 +00:00
|
|
|
error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
|
|
|
|
&rdonly, (nfsd->nd_flag & ND_KERBAUTH), TRUE);
|
1998-05-31 17:54:18 +00:00
|
|
|
if (!error && vp->v_type != VDIR) {
|
|
|
|
error = ENOTDIR;
|
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1998-05-31 17:54:18 +00:00
|
|
|
}
|
1998-05-31 17:27:58 +00:00
|
|
|
if (error) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_UNSIGNED);
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Obtain lock on vnode for this section of the code
|
|
|
|
*/
|
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
nqsrv_getl(vp, ND_READ);
|
|
|
|
if (v3) {
|
|
|
|
error = getret = VOP_GETATTR(vp, &at, cred, procp);
|
1999-09-29 17:14:58 +00:00
|
|
|
#if 0
|
1998-05-31 19:07:47 +00:00
|
|
|
/*
|
|
|
|
* XXX This check may be too strict for Solaris 2.5 clients.
|
|
|
|
*/
|
1997-07-22 15:35:15 +00:00
|
|
|
if (!error && toff && verf && verf != at.va_filerev)
|
1995-06-27 11:07:30 +00:00
|
|
|
error = NFSERR_BAD_COOKIE;
|
1999-09-29 17:14:58 +00:00
|
|
|
#endif
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
if (!error)
|
1998-05-20 09:05:48 +00:00
|
|
|
error = nfsrv_access(vp, VEXEC, cred, rdonly, procp, 0);
|
1994-10-02 17:27:07 +00:00
|
|
|
if (error) {
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_POSTOPATTR(v3));
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
VOP_UNLOCK(vp, 0, procp);
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* end section. Allocate rbuf and continue
|
|
|
|
*/
|
1994-05-24 10:09:53 +00:00
|
|
|
MALLOC(rbuf, caddr_t, siz, M_TEMP, M_WAITOK);
|
|
|
|
again:
|
|
|
|
iv.iov_base = rbuf;
|
|
|
|
iv.iov_len = fullsiz;
|
|
|
|
io.uio_iov = &iv;
|
|
|
|
io.uio_iovcnt = 1;
|
|
|
|
io.uio_offset = (off_t)off;
|
|
|
|
io.uio_resid = fullsiz;
|
|
|
|
io.uio_segflg = UIO_SYSSPACE;
|
|
|
|
io.uio_rw = UIO_READ;
|
|
|
|
io.uio_procp = (struct proc *)0;
|
1994-09-28 16:45:22 +00:00
|
|
|
eofflag = 0;
|
1997-02-10 02:22:35 +00:00
|
|
|
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, procp);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (cookies) {
|
|
|
|
free((caddr_t)cookies, M_TEMP);
|
|
|
|
cookies = NULL;
|
|
|
|
}
|
1994-09-28 16:45:22 +00:00
|
|
|
error = VOP_READDIR(vp, &io, cred, &eofflag, &ncookies, &cookies);
|
1994-05-24 10:09:53 +00:00
|
|
|
off = (off_t)io.uio_offset;
|
1995-06-27 11:07:30 +00:00
|
|
|
if (!cookies && !error)
|
|
|
|
error = NFSERR_PERM;
|
|
|
|
if (v3) {
|
|
|
|
getret = VOP_GETATTR(vp, &at, cred, procp);
|
|
|
|
if (!error)
|
|
|
|
error = getret;
|
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
VOP_UNLOCK(vp, 0, procp);
|
1994-05-24 10:09:53 +00:00
|
|
|
if (error) {
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1994-05-24 10:09:53 +00:00
|
|
|
free((caddr_t)rbuf, M_TEMP);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (cookies)
|
|
|
|
free((caddr_t)cookies, M_TEMP);
|
|
|
|
nfsm_reply(NFSX_POSTOPATTR(v3));
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1994-09-28 16:45:22 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
if (io.uio_resid) {
|
|
|
|
siz -= io.uio_resid;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If nothing read, return eof
|
|
|
|
* rpc reply
|
|
|
|
*/
|
|
|
|
if (siz == 0) {
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_COOKIEVERF(v3) +
|
|
|
|
2 * NFSX_UNSIGNED);
|
|
|
|
if (v3) {
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_build(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
|
1999-06-05 05:35:03 +00:00
|
|
|
txdr_hyper(at.va_filerev, tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
tl += 2;
|
|
|
|
} else
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_build(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
|
1994-05-24 10:09:53 +00:00
|
|
|
*tl++ = nfs_false;
|
|
|
|
*tl = nfs_true;
|
|
|
|
FREE((caddr_t)rbuf, M_TEMP);
|
1995-06-27 11:07:30 +00:00
|
|
|
FREE((caddr_t)cookies, M_TEMP);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for degenerate cases of nothing useful read.
|
|
|
|
* If so go try again
|
|
|
|
*/
|
1994-09-28 16:45:22 +00:00
|
|
|
cpos = rbuf;
|
1994-05-24 10:09:53 +00:00
|
|
|
cend = rbuf + siz;
|
|
|
|
dp = (struct dirent *)cpos;
|
1994-09-28 16:45:22 +00:00
|
|
|
cookiep = cookies;
|
1995-06-27 11:07:30 +00:00
|
|
|
/*
|
|
|
|
* For some reason FreeBSD's ufs_readdir() chooses to back the
|
|
|
|
* directory offset up to a block boundary, so it is necessary to
|
|
|
|
* skip over the records that preceed the requested offset. This
|
|
|
|
* requires the assumption that file offset cookies monotonically
|
|
|
|
* increase.
|
|
|
|
*/
|
|
|
|
while (cpos < cend && ncookies > 0 &&
|
1998-05-31 19:10:52 +00:00
|
|
|
(dp->d_fileno == 0 || dp->d_type == DT_WHT ||
|
|
|
|
((u_quad_t)(*cookiep)) <= toff)) {
|
1994-05-24 10:09:53 +00:00
|
|
|
cpos += dp->d_reclen;
|
|
|
|
dp = (struct dirent *)cpos;
|
1994-09-28 16:45:22 +00:00
|
|
|
cookiep++;
|
|
|
|
ncookies--;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
if (cpos >= cend || ncookies == 0) {
|
1994-05-24 10:09:53 +00:00
|
|
|
toff = off;
|
|
|
|
siz = fullsiz;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
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);
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_build(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
|
1999-06-05 05:35:03 +00:00
|
|
|
txdr_hyper(at.va_filerev, tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
mp = mp2 = mb;
|
|
|
|
bp = bpos;
|
|
|
|
be = bp + M_TRAILINGSPACE(mp);
|
|
|
|
|
|
|
|
/* Loop through the records and build reply */
|
1995-06-27 11:07:30 +00:00
|
|
|
while (cpos < cend && ncookies > 0) {
|
1998-05-31 19:10:52 +00:00
|
|
|
if (dp->d_fileno != 0 && dp->d_type != DT_WHT) {
|
1994-05-24 10:09:53 +00:00
|
|
|
nlen = dp->d_namlen;
|
1999-06-23 04:44:14 +00:00
|
|
|
rem = nfsm_rndup(nlen) - nlen;
|
1995-06-27 11:07:30 +00:00
|
|
|
len += (4 * NFSX_UNSIGNED + nlen + rem);
|
|
|
|
if (v3)
|
|
|
|
len += 2 * NFSX_UNSIGNED;
|
1994-05-24 10:09:53 +00:00
|
|
|
if (len > cnt) {
|
|
|
|
eofflag = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Build the directory record xdr from
|
|
|
|
* the dirent entry.
|
|
|
|
*/
|
|
|
|
nfsm_clget;
|
|
|
|
*tl = nfs_true;
|
|
|
|
bp += NFSX_UNSIGNED;
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3) {
|
|
|
|
nfsm_clget;
|
|
|
|
*tl = 0;
|
|
|
|
bp += NFSX_UNSIGNED;
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
nfsm_clget;
|
|
|
|
*tl = txdr_unsigned(dp->d_fileno);
|
|
|
|
bp += NFSX_UNSIGNED;
|
|
|
|
nfsm_clget;
|
|
|
|
*tl = txdr_unsigned(nlen);
|
|
|
|
bp += NFSX_UNSIGNED;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/* And loop around copying the name */
|
|
|
|
xfer = nlen;
|
|
|
|
cp = dp->d_name;
|
|
|
|
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;
|
|
|
|
}
|
1998-05-31 20:09:01 +00:00
|
|
|
/* And null pad to a int32_t boundary */
|
1994-05-24 10:09:53 +00:00
|
|
|
for (i = 0; i < rem; i++)
|
|
|
|
*bp++ = '\0';
|
|
|
|
nfsm_clget;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/* Finish off the record */
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3) {
|
|
|
|
*tl = 0;
|
|
|
|
bp += NFSX_UNSIGNED;
|
|
|
|
nfsm_clget;
|
|
|
|
}
|
1994-09-28 16:45:22 +00:00
|
|
|
*tl = txdr_unsigned(*cookiep);
|
1994-05-24 10:09:53 +00:00
|
|
|
bp += NFSX_UNSIGNED;
|
1994-09-28 16:45:22 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
cpos += dp->d_reclen;
|
|
|
|
dp = (struct dirent *)cpos;
|
1994-09-28 16:45:22 +00:00
|
|
|
cookiep++;
|
1995-06-27 11:07:30 +00:00
|
|
|
ncookies--;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1994-05-24 10:09:53 +00:00
|
|
|
nfsm_clget;
|
|
|
|
*tl = nfs_false;
|
|
|
|
bp += NFSX_UNSIGNED;
|
|
|
|
nfsm_clget;
|
|
|
|
if (eofflag)
|
|
|
|
*tl = nfs_true;
|
|
|
|
else
|
|
|
|
*tl = nfs_false;
|
|
|
|
bp += NFSX_UNSIGNED;
|
|
|
|
if (mp != mb) {
|
|
|
|
if (bp < be)
|
|
|
|
mp->m_len = bp - mtod(mp, caddr_t);
|
|
|
|
} else
|
|
|
|
mp->m_len += bp - bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
FREE((caddr_t)rbuf, M_TEMP);
|
|
|
|
FREE((caddr_t)cookies, M_TEMP);
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
nfsmout:
|
|
|
|
if (vp)
|
|
|
|
vrele(vp);
|
|
|
|
return(error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_readdirplus(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
1994-05-24 10:09:53 +00:00
|
|
|
register char *bp, *be;
|
|
|
|
register struct mbuf *mp;
|
|
|
|
register struct dirent *dp;
|
|
|
|
register caddr_t cp;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
|
|
|
struct mbuf *mb, *mb2, *mreq, *mp2;
|
|
|
|
char *cpos, *cend, *cp2, *rbuf;
|
1999-06-23 04:44:14 +00:00
|
|
|
struct vnode *vp = NULL, *nvp;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct flrep fl;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsfh_t nfh;
|
|
|
|
fhandle_t *fhp, *nfhp = (fhandle_t *)fl.fl_nfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct uio io;
|
|
|
|
struct iovec iv;
|
1995-06-27 11:07:30 +00:00
|
|
|
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;
|
1998-05-31 20:09:01 +00:00
|
|
|
u_long *cookies = NULL, *cookiep; /* needs to be int64_t or off_t */
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, 6 * NFSX_UNSIGNED);
|
1999-06-05 05:35:03 +00:00
|
|
|
toff = fxdr_hyper(tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
tl += 2;
|
1999-06-05 05:35:03 +00:00
|
|
|
verf = fxdr_hyper(tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
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;
|
1994-05-24 10:09:53 +00:00
|
|
|
fullsiz = siz;
|
1998-05-31 17:27:58 +00:00
|
|
|
error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
|
|
|
|
&rdonly, (nfsd->nd_flag & ND_KERBAUTH), TRUE);
|
1998-05-31 17:54:18 +00:00
|
|
|
if (!error && vp->v_type != VDIR) {
|
|
|
|
error = ENOTDIR;
|
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1998-05-31 17:54:18 +00:00
|
|
|
}
|
1998-05-31 17:27:58 +00:00
|
|
|
if (error) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_UNSIGNED);
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
error = getret = VOP_GETATTR(vp, &at, cred, procp);
|
1999-09-29 17:14:58 +00:00
|
|
|
#if 0
|
1998-05-31 19:07:47 +00:00
|
|
|
/*
|
|
|
|
* XXX This check may be too strict for Solaris 2.5 clients.
|
|
|
|
*/
|
1997-07-22 15:35:15 +00:00
|
|
|
if (!error && toff && verf && verf != at.va_filerev)
|
1995-06-27 11:07:30 +00:00
|
|
|
error = NFSERR_BAD_COOKIE;
|
1999-09-29 17:14:58 +00:00
|
|
|
#endif
|
1995-06-27 11:07:30 +00:00
|
|
|
if (!error) {
|
|
|
|
nqsrv_getl(vp, ND_READ);
|
1998-05-20 09:05:48 +00:00
|
|
|
error = nfsrv_access(vp, VEXEC, cred, rdonly, procp, 0);
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1994-10-02 17:27:07 +00:00
|
|
|
if (error) {
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_V3POSTOPATTR);
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
VOP_UNLOCK(vp, 0, procp);
|
1994-05-24 10:09:53 +00:00
|
|
|
MALLOC(rbuf, caddr_t, siz, M_TEMP, M_WAITOK);
|
|
|
|
again:
|
|
|
|
iv.iov_base = rbuf;
|
|
|
|
iv.iov_len = fullsiz;
|
|
|
|
io.uio_iov = &iv;
|
|
|
|
io.uio_iovcnt = 1;
|
|
|
|
io.uio_offset = (off_t)off;
|
|
|
|
io.uio_resid = fullsiz;
|
|
|
|
io.uio_segflg = UIO_SYSSPACE;
|
|
|
|
io.uio_rw = UIO_READ;
|
|
|
|
io.uio_procp = (struct proc *)0;
|
1994-09-28 16:45:22 +00:00
|
|
|
eofflag = 0;
|
1997-02-10 02:22:35 +00:00
|
|
|
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, procp);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (cookies) {
|
|
|
|
free((caddr_t)cookies, M_TEMP);
|
|
|
|
cookies = NULL;
|
|
|
|
}
|
1994-09-28 16:45:22 +00:00
|
|
|
error = VOP_READDIR(vp, &io, cred, &eofflag, &ncookies, &cookies);
|
1995-06-27 11:07:30 +00:00
|
|
|
off = (u_quad_t)io.uio_offset;
|
|
|
|
getret = VOP_GETATTR(vp, &at, cred, procp);
|
1997-02-10 02:22:35 +00:00
|
|
|
VOP_UNLOCK(vp, 0, procp);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (!cookies && !error)
|
|
|
|
error = NFSERR_PERM;
|
|
|
|
if (!error)
|
|
|
|
error = getret;
|
1994-05-24 10:09:53 +00:00
|
|
|
if (error) {
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
if (cookies)
|
|
|
|
free((caddr_t)cookies, M_TEMP);
|
1994-05-24 10:09:53 +00:00
|
|
|
free((caddr_t)rbuf, M_TEMP);
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_V3POSTOPATTR);
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1994-09-28 16:45:22 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
if (io.uio_resid) {
|
|
|
|
siz -= io.uio_resid;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If nothing read, return eof
|
|
|
|
* rpc reply
|
|
|
|
*/
|
|
|
|
if (siz == 0) {
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_V3POSTOPATTR + NFSX_V3COOKIEVERF +
|
|
|
|
2 * NFSX_UNSIGNED);
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_build(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
|
1999-06-05 05:35:03 +00:00
|
|
|
txdr_hyper(at.va_filerev, tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
tl += 2;
|
1994-05-24 10:09:53 +00:00
|
|
|
*tl++ = nfs_false;
|
|
|
|
*tl = nfs_true;
|
1995-06-27 11:07:30 +00:00
|
|
|
FREE((caddr_t)cookies, M_TEMP);
|
1994-05-24 10:09:53 +00:00
|
|
|
FREE((caddr_t)rbuf, M_TEMP);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for degenerate cases of nothing useful read.
|
|
|
|
* If so go try again
|
|
|
|
*/
|
1994-09-28 16:45:22 +00:00
|
|
|
cpos = rbuf;
|
1994-05-24 10:09:53 +00:00
|
|
|
cend = rbuf + siz;
|
|
|
|
dp = (struct dirent *)cpos;
|
1994-09-28 16:45:22 +00:00
|
|
|
cookiep = cookies;
|
1995-06-27 11:07:30 +00:00
|
|
|
/*
|
|
|
|
* For some reason FreeBSD's ufs_readdir() chooses to back the
|
|
|
|
* directory offset up to a block boundary, so it is necessary to
|
|
|
|
* skip over the records that preceed the requested offset. This
|
|
|
|
* requires the assumption that file offset cookies monotonically
|
|
|
|
* increase.
|
|
|
|
*/
|
|
|
|
while (cpos < cend && ncookies > 0 &&
|
1998-05-31 19:43:34 +00:00
|
|
|
(dp->d_fileno == 0 || dp->d_type == DT_WHT ||
|
1998-05-31 19:10:52 +00:00
|
|
|
((u_quad_t)(*cookiep)) <= toff)) {
|
1994-05-24 10:09:53 +00:00
|
|
|
cpos += dp->d_reclen;
|
|
|
|
dp = (struct dirent *)cpos;
|
1994-09-28 16:45:22 +00:00
|
|
|
cookiep++;
|
|
|
|
ncookies--;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
if (cpos >= cend || ncookies == 0) {
|
1994-05-24 10:09:53 +00:00
|
|
|
toff = off;
|
|
|
|
siz = fullsiz;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
|
1995-08-03 12:14:16 +00:00
|
|
|
/*
|
|
|
|
* Probe one of the directory entries to see if the filesystem
|
|
|
|
* supports VGET.
|
|
|
|
*/
|
|
|
|
if (VFS_VGET(vp->v_mount, dp->d_fileno, &nvp) == EOPNOTSUPP) {
|
|
|
|
error = NFSERR_NOTSUPP;
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-08-03 12:14:16 +00:00
|
|
|
free((caddr_t)cookies, M_TEMP);
|
|
|
|
free((caddr_t)rbuf, M_TEMP);
|
|
|
|
nfsm_reply(NFSX_V3POSTOPATTR);
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-08-03 12:14:16 +00:00
|
|
|
}
|
1996-09-05 07:58:04 +00:00
|
|
|
vput(nvp);
|
1999-06-23 04:44:14 +00:00
|
|
|
nvp = NULL;
|
1995-08-03 12:14:16 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
dirlen = len = NFSX_V3POSTOPATTR + NFSX_V3COOKIEVERF + 2 * NFSX_UNSIGNED;
|
|
|
|
nfsm_reply(cnt);
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_build(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
|
1999-06-05 05:35:03 +00:00
|
|
|
txdr_hyper(at.va_filerev, tl);
|
1994-05-24 10:09:53 +00:00
|
|
|
mp = mp2 = mb;
|
|
|
|
bp = bpos;
|
|
|
|
be = bp + M_TRAILINGSPACE(mp);
|
|
|
|
|
|
|
|
/* Loop through the records and build reply */
|
1995-06-27 11:07:30 +00:00
|
|
|
while (cpos < cend && ncookies > 0) {
|
1998-05-31 19:10:52 +00:00
|
|
|
if (dp->d_fileno != 0 && dp->d_type != DT_WHT) {
|
1994-05-24 10:09:53 +00:00
|
|
|
nlen = dp->d_namlen;
|
|
|
|
rem = nfsm_rndup(nlen)-nlen;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* For readdir_and_lookup get the vnode using
|
|
|
|
* the file number.
|
|
|
|
*/
|
|
|
|
if (VFS_VGET(vp->v_mount, dp->d_fileno, &nvp))
|
|
|
|
goto invalid;
|
1995-06-27 11:07:30 +00:00
|
|
|
bzero((caddr_t)nfhp, NFSX_V3FH);
|
|
|
|
nfhp->fh_fsid =
|
1994-05-24 10:09:53 +00:00
|
|
|
nvp->v_mount->mnt_stat.f_fsid;
|
1995-06-27 11:07:30 +00:00
|
|
|
if (VFS_VPTOFH(nvp, &nfhp->fh_fid)) {
|
1995-03-17 07:45:19 +00:00
|
|
|
vput(nvp);
|
1999-06-23 04:44:14 +00:00
|
|
|
nvp = NULL;
|
1994-05-24 10:09:53 +00:00
|
|
|
goto invalid;
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
if (VOP_GETATTR(nvp, vap, cred, procp)) {
|
1995-03-17 07:45:19 +00:00
|
|
|
vput(nvp);
|
1999-06-23 04:44:14 +00:00
|
|
|
nvp = NULL;
|
1994-05-24 10:09:53 +00:00
|
|
|
goto invalid;
|
|
|
|
}
|
1995-03-17 07:45:19 +00:00
|
|
|
vput(nvp);
|
1999-06-23 04:44:14 +00:00
|
|
|
nvp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If either the dircount or maxcount will be
|
|
|
|
* exceeded, get out now. Both of these lengths
|
|
|
|
* are calculated conservatively, including all
|
|
|
|
* XDR overheads.
|
|
|
|
*/
|
1999-07-29 21:42:57 +00:00
|
|
|
len += (8 * NFSX_UNSIGNED + nlen + rem + NFSX_V3FH +
|
1995-06-27 11:07:30 +00:00
|
|
|
NFSX_V3POSTOPATTR);
|
|
|
|
dirlen += (6 * NFSX_UNSIGNED + nlen + rem);
|
|
|
|
if (len > cnt || dirlen > fullsiz) {
|
1994-05-24 10:09:53 +00:00
|
|
|
eofflag = 0;
|
|
|
|
break;
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Build the directory record xdr from
|
|
|
|
* the dirent entry.
|
|
|
|
*/
|
1995-06-27 11:07:30 +00:00
|
|
|
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);
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
nfsm_clget;
|
|
|
|
*tl = nfs_true;
|
|
|
|
bp += NFSX_UNSIGNED;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_clget;
|
|
|
|
*tl = 0;
|
|
|
|
bp += NFSX_UNSIGNED;
|
1994-05-24 10:09:53 +00:00
|
|
|
nfsm_clget;
|
|
|
|
*tl = txdr_unsigned(dp->d_fileno);
|
|
|
|
bp += NFSX_UNSIGNED;
|
|
|
|
nfsm_clget;
|
|
|
|
*tl = txdr_unsigned(nlen);
|
|
|
|
bp += NFSX_UNSIGNED;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/* And loop around copying the name */
|
|
|
|
xfer = nlen;
|
|
|
|
cp = dp->d_name;
|
|
|
|
while (xfer > 0) {
|
|
|
|
nfsm_clget;
|
1995-06-27 11:07:30 +00:00
|
|
|
if ((bp + xfer) > be)
|
|
|
|
tsiz = be - bp;
|
1994-05-24 10:09:53 +00:00
|
|
|
else
|
|
|
|
tsiz = xfer;
|
|
|
|
bcopy(cp, bp, tsiz);
|
|
|
|
bp += tsiz;
|
|
|
|
xfer -= tsiz;
|
|
|
|
if (xfer > 0)
|
|
|
|
cp += tsiz;
|
|
|
|
}
|
1998-05-31 20:09:01 +00:00
|
|
|
/* And null pad to a int32_t boundary */
|
1994-05-24 10:09:53 +00:00
|
|
|
for (i = 0; i < rem; i++)
|
|
|
|
*bp++ = '\0';
|
1995-06-27 11:07:30 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
}
|
1994-09-28 16:45:22 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
invalid:
|
|
|
|
cpos += dp->d_reclen;
|
|
|
|
dp = (struct dirent *)cpos;
|
1994-09-28 16:45:22 +00:00
|
|
|
cookiep++;
|
1995-06-27 11:07:30 +00:00
|
|
|
ncookies--;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1996-08-21 21:56:23 +00:00
|
|
|
vrele(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1994-05-24 10:09:53 +00:00
|
|
|
nfsm_clget;
|
|
|
|
*tl = nfs_false;
|
|
|
|
bp += NFSX_UNSIGNED;
|
|
|
|
nfsm_clget;
|
|
|
|
if (eofflag)
|
|
|
|
*tl = nfs_true;
|
|
|
|
else
|
|
|
|
*tl = nfs_false;
|
|
|
|
bp += NFSX_UNSIGNED;
|
|
|
|
if (mp != mb) {
|
|
|
|
if (bp < be)
|
|
|
|
mp->m_len = bp - mtod(mp, caddr_t);
|
|
|
|
} else
|
|
|
|
mp->m_len += bp - bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
FREE((caddr_t)cookies, M_TEMP);
|
|
|
|
FREE((caddr_t)rbuf, M_TEMP);
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsmout:
|
|
|
|
if (vp)
|
|
|
|
vrele(vp);
|
|
|
|
return(error);
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
|
|
|
struct vattr bfor, aft;
|
1999-06-23 04:44:14 +00:00
|
|
|
struct vnode *vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsfh_t nfh;
|
|
|
|
fhandle_t *fhp;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1995-06-27 11:07:30 +00:00
|
|
|
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;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1995-06-27 11:07:30 +00:00
|
|
|
#ifndef nolint
|
|
|
|
cache = 0;
|
|
|
|
#endif
|
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_dissect(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
|
1995-06-27 11:07:30 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX At this time VOP_FSYNC() does not accept offset and byte
|
|
|
|
* count parameters, so these arguments are useless (someday maybe).
|
|
|
|
*/
|
1999-06-05 05:35:03 +00:00
|
|
|
off = fxdr_hyper(tl);
|
1995-06-27 11:07:30 +00:00
|
|
|
tl += 2;
|
|
|
|
cnt = fxdr_unsigned(int, *tl);
|
1998-05-31 17:27:58 +00:00
|
|
|
error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
|
|
|
|
&rdonly, (nfsd->nd_flag & ND_KERBAUTH), TRUE);
|
|
|
|
if (error) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(2 * NFSX_UNSIGNED);
|
|
|
|
nfsm_srvwcc_data(for_ret, &bfor, aft_ret, &aft);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
for_ret = VOP_GETATTR(vp, &bfor, cred, procp);
|
1999-09-17 05:57:57 +00:00
|
|
|
|
|
|
|
if (cnt > MAX_COMMIT_COUNT) {
|
|
|
|
/*
|
|
|
|
* Give up and do the whole thing
|
|
|
|
*/
|
|
|
|
if (vp->v_object &&
|
|
|
|
(vp->v_object->flags & OBJ_MIGHTBEDIRTY)) {
|
1998-10-31 15:39:31 +00:00
|
|
|
vm_object_page_clean(vp->v_object, 0, 0, OBJPC_SYNC);
|
1999-09-17 05:57:57 +00:00
|
|
|
}
|
|
|
|
error = VOP_FSYNC(vp, cred, MNT_WAIT, procp);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Locate and synchronously write any buffers that fall
|
|
|
|
* into the requested range. Note: we are assuming that
|
|
|
|
* f_iosize is a power of 2.
|
|
|
|
*/
|
|
|
|
int iosize = vp->v_mount->mnt_stat.f_iosize;
|
|
|
|
int iomask = iosize - 1;
|
|
|
|
int s;
|
|
|
|
daddr_t lblkno;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Align to iosize boundry, super-align to page boundry.
|
|
|
|
*/
|
|
|
|
if (off & iomask) {
|
|
|
|
cnt += off & iomask;
|
|
|
|
off &= ~(u_quad_t)iomask;
|
|
|
|
}
|
|
|
|
if (off & PAGE_MASK) {
|
|
|
|
cnt += off & PAGE_MASK;
|
|
|
|
off &= ~(u_quad_t)PAGE_MASK;
|
|
|
|
}
|
|
|
|
lblkno = off / iosize;
|
|
|
|
|
|
|
|
if (vp->v_object &&
|
|
|
|
(vp->v_object->flags & OBJ_MIGHTBEDIRTY)) {
|
|
|
|
vm_object_page_clean(vp->v_object, off / PAGE_SIZE, (cnt + PAGE_MASK) / PAGE_SIZE, OBJPC_SYNC);
|
|
|
|
}
|
|
|
|
|
|
|
|
s = splbio();
|
|
|
|
while (cnt > 0) {
|
|
|
|
struct buf *bp;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we have a buffer and it is marked B_DELWRI we
|
|
|
|
* have to lock and write it. Otherwise the prior
|
|
|
|
* write is assumed to have already been committed.
|
|
|
|
*/
|
|
|
|
if ((bp = gbincore(vp, lblkno)) != NULL && (bp->b_flags & B_DELWRI)) {
|
|
|
|
if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT)) {
|
|
|
|
BUF_LOCK(bp, LK_EXCLUSIVE | LK_SLEEPFAIL);
|
|
|
|
continue; /* retry */
|
|
|
|
}
|
|
|
|
bremfree(bp);
|
|
|
|
bp->b_flags &= ~B_ASYNC;
|
|
|
|
VOP_BWRITE(bp->b_vp, bp);
|
|
|
|
++nfs_commit_miss;
|
|
|
|
}
|
|
|
|
++nfs_commit_blks;
|
|
|
|
if (cnt < iosize)
|
|
|
|
break;
|
|
|
|
cnt -= iosize;
|
|
|
|
++lblkno;
|
|
|
|
}
|
|
|
|
splx(s);
|
1998-01-31 11:56:53 +00:00
|
|
|
}
|
1999-09-17 05:57:57 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
aft_ret = VOP_GETATTR(vp, &aft, cred, procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_V3WCCDATA + NFSX_V3WRITEVERF);
|
|
|
|
nfsm_srvwcc_data(for_ret, &bfor, aft_ret, &aft);
|
|
|
|
if (!error) {
|
1998-05-31 20:09:01 +00:00
|
|
|
nfsm_build(tl, u_int32_t *, NFSX_V3WRITEVERF);
|
1995-06-27 11:07:30 +00:00
|
|
|
*tl++ = txdr_unsigned(boottime.tv_sec);
|
|
|
|
*tl = txdr_unsigned(boottime.tv_usec);
|
1999-06-23 04:44:14 +00:00
|
|
|
} else {
|
|
|
|
error = 0;
|
|
|
|
}
|
|
|
|
nfsmout:
|
|
|
|
if (vp)
|
|
|
|
vput(vp);
|
|
|
|
return(error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nfs statfs service
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_statfs(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-06-27 11:07:30 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
1994-05-24 10:09:53 +00:00
|
|
|
register struct statfs *sf;
|
1995-06-27 11:07:30 +00:00
|
|
|
register struct nfs_statfs *sfp;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
|
|
|
register int32_t t1;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
int error = 0, rdonly, cache, getret = 1;
|
|
|
|
int v3 = (nfsd->nd_flag & ND_NFSV3);
|
1994-05-24 10:09:53 +00:00
|
|
|
char *cp2;
|
|
|
|
struct mbuf *mb, *mb2, *mreq;
|
1999-06-23 04:44:14 +00:00
|
|
|
struct vnode *vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
struct vattr at;
|
|
|
|
nfsfh_t nfh;
|
1994-05-24 10:09:53 +00:00
|
|
|
fhandle_t *fhp;
|
|
|
|
struct statfs statfs;
|
1995-06-27 11:07:30 +00:00
|
|
|
u_quad_t frev, tval;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1995-06-27 11:07:30 +00:00
|
|
|
#ifndef nolint
|
|
|
|
cache = 0;
|
|
|
|
#endif
|
1994-05-24 10:09:53 +00:00
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1998-05-31 17:27:58 +00:00
|
|
|
error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
|
|
|
|
&rdonly, (nfsd->nd_flag & ND_KERBAUTH), TRUE);
|
|
|
|
if (error) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_UNSIGNED);
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
sf = &statfs;
|
1995-06-27 11:07:30 +00:00
|
|
|
error = VFS_STATFS(vp->v_mount, sf, procp);
|
|
|
|
getret = VOP_GETATTR(vp, &at, cred, procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_STATFS(v3));
|
|
|
|
if (v3)
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (error) {
|
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
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;
|
1999-06-05 05:35:03 +00:00
|
|
|
txdr_hyper(tval, &sfp->sf_tbytes);
|
1995-06-27 11:07:30 +00:00
|
|
|
tval = (u_quad_t)sf->f_bfree;
|
|
|
|
tval *= (u_quad_t)sf->f_bsize;
|
1999-06-05 05:35:03 +00:00
|
|
|
txdr_hyper(tval, &sfp->sf_fbytes);
|
1995-06-27 11:07:30 +00:00
|
|
|
tval = (u_quad_t)sf->f_bavail;
|
|
|
|
tval *= (u_quad_t)sf->f_bsize;
|
1999-06-05 05:35:03 +00:00
|
|
|
txdr_hyper(tval, &sfp->sf_abytes);
|
1995-06-27 11:07:30 +00:00
|
|
|
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);
|
|
|
|
}
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsmout:
|
|
|
|
if (vp)
|
|
|
|
vput(vp);
|
|
|
|
return(error);
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
1995-06-27 11:07:30 +00:00
|
|
|
register struct nfsv3_fsinfo *sip;
|
1998-05-31 20:09:01 +00:00
|
|
|
register int32_t t1;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t bpos;
|
|
|
|
int error = 0, rdonly, cache, getret = 1, pref;
|
|
|
|
char *cp2;
|
|
|
|
struct mbuf *mb, *mb2, *mreq;
|
1999-06-23 04:44:14 +00:00
|
|
|
struct vnode *vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
struct vattr at;
|
|
|
|
nfsfh_t nfh;
|
|
|
|
fhandle_t *fhp;
|
1998-05-30 16:33:58 +00:00
|
|
|
u_quad_t frev, maxfsize;
|
|
|
|
struct statfs sb;
|
1995-06-27 11:07:30 +00:00
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1995-06-27 11:07:30 +00:00
|
|
|
#ifndef nolint
|
|
|
|
cache = 0;
|
|
|
|
#endif
|
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1998-05-30 16:33:58 +00:00
|
|
|
error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
|
|
|
|
&rdonly, (nfsd->nd_flag & ND_KERBAUTH), TRUE);
|
|
|
|
if (error) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_UNSIGNED);
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1998-05-30 16:33:58 +00:00
|
|
|
|
|
|
|
/* XXX Try to make a guess on the max file size. */
|
|
|
|
VFS_STATFS(vp->v_mount, &sb, procp);
|
|
|
|
maxfsize = (u_quad_t)0x80000000 * sb.f_bsize - 1;
|
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
getret = VOP_GETATTR(vp, &at, cred, procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
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);
|
1999-06-05 05:35:03 +00:00
|
|
|
txdr_hyper(maxfsize, &sip->fs_maxfilesize);
|
1995-06-27 11:07:30 +00:00
|
|
|
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);
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsmout:
|
|
|
|
if (vp)
|
|
|
|
vput(vp);
|
|
|
|
return(error);
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam = nfsd->nd_nam;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t dpos = nfsd->nd_dpos;
|
|
|
|
struct ucred *cred = &nfsd->nd_cr;
|
1998-05-31 20:09:01 +00:00
|
|
|
register u_int32_t *tl;
|
1995-06-27 11:07:30 +00:00
|
|
|
register struct nfsv3_pathconf *pc;
|
1998-05-31 20:09:01 +00:00
|
|
|
register int32_t t1;
|
1995-06-27 11:07:30 +00:00
|
|
|
caddr_t bpos;
|
1998-06-07 17:13:14 +00:00
|
|
|
int error = 0, rdonly, cache, getret = 1;
|
|
|
|
register_t linkmax, namemax, chownres, notrunc;
|
1995-06-27 11:07:30 +00:00
|
|
|
char *cp2;
|
|
|
|
struct mbuf *mb, *mb2, *mreq;
|
1999-06-23 04:44:14 +00:00
|
|
|
struct vnode *vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
struct vattr at;
|
|
|
|
nfsfh_t nfh;
|
|
|
|
fhandle_t *fhp;
|
|
|
|
u_quad_t frev;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1995-06-27 11:07:30 +00:00
|
|
|
#ifndef nolint
|
|
|
|
cache = 0;
|
|
|
|
#endif
|
|
|
|
fhp = &nfh.fh_generic;
|
|
|
|
nfsm_srvmtofh(fhp);
|
1998-05-31 17:27:58 +00:00
|
|
|
error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam,
|
|
|
|
&rdonly, (nfsd->nd_flag & ND_KERBAUTH), TRUE);
|
|
|
|
if (error) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_UNSIGNED);
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1999-06-23 04:44:14 +00:00
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
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, ¬runc);
|
|
|
|
getret = VOP_GETATTR(vp, &at, cred, procp);
|
1996-08-21 21:56:23 +00:00
|
|
|
vput(vp);
|
1999-06-23 04:44:14 +00:00
|
|
|
vp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_reply(NFSX_V3POSTOPATTR + NFSX_V3PATHCONF);
|
|
|
|
nfsm_srvpostop_attr(getret, &at);
|
1999-06-23 04:44:14 +00:00
|
|
|
if (error) {
|
|
|
|
error = 0;
|
|
|
|
goto nfsmout;
|
|
|
|
}
|
1995-06-27 11:07:30 +00:00
|
|
|
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;
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsmout:
|
|
|
|
if (vp)
|
|
|
|
vput(vp);
|
|
|
|
return(error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Null operation, used by clients to ping server
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_null(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-10-29 15:33:36 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
int error = NFSERR_RETVOID, cache;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct mbuf *mb, *mreq;
|
|
|
|
u_quad_t frev;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1995-06-27 11:07:30 +00:00
|
|
|
#ifndef nolint
|
|
|
|
cache = 0;
|
|
|
|
#endif
|
1994-05-24 10:09:53 +00:00
|
|
|
nfsm_reply(0);
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsm_srvdone;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* No operation, used for obsolete procedures
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsrv_noop(nfsd, slp, procp, mrq)
|
|
|
|
struct nfsrv_descript *nfsd;
|
|
|
|
struct nfssvc_sock *slp;
|
|
|
|
struct proc *procp;
|
|
|
|
struct mbuf **mrq;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-10-29 15:33:36 +00:00
|
|
|
struct mbuf *mrep = nfsd->nd_mrep;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t bpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
int error, cache;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct mbuf *mb, *mreq;
|
|
|
|
u_quad_t frev;
|
|
|
|
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1995-06-27 11:07:30 +00:00
|
|
|
#ifndef nolint
|
|
|
|
cache = 0;
|
|
|
|
#endif
|
1994-05-24 10:09:53 +00:00
|
|
|
if (nfsd->nd_repstat)
|
|
|
|
error = nfsd->nd_repstat;
|
|
|
|
else
|
|
|
|
error = EPROCUNAVAIL;
|
|
|
|
nfsm_reply(0);
|
1999-06-23 04:44:14 +00:00
|
|
|
nfsm_srvdone;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Perform access checking for vnodes obtained from file handles that would
|
|
|
|
* refer to files already opened by a Unix client. You cannot just use
|
|
|
|
* vn_writechk() and VOP_ACCESS() for two reasons.
|
|
|
|
* 1 - You must check for exported rdonly as well as MNT_RDONLY for the write case
|
1998-05-20 09:05:48 +00:00
|
|
|
* 2 - The owner is to be given access irrespective of mode bits for some
|
|
|
|
* operations, so that processes that chmod after opening a file don't
|
|
|
|
* break. I don't like this because it opens a security hole, but since
|
|
|
|
* the nfs server opens a security hole the size of a barn door anyhow,
|
|
|
|
* what the heck.
|
|
|
|
*
|
|
|
|
* The exception to rule 2 is EPERM. If a file is IMMUTABLE, VOP_ACCESS()
|
|
|
|
* will return EPERM instead of EACCESS. EPERM is always an error.
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
1998-05-20 09:05:48 +00:00
|
|
|
nfsrv_access(vp, flags, cred, rdonly, p, override)
|
1994-05-24 10:09:53 +00:00
|
|
|
register struct vnode *vp;
|
|
|
|
int flags;
|
|
|
|
register struct ucred *cred;
|
|
|
|
int rdonly;
|
|
|
|
struct proc *p;
|
1998-05-20 09:05:48 +00:00
|
|
|
int override;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
struct vattr vattr;
|
|
|
|
int error;
|
1999-06-23 04:44:14 +00:00
|
|
|
|
|
|
|
nfsdbprintf(("%s %d\n", __FILE__, __LINE__));
|
1994-05-24 10:09:53 +00:00
|
|
|
if (flags & VWRITE) {
|
|
|
|
/* Just vn_writechk() changed to check rdonly */
|
|
|
|
/*
|
|
|
|
* Disallow write attempts on read-only file systems;
|
|
|
|
* unless the file is a socket or a block or character
|
|
|
|
* device resident on the file system.
|
|
|
|
*/
|
|
|
|
if (rdonly || (vp->v_mount->mnt_flag & MNT_RDONLY)) {
|
|
|
|
switch (vp->v_type) {
|
1998-05-31 17:27:58 +00:00
|
|
|
case VREG:
|
|
|
|
case VDIR:
|
|
|
|
case VLNK:
|
1994-05-24 10:09:53 +00:00
|
|
|
return (EROFS);
|
1998-05-31 17:27:58 +00:00
|
|
|
default:
|
|
|
|
break;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If there's shared text associated with
|
1995-03-19 12:08:03 +00:00
|
|
|
* the inode, we can't allow writing.
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
1995-03-19 12:08:03 +00:00
|
|
|
if (vp->v_flag & VTEXT)
|
1994-05-24 10:09:53 +00:00
|
|
|
return (ETXTBSY);
|
|
|
|
}
|
1998-05-31 17:27:58 +00:00
|
|
|
error = VOP_GETATTR(vp, &vattr, cred, p);
|
|
|
|
if (error)
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
1998-05-20 09:05:48 +00:00
|
|
|
error = VOP_ACCESS(vp, flags, cred, p);
|
|
|
|
/*
|
|
|
|
* Allow certain operations for the owner (reads and writes
|
|
|
|
* on files that are already open).
|
|
|
|
*/
|
|
|
|
if (override && error == EACCES && cred->cr_uid == vattr.va_uid)
|
|
|
|
error = 0;
|
|
|
|
return error;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1996-01-13 23:27:58 +00:00
|
|
|
#endif /* NFS_NOSERVER */
|
|
|
|
|