Whamcloud - gitweb
* updates to HEAD lustre since landing b_port_step on portals
[fs/lustre-release.git] / lustre / lvfs / fsfilt_ext3.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  lustre/lib/fsfilt_ext3.c
5  *  Lustre filesystem abstraction routines
6  *
7  *  Copyright (C) 2002, 2003 Cluster File Systems, Inc.
8  *   Author: Andreas Dilger <adilger@clusterfs.com>
9  *
10  *   This file is part of Lustre, http://www.lustre.org.
11  *
12  *   Lustre is free software; you can redistribute it and/or
13  *   modify it under the terms of version 2 of the GNU General Public
14  *   License as published by the Free Software Foundation.
15  *
16  *   Lustre is distributed in the hope that it will be useful,
17  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *   GNU General Public License for more details.
20  *
21  *   You should have received a copy of the GNU General Public License
22  *   along with Lustre; if not, write to the Free Software
23  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  */
25
26 #define DEBUG_SUBSYSTEM S_FILTER
27
28 #include <linux/init.h>
29 #include <linux/module.h>
30 #include <linux/fs.h>
31 #include <linux/jbd.h>
32 #include <linux/slab.h>
33 #include <linux/pagemap.h>
34 #include <linux/quotaops.h>
35 #include <linux/ext3_fs.h>
36 #include <linux/ext3_jbd.h>
37 #include <linux/ext3_extents.h>
38 #include <linux/version.h>
39 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
40 #include <linux/ext3_xattr.h>
41 #else
42 #include <ext3/xattr.h>
43 #endif
44
45 #include <libcfs/kp30.h>
46 #include <linux/lustre_fsfilt.h>
47 #include <linux/obd.h>
48 #include <linux/obd_class.h>
49 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
50 #include <linux/module.h>
51 #include <linux/iobuf.h>
52 #endif
53
54
55 static kmem_cache_t *fcb_cache;
56 static atomic_t fcb_cache_count = ATOMIC_INIT(0);
57
58 struct fsfilt_cb_data {
59         struct journal_callback cb_jcb; /* jbd private data - MUST BE FIRST */
60         fsfilt_cb_t cb_func;            /* MDS/OBD completion function */
61         struct obd_device *cb_obd;      /* MDS/OBD completion device */
62         __u64 cb_last_num;              /* MDS/OST last committed operation */
63         void *cb_data;                  /* MDS/OST completion function data */
64 };
65
66 #ifndef EXT3_XATTR_INDEX_TRUSTED        /* temporary until we hit l28 kernel */
67 #define EXT3_XATTR_INDEX_TRUSTED        4
68 #endif
69
70 #define XATTR_LUSTRE_MDS_LOV_EA         "lov"
71 #define XATTR_LUSTRE_MDS_MID_EA         "mid"
72 #define XATTR_LUSTRE_MDS_SID_EA         "sid"
73
74 /*
75  * We don't currently need any additional blocks for rmdir and
76  * unlink transactions because we are storing the OST oa_id inside
77  * the inode (which we will be changing anyways as part of this
78  * transaction).
79  */
80 static void *fsfilt_ext3_start(struct inode *inode, int op, void *desc_private,
81                                int logs)
82 {
83         /* For updates to the last recieved file */
84         int nblocks = EXT3_SINGLEDATA_TRANS_BLOCKS;
85         journal_t *journal;
86         void *handle;
87
88         if (current->journal_info) {
89                 CDEBUG(D_INODE, "increasing refcount on %p\n",
90                        current->journal_info);
91                 goto journal_start;
92         }
93
94         /* XXX BUG 3188 -- must return to one set of opcodes */
95         /* FIXME - cache hook */
96         if (op & 0x20) {
97                 nblocks += EXT3_INDEX_EXTRA_TRANS_BLOCKS+EXT3_DATA_TRANS_BLOCKS;
98                 op = op & ~0x20;
99         }
100
101         /* FIXME - kml */
102         if (op & 0x10) {
103                 nblocks += EXT3_INDEX_EXTRA_TRANS_BLOCKS+EXT3_DATA_TRANS_BLOCKS;
104                 op = op & ~0x10;
105         }
106
107         switch(op) {
108         case FSFILT_OP_RMDIR:
109         case FSFILT_OP_UNLINK:
110                 /* delete one file + create/update logs for each stripe */
111                 nblocks += EXT3_DELETE_TRANS_BLOCKS;
112                 nblocks += (EXT3_INDEX_EXTRA_TRANS_BLOCKS +
113                             EXT3_SINGLEDATA_TRANS_BLOCKS) * logs;
114                 break;
115         case FSFILT_OP_RENAME:
116                 /* modify additional directory */
117                 nblocks += EXT3_SINGLEDATA_TRANS_BLOCKS;
118                 /* no break */
119         case FSFILT_OP_SYMLINK:
120                 /* additional block + block bitmap + GDT for long symlink */
121                 nblocks += 3;
122                 /* no break */
123         case FSFILT_OP_CREATE:
124                 /* create/update logs for each stripe */
125                 nblocks += (EXT3_INDEX_EXTRA_TRANS_BLOCKS +
126                             EXT3_SINGLEDATA_TRANS_BLOCKS) * logs;
127                 /* no break */
128         case FSFILT_OP_MKDIR:
129         case FSFILT_OP_MKNOD:
130                 /* modify one inode + block bitmap + GDT */
131                 nblocks += 3;
132                 /* no break */
133         case FSFILT_OP_LINK:
134                 /* modify parent directory */
135                 nblocks += EXT3_INDEX_EXTRA_TRANS_BLOCKS +
136                         EXT3_DATA_TRANS_BLOCKS;
137                 break;
138         case FSFILT_OP_SETATTR:
139                 /* Setattr on inode */
140                 nblocks += 1;
141                 break;
142         case FSFILT_OP_CANCEL_UNLINK:
143                 /* blocks for log header bitmap update OR
144                  * blocks for catalog header bitmap update + unlink of logs */
145                 nblocks = (LLOG_CHUNK_SIZE >> inode->i_blkbits) +
146                         EXT3_DELETE_TRANS_BLOCKS * logs;
147                 break;
148         case FSFILT_OP_NOOP:
149                 nblocks += EXT3_INDEX_EXTRA_TRANS_BLOCKS+EXT3_DATA_TRANS_BLOCKS;
150                 break;
151         default: CERROR("unknown transaction start op %d\n", op);
152                 LBUG();
153         }
154
155         LASSERT(current->journal_info == desc_private);
156         journal = EXT3_SB(inode->i_sb)->s_journal;
157         if (nblocks > journal->j_max_transaction_buffers) {
158                 CERROR("too many credits %d for op %ux%u using %d instead\n",
159                        nblocks, op, logs, journal->j_max_transaction_buffers);
160                 nblocks = journal->j_max_transaction_buffers;
161         }
162
163  journal_start:
164         lock_kernel();
165         handle = journal_start(EXT3_JOURNAL(inode), nblocks);
166         unlock_kernel();
167
168         if (!IS_ERR(handle))
169                 LASSERT(current->journal_info == handle);
170         else
171                 CERROR("error starting handle for op %u (%u credits): rc %ld\n",
172                        op, nblocks, PTR_ERR(handle));
173         return handle;
174 }
175
176 /*
177  * Calculate the number of buffer credits needed to write multiple pages in
178  * a single ext3 transaction.  No, this shouldn't be here, but as yet ext3
179  * doesn't have a nice API for calculating this sort of thing in advance.
180  *
181  * See comment above ext3_writepage_trans_blocks for details.  We assume
182  * no data journaling is being done, but it does allow for all of the pages
183  * being non-contiguous.  If we are guaranteed contiguous pages we could
184  * reduce the number of (d)indirect blocks a lot.
185  *
186  * With N blocks per page and P pages, for each inode we have at most:
187  * N*P indirect
188  * min(N*P, blocksize/4 + 1) dindirect blocks
189  * niocount tindirect
190  *
191  * For the entire filesystem, we have at most:
192  * min(sum(nindir + P), ngroups) bitmap blocks (from the above)
193  * min(sum(nindir + P), gdblocks) group descriptor blocks (from the above)
194  * objcount inode blocks
195  * 1 superblock
196  * 2 * EXT3_SINGLEDATA_TRANS_BLOCKS for the quota files
197  *
198  * 1 EXT3_DATA_TRANS_BLOCKS for the last_rcvd update.
199  */
200 static int fsfilt_ext3_credits_needed(int objcount, struct fsfilt_objinfo *fso,
201                                       int niocount, struct niobuf_local *nb)
202 {
203         struct super_block *sb = fso->fso_dentry->d_inode->i_sb;
204         __u64 next_indir;
205         const int blockpp = 1 << (PAGE_CACHE_SHIFT - sb->s_blocksize_bits);
206         int nbitmaps = 0, ngdblocks;
207         int needed = objcount + 1; /* inodes + superblock */
208         int i, j;
209
210         for (i = 0, j = 0; i < objcount; i++, fso++) {
211                 /* two or more dindirect blocks in case we cross boundary */
212                 int ndind = (long)((nb[j + fso->fso_bufcnt - 1].offset -
213                                     nb[j].offset) >>
214                                    sb->s_blocksize_bits) /
215                         (EXT3_ADDR_PER_BLOCK(sb) * EXT3_ADDR_PER_BLOCK(sb));
216                 nbitmaps += min(fso->fso_bufcnt, ndind > 0 ? ndind : 2);
217
218                 /* leaf, indirect, tindirect blocks for first block */
219                 nbitmaps += blockpp + 2;
220
221                 j += fso->fso_bufcnt;
222         }
223
224         next_indir = nb[0].offset +
225                 (EXT3_ADDR_PER_BLOCK(sb) << sb->s_blocksize_bits);
226         for (i = 1; i < niocount; i++) {
227                 if (nb[i].offset >= next_indir) {
228                         nbitmaps++;     /* additional indirect */
229                         next_indir = nb[i].offset +
230                                 (EXT3_ADDR_PER_BLOCK(sb)<<sb->s_blocksize_bits);
231                 } else if (nb[i].offset != nb[i - 1].offset + sb->s_blocksize) {
232                         nbitmaps++;     /* additional indirect */
233                 }
234                 nbitmaps += blockpp;    /* each leaf in different group? */
235         }
236
237         ngdblocks = nbitmaps;
238         if (nbitmaps > EXT3_SB(sb)->s_groups_count)
239                 nbitmaps = EXT3_SB(sb)->s_groups_count;
240         if (ngdblocks > EXT3_SB(sb)->s_gdb_count)
241                 ngdblocks = EXT3_SB(sb)->s_gdb_count;
242
243         needed += nbitmaps + ngdblocks;
244
245         /* last_rcvd update */
246         needed += EXT3_DATA_TRANS_BLOCKS;
247
248 #if defined(CONFIG_QUOTA) && !defined(__x86_64__) /* XXX */
249         /* We assume that there will be 1 bit set in s_dquot.flags for each
250          * quota file that is active.  This is at least true for now.
251          */
252         needed += hweight32(sb_any_quota_enabled(sb)) *
253                 EXT3_SINGLEDATA_TRANS_BLOCKS;
254 #endif
255
256         return needed;
257 }
258
259 /* We have to start a huge journal transaction here to hold all of the
260  * metadata for the pages being written here.  This is necessitated by
261  * the fact that we do lots of prepare_write operations before we do
262  * any of the matching commit_write operations, so even if we split
263  * up to use "smaller" transactions none of them could complete until
264  * all of them were opened.  By having a single journal transaction,
265  * we eliminate duplicate reservations for common blocks like the
266  * superblock and group descriptors or bitmaps.
267  *
268  * We will start the transaction here, but each prepare_write will
269  * add a refcount to the transaction, and each commit_write will
270  * remove a refcount.  The transaction will be closed when all of
271  * the pages have been written.
272  */
273 static void *fsfilt_ext3_brw_start(int objcount, struct fsfilt_objinfo *fso,
274                                    int niocount, struct niobuf_local *nb,
275                                    void *desc_private, int logs)
276 {
277         journal_t *journal;
278         handle_t *handle;
279         int needed;
280         ENTRY;
281
282         LASSERT(current->journal_info == desc_private);
283         journal = EXT3_SB(fso->fso_dentry->d_inode->i_sb)->s_journal;
284         needed = fsfilt_ext3_credits_needed(objcount, fso, niocount, nb);
285
286         /* The number of blocks we could _possibly_ dirty can very large.
287          * We reduce our request if it is absurd (and we couldn't get that
288          * many credits for a single handle anyways).
289          *
290          * At some point we have to limit the size of I/Os sent at one time,
291          * increase the size of the journal, or we have to calculate the
292          * actual journal requirements more carefully by checking all of
293          * the blocks instead of being maximally pessimistic.  It remains to
294          * be seen if this is a real problem or not.
295          */
296         if (needed > journal->j_max_transaction_buffers) {
297                 CERROR("want too many journal credits (%d) using %d instead\n",
298                        needed, journal->j_max_transaction_buffers);
299                 needed = journal->j_max_transaction_buffers;
300         }
301
302         lock_kernel();
303         handle = journal_start(journal, needed);
304         unlock_kernel();
305         if (IS_ERR(handle)) {
306                 CERROR("can't get handle for %d credits: rc = %ld\n", needed,
307                        PTR_ERR(handle));
308         } else {
309                 LASSERT(handle->h_buffer_credits >= needed);
310                 LASSERT(current->journal_info == handle);
311         }
312
313         RETURN(handle);
314 }
315
316 static int fsfilt_ext3_commit(struct super_block *sb, struct inode *inode, 
317                               void *h, int force_sync)
318 {
319         int rc;
320         handle_t *handle = h;
321
322         LASSERT(current->journal_info == handle);
323         if (force_sync)
324                 handle->h_sync = 1; /* recovery likes this */
325
326         lock_kernel();
327         rc = journal_stop(handle);
328         unlock_kernel();
329
330         return rc;
331 }
332
333 static int fsfilt_ext3_commit_async(struct inode *inode, void *h,
334                                     void **wait_handle)
335 {
336         unsigned long tid;
337         transaction_t *transaction;
338 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
339         unsigned long rtid;
340 #endif
341         handle_t *handle = h;
342         journal_t *journal;
343         int rc;
344
345         LASSERT(current->journal_info == handle);
346
347         lock_kernel();
348         transaction = handle->h_transaction;
349         journal = transaction->t_journal;
350         tid = transaction->t_tid;
351         /* we don't want to be blocked */
352         handle->h_sync = 0;
353         rc = journal_stop(handle);
354         if (rc) {
355                 CERROR("error while stopping transaction: %d\n", rc);
356                 unlock_kernel();
357                 return rc;
358         }
359 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
360         rtid = log_start_commit(journal, transaction);
361         if (rtid != tid)
362                 CERROR("strange race: %lu != %lu\n",
363                        (unsigned long) tid, (unsigned long) rtid);
364 #else
365         log_start_commit(journal, transaction->t_tid);
366 #endif
367         unlock_kernel();
368
369         *wait_handle = (void *) tid;
370         CDEBUG(D_INODE, "commit async: %lu\n", (unsigned long) tid);
371         return 0;
372 }
373
374 static int fsfilt_ext3_commit_wait(struct inode *inode, void *h)
375 {
376         tid_t tid = (tid_t)(long)h;
377
378         CDEBUG(D_INODE, "commit wait: %lu\n", (unsigned long) tid);
379         if (is_journal_aborted(EXT3_JOURNAL(inode)))
380                 return -EIO;
381
382         log_wait_commit(EXT3_JOURNAL(inode), tid);
383
384         return 0;
385 }
386
387 static int fsfilt_ext3_setattr(struct dentry *dentry, void *handle,
388                                struct iattr *iattr, int do_trunc)
389 {
390         struct inode *inode = dentry->d_inode;
391         int rc;
392
393         lock_kernel();
394
395         /* A _really_ horrible hack to avoid removing the data stored
396          * in the block pointers; this is really the "small" stripe MD data.
397          * We can avoid further hackery by virtue of the MDS file size being
398          * zero all the time (which doesn't invoke block truncate at unlink
399          * time), so we assert we never change the MDS file size from zero. */
400         if (iattr->ia_valid & ATTR_SIZE && !do_trunc) {
401                 /* ATTR_SIZE would invoke truncate: clear it */
402                 iattr->ia_valid &= ~ATTR_SIZE;
403                 EXT3_I(inode)->i_disksize = inode->i_size = iattr->ia_size;
404
405                 /* make sure _something_ gets set - so new inode
406                  * goes to disk (probably won't work over XFS */
407                 if (!(iattr->ia_valid & (ATTR_MODE | ATTR_MTIME | ATTR_CTIME))){
408                         iattr->ia_valid |= ATTR_MODE;
409                         iattr->ia_mode = inode->i_mode;
410                 }
411         }
412
413         /* Don't allow setattr to change file type */
414         iattr->ia_mode = (inode->i_mode & S_IFMT)|(iattr->ia_mode & ~S_IFMT);
415
416         /* We set these flags on the client, but have already checked perms
417          * so don't confuse inode_change_ok. */
418         iattr->ia_valid &= ~(ATTR_MTIME_SET | ATTR_ATIME_SET);
419
420         if (inode->i_op->setattr) {
421                 rc = inode->i_op->setattr(dentry, iattr);
422         } else {
423                 rc = inode_change_ok(inode, iattr);
424                 if (!rc)
425                         rc = inode_setattr(inode, iattr);
426         }
427
428         unlock_kernel();
429
430         return rc;
431 }
432
433 static int fsfilt_ext3_iocontrol(struct inode * inode, struct file *file,
434                                  unsigned int cmd, unsigned long arg)
435 {
436         int rc = 0;
437         ENTRY;
438
439         if (inode->i_fop->ioctl)
440                 rc = inode->i_fop->ioctl(inode, file, cmd, arg);
441         else
442                 RETURN(-ENOTTY);
443
444         RETURN(rc);
445 }
446
447 static int fsfilt_ext3_set_xattr(struct inode * inode, void *handle, char *name,
448                                  void *buffer, int buffer_size)
449 {
450         int rc = 0;
451
452         lock_kernel();
453
454         rc = ext3_xattr_set_handle(handle, inode, EXT3_XATTR_INDEX_TRUSTED,
455                                    name, buffer, buffer_size, 0);
456         unlock_kernel();
457         if (rc)
458                 CERROR("set xattr %s from inode %lu: rc %d\n",
459                        name,  inode->i_ino, rc);
460         return rc;
461 }
462
463 static int fsfilt_ext3_get_xattr(struct inode *inode, char *name,
464                                  void *buffer, int buffer_size)
465 {
466         int rc = 0;
467        
468         lock_kernel();
469
470         rc = ext3_xattr_get(inode, EXT3_XATTR_INDEX_TRUSTED,
471                             name, buffer, buffer_size);
472         unlock_kernel();
473
474         if (buffer == NULL)
475                 return (rc == -ENODATA) ? 0 : rc;
476         if (rc < 0) {
477                 CDEBUG(D_INFO, "error getting EA %s from inode %lu: rc %d\n",
478                        name,  inode->i_ino, rc);
479                 memset(buffer, 0, buffer_size);
480                 return (rc == -ENODATA) ? 0 : rc;
481         }
482
483         return rc;
484 }
485
486 static int fsfilt_ext3_set_md(struct inode *inode, void *handle,
487                               void *lmm, int lmm_size)
488 {
489         int rc;
490
491         LASSERT(down_trylock(&inode->i_sem) != 0);
492
493         /* keep this when we get rid of OLD_EA (too noisy during conversion) */
494         if (EXT3_I(inode)->i_file_acl /* || large inode EA flag */)
495                 CWARN("setting EA on %lu/%u again... interesting\n",
496                       inode->i_ino, inode->i_generation);
497
498         rc = fsfilt_ext3_set_xattr(inode, handle, XATTR_LUSTRE_MDS_LOV_EA,
499                                    lmm, lmm_size);
500         return rc;
501 }
502
503 /* Must be called with i_sem held */
504 static int fsfilt_ext3_get_md(struct inode *inode, void *lmm, int lmm_size)
505 {
506         int rc;
507
508         rc = fsfilt_ext3_get_xattr(inode, XATTR_LUSTRE_MDS_LOV_EA,
509                                    lmm, lmm_size);
510         return rc;
511 }
512
513 static int fsfilt_ext3_set_mid(struct inode *inode, void *handle,
514                                void *mid, int mid_size)
515 {
516         int rc;
517
518         rc = fsfilt_ext3_set_xattr(inode, handle, XATTR_LUSTRE_MDS_MID_EA,
519                                    mid, mid_size);
520         return rc;
521 }
522
523 /* Must be called with i_sem held */
524 static int fsfilt_ext3_get_mid(struct inode *inode, void *mid, int mid_size)
525 {
526         int rc;
527
528         rc = fsfilt_ext3_get_xattr(inode, XATTR_LUSTRE_MDS_MID_EA,
529                                    mid, mid_size);
530         return rc;
531 }
532
533 static int fsfilt_ext3_set_sid(struct inode *inode, void *handle,
534                                void *sid, int sid_size)
535 {
536         int rc;
537
538         rc = fsfilt_ext3_set_xattr(inode, handle, XATTR_LUSTRE_MDS_SID_EA,
539                                    sid, sid_size);
540         return rc;
541 }
542
543 /* Must be called with i_sem held */
544 static int fsfilt_ext3_get_sid(struct inode *inode, void *sid, int sid_size)
545 {
546         int rc;
547
548         rc = fsfilt_ext3_get_xattr(inode, XATTR_LUSTRE_MDS_SID_EA,
549                                    sid, sid_size);
550         return rc;
551 }
552
553 static int fsfilt_ext3_send_bio(int rw, struct inode *inode, void *bio)
554 {
555         int rc = 0;
556 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
557         submit_bio(rw, (struct bio *)bio);
558 #else
559         struct bio *b = (struct kiobuf *)bio;
560         int blocks_per_page;
561         
562         rc = brw_kiovec(rw, 1, &b, inode->i_dev,
563                         b->blocks, 1 << inode->i_blkbits);
564
565         blocks_per_page = PAGE_SIZE >> inode->i_blkbits;
566
567         if (rc != (1 << inode->i_blkbits) * b->nr_pages * blocks_per_page) {
568                 CERROR("short write?  expected %d, wrote %d\n",
569                        (1 << inode->i_blkbits) * b->nr_pages *
570                        blocks_per_page, rc);
571         }
572 #endif
573         return rc;
574 }
575
576 static struct page *fsfilt_ext3_getpage(struct inode *inode, long int index)
577 {
578         int rc;
579         struct page *page;
580
581         page = grab_cache_page(inode->i_mapping, index);
582         if (page == NULL)
583                 return ERR_PTR(-ENOMEM);
584
585         if (PageUptodate(page)) {
586                 unlock_page(page);
587                 return page;
588         }
589
590         rc = inode->i_mapping->a_ops->readpage(NULL, page);
591         if (rc < 0) {
592                 page_cache_release(page);
593                 return ERR_PTR(rc);
594         }
595
596         return page;
597 }
598
599 static ssize_t fsfilt_ext3_readpage(struct file *file, char *buf, size_t count,
600                                     loff_t *off)
601 {
602         struct inode *inode = file->f_dentry->d_inode;
603         int rc = 0;
604
605         if (S_ISREG(inode->i_mode))
606                 rc = file->f_op->read(file, buf, count, off);
607         else {
608                 const int blkbits = inode->i_sb->s_blocksize_bits;
609                 const int blksize = inode->i_sb->s_blocksize;
610
611                 CDEBUG(D_EXT2, "reading "LPSZ" at dir %lu+%llu\n",
612                        count, inode->i_ino, *off);
613                 while (count > 0) {
614                         struct buffer_head *bh;
615
616                         bh = NULL;
617                         if (*off < inode->i_size) {
618                                 int err = 0;
619
620                                 bh = ext3_bread(NULL, inode, *off >> blkbits,
621                                                 0, &err);
622
623                                 CDEBUG(D_EXT2, "read %u@%llu\n", blksize, *off);
624
625                                 if (bh) {
626                                         memcpy(buf, bh->b_data, blksize);
627                                         brelse(bh);
628                                 } else if (err) {
629                                         /* XXX in theory we should just fake
630                                          * this buffer and continue like ext3,
631                                          * especially if this is a partial read
632                                          */
633                                         CERROR("error read dir %lu+%llu: %d\n",
634                                                inode->i_ino, *off, err);
635                                         RETURN(err);
636                                 }
637                         }
638                         if (!bh) {
639                                 struct ext3_dir_entry_2 *fake = (void *)buf;
640
641                                 CDEBUG(D_EXT2, "fake %u@%llu\n", blksize, *off);
642                                 memset(fake, 0, sizeof(*fake));
643                                 fake->rec_len = cpu_to_le32(blksize);
644                         }
645                         count -= blksize;
646                         buf += blksize;
647                         *off += blksize;
648                         rc += blksize;
649                 }
650         }
651
652         return rc;
653 }
654
655 static void fsfilt_ext3_cb_func(struct journal_callback *jcb, int error)
656 {
657         struct fsfilt_cb_data *fcb = (struct fsfilt_cb_data *)jcb;
658
659         fcb->cb_func(fcb->cb_obd, fcb->cb_last_num, fcb->cb_data, error);
660
661         OBD_SLAB_FREE(fcb, fcb_cache, sizeof *fcb);
662         atomic_dec(&fcb_cache_count);
663 }
664
665 static int fsfilt_ext3_add_journal_cb(struct obd_device *obd,
666                                       struct super_block *sb,
667                                       __u64 last_num, void *handle,
668                                       fsfilt_cb_t cb_func,
669                                       void *cb_data)
670 {
671         struct fsfilt_cb_data *fcb;
672
673         OBD_SLAB_ALLOC(fcb, fcb_cache, GFP_NOFS, sizeof *fcb);
674         if (fcb == NULL)
675                 RETURN(-ENOMEM);
676
677         atomic_inc(&fcb_cache_count);
678         fcb->cb_func = cb_func;
679         fcb->cb_obd = obd;
680         fcb->cb_last_num = last_num;
681         fcb->cb_data = cb_data;
682
683         CDEBUG(D_EXT2, "set callback for last_num: "LPD64"\n", last_num);
684         
685         lock_kernel();
686         journal_callback_set(handle, fsfilt_ext3_cb_func,
687                              (struct journal_callback *)fcb);
688         unlock_kernel();
689
690         return 0;
691 }
692
693 /*
694  * We need to hack the return value for the free inode counts because
695  * the current EA code requires one filesystem block per inode with EAs,
696  * so it is possible to run out of blocks before we run out of inodes.
697  *
698  * This can be removed when the ext3 EA code is fixed.
699  */
700 static int fsfilt_ext3_statfs(struct super_block *sb, struct obd_statfs *osfs)
701 {
702         struct kstatfs sfs;
703         int rc;
704
705         memset(&sfs, 0, sizeof(sfs));
706
707         rc = sb->s_op->statfs(sb, &sfs);
708
709         if (!rc && sfs.f_bfree < sfs.f_ffree) {
710                 sfs.f_files = (sfs.f_files - sfs.f_ffree) + sfs.f_bfree;
711                 sfs.f_ffree = sfs.f_bfree;
712         }
713
714         statfs_pack(osfs, &sfs);
715         return rc;
716 }
717
718 static int fsfilt_ext3_sync(struct super_block *sb)
719 {
720         return ext3_force_commit(sb);
721 }
722
723 #ifdef EXT3_MULTIBLOCK_ALLOCATOR
724 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
725 #define ext3_up_truncate_sem(inode)  up_write(&EXT3_I(inode)->truncate_sem);
726 #define ext3_down_truncate_sem(inode)  down_write(&EXT3_I(inode)->truncate_sem);
727 #else
728 #define ext3_up_truncate_sem(inode)  up(&EXT3_I(inode)->truncate_sem);
729 #define ext3_down_truncate_sem(inode)  down(&EXT3_I(inode)->truncate_sem);
730 #endif
731                                                                                                                                                                                                      
732 #include <linux/lustre_version.h>
733 #if EXT3_EXT_MAGIC == 0xf301
734 #define ee_start e_start
735 #define ee_block e_block
736 #define ee_len   e_num
737 #endif
738 #ifndef EXT3_BB_MAX_BLOCKS
739 #define ext3_mb_new_blocks(handle, inode, goal, count, aflags, err) \
740         ext3_new_blocks(handle, inode, count, goal, err)
741 #endif
742
743 struct bpointers {
744         unsigned long *blocks;
745         int *created;
746         unsigned long start;
747         int num;
748         int init_num;
749         int create;
750 };
751 static int ext3_ext_find_goal(struct inode *inode, struct ext3_ext_path *path,
752                                 unsigned long block, int *aflags)
753 {
754         struct ext3_inode_info *ei = EXT3_I(inode);
755         unsigned long bg_start;
756         unsigned long colour;
757         int depth;
758                                                                                                                                                                                                      
759         if (path) {
760                 struct ext3_extent *ex;
761                 depth = path->p_depth;
762                                                                                                                                                                                                      
763                 /* try to predict block placement */
764                 if ((ex = path[depth].p_ext)) {
765                         if (ex->ee_block + ex->ee_len == block)
766                                 *aflags |= 1;
767                         return ex->ee_start + (block - ex->ee_block);
768                 }
769                                                                                                                                                                                                      
770                 /* it looks index is empty
771                  * try to find starting from index itself */
772                 if (path[depth].p_bh)
773                         return path[depth].p_bh->b_blocknr;
774         }
775                                                                                                                                                                                                      
776         /* OK. use inode's group */
777         bg_start = (ei->i_block_group * EXT3_BLOCKS_PER_GROUP(inode->i_sb)) +
778                 le32_to_cpu(EXT3_SB(inode->i_sb)->s_es->s_first_data_block);
779         colour = (current->pid % 16) *
780                         (EXT3_BLOCKS_PER_GROUP(inode->i_sb) / 16);
781         return bg_start + colour + block;
782 }
783
784 static int ext3_ext_new_extent_cb(struct ext3_extents_tree *tree,
785                                   struct ext3_ext_path *path,
786                                   struct ext3_extent *newex, int exist)
787 {
788         struct inode *inode = tree->inode;
789         struct bpointers *bp = tree->private;
790         int count, err, goal;
791         unsigned long pblock;
792         unsigned long tgen;
793         loff_t new_i_size;
794         handle_t *handle;
795         int i, aflags = 0;
796                                                                                                                                                                                                      
797         i = EXT_DEPTH(tree);
798         EXT_ASSERT(i == path->p_depth);
799         EXT_ASSERT(path[i].p_hdr);
800                                                                                                                                                                                                      
801         if (exist) {
802                 err = EXT_CONTINUE;
803                 goto map;
804         }
805                                                                                                                                                                                                      
806         if (bp->create == 0) {
807                 i = 0;
808                 if (newex->ee_block < bp->start)
809                         i = bp->start - newex->ee_block;
810                 if (i >= newex->ee_len)
811                         CERROR("nothing to do?! i = %d, e_num = %u\n",
812                                         i, newex->ee_len);
813                 for (; i < newex->ee_len && bp->num; i++) {
814                         *(bp->created) = 0;
815                         bp->created++;
816                         *(bp->blocks) = 0;
817                         bp->blocks++;
818                         bp->num--;
819                         bp->start++;
820                 }
821                                                                                                                                                                                                      
822                 return EXT_CONTINUE;
823         }
824         tgen = EXT_GENERATION(tree);
825         count = ext3_ext_calc_credits_for_insert(tree, path);
826         ext3_up_truncate_sem(inode);
827                                                                                                                                                                                                      
828         lock_kernel();
829         handle = journal_start(EXT3_JOURNAL(inode), count + EXT3_ALLOC_NEEDED + 1);
830         unlock_kernel();
831         if (IS_ERR(handle)) {
832                 ext3_down_truncate_sem(inode);
833                 return PTR_ERR(handle);
834         }
835                                                                                                                                                                                                      
836         if (tgen != EXT_GENERATION(tree)) {
837                 /* the tree has changed. so path can be invalid at moment */
838                 lock_kernel();
839                 journal_stop(handle);
840                 unlock_kernel();
841                 ext3_down_truncate_sem(inode);
842                 return EXT_REPEAT;
843         }
844                                                                                                                                                                                                      
845         ext3_down_truncate_sem(inode);
846         count = newex->ee_len;
847         goal = ext3_ext_find_goal(inode, path, newex->ee_block, &aflags);
848         aflags |= 2; /* block have been already reserved */
849         pblock = ext3_mb_new_blocks(handle, inode, goal, &count, aflags, &err);
850         if (!pblock)
851                 goto out;
852         EXT_ASSERT(count <= newex->ee_len);
853                                                                                                                                                                                                      
854         /* insert new extent */
855         newex->ee_start = pblock;
856         newex->ee_len = count;
857         err = ext3_ext_insert_extent(handle, tree, path, newex);
858         if (err)
859                 goto out;
860                                                                                                                                                                                                      
861         /* correct on-disk inode size */
862         if (newex->ee_len > 0) {
863                 new_i_size = (loff_t) newex->ee_block + newex->ee_len;
864                 new_i_size = new_i_size << inode->i_blkbits;
865                 if (new_i_size > EXT3_I(inode)->i_disksize) {
866                         EXT3_I(inode)->i_disksize = new_i_size;
867                         err = ext3_mark_inode_dirty(handle, inode);
868                 }
869         }
870 out:
871         lock_kernel();
872         journal_stop(handle);
873         unlock_kernel();
874 map:
875         if (err >= 0) {
876                 /* map blocks */
877                 if (bp->num == 0) {
878                         CERROR("hmm. why do we find this extent?\n");
879                         CERROR("initial space: %lu:%u\n",
880                                 bp->start, bp->init_num);
881                         CERROR("current extent: %u/%u/%u %d\n",
882                                 newex->ee_block, newex->ee_len,
883                                 newex->ee_start, exist);
884                 }
885                 i = 0;
886                 if (newex->ee_block < bp->start)
887                         i = bp->start - newex->ee_block;
888                 if (i >= newex->ee_len)
889                         CERROR("nothing to do?! i = %d, e_num = %u\n",
890                                         i, newex->ee_len);
891                 for (; i < newex->ee_len && bp->num; i++) {
892                         *(bp->created) = (exist == 0 ? 1 : 0);
893                         bp->created++;
894                         *(bp->blocks) = newex->ee_start + i;
895                         bp->blocks++;
896                         bp->num--;
897                         bp->start++;
898                 }
899         }
900         return err;
901 }
902                                                                                                                                                                                                      
903 int fsfilt_map_nblocks(struct inode *inode, unsigned long block,
904                        unsigned long num, unsigned long *blocks,
905                        int *created, int create)
906 {
907         struct ext3_extents_tree tree;
908         struct bpointers bp;
909         int err;
910                                                                                                                                                                                                      
911         CDEBUG(D_OTHER, "blocks %lu-%lu requested for inode %u\n",
912                 block, block + num, (unsigned) inode->i_ino);
913                                                                                                                                                                                                      
914         ext3_init_tree_desc(&tree, inode);
915         tree.private = &bp;
916         bp.blocks = blocks;
917         bp.created = created;
918         bp.start = block;
919         bp.init_num = bp.num = num;
920         bp.create = create;
921                                                                                                                                                                                                      
922         ext3_down_truncate_sem(inode);
923         err = ext3_ext_walk_space(&tree, block, num, ext3_ext_new_extent_cb);
924         ext3_ext_invalidate_cache(&tree);
925         ext3_up_truncate_sem(inode);
926                                                                                                                                                                                                      
927         return err;
928 }
929
930 int fsfilt_ext3_map_ext_inode_pages(struct inode *inode, struct page **page,
931                                     int pages, unsigned long *blocks,
932                                     int *created, int create)
933 {
934         int blocks_per_page = PAGE_SIZE >> inode->i_blkbits;
935         int rc = 0, i = 0;
936         struct page *fp = NULL;
937         int clen = 0;
938
939         CDEBUG(D_OTHER, "inode %lu: map %d pages from %lu\n",
940                 inode->i_ino, pages, (*page)->index);
941
942         /* pages are sorted already. so, we just have to find
943          * contig. space and process them properly */
944         while (i < pages) {
945                 if (fp == NULL) {
946                         /* start new extent */
947                         fp = *page++;
948                         clen = 1;
949                         i++;
950                         continue;
951                 } else if (fp->index + clen == (*page)->index) {
952                         /* continue the extent */
953                         page++;
954                         clen++;
955                         i++;
956                         continue;
957                 }
958
959                 /* process found extent */
960                 rc = fsfilt_map_nblocks(inode, fp->index * blocks_per_page,
961                                         clen * blocks_per_page, blocks,
962                                         created, create);
963                 if (rc)
964                         GOTO(cleanup, rc);
965
966                 /* look for next extent */
967                 fp = NULL;
968                 blocks += blocks_per_page * clen;
969                 created += blocks_per_page * clen;
970         }
971
972         if (fp)
973                 rc = fsfilt_map_nblocks(inode, fp->index * blocks_per_page,
974                                         clen * blocks_per_page, blocks,
975                                         created, create);
976 cleanup:
977         return rc;
978 }
979 #endif
980
981 extern int ext3_map_inode_page(struct inode *inode, struct page *page,
982                                unsigned long *blocks, int *created, int create);
983 int fsfilt_ext3_map_bm_inode_pages(struct inode *inode, struct page **page,
984                                    int pages, unsigned long *blocks,
985                                    int *created, int create)
986 {
987         int blocks_per_page = PAGE_SIZE >> inode->i_blkbits;
988         unsigned long *b;
989         int rc = 0, i, *cr;
990
991         for (i = 0, cr = created, b = blocks; i < pages; i++, page++) {
992                 rc = ext3_map_inode_page(inode, *page, b, cr, create);
993                 if (rc) {
994                         CERROR("ino %lu, blk %lu cr %u create %d: rc %d\n",
995                                inode->i_ino, *b, *cr, create, rc);
996                         break;
997                 }
998
999                 b += blocks_per_page;
1000                 cr += blocks_per_page;
1001         }
1002         return rc;
1003 }
1004
1005 int fsfilt_ext3_map_inode_pages(struct inode *inode, struct page **page,
1006                                 int pages, unsigned long *blocks,
1007                                 int *created, int create,
1008                                 struct semaphore *optional_sem)
1009 {
1010         int rc;
1011 #ifdef EXT3_MULTIBLOCK_ALLOCATOR
1012         if (EXT3_I(inode)->i_flags & EXT3_EXTENTS_FL) {
1013                 rc = fsfilt_ext3_map_ext_inode_pages(inode, page, pages,
1014                                                      blocks, created, create);
1015                 return rc;
1016         }
1017 #endif
1018         if (optional_sem != NULL)
1019                 down(optional_sem);
1020         rc = fsfilt_ext3_map_bm_inode_pages(inode, page, pages, blocks,
1021                                             created, create);
1022         if (optional_sem != NULL)
1023                 up(optional_sem);
1024
1025         return rc;
1026 }
1027
1028 extern int ext3_prep_san_write(struct inode *inode, long *blocks,
1029                                int nblocks, loff_t newsize);
1030 static int fsfilt_ext3_prep_san_write(struct inode *inode, long *blocks,
1031                                       int nblocks, loff_t newsize)
1032 {
1033         return ext3_prep_san_write(inode, blocks, nblocks, newsize);
1034 }
1035
1036 static int fsfilt_ext3_read_record(struct file * file, void *buf,
1037                                    int size, loff_t *offs)
1038 {
1039         struct inode *inode = file->f_dentry->d_inode;
1040         unsigned long block;
1041         struct buffer_head *bh;
1042         int err, blocksize, csize, boffs;
1043
1044         /* prevent reading after eof */
1045         lock_kernel();
1046         if (inode->i_size < *offs + size) {
1047                 size = inode->i_size - *offs;
1048                 unlock_kernel();
1049                 if (size < 0) {
1050                         CERROR("size %llu is too short for read %u@%llu\n",
1051                                inode->i_size, size, *offs);
1052                         return -EIO;
1053                 } else if (size == 0) {
1054                         return 0;
1055                 }
1056         } else {
1057                 unlock_kernel();
1058         }
1059
1060         blocksize = 1 << inode->i_blkbits;
1061
1062         while (size > 0) {
1063                 block = *offs >> inode->i_blkbits;
1064                 boffs = *offs & (blocksize - 1);
1065                 csize = min(blocksize - boffs, size);
1066                 bh = ext3_bread(NULL, inode, block, 0, &err);
1067                 if (!bh) {
1068                         CERROR("can't read block: %d\n", err);
1069                         return err;
1070                 }
1071
1072                 memcpy(buf, bh->b_data + boffs, csize);
1073                 brelse(bh);
1074
1075                 *offs += csize;
1076                 buf += csize;
1077                 size -= csize;
1078         }
1079         return 0;
1080 }
1081
1082 static int fsfilt_ext3_write_record(struct file *file, void *buf, int bufsize,
1083                                     loff_t *offs, int force_sync)
1084 {
1085         struct buffer_head *bh = NULL;
1086         unsigned long block;
1087         struct inode *inode = file->f_dentry->d_inode;
1088         loff_t old_size = inode->i_size, offset = *offs;
1089         loff_t new_size = inode->i_size;
1090         journal_t *journal;
1091         handle_t *handle;
1092         int err = 0, block_count = 0, blocksize, size, boffs;
1093
1094         /* Determine how many transaction credits are needed */
1095         blocksize = 1 << inode->i_blkbits;
1096         block_count = (*offs & (blocksize - 1)) + bufsize;
1097         block_count = (block_count + blocksize - 1) >> inode->i_blkbits;
1098
1099         journal = EXT3_SB(inode->i_sb)->s_journal;
1100         lock_kernel();
1101         handle = journal_start(journal,
1102                                block_count * EXT3_DATA_TRANS_BLOCKS + 2);
1103         unlock_kernel();
1104         if (IS_ERR(handle)) {
1105                 CERROR("can't start transaction\n");
1106                 return PTR_ERR(handle);
1107         }
1108
1109         while (bufsize > 0) {
1110                 if (bh != NULL)
1111                         brelse(bh);
1112
1113                 block = offset >> inode->i_blkbits;
1114                 boffs = offset & (blocksize - 1);
1115                 size = min(blocksize - boffs, bufsize);
1116                 bh = ext3_bread(handle, inode, block, 1, &err);
1117                 if (!bh) {
1118                         CERROR("can't read/create block: %d\n", err);
1119                         goto out;
1120                 }
1121
1122                 err = ext3_journal_get_write_access(handle, bh);
1123                 if (err) {
1124                         CERROR("journal_get_write_access() returned error %d\n",
1125                                err);
1126                         goto out;
1127                 }
1128                 LASSERT(bh->b_data + boffs + size <= bh->b_data + bh->b_size);
1129                 memcpy(bh->b_data + boffs, buf, size);
1130                 err = ext3_journal_dirty_metadata(handle, bh);
1131                 if (err) {
1132                         CERROR("journal_dirty_metadata() returned error %d\n",
1133                                err);
1134                         goto out;
1135                 }
1136                 if (offset + size > new_size)
1137                         new_size = offset + size;
1138                 offset += size;
1139                 bufsize -= size;
1140                 buf += size;
1141         }
1142
1143         if (force_sync)
1144                 handle->h_sync = 1; /* recovery likes this */
1145 out:
1146         if (bh)
1147                 brelse(bh);
1148
1149         /* correct in-core and on-disk sizes */
1150         if (new_size > inode->i_size) {
1151                 lock_kernel();
1152                 if (new_size > inode->i_size)
1153                         inode->i_size = new_size;
1154                 if (inode->i_size > EXT3_I(inode)->i_disksize)
1155                         EXT3_I(inode)->i_disksize = inode->i_size;
1156                 if (inode->i_size > old_size)
1157                         mark_inode_dirty(inode);
1158                 unlock_kernel();
1159         }
1160
1161         lock_kernel();
1162         journal_stop(handle);
1163         unlock_kernel();
1164
1165         if (err == 0)
1166                 *offs = offset;
1167         return err;
1168 }
1169
1170 static int fsfilt_ext3_setup(struct obd_device *obd, struct super_block *sb)
1171 {
1172 #ifdef EXT3_FEATURE_INCOMPAT_MDSNUM
1173         struct mds_obd *mds = &obd->u.mds;
1174 #endif
1175 #if 0
1176         EXT3_SB(sb)->dx_lock = fsfilt_ext3_dx_lock;
1177         EXT3_SB(sb)->dx_unlock = fsfilt_ext3_dx_unlock;
1178 #endif
1179 #ifdef S_PDIROPS
1180         CWARN("Enabling PDIROPS\n");
1181         set_opt(EXT3_SB(sb)->s_mount_opt, PDIROPS);
1182         sb->s_flags |= S_PDIROPS;
1183 #endif
1184         /* setup mdsnum in underlying fs */
1185 #ifdef EXT3_FEATURE_INCOMPAT_MDSNUM
1186         if (mds->mds_lmv_obd) {
1187                 struct ext3_sb_info *sbi = EXT3_SB(sb);
1188                 struct ext3_super_block *es = sbi->s_es;
1189                 handle_t *handle;
1190                 int err;
1191                 
1192                 if (!EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_MDSNUM)) {
1193                         CWARN("%s: set mdsnum %d in ext3\n",
1194                               obd->obd_name, mds->mds_num);
1195                         lock_kernel();
1196                         handle = journal_start(sbi->s_journal, 1);
1197                         unlock_kernel();
1198                         LASSERT(!IS_ERR(handle));
1199                         err = ext3_journal_get_write_access(handle, sbi->s_sbh);
1200                         LASSERT(err == 0);
1201                         EXT3_SET_INCOMPAT_FEATURE(sb,
1202                                                 EXT3_FEATURE_INCOMPAT_MDSNUM);
1203                         es->s_mdsnum = mds->mds_num;
1204                         err = ext3_journal_dirty_metadata(handle, sbi->s_sbh);
1205                         LASSERT(err == 0);
1206                         lock_kernel();
1207                         journal_stop(handle);
1208                         unlock_kernel();
1209                 } else {
1210                         CWARN("%s: mdsnum initialized to %u in ext3fs\n",
1211                                 obd->obd_name, es->s_mdsnum);
1212                 }
1213                 sbi->s_mdsnum = es->s_mdsnum;
1214         }
1215 #endif
1216         return 0;
1217 }
1218
1219 extern int ext3_add_dir_entry(struct dentry *dentry);
1220 extern int ext3_del_dir_entry(struct dentry *dentry);
1221
1222 static int fsfilt_ext3_add_dir_entry(struct obd_device *obd,
1223                                      struct dentry *parent,
1224                                      char *name, int namelen,
1225                                      unsigned long ino,
1226                                      unsigned long generation,
1227                                      unsigned long mds, 
1228                                      unsigned long fid)
1229 {
1230 #ifdef EXT3_FEATURE_INCOMPAT_MDSNUM
1231         struct dentry *dentry;
1232         int err;
1233         LASSERT(ino != 0);
1234         LASSERT(namelen != 0);
1235         dentry = ll_lookup_one_len(name, parent, namelen);
1236         if (IS_ERR(dentry)) {
1237                 CERROR("can't lookup %*s in %lu/%lu: %d\n", dentry->d_name.len,
1238                        dentry->d_name.name, dentry->d_inode->i_ino,
1239                        (unsigned long) dentry->d_inode->i_generation,
1240                        (int) PTR_ERR(dentry));
1241                 RETURN(PTR_ERR(dentry));
1242         }
1243         if (dentry->d_inode != NULL || dentry->d_flags & DCACHE_CROSS_REF) {
1244                 CERROR("dentry %*s(0x%p) found\n", dentry->d_name.len,
1245                        dentry->d_name.name, dentry);
1246                 l_dput(dentry);
1247                 RETURN(-EEXIST);
1248         }
1249
1250         /* mds_reint_rename() may use this method to add dir entry 
1251          * that points onto local inode. and we don't want to find
1252          * it cross-ref by subsequent lookups */
1253         d_drop(dentry);
1254
1255         dentry->d_flags |= DCACHE_CROSS_REF;
1256         dentry->d_inum = ino;
1257         dentry->d_mdsnum = mds;
1258         dentry->d_generation = generation;
1259         dentry->d_fid = fid;
1260         lock_kernel();
1261         err = ext3_add_dir_entry(dentry);
1262         unlock_kernel();
1263         
1264         l_dput(dentry);
1265
1266         RETURN(err);
1267 #else
1268 #error "rebuild kernel and lustre with ext3-mds-num patch!"
1269         LASSERT(0);
1270 #endif
1271 }
1272
1273 static int fsfilt_ext3_del_dir_entry(struct obd_device *obd,
1274                                  struct dentry *dentry)
1275 {
1276 #ifdef EXT3_FEATURE_INCOMPAT_MDSNUM
1277         int err;
1278         lock_kernel();
1279         err = ext3_del_dir_entry(dentry);
1280         unlock_kernel();
1281         if (err == 0)
1282                 d_drop(dentry);
1283         return err;
1284 #else
1285 #error "rebuild kernel and lustre with ext3-mds-num patch!"
1286         LASSERT(0);
1287 #endif
1288 }
1289
1290 /* If fso is NULL, op is FSFILT operation, otherwise op is number of fso
1291    objects. Logs is number of logfiles to update */
1292 static int fsfilt_ext3_get_op_len(int op, struct fsfilt_objinfo *fso, int logs)
1293 {
1294         if ( !fso ) {
1295                 switch(op) {
1296                 case FSFILT_OP_CREATE:
1297                                  /* directory leaf, index & indirect & EA*/
1298                         return 4 + 3 * logs;
1299                 case FSFILT_OP_UNLINK:
1300                         return 3 * logs;
1301                 }
1302         } else {
1303                 int i;
1304                 int needed = 0;
1305                 struct super_block *sb = fso->fso_dentry->d_inode->i_sb;
1306                 int blockpp = 1 << (PAGE_CACHE_SHIFT - sb->s_blocksize_bits);
1307                 int addrpp = EXT3_ADDR_PER_BLOCK(sb) * blockpp;
1308                 for (i = 0; i < op; i++, fso++) {
1309                         int nblocks = fso->fso_bufcnt * blockpp;
1310                         int ndindirect = min(nblocks, addrpp + 1);
1311                         int nindir = nblocks + ndindirect + 1;
1312
1313                         needed += nindir;
1314                 }
1315                 return needed + 3 * logs;
1316         }
1317
1318         return 0;
1319 }
1320
1321
1322 #define EXTENTS_EA "write_extents"
1323 #define EXTENTS_EA_SIZE 64
1324
1325 int ext3_ext_in_ea_alloc_space(struct inode *, int, const char *, unsigned long, unsigned long);
1326 int ext3_ext_in_ea_remove_space(struct inode *, int, const char *, unsigned long, unsigned long);
1327 int ext3_ext_in_ea_get_extents(struct inode *, int, const char *, char **, int *);
1328 int ext3_ext_in_ea_get_extents_num(struct inode *, int, const char *, int *);
1329
1330 static int fsfilt_ext3_insert_extents_ea(struct inode *inode, 
1331                                       unsigned long from, 
1332                                       unsigned long num) 
1333 {
1334         int rc = 0;
1335
1336         rc = ext3_ext_in_ea_alloc_space(inode, EXT3_XATTR_INDEX_TRUSTED,
1337                                         EXTENTS_EA, from, num);  
1338         return rc;
1339 }
1340
1341 static int fsfilt_ext3_remove_extents_ea(struct inode *inode, 
1342                                          unsigned long from, 
1343                                          unsigned long num) 
1344 {
1345         int rc = 0;
1346
1347         rc = ext3_ext_in_ea_remove_space(inode, EXT3_XATTR_INDEX_TRUSTED,
1348                                          EXTENTS_EA, from, num);  
1349         return rc;
1350 }
1351
1352 extern int ext3_init_tree_in_ea(struct inode *inode, int name_index,
1353                                 const char *eaname, int size);
1354                                 
1355 static int fsfilt_ext3_init_extents_ea(struct inode *inode)
1356 {
1357         int rc = 0;
1358
1359         rc = ext3_init_tree_in_ea(inode, EXT3_XATTR_INDEX_TRUSTED,
1360                                   EXTENTS_EA, 64);  
1361         return rc;
1362 }
1363
1364 static int fsfilt_ext3_get_inode_write_extents(struct inode *inode, 
1365                                          char **pbuf, int *size)
1366 {
1367         int rc = 0;
1368         
1369         rc = ext3_ext_in_ea_get_extents(inode, EXT3_XATTR_INDEX_TRUSTED,
1370                                         EXTENTS_EA,  pbuf, size);
1371         return rc; 
1372
1373
1374 static int fsfilt_ext3_get_write_extents_num(struct inode *inode, int *size)
1375 {
1376         int rc = 0;
1377         
1378         rc = ext3_ext_in_ea_get_extents_num(inode, EXT3_XATTR_INDEX_TRUSTED, 
1379                                             EXTENTS_EA, size);
1380         return rc; 
1381
1382
1383 static struct fsfilt_operations fsfilt_ext3_ops = {
1384         .fs_type                    = "ext3",
1385         .fs_owner                   = THIS_MODULE,
1386         .fs_start                   = fsfilt_ext3_start,
1387         .fs_brw_start               = fsfilt_ext3_brw_start,
1388         .fs_commit                  = fsfilt_ext3_commit,
1389         .fs_commit_async            = fsfilt_ext3_commit_async,
1390         .fs_commit_wait             = fsfilt_ext3_commit_wait,
1391         .fs_setattr                 = fsfilt_ext3_setattr,
1392         .fs_iocontrol               = fsfilt_ext3_iocontrol,
1393         .fs_set_md                  = fsfilt_ext3_set_md,
1394         .fs_get_md                  = fsfilt_ext3_get_md,
1395         .fs_set_mid                 = fsfilt_ext3_set_mid,
1396         .fs_get_mid                 = fsfilt_ext3_get_mid,
1397         .fs_set_sid                 = fsfilt_ext3_set_sid,
1398         .fs_get_sid                 = fsfilt_ext3_get_sid,
1399         .fs_readpage                = fsfilt_ext3_readpage,
1400         .fs_add_journal_cb          = fsfilt_ext3_add_journal_cb,
1401         .fs_statfs                  = fsfilt_ext3_statfs,
1402         .fs_sync                    = fsfilt_ext3_sync,
1403         .fs_map_inode_pages         = fsfilt_ext3_map_inode_pages,
1404         .fs_prep_san_write          = fsfilt_ext3_prep_san_write,
1405         .fs_write_record            = fsfilt_ext3_write_record,
1406         .fs_read_record             = fsfilt_ext3_read_record,
1407         .fs_setup                   = fsfilt_ext3_setup,
1408         .fs_getpage                 = fsfilt_ext3_getpage,
1409         .fs_send_bio                = fsfilt_ext3_send_bio,
1410         .fs_set_xattr               = fsfilt_ext3_set_xattr,
1411         .fs_get_xattr               = fsfilt_ext3_get_xattr,
1412         .fs_get_op_len              = fsfilt_ext3_get_op_len,
1413         .fs_add_dir_entry           = fsfilt_ext3_add_dir_entry,
1414         .fs_del_dir_entry           = fsfilt_ext3_del_dir_entry,
1415         .fs_init_extents_ea         = fsfilt_ext3_init_extents_ea,
1416         .fs_insert_extents_ea       = fsfilt_ext3_insert_extents_ea,
1417         .fs_remove_extents_ea       = fsfilt_ext3_remove_extents_ea,
1418         .fs_get_inode_write_extents = fsfilt_ext3_get_inode_write_extents,
1419         .fs_get_write_extents_num   = fsfilt_ext3_get_write_extents_num,
1420 };
1421
1422 static int __init fsfilt_ext3_init(void)
1423 {
1424         int rc;
1425
1426         fcb_cache = kmem_cache_create("fsfilt_ext3_fcb",
1427                                       sizeof(struct fsfilt_cb_data), 0,
1428                                       0, NULL, NULL);
1429         if (!fcb_cache) {
1430                 CERROR("error allocating fsfilt journal callback cache\n");
1431                 GOTO(out, rc = -ENOMEM);
1432         }
1433
1434         rc = fsfilt_register_ops(&fsfilt_ext3_ops);
1435
1436         if (rc)
1437                 kmem_cache_destroy(fcb_cache);
1438 out:
1439         return rc;
1440 }
1441
1442 static void __exit fsfilt_ext3_exit(void)
1443 {
1444         fsfilt_unregister_ops(&fsfilt_ext3_ops);
1445         LASSERTF(kmem_cache_destroy(fcb_cache) == 0,
1446                  "can't free fsfilt callback cache: count %d\n",
1447                  atomic_read(&fcb_cache_count));
1448 }
1449
1450 module_init(fsfilt_ext3_init);
1451 module_exit(fsfilt_ext3_exit);
1452
1453 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
1454 MODULE_DESCRIPTION("Lustre ext3 Filesystem Helper v0.1");
1455 MODULE_LICENSE("GPL");