Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / lvfs / fsfilt_reiserfs.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  lustre/lib/fsfilt_reiserfs.c
5  *  Lustre filesystem abstraction routines
6  *
7  *  Copyright (C) 2002 Cluster File Systems, Inc.
8  *   Author: Andreas Dilger <adilger@clusterfs.com>
9  *
10  *   This file is part of Lustre, http://www.lustre.org.
11  *
12  *   Lustre is free software; you can redistribute it and/or
13  *   modify it under the terms of version 2 of the GNU General Public
14  *   License as published by the Free Software Foundation.
15  *
16  *   Lustre is distributed in the hope that it will be useful,
17  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *   GNU General Public License for more details.
20  *
21  *   You should have received a copy of the GNU General Public License
22  *   along with Lustre; if not, write to the Free Software
23  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  */
25
26 /*
27  * NOTE - According to Hans Reiser, this could actually be implemented more
28  *        efficiently than creating a directory and putting ASCII objids in it.
29  *        Instead, we should return the reiserfs object ID as the lustre objid
30  *        (although I'm not sure what impact that would have on backup/restore).
31  */
32
33 #define DEBUG_SUBSYSTEM S_FILTER
34
35 #include <linux/fs.h>
36 #include <linux/slab.h>
37 #include <linux/pagemap.h>
38 #include <linux/quotaops.h>
39 #include <linux/version.h>
40 #include <linux/init.h>
41 #include <asm/statfs.h>
42 #include <libcfs/kp30.h>
43 #include <lustre_fsfilt.h>
44 #include <obd.h>
45 #include <obd_class.h>
46 #include <linux/module.h>
47 #include <linux/init.h>
48
49 /* XXX We cannot include linux/reiserfs_fs.h here, because of symbols clash,
50    but we need MAX_HEIGHT definition for proper reserve calculations
51 #include <linux/reiserfs_fs.h>
52 */
53 #define MAX_HEIGHT 5 /* maximal height of a tree. don't change this without
54                         changing JOURNAL_PER_BALANCE_CNT */
55
56 static void *fsfilt_reiserfs_start(struct inode *inode, int op,
57                                    void *desc_private, int logs)
58 {
59         return (void *)0xf00f00be;
60 }
61
62 static void *fsfilt_reiserfs_brw_start(int objcount, struct fsfilt_objinfo *fso,
63                                        int niocount, struct niobuf_local *nb,
64                                        void *desc_private, int logs)
65 {
66         return (void *)0xf00f00be;
67 }
68
69 static int fsfilt_reiserfs_commit(struct inode *inode, void *handle,
70                                   int force_sync)
71 {
72         if (handle != (void *)0xf00f00be) {
73                 CERROR("bad handle %p", handle);
74                 return -EINVAL;
75         }
76
77         return 0;
78 }
79
80 static int fsfilt_reiserfs_setattr(struct dentry *dentry, void *handle,
81                                struct iattr *iattr, int do_trunc)
82 {
83         struct inode *inode = dentry->d_inode;
84         int rc;
85
86         lock_kernel();
87
88         /* A _really_ horrible hack to avoid removing the data stored
89          * in the block pointers; this is really the "small" stripe MD data.
90          * We can avoid further hackery by virtue of the MDS file size being
91          * zero all the time (which doesn't invoke block truncate at unlink
92          * time), so we assert we never change the MDS file size from zero.
93          */
94         if (iattr->ia_valid & ATTR_SIZE && !do_trunc) {
95                 /* ATTR_SIZE would invoke truncate: clear it */
96                 iattr->ia_valid &= ~ATTR_SIZE;
97                 i_size_write(inode, iattr->ia_size);
98
99                 /* make sure _something_ gets set - so new inode
100                  * goes to disk (probably won't work over XFS
101                  */
102                 if (!iattr->ia_valid & ATTR_MODE) {
103                         iattr->ia_valid |= ATTR_MODE;
104                         iattr->ia_mode = inode->i_mode;
105                 }
106         }
107
108         /* We set these flags on the client, but have already checked perms
109          * so don't confuse inode_change_ok. */
110         iattr->ia_valid &= ~(ATTR_MTIME_SET | ATTR_ATIME_SET);
111
112         if (inode->i_op->setattr) {
113                 rc = inode->i_op->setattr(dentry, iattr);
114         } else {
115                 rc = inode_change_ok(inode, iattr);
116                 if (!rc)
117                         rc = inode_setattr(inode, iattr);
118         }
119
120         unlock_kernel();
121
122         return rc;
123 }
124
125 static int fsfilt_reiserfs_set_md(struct inode *inode, void *handle,
126                                   void *lmm, int lmm_size, const char *name)
127 {
128         /* XXX write stripe data into MDS file itself */
129         CERROR("not implemented yet\n");
130
131         return -ENOSYS;
132 }
133
134 static int fsfilt_reiserfs_get_md(struct inode *inode, void *lmm, int lmm_size,
135                                   const char *name)
136 {
137         if (lmm == NULL)
138                 return i_size_read(inode);
139
140         CERROR("not implemented yet\n");
141         return -ENOSYS;
142 }
143
144 static ssize_t fsfilt_reiserfs_readpage(struct file *file, char *buf, size_t count,
145                                         loff_t *offset)
146 {
147         return file->f_op->read(file, buf, count, offset);
148 }
149
150 static int fsfilt_reiserfs_add_journal_cb(struct obd_device *obd,
151                                           __u64 last_rcvd, void *handle,
152                                           fsfilt_cb_t cb_func, void *cb_data)
153 {
154         static unsigned long next = 0;
155
156         if (time_after(jiffies, next)) {
157                 CERROR("no journal callback kernel patch, faking it...\n");
158                 next = jiffies + 300 * HZ;
159         }
160
161         cb_func(obd, last_rcvd, cb_data, 0);
162
163         return 0;
164 }
165
166 static int fsfilt_reiserfs_statfs(struct super_block *sb,
167                                   struct obd_statfs *osfs)
168 {
169         struct kstatfs sfs;
170         int rc;
171
172         memset(&sfs, 0, sizeof(sfs));
173
174         rc = ll_do_statfs(sb, &sfs);
175
176         statfs_pack(osfs, &sfs);
177         return rc;
178 }
179
180 static int fsfilt_reiserfs_sync(struct super_block *sb)
181 {
182         return fsync_dev(sb->s_dev);
183 }
184
185 /* If fso is NULL, op is FSFILT operation, otherwise op is number of fso
186    objects. Logs is number of logfiles to update */
187 static int fsfilt_reiserfs_get_op_len(int op, struct fsfilt_objinfo *fso,
188                                       int logs)
189 {
190         if ( !fso ) {
191                 switch(op) {
192                 case FSFILT_OP_CREATE:
193                                  /* directory leaf, index & indirect & EA*/
194                         return MAX_HEIGHT + logs;
195                 case FSFILT_OP_UNLINK:
196                         return MAX_HEIGHT + logs;
197                 }
198
199         } else {
200                 int i;
201                 int needed = MAX_HEIGHT;
202                 struct super_block *sb = fso->fso_dentry->d_inode->i_sb;
203                 int blockpp = 1 << (CFS_PAGE_SHIFT - sb->s_blocksize_bits);
204                 for (i = 0; i < op; i++, fso++) {
205                         int nblocks = fso->fso_bufcnt * blockpp;
206
207                         needed += nblocks;
208                 }
209                 return needed + logs;
210         }
211
212         return 0;
213 }
214 static struct fsfilt_operations fsfilt_reiserfs_ops = {
215         .fs_type                = "reiserfs",
216         .fs_owner               = THIS_MODULE,
217         .fs_start               = fsfilt_reiserfs_start,
218         .fs_brw_start           = fsfilt_reiserfs_brw_start,
219         .fs_commit              = fsfilt_reiserfs_commit,
220         .fs_setattr             = fsfilt_reiserfs_setattr,
221         .fs_set_md              = fsfilt_reiserfs_set_md,
222         .fs_get_md              = fsfilt_reiserfs_get_md,
223         .fs_readpage            = fsfilt_reiserfs_readpage,
224         .fs_add_journal_cb      = fsfilt_reiserfs_add_journal_cb,
225         .fs_statfs              = fsfilt_reiserfs_statfs,
226         .fs_sync                = fsfilt_reiserfs_sync,
227         .fs_get_op_len          = fsfilt_reiserfs_get_op_len,
228 };
229
230 static int __init fsfilt_reiserfs_init(void)
231 {
232         return fsfilt_register_ops(&fsfilt_reiserfs_ops);
233 }
234
235 static void __exit fsfilt_reiserfs_exit(void)
236 {
237         fsfilt_unregister_ops(&fsfilt_reiserfs_ops);
238 }
239
240 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
241 MODULE_DESCRIPTION("Lustre reiserfs Filesystem Helper v0.1");
242 MODULE_LICENSE("GPL");
243
244 module_init(fsfilt_reiserfs_init);
245 module_exit(fsfilt_reiserfs_exit);