bd4d603e6ee996415ae0d8edd1e6a03da30c180d
[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 #include <linux/smp_lock.h>
25
26 #include "osi_compat.h"
27
28 struct vcache *afs_globalVp = 0;
29 struct vfs *afs_globalVFS = 0;
30 struct vfsmount *afs_cacheMnt;
31 int afs_was_mounted = 0;        /* Used to force reload if mount/unmount/mount */
32
33 extern struct super_operations afs_sops;
34 #if !defined(AFS_NONFSTRANS)
35 extern struct export_operations afs_export_ops;
36 #endif
37 extern afs_rwlock_t afs_xvcache;
38 extern struct afs_q VLRU;
39
40 extern struct dentry_operations afs_dentry_operations;
41
42 /* Forward declarations */
43 static void iattr2vattr(struct vattr *vattrp, struct iattr *iattrp);
44 static int afs_root(struct super_block *afsp);
45 struct super_block *afs_read_super(struct super_block *sb, void *data, int silent);
46 int afs_fill_super(struct super_block *sb, void *data, int silent);
47
48 /* afs_file_system
49  * VFS entry for Linux - installed in init_module
50  * Linux mounts file systems by:
51  * 1) register_filesystem(&afs_file_system) - done in init_module
52  * 2) Mount call comes to us via do_mount -> read_super -> afs_read_super.
53  *    We are expected to setup the super_block. See afs_read_super.
54  */
55
56
57 /* afs_read_super
58  * read the "super block" for AFS - roughly eguivalent to struct vfs.
59  * dev, covered, s_rd_only, s_dirt, and s_type will be set by read_super.
60  */
61 #ifdef GET_SB_HAS_STRUCT_VFSMOUNT
62 static int
63 afs_get_sb(struct file_system_type *fs_type, int flags,
64            const char *dev_name, void *data, struct vfsmount *mnt) {
65     return get_sb_nodev(fs_type, flags, data, afs_fill_super, mnt);
66 }
67 #else
68 static struct superblock *
69 afs_get_sb(struct file_system_type *fs_type, int flags,
70            const char *dev_name, void *data)
71     return get_sb_nodev(fs_type, flags, data, afs_fill_super);
72 }
73 #endif
74
75 struct file_system_type afs_fs_type = {
76     .owner = THIS_MODULE,
77     .name = "afs",
78     .get_sb = afs_get_sb,
79     .kill_sb = kill_anon_super,
80     .fs_flags = FS_BINARY_MOUNTDATA,
81 };
82
83 struct backing_dev_info afs_backing_dev_info = {
84     .ra_pages           = 32,
85 };
86
87 int
88 afs_fill_super(struct super_block *sb, void *data, int silent)
89 {
90     int code = 0;
91
92     AFS_GLOCK();
93     if (afs_was_mounted) {
94         printf
95             ("You must reload the AFS kernel extensions before remounting AFS.\n");
96         AFS_GUNLOCK();
97         return -EINVAL;
98     }
99     afs_was_mounted = 1;
100
101     /* Set basics of super_block */
102    __module_get(THIS_MODULE);
103
104     afs_globalVFS = sb;
105     sb->s_blocksize = 1024;
106     sb->s_blocksize_bits = 10;
107     sb->s_magic = AFS_VFSMAGIC;
108     sb->s_op = &afs_sops;       /* Super block (vfs) ops */
109 #if defined(HAVE_BDI_INIT)
110     bdi_init(&afs_backing_dev_info);
111 #endif
112 #if defined (STRUCT_SUPER_BLOCK_HAS_S_BDI)
113     sb->s_bdi = &afs_backing_dev_info;
114     /* The name specified here will appear in the flushing thread name - flush-afs */
115     bdi_register(&afs_backing_dev_info, NULL, "afs");
116 #endif
117 #if !defined(AFS_NONFSTRANS)
118     sb->s_export_op = &afs_export_ops;
119 #endif
120 #if defined(MAX_NON_LFS)
121 #ifdef AFS_64BIT_CLIENT
122 #if !defined(MAX_LFS_FILESIZE)
123 #if BITS_PER_LONG==32
124 #define MAX_LFS_FILESIZE (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1) 
125 #elif BITS_PER_LONG==64
126 #define MAX_LFS_FILESIZE 0x7fffffffffffffff
127 #endif
128 #endif
129     sb->s_maxbytes = MAX_LFS_FILESIZE;
130 #else
131     sb->s_maxbytes = MAX_NON_LFS;
132 #endif
133 #endif
134     code = afs_root(sb);
135     if (code) {
136         afs_globalVFS = NULL;
137         module_put(THIS_MODULE);
138     }
139
140     AFS_GUNLOCK();
141     return code ? -EINVAL : 0;
142 }
143
144
145 /* afs_root - stat the root of the file system. AFS global held on entry. */
146 static int
147 afs_root(struct super_block *afsp)
148 {
149     register afs_int32 code = 0;
150     struct vrequest treq;
151     register struct vcache *tvp = 0;
152
153     AFS_STATCNT(afs_root);
154     if (afs_globalVp && (afs_globalVp->f.states & CStatd)) {
155         tvp = afs_globalVp;
156     } else {
157         cred_t *credp = crref();
158
159         if (afs_globalVp) {
160             afs_PutVCache(afs_globalVp);
161             afs_globalVp = NULL;
162         }
163
164         if (!(code = afs_InitReq(&treq, credp)) && !(code = afs_CheckInit())) {
165             tvp = afs_GetVCache(&afs_rootFid, &treq, NULL, NULL);
166             if (tvp) {
167                 struct inode *ip = AFSTOV(tvp);
168                 struct vattr vattr;
169
170                 afs_getattr(tvp, &vattr, credp);
171                 afs_fill_inode(ip, &vattr);
172
173                 /* setup super_block and mount point inode. */
174                 afs_globalVp = tvp;
175                 afsp->s_root = d_alloc_root(ip);
176                 afsp->s_root->d_op = &afs_dentry_operations;
177             } else
178                 code = ENOENT;
179         }
180         crfree(credp);
181     }
182
183     afs_Trace2(afs_iclSetp, CM_TRACE_VFSROOT, ICL_TYPE_POINTER, afs_globalVp,
184                ICL_TYPE_INT32, code);
185     return code;
186 }
187
188 /* super_operations */
189
190 /* afs_notify_change
191  * Linux version of setattr call. What to change is in the iattr struct.
192  * We need to set bits in both the Linux inode as well as the vcache.
193  */
194 int
195 afs_notify_change(struct dentry *dp, struct iattr *iattrp)
196 {
197     struct vattr vattr;
198     cred_t *credp = crref();
199     struct inode *ip = dp->d_inode;
200     int code;
201
202     VATTR_NULL(&vattr);
203     iattr2vattr(&vattr, iattrp);        /* Convert for AFS vnodeops call. */
204
205     lock_kernel();
206     AFS_GLOCK();
207     code = afs_setattr(VTOAFS(ip), &vattr, credp);
208     if (!code) {
209         afs_getattr(VTOAFS(ip), &vattr, credp);
210         vattr2inode(ip, &vattr);
211     }
212     AFS_GUNLOCK();
213     unlock_kernel();
214     crfree(credp);
215     return -code;
216 }
217
218
219 #if defined(STRUCT_SUPER_HAS_ALLOC_INODE)
220 static afs_kmem_cache_t *afs_inode_cachep;
221
222 static struct inode *
223 afs_alloc_inode(struct super_block *sb)
224 {
225     struct vcache *vcp;
226
227     vcp = (struct vcache *) kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL);
228     if (!vcp)
229         return NULL;
230
231     return AFSTOV(vcp);
232 }
233
234 static void
235 afs_destroy_inode(struct inode *inode)
236 {
237     kmem_cache_free(afs_inode_cachep, inode);
238 }
239
240 void
241 init_once(void * foo)
242 {
243     struct vcache *vcp = (struct vcache *) foo;
244
245 #if defined(SLAB_CTOR_VERIFY)
246     if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
247         SLAB_CTOR_CONSTRUCTOR)
248 #endif
249         inode_init_once(AFSTOV(vcp));
250 }
251
252 int
253 afs_init_inodecache(void)
254 {
255     afs_inode_cachep = afs_kmem_cache_create("afs_inode_cache",
256                 sizeof(struct vcache), 0,
257                 SLAB_HWCACHE_ALIGN | SLAB_RECLAIM_ACCOUNT, init_once_func);
258     if (afs_inode_cachep == NULL)
259         return -ENOMEM;
260     return 0;
261 }
262
263 void
264 afs_destroy_inodecache(void)
265 {
266     if (afs_inode_cachep)
267         (void) kmem_cache_destroy(afs_inode_cachep);
268 }
269 #else
270 int
271 afs_init_inodecache(void)
272 {
273     return 0;
274 }
275
276 void
277 afs_destroy_inodecache(void)
278 {
279     return;
280 }
281 #endif
282
283 static void
284 afs_clear_inode(struct inode *ip)
285 {
286     struct vcache *vcp = VTOAFS(ip);
287
288     if (vcp->vlruq.prev || vcp->vlruq.next)
289         osi_Panic("inode freed while on LRU");
290     if (vcp->hnext)
291         osi_Panic("inode freed while still hashed");
292
293 #if !defined(STRUCT_SUPER_HAS_ALLOC_INODE)
294     afs_osi_Free(ip->u.generic_ip, sizeof(struct vcache));
295 #endif
296 }
297
298 /* afs_put_super
299  * Called from unmount to release super_block. */
300 static void
301 afs_put_super(struct super_block *sbp)
302 {
303     AFS_GLOCK();
304     AFS_STATCNT(afs_unmount);
305
306     afs_globalVFS = 0;
307     afs_globalVp = 0;
308
309     osi_linux_free_inode_pages();       /* invalidate and release remaining AFS inodes. */
310     afs_shutdown();
311     mntput(afs_cacheMnt);
312
313     osi_linux_verify_alloced_memory();
314 #if defined(HAVE_BDI_INIT)
315     bdi_destroy(&afs_backing_dev_info);
316 #endif
317     AFS_GUNLOCK();
318
319     sbp->s_dev = 0;
320     module_put(THIS_MODULE);
321 }
322
323
324 /* afs_statfs
325  * statp is in user space, so we need to cobble together a statfs, then
326  * copy it.
327  */
328 int
329 #if defined(STATFS_TAKES_DENTRY)
330 afs_statfs(struct dentry *dentry, struct kstatfs *statp)
331 #else
332 afs_statfs(struct super_block *sbp, struct kstatfs *statp)
333 #endif
334 {
335     memset(statp, 0, sizeof(*statp));
336
337     AFS_STATCNT(afs_statfs);
338
339     /* hardcode in case that which is giveth is taken away */
340     statp->f_type = 0x5346414F;
341 #if defined(STATFS_TAKES_DENTRY)
342     statp->f_bsize = dentry->d_sb->s_blocksize;
343 #else
344     statp->f_bsize = sbp->s_blocksize;
345 #endif
346     statp->f_blocks = statp->f_bfree = statp->f_bavail = statp->f_files =
347         statp->f_ffree = 9000000;
348     statp->f_fsid.val[0] = AFS_VFSMAGIC;
349     statp->f_fsid.val[1] = AFS_VFSFSID;
350     statp->f_namelen = 256;
351
352     return 0;
353 }
354
355 struct super_operations afs_sops = {
356 #if defined(STRUCT_SUPER_HAS_ALLOC_INODE)
357   .alloc_inode =        afs_alloc_inode,
358   .destroy_inode =      afs_destroy_inode,
359 #endif
360   .clear_inode =        afs_clear_inode,
361   .put_super =          afs_put_super,
362   .statfs =             afs_statfs,
363 };
364
365 /************** Support routines ************************/
366
367 /* vattr_setattr
368  * Set iattr data into vattr. Assume vattr cleared before call.
369  */
370 static void
371 iattr2vattr(struct vattr *vattrp, struct iattr *iattrp)
372 {
373     vattrp->va_mask = iattrp->ia_valid;
374     if (iattrp->ia_valid & ATTR_MODE)
375         vattrp->va_mode = iattrp->ia_mode;
376     if (iattrp->ia_valid & ATTR_UID)
377         vattrp->va_uid = iattrp->ia_uid;
378     if (iattrp->ia_valid & ATTR_GID)
379         vattrp->va_gid = iattrp->ia_gid;
380     if (iattrp->ia_valid & ATTR_SIZE)
381         vattrp->va_size = iattrp->ia_size;
382     if (iattrp->ia_valid & ATTR_ATIME) {
383         vattrp->va_atime.tv_sec = iattrp->ia_atime.tv_sec;
384         vattrp->va_atime.tv_usec = 0;
385     }
386     if (iattrp->ia_valid & ATTR_MTIME) {
387         vattrp->va_mtime.tv_sec = iattrp->ia_mtime.tv_sec;
388         vattrp->va_mtime.tv_usec = 0;
389     }
390     if (iattrp->ia_valid & ATTR_CTIME) {
391         vattrp->va_ctime.tv_sec = iattrp->ia_ctime.tv_sec;
392         vattrp->va_ctime.tv_usec = 0;
393     }
394 }
395
396 /* vattr2inode
397  * Rewrite the inode cache from the attr. Assumes all vattr fields are valid.
398  */
399 void
400 vattr2inode(struct inode *ip, struct vattr *vp)
401 {
402     ip->i_ino = vp->va_nodeid;
403     ip->i_nlink = vp->va_nlink;
404     ip->i_blocks = vp->va_blocks;
405 #ifdef STRUCT_INODE_HAS_I_BLKBITS
406     ip->i_blkbits = AFS_BLKBITS;
407 #endif
408 #ifdef STRUCT_INODE_HAS_I_BLKSIZE
409     ip->i_blksize = vp->va_blocksize;
410 #endif
411     ip->i_rdev = vp->va_rdev;
412     ip->i_mode = vp->va_mode;
413     ip->i_uid = vp->va_uid;
414     ip->i_gid = vp->va_gid;
415     i_size_write(ip, vp->va_size);
416     ip->i_atime.tv_sec = vp->va_atime.tv_sec;
417     ip->i_atime.tv_nsec = 0;
418     ip->i_mtime.tv_sec = vp->va_mtime.tv_sec;
419     /* Set the mtime nanoseconds to the sysname generation number.
420      * This convinces NFS clients that all directories have changed
421      * any time the sysname list changes.
422      */
423     ip->i_mtime.tv_nsec = afs_sysnamegen;
424     ip->i_ctime.tv_sec = vp->va_ctime.tv_sec;
425     ip->i_ctime.tv_nsec = 0;
426 }
427
428 /* osi_linux_free_inode_pages
429  *
430  * Free all vnodes remaining in the afs hash.  Must be done before
431  * shutting down afs and freeing all memory.
432  */
433 void
434 osi_linux_free_inode_pages(void)
435 {
436     int i;
437     struct vcache *tvc, *nvc;
438     extern struct vcache *afs_vhashT[VCSIZE];
439
440     for (i = 0; i < VCSIZE; i++) {
441         for (tvc = afs_vhashT[i]; tvc; ) {
442             int slept;
443         
444             nvc = tvc->hnext;
445             if (afs_FlushVCache(tvc, &slept))           /* slept always 0 for linux? */
446                 printf("Failed to invalidate all pages on inode 0x%p\n", tvc);
447             tvc = nvc;
448         }
449     }
450 }