ee7c13cc68a8544fb0dc41efce79da3987a37ab2
[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         u_int32_t *tl;
946
947         if (bp >= be) {
948                 if (mp1 == info->mb)
949                         mp1->m_len += bp - info->bpos;
950                 mp1 = m_getcl(MB_WAIT, MT_DATA, 0);
951                 mp1->m_len = MCLBYTES;
952                 mp2->m_next = mp1;
953                 mp2 = mp1;
954                 bp = mtod(mp1, caddr_t);
955                 be = bp + mp1->m_len;
956         }
957         tl = (u_int32_t *)bp;
958         return (tl);
959 }
960
961 int
962 nfsm_srvsattr(nfsm_info_t info, struct vattr *vap)
963 {
964         u_int32_t *tl;
965         int error = 0;
966
967         NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
968         if (*tl == nfs_true) {
969                 NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
970                 vap->va_mode = nfstov_mode(*tl);
971         }
972         NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
973         if (*tl == nfs_true) {
974                 NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
975                 vap->va_uid = fxdr_unsigned(uid_t, *tl);
976         }
977         NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
978         if (*tl == nfs_true) {
979                 NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
980                 vap->va_gid = fxdr_unsigned(gid_t, *tl);
981         }
982         NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
983         if (*tl == nfs_true) {
984                 NULLOUT(tl = nfsm_dissect(info, 2 * NFSX_UNSIGNED));
985                 vap->va_size = fxdr_hyper(tl);
986         }
987         NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
988         switch (fxdr_unsigned(int, *tl)) {
989         case NFSV3SATTRTIME_TOCLIENT:
990                 NULLOUT(tl = nfsm_dissect(info, 2 * NFSX_UNSIGNED));
991                 fxdr_nfsv3time(tl, &vap->va_atime);
992                 break;
993         case NFSV3SATTRTIME_TOSERVER:
994                 getnanotime(&vap->va_atime);
995                 break;
996         };
997         NULLOUT(tl = nfsm_dissect(info, NFSX_UNSIGNED));
998         switch (fxdr_unsigned(int, *tl)) {
999         case NFSV3SATTRTIME_TOCLIENT:
1000                 NULLOUT(tl = nfsm_dissect(info, 2 * NFSX_UNSIGNED));
1001                 fxdr_nfsv3time(tl, &vap->va_mtime);
1002                 break;
1003         case NFSV3SATTRTIME_TOSERVER:
1004                 getnanotime(&vap->va_mtime);
1005                 break;
1006         }
1007 nfsmout:
1008         return (error);
1009 }
1010
1011 /*
1012  * copies mbuf chain to the uio scatter/gather list
1013  */
1014 int
1015 nfsm_mbuftouio(struct mbuf **mrep, struct uio *uiop, int siz, caddr_t *dpos)
1016 {
1017         char *mbufcp, *uiocp;
1018         int xfer, left, len;
1019         struct mbuf *mp;
1020         long uiosiz, rem;
1021         int error = 0;
1022
1023         mp = *mrep;
1024         mbufcp = *dpos;
1025         len = mtod(mp, caddr_t)+mp->m_len-mbufcp;
1026         rem = nfsm_rndup(siz)-siz;
1027         while (siz > 0) {
1028                 if (uiop->uio_iovcnt <= 0 || uiop->uio_iov == NULL)
1029                         return (EFBIG);
1030                 left = uiop->uio_iov->iov_len;
1031                 uiocp = uiop->uio_iov->iov_base;
1032                 if (left > siz)
1033                         left = siz;
1034                 uiosiz = left;
1035                 while (left > 0) {
1036                         while (len == 0) {
1037                                 mp = mp->m_next;
1038                                 if (mp == NULL)
1039                                         return (EBADRPC);
1040                                 mbufcp = mtod(mp, caddr_t);
1041                                 len = mp->m_len;
1042                         }
1043                         xfer = (left > len) ? len : left;
1044 #ifdef notdef
1045                         /* Not Yet.. */
1046                         if (uiop->uio_iov->iov_op != NULL)
1047                                 (*(uiop->uio_iov->iov_op))
1048                                 (mbufcp, uiocp, xfer);
1049                         else
1050 #endif
1051                         if (uiop->uio_segflg == UIO_SYSSPACE)
1052                                 bcopy(mbufcp, uiocp, xfer);
1053                         else
1054                                 copyout(mbufcp, uiocp, xfer);
1055                         left -= xfer;
1056                         len -= xfer;
1057                         mbufcp += xfer;
1058                         uiocp += xfer;
1059                         uiop->uio_offset += xfer;
1060                         uiop->uio_resid -= xfer;
1061                 }
1062                 if (uiop->uio_iov->iov_len <= siz) {
1063                         uiop->uio_iovcnt--;
1064                         uiop->uio_iov++;
1065                 } else {
1066                         uiop->uio_iov->iov_base = (char *)uiop->uio_iov->iov_base + uiosiz;
1067                         uiop->uio_iov->iov_len -= uiosiz;
1068                 }
1069                 siz -= uiosiz;
1070         }
1071         *dpos = mbufcp;
1072         *mrep = mp;
1073         if (rem > 0) {
1074                 if (len < rem)
1075                         error = nfs_adv(mrep, dpos, rem, len);
1076                 else
1077                         *dpos += rem;
1078         }
1079         return (error);
1080 }
1081
1082 /*
1083  * copies mbuf chain to the bio buffer
1084  */
1085 int
1086 nfsm_mbuftobio(struct mbuf **mrep, struct bio *bio, int size, caddr_t *dpos)
1087 {
1088         struct buf *bp = bio->bio_buf;
1089         char *mbufcp;
1090         char *bio_cp;
1091         int xfer, len;
1092         struct mbuf *mp;
1093         long rem;
1094         int error = 0;
1095         int bio_left;
1096
1097         mp = *mrep;
1098         mbufcp = *dpos;
1099         len = mtod(mp, caddr_t) + mp->m_len - mbufcp;
1100         rem = nfsm_rndup(size) - size;
1101
1102         bio_left = bp->b_bcount;
1103         bio_cp = bp->b_data;
1104
1105         while (size > 0) {
1106                 while (len == 0) {
1107                         mp = mp->m_next;
1108                         if (mp == NULL)
1109                                 return (EBADRPC);
1110                         mbufcp = mtod(mp, caddr_t);
1111                         len = mp->m_len;
1112                 }
1113                 if ((xfer = len) > size)
1114                         xfer = size;
1115                 if (bio_left) {
1116                         if (xfer > bio_left)
1117                                 xfer = bio_left;
1118                         bcopy(mbufcp, bio_cp, xfer);
1119                 } else {
1120                         /*
1121                          * Not enough buffer space in the bio.
1122                          */
1123                         return(EFBIG);
1124                 }
1125                 size -= xfer;
1126                 bio_left -= xfer;
1127                 bio_cp += xfer;
1128                 len -= xfer;
1129                 mbufcp += xfer;
1130         }
1131         *dpos = mbufcp;
1132         *mrep = mp;
1133         if (rem > 0) {
1134                 if (len < rem)
1135                         error = nfs_adv(mrep, dpos, rem, len);
1136                 else
1137                         *dpos += rem;
1138         }
1139         return (error);
1140 }
1141
1142 /*
1143  * copies a uio scatter/gather list to an mbuf chain.
1144  * NOTE: can ony handle iovcnt == 1
1145  */
1146 int
1147 nfsm_uiotombuf(struct uio *uiop, struct mbuf **mq, int siz, caddr_t *bpos)
1148 {
1149         char *uiocp;
1150         struct mbuf *mp, *mp2;
1151         int xfer, left, mlen;
1152         int uiosiz, rem;
1153         boolean_t getcluster;
1154         char *cp;
1155
1156 #ifdef DIAGNOSTIC
1157         if (uiop->uio_iovcnt != 1)
1158                 panic("nfsm_uiotombuf: iovcnt != 1");
1159 #endif
1160
1161         if (siz >= MINCLSIZE)
1162                 getcluster = TRUE;
1163         else
1164                 getcluster = FALSE;
1165         rem = nfsm_rndup(siz) - siz;
1166         mp = mp2 = *mq;
1167         while (siz > 0) {
1168                 left = uiop->uio_iov->iov_len;
1169                 uiocp = uiop->uio_iov->iov_base;
1170                 if (left > siz)
1171                         left = siz;
1172                 uiosiz = left;
1173                 while (left > 0) {
1174                         mlen = M_TRAILINGSPACE(mp);
1175                         if (mlen == 0) {
1176                                 if (getcluster)
1177                                         mp = m_getcl(MB_WAIT, MT_DATA, 0);
1178                                 else
1179                                         mp = m_get(MB_WAIT, MT_DATA);
1180                                 mp->m_len = 0;
1181                                 mp2->m_next = mp;
1182                                 mp2 = mp;
1183                                 mlen = M_TRAILINGSPACE(mp);
1184                         }
1185                         xfer = (left > mlen) ? mlen : left;
1186 #ifdef notdef
1187                         /* Not Yet.. */
1188                         if (uiop->uio_iov->iov_op != NULL)
1189                                 (*(uiop->uio_iov->iov_op))
1190                                 (uiocp, mtod(mp, caddr_t)+mp->m_len, xfer);
1191                         else
1192 #endif
1193                         if (uiop->uio_segflg == UIO_SYSSPACE)
1194                                 bcopy(uiocp, mtod(mp, caddr_t)+mp->m_len, xfer);
1195                         else
1196                                 copyin(uiocp, mtod(mp, caddr_t)+mp->m_len, xfer);
1197                         mp->m_len += xfer;
1198                         left -= xfer;
1199                         uiocp += xfer;
1200                         uiop->uio_offset += xfer;
1201                         uiop->uio_resid -= xfer;
1202                 }
1203                 uiop->uio_iov->iov_base = (char *)uiop->uio_iov->iov_base + uiosiz;
1204                 uiop->uio_iov->iov_len -= uiosiz;
1205                 siz -= uiosiz;
1206         }
1207         if (rem > 0) {
1208                 if (rem > M_TRAILINGSPACE(mp)) {
1209                         MGET(mp, MB_WAIT, MT_DATA);
1210                         mp->m_len = 0;
1211                         mp2->m_next = mp;
1212                 }
1213                 cp = mtod(mp, caddr_t)+mp->m_len;
1214                 for (left = 0; left < rem; left++)
1215                         *cp++ = '\0';
1216                 mp->m_len += rem;
1217                 *bpos = cp;
1218         } else
1219                 *bpos = mtod(mp, caddr_t)+mp->m_len;
1220         *mq = mp;
1221         return (0);
1222 }
1223
1224 /*
1225  * Help break down an mbuf chain by setting the first siz bytes contiguous
1226  * pointed to by returned val.
1227  * This is used by the macros nfsm_dissect and nfsm_dissecton for tough
1228  * cases. (The macros use the vars. dpos and dpos2)
1229  */
1230 int
1231 nfsm_disct(struct mbuf **mdp, caddr_t *dposp, int siz, int left, caddr_t *cp2)
1232 {
1233         struct mbuf *mp, *mp2;
1234         int siz2, xfer;
1235         caddr_t p;
1236
1237         mp = *mdp;
1238         while (left == 0) {
1239                 *mdp = mp = mp->m_next;
1240                 if (mp == NULL)
1241                         return (EBADRPC);
1242                 left = mp->m_len;
1243                 *dposp = mtod(mp, caddr_t);
1244         }
1245         if (left >= siz) {
1246                 *cp2 = *dposp;
1247                 *dposp += siz;
1248         } else if (mp->m_next == NULL) {
1249                 return (EBADRPC);
1250         } else if (siz > MHLEN) {
1251                 panic("nfs S too big");
1252         } else {
1253                 MGET(mp2, MB_WAIT, MT_DATA);
1254                 mp2->m_next = mp->m_next;
1255                 mp->m_next = mp2;
1256                 mp->m_len -= left;
1257                 mp = mp2;
1258                 *cp2 = p = mtod(mp, caddr_t);
1259                 bcopy(*dposp, p, left);         /* Copy what was left */
1260                 siz2 = siz-left;
1261                 p += left;
1262                 mp2 = mp->m_next;
1263                 /* Loop around copying up the siz2 bytes */
1264                 while (siz2 > 0) {
1265                         if (mp2 == NULL)
1266                                 return (EBADRPC);
1267                         xfer = (siz2 > mp2->m_len) ? mp2->m_len : siz2;
1268                         if (xfer > 0) {
1269                                 bcopy(mtod(mp2, caddr_t), p, xfer);
1270                                 mp2->m_len -= xfer;
1271                                 mp2->m_data += xfer;
1272                                 p += xfer;
1273                                 siz2 -= xfer;
1274                         }
1275                         if (siz2 > 0)
1276                                 mp2 = mp2->m_next;
1277                 }
1278                 mp->m_len = siz;
1279                 *mdp = mp2;
1280                 *dposp = mtod(mp2, caddr_t);
1281         }
1282         return (0);
1283 }
1284
1285 /*
1286  * Advance the position in the mbuf chain.
1287  */
1288 int
1289 nfs_adv(struct mbuf **mdp, caddr_t *dposp, int offs, int left)
1290 {
1291         struct mbuf *m;
1292         int s;
1293
1294         m = *mdp;
1295         s = left;
1296         while (s < offs) {
1297                 offs -= s;
1298                 m = m->m_next;
1299                 if (m == NULL)
1300                         return (EBADRPC);
1301                 s = m->m_len;
1302         }
1303         *mdp = m;
1304         *dposp = mtod(m, caddr_t)+offs;
1305         return (0);
1306 }
1307
1308 /*
1309  * Copy a string into mbufs for the hard cases...
1310  */
1311 int
1312 nfsm_strtmbuf(struct mbuf **mb, char **bpos, const char *cp, long siz)
1313 {
1314         struct mbuf *m1 = NULL, *m2;
1315         long left, xfer, len, tlen;
1316         u_int32_t *tl;
1317         int putsize;
1318
1319         putsize = 1;
1320         m2 = *mb;
1321         left = M_TRAILINGSPACE(m2);
1322         if (left > 0) {
1323                 tl = ((u_int32_t *)(*bpos));
1324                 *tl++ = txdr_unsigned(siz);
1325                 putsize = 0;
1326                 left -= NFSX_UNSIGNED;
1327                 m2->m_len += NFSX_UNSIGNED;
1328                 if (left > 0) {
1329                         bcopy(cp, (caddr_t) tl, left);
1330                         siz -= left;
1331                         cp += left;
1332                         m2->m_len += left;
1333                         left = 0;
1334                 }
1335         }
1336         /* Loop around adding mbufs */
1337         while (siz > 0) {
1338                 int msize;
1339
1340                 m1 = m_getl(siz, MB_WAIT, MT_DATA, 0, &msize);
1341                 m1->m_len = msize;
1342                 m2->m_next = m1;
1343                 m2 = m1;
1344                 tl = mtod(m1, u_int32_t *);
1345                 tlen = 0;
1346                 if (putsize) {
1347                         *tl++ = txdr_unsigned(siz);
1348                         m1->m_len -= NFSX_UNSIGNED;
1349                         tlen = NFSX_UNSIGNED;
1350                         putsize = 0;
1351                 }
1352                 if (siz < m1->m_len) {
1353                         len = nfsm_rndup(siz);
1354                         xfer = siz;
1355                         if (xfer < len)
1356                                 *(tl+(xfer>>2)) = 0;
1357                 } else {
1358                         xfer = len = m1->m_len;
1359                 }
1360                 bcopy(cp, (caddr_t) tl, xfer);
1361                 m1->m_len = len+tlen;
1362                 siz -= xfer;
1363                 cp += xfer;
1364         }
1365         *mb = m1;
1366         *bpos = mtod(m1, caddr_t)+m1->m_len;
1367         return (0);
1368 }
1369
1370 /*
1371  * A fiddled version of m_adj() that ensures null fill to a long
1372  * boundary and only trims off the back end
1373  */
1374 void
1375 nfsm_adj(struct mbuf *mp, int len, int nul)
1376 {
1377         struct mbuf *m;
1378         int count, i;
1379         char *cp;
1380
1381         /*
1382          * Trim from tail.  Scan the mbuf chain,
1383          * calculating its length and finding the last mbuf.
1384          * If the adjustment only affects this mbuf, then just
1385          * adjust and return.  Otherwise, rescan and truncate
1386          * after the remaining size.
1387          */
1388         count = 0;
1389         m = mp;
1390         for (;;) {
1391                 count += m->m_len;
1392                 if (m->m_next == NULL)
1393                         break;
1394                 m = m->m_next;
1395         }
1396         if (m->m_len > len) {
1397                 m->m_len -= len;
1398                 if (nul > 0) {
1399                         cp = mtod(m, caddr_t)+m->m_len-nul;
1400                         for (i = 0; i < nul; i++)
1401                                 *cp++ = '\0';
1402                 }
1403                 return;
1404         }
1405         count -= len;
1406         if (count < 0)
1407                 count = 0;
1408         /*
1409          * Correct length for chain is "count".
1410          * Find the mbuf with last data, adjust its length,
1411          * and toss data from remaining mbufs on chain.
1412          */
1413         for (m = mp; m; m = m->m_next) {
1414                 if (m->m_len >= count) {
1415                         m->m_len = count;
1416                         if (nul > 0) {
1417                                 cp = mtod(m, caddr_t)+m->m_len-nul;
1418                                 for (i = 0; i < nul; i++)
1419                                         *cp++ = '\0';
1420                         }
1421                         break;
1422                 }
1423                 count -= m->m_len;
1424         }
1425         for (m = m->m_next;m;m = m->m_next)
1426                 m->m_len = 0;
1427 }
1428
1429 /*
1430  * Make these functions instead of macros, so that the kernel text size
1431  * doesn't get too big...
1432  */
1433 void
1434 nfsm_srvwcc_data(nfsm_info_t info, struct nfsrv_descript *nfsd,
1435                  int before_ret, struct vattr *before_vap,
1436                  int after_ret, struct vattr *after_vap)
1437 {
1438         u_int32_t *tl;
1439
1440         /*
1441          * before_ret is 0 if before_vap is valid, non-zero if it isn't.
1442          */
1443         if (before_ret) {
1444                 tl = nfsm_build(info, NFSX_UNSIGNED);
1445                 *tl = nfs_false;
1446         } else {
1447                 tl = nfsm_build(info, 7 * NFSX_UNSIGNED);
1448                 *tl++ = nfs_true;
1449                 txdr_hyper(before_vap->va_size, tl);
1450                 tl += 2;
1451                 txdr_nfsv3time(&(before_vap->va_mtime), tl);
1452                 tl += 2;
1453                 txdr_nfsv3time(&(before_vap->va_ctime), tl);
1454         }
1455         nfsm_srvpostop_attr(info, nfsd, after_ret, after_vap);
1456 }
1457
1458 void
1459 nfsm_srvpostop_attr(nfsm_info_t info, struct nfsrv_descript *nfsd,
1460                    int after_ret, struct vattr *after_vap)
1461 {
1462         struct nfs_fattr *fp;
1463         u_int32_t *tl;
1464
1465         if (after_ret) {
1466                 tl = nfsm_build(info, NFSX_UNSIGNED);
1467                 *tl = nfs_false;
1468         } else {
1469                 tl = nfsm_build(info, NFSX_UNSIGNED + NFSX_V3FATTR);
1470                 *tl++ = nfs_true;
1471                 fp = (struct nfs_fattr *)tl;
1472                 nfsm_srvfattr(nfsd, after_vap, fp);
1473         }
1474 }
1475
1476 void
1477 nfsm_srvfattr(struct nfsrv_descript *nfsd, struct vattr *vap,
1478               struct nfs_fattr *fp)
1479 {
1480         /*
1481          * NFS seems to truncate nlink to 16 bits, don't let it overflow.
1482          */
1483         if (vap->va_nlink > 65535)
1484                 fp->fa_nlink = 65535;
1485         else
1486                 fp->fa_nlink = txdr_unsigned(vap->va_nlink);
1487         fp->fa_uid = txdr_unsigned(vap->va_uid);
1488         fp->fa_gid = txdr_unsigned(vap->va_gid);
1489         if (nfsd->nd_flag & ND_NFSV3) {
1490                 fp->fa_type = vtonfsv3_type(vap->va_type);
1491                 fp->fa_mode = vtonfsv3_mode(vap->va_mode);
1492                 txdr_hyper(vap->va_size, &fp->fa3_size);
1493                 txdr_hyper(vap->va_bytes, &fp->fa3_used);
1494                 fp->fa3_rdev.specdata1 = txdr_unsigned(vap->va_rmajor);
1495                 fp->fa3_rdev.specdata2 = txdr_unsigned(vap->va_rminor);
1496                 fp->fa3_fsid.nfsuquad[0] = 0;
1497                 fp->fa3_fsid.nfsuquad[1] = txdr_unsigned(vap->va_fsid);
1498                 txdr_hyper(vap->va_fileid, &fp->fa3_fileid);
1499                 txdr_nfsv3time(&vap->va_atime, &fp->fa3_atime);
1500                 txdr_nfsv3time(&vap->va_mtime, &fp->fa3_mtime);
1501                 txdr_nfsv3time(&vap->va_ctime, &fp->fa3_ctime);
1502         } else {
1503                 fp->fa_type = vtonfsv2_type(vap->va_type);
1504                 fp->fa_mode = vtonfsv2_mode(vap->va_type, vap->va_mode);
1505                 fp->fa2_size = txdr_unsigned(vap->va_size);
1506                 fp->fa2_blocksize = txdr_unsigned(vap->va_blocksize);
1507                 if (vap->va_type == VFIFO)
1508                         fp->fa2_rdev = 0xffffffff;
1509                 else
1510                         fp->fa2_rdev = txdr_unsigned(makeudev(vap->va_rmajor, vap->va_rminor));
1511                 fp->fa2_blocks = txdr_unsigned(vap->va_bytes / NFS_FABLKSIZE);
1512                 fp->fa2_fsid = txdr_unsigned(vap->va_fsid);
1513                 fp->fa2_fileid = txdr_unsigned(vap->va_fileid);
1514                 txdr_nfsv2time(&vap->va_atime, &fp->fa2_atime);
1515                 txdr_nfsv2time(&vap->va_mtime, &fp->fa2_mtime);
1516                 txdr_nfsv2time(&vap->va_ctime, &fp->fa2_ctime);
1517         }
1518 }