blob: e63b2d012f0c96642a61014d852f2efb26fc1b41 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scottb83bd132006-06-09 16:48:30 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * 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 */
18#ifndef __XFS_VFS_H__
19#define __XFS_VFS_H__
20
21#include <linux/vfs.h>
22#include "xfs_fs.h"
23
Nathan Scottb83bd132006-06-09 16:48:30 +100024struct bhv_vfs;
Christoph Hellwig0a74cd12007-08-29 11:53:12 +100025struct inode;
Nathan Scott8285fb52006-06-09 17:07:12 +100026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027struct fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028struct cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029struct seq_file;
30struct super_block;
Christoph Hellwig739bfb22007-08-29 10:58:01 +100031struct xfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032struct xfs_mount_args;
33
Nathan Scott8285fb52006-06-09 17:07:12 +100034typedef struct kstatfs bhv_statvfs_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Nathan Scottb83bd132006-06-09 16:48:30 +100036typedef struct bhv_vfs_sync_work {
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 struct list_head w_list;
Nathan Scottb83bd132006-06-09 16:48:30 +100038 struct bhv_vfs *w_vfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 void *w_data; /* syncer routine argument */
Nathan Scottb83bd132006-06-09 16:48:30 +100040 void (*w_syncer)(struct bhv_vfs *, void *);
41} bhv_vfs_sync_work_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Nathan Scottb83bd132006-06-09 16:48:30 +100043typedef struct bhv_vfs {
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 u_int vfs_flag; /* flags */
45 xfs_fsid_t vfs_fsid; /* file system ID */
46 xfs_fsid_t *vfs_altfsid; /* An ID fixed for life of FS */
47 bhv_head_t vfs_bh; /* head of vfs behavior chain */
48 struct super_block *vfs_super; /* generic superblock pointer */
49 struct task_struct *vfs_sync_task; /* generalised sync thread */
Nathan Scottb83bd132006-06-09 16:48:30 +100050 bhv_vfs_sync_work_t vfs_sync_work; /* work item for VFS_SYNC */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 struct list_head vfs_sync_list; /* sync thread work item list */
52 spinlock_t vfs_sync_lock; /* work item list lock */
Nathan Scottb83bd132006-06-09 16:48:30 +100053 int vfs_sync_seq; /* sync thread generation no. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 wait_queue_head_t vfs_wait_single_sync_task;
Nathan Scottb83bd132006-06-09 16:48:30 +100055} bhv_vfs_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Nathan Scottb83bd132006-06-09 16:48:30 +100057#define bhvtovfs(bdp) ( (struct bhv_vfs *)BHV_VOBJ(bdp) )
58#define bhvtovfsops(bdp) ( (struct bhv_vfsops *)BHV_OPS(bdp) )
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define VFS_BHVHEAD(vfs) ( &(vfs)->vfs_bh )
60#define VFS_REMOVEBHV(vfs, bdp) ( bhv_remove(VFS_BHVHEAD(vfs), bdp) )
61
62#define VFS_POSITION_BASE BHV_POSITION_BASE /* chain bottom */
63#define VFS_POSITION_TOP BHV_POSITION_TOP /* chain top */
64#define VFS_POSITION_INVALID BHV_POSITION_INVALID /* invalid pos. num */
65
66typedef enum {
67 VFS_BHV_UNKNOWN, /* not specified */
68 VFS_BHV_XFS, /* xfs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 VFS_BHV_QM, /* quota manager */
70 VFS_BHV_IO, /* IO path */
71 VFS_BHV_END /* housekeeping end-of-range */
Nathan Scottb83bd132006-06-09 16:48:30 +100072} bhv_vfs_type_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74#define VFS_POSITION_XFS (BHV_POSITION_BASE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define VFS_POSITION_QM (VFS_POSITION_BASE+20)
76#define VFS_POSITION_IO (VFS_POSITION_BASE+30)
77
78#define VFS_RDONLY 0x0001 /* read-only vfs */
79#define VFS_GRPID 0x0002 /* group-ID assigned from directory */
80#define VFS_DMI 0x0004 /* filesystem has the DMI enabled */
Nathan Scott29b6d222006-09-28 10:59:06 +100081/* ---- VFS_UMOUNT ---- 0x0008 -- unneeded, fixed via kthread APIs */
Nathan Scottb83bd132006-06-09 16:48:30 +100082#define VFS_32BITINODES 0x0010 /* do not use inums above 32 bits */
83#define VFS_END 0x0010 /* max flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85#define SYNC_ATTR 0x0001 /* sync attributes */
86#define SYNC_CLOSE 0x0002 /* close file system down */
87#define SYNC_DELWRI 0x0004 /* look at delayed writes */
88#define SYNC_WAIT 0x0008 /* wait for i/o to complete */
89#define SYNC_BDFLUSH 0x0010 /* BDFLUSH is calling -- don't block */
90#define SYNC_FSDATA 0x0020 /* flush fs data (e.g. superblocks) */
91#define SYNC_REFCACHE 0x0040 /* prune some of the nfs ref cache */
92#define SYNC_REMOUNT 0x0080 /* remount readonly, no dummy LRs */
David Chinner3c0dc772007-02-10 18:37:22 +110093#define SYNC_IOWAIT 0x0100 /* wait for all I/O to complete */
David Chinner92821e22007-05-24 15:26:31 +100094#define SYNC_SUPER 0x0200 /* flush superblock to disk */
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
David Chinner516b2e72007-06-18 16:50:48 +100096/*
97 * When remounting a filesystem read-only or freezing the filesystem,
98 * we have two phases to execute. This first phase is syncing the data
99 * before we quiesce the fielsystem, and the second is flushing all the
100 * inodes out after we've waited for all the transactions created by
101 * the first phase to complete. The second phase uses SYNC_INODE_QUIESCE
102 * to ensure that the inodes are written to their location on disk
103 * rather than just existing in transactions in the log. This means
104 * after a quiesce there is no log replay required to write the inodes
105 * to disk (this is the main difference between a sync and a quiesce).
106 */
107#define SYNC_DATA_QUIESCE (SYNC_DELWRI|SYNC_FSDATA|SYNC_WAIT|SYNC_IOWAIT)
108#define SYNC_INODE_QUIESCE (SYNC_REMOUNT|SYNC_ATTR|SYNC_WAIT)
109
Nathan Scott7d04a332006-06-09 14:58:38 +1000110#define SHUTDOWN_META_IO_ERROR 0x0001 /* write attempt to metadata failed */
111#define SHUTDOWN_LOG_IO_ERROR 0x0002 /* write attempt to the log failed */
112#define SHUTDOWN_FORCE_UMOUNT 0x0004 /* shutdown from a forced unmount */
113#define SHUTDOWN_CORRUPT_INCORE 0x0008 /* corrupt in-memory data structures */
114#define SHUTDOWN_REMOTE_REQ 0x0010 /* shutdown came from remote cell */
115#define SHUTDOWN_DEVICE_REQ 0x0020 /* failed all paths to the device */
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117typedef int (*vfs_mount_t)(bhv_desc_t *,
118 struct xfs_mount_args *, struct cred *);
119typedef int (*vfs_parseargs_t)(bhv_desc_t *, char *,
120 struct xfs_mount_args *, int);
121typedef int (*vfs_showargs_t)(bhv_desc_t *, struct seq_file *);
122typedef int (*vfs_unmount_t)(bhv_desc_t *, int, struct cred *);
123typedef int (*vfs_mntupdate_t)(bhv_desc_t *, int *,
124 struct xfs_mount_args *);
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000125typedef int (*vfs_root_t)(bhv_desc_t *, struct inode **);
Nathan Scott8285fb52006-06-09 17:07:12 +1000126typedef int (*vfs_statvfs_t)(bhv_desc_t *, bhv_statvfs_t *,
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000127 struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128typedef int (*vfs_sync_t)(bhv_desc_t *, int, struct cred *);
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000129typedef int (*vfs_vget_t)(bhv_desc_t *, struct inode **, struct fid *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130typedef void (*vfs_init_vnode_t)(bhv_desc_t *,
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000131 struct inode *, struct xfs_inode *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132typedef void (*vfs_force_shutdown_t)(bhv_desc_t *, int, char *, int);
133typedef void (*vfs_freeze_t)(bhv_desc_t *);
134
Nathan Scottb83bd132006-06-09 16:48:30 +1000135typedef struct bhv_vfsops {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 bhv_position_t vf_position; /* behavior chain position */
137 vfs_mount_t vfs_mount; /* mount file system */
138 vfs_parseargs_t vfs_parseargs; /* parse mount options */
139 vfs_showargs_t vfs_showargs; /* unparse mount options */
140 vfs_unmount_t vfs_unmount; /* unmount file system */
141 vfs_mntupdate_t vfs_mntupdate; /* update file system options */
142 vfs_root_t vfs_root; /* get root vnode */
143 vfs_statvfs_t vfs_statvfs; /* file system statistics */
144 vfs_sync_t vfs_sync; /* flush files */
145 vfs_vget_t vfs_vget; /* get vnode from fid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 vfs_init_vnode_t vfs_init_vnode; /* initialize a new vnode */
147 vfs_force_shutdown_t vfs_force_shutdown; /* crash and burn */
148 vfs_freeze_t vfs_freeze; /* freeze fs for snapshot */
Nathan Scottb83bd132006-06-09 16:48:30 +1000149} bhv_vfsops_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151/*
Nathan Scott67fcaa72006-06-09 17:00:52 +1000152 * Virtual filesystem operations, operating from head bhv.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 */
Nathan Scott67fcaa72006-06-09 17:00:52 +1000154#define VFSHEAD(v) ((v)->vfs_bh.bh_first)
155#define bhv_vfs_mount(v, ma,cr) vfs_mount(VFSHEAD(v), ma,cr)
156#define bhv_vfs_parseargs(v, o,ma,f) vfs_parseargs(VFSHEAD(v), o,ma,f)
157#define bhv_vfs_showargs(v, m) vfs_showargs(VFSHEAD(v), m)
158#define bhv_vfs_unmount(v, f,cr) vfs_unmount(VFSHEAD(v), f,cr)
159#define bhv_vfs_mntupdate(v, fl,args) vfs_mntupdate(VFSHEAD(v), fl,args)
160#define bhv_vfs_root(v, vpp) vfs_root(VFSHEAD(v), vpp)
161#define bhv_vfs_statvfs(v, sp,vp) vfs_statvfs(VFSHEAD(v), sp,vp)
162#define bhv_vfs_sync(v, flag,cr) vfs_sync(VFSHEAD(v), flag,cr)
163#define bhv_vfs_vget(v, vpp,fidp) vfs_vget(VFSHEAD(v), vpp,fidp)
Nathan Scott67fcaa72006-06-09 17:00:52 +1000164#define bhv_vfs_init_vnode(v, vp,b,ul) vfs_init_vnode(VFSHEAD(v), vp,b,ul)
165#define bhv_vfs_force_shutdown(v,u,f,l) vfs_force_shutdown(VFSHEAD(v), u,f,l)
166#define bhv_vfs_freeze(v) vfs_freeze(VFSHEAD(v))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168/*
Nathan Scott67fcaa72006-06-09 17:00:52 +1000169 * Virtual filesystem operations, operating from next bhv.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 */
Nathan Scottb83bd132006-06-09 16:48:30 +1000171#define bhv_next_vfs_mount(b, ma,cr) vfs_mount(b, ma,cr)
172#define bhv_next_vfs_parseargs(b, o,ma,f) vfs_parseargs(b, o,ma,f)
173#define bhv_next_vfs_showargs(b, m) vfs_showargs(b, m)
174#define bhv_next_vfs_unmount(b, f,cr) vfs_unmount(b, f,cr)
175#define bhv_next_vfs_mntupdate(b, fl,args) vfs_mntupdate(b, fl, args)
176#define bhv_next_vfs_root(b, vpp) vfs_root(b, vpp)
177#define bhv_next_vfs_statvfs(b, sp,vp) vfs_statvfs(b, sp,vp)
178#define bhv_next_vfs_sync(b, flag,cr) vfs_sync(b, flag,cr)
179#define bhv_next_vfs_vget(b, vpp,fidp) vfs_vget(b, vpp,fidp)
Nathan Scottb83bd132006-06-09 16:48:30 +1000180#define bhv_next_vfs_init_vnode(b, vp,b2,ul) vfs_init_vnode(b, vp,b2,ul)
181#define bhv_next_force_shutdown(b, fl,f,l) vfs_force_shutdown(b, fl,f,l)
182#define bhv_next_vfs_freeze(b) vfs_freeze(b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184extern int vfs_mount(bhv_desc_t *, struct xfs_mount_args *, struct cred *);
185extern int vfs_parseargs(bhv_desc_t *, char *, struct xfs_mount_args *, int);
186extern int vfs_showargs(bhv_desc_t *, struct seq_file *);
187extern int vfs_unmount(bhv_desc_t *, int, struct cred *);
188extern int vfs_mntupdate(bhv_desc_t *, int *, struct xfs_mount_args *);
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000189extern int vfs_root(bhv_desc_t *, struct inode **);
190extern int vfs_statvfs(bhv_desc_t *, bhv_statvfs_t *, struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191extern int vfs_sync(bhv_desc_t *, int, struct cred *);
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000192extern int vfs_vget(bhv_desc_t *, struct inode **, struct fid *);
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000193extern void vfs_init_vnode(bhv_desc_t *, struct inode *, struct xfs_inode *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194extern void vfs_force_shutdown(bhv_desc_t *, int, char *, int);
195extern void vfs_freeze(bhv_desc_t *);
196
Nathan Scott34327e12006-06-09 17:11:55 +1000197#define vfs_test_for_freeze(vfs) ((vfs)->vfs_super->s_frozen)
198#define vfs_wait_for_freeze(vfs,l) vfs_check_frozen((vfs)->vfs_super, (l))
199
Nathan Scottb83bd132006-06-09 16:48:30 +1000200typedef struct bhv_module_vfsops {
201 struct bhv_vfsops bhv_common;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 void * bhv_custom;
Nathan Scottb83bd132006-06-09 16:48:30 +1000203} bhv_module_vfsops_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Nathan Scottb83bd132006-06-09 16:48:30 +1000205#define vfs_bhv_lookup(v, id) (bhv_lookup_range(&(v)->vfs_bh, (id), (id)))
206#define vfs_bhv_custom(b) (((bhv_module_vfsops_t*)BHV_OPS(b))->bhv_custom)
207#define vfs_bhv_set_custom(b,o) ((b)->bhv_custom = (void *)(o))
208#define vfs_bhv_clr_custom(b) ((b)->bhv_custom = NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Nathan Scottb83bd132006-06-09 16:48:30 +1000210extern bhv_vfs_t *vfs_allocate(struct super_block *);
211extern bhv_vfs_t *vfs_from_sb(struct super_block *);
212extern void vfs_deallocate(bhv_vfs_t *);
213extern void vfs_insertbhv(bhv_vfs_t *, bhv_desc_t *, bhv_vfsops_t *, void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Nathan Scottb83bd132006-06-09 16:48:30 +1000215extern void vfs_insertops(bhv_vfs_t *, bhv_module_vfsops_t *);
216
217extern void bhv_insert_all_vfsops(struct bhv_vfs *);
218extern void bhv_remove_all_vfsops(struct bhv_vfs *, int);
219extern void bhv_remove_vfsops(struct bhv_vfs *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221#endif /* __XFS_VFS_H__ */