Whamcloud - gitweb
- fixes for truncating new files with intent locks
[fs/lustre-release.git] / lustre / obdfilter / filter.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  linux/fs/filter/filter.c
5  *
6  * Copyright (C) 2001  Cluster File Systems, Inc.
7  *
8  * This code is issued under the GNU General Public License.
9  * See the file COPYING in this distribution
10  *
11  * by Peter Braam <braam@clusterfs.com>
12  */
13
14 #define EXPORT_SYMTAB
15 #define DEBUG_SUBSYSTEM S_FILTER
16
17 #include <linux/module.h>
18 #include <linux/obd_filter.h>
19 #include <linux/ext3_jbd.h>
20 #include <linux/quotaops.h>
21
22 extern struct obd_device obd_dev[MAX_OBD_DEVICES];
23 long filter_memory;
24
25 #define FILTER_ROOTINO 2
26
27 #define S_SHIFT 12
28 static char *obd_type_by_mode[S_IFMT >> S_SHIFT] = {
29         [0]                     NULL,
30         [S_IFREG >> S_SHIFT]    "R",
31         [S_IFDIR >> S_SHIFT]    "D",
32         [S_IFCHR >> S_SHIFT]    "C",
33         [S_IFBLK >> S_SHIFT]    "B",
34         [S_IFIFO >> S_SHIFT]    "F",
35         [S_IFSOCK >> S_SHIFT]   "S",
36         [S_IFLNK >> S_SHIFT]    "L"
37 };
38
39 static inline const char *obd_mode_to_type(int mode)
40 {
41         return obd_type_by_mode[(mode & S_IFMT) >> S_SHIFT];
42 }
43
44 /* write the pathname into the string */
45 static int filter_id(char *buf, obd_id id, obd_mode mode)
46 {
47         return sprintf(buf, "O/%s/%Ld", obd_mode_to_type(mode),
48                        (unsigned long long)id);
49 }
50
51 /* setup the object store with correct subdirectories */
52 static int filter_prep(struct obd_device *obddev)
53 {
54         struct obd_run_ctxt saved;
55         struct filter_obd *filter = &obddev->u.filter;
56         struct dentry *dentry;
57         struct file *file;
58         struct inode *inode;
59         loff_t off;
60         int rc = 0;
61         char rootid[128];
62         __u64 lastino = 2;
63         int mode = 0;
64
65         push_ctxt(&saved, &filter->fo_ctxt);
66         dentry = simple_mkdir(current->fs->pwd, "O", 0700);
67         CDEBUG(D_INODE, "got/created O: %p\n", dentry);
68         if (IS_ERR(dentry)) {
69                 rc = PTR_ERR(dentry);
70                 CERROR("cannot open/create O: rc = %d\n", rc);
71                 GOTO(out, rc);
72         }
73         filter->fo_dentry_O = dentry;
74         dentry = simple_mkdir(current->fs->pwd, "P", 0700);
75         CDEBUG(D_INODE, "got/created P: %p\n", dentry);
76         if (IS_ERR(dentry)) {
77                 rc = PTR_ERR(dentry);
78                 CERROR("cannot open/create P: rc = %d\n", rc);
79                 GOTO(out_O, rc);
80         }
81         CDEBUG(D_INODE, "putting P: %p, count = %d\n", dentry,
82                atomic_read(&dentry->d_count) - 1);
83         dput(dentry);
84         dentry = simple_mkdir(current->fs->pwd, "D", 0700);
85         CDEBUG(D_INODE, "got/created D: %p\n", dentry);
86         if (IS_ERR(dentry)) {
87                 rc = PTR_ERR(dentry);
88                 CERROR("cannot open/create D: rc = %d\n", rc);
89                 GOTO(out_O, rc);
90         }
91         CDEBUG(D_INODE, "putting D: %p, count = %d\n", dentry,
92                atomic_read(&dentry->d_count) - 1);
93         dput(dentry);
94
95         /*
96          * Create directories and/or get dentries for each object type.
97          * This saves us from having to do multiple lookups for each one.
98          */
99         for (mode = 0; mode < (S_IFMT >> S_SHIFT); mode++) {
100                 char *type = obd_type_by_mode[mode];
101
102                 if (!type) {
103                         filter->fo_dentry_O_mode[mode] = NULL;
104                         continue;
105                 }
106                 dentry = simple_mkdir(filter->fo_dentry_O, type, 0700);
107                 CDEBUG(D_INODE, "got/created O/%s: %p\n", type, dentry);
108                 if (IS_ERR(dentry)) {
109                         rc = PTR_ERR(dentry);
110                         CERROR("cannot create O/%s: rc = %d\n", type, rc);
111                         GOTO(out_O_mode, rc);
112                 }
113                 filter->fo_dentry_O_mode[mode] = dentry;
114         }
115
116         filter_id(rootid, FILTER_ROOTINO, S_IFDIR);
117         file = filp_open(rootid, O_RDWR | O_CREAT, 0755);
118         if (IS_ERR(file)) {
119                 rc = PTR_ERR(file);
120                 CERROR("OBD filter: cannot open/create root %s: rc = %d\n",
121                        rootid, rc);
122                 GOTO(out_O_mode, rc);
123         }
124         filp_close(file, 0);
125
126         file = filp_open("D/status", O_RDWR | O_CREAT, 0700);
127         if ( !file || IS_ERR(file) ) {
128                 rc = PTR_ERR(file);
129                 CERROR("OBD filter: cannot open/create status %s: rc = %d\n",
130                        "D/status", rc);
131                 GOTO(out_O_mode, rc);
132         }
133
134         /* steal operations */
135         inode = file->f_dentry->d_inode;
136         filter->fo_fop = file->f_op;
137         filter->fo_iop = inode->i_op;
138         filter->fo_aops = inode->i_mapping->a_ops;
139
140         off = 0;
141         if (inode->i_size == 0) {
142                 ssize_t retval = file->f_op->write(file, (char *)&lastino,
143                                                    sizeof(lastino), &off);
144                 if (retval != sizeof(lastino)) {
145                         CDEBUG(D_INODE, "OBD filter: error writing lastino\n");
146                         filp_close(file, 0);
147                         GOTO(out_O_mode, rc = -EIO);
148                 }
149         } else {
150                 ssize_t retval = file->f_op->read(file, (char *)&lastino,
151                                                   sizeof(lastino), &off);
152                 if (retval != sizeof(lastino)) {
153                         CDEBUG(D_INODE, "OBD filter: error reading lastino\n");
154                         filp_close(file, 0);
155                         GOTO(out_O_mode, rc = -EIO);
156                 }
157         }
158         filter->fo_lastino = lastino;
159         filp_close(file, 0);
160
161         rc = 0;
162  out:
163         pop_ctxt(&saved);
164
165         return(rc);
166
167 out_O_mode:
168         while (--mode >= 0) {
169                 struct dentry *dentry = filter->fo_dentry_O_mode[mode];
170                 if (dentry) {
171                         CDEBUG(D_INODE, "putting O/%s: %p, count = %d\n",
172                                obd_type_by_mode[mode], dentry,
173                                atomic_read(&dentry->d_count) - 1);
174                         dput(dentry);
175                         filter->fo_dentry_O_mode[mode] = NULL;
176                 }
177         }
178 out_O:
179         CDEBUG(D_INODE, "putting O: %p, count = %d\n", filter->fo_dentry_O,
180                atomic_read(&filter->fo_dentry_O->d_count) - 1);
181         dput(filter->fo_dentry_O);
182         filter->fo_dentry_O = NULL;
183         goto out;
184 }
185
186 /* cleanup the filter: write last used object id to status file */
187 static void filter_post(struct obd_device *obddev)
188 {
189         struct obd_run_ctxt saved;
190         struct filter_obd *filter = &obddev->u.filter;
191         long rc;
192         struct file *file;
193         loff_t off = 0;
194         int mode;
195
196         push_ctxt(&saved, &filter->fo_ctxt);
197         file = filp_open("D/status", O_RDWR | O_CREAT, 0700);
198         if (IS_ERR(file)) {
199                 CERROR("OBD filter: cannot create status file\n");
200                 goto out;
201         }
202         rc = file->f_op->write(file, (char *)&filter->fo_lastino,
203                        sizeof(filter->fo_lastino), &off);
204         if (rc != sizeof(filter->fo_lastino))
205                 CERROR("OBD filter: error writing lastino: rc = %ld\n", rc);
206
207         rc = filp_close(file, NULL);
208         if (rc)
209                 CERROR("OBD filter: cannot close status file: rc = %ld\n", rc);
210
211         for (mode = 0; mode < (S_IFMT >> S_SHIFT); mode++) {
212                 struct dentry *dentry = filter->fo_dentry_O_mode[mode];
213                 if (dentry) {
214                         CDEBUG(D_INODE, "putting O/%s: %p, count = %d\n",
215                                obd_type_by_mode[mode], dentry,
216                                atomic_read(&dentry->d_count) - 1);
217                         dput(dentry);
218                         filter->fo_dentry_O_mode[mode] = NULL;
219                 }
220         }
221         CDEBUG(D_INODE, "putting O: %p, count = %d\n", filter->fo_dentry_O,
222                atomic_read(&filter->fo_dentry_O->d_count) - 1);
223         dput(filter->fo_dentry_O);
224 out:
225         pop_ctxt(&saved);
226 }
227
228
229 static __u64 filter_next_id(struct obd_device *obddev)
230 {
231         __u64 id;
232         spin_lock(&obddev->u.filter.fo_lock);
233         obddev->u.filter.fo_lastino++;
234         id =    obddev->u.filter.fo_lastino;
235         spin_unlock(&obddev->u.filter.fo_lock);
236         return id;
237 }
238
239 /* how to get files, dentries, inodes from object id's */
240 /* parent i_sem is already held if needed for exclusivity */
241 static struct dentry *filter_fid2dentry(struct obd_device *obddev,
242                                         struct dentry *dparent,
243                                         __u64 id, __u32 type)
244 {
245         struct super_block *sb = obddev->u.filter.fo_sb;
246         struct dentry *dchild;
247         char name[32];
248         int len;
249         ENTRY;
250
251         if (!sb || !sb->s_dev) {
252                 CERROR("fatal: device not initialized.\n");
253                 RETURN(ERR_PTR(-ENXIO));
254         }
255
256         if (id == 0) {
257                 CERROR("fatal: invalid object #0\n");
258                 LBUG();
259                 RETURN(ERR_PTR(-ESTALE));
260         }
261
262         if (!(type & S_IFMT)) {
263                 CERROR("OBD %s, object %Lu has bad type: %o\n", __FUNCTION__,
264                        (unsigned long long)id, type);
265                 RETURN(ERR_PTR(-EINVAL));
266         }
267
268         len = sprintf(name, "%Ld", id);
269         CDEBUG(D_INODE, "opening object O/%s/%s\n", obd_mode_to_type(type),
270                name);
271         dchild = lookup_one_len(name, dparent, len);
272         CDEBUG(D_INODE, "got child obj O/%s/%s: %p, count = %d\n",
273                obd_mode_to_type(type), name, dchild,
274                atomic_read(&dchild->d_count));
275
276         if (IS_ERR(dchild)) {
277                 CERROR("child lookup error %ld\n", PTR_ERR(dchild));
278                 RETURN(dchild);
279         }
280
281         RETURN(dchild);
282 }
283
284 static struct file *filter_obj_open(struct obd_device *obddev,
285                                     __u64 id, __u32 type)
286 {
287         struct super_block *sb = obddev->u.filter.fo_sb;
288         struct obd_run_ctxt saved;
289         char name[24];
290         struct file *file;
291         ENTRY;
292
293         if (!sb || !sb->s_dev) {
294                 CERROR("fatal: device not initialized.\n");
295                 RETURN(ERR_PTR(-ENXIO));
296         }
297
298         if (!id) {
299                 CERROR("fatal: invalid obdo %Lu\n", (unsigned long long)id);
300                 RETURN(ERR_PTR(-ESTALE));
301         }
302
303         if (!(type & S_IFMT)) {
304                 CERROR("OBD %s, no type (%Ld), mode %o!\n", __FUNCTION__,
305                        (unsigned long long)id, type);
306                 RETURN(ERR_PTR(-EINVAL));
307         }
308
309         filter_id(name, id, type);
310         push_ctxt(&saved, &obddev->u.filter.fo_ctxt);
311         file = filp_open(name, O_RDONLY | O_LARGEFILE, 0 /* type? */);
312         pop_ctxt(&saved);
313
314         CDEBUG(D_INODE, "opening obdo %s: rc = %p\n", name, file);
315
316         if (IS_ERR(file))
317                 file = NULL;
318         RETURN(file);
319 }
320
321 static struct dentry *filter_parent(struct obd_device *obddev, obd_mode mode)
322 {
323         struct filter_obd *filter = &obddev->u.filter;
324
325         return filter->fo_dentry_O_mode[(mode & S_IFMT) >> S_SHIFT];
326 }
327
328
329 static struct inode *filter_inode_from_obj(struct obd_device *obddev,
330                                            __u64 id, __u32 type)
331 {
332         struct dentry *dentry;
333         struct inode *inode;
334
335         dentry = filter_fid2dentry(obddev, filter_parent(obddev, type),
336                                    id, type);
337         if (IS_ERR(dentry)) {
338                 CERROR("%s: lookup failed: rc = %ld\n", __FUNCTION__,
339                        PTR_ERR(dentry));
340                 RETURN(NULL);
341         }
342
343         lock_kernel();
344         inode = iget(dentry->d_inode->i_sb, dentry->d_inode->i_ino);
345         unlock_kernel();
346         CDEBUG(D_INODE, "put child %p, count = %d\n", dentry,
347                atomic_read(&dentry->d_count) - 1);
348         dput(dentry);
349         CDEBUG(D_INODE, "got inode %p (%ld), count = %d\n", inode, inode->i_ino,
350                atomic_read(&inode->i_count));
351         return inode;
352 }
353
354 /* obd methods */
355 static int filter_connect(struct obd_conn *conn)
356 {
357         int rc;
358
359         MOD_INC_USE_COUNT;
360         rc = gen_connect(conn);
361
362         if (rc)
363                 MOD_DEC_USE_COUNT;
364
365         return rc;
366 }
367
368 static int filter_disconnect(struct obd_conn *conn)
369 {
370         int rc;
371
372         rc = gen_disconnect(conn);
373         if (!rc)
374                 MOD_DEC_USE_COUNT;
375
376         /* XXX cleanup preallocated inodes */
377         return rc;
378 }
379
380 /* mount the file system (secretly) */
381 static int filter_setup(struct obd_device *obddev, obd_count len, void *buf)
382 {
383         struct obd_ioctl_data* data = buf;
384         struct filter_obd *filter;
385         struct vfsmount *mnt;
386         int err = 0;
387         ENTRY;
388
389         if (!data->ioc_inlbuf1 || !data->ioc_inlbuf2)
390                 RETURN(-EINVAL);
391
392         MOD_INC_USE_COUNT;
393         mnt = do_kern_mount(data->ioc_inlbuf2, 0, data->ioc_inlbuf1, NULL);
394         err = PTR_ERR(mnt);
395         if (IS_ERR(mnt))
396                 GOTO(err_dec, err);
397
398         filter = &obddev->u.filter;;
399         filter->fo_sb = mnt->mnt_root->d_inode->i_sb;
400         /* XXX is this even possible if do_kern_mount succeeded? */
401         if (!filter->fo_sb)
402                 GOTO(err_put, err = -ENODEV);
403
404         filter->fo_vfsmnt = mnt;
405         filter->fo_fstype = strdup(data->ioc_inlbuf2);
406
407         filter->fo_ctxt.pwdmnt = mnt;
408         filter->fo_ctxt.pwd = mnt->mnt_root;
409         filter->fo_ctxt.fs = KERNEL_DS;
410
411         err = filter_prep(obddev);
412         if (err)
413                 GOTO(err_kfree, err);
414         spin_lock_init(&filter->fo_lock);
415
416         RETURN(0);
417
418 err_kfree:
419         kfree(filter->fo_fstype);
420 err_put:
421         unlock_kernel();
422         mntput(filter->fo_vfsmnt);
423         filter->fo_sb = 0;
424         lock_kernel();
425
426 err_dec:
427         MOD_DEC_USE_COUNT;
428         return err;
429 }
430
431
432 static int filter_cleanup(struct obd_device * obddev)
433 {
434         struct super_block *sb;
435         ENTRY;
436
437         if (!(obddev->obd_flags & OBD_SET_UP))
438                 RETURN(0);
439
440         if (!list_empty(&obddev->obd_gen_clients)) {
441                 CERROR("still has clients!\n");
442                 RETURN(-EBUSY);
443         }
444
445         sb = obddev->u.filter.fo_sb;
446         if (!obddev->u.filter.fo_sb)
447                 RETURN(0);
448
449         filter_post(obddev);
450
451         shrink_dcache_parent(sb->s_root);
452         unlock_kernel();
453         mntput(obddev->u.filter.fo_vfsmnt);
454         obddev->u.filter.fo_sb = 0;
455         kfree(obddev->u.filter.fo_fstype);
456
457         lock_kernel();
458
459         MOD_DEC_USE_COUNT;
460         RETURN(0);
461 }
462
463
464 static inline void filter_from_inode(struct obdo *oa, struct inode *inode)
465 {
466         int type = oa->o_mode & S_IFMT;
467         ENTRY;
468
469         CDEBUG(D_INFO, "src inode %ld, dst obdo %ld valid 0x%08x\n",
470                inode->i_ino, (long)oa->o_id, oa->o_valid);
471         obdo_from_inode(oa, inode);
472         oa->o_mode &= ~S_IFMT;
473         oa->o_mode |= type;
474
475         if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
476                 obd_rdev rdev = kdev_t_to_nr(inode->i_rdev);
477                 CDEBUG(D_INODE, "copying device %x from inode to obdo\n",
478                        rdev);
479                 *((obd_rdev *)oa->o_inline) = rdev;
480                 oa->o_obdflags |= OBD_FL_INLINEDATA;
481                 oa->o_valid |= OBD_MD_FLINLINE;
482         }
483
484 #if 0
485         else if (filter_has_inline(inode)) {
486                 CDEBUG(D_INFO, "copying inline from inode to obdo\n");
487                 memcpy(oa->o_inline, inode->u.ext2_i.i_data,
488                        MIN(sizeof(inode->u.ext2_i.i_data),OBD_INLINESZ));
489                 oa->o_obdflags |= OBD_FL_INLINEDATA;
490                 oa->o_valid |= OBD_MD_FLINLINE;
491         }
492
493         if (filter_has_obdmd(inode)) {
494                 /* XXX this will change when we don't store the obdmd in data */
495                 CDEBUG(D_INFO, "copying obdmd from inode to obdo\n");
496                 memcpy(oa->o_obdmd, inode->u.ext2_i.i_data,
497                        MIN(sizeof(inode->u.ext2_i.i_data),OBD_INLINESZ));
498                 oa->o_obdflags |= OBD_FL_OBDMDEXISTS;
499                 oa->o_valid |= OBD_MD_FLOBDMD;
500         }
501 #endif
502         EXIT;
503 }
504
505 static int filter_getattr(struct obd_conn *conn, struct obdo *oa)
506 {
507         struct obd_device *obddev;
508         struct dentry *dentry;
509         ENTRY;
510
511         if (!gen_client(conn)) {
512                 CDEBUG(D_IOCTL, "fatal: invalid client %u\n", conn->oc_id);
513                 RETURN(-EINVAL);
514         }
515
516         obddev = conn->oc_dev;
517         dentry = filter_fid2dentry(obddev, filter_parent(obddev, oa->o_mode),
518                                    oa->o_id, oa->o_mode);
519         if (IS_ERR(dentry))
520                 RETURN(PTR_ERR(dentry));
521
522         oa->o_valid &= ~OBD_MD_FLID;
523         filter_from_inode(oa, dentry->d_inode);
524
525         dput(dentry);
526         RETURN(0);
527 }
528
529 static int filter_setattr(struct obd_conn *conn, struct obdo *oa)
530 {
531         struct obd_run_ctxt saved;
532         struct obd_device *obddev;
533         struct dentry *dentry;
534         struct iattr iattr;
535         struct inode *inode;
536         int rc;
537         ENTRY;
538
539         if (!gen_client(conn)) {
540                 CDEBUG(D_IOCTL, "invalid client %u\n", conn->oc_id);
541                 RETURN(-EINVAL);
542         }
543
544         obddev = conn->oc_dev;
545         dentry = filter_fid2dentry(obddev, filter_parent(obddev, oa->o_mode),
546                                    oa->o_id, oa->o_mode);
547         if (IS_ERR(dentry))
548                 RETURN(PTR_ERR(dentry));
549
550         inode = dentry->d_inode;
551         iattr_from_obdo(&iattr, oa);
552         iattr.ia_mode &= ~S_IFMT;
553         iattr.ia_mode |= S_IFREG;
554         lock_kernel();
555         if (iattr.ia_mode & ATTR_SIZE)
556                 down(&inode->i_sem);
557         push_ctxt(&saved, &conn->oc_dev->u.filter.fo_ctxt);
558         if (inode->i_op->setattr)
559                 rc = inode->i_op->setattr(dentry, &iattr);
560         else
561                 rc = inode_setattr(inode, &iattr);
562         pop_ctxt(&saved);
563         if (iattr.ia_mode & ATTR_SIZE)
564                 up(&inode->i_sem);
565         unlock_kernel();
566
567         CDEBUG(D_INODE, "put dentry %p, count = %d\n", inode,
568                atomic_read(&dentry->d_count) - 1);
569         dput(dentry);
570         RETURN(rc);
571 }
572
573 static int filter_open(struct obd_conn *conn, struct obdo *oa)
574 {
575         struct obd_device *obddev;
576         struct dentry *dentry;
577         /* ENTRY; */
578
579         if (!gen_client(conn)) {
580                 CDEBUG(D_IOCTL, "fatal: invalid client %u\n", conn->oc_id);
581                 RETURN(-EINVAL);
582         }
583
584         obddev = conn->oc_dev;
585         dentry = filter_fid2dentry(obddev, filter_parent(obddev, oa->o_mode),
586                                    oa->o_id, oa->o_mode);
587         if (IS_ERR(dentry))
588                 RETURN(PTR_ERR(dentry));
589
590         return 0;
591 } /* filter_open */
592
593 static int filter_close(struct obd_conn *conn, struct obdo *oa)
594 {
595         struct obd_device *obddev;
596         struct dentry *dentry;
597         /* ENTRY; */
598
599         if (!gen_client(conn)) {
600                 CDEBUG(D_IOCTL, "fatal: invalid client %u\n", conn->oc_id);
601                 RETURN(-EINVAL);
602         }
603
604         obddev = conn->oc_dev;
605         dentry = filter_fid2dentry(obddev, filter_parent(obddev, oa->o_mode),
606                                    oa->o_id, oa->o_mode);
607         if (IS_ERR(dentry))
608                 RETURN(PTR_ERR(dentry));
609
610         CDEBUG(D_INODE, "put dentry %p, count = %d\n", dentry,
611                atomic_read(&dentry->d_count) - 1);
612         dput(dentry);  /* for the close */
613         CDEBUG(D_INODE, "put dentry %p, count = %d\n", dentry,
614                atomic_read(&dentry->d_count) - 1);
615         dput(dentry);  /* for this call */
616         return 0;
617 } /* filter_close */
618
619 static int filter_create(struct obd_conn* conn, struct obdo *oa)
620 {
621         char name[64];
622         struct obd_run_ctxt saved;
623         struct file *file;
624         int mode;
625         struct obd_device *obddev = conn->oc_dev;
626         struct iattr;
627         ENTRY;
628
629         if (!gen_client(conn)) {
630                 CERROR("invalid client %u\n", conn->oc_id);
631                 return -EINVAL;
632         }
633
634         oa->o_id = filter_next_id(conn->oc_dev);
635         if (!(oa->o_mode && S_IFMT)) {
636                 CERROR("filter obd: no type!\n");
637                 return -ENOENT;
638         }
639
640         filter_id(name, oa->o_id, oa->o_mode);
641         mode = (oa->o_mode & ~S_IFMT) | S_IFREG;
642         push_ctxt(&saved, &obddev->u.filter.fo_ctxt);
643         file = filp_open(name, O_RDONLY | O_CREAT, mode);
644         pop_ctxt(&saved);
645         if (IS_ERR(file)) {
646                 CERROR("Error mknod obj %s, err %ld\n", name, PTR_ERR(file));
647                 return -ENOENT;
648         }
649         filp_close(file, 0);
650
651         /* Set flags for fields we have set in the inode struct */
652         oa->o_valid |= OBD_MD_FLID | OBD_MD_FLBLKSZ | OBD_MD_FLBLOCKS |
653                  OBD_MD_FLMTIME | OBD_MD_FLATIME | OBD_MD_FLCTIME |
654                  OBD_MD_FLUID | OBD_MD_FLGID;
655
656         /* XXX Hmm, shouldn't we copy the fields into the obdo here? */
657         return 0;
658 }
659
660 static int filter_destroy(struct obd_conn *conn, struct obdo *oa)
661 {
662         struct obd_run_ctxt saved;
663         struct obd_device *obddev;
664         struct obd_client *cli;
665         struct inode *inode;
666         struct dentry *dir_dentry, *object_dentry;
667         int rc;
668         ENTRY;
669
670         if (!(cli = gen_client(conn))) {
671                 CERROR("invalid client %u\n", conn->oc_id);
672                 RETURN(-EINVAL);
673         }
674
675         CDEBUG(D_INODE, "destroying object %Ld\n",oa->o_id);
676         obddev = conn->oc_dev;
677
678         dir_dentry = filter_parent(obddev, oa->o_mode);
679         down(&dir_dentry->d_inode->i_sem);
680
681         object_dentry = filter_fid2dentry(obddev, dir_dentry, oa->o_id,
682                                           oa->o_mode);
683         if (IS_ERR(object_dentry))
684                 GOTO(out, rc = -ENOENT);
685
686         inode = object_dentry->d_inode;
687         if (inode->i_nlink != 1) {
688                 CERROR("destroying inode with nlink = %d\n", inode->i_nlink);
689                 inode->i_nlink = 1;
690         }
691         inode->i_mode = S_IFREG;
692
693         push_ctxt(&saved, &obddev->u.filter.fo_ctxt);
694
695         rc = vfs_unlink(dir_dentry->d_inode, object_dentry);
696         pop_ctxt(&saved);
697         CDEBUG(D_INODE, "put child %p, count = %d\n", object_dentry,
698                atomic_read(&object_dentry->d_count) - 1);
699         dput(object_dentry);
700
701         EXIT;
702 out:
703         up(&dir_dentry->d_inode->i_sem);
704         return rc;
705 }
706
707 /* NB count and offset are used for punch, but not truncate */
708 static int filter_truncate(struct obd_conn *conn, struct obdo *oa,
709                            obd_size count, obd_off offset)
710 {
711         int error;
712         ENTRY;
713
714         CDEBUG(D_INODE, "calling truncate for object #%Ld, valid = %x, "
715                "o_size = %Ld\n", oa->o_id, oa->o_valid, oa->o_size);
716         oa->o_valid = OBD_MD_FLSIZE;
717         error = filter_setattr(conn, oa);
718         oa->o_valid = OBD_MD_FLBLOCKS | OBD_MD_FLCTIME | OBD_MD_FLMTIME;
719
720         RETURN(error);
721 }
722
723 /* buffer must lie in user memory here */
724 static int filter_read(struct obd_conn *conn, struct obdo *oa, char *buf,
725                         obd_size *count, obd_off offset)
726 {
727         struct file * file;
728         unsigned long retval;
729         int err;
730         ENTRY;
731
732         if (!gen_client(conn)) {
733                 CDEBUG(D_IOCTL, "invalid client %u\n", conn->oc_id);
734                 RETURN(-EINVAL);
735         }
736
737         file = filter_obj_open(conn->oc_dev, oa->o_id, oa->o_mode);
738         if (IS_ERR(file))
739                 RETURN(PTR_ERR(file));
740
741         /* count doubles as retval */
742         retval = file->f_op->read(file, buf, *count, (loff_t *)&offset);
743         filp_close(file, 0);
744
745         if ( retval >= 0 ) {
746                 err = 0;
747                 *count = retval;
748         } else {
749                 err = retval;
750                 *count = 0;
751         }
752
753         return err;
754 }
755
756
757 /* buffer must lie in user memory here */
758 static int filter_write(struct obd_conn *conn, struct obdo *oa, char *buf,
759                          obd_size *count, obd_off offset)
760 {
761         struct obd_run_ctxt saved;
762         int err;
763         struct file * file;
764         unsigned long retval;
765         ENTRY;
766
767         if (!gen_client(conn)) {
768                 CDEBUG(D_IOCTL, "invalid client %u\n", conn->oc_id);
769                 RETURN(-EINVAL);
770         }
771
772         file = filter_obj_open(conn->oc_dev, oa->o_id, oa->o_mode);
773         if (IS_ERR(file))
774                 RETURN(PTR_ERR(file));
775
776         /* count doubles as retval */
777         push_ctxt(&saved, &conn->oc_dev->u.filter.fo_ctxt);
778         retval = file->f_op->write(file, buf, *count, (loff_t *)&offset);
779         pop_ctxt(&saved);
780         filp_close(file, 0);
781
782         if ( retval >= 0 ) {
783                 err = 0;
784                 *count = retval;
785                 EXIT;
786         } else {
787                 err = retval;
788                 *count = 0;
789                 EXIT;
790         }
791
792         return err;
793 } /* filter_write */
794
795 static int filter_pgcache_brw(int rw, struct obd_conn *conn, obd_count num_oa,
796                                struct obdo **oa, obd_count *oa_bufs,
797                                struct page **pages, obd_size *count,
798                                obd_off *offset, obd_flag *flags, void *callback)
799 {
800         struct obd_run_ctxt      saved;
801         struct super_block      *sb;
802         int                      onum;          /* index to oas */
803         int                      pnum;          /* index to pages (bufs) */
804         unsigned long            retval;
805         int                      error;
806         struct file             *file;
807         ENTRY;
808
809         if (!gen_client(conn)) {
810                 CDEBUG(D_IOCTL, "invalid client %u\n", conn->oc_id);
811                 RETURN(-EINVAL);
812         }
813
814         sb = conn->oc_dev->u.filter.fo_sb;
815         // if (rw == WRITE)
816         push_ctxt(&saved, &conn->oc_dev->u.filter.fo_ctxt);
817         pnum = 0; /* pnum indexes buf 0..num_pages */
818         for (onum = 0; onum < num_oa; onum++) {
819                 int pg;
820
821                 file = filter_obj_open(conn->oc_dev, oa[onum]->o_id,
822                                        oa[onum]->o_mode);
823                 if (IS_ERR(file))
824                         GOTO(out, retval = PTR_ERR(file));
825
826                 /* count doubles as retval */
827                 for (pg = 0; pg < oa_bufs[onum]; pg++) {
828                         CDEBUG(D_INODE, "OP %d obdo no/pno: (%d,%d) (%ld,%ld) "
829                                "off count (%Ld,%Ld)\n",
830                                rw, onum, pnum, file->f_dentry->d_inode->i_ino,
831                                (unsigned long)offset[pnum] >> PAGE_CACHE_SHIFT,
832                                (unsigned long long)offset[pnum],
833                                (unsigned long long)count[pnum]);
834                         if (rw == WRITE) {
835                                 loff_t off;
836                                 char *buffer;
837                                 off = offset[pnum];
838                                 buffer = kmap(pages[pnum]);
839                                 retval = file->f_op->write(file, buffer, count[pnum], &off);
840                                 kunmap(pages[pnum]);
841                                 CDEBUG(D_INODE, "retval %ld\n", retval);
842                         } else {
843                                 loff_t off = offset[pnum];
844                                 char *buffer = kmap(pages[pnum]);
845
846                                 if (off >= file->f_dentry->d_inode->i_size) {
847                                         memset(buffer, 0, count[pnum]);
848                                         retval = count[pnum];
849                                 } else {
850                                         retval = file->f_op->read(file, buffer, count[pnum], &off);
851                                 }
852                                 kunmap(pages[pnum]);
853
854                                 if (retval != count[pnum]) {
855                                         filp_close(file, 0);
856                                         GOTO(out, retval = -EIO);
857                                 }
858                                 CDEBUG(D_INODE, "retval %ld\n", retval);
859                         }
860                         pnum++;
861                 }
862                 /* sizes and blocks are set by generic_file_write */
863                 /* ctimes/mtimes will follow with a setattr call */
864                 filp_close(file, 0);
865         }
866
867         EXIT;
868 out:
869         // if (rw == WRITE)
870         pop_ctxt(&saved);
871         error = (retval >= 0) ? 0 : retval;
872         return error;
873 }
874
875
876 struct inode *ioobj_to_inode(struct obd_conn *conn, struct obd_ioobj *o)
877 {
878         struct super_block *sb = conn->oc_dev->u.filter.fo_sb;
879         struct inode *inode = NULL;
880         ENTRY;
881
882         if (!sb || !sb->s_dev) {
883                 CDEBUG(D_SUPER, "fatal: device not initialized.\n");
884                 RETURN(NULL);
885         }
886
887         if ( !o->ioo_id ) {
888                 CDEBUG(D_INODE, "fatal: invalid obdo %lu\n", (long)o->ioo_id);
889                 RETURN(NULL);
890         }
891
892         inode = filter_inode_from_obj(conn->oc_dev, o->ioo_id, S_IFREG);
893         if (!inode || inode->i_nlink == 0 || is_bad_inode(inode)) {
894                 CERROR("from obdo - fatal: invalid inode %ld (%s).\n",
895                        (long)o->ioo_id, inode ? inode->i_nlink ? "bad inode" :
896                        "no links" : "NULL");
897                 iput(inode);
898                 RETURN(NULL);
899         }
900
901         RETURN(inode);
902 }
903
904 /*
905  * Calculate the number of buffer credits needed to write multiple pages in
906  * a single ext3/extN transaction.  No, this shouldn't be here, but as yet
907  * ext3 doesn't have a nice API for calculating this sort of thing in advance.
908  *
909  * See comment above ext3_writepage_trans_blocks for details.  We assume
910  * no data journaling is being done, but it does allow for all of the pages
911  * being non-contiguous.  If we are guaranteed contiguous pages we could
912  * reduce the number of (d)indirect blocks a lot.
913  *
914  * With N blocks per page and P pages, for each inode we have at most:
915  * N*P indirect
916  * min(N*P, blocksize/4 + 1) dindirect blocks
917  * 1 tindirect
918  *
919  * For the entire filesystem, we have at most:
920  * min(sum(nindir + P), ngroups) bitmap blocks (from the above)
921  * min(sum(nindir + P), gdblocks) group descriptor blocks (from the above)
922  * 1 inode block
923  * 1 superblock
924  * 2 * EXT3_SINGLEDATA_TRANS_BLOCKS for the quota files
925  */
926 static int ext3_credits_needed(struct super_block *sb, int objcount,
927                                struct obd_ioobj *obj)
928 {
929         struct obd_ioobj *o = obj;
930         int blockpp = 1 << (PAGE_CACHE_SHIFT - sb->s_blocksize_bits);
931         int addrpp = EXT3_ADDR_PER_BLOCK(sb) * blockpp;
932         int nbitmaps = 0;
933         int ngdblocks = 0;
934         int needed = objcount + 1;
935         int i;
936
937         for (i = 0; i < objcount; i++, o++) {
938                 int nblocks = o->ioo_bufcnt * blockpp;
939                 int ndindirect = min(nblocks, addrpp + 1);
940                 int nindir = nblocks + ndindirect + 1;
941
942                 nbitmaps += nindir + nblocks;
943                 ngdblocks += nindir + nblocks;
944
945                 needed += nindir;
946         }
947
948         if (nbitmaps > EXT3_SB(sb)->s_groups_count)
949                 nbitmaps = EXT3_SB(sb)->s_groups_count;
950         if (ngdblocks > EXT3_SB(sb)->s_gdb_count)
951                 ngdblocks = EXT3_SB(sb)->s_gdb_count;
952
953         needed += nbitmaps + ngdblocks;
954
955 #ifdef CONFIG_QUOTA
956         /* We assume that there will be 1 bit set in s_dquot.flags for each
957          * quota file that is active.  This is at least true for now.
958          */
959         needed += hweight32(sb_any_quota_enabled(sb)) *
960                 EXT3_SINGLEDATA_TRANS_BLOCKS;
961 #endif
962
963         return needed;
964 }
965
966 /* We have to start a huge journal transaction here to hold all of the
967  * metadata for the pages being written here.  This is necessitated by
968  * the fact that we do lots of prepare_write operations before we do
969  * any of the matching commit_write operations, so even if we split
970  * up to use "smaller" transactions none of them could complete until
971  * all of them were opened.  By having a single journal transaction,
972  * we eliminate duplicate reservations for common blocks like the
973  * superblock and group descriptors or bitmaps.
974  *
975  * We will start the transaction here, but each prepare_write will
976  * add a refcount to the transaction, and each commit_write will
977  * remove a refcount.  The transaction will be closed when all of
978  * the pages have been written.
979  */
980 static void *ext3_filter_journal_start(struct filter_obd *filter,
981                                        int objcount, struct obd_ioobj *obj,
982                                        int niocount, struct niobuf_remote *nb)
983 {
984         journal_t *journal = NULL;
985         handle_t *handle = NULL;
986         int needed;
987
988         /* Assumes ext3 and extN have same sb_info layout, but avoids issues
989          * with having extN built properly before filterobd for now.
990          */
991         journal = EXT3_SB(filter->fo_sb)->s_journal;
992         needed = ext3_credits_needed(filter->fo_sb, objcount, obj);
993
994         /* The number of blocks we could _possibly_ dirty can very large.
995          * We reduce our request if it is absurd (and we couldn't get that
996          * many credits for a single handle anyways).
997          *
998          * At some point we have to limit the size of I/Os sent at one time,
999          * increase the size of the journal, or we have to calculate the
1000          * actual journal requirements more carefully by checking all of
1001          * the blocks instead of being maximally pessimistic.  It remains to
1002          * be seen if this is a real problem or not.
1003          */
1004         if (needed > journal->j_max_transaction_buffers) {
1005                 CERROR("want too many journal credits (%d) using %d instead\n",
1006                        needed, journal->j_max_transaction_buffers);
1007                 needed = journal->j_max_transaction_buffers;
1008         }
1009
1010         handle = journal_start(journal, needed);
1011         if (IS_ERR(handle))
1012                 CERROR("can't get handle for %d credits: rc = %ld\n", needed,
1013                        PTR_ERR(handle));
1014
1015         return(handle);
1016 }
1017
1018 static void *filter_journal_start(void **journal_save,
1019                                   struct filter_obd *filter,
1020                                   int objcount, struct obd_ioobj *obj,
1021                                   int niocount, struct niobuf_remote *nb)
1022 {
1023         void *handle = NULL;
1024
1025         /* This may not be necessary - we probably never have a
1026          * transaction started when we enter here, so we can
1027          * remove the saving of the journal state entirely.
1028          * For now leave it in just to see if it ever happens.
1029          */
1030         *journal_save = current->journal_info;
1031         if (*journal_save) {
1032                 CERROR("Already have handle %p???\n", *journal_save);
1033                 LBUG();
1034                 current->journal_info = NULL;
1035         }
1036
1037         if (!strcmp(filter->fo_fstype, "ext3") ||
1038             !strcmp(filter->fo_fstype, "extN"))
1039                 handle = ext3_filter_journal_start(filter, objcount, obj,
1040                                                    niocount, nb);
1041         return handle;
1042 }
1043
1044 static int ext3_filter_journal_stop(void *handle)
1045 {
1046         int rc;
1047
1048         /* We got a refcount on the handle for each call to prepare_write,
1049          * so we can drop the "parent" handle here to avoid the need for
1050          * osc to call back into filterobd to close the handle.  The
1051          * remaining references will be dropped in commit_write.
1052          */
1053         rc = journal_stop((handle_t *)handle);
1054
1055         return rc;
1056 }
1057
1058 static int filter_journal_stop(void *journal_save, struct filter_obd *filter,
1059                                void *handle)
1060 {
1061         int rc = 0;
1062
1063         if (!strcmp(filter->fo_fstype, "ext3") ||
1064             !strcmp(filter->fo_fstype, "extN"))
1065                 rc = ext3_filter_journal_stop(handle);
1066
1067         current->journal_info = journal_save;
1068
1069         return rc;
1070 }
1071
1072 struct page *filter_get_page_write(struct inode *inode, unsigned long index,
1073                                    struct niobuf_local *lnb)
1074 {
1075         struct address_space *mapping = inode->i_mapping;
1076         struct page *page;
1077         int rc;
1078
1079         //ASSERT_PAGE_INDEX(index, GOTO(err, rc = -EINVAL));
1080         page = grab_cache_page_nowait(mapping, index); /* locked page */
1081
1082         /* This page is currently locked, so we grab a new one temporarily */
1083         if (!page) {
1084                 unsigned long addr;
1085                 addr = __get_free_pages(GFP_KERNEL, 0);
1086                 if (!addr) {
1087                         CERROR("no memory for a temp page\n");
1088                         LBUG();
1089                         GOTO(err, rc = -ENOMEM);
1090                 }
1091                 page = virt_to_page(addr);
1092                 kmap(page);
1093                 page->index = index;
1094                 lnb->flags |= N_LOCAL_TEMP_PAGE;
1095         } else if (!IS_ERR(page)) {
1096                 /* Note: Called with "O" and "PAGE_SIZE" this is essentially
1097                  * a no-op for most filesystems, because we write the whole
1098                  * page.  For partial-page I/O this will read in the page.
1099                  */
1100                 kmap(page);
1101                 rc = mapping->a_ops->prepare_write(NULL, page, 0, PAGE_SIZE);
1102                 if (rc) {
1103                         CERROR("page index %lu, rc = %d\n", index, rc);
1104                         if (rc != -ENOSPC)
1105                                 LBUG();
1106                         GOTO(err_unlock, rc);
1107                 }
1108                 /* XXX not sure if we need this if we are overwriting page */
1109                 if (PageError(page)) {
1110                         CERROR("error on page index %lu, rc = %d\n", index, rc);
1111                         LBUG();
1112                         GOTO(err_unlock, rc = -EIO);
1113                 }
1114         }
1115         return page;
1116
1117 err_unlock:
1118         unlock_page(page);
1119         lustre_put_page(page);
1120 err:
1121         return ERR_PTR(rc);
1122 }
1123
1124 static int filter_preprw(int cmd, struct obd_conn *conn,
1125                          int objcount, struct obd_ioobj *obj,
1126                          int niocount, struct niobuf_remote *nb,
1127                          struct niobuf_local *res, void **desc_private)
1128 {
1129         struct obd_run_ctxt saved;
1130         struct obd_device *obddev;
1131         struct obd_ioobj *o = obj;
1132         struct niobuf_remote *b = nb;
1133         struct niobuf_local *r = res;
1134         void *journal_save = NULL;
1135         int rc = 0;
1136         int i;
1137         ENTRY;
1138
1139         memset(res, 0, sizeof(*res) * niocount);
1140         obddev = conn->oc_dev;
1141
1142         push_ctxt(&saved, &obddev->u.filter.fo_ctxt);
1143
1144         if (cmd == OBD_BRW_WRITE) {
1145                 *desc_private = filter_journal_start(&journal_save,
1146                                                      &obddev->u.filter,
1147                                                      objcount, obj, niocount,
1148                                                      nb);
1149                 if (IS_ERR(*desc_private))
1150                         GOTO(out_ctxt, rc = PTR_ERR(*desc_private));
1151         }
1152
1153         for (i = 0; i < objcount; i++, o++) {
1154                 struct dentry *dentry;
1155                 struct inode *inode;
1156                 int j;
1157
1158                 dentry = filter_fid2dentry(obddev,
1159                                            filter_parent(obddev, S_IFREG),
1160                                            o->ioo_id, S_IFREG);
1161                 if (IS_ERR(dentry))
1162                         GOTO(out_ctxt, rc = PTR_ERR(dentry));
1163                 inode = dentry->d_inode;
1164
1165                 for (j = 0; j < o->ioo_bufcnt; j++, b++, r++) {
1166                         unsigned long index = b->offset >> PAGE_SHIFT;
1167                         struct page *page;
1168
1169                         /* XXX  We _might_ change this to a dcount if we
1170                          * wanted to pass a dentry pointer in the niobuf
1171                          * to avoid doing so many igets on an inode we
1172                          * already have.  It appears to be solely for the
1173                          * purpose of having a refcount that we can drop
1174                          * in commitrw where we get one call per page.
1175                          */
1176                         if (j > 0)
1177                                 r->dentry = dget(dentry);
1178                         else
1179                                 r->dentry = dentry;
1180
1181                         /* FIXME: we need to iput all inodes on error */
1182                         if (!inode)
1183                                 GOTO(out_ctxt, rc = -EINVAL);
1184
1185                         if (cmd == OBD_BRW_WRITE) {
1186                                 page = filter_get_page_write(inode, index, r);
1187
1188                                 /* We unlock the page to avoid deadlocks with
1189                                  * the page I/O because we are preparing
1190                                  * multiple pages at one time and we have lock
1191                                  * ordering problems.  Lustre I/O and disk I/O
1192                                  * on this page can happen concurrently.
1193                                  */
1194                         } else
1195                                 page = lustre_get_page_read(inode, index);
1196
1197                         /* FIXME: we need to clean up here... */
1198                         if (IS_ERR(page))
1199                                 GOTO(out_ctxt, rc = PTR_ERR(page));
1200
1201                         r->addr = page_address(page);
1202                         r->offset = b->offset;
1203                         r->page = page;
1204                         r->len = PAGE_SIZE;
1205                 }
1206         }
1207
1208         if (cmd == OBD_BRW_WRITE) {
1209                 /* FIXME: need to clean up here */
1210                 rc = filter_journal_stop(journal_save, &obddev->u.filter,
1211                                          *desc_private);
1212         }
1213 out_ctxt:
1214         pop_ctxt(&saved);
1215         RETURN(rc);
1216 }
1217
1218 static int filter_write_locked_page(struct niobuf_local *lnb)
1219 {
1220         struct page *lpage;
1221         int rc;
1222
1223         lpage = lustre_get_page_write(lnb->dentry->d_inode, lnb->page->index);
1224         /* XXX */
1225
1226         memcpy(page_address(lpage), kmap(lnb->page), PAGE_SIZE);
1227         kunmap(lnb->page);
1228         __free_pages(lnb->page, 0);
1229
1230         rc = lustre_commit_page(lpage, 0, PAGE_SIZE);
1231         dput(lnb->dentry);
1232
1233         return rc;
1234 }
1235
1236 static int filter_commitrw(int cmd, struct obd_conn *conn,
1237                            int objcount, struct obd_ioobj *obj,
1238                            int niocount, struct niobuf_local *res,
1239                            void *private)
1240 {
1241         struct obd_run_ctxt saved;
1242         struct obd_ioobj *o = obj;
1243         struct niobuf_local *r = res;
1244         void *journal_save;
1245         int found_locked = 0;
1246         int i;
1247         ENTRY;
1248
1249         // if (cmd == OBD_BRW_WRITE)
1250         push_ctxt(&saved, &conn->oc_dev->u.filter.fo_ctxt);
1251         journal_save = current->journal_info;
1252         if (journal_save)
1253                 CERROR("Existing handle %p???\n", journal_save);
1254         current->journal_info = private;
1255         for (i = 0; i < objcount; i++, obj++) {
1256                 int j;
1257                 for (j = 0 ; j < o->ioo_bufcnt ; j++, r++) {
1258                         struct page *page = r->page;
1259
1260                         /* If there was an error setting up a particular page
1261                          * for I/O we still need to continue with the rest of
1262                          * the pages in order to balance prepate/commit_write
1263                          * calls, and to complete as much I/O as possible.
1264                          */
1265                         if (!page)
1266                                 LBUG();
1267
1268                         if (r->flags & N_LOCAL_TEMP_PAGE) {
1269                                 found_locked = 1;
1270                                 continue;
1271                         }
1272
1273                         if (cmd == OBD_BRW_WRITE) {
1274                                 int rc;
1275                                 rc = lustre_commit_page(page, 0, PAGE_SIZE);
1276
1277                                 /* FIXME: still need to iput the other inodes */
1278                                 if (rc)
1279                                         RETURN(rc);
1280                         } else
1281                                 lustre_put_page(page);
1282
1283                         CDEBUG(D_INODE,
1284                                "put inode %p (%ld), count = %d, nlink = %d\n",
1285                                page->mapping->host,
1286                                page->mapping->host->i_ino,
1287                                atomic_read(&page->mapping->host->i_count) - 1,
1288                                page->mapping->host->i_nlink);
1289                         dput(r->dentry);
1290                 }
1291         }
1292         if (!found_locked)
1293                 goto out;
1294
1295         for (i = 0; i < objcount; i++, obj++) {
1296                 int j;
1297                 for (j = 0 ; j < o->ioo_bufcnt ; j++, r++) {
1298                         int rc;
1299                         if (!(r->flags & N_LOCAL_TEMP_PAGE))
1300                                 continue;
1301
1302                         rc = filter_write_locked_page(r);
1303                         /* XXX */
1304                 }
1305         }
1306
1307 out:
1308         current->journal_info = journal_save;
1309         pop_ctxt(&saved);
1310         RETURN(0);
1311 }
1312
1313 static int filter_statfs(struct obd_conn *conn, struct statfs * statfs)
1314 {
1315         struct super_block *sb;
1316         int err;
1317         ENTRY;
1318
1319         if (!gen_client(conn)) {
1320                 CDEBUG(D_IOCTL, "invalid client %u\n", conn->oc_id);
1321                 RETURN(-EINVAL);
1322         }
1323
1324         sb = conn->oc_dev->u.filter.fo_sb;
1325
1326         err = sb->s_op->statfs(sb, statfs);
1327         RETURN(err);
1328 } /* filter_statfs */
1329
1330
1331 static int filter_get_info(struct obd_conn *conn, obd_count keylen,
1332                            void *key, obd_count *vallen, void **val)
1333 {
1334         struct obd_device *obddev;
1335         struct obd_client * cli;
1336         ENTRY;
1337
1338         if (!(cli = gen_client(conn))) {
1339                 CDEBUG(D_IOCTL, "invalid client %u\n", conn->oc_id);
1340                 RETURN(-EINVAL);
1341         }
1342
1343         obddev = conn->oc_dev;
1344
1345         if ( keylen == strlen("blocksize") &&
1346              memcmp(key, "blocksize", keylen) == 0 ) {
1347                 *vallen = sizeof(long);
1348                 *val = (void *)(long)obddev->u.filter.fo_sb->s_blocksize;
1349                 RETURN(0);
1350         }
1351
1352         if ( keylen == strlen("blocksize_bits") &&
1353              memcmp(key, "blocksize_bits", keylen) == 0 ){
1354                 *vallen = sizeof(long);
1355                 *val = (void *)(long)obddev->u.filter.fo_sb->s_blocksize_bits;
1356                 RETURN(0);
1357         }
1358
1359         if ( keylen == strlen("root_ino") &&
1360              memcmp(key, "root_ino", keylen) == 0 ){
1361                 *vallen = sizeof(long);
1362                 *val = (void *)(long)FILTER_ROOTINO;
1363                 RETURN(0);
1364         }
1365
1366         CDEBUG(D_IOCTL, "invalid key\n");
1367         RETURN(-EINVAL);
1368 }
1369
1370
1371 static struct obd_ops filter_obd_ops = {
1372         o_get_info:    filter_get_info,
1373         o_setup:       filter_setup,
1374         o_cleanup:     filter_cleanup,
1375         o_connect:     filter_connect,
1376         o_disconnect:  filter_disconnect,
1377         o_statfs:      filter_statfs,
1378         o_getattr:     filter_getattr,
1379         o_create:      filter_create,
1380         o_setattr:     filter_setattr,
1381         o_destroy:     filter_destroy,
1382         o_open:        filter_open,
1383         o_close:       filter_close,
1384         o_read:        filter_read,
1385         o_write:       filter_write,
1386         o_brw:         filter_pgcache_brw,
1387         o_punch:       filter_truncate,
1388         o_preprw:      filter_preprw,
1389         o_commitrw:    filter_commitrw
1390 #if 0
1391         o_preallocate: filter_preallocate_inodes,
1392         o_migrate:     filter_migrate,
1393         o_copy:        gen_copy_data,
1394         o_iterate:     filter_iterate
1395 #endif
1396 };
1397
1398
1399 static int __init obdfilter_init(void)
1400 {
1401         printk(KERN_INFO "Filtering OBD driver  v0.001, braam@clusterfs.com\n");
1402         return obd_register_type(&filter_obd_ops, OBD_FILTER_DEVICENAME);
1403 }
1404
1405 static void __exit obdfilter_exit(void)
1406 {
1407         obd_unregister_type(OBD_FILTER_DEVICENAME);
1408 }
1409
1410 MODULE_AUTHOR("Peter J. Braam <braam@clusterfs.com>");
1411 MODULE_DESCRIPTION("Lustre Filtering OBD driver v1.0");
1412 MODULE_LICENSE("GPL");
1413
1414 module_init(obdfilter_init);
1415 module_exit(obdfilter_exit);