Data reads and writes should not need credentials, and most filesystems
[dragonfly.git] / sys / vfs / nfs / nfs_nqlease.c
1 /*
2  * Copyright (c) 1992, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Rick Macklem at The University of Guelph.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
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 the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *      @(#)nfs_nqlease.c       8.9 (Berkeley) 5/20/95
37  * $FreeBSD: src/sys/nfs/nfs_nqlease.c,v 1.50 2000/02/13 03:32:05 peter Exp $
38  * $DragonFly: src/sys/vfs/nfs/Attic/nfs_nqlease.c,v 1.12 2003/10/10 22:01:13 dillon Exp $
39  */
40
41
42 /*
43  * References:
44  *      Cary G. Gray and David R. Cheriton, "Leases: An Efficient Fault-Tolerant
45  *              Mechanism for Distributed File Cache Consistency",
46  *              In Proc. of the Twelfth ACM Symposium on Operating Systems
47  *              Principals, pg. 202-210, Litchfield Park, AZ, Dec. 1989.
48  *      Michael N. Nelson, Brent B. Welch and John K. Ousterhout, "Caching
49  *              in the Sprite Network File System", ACM TOCS 6(1),
50  *              pages 134-154, February 1988.
51  *      V. Srinivasan and Jeffrey C. Mogul, "Spritely NFS: Implementation and
52  *              Performance of Cache-Consistency Protocols", Digital
53  *              Equipment Corporation WRL Research Report 89/5, May 1989.
54  */
55 #include <sys/param.h>
56 #include <sys/vnode.h>
57 #include <sys/malloc.h>
58 #include <sys/mount.h>
59 #include <sys/kernel.h>
60 #include <sys/proc.h>
61 #include <sys/systm.h>
62 #include <sys/mbuf.h>
63 #include <sys/socket.h>
64 #include <sys/socketvar.h>
65 #include <sys/protosw.h>
66
67 #include <vm/vm_zone.h>
68
69 #include <netinet/in.h>
70 #include "rpcv2.h"
71 #include "nfsproto.h"
72 #include "nfs.h"
73 #include "nfsm_subs.h"
74 #include "xdr_subs.h"
75 #include "nqnfs.h"
76 #include "nfsmount.h"
77 #include "nfsnode.h"
78
79 static MALLOC_DEFINE(M_NQMHOST, "NQNFS Host", "Nqnfs host address table");
80
81 time_t nqnfsstarttime = (time_t)0;
82 int nqsrv_clockskew = NQ_CLOCKSKEW;
83 int nqsrv_writeslack = NQ_WRITESLACK;
84 int nqsrv_maxlease = NQ_MAXLEASE;
85 #ifndef NFS_NOSERVER
86 static int nqsrv_maxnumlease = NQ_MAXNUMLEASE;
87 #endif
88
89 struct vop_lease_args;
90
91 #ifndef NFS_NOSERVER
92 static int      nqsrv_cmpnam (struct nfssvc_sock *, struct sockaddr *,
93                         struct nqhost *);
94 static int      nqnfs_vacated (struct vnode *vp, struct ucred *cred);
95 static void     nqsrv_addhost (struct nqhost *lph, struct nfssvc_sock *slp,
96                                    struct sockaddr *nam);
97 static void     nqsrv_instimeq (struct nqlease *lp, u_int32_t duration);
98 static void     nqsrv_locklease (struct nqlease *lp);
99 static void     nqsrv_send_eviction (struct vnode *vp, struct nqlease *lp,
100                                          struct nfssvc_sock *slp,
101                                          struct sockaddr *nam, 
102                                          struct ucred *cred);
103 static void     nqsrv_unlocklease (struct nqlease *lp);
104 static void     nqsrv_waitfor_expiry (struct nqlease *lp);
105 #endif
106 extern void     nqnfs_lease_updatetime (int deltat);
107
108 /*
109  * Signifies which rpcs can have piggybacked lease requests
110  */
111 int nqnfs_piggy[NFS_NPROCS] = {
112         0,
113         0,
114         ND_WRITE,
115         ND_READ,
116         0,
117         ND_READ,
118         ND_READ,
119         ND_WRITE,
120         0,
121         0,
122         0,
123         0,
124         0,
125         0,
126         0,
127         0,
128         ND_READ,
129         ND_READ,
130         0,
131         0,
132         0,
133         0,
134         0,
135         0,
136         0,
137         0,
138 };
139
140 extern nfstype nfsv2_type[9];
141 extern nfstype nfsv3_type[9];
142 extern int nfsd_waiting;
143 extern struct nfsstats nfsstats;
144
145 #define TRUE    1
146 #define FALSE   0
147
148 #ifndef NFS_NOSERVER 
149 /*
150  * Get or check for a lease for "vp", based on ND_CHECK flag.
151  * The rules are as follows:
152  * - if a current non-caching lease, reply non-caching
153  * - if a current lease for same host only, extend lease
154  * - if a read cachable lease and a read lease request
155  *      add host to list any reply cachable
156  * - else { set non-cachable for read-write sharing }
157  *      send eviction notice messages to all other hosts that have lease
158  *      wait for lease termination { either by receiving vacated messages
159  *                                      from all the other hosts or expiry
160  *                                      via. timeout }
161  *      modify lease to non-cachable
162  * - else if no current lease, issue new one
163  * - reply
164  * - return boolean TRUE iff nam should be m_freem()'d
165  * NB: Since nqnfs_serverd() is called from a timer, any potential tsleep()
166  *     in here must be framed by nqsrv_locklease() and nqsrv_unlocklease().
167  *     nqsrv_locklease() is coded such that at least one of LC_LOCKED and
168  *     LC_WANTED is set whenever a process is tsleeping in it. The exception
169  *     is when a new lease is being allocated, since it is not in the timer
170  *     queue yet. (Ditto for the splsoftclock() and splx(s) calls)
171  */
172 int
173 nqsrv_getlease(vp, duration, flags, slp, td, nam, cachablep, frev, cred)
174         struct vnode *vp;
175         u_int32_t *duration;
176         int flags;
177         struct nfssvc_sock *slp;
178         struct thread *td;
179         struct sockaddr *nam;
180         int *cachablep;
181         u_quad_t *frev;
182         struct ucred *cred;
183 {
184         struct nqlease *lp;
185         struct nqfhhashhead *lpp = NULL;
186         struct nqhost *lph = NULL;
187         struct nqlease *tlp;
188         struct nqm **lphp;
189         struct vattr vattr;
190         fhandle_t fh;
191         int i, ok, error, s;
192
193         if (vp->v_type != VREG && vp->v_type != VDIR && vp->v_type != VLNK)
194                 return (0);
195         if (*duration > nqsrv_maxlease)
196                 *duration = nqsrv_maxlease;
197         error = VOP_GETATTR(vp, &vattr, td);
198         if (error)
199                 return (error);
200         *frev = vattr.va_filerev;
201         s = splsoftclock();
202         tlp = vp->v_lease;
203         if ((flags & ND_CHECK) == 0)
204                 nfsstats.srvnqnfs_getleases++;
205         if (tlp == 0) {
206                 /*
207                  * Find the lease by searching the hash list.
208                  */
209                 fh.fh_fsid = vp->v_mount->mnt_stat.f_fsid;
210                 error = VFS_VPTOFH(vp, &fh.fh_fid);
211                 if (error) {
212                         splx(s);
213                         return (error);
214                 }
215                 lpp = NQFHHASH(fh.fh_fid.fid_data);
216                 for (lp = lpp->lh_first; lp != 0; lp = lp->lc_hash.le_next)
217                         if (fh.fh_fsid.val[0] == lp->lc_fsid.val[0] &&
218                             fh.fh_fsid.val[1] == lp->lc_fsid.val[1] &&
219                             !bcmp(fh.fh_fid.fid_data, lp->lc_fiddata,
220                                   fh.fh_fid.fid_len - sizeof (int32_t))) {
221                                 /* Found it */
222                                 lp->lc_vp = vp;
223                                 vp->v_lease = lp;
224                                 tlp = lp;
225                                 break;
226                         }
227         } else
228                 lp = tlp;
229         if (lp != 0) {
230                 if ((lp->lc_flag & LC_NONCACHABLE) ||
231                     (lp->lc_morehosts == (struct nqm *)0 &&
232                      nqsrv_cmpnam(slp, nam, &lp->lc_host)))
233                         goto doreply;
234                 if ((flags & ND_READ) && (lp->lc_flag & LC_WRITE) == 0) {
235                         if (flags & ND_CHECK)
236                                 goto doreply;
237                         if (nqsrv_cmpnam(slp, nam, &lp->lc_host))
238                                 goto doreply;
239                         i = 0;
240                         if (lp->lc_morehosts) {
241                                 lph = lp->lc_morehosts->lpm_hosts;
242                                 lphp = &lp->lc_morehosts->lpm_next;
243                                 ok = 1;
244                         } else {
245                                 lphp = &lp->lc_morehosts;
246                                 ok = 0;
247                         }
248                         while (ok && (lph->lph_flag & LC_VALID)) {
249                                 if (nqsrv_cmpnam(slp, nam, lph))
250                                         goto doreply;
251                                 if (++i == LC_MOREHOSTSIZ) {
252                                         i = 0;
253                                         if (*lphp) {
254                                                 lph = (*lphp)->lpm_hosts;
255                                                 lphp = &((*lphp)->lpm_next);
256                                         } else
257                                                 ok = 0;
258                                 } else
259                                         lph++;
260                         }
261                         nqsrv_locklease(lp);
262                         if (!ok) {
263                                 *lphp = (struct nqm *)
264                                         malloc(sizeof (struct nqm),
265                                                 M_NQMHOST, M_WAITOK);
266                                 bzero((caddr_t)*lphp, sizeof (struct nqm));
267                                 lph = (*lphp)->lpm_hosts;
268                         }
269                         nqsrv_addhost(lph, slp, nam);
270                         nqsrv_unlocklease(lp);
271                 } else {
272                         lp->lc_flag |= LC_NONCACHABLE;
273                         nqsrv_locklease(lp);
274                         nqsrv_send_eviction(vp, lp, slp, nam, cred);
275                         nqsrv_waitfor_expiry(lp);
276                         nqsrv_unlocklease(lp);
277                 }
278 doreply:
279                 /*
280                  * Update the lease and return
281                  */
282                 if ((flags & ND_CHECK) == 0)
283                         nqsrv_instimeq(lp, *duration);
284                 if (lp->lc_flag & LC_NONCACHABLE)
285                         *cachablep = 0;
286                 else {
287                         *cachablep = 1;
288                         if (flags & ND_WRITE)
289                                 lp->lc_flag |= LC_WRITTEN;
290                 }
291                 splx(s);
292                 return (0);
293         }
294         splx(s);
295         if (flags & ND_CHECK)
296                 return (0);
297
298         /*
299          * Allocate new lease
300          * The value of nqsrv_maxnumlease should be set generously, so that
301          * the following "printf" happens infrequently.
302          */
303         if (nfsstats.srvnqnfs_leases > nqsrv_maxnumlease) {
304                 printf("Nqnfs server, too many leases\n");
305                 do {
306                         (void) tsleep((caddr_t)&lbolt, 0, "nqsrvnuml", 0);
307                 } while (nfsstats.srvnqnfs_leases > nqsrv_maxnumlease);
308         }
309         MALLOC(lp, struct nqlease *, sizeof (struct nqlease), M_NQLEASE, M_WAITOK);
310         bzero((caddr_t)lp, sizeof (struct nqlease));
311         if (flags & ND_WRITE)
312                 lp->lc_flag |= (LC_WRITE | LC_WRITTEN);
313         nqsrv_addhost(&lp->lc_host, slp, nam);
314         lp->lc_vp = vp;
315         lp->lc_fsid = fh.fh_fsid;
316         bcopy(fh.fh_fid.fid_data, lp->lc_fiddata,
317                 fh.fh_fid.fid_len - sizeof (int32_t));
318         if(!lpp)
319                 panic("nfs_nqlease.c: Phoney lpp");
320         LIST_INSERT_HEAD(lpp, lp, lc_hash);
321         vp->v_lease = lp;
322         s = splsoftclock();
323         nqsrv_instimeq(lp, *duration);
324         splx(s);
325         *cachablep = 1;
326         if (++nfsstats.srvnqnfs_leases > nfsstats.srvnqnfs_maxleases)
327                 nfsstats.srvnqnfs_maxleases = nfsstats.srvnqnfs_leases;
328         return (0);
329 }
330
331 /*
332  * Local lease check for server syscalls.
333  * Just set up args and let nqsrv_getlease() do the rest.
334  * nqnfs_vop_lease_check() is the VOP_LEASE() form of the same routine.
335  * Ifdef'd code in nfsnode.h renames these routines to whatever a particular
336  * OS needs.
337  */
338 void
339 nqnfs_lease_check(struct vnode *vp, struct thread *td,
340         struct ucred *cred, int flag)
341 {
342         u_int32_t duration = 0;
343         int cache;
344         u_quad_t frev;
345
346         (void) nqsrv_getlease(vp, &duration, ND_CHECK | flag, NQLOCALSLP,
347                 td, (struct sockaddr *)0, &cache, &frev, cred);
348 }
349
350 int
351 nqnfs_vop_lease_check(ap)
352         struct vop_lease_args /* {
353                 struct vnode *a_vp;
354                 struct thread *a_td;
355                 struct ucred *a_cred;
356                 int a_flag;
357         } */ *ap;
358 {
359         u_int32_t duration = 0;
360         int cache;
361         u_quad_t frev;
362
363         (void) nqsrv_getlease(ap->a_vp, &duration, ND_CHECK | ap->a_flag,
364                               NQLOCALSLP, ap->a_td, (struct sockaddr *)0,
365                               &cache, &frev, ap->a_cred);
366         return (0);
367 }
368
369
370 /*
371  * Add a host to an nqhost structure for a lease.
372  */
373 static void
374 nqsrv_addhost(lph, slp, nam)
375         struct nqhost *lph;
376         struct nfssvc_sock *slp;
377         struct sockaddr *nam;
378 {
379         struct sockaddr_in *saddr;
380         struct socket *nsso;
381
382         if (slp == NQLOCALSLP) {
383                 lph->lph_flag |= (LC_VALID | LC_LOCAL);
384                 return;
385         }
386         nsso = slp->ns_so;
387         lph->lph_slp = slp;
388         if (nsso && nsso->so_proto->pr_protocol == IPPROTO_UDP) {
389                 saddr = (struct sockaddr_in *)nam;
390                 lph->lph_flag |= (LC_VALID | LC_UDP);
391                 lph->lph_inetaddr = saddr->sin_addr.s_addr;
392                 lph->lph_port = saddr->sin_port;
393         } else {
394                 lph->lph_flag |= (LC_VALID | LC_SREF);
395                 slp->ns_sref++;
396         }
397 }
398
399 /*
400  * Update the lease expiry time and position it in the timer queue correctly.
401  */
402 static void
403 nqsrv_instimeq(lp, duration)
404         struct nqlease *lp;
405         u_int32_t duration;
406 {
407         struct nqlease *tlp;
408         time_t newexpiry;
409
410         newexpiry = time_second + duration + nqsrv_clockskew;
411         if (lp->lc_expiry == newexpiry)
412                 return;
413         if (lp->lc_timer.cqe_next != 0) {
414                 CIRCLEQ_REMOVE(&nqtimerhead, lp, lc_timer);
415         }
416         lp->lc_expiry = newexpiry;
417
418         /*
419          * Find where in the queue it should be.
420          */
421         tlp = nqtimerhead.cqh_last;
422         while (tlp != (void *)&nqtimerhead && tlp->lc_expiry > newexpiry)
423                 tlp = tlp->lc_timer.cqe_prev;
424 #ifdef HASNVRAM
425         if (tlp == nqtimerhead.cqh_last)
426                 NQSTORENOVRAM(newexpiry);
427 #endif /* HASNVRAM */
428         if (tlp == (void *)&nqtimerhead) {
429                 CIRCLEQ_INSERT_HEAD(&nqtimerhead, lp, lc_timer);
430         } else {
431                 CIRCLEQ_INSERT_AFTER(&nqtimerhead, tlp, lp, lc_timer);
432         }
433 }
434
435 /*
436  * Compare the requesting host address with the lph entry in the lease.
437  * Return true iff it is the same.
438  * This is somewhat messy due to the union in the nqhost structure.
439  * The local host is indicated by the special value of NQLOCALSLP for slp.
440  */
441 static int
442 nqsrv_cmpnam(slp, nam, lph)
443         struct nfssvc_sock *slp;
444         struct sockaddr *nam;
445         struct nqhost *lph;
446 {
447         struct sockaddr_in *saddr;
448         struct sockaddr *addr;
449         union nethostaddr lhaddr;
450         struct socket *nsso;
451         int ret;
452
453         if (slp == NQLOCALSLP) {
454                 if (lph->lph_flag & LC_LOCAL)
455                         return (1);
456                 else
457                         return (0);
458         }
459         nsso = slp->ns_so;
460         if (nsso && nsso->so_proto->pr_protocol == IPPROTO_UDP) {
461                 addr = nam;
462         } else {
463                 addr = slp->ns_nam;
464         }
465         if (lph->lph_flag & LC_UDP) {
466                 ret = netaddr_match(AF_INET, &lph->lph_haddr, addr);
467         } else {
468                 if ((lph->lph_slp->ns_flag & SLP_VALID) == 0)
469                         return (0);
470                 saddr = (struct sockaddr_in *)lph->lph_slp->ns_nam;
471                 if (saddr->sin_family == AF_INET)
472                         lhaddr.had_inetaddr = saddr->sin_addr.s_addr;
473                 else
474                         lhaddr.had_nam = lph->lph_slp->ns_nam;
475                 ret = netaddr_match(saddr->sin_family, &lhaddr, addr);
476         }
477         return (ret);
478 }
479
480 /*
481  * Send out eviction notice messages to all other hosts for the lease.
482  */
483 static void
484 nqsrv_send_eviction(vp, lp, slp, nam, cred)
485         struct vnode *vp;
486         struct nqlease *lp;
487         struct nfssvc_sock *slp;
488         struct sockaddr *nam;
489         struct ucred *cred;
490 {
491         struct nqhost *lph = &lp->lc_host;
492         int siz;
493         struct nqm *lphnext = lp->lc_morehosts;
494         struct mbuf *m, *mreq, *mb, *mb2, *mheadend;
495         struct sockaddr *nam2;
496         struct sockaddr_in *saddr;
497         nfsfh_t nfh;
498         fhandle_t *fhp;
499         caddr_t bpos, cp;
500         u_int32_t xid, *tl;
501         int len = 1, ok = 1, i = 0;
502
503         while (ok && (lph->lph_flag & LC_VALID)) {
504                 if (nqsrv_cmpnam(slp, nam, lph)) {
505                         lph->lph_flag |= LC_VACATED;
506                 } else if ((lph->lph_flag & (LC_LOCAL | LC_VACATED)) == 0) {
507                         struct socket *so;
508                         int sotype;
509                         int *solockp = NULL;
510
511                         so = lph->lph_slp->ns_so;
512                         if (lph->lph_flag & LC_UDP) {
513                                 MALLOC(nam2, struct sockaddr *,
514                                        sizeof *nam2, M_SONAME, M_WAITOK);
515                                 saddr = (struct sockaddr_in *)nam2;
516                                 saddr->sin_len = sizeof *saddr;
517                                 saddr->sin_family = AF_INET;
518                                 saddr->sin_addr.s_addr = lph->lph_inetaddr;
519                                 saddr->sin_port = lph->lph_port;
520                         } else if (lph->lph_slp->ns_flag & SLP_VALID) {
521                                 nam2 = (struct sockaddr *)0;
522                         } else {
523                                 goto nextone;
524                         }
525                         sotype = so->so_type;
526                         if (so->so_proto->pr_flags & PR_CONNREQUIRED)
527                                 solockp = &lph->lph_slp->ns_solock;
528                         nfsm_reqhead((struct vnode *)0, NQNFSPROC_EVICTED,
529                                 NFSX_V3FH + NFSX_UNSIGNED);
530                         fhp = &nfh.fh_generic;
531                         bzero((caddr_t)fhp, sizeof(nfh));
532                         fhp->fh_fsid = vp->v_mount->mnt_stat.f_fsid;
533                         VFS_VPTOFH(vp, &fhp->fh_fid);
534                         nfsm_srvfhtom(fhp, 1);
535                         m = mreq;
536                         siz = 0;
537                         while (m) {
538                                 siz += m->m_len;
539                                 m = m->m_next;
540                         }
541                         if (siz <= 0 || siz > NFS_MAXPACKET) {
542                                 printf("mbuf siz=%d\n",siz);
543                                 panic("Bad nfs svc reply");
544                         }
545                         m = nfsm_rpchead(cred, (NFSMNT_NFSV3 | NFSMNT_NQNFS),
546                                 NQNFSPROC_EVICTED,
547                                 RPCAUTH_UNIX, 5 * NFSX_UNSIGNED, (char *)0,
548                                 0, (char *)NULL, mreq, siz, &mheadend, &xid);
549                         /*
550                          * For stream protocols, prepend a Sun RPC
551                          * Record Mark.
552                          */
553                         if (sotype == SOCK_STREAM) {
554                                 M_PREPEND(m, NFSX_UNSIGNED, M_WAIT);
555                                 /* XXX-MBUF */
556                                 printf("nfs_nqlease: M_PREPEND failed\n");
557                                 *mtod(m, u_int32_t *) = htonl(0x80000000 |
558                                         (m->m_pkthdr.len - NFSX_UNSIGNED));
559                         }
560                         /*
561                          * nfs_sndlock if PR_CONNREQUIRED XXX
562                          */
563
564                         if ((lph->lph_flag & LC_UDP) == 0 &&
565                             ((lph->lph_slp->ns_flag & SLP_VALID) == 0 ||
566                             nfs_slplock(lph->lph_slp, 0) == 0)) {
567                                 m_freem(m);
568                         } else {
569                                 (void) nfs_send(so, nam2, m,
570                                                 (struct nfsreq *)0);
571                                 if (solockp)
572                                         nfs_slpunlock(lph->lph_slp);
573                         }
574                         if (lph->lph_flag & LC_UDP)
575                                 FREE(nam2, M_SONAME);
576                 }
577 nextone:
578                 if (++i == len) {
579                         if (lphnext) {
580                                 i = 0;
581                                 len = LC_MOREHOSTSIZ;
582                                 lph = lphnext->lpm_hosts;
583                                 lphnext = lphnext->lpm_next;
584                         } else
585                                 ok = 0;
586                 } else
587                         lph++;
588         }
589 }
590
591 /*
592  * Wait for the lease to expire.
593  * This will occur when all clients have sent "vacated" messages to
594  * this server OR when it expires do to timeout.
595  */
596 static void
597 nqsrv_waitfor_expiry(lp)
598         struct nqlease *lp;
599 {
600         struct nqhost *lph;
601         int i;
602         struct nqm *lphnext;
603         int len, ok;
604
605 tryagain:
606         if (time_second > lp->lc_expiry)
607                 return;
608         lph = &lp->lc_host;
609         lphnext = lp->lc_morehosts;
610         len = 1;
611         i = 0;
612         ok = 1;
613         while (ok && (lph->lph_flag & LC_VALID)) {
614                 if ((lph->lph_flag & (LC_LOCAL | LC_VACATED)) == 0) {
615                         lp->lc_flag |= LC_EXPIREDWANTED;
616                         (void) tsleep((caddr_t)&lp->lc_flag, 0, "nqexp", 0);
617                         goto tryagain;
618                 }
619                 if (++i == len) {
620                         if (lphnext) {
621                                 i = 0;
622                                 len = LC_MOREHOSTSIZ;
623                                 lph = lphnext->lpm_hosts;
624                                 lphnext = lphnext->lpm_next;
625                         } else
626                                 ok = 0;
627                 } else
628                         lph++;
629         }
630 }
631
632 /*
633  * Nqnfs server timer that maintains the server lease queue.
634  * Scan the lease queue for expired entries:
635  * - when one is found, wakeup anyone waiting for it
636  *   else dequeue and free
637  */
638 void
639 nqnfs_serverd()
640 {
641         struct nqlease *lp;
642         struct nqhost *lph;
643         struct nqlease *nextlp;
644         struct nqm *lphnext, *olphnext;
645         int i, len, ok;
646
647         for (lp = nqtimerhead.cqh_first; lp != (void *)&nqtimerhead;
648             lp = nextlp) {
649                 if (lp->lc_expiry >= time_second)
650                         break;
651                 nextlp = lp->lc_timer.cqe_next;
652                 if (lp->lc_flag & LC_EXPIREDWANTED) {
653                         lp->lc_flag &= ~LC_EXPIREDWANTED;
654                         wakeup((caddr_t)&lp->lc_flag);
655                 } else if ((lp->lc_flag & (LC_LOCKED | LC_WANTED)) == 0) {
656                     /*
657                      * Make a best effort at keeping a write caching lease long
658                      * enough by not deleting it until it has been explicitly
659                      * vacated or there have been no writes in the previous
660                      * write_slack seconds since expiry and the nfsds are not
661                      * all busy. The assumption is that if the nfsds are not
662                      * all busy now (no queue of nfs requests), then the client
663                      * would have been able to do at least one write to the
664                      * file during the last write_slack seconds if it was still
665                      * trying to push writes to the server.
666                      */
667                     if ((lp->lc_flag & (LC_WRITE | LC_VACATED)) == LC_WRITE &&
668                         ((lp->lc_flag & LC_WRITTEN) || nfsd_waiting == 0)) {
669                         lp->lc_flag &= ~LC_WRITTEN;
670                         nqsrv_instimeq(lp, nqsrv_writeslack);
671                     } else {
672                         CIRCLEQ_REMOVE(&nqtimerhead, lp, lc_timer);
673                         LIST_REMOVE(lp, lc_hash);
674                         /*
675                          * This soft reference may no longer be valid, but
676                          * no harm done. The worst case is if the vnode was
677                          * recycled and has another valid lease reference,
678                          * which is dereferenced prematurely.
679                          */
680                         lp->lc_vp->v_lease = (struct nqlease *)0;
681                         lph = &lp->lc_host;
682                         lphnext = lp->lc_morehosts;
683                         olphnext = (struct nqm *)0;
684                         len = 1;
685                         i = 0;
686                         ok = 1;
687                         while (ok && (lph->lph_flag & LC_VALID)) {
688                                 if (lph->lph_flag & LC_SREF)
689                                         nfsrv_slpderef(lph->lph_slp);
690                                 if (++i == len) {
691                                         if (olphnext) {
692                                                 free((caddr_t)olphnext, M_NQMHOST);
693                                                 olphnext = (struct nqm *)0;
694                                         }
695                                         if (lphnext) {
696                                                 olphnext = lphnext;
697                                                 i = 0;
698                                                 len = LC_MOREHOSTSIZ;
699                                                 lph = lphnext->lpm_hosts;
700                                                 lphnext = lphnext->lpm_next;
701                                         } else
702                                                 ok = 0;
703                                 } else
704                                         lph++;
705                         }
706                         FREE((caddr_t)lp, M_NQLEASE);
707                         if (olphnext)
708                                 free((caddr_t)olphnext, M_NQMHOST);
709                         nfsstats.srvnqnfs_leases--;
710                     }
711                 }
712         }
713 }
714
715 /*
716  * Called from nfssvc_nfsd() for a getlease rpc request.
717  * Do the from/to xdr translation and call nqsrv_getlease() to
718  * do the real work.
719  */
720 int
721 nqnfsrv_getlease(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
722         struct thread *td, struct mbuf **mrq)
723 {
724         struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
725         struct sockaddr *nam = nfsd->nd_nam;
726         caddr_t dpos = nfsd->nd_dpos;
727         struct ucred *cred = &nfsd->nd_cr;
728         struct nfs_fattr *fp;
729         struct vattr va;
730         struct vattr *vap = &va;
731         struct vnode *vp;
732         nfsfh_t nfh;
733         fhandle_t *fhp;
734         u_int32_t *tl;
735         int32_t t1;
736         u_quad_t frev;
737         caddr_t bpos;
738         int error = 0;
739         char *cp2;
740         struct mbuf *mb, *mb2, *mreq;
741         int flags, rdonly, cache;
742
743         fhp = &nfh.fh_generic;
744         nfsm_srvmtofh(fhp);
745         nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
746         flags = fxdr_unsigned(int, *tl++);
747         nfsd->nd_duration = fxdr_unsigned(int, *tl);
748         error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam, &rdonly,
749                 (nfsd->nd_flag & ND_KERBAUTH), TRUE);
750         if (error) {
751                 nfsm_reply(0);
752                 goto nfsmout;
753         }
754         if (rdonly && flags == ND_WRITE) {
755                 error = EROFS;
756                 vput(vp);
757                 nfsm_reply(0);
758         }
759         (void) nqsrv_getlease(vp, &nfsd->nd_duration, flags, slp, td,
760                 nam, &cache, &frev, cred);
761         error = VOP_GETATTR(vp, vap, td);
762         vput(vp);
763         nfsm_reply(NFSX_V3FATTR + 4 * NFSX_UNSIGNED);
764         nfsm_build(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
765         *tl++ = txdr_unsigned(cache);
766         *tl++ = txdr_unsigned(nfsd->nd_duration);
767         txdr_hyper(frev, tl);
768         nfsm_build(fp, struct nfs_fattr *, NFSX_V3FATTR);
769         nfsm_srvfillattr(vap, fp);
770         nfsm_srvdone;
771 }
772
773 /*
774  * Called from nfssvc_nfsd() when a "vacated" message is received from a
775  * client. Find the entry and expire it.
776  */
777 int
778 nqnfsrv_vacated(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
779         struct thread *td, struct mbuf **mrq)
780 {
781         struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
782         struct sockaddr *nam = nfsd->nd_nam;
783         caddr_t dpos = nfsd->nd_dpos;
784         struct nqlease *lp;
785         struct nqhost *lph;
786         struct nqlease *tlp = (struct nqlease *)0;
787         nfsfh_t nfh;
788         fhandle_t *fhp;
789         u_int32_t *tl;
790         int32_t t1;
791         struct nqm *lphnext;
792         struct mbuf *mreq, *mb;
793         int error = 0, i, len, ok, gotit = 0, cache = 0;
794         char *cp2, *bpos;
795         u_quad_t frev;
796
797         fhp = &nfh.fh_generic;
798         nfsm_srvmtofh(fhp);
799         m_freem(mrep);
800         /*
801          * Find the lease by searching the hash list.
802          */
803         for (lp = NQFHHASH(fhp->fh_fid.fid_data)->lh_first; lp != 0;
804             lp = lp->lc_hash.le_next)
805                 if (fhp->fh_fsid.val[0] == lp->lc_fsid.val[0] &&
806                     fhp->fh_fsid.val[1] == lp->lc_fsid.val[1] &&
807                     !bcmp(fhp->fh_fid.fid_data, lp->lc_fiddata,
808                           MAXFIDSZ)) {
809                         /* Found it */
810                         tlp = lp;
811                         break;
812                 }
813         if (tlp != 0) {
814                 lp = tlp;
815                 len = 1;
816                 i = 0;
817                 lph = &lp->lc_host;
818                 lphnext = lp->lc_morehosts;
819                 ok = 1;
820                 while (ok && (lph->lph_flag & LC_VALID)) {
821                         if (nqsrv_cmpnam(slp, nam, lph)) {
822                                 lph->lph_flag |= LC_VACATED;
823                                 gotit++;
824                                 break;
825                         }
826                         if (++i == len) {
827                                 if (lphnext) {
828                                         len = LC_MOREHOSTSIZ;
829                                         i = 0;
830                                         lph = lphnext->lpm_hosts;
831                                         lphnext = lphnext->lpm_next;
832                                 } else
833                                         ok = 0;
834                         } else
835                                 lph++;
836                 }
837                 if ((lp->lc_flag & LC_EXPIREDWANTED) && gotit) {
838                         lp->lc_flag &= ~LC_EXPIREDWANTED;
839                         wakeup((caddr_t)&lp->lc_flag);
840                 }
841 nfsmout:
842                 return (EPERM);
843         }
844         return (EPERM);
845 }
846
847 #endif /* NFS_NOSERVER */
848
849 /*
850  * Client get lease rpc function.
851  */
852 int
853 nqnfs_getlease(struct vnode *vp, int rwflag, struct thread *td)
854 {
855         u_int32_t *tl;
856         caddr_t cp;
857         int32_t t1, t2;
858         struct nfsnode *np;
859         struct nfsmount *nmp = VFSTONFS(vp->v_mount);
860         caddr_t bpos, dpos, cp2;
861         time_t reqtime;
862         int error = 0;
863         struct mbuf *mreq, *mrep, *md, *mb, *mb2;
864         int cachable;
865         u_quad_t frev;
866
867         nfsstats.rpccnt[NQNFSPROC_GETLEASE]++;
868         mb = mreq = nfsm_reqh(vp, NQNFSPROC_GETLEASE, NFSX_V3FH+2*NFSX_UNSIGNED,
869                  &bpos);
870         nfsm_fhtom(vp, 1);
871         nfsm_build(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
872         *tl++ = txdr_unsigned(rwflag);
873         *tl = txdr_unsigned(nmp->nm_leaseterm);
874         reqtime = time_second;
875         nfsm_request(vp, NQNFSPROC_GETLEASE, td, nfs_vpcred(vp, rwflag));
876         np = VTONFS(vp);
877         nfsm_dissect(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
878         cachable = fxdr_unsigned(int, *tl++);
879         reqtime += fxdr_unsigned(int, *tl++);
880         if (reqtime > time_second) {
881                 frev = fxdr_hyper(tl);
882                 nqnfs_clientlease(nmp, np, rwflag, cachable, reqtime, frev);
883                 nfsm_loadattr(vp, (struct vattr *)0);
884         } else
885                 error = NQNFS_EXPIRED;
886         nfsm_reqdone;
887         return (error);
888 }
889
890 #ifndef NFS_NOSERVER 
891 /*
892  * Client vacated message function.
893  */
894 static int
895 nqnfs_vacated(vp, cred)
896         struct vnode *vp;
897         struct ucred *cred;
898 {
899         caddr_t cp;
900         int i;
901         u_int32_t *tl;
902         int32_t t2;
903         caddr_t bpos;
904         u_int32_t xid;
905         int error = 0;
906         struct mbuf *m, *mreq, *mb, *mb2, *mheadend;
907         struct nfsmount *nmp;
908         struct nfsreq myrep;
909
910         nmp = VFSTONFS(vp->v_mount);
911         nfsstats.rpccnt[NQNFSPROC_VACATED]++;
912         nfsm_reqhead(vp, NQNFSPROC_VACATED, NFSX_FH(1));
913         nfsm_fhtom(vp, 1);
914         m = mreq;
915         i = 0;
916         while (m) {
917                 i += m->m_len;
918                 m = m->m_next;
919         }
920         m = nfsm_rpchead(cred, nmp->nm_flag, NQNFSPROC_VACATED,
921                 RPCAUTH_UNIX, 5 * NFSX_UNSIGNED, (char *)0,
922                 0, (char *)NULL, mreq, i, &mheadend, &xid);
923         if (nmp->nm_sotype == SOCK_STREAM) {
924                 M_PREPEND(m, NFSX_UNSIGNED, M_WAIT);
925                 if (m == NULL)
926                         return (ENOBUFS);
927                 *mtod(m, u_int32_t *) = htonl(0x80000000 | (m->m_pkthdr.len -
928                         NFSX_UNSIGNED));
929         }
930         myrep.r_flags = 0;
931         myrep.r_nmp = nmp;
932         myrep.r_td = NULL;
933         if (nmp->nm_soflags & PR_CONNREQUIRED)
934                 (void) nfs_sndlock(&myrep);
935         (void) nfs_send(nmp->nm_so, nmp->nm_nam, m, &myrep);
936         if (nmp->nm_soflags & PR_CONNREQUIRED)
937                 nfs_sndunlock(&myrep);
938 nfsmout:
939         return (error);
940 }
941
942 /*
943  * Called for client side callbacks
944  */
945 int
946 nqnfs_callback(nmp, mrep, md, dpos)
947         struct nfsmount *nmp;
948         struct mbuf *mrep, *md;
949         caddr_t dpos;
950 {
951         struct vnode *vp;
952         u_int32_t *tl;
953         int32_t t1;
954         nfsfh_t nfh;
955         fhandle_t *fhp;
956         struct nfsnode *np;
957         struct nfsd tnfsd;
958         struct nfssvc_sock *slp;
959         struct nfsrv_descript ndesc;
960         struct nfsrv_descript *nfsd = &ndesc;
961         struct mbuf **mrq = (struct mbuf **)0, *mb, *mreq;
962         int error = 0, cache = 0;
963         char *cp2, *bpos;
964         u_quad_t frev;
965
966 #ifndef nolint
967         slp = NULL;
968 #endif
969         nfsd->nd_mrep = mrep;
970         nfsd->nd_md = md;
971         nfsd->nd_dpos = dpos;
972         error = nfs_getreq(nfsd, &tnfsd, FALSE);
973         if (error)
974                 return (error);
975         md = nfsd->nd_md;
976         dpos = nfsd->nd_dpos;
977         if (nfsd->nd_procnum != NQNFSPROC_EVICTED) {
978                 m_freem(mrep);
979                 return (EPERM);
980         }
981         fhp = &nfh.fh_generic;
982         nfsm_srvmtofh(fhp);
983         m_freem(mrep);
984         error = nfs_nget(nmp->nm_mountp, (nfsfh_t *)fhp, NFSX_V3FH, &np);
985         if (error)
986                 return (error);
987         vp = NFSTOV(np);
988         if (np->n_timer.cqe_next != 0) {
989                 np->n_expiry = 0;
990                 np->n_flag |= NQNFSEVICTED;
991                 if (nmp->nm_timerhead.cqh_first != np) {
992                         CIRCLEQ_REMOVE(&nmp->nm_timerhead, np, n_timer);
993                         CIRCLEQ_INSERT_HEAD(&nmp->nm_timerhead, np, n_timer);
994                 }
995         }
996         vput(vp);
997         nfsm_srvdone;
998 }
999
1000
1001 /*
1002  * Nqnfs client helper daemon. Runs once a second to expire leases.
1003  * It also get authorization strings for "kerb" mounts.
1004  * It must start at the beginning of the list again after any potential
1005  * "sleep" since nfs_reclaim() called from vclean() can pull a node off
1006  * the list asynchronously.
1007  */
1008 int
1009 nqnfs_clientd(nmp, cred, ncd, flag, argp, td)
1010         struct nfsmount *nmp;
1011         struct ucred *cred;
1012         struct nfsd_cargs *ncd;
1013         int flag;
1014         caddr_t argp;
1015         struct thread *td;
1016 {
1017         struct nfsnode *np;
1018         struct vnode *vp;
1019         struct nfsreq myrep;
1020         struct nfsuid *nuidp, *nnuidp;
1021         int error = 0, vpid;
1022
1023         /*
1024          * First initialize some variables
1025          */
1026
1027         /*
1028          * If an authorization string is being passed in, get it.
1029          */
1030         if ((flag & NFSSVC_GOTAUTH) &&
1031             (nmp->nm_state & (NFSSTA_WAITAUTH | NFSSTA_DISMNT)) == 0) {
1032             if (nmp->nm_state & NFSSTA_HASAUTH)
1033                 panic("cld kerb");
1034             if ((flag & NFSSVC_AUTHINFAIL) == 0) {
1035                 if (ncd->ncd_authlen <= nmp->nm_authlen &&
1036                     ncd->ncd_verflen <= nmp->nm_verflen &&
1037                     !copyin(ncd->ncd_authstr,nmp->nm_authstr,ncd->ncd_authlen)&&
1038                     !copyin(ncd->ncd_verfstr,nmp->nm_verfstr,ncd->ncd_verflen)){
1039                     nmp->nm_authtype = ncd->ncd_authtype;
1040                     nmp->nm_authlen = ncd->ncd_authlen;
1041                     nmp->nm_verflen = ncd->ncd_verflen;
1042 #ifdef NFSKERB
1043                     nmp->nm_key = ncd->ncd_key;
1044 #endif
1045                 } else
1046                     nmp->nm_state |= NFSSTA_AUTHERR;
1047             } else
1048                 nmp->nm_state |= NFSSTA_AUTHERR;
1049             nmp->nm_state |= NFSSTA_HASAUTH;
1050             wakeup((caddr_t)&nmp->nm_authlen);
1051         } else
1052             nmp->nm_state |= NFSSTA_WAITAUTH;
1053
1054         /*
1055          * Loop every second updating queue until there is a termination sig.
1056          */
1057         while ((nmp->nm_state & NFSSTA_DISMNT) == 0) {
1058             if (nmp->nm_flag & NFSMNT_NQNFS) {
1059                 /*
1060                  * If there are no outstanding requests (and therefore no
1061                  * processes in nfs_reply) and there is data in the receive
1062                  * queue, poke for callbacks.
1063                  */
1064                 if (nfs_reqq.tqh_first == 0 && nmp->nm_so &&
1065                     nmp->nm_so->so_rcv.sb_cc > 0) {
1066                     myrep.r_flags = R_GETONEREP;
1067                     myrep.r_nmp = nmp;
1068                     myrep.r_mrep = (struct mbuf *)0;
1069                     myrep.r_td = NULL;
1070                     (void) nfs_reply(&myrep);
1071                 }
1072
1073                 /*
1074                  * Loop through the leases, updating as required.
1075                  */
1076                 np = nmp->nm_timerhead.cqh_first;
1077                 while (np != (void *)&nmp->nm_timerhead &&
1078                        (nmp->nm_state & NFSSTA_DISMINPROG) == 0) {
1079                         vp = NFSTOV(np);
1080                         vpid = vp->v_id;
1081                         if (np->n_expiry < time_second) {
1082                            if (vget(vp, LK_EXCLUSIVE, td) == 0) {
1083                              nmp->nm_inprog = vp;
1084                              if (vpid == vp->v_id) {
1085                                 CIRCLEQ_REMOVE(&nmp->nm_timerhead, np, n_timer);
1086                                 np->n_timer.cqe_next = 0;
1087                                 if (np->n_flag & (NMODIFIED | NQNFSEVICTED)) {
1088                                         if (np->n_flag & NQNFSEVICTED) {
1089                                                 if (vp->v_type == VDIR)
1090                                                         nfs_invaldir(vp);
1091                                                 cache_purge(vp);
1092                                                 (void) nfs_vinvalbuf(vp,
1093                                                        V_SAVE, td, 0);
1094                                                 np->n_flag &= ~NQNFSEVICTED;
1095                                                 (void) nqnfs_vacated(vp, cred);
1096                                         } else if (vp->v_type == VREG) {
1097                                                 (void) VOP_FSYNC(vp, MNT_WAIT, td);
1098                                                 np->n_flag &= ~NMODIFIED;
1099                                         }
1100                                 }
1101                               }
1102                               vput(vp);
1103                               nmp->nm_inprog = NULLVP;
1104                             }
1105                         } else if ((np->n_expiry - NQ_RENEWAL) < time_second) {
1106                             if ((np->n_flag & (NQNFSWRITE | NQNFSNONCACHE))
1107                                  == NQNFSWRITE &&
1108                                  !TAILQ_EMPTY(&vp->v_dirtyblkhd) &&
1109                                  vget(vp, LK_EXCLUSIVE, td) == 0) {
1110                                  nmp->nm_inprog = vp;
1111                                  if (vpid == vp->v_id &&
1112                                      nqnfs_getlease(vp, ND_WRITE, td)==0)
1113                                         np->n_brev = np->n_lrev;
1114                                  vput(vp);
1115                                  nmp->nm_inprog = NULLVP;
1116                             }
1117                         } else
1118                                 break;
1119                         if (np == nmp->nm_timerhead.cqh_first)
1120                                 break;
1121                         np = nmp->nm_timerhead.cqh_first;
1122                 }
1123             }
1124
1125             /*
1126              * Get an authorization string, if required.
1127              */
1128             if ((nmp->nm_state & (NFSSTA_WAITAUTH | NFSSTA_DISMNT | NFSSTA_HASAUTH)) == 0) {
1129                 ncd->ncd_authuid = nmp->nm_authuid;
1130                 if (copyout((caddr_t)ncd, argp, sizeof (struct nfsd_cargs)))
1131                         nmp->nm_state |= NFSSTA_WAITAUTH;
1132                 else
1133                         return (ENEEDAUTH);
1134             }
1135
1136             /*
1137              * Wait a bit (no pun) and do it again.
1138              */
1139             if ((nmp->nm_state & NFSSTA_DISMNT) == 0 &&
1140                 (nmp->nm_state & (NFSSTA_WAITAUTH | NFSSTA_HASAUTH))) {
1141                     error = tsleep((caddr_t)&nmp->nm_authstr, PCATCH,
1142                         "nqnfstimr", hz / 3);
1143                     if (error == EINTR || error == ERESTART)
1144                         (void) dounmount(nmp->nm_mountp, 0, td);
1145             }
1146         }
1147
1148         /*
1149          * Finally, we can free up the mount structure.
1150          */
1151         for (nuidp = nmp->nm_uidlruhead.tqh_first; nuidp != 0; nuidp = nnuidp) {
1152                 nnuidp = nuidp->nu_lru.tqe_next;
1153                 LIST_REMOVE(nuidp, nu_hash);
1154                 TAILQ_REMOVE(&nmp->nm_uidlruhead, nuidp, nu_lru);
1155                 free((caddr_t)nuidp, M_NFSUID);
1156         }
1157         nfs_free_mount(nmp);
1158         if (error == EWOULDBLOCK)
1159                 error = 0;
1160         return (error);
1161 }
1162
1163 #endif /* NFS_NOSERVER */
1164
1165 /*
1166  * Adjust all timer queue expiry times when the time of day clock is changed.
1167  * Called from the settimeofday() syscall.
1168  */
1169 void
1170 nqnfs_lease_updatetime(int deltat)
1171 {
1172         struct thread *td = curthread;  /* XXX */
1173         struct nqlease *lp;
1174         struct nfsnode *np;
1175         struct mount *mp, *nxtmp;
1176         struct nfsmount *nmp;
1177         int s;
1178
1179         if (nqnfsstarttime != 0)
1180                 nqnfsstarttime += deltat;
1181         s = splsoftclock();
1182         for (lp = nqtimerhead.cqh_first; lp != (void *)&nqtimerhead;
1183             lp = lp->lc_timer.cqe_next)
1184                 lp->lc_expiry += deltat;
1185         splx(s);
1186
1187         /*
1188          * Search the mount list for all nqnfs mounts and do their timer
1189          * queues.
1190          */
1191         lwkt_gettoken(&mountlist_token);
1192         for (mp = TAILQ_FIRST(&mountlist); mp != NULL; mp = nxtmp) {
1193                 if (vfs_busy(mp, LK_NOWAIT, &mountlist_token, td)) {
1194                         nxtmp = TAILQ_NEXT(mp, mnt_list);
1195                         continue;
1196                 }
1197                 if (mp->mnt_stat.f_type == nfs_mount_type) {
1198                         nmp = VFSTONFS(mp);
1199                         if (nmp->nm_flag & NFSMNT_NQNFS) {
1200                                 for (np = nmp->nm_timerhead.cqh_first;
1201                                     np != (void *)&nmp->nm_timerhead;
1202                                     np = np->n_timer.cqe_next) {
1203                                         np->n_expiry += deltat;
1204                                 }
1205                         }
1206                 }
1207                 lwkt_gettoken(&mountlist_token);
1208                 nxtmp = TAILQ_NEXT(mp, mnt_list);
1209                 vfs_unbusy(mp, td);
1210         }
1211         lwkt_reltoken(&mountlist_token);
1212 }
1213
1214 #ifndef NFS_NOSERVER 
1215 /*
1216  * Lock a server lease.
1217  */
1218 static void
1219 nqsrv_locklease(lp)
1220         struct nqlease *lp;
1221 {
1222
1223         while (lp->lc_flag & LC_LOCKED) {
1224                 lp->lc_flag |= LC_WANTED;
1225                 (void) tsleep((caddr_t)lp, 0, "nqlc", 0);
1226         }
1227         lp->lc_flag |= LC_LOCKED;
1228         lp->lc_flag &= ~LC_WANTED;
1229 }
1230
1231 /*
1232  * Unlock a server lease.
1233  */
1234 static void
1235 nqsrv_unlocklease(lp)
1236         struct nqlease *lp;
1237 {
1238
1239         lp->lc_flag &= ~LC_LOCKED;
1240         if (lp->lc_flag & LC_WANTED)
1241                 wakeup((caddr_t)lp);
1242 }
1243 #endif /* NFS_NOSERVER */
1244
1245 /*
1246  * Update a client lease.
1247  */
1248 void
1249 nqnfs_clientlease(nmp, np, rwflag, cachable, expiry, frev)
1250         struct nfsmount *nmp;
1251         struct nfsnode *np;
1252         int rwflag, cachable;
1253         time_t expiry;
1254         u_quad_t frev;
1255 {
1256         struct nfsnode *tp;
1257
1258         if (np->n_timer.cqe_next != 0) {
1259                 CIRCLEQ_REMOVE(&nmp->nm_timerhead, np, n_timer);
1260                 if (rwflag == ND_WRITE)
1261                         np->n_flag |= NQNFSWRITE;
1262         } else if (rwflag == ND_READ)
1263                 np->n_flag &= ~NQNFSWRITE;
1264         else
1265                 np->n_flag |= NQNFSWRITE;
1266         if (cachable)
1267                 np->n_flag &= ~NQNFSNONCACHE;
1268         else
1269                 np->n_flag |= NQNFSNONCACHE;
1270         np->n_expiry = expiry;
1271         np->n_lrev = frev;
1272         tp = nmp->nm_timerhead.cqh_last;
1273         while (tp != (void *)&nmp->nm_timerhead && tp->n_expiry > np->n_expiry)
1274                 tp = tp->n_timer.cqe_prev;
1275         if (tp == (void *)&nmp->nm_timerhead) {
1276                 CIRCLEQ_INSERT_HEAD(&nmp->nm_timerhead, np, n_timer);
1277         } else {
1278                 CIRCLEQ_INSERT_AFTER(&nmp->nm_timerhead, tp, np, n_timer);
1279         }
1280 }