Whamcloud - gitweb
Fix for many-clients-and-server-on-same-node deadlock. One server task
[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/obdfilter/filter.c
5  *
6  * Copyright (C) 2001, 2002 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  * and Andreas Dilger <adilger@clusterfs.com>
13  */
14
15 #define EXPORT_SYMTAB
16 #define DEBUG_SUBSYSTEM S_FILTER
17
18 #include <linux/module.h>
19 #include <linux/pagemap.h>
20 #include <linux/fs.h>
21 #include <linux/dcache.h>
22 #include <linux/obd_class.h>
23 #include <linux/lustre_dlm.h>
24 #include <linux/obd_filter.h>
25 #include <linux/ext3_jbd.h>
26 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
27 #include <linux/extN_jbd.h>
28 #endif
29 #include <linux/quotaops.h>
30 #include <linux/init.h>
31 #include <linux/random.h>
32 #include <linux/stringify.h>
33 #include <linux/lprocfs_status.h>
34
35 extern struct lprocfs_vars status_class_var[];
36 extern struct lprocfs_vars status_var_nm_1[];
37
38 static kmem_cache_t *filter_open_cache;
39 static kmem_cache_t *filter_dentry_cache;
40
41 #define FILTER_ROOTINO 2
42 #define FILTER_ROOTINO_STR __stringify(FILTER_ROOTINO)
43
44 #define S_SHIFT 12
45 static char *obd_type_by_mode[S_IFMT >> S_SHIFT] = {
46         [0]                     NULL,
47         [S_IFREG >> S_SHIFT]    "R",
48         [S_IFDIR >> S_SHIFT]    "D",
49         [S_IFCHR >> S_SHIFT]    "C",
50         [S_IFBLK >> S_SHIFT]    "B",
51         [S_IFIFO >> S_SHIFT]    "F",
52         [S_IFSOCK >> S_SHIFT]   "S",
53         [S_IFLNK >> S_SHIFT]    "L"
54 };
55
56 static inline const char *obd_mode_to_type(int mode)
57 {
58         return obd_type_by_mode[(mode & S_IFMT) >> S_SHIFT];
59 }
60
61 /* write the pathname into the string */
62 static int filter_id(char *buf, obd_id id, obd_mode mode)
63 {
64         return sprintf(buf, "O/%s/"LPU64, obd_mode_to_type(mode), id);
65 }
66
67 static inline void f_dput(struct dentry *dentry)
68 {
69         /* Can't go inside filter_ddelete because it can block */
70         CDEBUG(D_INODE, "putting %s: %p, count = %d\n",
71                dentry->d_name.name, dentry, atomic_read(&dentry->d_count) - 1);
72         LASSERT(atomic_read(&dentry->d_count) > 0);
73
74         dput(dentry);
75 }
76
77 /* Not racy w.r.t. others, because we are the only user of this dentry */
78 static void filter_drelease(struct dentry *dentry)
79 {
80         if (dentry->d_fsdata)
81                 kmem_cache_free(filter_dentry_cache, dentry->d_fsdata);
82 }
83
84 struct dentry_operations filter_dops = {
85         .d_release = filter_drelease,
86 };
87
88 /* setup the object store with correct subdirectories */
89 static int filter_prep(struct obd_device *obd)
90 {
91         struct obd_run_ctxt saved;
92         struct filter_obd *filter = &obd->u.filter;
93         struct dentry *dentry;
94         struct dentry *root;
95         struct file *file;
96         struct inode *inode;
97         int rc = 0;
98         __u64 lastobjid = 2;
99         int mode = 0;
100
101         push_ctxt(&saved, &filter->fo_ctxt, NULL);
102         dentry = simple_mkdir(current->fs->pwd, "O", 0700);
103         CDEBUG(D_INODE, "got/created O: %p\n", dentry);
104         if (IS_ERR(dentry)) {
105                 rc = PTR_ERR(dentry);
106                 CERROR("cannot open/create O: rc = %d\n", rc);
107                 GOTO(out, rc);
108         }
109         filter->fo_dentry_O = dentry;
110         dentry = simple_mkdir(current->fs->pwd, "P", 0700);
111         CDEBUG(D_INODE, "got/created P: %p\n", dentry);
112         if (IS_ERR(dentry)) {
113                 rc = PTR_ERR(dentry);
114                 CERROR("cannot open/create P: rc = %d\n", rc);
115                 GOTO(out_O, rc);
116         }
117         f_dput(dentry);
118         dentry = simple_mkdir(current->fs->pwd, "D", 0700);
119         CDEBUG(D_INODE, "got/created D: %p\n", dentry);
120         if (IS_ERR(dentry)) {
121                 rc = PTR_ERR(dentry);
122                 CERROR("cannot open/create D: rc = %d\n", rc);
123                 GOTO(out_O, rc);
124         }
125
126         root = simple_mknod(dentry, FILTER_ROOTINO_STR, S_IFREG | 0755);
127         f_dput(dentry);
128         if (IS_ERR(root)) {
129                 rc = PTR_ERR(root);
130                 CERROR("OBD filter: cannot open/create root %d: rc = %d\n",
131                        FILTER_ROOTINO, rc);
132                 GOTO(out_O, rc);
133         }
134         f_dput(root);
135
136         /*
137          * Create directories and/or get dentries for each object type.
138          * This saves us from having to do multiple lookups for each one.
139          */
140         for (mode = 0; mode < (S_IFMT >> S_SHIFT); mode++) {
141                 char *type = obd_type_by_mode[mode];
142
143                 if (!type) {
144                         filter->fo_dentry_O_mode[mode] = NULL;
145                         continue;
146                 }
147                 dentry = simple_mkdir(filter->fo_dentry_O, type, 0700);
148                 CDEBUG(D_INODE, "got/created O/%s: %p\n", type, dentry);
149                 if (IS_ERR(dentry)) {
150                         rc = PTR_ERR(dentry);
151                         CERROR("cannot create O/%s: rc = %d\n", type, rc);
152                         GOTO(out_O_mode, rc);
153                 }
154                 filter->fo_dentry_O_mode[mode] = dentry;
155         }
156
157         file = filp_open("D/status", O_RDWR | O_CREAT, 0700);
158         if ( !file || IS_ERR(file) ) {
159                 rc = PTR_ERR(file);
160                 CERROR("OBD filter: cannot open/create status %s: rc = %d\n",
161                        "D/status", rc);
162                 GOTO(out_O_mode, rc);
163         }
164
165         /* steal operations */
166         inode = file->f_dentry->d_inode;
167         filter->fo_fop = file->f_op;
168         filter->fo_iop = inode->i_op;
169         filter->fo_aops = inode->i_mapping->a_ops;
170
171         if (inode->i_size == 0) {
172                 __u64 disk_lastobjid = cpu_to_le64(lastobjid);
173                 ssize_t retval = file->f_op->write(file,(char *)&disk_lastobjid,
174                                                    sizeof(disk_lastobjid),
175                                                    &file->f_pos);
176                 if (retval != sizeof(disk_lastobjid)) {
177                         CDEBUG(D_INODE,"OBD filter: error writing lastobjid\n");
178                         filp_close(file, 0);
179                         GOTO(out_O_mode, rc = -EIO);
180                 }
181         } else {
182                 __u64 disk_lastobjid;
183                 ssize_t retval = file->f_op->read(file, (char *)&disk_lastobjid,
184                                                   sizeof(disk_lastobjid),
185                                                   &file->f_pos);
186                 if (retval != sizeof(disk_lastobjid)) {
187                         CDEBUG(D_INODE,"OBD filter: error reading lastobjid\n");
188                         filp_close(file, 0);
189                         GOTO(out_O_mode, rc = -EIO);
190                 }
191                 lastobjid = le64_to_cpu(disk_lastobjid);
192         }
193         filter->fo_lastobjid = lastobjid;
194         filp_close(file, 0);
195
196         rc = 0;
197  out:
198         pop_ctxt(&saved);
199
200         return(rc);
201
202 out_O_mode:
203         while (mode-- > 0) {
204                 struct dentry *dentry = filter->fo_dentry_O_mode[mode];
205                 if (dentry) {
206                         f_dput(dentry);
207                         filter->fo_dentry_O_mode[mode] = NULL;
208                 }
209         }
210 out_O:
211         f_dput(filter->fo_dentry_O);
212         filter->fo_dentry_O = NULL;
213         goto out;
214 }
215
216 /* cleanup the filter: write last used object id to status file */
217 static void filter_post(struct obd_device *obd)
218 {
219         struct obd_run_ctxt saved;
220         struct filter_obd *filter = &obd->u.filter;
221         __u64 disk_lastobjid;
222         long rc;
223         struct file *file;
224         int mode;
225
226         push_ctxt(&saved, &filter->fo_ctxt, NULL);
227         file = filp_open("D/status", O_RDWR | O_CREAT, 0700);
228         if (IS_ERR(file)) {
229                 CERROR("OBD filter: cannot create status file\n");
230                 goto out;
231         }
232
233         file->f_pos = 0;
234         disk_lastobjid = cpu_to_le64(filter->fo_lastobjid);
235         rc = file->f_op->write(file, (char *)&disk_lastobjid,
236                        sizeof(disk_lastobjid), &file->f_pos);
237         if (rc != sizeof(disk_lastobjid))
238                 CERROR("OBD filter: error writing lastobjid: rc = %ld\n", rc);
239
240         rc = filp_close(file, NULL);
241         if (rc)
242                 CERROR("OBD filter: cannot close status file: rc = %ld\n", rc);
243
244         for (mode = 0; mode < (S_IFMT >> S_SHIFT); mode++) {
245                 struct dentry *dentry = filter->fo_dentry_O_mode[mode];
246                 if (dentry) {
247                         f_dput(dentry);
248                         filter->fo_dentry_O_mode[mode] = NULL;
249                 }
250         }
251         f_dput(filter->fo_dentry_O);
252 out:
253         pop_ctxt(&saved);
254 }
255
256
257 static __u64 filter_next_id(struct obd_device *obd)
258 {
259         obd_id id;
260
261         spin_lock(&obd->u.filter.fo_objidlock);
262         id = ++obd->u.filter.fo_lastobjid;
263         spin_unlock(&obd->u.filter.fo_objidlock);
264
265         /* FIXME: write the lastobjid to disk here */
266         return id;
267 }
268
269 /* how to get files, dentries, inodes from object id's */
270 /* parent i_sem is already held if needed for exclusivity */
271 static struct dentry *filter_fid2dentry(struct obd_device *obd,
272                                         struct dentry *dparent,
273                                         __u64 id, __u32 type)
274 {
275         struct super_block *sb = obd->u.filter.fo_sb;
276         struct dentry *dchild;
277         char name[32];
278         int len;
279         ENTRY;
280
281         if (!sb || !sb->s_dev) {
282                 CERROR("fatal: device not initialized.\n");
283                 RETURN(ERR_PTR(-ENXIO));
284         }
285
286         if (id == 0) {
287                 CERROR("fatal: invalid object #0\n");
288                 LBUG();
289                 RETURN(ERR_PTR(-ESTALE));
290         }
291
292         if (!(type & S_IFMT)) {
293                 CERROR("OBD %s, object "LPU64" has bad type: %o\n",
294                        __FUNCTION__, id, type);
295                 RETURN(ERR_PTR(-EINVAL));
296         }
297
298         len = sprintf(name, LPU64, id);
299         CDEBUG(D_INODE, "opening object O/%s/%s\n", obd_mode_to_type(type),
300                name);
301         dchild = lookup_one_len(name, dparent, len);
302         if (IS_ERR(dchild)) {
303                 CERROR("child lookup error %ld\n", PTR_ERR(dchild));
304                 RETURN(dchild);
305         }
306
307         CDEBUG(D_INODE, "got child obj O/%s/%s: %p, count = %d\n",
308                obd_mode_to_type(type), name, dchild,
309                atomic_read(&dchild->d_count));
310
311         LASSERT(atomic_read(&dchild->d_count) > 0);
312
313         RETURN(dchild);
314 }
315
316 static inline struct dentry *filter_parent(struct obd_device *obd,
317                                            obd_mode mode)
318 {
319         struct filter_obd *filter = &obd->u.filter;
320
321         return filter->fo_dentry_O_mode[(mode & S_IFMT) >> S_SHIFT];
322 }
323
324 static struct file *filter_obj_open(struct obd_export *export,
325                                     __u64 id, __u32 type)
326 {
327         struct filter_obd *filter = &export->exp_obd->u.filter;
328         struct super_block *sb = filter->fo_sb;
329         struct dentry *dentry;
330         struct filter_export_data *fed = &export->exp_filter_data;
331         struct filter_dentry_data *fdd;
332         struct filter_file_data *ffd;
333         struct obd_run_ctxt saved;
334         char name[24];
335         struct file *file;
336         ENTRY;
337
338         if (!sb || !sb->s_dev) {
339                 CERROR("fatal: device not initialized.\n");
340                 RETURN(ERR_PTR(-ENXIO));
341         }
342
343         if (!id) {
344                 CERROR("fatal: invalid obdo "LPU64"\n", id);
345                 RETURN(ERR_PTR(-ESTALE));
346         }
347
348         if (!(type & S_IFMT)) {
349                 CERROR("OBD %s, object "LPU64" has bad type: %o\n",
350                        __FUNCTION__, id, type);
351                 RETURN(ERR_PTR(-EINVAL));
352         }
353
354         ffd = kmem_cache_alloc(filter_open_cache, SLAB_KERNEL);
355         if (!ffd) {
356                 CERROR("obdfilter: out of memory\n");
357                 RETURN(ERR_PTR(-ENOMEM));
358         }
359
360         /* We preallocate this to avoid blocking while holding fo_fddlock */
361         fdd = kmem_cache_alloc(filter_dentry_cache, SLAB_KERNEL);
362         if (!fdd) {
363                 CERROR("obdfilter: out of memory\n");
364                 GOTO(out_ffd, file = ERR_PTR(-ENOMEM));
365         }
366
367         filter_id(name, id, type);
368         push_ctxt(&saved, &filter->fo_ctxt, NULL);
369         file = filp_open(name, O_RDONLY | O_LARGEFILE, 0 /* type? */);
370         pop_ctxt(&saved);
371
372         if (IS_ERR(file))
373                 GOTO(out_fdd, file);
374
375         dentry = file->f_dentry;
376         spin_lock(&filter->fo_fddlock);
377         if (dentry->d_fsdata) {
378                 spin_unlock(&filter->fo_fddlock);
379                 kmem_cache_free(filter_dentry_cache, fdd);
380                 fdd = dentry->d_fsdata;
381                 LASSERT(kmem_cache_validate(filter_dentry_cache, fdd));
382                 /* should only happen during client recovery */
383                 if (fdd->fdd_flags & FILTER_FLAG_DESTROY)
384                         CDEBUG(D_INODE,"opening destroyed object "LPX64"\n",id);
385                 atomic_inc(&fdd->fdd_open_count);
386         } else {
387                 atomic_set(&fdd->fdd_open_count, 1);
388                 fdd->fdd_flags = 0;
389                 /* If this is racy, then we can use {cmp}xchg and atomic_add */
390                 dentry->d_fsdata = fdd;
391                 spin_unlock(&filter->fo_fddlock);
392         }
393
394         get_random_bytes(&ffd->ffd_servercookie, sizeof(ffd->ffd_servercookie));
395         ffd->ffd_file = file;
396         file->private_data = ffd;
397
398         if (!dentry->d_op)
399                 dentry->d_op = &filter_dops;
400         else
401                 LASSERT(dentry->d_op == &filter_dops);
402
403         spin_lock(&fed->fed_lock);
404         list_add(&ffd->ffd_export_list, &fed->fed_open_head);
405         spin_unlock(&fed->fed_lock);
406
407         CDEBUG(D_INODE, "opening objid "LPX64": rc = %p\n", id, file);
408
409 out:
410         RETURN(file);
411
412 out_fdd:
413         kmem_cache_free(filter_dentry_cache, fdd);
414 out_ffd:
415         ffd->ffd_servercookie = DEAD_HANDLE_MAGIC;
416         kmem_cache_free(filter_open_cache, ffd);
417         goto out;
418 }
419
420 /* Caller must hold i_sem on dir_dentry->d_inode */
421 static int filter_destroy_internal(struct obd_device *obd,
422                                    struct dentry *dir_dentry,
423                                    struct dentry *object_dentry)
424 {
425         struct obd_run_ctxt saved;
426         struct inode *inode = object_dentry->d_inode;
427         int rc;
428         ENTRY;
429
430         if (inode->i_nlink != 1 || atomic_read(&inode->i_count) != 1) {
431                 CERROR("destroying objid %*s nlink = %d, count = %d\n",
432                        object_dentry->d_name.len,
433                        object_dentry->d_name.name,
434                        inode->i_nlink, atomic_read(&inode->i_count));
435         }
436
437         push_ctxt(&saved, &obd->u.filter.fo_ctxt, NULL);
438         rc = vfs_unlink(dir_dentry->d_inode, object_dentry);
439         /* XXX unlink from PENDING directory now too */
440         pop_ctxt(&saved);
441
442         if (rc)
443                 CERROR("error unlinking objid %*s: rc %d\n",
444                        object_dentry->d_name.len,
445                        object_dentry->d_name.name, rc);
446
447         RETURN(rc);
448 }
449
450 static int filter_close_internal(struct obd_device *obd,
451                                  struct filter_file_data *ffd)
452 {
453         struct file *filp = ffd->ffd_file;
454         struct dentry *object_dentry = dget(filp->f_dentry);
455         struct filter_dentry_data *fdd = object_dentry->d_fsdata;
456         int rc, rc2 = 0;
457         ENTRY;
458
459         LASSERT(filp->private_data == ffd);
460         LASSERT(fdd);
461
462         rc = filp_close(filp, 0);
463
464         if (atomic_dec_and_test(&fdd->fdd_open_count) &&
465             fdd->fdd_flags & FILTER_FLAG_DESTROY) {
466                 struct dentry *dir_dentry = filter_parent(obd, S_IFREG);
467
468                 down(&dir_dentry->d_inode->i_sem);
469                 rc2 = filter_destroy_internal(obd, dir_dentry, object_dentry);
470                 if (rc2 && !rc)
471                         rc = rc2;
472                 up(&dir_dentry->d_inode->i_sem);
473         }
474
475         f_dput(object_dentry);
476         kmem_cache_free(filter_open_cache, ffd);
477
478         RETURN(rc);
479 }
480
481 /* obd methods */
482 static int filter_connect(struct lustre_handle *conn, struct obd_device *obd,
483                           obd_uuid_t cluuid, struct recovd_obd *recovd,
484                           ptlrpc_recovery_cb_t recover)
485 {
486         struct obd_export *exp;
487         int rc;
488
489         ENTRY;
490         MOD_INC_USE_COUNT;
491         rc = class_connect(conn, obd, cluuid);
492         if (rc)
493                 GOTO(out_dec, rc);
494         exp = class_conn2export(conn);
495         LASSERT(exp);
496
497         INIT_LIST_HEAD(&exp->exp_filter_data.fed_open_head);
498         spin_lock_init(&exp->exp_filter_data.fed_lock);
499 out:
500         RETURN(rc);
501
502 out_dec:
503         MOD_DEC_USE_COUNT;
504         goto out;
505 }
506
507 static int filter_disconnect(struct lustre_handle *conn)
508 {
509         struct obd_export *exp = class_conn2export(conn);
510         struct filter_export_data *fed;
511         int rc;
512         ENTRY;
513
514         LASSERT(exp);
515         fed = &exp->exp_filter_data;
516         spin_lock(&fed->fed_lock);
517         while (!list_empty(&fed->fed_open_head)) {
518                 struct filter_file_data *ffd;
519
520                 ffd = list_entry(fed->fed_open_head.next, typeof(*ffd),
521                                  ffd_export_list);
522                 list_del(&ffd->ffd_export_list);
523                 spin_unlock(&fed->fed_lock);
524
525                 CERROR("force closing file %*s on disconnect\n",
526                        ffd->ffd_file->f_dentry->d_name.len,
527                        ffd->ffd_file->f_dentry->d_name.name);
528
529                 filter_close_internal(exp->exp_obd, ffd);
530                 spin_lock(&fed->fed_lock);
531         }
532         spin_unlock(&fed->fed_lock);
533
534         ldlm_cancel_locks_for_export(exp);
535         rc = class_disconnect(conn);
536         if (!rc)
537                 MOD_DEC_USE_COUNT;
538
539         /* XXX cleanup preallocated inodes */
540         RETURN(rc);
541 }
542
543 /* mount the file system (secretly) */
544 static int filter_setup(struct obd_device *obd, obd_count len, void *buf)
545 {
546         struct obd_ioctl_data* data = buf;
547         struct filter_obd *filter;
548         struct vfsmount *mnt;
549         int err = 0;
550         ENTRY;
551
552         if (!data->ioc_inlbuf1 || !data->ioc_inlbuf2)
553                 RETURN(-EINVAL);
554
555         MOD_INC_USE_COUNT;
556         mnt = do_kern_mount(data->ioc_inlbuf2, 0, data->ioc_inlbuf1, NULL);
557         err = PTR_ERR(mnt);
558         if (IS_ERR(mnt))
559                 GOTO(err_dec, err);
560
561         filter = &obd->u.filter;;
562         filter->fo_vfsmnt = mnt;
563         filter->fo_fstype = strdup(data->ioc_inlbuf2);
564         filter->fo_sb = mnt->mnt_root->d_inode->i_sb;
565         CERROR("%s: mnt is %p\n", data->ioc_inlbuf1, filter->fo_vfsmnt);
566         /* XXX is this even possible if do_kern_mount succeeded? */
567         if (!filter->fo_sb)
568                 GOTO(err_kfree, err = -ENODEV);
569
570         OBD_SET_CTXT_MAGIC(&filter->fo_ctxt);
571         filter->fo_ctxt.pwdmnt = mnt;
572         filter->fo_ctxt.pwd = mnt->mnt_root;
573         filter->fo_ctxt.fs = get_ds();
574
575         err = filter_prep(obd);
576         if (err)
577                 GOTO(err_kfree, err);
578         spin_lock_init(&filter->fo_fddlock);
579         spin_lock_init(&filter->fo_objidlock);
580         INIT_LIST_HEAD(&filter->fo_export_list);
581
582         obd->obd_namespace =
583                 ldlm_namespace_new("filter-tgt", LDLM_NAMESPACE_SERVER);
584         if (obd->obd_namespace == NULL)
585                 LBUG();
586
587         ptlrpc_init_client(LDLM_CB_REQUEST_PORTAL, LDLM_CB_REPLY_PORTAL,
588                            "filter_ldlm_cb_client", &obd->obd_ldlm_client);
589
590         RETURN(0);
591
592 err_kfree:
593         kfree(filter->fo_fstype);
594         unlock_kernel();
595         mntput(filter->fo_vfsmnt);
596         filter->fo_sb = 0;
597         lock_kernel();
598
599 err_dec:
600         MOD_DEC_USE_COUNT;
601         return err;
602 }
603
604
605 static int filter_cleanup(struct obd_device *obd)
606 {
607         struct super_block *sb;
608         ENTRY;
609
610         if (!list_empty(&obd->obd_exports)) {
611                 CERROR("still has clients!\n");
612                 class_disconnect_all(obd);
613                 if (!list_empty(&obd->obd_exports)) {
614                         CERROR("still has exports after forced cleanup?\n");
615                         RETURN(-EBUSY);
616                 }
617         }
618
619         ldlm_namespace_free(obd->obd_namespace);
620
621         sb = obd->u.filter.fo_sb;
622         if (!obd->u.filter.fo_sb)
623                 RETURN(0);
624
625         filter_post(obd);
626
627         shrink_dcache_parent(sb->s_root);
628         unlock_kernel();
629         mntput(obd->u.filter.fo_vfsmnt);
630         obd->u.filter.fo_sb = 0;
631         kfree(obd->u.filter.fo_fstype);
632
633         lock_kernel();
634
635         MOD_DEC_USE_COUNT;
636         RETURN(0);
637 }
638
639
640 static void filter_from_inode(struct obdo *oa, struct inode *inode, int valid)
641 {
642         int type = oa->o_mode & S_IFMT;
643         ENTRY;
644
645         CDEBUG(D_INFO, "src inode %ld (%p), dst obdo %ld valid 0x%08x\n",
646                inode->i_ino, inode, (long)oa->o_id, valid);
647         /* Don't copy the inode number in place of the object ID */
648         obdo_from_inode(oa, inode, valid);
649         oa->o_mode &= ~S_IFMT;
650         oa->o_mode |= type;
651
652         if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
653                 obd_rdev rdev = kdev_t_to_nr(inode->i_rdev);
654                 oa->o_rdev = rdev;
655                 oa->o_valid |= OBD_MD_FLRDEV;
656         }
657
658         EXIT;
659 }
660
661 static struct filter_file_data *filter_handle2ffd(struct lustre_handle *handle)
662 {
663         struct filter_file_data *ffd = NULL;
664         ENTRY;
665
666         if (!handle || !handle->addr)
667                 RETURN(NULL);
668
669         ffd = (struct filter_file_data *)(unsigned long)(handle->addr);
670         if (!kmem_cache_validate(filter_open_cache, (void *)ffd))
671                 RETURN(NULL);
672
673         if (ffd->ffd_servercookie != handle->cookie)
674                 RETURN(NULL);
675
676         LASSERT(ffd->ffd_file->private_data == ffd);
677         RETURN(ffd);
678 }
679
680 static struct dentry *__filter_oa2dentry(struct lustre_handle *conn,
681                                          struct obdo *oa, char *what)
682 {
683         struct dentry *dentry = NULL;
684
685         if (oa->o_valid & OBD_MD_FLHANDLE) {
686                 struct lustre_handle *ost_handle = obdo_handle(oa);
687                 struct filter_file_data *ffd = filter_handle2ffd(ost_handle);
688
689                 if (ffd)
690                         dentry = dget(ffd->ffd_file->f_dentry);
691         }
692
693         if (!dentry) {
694                 struct obd_device *obd = class_conn2obd(conn);
695                 if (!obd) {
696                         CERROR("invalid client "LPX64"\n", conn->addr);
697                         RETURN(ERR_PTR(-EINVAL));
698                 }
699                 dentry = filter_fid2dentry(obd, filter_parent(obd, oa->o_mode),
700                                            oa->o_id, oa->o_mode);
701         }
702
703         if (!dentry->d_inode) {
704                 CERROR("%s on non-existent object: "LPU64"\n", what, oa->o_id);
705                 f_dput(dentry);
706                 dentry = ERR_PTR(-ENOENT);
707         }
708
709         return dentry;
710 }
711
712 #define filter_oa2dentry(conn, oa) __filter_oa2dentry(conn, oa, __FUNCTION__)
713
714 static int filter_getattr(struct lustre_handle *conn, struct obdo *oa,
715                           struct lov_stripe_md *md)
716 {
717         struct dentry *dentry = NULL;
718         int rc = 0;
719         ENTRY;
720
721         dentry = filter_oa2dentry(conn, oa);
722         if (IS_ERR(dentry))
723                 RETURN(PTR_ERR(dentry));
724
725         filter_from_inode(oa, dentry->d_inode, oa->o_valid);
726
727         f_dput(dentry);
728         RETURN(rc);
729 }
730
731 static int filter_setattr(struct lustre_handle *conn, struct obdo *oa,
732                           struct lov_stripe_md *md)
733 {
734         struct obd_run_ctxt saved;
735         struct obd_device *obd = class_conn2obd(conn);
736         struct dentry *dentry;
737         struct iattr iattr;
738         struct inode *inode;
739         int rc;
740         ENTRY;
741
742         dentry = filter_oa2dentry(conn, oa);
743
744         if (IS_ERR(dentry))
745                 RETURN(PTR_ERR(dentry));
746
747         iattr_from_obdo(&iattr, oa, oa->o_valid);
748         iattr.ia_mode = (iattr.ia_mode & ~S_IFMT) | S_IFREG;
749         inode = dentry->d_inode;
750
751         lock_kernel();
752         if (iattr.ia_valid & ATTR_SIZE)
753                 down(&inode->i_sem);
754         push_ctxt(&saved, &obd->u.filter.fo_ctxt, NULL);
755         if (inode->i_op->setattr)
756                 rc = inode->i_op->setattr(dentry, &iattr);
757         else
758                 rc = inode_setattr(inode, &iattr);
759         pop_ctxt(&saved);
760         if (iattr.ia_valid & ATTR_SIZE) {
761                 up(&inode->i_sem);
762                 oa->o_valid = OBD_MD_FLBLOCKS | OBD_MD_FLCTIME | OBD_MD_FLMTIME;
763                 obdo_from_inode(oa, inode, oa->o_valid);
764         }
765         unlock_kernel();
766
767         f_dput(dentry);
768         RETURN(rc);
769 }
770
771 static int filter_open(struct lustre_handle *conn, struct obdo *oa,
772                        struct lov_stripe_md *ea)
773 {
774         struct obd_export *export;
775         struct lustre_handle *handle;
776         struct filter_file_data *ffd;
777         struct file *filp;
778         int rc = 0;
779         ENTRY;
780
781         export = class_conn2export(conn);
782         if (!export) {
783                 CDEBUG(D_IOCTL, "fatal: invalid client "LPX64"\n", conn->addr);
784                 RETURN(-EINVAL);
785         }
786
787         filp = filter_obj_open(export, oa->o_id, oa->o_mode);
788         if (IS_ERR(filp))
789                 GOTO(out, rc = PTR_ERR(filp));
790
791         filter_from_inode(oa, filp->f_dentry->d_inode, oa->o_valid);
792
793         ffd = filp->private_data;
794         handle = obdo_handle(oa);
795         handle->addr = (__u64)(unsigned long)ffd;
796         handle->cookie = ffd->ffd_servercookie;
797         oa->o_valid |= OBD_MD_FLHANDLE;
798 out:
799         RETURN(rc);
800 } /* filter_open */
801
802 static int filter_close(struct lustre_handle *conn, struct obdo *oa,
803                         struct lov_stripe_md *ea)
804 {
805         struct obd_export *exp;
806         struct filter_file_data *ffd;
807         struct filter_export_data *fed;
808         int rc;
809         ENTRY;
810
811         exp = class_conn2export(conn);
812         if (!exp) {
813                 CDEBUG(D_IOCTL, "fatal: invalid client "LPX64"\n", conn->addr);
814                 RETURN(-EINVAL);
815         }
816
817         if (!(oa->o_valid & OBD_MD_FLHANDLE)) {
818                 CERROR("no handle for close of objid "LPX64"\n", oa->o_id);
819                 RETURN(-EINVAL);
820         }
821
822         ffd = filter_handle2ffd(obdo_handle(oa));
823         if (!ffd) {
824                 struct lustre_handle *handle = obdo_handle(oa);
825                 CERROR("bad handle ("LPX64") or cookie ("LPX64") for close\n",
826                        handle->addr, handle->cookie);
827                 RETURN(-ESTALE);
828         }
829
830         fed = &exp->exp_filter_data;
831         spin_lock(&fed->fed_lock);
832         list_del(&ffd->ffd_export_list);
833         spin_unlock(&fed->fed_lock);
834
835         rc = filter_close_internal(exp->exp_obd, ffd);
836
837         RETURN(rc);
838 } /* filter_close */
839
840 static int filter_create(struct lustre_handle *conn, struct obdo *oa,
841                          struct lov_stripe_md **ea)
842 {
843         struct obd_device *obd = class_conn2obd(conn);
844         char name[64];
845         struct obd_run_ctxt saved;
846         struct dentry *new;
847         struct iattr;
848         ENTRY;
849
850         if (!obd) {
851                 CERROR("invalid client "LPX64"\n", conn->addr);
852                 return -EINVAL;
853         }
854
855         if (!(oa->o_mode & S_IFMT)) {
856                 CERROR("OBD %s, object "LPU64" has bad type: %o\n",
857                        __FUNCTION__, oa->o_id, oa->o_mode);
858                 return -ENOENT;
859         }
860
861         oa->o_id = filter_next_id(obd);
862
863         //filter_id(name, oa->o_id, oa->o_mode);
864         sprintf(name, LPU64, oa->o_id);
865         push_ctxt(&saved, &obd->u.filter.fo_ctxt, NULL);
866         new = simple_mknod(filter_parent(obd, oa->o_mode), name, oa->o_mode);
867         pop_ctxt(&saved);
868         if (IS_ERR(new)) {
869                 CERROR("Error mknod obj %s, err %ld\n", name, PTR_ERR(new));
870                 return -ENOENT;
871         }
872
873         /* Set flags for fields we have set in the inode struct */
874         oa->o_valid = OBD_MD_FLID | OBD_MD_FLBLKSZ | OBD_MD_FLBLOCKS |
875                  OBD_MD_FLMTIME | OBD_MD_FLATIME | OBD_MD_FLCTIME;
876         filter_from_inode(oa, new->d_inode, oa->o_valid);
877         f_dput(new);
878
879         return 0;
880 }
881
882 static int filter_destroy(struct lustre_handle *conn, struct obdo *oa,
883                           struct lov_stripe_md *ea)
884 {
885         struct obd_device *obd = class_conn2obd(conn);
886         struct dentry *dir_dentry, *object_dentry;
887         struct filter_dentry_data *fdd;
888         int rc;
889         ENTRY;
890
891         if (!obd) {
892                 CERROR("invalid client "LPX64"\n", conn->addr);
893                 RETURN(-EINVAL);
894         }
895
896         CDEBUG(D_INODE, "destroying objid "LPX64"\n", oa->o_id);
897
898         dir_dentry = filter_parent(obd, oa->o_mode);
899         down(&dir_dentry->d_inode->i_sem);
900
901         object_dentry = filter_oa2dentry(conn, oa);
902         if (IS_ERR(object_dentry))
903                 GOTO(out, rc = -ENOENT);
904
905         fdd = object_dentry->d_fsdata;
906         if (fdd && atomic_read(&fdd->fdd_open_count)) {
907                 if (!(fdd->fdd_flags & FILTER_FLAG_DESTROY)) {
908                         fdd->fdd_flags |= FILTER_FLAG_DESTROY;
909                         /* XXX put into PENDING directory in case of crash */
910                         CDEBUG(D_INODE,
911                                "defer destroy of %dx open objid "LPX64"\n",
912                                atomic_read(&fdd->fdd_open_count), oa->o_id);
913                 } else
914                         CDEBUG(D_INODE,
915                                "repeat destroy of %dx open objid "LPX64"\n",
916                                atomic_read(&fdd->fdd_open_count), oa->o_id);
917                 GOTO(out_dput, rc = 0);
918         }
919
920         rc = filter_destroy_internal(obd, dir_dentry, object_dentry);
921 out_dput:
922         f_dput(object_dentry);
923
924         EXIT;
925 out:
926         up(&dir_dentry->d_inode->i_sem);
927         return rc;
928 }
929
930 /* NB count and offset are used for punch, but not truncate */
931 static int filter_truncate(struct lustre_handle *conn, struct obdo *oa,
932                            struct lov_stripe_md *lsm,
933                            obd_off start, obd_off end)
934 {
935         int error;
936         ENTRY;
937
938         if (end != OBD_OBJECT_EOF)
939                 CERROR("PUNCH not supported, only truncate works\n");
940
941         CDEBUG(D_INODE, "calling truncate for object "LPX64", valid = %x, "
942                "o_size = "LPD64"\n", oa->o_id, oa->o_valid, start);
943         oa->o_size = start;
944         error = filter_setattr(conn, oa, NULL);
945         RETURN(error);
946 }
947
948 static int filter_pgcache_brw(int cmd, struct lustre_handle *conn,
949                               struct lov_stripe_md *lsm, obd_count oa_bufs,
950                               struct brw_page *pga, brw_cb_t callback,
951                               struct brw_cb_data *brw_cbd)
952 {
953         struct obd_export       *export = class_conn2export(conn);
954         struct obd_run_ctxt      saved;
955         struct super_block      *sb;
956         int                      pnum;          /* index to pages (bufs) */
957         unsigned long            retval;
958         int                      error;
959         struct file             *file;
960         int pg;
961         ENTRY;
962
963         if (!export) {
964                 CDEBUG(D_IOCTL, "invalid client "LPX64"\n", conn->addr);
965                 RETURN(-EINVAL);
966         }
967
968         sb = export->exp_obd->u.filter.fo_sb;
969         push_ctxt(&saved, &export->exp_obd->u.filter.fo_ctxt, NULL);
970         pnum = 0; /* pnum indexes buf 0..num_pages */
971
972         file = filter_obj_open(export, lsm->lsm_object_id, S_IFREG);
973         if (IS_ERR(file))
974                 GOTO(out, retval = PTR_ERR(file));
975
976         /* count doubles as retval */
977         for (pg = 0; pg < oa_bufs; pg++) {
978                 CDEBUG(D_INODE, "OP %d obdo pgno: (%d) (%ld,"LPU64
979                        ") off count ("LPU64",%d)\n",
980                        cmd, pnum, file->f_dentry->d_inode->i_ino,
981                        pga[pnum].off >> PAGE_CACHE_SHIFT, pga[pnum].off,
982                        (int)pga[pnum].count);
983                 if (cmd & OBD_BRW_WRITE) {
984                         loff_t off;
985                         char *buffer;
986                         off = pga[pnum].off;
987                         buffer = kmap(pga[pnum].pg);
988                         retval = file->f_op->write(file, buffer,
989                                                    pga[pnum].count,
990                                                    &off);
991                         kunmap(pga[pnum].pg);
992                         CDEBUG(D_INODE, "retval %ld\n", retval);
993                 } else {
994                         loff_t off = pga[pnum].off;
995                         char *buffer = kmap(pga[pnum].pg);
996
997                         if (off >= file->f_dentry->d_inode->i_size) {
998                                 memset(buffer, 0, pga[pnum].count);
999                                 retval = pga[pnum].count;
1000                         } else {
1001                                 retval = file->f_op->read(file, buffer,
1002                                                           pga[pnum].count, &off);
1003                         }
1004                         kunmap(pga[pnum].pg);
1005
1006                         if (retval != pga[pnum].count) {
1007                                 filp_close(file, 0);
1008                                 GOTO(out, retval = -EIO);
1009                         }
1010                         CDEBUG(D_INODE, "retval %ld\n", retval);
1011                 }
1012                 pnum++;
1013         }
1014         /* sizes and blocks are set by generic_file_write */
1015         /* ctimes/mtimes will follow with a setattr call */
1016         filp_close(file, 0);
1017
1018         /* XXX: do something with callback if it is set? */
1019
1020         EXIT;
1021 out:
1022         pop_ctxt(&saved);
1023         error = (retval >= 0) ? 0 : retval;
1024         return error;
1025 }
1026
1027 /*
1028  * Calculate the number of buffer credits needed to write multiple pages in
1029  * a single ext3/extN transaction.  No, this shouldn't be here, but as yet
1030  * ext3 doesn't have a nice API for calculating this sort of thing in advance.
1031  *
1032  * See comment above ext3_writepage_trans_blocks for details.  We assume
1033  * no data journaling is being done, but it does allow for all of the pages
1034  * being non-contiguous.  If we are guaranteed contiguous pages we could
1035  * reduce the number of (d)indirect blocks a lot.
1036  *
1037  * With N blocks per page and P pages, for each inode we have at most:
1038  * N*P indirect
1039  * min(N*P, blocksize/4 + 1) dindirect blocks
1040  * 1 tindirect
1041  *
1042  * For the entire filesystem, we have at most:
1043  * min(sum(nindir + P), ngroups) bitmap blocks (from the above)
1044  * min(sum(nindir + P), gdblocks) group descriptor blocks (from the above)
1045  * 1 inode block
1046  * 1 superblock
1047  * 2 * EXT3_SINGLEDATA_TRANS_BLOCKS for the quota files
1048  */
1049 static int ext3_credits_needed(struct super_block *sb, int objcount,
1050                                struct obd_ioobj *obj)
1051 {
1052         struct obd_ioobj *o = obj;
1053         int blockpp = 1 << (PAGE_CACHE_SHIFT - sb->s_blocksize_bits);
1054         int addrpp = EXT3_ADDR_PER_BLOCK(sb) * blockpp;
1055         int nbitmaps = 0;
1056         int ngdblocks = 0;
1057         int needed = objcount + 1;
1058         int i;
1059
1060         for (i = 0; i < objcount; i++, o++) {
1061                 int nblocks = o->ioo_bufcnt * blockpp;
1062                 int ndindirect = min(nblocks, addrpp + 1);
1063                 int nindir = nblocks + ndindirect + 1;
1064
1065                 nbitmaps += nindir + nblocks;
1066                 ngdblocks += nindir + nblocks;
1067
1068                 needed += nindir;
1069         }
1070
1071         /* Assumes ext3 and extN have same sb_info layout at the start. */
1072         if (nbitmaps > EXT3_SB(sb)->s_groups_count)
1073                 nbitmaps = EXT3_SB(sb)->s_groups_count;
1074         if (ngdblocks > EXT3_SB(sb)->s_gdb_count)
1075                 ngdblocks = EXT3_SB(sb)->s_gdb_count;
1076
1077         needed += nbitmaps + ngdblocks;
1078
1079 #ifdef CONFIG_QUOTA
1080         /* We assume that there will be 1 bit set in s_dquot.flags for each
1081          * quota file that is active.  This is at least true for now.
1082          */
1083         needed += hweight32(sb_any_quota_enabled(sb)) *
1084                 EXT3_SINGLEDATA_TRANS_BLOCKS;
1085 #endif
1086
1087         return needed;
1088 }
1089
1090 /* We have to start a huge journal transaction here to hold all of the
1091  * metadata for the pages being written here.  This is necessitated by
1092  * the fact that we do lots of prepare_write operations before we do
1093  * any of the matching commit_write operations, so even if we split
1094  * up to use "smaller" transactions none of them could complete until
1095  * all of them were opened.  By having a single journal transaction,
1096  * we eliminate duplicate reservations for common blocks like the
1097  * superblock and group descriptors or bitmaps.
1098  *
1099  * We will start the transaction here, but each prepare_write will
1100  * add a refcount to the transaction, and each commit_write will
1101  * remove a refcount.  The transaction will be closed when all of
1102  * the pages have been written.
1103  */
1104 static void *ext3_filter_journal_start(struct filter_obd *filter,
1105                                        int objcount, struct obd_ioobj *obj,
1106                                        int niocount, struct niobuf_remote *nb)
1107 {
1108         journal_t *journal = NULL;
1109         handle_t *handle = NULL;
1110         int needed;
1111
1112         /* It appears that some kernels have different values for
1113          * EXT*_MAX_GROUP_LOADED (either 8 or 32), so we cannot
1114          * assume anything after s_inode_bitmap_number is the same.
1115          */
1116         if (!strcmp(filter->fo_fstype, "ext3"))
1117                 journal = EXT3_SB(filter->fo_sb)->s_journal;
1118 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
1119         else if (!strcmp(filter->fo_fstype, "extN"))
1120                 journal = EXTN_SB(filter->fo_sb)->s_journal;
1121 #endif
1122         needed = ext3_credits_needed(filter->fo_sb, objcount, obj);
1123
1124         /* The number of blocks we could _possibly_ dirty can very large.
1125          * We reduce our request if it is absurd (and we couldn't get that
1126          * many credits for a single handle anyways).
1127          *
1128          * At some point we have to limit the size of I/Os sent at one time,
1129          * increase the size of the journal, or we have to calculate the
1130          * actual journal requirements more carefully by checking all of
1131          * the blocks instead of being maximally pessimistic.  It remains to
1132          * be seen if this is a real problem or not.
1133          */
1134         if (needed > journal->j_max_transaction_buffers) {
1135                 CERROR("want too many journal credits (%d) using %d instead\n",
1136                        needed, journal->j_max_transaction_buffers);
1137                 needed = journal->j_max_transaction_buffers;
1138         }
1139
1140         lock_kernel();
1141         handle = journal_start(journal, needed);
1142         unlock_kernel();
1143         if (IS_ERR(handle))
1144                 CERROR("can't get handle for %d credits: rc = %ld\n", needed,
1145                        PTR_ERR(handle));
1146
1147         return(handle);
1148 }
1149
1150 static void *filter_journal_start(void **journal_save,
1151                                   struct filter_obd *filter,
1152                                   int objcount, struct obd_ioobj *obj,
1153                                   int niocount, struct niobuf_remote *nb)
1154 {
1155         void *handle = NULL;
1156
1157         /* This may not be necessary - we probably never have a
1158          * transaction started when we enter here, so we can
1159          * remove the saving of the journal state entirely.
1160          * For now leave it in just to see if it ever happens.
1161          */
1162         *journal_save = current->journal_info;
1163         if (*journal_save) {
1164                 CERROR("Already have handle %p???\n", *journal_save);
1165                 LBUG();
1166                 current->journal_info = NULL;
1167         }
1168
1169         if (!strcmp(filter->fo_fstype, "ext3") ||
1170             !strcmp(filter->fo_fstype, "extN"))
1171                 handle = ext3_filter_journal_start(filter, objcount, obj,
1172                                                    niocount, nb);
1173         return handle;
1174 }
1175
1176 static int ext3_filter_journal_stop(void *handle)
1177 {
1178         int rc;
1179
1180         /* We got a refcount on the handle for each call to prepare_write,
1181          * so we can drop the "parent" handle here to avoid the need for
1182          * osc to call back into filterobd to close the handle.  The
1183          * remaining references will be dropped in commit_write.
1184          */
1185         lock_kernel();
1186         rc = journal_stop((handle_t *)handle);
1187         unlock_kernel();
1188
1189         return rc;
1190 }
1191
1192 static int filter_journal_stop(void *journal_save, struct filter_obd *filter,
1193                                void *handle)
1194 {
1195         int rc = 0;
1196
1197         if (!strcmp(filter->fo_fstype, "ext3") ||
1198             !strcmp(filter->fo_fstype, "extN"))
1199                 rc = ext3_filter_journal_stop(handle);
1200
1201         if (rc)
1202                 CERROR("error on journal stop: rc = %d\n", rc);
1203
1204         current->journal_info = journal_save;
1205
1206         return rc;
1207 }
1208
1209 static inline void lustre_put_page(struct page *page)
1210 {
1211         kunmap(page);
1212         page_cache_release(page);
1213 }
1214
1215
1216 static struct page *
1217 lustre_get_page_read(struct inode *inode, struct niobuf_remote *rnb)
1218 {
1219         unsigned long index = rnb->offset >> PAGE_SHIFT;
1220         struct address_space *mapping = inode->i_mapping;
1221         struct page *page;
1222         int rc;
1223
1224         page = read_cache_page(mapping, index,
1225                                (filler_t*)mapping->a_ops->readpage, NULL);
1226         if (!IS_ERR(page)) {
1227                 wait_on_page(page);
1228                 kmap(page);
1229                 if (!PageUptodate(page)) {
1230                         CERROR("page index %lu not uptodate\n", index);
1231                         GOTO(err_page, rc = -EIO);
1232                 }
1233                 if (PageError(page)) {
1234                         CERROR("page index %lu has error\n", index);
1235                         GOTO(err_page, rc = -EIO);
1236                 }
1237         }
1238         return page;
1239
1240 err_page:
1241         lustre_put_page(page);
1242         return ERR_PTR(rc);
1243 }
1244
1245 static struct page *
1246 lustre_get_page_write(struct inode *inode, unsigned long index)
1247 {
1248         struct address_space *mapping = inode->i_mapping;
1249         struct page *page;
1250         int rc;
1251
1252         page = grab_cache_page(mapping, index); /* locked page */
1253
1254         if (!IS_ERR(page)) {
1255                 kmap(page);
1256                 /* Note: Called with "O" and "PAGE_SIZE" this is essentially
1257                  * a no-op for most filesystems, because we write the whole
1258                  * page.  For partial-page I/O this will read in the page.
1259                  */
1260                 rc = mapping->a_ops->prepare_write(NULL, page, 0, PAGE_SIZE);
1261                 if (rc) {
1262                         CERROR("page index %lu, rc = %d\n", index, rc);
1263                         if (rc != -ENOSPC)
1264                                 LBUG();
1265                         GOTO(err_unlock, rc);
1266                 }
1267                 /* XXX not sure if we need this if we are overwriting page */
1268                 if (PageError(page)) {
1269                         CERROR("error on page index %lu, rc = %d\n", index, rc);
1270                         LBUG();
1271                         GOTO(err_unlock, rc = -EIO);
1272                 }
1273         }
1274         return page;
1275
1276 err_unlock:
1277         unlock_page(page);
1278         lustre_put_page(page);
1279         return ERR_PTR(rc);
1280 }
1281
1282 static int lustre_commit_write(struct page *page, unsigned from, unsigned to)
1283 {
1284         struct inode *inode = page->mapping->host;
1285         int err;
1286
1287         err = page->mapping->a_ops->commit_write(NULL, page, from, to);
1288 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
1289         if (!err && IS_SYNC(inode))
1290                 err = waitfor_one_page(page);
1291 #else
1292 #warning ADD 2.5 waiting code here?
1293 #endif
1294         //SetPageUptodate(page); // the client commit_write will do this
1295
1296         SetPageReferenced(page);
1297         unlock_page(page);
1298         lustre_put_page(page);
1299         return err;
1300 }
1301
1302 struct page *filter_get_page_write(struct inode *inode,
1303                                    struct niobuf_remote *rnb,
1304                                    struct niobuf_local *lnb, int *pglocked)
1305 {
1306         unsigned long index = rnb->offset >> PAGE_SHIFT;
1307         struct address_space *mapping = inode->i_mapping;
1308
1309         struct page *page;
1310         int rc;
1311
1312         //ASSERT_PAGE_INDEX(index, GOTO(err, rc = -EINVAL));
1313         if (*pglocked)
1314                 page = grab_cache_page_nowait(mapping, index); /* locked page */
1315         else
1316                 page = grab_cache_page(mapping, index); /* locked page */
1317
1318
1319         /* This page is currently locked, so get a temporary page instead. */
1320         /* XXX I believe this is a very dangerous thing to do - consider if
1321          *     we had multiple writers for the same file (definitely the case
1322          *     if we are using this codepath).  If writer A locks the page,
1323          *     writer B writes to a copy (as here), writer A drops the page
1324          *     lock, and writer C grabs the lock before B does, then B will
1325          *     later overwrite the data from C, even if C had LDLM locked
1326          *     and initiated the write after B did.
1327          */
1328         if (!page) {
1329                 unsigned long addr;
1330                 CDEBUG(D_PAGE, "ino %ld page %ld locked\n", inode->i_ino,index);
1331                 addr = __get_free_pages(GFP_KERNEL, 0); /* locked page */
1332                 if (!addr) {
1333                         CERROR("no memory for a temp page\n");
1334                         LBUG();
1335                         GOTO(err, rc = -ENOMEM);
1336                 }
1337                 /* XXX debugging */
1338                 memset((void *)addr, 0xBA, PAGE_SIZE);
1339                 page = virt_to_page(addr);
1340                 kmap(page);
1341                 page->index = index;
1342                 lnb->flags |= N_LOCAL_TEMP_PAGE;
1343         } else if (!IS_ERR(page)) {
1344                 (*pglocked)++;
1345                 kmap(page);
1346
1347                 rc = mapping->a_ops->prepare_write(NULL, page,
1348                                                    rnb->offset % PAGE_SIZE,
1349                                                    rnb->len);
1350                 if (rc) {
1351                         CERROR("page index %lu, rc = %d\n", index, rc);
1352                         if (rc != -ENOSPC)
1353                                 LBUG();
1354                         GOTO(err_unlock, rc);
1355                 }
1356                 /* XXX not sure if we need this if we are overwriting page */
1357                 if (PageError(page)) {
1358                         CERROR("error on page index %lu, rc = %d\n", index, rc);
1359                         LBUG();
1360                         GOTO(err_unlock, rc = -EIO);
1361                 }
1362         }
1363         return page;
1364
1365 err_unlock:
1366         unlock_page(page);
1367         lustre_put_page(page);
1368 err:
1369         return ERR_PTR(rc);
1370 }
1371
1372 /*
1373  * We need to balance prepare_write() calls with commit_write() calls.
1374  * If the page has been prepared, but we have no data for it, we don't
1375  * want to overwrite valid data on disk, but we still need to zero out
1376  * data for space which was newly allocated.  Like part of what happens
1377  * in __block_prepare_write() for newly allocated blocks.
1378  *
1379  * XXX currently __block_prepare_write() creates buffers for all the
1380  *     pages, and the filesystems mark these buffers as BH_New if they
1381  *     were newly allocated from disk. We use the BH_New flag similarly.
1382  */
1383 static int filter_commit_write(struct page *page, unsigned from, unsigned to,
1384                                int err)
1385 {
1386 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
1387         if (err) {
1388                 unsigned block_start, block_end;
1389                 struct buffer_head *bh, *head = page->buffers;
1390                 unsigned blocksize = head->b_size;
1391                 void *addr = page_address(page);
1392
1393                 /* debugging: just seeing if this ever happens */
1394                 CERROR("called filter_commit_write for obj %ld:%ld on err %d\n",
1395                        page->index, page->mapping->host->i_ino, err);
1396
1397                 /* Currently one buffer per page, but in the future... */
1398                 for (bh = head, block_start = 0; bh != head || !block_start;
1399                      block_start = block_end, bh = bh->b_this_page) {
1400                         block_end = block_start + blocksize;
1401                         if (buffer_new(bh))
1402                                 memset(addr + block_start, 0, blocksize);
1403                 }
1404         }
1405 #endif
1406         return lustre_commit_write(page, from, to);
1407 }
1408
1409 static int filter_preprw(int cmd, struct lustre_handle *conn,
1410                          int objcount, struct obd_ioobj *obj,
1411                          int niocount, struct niobuf_remote *nb,
1412                          struct niobuf_local *res, void **desc_private)
1413 {
1414         struct obd_run_ctxt saved;
1415         struct obd_device *obd;
1416         struct obd_ioobj *o = obj;
1417         struct niobuf_remote *rnb = nb;
1418         struct niobuf_local *lnb = res;
1419         void *journal_save = NULL;
1420         int pglocked = 0;
1421         int rc = 0;
1422         int i;
1423         ENTRY;
1424
1425         obd = class_conn2obd(conn);
1426         if (!obd) {
1427                 CDEBUG(D_IOCTL, "invalid client "LPX64"\n", conn->addr);
1428                 RETURN(-EINVAL);
1429         }
1430         memset(res, 0, sizeof(*res) * niocount);
1431
1432         push_ctxt(&saved, &obd->u.filter.fo_ctxt, NULL);
1433
1434         if (cmd & OBD_BRW_WRITE) {
1435                 *desc_private = filter_journal_start(&journal_save,
1436                                                      &obd->u.filter,
1437                                                      objcount, obj, niocount,
1438                                                      nb);
1439                 if (IS_ERR(*desc_private))
1440                         GOTO(out_ctxt, rc = PTR_ERR(*desc_private));
1441         }
1442
1443         obd_kmap_get(niocount, 1);
1444
1445         for (i = 0; i < objcount; i++, o++) {
1446                 struct dentry *dentry;
1447                 struct inode *inode;
1448                 int j;
1449
1450                 dentry = filter_fid2dentry(obd, filter_parent(obd, S_IFREG),
1451                                            o->ioo_id, S_IFREG);
1452                 if (IS_ERR(dentry))
1453                         GOTO(out_clean, rc = PTR_ERR(dentry));
1454                 inode = dentry->d_inode;
1455                 if (!inode) {
1456                         CERROR("trying to BRW to non-existent file "LPU64"\n",
1457                                o->ioo_id);
1458                         f_dput(dentry);
1459                         GOTO(out_clean, rc = -ENOENT);
1460                 }
1461
1462                 for (j = 0; j < o->ioo_bufcnt; j++, rnb++, lnb++) {
1463                         struct page *page;
1464
1465                         if (j == 0)
1466                                 lnb->dentry = dentry;
1467                         else
1468                                 lnb->dentry = dget(dentry);
1469
1470                         if (cmd & OBD_BRW_WRITE)
1471                                 page = filter_get_page_write(inode, rnb, lnb,
1472                                                              &pglocked);
1473                         else
1474                                 page = lustre_get_page_read(inode, rnb);
1475
1476                         if (IS_ERR(page)) {
1477                                 f_dput(dentry);
1478                                 GOTO(out_clean, rc = PTR_ERR(page));
1479                         }
1480
1481                         lnb->addr = page_address(page);
1482                         lnb->offset = rnb->offset;
1483                         lnb->page = page;
1484                         lnb->len = rnb->len;
1485                 }
1486         }
1487
1488 out_stop:
1489         if (cmd & OBD_BRW_WRITE) {
1490                 int err = filter_journal_stop(journal_save, &obd->u.filter,
1491                                               *desc_private);
1492                 if (!rc)
1493                         rc = err;
1494         }
1495 out_ctxt:
1496         pop_ctxt(&saved);
1497         RETURN(rc);
1498 out_clean:
1499         while (lnb-- > res) {
1500                 CERROR("error cleanup on brw\n");
1501                 f_dput(lnb->dentry);
1502                 if (cmd & OBD_BRW_WRITE)
1503                         filter_commit_write(lnb->page, 0, PAGE_SIZE, rc);
1504                 else
1505                         lustre_put_page(lnb->page);
1506         }
1507         obd_kmap_put(niocount);
1508         goto out_stop;
1509 }
1510
1511 static int filter_write_locked_page(struct niobuf_local *lnb)
1512 {
1513         struct page *lpage;
1514         int rc;
1515
1516         lpage = lustre_get_page_write(lnb->dentry->d_inode, lnb->page->index);
1517         if (IS_ERR(lpage)) {
1518                 /* It is highly unlikely that we would ever get an error here.
1519                  * The page we want to get was previously locked, so it had to
1520                  * have already allocated the space, and we were just writing
1521                  * over the same data, so there would be no hole in the file.
1522                  *
1523                  * XXX: possibility of a race with truncate could exist, need
1524                  *      to check that.  There are no guarantees w.r.t.
1525                  *      write order even on a local filesystem, although the
1526                  *      normal response would be to return the number of bytes
1527                  *      successfully written and leave the rest to the app.
1528                  */
1529                 rc = PTR_ERR(lpage);
1530                 CERROR("error getting locked page index %ld: rc = %d\n",
1531                        lnb->page->index, rc);
1532                 GOTO(out, rc);
1533         }
1534
1535         /* lpage is kmapped in lustre_get_page_write() above and kunmapped in
1536          * lustre_commit_write() below, lnb->page was kmapped previously in
1537          * filter_get_page_write() and kunmapped in lustre_put_page() below.
1538          */
1539         memcpy(page_address(lpage), page_address(lnb->page), PAGE_SIZE);
1540         rc = lustre_commit_write(lpage, 0, PAGE_SIZE);
1541         if (rc)
1542                 CERROR("error committing locked page %ld: rc = %d\n",
1543                        lnb->page->index, rc);
1544 out:
1545         lustre_put_page(lnb->page);
1546
1547         return rc;
1548 }
1549
1550 static int filter_commitrw(int cmd, struct lustre_handle *conn,
1551                            int objcount, struct obd_ioobj *obj,
1552                            int niocount, struct niobuf_local *res,
1553                            void *private)
1554 {
1555         struct obd_run_ctxt saved;
1556         struct obd_ioobj *o;
1557         struct niobuf_local *r;
1558         struct obd_device *obd = class_conn2obd(conn);
1559         void *journal_save;
1560         int found_locked = 0;
1561         int rc = 0;
1562         int i;
1563         ENTRY;
1564
1565         push_ctxt(&saved, &obd->u.filter.fo_ctxt, NULL);
1566         lock_kernel();
1567         journal_save = current->journal_info;
1568         LASSERT(!journal_save);
1569
1570         current->journal_info = private;
1571         unlock_kernel();
1572         for (i = 0, o = obj, r = res; i < objcount; i++, o++) {
1573                 int j;
1574                 for (j = 0 ; j < o->ioo_bufcnt ; j++, r++) {
1575                         struct page *page = r->page;
1576
1577                         if (!page)
1578                                 LBUG();
1579
1580                         if (r->flags & N_LOCAL_TEMP_PAGE) {
1581                                 found_locked++;
1582                                 continue;
1583                         }
1584
1585                         if (cmd & OBD_BRW_WRITE) {
1586                                 int err = filter_commit_write(page, 0,
1587                                                               r->len, 0);
1588
1589                                 if (!rc)
1590                                         rc = err;
1591                         } else
1592                                 lustre_put_page(page);
1593
1594                         obd_kmap_put(1);
1595                         f_dput(r->dentry);
1596                 }
1597         }
1598         lock_kernel();
1599         current->journal_info = journal_save;
1600         unlock_kernel();
1601
1602         if (!found_locked)
1603                 goto out_ctxt;
1604
1605         for (i = 0, o = obj, r = res; i < objcount; i++, o++) {
1606                 int j;
1607                 for (j = 0 ; j < o->ioo_bufcnt ; j++, r++) {
1608                         int err;
1609                         if (!(r->flags & N_LOCAL_TEMP_PAGE))
1610                                 continue;
1611
1612                         err = filter_write_locked_page(r);
1613                         obd_kmap_put(1);
1614                         if (!rc)
1615                                 rc = err;
1616                         f_dput(r->dentry);
1617                 }
1618         }
1619
1620 out_ctxt:
1621         pop_ctxt(&saved);
1622         RETURN(rc);
1623 }
1624
1625 static int filter_statfs(struct lustre_handle *conn, struct obd_statfs *osfs)
1626 {
1627         struct obd_device *obd = class_conn2obd(conn);
1628         struct statfs sfs;
1629         int rc;
1630
1631         ENTRY;
1632         rc = vfs_statfs(obd->u.filter.fo_sb, &sfs);
1633         if (!rc)
1634                 statfs_pack(osfs, &sfs);
1635
1636         return rc;
1637 }
1638
1639 static int filter_get_info(struct lustre_handle *conn, obd_count keylen,
1640                            void *key, obd_count *vallen, void **val)
1641 {
1642         struct obd_device *obd;
1643         ENTRY;
1644
1645         obd = class_conn2obd(conn);
1646         if (!obd) {
1647                 CDEBUG(D_IOCTL, "invalid client "LPX64"\n", conn->addr);
1648                 RETURN(-EINVAL);
1649         }
1650
1651         if ( keylen == strlen("blocksize") &&
1652              memcmp(key, "blocksize", keylen) == 0 ) {
1653                 *vallen = sizeof(long);
1654                 *val = (void *)(long)obd->u.filter.fo_sb->s_blocksize;
1655                 RETURN(0);
1656         }
1657
1658         if ( keylen == strlen("blocksize_bits") &&
1659              memcmp(key, "blocksize_bits", keylen) == 0 ){
1660                 *vallen = sizeof(long);
1661                 *val = (void *)(long)obd->u.filter.fo_sb->s_blocksize_bits;
1662                 RETURN(0);
1663         }
1664
1665         if ( keylen == strlen("root_ino") &&
1666              memcmp(key, "root_ino", keylen) == 0 ){
1667                 *vallen = sizeof(obd_id);
1668                 *val = (void *)(obd_id)FILTER_ROOTINO;
1669                 RETURN(0);
1670         }
1671
1672         CDEBUG(D_IOCTL, "invalid key\n");
1673         RETURN(-EINVAL);
1674 }
1675
1676 int filter_copy_data(struct lustre_handle *dst_conn, struct obdo *dst,
1677                   struct lustre_handle *src_conn, struct obdo *src,
1678                   obd_size count, obd_off offset)
1679 {
1680         struct page *page;
1681         struct lov_stripe_md srcmd, dstmd;
1682         unsigned long index = 0;
1683         int err = 0;
1684
1685         memset(&srcmd, 0, sizeof(srcmd));
1686         memset(&dstmd, 0, sizeof(dstmd));
1687         srcmd.lsm_object_id = src->o_id;
1688         dstmd.lsm_object_id = dst->o_id;
1689
1690         ENTRY;
1691         CDEBUG(D_INFO, "src: ino "LPU64" blocks "LPU64", size "LPU64
1692                ", dst: ino "LPU64"\n",
1693                src->o_id, src->o_blocks, src->o_size, dst->o_id);
1694         page = alloc_page(GFP_USER);
1695         if (page == NULL)
1696                 RETURN(-ENOMEM);
1697
1698 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
1699         while (TryLockPage(page))
1700                 ___wait_on_page(page);
1701 #else
1702         wait_on_page_locked(page);
1703 #endif
1704
1705         /* XXX with brw vector I/O, we could batch up reads and writes here,
1706          *     all we need to do is allocate multiple pages to handle the I/Os
1707          *     and arrays to handle the request parameters.
1708          */
1709         while (index < ((src->o_size + PAGE_SIZE - 1) >> PAGE_SHIFT)) {
1710                 struct brw_page pg;
1711                 struct brw_cb_data *brw_cbd = ll_init_brw_cb_data();
1712
1713                 if (!brw_cbd) {
1714                         err = -ENOMEM;
1715                         EXIT;
1716                         break;
1717                 }
1718
1719                 pg.pg = page;
1720                 pg.count = PAGE_SIZE;
1721                 pg.off = (page->index) << PAGE_SHIFT;
1722                 pg.flag = 0;
1723
1724                 page->index = index;
1725                 err = obd_brw(OBD_BRW_READ, src_conn, &srcmd, 1, &pg,
1726                               ll_sync_brw_cb, brw_cbd);
1727
1728                 if ( err ) {
1729                         EXIT;
1730                         break;
1731                 }
1732
1733                 brw_cbd = ll_init_brw_cb_data();
1734                 if (!brw_cbd) {
1735                         err = -ENOMEM;
1736                         EXIT;
1737                         break;
1738                 }
1739                 pg.flag = OBD_BRW_CREATE;
1740                 CDEBUG(D_INFO, "Read page %ld ...\n", page->index);
1741
1742                 err = obd_brw(OBD_BRW_WRITE, dst_conn, &dstmd, 1, &pg,
1743                               ll_sync_brw_cb, brw_cbd);
1744
1745                 /* XXX should handle dst->o_size, dst->o_blocks here */
1746                 if ( err ) {
1747                         EXIT;
1748                         break;
1749                 }
1750
1751                 CDEBUG(D_INFO, "Wrote page %ld ...\n", page->index);
1752
1753                 index++;
1754         }
1755         dst->o_size = src->o_size;
1756         dst->o_blocks = src->o_blocks;
1757         dst->o_valid |= OBD_MD_FLSIZE | OBD_MD_FLBLOCKS;
1758         unlock_page(page);
1759         __free_page(page);
1760
1761         RETURN(err);
1762 }
1763 int filter_attach(struct obd_device *dev, 
1764                    obd_count len, void *data)
1765 {
1766
1767         int rc;
1768         rc = lprocfs_reg_obd(dev, (struct lprocfs_vars*)status_var_nm_1, 
1769                              (void*)dev);
1770         return rc; 
1771 }
1772
1773 int filter_detach(struct obd_device *dev)
1774 {
1775         int rc;
1776         rc = lprocfs_dereg_obd(dev);
1777         return rc;
1778
1779 }
1780 static struct obd_ops filter_obd_ops = {
1781         o_attach:      filter_attach,
1782         o_detach:      filter_detach,
1783         o_get_info:    filter_get_info,
1784         o_setup:       filter_setup,
1785         o_cleanup:     filter_cleanup,
1786         o_connect:     filter_connect,
1787         o_disconnect:  filter_disconnect,
1788         o_statfs:      filter_statfs,
1789         o_getattr:     filter_getattr,
1790         o_create:      filter_create,
1791         o_setattr:     filter_setattr,
1792         o_destroy:     filter_destroy,
1793         o_open:        filter_open,
1794         o_close:       filter_close,
1795         o_brw:         filter_pgcache_brw,
1796         o_punch:       filter_truncate,
1797         o_preprw:      filter_preprw,
1798         o_commitrw:    filter_commitrw
1799 #if 0
1800         o_preallocate: filter_preallocate_inodes,
1801         o_migrate:     filter_migrate,
1802         o_copy:        filter_copy_data,
1803         o_iterate:     filter_iterate
1804 #endif
1805 };
1806
1807
1808 static int __init obdfilter_init(void)
1809 {
1810         printk(KERN_INFO "Filtering OBD driver  v0.001, info@clusterfs.com\n");
1811         filter_open_cache = kmem_cache_create("ll_filter_fdata",
1812                                               sizeof(struct filter_file_data),
1813                                               0, 0, NULL, NULL);
1814         if (!filter_open_cache)
1815                 RETURN(-ENOMEM);
1816
1817         filter_dentry_cache = kmem_cache_create("ll_filter_dentry",
1818                                         sizeof(struct filter_dentry_data),
1819                                         0, 0, NULL, NULL);
1820         if (!filter_dentry_cache) {
1821                 kmem_cache_destroy(filter_open_cache);
1822                 RETURN(-ENOMEM);
1823         }
1824
1825         return class_register_type(&filter_obd_ops, 
1826                                    (struct lprocfs_vars*)status_class_var,
1827                                    OBD_FILTER_DEVICENAME);
1828 }
1829
1830 static void __exit obdfilter_exit(void)
1831 {
1832         class_unregister_type(OBD_FILTER_DEVICENAME);
1833         if (kmem_cache_destroy(filter_dentry_cache))
1834                 CERROR("couldn't free obdfilter dentry cache\n");
1835         if (kmem_cache_destroy(filter_open_cache))
1836                 CERROR("couldn't free obdfilter open cache\n");
1837 }
1838
1839 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
1840 MODULE_DESCRIPTION("Lustre Filtering OBD driver v1.0");
1841 MODULE_LICENSE("GPL");
1842
1843 module_init(obdfilter_init);
1844 module_exit(obdfilter_exit);