FBSD: Add osi_fbsd_checkinuse
[openafs.git] / src / afs / FBSD / osi_vm.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10
11 /* osi_vm.c implements:
12  *
13  * osi_VM_FlushVCache(avc, slept)
14  * osi_ubc_flush_dirty_and_wait(vp, flags)
15  * osi_VM_StoreAllSegments(avc)
16  * osi_VM_TryToSmush(avc, acred, sync)
17  * osi_VM_FlushPages(avc, credp)
18  * osi_VM_Truncate(avc, alen, acred)
19  */
20
21 #include <afsconfig.h>
22 #include "afs/param.h"
23 #include <sys/param.h>
24 #include <sys/vnode.h>
25
26
27 #include "afs/sysincludes.h"    /* Standard vendor system headers */
28 #include "afsincludes.h"        /* Afs-based standard headers */
29 #include "afs/afs_stats.h"      /* statistics */
30 #include <vm/vm_object.h>
31 #include <vm/vm_map.h>
32 #include <limits.h>
33
34 /*
35  * FreeBSD implementation notes:
36  * Most of these operations require us to frob vm_objects.  Most
37  * functions require that the object be locked (with VM_OBJECT_LOCK)
38  * on entry and leave it locked on exit.  The locking protocol
39  * requires that we access vp->v_object with the heavy vnode lock
40  * held and the vnode interlock unlocked.
41  *
42  * The locking protocol for vnodes is defined in
43  * kern/vnode_if.src and sys/vnode.h; unfortunately, it is not *quite*
44  * constant from version to version so to be properly correct we must
45  * check the VCS history of those files.
46  */
47
48 #if defined(AFS_FBSD80_ENV)
49 #define lock_vnode(v, f)        vn_lock((v), (f))
50 #define ilock_vnode(v)  vn_lock((v), LK_INTERLOCK|LK_EXCLUSIVE|LK_RETRY);
51 #define unlock_vnode(v) VOP_UNLOCK((v), 0)
52 #define islocked_vnode(v)       VOP_ISLOCKED((v))
53 #else
54 #define lock_vnode(v, f)        vn_lock((v), (f), curthread)
55 #define ilock_vnode(v)  vn_lock((v), LK_INTERLOCK|LK_EXCLUSIVE|LK_RETRY, curthread);
56 #define unlock_vnode(v) VOP_UNLOCK((v), 0, curthread)
57 #define islocked_vnode(v)       VOP_ISLOCKED((v), curthread)
58 #endif
59
60 /* Try to discard pages, in order to recycle a vcache entry.
61  *
62  * We also make some sanity checks:  ref count, open count, held locks.
63  *
64  * We also do some non-VM-related chores, such as releasing the cred pointer
65  * (for AIX and Solaris) and releasing the gnode (for AIX).
66  *
67  * Locking:  afs_xvcache lock is held.  If it is dropped and re-acquired,
68  *   *slept should be set to warn the caller.
69  *
70  * Formerly, afs_xvcache was dropped and re-acquired for Solaris, but now it
71  * is not dropped and re-acquired for any platform.  It may be that *slept is
72  * therefore obsolescent.
73  *
74  */
75 int
76 osi_VM_FlushVCache(struct vcache *avc, int *slept)
77 {
78     struct vnode *vp;
79     int code;
80
81     vp = AFSTOV(avc);
82
83     if (!VI_TRYLOCK(vp))
84         return EBUSY;
85     code = osi_fbsd_checkinuse(avc);
86     if (code) {
87         VI_UNLOCK(vp);
88         return code;
89     }
90
91     if ((vp->v_iflag & VI_DOOMED) != 0) {
92         VI_UNLOCK(vp);
93         return 0;
94     }
95
96     /* must hold the vnode before calling vgone()
97      * This code largely copied from vfs_subr.c:vlrureclaim() */
98     vholdl(vp);
99     AFS_GUNLOCK();
100     *slept = 1;
101     /* use the interlock while locking, so no one else can DOOM this */
102     ilock_vnode(vp);
103     vgone(vp);
104     unlock_vnode(vp);
105     vdrop(vp);
106
107     AFS_GLOCK();
108     return 0;
109 }
110
111 /* Try to store pages to cache, in order to store a file back to the server.
112  *
113  * Locking:  the vcache entry's lock is held.  It will usually be dropped and
114  * re-obtained.
115  */
116 void
117 osi_VM_StoreAllSegments(struct vcache *avc)
118 {
119     struct vnode *vp;
120     struct vm_object *obj;
121     int anyio, tries;
122
123     ReleaseWriteLock(&avc->lock);
124     AFS_GUNLOCK();
125     tries = 5;
126     vp = AFSTOV(avc);
127
128     /*
129      * I don't understand this.  Why not just call vm_object_page_clean()
130      * and be done with it?  I particularly don't understand why we're calling
131      * vget() here.  Is there some reason to believe that the vnode might
132      * be being recycled at this point?  I don't think there's any need for
133      * this loop, either -- if we keep the vnode locked all the time,
134      * that and the object lock will prevent any new pages from appearing.
135      * The loop is what causes the race condition.  -GAW
136      */
137     do {
138         anyio = 0;
139         
140         obj = vp->v_object;
141         if (obj != NULL && obj->flags & OBJ_MIGHTBEDIRTY) {
142             if (!vget(vp, LK_EXCLUSIVE | LK_RETRY, curthread)) {
143                     obj = vp->v_object;
144                     if (obj != NULL) {
145                         VM_OBJECT_LOCK(obj);
146                         vm_object_page_clean(obj, 0, 0, OBJPC_SYNC);
147                         VM_OBJECT_UNLOCK(obj);
148                         anyio = 1;
149                     }
150                     vput(vp);
151                 }
152             }
153     } while (anyio && (--tries > 0));
154     AFS_GLOCK();
155     ObtainWriteLock(&avc->lock, 94);
156 }
157
158 /* Try to invalidate pages, for "fs flush" or "fs flushv"; or
159  * try to free pages, when deleting a file.
160  *
161  * Locking:  the vcache entry's lock is held.  It may be dropped and 
162  * re-obtained.
163  *
164  * Since we drop and re-obtain the lock, we can't guarantee that there won't
165  * be some pages around when we return, newly created by concurrent activity.
166  */
167 void
168 osi_VM_TryToSmush(struct vcache *avc, afs_ucred_t *acred, int sync)
169 {
170     struct vnode *vp;
171     int tries, code;
172     int islocked;
173
174     vp = AFSTOV(avc);
175
176     VI_LOCK(vp);
177     if (vp->v_iflag & VI_DOOMED) {
178         VI_UNLOCK(vp);
179         return;
180     }
181     VI_UNLOCK(vp);
182
183     islocked = islocked_vnode(vp);
184     if (islocked == LK_EXCLOTHER)
185         panic("Trying to Smush over someone else's lock");
186     else if (islocked == LK_SHARED) {
187         afs_warn("Trying to Smush with a shared lock");
188         lock_vnode(vp, LK_UPGRADE);
189     } else if (!islocked)
190         lock_vnode(vp, LK_EXCLUSIVE);
191
192     if (vp->v_bufobj.bo_object != NULL) {
193         VM_OBJECT_LOCK(vp->v_bufobj.bo_object);
194         /*
195          * Do we really want OBJPC_SYNC?  OBJPC_INVAL would be
196          * faster, if invalidation is really what we are being
197          * asked to do.  (It would make more sense, too, since
198          * otherwise this function is practically identical to
199          * osi_VM_StoreAllSegments().)  -GAW
200          */
201
202         /*
203          * Dunno.  We no longer resemble osi_VM_StoreAllSegments,
204          * though maybe that's wrong, now.  And OBJPC_SYNC is the
205          * common thing in 70 file systems, it seems.  Matt.
206          */
207
208         vm_object_page_clean(vp->v_bufobj.bo_object, 0, 0, OBJPC_SYNC);
209         VM_OBJECT_UNLOCK(vp->v_bufobj.bo_object);
210     }
211
212     tries = 5;
213     code = osi_vinvalbuf(vp, V_SAVE, PCATCH, 0);
214     while (code && (tries > 0)) {
215         afs_warn("TryToSmush retrying vinvalbuf");
216         code = osi_vinvalbuf(vp, V_SAVE, PCATCH, 0);
217         --tries;
218     }
219     if (islocked == LK_SHARED)
220         lock_vnode(vp, LK_DOWNGRADE);
221     else if (!islocked)
222         unlock_vnode(vp);
223 }
224
225 /* Purge VM for a file when its callback is revoked.
226  *
227  * Locking:  No lock is held, not even the global lock.
228  */
229 void
230 osi_VM_FlushPages(struct vcache *avc, afs_ucred_t *credp)
231 {
232     struct vnode *vp;
233     struct vm_object *obj;
234
235     vp = AFSTOV(avc);
236     ASSERT_VOP_LOCKED(vp, __func__);
237     obj = vp->v_object;
238     if (obj != NULL) {
239         VM_OBJECT_LOCK(obj);
240         vm_object_page_remove(obj, 0, 0, FALSE);
241         VM_OBJECT_UNLOCK(obj);
242     }
243     osi_vinvalbuf(vp, 0, 0, 0);
244 }
245
246 /* Purge pages beyond end-of-file, when truncating a file.
247  *
248  * Locking:  no lock is held, not even the global lock.
249  * activeV is raised.  This is supposed to block pageins, but at present
250  * it only works on Solaris.
251  */
252 void
253 osi_VM_Truncate(struct vcache *avc, int alen, afs_ucred_t *acred)
254 {
255     vnode_pager_setsize(AFSTOV(avc), alen);
256 }