Whamcloud - gitweb
Land b1_4_smallfix onto b1_4 (20041216_1438)
[fs/lustre-release.git] / lustre / include / linux / lustre_fsfilt.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001 Cluster File Systems, Inc. <info@clusterfs.com>
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * Filesystem interface helper.
22  *
23  */
24
25 #ifndef _LUSTRE_FSFILT_H
26 #define _LUSTRE_FSFILT_H
27
28 #ifdef __KERNEL__
29
30 #include <linux/obd.h>
31 #include <linux/obd_class.h>
32
33 typedef void (*fsfilt_cb_t)(struct obd_device *obd, __u64 last_rcvd,
34                             void *data, int error);
35
36 struct fsfilt_objinfo {
37         struct dentry *fso_dentry;
38         int fso_bufcnt;
39 };
40
41 struct fsfilt_operations {
42         struct list_head fs_list;
43         struct module *fs_owner;
44         char   *fs_type;
45         void   *(* fs_start)(struct inode *inode, int op, void *desc_private,
46                              int logs);
47         void   *(* fs_brw_start)(int objcount, struct fsfilt_objinfo *fso,
48                                  int niocount, struct niobuf_local *nb,
49                                  void *desc_private, int logs);
50         int     (* fs_commit)(struct inode *inode, void *handle,int force_sync);
51         int     (* fs_commit_async)(struct inode *inode, void *handle,
52                                         void **wait_handle);
53         int     (* fs_commit_wait)(struct inode *inode, void *handle);
54         int     (* fs_setattr)(struct dentry *dentry, void *handle,
55                                struct iattr *iattr, int do_trunc);
56         int     (* fs_iocontrol)(struct inode *inode, struct file *file,
57                                  unsigned int cmd, unsigned long arg);
58         int     (* fs_set_md)(struct inode *inode, void *handle, void *md,
59                               int size);
60         int     (* fs_get_md)(struct inode *inode, void *md, int size);
61         /* this method is needed to make IO operation fsfilt nature depend. */
62         int     (* fs_send_bio)(int rw, struct inode *inode,struct kiobuf *bio);
63         ssize_t (* fs_readpage)(struct file *file, char *buf, size_t count,
64                                 loff_t *offset);
65         int     (* fs_add_journal_cb)(struct obd_device *obd, __u64 last_rcvd,
66                                       void *handle, fsfilt_cb_t cb_func,
67                                       void *cb_data);
68         int     (* fs_statfs)(struct super_block *sb, struct obd_statfs *osfs);
69         int     (* fs_sync)(struct super_block *sb);
70         int     (* fs_map_inode_pages)(struct inode *inode, struct page **page,
71                                        int pages, unsigned long *blocks,
72                                        int *created, int create,
73                                        struct semaphore *sem);
74         int     (* fs_prep_san_write)(struct inode *inode, long *blocks,
75                                       int nblocks, loff_t newsize);
76         int     (* fs_write_record)(struct file *, void *, int size, loff_t *,
77                                     int force_sync);
78         int     (* fs_read_record)(struct file *, void *, int size, loff_t *);
79         int     (* fs_setup)(struct super_block *sb);
80         int     (* fs_get_op_len)(int, struct fsfilt_objinfo *, int);
81 };
82
83 extern int fsfilt_register_ops(struct fsfilt_operations *fs_ops);
84 extern void fsfilt_unregister_ops(struct fsfilt_operations *fs_ops);
85 extern struct fsfilt_operations *fsfilt_get_ops(const char *type);
86 extern void fsfilt_put_ops(struct fsfilt_operations *fs_ops);
87
88 #define FSFILT_OP_UNLINK         1
89 #define FSFILT_OP_RMDIR          2
90 #define FSFILT_OP_RENAME         3
91 #define FSFILT_OP_CREATE         4
92 #define FSFILT_OP_MKDIR          5
93 #define FSFILT_OP_SYMLINK        6
94 #define FSFILT_OP_MKNOD          7
95 #define FSFILT_OP_SETATTR        8
96 #define FSFILT_OP_LINK           9
97 #define FSFILT_OP_CANCEL_UNLINK 10
98
99 #define fsfilt_check_slow(start, timeout, msg)                          \
100 do {                                                                    \
101         if (time_before(jiffies, start + 15 * HZ))                      \
102                 break;                                                  \
103         else if (time_before(jiffies, start + timeout / 2 * HZ))        \
104                 CWARN("slow %s %lus\n", msg, (jiffies - start) / HZ);   \
105         else                                                            \
106                 CERROR("slow %s %lus\n", msg, (jiffies - start) / HZ);  \
107 } while (0)
108
109 static inline void *fsfilt_start_log(struct obd_device *obd,
110                                      struct inode *inode, int op,
111                                      struct obd_trans_info *oti, int logs)
112 {
113         unsigned long now = jiffies;
114         void *parent_handle = oti ? oti->oti_handle : NULL;
115         void *handle = obd->obd_fsops->fs_start(inode, op, parent_handle, logs);
116         CDEBUG(D_INFO, "started handle %p (%p)\n", handle, parent_handle);
117
118         if (oti != NULL) {
119                 if (parent_handle == NULL) {
120                         oti->oti_handle = handle;
121                 } else if (handle != parent_handle) {
122                         CERROR("mismatch: parent %p, handle %p, oti %p\n",
123                                parent_handle, handle, oti);
124                         LBUG();
125                 }
126         }
127         fsfilt_check_slow(now, obd_timeout, "journal start");
128         return handle;
129 }
130
131 static inline void *fsfilt_start(struct obd_device *obd, struct inode *inode,
132                                  int op, struct obd_trans_info *oti)
133 {
134         return fsfilt_start_log(obd, inode, op, oti, 0);
135 }
136
137 static inline void *fsfilt_brw_start_log(struct obd_device *obd,
138                                          int objcount,
139                                          struct fsfilt_objinfo *fso,
140                                          int niocount, struct niobuf_local *nb,
141                                          struct obd_trans_info *oti, int logs)
142 {
143         unsigned long now = jiffies;
144         void *parent_handle = oti ? oti->oti_handle : NULL;
145         void *handle = obd->obd_fsops->fs_brw_start(objcount, fso, niocount, nb,
146                                                     parent_handle, logs);
147         CDEBUG(D_INFO, "started handle %p (%p)\n", handle, parent_handle);
148
149         if (oti != NULL) {
150                 if (parent_handle == NULL) {
151                         oti->oti_handle = handle;
152                 } else if (handle != parent_handle) {
153                         CERROR("mismatch: parent %p, handle %p, oti %p\n",
154                                parent_handle, handle, oti);
155                         LBUG();
156                 }
157         }
158         fsfilt_check_slow(now, obd_timeout, "journal start");
159
160         return handle;
161 }
162
163 static inline void *fsfilt_brw_start(struct obd_device *obd, int objcount,
164                                      struct fsfilt_objinfo *fso, int niocount,
165                                      struct niobuf_local *nb,
166                                      struct obd_trans_info *oti)
167 {
168         return fsfilt_brw_start_log(obd, objcount, fso, niocount, nb, oti, 0);
169 }
170
171 static inline int fsfilt_commit(struct obd_device *obd, struct inode *inode,
172                                 void *handle, int force_sync)
173 {
174         unsigned long now = jiffies;
175         int rc = obd->obd_fsops->fs_commit(inode, handle, force_sync);
176         CDEBUG(D_INFO, "committing handle %p\n", handle);
177
178         fsfilt_check_slow(now, obd_timeout, "journal start");
179
180         return rc;
181 }
182
183 static inline int fsfilt_commit_async(struct obd_device *obd,
184                                       struct inode *inode, void *handle,
185                                       void **wait_handle)
186 {
187         unsigned long now = jiffies;
188         int rc = obd->obd_fsops->fs_commit_async(inode, handle, wait_handle);
189
190         CDEBUG(D_INFO, "committing handle %p (async)\n", *wait_handle);
191         fsfilt_check_slow(now, obd_timeout, "journal start");
192
193         return rc;
194 }
195
196 static inline int fsfilt_commit_wait(struct obd_device *obd,
197                                      struct inode *inode, void *handle)
198 {
199         unsigned long now = jiffies;
200         int rc = obd->obd_fsops->fs_commit_wait(inode, handle);
201         CDEBUG(D_INFO, "waiting for completion %p\n", handle);
202         fsfilt_check_slow(now, obd_timeout, "journal start");
203         return rc;
204 }
205
206 static inline int fsfilt_setattr(struct obd_device *obd, struct dentry *dentry,
207                                  void *handle, struct iattr *iattr,int do_trunc)
208 {
209         unsigned long now = jiffies;
210         int rc;
211         rc = obd->obd_fsops->fs_setattr(dentry, handle, iattr, do_trunc);
212         fsfilt_check_slow(now, obd_timeout, "setattr");
213         return rc;
214 }
215
216 static inline int fsfilt_iocontrol(struct obd_device *obd, struct inode *inode,
217                                    struct file *file, unsigned int cmd,
218                                    unsigned long arg)
219 {
220         return obd->obd_fsops->fs_iocontrol(inode, file, cmd, arg);
221 }
222
223 static inline int fsfilt_set_md(struct obd_device *obd, struct inode *inode,
224                                 void *handle, void *md, int size)
225 {
226         return obd->obd_fsops->fs_set_md(inode, handle, md, size);
227 }
228
229 static inline int fsfilt_get_md(struct obd_device *obd, struct inode *inode,
230                                 void *md, int size)
231 {
232         return obd->obd_fsops->fs_get_md(inode, md, size);
233 }
234
235 static inline int fsfilt_send_bio(int rw, struct obd_device *obd,
236                                   struct inode *inode, void *bio)
237 {
238         LASSERTF(rw == OBD_BRW_WRITE || rw == OBD_BRW_READ, "%x\n", rw);
239
240         if (rw == OBD_BRW_READ)
241                 return obd->obd_fsops->fs_send_bio(READ, inode, bio);
242         else
243                 return obd->obd_fsops->fs_send_bio(WRITE, inode, bio);
244 }
245
246 static inline ssize_t fsfilt_readpage(struct obd_device *obd,
247                                       struct file *file, char *buf,
248                                       size_t count, loff_t *offset)
249 {
250         return obd->obd_fsops->fs_readpage(file, buf, count, offset);
251 }
252
253 static inline int fsfilt_add_journal_cb(struct obd_device *obd, __u64 last_rcvd,
254                                         void *handle, fsfilt_cb_t cb_func,
255                                         void *cb_data)
256 {
257         return obd->obd_fsops->fs_add_journal_cb(obd, last_rcvd,
258                                                  handle, cb_func, cb_data);
259 }
260
261 /* very similar to obd_statfs(), but caller already holds obd_osfs_lock */
262 static inline int fsfilt_statfs(struct obd_device *obd, struct super_block *sb,
263                                 unsigned long max_age)
264 {
265         int rc = 0;
266
267         CDEBUG(D_SUPER, "osfs %lu, max_age %lu\n", obd->obd_osfs_age, max_age);
268         if (time_before(obd->obd_osfs_age, max_age)) {
269                 rc = obd->obd_fsops->fs_statfs(sb, &obd->obd_osfs);
270                 if (rc == 0) /* N.B. statfs can't really fail */
271                         obd->obd_osfs_age = jiffies;
272         } else {
273                 CDEBUG(D_SUPER, "using cached obd_statfs data\n");
274         }
275
276         return rc;
277 }
278
279 static inline int fsfilt_sync(struct obd_device *obd, struct super_block *sb)
280 {
281         return obd->obd_fsops->fs_sync(sb);
282 }
283
284 static inline int fsfilt_map_inode_pages(struct obd_device *obd,
285                                          struct inode *inode,
286                                          struct page **page, int pages,
287                                          unsigned long *blocks, int *created,
288                                          int create, struct semaphore *sem)
289 {
290         return obd->obd_fsops->fs_map_inode_pages(inode, page, pages, blocks,
291                                                   created, create, sem);
292 }
293
294 static inline int fs_prep_san_write(struct obd_device *obd,
295                                     struct inode *inode,
296                                     long *blocks,
297                                     int nblocks,
298                                     loff_t newsize)
299 {
300         return obd->obd_fsops->fs_prep_san_write(inode, blocks,
301                                                  nblocks, newsize);
302 }
303
304 static inline int fsfilt_read_record(struct obd_device *obd, struct file *file,
305                                      void *buf, loff_t size, loff_t *offs)
306 {
307         return obd->obd_fsops->fs_read_record(file, buf, size, offs);
308 }
309
310 static inline int fsfilt_write_record(struct obd_device *obd, struct file *file,
311                                       void *buf, loff_t size, loff_t *offs,
312                                       int force_sync)
313 {
314         return obd->obd_fsops->fs_write_record(file, buf, size,offs,force_sync);
315 }
316
317 static inline int fsfilt_setup(struct obd_device *obd, struct super_block *fs)
318 {
319         if (obd->obd_fsops->fs_setup)
320                 return obd->obd_fsops->fs_setup(fs);
321         return 0;
322 }
323
324 #endif /* __KERNEL__ */
325
326 #endif