blob: 59989f6f83ef0b3a38a7dda25a74fc69ff04a9db [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_log.h"
21#include "xfs_clnt.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
24#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_dir.h"
27#include "xfs_dir2.h"
28#include "xfs_alloc.h"
29#include "xfs_dmapi.h"
30#include "xfs_quota.h"
31#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dir_sf.h"
36#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_dinode.h"
39#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110040#include "xfs_btree.h"
41#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_rtalloc.h"
44#include "xfs_error.h"
45#include "xfs_itable.h"
46#include "xfs_rw.h"
47#include "xfs_acl.h"
48#include "xfs_cap.h"
49#include "xfs_mac.h"
50#include "xfs_attr.h"
51#include "xfs_buf_item.h"
52#include "xfs_utils.h"
53#include "xfs_version.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55#include <linux/namei.h>
56#include <linux/init.h>
57#include <linux/mount.h>
Christoph Hellwig0829c362005-09-02 16:58:49 +100058#include <linux/mempool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/writeback.h>
Christoph Hellwig4df08c52005-09-05 08:34:18 +100060#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62STATIC struct quotactl_ops linvfs_qops;
63STATIC struct super_operations linvfs_sops;
Christoph Hellwig0829c362005-09-02 16:58:49 +100064STATIC kmem_zone_t *xfs_vnode_zone;
65STATIC kmem_zone_t *xfs_ioend_zone;
66mempool_t *xfs_ioend_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68STATIC struct xfs_mount_args *
69xfs_args_allocate(
70 struct super_block *sb)
71{
72 struct xfs_mount_args *args;
73
74 args = kmem_zalloc(sizeof(struct xfs_mount_args), KM_SLEEP);
75 args->logbufs = args->logbufsize = -1;
76 strncpy(args->fsname, sb->s_id, MAXNAMELEN);
77
78 /* Copy the already-parsed mount(2) flags we're interested in */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (sb->s_flags & MS_DIRSYNC)
80 args->flags |= XFSMNT_DIRSYNC;
81 if (sb->s_flags & MS_SYNCHRONOUS)
82 args->flags |= XFSMNT_WSYNC;
83
84 /* Default to 32 bit inodes on Linux all the time */
85 args->flags |= XFSMNT_32BITINODES;
86
87 return args;
88}
89
90__uint64_t
91xfs_max_file_offset(
92 unsigned int blockshift)
93{
94 unsigned int pagefactor = 1;
95 unsigned int bitshift = BITS_PER_LONG - 1;
96
97 /* Figure out maximum filesize, on Linux this can depend on
98 * the filesystem blocksize (on 32 bit platforms).
99 * __block_prepare_write does this in an [unsigned] long...
100 * page->index << (PAGE_CACHE_SHIFT - bbits)
101 * So, for page sized blocks (4K on 32 bit platforms),
102 * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
103 * (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
104 * but for smaller blocksizes it is less (bbits = log2 bsize).
105 * Note1: get_block_t takes a long (implicit cast from above)
106 * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
107 * can optionally convert the [unsigned] long from above into
108 * an [unsigned] long long.
109 */
110
111#if BITS_PER_LONG == 32
112# if defined(CONFIG_LBD)
113 ASSERT(sizeof(sector_t) == 8);
114 pagefactor = PAGE_CACHE_SIZE;
115 bitshift = BITS_PER_LONG;
116# else
117 pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
118# endif
119#endif
120
121 return (((__uint64_t)pagefactor) << bitshift) - 1;
122}
123
124STATIC __inline__ void
125xfs_set_inodeops(
126 struct inode *inode)
127{
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000128 switch (inode->i_mode & S_IFMT) {
129 case S_IFREG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 inode->i_op = &linvfs_file_inode_operations;
131 inode->i_fop = &linvfs_file_operations;
132 inode->i_mapping->a_ops = &linvfs_aops;
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000133 break;
134 case S_IFDIR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 inode->i_op = &linvfs_dir_inode_operations;
136 inode->i_fop = &linvfs_dir_operations;
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000137 break;
138 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 inode->i_op = &linvfs_symlink_inode_operations;
140 if (inode->i_blocks)
141 inode->i_mapping->a_ops = &linvfs_aops;
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000142 break;
143 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 inode->i_op = &linvfs_file_inode_operations;
145 init_special_inode(inode, inode->i_mode, inode->i_rdev);
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000146 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
148}
149
150STATIC __inline__ void
151xfs_revalidate_inode(
152 xfs_mount_t *mp,
153 vnode_t *vp,
154 xfs_inode_t *ip)
155{
156 struct inode *inode = LINVFS_GET_IP(vp);
157
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000158 inode->i_mode = ip->i_d.di_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 inode->i_nlink = ip->i_d.di_nlink;
160 inode->i_uid = ip->i_d.di_uid;
161 inode->i_gid = ip->i_d.di_gid;
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000162
163 switch (inode->i_mode & S_IFMT) {
164 case S_IFBLK:
165 case S_IFCHR:
166 inode->i_rdev =
167 MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
168 sysv_minor(ip->i_df.if_u2.if_rdev));
169 break;
170 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 inode->i_rdev = 0;
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000172 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000174
David Chinnere8c8b3a2005-11-02 10:33:05 +1100175 inode->i_blksize = xfs_preferred_iosize(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 inode->i_generation = ip->i_d.di_gen;
177 i_size_write(inode, ip->i_d.di_size);
178 inode->i_blocks =
179 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
180 inode->i_atime.tv_sec = ip->i_d.di_atime.t_sec;
181 inode->i_atime.tv_nsec = ip->i_d.di_atime.t_nsec;
182 inode->i_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
183 inode->i_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
184 inode->i_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
185 inode->i_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
186 if (ip->i_d.di_flags & XFS_DIFLAG_IMMUTABLE)
187 inode->i_flags |= S_IMMUTABLE;
188 else
189 inode->i_flags &= ~S_IMMUTABLE;
190 if (ip->i_d.di_flags & XFS_DIFLAG_APPEND)
191 inode->i_flags |= S_APPEND;
192 else
193 inode->i_flags &= ~S_APPEND;
194 if (ip->i_d.di_flags & XFS_DIFLAG_SYNC)
195 inode->i_flags |= S_SYNC;
196 else
197 inode->i_flags &= ~S_SYNC;
198 if (ip->i_d.di_flags & XFS_DIFLAG_NOATIME)
199 inode->i_flags |= S_NOATIME;
200 else
201 inode->i_flags &= ~S_NOATIME;
202 vp->v_flag &= ~VMODIFIED;
203}
204
205void
206xfs_initialize_vnode(
207 bhv_desc_t *bdp,
208 vnode_t *vp,
209 bhv_desc_t *inode_bhv,
210 int unlock)
211{
212 xfs_inode_t *ip = XFS_BHVTOI(inode_bhv);
213 struct inode *inode = LINVFS_GET_IP(vp);
214
215 if (!inode_bhv->bd_vobj) {
216 vp->v_vfsp = bhvtovfs(bdp);
217 bhv_desc_init(inode_bhv, ip, vp, &xfs_vnodeops);
218 bhv_insert(VN_BHV_HEAD(vp), inode_bhv);
219 }
220
221 /*
222 * We need to set the ops vectors, and unlock the inode, but if
223 * we have been called during the new inode create process, it is
224 * too early to fill in the Linux inode. We will get called a
225 * second time once the inode is properly set up, and then we can
226 * finish our work.
227 */
228 if (ip->i_d.di_mode != 0 && unlock && (inode->i_state & I_NEW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 xfs_revalidate_inode(XFS_BHVTOM(bdp), vp, ip);
230 xfs_set_inodeops(inode);
231
232 ip->i_flags &= ~XFS_INEW;
233 barrier();
234
235 unlock_new_inode(inode);
236 }
237}
238
239int
240xfs_blkdev_get(
241 xfs_mount_t *mp,
242 const char *name,
243 struct block_device **bdevp)
244{
245 int error = 0;
246
247 *bdevp = open_bdev_excl(name, 0, mp);
248 if (IS_ERR(*bdevp)) {
249 error = PTR_ERR(*bdevp);
250 printk("XFS: Invalid device [%s], error=%d\n", name, error);
251 }
252
253 return -error;
254}
255
256void
257xfs_blkdev_put(
258 struct block_device *bdev)
259{
260 if (bdev)
261 close_bdev_excl(bdev);
262}
263
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100264/*
265 * Try to write out the superblock using barriers.
266 */
267STATIC int
268xfs_barrier_test(
269 xfs_mount_t *mp)
270{
271 xfs_buf_t *sbp = xfs_getsb(mp, 0);
272 int error;
273
274 XFS_BUF_UNDONE(sbp);
275 XFS_BUF_UNREAD(sbp);
276 XFS_BUF_UNDELAYWRITE(sbp);
277 XFS_BUF_WRITE(sbp);
278 XFS_BUF_UNASYNC(sbp);
279 XFS_BUF_ORDERED(sbp);
280
281 xfsbdstrat(mp, sbp);
282 error = xfs_iowait(sbp);
283
284 /*
285 * Clear all the flags we set and possible error state in the
286 * buffer. We only did the write to try out whether barriers
287 * worked and shouldn't leave any traces in the superblock
288 * buffer.
289 */
290 XFS_BUF_DONE(sbp);
291 XFS_BUF_ERROR(sbp, 0);
292 XFS_BUF_UNORDERED(sbp);
293
294 xfs_buf_relse(sbp);
295 return error;
296}
297
298void
299xfs_mountfs_check_barriers(xfs_mount_t *mp)
300{
301 int error;
302
303 if (mp->m_logdev_targp != mp->m_ddev_targp) {
304 xfs_fs_cmn_err(CE_NOTE, mp,
305 "Disabling barriers, not supported with external log device");
306 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100307 return;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100308 }
309
Nathan Scottce8e9222006-01-11 15:39:08 +1100310 if (mp->m_ddev_targp->bt_bdev->bd_disk->queue->ordered ==
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100311 QUEUE_ORDERED_NONE) {
312 xfs_fs_cmn_err(CE_NOTE, mp,
313 "Disabling barriers, not supported by the underlying device");
314 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100315 return;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100316 }
317
318 error = xfs_barrier_test(mp);
319 if (error) {
320 xfs_fs_cmn_err(CE_NOTE, mp,
321 "Disabling barriers, trial barrier write failed");
322 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100323 return;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100324 }
325}
326
327void
328xfs_blkdev_issue_flush(
329 xfs_buftarg_t *buftarg)
330{
Nathan Scottce8e9222006-01-11 15:39:08 +1100331 blkdev_issue_flush(buftarg->bt_bdev, NULL);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100332}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334STATIC struct inode *
335linvfs_alloc_inode(
336 struct super_block *sb)
337{
338 vnode_t *vp;
339
Christoph Hellwig0829c362005-09-02 16:58:49 +1000340 vp = kmem_cache_alloc(xfs_vnode_zone, kmem_flags_convert(KM_SLEEP));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (!vp)
342 return NULL;
343 return LINVFS_GET_IP(vp);
344}
345
346STATIC void
347linvfs_destroy_inode(
348 struct inode *inode)
349{
Christoph Hellwig0829c362005-09-02 16:58:49 +1000350 kmem_zone_free(xfs_vnode_zone, LINVFS_GET_VP(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
353STATIC void
Christoph Hellwig0829c362005-09-02 16:58:49 +1000354linvfs_inode_init_once(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 void *data,
356 kmem_cache_t *cachep,
357 unsigned long flags)
358{
359 vnode_t *vp = (vnode_t *)data;
360
361 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
362 SLAB_CTOR_CONSTRUCTOR)
363 inode_init_once(LINVFS_GET_IP(vp));
364}
365
366STATIC int
Christoph Hellwig0829c362005-09-02 16:58:49 +1000367linvfs_init_zones(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Christoph Hellwig0829c362005-09-02 16:58:49 +1000369 xfs_vnode_zone = kmem_cache_create("xfs_vnode",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 sizeof(vnode_t), 0, SLAB_RECLAIM_ACCOUNT,
Christoph Hellwig0829c362005-09-02 16:58:49 +1000371 linvfs_inode_init_once, NULL);
372 if (!xfs_vnode_zone)
373 goto out;
374
375 xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
376 if (!xfs_ioend_zone)
377 goto out_destroy_vnode_zone;
378
379 xfs_ioend_pool = mempool_create(4 * MAX_BUF_PER_PAGE,
380 mempool_alloc_slab, mempool_free_slab,
381 xfs_ioend_zone);
382 if (!xfs_ioend_pool)
383 goto out_free_ioend_zone;
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return 0;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000386
387
388 out_free_ioend_zone:
389 kmem_zone_destroy(xfs_ioend_zone);
390 out_destroy_vnode_zone:
391 kmem_zone_destroy(xfs_vnode_zone);
392 out:
393 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396STATIC void
Christoph Hellwig0829c362005-09-02 16:58:49 +1000397linvfs_destroy_zones(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Christoph Hellwig0829c362005-09-02 16:58:49 +1000399 mempool_destroy(xfs_ioend_pool);
400 kmem_zone_destroy(xfs_vnode_zone);
401 kmem_zone_destroy(xfs_ioend_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404/*
405 * Attempt to flush the inode, this will actually fail
406 * if the inode is pinned, but we dirty the inode again
407 * at the point when it is unpinned after a log write,
408 * since this is when the inode itself becomes flushable.
409 */
410STATIC int
411linvfs_write_inode(
412 struct inode *inode,
413 int sync)
414{
415 vnode_t *vp = LINVFS_GET_VP(inode);
416 int error = 0, flags = FLUSH_INODE;
417
418 if (vp) {
419 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
420 if (sync)
421 flags |= FLUSH_SYNC;
422 VOP_IFLUSH(vp, flags, error);
423 if (error == EAGAIN) {
424 if (sync)
425 VOP_IFLUSH(vp, flags | FLUSH_LOG, error);
426 else
427 error = 0;
428 }
429 }
430
431 return -error;
432}
433
434STATIC void
435linvfs_clear_inode(
436 struct inode *inode)
437{
438 vnode_t *vp = LINVFS_GET_VP(inode);
Christoph Hellwig56d433e2005-09-05 08:23:54 +1000439 int error, cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Christoph Hellwig56d433e2005-09-05 08:23:54 +1000441 vn_trace_entry(vp, "clear_inode", (inst_t *)__return_address);
442
Christoph Hellwig56d433e2005-09-05 08:23:54 +1000443 XFS_STATS_INC(vn_rele);
444 XFS_STATS_INC(vn_remove);
445 XFS_STATS_INC(vn_reclaim);
446 XFS_STATS_DEC(vn_active);
447
Christoph Hellwig02ba71d2005-09-05 08:28:02 +1000448 /*
449 * This can happen because xfs_iget_core calls xfs_idestroy if we
450 * find an inode with di_mode == 0 but without IGET_CREATE set.
451 */
452 if (vp->v_fbhv)
453 VOP_INACTIVE(vp, NULL, cache);
Christoph Hellwig56d433e2005-09-05 08:23:54 +1000454
455 VN_LOCK(vp);
456 vp->v_flag &= ~VMODIFIED;
457 VN_UNLOCK(vp, 0);
458
Felix Blyakher0c147f92005-09-05 08:24:49 +1000459 if (vp->v_fbhv) {
460 VOP_RECLAIM(vp, error);
461 if (error)
462 panic("vn_purge: cannot reclaim");
463 }
Christoph Hellwig56d433e2005-09-05 08:23:54 +1000464
465 ASSERT(vp->v_fbhv == NULL);
466
467#ifdef XFS_VNODE_TRACE
468 ktrace_free(vp->v_trace);
469#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472/*
473 * Enqueue a work item to be picked up by the vfs xfssyncd thread.
474 * Doing this has two advantages:
475 * - It saves on stack space, which is tight in certain situations
476 * - It can be used (with care) as a mechanism to avoid deadlocks.
477 * Flushing while allocating in a full filesystem requires both.
478 */
479STATIC void
480xfs_syncd_queue_work(
481 struct vfs *vfs,
482 void *data,
483 void (*syncer)(vfs_t *, void *))
484{
485 vfs_sync_work_t *work;
486
487 work = kmem_alloc(sizeof(struct vfs_sync_work), KM_SLEEP);
488 INIT_LIST_HEAD(&work->w_list);
489 work->w_syncer = syncer;
490 work->w_data = data;
491 work->w_vfs = vfs;
492 spin_lock(&vfs->vfs_sync_lock);
493 list_add_tail(&work->w_list, &vfs->vfs_sync_list);
494 spin_unlock(&vfs->vfs_sync_lock);
495 wake_up_process(vfs->vfs_sync_task);
496}
497
498/*
499 * Flush delayed allocate data, attempting to free up reserved space
500 * from existing allocations. At this point a new allocation attempt
501 * has failed with ENOSPC and we are in the process of scratching our
502 * heads, looking about for more room...
503 */
504STATIC void
505xfs_flush_inode_work(
506 vfs_t *vfs,
507 void *inode)
508{
509 filemap_flush(((struct inode *)inode)->i_mapping);
510 iput((struct inode *)inode);
511}
512
513void
514xfs_flush_inode(
515 xfs_inode_t *ip)
516{
517 struct inode *inode = LINVFS_GET_IP(XFS_ITOV(ip));
518 struct vfs *vfs = XFS_MTOVFS(ip->i_mount);
519
520 igrab(inode);
521 xfs_syncd_queue_work(vfs, inode, xfs_flush_inode_work);
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -0700522 delay(msecs_to_jiffies(500));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
525/*
526 * This is the "bigger hammer" version of xfs_flush_inode_work...
527 * (IOW, "If at first you don't succeed, use a Bigger Hammer").
528 */
529STATIC void
530xfs_flush_device_work(
531 vfs_t *vfs,
532 void *inode)
533{
534 sync_blockdev(vfs->vfs_super->s_bdev);
535 iput((struct inode *)inode);
536}
537
538void
539xfs_flush_device(
540 xfs_inode_t *ip)
541{
542 struct inode *inode = LINVFS_GET_IP(XFS_ITOV(ip));
543 struct vfs *vfs = XFS_MTOVFS(ip->i_mount);
544
545 igrab(inode);
546 xfs_syncd_queue_work(vfs, inode, xfs_flush_device_work);
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -0700547 delay(msecs_to_jiffies(500));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 xfs_log_force(ip->i_mount, (xfs_lsn_t)0, XFS_LOG_FORCE|XFS_LOG_SYNC);
549}
550
551#define SYNCD_FLAGS (SYNC_FSDATA|SYNC_BDFLUSH|SYNC_ATTR)
552STATIC void
553vfs_sync_worker(
554 vfs_t *vfsp,
555 void *unused)
556{
557 int error;
558
559 if (!(vfsp->vfs_flag & VFS_RDONLY))
560 VFS_SYNC(vfsp, SYNCD_FLAGS, NULL, error);
561 vfsp->vfs_sync_seq++;
562 wmb();
563 wake_up(&vfsp->vfs_wait_single_sync_task);
564}
565
566STATIC int
567xfssyncd(
568 void *arg)
569{
570 long timeleft;
571 vfs_t *vfsp = (vfs_t *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 struct vfs_sync_work *work, *n;
Christoph Hellwig4df08c52005-09-05 08:34:18 +1000573 LIST_HEAD (tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -0700575 timeleft = xfs_syncd_centisecs * msecs_to_jiffies(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 for (;;) {
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -0700577 timeleft = schedule_timeout_interruptible(timeleft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 /* swsusp */
Christoph Lameter3e1d1d22005-06-24 23:13:50 -0700579 try_to_freeze();
Yingping Lu71df0992006-01-11 21:02:29 +1100580 if (kthread_should_stop() && list_empty(&vfsp->vfs_sync_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 break;
582
583 spin_lock(&vfsp->vfs_sync_lock);
584 /*
585 * We can get woken by laptop mode, to do a sync -
586 * that's the (only!) case where the list would be
587 * empty with time remaining.
588 */
589 if (!timeleft || list_empty(&vfsp->vfs_sync_list)) {
590 if (!timeleft)
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -0700591 timeleft = xfs_syncd_centisecs *
592 msecs_to_jiffies(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 INIT_LIST_HEAD(&vfsp->vfs_sync_work.w_list);
594 list_add_tail(&vfsp->vfs_sync_work.w_list,
595 &vfsp->vfs_sync_list);
596 }
597 list_for_each_entry_safe(work, n, &vfsp->vfs_sync_list, w_list)
598 list_move(&work->w_list, &tmp);
599 spin_unlock(&vfsp->vfs_sync_lock);
600
601 list_for_each_entry_safe(work, n, &tmp, w_list) {
602 (*work->w_syncer)(vfsp, work->w_data);
603 list_del(&work->w_list);
604 if (work == &vfsp->vfs_sync_work)
605 continue;
606 kmem_free(work, sizeof(struct vfs_sync_work));
607 }
608 }
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return 0;
611}
612
613STATIC int
614linvfs_start_syncd(
615 vfs_t *vfsp)
616{
Christoph Hellwig4df08c52005-09-05 08:34:18 +1000617 vfsp->vfs_sync_work.w_syncer = vfs_sync_worker;
618 vfsp->vfs_sync_work.w_vfs = vfsp;
619 vfsp->vfs_sync_task = kthread_run(xfssyncd, vfsp, "xfssyncd");
620 if (IS_ERR(vfsp->vfs_sync_task))
621 return -PTR_ERR(vfsp->vfs_sync_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return 0;
623}
624
625STATIC void
626linvfs_stop_syncd(
627 vfs_t *vfsp)
628{
Christoph Hellwig4df08c52005-09-05 08:34:18 +1000629 kthread_stop(vfsp->vfs_sync_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
632STATIC void
633linvfs_put_super(
634 struct super_block *sb)
635{
636 vfs_t *vfsp = LINVFS_GET_VFS(sb);
637 int error;
638
639 linvfs_stop_syncd(vfsp);
640 VFS_SYNC(vfsp, SYNC_ATTR|SYNC_DELWRI, NULL, error);
641 if (!error)
642 VFS_UNMOUNT(vfsp, 0, NULL, error);
643 if (error) {
644 printk("XFS unmount got error %d\n", error);
645 printk("%s: vfsp/0x%p left dangling!\n", __FUNCTION__, vfsp);
646 return;
647 }
648
649 vfs_deallocate(vfsp);
650}
651
652STATIC void
653linvfs_write_super(
654 struct super_block *sb)
655{
656 vfs_t *vfsp = LINVFS_GET_VFS(sb);
657 int error;
658
659 if (sb->s_flags & MS_RDONLY) {
660 sb->s_dirt = 0; /* paranoia */
661 return;
662 }
663 /* Push the log and superblock a little */
664 VFS_SYNC(vfsp, SYNC_FSDATA, NULL, error);
665 sb->s_dirt = 0;
666}
667
668STATIC int
669linvfs_sync_super(
670 struct super_block *sb,
671 int wait)
672{
673 vfs_t *vfsp = LINVFS_GET_VFS(sb);
674 int error;
675 int flags = SYNC_FSDATA;
676
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000677 if (unlikely(sb->s_frozen == SB_FREEZE_WRITE))
678 flags = SYNC_QUIESCE;
679 else
680 flags = SYNC_FSDATA | (wait ? SYNC_WAIT : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 VFS_SYNC(vfsp, flags, NULL, error);
683 sb->s_dirt = 0;
684
685 if (unlikely(laptop_mode)) {
686 int prev_sync_seq = vfsp->vfs_sync_seq;
687
688 /*
689 * The disk must be active because we're syncing.
690 * We schedule xfssyncd now (now that the disk is
691 * active) instead of later (when it might not be).
692 */
693 wake_up_process(vfsp->vfs_sync_task);
694 /*
695 * We have to wait for the sync iteration to complete.
696 * If we don't, the disk activity caused by the sync
697 * will come after the sync is completed, and that
698 * triggers another sync from laptop mode.
699 */
700 wait_event(vfsp->vfs_wait_single_sync_task,
701 vfsp->vfs_sync_seq != prev_sync_seq);
702 }
703
704 return -error;
705}
706
707STATIC int
708linvfs_statfs(
709 struct super_block *sb,
710 struct kstatfs *statp)
711{
712 vfs_t *vfsp = LINVFS_GET_VFS(sb);
713 int error;
714
715 VFS_STATVFS(vfsp, statp, NULL, error);
716 return -error;
717}
718
719STATIC int
720linvfs_remount(
721 struct super_block *sb,
722 int *flags,
723 char *options)
724{
725 vfs_t *vfsp = LINVFS_GET_VFS(sb);
726 struct xfs_mount_args *args = xfs_args_allocate(sb);
727 int error;
728
729 VFS_PARSEARGS(vfsp, options, args, 1, error);
730 if (!error)
731 VFS_MNTUPDATE(vfsp, flags, args, error);
732 kmem_free(args, sizeof(*args));
733 return -error;
734}
735
736STATIC void
737linvfs_freeze_fs(
738 struct super_block *sb)
739{
740 VFS_FREEZE(LINVFS_GET_VFS(sb));
741}
742
743STATIC int
744linvfs_show_options(
745 struct seq_file *m,
746 struct vfsmount *mnt)
747{
748 struct vfs *vfsp = LINVFS_GET_VFS(mnt->mnt_sb);
749 int error;
750
751 VFS_SHOWARGS(vfsp, m, error);
752 return error;
753}
754
755STATIC int
Nathan Scottee348072005-11-02 10:32:38 +1100756linvfs_quotasync(
757 struct super_block *sb,
758 int type)
759{
760 struct vfs *vfsp = LINVFS_GET_VFS(sb);
761 int error;
762
763 VFS_QUOTACTL(vfsp, Q_XQUOTASYNC, 0, (caddr_t)NULL, error);
764 return -error;
765}
766
767STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768linvfs_getxstate(
769 struct super_block *sb,
770 struct fs_quota_stat *fqs)
771{
772 struct vfs *vfsp = LINVFS_GET_VFS(sb);
773 int error;
774
775 VFS_QUOTACTL(vfsp, Q_XGETQSTAT, 0, (caddr_t)fqs, error);
776 return -error;
777}
778
779STATIC int
780linvfs_setxstate(
781 struct super_block *sb,
782 unsigned int flags,
783 int op)
784{
785 struct vfs *vfsp = LINVFS_GET_VFS(sb);
786 int error;
787
788 VFS_QUOTACTL(vfsp, op, 0, (caddr_t)&flags, error);
789 return -error;
790}
791
792STATIC int
793linvfs_getxquota(
794 struct super_block *sb,
795 int type,
796 qid_t id,
797 struct fs_disk_quota *fdq)
798{
799 struct vfs *vfsp = LINVFS_GET_VFS(sb);
800 int error, getmode;
801
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000802 getmode = (type == USRQUOTA) ? Q_XGETQUOTA :
803 ((type == GRPQUOTA) ? Q_XGETGQUOTA : Q_XGETPQUOTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 VFS_QUOTACTL(vfsp, getmode, id, (caddr_t)fdq, error);
805 return -error;
806}
807
808STATIC int
809linvfs_setxquota(
810 struct super_block *sb,
811 int type,
812 qid_t id,
813 struct fs_disk_quota *fdq)
814{
815 struct vfs *vfsp = LINVFS_GET_VFS(sb);
816 int error, setmode;
817
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000818 setmode = (type == USRQUOTA) ? Q_XSETQLIM :
819 ((type == GRPQUOTA) ? Q_XSETGQLIM : Q_XSETPQLIM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 VFS_QUOTACTL(vfsp, setmode, id, (caddr_t)fdq, error);
821 return -error;
822}
823
824STATIC int
825linvfs_fill_super(
826 struct super_block *sb,
827 void *data,
828 int silent)
829{
830 vnode_t *rootvp;
831 struct vfs *vfsp = vfs_allocate();
832 struct xfs_mount_args *args = xfs_args_allocate(sb);
833 struct kstatfs statvfs;
834 int error, error2;
835
836 vfsp->vfs_super = sb;
837 LINVFS_SET_VFS(sb, vfsp);
838 if (sb->s_flags & MS_RDONLY)
839 vfsp->vfs_flag |= VFS_RDONLY;
840 bhv_insert_all_vfsops(vfsp);
841
842 VFS_PARSEARGS(vfsp, (char *)data, args, 0, error);
843 if (error) {
844 bhv_remove_all_vfsops(vfsp, 1);
845 goto fail_vfsop;
846 }
847
848 sb_min_blocksize(sb, BBSIZE);
849#ifdef CONFIG_XFS_EXPORT
850 sb->s_export_op = &linvfs_export_ops;
851#endif
852 sb->s_qcop = &linvfs_qops;
853 sb->s_op = &linvfs_sops;
854
855 VFS_MOUNT(vfsp, args, NULL, error);
856 if (error) {
857 bhv_remove_all_vfsops(vfsp, 1);
858 goto fail_vfsop;
859 }
860
861 VFS_STATVFS(vfsp, &statvfs, NULL, error);
862 if (error)
863 goto fail_unmount;
864
865 sb->s_dirt = 1;
866 sb->s_magic = statvfs.f_type;
867 sb->s_blocksize = statvfs.f_bsize;
868 sb->s_blocksize_bits = ffs(statvfs.f_bsize) - 1;
869 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
870 sb->s_time_gran = 1;
871 set_posix_acl_flag(sb);
872
873 VFS_ROOT(vfsp, &rootvp, error);
874 if (error)
875 goto fail_unmount;
876
877 sb->s_root = d_alloc_root(LINVFS_GET_IP(rootvp));
878 if (!sb->s_root) {
879 error = ENOMEM;
880 goto fail_vnrele;
881 }
882 if (is_bad_inode(sb->s_root->d_inode)) {
883 error = EINVAL;
884 goto fail_vnrele;
885 }
886 if ((error = linvfs_start_syncd(vfsp)))
887 goto fail_vnrele;
888 vn_trace_exit(rootvp, __FUNCTION__, (inst_t *)__return_address);
889
890 kmem_free(args, sizeof(*args));
891 return 0;
892
893fail_vnrele:
894 if (sb->s_root) {
895 dput(sb->s_root);
896 sb->s_root = NULL;
897 } else {
898 VN_RELE(rootvp);
899 }
900
901fail_unmount:
902 VFS_UNMOUNT(vfsp, 0, NULL, error2);
903
904fail_vfsop:
905 vfs_deallocate(vfsp);
906 kmem_free(args, sizeof(*args));
907 return -error;
908}
909
910STATIC struct super_block *
911linvfs_get_sb(
912 struct file_system_type *fs_type,
913 int flags,
914 const char *dev_name,
915 void *data)
916{
917 return get_sb_bdev(fs_type, flags, dev_name, data, linvfs_fill_super);
918}
919
920STATIC struct super_operations linvfs_sops = {
921 .alloc_inode = linvfs_alloc_inode,
922 .destroy_inode = linvfs_destroy_inode,
923 .write_inode = linvfs_write_inode,
924 .clear_inode = linvfs_clear_inode,
925 .put_super = linvfs_put_super,
926 .write_super = linvfs_write_super,
927 .sync_fs = linvfs_sync_super,
928 .write_super_lockfs = linvfs_freeze_fs,
929 .statfs = linvfs_statfs,
930 .remount_fs = linvfs_remount,
931 .show_options = linvfs_show_options,
932};
933
934STATIC struct quotactl_ops linvfs_qops = {
Nathan Scottee348072005-11-02 10:32:38 +1100935 .quota_sync = linvfs_quotasync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 .get_xstate = linvfs_getxstate,
937 .set_xstate = linvfs_setxstate,
938 .get_xquota = linvfs_getxquota,
939 .set_xquota = linvfs_setxquota,
940};
941
942STATIC struct file_system_type xfs_fs_type = {
943 .owner = THIS_MODULE,
944 .name = "xfs",
945 .get_sb = linvfs_get_sb,
946 .kill_sb = kill_block_super,
947 .fs_flags = FS_REQUIRES_DEV,
948};
949
950
951STATIC int __init
952init_xfs_fs( void )
953{
954 int error;
955 struct sysinfo si;
956 static char message[] __initdata = KERN_INFO \
957 XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled\n";
958
959 printk(message);
960
961 si_meminfo(&si);
962 xfs_physmem = si.totalram;
963
964 ktrace_init(64);
965
Christoph Hellwig0829c362005-09-02 16:58:49 +1000966 error = linvfs_init_zones();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (error < 0)
Christoph Hellwig0829c362005-09-02 16:58:49 +1000968 goto undo_zones;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Nathan Scottce8e9222006-01-11 15:39:08 +1100970 error = xfs_buf_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 if (error < 0)
Nathan Scottce8e9222006-01-11 15:39:08 +1100972 goto undo_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 vn_init();
975 xfs_init();
976 uuid_init();
977 vfs_initquota();
978
979 error = register_filesystem(&xfs_fs_type);
980 if (error)
981 goto undo_register;
982 XFS_DM_INIT(&xfs_fs_type);
983 return 0;
984
985undo_register:
Nathan Scottce8e9222006-01-11 15:39:08 +1100986 xfs_buf_terminate();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Nathan Scottce8e9222006-01-11 15:39:08 +1100988undo_buffers:
Christoph Hellwig0829c362005-09-02 16:58:49 +1000989 linvfs_destroy_zones();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Christoph Hellwig0829c362005-09-02 16:58:49 +1000991undo_zones:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 return error;
993}
994
995STATIC void __exit
996exit_xfs_fs( void )
997{
998 vfs_exitquota();
999 XFS_DM_EXIT(&xfs_fs_type);
1000 unregister_filesystem(&xfs_fs_type);
1001 xfs_cleanup();
Nathan Scottce8e9222006-01-11 15:39:08 +11001002 xfs_buf_terminate();
Christoph Hellwig0829c362005-09-02 16:58:49 +10001003 linvfs_destroy_zones();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 ktrace_uninit();
1005}
1006
1007module_init(init_xfs_fs);
1008module_exit(exit_xfs_fs);
1009
1010MODULE_AUTHOR("Silicon Graphics, Inc.");
1011MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
1012MODULE_LICENSE("GPL");