Remove support for Solaris pre-8
[openafs.git] / src / afs / SOLARIS / 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 #include <afsconfig.h>
11 #include "afs/param.h"
12
13
14 #include "afs/sysincludes.h"    /* Standard vendor system headers */
15 #include "afsincludes.h"        /* Afs-based standard headers */
16 #include "afs/afs_stats.h"      /* statistics */
17 #include "afs/nfsclient.h"
18
19 /* This file contains Solaris VM-related code for the cache manager. */
20
21 #include <sys/mman.h>
22 #include <vm/hat.h>
23 #include <vm/as.h>
24 #include <vm/page.h>
25 #include <vm/pvn.h>
26 #include <vm/seg.h>
27 #include <vm/seg_map.h>
28 #include <vm/seg_vn.h>
29 #include <vm/rm.h>
30 #include <sys/modctl.h>
31 #include <sys/syscall.h>
32 #include <sys/debug.h>
33 #include <sys/fs_subr.h>
34
35 /* Try to invalidate pages, in order to recycle a dcache entry.
36  *
37  * This function only exists for Solaris.  For other platforms, it's OK to
38  * recycle a dcache entry without invalidating pages, because the strategy
39  * function can call afs_GetDCache().
40  *
41  * Locking:  only the global lock is held on entry.
42  */
43 int
44 osi_VM_GetDownD(struct vcache *avc, struct dcache *adc)
45 {
46     int code;
47
48     AFS_GUNLOCK();
49     code =
50         afs_putpage(AFSTOV(avc), (offset_t) AFS_CHUNKTOBASE(adc->f.chunk),
51                     AFS_CHUNKTOSIZE(adc->f.chunk), B_INVAL, CRED());
52     AFS_GLOCK();
53
54     return code;
55 }
56
57 /* Try to discard pages, in order to recycle a vcache entry.
58  *
59  * We also make some sanity checks:  ref count, open count, held locks.
60  *
61  * We also do some non-VM-related chores, such as releasing the cred pointer
62  * (for AIX and Solaris) and releasing the gnode (for AIX).
63  *
64  * Locking:  afs_xvcache lock is held.  If it is dropped and re-acquired,
65  *   *slept should be set to warn the caller.
66  *
67  * Formerly, afs_xvcache was dropped and re-acquired for Solaris, but now it
68  * is not dropped and re-acquired for any platform.  It may be that *slept is
69  * therefore obsolescent.
70  */
71 int
72 osi_VM_FlushVCache(struct vcache *avc, int *slept)
73 {
74     if (avc->vrefCount != 0)
75         return EBUSY;
76
77     if (avc->opens)
78         return EBUSY;
79
80     /* if a lock is held, give up */
81     if (CheckLock(&avc->lock))
82         return EBUSY;
83     if (afs_CheckBozonLock(&avc->pvnLock))
84         return EBUSY;
85
86     AFS_GUNLOCK();
87     pvn_vplist_dirty(AFSTOV(avc), 0, NULL, B_TRUNC | B_INVAL, CRED());
88     AFS_GLOCK();
89
90     /* Might as well make the obvious check */
91     if (AFSTOV(avc)->v_pages)
92         return EBUSY;           /* should be all gone still */
93
94     rw_destroy(&avc->rwlock);
95     if (avc->credp) {
96         crfree(avc->credp);
97         avc->credp = NULL;
98     }
99
100
101     return 0;
102 }
103
104 /* Try to store pages to cache, in order to store a file back to the server.
105  *
106  * Locking:  the vcache entry's lock is held.  It will usually be dropped and
107  * re-obtained.
108  */
109 void
110 osi_VM_StoreAllSegments(struct vcache *avc)
111 {
112     AFS_GUNLOCK();
113     (void)pvn_vplist_dirty(AFSTOV(avc), (u_offset_t) 0, afs_putapage, 0,
114                            CRED());
115     AFS_GLOCK();
116 }
117
118 /* Try to invalidate pages, for "fs flush" or "fs flushv"; or
119  * try to free pages, when deleting a file.
120  *
121  * Locking:  the vcache entry's lock is held.  It may be dropped and
122  * re-obtained.
123  */
124 void
125 osi_VM_TryToSmush(struct vcache *avc, afs_ucred_t *acred, int sync)
126 {
127     AFS_GUNLOCK();
128     (void)pvn_vplist_dirty(AFSTOV(avc), (u_offset_t) 0, afs_putapage,
129                            (sync ? B_INVAL : B_FREE), acred);
130     AFS_GLOCK();
131 }
132
133 /* Purge VM for a file when its callback is revoked.
134  *
135  * Locking:  No lock is held, not even the global lock.
136  */
137 void
138 osi_VM_FlushPages(struct vcache *avc, afs_ucred_t *credp)
139 {
140     extern int afs_pvn_vptrunc;
141
142     afs_pvn_vptrunc++;
143     (void)afs_putpage(AFSTOV(avc), (offset_t) 0, 0, B_TRUNC | B_INVAL, credp);
144 }
145
146 /* Zero no-longer-used part of last page, when truncating a file
147  *
148  * This function only exists for Solaris.  Other platforms do not support it.
149  *
150  * Locking:  the vcache entry lock is held.  It is released and re-obtained.
151  * The caller will raise activeV (to prevent pageins), but this function must
152  * be called first, since it causes a pagein.
153  */
154 void
155 osi_VM_PreTruncate(struct vcache *avc, int alen, afs_ucred_t *acred)
156 {
157     page_t *pp;
158     int pageOffset = (alen & PAGEOFFSET);
159
160     if (pageOffset == 0) {
161         return;
162     }
163
164     ReleaseWriteLock(&avc->lock);
165     AFS_GUNLOCK();
166     pp = page_lookup(AFSTOV(avc), alen - pageOffset, SE_EXCL);
167     if (pp) {
168         pagezero(pp, pageOffset, PAGESIZE - pageOffset);
169         page_unlock(pp);
170     }
171     AFS_GLOCK();
172     ObtainWriteLock(&avc->lock, 563);
173 }
174
175 /* Purge pages beyond end-of-file, when truncating a file.
176  *
177  * Locking:  no lock is held, not even the global lock.
178  * Pageins are blocked (activeV is raised).
179  */
180 void
181 osi_VM_Truncate(struct vcache *avc, int alen, afs_ucred_t *acred)
182 {
183     /*
184      * It's OK to specify afs_putapage here, even though we aren't holding
185      * the vcache entry lock, because it isn't going to get called.
186      */
187     pvn_vplist_dirty(AFSTOV(avc), alen, afs_putapage, B_TRUNC | B_INVAL,
188                      acred);
189 }