Whamcloud - gitweb
file configurable-x86-stack-2.4.22-rh.patch was initially added on branch b_devel.
[fs/lustre-release.git] / lustre / obdclass / 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/jbd.h>
37 #include <linux/slab.h>
38 #include <linux/pagemap.h>
39 #include <linux/quotaops.h>
40 #include <linux/version.h>
41 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
42 #include <linux/init.h>
43 #include <asm/statfs.h>
44 #endif
45 #include <linux/kp30.h>
46 #include <linux/lustre_fsfilt.h>
47 #include <linux/obd.h>
48 #include <linux/obd_class.h>
49 #include <linux/module.h>
50
51 static void *fsfilt_reiserfs_start(struct inode *inode, int op,
52                                    void *desc_private)
53 {
54         return (void *)0xf00f00be;
55 }
56
57 static void *fsfilt_reiserfs_brw_start(int objcount, struct fsfilt_objinfo *fso,
58                                        int niocount, void *desc_private)
59 {
60         return (void *)0xf00f00be;
61 }
62
63 static int fsfilt_reiserfs_commit(struct inode *inode, void *handle,
64                                   int force_sync)
65 {
66         if (handle != (void *)0xf00f00be) {
67                 CERROR("bad handle %p", handle);
68                 return -EINVAL;
69         }
70
71         return 0;
72 }
73
74 static int fsfilt_reiserfs_setattr(struct dentry *dentry, void *handle,
75                                struct iattr *iattr, int do_trunc)
76 {
77         struct inode *inode = dentry->d_inode;
78         int rc;
79
80         lock_kernel();
81
82         /* A _really_ horrible hack to avoid removing the data stored
83          * in the block pointers; this is really the "small" stripe MD data.
84          * We can avoid further hackery by virtue of the MDS file size being
85          * zero all the time (which doesn't invoke block truncate at unlink
86          * time), so we assert we never change the MDS file size from zero.
87          */
88         if (iattr->ia_valid & ATTR_SIZE && !do_trunc) {
89                 /* ATTR_SIZE would invoke truncate: clear it */
90                 iattr->ia_valid &= ~ATTR_SIZE;
91                 inode->i_size = iattr->ia_size;
92
93                 /* make sure _something_ gets set - so new inode
94                  * goes to disk (probably won't work over XFS
95                  */
96                 if (!iattr->ia_valid & ATTR_MODE) {
97                         iattr->ia_valid |= ATTR_MODE;
98                         iattr->ia_mode = inode->i_mode;
99                 }
100         }
101
102         /* We set these flags on the client, but have already checked perms
103          * so don't confuse inode_change_ok. */
104         iattr->ia_valid &= ~(ATTR_MTIME_SET | ATTR_ATIME_SET);
105
106         if (inode->i_op->setattr) {
107                 rc = inode->i_op->setattr(dentry, iattr);
108         } else {
109                 rc = inode_change_ok(inode, iattr);
110                 if (!rc)
111                         rc = inode_setattr(inode, iattr);
112         }
113
114         unlock_kernel();
115
116         return rc;
117 }
118
119 static int fsfilt_reiserfs_set_md(struct inode *inode, void *handle,
120                                   void *lmm, int lmm_size)
121 {
122         /* XXX write stripe data into MDS file itself */
123         CERROR("not implemented yet\n");
124
125         return -ENOSYS;
126 }
127
128 static int fsfilt_reiserfs_get_md(struct inode *inode, void *lmm, int lmm_size)
129 {
130         if (lmm == NULL)
131                 return inode->i_size;
132
133         CERROR("not implemented yet\n");
134         return -ENOSYS;
135 }
136
137 static ssize_t fsfilt_reiserfs_readpage(struct file *file, char *buf, size_t count,
138                                         loff_t *offset)
139 {
140         return file->f_op->read(file, buf, count, offset);
141 }
142
143 static int fsfilt_reiserfs_set_last_rcvd(struct obd_device *obd,
144                                          __u64 last_rcvd, void *handle,
145                                          fsfilt_cb_t cb_func, void *cb_data)
146 {
147         static long next = 0;
148
149         if (time_after(jiffies, next)) {
150                 CERROR("no journal callback kernel patch, faking it...\n");
151                 next = jiffies + 300 * HZ;
152         }
153
154         cb_func(obd, last_rcvd, cb_data, 0);
155
156         return 0;
157 }
158
159 static int fsfilt_reiserfs_journal_data(struct file *filp)
160 {
161         CERROR("not implemented yet\n");
162         return 0;
163 }
164
165 static int fsfilt_reiserfs_statfs(struct super_block *sb, struct obd_statfs *osfs)
166 {
167         struct statfs sfs;
168         int rc = vfs_statfs(sb, &sfs);
169
170         statfs_pack(osfs, &sfs);
171         return rc;
172 }
173
174 static int fsfilt_reiserfs_sync(struct super_block *sb)
175 {
176         CERROR("not implemented yet\n");
177         return -ENOSYS;
178 }
179
180 static struct fsfilt_operations fsfilt_reiserfs_ops = {
181         fs_type:                "reiserfs",
182         fs_owner:               THIS_MODULE,
183         fs_start:               fsfilt_reiserfs_start,
184         fs_brw_start:           fsfilt_reiserfs_brw_start,
185         fs_commit:              fsfilt_reiserfs_commit,
186         fs_setattr:             fsfilt_reiserfs_setattr,
187         fs_set_md:              fsfilt_reiserfs_set_md,
188         fs_get_md:              fsfilt_reiserfs_get_md,
189         fs_readpage:            fsfilt_reiserfs_readpage,
190         fs_journal_data:        fsfilt_reiserfs_journal_data,
191         fs_set_last_rcvd:       fsfilt_reiserfs_set_last_rcvd,
192         fs_statfs:              fsfilt_reiserfs_statfs,
193         fs_sync:                fsfilt_reiserfs_sync,
194 };
195
196 static int __init fsfilt_reiserfs_init(void)
197 {
198         return fsfilt_register_ops(&fsfilt_reiserfs_ops);
199 }
200
201 static void __exit fsfilt_reiserfs_exit(void)
202 {
203         fsfilt_unregister_ops(&fsfilt_reiserfs_ops);
204 }
205
206 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
207 MODULE_DESCRIPTION("Lustre reiserfs Filesystem Helper v0.1");
208 MODULE_LICENSE("GPL");
209
210 module_init(fsfilt_reiserfs_init);
211 module_exit(fsfilt_reiserfs_exit);