NFS - Stability pass / recent work.
[dragonfly.git] / sys / vfs / nfs / nfsm_subs.c
1 /*
2  * Copyright (c) 2009 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34 /*
35  * Copyright (c) 1989, 1993
36  *      The Regents of the University of California.  All rights reserved.
37  *
38  * This code is derived from software contributed to Berkeley by
39  * Rick Macklem at The University of Guelph.
40  *
41  * Redistribution and use in source and binary forms, with or without
42  * modification, are permitted provided that the following conditions
43  * are met:
44  * 1. Redistributions of source code must retain the above copyright
45  *    notice, this list of conditions and the following disclaimer.
46  * 2. Redistributions in binary form must reproduce the above copyright
47  *    notice, this list of conditions and the following disclaimer in the
48  *    documentation and/or other materials provided with the distribution.
49  * 3. All advertising materials mentioning features or use of this software
50  *    must display the following acknowledgement:
51  *      This product includes software developed by the University of
52  *      California, Berkeley and its contributors.
53  * 4. Neither the name of the University nor the names of its contributors
54  *    may be used to endorse or promote products derived from this software
55  *    without specific prior written permission.
56  *
57  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
58  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
59  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
60  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
61  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
62  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
63  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
64  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
65  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
66  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
67  * SUCH DAMAGE.
68  */
69
70 /*
71  * These functions support the macros and help fiddle mbuf chains for
72  * the nfs op functions. They do things like create the rpc header and
73  * copy data between mbuf chains and uio lists.
74  */
75 #include <sys/param.h>
76 #include <sys/systm.h>
77 #include <sys/kernel.h>
78 #include <sys/buf.h>
79 #include <sys/proc.h>
80 #include <sys/mount.h>
81 #include <sys/vnode.h>
82 #include <sys/nlookup.h>
83 #include <sys/namei.h>
84 #include <sys/mbuf.h>
85 #include <sys/socket.h>
86 #include <sys/stat.h>
87 #include <sys/malloc.h>
88 #include <sys/sysent.h>
89 #include <sys/syscall.h>
90 #include <sys/conf.h>
91 #include <sys/objcache.h>
92
93 #include <vm/vm.h>
94 #include <vm/vm_object.h>
95 #include <vm/vm_extern.h>
96 #include <vm/vm_zone.h>
97
98 #include <sys/buf2.h>
99
100 #include "rpcv2.h"
101 #include "nfsproto.h"
102 #include "nfs.h"
103 #include "nfsmount.h"
104 #include "nfsnode.h"
105 #include "xdr_subs.h"
106 #include "nfsm_subs.h"
107 #include "nfsrtt.h"
108
109 #include <netinet/in.h>
110
111 static u_int32_t nfs_xid = 0;
112
113 /*
114  * Create the header for an rpc request packet
115  * The hsiz is the size of the rest of the nfs request header.
116  * (just used to decide if a cluster is a good idea)
117  */
118 void
119 nfsm_reqhead(nfsm_info_t info, struct vnode *vp, u_long procid, int hsiz)
120 {
121         info->mb = m_getl(hsiz, MB_WAIT, MT_DATA, 0, NULL);
122         info->mb->m_len = 0;
123         info->mreq = info->mb;
124         info->bpos = mtod(info->mb, caddr_t);
125 }
126
127 /*
128  * Build the RPC header and fill in the authorization info.
129  * The authorization string argument is only used when the credentials
130  * come from outside of the kernel.
131  * Returns the head of the mbuf list.
132  */
133 struct mbuf *
134 nfsm_rpchead(struct ucred *cr, int nmflag, int procid, int auth_type,
135              int auth_len, char *auth_str, int verf_len, char *verf_str,
136              struct mbuf *mrest, int mrest_len, struct mbuf **mbp,
137              u_int32_t *xidp)
138 {
139         struct nfsm_info info;
140         struct mbuf *mb2;
141         u_int32_t *tl;
142         int siz, grpsiz, authsiz, dsiz;
143         int i;
144
145         authsiz = nfsm_rndup(auth_len);
146         dsiz = authsiz + 10 * NFSX_UNSIGNED;
147         info.mb = m_getl(dsiz, MB_WAIT, MT_DATA, M_PKTHDR, NULL);
148         if (dsiz < MINCLSIZE) {
149                 if (dsiz < MHLEN)
150                         MH_ALIGN(info.mb, dsiz);
151                 else
152                         MH_ALIGN(info.mb, 8 * NFSX_UNSIGNED);
153         }
154         info.mb->m_len = info.mb->m_pkthdr.len = 0;
155         info.mreq = info.mb;
156         info.bpos = mtod(info.mb, caddr_t);
157
158         /*
159          * First the RPC header.
160          */
161         tl = nfsm_build(&info, 8 * NFSX_UNSIGNED);
162
163         /* Get a pretty random xid to start with */
164         if (!nfs_xid)
165                 nfs_xid = krandom();
166         /*
167          * Skip zero xid if it should ever happen.
168          */
169         if (++nfs_xid == 0)
170                 nfs_xid++;
171
172         *tl++ = *xidp = txdr_unsigned(nfs_xid);
173         *tl++ = rpc_call;
174         *tl++ = rpc_vers;
175         *tl++ = txdr_unsigned(NFS_PROG);
176         if (nmflag & NFSMNT_NFSV3)
177                 *tl++ = txdr_unsigned(NFS_VER3);
178         else
179                 *tl++ = txdr_unsigned(NFS_VER2);
180         if (nmflag & NFSMNT_NFSV3)
181                 *tl++ = txdr_unsigned(procid);
182         else
183                 *tl++ = txdr_unsigned(nfsv2_procid[procid]);
184
185         /*
186          * And then the authorization cred.
187          */
188         *tl++ = txdr_unsigned(auth_type);
189         *tl = txdr_unsigned(authsiz);
190         switch (auth_type) {
191         case RPCAUTH_UNIX:
192                 tl = nfsm_build(&info, auth_len);
193                 *tl++ = 0;              /* stamp ?? */
194                 *tl++ = 0;              /* NULL hostname */
195                 *tl++ = txdr_unsigned(cr->cr_uid);
196                 *tl++ = txdr_unsigned(cr->cr_groups[0]);
197                 grpsiz = (auth_len >> 2) - 5;
198                 *tl++ = txdr_unsigned(grpsiz);
199                 for (i = 1; i <= grpsiz; i++)
200                         *tl++ = txdr_unsigned(cr->cr_groups[i]);
201                 break;
202         case RPCAUTH_KERB4:
203                 siz = auth_len;
204                 while (siz > 0) {
205                         if (M_TRAILINGSPACE(info.mb) == 0) {
206                                 mb2 = m_getl(siz, MB_WAIT, MT_DATA, 0, NULL);
207                                 mb2->m_len = 0;
208                                 info.mb->m_next = mb2;
209                                 info.mb = mb2;
210                                 info.bpos = mtod(info.mb, caddr_t);
211                         }
212                         i = min(siz, M_TRAILINGSPACE(info.mb));
213                         bcopy(auth_str, info.bpos, i);
214                         info.mb->m_len += i;
215                         auth_str += i;
216                         info.bpos += i;
217                         siz -= i;
218                 }
219                 if ((siz = (nfsm_rndup(auth_len) - auth_len)) > 0) {
220                         for (i = 0; i < siz; i++)
221                                 *info.bpos++ = '\0';
222                         info.mb->m_len += siz;
223                 }
224                 break;
225         };
226
227         /*
228          * And the verifier...
229          */
230         tl = nfsm_build(&info, 2 * NFSX_UNSIGNED);
231         if (verf_str) {
232                 *tl++ = txdr_unsigned(RPCAUTH_KERB4);
233                 *tl = txdr_unsigned(verf_len);
234                 siz = verf_len;
235                 while (siz > 0) {
236                         if (M_TRAILINGSPACE(info.mb) == 0) {
237                                 mb2 = m_getl(siz, MB_WAIT, MT_DATA,
238                                                   0, NULL);
239                                 mb2->m_len = 0;
240                                 info.mb->m_next = mb2;
241                                 info.mb = mb2;
242                                 info.bpos = mtod(info.mb, caddr_t);
243                         }
244                         i = min(siz, M_TRAILINGSPACE(info.mb));
245                         bcopy(verf_str, info.bpos, i);
246                         info.mb->m_len += i;
247                         verf_str += i;
248                         info.bpos += i;
249                         siz -= i;
250                 }
251                 if ((siz = (nfsm_rndup(verf_len) - verf_len)) > 0) {
252                         for (i = 0; i < siz; i++)
253                                 *info.bpos++ = '\0';
254                         info.mb->m_len += siz;
255                 }
256         } else {
257                 *tl++ = txdr_unsigned(RPCAUTH_NULL);
258                 *tl = 0;
259         }
260         info.mb->m_next = mrest;
261         info.mreq->m_pkthdr.len = authsiz + 10 * NFSX_UNSIGNED + mrest_len;
262         info.mreq->m_pkthdr.rcvif = NULL;
263         *mbp = info.mb;
264         return (info.mreq);
265 }
266
267 void *
268 nfsm_build(nfsm_info_t info, int bytes)
269 {
270         struct mbuf *mb2;
271         void *ptr;
272
273         if (bytes > M_TRAILINGSPACE(info->mb)) {
274                 MGET(mb2, MB_WAIT, MT_DATA);
275                 if (bytes > MLEN)
276                         panic("build > MLEN");
277                 info->mb->m_next = mb2;
278                 info->mb = mb2;
279                 info->mb->m_len = 0;
280                 info->bpos = mtod(info->mb, caddr_t);
281         }
282         ptr = info->bpos;
283         info->mb->m_len += bytes;
284         info->bpos += bytes;
285         return (ptr);
286 }
287
288 /*
289  *
290  * If NULL returned caller is expected to abort with an EBADRPC error.
291  * Caller will usually use the NULLOUT macro.
292  */
293 void *
294 nfsm_dissect(nfsm_info_t info, int bytes)
295 {
296         caddr_t cp2;
297         void *ptr;
298         int error;
299         int n;
300
301         n = mtod(info->md, caddr_t) + info->md->m_len - info->dpos;
302         if (bytes <= n) {
303                 ptr = info->dpos;
304                 info->dpos += bytes;
305         } else {
306                 error = nfsm_disct(&info->md, &info->dpos, bytes, n, &cp2);
307                 if (error) {
308                         m_freem(info->mrep);
309                         info->mrep = NULL;
310                         ptr = NULL;
311                 } else {
312                         ptr = cp2;
313                 }
314         }
315         return (ptr);
316 }
317
318 /*
319  *
320  * Caller is expected to abort if non-zero error is returned.
321  */
322 int
323 nfsm_fhtom(nfsm_info_t info, struct vnode *vp)
324 {
325         u_int32_t *tl;
326         caddr_t cp;
327         int error;
328         int n;
329
330         if (info->v3) {
331                 n = nfsm_rndup(VTONFS(vp)->n_fhsize) + NFSX_UNSIGNED;
332                 if (n <= M_TRAILINGSPACE(info->mb)) {
333                         tl = nfsm_build(info, n);
334                         *tl++ = txdr_unsigned(VTONFS(vp)->n_fhsize);
335                         *(tl + ((n >> 2) - 2)) = 0;
336                         bcopy((caddr_t)VTONFS(vp)->n_fhp,(caddr_t)tl,
337                                 VTONFS(vp)->n_fhsize);
338                         error = 0;
339                 } else if ((error = nfsm_strtmbuf(&info->mb, &info->bpos,
340                                                 (caddr_t)VTONFS(vp)->n_fhp,
341                                                 VTONFS(vp)->n_fhsize)) != 0) {
342                         m_freem(info->mreq);
343                         info->mreq = NULL;
344                 }
345         } else {
346                 cp = nfsm_build(info, NFSX_V2FH);
347                 bcopy(VTONFS(vp)->n_fhp, cp, NFSX_V2FH);
348                 error = 0;
349         }
350         return (error);
351 }
352
353 void
354 nfsm_srvfhtom(nfsm_info_t info, fhandle_t *fhp)
355 {
356         u_int32_t *tl;
357
358         if (info->v3) {
359                 tl = nfsm_build(info, NFSX_UNSIGNED + NFSX_V3FH);
360                 *tl++ = txdr_unsigned(NFSX_V3FH);
361                 bcopy(fhp, tl, NFSX_V3FH);
362         } else {
363                 tl = nfsm_build(info, NFSX_V2FH);
364                 bcopy(fhp, tl, NFSX_V2FH);
365         }
366 }
367
368 void
369 nfsm_srvpostop_fh(nfsm_info_t info, fhandle_t *fhp)
370 {
371         u_int32_t *tl;
372
373         tl = nfsm_build(info, 2 * NFSX_UNSIGNED + NFSX_V3FH);
374         *tl++ = nfs_true;
375         *tl++ = txdr_unsigned(NFSX_V3FH);
376         bcopy(fhp, tl, NFSX_V3FH);
377 }
378
379 /*
380  * Caller is expected to abort if non-zero error is returned.
381  *
382  * NOTE: (*vpp) may be loaded with a valid vnode even if (*gotvpp)
383  *       winds up 0.  The caller is responsible for dealing with (*vpp).
384  */
385 int
386 nfsm_mtofh(nfsm_info_t info, struct vnode *dvp, struct vnode **vpp, int *gotvpp)
387 {
388         struct nfsnode *ttnp;
389         nfsfh_t *ttfhp;
390         u_int32_t *tl;
391         int ttfhsize;
392         int error = 0;
393
394         if (info->v3) {
395                 tl = nfsm_dissect(info, NFSX_UNSIGNED);
396                 if (tl == NULL)
397                         return(EBADRPC);
398                 *gotvpp = fxdr_unsigned(int, *tl);
399         } else {
400                 *gotvpp = 1;
401         }
402         if (*gotvpp) {
403                 NEGATIVEOUT(ttfhsize = nfsm_getfh(info, &ttfhp));
404                 error = nfs_nget(dvp->v_mount, ttfhp, ttfhsize, &ttnp);
405                 if (error) {
406                         m_freem(info->mrep);
407                         info->mrep = NULL;
408                         return (error);
409                 }
410                 *vpp = NFSTOV(ttnp);
411         }
412         if (info->v3) {
413                 tl = nfsm_dissect(info, NFSX_UNSIGNED);
414                 if (tl == NULL)
415                         return (EBADRPC);
416                 if (*gotvpp) {
417                         *gotvpp = fxdr_unsigned(int, *tl);
418                 } else if (fxdr_unsigned(int, *tl)) {
419                         error = nfsm_adv(info, NFSX_V3FATTR);
420                         if (error)
421                                 return (error);
422                 }
423         }
424         if (*gotvpp)
425                 error = nfsm_loadattr(info, *vpp, NULL);
426 nfsmout:
427         return (error);
428 }
429
430 /*
431  *
432  * Caller is expected to abort with EBADRPC if a negative length is returned.
433  */
434 int
435 nfsm_getfh(nfsm_info_t info, nfsfh_t **fhpp)
436 {
437         u_int32_t *tl;
438         int n;
439
440         *fhpp = NULL;
441         if (info->v3) {
442                 tl = nfsm_dissect(info, NFSX_UNSIGNED);
443                 if (tl == NULL)
444                         return(-1);
445                 if ((n = fxdr_unsigned(int, *tl)) <= 0 || n > NFSX_V3FHMAX) {
446                         m_freem(info->mrep);
447                         info->mrep = NULL;
448                         return(-1);
449                 }
450         } else {
451                 n = NFSX_V2FH;
452         }
453         *fhpp = nfsm_dissect(info, nfsm_rndup(n));
454         if (*fhpp == NULL)
455                 return(-1);
456         return(n);
457 }
458
459 /*
460  * Caller is expected to abort if a non-zero error is returned.
461  */
462 int
463 nfsm_loadattr(nfsm_info_t info, struct vnode *vp, struct vattr *vap)
464 {
465         int error;
466
467         error = nfs_loadattrcache(vp, &info->md, &info->dpos, vap, 0);
468         if (error) {
469                 m_freem(info->mrep);
470                 info->mrep = NULL;
471                 return (error);
472         }
473         return (0);
474 }
475
476 /*
477  * Caller is expected to abort if a non-zero error is returned.
478  */
479 int
480 nfsm_postop_attr(nfsm_info_t info, struct vnode *vp, int *attrp, int lflags)
481 {
482         u_int32_t *tl;
483         int error;
484
485         tl = nfsm_dissect(info, NFSX_UNSIGNED);
486         if (tl == NULL)
487                 return(EBADRPC);
488         *attrp = fxdr_unsigned(int, *tl);
489         if (*attrp) {
490                 error = nfs_loadattrcache(vp, &info->md, &info->dpos,
491                                           NULL, lflags);
492                 if (error) {
493                         *attrp = 0;
494                         m_freem(info->mrep);
495                         info->mrep = NULL;
496                         return (error);
497                 }
498         }
499         return (0);
500 }
501
502 /*
503  * Caller is expected to abort if a non-zero error is returned.
504  */
505 int
506 nfsm_wcc_data(nfsm_info_t info, struct vnode *vp, int *attrp)
507 {
508         u_int32_t *tl;
509         int error;
510         int ttattrf;
511         int ttretf = 0;
512
513         tl = nfsm_dissect(info, NFSX_UNSIGNED);
514         if (tl == NULL)
515                 return (EBADRPC);
516         if (*tl == nfs_true) {
517                 tl = nfsm_dissect(info, 6 * NFSX_UNSIGNED);
518                 if (tl == NULL)
519                         return (EBADRPC);
520                 if (*attrp) {
521                         ttretf = (VTONFS(vp)->n_mtime ==
522                                 fxdr_unsigned(u_int32_t, *(tl + 2)));
523                         if (ttretf == 0)
524                                 VTONFS(vp)->n_flag |= NRMODIFIED;
525                 }
526                 error = nfsm_postop_attr(info, vp, &ttattrf,
527                                  NFS_LATTR_NOSHRINK|NFS_LATTR_NOMTIMECHECK);
528                 if (error)
529                         return(error);
530         } else {
531                 error = nfsm_postop_attr(info, vp, &ttattrf,
532                                          NFS_LATTR_NOSHRINK);
533                 if (error)
534                         return(error);
535         }
536         if (*attrp)
537                 *attrp = ttretf;
538         else
539                 *attrp = ttattrf;
540         return(0);
541 }
542
543 /*
544  * This function updates the attribute cache based on data returned in the
545  * NFS reply for NFS RPCs that modify the target file.  If the RPC succeeds
546  * a 'before' and 'after' mtime is returned that allows us to determine if
547  * the new mtime attribute represents our modification or someone else's
548  * modification.
549  *
550  * The flag argument returns non-0 if the original times matched, zero if
551  * they did not match.  NRMODIFIED is automatically set if the before time
552  * does not match the original n_mtime, and n_mtime is automatically updated
553  * to the new after time (by nfsm_postop_attr()).
554  *
555  * If full is true, set all fields, otherwise just set mode and time fields
556  */
557 void
558 nfsm_v3attrbuild(nfsm_info_t info, struct vattr *vap, int full)
559 {
560         u_int32_t *tl;
561
562         if (vap->va_mode != (mode_t)VNOVAL) {
563                 tl = nfsm_build(info, 2 * NFSX_UNSIGNED);
564                 *tl++ = nfs_true;
565                 *tl = txdr_unsigned(vap->va_mode);
566         } else {
567                 tl = nfsm_build(info, NFSX_UNSIGNED);
568                 *tl = nfs_false;
569         }
570         if (full && vap->va_uid != (uid_t)VNOVAL) {
571                 tl = nfsm_build(info, 2 * NFSX_UNSIGNED);
572                 *tl++ = nfs_true;
573                 *tl = txdr_unsigned(vap->va_uid);
574         } else {
575                 tl = nfsm_build(info, NFSX_UNSIGNED);
576                 *tl = nfs_false;
577         }
578         if (full && vap->va_gid != (gid_t)VNOVAL) {
579                 tl = nfsm_build(info, 2 * NFSX_UNSIGNED);
580                 *tl++ = nfs_true;
581                 *tl = txdr_unsigned(vap->va_gid);
582         } else {
583                 tl = nfsm_build(info, NFSX_UNSIGNED);
584                 *tl = nfs_false;
585         }
586         if (full && vap->va_size != VNOVAL) {
587                 tl = nfsm_build(info, 3 * NFSX_UNSIGNED);
588                 *tl++ = nfs_true;
589                 txdr_hyper(vap->va_size, tl);
590         } else {
591                 tl = nfsm_build(info, NFSX_UNSIGNED);
592                 *tl = nfs_false;
593         }
594         if (vap->va_atime.tv_sec != VNOVAL) {
595                 if (vap->va_atime.tv_sec != time_second) {
596                         tl = nfsm_build(info, 3 * NFSX_UNSIGNED);
597                         *tl++ = txdr_unsigned(NFSV3SATTRTIME_TOCLIENT);
598                         txdr_nfsv3time(&vap->va_atime, tl);
599                 } else {
600                         tl = nfsm_build(info, NFSX_UNSIGNED);
601                         *tl = txdr_unsigned(NFSV3SATTRTIME_TOSERVER);
602                 }
603         } else {
604                 tl = nfsm_build(info, NFSX_UNSIGNED);
605                 *tl = txdr_unsigned(NFSV3SATTRTIME_DONTCHANGE);
606         }
607         if (vap->va_mtime.tv_sec != VNOVAL) {
608                 if (vap->va_mtime.tv_sec != time_second) {
609                         tl = nfsm_build(info, 3 * NFSX_UNSIGNED);
610                         *tl++ = txdr_unsigned(NFSV3SATTRTIME_TOCLIENT);
611                         txdr_nfsv3time(&vap->va_mtime, tl);
612                 } else {
613                         tl = nfsm_build(info, NFSX_UNSIGNED);
614                         *tl = txdr_unsigned(NFSV3SATTRTIME_TOSERVER);
615                 }
616         } else {
617                 tl = nfsm_build(info, NFSX_UNSIGNED);
618                 *tl = txdr_unsigned(NFSV3SATTRTIME_DONTCHANGE);
619         }
620 }
621
622 /*
623  * Caller is expected to abort with EBADRPC if a negative length is returned.
624  */
625 int
626 nfsm_strsiz(nfsm_info_t info, int maxlen)
627 {
628         u_int32_t *tl;
629         int len;
630
631         tl = nfsm_dissect(info, NFSX_UNSIGNED);
632         if (tl == NULL)
633                 return(-1);
634         len = fxdr_unsigned(int32_t, *tl);
635         if (len < 0 || len > maxlen)
636                 return(-1);
637         return (len);
638 }
639
640 /*
641  * Caller is expected to abort if a negative length is returned, but also
642  * call nfsm_reply(0) if -2 is returned.
643  *
644  * This function sets *errorp.  Caller should not modify the error code.
645  */
646 int
647 nfsm_srvstrsiz(nfsm_info_t info, int maxlen, int *errorp)
648 {
649         u_int32_t *tl;
650         int len;
651
652         tl = nfsm_dissect(info, NFSX_UNSIGNED);
653         if (tl == NULL) {
654                 *errorp = EBADRPC;
655                 return(-1);
656         }
657         len = fxdr_unsigned(int32_t,*tl);
658         if (len > maxlen || len <= 0) {
659                 *errorp = EBADRPC;
660                 return(-2);
661         }
662         return(len);
663 }
664
665 /*
666  * Caller is expected to abort if a negative length is returned, but also
667  * call nfsm_reply(0) if -2 is returned.
668  *
669  * This function sets *errorp.  Caller should not modify the error code.
670  */
671 int
672 nfsm_srvnamesiz(nfsm_info_t info, int *errorp)
673 {
674         u_int32_t *tl;
675         int len;
676
677         tl = nfsm_dissect(info, NFSX_UNSIGNED);
678         if (tl == NULL) {
679                 *errorp = EBADRPC;
680                 return(-1);
681         }
682
683         /*
684          * In this case if *errorp is not EBADRPC and we are NFSv3,
685          * nfsm_reply() will not return a negative number.  But all
686          * call cases assume len is valid so we really do want
687          * to return -1.
688          */
689         len = fxdr_unsigned(int32_t,*tl);
690         if (len > NFS_MAXNAMLEN)
691                 *errorp = NFSERR_NAMETOL;
692         if (len <= 0)
693                 *errorp = EBADRPC;
694         if (*errorp)
695                 return(-2);
696         return (len);
697 }
698
699 /*
700  * Caller is expected to abort if a non-zero error is returned.
701  */
702 int
703 nfsm_mtouio(nfsm_info_t info, struct uio *uiop, int len)
704 {
705         int error;
706
707         if (len > 0 &&
708            (error = nfsm_mbuftouio(&info->md, uiop, len, &info->dpos)) != 0) {
709                 m_freem(info->mrep);
710                 info->mrep = NULL;
711                 return(error);
712         }
713         return(0);
714 }
715
716 /*
717  * Caller is expected to abort if a non-zero error is returned.
718  */
719 int
720 nfsm_mtobio(nfsm_info_t info, struct bio *bio, int len)
721 {
722         int error;
723
724         if (len > 0 &&
725            (error = nfsm_mbuftobio(&info->md, bio, len, &info->dpos)) != 0) {
726                 m_freem(info->mrep);
727                 info->mrep = NULL;
728                 return(error);
729        }
730        return (0);
731 }
732
733 /*
734  * Caller is expected to abort if a non-zero error is returned.
735  */
736 int
737 nfsm_uiotom(nfsm_info_t info, struct uio *uiop, int len)
738 {
739         int error;
740
741         if ((error = nfsm_uiotombuf(uiop, &info->mb, len, &info->bpos)) != 0) {
742                 m_freem(info->mreq);
743                 info->mreq = NULL;
744                 return (error);
745         }
746         return(0);
747 }
748
749 /*
750  * Caller is expected to abort if a negative value is returned.  This
751  * function sets *errorp.  Caller should not modify the error code.
752  *
753  * We load up the remaining info fields and run the request state
754  * machine until it is done.
755  *
756  * This call runs the entire state machine and does not return until
757  * the command is complete.
758  */
759 int
760 nfsm_request(nfsm_info_t info, struct vnode *vp, int procnum,
761              thread_t td, struct ucred *cred, int *errorp)
762 {
763         info->state = NFSM_STATE_SETUP;
764         info->procnum = procnum;
765         info->vp = vp;
766         info->td = td;
767         info->cred = cred;
768         info->bio = NULL;
769         info->nmp = VFSTONFS(vp->v_mount);
770
771         *errorp = nfs_request(info, NFSM_STATE_SETUP, NFSM_STATE_DONE);
772         if (*errorp) {
773                 if ((*errorp & NFSERR_RETERR) == 0)
774                         return(-1);
775                 *errorp &= ~NFSERR_RETERR;
776         }
777         return(0);
778 }
779
780 /*
781  * This call starts the state machine through the initial transmission.
782  * Completion is via the bio.  The info structure must have installed
783  * a 'done' callback.
784  *
785  * If we are unable to do the initial tx we generate the bio completion
786  * ourselves.
787  */
788 void
789 nfsm_request_bio(nfsm_info_t info, struct vnode *vp, int procnum,
790              thread_t td, struct ucred *cred)
791 {
792         struct buf *bp;
793         int error;
794
795         info->state = NFSM_STATE_SETUP;
796         info->procnum = procnum;
797         info->vp = vp;
798         info->td = td;
799         info->cred = cred;
800         info->nmp = VFSTONFS(vp->v_mount);
801
802         error = nfs_request(info, NFSM_STATE_SETUP, NFSM_STATE_WAITREPLY);
803         if (error != EINPROGRESS) {
804                 kprintf("nfsm_request_bio: early abort %d\n", error);
805                 bp = info->bio->bio_buf;
806                 if (error)
807                         bp->b_flags |= B_ERROR;
808                 bp->b_error = error;
809                 biodone(info->bio);
810         }
811 }
812
813 /*
814  * Caller is expected to abort if a non-zero error is returned.
815  */
816 int
817 nfsm_strtom(nfsm_info_t info, const void *data, int len, int maxlen)
818 {
819         u_int32_t *tl;
820         int error;
821         int n;
822
823         if (len > maxlen) {
824                 m_freem(info->mreq);
825                 info->mreq = NULL;
826                 return(ENAMETOOLONG);
827         }
828         n = nfsm_rndup(len) + NFSX_UNSIGNED;
829         if (n <= M_TRAILINGSPACE(info->mb)) {
830                 tl = nfsm_build(info, n);
831                 *tl++ = txdr_unsigned(len);
832                 *(tl + ((n >> 2) - 2)) = 0;
833                 bcopy(data, tl, len);
834                 error = 0;
835         } else {
836                 error = nfsm_strtmbuf(&info->mb, &info->bpos, data, len);
837                 if (error) {
838                         m_freem(info->mreq);
839                         info->mreq = NULL;
840                 }
841         }
842         return (error);
843 }
844
845 /*
846  * Caller is expected to abort if a negative value is returned.  This
847  * function sets *errorp.  Caller should not modify the error code.
848  */
849 int
850 nfsm_reply(nfsm_info_t info,
851            struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
852            int siz, int *errorp)
853 {
854         nfsd->nd_repstat = *errorp;
855         if (*errorp && !(nfsd->nd_flag & ND_NFSV3))
856                 siz = 0;
857         nfs_rephead(siz, nfsd, slp, *errorp, &info->mreq,
858                     &info->mb, &info->bpos);
859         if (info->mrep != NULL) {
860                 m_freem(info->mrep);
861                 info->mrep = NULL;
862         }
863         if (*errorp && (!(nfsd->nd_flag & ND_NFSV3) || *errorp == EBADRPC)) {
864                 *errorp = 0;
865                 return(-1);
866         }
867         return(0);
868 }
869
870 void
871 nfsm_writereply(nfsm_info_t info,
872                 struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
873                 int error, int siz)
874 {
875         nfsd->nd_repstat = error;
876         if (error && !(info->v3))
877                 siz = 0;
878         nfs_rephead(siz, nfsd, slp, error, &info->mreq, &info->mb, &info->bpos);
879 }
880
881 /*
882  * Caller is expected to abort if a non-zero error is returned.
883  */
884 int
885 nfsm_adv(nfsm_info_t info, int len)
886 {
887         int error;
888         int n;
889
890         n = mtod(info->md, caddr_t) + info->md->m_len - info->dpos;
891         if (n >= len) {
892                 info->dpos += len;
893                 error = 0;
894         } else if ((error = nfs_adv(&info->md, &info->dpos, len, n)) != 0) {
895                 m_freem(info->mrep);
896                 info->mrep = NULL;
897         }
898         return (error);
899 }
900
901 /*
902  * Caller is expected to abort if a negative length is returned, but also
903  * call nfsm_reply(0) if -2 is returned.
904  *
905  * This function sets *errorp.  Caller should not modify the error code.
906  */
907 int
908 nfsm_srvmtofh(nfsm_info_t info, struct nfsrv_descript *nfsd,
909               fhandle_t *fhp, int *errorp)
910 {
911         u_int32_t *tl;
912         int fhlen;
913
914         if (nfsd->nd_flag & ND_NFSV3) {
915                 tl = nfsm_dissect(info, NFSX_UNSIGNED);
916                 if (tl == NULL) {
917                         *errorp = EBADRPC;
918                         return(-1);
919                 }
920                 fhlen = fxdr_unsigned(int, *tl);
921                 if (fhlen != 0 && fhlen != NFSX_V3FH) {
922                         *errorp = EBADRPC;
923                         return(-2);
924                 }
925         } else {
926                 fhlen = NFSX_V2FH;
927         }
928         if (fhlen != 0) {
929                 tl = nfsm_dissect(info, fhlen);
930                 if (tl == NULL) {
931                         *errorp = EBADRPC;
932                         return(-1);
933                 }
934                 bcopy(tl, fhp, fhlen);
935         } else {
936                 bzero(fhp, NFSX_V3FH);
937         }
938         return(0);
939 }
940
941 void *
942 _nfsm_clget(nfsm_info_t info, struct mbuf **mp1, struct mbuf **mp2,
943             char **bp, char **be)
944 {
945         if (*bp >= *be) {
946                 if (*mp1 == info->mb)
947                         (*mp1)->m_len += *bp - info->bpos;
948                 *mp1 = m_getcl(MB_WAIT, MT_DATA, 0);
949                 (*mp1)->m_len = MCLBYTES;
950                 (*mp2)->m_next = *mp1;
951                 *mp2 = *mp1;
952                 *bp = mtod(*mp1, caddr_t);
953                 *be = *bp + (*mp1)->m_len;
954         }
955         return(*bp);
956 }
957
958 int
959 nfsm_srvsattr(nfsm_info_t info, struct vattr *vap)
960 {
961         u_int32_t *tl;
962         int error = 0;
963
964         NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
965         if (*tl == nfs_true) {
966                 NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
967                 vap->va_mode = nfstov_mode(*tl);
968         }
969         NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
970         if (*tl == nfs_true) {
971                 NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
972                 vap->va_uid = fxdr_unsigned(uid_t, *tl);
973         }
974         NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
975         if (*tl == nfs_true) {
976                 NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
977                 vap->va_gid = fxdr_unsigned(gid_t, *tl);
978         }
979         NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
980         if (*tl == nfs_true) {
981                 NULLOUT(tl = nfsm_dissect(info, 2 * NFSX_UNSIGNED));
982                 vap->va_size = fxdr_hyper(tl);
983         }
984         NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
985         switch (fxdr_unsigned(int, *tl)) {
986         case NFSV3SATTRTIME_TOCLIENT:
987                 NULLOUT(tl = nfsm_dissect(info, 2 * NFSX_UNSIGNED));
988                 fxdr_nfsv3time(tl, &vap->va_atime);
989                 break;
990         case NFSV3SATTRTIME_TOSERVER:
991                 getnanotime(&vap->va_atime);
992                 break;
993         };
994         NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
995         switch (fxdr_unsigned(int, *tl)) {
996         case NFSV3SATTRTIME_TOCLIENT:
997                 NULLOUT(tl = nfsm_dissect(info, 2 * NFSX_UNSIGNED));
998                 fxdr_nfsv3time(tl, &vap->va_mtime);
999                 break;
1000         case NFSV3SATTRTIME_TOSERVER:
1001                 getnanotime(&vap->va_mtime);
1002                 break;
1003         }
1004 nfsmout:
1005         return (error);
1006 }
1007
1008 /*
1009  * copies mbuf chain to the uio scatter/gather list
1010  */
1011 int
1012 nfsm_mbuftouio(struct mbuf **mrep, struct uio *uiop, int siz, caddr_t *dpos)
1013 {
1014         char *mbufcp, *uiocp;
1015         int xfer, left, len;
1016         struct mbuf *mp;
1017         long uiosiz, rem;
1018         int error = 0;
1019
1020         mp = *mrep;
1021         mbufcp = *dpos;
1022         len = mtod(mp, caddr_t)+mp->m_len-mbufcp;
1023         rem = nfsm_rndup(siz)-siz;
1024         while (siz > 0) {
1025                 if (uiop->uio_iovcnt <= 0 || uiop->uio_iov == NULL)
1026                         return (EFBIG);
1027                 left = uiop->uio_iov->iov_len;
1028                 uiocp = uiop->uio_iov->iov_base;
1029                 if (left > siz)
1030                         left = siz;
1031                 uiosiz = left;
1032                 while (left > 0) {
1033                         while (len == 0) {
1034                                 mp = mp->m_next;
1035                                 if (mp == NULL)
1036                                         return (EBADRPC);
1037                                 mbufcp = mtod(mp, caddr_t);
1038                                 len = mp->m_len;
1039                         }
1040                         xfer = (left > len) ? len : left;
1041 #ifdef notdef
1042                         /* Not Yet.. */
1043                         if (uiop->uio_iov->iov_op != NULL)
1044                                 (*(uiop->uio_iov->iov_op))
1045                                 (mbufcp, uiocp, xfer);
1046                         else
1047 #endif
1048                         if (uiop->uio_segflg == UIO_SYSSPACE)
1049                                 bcopy(mbufcp, uiocp, xfer);
1050                         else
1051                                 copyout(mbufcp, uiocp, xfer);
1052                         left -= xfer;
1053                         len -= xfer;
1054                         mbufcp += xfer;
1055                         uiocp += xfer;
1056                         uiop->uio_offset += xfer;
1057                         uiop->uio_resid -= xfer;
1058                 }
1059                 if (uiop->uio_iov->iov_len <= siz) {
1060                         uiop->uio_iovcnt--;
1061                         uiop->uio_iov++;
1062                 } else {
1063                         uiop->uio_iov->iov_base = (char *)uiop->uio_iov->iov_base + uiosiz;
1064                         uiop->uio_iov->iov_len -= uiosiz;
1065                 }
1066                 siz -= uiosiz;
1067         }
1068         *dpos = mbufcp;
1069         *mrep = mp;
1070         if (rem > 0) {
1071                 if (len < rem)
1072                         error = nfs_adv(mrep, dpos, rem, len);
1073                 else
1074                         *dpos += rem;
1075         }
1076         return (error);
1077 }
1078
1079 /*
1080  * copies mbuf chain to the bio buffer
1081  */
1082 int
1083 nfsm_mbuftobio(struct mbuf **mrep, struct bio *bio, int size, caddr_t *dpos)
1084 {
1085         struct buf *bp = bio->bio_buf;
1086         char *mbufcp;
1087         char *bio_cp;
1088         int xfer, len;
1089         struct mbuf *mp;
1090         long rem;
1091         int error = 0;
1092         int bio_left;
1093
1094         mp = *mrep;
1095         mbufcp = *dpos;
1096         len = mtod(mp, caddr_t) + mp->m_len - mbufcp;
1097         rem = nfsm_rndup(size) - size;
1098
1099         bio_left = bp->b_bcount;
1100         bio_cp = bp->b_data;
1101
1102         while (size > 0) {
1103                 while (len == 0) {
1104                         mp = mp->m_next;
1105                         if (mp == NULL)
1106                                 return (EBADRPC);
1107                         mbufcp = mtod(mp, caddr_t);
1108                         len = mp->m_len;
1109                 }
1110                 if ((xfer = len) > size)
1111                         xfer = size;
1112                 if (bio_left) {
1113                         if (xfer > bio_left)
1114                                 xfer = bio_left;
1115                         bcopy(mbufcp, bio_cp, xfer);
1116                 } else {
1117                         /*
1118                          * Not enough buffer space in the bio.
1119                          */
1120                         return(EFBIG);
1121                 }
1122                 size -= xfer;
1123                 bio_left -= xfer;
1124                 bio_cp += xfer;
1125                 len -= xfer;
1126                 mbufcp += xfer;
1127         }
1128         *dpos = mbufcp;
1129         *mrep = mp;
1130         if (rem > 0) {
1131                 if (len < rem)
1132                         error = nfs_adv(mrep, dpos, rem, len);
1133                 else
1134                         *dpos += rem;
1135         }
1136         return (error);
1137 }
1138
1139 /*
1140  * copies a uio scatter/gather list to an mbuf chain.
1141  * NOTE: can ony handle iovcnt == 1
1142  */
1143 int
1144 nfsm_uiotombuf(struct uio *uiop, struct mbuf **mq, int siz, caddr_t *bpos)
1145 {
1146         char *uiocp;
1147         struct mbuf *mp, *mp2;
1148         int xfer, left, mlen;
1149         int uiosiz, rem;
1150         boolean_t getcluster;
1151         char *cp;
1152
1153 #ifdef DIAGNOSTIC
1154         if (uiop->uio_iovcnt != 1)
1155                 panic("nfsm_uiotombuf: iovcnt != 1");
1156 #endif
1157
1158         if (siz >= MINCLSIZE)
1159                 getcluster = TRUE;
1160         else
1161                 getcluster = FALSE;
1162         rem = nfsm_rndup(siz) - siz;
1163         mp = mp2 = *mq;
1164         while (siz > 0) {
1165                 left = uiop->uio_iov->iov_len;
1166                 uiocp = uiop->uio_iov->iov_base;
1167                 if (left > siz)
1168                         left = siz;
1169                 uiosiz = left;
1170                 while (left > 0) {
1171                         mlen = M_TRAILINGSPACE(mp);
1172                         if (mlen == 0) {
1173                                 if (getcluster)
1174                                         mp = m_getcl(MB_WAIT, MT_DATA, 0);
1175                                 else
1176                                         mp = m_get(MB_WAIT, MT_DATA);
1177                                 mp->m_len = 0;
1178                                 mp2->m_next = mp;
1179                                 mp2 = mp;
1180                                 mlen = M_TRAILINGSPACE(mp);
1181                         }
1182                         xfer = (left > mlen) ? mlen : left;
1183 #ifdef notdef
1184                         /* Not Yet.. */
1185                         if (uiop->uio_iov->iov_op != NULL)
1186                                 (*(uiop->uio_iov->iov_op))
1187                                 (uiocp, mtod(mp, caddr_t)+mp->m_len, xfer);
1188                         else
1189 #endif
1190                         if (uiop->uio_segflg == UIO_SYSSPACE)
1191                                 bcopy(uiocp, mtod(mp, caddr_t)+mp->m_len, xfer);
1192                         else
1193                                 copyin(uiocp, mtod(mp, caddr_t)+mp->m_len, xfer);
1194                         mp->m_len += xfer;
1195                         left -= xfer;
1196                         uiocp += xfer;
1197                         uiop->uio_offset += xfer;
1198                         uiop->uio_resid -= xfer;
1199                 }
1200                 uiop->uio_iov->iov_base = (char *)uiop->uio_iov->iov_base + uiosiz;
1201                 uiop->uio_iov->iov_len -= uiosiz;
1202                 siz -= uiosiz;
1203         }
1204         if (rem > 0) {
1205                 if (rem > M_TRAILINGSPACE(mp)) {
1206                         MGET(mp, MB_WAIT, MT_DATA);
1207                         mp->m_len = 0;
1208                         mp2->m_next = mp;
1209                 }
1210                 cp = mtod(mp, caddr_t)+mp->m_len;
1211                 for (left = 0; left < rem; left++)
1212                         *cp++ = '\0';
1213                 mp->m_len += rem;
1214                 *bpos = cp;
1215         } else
1216                 *bpos = mtod(mp, caddr_t)+mp->m_len;
1217         *mq = mp;
1218         return (0);
1219 }
1220
1221 /*
1222  * Help break down an mbuf chain by setting the first siz bytes contiguous
1223  * pointed to by returned val.
1224  * This is used by the macros nfsm_dissect and nfsm_dissecton for tough
1225  * cases. (The macros use the vars. dpos and dpos2)
1226  */
1227 int
1228 nfsm_disct(struct mbuf **mdp, caddr_t *dposp, int siz, int left, caddr_t *cp2)
1229 {
1230         struct mbuf *mp, *mp2;
1231         int siz2, xfer;
1232         caddr_t p;
1233
1234         mp = *mdp;
1235         while (left == 0) {
1236                 *mdp = mp = mp->m_next;
1237                 if (mp == NULL)
1238                         return (EBADRPC);
1239                 left = mp->m_len;
1240                 *dposp = mtod(mp, caddr_t);
1241         }
1242         if (left >= siz) {
1243                 *cp2 = *dposp;
1244                 *dposp += siz;
1245         } else if (mp->m_next == NULL) {
1246                 return (EBADRPC);
1247         } else if (siz > MHLEN) {
1248                 panic("nfs S too big");
1249         } else {
1250                 MGET(mp2, MB_WAIT, MT_DATA);
1251                 mp2->m_next = mp->m_next;
1252                 mp->m_next = mp2;
1253                 mp->m_len -= left;
1254                 mp = mp2;
1255                 *cp2 = p = mtod(mp, caddr_t);
1256                 bcopy(*dposp, p, left);         /* Copy what was left */
1257                 siz2 = siz-left;
1258                 p += left;
1259                 mp2 = mp->m_next;
1260                 /* Loop around copying up the siz2 bytes */
1261                 while (siz2 > 0) {
1262                         if (mp2 == NULL)
1263                                 return (EBADRPC);
1264                         xfer = (siz2 > mp2->m_len) ? mp2->m_len : siz2;
1265                         if (xfer > 0) {
1266                                 bcopy(mtod(mp2, caddr_t), p, xfer);
1267                                 mp2->m_len -= xfer;
1268                                 mp2->m_data += xfer;
1269                                 p += xfer;
1270                                 siz2 -= xfer;
1271                         }
1272                         if (siz2 > 0)
1273                                 mp2 = mp2->m_next;
1274                 }
1275                 mp->m_len = siz;
1276                 *mdp = mp2;
1277                 *dposp = mtod(mp2, caddr_t);
1278         }
1279         return (0);
1280 }
1281
1282 /*
1283  * Advance the position in the mbuf chain.
1284  */
1285 int
1286 nfs_adv(struct mbuf **mdp, caddr_t *dposp, int offs, int left)
1287 {
1288         struct mbuf *m;
1289         int s;
1290
1291         m = *mdp;
1292         s = left;
1293         while (s < offs) {
1294                 offs -= s;
1295                 m = m->m_next;
1296                 if (m == NULL)
1297                         return (EBADRPC);
1298                 s = m->m_len;
1299         }
1300         *mdp = m;
1301         *dposp = mtod(m, caddr_t)+offs;
1302         return (0);
1303 }
1304
1305 /*
1306  * Copy a string into mbufs for the hard cases...
1307  */
1308 int
1309 nfsm_strtmbuf(struct mbuf **mb, char **bpos, const char *cp, long siz)
1310 {
1311         struct mbuf *m1 = NULL, *m2;
1312         long left, xfer, len, tlen;
1313         u_int32_t *tl;
1314         int putsize;
1315
1316         putsize = 1;
1317         m2 = *mb;
1318         left = M_TRAILINGSPACE(m2);
1319         if (left > 0) {
1320                 tl = ((u_int32_t *)(*bpos));
1321                 *tl++ = txdr_unsigned(siz);
1322                 putsize = 0;
1323                 left -= NFSX_UNSIGNED;
1324                 m2->m_len += NFSX_UNSIGNED;
1325                 if (left > 0) {
1326                         bcopy(cp, (caddr_t) tl, left);
1327                         siz -= left;
1328                         cp += left;
1329                         m2->m_len += left;
1330                         left = 0;
1331                 }
1332         }
1333         /* Loop around adding mbufs */
1334         while (siz > 0) {
1335                 int msize;
1336
1337                 m1 = m_getl(siz, MB_WAIT, MT_DATA, 0, &msize);
1338                 m1->m_len = msize;
1339                 m2->m_next = m1;
1340                 m2 = m1;
1341                 tl = mtod(m1, u_int32_t *);
1342                 tlen = 0;
1343                 if (putsize) {
1344                         *tl++ = txdr_unsigned(siz);
1345                         m1->m_len -= NFSX_UNSIGNED;
1346                         tlen = NFSX_UNSIGNED;
1347                         putsize = 0;
1348                 }
1349                 if (siz < m1->m_len) {
1350                         len = nfsm_rndup(siz);
1351                         xfer = siz;
1352                         if (xfer < len)
1353                                 *(tl+(xfer>>2)) = 0;
1354                 } else {
1355                         xfer = len = m1->m_len;
1356                 }
1357                 bcopy(cp, (caddr_t) tl, xfer);
1358                 m1->m_len = len+tlen;
1359                 siz -= xfer;
1360                 cp += xfer;
1361         }
1362         *mb = m1;
1363         *bpos = mtod(m1, caddr_t)+m1->m_len;
1364         return (0);
1365 }
1366
1367 /*
1368  * A fiddled version of m_adj() that ensures null fill to a long
1369  * boundary and only trims off the back end
1370  */
1371 void
1372 nfsm_adj(struct mbuf *mp, int len, int nul)
1373 {
1374         struct mbuf *m;
1375         int count, i;
1376         char *cp;
1377
1378         /*
1379          * Trim from tail.  Scan the mbuf chain,
1380          * calculating its length and finding the last mbuf.
1381          * If the adjustment only affects this mbuf, then just
1382          * adjust and return.  Otherwise, rescan and truncate
1383          * after the remaining size.
1384          */
1385         count = 0;
1386         m = mp;
1387         for (;;) {
1388                 count += m->m_len;
1389                 if (m->m_next == NULL)
1390                         break;
1391                 m = m->m_next;
1392         }
1393         if (m->m_len > len) {
1394                 m->m_len -= len;
1395                 if (nul > 0) {
1396                         cp = mtod(m, caddr_t)+m->m_len-nul;
1397                         for (i = 0; i < nul; i++)
1398                                 *cp++ = '\0';
1399                 }
1400                 return;
1401         }
1402         count -= len;
1403         if (count < 0)
1404                 count = 0;
1405         /*
1406          * Correct length for chain is "count".
1407          * Find the mbuf with last data, adjust its length,
1408          * and toss data from remaining mbufs on chain.
1409          */
1410         for (m = mp; m; m = m->m_next) {
1411                 if (m->m_len >= count) {
1412                         m->m_len = count;
1413                         if (nul > 0) {
1414                                 cp = mtod(m, caddr_t)+m->m_len-nul;
1415                                 for (i = 0; i < nul; i++)
1416                                         *cp++ = '\0';
1417                         }
1418                         break;
1419                 }
1420                 count -= m->m_len;
1421         }
1422         for (m = m->m_next;m;m = m->m_next)
1423                 m->m_len = 0;
1424 }
1425
1426 /*
1427  * Make these functions instead of macros, so that the kernel text size
1428  * doesn't get too big...
1429  */
1430 void
1431 nfsm_srvwcc_data(nfsm_info_t info, struct nfsrv_descript *nfsd,
1432                  int before_ret, struct vattr *before_vap,
1433                  int after_ret, struct vattr *after_vap)
1434 {
1435         u_int32_t *tl;
1436
1437         /*
1438          * before_ret is 0 if before_vap is valid, non-zero if it isn't.
1439          */
1440         if (before_ret) {
1441                 tl = nfsm_build(info, NFSX_UNSIGNED);
1442                 *tl = nfs_false;
1443         } else {
1444                 tl = nfsm_build(info, 7 * NFSX_UNSIGNED);
1445                 *tl++ = nfs_true;
1446                 txdr_hyper(before_vap->va_size, tl);
1447                 tl += 2;
1448                 txdr_nfsv3time(&(before_vap->va_mtime), tl);
1449                 tl += 2;
1450                 txdr_nfsv3time(&(before_vap->va_ctime), tl);
1451         }
1452         nfsm_srvpostop_attr(info, nfsd, after_ret, after_vap);
1453 }
1454
1455 void
1456 nfsm_srvpostop_attr(nfsm_info_t info, struct nfsrv_descript *nfsd,
1457                    int after_ret, struct vattr *after_vap)
1458 {
1459         struct nfs_fattr *fp;
1460         u_int32_t *tl;
1461
1462         if (after_ret) {
1463                 tl = nfsm_build(info, NFSX_UNSIGNED);
1464                 *tl = nfs_false;
1465         } else {
1466                 tl = nfsm_build(info, NFSX_UNSIGNED + NFSX_V3FATTR);
1467                 *tl++ = nfs_true;
1468                 fp = (struct nfs_fattr *)tl;
1469                 nfsm_srvfattr(nfsd, after_vap, fp);
1470         }
1471 }
1472
1473 void
1474 nfsm_srvfattr(struct nfsrv_descript *nfsd, struct vattr *vap,
1475               struct nfs_fattr *fp)
1476 {
1477         /*
1478          * NFS seems to truncate nlink to 16 bits, don't let it overflow.
1479          */
1480         if (vap->va_nlink > 65535)
1481                 fp->fa_nlink = 65535;
1482         else
1483                 fp->fa_nlink = txdr_unsigned(vap->va_nlink);
1484         fp->fa_uid = txdr_unsigned(vap->va_uid);
1485         fp->fa_gid = txdr_unsigned(vap->va_gid);
1486         if (nfsd->nd_flag & ND_NFSV3) {
1487                 fp->fa_type = vtonfsv3_type(vap->va_type);
1488                 fp->fa_mode = vtonfsv3_mode(vap->va_mode);
1489                 txdr_hyper(vap->va_size, &fp->fa3_size);
1490                 txdr_hyper(vap->va_bytes, &fp->fa3_used);
1491                 fp->fa3_rdev.specdata1 = txdr_unsigned(vap->va_rmajor);
1492                 fp->fa3_rdev.specdata2 = txdr_unsigned(vap->va_rminor);
1493                 fp->fa3_fsid.nfsuquad[0] = 0;
1494                 fp->fa3_fsid.nfsuquad[1] = txdr_unsigned(vap->va_fsid);
1495                 txdr_hyper(vap->va_fileid, &fp->fa3_fileid);
1496                 txdr_nfsv3time(&vap->va_atime, &fp->fa3_atime);
1497                 txdr_nfsv3time(&vap->va_mtime, &fp->fa3_mtime);
1498                 txdr_nfsv3time(&vap->va_ctime, &fp->fa3_ctime);
1499         } else {
1500                 fp->fa_type = vtonfsv2_type(vap->va_type);
1501                 fp->fa_mode = vtonfsv2_mode(vap->va_type, vap->va_mode);
1502                 fp->fa2_size = txdr_unsigned(vap->va_size);
1503                 fp->fa2_blocksize = txdr_unsigned(vap->va_blocksize);
1504                 if (vap->va_type == VFIFO)
1505                         fp->fa2_rdev = 0xffffffff;
1506                 else
1507                         fp->fa2_rdev = txdr_unsigned(makeudev(vap->va_rmajor, vap->va_rminor));
1508                 fp->fa2_blocks = txdr_unsigned(vap->va_bytes / NFS_FABLKSIZE);
1509                 fp->fa2_fsid = txdr_unsigned(vap->va_fsid);
1510                 fp->fa2_fileid = txdr_unsigned(vap->va_fileid);
1511                 txdr_nfsv2time(&vap->va_atime, &fp->fa2_atime);
1512                 txdr_nfsv2time(&vap->va_mtime, &fp->fa2_mtime);
1513                 txdr_nfsv2time(&vap->va_ctime, &fp->fa2_ctime);
1514         }
1515 }