LINUX: hold vcache while dropping dcache refs
[openafs.git] / src / afs / LINUX / osi_vfsops.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  * VFS operations for Linux
12  *
13  * super_block operations should return negated errno to Linux.
14  */
15 #include <afsconfig.h>
16 #include "afs/param.h"
17
18
19 #define __NO_VERSION__          /* don't define kernel_version in module.h */
20 #include <linux/module.h> /* early to avoid printf->printk mapping */
21 #include "afs/sysincludes.h"
22 #include "afsincludes.h"
23 #include "afs/afs_stats.h"
24
25 #include "osi_compat.h"
26
27 struct vcache *afs_globalVp = 0;
28 struct vfs *afs_globalVFS = 0;
29 struct vfsmount *afs_cacheMnt;
30 int afs_was_mounted = 0;        /* Used to force reload if mount/unmount/mount */
31
32 extern struct super_operations afs_sops;
33 #if !defined(AFS_NONFSTRANS)
34 extern struct export_operations afs_export_ops;
35 #endif
36 extern afs_rwlock_t afs_xvcache;
37 extern struct afs_q VLRU;
38
39 extern struct dentry_operations afs_dentry_operations;
40
41 /* Forward declarations */
42 static int afs_root(struct super_block *afsp);
43 int afs_fill_super(struct super_block *sb, void *data, int silent);
44
45
46 /*
47  * afs_mount (2.6.37+) and afs_get_sb (2.6.36-) are the entry
48  * points from the vfs when mounting afs.  The super block
49  * structure is setup in the afs_fill_super callback function.
50  */
51
52 #if defined(STRUCT_FILE_SYSTEM_TYPE_HAS_MOUNT)
53 static struct dentry *
54 afs_mount(struct file_system_type *fs_type, int flags,
55            const char *dev_name, void *data) {
56     return mount_nodev(fs_type, flags, data, afs_fill_super);
57 }
58 #elif defined(GET_SB_HAS_STRUCT_VFSMOUNT)
59 static int
60 afs_get_sb(struct file_system_type *fs_type, int flags,
61            const char *dev_name, void *data, struct vfsmount *mnt) {
62     return get_sb_nodev(fs_type, flags, data, afs_fill_super, mnt);
63 }
64 #else
65 static struct super_block *
66 afs_get_sb(struct file_system_type *fs_type, int flags,
67            const char *dev_name, void *data) {
68     return get_sb_nodev(fs_type, flags, data, afs_fill_super);
69 }
70 #endif
71
72 struct file_system_type afs_fs_type = {
73     .owner = THIS_MODULE,
74     .name = "afs",
75 #if defined(STRUCT_FILE_SYSTEM_TYPE_HAS_MOUNT)
76     .mount = afs_mount,
77 #else
78     .get_sb = afs_get_sb,
79 #endif
80     .kill_sb = kill_anon_super,
81     .fs_flags = FS_BINARY_MOUNTDATA,
82 };
83
84 struct backing_dev_info *afs_backing_dev_info;
85
86 int
87 afs_fill_super(struct super_block *sb, void *data, int silent)
88 {
89     int code = 0;
90 #if defined(HAVE_LINUX_BDI_INIT)
91     int bdi_init_done = 0;
92 #endif
93
94     AFS_GLOCK();
95     if (afs_was_mounted) {
96         printf
97             ("You must reload the AFS kernel extensions before remounting AFS.\n");
98         AFS_GUNLOCK();
99         return -EINVAL;
100     }
101     afs_was_mounted = 1;
102
103     /* Set basics of super_block */
104    __module_get(THIS_MODULE);
105
106     afs_globalVFS = sb;
107     sb->s_flags |= MS_NOATIME;
108     sb->s_blocksize = 1024;
109     sb->s_blocksize_bits = 10;
110     sb->s_magic = AFS_VFSMAGIC;
111     sb->s_op = &afs_sops;       /* Super block (vfs) ops */
112
113 #if defined(STRUCT_SUPER_BLOCK_HAS_S_D_OP)
114     sb->s_d_op = &afs_dentry_operations;
115 #endif
116
117     /* used for inodes backing_dev_info field, also */
118     afs_backing_dev_info = kzalloc(sizeof(struct backing_dev_info), GFP_NOFS);
119 #if defined(HAVE_LINUX_BDI_INIT)
120     code = bdi_init(afs_backing_dev_info);
121     if (code)
122         goto out;
123     bdi_init_done = 1;
124 #endif
125 #if defined(STRUCT_BACKING_DEV_INFO_HAS_NAME)
126     afs_backing_dev_info->name = "openafs";
127 #endif
128     afs_backing_dev_info->ra_pages = 32;
129 #if defined (STRUCT_SUPER_BLOCK_HAS_S_BDI)
130     sb->s_bdi = afs_backing_dev_info;
131     /* The name specified here will appear in the flushing thread name - flush-afs */
132     bdi_register(afs_backing_dev_info, NULL, "afs");
133 #endif
134 #if !defined(AFS_NONFSTRANS)
135     sb->s_export_op = &afs_export_ops;
136 #endif
137 #if defined(MAX_NON_LFS)
138 #ifdef AFS_64BIT_CLIENT
139 #if !defined(MAX_LFS_FILESIZE)
140 #if BITS_PER_LONG==32
141 #define MAX_LFS_FILESIZE (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1) 
142 #elif BITS_PER_LONG==64
143 #define MAX_LFS_FILESIZE 0x7fffffffffffffff
144 #endif
145 #endif
146     sb->s_maxbytes = MAX_LFS_FILESIZE;
147 #else
148     sb->s_maxbytes = MAX_NON_LFS;
149 #endif
150 #endif
151     code = afs_root(sb);
152 out:
153     if (code) {
154         afs_globalVFS = NULL;
155         afs_FlushAllVCaches();
156 #if defined(HAVE_LINUX_BDI_INIT)
157         if (bdi_init_done)
158             bdi_destroy(afs_backing_dev_info);
159 #endif
160         kfree(afs_backing_dev_info);
161         module_put(THIS_MODULE);
162     }
163
164     AFS_GUNLOCK();
165     return code ? -EINVAL : 0;
166 }
167
168
169 /* afs_root - stat the root of the file system. AFS global held on entry. */
170 static int
171 afs_root(struct super_block *afsp)
172 {
173     afs_int32 code = 0;
174     struct vcache *tvp = 0;
175
176     AFS_STATCNT(afs_root);
177     if (afs_globalVp && (afs_globalVp->f.states & CStatd)) {
178         tvp = afs_globalVp;
179     } else {
180         struct vrequest *treq = NULL;
181         cred_t *credp = crref();
182
183         if (afs_globalVp) {
184             afs_PutVCache(afs_globalVp);
185             afs_globalVp = NULL;
186         }
187
188         if (!(code = afs_CreateReq(&treq, credp)) && !(code = afs_CheckInit())) {
189             tvp = afs_GetVCache(&afs_rootFid, treq, NULL, NULL);
190             if (tvp) {
191                 struct inode *ip = AFSTOV(tvp);
192                 struct vattr *vattr = NULL;
193
194                 code = afs_CreateAttr(&vattr);
195                 if (!code) {
196                     afs_getattr(tvp, vattr, credp);
197                     afs_fill_inode(ip, vattr);
198
199                     /* setup super_block and mount point inode. */
200                     afs_globalVp = tvp;
201 #if defined(HAVE_LINUX_D_MAKE_ROOT)
202                     afsp->s_root = d_make_root(ip);
203 #else
204                     afsp->s_root = d_alloc_root(ip);
205 #endif
206 #if !defined(STRUCT_SUPER_BLOCK_HAS_S_D_OP)
207                     afsp->s_root->d_op = &afs_dentry_operations;
208 #endif
209                     afs_DestroyAttr(vattr);
210                 }
211             } else
212                 code = EIO;
213         }
214         crfree(credp);
215         afs_DestroyReq(treq);
216     }
217
218     afs_Trace2(afs_iclSetp, CM_TRACE_VFSROOT, ICL_TYPE_POINTER, afs_globalVp,
219                ICL_TYPE_INT32, code);
220     return code;
221 }
222
223 /* super_operations */
224
225 #if defined(STRUCT_SUPER_OPERATIONS_HAS_ALLOC_INODE)
226 static afs_kmem_cache_t *afs_inode_cachep;
227
228 static struct inode *
229 afs_alloc_inode(struct super_block *sb)
230 {
231     struct vcache *vcp;
232
233     vcp = (struct vcache *) kmem_cache_alloc(afs_inode_cachep, KALLOC_TYPE);
234     if (!vcp)
235         return NULL;
236
237     return AFSTOV(vcp);
238 }
239
240 static void
241 afs_destroy_inode(struct inode *inode)
242 {
243     kmem_cache_free(afs_inode_cachep, inode);
244 }
245
246 void
247 init_once(void * foo)
248 {
249     struct vcache *vcp = (struct vcache *) foo;
250
251     inode_init_once(AFSTOV(vcp));
252 }
253
254 int
255 afs_init_inodecache(void)
256 {
257 #if defined(KMEM_CACHE_TAKES_DTOR)
258     afs_inode_cachep = kmem_cache_create("afs_inode_cache",
259                 sizeof(struct vcache), 0,
260                 SLAB_HWCACHE_ALIGN | SLAB_RECLAIM_ACCOUNT, init_once_func, NULL);
261 #else
262     afs_inode_cachep = kmem_cache_create("afs_inode_cache",
263                 sizeof(struct vcache), 0,
264                 SLAB_HWCACHE_ALIGN | SLAB_RECLAIM_ACCOUNT, init_once_func);
265 #endif
266     if (afs_inode_cachep == NULL)
267         return -ENOMEM;
268     return 0;
269 }
270
271 void
272 afs_destroy_inodecache(void)
273 {
274     if (afs_inode_cachep)
275         (void) kmem_cache_destroy(afs_inode_cachep);
276 }
277 #else
278 int
279 afs_init_inodecache(void)
280 {
281     return 0;
282 }
283
284 void
285 afs_destroy_inodecache(void)
286 {
287     return;
288 }
289 #endif
290
291 #if defined(STRUCT_SUPER_OPERATIONS_HAS_EVICT_INODE)
292 static void
293 afs_evict_inode(struct inode *ip)
294 {
295     struct vcache *vcp = VTOAFS(ip);
296
297     if (vcp->vlruq.prev || vcp->vlruq.next)
298         osi_Panic("inode freed while on LRU");
299     if (vcp->hnext)
300         osi_Panic("inode freed while still hashed");
301
302     truncate_inode_pages(&ip->i_data, 0);
303 #if defined(HAVE_LINUX_CLEAR_INODE)
304     clear_inode(ip);
305 #else
306     end_writeback(ip);
307 #endif
308
309 #if !defined(STRUCT_SUPER_OPERATIONS_HAS_ALLOC_INODE)
310     afs_osi_Free(ip->u.generic_ip, sizeof(struct vcache));
311 #endif
312 }
313 #else
314 static void
315 afs_clear_inode(struct inode *ip)
316 {
317     struct vcache *vcp = VTOAFS(ip);
318
319     if (vcp->vlruq.prev || vcp->vlruq.next)
320         osi_Panic("inode freed while on LRU");
321     if (vcp->hnext)
322         osi_Panic("inode freed while still hashed");
323
324 #if !defined(STRUCT_SUPER_OPERATIONS_HAS_ALLOC_INODE)
325     afs_osi_Free(ip->u.generic_ip, sizeof(struct vcache));
326 #endif
327 }
328 #endif
329
330 /* afs_put_super
331  * Called from unmount to release super_block. */
332 static void
333 afs_put_super(struct super_block *sbp)
334 {
335     AFS_GLOCK();
336     AFS_STATCNT(afs_unmount);
337
338     afs_globalVFS = 0;
339     afs_globalVp = 0;
340
341     afs_shutdown();
342     mntput(afs_cacheMnt);
343
344     osi_linux_verify_alloced_memory();
345 #if defined(HAVE_LINUX_BDI_INIT)
346     bdi_destroy(afs_backing_dev_info);
347 #endif
348     kfree(afs_backing_dev_info);
349     AFS_GUNLOCK();
350
351     sbp->s_dev = 0;
352     module_put(THIS_MODULE);
353 }
354
355
356 /* afs_statfs
357  * statp is in user space, so we need to cobble together a statfs, then
358  * copy it.
359  */
360 int
361 #if defined(STATFS_TAKES_DENTRY)
362 afs_statfs(struct dentry *dentry, struct kstatfs *statp)
363 #else
364 afs_statfs(struct super_block *sbp, struct kstatfs *statp)
365 #endif
366 {
367     memset(statp, 0, sizeof(*statp));
368
369     AFS_STATCNT(afs_statfs);
370
371     /* hardcode in case that which is giveth is taken away */
372     statp->f_type = 0x5346414F;
373 #if defined(STATFS_TAKES_DENTRY)
374     statp->f_bsize = dentry->d_sb->s_blocksize;
375 #else
376     statp->f_bsize = sbp->s_blocksize;
377 #endif
378     statp->f_blocks = statp->f_bfree = statp->f_bavail = statp->f_files =
379         statp->f_ffree = AFS_VFS_FAKEFREE;
380     statp->f_fsid.val[0] = AFS_VFSMAGIC;
381     statp->f_fsid.val[1] = AFS_VFSFSID;
382     statp->f_namelen = 256;
383
384     return 0;
385 }
386
387 struct super_operations afs_sops = {
388 #if defined(STRUCT_SUPER_OPERATIONS_HAS_ALLOC_INODE)
389   .alloc_inode =        afs_alloc_inode,
390   .destroy_inode =      afs_destroy_inode,
391 #endif
392 #if defined(STRUCT_SUPER_OPERATIONS_HAS_EVICT_INODE)
393   .evict_inode =        afs_evict_inode,
394 #else
395   .clear_inode =        afs_clear_inode,
396 #endif
397   .put_super =          afs_put_super,
398   .statfs =             afs_statfs,
399 };