Home | History | Annotate | Line # | Download | only in nfs
nfs_serv.c revision 1.162.2.1
      1  1.162.2.1       mrg /*	$NetBSD: nfs_serv.c,v 1.162.2.1 2012/02/18 07:35:45 mrg Exp $	*/
      2       1.16       cgd 
      3        1.1       cgd /*
      4       1.15   mycroft  * Copyright (c) 1989, 1993
      5       1.15   mycroft  *	The Regents of the University of California.  All rights reserved.
      6        1.1       cgd  *
      7        1.1       cgd  * This code is derived from software contributed to Berkeley by
      8        1.1       cgd  * Rick Macklem at The University of Guelph.
      9        1.1       cgd  *
     10        1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11        1.1       cgd  * modification, are permitted provided that the following conditions
     12        1.1       cgd  * are met:
     13        1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14        1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15        1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17        1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18       1.81       agc  * 3. Neither the name of the University nor the names of its contributors
     19        1.1       cgd  *    may be used to endorse or promote products derived from this software
     20        1.1       cgd  *    without specific prior written permission.
     21        1.1       cgd  *
     22        1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23        1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24        1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25        1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26        1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27        1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28        1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29        1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30        1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31        1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32        1.1       cgd  * SUCH DAMAGE.
     33        1.1       cgd  *
     34       1.42      fvdl  *	@(#)nfs_serv.c	8.8 (Berkeley) 7/31/95
     35        1.1       cgd  */
     36        1.1       cgd 
     37        1.1       cgd /*
     38       1.23      fvdl  * nfs version 2 and 3 server calls to vnode ops
     39        1.1       cgd  * - these routines generally have 3 phases
     40        1.1       cgd  *   1 - break down and validate rpc request in mbuf list
     41        1.1       cgd  *   2 - do the vnode ops for the request
     42        1.1       cgd  *       (surprisingly ?? many are very similar to syscalls in vfs_syscalls.c)
     43        1.1       cgd  *   3 - build the rpc reply in an mbuf list
     44        1.1       cgd  *   nb:
     45        1.1       cgd  *	- do not mix the phases, since the nfsm_?? macros can return failures
     46        1.1       cgd  *	  on a bad rpc or similar and do not do any vrele() or vput()'s
     47        1.1       cgd  *
     48        1.1       cgd  *      - the nfsm_reply() macro generates an nfs rpc reply with the nfs
     49        1.1       cgd  *	error number iff error != 0 whereas
     50        1.1       cgd  *	returning an error from the server function implies a fatal error
     51        1.1       cgd  *	such as a badly constructed rpc request that should be dropped without
     52        1.1       cgd  *	a reply.
     53       1.23      fvdl  *	For Version 3, nfsm_reply() does not return for the error case, since
     54       1.23      fvdl  *	most version 3 rpcs return more than the status for error cases.
     55        1.1       cgd  */
     56       1.62     lukem 
     57       1.62     lukem #include <sys/cdefs.h>
     58  1.162.2.1       mrg __KERNEL_RCSID(0, "$NetBSD: nfs_serv.c,v 1.162.2.1 2012/02/18 07:35:45 mrg Exp $");
     59       1.41       mrg 
     60       1.10   mycroft #include <sys/param.h>
     61       1.10   mycroft #include <sys/systm.h>
     62       1.10   mycroft #include <sys/proc.h>
     63       1.10   mycroft #include <sys/file.h>
     64       1.10   mycroft #include <sys/namei.h>
     65       1.10   mycroft #include <sys/vnode.h>
     66       1.10   mycroft #include <sys/mount.h>
     67       1.23      fvdl #include <sys/socket.h>
     68       1.23      fvdl #include <sys/socketvar.h>
     69       1.10   mycroft #include <sys/mbuf.h>
     70       1.15   mycroft #include <sys/dirent.h>
     71       1.15   mycroft #include <sys/stat.h>
     72       1.23      fvdl #include <sys/kernel.h>
     73      1.117      yamt #include <sys/hash.h>
     74      1.109      elad #include <sys/kauth.h>
     75      1.139        ad #include <sys/module.h>
     76      1.139        ad #include <sys/syscall.h>
     77      1.139        ad #include <sys/syscallargs.h>
     78      1.139        ad #include <sys/syscallvar.h>
     79        1.1       cgd 
     80       1.72      yamt #include <uvm/uvm.h>
     81       1.40       mrg 
     82       1.23      fvdl #include <nfs/nfsproto.h>
     83       1.15   mycroft #include <nfs/rpcv2.h>
     84       1.10   mycroft #include <nfs/nfs.h>
     85       1.10   mycroft #include <nfs/xdr_subs.h>
     86       1.10   mycroft #include <nfs/nfsm_subs.h>
     87       1.22  christos #include <nfs/nfs_var.h>
     88        1.1       cgd 
     89      1.139        ad MODULE(MODULE_CLASS_MISC, nfsserver, "nfs");
     90      1.139        ad 
     91        1.1       cgd /* Global vars */
     92       1.19       cgd extern u_int32_t nfs_xdrneg1;
     93       1.19       cgd extern u_int32_t nfs_false, nfs_true;
     94      1.135      matt extern const enum vtype nv3tov_type[8];
     95       1.23      fvdl extern struct nfsstats nfsstats;
     96       1.66      matt extern const nfstype nfsv2_type[9];
     97       1.66      matt extern const nfstype nfsv3_type[9];
     98       1.23      fvdl int nfsrvw_procrastinate = NFS_GATHERDELAY * 1000;
     99      1.141     pooka bool nfsd_use_loan = true;	/* use page-loan for READ OP */
    100        1.1       cgd 
    101      1.121      yamt #define	nqsrv_getl(vp, rw)	/* nothing */
    102      1.121      yamt 
    103      1.139        ad static const struct syscall_package nfsserver_syscalls[] = {
    104      1.139        ad 	{ SYS_nfssvc, 0, (sy_call_t *)sys_nfssvc },
    105      1.139        ad 	{ 0, 0, NULL },
    106      1.139        ad };
    107      1.139        ad 
    108      1.139        ad static int
    109      1.139        ad nfsserver_modcmd(modcmd_t cmd, void *arg)
    110      1.139        ad {
    111      1.139        ad 	extern struct vfs_hooks nfs_export_hooks;	/* XXX */
    112      1.139        ad 	int error;
    113      1.139        ad 
    114      1.139        ad 	switch (cmd) {
    115      1.139        ad 	case MODULE_CMD_INIT:
    116      1.139        ad 		error = syscall_establish(NULL, nfsserver_syscalls);
    117      1.139        ad 		if (error != 0) {
    118      1.139        ad 			return error;
    119      1.139        ad 		}
    120      1.139        ad 		nfs_init();	/* XXX for monolithic kernel */
    121      1.146        ad 		netexport_init();
    122      1.145        ad 		nfsrv_initcache();	/* Init the server request cache */
    123      1.139        ad 		nfsrv_init(0);		/* Init server data structures */
    124      1.139        ad 		vfs_hooks_attach(&nfs_export_hooks);
    125      1.139        ad 		nfs_timer_srvinit(nfsrv_timer);
    126      1.139        ad 		return 0;
    127      1.139        ad 	case MODULE_CMD_FINI:
    128      1.139        ad 		error = syscall_disestablish(NULL, nfsserver_syscalls);
    129      1.139        ad 		if (error != 0) {
    130      1.139        ad 			return error;
    131      1.139        ad 		}
    132      1.146        ad 		/*
    133      1.146        ad 		 * Kill export list before detaching VFS hooks, so we
    134      1.146        ad 		 * we don't leak state due to a concurrent umount().
    135      1.146        ad 		 */
    136      1.146        ad 		netexport_fini();
    137      1.146        ad 		vfs_hooks_detach(&nfs_export_hooks);
    138      1.146        ad 
    139      1.146        ad 		/* Kill timer before server goes away. */
    140      1.139        ad 		nfs_timer_srvfini();
    141      1.145        ad 		nfsrv_fini();
    142      1.146        ad 
    143      1.146        ad 		/* Server uses server cache, so kill cache last. */
    144      1.139        ad 		nfsrv_finicache();
    145      1.139        ad 		return 0;
    146      1.139        ad 	default:
    147      1.139        ad 		return ENOTTY;
    148      1.139        ad 	}
    149      1.139        ad }
    150      1.139        ad 
    151       1.15   mycroft /*
    152       1.23      fvdl  * nfs v3 access service
    153       1.15   mycroft  */
    154       1.22  christos int
    155      1.143       dsl nfsrv3_access(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
    156       1.15   mycroft {
    157       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
    158       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
    159      1.126  christos 	char *dpos = nfsd->nd_dpos;
    160      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
    161       1.15   mycroft 	struct vnode *vp;
    162      1.117      yamt 	nfsrvfh_t nsfh;
    163       1.54  augustss 	u_int32_t *tl;
    164       1.54  augustss 	int32_t t1;
    165      1.126  christos 	char *bpos;
    166       1.23      fvdl 	int error = 0, rdonly, cache = 0, getret;
    167       1.15   mycroft 	char *cp2;
    168       1.67      matt 	struct mbuf *mb, *mreq;
    169       1.23      fvdl 	struct vattr va;
    170       1.32   mycroft 	u_long inmode, testmode, outmode;
    171       1.15   mycroft 	u_quad_t frev;
    172       1.15   mycroft 
    173      1.117      yamt 	nfsm_srvmtofh(&nsfh);
    174       1.23      fvdl 	nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
    175      1.117      yamt 	error = nfsrv_fhtovp(&nsfh, 1, &vp, cred, slp, nam, &rdonly,
    176      1.125   thorpej 	    (nfsd->nd_flag & ND_KERBAUTH), false);
    177       1.23      fvdl 	if (error) {
    178       1.23      fvdl 		nfsm_reply(NFSX_UNSIGNED);
    179       1.23      fvdl 		nfsm_srvpostop_attr(1, (struct vattr *)0);
    180       1.23      fvdl 		return (0);
    181       1.23      fvdl 	}
    182       1.32   mycroft 	inmode = fxdr_unsigned(u_int32_t, *tl);
    183       1.32   mycroft 	outmode = 0;
    184       1.32   mycroft 	if ((inmode & NFSV3ACCESS_READ) &&
    185       1.99  christos 	    nfsrv_access(vp, VREAD, cred, rdonly, lwp, 0) == 0)
    186       1.32   mycroft 		outmode |= NFSV3ACCESS_READ;
    187       1.32   mycroft 	if (vp->v_type != VDIR) {
    188       1.32   mycroft 		testmode = inmode & (NFSV3ACCESS_MODIFY | NFSV3ACCESS_EXTEND);
    189       1.32   mycroft 		if (testmode &&
    190       1.99  christos 		    nfsrv_access(vp, VWRITE, cred, rdonly, lwp, 0) == 0)
    191       1.32   mycroft 			outmode |= testmode;
    192       1.32   mycroft 		if ((inmode & NFSV3ACCESS_EXECUTE) &&
    193       1.99  christos 		    nfsrv_access(vp, VEXEC, cred, rdonly, lwp, 0) == 0)
    194       1.32   mycroft 			outmode |= NFSV3ACCESS_EXECUTE;
    195       1.32   mycroft 	} else {
    196       1.32   mycroft 		testmode = inmode & (NFSV3ACCESS_MODIFY | NFSV3ACCESS_EXTEND |
    197       1.32   mycroft 		    NFSV3ACCESS_DELETE);
    198       1.32   mycroft 		if (testmode &&
    199       1.99  christos 		    nfsrv_access(vp, VWRITE, cred, rdonly, lwp, 0) == 0)
    200       1.32   mycroft 			outmode |= testmode;
    201       1.32   mycroft 		if ((inmode & NFSV3ACCESS_LOOKUP) &&
    202       1.99  christos 		    nfsrv_access(vp, VEXEC, cred, rdonly, lwp, 0) == 0)
    203       1.32   mycroft 			outmode |= NFSV3ACCESS_LOOKUP;
    204       1.32   mycroft 	}
    205      1.131     pooka 	getret = VOP_GETATTR(vp, &va, cred);
    206       1.15   mycroft 	vput(vp);
    207       1.23      fvdl 	nfsm_reply(NFSX_POSTOPATTR(1) + NFSX_UNSIGNED);
    208       1.23      fvdl 	nfsm_srvpostop_attr(getret, &va);
    209       1.23      fvdl 	nfsm_build(tl, u_int32_t *, NFSX_UNSIGNED);
    210       1.32   mycroft 	*tl = txdr_unsigned(outmode);
    211       1.15   mycroft 	nfsm_srvdone;
    212       1.15   mycroft }
    213       1.15   mycroft 
    214        1.1       cgd /*
    215        1.1       cgd  * nfs getattr service
    216        1.1       cgd  */
    217       1.22  christos int
    218      1.143       dsl nfsrv_getattr(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
    219        1.1       cgd {
    220       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
    221       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
    222      1.126  christos 	char *dpos = nfsd->nd_dpos;
    223      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
    224       1.54  augustss 	struct nfs_fattr *fp;
    225        1.1       cgd 	struct vattr va;
    226        1.1       cgd 	struct vnode *vp;
    227      1.117      yamt 	nfsrvfh_t nsfh;
    228       1.54  augustss 	u_int32_t *tl;
    229       1.54  augustss 	int32_t t1;
    230      1.126  christos 	char *bpos;
    231      1.103  christos 	int error = 0, rdonly, cache = 0;
    232        1.1       cgd 	char *cp2;
    233       1.67      matt 	struct mbuf *mb, *mreq;
    234       1.15   mycroft 	u_quad_t frev;
    235        1.1       cgd 
    236      1.117      yamt 	nfsm_srvmtofh(&nsfh);
    237      1.117      yamt 	error = nfsrv_fhtovp(&nsfh, 1, &vp, cred, slp, nam, &rdonly,
    238      1.125   thorpej 	    (nfsd->nd_flag & ND_KERBAUTH), false);
    239       1.23      fvdl 	if (error) {
    240        1.1       cgd 		nfsm_reply(0);
    241       1.23      fvdl 		return (0);
    242       1.23      fvdl 	}
    243       1.23      fvdl 	nqsrv_getl(vp, ND_READ);
    244      1.131     pooka 	error = VOP_GETATTR(vp, &va, cred);
    245        1.1       cgd 	vput(vp);
    246       1.23      fvdl 	nfsm_reply(NFSX_FATTR(nfsd->nd_flag & ND_NFSV3));
    247       1.23      fvdl 	if (error)
    248       1.23      fvdl 		return (0);
    249       1.23      fvdl 	nfsm_build(fp, struct nfs_fattr *, NFSX_FATTR(nfsd->nd_flag & ND_NFSV3));
    250       1.23      fvdl 	nfsm_srvfillattr(&va, fp);
    251        1.1       cgd 	nfsm_srvdone;
    252        1.1       cgd }
    253        1.1       cgd 
    254        1.1       cgd /*
    255        1.1       cgd  * nfs setattr service
    256        1.1       cgd  */
    257       1.22  christos int
    258      1.143       dsl nfsrv_setattr(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
    259        1.1       cgd {
    260       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
    261       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
    262      1.126  christos 	char *dpos = nfsd->nd_dpos;
    263      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
    264       1.23      fvdl 	struct vattr va, preat;
    265       1.54  augustss 	struct nfsv2_sattr *sp;
    266       1.54  augustss 	struct nfs_fattr *fp;
    267        1.1       cgd 	struct vnode *vp;
    268      1.117      yamt 	nfsrvfh_t nsfh;
    269       1.54  augustss 	u_int32_t *tl;
    270       1.54  augustss 	int32_t t1;
    271      1.126  christos 	char *bpos;
    272      1.103  christos 	int error = 0, rdonly, cache = 0, preat_ret = 1, postat_ret = 1;
    273       1.23      fvdl 	int v3 = (nfsd->nd_flag & ND_NFSV3), gcheck = 0;
    274        1.1       cgd 	char *cp2;
    275       1.67      matt 	struct mbuf *mb, *mreq;
    276       1.23      fvdl 	u_quad_t frev;
    277       1.23      fvdl 	struct timespec guard;
    278        1.1       cgd 
    279      1.108       mrg 	memset(&guard, 0, sizeof guard);	/* XXX gcc */
    280      1.108       mrg 
    281      1.117      yamt 	nfsm_srvmtofh(&nsfh);
    282      1.150     pooka 	vattr_null(&va);
    283       1.23      fvdl 	if (v3) {
    284      1.127      yamt 		nfsm_srvsattr(&va);
    285       1.23      fvdl 		nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
    286       1.23      fvdl 		gcheck = fxdr_unsigned(int, *tl);
    287       1.23      fvdl 		if (gcheck) {
    288       1.23      fvdl 			nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
    289       1.23      fvdl 			fxdr_nfsv3time(tl, &guard);
    290       1.23      fvdl 		}
    291       1.23      fvdl 	} else {
    292       1.23      fvdl 		nfsm_dissect(sp, struct nfsv2_sattr *, NFSX_V2SATTR);
    293       1.23      fvdl 		/*
    294       1.23      fvdl 		 * Nah nah nah nah na nah
    295       1.23      fvdl 		 * There is a bug in the Sun client that puts 0xffff in the mode
    296       1.23      fvdl 		 * field of sattr when it should put in 0xffffffff. The u_short
    297       1.23      fvdl 		 * doesn't sign extend.
    298       1.23      fvdl 		 * --> check the low order 2 bytes for 0xffff
    299       1.23      fvdl 		 */
    300       1.23      fvdl 		if ((fxdr_unsigned(int, sp->sa_mode) & 0xffff) != 0xffff)
    301       1.23      fvdl 			va.va_mode = nfstov_mode(sp->sa_mode);
    302       1.23      fvdl 		if (sp->sa_uid != nfs_xdrneg1)
    303       1.23      fvdl 			va.va_uid = fxdr_unsigned(uid_t, sp->sa_uid);
    304       1.23      fvdl 		if (sp->sa_gid != nfs_xdrneg1)
    305       1.23      fvdl 			va.va_gid = fxdr_unsigned(gid_t, sp->sa_gid);
    306       1.23      fvdl 		if (sp->sa_size != nfs_xdrneg1)
    307       1.23      fvdl 			va.va_size = fxdr_unsigned(u_quad_t, sp->sa_size);
    308       1.23      fvdl 		if (sp->sa_atime.nfsv2_sec != nfs_xdrneg1) {
    309       1.15   mycroft #ifdef notyet
    310       1.23      fvdl 			fxdr_nfsv2time(&sp->sa_atime, &va.va_atime);
    311       1.15   mycroft #else
    312       1.20       jtc 			va.va_atime.tv_sec =
    313       1.23      fvdl 				fxdr_unsigned(u_int32_t,sp->sa_atime.nfsv2_sec);
    314       1.20       jtc 			va.va_atime.tv_nsec = 0;
    315       1.15   mycroft #endif
    316       1.15   mycroft 		}
    317       1.23      fvdl 		if (sp->sa_mtime.nfsv2_sec != nfs_xdrneg1)
    318       1.23      fvdl 			fxdr_nfsv2time(&sp->sa_mtime, &va.va_mtime);
    319       1.23      fvdl 
    320       1.23      fvdl 	}
    321       1.23      fvdl 
    322       1.23      fvdl 	/*
    323       1.23      fvdl 	 * Now that we have all the fields, lets do it.
    324       1.23      fvdl 	 */
    325      1.117      yamt 	error = nfsrv_fhtovp(&nsfh, 1, &vp, cred, slp, nam, &rdonly,
    326      1.125   thorpej 	    (nfsd->nd_flag & ND_KERBAUTH), false);
    327       1.23      fvdl 	if (error) {
    328       1.23      fvdl 		nfsm_reply(2 * NFSX_UNSIGNED);
    329       1.23      fvdl 		nfsm_srvwcc_data(preat_ret, &preat, postat_ret, &va);
    330       1.23      fvdl 		return (0);
    331       1.23      fvdl 	}
    332       1.23      fvdl 	nqsrv_getl(vp, ND_WRITE);
    333       1.23      fvdl 	if (v3) {
    334      1.131     pooka 		error = preat_ret = VOP_GETATTR(vp, &preat, cred);
    335       1.23      fvdl 		if (!error && gcheck &&
    336       1.23      fvdl 			(preat.va_ctime.tv_sec != guard.tv_sec ||
    337       1.23      fvdl 			 preat.va_ctime.tv_nsec != guard.tv_nsec))
    338       1.23      fvdl 			error = NFSERR_NOT_SYNC;
    339       1.23      fvdl 		if (error) {
    340       1.23      fvdl 			vput(vp);
    341       1.23      fvdl 			nfsm_reply(NFSX_WCCDATA(v3));
    342       1.23      fvdl 			nfsm_srvwcc_data(preat_ret, &preat, postat_ret, &va);
    343       1.23      fvdl 			return (0);
    344       1.23      fvdl 		}
    345       1.15   mycroft 	}
    346       1.15   mycroft 
    347        1.1       cgd 	/*
    348       1.15   mycroft 	 * If the size is being changed write acces is required, otherwise
    349       1.15   mycroft 	 * just check for a read only file system.
    350        1.1       cgd 	 */
    351       1.18   mycroft 	if (va.va_size == ((u_quad_t)((quad_t) -1))) {
    352       1.15   mycroft 		if (rdonly || (vp->v_mount->mnt_flag & MNT_RDONLY)) {
    353       1.15   mycroft 			error = EROFS;
    354       1.15   mycroft 			goto out;
    355       1.15   mycroft 		}
    356       1.15   mycroft 	} else {
    357       1.15   mycroft 		if (vp->v_type == VDIR) {
    358       1.15   mycroft 			error = EISDIR;
    359       1.15   mycroft 			goto out;
    360       1.22  christos 		} else if ((error = nfsrv_access(vp, VWRITE, cred, rdonly,
    361       1.99  christos 			lwp, 0)) != 0)
    362       1.15   mycroft 			goto out;
    363        1.1       cgd 	}
    364      1.131     pooka 	error = VOP_SETATTR(vp, &va, cred);
    365      1.131     pooka 	postat_ret = VOP_GETATTR(vp, &va, cred);
    366       1.23      fvdl 	if (!error)
    367       1.23      fvdl 		error = postat_ret;
    368        1.1       cgd out:
    369        1.1       cgd 	vput(vp);
    370       1.23      fvdl 	nfsm_reply(NFSX_WCCORFATTR(v3));
    371       1.23      fvdl 	if (v3) {
    372       1.23      fvdl 		nfsm_srvwcc_data(preat_ret, &preat, postat_ret, &va);
    373       1.23      fvdl 		return (0);
    374       1.23      fvdl 	} else {
    375       1.23      fvdl 		nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
    376       1.23      fvdl 		nfsm_srvfillattr(&va, fp);
    377       1.15   mycroft 	}
    378        1.1       cgd 	nfsm_srvdone;
    379        1.1       cgd }
    380        1.1       cgd 
    381        1.1       cgd /*
    382        1.1       cgd  * nfs lookup rpc
    383        1.1       cgd  */
    384       1.22  christos int
    385      1.143       dsl nfsrv_lookup(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
    386        1.1       cgd {
    387       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
    388       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
    389      1.126  christos 	char *dpos = nfsd->nd_dpos;
    390      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
    391       1.54  augustss 	struct nfs_fattr *fp;
    392       1.35      fvdl 	struct nameidata nd, ind, *ndp = &nd;
    393      1.152  dholland 	struct pathbuf *ipb = NULL;
    394       1.23      fvdl 	struct vnode *vp, *dirp;
    395      1.117      yamt 	nfsrvfh_t nsfh;
    396      1.126  christos 	char *cp;
    397       1.54  augustss 	u_int32_t *tl;
    398       1.54  augustss 	int32_t t1;
    399      1.126  christos 	char *bpos;
    400      1.103  christos 	int error = 0, cache = 0, dirattr_ret = 1;
    401       1.68      yamt 	uint32_t len;
    402       1.35      fvdl 	int v3 = (nfsd->nd_flag & ND_NFSV3), pubflag;
    403        1.1       cgd 	char *cp2;
    404       1.67      matt 	struct mbuf *mb, *mreq;
    405       1.23      fvdl 	struct vattr va, dirattr;
    406       1.23      fvdl 	u_quad_t frev;
    407        1.1       cgd 
    408      1.117      yamt 	nfsm_srvmtofh(&nsfh);
    409       1.23      fvdl 	nfsm_srvnamesiz(len);
    410       1.35      fvdl 
    411      1.117      yamt 	pubflag = nfs_ispublicfh(&nsfh);
    412       1.35      fvdl 
    413       1.15   mycroft 	nd.ni_cnd.cn_cred = cred;
    414       1.15   mycroft 	nd.ni_cnd.cn_nameiop = LOOKUP;
    415      1.155  dholland 	nd.ni_cnd.cn_flags = LOCKLEAF;
    416      1.117      yamt 	error = nfs_namei(&nd, &nsfh, len, slp, nam, &md, &dpos,
    417       1.99  christos 		&dirp, lwp, (nfsd->nd_flag & ND_KERBAUTH), pubflag);
    418       1.35      fvdl 
    419       1.35      fvdl 	if (!error && pubflag) {
    420      1.152  dholland 		if (nd.ni_vp->v_type == VDIR && nfs_pub.np_index != NULL &&
    421      1.152  dholland 		    (ipb = pathbuf_create(nfs_pub.np_index)) != NULL) {
    422       1.35      fvdl 			/*
    423       1.35      fvdl 			 * Setup call to lookup() to see if we can find
    424       1.35      fvdl 			 * the index file. Arguably, this doesn't belong
    425       1.35      fvdl 			 * in a kernel.. Ugh.
    426       1.35      fvdl 			 */
    427       1.35      fvdl 			ind = nd;
    428      1.151   hannken 			VOP_UNLOCK(nd.ni_vp);
    429      1.152  dholland 			ind.ni_pathbuf = ipb;
    430      1.153  dholland 
    431      1.153  dholland 			error = lookup_for_nfsd_index(&ind, nd.ni_vp);
    432       1.35      fvdl 			if (!error) {
    433       1.35      fvdl 				/*
    434       1.35      fvdl 				 * Found an index file. Get rid of
    435       1.35      fvdl 				 * the old references.
    436       1.35      fvdl 				 */
    437       1.94     perry 				if (dirp)
    438       1.35      fvdl 					vrele(dirp);
    439       1.35      fvdl 				dirp = nd.ni_vp;
    440       1.35      fvdl 				ndp = &ind;
    441       1.35      fvdl 			} else
    442       1.35      fvdl 				error = 0;
    443       1.35      fvdl 		}
    444       1.35      fvdl 		/*
    445       1.35      fvdl 		 * If the public filehandle was used, check that this lookup
    446       1.35      fvdl 		 * didn't result in a filehandle outside the publicly exported
    447       1.35      fvdl 		 * filesystem.
    448       1.35      fvdl 		 */
    449       1.35      fvdl 
    450       1.35      fvdl 		if (!error && ndp->ni_vp->v_mount != nfs_pub.np_mount) {
    451       1.35      fvdl 			vput(nd.ni_vp);
    452       1.35      fvdl 			error = EPERM;
    453       1.35      fvdl 		}
    454       1.35      fvdl 	}
    455       1.35      fvdl 
    456       1.23      fvdl 	if (error) {
    457      1.157  dholland 		if (nd.ni_pathbuf != NULL) {
    458      1.157  dholland 			pathbuf_destroy(nd.ni_pathbuf);
    459      1.157  dholland 		}
    460      1.157  dholland 		if (ipb != NULL) {
    461      1.157  dholland 			pathbuf_destroy(ipb);
    462      1.157  dholland 		}
    463      1.162   hannken 		if (dirp) {
    464      1.162   hannken 			if (v3) {
    465      1.162   hannken 				vn_lock(dirp, LK_SHARED | LK_RETRY);
    466      1.162   hannken 				dirattr_ret = VOP_GETATTR(dirp, &dirattr, cred);
    467      1.162   hannken 				vput(dirp);
    468      1.162   hannken 			} else
    469      1.162   hannken 				vrele(dirp);
    470      1.162   hannken 		}
    471       1.23      fvdl 		nfsm_reply(NFSX_POSTOPATTR(v3));
    472       1.23      fvdl 		nfsm_srvpostop_attr(dirattr_ret, &dirattr);
    473       1.23      fvdl 		return (0);
    474       1.23      fvdl 	}
    475       1.35      fvdl 
    476       1.35      fvdl 	nqsrv_getl(ndp->ni_startdir, ND_READ);
    477      1.152  dholland 	pathbuf_destroy(nd.ni_pathbuf);
    478      1.152  dholland 	if (ipb != NULL) {
    479      1.152  dholland 		pathbuf_destroy(ipb);
    480      1.152  dholland 	}
    481       1.35      fvdl 	vp = ndp->ni_vp;
    482      1.117      yamt 	error = nfsrv_composefh(vp, &nsfh, v3);
    483       1.23      fvdl 	if (!error)
    484      1.131     pooka 		error = VOP_GETATTR(vp, &va, cred);
    485       1.23      fvdl 	vput(vp);
    486      1.162   hannken 	if (dirp) {
    487      1.162   hannken 		if (v3) {
    488      1.162   hannken 			vn_lock(dirp, LK_SHARED | LK_RETRY);
    489      1.162   hannken 			dirattr_ret = VOP_GETATTR(dirp, &dirattr, cred);
    490      1.162   hannken 			vput(dirp);
    491      1.162   hannken 		} else
    492      1.162   hannken 			vrele(dirp);
    493      1.162   hannken 	}
    494      1.117      yamt 	nfsm_reply(NFSX_SRVFH(&nsfh, v3) + NFSX_POSTOPORFATTR(v3) +
    495      1.117      yamt 	    NFSX_POSTOPATTR(v3));
    496       1.23      fvdl 	if (error) {
    497       1.23      fvdl 		nfsm_srvpostop_attr(dirattr_ret, &dirattr);
    498       1.23      fvdl 		return (0);
    499        1.1       cgd 	}
    500      1.117      yamt 	nfsm_srvfhtom(&nsfh, v3);
    501       1.23      fvdl 	if (v3) {
    502       1.23      fvdl 		nfsm_srvpostop_attr(0, &va);
    503       1.23      fvdl 		nfsm_srvpostop_attr(dirattr_ret, &dirattr);
    504       1.23      fvdl 	} else {
    505       1.23      fvdl 		nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
    506       1.23      fvdl 		nfsm_srvfillattr(&va, fp);
    507       1.15   mycroft 	}
    508        1.1       cgd 	nfsm_srvdone;
    509        1.1       cgd }
    510        1.1       cgd 
    511        1.1       cgd /*
    512        1.1       cgd  * nfs readlink service
    513        1.1       cgd  */
    514       1.22  christos int
    515      1.143       dsl nfsrv_readlink(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
    516        1.1       cgd {
    517       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
    518       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
    519      1.126  christos 	char *dpos = nfsd->nd_dpos;
    520      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
    521        1.1       cgd 	struct iovec iv[(NFS_MAXPATHLEN+MLEN-1)/MLEN];
    522       1.54  augustss 	struct iovec *ivp = iv;
    523       1.54  augustss 	struct mbuf *mp;
    524       1.54  augustss 	u_int32_t *tl;
    525       1.54  augustss 	int32_t t1;
    526      1.126  christos 	char *bpos;
    527      1.103  christos 	int error = 0, rdonly, cache = 0, i, padlen, getret;
    528       1.76      yamt 	uint32_t len;
    529       1.23      fvdl 	int v3 = (nfsd->nd_flag & ND_NFSV3);
    530        1.1       cgd 	char *cp2;
    531       1.67      matt 	struct mbuf *mb, *mp2 = NULL, *mp3 = NULL, *mreq;
    532        1.1       cgd 	struct vnode *vp;
    533       1.23      fvdl 	struct vattr attr;
    534      1.117      yamt 	nfsrvfh_t nsfh;
    535        1.1       cgd 	struct uio io, *uiop = &io;
    536       1.15   mycroft 	u_quad_t frev;
    537        1.1       cgd 
    538      1.117      yamt 	nfsm_srvmtofh(&nsfh);
    539        1.1       cgd 	len = 0;
    540        1.1       cgd 	i = 0;
    541        1.1       cgd 	while (len < NFS_MAXPATHLEN) {
    542       1.67      matt 		mp = m_get(M_WAIT, MT_DATA);
    543       1.67      matt 		MCLAIM(mp, &nfs_mowner);
    544       1.67      matt 		m_clget(mp, M_WAIT);
    545        1.1       cgd 		mp->m_len = NFSMSIZ(mp);
    546        1.1       cgd 		if (len == 0)
    547        1.1       cgd 			mp3 = mp2 = mp;
    548        1.1       cgd 		else {
    549        1.1       cgd 			mp2->m_next = mp;
    550        1.1       cgd 			mp2 = mp;
    551        1.1       cgd 		}
    552        1.1       cgd 		if ((len+mp->m_len) > NFS_MAXPATHLEN) {
    553        1.1       cgd 			mp->m_len = NFS_MAXPATHLEN-len;
    554        1.1       cgd 			len = NFS_MAXPATHLEN;
    555        1.1       cgd 		} else
    556        1.1       cgd 			len += mp->m_len;
    557      1.126  christos 		ivp->iov_base = mtod(mp, void *);
    558        1.1       cgd 		ivp->iov_len = mp->m_len;
    559        1.1       cgd 		i++;
    560        1.1       cgd 		ivp++;
    561        1.1       cgd 	}
    562        1.1       cgd 	uiop->uio_iov = iv;
    563        1.1       cgd 	uiop->uio_iovcnt = i;
    564        1.1       cgd 	uiop->uio_offset = 0;
    565        1.1       cgd 	uiop->uio_resid = len;
    566        1.1       cgd 	uiop->uio_rw = UIO_READ;
    567      1.101      yamt 	UIO_SETUP_SYSSPACE(uiop);
    568      1.117      yamt 	error = nfsrv_fhtovp(&nsfh, 1, &vp, cred, slp, nam,
    569      1.125   thorpej 		 &rdonly, (nfsd->nd_flag & ND_KERBAUTH), false);
    570       1.22  christos 	if (error) {
    571        1.1       cgd 		m_freem(mp3);
    572       1.23      fvdl 		nfsm_reply(2 * NFSX_UNSIGNED);
    573       1.23      fvdl 		nfsm_srvpostop_attr(1, (struct vattr *)0);
    574       1.23      fvdl 		return (0);
    575        1.1       cgd 	}
    576        1.1       cgd 	if (vp->v_type != VLNK) {
    577       1.23      fvdl 		if (v3)
    578       1.23      fvdl 			error = EINVAL;
    579       1.23      fvdl 		else
    580       1.23      fvdl 			error = ENXIO;
    581        1.1       cgd 		goto out;
    582        1.1       cgd 	}
    583       1.23      fvdl 	nqsrv_getl(vp, ND_READ);
    584        1.1       cgd 	error = VOP_READLINK(vp, uiop, cred);
    585        1.1       cgd out:
    586      1.131     pooka 	getret = VOP_GETATTR(vp, &attr, cred);
    587        1.1       cgd 	vput(vp);
    588        1.1       cgd 	if (error)
    589        1.1       cgd 		m_freem(mp3);
    590       1.23      fvdl 	nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_UNSIGNED);
    591       1.23      fvdl 	if (v3) {
    592       1.23      fvdl 		nfsm_srvpostop_attr(getret, &attr);
    593       1.23      fvdl 		if (error)
    594       1.23      fvdl 			return (0);
    595       1.23      fvdl 	}
    596       1.76      yamt 	len -= uiop->uio_resid;
    597       1.76      yamt 	padlen = nfsm_padlen(len);
    598       1.76      yamt 	if (uiop->uio_resid || padlen)
    599       1.76      yamt 		nfs_zeropad(mp3, uiop->uio_resid, padlen);
    600       1.19       cgd 	nfsm_build(tl, u_int32_t *, NFSX_UNSIGNED);
    601        1.1       cgd 	*tl = txdr_unsigned(len);
    602        1.1       cgd 	mb->m_next = mp3;
    603        1.1       cgd 	nfsm_srvdone;
    604        1.1       cgd }
    605        1.1       cgd 
    606        1.1       cgd /*
    607        1.1       cgd  * nfs read service
    608        1.1       cgd  */
    609       1.22  christos int
    610      1.143       dsl nfsrv_read(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
    611        1.1       cgd {
    612       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
    613       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
    614      1.126  christos 	char *dpos = nfsd->nd_dpos;
    615      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
    616       1.54  augustss 	struct mbuf *m;
    617       1.54  augustss 	struct nfs_fattr *fp;
    618       1.54  augustss 	u_int32_t *tl;
    619       1.54  augustss 	int32_t t1;
    620       1.54  augustss 	int i;
    621      1.126  christos 	char *bpos;
    622      1.103  christos 	int error = 0, rdonly, cache = 0, getret;
    623       1.68      yamt 	int v3 = (nfsd->nd_flag & ND_NFSV3);
    624       1.76      yamt 	uint32_t reqlen, len, cnt, left;
    625       1.76      yamt 	int padlen;
    626        1.1       cgd 	char *cp2;
    627       1.67      matt 	struct mbuf *mb, *mreq;
    628        1.1       cgd 	struct vnode *vp;
    629      1.117      yamt 	nfsrvfh_t nsfh;
    630        1.1       cgd 	struct uio io, *uiop = &io;
    631       1.18   mycroft 	struct vattr va;
    632        1.1       cgd 	off_t off;
    633       1.15   mycroft 	u_quad_t frev;
    634        1.1       cgd 
    635      1.117      yamt 	nfsm_srvmtofh(&nsfh);
    636       1.23      fvdl 	if (v3) {
    637       1.23      fvdl 		nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
    638       1.48      fair 		off = fxdr_hyper(tl);
    639       1.23      fvdl 	} else {
    640       1.19       cgd 		nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
    641       1.19       cgd 		off = (off_t)fxdr_unsigned(u_int32_t, *tl);
    642       1.15   mycroft 	}
    643       1.71      yamt 	nfsm_dissect(tl, uint32_t *, NFSX_UNSIGNED);
    644       1.71      yamt 	reqlen = fxdr_unsigned(uint32_t, *tl);
    645       1.71      yamt 	reqlen = MIN(reqlen, NFS_SRVMAXDATA(nfsd));
    646      1.117      yamt 	error = nfsrv_fhtovp(&nsfh, 1, &vp, cred, slp, nam,
    647      1.125   thorpej 		 &rdonly, (nfsd->nd_flag & ND_KERBAUTH), false);
    648       1.23      fvdl 	if (error) {
    649       1.23      fvdl 		nfsm_reply(2 * NFSX_UNSIGNED);
    650       1.23      fvdl 		nfsm_srvpostop_attr(1, (struct vattr *)0);
    651       1.23      fvdl 		return (0);
    652       1.23      fvdl 	}
    653       1.15   mycroft 	if (vp->v_type != VREG) {
    654       1.23      fvdl 		if (v3)
    655       1.23      fvdl 			error = EINVAL;
    656       1.23      fvdl 		else
    657       1.23      fvdl 			error = (vp->v_type == VDIR) ? EISDIR : EACCES;
    658        1.1       cgd 	}
    659       1.23      fvdl 	if (!error) {
    660       1.23      fvdl 	    nqsrv_getl(vp, ND_READ);
    661       1.99  christos 	    if ((error = nfsrv_access(vp, VREAD, cred, rdonly, lwp, 1)) != 0)
    662       1.99  christos 		error = nfsrv_access(vp, VEXEC, cred, rdonly, lwp, 1);
    663       1.23      fvdl 	}
    664      1.131     pooka 	getret = VOP_GETATTR(vp, &va, cred);
    665       1.23      fvdl 	if (!error)
    666       1.23      fvdl 		error = getret;
    667       1.22  christos 	if (error) {
    668        1.1       cgd 		vput(vp);
    669       1.23      fvdl 		nfsm_reply(NFSX_POSTOPATTR(v3));
    670       1.23      fvdl 		nfsm_srvpostop_attr(getret, &va);
    671       1.23      fvdl 		return (0);
    672        1.1       cgd 	}
    673       1.18   mycroft 	if (off >= va.va_size)
    674       1.15   mycroft 		cnt = 0;
    675       1.23      fvdl 	else if ((off + reqlen) > va.va_size)
    676       1.76      yamt 		cnt = va.va_size - off;
    677       1.23      fvdl 	else
    678       1.23      fvdl 		cnt = reqlen;
    679       1.23      fvdl 	nfsm_reply(NFSX_POSTOPORFATTR(v3) + 3 * NFSX_UNSIGNED+nfsm_rndup(cnt));
    680       1.23      fvdl 	if (v3) {
    681       1.23      fvdl 		nfsm_build(tl, u_int32_t *, NFSX_V3FATTR + 4 * NFSX_UNSIGNED);
    682       1.23      fvdl 		*tl++ = nfs_true;
    683       1.23      fvdl 		fp = (struct nfs_fattr *)tl;
    684       1.23      fvdl 		tl += (NFSX_V3FATTR / sizeof (u_int32_t));
    685       1.23      fvdl 	} else {
    686       1.23      fvdl 		nfsm_build(tl, u_int32_t *, NFSX_V2FATTR + NFSX_UNSIGNED);
    687       1.23      fvdl 		fp = (struct nfs_fattr *)tl;
    688       1.23      fvdl 		tl += (NFSX_V2FATTR / sizeof (u_int32_t));
    689       1.23      fvdl 	}
    690       1.15   mycroft 	len = left = cnt;
    691       1.73      yamt 	if (cnt > 0) {
    692       1.72      yamt 		if (nfsd_use_loan) {
    693       1.72      yamt 			struct vm_page **pgpp;
    694       1.72      yamt 			voff_t pgoff = trunc_page(off);
    695       1.87      yamt 			int npages;
    696       1.87      yamt 			vaddr_t lva;
    697       1.72      yamt 
    698       1.87      yamt 			npages = (round_page(off + cnt) - pgoff) >> PAGE_SHIFT;
    699       1.87      yamt 			KASSERT(npages <= M_EXT_MAXPAGES); /* XXX */
    700       1.72      yamt 
    701       1.87      yamt 			/* allocate kva for mbuf data */
    702  1.162.2.1       mrg 			lva = sokvaalloc(pgoff, npages << PAGE_SHIFT,
    703  1.162.2.1       mrg 			    slp->ns_so);
    704       1.72      yamt 			if (lva == 0) {
    705       1.72      yamt 				/* fall back to VOP_READ */
    706       1.72      yamt 				goto loan_fail;
    707       1.72      yamt 			}
    708       1.72      yamt 
    709       1.87      yamt 			/* allocate mbuf */
    710       1.72      yamt 			m = m_get(M_WAIT, MT_DATA);
    711       1.87      yamt 			MCLAIM(m, &nfs_mowner);
    712       1.72      yamt 			pgpp = m->m_ext.ext_pgs;
    713       1.75      yamt 
    714       1.87      yamt 			/* loan pages */
    715       1.87      yamt 			error = uvm_loanuobjpages(&vp->v_uobj, pgoff, npages,
    716       1.87      yamt 			    pgpp);
    717       1.87      yamt 			if (error) {
    718       1.87      yamt 				sokvafree(lva, npages << PAGE_SHIFT);
    719       1.87      yamt 				m_free(m);
    720       1.91      yamt 				if (error == EBUSY)
    721       1.91      yamt 					goto loan_fail;
    722       1.87      yamt 				goto read_error;
    723       1.15   mycroft 			}
    724       1.72      yamt 
    725       1.87      yamt 			/* associate kva to mbuf */
    726       1.87      yamt 			MEXTADD(m, (void *)(lva + ((vaddr_t)off & PAGE_MASK)),
    727       1.87      yamt 			    cnt, M_MBUF, soloanfree, slp->ns_so);
    728       1.72      yamt 			m->m_flags |= M_EXT_PAGES | M_EXT_ROMAP;
    729       1.72      yamt 			m->m_len = cnt;
    730       1.72      yamt 
    731       1.87      yamt 			/* map pages */
    732       1.87      yamt 			for (i = 0; i < npages; i++) {
    733       1.87      yamt 				pmap_kenter_pa(lva, VM_PAGE_TO_PHYS(pgpp[i]),
    734      1.148    cegger 				    VM_PROT_READ, 0);
    735       1.87      yamt 				lva += PAGE_SIZE;
    736       1.87      yamt 			}
    737       1.87      yamt 
    738       1.72      yamt 			pmap_update(pmap_kernel());
    739       1.87      yamt 
    740       1.72      yamt 			mb->m_next = m;
    741       1.72      yamt 			mb = m;
    742       1.72      yamt 			error = 0;
    743       1.72      yamt 			uiop->uio_resid = 0;
    744       1.72      yamt 		} else {
    745       1.72      yamt 			struct iovec *iv;
    746       1.72      yamt 			struct iovec *iv2;
    747       1.72      yamt 			struct mbuf *m2;
    748       1.72      yamt 			int siz;
    749       1.72      yamt loan_fail:
    750       1.72      yamt 			/*
    751       1.72      yamt 			 * Generate the mbuf list with the uio_iov ref. to it.
    752       1.72      yamt 			 */
    753       1.72      yamt 			i = 0;
    754       1.72      yamt 			m = m2 = mb;
    755       1.72      yamt 			while (left > 0) {
    756       1.72      yamt 				siz = min(M_TRAILINGSPACE(m), left);
    757       1.72      yamt 				if (siz > 0) {
    758       1.72      yamt 					left -= siz;
    759       1.72      yamt 					i++;
    760       1.72      yamt 				}
    761       1.72      yamt 				if (left > 0) {
    762       1.72      yamt 					m = m_get(M_WAIT, MT_DATA);
    763       1.72      yamt 					MCLAIM(m, &nfs_mowner);
    764       1.72      yamt 					m_clget(m, M_WAIT);
    765       1.72      yamt 					m->m_len = 0;
    766       1.72      yamt 					m2->m_next = m;
    767       1.72      yamt 					m2 = m;
    768       1.72      yamt 				}
    769       1.72      yamt 			}
    770       1.72      yamt 			iv = malloc(i * sizeof(struct iovec), M_TEMP, M_WAITOK);
    771       1.72      yamt 			uiop->uio_iov = iv2 = iv;
    772       1.72      yamt 			m = mb;
    773       1.72      yamt 			left = cnt;
    774       1.72      yamt 			i = 0;
    775       1.72      yamt 			while (left > 0) {
    776       1.72      yamt 				if (m == NULL)
    777       1.72      yamt 					panic("nfsrv_read iov");
    778       1.72      yamt 				siz = min(M_TRAILINGSPACE(m), left);
    779       1.72      yamt 				if (siz > 0) {
    780      1.126  christos 					iv->iov_base = mtod(m, char *) +
    781       1.72      yamt 					    m->m_len;
    782       1.72      yamt 					iv->iov_len = siz;
    783       1.72      yamt 					m->m_len += siz;
    784       1.72      yamt 					left -= siz;
    785       1.72      yamt 					iv++;
    786       1.72      yamt 					i++;
    787       1.72      yamt 				}
    788       1.72      yamt 				m = m->m_next;
    789       1.23      fvdl 			}
    790       1.72      yamt 			uiop->uio_iovcnt = i;
    791       1.72      yamt 			uiop->uio_offset = off;
    792       1.72      yamt 			uiop->uio_resid = cnt;
    793       1.72      yamt 			uiop->uio_rw = UIO_READ;
    794      1.101      yamt 			UIO_SETUP_SYSSPACE(uiop);
    795       1.72      yamt 			error = VOP_READ(vp, uiop, IO_NODELOCKED, cred);
    796      1.126  christos 			free((void *)iv2, M_TEMP);
    797       1.23      fvdl 		}
    798       1.72      yamt read_error:
    799      1.131     pooka 		if (error || (getret = VOP_GETATTR(vp, &va, cred)) != 0){
    800       1.23      fvdl 			if (!error)
    801       1.23      fvdl 				error = getret;
    802       1.15   mycroft 			m_freem(mreq);
    803       1.15   mycroft 			vput(vp);
    804       1.23      fvdl 			nfsm_reply(NFSX_POSTOPATTR(v3));
    805       1.23      fvdl 			nfsm_srvpostop_attr(getret, &va);
    806       1.23      fvdl 			return (0);
    807       1.15   mycroft 		}
    808       1.72      yamt 	} else {
    809       1.15   mycroft 		uiop->uio_resid = 0;
    810       1.72      yamt 	}
    811        1.1       cgd 	vput(vp);
    812       1.23      fvdl 	nfsm_srvfillattr(&va, fp);
    813        1.1       cgd 	len -= uiop->uio_resid;
    814       1.76      yamt 	padlen = nfsm_padlen(len);
    815       1.76      yamt 	if (uiop->uio_resid || padlen)
    816       1.76      yamt 		nfs_zeropad(mb, uiop->uio_resid, padlen);
    817       1.23      fvdl 	if (v3) {
    818       1.83      yamt 		/* count */
    819       1.23      fvdl 		*tl++ = txdr_unsigned(len);
    820       1.83      yamt 		/* eof */
    821       1.83      yamt 		if (off + len >= va.va_size)
    822       1.23      fvdl 			*tl++ = nfs_true;
    823       1.23      fvdl 		else
    824       1.23      fvdl 			*tl++ = nfs_false;
    825       1.23      fvdl 	}
    826        1.1       cgd 	*tl = txdr_unsigned(len);
    827        1.1       cgd 	nfsm_srvdone;
    828        1.1       cgd }
    829        1.1       cgd 
    830        1.1       cgd /*
    831        1.1       cgd  * nfs write service
    832        1.1       cgd  */
    833       1.22  christos int
    834      1.143       dsl nfsrv_write(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
    835        1.1       cgd {
    836       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
    837       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
    838      1.126  christos 	char *dpos = nfsd->nd_dpos;
    839      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
    840       1.54  augustss 	struct iovec *ivp;
    841       1.54  augustss 	int i, cnt;
    842       1.54  augustss 	struct mbuf *mp;
    843       1.54  augustss 	struct nfs_fattr *fp;
    844       1.23      fvdl 	struct iovec *iv;
    845       1.23      fvdl 	struct vattr va, forat;
    846       1.54  augustss 	u_int32_t *tl;
    847       1.54  augustss 	int32_t t1;
    848      1.126  christos 	char *bpos;
    849      1.103  christos 	int error = 0, rdonly, cache = 0, len, forat_ret = 1;
    850       1.23      fvdl 	int ioflags, aftat_ret = 1, retlen, zeroing, adjust;
    851       1.23      fvdl 	int stable = NFSV3WRITE_FILESYNC;
    852       1.23      fvdl 	int v3 = (nfsd->nd_flag & ND_NFSV3);
    853        1.1       cgd 	char *cp2;
    854       1.67      matt 	struct mbuf *mb, *mreq;
    855        1.1       cgd 	struct vnode *vp;
    856      1.117      yamt 	nfsrvfh_t nsfh;
    857        1.1       cgd 	struct uio io, *uiop = &io;
    858        1.1       cgd 	off_t off;
    859       1.15   mycroft 	u_quad_t frev;
    860        1.1       cgd 
    861       1.23      fvdl 	if (mrep == NULL) {
    862       1.23      fvdl 		*mrq = NULL;
    863       1.23      fvdl 		return (0);
    864       1.23      fvdl 	}
    865      1.117      yamt 	nfsm_srvmtofh(&nsfh);
    866       1.23      fvdl 	if (v3) {
    867       1.23      fvdl 		nfsm_dissect(tl, u_int32_t *, 5 * NFSX_UNSIGNED);
    868       1.48      fair 		off = fxdr_hyper(tl);
    869       1.23      fvdl 		tl += 3;
    870       1.23      fvdl 		stable = fxdr_unsigned(int, *tl++);
    871       1.23      fvdl 	} else {
    872       1.23      fvdl 		nfsm_dissect(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
    873       1.19       cgd 		off = (off_t)fxdr_unsigned(u_int32_t, *++tl);
    874       1.15   mycroft 		tl += 2;
    875       1.15   mycroft 	}
    876       1.23      fvdl 	retlen = len = fxdr_unsigned(int32_t, *tl);
    877       1.23      fvdl 	cnt = i = 0;
    878       1.23      fvdl 
    879       1.23      fvdl 	/*
    880       1.23      fvdl 	 * For NFS Version 2, it is not obvious what a write of zero length
    881       1.23      fvdl 	 * should do, but I might as well be consistent with Version 3,
    882       1.23      fvdl 	 * which is to return ok so long as there are no permission problems.
    883       1.23      fvdl 	 */
    884       1.23      fvdl 	if (len > 0) {
    885       1.74      yamt 		zeroing = 1;
    886       1.74      yamt 		mp = mrep;
    887       1.74      yamt 		while (mp) {
    888       1.74      yamt 			if (mp == md) {
    889       1.74      yamt 				zeroing = 0;
    890      1.126  christos 				adjust = dpos - mtod(mp, char *);
    891       1.74      yamt 				mp->m_len -= adjust;
    892       1.74      yamt 				if (mp->m_len > 0 && adjust > 0)
    893       1.74      yamt 					NFSMADV(mp, adjust);
    894       1.23      fvdl 			}
    895       1.74      yamt 			if (zeroing)
    896       1.74      yamt 				mp->m_len = 0;
    897       1.74      yamt 			else if (mp->m_len > 0) {
    898       1.74      yamt 				i += mp->m_len;
    899       1.74      yamt 				if (i > len) {
    900       1.74      yamt 					mp->m_len -= (i - len);
    901       1.74      yamt 					zeroing	= 1;
    902       1.74      yamt 				}
    903       1.74      yamt 				if (mp->m_len > 0)
    904       1.74      yamt 					cnt++;
    905       1.74      yamt 			}
    906       1.74      yamt 			mp = mp->m_next;
    907       1.23      fvdl 		}
    908       1.23      fvdl 	}
    909       1.23      fvdl 	if (len > NFS_MAXDATA || len < 0 || i < len) {
    910       1.23      fvdl 		error = EIO;
    911       1.23      fvdl 		nfsm_reply(2 * NFSX_UNSIGNED);
    912       1.23      fvdl 		nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, &va);
    913       1.23      fvdl 		return (0);
    914        1.1       cgd 	}
    915      1.117      yamt 	error = nfsrv_fhtovp(&nsfh, 1, &vp, cred, slp, nam,
    916      1.125   thorpej 		 &rdonly, (nfsd->nd_flag & ND_KERBAUTH), false);
    917       1.23      fvdl 	if (error) {
    918       1.23      fvdl 		nfsm_reply(2 * NFSX_UNSIGNED);
    919       1.23      fvdl 		nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, &va);
    920       1.23      fvdl 		return (0);
    921        1.1       cgd 	}
    922       1.23      fvdl 	if (v3)
    923      1.131     pooka 		forat_ret = VOP_GETATTR(vp, &forat, cred);
    924       1.15   mycroft 	if (vp->v_type != VREG) {
    925       1.23      fvdl 		if (v3)
    926       1.23      fvdl 			error = EINVAL;
    927       1.23      fvdl 		else
    928       1.23      fvdl 			error = (vp->v_type == VDIR) ? EISDIR : EACCES;
    929       1.23      fvdl 	}
    930       1.23      fvdl 	if (!error) {
    931       1.23      fvdl 		nqsrv_getl(vp, ND_WRITE);
    932       1.99  christos 		error = nfsrv_access(vp, VWRITE, cred, rdonly, lwp, 1);
    933       1.15   mycroft 	}
    934       1.22  christos 	if (error) {
    935        1.1       cgd 		vput(vp);
    936       1.23      fvdl 		nfsm_reply(NFSX_WCCDATA(v3));
    937       1.23      fvdl 		nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, &va);
    938       1.23      fvdl 		return (0);
    939       1.23      fvdl 	}
    940       1.23      fvdl 
    941       1.23      fvdl 	if (len > 0) {
    942       1.74      yamt 		ivp = malloc(cnt * sizeof (struct iovec), M_TEMP, M_WAITOK);
    943       1.74      yamt 		uiop->uio_iov = iv = ivp;
    944       1.74      yamt 		uiop->uio_iovcnt = cnt;
    945       1.74      yamt 		mp = mrep;
    946       1.74      yamt 		while (mp) {
    947       1.74      yamt 			if (mp->m_len > 0) {
    948      1.126  christos 				ivp->iov_base = mtod(mp, void *);
    949       1.74      yamt 				ivp->iov_len = mp->m_len;
    950       1.74      yamt 				ivp++;
    951       1.74      yamt 			}
    952       1.74      yamt 			mp = mp->m_next;
    953       1.74      yamt 		}
    954       1.74      yamt 
    955       1.74      yamt 		/*
    956       1.74      yamt 		 * XXX
    957       1.74      yamt 		 * The IO_METASYNC flag indicates that all metadata (and not
    958       1.74      yamt 		 * just enough to ensure data integrity) must be written to
    959       1.74      yamt 		 * stable storage synchronously.
    960       1.74      yamt 		 * (IO_METASYNC is not yet implemented in 4.4BSD-Lite.)
    961       1.74      yamt 		 */
    962       1.74      yamt 		if (stable == NFSV3WRITE_UNSTABLE)
    963       1.74      yamt 			ioflags = IO_NODELOCKED;
    964       1.74      yamt 		else if (stable == NFSV3WRITE_DATASYNC)
    965       1.74      yamt 			ioflags = (IO_SYNC | IO_NODELOCKED);
    966       1.74      yamt 		else
    967       1.74      yamt 			ioflags = (IO_METASYNC | IO_SYNC | IO_NODELOCKED);
    968       1.74      yamt 		uiop->uio_resid = len;
    969       1.74      yamt 		uiop->uio_rw = UIO_WRITE;
    970       1.74      yamt 		uiop->uio_offset = off;
    971      1.101      yamt 		UIO_SETUP_SYSSPACE(uiop);
    972       1.74      yamt 		error = VOP_WRITE(vp, uiop, ioflags, cred);
    973       1.74      yamt 		nfsstats.srvvop_writes++;
    974       1.74      yamt 		free(iv, M_TEMP);
    975       1.23      fvdl 	}
    976      1.131     pooka 	aftat_ret = VOP_GETATTR(vp, &va, cred);
    977       1.23      fvdl 	vput(vp);
    978       1.23      fvdl 	if (!error)
    979       1.23      fvdl 		error = aftat_ret;
    980       1.23      fvdl 	nfsm_reply(NFSX_PREOPATTR(v3) + NFSX_POSTOPORFATTR(v3) +
    981       1.23      fvdl 		2 * NFSX_UNSIGNED + NFSX_WRITEVERF(v3));
    982       1.23      fvdl 	if (v3) {
    983       1.23      fvdl 		nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, &va);
    984       1.23      fvdl 		if (error)
    985       1.23      fvdl 			return (0);
    986       1.23      fvdl 		nfsm_build(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
    987       1.23      fvdl 		*tl++ = txdr_unsigned(retlen);
    988       1.23      fvdl 		if (stable == NFSV3WRITE_UNSTABLE)
    989       1.23      fvdl 			*tl++ = txdr_unsigned(stable);
    990       1.23      fvdl 		else
    991       1.23      fvdl 			*tl++ = txdr_unsigned(NFSV3WRITE_FILESYNC);
    992       1.23      fvdl 		/*
    993       1.23      fvdl 		 * Actually, there is no need to txdr these fields,
    994       1.23      fvdl 		 * but it may make the values more human readable,
    995       1.23      fvdl 		 * for debugging purposes.
    996       1.23      fvdl 		 */
    997       1.23      fvdl 		*tl++ = txdr_unsigned(boottime.tv_sec);
    998      1.142  christos 		*tl = txdr_unsigned(boottime.tv_nsec / 1000);
    999       1.23      fvdl 	} else {
   1000       1.23      fvdl 		nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
   1001       1.23      fvdl 		nfsm_srvfillattr(&va, fp);
   1002       1.23      fvdl 	}
   1003       1.23      fvdl 	nfsm_srvdone;
   1004       1.23      fvdl }
   1005       1.23      fvdl 
   1006       1.23      fvdl /*
   1007      1.109      elad  * XXX elad: the original NFSW_SAMECRED() macro also made sure the
   1008      1.109      elad  *	     two nd_flag fields of the descriptors contained
   1009      1.109      elad  *	     ND_KERBAUTH.
   1010      1.109      elad  */
   1011      1.109      elad static int
   1012      1.109      elad nfsrv_samecred(kauth_cred_t cred1, kauth_cred_t cred2)
   1013      1.109      elad {
   1014      1.109      elad 	int i, do_ngroups;
   1015      1.109      elad 
   1016      1.109      elad 	if (kauth_cred_geteuid(cred1) != kauth_cred_geteuid(cred2))
   1017      1.109      elad 		return (0);
   1018      1.109      elad 	if (kauth_cred_ngroups(cred1) != kauth_cred_ngroups(cred2))
   1019      1.109      elad 		return (0);
   1020      1.109      elad 	do_ngroups = kauth_cred_ngroups(cred1);
   1021      1.109      elad 	for (i = 0; i < do_ngroups; i++)
   1022      1.109      elad 		if (kauth_cred_group(cred1, i) !=
   1023      1.109      elad 		    kauth_cred_group(cred2, i))
   1024      1.109      elad 			return (0);
   1025      1.109      elad 
   1026      1.109      elad 	return (1);
   1027      1.109      elad }
   1028      1.109      elad 
   1029      1.117      yamt static struct nfsrvw_delayhash *
   1030      1.117      yamt nfsrv_nwdelayhash(struct nfssvc_sock *slp, const nfsrvfh_t *nsfh)
   1031      1.117      yamt {
   1032      1.117      yamt 	uint32_t hash;
   1033      1.117      yamt 
   1034      1.117      yamt 	hash = hash32_buf(NFSRVFH_DATA(nsfh), NFSRVFH_SIZE(nsfh),
   1035      1.117      yamt 	    HASH32_BUF_INIT);
   1036      1.117      yamt 	return &slp->ns_wdelayhashtbl[hash % NFS_WDELAYHASHSIZ];
   1037      1.117      yamt }
   1038      1.117      yamt 
   1039      1.109      elad /*
   1040       1.23      fvdl  * NFS write service with write gathering support. Called when
   1041       1.23      fvdl  * nfsrvw_procrastinate > 0.
   1042       1.23      fvdl  * See: Chet Juszczak, "Improving the Write Performance of an NFS Server",
   1043       1.23      fvdl  * in Proc. of the Winter 1994 Usenix Conference, pg. 247-259, San Franscisco,
   1044       1.23      fvdl  * Jan. 1994.
   1045       1.23      fvdl  */
   1046       1.23      fvdl int
   1047      1.143       dsl nfsrv_writegather(struct nfsrv_descript **ndp, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   1048       1.23      fvdl {
   1049      1.110    kardel 	struct timeval now;
   1050       1.54  augustss 	struct iovec *ivp;
   1051       1.54  augustss 	struct mbuf *mp;
   1052       1.54  augustss 	struct nfsrv_descript *wp, *nfsd, *owp, *swp;
   1053       1.54  augustss 	struct nfs_fattr *fp;
   1054       1.54  augustss 	int i = 0;
   1055       1.23      fvdl 	struct iovec *iov;
   1056       1.23      fvdl 	struct nfsrvw_delayhash *wpp;
   1057      1.109      elad 	kauth_cred_t cred;
   1058       1.23      fvdl 	struct vattr va, forat;
   1059       1.54  augustss 	u_int32_t *tl;
   1060       1.54  augustss 	int32_t t1;
   1061      1.126  christos 	char *bpos, *dpos;
   1062      1.103  christos 	int error = 0, rdonly, cache = 0, len = 0, forat_ret = 1;
   1063      1.132      yamt 	int ioflags, aftat_ret = 1, adjust, v3, zeroing;
   1064       1.23      fvdl 	char *cp2;
   1065       1.67      matt 	struct mbuf *mb, *mreq, *mrep, *md;
   1066       1.23      fvdl 	struct vnode *vp;
   1067       1.23      fvdl 	struct uio io, *uiop = &io;
   1068       1.23      fvdl 	u_quad_t frev, cur_usec;
   1069       1.23      fvdl 
   1070       1.23      fvdl 	*mrq = NULL;
   1071       1.23      fvdl 	if (*ndp) {
   1072       1.23      fvdl 	    nfsd = *ndp;
   1073       1.23      fvdl 	    *ndp = NULL;
   1074       1.23      fvdl 	    mrep = nfsd->nd_mrep;
   1075       1.23      fvdl 	    md = nfsd->nd_md;
   1076       1.23      fvdl 	    dpos = nfsd->nd_dpos;
   1077      1.109      elad 	    cred = nfsd->nd_cr;
   1078       1.23      fvdl 	    v3 = (nfsd->nd_flag & ND_NFSV3);
   1079       1.23      fvdl 	    LIST_INIT(&nfsd->nd_coalesce);
   1080       1.23      fvdl 	    nfsd->nd_mreq = NULL;
   1081       1.23      fvdl 	    nfsd->nd_stable = NFSV3WRITE_FILESYNC;
   1082      1.110    kardel 	    getmicrotime(&now);
   1083      1.110    kardel 	    cur_usec = (u_quad_t)now.tv_sec * 1000000 + (u_quad_t)now.tv_usec;
   1084       1.23      fvdl 	    nfsd->nd_time = cur_usec + nfsrvw_procrastinate;
   1085       1.94     perry 
   1086       1.23      fvdl 	    /*
   1087       1.23      fvdl 	     * Now, get the write header..
   1088       1.23      fvdl 	     */
   1089       1.23      fvdl 	    nfsm_srvmtofh(&nfsd->nd_fh);
   1090       1.23      fvdl 	    if (v3) {
   1091       1.23      fvdl 		nfsm_dissect(tl, u_int32_t *, 5 * NFSX_UNSIGNED);
   1092       1.48      fair 		nfsd->nd_off = fxdr_hyper(tl);
   1093       1.23      fvdl 		tl += 3;
   1094       1.23      fvdl 		nfsd->nd_stable = fxdr_unsigned(int, *tl++);
   1095       1.23      fvdl 	    } else {
   1096       1.23      fvdl 		nfsm_dissect(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
   1097       1.23      fvdl 		nfsd->nd_off = (off_t)fxdr_unsigned(u_int32_t, *++tl);
   1098       1.23      fvdl 		tl += 2;
   1099       1.23      fvdl 	    }
   1100       1.23      fvdl 	    len = fxdr_unsigned(int32_t, *tl);
   1101       1.23      fvdl 	    nfsd->nd_len = len;
   1102       1.23      fvdl 	    nfsd->nd_eoff = nfsd->nd_off + len;
   1103       1.94     perry 
   1104       1.23      fvdl 	    /*
   1105       1.23      fvdl 	     * Trim the header out of the mbuf list and trim off any trailing
   1106       1.23      fvdl 	     * junk so that the mbuf list has only the write data.
   1107       1.23      fvdl 	     */
   1108       1.23      fvdl 	    zeroing = 1;
   1109       1.23      fvdl 	    i = 0;
   1110       1.23      fvdl 	    mp = mrep;
   1111       1.23      fvdl 	    while (mp) {
   1112       1.23      fvdl 		if (mp == md) {
   1113       1.23      fvdl 		    zeroing = 0;
   1114      1.126  christos 		    adjust = dpos - mtod(mp, char *);
   1115       1.23      fvdl 		    mp->m_len -= adjust;
   1116       1.23      fvdl 		    if (mp->m_len > 0 && adjust > 0)
   1117       1.23      fvdl 			NFSMADV(mp, adjust);
   1118       1.23      fvdl 		}
   1119       1.23      fvdl 		if (zeroing)
   1120       1.23      fvdl 		    mp->m_len = 0;
   1121       1.23      fvdl 		else {
   1122       1.23      fvdl 		    i += mp->m_len;
   1123       1.23      fvdl 		    if (i > len) {
   1124       1.23      fvdl 			mp->m_len -= (i - len);
   1125       1.23      fvdl 			zeroing = 1;
   1126       1.23      fvdl 		    }
   1127       1.23      fvdl 		}
   1128       1.23      fvdl 		mp = mp->m_next;
   1129       1.23      fvdl 	    }
   1130       1.23      fvdl 	    if (len > NFS_MAXDATA || len < 0  || i < len) {
   1131       1.23      fvdl nfsmout:
   1132       1.23      fvdl 		m_freem(mrep);
   1133       1.23      fvdl 		error = EIO;
   1134       1.23      fvdl 		nfsm_writereply(2 * NFSX_UNSIGNED, v3);
   1135       1.23      fvdl 		if (v3)
   1136       1.23      fvdl 		    nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, &va);
   1137       1.23      fvdl 		nfsd->nd_mreq = mreq;
   1138       1.23      fvdl 		nfsd->nd_mrep = NULL;
   1139       1.23      fvdl 		nfsd->nd_time = 0;
   1140       1.23      fvdl 	    }
   1141       1.94     perry 
   1142       1.23      fvdl 	    /*
   1143       1.23      fvdl 	     * Add this entry to the hash and time queues.
   1144       1.23      fvdl 	     */
   1145       1.23      fvdl 	    owp = NULL;
   1146      1.132      yamt 	    mutex_enter(&nfsd_lock);
   1147       1.70      yamt 	    wp = LIST_FIRST(&slp->ns_tq);
   1148       1.23      fvdl 	    while (wp && wp->nd_time < nfsd->nd_time) {
   1149       1.23      fvdl 		owp = wp;
   1150       1.70      yamt 		wp = LIST_NEXT(wp, nd_tq);
   1151       1.23      fvdl 	    }
   1152       1.23      fvdl 	    if (owp) {
   1153       1.23      fvdl 		LIST_INSERT_AFTER(owp, nfsd, nd_tq);
   1154       1.23      fvdl 	    } else {
   1155       1.23      fvdl 		LIST_INSERT_HEAD(&slp->ns_tq, nfsd, nd_tq);
   1156       1.23      fvdl 	    }
   1157       1.23      fvdl 	    if (nfsd->nd_mrep) {
   1158      1.117      yamt 		wpp = nfsrv_nwdelayhash(slp, &nfsd->nd_fh);
   1159       1.23      fvdl 		owp = NULL;
   1160       1.70      yamt 		wp = LIST_FIRST(wpp);
   1161      1.117      yamt 		while (wp && nfsrv_comparefh(&nfsd->nd_fh, &wp->nd_fh)) {
   1162       1.23      fvdl 		    owp = wp;
   1163       1.70      yamt 		    wp = LIST_NEXT(wp, nd_hash);
   1164       1.23      fvdl 		}
   1165       1.23      fvdl 		while (wp && wp->nd_off < nfsd->nd_off &&
   1166      1.117      yamt 		    !nfsrv_comparefh(&nfsd->nd_fh, &wp->nd_fh)) {
   1167       1.23      fvdl 		    owp = wp;
   1168       1.70      yamt 		    wp = LIST_NEXT(wp, nd_hash);
   1169       1.23      fvdl 		}
   1170       1.23      fvdl 		if (owp) {
   1171       1.23      fvdl 		    LIST_INSERT_AFTER(owp, nfsd, nd_hash);
   1172       1.23      fvdl 
   1173       1.23      fvdl 		    /*
   1174       1.23      fvdl 		     * Search the hash list for overlapping entries and
   1175       1.23      fvdl 		     * coalesce.
   1176       1.23      fvdl 		     */
   1177       1.23      fvdl 		    for(; nfsd && NFSW_CONTIG(owp, nfsd); nfsd = wp) {
   1178       1.70      yamt 			wp = LIST_NEXT(nfsd, nd_hash);
   1179      1.109      elad 			if (nfsrv_samecred(owp->nd_cr, nfsd->nd_cr))
   1180       1.23      fvdl 			    nfsrvw_coalesce(owp, nfsd);
   1181       1.23      fvdl 		    }
   1182       1.23      fvdl 		} else {
   1183       1.23      fvdl 		    LIST_INSERT_HEAD(wpp, nfsd, nd_hash);
   1184       1.23      fvdl 		}
   1185       1.23      fvdl 	    }
   1186      1.132      yamt 	    mutex_exit(&nfsd_lock);
   1187        1.1       cgd 	}
   1188       1.94     perry 
   1189        1.1       cgd 	/*
   1190       1.23      fvdl 	 * Now, do VOP_WRITE()s for any one(s) that need to be done now
   1191       1.23      fvdl 	 * and generate the associated reply mbuf list(s).
   1192        1.1       cgd 	 */
   1193       1.23      fvdl loop1:
   1194      1.110    kardel 	getmicrotime(&now);
   1195      1.110    kardel 	cur_usec = (u_quad_t)now.tv_sec * 1000000 + (u_quad_t)now.tv_usec;
   1196      1.132      yamt 	mutex_enter(&nfsd_lock);
   1197       1.70      yamt 	for (nfsd = LIST_FIRST(&slp->ns_tq); nfsd; nfsd = owp) {
   1198       1.70      yamt 		owp = LIST_NEXT(nfsd, nd_tq);
   1199       1.23      fvdl 		if (nfsd->nd_time > cur_usec)
   1200       1.23      fvdl 		    break;
   1201       1.23      fvdl 		if (nfsd->nd_mreq)
   1202       1.23      fvdl 		    continue;
   1203       1.23      fvdl 		LIST_REMOVE(nfsd, nd_tq);
   1204       1.23      fvdl 		LIST_REMOVE(nfsd, nd_hash);
   1205      1.132      yamt 		mutex_exit(&nfsd_lock);
   1206      1.132      yamt 
   1207       1.23      fvdl 		mrep = nfsd->nd_mrep;
   1208       1.23      fvdl 		nfsd->nd_mrep = NULL;
   1209      1.109      elad 		cred = nfsd->nd_cr;
   1210       1.23      fvdl 		v3 = (nfsd->nd_flag & ND_NFSV3);
   1211       1.23      fvdl 		forat_ret = aftat_ret = 1;
   1212      1.117      yamt 		error = nfsrv_fhtovp(&nfsd->nd_fh, 1, &vp, cred, slp,
   1213       1.35      fvdl 		    nfsd->nd_nam, &rdonly, (nfsd->nd_flag & ND_KERBAUTH),
   1214      1.125   thorpej 		    false);
   1215       1.23      fvdl 		if (!error) {
   1216       1.23      fvdl 		    if (v3)
   1217      1.131     pooka 			forat_ret = VOP_GETATTR(vp, &forat, cred);
   1218       1.23      fvdl 		    if (vp->v_type != VREG) {
   1219       1.23      fvdl 			if (v3)
   1220       1.23      fvdl 			    error = EINVAL;
   1221        1.1       cgd 			else
   1222       1.23      fvdl 			    error = (vp->v_type == VDIR) ? EISDIR : EACCES;
   1223       1.23      fvdl 		    }
   1224       1.23      fvdl 		} else
   1225       1.23      fvdl 		    vp = NULL;
   1226       1.23      fvdl 		if (!error) {
   1227       1.23      fvdl 		    nqsrv_getl(vp, ND_WRITE);
   1228       1.99  christos 		    error = nfsrv_access(vp, VWRITE, cred, rdonly, lwp, 1);
   1229       1.23      fvdl 		}
   1230       1.94     perry 
   1231       1.23      fvdl 		if (nfsd->nd_stable == NFSV3WRITE_UNSTABLE)
   1232       1.23      fvdl 		    ioflags = IO_NODELOCKED;
   1233       1.23      fvdl 		else if (nfsd->nd_stable == NFSV3WRITE_DATASYNC)
   1234       1.23      fvdl 		    ioflags = (IO_SYNC | IO_NODELOCKED);
   1235       1.23      fvdl 		else
   1236       1.23      fvdl 		    ioflags = (IO_METASYNC | IO_SYNC | IO_NODELOCKED);
   1237       1.23      fvdl 		uiop->uio_rw = UIO_WRITE;
   1238       1.23      fvdl 		uiop->uio_offset = nfsd->nd_off;
   1239       1.23      fvdl 		uiop->uio_resid = nfsd->nd_eoff - nfsd->nd_off;
   1240      1.101      yamt 		UIO_SETUP_SYSSPACE(uiop);
   1241       1.23      fvdl 		if (uiop->uio_resid > 0) {
   1242       1.23      fvdl 		    mp = mrep;
   1243       1.23      fvdl 		    i = 0;
   1244       1.23      fvdl 		    while (mp) {
   1245       1.23      fvdl 			if (mp->m_len > 0)
   1246       1.23      fvdl 			    i++;
   1247       1.23      fvdl 			mp = mp->m_next;
   1248       1.23      fvdl 		    }
   1249       1.23      fvdl 		    uiop->uio_iovcnt = i;
   1250       1.56   thorpej 		    iov = malloc(i * sizeof (struct iovec), M_TEMP, M_WAITOK);
   1251       1.23      fvdl 		    uiop->uio_iov = ivp = iov;
   1252       1.23      fvdl 		    mp = mrep;
   1253       1.23      fvdl 		    while (mp) {
   1254       1.23      fvdl 			if (mp->m_len > 0) {
   1255      1.126  christos 			    ivp->iov_base = mtod(mp, void *);
   1256       1.23      fvdl 			    ivp->iov_len = mp->m_len;
   1257       1.23      fvdl 			    ivp++;
   1258       1.23      fvdl 			}
   1259        1.1       cgd 			mp = mp->m_next;
   1260       1.23      fvdl 		    }
   1261       1.23      fvdl 		    if (!error) {
   1262      1.128   hannken 			error = VOP_WRITE(vp, uiop, ioflags, cred);
   1263      1.128   hannken 			nfsstats.srvvop_writes++;
   1264       1.23      fvdl 		    }
   1265      1.126  christos 		    free((void *)iov, M_TEMP);
   1266        1.1       cgd 		}
   1267       1.23      fvdl 		m_freem(mrep);
   1268       1.23      fvdl 		if (vp) {
   1269      1.131     pooka 		    aftat_ret = VOP_GETATTR(vp, &va, cred);
   1270       1.23      fvdl 		    vput(vp);
   1271        1.1       cgd 		}
   1272       1.23      fvdl 
   1273       1.23      fvdl 		/*
   1274       1.23      fvdl 		 * Loop around generating replies for all write rpcs that have
   1275       1.23      fvdl 		 * now been completed.
   1276       1.23      fvdl 		 */
   1277       1.23      fvdl 		swp = nfsd;
   1278       1.23      fvdl 		do {
   1279       1.23      fvdl 		    if (error) {
   1280       1.23      fvdl 			nfsm_writereply(NFSX_WCCDATA(v3), v3);
   1281       1.23      fvdl 			if (v3) {
   1282       1.23      fvdl 			    nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, &va);
   1283       1.23      fvdl 			}
   1284       1.23      fvdl 		    } else {
   1285       1.23      fvdl 			nfsm_writereply(NFSX_PREOPATTR(v3) +
   1286       1.23      fvdl 			    NFSX_POSTOPORFATTR(v3) + 2 * NFSX_UNSIGNED +
   1287       1.23      fvdl 			    NFSX_WRITEVERF(v3), v3);
   1288       1.23      fvdl 			if (v3) {
   1289       1.23      fvdl 			    nfsm_srvwcc_data(forat_ret, &forat, aftat_ret, &va);
   1290       1.23      fvdl 			    nfsm_build(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
   1291       1.23      fvdl 			    *tl++ = txdr_unsigned(nfsd->nd_len);
   1292       1.23      fvdl 			    *tl++ = txdr_unsigned(swp->nd_stable);
   1293       1.23      fvdl 			    /*
   1294       1.23      fvdl 			     * Actually, there is no need to txdr these fields,
   1295       1.23      fvdl 			     * but it may make the values more human readable,
   1296       1.23      fvdl 			     * for debugging purposes.
   1297       1.23      fvdl 			     */
   1298       1.23      fvdl 			    *tl++ = txdr_unsigned(boottime.tv_sec);
   1299      1.142  christos 			    *tl = txdr_unsigned(boottime.tv_nsec / 1000);
   1300       1.23      fvdl 			} else {
   1301       1.23      fvdl 			    nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
   1302       1.23      fvdl 			    nfsm_srvfillattr(&va, fp);
   1303       1.23      fvdl 			}
   1304       1.23      fvdl 		    }
   1305       1.23      fvdl 		    nfsd->nd_mreq = mreq;
   1306       1.23      fvdl 		    if (nfsd->nd_mrep)
   1307       1.23      fvdl 			panic("nfsrv_write: nd_mrep not free");
   1308       1.23      fvdl 
   1309       1.23      fvdl 		    /*
   1310       1.23      fvdl 		     * Done. Put it at the head of the timer queue so that
   1311       1.23      fvdl 		     * the final phase can return the reply.
   1312       1.23      fvdl 		     */
   1313      1.132      yamt 		    mutex_enter(&nfsd_lock);
   1314       1.23      fvdl 		    if (nfsd != swp) {
   1315       1.23      fvdl 			nfsd->nd_time = 0;
   1316       1.23      fvdl 			LIST_INSERT_HEAD(&slp->ns_tq, nfsd, nd_tq);
   1317       1.23      fvdl 		    }
   1318       1.70      yamt 		    nfsd = LIST_FIRST(&swp->nd_coalesce);
   1319       1.23      fvdl 		    if (nfsd) {
   1320       1.23      fvdl 			LIST_REMOVE(nfsd, nd_tq);
   1321       1.23      fvdl 		    }
   1322      1.132      yamt 		    mutex_exit(&nfsd_lock);
   1323       1.23      fvdl 		} while (nfsd);
   1324       1.23      fvdl 		swp->nd_time = 0;
   1325      1.132      yamt 
   1326      1.132      yamt 		mutex_enter(&nfsd_lock);
   1327       1.23      fvdl 		LIST_INSERT_HEAD(&slp->ns_tq, swp, nd_tq);
   1328      1.132      yamt 		mutex_exit(&nfsd_lock);
   1329       1.23      fvdl 		goto loop1;
   1330       1.23      fvdl 	}
   1331      1.132      yamt 	mutex_exit(&nfsd_lock);
   1332      1.129      yamt 	nfs_timer_start();
   1333       1.23      fvdl 
   1334       1.23      fvdl 	/*
   1335       1.23      fvdl 	 * Search for a reply to return.
   1336       1.23      fvdl 	 */
   1337      1.132      yamt 	mutex_enter(&nfsd_lock);
   1338       1.70      yamt 	LIST_FOREACH(nfsd, &slp->ns_tq, nd_tq) {
   1339       1.23      fvdl 		if (nfsd->nd_mreq) {
   1340       1.23      fvdl 		    LIST_REMOVE(nfsd, nd_tq);
   1341       1.23      fvdl 		    *mrq = nfsd->nd_mreq;
   1342       1.23      fvdl 		    *ndp = nfsd;
   1343       1.23      fvdl 		    break;
   1344        1.1       cgd 		}
   1345       1.70      yamt 	}
   1346      1.132      yamt 	mutex_exit(&nfsd_lock);
   1347       1.23      fvdl 	return (0);
   1348       1.23      fvdl }
   1349       1.23      fvdl 
   1350       1.23      fvdl /*
   1351       1.23      fvdl  * Coalesce the write request nfsd into owp. To do this we must:
   1352       1.23      fvdl  * - remove nfsd from the queues
   1353       1.23      fvdl  * - merge nfsd->nd_mrep into owp->nd_mrep
   1354       1.23      fvdl  * - update the nd_eoff and nd_stable for owp
   1355       1.23      fvdl  * - put nfsd on owp's nd_coalesce list
   1356       1.23      fvdl  * NB: Must be called at splsoftclock().
   1357       1.23      fvdl  */
   1358       1.23      fvdl void
   1359      1.143       dsl nfsrvw_coalesce(struct nfsrv_descript *owp, struct nfsrv_descript *nfsd)
   1360       1.23      fvdl {
   1361       1.54  augustss         int overlap;
   1362       1.54  augustss         struct mbuf *mp;
   1363       1.70      yamt 	struct nfsrv_descript *m;
   1364       1.23      fvdl 
   1365      1.132      yamt 	KASSERT(mutex_owned(&nfsd_lock));
   1366      1.132      yamt 
   1367       1.23      fvdl         LIST_REMOVE(nfsd, nd_hash);
   1368       1.23      fvdl         LIST_REMOVE(nfsd, nd_tq);
   1369       1.23      fvdl         if (owp->nd_eoff < nfsd->nd_eoff) {
   1370       1.23      fvdl             overlap = owp->nd_eoff - nfsd->nd_off;
   1371       1.23      fvdl             if (overlap < 0)
   1372       1.23      fvdl                 panic("nfsrv_coalesce: bad off");
   1373       1.23      fvdl             if (overlap > 0)
   1374       1.23      fvdl                 m_adj(nfsd->nd_mrep, overlap);
   1375       1.23      fvdl             mp = owp->nd_mrep;
   1376       1.23      fvdl             while (mp->m_next)
   1377       1.23      fvdl                 mp = mp->m_next;
   1378       1.23      fvdl             mp->m_next = nfsd->nd_mrep;
   1379       1.23      fvdl             owp->nd_eoff = nfsd->nd_eoff;
   1380       1.23      fvdl         } else
   1381       1.23      fvdl             m_freem(nfsd->nd_mrep);
   1382       1.23      fvdl         nfsd->nd_mrep = NULL;
   1383       1.23      fvdl         if (nfsd->nd_stable == NFSV3WRITE_FILESYNC)
   1384       1.23      fvdl             owp->nd_stable = NFSV3WRITE_FILESYNC;
   1385       1.23      fvdl         else if (nfsd->nd_stable == NFSV3WRITE_DATASYNC &&
   1386       1.23      fvdl             owp->nd_stable == NFSV3WRITE_UNSTABLE)
   1387       1.23      fvdl             owp->nd_stable = NFSV3WRITE_DATASYNC;
   1388       1.23      fvdl         LIST_INSERT_HEAD(&owp->nd_coalesce, nfsd, nd_tq);
   1389       1.34      fvdl  	/*
   1390       1.34      fvdl  	 * nfsd might hold coalesce elements! Move them to owp.
   1391       1.34      fvdl  	 * Otherwise, requests may be lost and clients will be stuck.
   1392       1.34      fvdl  	 */
   1393       1.70      yamt 	while ((m = LIST_FIRST(&nfsd->nd_coalesce)) != NULL) {
   1394       1.70      yamt 		LIST_REMOVE(m, nd_tq);
   1395       1.70      yamt 		LIST_INSERT_HEAD(&owp->nd_coalesce, m, nd_tq);
   1396       1.70      yamt 	}
   1397        1.1       cgd }
   1398        1.1       cgd 
   1399        1.1       cgd /*
   1400        1.1       cgd  * nfs create service
   1401       1.15   mycroft  * now does a truncate to 0 length via. setattr if it already exists
   1402        1.1       cgd  */
   1403       1.22  christos int
   1404      1.143       dsl nfsrv_create(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   1405        1.1       cgd {
   1406       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
   1407       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
   1408      1.126  christos 	char *dpos = nfsd->nd_dpos;
   1409      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
   1410       1.54  augustss 	struct nfs_fattr *fp;
   1411       1.23      fvdl 	struct vattr va, dirfor, diraft;
   1412       1.54  augustss 	struct nfsv2_sattr *sp;
   1413       1.54  augustss 	u_int32_t *tl;
   1414        1.1       cgd 	struct nameidata nd;
   1415      1.126  christos 	char *cp;
   1416       1.54  augustss 	int32_t t1;
   1417      1.126  christos 	char *bpos;
   1418      1.103  christos 	int error = 0, cache = 0, len, tsize, dirfor_ret = 1, diraft_ret = 1;
   1419      1.144    bouyer 	int rdev = 0, abort = 0;
   1420       1.23      fvdl 	int v3 = (nfsd->nd_flag & ND_NFSV3), how, exclusive_flag = 0;
   1421        1.1       cgd 	char *cp2;
   1422       1.67      matt 	struct mbuf *mb, *mreq;
   1423       1.23      fvdl 	struct vnode *vp = NULL, *dirp = NULL;
   1424      1.117      yamt 	nfsrvfh_t nsfh;
   1425       1.23      fvdl 	u_quad_t frev, tempsize;
   1426       1.23      fvdl 	u_char cverf[NFSX_V3CREATEVERF];
   1427        1.1       cgd 
   1428       1.15   mycroft 	nd.ni_cnd.cn_nameiop = 0;
   1429      1.117      yamt 	nfsm_srvmtofh(&nsfh);
   1430       1.23      fvdl 	nfsm_srvnamesiz(len);
   1431       1.15   mycroft 	nd.ni_cnd.cn_cred = cred;
   1432       1.15   mycroft 	nd.ni_cnd.cn_nameiop = CREATE;
   1433       1.61       chs 	nd.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF;
   1434      1.117      yamt 	error = nfs_namei(&nd, &nsfh, len, slp, nam, &md, &dpos,
   1435      1.125   thorpej 		&dirp, lwp, (nfsd->nd_flag & ND_KERBAUTH), false);
   1436      1.120       chs 	if (dirp && v3) {
   1437      1.131     pooka 		dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred);
   1438       1.23      fvdl 	}
   1439       1.23      fvdl 	if (error) {
   1440       1.23      fvdl 		nfsm_reply(NFSX_WCCDATA(v3));
   1441       1.23      fvdl 		nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
   1442       1.23      fvdl 		if (dirp)
   1443       1.23      fvdl 			vrele(dirp);
   1444      1.152  dholland 		if (nd.ni_pathbuf != NULL) {
   1445      1.152  dholland 			pathbuf_destroy(nd.ni_pathbuf);
   1446      1.152  dholland 			nd.ni_pathbuf = NULL;
   1447      1.152  dholland 		}
   1448       1.23      fvdl 		return (0);
   1449       1.23      fvdl 	}
   1450      1.144    bouyer 	abort = 1;
   1451      1.150     pooka 	vattr_null(&va);
   1452       1.23      fvdl 	if (v3) {
   1453       1.92      yamt 		va.va_mode = 0;
   1454       1.23      fvdl 		nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
   1455       1.23      fvdl 		how = fxdr_unsigned(int, *tl);
   1456       1.23      fvdl 		switch (how) {
   1457       1.23      fvdl 		case NFSV3CREATE_GUARDED:
   1458       1.23      fvdl 			if (nd.ni_vp) {
   1459       1.23      fvdl 				error = EEXIST;
   1460       1.23      fvdl 				break;
   1461       1.23      fvdl 			}
   1462       1.23      fvdl 		case NFSV3CREATE_UNCHECKED:
   1463       1.23      fvdl 			nfsm_srvsattr(&va);
   1464       1.23      fvdl 			break;
   1465       1.23      fvdl 		case NFSV3CREATE_EXCLUSIVE:
   1466      1.126  christos 			nfsm_dissect(cp, void *, NFSX_V3CREATEVERF);
   1467       1.44     perry 			memcpy(cverf, cp, NFSX_V3CREATEVERF);
   1468       1.23      fvdl 			exclusive_flag = 1;
   1469       1.23      fvdl 			break;
   1470       1.23      fvdl 		};
   1471       1.23      fvdl 		va.va_type = VREG;
   1472       1.23      fvdl 	} else {
   1473       1.23      fvdl 		nfsm_dissect(sp, struct nfsv2_sattr *, NFSX_V2SATTR);
   1474       1.23      fvdl 		va.va_type = IFTOVT(fxdr_unsigned(u_int32_t, sp->sa_mode));
   1475       1.23      fvdl 		if (va.va_type == VNON)
   1476       1.23      fvdl 			va.va_type = VREG;
   1477       1.23      fvdl 		va.va_mode = nfstov_mode(sp->sa_mode);
   1478       1.23      fvdl 		switch (va.va_type) {
   1479       1.23      fvdl 		case VREG:
   1480       1.23      fvdl 			tsize = fxdr_unsigned(int32_t, sp->sa_size);
   1481       1.23      fvdl 			if (tsize != -1)
   1482       1.23      fvdl 				va.va_size = (u_quad_t)tsize;
   1483       1.23      fvdl 			break;
   1484       1.23      fvdl 		case VCHR:
   1485       1.23      fvdl 		case VBLK:
   1486       1.23      fvdl 		case VFIFO:
   1487       1.23      fvdl 			rdev = fxdr_unsigned(int32_t, sp->sa_size);
   1488       1.23      fvdl 			break;
   1489       1.23      fvdl 		default:
   1490       1.23      fvdl 			break;
   1491       1.23      fvdl 		};
   1492       1.23      fvdl 	}
   1493       1.23      fvdl 
   1494        1.1       cgd 	/*
   1495       1.15   mycroft 	 * Iff doesn't exist, create it
   1496       1.15   mycroft 	 * otherwise just truncate to 0 length
   1497        1.1       cgd 	 *   should I set the mode too ??
   1498        1.1       cgd 	 */
   1499        1.1       cgd 	if (nd.ni_vp == NULL) {
   1500       1.18   mycroft 		if (va.va_type == VREG || va.va_type == VSOCK) {
   1501       1.23      fvdl 			nqsrv_getl(nd.ni_dvp, ND_WRITE);
   1502       1.23      fvdl 			error = VOP_CREATE(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &va);
   1503       1.23      fvdl 			if (!error) {
   1504       1.23      fvdl 				if (exclusive_flag) {
   1505       1.23      fvdl 					exclusive_flag = 0;
   1506      1.150     pooka 					vattr_null(&va);
   1507       1.89      yamt 					/*
   1508       1.89      yamt 					 * XXX
   1509       1.89      yamt 					 * assuming NFSX_V3CREATEVERF
   1510       1.89      yamt 					 * == sizeof(nfstime3)
   1511       1.89      yamt 					 */
   1512       1.89      yamt 					fxdr_nfsv3time(cverf, &va.va_atime);
   1513      1.131     pooka 					error = VOP_SETATTR(nd.ni_vp, &va,
   1514      1.131     pooka 						cred);
   1515       1.23      fvdl 				}
   1516       1.23      fvdl 			}
   1517       1.18   mycroft 		} else if (va.va_type == VCHR || va.va_type == VBLK ||
   1518       1.18   mycroft 			va.va_type == VFIFO) {
   1519       1.18   mycroft 			if (va.va_type == VCHR && rdev == 0xffffffff)
   1520       1.18   mycroft 				va.va_type = VFIFO;
   1521       1.46       mrg 			if (va.va_type != VFIFO &&
   1522      1.136      elad 			    (error = kauth_authorize_system(cred,
   1523      1.136      elad 			    KAUTH_SYSTEM_MKNOD, 0, NULL, NULL, NULL))) {
   1524       1.15   mycroft 				VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   1525        1.1       cgd 				vput(nd.ni_dvp);
   1526      1.144    bouyer 				abort = 0;
   1527       1.23      fvdl 				nfsm_reply(0);
   1528      1.152  dholland 				if (nd.ni_pathbuf != NULL) {
   1529      1.152  dholland 					pathbuf_destroy(nd.ni_pathbuf);
   1530      1.152  dholland 					nd.ni_pathbuf = NULL;
   1531      1.152  dholland 				}
   1532       1.23      fvdl 				return (error);
   1533        1.1       cgd 			} else
   1534       1.18   mycroft 				va.va_rdev = (dev_t)rdev;
   1535       1.23      fvdl 			nqsrv_getl(nd.ni_dvp, ND_WRITE);
   1536       1.22  christos 			error = VOP_MKNOD(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd,
   1537       1.23      fvdl 			    &va);
   1538       1.22  christos 			if (error) {
   1539        1.1       cgd 				nfsm_reply(0);
   1540        1.1       cgd 			}
   1541        1.1       cgd 		} else {
   1542       1.15   mycroft 			VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   1543      1.152  dholland 			if (nd.ni_pathbuf != NULL) {
   1544      1.152  dholland 				pathbuf_destroy(nd.ni_pathbuf);
   1545      1.152  dholland 				nd.ni_pathbuf = NULL;
   1546      1.152  dholland 			}
   1547        1.1       cgd 			vput(nd.ni_dvp);
   1548        1.1       cgd 			error = ENXIO;
   1549      1.144    bouyer 			abort = 0;
   1550        1.1       cgd 		}
   1551        1.1       cgd 		vp = nd.ni_vp;
   1552        1.1       cgd 	} else {
   1553      1.133      yamt 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   1554      1.152  dholland 		if (nd.ni_pathbuf != NULL) {
   1555      1.152  dholland 			pathbuf_destroy(nd.ni_pathbuf);
   1556      1.152  dholland 			nd.ni_pathbuf = NULL;
   1557      1.152  dholland 		}
   1558        1.1       cgd 		vp = nd.ni_vp;
   1559        1.1       cgd 		if (nd.ni_dvp == vp)
   1560        1.1       cgd 			vrele(nd.ni_dvp);
   1561        1.1       cgd 		else
   1562        1.1       cgd 			vput(nd.ni_dvp);
   1563      1.144    bouyer 		abort = 0;
   1564       1.50   mycroft 		if (!error && va.va_size != -1) {
   1565       1.22  christos 			error = nfsrv_access(vp, VWRITE, cred,
   1566       1.99  christos 			    (nd.ni_cnd.cn_flags & RDONLY), lwp, 0);
   1567       1.23      fvdl 			if (!error) {
   1568       1.23      fvdl 				nqsrv_getl(vp, ND_WRITE);
   1569       1.23      fvdl 				tempsize = va.va_size;
   1570      1.150     pooka 				vattr_null(&va);
   1571       1.23      fvdl 				va.va_size = tempsize;
   1572      1.131     pooka 				error = VOP_SETATTR(vp, &va, cred);
   1573       1.15   mycroft 			}
   1574        1.1       cgd 		}
   1575       1.50   mycroft 		if (error)
   1576       1.50   mycroft 			vput(vp);
   1577        1.1       cgd 	}
   1578       1.23      fvdl 	if (!error) {
   1579      1.117      yamt 		error = nfsrv_composefh(vp, &nsfh, v3);
   1580       1.23      fvdl 		if (!error)
   1581      1.131     pooka 			error = VOP_GETATTR(vp, &va, cred);
   1582        1.1       cgd 		vput(vp);
   1583        1.1       cgd 	}
   1584       1.23      fvdl 	if (v3) {
   1585       1.89      yamt 		if (exclusive_flag && !error) {
   1586       1.89      yamt 			/*
   1587       1.89      yamt 			 * XXX assuming NFSX_V3CREATEVERF == sizeof(nfstime3)
   1588       1.89      yamt 			 */
   1589       1.89      yamt 			char oldverf[NFSX_V3CREATEVERF];
   1590       1.89      yamt 
   1591       1.89      yamt 			txdr_nfsv3time(&va.va_atime, oldverf);
   1592       1.89      yamt 			if (memcmp(cverf, oldverf, NFSX_V3CREATEVERF))
   1593       1.89      yamt 				error = EEXIST;
   1594       1.89      yamt 		}
   1595      1.105  christos 		if (dirp) {
   1596      1.161   hannken 			vn_lock(dirp, LK_SHARED | LK_RETRY);
   1597      1.131     pooka 			diraft_ret = VOP_GETATTR(dirp, &diraft, cred);
   1598      1.161   hannken 			VOP_UNLOCK(dirp);
   1599      1.105  christos 		}
   1600       1.23      fvdl 	}
   1601      1.120       chs 	if (dirp) {
   1602      1.120       chs 		vrele(dirp);
   1603      1.144    bouyer 		dirp = NULL;
   1604      1.120       chs 	}
   1605      1.152  dholland 	if (nd.ni_pathbuf != NULL) {
   1606      1.152  dholland 		pathbuf_destroy(nd.ni_pathbuf);
   1607      1.152  dholland 		nd.ni_pathbuf = NULL;
   1608      1.152  dholland 	}
   1609      1.144    bouyer 	abort = 0;
   1610      1.117      yamt 	nfsm_reply(NFSX_SRVFH(&nsfh, v3) + NFSX_FATTR(v3) + NFSX_WCCDATA(v3));
   1611       1.23      fvdl 	if (v3) {
   1612       1.23      fvdl 		if (!error) {
   1613      1.117      yamt 			nfsm_srvpostop_fh(&nsfh);
   1614       1.23      fvdl 			nfsm_srvpostop_attr(0, &va);
   1615       1.23      fvdl 		}
   1616       1.23      fvdl 		nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
   1617       1.23      fvdl 	} else {
   1618      1.117      yamt 		nfsm_srvfhtom(&nsfh, v3);
   1619       1.23      fvdl 		nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
   1620       1.23      fvdl 		nfsm_srvfillattr(&va, fp);
   1621       1.23      fvdl 	}
   1622       1.23      fvdl 	return (0);
   1623        1.1       cgd nfsmout:
   1624       1.23      fvdl 	if (dirp)
   1625       1.23      fvdl 		vrele(dirp);
   1626      1.144    bouyer 	if (abort) {
   1627      1.144    bouyer 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   1628      1.144    bouyer 		if (nd.ni_dvp == nd.ni_vp)
   1629      1.144    bouyer 			vrele(nd.ni_dvp);
   1630      1.144    bouyer 		else
   1631      1.144    bouyer 			vput(nd.ni_dvp);
   1632      1.144    bouyer 		if (nd.ni_vp)
   1633      1.144    bouyer 			vput(nd.ni_vp);
   1634      1.144    bouyer 	}
   1635      1.152  dholland 	if (nd.ni_pathbuf != NULL) {
   1636      1.152  dholland 		pathbuf_destroy(nd.ni_pathbuf);
   1637      1.152  dholland 		nd.ni_pathbuf = NULL;
   1638      1.152  dholland 	}
   1639        1.1       cgd 	return (error);
   1640       1.23      fvdl }
   1641       1.23      fvdl 
   1642       1.23      fvdl /*
   1643       1.23      fvdl  * nfs v3 mknod service
   1644       1.23      fvdl  */
   1645       1.23      fvdl int
   1646      1.143       dsl nfsrv_mknod(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   1647       1.23      fvdl {
   1648       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
   1649       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
   1650      1.126  christos 	char *dpos = nfsd->nd_dpos;
   1651      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
   1652       1.23      fvdl 	struct vattr va, dirfor, diraft;
   1653       1.54  augustss 	u_int32_t *tl;
   1654       1.23      fvdl 	struct nameidata nd;
   1655       1.54  augustss 	int32_t t1;
   1656      1.126  christos 	char *bpos;
   1657      1.103  christos 	int error = 0, cache = 0, len, dirfor_ret = 1, diraft_ret = 1;
   1658      1.144    bouyer 	int abort = 0;
   1659       1.23      fvdl 	u_int32_t major, minor;
   1660       1.23      fvdl 	enum vtype vtyp;
   1661       1.23      fvdl 	char *cp2;
   1662       1.67      matt 	struct mbuf *mb, *mreq;
   1663       1.23      fvdl 	struct vnode *vp, *dirp = (struct vnode *)0;
   1664      1.117      yamt 	nfsrvfh_t nsfh;
   1665       1.23      fvdl 	u_quad_t frev;
   1666       1.23      fvdl 
   1667       1.23      fvdl 	nd.ni_cnd.cn_nameiop = 0;
   1668      1.117      yamt 	nfsm_srvmtofh(&nsfh);
   1669       1.23      fvdl 	nfsm_srvnamesiz(len);
   1670       1.23      fvdl 	nd.ni_cnd.cn_cred = cred;
   1671       1.23      fvdl 	nd.ni_cnd.cn_nameiop = CREATE;
   1672       1.61       chs 	nd.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF;
   1673      1.117      yamt 	error = nfs_namei(&nd, &nsfh, len, slp, nam, &md, &dpos,
   1674      1.125   thorpej 		&dirp, lwp, (nfsd->nd_flag & ND_KERBAUTH), false);
   1675       1.23      fvdl 	if (dirp)
   1676      1.131     pooka 		dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred);
   1677       1.23      fvdl 	if (error) {
   1678       1.23      fvdl 		nfsm_reply(NFSX_WCCDATA(1));
   1679       1.23      fvdl 		nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
   1680       1.23      fvdl 		if (dirp)
   1681       1.23      fvdl 			vrele(dirp);
   1682      1.152  dholland 		if (nd.ni_pathbuf != NULL) {
   1683      1.152  dholland 			pathbuf_destroy(nd.ni_pathbuf);
   1684      1.152  dholland 			nd.ni_pathbuf = NULL;
   1685      1.152  dholland 		}
   1686       1.23      fvdl 		return (0);
   1687       1.23      fvdl 	}
   1688      1.144    bouyer 	abort = 1;
   1689       1.23      fvdl 	nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
   1690       1.23      fvdl 	vtyp = nfsv3tov_type(*tl);
   1691       1.23      fvdl 	if (vtyp != VCHR && vtyp != VBLK && vtyp != VSOCK && vtyp != VFIFO) {
   1692       1.23      fvdl 		error = NFSERR_BADTYPE;
   1693       1.95      yamt 		goto abort;
   1694       1.23      fvdl 	}
   1695      1.150     pooka 	vattr_null(&va);
   1696       1.92      yamt 	va.va_mode = 0;
   1697       1.23      fvdl 	nfsm_srvsattr(&va);
   1698       1.23      fvdl 	if (vtyp == VCHR || vtyp == VBLK) {
   1699       1.95      yamt 		dev_t rdev;
   1700       1.95      yamt 
   1701       1.23      fvdl 		nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
   1702       1.23      fvdl 		major = fxdr_unsigned(u_int32_t, *tl++);
   1703       1.23      fvdl 		minor = fxdr_unsigned(u_int32_t, *tl);
   1704       1.95      yamt 		rdev = makedev(major, minor);
   1705       1.95      yamt 		if (major(rdev) != major || minor(rdev) != minor) {
   1706       1.95      yamt 			error = EINVAL;
   1707       1.95      yamt 			goto abort;
   1708       1.95      yamt 		}
   1709       1.95      yamt 		va.va_rdev = rdev;
   1710       1.23      fvdl 	}
   1711        1.1       cgd 
   1712       1.23      fvdl 	/*
   1713       1.23      fvdl 	 * Iff doesn't exist, create it.
   1714       1.23      fvdl 	 */
   1715       1.23      fvdl 	if (nd.ni_vp) {
   1716       1.23      fvdl 		error = EEXIST;
   1717       1.95      yamt abort:
   1718       1.23      fvdl 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   1719       1.51  sommerfe 		if (nd.ni_dvp == nd.ni_vp)
   1720       1.51  sommerfe 			vrele(nd.ni_dvp);
   1721       1.51  sommerfe 		else
   1722       1.51  sommerfe 			vput(nd.ni_dvp);
   1723       1.95      yamt 		if (nd.ni_vp)
   1724       1.95      yamt 			vput(nd.ni_vp);
   1725      1.152  dholland 		if (nd.ni_pathbuf != NULL) {
   1726      1.152  dholland 			pathbuf_destroy(nd.ni_pathbuf);
   1727      1.152  dholland 			nd.ni_pathbuf = NULL;
   1728      1.152  dholland 		}
   1729       1.23      fvdl 		goto out;
   1730       1.23      fvdl 	}
   1731       1.23      fvdl 	va.va_type = vtyp;
   1732       1.23      fvdl 	if (vtyp == VSOCK) {
   1733       1.23      fvdl 		nqsrv_getl(nd.ni_dvp, ND_WRITE);
   1734       1.23      fvdl 		error = VOP_CREATE(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &va);
   1735       1.23      fvdl 	} else {
   1736       1.46       mrg 		if (va.va_type != VFIFO &&
   1737      1.136      elad 		    (error = kauth_authorize_system(cred,
   1738      1.136      elad 		    KAUTH_SYSTEM_MKNOD, 0, NULL, NULL, NULL))) {
   1739       1.23      fvdl 			VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   1740       1.23      fvdl 			vput(nd.ni_dvp);
   1741       1.23      fvdl 			goto out;
   1742       1.23      fvdl 		}
   1743       1.23      fvdl 		nqsrv_getl(nd.ni_dvp, ND_WRITE);
   1744       1.23      fvdl 		error = VOP_MKNOD(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &va);
   1745       1.23      fvdl 		if (error)
   1746       1.23      fvdl 			goto out;
   1747       1.23      fvdl 	}
   1748        1.1       cgd out:
   1749       1.23      fvdl 	vp = nd.ni_vp;
   1750       1.23      fvdl 	if (!error) {
   1751      1.125   thorpej 		error = nfsrv_composefh(vp, &nsfh, true);
   1752       1.23      fvdl 		if (!error)
   1753      1.131     pooka 			error = VOP_GETATTR(vp, &va, cred);
   1754       1.23      fvdl 		vput(vp);
   1755       1.23      fvdl 	}
   1756      1.104  christos 	if (dirp) {
   1757      1.161   hannken 		vn_lock(dirp, LK_SHARED | LK_RETRY);
   1758      1.131     pooka 		diraft_ret = VOP_GETATTR(dirp, &diraft, cred);
   1759      1.161   hannken 		VOP_UNLOCK(dirp);
   1760      1.104  christos 		vrele(dirp);
   1761      1.144    bouyer 		dirp = NULL;
   1762      1.104  christos 	}
   1763      1.152  dholland 	if (nd.ni_pathbuf != NULL) {
   1764      1.152  dholland 		pathbuf_destroy(nd.ni_pathbuf);
   1765      1.152  dholland 		nd.ni_pathbuf = NULL;
   1766      1.152  dholland 	}
   1767      1.144    bouyer 	abort = 0;
   1768      1.125   thorpej 	nfsm_reply(NFSX_SRVFH(&nsfh, true) + NFSX_POSTOPATTR(1) +
   1769      1.117      yamt 	    NFSX_WCCDATA(1));
   1770       1.23      fvdl 	if (!error) {
   1771      1.117      yamt 		nfsm_srvpostop_fh(&nsfh);
   1772       1.23      fvdl 		nfsm_srvpostop_attr(0, &va);
   1773       1.23      fvdl 	}
   1774       1.23      fvdl 	nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
   1775       1.23      fvdl 	return (0);
   1776       1.23      fvdl nfsmout:
   1777      1.144    bouyer 	if (abort) {
   1778      1.144    bouyer 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   1779      1.144    bouyer 		if (nd.ni_dvp == nd.ni_vp)
   1780      1.144    bouyer 			vrele(nd.ni_dvp);
   1781      1.144    bouyer 		else
   1782      1.144    bouyer 			vput(nd.ni_dvp);
   1783      1.144    bouyer 		if (nd.ni_vp)
   1784      1.144    bouyer 			vput(nd.ni_vp);
   1785      1.144    bouyer 	}
   1786      1.152  dholland 	if (nd.ni_pathbuf != NULL) {
   1787      1.152  dholland 		pathbuf_destroy(nd.ni_pathbuf);
   1788      1.152  dholland 		nd.ni_pathbuf = NULL;
   1789      1.152  dholland 	}
   1790      1.120       chs 	if (dirp)
   1791      1.120       chs 		vrele(dirp);
   1792       1.23      fvdl 	return (error);
   1793        1.1       cgd }
   1794        1.1       cgd 
   1795        1.1       cgd /*
   1796        1.1       cgd  * nfs remove service
   1797        1.1       cgd  */
   1798       1.22  christos int
   1799      1.143       dsl nfsrv_remove(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   1800        1.1       cgd {
   1801       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
   1802       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
   1803      1.126  christos 	char *dpos = nfsd->nd_dpos;
   1804      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
   1805        1.1       cgd 	struct nameidata nd;
   1806       1.54  augustss 	u_int32_t *tl;
   1807       1.54  augustss 	int32_t t1;
   1808      1.126  christos 	char *bpos;
   1809      1.103  christos 	int error = 0, cache = 0, len, dirfor_ret = 1, diraft_ret = 1;
   1810       1.23      fvdl 	int v3 = (nfsd->nd_flag & ND_NFSV3);
   1811        1.1       cgd 	char *cp2;
   1812        1.1       cgd 	struct mbuf *mb, *mreq;
   1813       1.23      fvdl 	struct vnode *vp, *dirp;
   1814       1.23      fvdl 	struct vattr dirfor, diraft;
   1815      1.117      yamt 	nfsrvfh_t nsfh;
   1816       1.15   mycroft 	u_quad_t frev;
   1817        1.1       cgd 
   1818       1.23      fvdl #ifndef nolint
   1819       1.23      fvdl 	vp = (struct vnode *)0;
   1820       1.23      fvdl #endif
   1821      1.117      yamt 	nfsm_srvmtofh(&nsfh);
   1822       1.23      fvdl 	nfsm_srvnamesiz(len);
   1823       1.15   mycroft 	nd.ni_cnd.cn_cred = cred;
   1824       1.15   mycroft 	nd.ni_cnd.cn_nameiop = DELETE;
   1825       1.15   mycroft 	nd.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF;
   1826      1.117      yamt 	error = nfs_namei(&nd, &nsfh, len, slp, nam, &md, &dpos,
   1827      1.125   thorpej 		&dirp, lwp, (nfsd->nd_flag & ND_KERBAUTH), false);
   1828      1.161   hannken 	if (error == 0 && dirp && v3) {
   1829      1.161   hannken 		if (nd.ni_dvp == nd.ni_vp)
   1830      1.161   hannken 			vn_lock(dirp, LK_SHARED | LK_RETRY);
   1831      1.131     pooka 		dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred);
   1832      1.161   hannken 		if (nd.ni_dvp == nd.ni_vp)
   1833      1.161   hannken 			VOP_UNLOCK(dirp);
   1834        1.1       cgd 	}
   1835       1.23      fvdl 	if (!error) {
   1836       1.23      fvdl 		vp = nd.ni_vp;
   1837      1.137      yamt 		if (vp->v_type == VDIR) {
   1838      1.137      yamt 			error = EPERM;
   1839       1.23      fvdl 			goto out;
   1840      1.137      yamt 		}
   1841       1.23      fvdl 		/*
   1842       1.23      fvdl 		 * The root of a mounted filesystem cannot be deleted.
   1843       1.23      fvdl 		 */
   1844      1.130        ad 		if (vp->v_vflag & VV_ROOT) {
   1845       1.23      fvdl 			error = EBUSY;
   1846       1.23      fvdl 		}
   1847       1.21   mycroft out:
   1848       1.23      fvdl 		if (!error) {
   1849       1.23      fvdl 			nqsrv_getl(nd.ni_dvp, ND_WRITE);
   1850       1.23      fvdl 			nqsrv_getl(vp, ND_WRITE);
   1851       1.23      fvdl 			error = VOP_REMOVE(nd.ni_dvp, nd.ni_vp, &nd.ni_cnd);
   1852       1.23      fvdl 		} else {
   1853       1.23      fvdl 			VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   1854       1.23      fvdl 			if (nd.ni_dvp == vp)
   1855       1.23      fvdl 				vrele(nd.ni_dvp);
   1856       1.23      fvdl 			else
   1857       1.23      fvdl 				vput(nd.ni_dvp);
   1858       1.23      fvdl 			vput(vp);
   1859       1.23      fvdl 		}
   1860       1.23      fvdl 	}
   1861      1.152  dholland 	if (nd.ni_pathbuf != NULL) {
   1862      1.152  dholland 		pathbuf_destroy(nd.ni_pathbuf);
   1863      1.152  dholland 		nd.ni_pathbuf = NULL;
   1864      1.152  dholland 	}
   1865      1.120       chs 	if (dirp) {
   1866      1.120       chs 		if (v3) {
   1867      1.161   hannken 			vn_lock(dirp, LK_SHARED | LK_RETRY);
   1868      1.131     pooka 			diraft_ret = VOP_GETATTR(dirp, &diraft, cred);
   1869      1.161   hannken 			VOP_UNLOCK(dirp);
   1870      1.120       chs 		}
   1871       1.23      fvdl 		vrele(dirp);
   1872       1.23      fvdl 	}
   1873       1.23      fvdl 	nfsm_reply(NFSX_WCCDATA(v3));
   1874       1.23      fvdl 	if (v3) {
   1875       1.23      fvdl 		nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
   1876       1.23      fvdl 		return (0);
   1877       1.23      fvdl 	}
   1878        1.1       cgd 	nfsm_srvdone;
   1879        1.1       cgd }
   1880        1.1       cgd 
   1881        1.1       cgd /*
   1882        1.1       cgd  * nfs rename service
   1883        1.1       cgd  */
   1884       1.22  christos int
   1885      1.143       dsl nfsrv_rename(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   1886        1.1       cgd {
   1887       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
   1888       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
   1889      1.126  christos 	char *dpos = nfsd->nd_dpos;
   1890      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
   1891       1.54  augustss 	u_int32_t *tl;
   1892       1.54  augustss 	int32_t t1;
   1893      1.126  christos 	char *bpos;
   1894      1.103  christos 	int error = 0, cache = 0, fdirfor_ret = 1, fdiraft_ret = 1;
   1895       1.68      yamt 	uint32_t len, len2;
   1896       1.23      fvdl 	int tdirfor_ret = 1, tdiraft_ret = 1;
   1897       1.23      fvdl 	int v3 = (nfsd->nd_flag & ND_NFSV3);
   1898        1.1       cgd 	char *cp2;
   1899        1.1       cgd 	struct mbuf *mb, *mreq;
   1900        1.1       cgd 	struct nameidata fromnd, tond;
   1901      1.120       chs 	struct vnode *fvp, *tvp, *tdvp;
   1902      1.120       chs 	struct vnode *fdirp = NULL, *tdirp = NULL;
   1903      1.134  dholland 	struct mount *localfs = NULL;
   1904       1.23      fvdl 	struct vattr fdirfor, fdiraft, tdirfor, tdiraft;
   1905      1.117      yamt 	nfsrvfh_t fnsfh, tnsfh;
   1906       1.15   mycroft 	u_quad_t frev;
   1907       1.15   mycroft 	uid_t saved_uid;
   1908        1.1       cgd 
   1909       1.23      fvdl #ifndef nolint
   1910       1.23      fvdl 	fvp = (struct vnode *)0;
   1911       1.23      fvdl #endif
   1912       1.15   mycroft 	fromnd.ni_cnd.cn_nameiop = 0;
   1913       1.15   mycroft 	tond.ni_cnd.cn_nameiop = 0;
   1914      1.117      yamt 	nfsm_srvmtofh(&fnsfh);
   1915       1.23      fvdl 	nfsm_srvnamesiz(len);
   1916        1.1       cgd 	/*
   1917       1.15   mycroft 	 * Remember our original uid so that we can reset cr_uid before
   1918       1.15   mycroft 	 * the second nfs_namei() call, in case it is remapped.
   1919        1.1       cgd 	 */
   1920      1.109      elad 	saved_uid = kauth_cred_geteuid(cred);
   1921       1.15   mycroft 	fromnd.ni_cnd.cn_cred = cred;
   1922       1.15   mycroft 	fromnd.ni_cnd.cn_nameiop = DELETE;
   1923      1.155  dholland 	fromnd.ni_cnd.cn_flags = LOCKPARENT | INRENAME;
   1924      1.117      yamt 	error = nfs_namei(&fromnd, &fnsfh, len, slp, nam, &md,
   1925      1.125   thorpej 		&dpos, &fdirp, lwp, (nfsd->nd_flag & ND_KERBAUTH), false);
   1926      1.161   hannken 	if (error == 0 && fdirp && v3) {
   1927      1.161   hannken 		if (fromnd.ni_dvp == fromnd.ni_vp)
   1928      1.161   hannken 			vn_lock(fdirp, LK_SHARED | LK_RETRY);
   1929      1.131     pooka 		fdirfor_ret = VOP_GETATTR(fdirp, &fdirfor, cred);
   1930      1.161   hannken 		if (fromnd.ni_dvp == fromnd.ni_vp)
   1931      1.161   hannken 			VOP_UNLOCK(fdirp);
   1932       1.23      fvdl 	}
   1933       1.23      fvdl 	if (error) {
   1934       1.23      fvdl 		nfsm_reply(2 * NFSX_WCCDATA(v3));
   1935       1.23      fvdl 		nfsm_srvwcc_data(fdirfor_ret, &fdirfor, fdiraft_ret, &fdiraft);
   1936       1.23      fvdl 		nfsm_srvwcc_data(tdirfor_ret, &tdirfor, tdiraft_ret, &tdiraft);
   1937       1.23      fvdl 		if (fdirp)
   1938      1.123       chs 			vrele(fdirp);
   1939      1.160  dholland 		if (fromnd.ni_pathbuf != NULL) {
   1940      1.160  dholland 			pathbuf_destroy(fromnd.ni_pathbuf);
   1941      1.160  dholland 		}
   1942       1.23      fvdl 		return (0);
   1943       1.23      fvdl 	}
   1944      1.123       chs 	if (fromnd.ni_dvp != fromnd.ni_vp) {
   1945      1.151   hannken 		VOP_UNLOCK(fromnd.ni_dvp);
   1946      1.123       chs 	}
   1947        1.1       cgd 	fvp = fromnd.ni_vp;
   1948      1.134  dholland 
   1949      1.134  dholland 	localfs = fvp->v_mount;
   1950      1.134  dholland 	error = VFS_RENAMELOCK_ENTER(localfs);
   1951      1.134  dholland 	if (error) {
   1952      1.134  dholland 		VOP_ABORTOP(fromnd.ni_dvp, &fromnd.ni_cnd);
   1953      1.134  dholland 		vrele(fromnd.ni_dvp);
   1954      1.134  dholland 		vrele(fvp);
   1955      1.134  dholland 		goto out1;
   1956      1.134  dholland 	}
   1957      1.134  dholland 
   1958      1.134  dholland 	/* Copied, regrettably, from vfs_syscalls.c (q.v.) */
   1959      1.134  dholland 	vrele(fvp);
   1960      1.138  dholland 	if ((fromnd.ni_cnd.cn_namelen == 1 &&
   1961      1.138  dholland 	     fromnd.ni_cnd.cn_nameptr[0] == '.') ||
   1962      1.138  dholland 	    (fromnd.ni_cnd.cn_namelen == 2 &&
   1963      1.138  dholland 	     fromnd.ni_cnd.cn_nameptr[0] == '.' &&
   1964      1.138  dholland 	     fromnd.ni_cnd.cn_nameptr[1] == '.')) {
   1965      1.138  dholland 		error = EINVAL;
   1966      1.138  dholland 		VFS_RENAMELOCK_EXIT(localfs);
   1967      1.138  dholland 		VOP_ABORTOP(fromnd.ni_dvp, &fromnd.ni_cnd);
   1968      1.138  dholland 		vrele(fromnd.ni_dvp);
   1969      1.138  dholland 		goto out1;
   1970      1.138  dholland 	}
   1971      1.134  dholland 	vn_lock(fromnd.ni_dvp, LK_EXCLUSIVE | LK_RETRY);
   1972      1.154  dholland 	error = relookup(fromnd.ni_dvp, &fromnd.ni_vp, &fromnd.ni_cnd, 0);
   1973      1.134  dholland 	if (error) {
   1974      1.151   hannken 		VOP_UNLOCK(fromnd.ni_dvp);
   1975      1.134  dholland 		VFS_RENAMELOCK_EXIT(localfs);
   1976      1.134  dholland 		VOP_ABORTOP(fromnd.ni_dvp, &fromnd.ni_cnd);
   1977      1.134  dholland 		vrele(fromnd.ni_dvp);
   1978      1.134  dholland 		goto out1;
   1979      1.134  dholland 	}
   1980      1.151   hannken 	VOP_UNLOCK(fromnd.ni_vp);
   1981      1.134  dholland 	if (fromnd.ni_dvp != fromnd.ni_vp)
   1982      1.151   hannken 		VOP_UNLOCK(fromnd.ni_dvp);
   1983      1.134  dholland 	fvp = fromnd.ni_vp;
   1984      1.134  dholland 
   1985      1.117      yamt 	nfsm_srvmtofh(&tnsfh);
   1986       1.68      yamt 	if (v3) {
   1987       1.68      yamt 		nfsm_dissect(tl, uint32_t *, NFSX_UNSIGNED);
   1988       1.68      yamt 		len2 = fxdr_unsigned(uint32_t, *tl);
   1989       1.68      yamt 		/* len2 will be checked by nfs_namei */
   1990       1.68      yamt 	}
   1991       1.68      yamt 	else {
   1992       1.68      yamt 		/* NFSv2 */
   1993       1.68      yamt 		nfsm_strsiz(len2, NFS_MAXNAMLEN);
   1994       1.68      yamt 	}
   1995      1.109      elad 	kauth_cred_seteuid(cred, saved_uid);
   1996       1.15   mycroft 	tond.ni_cnd.cn_cred = cred;
   1997       1.15   mycroft 	tond.ni_cnd.cn_nameiop = RENAME;
   1998      1.155  dholland 	tond.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF | NOCACHE | INRENAME;
   1999      1.117      yamt 	error = nfs_namei(&tond, &tnsfh, len2, slp, nam, &md,
   2000      1.125   thorpej 		&dpos, &tdirp, lwp, (nfsd->nd_flag & ND_KERBAUTH), false);
   2001      1.120       chs 	if (tdirp && v3) {
   2002      1.131     pooka 		tdirfor_ret = VOP_GETATTR(tdirp, &tdirfor, cred);
   2003       1.23      fvdl 	}
   2004       1.22  christos 	if (error) {
   2005      1.134  dholland 		VFS_RENAMELOCK_EXIT(localfs);
   2006       1.15   mycroft 		VOP_ABORTOP(fromnd.ni_dvp, &fromnd.ni_cnd);
   2007        1.1       cgd 		vrele(fromnd.ni_dvp);
   2008        1.1       cgd 		vrele(fvp);
   2009        1.1       cgd 		goto out1;
   2010        1.1       cgd 	}
   2011        1.1       cgd 	tdvp = tond.ni_dvp;
   2012        1.1       cgd 	tvp = tond.ni_vp;
   2013        1.1       cgd 	if (tvp != NULL) {
   2014        1.1       cgd 		if (fvp->v_type == VDIR && tvp->v_type != VDIR) {
   2015       1.23      fvdl 			if (v3)
   2016       1.23      fvdl 				error = EEXIST;
   2017       1.23      fvdl 			else
   2018       1.23      fvdl 				error = EISDIR;
   2019        1.1       cgd 			goto out;
   2020        1.1       cgd 		} else if (fvp->v_type != VDIR && tvp->v_type == VDIR) {
   2021       1.23      fvdl 			if (v3)
   2022       1.23      fvdl 				error = EEXIST;
   2023       1.23      fvdl 			else
   2024       1.23      fvdl 				error = ENOTDIR;
   2025        1.1       cgd 			goto out;
   2026        1.1       cgd 		}
   2027       1.15   mycroft 		if (tvp->v_type == VDIR && tvp->v_mountedhere) {
   2028       1.23      fvdl 			if (v3)
   2029       1.23      fvdl 				error = EXDEV;
   2030       1.23      fvdl 			else
   2031       1.23      fvdl 				error = ENOTEMPTY;
   2032       1.15   mycroft 			goto out;
   2033       1.15   mycroft 		}
   2034       1.15   mycroft 	}
   2035       1.15   mycroft 	if (fvp->v_type == VDIR && fvp->v_mountedhere) {
   2036       1.23      fvdl 		if (v3)
   2037       1.23      fvdl 			error = EXDEV;
   2038       1.23      fvdl 		else
   2039       1.23      fvdl 			error = ENOTEMPTY;
   2040       1.15   mycroft 		goto out;
   2041        1.1       cgd 	}
   2042        1.1       cgd 	if (fvp->v_mount != tdvp->v_mount) {
   2043       1.23      fvdl 		if (v3)
   2044       1.23      fvdl 			error = EXDEV;
   2045       1.23      fvdl 		else
   2046       1.23      fvdl 			error = ENOTEMPTY;
   2047        1.1       cgd 		goto out;
   2048        1.1       cgd 	}
   2049       1.45   thorpej 	if (fvp == tdvp) {
   2050       1.23      fvdl 		if (v3)
   2051       1.23      fvdl 			error = EINVAL;
   2052       1.23      fvdl 		else
   2053       1.23      fvdl 			error = ENOTEMPTY;
   2054       1.45   thorpej 	}
   2055        1.1       cgd 	/*
   2056        1.1       cgd 	 * If source is the same as the destination (that is the
   2057        1.1       cgd 	 * same vnode with the same name in the same directory),
   2058        1.1       cgd 	 * then there is nothing to do.
   2059        1.1       cgd 	 */
   2060        1.1       cgd 	if (fvp == tvp && fromnd.ni_dvp == tdvp &&
   2061       1.15   mycroft 	    fromnd.ni_cnd.cn_namelen == tond.ni_cnd.cn_namelen &&
   2062       1.44     perry 	    !memcmp(fromnd.ni_cnd.cn_nameptr, tond.ni_cnd.cn_nameptr,
   2063       1.15   mycroft 	      fromnd.ni_cnd.cn_namelen))
   2064        1.1       cgd 		error = -1;
   2065        1.1       cgd out:
   2066        1.1       cgd 	if (!error) {
   2067       1.23      fvdl 		nqsrv_getl(fromnd.ni_dvp, ND_WRITE);
   2068       1.23      fvdl 		nqsrv_getl(tdvp, ND_WRITE);
   2069       1.30      fvdl 		if (tvp) {
   2070       1.23      fvdl 			nqsrv_getl(tvp, ND_WRITE);
   2071       1.30      fvdl 		}
   2072       1.15   mycroft 		error = VOP_RENAME(fromnd.ni_dvp, fromnd.ni_vp, &fromnd.ni_cnd,
   2073       1.15   mycroft 				   tond.ni_dvp, tond.ni_vp, &tond.ni_cnd);
   2074      1.134  dholland 		VFS_RENAMELOCK_EXIT(localfs);
   2075        1.1       cgd 	} else {
   2076       1.15   mycroft 		VOP_ABORTOP(tond.ni_dvp, &tond.ni_cnd);
   2077        1.1       cgd 		if (tdvp == tvp)
   2078        1.1       cgd 			vrele(tdvp);
   2079        1.1       cgd 		else
   2080        1.1       cgd 			vput(tdvp);
   2081        1.1       cgd 		if (tvp)
   2082        1.1       cgd 			vput(tvp);
   2083      1.134  dholland 		VFS_RENAMELOCK_EXIT(localfs);
   2084       1.15   mycroft 		VOP_ABORTOP(fromnd.ni_dvp, &fromnd.ni_cnd);
   2085        1.1       cgd 		vrele(fromnd.ni_dvp);
   2086        1.1       cgd 		vrele(fvp);
   2087       1.23      fvdl 		if (error == -1)
   2088       1.23      fvdl 			error = 0;
   2089        1.1       cgd 	}
   2090      1.160  dholland 	if (tond.ni_pathbuf != NULL) {
   2091      1.160  dholland 		pathbuf_destroy(tond.ni_pathbuf);
   2092      1.160  dholland 		tond.ni_pathbuf = NULL;
   2093      1.160  dholland 	}
   2094      1.144    bouyer 	tond.ni_cnd.cn_nameiop = 0;
   2095        1.1       cgd out1:
   2096       1.23      fvdl 	if (fdirp) {
   2097      1.120       chs 		if (v3) {
   2098      1.161   hannken 			vn_lock(fdirp, LK_SHARED | LK_RETRY);
   2099      1.131     pooka 			fdiraft_ret = VOP_GETATTR(fdirp, &fdiraft, cred);
   2100      1.161   hannken 			VOP_UNLOCK(fdirp);
   2101      1.120       chs 		}
   2102       1.23      fvdl 		vrele(fdirp);
   2103      1.144    bouyer 		fdirp = NULL;
   2104       1.23      fvdl 	}
   2105       1.23      fvdl 	if (tdirp) {
   2106      1.120       chs 		if (v3) {
   2107      1.161   hannken 			vn_lock(tdirp, LK_SHARED | LK_RETRY);
   2108      1.131     pooka 			tdiraft_ret = VOP_GETATTR(tdirp, &tdiraft, cred);
   2109      1.161   hannken 			VOP_UNLOCK(tdirp);
   2110      1.120       chs 		}
   2111       1.23      fvdl 		vrele(tdirp);
   2112      1.144    bouyer 		tdirp = NULL;
   2113       1.23      fvdl 	}
   2114      1.152  dholland 	pathbuf_destroy(fromnd.ni_pathbuf);
   2115      1.160  dholland 	fromnd.ni_pathbuf = NULL;
   2116      1.144    bouyer 	fromnd.ni_cnd.cn_nameiop = 0;
   2117      1.144    bouyer 	localfs = NULL;
   2118       1.23      fvdl 	nfsm_reply(2 * NFSX_WCCDATA(v3));
   2119       1.23      fvdl 	if (v3) {
   2120       1.23      fvdl 		nfsm_srvwcc_data(fdirfor_ret, &fdirfor, fdiraft_ret, &fdiraft);
   2121       1.23      fvdl 		nfsm_srvwcc_data(tdirfor_ret, &tdirfor, tdiraft_ret, &tdiraft);
   2122       1.23      fvdl 	}
   2123       1.23      fvdl 	return (0);
   2124        1.1       cgd 
   2125        1.1       cgd nfsmout:
   2126       1.23      fvdl 	if (fdirp)
   2127       1.23      fvdl 		vrele(fdirp);
   2128      1.106  christos #ifdef notdef
   2129       1.23      fvdl 	if (tdirp)
   2130       1.23      fvdl 		vrele(tdirp);
   2131      1.106  christos #endif
   2132       1.23      fvdl 	if (tond.ni_cnd.cn_nameiop) {
   2133      1.160  dholland 		if (tond.ni_pathbuf != NULL) {
   2134      1.160  dholland 			pathbuf_destroy(tond.ni_pathbuf);
   2135      1.160  dholland 			tond.ni_pathbuf = NULL;
   2136      1.160  dholland 		}
   2137        1.1       cgd 	}
   2138      1.134  dholland 	if (localfs) {
   2139      1.134  dholland 		VFS_RENAMELOCK_EXIT(localfs);
   2140      1.134  dholland 	}
   2141       1.23      fvdl 	if (fromnd.ni_cnd.cn_nameiop) {
   2142       1.15   mycroft 		VOP_ABORTOP(fromnd.ni_dvp, &fromnd.ni_cnd);
   2143      1.160  dholland 		if (fromnd.ni_pathbuf != NULL) {
   2144      1.160  dholland 			pathbuf_destroy(fromnd.ni_pathbuf);
   2145      1.160  dholland 			fromnd.ni_pathbuf = NULL;
   2146      1.160  dholland 		}
   2147        1.1       cgd 		vrele(fromnd.ni_dvp);
   2148        1.1       cgd 		vrele(fvp);
   2149        1.1       cgd 	}
   2150        1.1       cgd 	return (error);
   2151        1.1       cgd }
   2152        1.1       cgd 
   2153        1.1       cgd /*
   2154        1.1       cgd  * nfs link service
   2155        1.1       cgd  */
   2156       1.22  christos int
   2157      1.143       dsl nfsrv_link(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   2158        1.1       cgd {
   2159       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
   2160       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
   2161      1.126  christos 	char *dpos = nfsd->nd_dpos;
   2162      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
   2163        1.1       cgd 	struct nameidata nd;
   2164       1.54  augustss 	u_int32_t *tl;
   2165       1.54  augustss 	int32_t t1;
   2166      1.126  christos 	char *bpos;
   2167      1.103  christos 	int error = 0, rdonly, cache = 0, len, dirfor_ret = 1, diraft_ret = 1;
   2168       1.23      fvdl 	int getret = 1, v3 = (nfsd->nd_flag & ND_NFSV3);
   2169        1.1       cgd 	char *cp2;
   2170        1.1       cgd 	struct mbuf *mb, *mreq;
   2171       1.23      fvdl 	struct vnode *vp, *xp, *dirp = (struct vnode *)0;
   2172       1.23      fvdl 	struct vattr dirfor, diraft, at;
   2173      1.117      yamt 	nfsrvfh_t nsfh, dnsfh;
   2174       1.15   mycroft 	u_quad_t frev;
   2175        1.1       cgd 
   2176      1.117      yamt 	nfsm_srvmtofh(&nsfh);
   2177      1.117      yamt 	nfsm_srvmtofh(&dnsfh);
   2178       1.23      fvdl 	nfsm_srvnamesiz(len);
   2179      1.125   thorpej 	error = nfsrv_fhtovp(&nsfh, false, &vp, cred, slp, nam,
   2180      1.125   thorpej 		 &rdonly, (nfsd->nd_flag & ND_KERBAUTH), false);
   2181       1.23      fvdl 	if (error) {
   2182       1.23      fvdl 		nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_WCCDATA(v3));
   2183       1.23      fvdl 		nfsm_srvpostop_attr(getret, &at);
   2184       1.23      fvdl 		nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
   2185       1.23      fvdl 		return (0);
   2186       1.23      fvdl 	}
   2187      1.137      yamt 	if (vp->v_type == VDIR) {
   2188      1.137      yamt 		error = EPERM;
   2189       1.23      fvdl 		goto out1;
   2190      1.137      yamt 	}
   2191       1.15   mycroft 	nd.ni_cnd.cn_cred = cred;
   2192       1.15   mycroft 	nd.ni_cnd.cn_nameiop = CREATE;
   2193       1.15   mycroft 	nd.ni_cnd.cn_flags = LOCKPARENT;
   2194      1.117      yamt 	error = nfs_namei(&nd, &dnsfh, len, slp, nam, &md, &dpos,
   2195      1.125   thorpej 		&dirp, lwp, (nfsd->nd_flag & ND_KERBAUTH), false);
   2196      1.120       chs 	if (dirp && v3) {
   2197      1.131     pooka 		dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred);
   2198       1.23      fvdl 	}
   2199       1.22  christos 	if (error)
   2200       1.23      fvdl 		goto out1;
   2201       1.23      fvdl 	xp = nd.ni_vp;
   2202       1.23      fvdl 	if (xp != NULL) {
   2203       1.23      fvdl 		error = EEXIST;
   2204        1.1       cgd 		goto out;
   2205       1.23      fvdl 	}
   2206       1.23      fvdl 	xp = nd.ni_dvp;
   2207       1.23      fvdl 	if (vp->v_mount != xp->v_mount)
   2208       1.23      fvdl 		error = EXDEV;
   2209       1.23      fvdl out:
   2210       1.23      fvdl 	if (!error) {
   2211       1.23      fvdl 		nqsrv_getl(vp, ND_WRITE);
   2212       1.23      fvdl 		nqsrv_getl(xp, ND_WRITE);
   2213       1.23      fvdl 		error = VOP_LINK(nd.ni_dvp, vp, &nd.ni_cnd);
   2214       1.23      fvdl 	} else {
   2215       1.15   mycroft 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   2216        1.1       cgd 		if (nd.ni_dvp == nd.ni_vp)
   2217        1.1       cgd 			vrele(nd.ni_dvp);
   2218        1.1       cgd 		else
   2219        1.1       cgd 			vput(nd.ni_dvp);
   2220       1.23      fvdl 		if (nd.ni_vp)
   2221       1.23      fvdl 			vrele(nd.ni_vp);
   2222       1.23      fvdl 	}
   2223       1.23      fvdl out1:
   2224      1.161   hannken 	if (v3) {
   2225      1.161   hannken 		vn_lock(vp, LK_SHARED | LK_RETRY);
   2226      1.131     pooka 		getret = VOP_GETATTR(vp, &at, cred);
   2227      1.161   hannken 		VOP_UNLOCK(vp);
   2228      1.161   hannken 	}
   2229       1.23      fvdl 	if (dirp) {
   2230      1.120       chs 		if (v3) {
   2231      1.161   hannken 			vn_lock(dirp, LK_SHARED | LK_RETRY);
   2232      1.131     pooka 			diraft_ret = VOP_GETATTR(dirp, &diraft, cred);
   2233      1.161   hannken 			VOP_UNLOCK(dirp);
   2234      1.120       chs 		}
   2235       1.23      fvdl 		vrele(dirp);
   2236        1.1       cgd 	}
   2237        1.1       cgd 	vrele(vp);
   2238      1.160  dholland 	if (nd.ni_pathbuf != NULL) {
   2239      1.160  dholland 		pathbuf_destroy(nd.ni_pathbuf);
   2240      1.160  dholland 		nd.ni_pathbuf = NULL;
   2241      1.160  dholland 	}
   2242       1.23      fvdl 	nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_WCCDATA(v3));
   2243       1.23      fvdl 	if (v3) {
   2244       1.23      fvdl 		nfsm_srvpostop_attr(getret, &at);
   2245       1.23      fvdl 		nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
   2246       1.23      fvdl 		return (0);
   2247       1.23      fvdl 	}
   2248        1.1       cgd 	nfsm_srvdone;
   2249        1.1       cgd }
   2250        1.1       cgd 
   2251        1.1       cgd /*
   2252        1.1       cgd  * nfs symbolic link service
   2253        1.1       cgd  */
   2254       1.22  christos int
   2255      1.143       dsl nfsrv_symlink(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   2256        1.1       cgd {
   2257       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
   2258       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
   2259      1.126  christos 	char *dpos = nfsd->nd_dpos;
   2260      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
   2261       1.23      fvdl 	struct vattr va, dirfor, diraft;
   2262        1.1       cgd 	struct nameidata nd;
   2263       1.54  augustss 	u_int32_t *tl;
   2264       1.54  augustss 	int32_t t1;
   2265        1.1       cgd 	struct nfsv2_sattr *sp;
   2266       1.23      fvdl 	char *bpos, *pathcp = NULL, *cp2;
   2267        1.1       cgd 	struct uio io;
   2268        1.1       cgd 	struct iovec iv;
   2269      1.144    bouyer 	int error = 0, cache = 0, dirfor_ret = 1, diraft_ret = 1, abort = 0;
   2270       1.68      yamt 	uint32_t len, len2;
   2271       1.23      fvdl 	int v3 = (nfsd->nd_flag & ND_NFSV3);
   2272       1.67      matt 	struct mbuf *mb, *mreq;
   2273       1.23      fvdl 	struct vnode *dirp = (struct vnode *)0;
   2274      1.117      yamt 	nfsrvfh_t nsfh;
   2275       1.15   mycroft 	u_quad_t frev;
   2276        1.1       cgd 
   2277       1.23      fvdl 	nd.ni_cnd.cn_nameiop = 0;
   2278      1.117      yamt 	nfsm_srvmtofh(&nsfh);
   2279       1.23      fvdl 	nfsm_srvnamesiz(len);
   2280       1.15   mycroft 	nd.ni_cnd.cn_cred = cred;
   2281       1.15   mycroft 	nd.ni_cnd.cn_nameiop = CREATE;
   2282       1.61       chs 	nd.ni_cnd.cn_flags = LOCKPARENT;
   2283      1.117      yamt 	error = nfs_namei(&nd, &nsfh, len, slp, nam, &md, &dpos,
   2284      1.125   thorpej 		&dirp, lwp, (nfsd->nd_flag & ND_KERBAUTH), false);
   2285      1.120       chs 	if (dirp && v3) {
   2286      1.131     pooka 		dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred);
   2287       1.23      fvdl 	}
   2288       1.22  christos 	if (error)
   2289        1.1       cgd 		goto out;
   2290      1.144    bouyer 	abort = 1;
   2291      1.150     pooka 	vattr_null(&va);
   2292       1.97      jmmv 	va.va_type = VLNK;
   2293       1.68      yamt 	if (v3) {
   2294       1.92      yamt 		va.va_mode = 0;
   2295       1.23      fvdl 		nfsm_srvsattr(&va);
   2296       1.68      yamt 		nfsm_dissect(tl, uint32_t *, NFSX_UNSIGNED);
   2297       1.68      yamt 		len2 = fxdr_unsigned(uint32_t, *tl);
   2298       1.68      yamt 		if (len2 > PATH_MAX) {
   2299       1.68      yamt 			/* XXX should check _PC_NO_TRUNC */
   2300       1.68      yamt 			error = ENAMETOOLONG;
   2301       1.68      yamt 			goto abortop;
   2302       1.68      yamt 		}
   2303       1.68      yamt 	}
   2304       1.68      yamt 	else {
   2305       1.68      yamt 		/* NFSv2 */
   2306       1.68      yamt 		nfsm_strsiz(len2, NFS_MAXPATHLEN);
   2307       1.68      yamt 	}
   2308       1.56   thorpej 	pathcp = malloc(len2 + 1, M_TEMP, M_WAITOK);
   2309        1.1       cgd 	iv.iov_base = pathcp;
   2310        1.1       cgd 	iv.iov_len = len2;
   2311        1.1       cgd 	io.uio_resid = len2;
   2312        1.1       cgd 	io.uio_offset = 0;
   2313        1.1       cgd 	io.uio_iov = &iv;
   2314        1.1       cgd 	io.uio_iovcnt = 1;
   2315        1.1       cgd 	io.uio_rw = UIO_READ;
   2316      1.101      yamt 	UIO_SETUP_SYSSPACE(&io);
   2317        1.1       cgd 	nfsm_mtouio(&io, len2);
   2318       1.23      fvdl 	if (!v3) {
   2319       1.23      fvdl 		nfsm_dissect(sp, struct nfsv2_sattr *, NFSX_V2SATTR);
   2320       1.23      fvdl 		va.va_mode = fxdr_unsigned(u_int16_t, sp->sa_mode);
   2321       1.23      fvdl 	}
   2322        1.1       cgd 	*(pathcp + len2) = '\0';
   2323        1.1       cgd 	if (nd.ni_vp) {
   2324       1.68      yamt 		error = EEXIST;
   2325       1.68      yamt abortop:
   2326       1.15   mycroft 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   2327        1.1       cgd 		if (nd.ni_dvp == nd.ni_vp)
   2328        1.1       cgd 			vrele(nd.ni_dvp);
   2329        1.1       cgd 		else
   2330        1.1       cgd 			vput(nd.ni_dvp);
   2331       1.68      yamt 		if (nd.ni_vp)
   2332       1.68      yamt 			vrele(nd.ni_vp);
   2333        1.1       cgd 		goto out;
   2334        1.1       cgd 	}
   2335       1.23      fvdl 	nqsrv_getl(nd.ni_dvp, ND_WRITE);
   2336       1.23      fvdl 	error = VOP_SYMLINK(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &va, pathcp);
   2337       1.61       chs 	if (!error) {
   2338       1.23      fvdl 	    if (v3) {
   2339      1.117      yamt 		error = nfsrv_composefh(nd.ni_vp, &nsfh, v3);
   2340       1.60     assar 		if (!error)
   2341      1.131     pooka 		    error = VOP_GETATTR(nd.ni_vp, &va, cred);
   2342       1.60     assar 		vput(nd.ni_vp);
   2343       1.60     assar 	    } else {
   2344       1.60     assar 		vput(nd.ni_vp);
   2345       1.60     assar 	    }
   2346       1.23      fvdl 	}
   2347        1.1       cgd out:
   2348        1.1       cgd 	if (pathcp)
   2349       1.56   thorpej 		free(pathcp, M_TEMP);
   2350       1.23      fvdl 	if (dirp) {
   2351      1.120       chs 		if (v3) {
   2352      1.161   hannken 			vn_lock(dirp, LK_SHARED | LK_RETRY);
   2353      1.131     pooka 			diraft_ret = VOP_GETATTR(dirp, &diraft, cred);
   2354      1.161   hannken 			VOP_UNLOCK(dirp);
   2355      1.120       chs 		}
   2356       1.23      fvdl 		vrele(dirp);
   2357      1.144    bouyer 		dirp = NULL;
   2358       1.23      fvdl 	}
   2359      1.160  dholland 	if (nd.ni_pathbuf != NULL) {
   2360      1.160  dholland 		pathbuf_destroy(nd.ni_pathbuf);
   2361      1.160  dholland 		nd.ni_pathbuf = NULL;
   2362      1.160  dholland 	}
   2363      1.144    bouyer 	abort = 0;
   2364      1.117      yamt 	nfsm_reply(NFSX_SRVFH(&nsfh, v3) + NFSX_POSTOPATTR(v3) +
   2365      1.117      yamt 	    NFSX_WCCDATA(v3));
   2366       1.23      fvdl 	if (v3) {
   2367       1.23      fvdl 		if (!error) {
   2368      1.117      yamt 			nfsm_srvpostop_fh(&nsfh);
   2369       1.23      fvdl 			nfsm_srvpostop_attr(0, &va);
   2370       1.23      fvdl 		}
   2371       1.23      fvdl 		nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
   2372       1.23      fvdl 	}
   2373       1.23      fvdl 	return (0);
   2374        1.1       cgd nfsmout:
   2375      1.144    bouyer 	if (abort) {
   2376      1.144    bouyer 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   2377      1.144    bouyer 		if (nd.ni_dvp == nd.ni_vp)
   2378      1.144    bouyer 			vrele(nd.ni_dvp);
   2379      1.144    bouyer 		else
   2380      1.144    bouyer 			vput(nd.ni_dvp);
   2381      1.144    bouyer 		if (nd.ni_vp)
   2382      1.144    bouyer 			vrele(nd.ni_vp);
   2383      1.160  dholland 		if (nd.ni_pathbuf != NULL) {
   2384      1.160  dholland 			pathbuf_destroy(nd.ni_pathbuf);
   2385      1.160  dholland 			nd.ni_pathbuf = NULL;
   2386      1.160  dholland 		}
   2387      1.144    bouyer 	}
   2388      1.120       chs 	if (dirp)
   2389      1.120       chs 		vrele(dirp);
   2390        1.1       cgd 	if (pathcp)
   2391       1.56   thorpej 		free(pathcp, M_TEMP);
   2392        1.1       cgd 	return (error);
   2393        1.1       cgd }
   2394        1.1       cgd 
   2395        1.1       cgd /*
   2396        1.1       cgd  * nfs mkdir service
   2397        1.1       cgd  */
   2398       1.22  christos int
   2399      1.143       dsl nfsrv_mkdir(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   2400        1.1       cgd {
   2401       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
   2402       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
   2403      1.126  christos 	char *dpos = nfsd->nd_dpos;
   2404      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
   2405       1.23      fvdl 	struct vattr va, dirfor, diraft;
   2406       1.54  augustss 	struct nfs_fattr *fp;
   2407        1.1       cgd 	struct nameidata nd;
   2408      1.126  christos 	char *cp;
   2409       1.54  augustss 	u_int32_t *tl;
   2410       1.54  augustss 	int32_t t1;
   2411      1.126  christos 	char *bpos;
   2412      1.103  christos 	int error = 0, cache = 0, len, dirfor_ret = 1, diraft_ret = 1;
   2413      1.144    bouyer 	int abort = 0;
   2414       1.23      fvdl 	int v3 = (nfsd->nd_flag & ND_NFSV3);
   2415        1.1       cgd 	char *cp2;
   2416       1.67      matt 	struct mbuf *mb, *mreq;
   2417       1.23      fvdl 	struct vnode *vp, *dirp = (struct vnode *)0;
   2418      1.117      yamt 	nfsrvfh_t nsfh;
   2419       1.15   mycroft 	u_quad_t frev;
   2420        1.1       cgd 
   2421      1.117      yamt 	nfsm_srvmtofh(&nsfh);
   2422       1.23      fvdl 	nfsm_srvnamesiz(len);
   2423       1.15   mycroft 	nd.ni_cnd.cn_cred = cred;
   2424       1.15   mycroft 	nd.ni_cnd.cn_nameiop = CREATE;
   2425       1.15   mycroft 	nd.ni_cnd.cn_flags = LOCKPARENT;
   2426      1.117      yamt 	error = nfs_namei(&nd, &nsfh, len, slp, nam, &md, &dpos,
   2427      1.125   thorpej 		&dirp, lwp, (nfsd->nd_flag & ND_KERBAUTH), false);
   2428      1.120       chs 	if (dirp && v3) {
   2429      1.131     pooka 		dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred);
   2430       1.23      fvdl 	}
   2431       1.23      fvdl 	if (error) {
   2432      1.152  dholland 		if (nd.ni_pathbuf != NULL) {
   2433      1.152  dholland 			pathbuf_destroy(nd.ni_pathbuf);
   2434      1.160  dholland 			nd.ni_pathbuf = NULL;
   2435      1.152  dholland 		}
   2436       1.23      fvdl 		nfsm_reply(NFSX_WCCDATA(v3));
   2437       1.23      fvdl 		nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
   2438       1.23      fvdl 		if (dirp)
   2439       1.23      fvdl 			vrele(dirp);
   2440       1.23      fvdl 		return (0);
   2441       1.23      fvdl 	}
   2442      1.144    bouyer 	abort = 1;
   2443      1.150     pooka 	vattr_null(&va);
   2444       1.23      fvdl 	if (v3) {
   2445       1.92      yamt 		va.va_mode = 0;
   2446       1.23      fvdl 		nfsm_srvsattr(&va);
   2447       1.23      fvdl 	} else {
   2448       1.23      fvdl 		nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
   2449       1.23      fvdl 		va.va_mode = nfstov_mode(*tl++);
   2450       1.23      fvdl 	}
   2451       1.18   mycroft 	va.va_type = VDIR;
   2452        1.1       cgd 	vp = nd.ni_vp;
   2453        1.1       cgd 	if (vp != NULL) {
   2454       1.15   mycroft 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   2455        1.1       cgd 		if (nd.ni_dvp == vp)
   2456        1.1       cgd 			vrele(nd.ni_dvp);
   2457        1.1       cgd 		else
   2458        1.1       cgd 			vput(nd.ni_dvp);
   2459        1.1       cgd 		vrele(vp);
   2460        1.1       cgd 		error = EEXIST;
   2461       1.23      fvdl 		goto out;
   2462        1.1       cgd 	}
   2463       1.23      fvdl 	nqsrv_getl(nd.ni_dvp, ND_WRITE);
   2464       1.23      fvdl 	error = VOP_MKDIR(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &va);
   2465       1.23      fvdl 	if (!error) {
   2466       1.23      fvdl 		vp = nd.ni_vp;
   2467      1.117      yamt 		error = nfsrv_composefh(vp, &nsfh, v3);
   2468       1.23      fvdl 		if (!error)
   2469      1.131     pooka 			error = VOP_GETATTR(vp, &va, cred);
   2470        1.1       cgd 		vput(vp);
   2471        1.1       cgd 	}
   2472       1.23      fvdl out:
   2473       1.23      fvdl 	if (dirp) {
   2474      1.120       chs 		if (v3) {
   2475      1.161   hannken 			vn_lock(dirp, LK_SHARED | LK_RETRY);
   2476      1.131     pooka 			diraft_ret = VOP_GETATTR(dirp, &diraft, cred);
   2477      1.161   hannken 			VOP_UNLOCK(dirp);
   2478      1.120       chs 		}
   2479       1.23      fvdl 		vrele(dirp);
   2480      1.144    bouyer 		dirp = NULL;
   2481       1.23      fvdl 	}
   2482      1.160  dholland 	if (nd.ni_pathbuf != NULL) {
   2483      1.160  dholland 		pathbuf_destroy(nd.ni_pathbuf);
   2484      1.160  dholland 		nd.ni_pathbuf = NULL;
   2485      1.160  dholland 	}
   2486      1.144    bouyer 	abort = 0;
   2487      1.117      yamt 	nfsm_reply(NFSX_SRVFH(&nsfh, v3) + NFSX_POSTOPATTR(v3) +
   2488      1.117      yamt 	    NFSX_WCCDATA(v3));
   2489       1.23      fvdl 	if (v3) {
   2490       1.23      fvdl 		if (!error) {
   2491      1.117      yamt 			nfsm_srvpostop_fh(&nsfh);
   2492       1.23      fvdl 			nfsm_srvpostop_attr(0, &va);
   2493       1.23      fvdl 		}
   2494       1.23      fvdl 		nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
   2495       1.23      fvdl 	} else {
   2496      1.117      yamt 		nfsm_srvfhtom(&nsfh, v3);
   2497       1.23      fvdl 		nfsm_build(fp, struct nfs_fattr *, NFSX_V2FATTR);
   2498       1.23      fvdl 		nfsm_srvfillattr(&va, fp);
   2499       1.23      fvdl 	}
   2500       1.23      fvdl 	return (0);
   2501        1.1       cgd nfsmout:
   2502      1.144    bouyer 	if (abort) {
   2503      1.144    bouyer 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   2504      1.144    bouyer 		if (nd.ni_dvp == nd.ni_vp)
   2505      1.144    bouyer 			vrele(nd.ni_dvp);
   2506      1.144    bouyer 		else
   2507      1.144    bouyer 			vput(nd.ni_dvp);
   2508      1.144    bouyer 		if (nd.ni_vp)
   2509      1.144    bouyer 			vrele(nd.ni_vp);
   2510      1.160  dholland 		if (nd.ni_pathbuf != NULL) {
   2511      1.160  dholland 			pathbuf_destroy(nd.ni_pathbuf);
   2512      1.160  dholland 			nd.ni_pathbuf = NULL;
   2513      1.160  dholland 		}
   2514      1.144    bouyer 	}
   2515      1.120       chs 	if (dirp)
   2516      1.120       chs 		vrele(dirp);
   2517        1.1       cgd 	return (error);
   2518        1.1       cgd }
   2519        1.1       cgd 
   2520        1.1       cgd /*
   2521        1.1       cgd  * nfs rmdir service
   2522        1.1       cgd  */
   2523       1.22  christos int
   2524      1.143       dsl nfsrv_rmdir(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   2525        1.1       cgd {
   2526       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
   2527       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
   2528      1.126  christos 	char *dpos = nfsd->nd_dpos;
   2529      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
   2530       1.54  augustss 	u_int32_t *tl;
   2531       1.54  augustss 	int32_t t1;
   2532      1.126  christos 	char *bpos;
   2533      1.103  christos 	int error = 0, cache = 0, len, dirfor_ret = 1, diraft_ret = 1;
   2534       1.23      fvdl 	int v3 = (nfsd->nd_flag & ND_NFSV3);
   2535        1.1       cgd 	char *cp2;
   2536        1.1       cgd 	struct mbuf *mb, *mreq;
   2537       1.23      fvdl 	struct vnode *vp, *dirp = (struct vnode *)0;
   2538       1.23      fvdl 	struct vattr dirfor, diraft;
   2539      1.117      yamt 	nfsrvfh_t nsfh;
   2540        1.1       cgd 	struct nameidata nd;
   2541       1.15   mycroft 	u_quad_t frev;
   2542        1.1       cgd 
   2543      1.117      yamt 	nfsm_srvmtofh(&nsfh);
   2544       1.23      fvdl 	nfsm_srvnamesiz(len);
   2545       1.15   mycroft 	nd.ni_cnd.cn_cred = cred;
   2546       1.15   mycroft 	nd.ni_cnd.cn_nameiop = DELETE;
   2547       1.15   mycroft 	nd.ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF;
   2548      1.117      yamt 	error = nfs_namei(&nd, &nsfh, len, slp, nam, &md, &dpos,
   2549      1.125   thorpej 		&dirp, lwp, (nfsd->nd_flag & ND_KERBAUTH), false);
   2550      1.120       chs 	if (dirp && v3) {
   2551      1.131     pooka 		dirfor_ret = VOP_GETATTR(dirp, &dirfor, cred);
   2552       1.23      fvdl 	}
   2553       1.23      fvdl 	if (error) {
   2554      1.152  dholland 		if (nd.ni_pathbuf != NULL) {
   2555      1.152  dholland 			pathbuf_destroy(nd.ni_pathbuf);
   2556      1.160  dholland 			nd.ni_pathbuf = NULL;
   2557      1.152  dholland 		}
   2558       1.23      fvdl 		nfsm_reply(NFSX_WCCDATA(v3));
   2559       1.23      fvdl 		nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
   2560       1.23      fvdl 		if (dirp)
   2561       1.23      fvdl 			vrele(dirp);
   2562       1.23      fvdl 		return (0);
   2563       1.23      fvdl 	}
   2564        1.1       cgd 	vp = nd.ni_vp;
   2565        1.1       cgd 	if (vp->v_type != VDIR) {
   2566        1.1       cgd 		error = ENOTDIR;
   2567        1.1       cgd 		goto out;
   2568        1.1       cgd 	}
   2569        1.1       cgd 	/*
   2570        1.1       cgd 	 * No rmdir "." please.
   2571        1.1       cgd 	 */
   2572        1.1       cgd 	if (nd.ni_dvp == vp) {
   2573        1.1       cgd 		error = EINVAL;
   2574        1.1       cgd 		goto out;
   2575        1.1       cgd 	}
   2576        1.1       cgd 	/*
   2577        1.1       cgd 	 * The root of a mounted filesystem cannot be deleted.
   2578        1.1       cgd 	 */
   2579      1.130        ad 	if (vp->v_vflag & VV_ROOT)
   2580        1.1       cgd 		error = EBUSY;
   2581        1.1       cgd out:
   2582        1.1       cgd 	if (!error) {
   2583       1.23      fvdl 		nqsrv_getl(nd.ni_dvp, ND_WRITE);
   2584       1.23      fvdl 		nqsrv_getl(vp, ND_WRITE);
   2585       1.15   mycroft 		error = VOP_RMDIR(nd.ni_dvp, nd.ni_vp, &nd.ni_cnd);
   2586        1.1       cgd 	} else {
   2587       1.15   mycroft 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   2588        1.1       cgd 		if (nd.ni_dvp == nd.ni_vp)
   2589        1.1       cgd 			vrele(nd.ni_dvp);
   2590        1.1       cgd 		else
   2591        1.1       cgd 			vput(nd.ni_dvp);
   2592        1.1       cgd 		vput(vp);
   2593        1.1       cgd 	}
   2594      1.160  dholland 	if (nd.ni_pathbuf != NULL) {
   2595      1.160  dholland 		pathbuf_destroy(nd.ni_pathbuf);
   2596      1.160  dholland 		nd.ni_pathbuf = NULL;
   2597      1.160  dholland 	}
   2598       1.23      fvdl 	if (dirp) {
   2599      1.120       chs 		if (v3) {
   2600      1.161   hannken 			vn_lock(dirp, LK_SHARED | LK_RETRY);
   2601      1.131     pooka 			diraft_ret = VOP_GETATTR(dirp, &diraft, cred);
   2602      1.161   hannken 			VOP_UNLOCK(dirp);
   2603      1.120       chs 		}
   2604       1.23      fvdl 		vrele(dirp);
   2605       1.23      fvdl 	}
   2606       1.23      fvdl 	nfsm_reply(NFSX_WCCDATA(v3));
   2607       1.23      fvdl 	if (v3) {
   2608       1.23      fvdl 		nfsm_srvwcc_data(dirfor_ret, &dirfor, diraft_ret, &diraft);
   2609       1.23      fvdl 		return (0);
   2610       1.23      fvdl 	}
   2611        1.1       cgd 	nfsm_srvdone;
   2612        1.1       cgd }
   2613        1.1       cgd 
   2614        1.1       cgd /*
   2615        1.1       cgd  * nfs readdir service
   2616        1.1       cgd  * - mallocs what it thinks is enough to read
   2617       1.98      yamt  *	count rounded up to a multiple of NFS_SRVDIRBLKSIZ <= NFS_MAXREADDIR
   2618        1.1       cgd  * - calls VOP_READDIR()
   2619        1.1       cgd  * - loops around building the reply
   2620        1.1       cgd  *	if the output generated exceeds count break out of loop
   2621        1.1       cgd  *	The nfsm_clget macro is used here so that the reply will be packed
   2622        1.1       cgd  *	tightly in mbuf clusters.
   2623        1.1       cgd  * - it only knows that it has encountered eof when the VOP_READDIR()
   2624        1.1       cgd  *	reads nothing
   2625        1.1       cgd  * - as such one readdir rpc will return eof false although you are there
   2626        1.1       cgd  *	and then the next will return eof
   2627       1.11        ws  * - it trims out records with d_fileno == 0
   2628        1.1       cgd  *	this doesn't matter for Unix clients, but they might confuse clients
   2629        1.1       cgd  *	for other os'.
   2630       1.25       jtk  * - it trims out records with d_type == DT_WHT
   2631       1.25       jtk  *	these cannot be seen through NFS (unless we extend the protocol)
   2632        1.1       cgd  * NB: It is tempting to set eof to true if the VOP_READDIR() reads less
   2633        1.1       cgd  *	than requested, but this may not apply to all filesystems. For
   2634        1.1       cgd  *	example, client NFS does not { although it is never remote mounted
   2635        1.1       cgd  *	anyhow }
   2636       1.23      fvdl  *     The alternate call nfsrv_readdirplus() does lookups as well.
   2637        1.1       cgd  * PS: The NFS protocol spec. does not clarify what the "count" byte
   2638        1.1       cgd  *	argument is a count of.. just name strings and file id's or the
   2639        1.1       cgd  *	entire reply rpc or ...
   2640        1.1       cgd  *	I tried just file name and id sizes and it confused the Sun client,
   2641        1.1       cgd  *	so I am using the full rpc size now. The "paranoia.." comment refers
   2642        1.1       cgd  *	to including the status longwords that are not a part of the dir.
   2643        1.1       cgd  *	"entry" structures, but are in the rpc.
   2644        1.1       cgd  */
   2645       1.98      yamt 
   2646       1.98      yamt #define	NFS_SRVDIRBLKSIZ	1024
   2647       1.98      yamt 
   2648       1.15   mycroft struct flrep {
   2649       1.23      fvdl 	nfsuint64 fl_off;
   2650       1.23      fvdl 	u_int32_t fl_postopok;
   2651      1.140     pooka 	struct nfs_fattr fl_fattr; /* XXX: must be of fattr3 size */
   2652       1.23      fvdl 	u_int32_t fl_fhok;
   2653       1.23      fvdl 	u_int32_t fl_fhsize;
   2654      1.140     pooka 	/* handle comes here, filled in dynamically */
   2655       1.15   mycroft };
   2656       1.15   mycroft 
   2657       1.22  christos int
   2658      1.143       dsl nfsrv_readdir(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   2659        1.1       cgd {
   2660       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
   2661       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
   2662      1.126  christos 	char *dpos = nfsd->nd_dpos;
   2663      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
   2664       1.54  augustss 	char *bp, *be;
   2665       1.54  augustss 	struct mbuf *mp;
   2666       1.54  augustss 	struct dirent *dp;
   2667      1.126  christos 	char *cp;
   2668       1.54  augustss 	u_int32_t *tl;
   2669       1.54  augustss 	int32_t t1;
   2670      1.126  christos 	char *bpos;
   2671       1.67      matt 	struct mbuf *mb, *mreq, *mp2;
   2672       1.15   mycroft 	char *cpos, *cend, *cp2, *rbuf;
   2673        1.1       cgd 	struct vnode *vp;
   2674       1.23      fvdl 	struct vattr at;
   2675      1.117      yamt 	nfsrvfh_t nsfh;
   2676        1.1       cgd 	struct uio io;
   2677        1.1       cgd 	struct iovec iv;
   2678       1.23      fvdl 	int len, nlen, rem, xfer, tsiz, i, error = 0, getret = 1;
   2679      1.103  christos 	int siz, cnt, fullsiz, eofflag, rdonly, cache = 0, ncookies;
   2680       1.23      fvdl 	int v3 = (nfsd->nd_flag & ND_NFSV3);
   2681       1.23      fvdl 	u_quad_t frev, off, toff, verf;
   2682       1.38      fvdl 	off_t *cookies = NULL, *cookiep;
   2683       1.38      fvdl 	nfsuint64 jar;
   2684       1.15   mycroft 
   2685      1.117      yamt 	nfsm_srvmtofh(&nsfh);
   2686       1.23      fvdl 	if (v3) {
   2687       1.23      fvdl 		nfsm_dissect(tl, u_int32_t *, 5 * NFSX_UNSIGNED);
   2688       1.48      fair 		toff = fxdr_hyper(tl);
   2689       1.23      fvdl 		tl += 2;
   2690       1.48      fair 		verf = fxdr_hyper(tl);
   2691       1.23      fvdl 		tl += 2;
   2692       1.23      fvdl 	} else {
   2693       1.23      fvdl 		nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
   2694       1.23      fvdl 		toff = fxdr_unsigned(u_quad_t, *tl++);
   2695       1.23      fvdl 	}
   2696       1.23      fvdl 	off = toff;
   2697        1.1       cgd 	cnt = fxdr_unsigned(int, *tl);
   2698       1.98      yamt 	siz = ((cnt + NFS_SRVDIRBLKSIZ - 1) & ~(NFS_SRVDIRBLKSIZ - 1));
   2699       1.23      fvdl 	xfer = NFS_SRVMAXDATA(nfsd);
   2700       1.23      fvdl 	if (siz > xfer)
   2701       1.23      fvdl 		siz = xfer;
   2702        1.1       cgd 	fullsiz = siz;
   2703      1.117      yamt 	error = nfsrv_fhtovp(&nsfh, 1, &vp, cred, slp, nam,
   2704      1.125   thorpej 		 &rdonly, (nfsd->nd_flag & ND_KERBAUTH), false);
   2705       1.39      fvdl 	if (!error && vp->v_type != VDIR) {
   2706       1.39      fvdl 		error = ENOTDIR;
   2707       1.39      fvdl 		vput(vp);
   2708       1.39      fvdl 	}
   2709       1.23      fvdl 	if (error) {
   2710       1.23      fvdl 		nfsm_reply(NFSX_UNSIGNED);
   2711       1.23      fvdl 		nfsm_srvpostop_attr(getret, &at);
   2712       1.23      fvdl 		return (0);
   2713       1.23      fvdl 	}
   2714       1.23      fvdl 	nqsrv_getl(vp, ND_READ);
   2715       1.23      fvdl 	if (v3) {
   2716      1.131     pooka 		error = getret = VOP_GETATTR(vp, &at, cred);
   2717       1.23      fvdl #ifdef NFS3_STRICTVERF
   2718       1.23      fvdl 		/*
   2719       1.23      fvdl 		 * XXX This check is too strict for Solaris 2.5 clients.
   2720       1.23      fvdl 		 */
   2721       1.23      fvdl 		if (!error && toff && verf != at.va_filerev)
   2722       1.23      fvdl 			error = NFSERR_BAD_COOKIE;
   2723       1.23      fvdl #endif
   2724       1.23      fvdl 	}
   2725       1.23      fvdl 	if (!error)
   2726       1.99  christos 		error = nfsrv_access(vp, VEXEC, cred, rdonly, lwp, 0);
   2727       1.22  christos 	if (error) {
   2728        1.1       cgd 		vput(vp);
   2729       1.23      fvdl 		nfsm_reply(NFSX_POSTOPATTR(v3));
   2730       1.23      fvdl 		nfsm_srvpostop_attr(getret, &at);
   2731       1.23      fvdl 		return (0);
   2732        1.1       cgd 	}
   2733      1.151   hannken 	VOP_UNLOCK(vp);
   2734       1.56   thorpej 	rbuf = malloc(siz, M_TEMP, M_WAITOK);
   2735        1.1       cgd again:
   2736        1.1       cgd 	iv.iov_base = rbuf;
   2737        1.1       cgd 	iv.iov_len = fullsiz;
   2738        1.1       cgd 	io.uio_iov = &iv;
   2739        1.1       cgd 	io.uio_iovcnt = 1;
   2740       1.15   mycroft 	io.uio_offset = (off_t)off;
   2741        1.1       cgd 	io.uio_resid = fullsiz;
   2742        1.1       cgd 	io.uio_rw = UIO_READ;
   2743      1.101      yamt 	UIO_SETUP_SYSSPACE(&io);
   2744       1.23      fvdl 	eofflag = 0;
   2745       1.42      fvdl 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
   2746       1.23      fvdl 
   2747       1.42      fvdl 	error = VOP_READDIR(vp, &io, cred, &eofflag, &cookies, &ncookies);
   2748       1.23      fvdl 
   2749       1.15   mycroft 	off = (off_t)io.uio_offset;
   2750       1.23      fvdl 	if (!cookies && !error)
   2751       1.23      fvdl 		error = NFSERR_PERM;
   2752       1.23      fvdl 	if (v3) {
   2753      1.131     pooka 		getret = VOP_GETATTR(vp, &at, cred);
   2754       1.23      fvdl 		if (!error)
   2755       1.23      fvdl 			error = getret;
   2756       1.23      fvdl 	}
   2757       1.23      fvdl 
   2758      1.151   hannken 	VOP_UNLOCK(vp);
   2759        1.1       cgd 	if (error) {
   2760        1.1       cgd 		vrele(vp);
   2761      1.126  christos 		free((void *)rbuf, M_TEMP);
   2762       1.23      fvdl 		if (cookies)
   2763      1.126  christos 			free((void *)cookies, M_TEMP);
   2764       1.23      fvdl 		nfsm_reply(NFSX_POSTOPATTR(v3));
   2765       1.23      fvdl 		nfsm_srvpostop_attr(getret, &at);
   2766       1.23      fvdl 		return (0);
   2767        1.1       cgd 	}
   2768        1.1       cgd 	if (io.uio_resid) {
   2769        1.1       cgd 		siz -= io.uio_resid;
   2770        1.1       cgd 
   2771        1.1       cgd 		/*
   2772        1.1       cgd 		 * If nothing read, return eof
   2773        1.1       cgd 		 * rpc reply
   2774        1.1       cgd 		 */
   2775        1.1       cgd 		if (siz == 0) {
   2776        1.1       cgd 			vrele(vp);
   2777       1.23      fvdl 			nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_COOKIEVERF(v3) +
   2778       1.23      fvdl 				2 * NFSX_UNSIGNED);
   2779       1.23      fvdl 			if (v3) {
   2780       1.23      fvdl 				nfsm_srvpostop_attr(getret, &at);
   2781       1.23      fvdl 				nfsm_build(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
   2782       1.48      fair 				txdr_hyper(at.va_filerev, tl);
   2783       1.23      fvdl 				tl += 2;
   2784       1.23      fvdl 			} else
   2785       1.23      fvdl 				nfsm_build(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
   2786        1.1       cgd 			*tl++ = nfs_false;
   2787        1.1       cgd 			*tl = nfs_true;
   2788      1.126  christos 			free((void *)rbuf, M_TEMP);
   2789      1.126  christos 			free((void *)cookies, M_TEMP);
   2790        1.1       cgd 			return (0);
   2791        1.1       cgd 		}
   2792        1.1       cgd 	}
   2793        1.1       cgd 
   2794        1.1       cgd 	/*
   2795        1.1       cgd 	 * Check for degenerate cases of nothing useful read.
   2796        1.1       cgd 	 * If so go try again
   2797        1.1       cgd 	 */
   2798        1.8        ws 	cpos = rbuf;
   2799        1.1       cgd 	cend = rbuf + siz;
   2800       1.23      fvdl 	dp = (struct dirent *)cpos;
   2801       1.23      fvdl 	cookiep = cookies;
   2802       1.23      fvdl 
   2803       1.28      fvdl 	while (cpos < cend && ncookies > 0 &&
   2804       1.28      fvdl 		(dp->d_fileno == 0 || dp->d_type == DT_WHT)) {
   2805       1.23      fvdl 		cpos += dp->d_reclen;
   2806       1.11        ws 		dp = (struct dirent *)cpos;
   2807       1.23      fvdl 		cookiep++;
   2808       1.23      fvdl 		ncookies--;
   2809        1.1       cgd 	}
   2810       1.23      fvdl 	if (cpos >= cend || ncookies == 0) {
   2811       1.23      fvdl 		toff = off;
   2812        1.1       cgd 		siz = fullsiz;
   2813      1.115  christos 		free(cookies, M_TEMP);
   2814      1.124     pooka 		cookies = NULL;
   2815        1.1       cgd 		goto again;
   2816        1.1       cgd 	}
   2817        1.1       cgd 
   2818       1.23      fvdl 	len = 3 * NFSX_UNSIGNED;	/* paranoia, probably can be 0 */
   2819       1.23      fvdl 	nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_COOKIEVERF(v3) + siz);
   2820       1.23      fvdl 	if (v3) {
   2821       1.23      fvdl 		nfsm_srvpostop_attr(getret, &at);
   2822       1.23      fvdl 		nfsm_build(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
   2823       1.48      fair 		txdr_hyper(at.va_filerev, tl);
   2824       1.23      fvdl 	}
   2825       1.15   mycroft 	mp = mp2 = mb;
   2826       1.15   mycroft 	bp = bpos;
   2827       1.15   mycroft 	be = bp + M_TRAILINGSPACE(mp);
   2828       1.15   mycroft 
   2829       1.15   mycroft 	/* Loop through the records and build reply */
   2830       1.23      fvdl 	while (cpos < cend && ncookies > 0) {
   2831       1.25       jtk 		if (dp->d_fileno != 0 && dp->d_type != DT_WHT) {
   2832       1.15   mycroft 			nlen = dp->d_namlen;
   2833       1.15   mycroft 			rem = nfsm_rndup(nlen)-nlen;
   2834       1.23      fvdl 			len += (4 * NFSX_UNSIGNED + nlen + rem);
   2835       1.23      fvdl 			if (v3)
   2836       1.23      fvdl 				len += 2 * NFSX_UNSIGNED;
   2837       1.15   mycroft 			if (len > cnt) {
   2838       1.15   mycroft 				eofflag = 0;
   2839       1.15   mycroft 				break;
   2840       1.15   mycroft 			}
   2841       1.15   mycroft 			/*
   2842       1.15   mycroft 			 * Build the directory record xdr from
   2843       1.15   mycroft 			 * the dirent entry.
   2844       1.15   mycroft 			 */
   2845       1.15   mycroft 			nfsm_clget;
   2846       1.15   mycroft 			*tl = nfs_true;
   2847       1.15   mycroft 			bp += NFSX_UNSIGNED;
   2848       1.23      fvdl 			if (v3) {
   2849       1.23      fvdl 				nfsm_clget;
   2850       1.96      yamt 				*tl = txdr_unsigned(dp->d_fileno >> 32);
   2851       1.23      fvdl 				bp += NFSX_UNSIGNED;
   2852       1.23      fvdl 			}
   2853       1.15   mycroft 			nfsm_clget;
   2854       1.15   mycroft 			*tl = txdr_unsigned(dp->d_fileno);
   2855       1.15   mycroft 			bp += NFSX_UNSIGNED;
   2856       1.15   mycroft 			nfsm_clget;
   2857       1.15   mycroft 			*tl = txdr_unsigned(nlen);
   2858       1.15   mycroft 			bp += NFSX_UNSIGNED;
   2859       1.94     perry 
   2860       1.15   mycroft 			/* And loop around copying the name */
   2861       1.15   mycroft 			xfer = nlen;
   2862       1.15   mycroft 			cp = dp->d_name;
   2863       1.15   mycroft 			while (xfer > 0) {
   2864       1.15   mycroft 				nfsm_clget;
   2865       1.15   mycroft 				if ((bp+xfer) > be)
   2866       1.15   mycroft 					tsiz = be-bp;
   2867       1.15   mycroft 				else
   2868       1.15   mycroft 					tsiz = xfer;
   2869       1.44     perry 				memcpy(bp, cp, tsiz);
   2870       1.15   mycroft 				bp += tsiz;
   2871       1.15   mycroft 				xfer -= tsiz;
   2872       1.15   mycroft 				if (xfer > 0)
   2873       1.15   mycroft 					cp += tsiz;
   2874       1.15   mycroft 			}
   2875       1.23      fvdl 			/* And null pad to an int32_t boundary */
   2876       1.15   mycroft 			for (i = 0; i < rem; i++)
   2877       1.15   mycroft 				*bp++ = '\0';
   2878       1.15   mycroft 			nfsm_clget;
   2879       1.94     perry 
   2880       1.15   mycroft 			/* Finish off the record */
   2881       1.48      fair 			txdr_hyper(*cookiep, &jar);
   2882       1.23      fvdl 			if (v3) {
   2883       1.38      fvdl 				*tl = jar.nfsuquad[0];
   2884       1.23      fvdl 				bp += NFSX_UNSIGNED;
   2885       1.23      fvdl 				nfsm_clget;
   2886       1.23      fvdl 			}
   2887       1.38      fvdl 			*tl = jar.nfsuquad[1];
   2888       1.15   mycroft 			bp += NFSX_UNSIGNED;
   2889       1.15   mycroft 		}
   2890       1.15   mycroft 		cpos += dp->d_reclen;
   2891       1.15   mycroft 		dp = (struct dirent *)cpos;
   2892       1.23      fvdl 		cookiep++;
   2893       1.23      fvdl 		ncookies--;
   2894       1.15   mycroft 	}
   2895        1.1       cgd 	vrele(vp);
   2896       1.15   mycroft 	nfsm_clget;
   2897       1.15   mycroft 	*tl = nfs_false;
   2898       1.15   mycroft 	bp += NFSX_UNSIGNED;
   2899       1.15   mycroft 	nfsm_clget;
   2900       1.15   mycroft 	if (eofflag)
   2901       1.15   mycroft 		*tl = nfs_true;
   2902       1.15   mycroft 	else
   2903       1.15   mycroft 		*tl = nfs_false;
   2904       1.15   mycroft 	bp += NFSX_UNSIGNED;
   2905       1.15   mycroft 	if (mp != mb) {
   2906       1.15   mycroft 		if (bp < be)
   2907      1.126  christos 			mp->m_len = bp - mtod(mp, char *);
   2908       1.15   mycroft 	} else
   2909       1.15   mycroft 		mp->m_len += bp - bpos;
   2910      1.126  christos 	free((void *)rbuf, M_TEMP);
   2911      1.126  christos 	free((void *)cookies, M_TEMP);
   2912       1.15   mycroft 	nfsm_srvdone;
   2913       1.15   mycroft }
   2914       1.15   mycroft 
   2915       1.22  christos int
   2916      1.143       dsl nfsrv_readdirplus(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   2917       1.15   mycroft {
   2918       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
   2919       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
   2920      1.126  christos 	char *dpos = nfsd->nd_dpos;
   2921      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
   2922       1.54  augustss 	char *bp, *be;
   2923       1.54  augustss 	struct mbuf *mp;
   2924       1.54  augustss 	struct dirent *dp;
   2925      1.126  christos 	char *cp;
   2926       1.54  augustss 	u_int32_t *tl;
   2927       1.54  augustss 	int32_t t1;
   2928      1.126  christos 	char *bpos;
   2929       1.67      matt 	struct mbuf *mb, *mreq, *mp2;
   2930       1.15   mycroft 	char *cpos, *cend, *cp2, *rbuf;
   2931       1.15   mycroft 	struct vnode *vp, *nvp;
   2932       1.15   mycroft 	struct flrep fl;
   2933      1.117      yamt 	nfsrvfh_t nsfh;
   2934       1.15   mycroft 	struct uio io;
   2935       1.15   mycroft 	struct iovec iv;
   2936       1.23      fvdl 	struct vattr va, at, *vap = &va;
   2937       1.23      fvdl 	struct nfs_fattr *fp;
   2938       1.23      fvdl 	int len, nlen, rem, xfer, tsiz, i, error = 0, getret = 1;
   2939      1.103  christos 	int siz, cnt, fullsiz, eofflag, rdonly, cache = 0, dirlen, ncookies;
   2940       1.23      fvdl 	u_quad_t frev, off, toff, verf;
   2941       1.38      fvdl 	off_t *cookies = NULL, *cookiep;
   2942       1.15   mycroft 
   2943      1.117      yamt 	nfsm_srvmtofh(&nsfh);
   2944       1.23      fvdl 	nfsm_dissect(tl, u_int32_t *, 6 * NFSX_UNSIGNED);
   2945       1.48      fair 	toff = fxdr_hyper(tl);
   2946       1.23      fvdl 	tl += 2;
   2947       1.48      fair 	verf = fxdr_hyper(tl);
   2948       1.23      fvdl 	tl += 2;
   2949       1.23      fvdl 	siz = fxdr_unsigned(int, *tl++);
   2950       1.23      fvdl 	cnt = fxdr_unsigned(int, *tl);
   2951       1.23      fvdl 	off = toff;
   2952       1.98      yamt 	siz = ((siz + NFS_SRVDIRBLKSIZ - 1) & ~(NFS_SRVDIRBLKSIZ - 1));
   2953       1.23      fvdl 	xfer = NFS_SRVMAXDATA(nfsd);
   2954       1.23      fvdl 	if (siz > xfer)
   2955       1.23      fvdl 		siz = xfer;
   2956       1.15   mycroft 	fullsiz = siz;
   2957      1.117      yamt 	error = nfsrv_fhtovp(&nsfh, 1, &vp, cred, slp, nam,
   2958      1.125   thorpej 		 &rdonly, (nfsd->nd_flag & ND_KERBAUTH), false);
   2959       1.39      fvdl 	if (!error && vp->v_type != VDIR) {
   2960       1.39      fvdl 		error = ENOTDIR;
   2961       1.39      fvdl 		vput(vp);
   2962       1.39      fvdl 	}
   2963       1.23      fvdl 	if (error) {
   2964       1.23      fvdl 		nfsm_reply(NFSX_UNSIGNED);
   2965       1.23      fvdl 		nfsm_srvpostop_attr(getret, &at);
   2966       1.23      fvdl 		return (0);
   2967       1.23      fvdl 	}
   2968      1.131     pooka 	error = getret = VOP_GETATTR(vp, &at, cred);
   2969       1.23      fvdl #ifdef NFS3_STRICTVERF
   2970       1.23      fvdl 	/*
   2971       1.23      fvdl 	 * XXX This check is too strict for Solaris 2.5 clients.
   2972       1.23      fvdl 	 */
   2973       1.23      fvdl 	if (!error && toff && verf != at.va_filerev)
   2974       1.23      fvdl 		error = NFSERR_BAD_COOKIE;
   2975       1.23      fvdl #endif
   2976       1.23      fvdl 	if (!error) {
   2977       1.23      fvdl 		nqsrv_getl(vp, ND_READ);
   2978       1.99  christos 		error = nfsrv_access(vp, VEXEC, cred, rdonly, lwp, 0);
   2979       1.23      fvdl 	}
   2980       1.22  christos 	if (error) {
   2981       1.15   mycroft 		vput(vp);
   2982       1.23      fvdl 		nfsm_reply(NFSX_V3POSTOPATTR);
   2983       1.23      fvdl 		nfsm_srvpostop_attr(getret, &at);
   2984       1.23      fvdl 		return (0);
   2985       1.15   mycroft 	}
   2986      1.151   hannken 	VOP_UNLOCK(vp);
   2987       1.23      fvdl 
   2988       1.56   thorpej 	rbuf = malloc(siz, M_TEMP, M_WAITOK);
   2989       1.15   mycroft again:
   2990       1.15   mycroft 	iv.iov_base = rbuf;
   2991       1.15   mycroft 	iv.iov_len = fullsiz;
   2992       1.15   mycroft 	io.uio_iov = &iv;
   2993       1.15   mycroft 	io.uio_iovcnt = 1;
   2994       1.15   mycroft 	io.uio_offset = (off_t)off;
   2995       1.15   mycroft 	io.uio_resid = fullsiz;
   2996       1.15   mycroft 	io.uio_rw = UIO_READ;
   2997      1.101      yamt 	UIO_SETUP_SYSSPACE(&io);
   2998       1.23      fvdl 	eofflag = 0;
   2999       1.23      fvdl 
   3000       1.42      fvdl 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
   3001       1.42      fvdl 
   3002       1.42      fvdl 	error = VOP_READDIR(vp, &io, cred, &eofflag, &cookies, &ncookies);
   3003       1.23      fvdl 
   3004       1.23      fvdl 	off = (u_quad_t)io.uio_offset;
   3005      1.131     pooka 	getret = VOP_GETATTR(vp, &at, cred);
   3006       1.23      fvdl 
   3007      1.151   hannken 	VOP_UNLOCK(vp);
   3008       1.36      fvdl 
   3009       1.36      fvdl 	/*
   3010       1.36      fvdl 	 * If the VGET operation doesn't work for this filesystem,
   3011       1.36      fvdl 	 * we can't support readdirplus. Returning NOTSUPP should
   3012       1.36      fvdl 	 * make clients fall back to plain readdir.
   3013       1.36      fvdl 	 * There's no need to check for VPTOFH as well, we wouldn't
   3014       1.36      fvdl 	 * even be here otherwise.
   3015       1.36      fvdl 	 */
   3016       1.36      fvdl 	if (!getret) {
   3017       1.78   thorpej 		if ((getret = VFS_VGET(vp->v_mount, at.va_fileid, &nvp)))
   3018       1.36      fvdl 			getret = (getret == EOPNOTSUPP) ?
   3019       1.36      fvdl 				NFSERR_NOTSUPP : NFSERR_IO;
   3020       1.36      fvdl 		else
   3021       1.36      fvdl 			vput(nvp);
   3022       1.36      fvdl 	}
   3023       1.36      fvdl 
   3024       1.23      fvdl 	if (!cookies && !error)
   3025       1.23      fvdl 		error = NFSERR_PERM;
   3026       1.23      fvdl 	if (!error)
   3027       1.23      fvdl 		error = getret;
   3028       1.15   mycroft 	if (error) {
   3029       1.15   mycroft 		vrele(vp);
   3030       1.23      fvdl 		if (cookies)
   3031      1.126  christos 			free((void *)cookies, M_TEMP);
   3032      1.126  christos 		free((void *)rbuf, M_TEMP);
   3033       1.23      fvdl 		nfsm_reply(NFSX_V3POSTOPATTR);
   3034       1.23      fvdl 		nfsm_srvpostop_attr(getret, &at);
   3035       1.23      fvdl 		return (0);
   3036       1.15   mycroft 	}
   3037       1.15   mycroft 	if (io.uio_resid) {
   3038       1.15   mycroft 		siz -= io.uio_resid;
   3039       1.15   mycroft 
   3040       1.15   mycroft 		/*
   3041       1.15   mycroft 		 * If nothing read, return eof
   3042       1.15   mycroft 		 * rpc reply
   3043       1.15   mycroft 		 */
   3044       1.15   mycroft 		if (siz == 0) {
   3045       1.15   mycroft 			vrele(vp);
   3046       1.23      fvdl 			nfsm_reply(NFSX_V3POSTOPATTR + NFSX_V3COOKIEVERF +
   3047       1.23      fvdl 				2 * NFSX_UNSIGNED);
   3048       1.23      fvdl 			nfsm_srvpostop_attr(getret, &at);
   3049       1.23      fvdl 			nfsm_build(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
   3050       1.48      fair 			txdr_hyper(at.va_filerev, tl);
   3051       1.23      fvdl 			tl += 2;
   3052       1.15   mycroft 			*tl++ = nfs_false;
   3053       1.15   mycroft 			*tl = nfs_true;
   3054      1.126  christos 			free((void *)cookies, M_TEMP);
   3055      1.126  christos 			free((void *)rbuf, M_TEMP);
   3056       1.15   mycroft 			return (0);
   3057       1.15   mycroft 		}
   3058       1.15   mycroft 	}
   3059       1.15   mycroft 
   3060       1.15   mycroft 	/*
   3061       1.15   mycroft 	 * Check for degenerate cases of nothing useful read.
   3062       1.15   mycroft 	 * If so go try again
   3063       1.15   mycroft 	 */
   3064       1.15   mycroft 	cpos = rbuf;
   3065       1.15   mycroft 	cend = rbuf + siz;
   3066       1.23      fvdl 	dp = (struct dirent *)cpos;
   3067       1.23      fvdl 	cookiep = cookies;
   3068       1.23      fvdl 
   3069       1.29      fvdl 	while (cpos < cend && ncookies > 0 &&
   3070       1.29      fvdl 		(dp->d_fileno == 0 || dp->d_type == DT_WHT)) {
   3071       1.23      fvdl 		cpos += dp->d_reclen;
   3072       1.15   mycroft 		dp = (struct dirent *)cpos;
   3073       1.23      fvdl 		cookiep++;
   3074       1.23      fvdl 		ncookies--;
   3075       1.15   mycroft 	}
   3076       1.23      fvdl 	if (cpos >= cend || ncookies == 0) {
   3077       1.23      fvdl 		toff = off;
   3078       1.15   mycroft 		siz = fullsiz;
   3079      1.115  christos 		free(cookies, M_TEMP);
   3080      1.124     pooka 		cookies = NULL;
   3081       1.15   mycroft 		goto again;
   3082       1.15   mycroft 	}
   3083       1.15   mycroft 
   3084       1.23      fvdl 	dirlen = len = NFSX_V3POSTOPATTR + NFSX_V3COOKIEVERF + 2 * NFSX_UNSIGNED;
   3085       1.23      fvdl 	nfsm_reply(cnt);
   3086       1.23      fvdl 	nfsm_srvpostop_attr(getret, &at);
   3087       1.23      fvdl 	nfsm_build(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
   3088       1.48      fair 	txdr_hyper(at.va_filerev, tl);
   3089       1.15   mycroft 	mp = mp2 = mb;
   3090       1.15   mycroft 	bp = bpos;
   3091       1.15   mycroft 	be = bp + M_TRAILINGSPACE(mp);
   3092        1.1       cgd 
   3093        1.1       cgd 	/* Loop through the records and build reply */
   3094       1.23      fvdl 	while (cpos < cend && ncookies > 0) {
   3095       1.25       jtk 		if (dp->d_fileno != 0 && dp->d_type != DT_WHT) {
   3096      1.117      yamt 			nfsrvfh_t nnsfh;
   3097      1.117      yamt 
   3098        1.1       cgd 			nlen = dp->d_namlen;
   3099        1.1       cgd 			rem = nfsm_rndup(nlen)-nlen;
   3100       1.94     perry 
   3101        1.1       cgd 			/*
   3102       1.15   mycroft 			 * For readdir_and_lookup get the vnode using
   3103       1.15   mycroft 			 * the file number.
   3104        1.1       cgd 			 */
   3105       1.78   thorpej 			if (VFS_VGET(vp->v_mount, dp->d_fileno, &nvp))
   3106       1.15   mycroft 				goto invalid;
   3107      1.125   thorpej 			if (nfsrv_composefh(nvp, &nnsfh, true)) {
   3108       1.15   mycroft 				vput(nvp);
   3109       1.15   mycroft 				goto invalid;
   3110       1.15   mycroft 			}
   3111      1.131     pooka 			if (VOP_GETATTR(nvp, vap, cred)) {
   3112       1.15   mycroft 				vput(nvp);
   3113       1.15   mycroft 				goto invalid;
   3114       1.15   mycroft 			}
   3115       1.15   mycroft 			vput(nvp);
   3116       1.23      fvdl 
   3117       1.23      fvdl 			/*
   3118       1.23      fvdl 			 * If either the dircount or maxcount will be
   3119       1.23      fvdl 			 * exceeded, get out now. Both of these lengths
   3120       1.23      fvdl 			 * are calculated conservatively, including all
   3121       1.23      fvdl 			 * XDR overheads.
   3122       1.23      fvdl 			 */
   3123       1.52      fvdl 			len += (8 * NFSX_UNSIGNED + nlen + rem + NFSX_V3FH +
   3124       1.23      fvdl 				NFSX_V3POSTOPATTR);
   3125       1.23      fvdl 			dirlen += (6 * NFSX_UNSIGNED + nlen + rem);
   3126       1.23      fvdl 			if (len > cnt || dirlen > fullsiz) {
   3127        1.1       cgd 				eofflag = 0;
   3128        1.1       cgd 				break;
   3129        1.1       cgd 			}
   3130       1.23      fvdl 
   3131       1.15   mycroft 			/*
   3132       1.15   mycroft 			 * Build the directory record xdr from
   3133       1.15   mycroft 			 * the dirent entry.
   3134       1.15   mycroft 			 */
   3135       1.23      fvdl 			fp = (struct nfs_fattr *)&fl.fl_fattr;
   3136       1.23      fvdl 			nfsm_srvfillattr(vap, fp);
   3137       1.23      fvdl 			fl.fl_fhsize = txdr_unsigned(NFSX_V3FH);
   3138       1.23      fvdl 			fl.fl_fhok = nfs_true;
   3139       1.23      fvdl 			fl.fl_postopok = nfs_true;
   3140       1.48      fair 			txdr_hyper(*cookiep, fl.fl_off.nfsuquad);
   3141       1.23      fvdl 
   3142        1.1       cgd 			nfsm_clget;
   3143        1.1       cgd 			*tl = nfs_true;
   3144        1.1       cgd 			bp += NFSX_UNSIGNED;
   3145       1.23      fvdl 			nfsm_clget;
   3146       1.96      yamt 			*tl = txdr_unsigned(dp->d_fileno >> 32);
   3147       1.23      fvdl 			bp += NFSX_UNSIGNED;
   3148        1.1       cgd 			nfsm_clget;
   3149       1.11        ws 			*tl = txdr_unsigned(dp->d_fileno);
   3150        1.1       cgd 			bp += NFSX_UNSIGNED;
   3151        1.1       cgd 			nfsm_clget;
   3152        1.1       cgd 			*tl = txdr_unsigned(nlen);
   3153        1.1       cgd 			bp += NFSX_UNSIGNED;
   3154       1.94     perry 
   3155       1.15   mycroft 			/* And loop around copying the name */
   3156        1.1       cgd 			xfer = nlen;
   3157        1.1       cgd 			cp = dp->d_name;
   3158        1.1       cgd 			while (xfer > 0) {
   3159        1.1       cgd 				nfsm_clget;
   3160       1.23      fvdl 				if ((bp + xfer) > be)
   3161       1.23      fvdl 					tsiz = be - bp;
   3162        1.1       cgd 				else
   3163        1.1       cgd 					tsiz = xfer;
   3164       1.44     perry 				memcpy(bp, cp, tsiz);
   3165        1.1       cgd 				bp += tsiz;
   3166        1.1       cgd 				xfer -= tsiz;
   3167        1.1       cgd 				if (xfer > 0)
   3168        1.1       cgd 					cp += tsiz;
   3169        1.1       cgd 			}
   3170       1.23      fvdl 			/* And null pad to an int32_t boundary */
   3171        1.1       cgd 			for (i = 0; i < rem; i++)
   3172        1.1       cgd 				*bp++ = '\0';
   3173       1.94     perry 
   3174       1.23      fvdl 			/*
   3175       1.23      fvdl 			 * Now copy the flrep structure out.
   3176       1.23      fvdl 			 */
   3177      1.117      yamt 			xfer = sizeof(struct flrep);
   3178      1.126  christos 			cp = (void *)&fl;
   3179       1.23      fvdl 			while (xfer > 0) {
   3180       1.23      fvdl 				nfsm_clget;
   3181       1.23      fvdl 				if ((bp + xfer) > be)
   3182       1.23      fvdl 					tsiz = be - bp;
   3183       1.23      fvdl 				else
   3184       1.23      fvdl 					tsiz = xfer;
   3185       1.44     perry 				memcpy(bp, cp, tsiz);
   3186       1.23      fvdl 				bp += tsiz;
   3187       1.23      fvdl 				xfer -= tsiz;
   3188       1.23      fvdl 				if (xfer > 0)
   3189       1.23      fvdl 					cp += tsiz;
   3190       1.23      fvdl 			}
   3191      1.117      yamt 
   3192      1.117      yamt 			/*
   3193      1.117      yamt 			 * ... and filehandle.
   3194      1.117      yamt 			 */
   3195      1.117      yamt 			xfer = NFSRVFH_SIZE(&nnsfh);
   3196      1.117      yamt 			cp = NFSRVFH_DATA(&nnsfh);
   3197      1.117      yamt 			while (xfer > 0) {
   3198      1.117      yamt 				nfsm_clget;
   3199      1.117      yamt 				if ((bp + xfer) > be)
   3200      1.117      yamt 					tsiz = be - bp;
   3201      1.117      yamt 				else
   3202      1.117      yamt 					tsiz = xfer;
   3203      1.117      yamt 				memcpy(bp, cp, tsiz);
   3204      1.117      yamt 				bp += tsiz;
   3205      1.117      yamt 				xfer -= tsiz;
   3206      1.117      yamt 				if (xfer > 0)
   3207      1.117      yamt 					cp += tsiz;
   3208      1.117      yamt 			}
   3209        1.8        ws 		}
   3210       1.15   mycroft invalid:
   3211        1.1       cgd 		cpos += dp->d_reclen;
   3212       1.11        ws 		dp = (struct dirent *)cpos;
   3213       1.23      fvdl 		cookiep++;
   3214       1.23      fvdl 		ncookies--;
   3215        1.1       cgd 	}
   3216       1.15   mycroft 	vrele(vp);
   3217        1.1       cgd 	nfsm_clget;
   3218        1.1       cgd 	*tl = nfs_false;
   3219        1.1       cgd 	bp += NFSX_UNSIGNED;
   3220        1.1       cgd 	nfsm_clget;
   3221        1.1       cgd 	if (eofflag)
   3222        1.1       cgd 		*tl = nfs_true;
   3223        1.1       cgd 	else
   3224        1.1       cgd 		*tl = nfs_false;
   3225        1.1       cgd 	bp += NFSX_UNSIGNED;
   3226       1.15   mycroft 	if (mp != mb) {
   3227       1.15   mycroft 		if (bp < be)
   3228      1.126  christos 			mp->m_len = bp - mtod(mp, char *);
   3229       1.15   mycroft 	} else
   3230       1.15   mycroft 		mp->m_len += bp - bpos;
   3231      1.126  christos 	free((void *)cookies, M_TEMP);
   3232      1.126  christos 	free((void *)rbuf, M_TEMP);
   3233       1.23      fvdl 	nfsm_srvdone;
   3234       1.23      fvdl }
   3235       1.23      fvdl 
   3236       1.23      fvdl /*
   3237       1.23      fvdl  * nfs commit service
   3238       1.23      fvdl  */
   3239       1.23      fvdl int
   3240      1.143       dsl nfsrv_commit(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   3241       1.23      fvdl {
   3242       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
   3243       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
   3244      1.126  christos 	char *dpos = nfsd->nd_dpos;
   3245      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
   3246       1.23      fvdl 	struct vattr bfor, aft;
   3247       1.23      fvdl 	struct vnode *vp;
   3248      1.117      yamt 	nfsrvfh_t nsfh;
   3249       1.54  augustss 	u_int32_t *tl;
   3250       1.54  augustss 	int32_t t1;
   3251      1.126  christos 	char *bpos;
   3252      1.103  christos 	int error = 0, rdonly, for_ret = 1, aft_ret = 1, cache = 0;
   3253       1.93      yamt 	uint32_t cnt;
   3254       1.23      fvdl 	char *cp2;
   3255       1.67      matt 	struct mbuf *mb, *mreq;
   3256       1.65    bouyer 	u_quad_t frev, off, end;
   3257       1.23      fvdl 
   3258      1.117      yamt 	nfsm_srvmtofh(&nsfh);
   3259       1.23      fvdl 	nfsm_dissect(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
   3260       1.23      fvdl 
   3261       1.48      fair 	off = fxdr_hyper(tl);
   3262       1.23      fvdl 	tl += 2;
   3263       1.93      yamt 	cnt = fxdr_unsigned(uint32_t, *tl);
   3264      1.117      yamt 	error = nfsrv_fhtovp(&nsfh, 1, &vp, cred, slp, nam,
   3265      1.125   thorpej 		 &rdonly, (nfsd->nd_flag & ND_KERBAUTH), false);
   3266       1.23      fvdl 	if (error) {
   3267       1.23      fvdl 		nfsm_reply(2 * NFSX_UNSIGNED);
   3268       1.23      fvdl 		nfsm_srvwcc_data(for_ret, &bfor, aft_ret, &aft);
   3269       1.23      fvdl 		return (0);
   3270       1.23      fvdl 	}
   3271      1.131     pooka 	for_ret = VOP_GETATTR(vp, &bfor, cred);
   3272       1.65    bouyer 	end = (cnt > 0) ? off + cnt : vp->v_size;
   3273       1.65    bouyer 	if (end < off || end > vp->v_size)
   3274       1.65    bouyer 		end = vp->v_size;
   3275       1.80    bouyer 	if (off < vp->v_size)
   3276      1.131     pooka 		error = VOP_FSYNC(vp, cred, FSYNC_WAIT, off, end);
   3277       1.80    bouyer 	/* else error == 0, from nfsrv_fhtovp() */
   3278      1.131     pooka 	aft_ret = VOP_GETATTR(vp, &aft, cred);
   3279       1.23      fvdl 	vput(vp);
   3280       1.23      fvdl 	nfsm_reply(NFSX_V3WCCDATA + NFSX_V3WRITEVERF);
   3281       1.23      fvdl 	nfsm_srvwcc_data(for_ret, &bfor, aft_ret, &aft);
   3282       1.23      fvdl 	if (!error) {
   3283       1.23      fvdl 		nfsm_build(tl, u_int32_t *, NFSX_V3WRITEVERF);
   3284       1.23      fvdl 		*tl++ = txdr_unsigned(boottime.tv_sec);
   3285      1.142  christos 		*tl = txdr_unsigned(boottime.tv_nsec / 1000);
   3286       1.82   hannken 	} else {
   3287       1.23      fvdl 		return (0);
   3288       1.82   hannken 	}
   3289        1.1       cgd 	nfsm_srvdone;
   3290        1.1       cgd }
   3291        1.1       cgd 
   3292        1.1       cgd /*
   3293        1.1       cgd  * nfs statfs service
   3294        1.1       cgd  */
   3295       1.22  christos int
   3296      1.143       dsl nfsrv_statfs(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   3297        1.1       cgd {
   3298       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
   3299       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
   3300      1.126  christos 	char *dpos = nfsd->nd_dpos;
   3301      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
   3302      1.111  christos 	struct statvfs *sf = NULL;
   3303       1.54  augustss 	struct nfs_statfs *sfp;
   3304       1.54  augustss 	u_int32_t *tl;
   3305       1.54  augustss 	int32_t t1;
   3306      1.126  christos 	char *bpos;
   3307      1.103  christos 	int error = 0, rdonly, cache = 0, getret = 1;
   3308       1.23      fvdl 	int v3 = (nfsd->nd_flag & ND_NFSV3);
   3309        1.1       cgd 	char *cp2;
   3310       1.67      matt 	struct mbuf *mb, *mreq;
   3311        1.1       cgd 	struct vnode *vp;
   3312       1.23      fvdl 	struct vattr at;
   3313      1.117      yamt 	nfsrvfh_t nsfh;
   3314       1.23      fvdl 	u_quad_t frev, tval;
   3315        1.1       cgd 
   3316      1.117      yamt 	nfsm_srvmtofh(&nsfh);
   3317      1.117      yamt 	error = nfsrv_fhtovp(&nsfh, 1, &vp, cred, slp, nam,
   3318      1.125   thorpej 		 &rdonly, (nfsd->nd_flag & ND_KERBAUTH), false);
   3319       1.23      fvdl 	if (error) {
   3320       1.23      fvdl 		nfsm_reply(NFSX_UNSIGNED);
   3321       1.23      fvdl 		nfsm_srvpostop_attr(getret, &at);
   3322       1.23      fvdl 		return (0);
   3323       1.23      fvdl 	}
   3324      1.111  christos 	sf = malloc(sizeof(*sf), M_TEMP, M_WAITOK);
   3325      1.131     pooka 	error = VFS_STATVFS(vp->v_mount, sf);
   3326      1.131     pooka 	getret = VOP_GETATTR(vp, &at, cred);
   3327        1.1       cgd 	vput(vp);
   3328       1.23      fvdl 	nfsm_reply(NFSX_POSTOPATTR(v3) + NFSX_STATFS(v3));
   3329       1.23      fvdl 	if (v3)
   3330       1.23      fvdl 		nfsm_srvpostop_attr(getret, &at);
   3331      1.111  christos 	if (error) {
   3332      1.111  christos 		free(sf, M_TEMP);
   3333       1.23      fvdl 		return (0);
   3334      1.111  christos 	}
   3335       1.23      fvdl 	nfsm_build(sfp, struct nfs_statfs *, NFSX_STATFS(v3));
   3336       1.23      fvdl 	if (v3) {
   3337       1.88  christos 		tval = (u_quad_t)((quad_t)sf->f_blocks * (quad_t)sf->f_frsize);
   3338       1.48      fair 		txdr_hyper(tval, &sfp->sf_tbytes);
   3339       1.88  christos 		tval = (u_quad_t)((quad_t)sf->f_bfree * (quad_t)sf->f_frsize);
   3340       1.48      fair 		txdr_hyper(tval, &sfp->sf_fbytes);
   3341       1.88  christos 		tval = (u_quad_t)((quad_t)sf->f_bavail * (quad_t)sf->f_frsize);
   3342       1.48      fair 		txdr_hyper(tval, &sfp->sf_abytes);
   3343       1.47   mycroft 		tval = (u_quad_t)sf->f_files;
   3344       1.48      fair 		txdr_hyper(tval, &sfp->sf_tfiles);
   3345       1.47   mycroft 		tval = (u_quad_t)sf->f_ffree;
   3346       1.48      fair 		txdr_hyper(tval, &sfp->sf_ffiles);
   3347       1.48      fair 		txdr_hyper(tval, &sfp->sf_afiles);
   3348       1.23      fvdl 		sfp->sf_invarsec = 0;
   3349       1.23      fvdl 	} else {
   3350       1.23      fvdl 		sfp->sf_tsize = txdr_unsigned(NFS_MAXDGRAMDATA);
   3351       1.88  christos 		sfp->sf_bsize = txdr_unsigned(sf->f_frsize);
   3352       1.23      fvdl 		sfp->sf_blocks = txdr_unsigned(sf->f_blocks);
   3353       1.23      fvdl 		sfp->sf_bfree = txdr_unsigned(sf->f_bfree);
   3354       1.23      fvdl 		sfp->sf_bavail = txdr_unsigned(sf->f_bavail);
   3355       1.23      fvdl 	}
   3356      1.111  christos nfsmout:
   3357      1.111  christos 	if (sf)
   3358      1.111  christos 	    free(sf, M_TEMP);
   3359      1.111  christos 	return error;
   3360       1.23      fvdl }
   3361       1.23      fvdl 
   3362       1.23      fvdl /*
   3363       1.23      fvdl  * nfs fsinfo service
   3364       1.23      fvdl  */
   3365       1.23      fvdl int
   3366      1.143       dsl nfsrv_fsinfo(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   3367       1.23      fvdl {
   3368       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
   3369       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
   3370      1.126  christos 	char *dpos = nfsd->nd_dpos;
   3371      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
   3372       1.54  augustss 	u_int32_t *tl;
   3373       1.54  augustss 	struct nfsv3_fsinfo *sip;
   3374       1.54  augustss 	int32_t t1;
   3375      1.126  christos 	char *bpos;
   3376      1.103  christos 	int error = 0, rdonly, cache = 0, getret = 1;
   3377       1.69      yamt 	uint32_t maxdata;
   3378       1.23      fvdl 	char *cp2;
   3379       1.67      matt 	struct mbuf *mb, *mreq;
   3380       1.23      fvdl 	struct vnode *vp;
   3381       1.23      fvdl 	struct vattr at;
   3382      1.117      yamt 	nfsrvfh_t nsfh;
   3383       1.37      fvdl 	u_quad_t frev, maxfsize;
   3384      1.111  christos 	struct statvfs *sb;
   3385       1.23      fvdl 
   3386      1.117      yamt 	nfsm_srvmtofh(&nsfh);
   3387      1.117      yamt 	error = nfsrv_fhtovp(&nsfh, 1, &vp, cred, slp, nam,
   3388      1.125   thorpej 		 &rdonly, (nfsd->nd_flag & ND_KERBAUTH), false);
   3389       1.23      fvdl 	if (error) {
   3390       1.23      fvdl 		nfsm_reply(NFSX_UNSIGNED);
   3391       1.23      fvdl 		nfsm_srvpostop_attr(getret, &at);
   3392       1.23      fvdl 		return (0);
   3393       1.15   mycroft 	}
   3394       1.37      fvdl 
   3395       1.37      fvdl 	/* XXX Try to make a guess on the max file size. */
   3396      1.111  christos 	sb = malloc(sizeof(*sb), M_TEMP, M_WAITOK);
   3397      1.131     pooka 	VFS_STATVFS(vp->v_mount, sb);
   3398      1.111  christos 	maxfsize = (u_quad_t)0x80000000 * sb->f_frsize - 1;
   3399      1.111  christos 	free(sb, M_TEMP);
   3400       1.37      fvdl 
   3401      1.131     pooka 	getret = VOP_GETATTR(vp, &at, cred);
   3402       1.23      fvdl 	vput(vp);
   3403       1.23      fvdl 	nfsm_reply(NFSX_V3POSTOPATTR + NFSX_V3FSINFO);
   3404       1.23      fvdl 	nfsm_srvpostop_attr(getret, &at);
   3405       1.23      fvdl 	nfsm_build(sip, struct nfsv3_fsinfo *, NFSX_V3FSINFO);
   3406       1.23      fvdl 
   3407       1.23      fvdl 	/*
   3408       1.23      fvdl 	 * XXX
   3409       1.23      fvdl 	 * There should be file system VFS OP(s) to get this information.
   3410       1.23      fvdl 	 * For now, assume ufs.
   3411       1.23      fvdl 	 */
   3412       1.23      fvdl 	if (slp->ns_so->so_type == SOCK_DGRAM)
   3413       1.69      yamt 		maxdata = NFS_MAXDGRAMDATA;
   3414       1.23      fvdl 	else
   3415       1.69      yamt 		maxdata = NFS_MAXDATA;
   3416       1.69      yamt 	sip->fs_rtmax = txdr_unsigned(maxdata);
   3417       1.69      yamt 	sip->fs_rtpref = txdr_unsigned(maxdata);
   3418       1.23      fvdl 	sip->fs_rtmult = txdr_unsigned(NFS_FABLKSIZE);
   3419       1.69      yamt 	sip->fs_wtmax = txdr_unsigned(maxdata);
   3420       1.69      yamt 	sip->fs_wtpref = txdr_unsigned(maxdata);
   3421       1.23      fvdl 	sip->fs_wtmult = txdr_unsigned(NFS_FABLKSIZE);
   3422       1.69      yamt 	sip->fs_dtpref = txdr_unsigned(maxdata);
   3423       1.48      fair 	txdr_hyper(maxfsize, &sip->fs_maxfilesize);
   3424       1.23      fvdl 	sip->fs_timedelta.nfsv3_sec = 0;
   3425       1.23      fvdl 	sip->fs_timedelta.nfsv3_nsec = txdr_unsigned(1);
   3426       1.23      fvdl 	sip->fs_properties = txdr_unsigned(NFSV3FSINFO_LINK |
   3427       1.23      fvdl 		NFSV3FSINFO_SYMLINK | NFSV3FSINFO_HOMOGENEOUS |
   3428       1.23      fvdl 		NFSV3FSINFO_CANSETTIME);
   3429       1.23      fvdl 	nfsm_srvdone;
   3430       1.23      fvdl }
   3431       1.23      fvdl 
   3432       1.23      fvdl /*
   3433       1.23      fvdl  * nfs pathconf service
   3434       1.23      fvdl  */
   3435       1.23      fvdl int
   3436      1.143       dsl nfsrv_pathconf(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, struct lwp *lwp, struct mbuf **mrq)
   3437       1.23      fvdl {
   3438       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
   3439       1.23      fvdl 	struct mbuf *nam = nfsd->nd_nam;
   3440      1.126  christos 	char *dpos = nfsd->nd_dpos;
   3441      1.109      elad 	kauth_cred_t cred = nfsd->nd_cr;
   3442       1.54  augustss 	u_int32_t *tl;
   3443       1.54  augustss 	struct nfsv3_pathconf *pc;
   3444       1.54  augustss 	int32_t t1;
   3445      1.126  christos 	char *bpos;
   3446      1.103  christos 	int error = 0, rdonly, cache = 0, getret = 1;
   3447       1.24       cgd 	register_t linkmax, namemax, chownres, notrunc;
   3448       1.23      fvdl 	char *cp2;
   3449       1.67      matt 	struct mbuf *mb, *mreq;
   3450       1.23      fvdl 	struct vnode *vp;
   3451       1.23      fvdl 	struct vattr at;
   3452      1.117      yamt 	nfsrvfh_t nsfh;
   3453       1.23      fvdl 	u_quad_t frev;
   3454       1.23      fvdl 
   3455      1.117      yamt 	nfsm_srvmtofh(&nsfh);
   3456      1.117      yamt 	error = nfsrv_fhtovp(&nsfh, 1, &vp, cred, slp, nam,
   3457      1.125   thorpej 		 &rdonly, (nfsd->nd_flag & ND_KERBAUTH), false);
   3458       1.23      fvdl 	if (error) {
   3459       1.23      fvdl 		nfsm_reply(NFSX_UNSIGNED);
   3460       1.23      fvdl 		nfsm_srvpostop_attr(getret, &at);
   3461       1.23      fvdl 		return (0);
   3462       1.23      fvdl 	}
   3463       1.23      fvdl 	error = VOP_PATHCONF(vp, _PC_LINK_MAX, &linkmax);
   3464       1.23      fvdl 	if (!error)
   3465       1.23      fvdl 		error = VOP_PATHCONF(vp, _PC_NAME_MAX, &namemax);
   3466       1.23      fvdl 	if (!error)
   3467       1.23      fvdl 		error = VOP_PATHCONF(vp, _PC_CHOWN_RESTRICTED, &chownres);
   3468       1.23      fvdl 	if (!error)
   3469       1.23      fvdl 		error = VOP_PATHCONF(vp, _PC_NO_TRUNC, &notrunc);
   3470      1.131     pooka 	getret = VOP_GETATTR(vp, &at, cred);
   3471       1.23      fvdl 	vput(vp);
   3472       1.23      fvdl 	nfsm_reply(NFSX_V3POSTOPATTR + NFSX_V3PATHCONF);
   3473       1.23      fvdl 	nfsm_srvpostop_attr(getret, &at);
   3474       1.23      fvdl 	if (error)
   3475       1.23      fvdl 		return (0);
   3476       1.23      fvdl 	nfsm_build(pc, struct nfsv3_pathconf *, NFSX_V3PATHCONF);
   3477       1.23      fvdl 
   3478       1.23      fvdl 	pc->pc_linkmax = txdr_unsigned(linkmax);
   3479       1.23      fvdl 	pc->pc_namemax = txdr_unsigned(namemax);
   3480       1.23      fvdl 	pc->pc_notrunc = txdr_unsigned(notrunc);
   3481       1.23      fvdl 	pc->pc_chownrestricted = txdr_unsigned(chownres);
   3482       1.23      fvdl 
   3483       1.23      fvdl 	/*
   3484       1.23      fvdl 	 * These should probably be supported by VOP_PATHCONF(), but
   3485       1.23      fvdl 	 * until msdosfs is exportable (why would you want to?), the
   3486       1.23      fvdl 	 * Unix defaults should be ok.
   3487       1.23      fvdl 	 */
   3488       1.23      fvdl 	pc->pc_caseinsensitive = nfs_false;
   3489       1.23      fvdl 	pc->pc_casepreserving = nfs_true;
   3490        1.1       cgd 	nfsm_srvdone;
   3491        1.1       cgd }
   3492        1.1       cgd 
   3493        1.1       cgd /*
   3494        1.1       cgd  * Null operation, used by clients to ping server
   3495        1.1       cgd  */
   3496        1.1       cgd /* ARGSUSED */
   3497       1.22  christos int
   3498      1.119      yamt nfsrv_null(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
   3499      1.119      yamt     struct lwp *lwp, struct mbuf **mrq)
   3500        1.1       cgd {
   3501       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep;
   3502      1.126  christos 	char *bpos;
   3503       1.23      fvdl 	int error = NFSERR_RETVOID, cache = 0;
   3504        1.1       cgd 	struct mbuf *mb, *mreq;
   3505       1.15   mycroft 	u_quad_t frev;
   3506        1.1       cgd 
   3507        1.1       cgd 	nfsm_reply(0);
   3508      1.144    bouyer nfsmout:
   3509       1.23      fvdl 	return (0);
   3510        1.1       cgd }
   3511        1.1       cgd 
   3512        1.1       cgd /*
   3513        1.1       cgd  * No operation, used for obsolete procedures
   3514        1.1       cgd  */
   3515        1.1       cgd /* ARGSUSED */
   3516       1.22  christos int
   3517      1.119      yamt nfsrv_noop(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
   3518      1.119      yamt     struct lwp *lwp, struct mbuf **mrq)
   3519        1.1       cgd {
   3520       1.23      fvdl 	struct mbuf *mrep = nfsd->nd_mrep;
   3521      1.126  christos 	char *bpos;
   3522       1.22  christos 	int error, cache = 0;
   3523        1.1       cgd 	struct mbuf *mb, *mreq;
   3524       1.15   mycroft 	u_quad_t frev;
   3525        1.1       cgd 
   3526       1.15   mycroft 	if (nfsd->nd_repstat)
   3527       1.15   mycroft 		error = nfsd->nd_repstat;
   3528        1.2       cgd 	else
   3529        1.2       cgd 		error = EPROCUNAVAIL;
   3530        1.1       cgd 	nfsm_reply(0);
   3531      1.144    bouyer nfsmout:
   3532       1.23      fvdl 	return (0);
   3533        1.1       cgd }
   3534        1.1       cgd 
   3535        1.1       cgd /*
   3536        1.1       cgd  * Perform access checking for vnodes obtained from file handles that would
   3537        1.1       cgd  * refer to files already opened by a Unix client. You cannot just use
   3538        1.1       cgd  * vn_writechk() and VOP_ACCESS() for two reasons.
   3539       1.15   mycroft  * 1 - You must check for exported rdonly as well as MNT_RDONLY for the write case
   3540       1.27      fvdl  * 2 - The owner is to be given access irrespective of mode bits for some
   3541       1.27      fvdl  *     operations, so that processes that chmod after opening a file don't
   3542       1.27      fvdl  *     break. I don't like this because it opens a security hole, but since
   3543       1.27      fvdl  *     the nfs server opens a security hole the size of a barn door anyhow,
   3544       1.27      fvdl  *     what the heck.
   3545       1.31      fvdl  *
   3546       1.31      fvdl  * The exception to rule 2 is EPERM. If a file is IMMUTABLE, VOP_ACCESS()
   3547      1.156      yamt  * will return EPERM instead of EACCES. EPERM is always an error.
   3548        1.1       cgd  */
   3549       1.22  christos int
   3550      1.143       dsl nfsrv_access(struct vnode *vp, int flags, kauth_cred_t cred, int rdonly, struct lwp *lwp, int override)
   3551        1.1       cgd {
   3552        1.1       cgd 	struct vattr vattr;
   3553        1.1       cgd 	int error;
   3554        1.1       cgd 	if (flags & VWRITE) {
   3555       1.15   mycroft 		/* Just vn_writechk() changed to check rdonly */
   3556        1.1       cgd 		/*
   3557        1.1       cgd 		 * Disallow write attempts on read-only file systems;
   3558        1.1       cgd 		 * unless the file is a socket or a block or character
   3559        1.1       cgd 		 * device resident on the file system.
   3560        1.1       cgd 		 */
   3561       1.15   mycroft 		if (rdonly || (vp->v_mount->mnt_flag & MNT_RDONLY)) {
   3562        1.1       cgd 			switch (vp->v_type) {
   3563       1.23      fvdl 			case VREG:
   3564       1.23      fvdl 			case VDIR:
   3565       1.23      fvdl 			case VLNK:
   3566        1.1       cgd 				return (EROFS);
   3567       1.23      fvdl 			default:
   3568       1.22  christos 				break;
   3569        1.1       cgd 			}
   3570        1.1       cgd 		}
   3571       1.59       chs 
   3572        1.1       cgd 		/*
   3573       1.59       chs 		 * If the vnode is in use as a process's text,
   3574       1.59       chs 		 * we can't allow writing.
   3575        1.1       cgd 		 */
   3576      1.130        ad 		if (vp->v_iflag & VI_TEXT)
   3577       1.40       mrg 			return (ETXTBSY);
   3578        1.1       cgd 	}
   3579      1.131     pooka 	error = VOP_GETATTR(vp, &vattr, cred);
   3580       1.23      fvdl 	if (error)
   3581        1.1       cgd 		return (error);
   3582      1.131     pooka 	error = VOP_ACCESS(vp, flags, cred);
   3583       1.27      fvdl 	/*
   3584       1.27      fvdl 	 * Allow certain operations for the owner (reads and writes
   3585       1.27      fvdl 	 * on files that are already open).
   3586       1.27      fvdl 	 */
   3587      1.109      elad 	if (override && error == EACCES && kauth_cred_geteuid(cred) == vattr.va_uid)
   3588       1.27      fvdl 		error = 0;
   3589       1.27      fvdl 	return error;
   3590        1.1       cgd }
   3591