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