blob: cd3f8b3270ac8ce0228d993e76512445d25fda95 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scottd3870392005-05-06 06:44:46 -07002 * Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 *
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
22 *
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
25 *
26 * http://www.sgi.com
27 *
28 * For further information regarding this notice, see:
29 *
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
31 */
32
33#include "xfs.h"
34
35#include "xfs_inum.h"
36#include "xfs_log.h"
37#include "xfs_clnt.h"
38#include "xfs_trans.h"
39#include "xfs_sb.h"
40#include "xfs_dir.h"
41#include "xfs_dir2.h"
42#include "xfs_alloc.h"
43#include "xfs_dmapi.h"
44#include "xfs_quota.h"
45#include "xfs_mount.h"
46#include "xfs_alloc_btree.h"
47#include "xfs_bmap_btree.h"
48#include "xfs_ialloc_btree.h"
49#include "xfs_btree.h"
50#include "xfs_ialloc.h"
51#include "xfs_attr_sf.h"
52#include "xfs_dir_sf.h"
53#include "xfs_dir2_sf.h"
54#include "xfs_dinode.h"
55#include "xfs_inode.h"
56#include "xfs_bmap.h"
57#include "xfs_bit.h"
58#include "xfs_rtalloc.h"
59#include "xfs_error.h"
60#include "xfs_itable.h"
61#include "xfs_rw.h"
62#include "xfs_acl.h"
63#include "xfs_cap.h"
64#include "xfs_mac.h"
65#include "xfs_attr.h"
66#include "xfs_buf_item.h"
67#include "xfs_utils.h"
68#include "xfs_version.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#include <linux/namei.h>
71#include <linux/init.h>
72#include <linux/mount.h>
Christoph Hellwig0829c362005-09-02 16:58:49 +100073#include <linux/mempool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <linux/writeback.h>
75
76STATIC struct quotactl_ops linvfs_qops;
77STATIC struct super_operations linvfs_sops;
Christoph Hellwig0829c362005-09-02 16:58:49 +100078STATIC kmem_zone_t *xfs_vnode_zone;
79STATIC kmem_zone_t *xfs_ioend_zone;
80mempool_t *xfs_ioend_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82STATIC struct xfs_mount_args *
83xfs_args_allocate(
84 struct super_block *sb)
85{
86 struct xfs_mount_args *args;
87
88 args = kmem_zalloc(sizeof(struct xfs_mount_args), KM_SLEEP);
89 args->logbufs = args->logbufsize = -1;
90 strncpy(args->fsname, sb->s_id, MAXNAMELEN);
91
92 /* Copy the already-parsed mount(2) flags we're interested in */
93 if (sb->s_flags & MS_NOATIME)
94 args->flags |= XFSMNT_NOATIME;
95 if (sb->s_flags & MS_DIRSYNC)
96 args->flags |= XFSMNT_DIRSYNC;
97 if (sb->s_flags & MS_SYNCHRONOUS)
98 args->flags |= XFSMNT_WSYNC;
99
100 /* Default to 32 bit inodes on Linux all the time */
101 args->flags |= XFSMNT_32BITINODES;
102
103 return args;
104}
105
106__uint64_t
107xfs_max_file_offset(
108 unsigned int blockshift)
109{
110 unsigned int pagefactor = 1;
111 unsigned int bitshift = BITS_PER_LONG - 1;
112
113 /* Figure out maximum filesize, on Linux this can depend on
114 * the filesystem blocksize (on 32 bit platforms).
115 * __block_prepare_write does this in an [unsigned] long...
116 * page->index << (PAGE_CACHE_SHIFT - bbits)
117 * So, for page sized blocks (4K on 32 bit platforms),
118 * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
119 * (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
120 * but for smaller blocksizes it is less (bbits = log2 bsize).
121 * Note1: get_block_t takes a long (implicit cast from above)
122 * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
123 * can optionally convert the [unsigned] long from above into
124 * an [unsigned] long long.
125 */
126
127#if BITS_PER_LONG == 32
128# if defined(CONFIG_LBD)
129 ASSERT(sizeof(sector_t) == 8);
130 pagefactor = PAGE_CACHE_SIZE;
131 bitshift = BITS_PER_LONG;
132# else
133 pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
134# endif
135#endif
136
137 return (((__uint64_t)pagefactor) << bitshift) - 1;
138}
139
140STATIC __inline__ void
141xfs_set_inodeops(
142 struct inode *inode)
143{
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000144 switch (inode->i_mode & S_IFMT) {
145 case S_IFREG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 inode->i_op = &linvfs_file_inode_operations;
147 inode->i_fop = &linvfs_file_operations;
148 inode->i_mapping->a_ops = &linvfs_aops;
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000149 break;
150 case S_IFDIR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 inode->i_op = &linvfs_dir_inode_operations;
152 inode->i_fop = &linvfs_dir_operations;
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000153 break;
154 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 inode->i_op = &linvfs_symlink_inode_operations;
156 if (inode->i_blocks)
157 inode->i_mapping->a_ops = &linvfs_aops;
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000158 break;
159 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 inode->i_op = &linvfs_file_inode_operations;
161 init_special_inode(inode, inode->i_mode, inode->i_rdev);
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000162 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
164}
165
166STATIC __inline__ void
167xfs_revalidate_inode(
168 xfs_mount_t *mp,
169 vnode_t *vp,
170 xfs_inode_t *ip)
171{
172 struct inode *inode = LINVFS_GET_IP(vp);
173
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000174 inode->i_mode = ip->i_d.di_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 inode->i_nlink = ip->i_d.di_nlink;
176 inode->i_uid = ip->i_d.di_uid;
177 inode->i_gid = ip->i_d.di_gid;
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000178
179 switch (inode->i_mode & S_IFMT) {
180 case S_IFBLK:
181 case S_IFCHR:
182 inode->i_rdev =
183 MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
184 sysv_minor(ip->i_df.if_u2.if_rdev));
185 break;
186 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 inode->i_rdev = 0;
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000188 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 inode->i_blksize = PAGE_CACHE_SIZE;
192 inode->i_generation = ip->i_d.di_gen;
193 i_size_write(inode, ip->i_d.di_size);
194 inode->i_blocks =
195 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
196 inode->i_atime.tv_sec = ip->i_d.di_atime.t_sec;
197 inode->i_atime.tv_nsec = ip->i_d.di_atime.t_nsec;
198 inode->i_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
199 inode->i_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
200 inode->i_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
201 inode->i_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
202 if (ip->i_d.di_flags & XFS_DIFLAG_IMMUTABLE)
203 inode->i_flags |= S_IMMUTABLE;
204 else
205 inode->i_flags &= ~S_IMMUTABLE;
206 if (ip->i_d.di_flags & XFS_DIFLAG_APPEND)
207 inode->i_flags |= S_APPEND;
208 else
209 inode->i_flags &= ~S_APPEND;
210 if (ip->i_d.di_flags & XFS_DIFLAG_SYNC)
211 inode->i_flags |= S_SYNC;
212 else
213 inode->i_flags &= ~S_SYNC;
214 if (ip->i_d.di_flags & XFS_DIFLAG_NOATIME)
215 inode->i_flags |= S_NOATIME;
216 else
217 inode->i_flags &= ~S_NOATIME;
218 vp->v_flag &= ~VMODIFIED;
219}
220
221void
222xfs_initialize_vnode(
223 bhv_desc_t *bdp,
224 vnode_t *vp,
225 bhv_desc_t *inode_bhv,
226 int unlock)
227{
228 xfs_inode_t *ip = XFS_BHVTOI(inode_bhv);
229 struct inode *inode = LINVFS_GET_IP(vp);
230
231 if (!inode_bhv->bd_vobj) {
232 vp->v_vfsp = bhvtovfs(bdp);
233 bhv_desc_init(inode_bhv, ip, vp, &xfs_vnodeops);
234 bhv_insert(VN_BHV_HEAD(vp), inode_bhv);
235 }
236
237 /*
238 * We need to set the ops vectors, and unlock the inode, but if
239 * we have been called during the new inode create process, it is
240 * too early to fill in the Linux inode. We will get called a
241 * second time once the inode is properly set up, and then we can
242 * finish our work.
243 */
244 if (ip->i_d.di_mode != 0 && unlock && (inode->i_state & I_NEW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 xfs_revalidate_inode(XFS_BHVTOM(bdp), vp, ip);
246 xfs_set_inodeops(inode);
247
248 ip->i_flags &= ~XFS_INEW;
249 barrier();
250
251 unlock_new_inode(inode);
252 }
253}
254
255int
256xfs_blkdev_get(
257 xfs_mount_t *mp,
258 const char *name,
259 struct block_device **bdevp)
260{
261 int error = 0;
262
263 *bdevp = open_bdev_excl(name, 0, mp);
264 if (IS_ERR(*bdevp)) {
265 error = PTR_ERR(*bdevp);
266 printk("XFS: Invalid device [%s], error=%d\n", name, error);
267 }
268
269 return -error;
270}
271
272void
273xfs_blkdev_put(
274 struct block_device *bdev)
275{
276 if (bdev)
277 close_bdev_excl(bdev);
278}
279
280
281STATIC struct inode *
282linvfs_alloc_inode(
283 struct super_block *sb)
284{
285 vnode_t *vp;
286
Christoph Hellwig0829c362005-09-02 16:58:49 +1000287 vp = kmem_cache_alloc(xfs_vnode_zone, kmem_flags_convert(KM_SLEEP));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (!vp)
289 return NULL;
290 return LINVFS_GET_IP(vp);
291}
292
293STATIC void
294linvfs_destroy_inode(
295 struct inode *inode)
296{
Christoph Hellwig0829c362005-09-02 16:58:49 +1000297 kmem_zone_free(xfs_vnode_zone, LINVFS_GET_VP(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
300STATIC void
Christoph Hellwig0829c362005-09-02 16:58:49 +1000301linvfs_inode_init_once(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 void *data,
303 kmem_cache_t *cachep,
304 unsigned long flags)
305{
306 vnode_t *vp = (vnode_t *)data;
307
308 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
309 SLAB_CTOR_CONSTRUCTOR)
310 inode_init_once(LINVFS_GET_IP(vp));
311}
312
313STATIC int
Christoph Hellwig0829c362005-09-02 16:58:49 +1000314linvfs_init_zones(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Christoph Hellwig0829c362005-09-02 16:58:49 +1000316 xfs_vnode_zone = kmem_cache_create("xfs_vnode",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 sizeof(vnode_t), 0, SLAB_RECLAIM_ACCOUNT,
Christoph Hellwig0829c362005-09-02 16:58:49 +1000318 linvfs_inode_init_once, NULL);
319 if (!xfs_vnode_zone)
320 goto out;
321
322 xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
323 if (!xfs_ioend_zone)
324 goto out_destroy_vnode_zone;
325
326 xfs_ioend_pool = mempool_create(4 * MAX_BUF_PER_PAGE,
327 mempool_alloc_slab, mempool_free_slab,
328 xfs_ioend_zone);
329 if (!xfs_ioend_pool)
330 goto out_free_ioend_zone;
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return 0;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000333
334
335 out_free_ioend_zone:
336 kmem_zone_destroy(xfs_ioend_zone);
337 out_destroy_vnode_zone:
338 kmem_zone_destroy(xfs_vnode_zone);
339 out:
340 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343STATIC void
Christoph Hellwig0829c362005-09-02 16:58:49 +1000344linvfs_destroy_zones(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Christoph Hellwig0829c362005-09-02 16:58:49 +1000346 mempool_destroy(xfs_ioend_pool);
347 kmem_zone_destroy(xfs_vnode_zone);
348 kmem_zone_destroy(xfs_ioend_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
351/*
352 * Attempt to flush the inode, this will actually fail
353 * if the inode is pinned, but we dirty the inode again
354 * at the point when it is unpinned after a log write,
355 * since this is when the inode itself becomes flushable.
356 */
357STATIC int
358linvfs_write_inode(
359 struct inode *inode,
360 int sync)
361{
362 vnode_t *vp = LINVFS_GET_VP(inode);
363 int error = 0, flags = FLUSH_INODE;
364
365 if (vp) {
366 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
367 if (sync)
368 flags |= FLUSH_SYNC;
369 VOP_IFLUSH(vp, flags, error);
370 if (error == EAGAIN) {
371 if (sync)
372 VOP_IFLUSH(vp, flags | FLUSH_LOG, error);
373 else
374 error = 0;
375 }
376 }
377
378 return -error;
379}
380
381STATIC void
382linvfs_clear_inode(
383 struct inode *inode)
384{
385 vnode_t *vp = LINVFS_GET_VP(inode);
Christoph Hellwig56d433e2005-09-05 08:23:54 +1000386 int error, cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Christoph Hellwig56d433e2005-09-05 08:23:54 +1000388 vn_trace_entry(vp, "clear_inode", (inst_t *)__return_address);
389
390 ASSERT(vp->v_fbhv != NULL);
391
392 XFS_STATS_INC(vn_rele);
393 XFS_STATS_INC(vn_remove);
394 XFS_STATS_INC(vn_reclaim);
395 XFS_STATS_DEC(vn_active);
396
397 VOP_INACTIVE(vp, NULL, cache);
398
399 VN_LOCK(vp);
400 vp->v_flag &= ~VMODIFIED;
401 VN_UNLOCK(vp, 0);
402
Felix Blyakher0c147f92005-09-05 08:24:49 +1000403 if (vp->v_fbhv) {
404 VOP_RECLAIM(vp, error);
405 if (error)
406 panic("vn_purge: cannot reclaim");
407 }
Christoph Hellwig56d433e2005-09-05 08:23:54 +1000408
409 ASSERT(vp->v_fbhv == NULL);
410
411#ifdef XFS_VNODE_TRACE
412 ktrace_free(vp->v_trace);
413#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/*
417 * Enqueue a work item to be picked up by the vfs xfssyncd thread.
418 * Doing this has two advantages:
419 * - It saves on stack space, which is tight in certain situations
420 * - It can be used (with care) as a mechanism to avoid deadlocks.
421 * Flushing while allocating in a full filesystem requires both.
422 */
423STATIC void
424xfs_syncd_queue_work(
425 struct vfs *vfs,
426 void *data,
427 void (*syncer)(vfs_t *, void *))
428{
429 vfs_sync_work_t *work;
430
431 work = kmem_alloc(sizeof(struct vfs_sync_work), KM_SLEEP);
432 INIT_LIST_HEAD(&work->w_list);
433 work->w_syncer = syncer;
434 work->w_data = data;
435 work->w_vfs = vfs;
436 spin_lock(&vfs->vfs_sync_lock);
437 list_add_tail(&work->w_list, &vfs->vfs_sync_list);
438 spin_unlock(&vfs->vfs_sync_lock);
439 wake_up_process(vfs->vfs_sync_task);
440}
441
442/*
443 * Flush delayed allocate data, attempting to free up reserved space
444 * from existing allocations. At this point a new allocation attempt
445 * has failed with ENOSPC and we are in the process of scratching our
446 * heads, looking about for more room...
447 */
448STATIC void
449xfs_flush_inode_work(
450 vfs_t *vfs,
451 void *inode)
452{
453 filemap_flush(((struct inode *)inode)->i_mapping);
454 iput((struct inode *)inode);
455}
456
457void
458xfs_flush_inode(
459 xfs_inode_t *ip)
460{
461 struct inode *inode = LINVFS_GET_IP(XFS_ITOV(ip));
462 struct vfs *vfs = XFS_MTOVFS(ip->i_mount);
463
464 igrab(inode);
465 xfs_syncd_queue_work(vfs, inode, xfs_flush_inode_work);
466 delay(HZ/2);
467}
468
469/*
470 * This is the "bigger hammer" version of xfs_flush_inode_work...
471 * (IOW, "If at first you don't succeed, use a Bigger Hammer").
472 */
473STATIC void
474xfs_flush_device_work(
475 vfs_t *vfs,
476 void *inode)
477{
478 sync_blockdev(vfs->vfs_super->s_bdev);
479 iput((struct inode *)inode);
480}
481
482void
483xfs_flush_device(
484 xfs_inode_t *ip)
485{
486 struct inode *inode = LINVFS_GET_IP(XFS_ITOV(ip));
487 struct vfs *vfs = XFS_MTOVFS(ip->i_mount);
488
489 igrab(inode);
490 xfs_syncd_queue_work(vfs, inode, xfs_flush_device_work);
491 delay(HZ/2);
492 xfs_log_force(ip->i_mount, (xfs_lsn_t)0, XFS_LOG_FORCE|XFS_LOG_SYNC);
493}
494
495#define SYNCD_FLAGS (SYNC_FSDATA|SYNC_BDFLUSH|SYNC_ATTR)
496STATIC void
497vfs_sync_worker(
498 vfs_t *vfsp,
499 void *unused)
500{
501 int error;
502
503 if (!(vfsp->vfs_flag & VFS_RDONLY))
504 VFS_SYNC(vfsp, SYNCD_FLAGS, NULL, error);
505 vfsp->vfs_sync_seq++;
506 wmb();
507 wake_up(&vfsp->vfs_wait_single_sync_task);
508}
509
510STATIC int
511xfssyncd(
512 void *arg)
513{
514 long timeleft;
515 vfs_t *vfsp = (vfs_t *) arg;
516 struct list_head tmp;
517 struct vfs_sync_work *work, *n;
518
519 daemonize("xfssyncd");
520
521 vfsp->vfs_sync_work.w_vfs = vfsp;
522 vfsp->vfs_sync_work.w_syncer = vfs_sync_worker;
523 vfsp->vfs_sync_task = current;
524 wmb();
525 wake_up(&vfsp->vfs_wait_sync_task);
526
527 INIT_LIST_HEAD(&tmp);
528 timeleft = (xfs_syncd_centisecs * HZ) / 100;
529 for (;;) {
530 set_current_state(TASK_INTERRUPTIBLE);
531 timeleft = schedule_timeout(timeleft);
532 /* swsusp */
Christoph Lameter3e1d1d22005-06-24 23:13:50 -0700533 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (vfsp->vfs_flag & VFS_UMOUNT)
535 break;
536
537 spin_lock(&vfsp->vfs_sync_lock);
538 /*
539 * We can get woken by laptop mode, to do a sync -
540 * that's the (only!) case where the list would be
541 * empty with time remaining.
542 */
543 if (!timeleft || list_empty(&vfsp->vfs_sync_list)) {
544 if (!timeleft)
545 timeleft = (xfs_syncd_centisecs * HZ) / 100;
546 INIT_LIST_HEAD(&vfsp->vfs_sync_work.w_list);
547 list_add_tail(&vfsp->vfs_sync_work.w_list,
548 &vfsp->vfs_sync_list);
549 }
550 list_for_each_entry_safe(work, n, &vfsp->vfs_sync_list, w_list)
551 list_move(&work->w_list, &tmp);
552 spin_unlock(&vfsp->vfs_sync_lock);
553
554 list_for_each_entry_safe(work, n, &tmp, w_list) {
555 (*work->w_syncer)(vfsp, work->w_data);
556 list_del(&work->w_list);
557 if (work == &vfsp->vfs_sync_work)
558 continue;
559 kmem_free(work, sizeof(struct vfs_sync_work));
560 }
561 }
562
563 vfsp->vfs_sync_task = NULL;
564 wmb();
565 wake_up(&vfsp->vfs_wait_sync_task);
566
567 return 0;
568}
569
570STATIC int
571linvfs_start_syncd(
572 vfs_t *vfsp)
573{
574 int pid;
575
576 pid = kernel_thread(xfssyncd, (void *) vfsp,
577 CLONE_VM | CLONE_FS | CLONE_FILES);
578 if (pid < 0)
579 return -pid;
580 wait_event(vfsp->vfs_wait_sync_task, vfsp->vfs_sync_task);
581 return 0;
582}
583
584STATIC void
585linvfs_stop_syncd(
586 vfs_t *vfsp)
587{
588 vfsp->vfs_flag |= VFS_UMOUNT;
589 wmb();
590
591 wake_up_process(vfsp->vfs_sync_task);
592 wait_event(vfsp->vfs_wait_sync_task, !vfsp->vfs_sync_task);
593}
594
595STATIC void
596linvfs_put_super(
597 struct super_block *sb)
598{
599 vfs_t *vfsp = LINVFS_GET_VFS(sb);
600 int error;
601
602 linvfs_stop_syncd(vfsp);
603 VFS_SYNC(vfsp, SYNC_ATTR|SYNC_DELWRI, NULL, error);
604 if (!error)
605 VFS_UNMOUNT(vfsp, 0, NULL, error);
606 if (error) {
607 printk("XFS unmount got error %d\n", error);
608 printk("%s: vfsp/0x%p left dangling!\n", __FUNCTION__, vfsp);
609 return;
610 }
611
612 vfs_deallocate(vfsp);
613}
614
615STATIC void
616linvfs_write_super(
617 struct super_block *sb)
618{
619 vfs_t *vfsp = LINVFS_GET_VFS(sb);
620 int error;
621
622 if (sb->s_flags & MS_RDONLY) {
623 sb->s_dirt = 0; /* paranoia */
624 return;
625 }
626 /* Push the log and superblock a little */
627 VFS_SYNC(vfsp, SYNC_FSDATA, NULL, error);
628 sb->s_dirt = 0;
629}
630
631STATIC int
632linvfs_sync_super(
633 struct super_block *sb,
634 int wait)
635{
636 vfs_t *vfsp = LINVFS_GET_VFS(sb);
637 int error;
638 int flags = SYNC_FSDATA;
639
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000640 if (unlikely(sb->s_frozen == SB_FREEZE_WRITE))
641 flags = SYNC_QUIESCE;
642 else
643 flags = SYNC_FSDATA | (wait ? SYNC_WAIT : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 VFS_SYNC(vfsp, flags, NULL, error);
646 sb->s_dirt = 0;
647
648 if (unlikely(laptop_mode)) {
649 int prev_sync_seq = vfsp->vfs_sync_seq;
650
651 /*
652 * The disk must be active because we're syncing.
653 * We schedule xfssyncd now (now that the disk is
654 * active) instead of later (when it might not be).
655 */
656 wake_up_process(vfsp->vfs_sync_task);
657 /*
658 * We have to wait for the sync iteration to complete.
659 * If we don't, the disk activity caused by the sync
660 * will come after the sync is completed, and that
661 * triggers another sync from laptop mode.
662 */
663 wait_event(vfsp->vfs_wait_single_sync_task,
664 vfsp->vfs_sync_seq != prev_sync_seq);
665 }
666
667 return -error;
668}
669
670STATIC int
671linvfs_statfs(
672 struct super_block *sb,
673 struct kstatfs *statp)
674{
675 vfs_t *vfsp = LINVFS_GET_VFS(sb);
676 int error;
677
678 VFS_STATVFS(vfsp, statp, NULL, error);
679 return -error;
680}
681
682STATIC int
683linvfs_remount(
684 struct super_block *sb,
685 int *flags,
686 char *options)
687{
688 vfs_t *vfsp = LINVFS_GET_VFS(sb);
689 struct xfs_mount_args *args = xfs_args_allocate(sb);
690 int error;
691
692 VFS_PARSEARGS(vfsp, options, args, 1, error);
693 if (!error)
694 VFS_MNTUPDATE(vfsp, flags, args, error);
695 kmem_free(args, sizeof(*args));
696 return -error;
697}
698
699STATIC void
700linvfs_freeze_fs(
701 struct super_block *sb)
702{
703 VFS_FREEZE(LINVFS_GET_VFS(sb));
704}
705
706STATIC int
707linvfs_show_options(
708 struct seq_file *m,
709 struct vfsmount *mnt)
710{
711 struct vfs *vfsp = LINVFS_GET_VFS(mnt->mnt_sb);
712 int error;
713
714 VFS_SHOWARGS(vfsp, m, error);
715 return error;
716}
717
718STATIC int
719linvfs_getxstate(
720 struct super_block *sb,
721 struct fs_quota_stat *fqs)
722{
723 struct vfs *vfsp = LINVFS_GET_VFS(sb);
724 int error;
725
726 VFS_QUOTACTL(vfsp, Q_XGETQSTAT, 0, (caddr_t)fqs, error);
727 return -error;
728}
729
730STATIC int
731linvfs_setxstate(
732 struct super_block *sb,
733 unsigned int flags,
734 int op)
735{
736 struct vfs *vfsp = LINVFS_GET_VFS(sb);
737 int error;
738
739 VFS_QUOTACTL(vfsp, op, 0, (caddr_t)&flags, error);
740 return -error;
741}
742
743STATIC int
744linvfs_getxquota(
745 struct super_block *sb,
746 int type,
747 qid_t id,
748 struct fs_disk_quota *fdq)
749{
750 struct vfs *vfsp = LINVFS_GET_VFS(sb);
751 int error, getmode;
752
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000753 getmode = (type == USRQUOTA) ? Q_XGETQUOTA :
754 ((type == GRPQUOTA) ? Q_XGETGQUOTA : Q_XGETPQUOTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 VFS_QUOTACTL(vfsp, getmode, id, (caddr_t)fdq, error);
756 return -error;
757}
758
759STATIC int
760linvfs_setxquota(
761 struct super_block *sb,
762 int type,
763 qid_t id,
764 struct fs_disk_quota *fdq)
765{
766 struct vfs *vfsp = LINVFS_GET_VFS(sb);
767 int error, setmode;
768
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000769 setmode = (type == USRQUOTA) ? Q_XSETQLIM :
770 ((type == GRPQUOTA) ? Q_XSETGQLIM : Q_XSETPQLIM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 VFS_QUOTACTL(vfsp, setmode, id, (caddr_t)fdq, error);
772 return -error;
773}
774
775STATIC int
776linvfs_fill_super(
777 struct super_block *sb,
778 void *data,
779 int silent)
780{
781 vnode_t *rootvp;
782 struct vfs *vfsp = vfs_allocate();
783 struct xfs_mount_args *args = xfs_args_allocate(sb);
784 struct kstatfs statvfs;
785 int error, error2;
786
787 vfsp->vfs_super = sb;
788 LINVFS_SET_VFS(sb, vfsp);
789 if (sb->s_flags & MS_RDONLY)
790 vfsp->vfs_flag |= VFS_RDONLY;
791 bhv_insert_all_vfsops(vfsp);
792
793 VFS_PARSEARGS(vfsp, (char *)data, args, 0, error);
794 if (error) {
795 bhv_remove_all_vfsops(vfsp, 1);
796 goto fail_vfsop;
797 }
798
799 sb_min_blocksize(sb, BBSIZE);
800#ifdef CONFIG_XFS_EXPORT
801 sb->s_export_op = &linvfs_export_ops;
802#endif
803 sb->s_qcop = &linvfs_qops;
804 sb->s_op = &linvfs_sops;
805
806 VFS_MOUNT(vfsp, args, NULL, error);
807 if (error) {
808 bhv_remove_all_vfsops(vfsp, 1);
809 goto fail_vfsop;
810 }
811
812 VFS_STATVFS(vfsp, &statvfs, NULL, error);
813 if (error)
814 goto fail_unmount;
815
816 sb->s_dirt = 1;
817 sb->s_magic = statvfs.f_type;
818 sb->s_blocksize = statvfs.f_bsize;
819 sb->s_blocksize_bits = ffs(statvfs.f_bsize) - 1;
820 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
821 sb->s_time_gran = 1;
822 set_posix_acl_flag(sb);
823
824 VFS_ROOT(vfsp, &rootvp, error);
825 if (error)
826 goto fail_unmount;
827
828 sb->s_root = d_alloc_root(LINVFS_GET_IP(rootvp));
829 if (!sb->s_root) {
830 error = ENOMEM;
831 goto fail_vnrele;
832 }
833 if (is_bad_inode(sb->s_root->d_inode)) {
834 error = EINVAL;
835 goto fail_vnrele;
836 }
837 if ((error = linvfs_start_syncd(vfsp)))
838 goto fail_vnrele;
839 vn_trace_exit(rootvp, __FUNCTION__, (inst_t *)__return_address);
840
841 kmem_free(args, sizeof(*args));
842 return 0;
843
844fail_vnrele:
845 if (sb->s_root) {
846 dput(sb->s_root);
847 sb->s_root = NULL;
848 } else {
849 VN_RELE(rootvp);
850 }
851
852fail_unmount:
853 VFS_UNMOUNT(vfsp, 0, NULL, error2);
854
855fail_vfsop:
856 vfs_deallocate(vfsp);
857 kmem_free(args, sizeof(*args));
858 return -error;
859}
860
861STATIC struct super_block *
862linvfs_get_sb(
863 struct file_system_type *fs_type,
864 int flags,
865 const char *dev_name,
866 void *data)
867{
868 return get_sb_bdev(fs_type, flags, dev_name, data, linvfs_fill_super);
869}
870
871STATIC struct super_operations linvfs_sops = {
872 .alloc_inode = linvfs_alloc_inode,
873 .destroy_inode = linvfs_destroy_inode,
874 .write_inode = linvfs_write_inode,
875 .clear_inode = linvfs_clear_inode,
876 .put_super = linvfs_put_super,
877 .write_super = linvfs_write_super,
878 .sync_fs = linvfs_sync_super,
879 .write_super_lockfs = linvfs_freeze_fs,
880 .statfs = linvfs_statfs,
881 .remount_fs = linvfs_remount,
882 .show_options = linvfs_show_options,
883};
884
885STATIC struct quotactl_ops linvfs_qops = {
886 .get_xstate = linvfs_getxstate,
887 .set_xstate = linvfs_setxstate,
888 .get_xquota = linvfs_getxquota,
889 .set_xquota = linvfs_setxquota,
890};
891
892STATIC struct file_system_type xfs_fs_type = {
893 .owner = THIS_MODULE,
894 .name = "xfs",
895 .get_sb = linvfs_get_sb,
896 .kill_sb = kill_block_super,
897 .fs_flags = FS_REQUIRES_DEV,
898};
899
900
901STATIC int __init
902init_xfs_fs( void )
903{
904 int error;
905 struct sysinfo si;
906 static char message[] __initdata = KERN_INFO \
907 XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled\n";
908
909 printk(message);
910
911 si_meminfo(&si);
912 xfs_physmem = si.totalram;
913
914 ktrace_init(64);
915
Christoph Hellwig0829c362005-09-02 16:58:49 +1000916 error = linvfs_init_zones();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (error < 0)
Christoph Hellwig0829c362005-09-02 16:58:49 +1000918 goto undo_zones;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 error = pagebuf_init();
921 if (error < 0)
922 goto undo_pagebuf;
923
924 vn_init();
925 xfs_init();
926 uuid_init();
927 vfs_initquota();
928
929 error = register_filesystem(&xfs_fs_type);
930 if (error)
931 goto undo_register;
932 XFS_DM_INIT(&xfs_fs_type);
933 return 0;
934
935undo_register:
936 pagebuf_terminate();
937
938undo_pagebuf:
Christoph Hellwig0829c362005-09-02 16:58:49 +1000939 linvfs_destroy_zones();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Christoph Hellwig0829c362005-09-02 16:58:49 +1000941undo_zones:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 return error;
943}
944
945STATIC void __exit
946exit_xfs_fs( void )
947{
948 vfs_exitquota();
949 XFS_DM_EXIT(&xfs_fs_type);
950 unregister_filesystem(&xfs_fs_type);
951 xfs_cleanup();
952 pagebuf_terminate();
Christoph Hellwig0829c362005-09-02 16:58:49 +1000953 linvfs_destroy_zones();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 ktrace_uninit();
955}
956
957module_init(init_xfs_fs);
958module_exit(exit_xfs_fs);
959
960MODULE_AUTHOR("Silicon Graphics, Inc.");
961MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
962MODULE_LICENSE("GPL");