Whamcloud - gitweb
LU-433 remove jbd2-jcberr patch from kernel
[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  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  *
32  * Copyright (c) 2011 Whamcloud, Inc.
33  *
34  */
35 /*
36  * Copyright (c) 2011 Whamcloud, Inc.
37  */
38 /*
39  * This file is part of Lustre, http://www.lustre.org/
40  * Lustre is a trademark of Sun Microsystems, Inc.
41  *
42  * lustre/lvfs/fsfilt_ext3.c
43  *
44  * Author: Andreas Dilger <adilger@clusterfs.com>
45  */
46
47 #define DEBUG_SUBSYSTEM S_FILTER
48
49 #include <linux/init.h>
50 #include <linux/module.h>
51 #include <linux/fs.h>
52 #include <linux/slab.h>
53 #include <linux/pagemap.h>
54 #include <linux/quotaops.h>
55 #ifdef HAVE_LINUX_EXPORTFS_H
56 #include <linux/exportfs.h>
57 #endif
58 #ifdef HAVE_EXT4_LDISKFS
59 #include <ext4/ext4.h>
60 #include <ext4/ext4_jbd2.h>
61 #else
62 #include <linux/jbd.h>
63 #include <linux/ext3_fs.h>
64 #include <linux/ext3_jbd.h>
65 #endif
66 #include <linux/version.h>
67 #include <linux/bitops.h>
68 #include <linux/quota.h>
69 #ifdef HAVE_QUOTAIO_H
70 # include <linux/quotaio_v2.h>
71 #elif defined(HAVE_FS_QUOTA_QUOTAIO_H)
72 # include <quota/quotaio_v2.h>
73 # include <quota/quota_tree.h>
74 # define V2_DQTREEOFF    QT_TREEOFF
75 #elif defined(HAVE_FS_QUOTAIO_V1_H)
76 # include <quotaio_v2.h>
77 # include <quota_tree.h>
78 # define V2_DQTREEOFF    QT_TREEOFF
79 # define V2_INITQVERSIONS_R1 V2_INITQVERSIONS
80 #endif
81
82 #ifdef QFMT_VFS_V1
83 #define QFMT_LUSTRE QFMT_VFS_V1
84 #else
85 #define QFMT_LUSTRE QFMT_VFS_V0
86 #endif
87
88 #if defined(HAVE_EXT3_XATTR_H)
89 # include <ext3/xattr.h>
90 #elif !defined(EXT3_XATTR_INDEX_TRUSTED)
91 /* ext3 xattr.h not available in rh style kernel-devel rpm */
92 /* CHAOS kernel-devel package will not include fs/ldiskfs/xattr.h */
93 # define EXT3_XATTR_INDEX_TRUSTED        4
94 extern int ext3_xattr_get(struct inode *, int, const char *, void *, size_t);
95 extern int ext3_xattr_set_handle(handle_t *, struct inode *, int, const char *, const void *, size_t, int);
96 #endif
97
98 #include <libcfs/libcfs.h>
99 #include <lustre_fsfilt.h>
100 #include <obd.h>
101 #include <lustre_quota.h>
102 #include <linux/lustre_compat25.h>
103 #include <linux/lprocfs_status.h>
104
105 #ifdef HAVE_EXT4_LDISKFS
106 #include <ext4/ext4_extents.h>
107 #else
108 #include <linux/ext3_extents.h>
109 #endif
110
111 #include "lustre_quota_fmt.h"
112
113 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,15)
114 #define FSFILT_DATA_TRANS_BLOCKS(sb)      EXT3_DATA_TRANS_BLOCKS
115 #define FSFILT_DELETE_TRANS_BLOCKS(sb)    EXT3_DELETE_TRANS_BLOCKS
116 #else
117 #define FSFILT_DATA_TRANS_BLOCKS(sb)      EXT3_DATA_TRANS_BLOCKS(sb)
118 #define FSFILT_DELETE_TRANS_BLOCKS(sb)    EXT3_DELETE_TRANS_BLOCKS(sb)
119 #endif
120
121 #ifdef EXT3_SINGLEDATA_TRANS_BLOCKS_HAS_SB
122 /* for kernels 2.6.18 and later */
123 #define FSFILT_SINGLEDATA_TRANS_BLOCKS(sb) EXT3_SINGLEDATA_TRANS_BLOCKS(sb)
124 #else
125 #define FSFILT_SINGLEDATA_TRANS_BLOCKS(sb) EXT3_SINGLEDATA_TRANS_BLOCKS
126 #endif
127
128 #ifdef EXT_INSERT_EXTENT_WITH_5ARGS
129 #define fsfilt_ext3_ext_insert_extent(handle, inode, path, newext, flag) \
130                ext3_ext_insert_extent(handle, inode, path, newext, flag)
131 #else
132 #define fsfilt_ext3_ext_insert_extent(handle, inode, path, newext, flag) \
133                ext3_ext_insert_extent(handle, inode, path, newext)
134 #endif
135
136 #ifdef EXT3_DISCARD_PREALLOCATIONS
137 #define ext3_mb_discard_inode_preallocations(inode) \
138                  ext3_discard_preallocations(inode)
139 #endif
140
141 #ifdef HAVE_EXT4_LDISKFS
142 #define fsfilt_log_start_commit(journal, tid) jbd2_log_start_commit(journal, tid)
143 #define fsfilt_log_wait_commit(journal, tid) jbd2_log_wait_commit(journal, tid)
144 #else
145 #define fsfilt_log_start_commit(journal, tid) log_start_commit(journal, tid)
146 #define fsfilt_log_wait_commit(journal, tid) log_wait_commit(journal, tid)
147 #define ext_pblock(ex) le32_to_cpu((ex)->ee_start)
148 #define ext3_ext_store_pblock(ex, pblock)  ((ex)->ee_start = cpu_to_le32(pblock))
149 #define ext3_inode_bitmap(sb,desc) le32_to_cpu((desc)->bg_inode_bitmap)
150 #endif
151
152 #ifdef HAVE_EXT4_JOURNAL_CALLBACK_ADD
153 # define journal_callback ext4_journal_cb_entry
154 # define fsfilt_journal_callback_set(handle, func, jcb) \
155          ext4_journal_callback_add(handle, func, jcb)
156 #elif defined(HAVE_JBD2_JOURNAL_CALLBACK_SET)
157 # define fsfilt_journal_callback_set(handle, func, jcb) \
158          jbd2_journal_callback_set(handle, func, jcb)
159 #elif defined(HAVE_JOURNAL_CALLBACK_SET)
160 # define fsfilt_journal_callback_set(handle, func, jcb) \
161          journal_callback_set(handle, func, jcb)
162 #else
163 # error missing journal commit callback
164 #endif /* HAVE_EXT4_JOURNAL_CALLBACK_ADD */
165
166 static cfs_mem_cache_t *fcb_cache;
167
168 struct fsfilt_cb_data {
169         struct journal_callback cb_jcb; /* jbd private data - MUST BE FIRST */
170         fsfilt_cb_t cb_func;            /* MDS/OBD completion function */
171         struct obd_device *cb_obd;      /* MDS/OBD completion device */
172         __u64 cb_last_rcvd;             /* MDS/OST last committed operation */
173         void *cb_data;                  /* MDS/OST completion function data */
174 };
175
176 #ifndef ext3_find_next_bit
177 #define ext3_find_next_bit           ext2_find_next_bit
178 #endif
179
180 #ifndef ext2_find_next_bit
181 #ifdef __LITTLE_ENDIAN
182 #define ext2_find_next_bit(addr, size, off) find_next_bit((unsigned long *)(addr), (size), (off))
183 #else
184 error "Need implementation of find_next_bit on big-endian systems"
185 #endif  /* __LITTLE_ENDIAN */
186 #endif  /* !ext2_find_next_le_bit */
187
188 static char *fsfilt_ext3_get_label(struct super_block *sb)
189 {
190         return EXT3_SB(sb)->s_es->s_volume_name;
191 }
192
193 static int fsfilt_ext3_set_label(struct super_block *sb, char *label)
194 {
195         /* see e.g. fsfilt_ext3_write_record() */
196         journal_t *journal;
197         handle_t *handle;
198         int err;
199
200         journal = EXT3_SB(sb)->s_journal;
201         handle = ext3_journal_start_sb(sb, 1);
202         if (IS_ERR(handle)) {
203                 CERROR("can't start transaction\n");
204                 return(PTR_ERR(handle));
205         }
206
207         err = ext3_journal_get_write_access(handle, EXT3_SB(sb)->s_sbh);
208         if (err)
209                 goto out;
210
211         memcpy(EXT3_SB(sb)->s_es->s_volume_name, label,
212                sizeof(EXT3_SB(sb)->s_es->s_volume_name));
213
214         err = ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh);
215
216 out:
217         ext3_journal_stop(handle);
218
219         return(err);
220 }
221
222 static char *fsfilt_ext3_uuid(struct super_block *sb)
223 {
224         return EXT3_SB(sb)->s_es->s_uuid;
225 }
226
227 #ifdef HAVE_DISK_INODE_VERSION
228
229 static __u64 get_i_version(struct inode *inode)
230 {
231         return EXT3_I(inode)->i_fs_version;
232 }
233
234 static void set_i_version(struct inode *inode, __u64 new_version)
235 {
236         (EXT3_I(inode))->i_fs_version = new_version;
237 }
238
239 /*
240  * Get the 64-bit version for an inode.
241  */
242 static __u64 fsfilt_ext3_get_version(struct inode *inode)
243 {
244         CDEBUG(D_INFO, "Get version "LPX64" for inode %lu\n",
245                get_i_version(inode), inode->i_ino);
246         return get_i_version(inode);
247 }
248
249 /*
250  * Set the 64-bit version and return the old version.
251  */
252 static __u64 fsfilt_ext3_set_version(struct inode *inode, __u64 new_version)
253 {
254         __u64 old_version = get_i_version(inode);
255
256         CDEBUG(D_INFO, "Set version "LPX64" (old "LPX64") for inode %lu\n",
257                new_version, old_version, inode->i_ino);
258         set_i_version(inode, new_version);
259         /* version is set after all inode operations are finished, so we should
260          * mark it dirty here */
261         inode->i_sb->s_op->dirty_inode(inode);
262         return old_version;
263 }
264
265 #endif
266
267 /*
268  * We don't currently need any additional blocks for rmdir and
269  * unlink transactions because we are storing the OST oa_id inside
270  * the inode (which we will be changing anyways as part of this
271  * transaction).
272  */
273 static void *fsfilt_ext3_start(struct inode *inode, int op, void *desc_private,
274                                int logs)
275 {
276         /* For updates to the last received file */
277         int nblocks = FSFILT_SINGLEDATA_TRANS_BLOCKS(inode->i_sb);
278         journal_t *journal;
279         void *handle;
280
281         if (current->journal_info) {
282                 CDEBUG(D_INODE, "increasing refcount on %p\n",
283                        current->journal_info);
284                 goto journal_start;
285         }
286
287         switch(op) {
288         case FSFILT_OP_RMDIR:
289         case FSFILT_OP_UNLINK:
290                 /* delete one file + create/update logs for each stripe */
291                 nblocks += FSFILT_DELETE_TRANS_BLOCKS(inode->i_sb);
292                 nblocks += (EXT3_INDEX_EXTRA_TRANS_BLOCKS +
293                             FSFILT_SINGLEDATA_TRANS_BLOCKS(inode->i_sb)) * logs;
294                 break;
295         case FSFILT_OP_RENAME:
296                 /* modify additional directory */
297                 nblocks += FSFILT_SINGLEDATA_TRANS_BLOCKS(inode->i_sb);
298                 /* no break */
299         case FSFILT_OP_SYMLINK:
300                 /* additional block + block bitmap + GDT for long symlink */
301                 nblocks += 3;
302                 /* no break */
303         case FSFILT_OP_CREATE: {
304 #if defined(EXT3_EXTENTS_FL) && defined(EXT3_INDEX_FL) && !defined(HAVE_EXT4_LDISKFS)
305                 static int warned;
306                 if (!warned) {
307                         if (!test_opt(inode->i_sb, EXTENTS)) {
308                                 warned = 1;
309                         } else if (((EXT3_I(inode)->i_flags &
310                               cpu_to_le32(EXT3_EXTENTS_FL | EXT3_INDEX_FL)) ==
311                               cpu_to_le32(EXT3_EXTENTS_FL | EXT3_INDEX_FL))) {
312                                 CWARN("extent-mapped directory found with "
313                                       "ext3-based ldiskfs - contact "
314                                       "http://bugs.whamcloud.com/\n");
315                                 warned = 1;
316                         }
317                 }
318 #endif
319                 /* no break */
320         }
321         case FSFILT_OP_MKDIR:
322         case FSFILT_OP_MKNOD:
323                 /* modify one inode + block bitmap + GDT */
324                 nblocks += 3;
325                 /* no break */
326         case FSFILT_OP_LINK:
327                 /* modify parent directory */
328                 nblocks += EXT3_INDEX_EXTRA_TRANS_BLOCKS +
329                          FSFILT_DATA_TRANS_BLOCKS(inode->i_sb);
330                 /* create/update logs for each stripe */
331                 nblocks += (EXT3_INDEX_EXTRA_TRANS_BLOCKS +
332                             FSFILT_SINGLEDATA_TRANS_BLOCKS(inode->i_sb)) * logs;
333                 break;
334         case FSFILT_OP_SETATTR:
335                 /* Setattr on inode */
336                 nblocks += 1;
337                 nblocks += EXT3_INDEX_EXTRA_TRANS_BLOCKS +
338                          FSFILT_DATA_TRANS_BLOCKS(inode->i_sb);
339                 /* quota chown log for each stripe */
340                 nblocks += (EXT3_INDEX_EXTRA_TRANS_BLOCKS +
341                             FSFILT_SINGLEDATA_TRANS_BLOCKS(inode->i_sb)) * logs;
342                 break;
343         case FSFILT_OP_CANCEL_UNLINK:
344                 /* blocks for log header bitmap update OR
345                  * blocks for catalog header bitmap update + unlink of logs */
346                 nblocks = (LLOG_CHUNK_SIZE >> inode->i_blkbits) +
347                         FSFILT_DELETE_TRANS_BLOCKS(inode->i_sb) * logs;
348                 break;
349         default: CERROR("unknown transaction start op %d\n", op);
350                 LBUG();
351         }
352
353         LASSERT(current->journal_info == desc_private);
354         journal = EXT3_SB(inode->i_sb)->s_journal;
355         if (nblocks > journal->j_max_transaction_buffers) {
356                 CWARN("too many credits %d for op %ux%u using %d instead\n",
357                        nblocks, op, logs, journal->j_max_transaction_buffers);
358                 nblocks = journal->j_max_transaction_buffers;
359         }
360
361  journal_start:
362         LASSERTF(nblocks > 0, "can't start %d credit transaction\n", nblocks);
363         handle = ext3_journal_start(inode, nblocks);
364
365         if (!IS_ERR(handle))
366                 LASSERT(current->journal_info == handle);
367         else
368                 CERROR("error starting handle for op %u (%u credits): rc %ld\n",
369                        op, nblocks, PTR_ERR(handle));
370         return handle;
371 }
372
373 /*
374  * Calculate the number of buffer credits needed to write multiple pages in
375  * a single ext3 transaction.  No, this shouldn't be here, but as yet ext3
376  * doesn't have a nice API for calculating this sort of thing in advance.
377  *
378  * See comment above ext3_writepage_trans_blocks for details.  We assume
379  * no data journaling is being done, but it does allow for all of the pages
380  * being non-contiguous.  If we are guaranteed contiguous pages we could
381  * reduce the number of (d)indirect blocks a lot.
382  *
383  * With N blocks per page and P pages, for each inode we have at most:
384  * N*P indirect
385  * min(N*P, blocksize/4 + 1) dindirect blocks
386  * niocount tindirect
387  *
388  * For the entire filesystem, we have at most:
389  * min(sum(nindir + P), ngroups) bitmap blocks (from the above)
390  * min(sum(nindir + P), gdblocks) group descriptor blocks (from the above)
391  * objcount inode blocks
392  * 1 superblock
393  * 2 * EXT3_SINGLEDATA_TRANS_BLOCKS for the quota files
394  *
395  * 1 EXT3_DATA_TRANS_BLOCKS for the last_rcvd update.
396  */
397 static int fsfilt_ext3_credits_needed(int objcount, struct fsfilt_objinfo *fso,
398                                       int niocount, struct niobuf_local *nb)
399 {
400         struct super_block *sb = fso->fso_dentry->d_inode->i_sb;
401         __u64 next_indir;
402         const int blockpp = 1 << (CFS_PAGE_SHIFT - sb->s_blocksize_bits);
403         int nbitmaps = 0, ngdblocks;
404         int needed = objcount + 1; /* inodes + superblock */
405         int i, j;
406
407         for (i = 0, j = 0; i < objcount; i++, fso++) {
408                 /* two or more dindirect blocks in case we cross boundary */
409                 int ndind = (long)((nb[j + fso->fso_bufcnt - 1].offset -
410                                     nb[j].offset) >>
411                                    sb->s_blocksize_bits) /
412                         (EXT3_ADDR_PER_BLOCK(sb) * EXT3_ADDR_PER_BLOCK(sb));
413                 nbitmaps += min(fso->fso_bufcnt, ndind > 0 ? ndind : 2);
414
415                 /* leaf, indirect, tindirect blocks for first block */
416                 nbitmaps += blockpp + 2;
417
418                 j += fso->fso_bufcnt;
419         }
420
421         next_indir = nb[0].offset +
422                 (EXT3_ADDR_PER_BLOCK(sb) << sb->s_blocksize_bits);
423         for (i = 1; i < niocount; i++) {
424                 if (nb[i].offset >= next_indir) {
425                         nbitmaps++;     /* additional indirect */
426                         next_indir = nb[i].offset +
427                                 (EXT3_ADDR_PER_BLOCK(sb)<<sb->s_blocksize_bits);
428                 } else if (nb[i].offset != nb[i - 1].offset + sb->s_blocksize) {
429                         nbitmaps++;     /* additional indirect */
430                 }
431                 nbitmaps += blockpp;    /* each leaf in different group? */
432         }
433
434         ngdblocks = nbitmaps;
435         if (nbitmaps > EXT3_SB(sb)->s_groups_count)
436                 nbitmaps = EXT3_SB(sb)->s_groups_count;
437         if (ngdblocks > EXT3_SB(sb)->s_gdb_count)
438                 ngdblocks = EXT3_SB(sb)->s_gdb_count;
439
440         needed += nbitmaps + ngdblocks;
441
442         /* last_rcvd update */
443         needed += FSFILT_DATA_TRANS_BLOCKS(sb);
444
445 #if defined(CONFIG_QUOTA)
446         /* We assume that there will be 1 bit set in s_dquot.flags for each
447          * quota file that is active.  This is at least true for now.
448          */
449         needed += hweight32(ll_sb_any_quota_active(sb)) *
450                 FSFILT_SINGLEDATA_TRANS_BLOCKS(sb);
451 #endif
452
453         return needed;
454 }
455
456 /* We have to start a huge journal transaction here to hold all of the
457  * metadata for the pages being written here.  This is necessitated by
458  * the fact that we do lots of prepare_write operations before we do
459  * any of the matching commit_write operations, so even if we split
460  * up to use "smaller" transactions none of them could complete until
461  * all of them were opened.  By having a single journal transaction,
462  * we eliminate duplicate reservations for common blocks like the
463  * superblock and group descriptors or bitmaps.
464  *
465  * We will start the transaction here, but each prepare_write will
466  * add a refcount to the transaction, and each commit_write will
467  * remove a refcount.  The transaction will be closed when all of
468  * the pages have been written.
469  */
470 static void *fsfilt_ext3_brw_start(int objcount, struct fsfilt_objinfo *fso,
471                                    int niocount, struct niobuf_local *nb,
472                                    void *desc_private, int logs)
473 {
474         journal_t *journal;
475         handle_t *handle;
476         int needed;
477         ENTRY;
478
479         LASSERT(current->journal_info == desc_private);
480         journal = EXT3_SB(fso->fso_dentry->d_inode->i_sb)->s_journal;
481         needed = fsfilt_ext3_credits_needed(objcount, fso, niocount, nb);
482
483         /* The number of blocks we could _possibly_ dirty can very large.
484          * We reduce our request if it is absurd (and we couldn't get that
485          * many credits for a single handle anyways).
486          *
487          * At some point we have to limit the size of I/Os sent at one time,
488          * increase the size of the journal, or we have to calculate the
489          * actual journal requirements more carefully by checking all of
490          * the blocks instead of being maximally pessimistic.  It remains to
491          * be seen if this is a real problem or not.
492          */
493         if (needed > journal->j_max_transaction_buffers) {
494                 CERROR("want too many journal credits (%d) using %d instead\n",
495                        needed, journal->j_max_transaction_buffers);
496                 needed = journal->j_max_transaction_buffers;
497         }
498
499         LASSERTF(needed > 0, "can't start %d credit transaction\n", needed);
500         handle = ext3_journal_start(fso->fso_dentry->d_inode, needed);
501         if (IS_ERR(handle)) {
502                 CERROR("can't get handle for %d credits: rc = %ld\n", needed,
503                        PTR_ERR(handle));
504         } else {
505                 LASSERT(handle->h_buffer_credits >= needed);
506                 LASSERT(current->journal_info == handle);
507         }
508
509         RETURN(handle);
510 }
511
512 static int fsfilt_ext3_extend(struct inode *inode, unsigned int nblocks,void *h)
513 {
514        handle_t *handle = h;
515
516        /* fsfilt_extend called with nblocks = 0 for testing in special cases */
517        if (nblocks == 0) {
518                handle->h_buffer_credits = 0;
519                CWARN("setting credits of handle %p to zero by request\n", h);
520        }
521
522        if (handle->h_buffer_credits > nblocks)
523                 return 0;
524        if (ext3_journal_extend(handle, nblocks) == 0)
525                 return 0;
526
527        ext3_mark_inode_dirty(handle, inode);
528        return ext3_journal_restart(handle, nblocks);
529 }
530
531 static int fsfilt_ext3_commit(struct inode *inode, void *h, int force_sync)
532 {
533         int rc;
534         handle_t *handle = h;
535
536         LASSERT(current->journal_info == handle);
537         if (force_sync)
538                 handle->h_sync = 1; /* recovery likes this */
539
540         rc = ext3_journal_stop(handle);
541
542         return rc;
543 }
544
545 static int fsfilt_ext3_commit_async(struct inode *inode, void *h,
546                                     void **wait_handle)
547 {
548         unsigned long tid;
549         transaction_t *transaction;
550         handle_t *handle = h;
551         journal_t *journal;
552         int rc;
553
554         LASSERT(current->journal_info == handle);
555
556         transaction = handle->h_transaction;
557         journal = transaction->t_journal;
558         tid = transaction->t_tid;
559         /* we don't want to be blocked */
560         handle->h_sync = 0;
561         rc = ext3_journal_stop(handle);
562         if (rc) {
563                 CERROR("error while stopping transaction: %d\n", rc);
564                 return rc;
565         }
566         fsfilt_log_start_commit(journal, tid);
567
568         *wait_handle = (void *) tid;
569         CDEBUG(D_INODE, "commit async: %lu\n", (unsigned long) tid);
570         return 0;
571 }
572
573 static int fsfilt_ext3_commit_wait(struct inode *inode, void *h)
574 {
575         journal_t *journal = EXT3_JOURNAL(inode);
576         tid_t tid = (tid_t)(long)h;
577
578         CDEBUG(D_INODE, "commit wait: %lu\n", (unsigned long) tid);
579         if (unlikely(is_journal_aborted(journal)))
580                 return -EIO;
581
582         fsfilt_log_wait_commit(EXT3_JOURNAL(inode), tid);
583
584         if (unlikely(is_journal_aborted(journal)))
585                 return -EIO;
586         return 0;
587 }
588
589 static int fsfilt_ext3_setattr(struct dentry *dentry, void *handle,
590                                struct iattr *iattr, int do_trunc)
591 {
592         struct inode *inode = dentry->d_inode;
593         int rc = 0;
594
595         /* Avoid marking the inode dirty on the superblock list unnecessarily.
596          * We are already writing the inode to disk as part of this
597          * transaction and want to avoid a lot of extra inode writeout
598          * later on. b=9828 */
599         if (iattr->ia_valid & ATTR_SIZE && !do_trunc) {
600                 /* ATTR_SIZE would invoke truncate: clear it */
601                 iattr->ia_valid &= ~ATTR_SIZE;
602                 EXT3_I(inode)->i_disksize = iattr->ia_size;
603                 i_size_write(inode, iattr->ia_size);
604
605                 if (iattr->ia_valid & ATTR_UID)
606                         inode->i_uid = iattr->ia_uid;
607                 if (iattr->ia_valid & ATTR_GID)
608                         inode->i_gid = iattr->ia_gid;
609                 if (iattr->ia_valid & ATTR_ATIME)
610                         inode->i_atime = iattr->ia_atime;
611                 if (iattr->ia_valid & ATTR_MTIME)
612                         inode->i_mtime = iattr->ia_mtime;
613                 if (iattr->ia_valid & ATTR_CTIME)
614                         inode->i_ctime = iattr->ia_ctime;
615                 if (iattr->ia_valid & ATTR_MODE) {
616                         inode->i_mode = iattr->ia_mode;
617
618                         if (!cfs_curproc_is_in_groups(inode->i_gid) &&
619                             !cfs_capable(CFS_CAP_FSETID))
620                                 inode->i_mode &= ~S_ISGID;
621                 }
622
623                 inode->i_sb->s_op->dirty_inode(inode);
624
625                 goto out;
626         }
627
628         /* Don't allow setattr to change file type */
629         if (iattr->ia_valid & ATTR_MODE)
630                 iattr->ia_mode = (inode->i_mode & S_IFMT) |
631                                  (iattr->ia_mode & ~S_IFMT);
632
633         /* We set these flags on the client, but have already checked perms
634          * so don't confuse inode_change_ok. */
635         iattr->ia_valid &= ~(ATTR_MTIME_SET | ATTR_ATIME_SET);
636
637         if (inode->i_op->setattr) {
638                 rc = inode->i_op->setattr(dentry, iattr);
639         } else {
640                 rc = inode_change_ok(inode, iattr);
641                 if (!rc)
642                         rc = inode_setattr(inode, iattr);
643         }
644
645  out:
646         RETURN(rc);
647 }
648
649 static int fsfilt_ext3_iocontrol(struct inode *inode, struct file *file,
650                                  unsigned int cmd, unsigned long arg)
651 {
652         int rc = 0;
653         ENTRY;
654
655         /* FIXME: Can't do this because of nested transaction deadlock */
656         if (cmd == EXT3_IOC_SETFLAGS) {
657                 /* We can't enable data journaling on OST objects, because
658                 * this forces the transaction to be closed in order to
659                 * flush the journal, but the caller will already have a
660                 * compound transaction open to update the last_rcvd file,
661                 * and this thread would deadlock trying to set the flag. */
662                 if ((*(int *)arg) & EXT3_JOURNAL_DATA_FL) {
663                         CERROR("can't set data journal flag on file\n");
664                         RETURN(-EPERM);
665                 }
666                 /* Because the MDS does not see the EXTENTS_FL set on the
667                  * OST objects, mask this flag into all set flags.  It is
668                  * not legal to clear this flag in any case, so we are not
669                  * changing the functionality by doing this.  b=22911 */
670                 *(int *)arg |= EXT3_I(inode)->i_flags & EXT3_EXTENTS_FL;
671         }
672
673 #ifdef HAVE_EXT4_LDISKFS
674         /* ext4_ioctl does not have a inode argument */
675         if (inode->i_fop->unlocked_ioctl)
676                 rc = inode->i_fop->unlocked_ioctl(file, cmd, arg);
677 #else
678         if (inode->i_fop->ioctl)
679                 rc = inode->i_fop->ioctl(inode, file, cmd, arg);
680 #endif
681         else
682                 RETURN(-ENOTTY);
683
684         RETURN(rc);
685 }
686
687 static int fsfilt_ext3_set_md(struct inode *inode, void *handle,
688                               void *lmm, int lmm_size, const char *name)
689 {
690         int rc;
691
692         LASSERT(TRYLOCK_INODE_MUTEX(inode) == 0);
693
694         rc = ext3_xattr_set_handle(handle, inode, EXT3_XATTR_INDEX_TRUSTED,
695                                    name, lmm, lmm_size, XATTR_NO_CTIME);
696
697
698         if (rc && rc != -EROFS)
699                 CERROR("error adding MD data to inode %lu: rc = %d\n",
700                        inode->i_ino, rc);
701         return rc;
702 }
703
704 /* Must be called with i_mutex held */
705 static int fsfilt_ext3_get_md(struct inode *inode, void *lmm, int lmm_size,
706                               const char *name)
707 {
708         int rc;
709
710         LASSERT(TRYLOCK_INODE_MUTEX(inode) == 0);
711
712         rc = ext3_xattr_get(inode, EXT3_XATTR_INDEX_TRUSTED,
713                             name, lmm, lmm_size);
714
715         /* This gives us the MD size */
716         if (lmm == NULL)
717                 return (rc == -ENODATA) ? 0 : rc;
718
719         if (rc < 0) {
720                 CDEBUG(D_INFO, "error getting EA %d/%s from inode %lu: rc %d\n",
721                        EXT3_XATTR_INDEX_TRUSTED, name,
722                        inode->i_ino, rc);
723                 memset(lmm, 0, lmm_size);
724                 return (rc == -ENODATA) ? 0 : rc;
725         }
726
727         return rc;
728 }
729
730 static int fsfilt_ext3_send_bio(int rw, struct inode *inode, struct bio *bio)
731 {
732         submit_bio(rw, bio);
733         return 0;
734 }
735
736 static ssize_t fsfilt_ext3_readpage(struct file *file, char *buf, size_t count,
737                                     loff_t *off)
738 {
739         struct inode *inode = file->f_dentry->d_inode;
740         int rc = 0;
741
742         if (S_ISREG(inode->i_mode))
743                 rc = file->f_op->read(file, buf, count, off);
744         else {
745                 const int blkbits = inode->i_sb->s_blocksize_bits;
746                 const int blksize = inode->i_sb->s_blocksize;
747
748                 CDEBUG(D_EXT2, "reading %lu at dir %lu+%llu\n",
749                        (unsigned long)count, inode->i_ino, *off);
750                 while (count > 0) {
751                         struct buffer_head *bh;
752
753                         bh = NULL;
754                         if (*off < i_size_read(inode)) {
755                                 int err = 0;
756
757                                 bh = ext3_bread(NULL, inode, *off >> blkbits,
758                                                 0, &err);
759
760                                 CDEBUG(D_EXT2, "read %u@%llu\n", blksize, *off);
761
762                                 if (bh) {
763                                         memcpy(buf, bh->b_data, blksize);
764                                         brelse(bh);
765                                 } else if (err) {
766                                         /* XXX in theory we should just fake
767                                          * this buffer and continue like ext3,
768                                          * especially if this is a partial read
769                                          */
770                                         CERROR("error read dir %lu+%llu: %d\n",
771                                                inode->i_ino, *off, err);
772                                         RETURN(err);
773                                 }
774                         }
775                         if (!bh) {
776                                 struct ext3_dir_entry_2 *fake = (void *)buf;
777
778                                 CDEBUG(D_EXT2, "fake %u@%llu\n", blksize, *off);
779                                 memset(fake, 0, sizeof(*fake));
780                                 fake->rec_len = cpu_to_le16(blksize);
781                         }
782                         count -= blksize;
783                         buf += blksize;
784                         *off += blksize;
785                         rc += blksize;
786                 }
787         }
788
789         return rc;
790 }
791
792 #ifdef HAVE_EXT4_JOURNAL_CALLBACK_ADD
793 static void fsfilt_ext3_cb_func(struct super_block *sb,
794                                 struct journal_callback *jcb, int error)
795 #else
796 static void fsfilt_ext3_cb_func(struct journal_callback *jcb, int error)
797 #endif
798 {
799         struct fsfilt_cb_data *fcb = container_of(jcb, typeof(*fcb), cb_jcb);
800
801         fcb->cb_func(fcb->cb_obd, fcb->cb_last_rcvd, fcb->cb_data, error);
802
803         OBD_SLAB_FREE(fcb, fcb_cache, sizeof *fcb);
804 }
805
806 static int fsfilt_ext3_add_journal_cb(struct obd_device *obd, __u64 last_rcvd,
807                                       void *handle, fsfilt_cb_t cb_func,
808                                       void *cb_data)
809 {
810         struct fsfilt_cb_data *fcb;
811
812         OBD_SLAB_ALLOC_PTR_GFP(fcb, fcb_cache, CFS_ALLOC_IO);
813         if (fcb == NULL)
814                 RETURN(-ENOMEM);
815
816         fcb->cb_func = cb_func;
817         fcb->cb_obd = obd;
818         fcb->cb_last_rcvd = last_rcvd;
819         fcb->cb_data = cb_data;
820
821         CDEBUG(D_EXT2, "set callback for last_rcvd: "LPD64"\n", last_rcvd);
822         fsfilt_journal_callback_set(handle, fsfilt_ext3_cb_func, &fcb->cb_jcb);
823
824         return 0;
825 }
826
827 static int fsfilt_ext3_statfs(struct super_block *sb, struct obd_statfs *osfs)
828 {
829         struct kstatfs sfs;
830         int rc;
831
832         memset(&sfs, 0, sizeof(sfs));
833         rc = ll_do_statfs(sb, &sfs);
834         statfs_pack(osfs, &sfs);
835         return rc;
836 }
837
838 static int fsfilt_ext3_sync(struct super_block *sb)
839 {
840         return ext3_force_commit(sb);
841 }
842
843 #ifndef EXT3_EXTENTS_FL
844 #define EXT3_EXTENTS_FL                 0x00080000 /* Inode uses extents */
845 #endif
846
847 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,17))
848 # define fsfilt_up_truncate_sem(inode)  up(&LDISKFS_I(inode)->truncate_sem);
849 # define fsfilt_down_truncate_sem(inode)  down(&LDISKFS_I(inode)->truncate_sem);
850 #else
851 # ifdef HAVE_EXT4_LDISKFS
852 #  ifdef WALK_SPACE_HAS_DATA_SEM /* We only use it in fsfilt_map_nblocks() for now */
853 #   define fsfilt_up_truncate_sem(inode) do{ }while(0)
854 #   define fsfilt_down_truncate_sem(inode) do{ }while(0)
855 #  else
856 #   define fsfilt_up_truncate_sem(inode) up_write((&EXT4_I(inode)->i_data_sem))
857 #   define fsfilt_down_truncate_sem(inode) down_write((&EXT4_I(inode)->i_data_sem))
858 #  endif
859 # else
860 #  define fsfilt_up_truncate_sem(inode)  mutex_unlock(&EXT3_I(inode)->truncate_mutex)
861 #  define fsfilt_down_truncate_sem(inode)  mutex_lock(&EXT3_I(inode)->truncate_mutex)
862 # endif
863 #endif
864
865 #ifndef EXT_ASSERT
866 #define EXT_ASSERT(cond)  BUG_ON(!(cond))
867 #endif
868
869 #ifdef EXT3_EXT_HAS_NO_TREE
870 /* for kernels 2.6.18 and later */
871 #ifdef HAVE_EXT4_LDISKFS
872 #define EXT_GENERATION(inode)           (EXT4_I(inode)->i_ext_generation)
873 #else
874 #define EXT_GENERATION(inode)           ext_generation(inode)
875 #endif
876 #define ext3_ext_base                   inode
877 #define ext3_ext_base2inode(inode)      (inode)
878 #define EXT_DEPTH(inode)                ext_depth(inode)
879 #define fsfilt_ext3_ext_walk_space(inode, block, num, cb, cbdata) \
880                         ext3_ext_walk_space(inode, block, num, cb, cbdata);
881 #else
882 #define ext3_ext_base                   ext3_extents_tree
883 #define ext3_ext_base2inode(tree)       (tree->inode)
884 #define fsfilt_ext3_ext_walk_space(tree, block, num, cb, cbdata) \
885                         ext3_ext_walk_space(tree, block, num, cb);
886 #endif
887
888 #ifdef EXT_INSERT_EXTENT_WITH_5ARGS
889 #define fsfilt_ext3_ext_insert_extent(handle, inode, path, newext, flag) \
890                ext3_ext_insert_extent(handle, inode, path, newext, flag)
891 #else
892 #define fsfilt_ext3_ext_insert_extent(handle, inode, path, newext, flag) \
893                ext3_ext_insert_extent(handle, inode, path, newext)
894 #endif
895
896 #include <linux/lustre_version.h>
897
898 struct bpointers {
899         unsigned long *blocks;
900         int *created;
901         unsigned long start;
902         int num;
903         int init_num;
904         int create;
905 };
906
907 static long ext3_ext_find_goal(struct inode *inode, struct ext3_ext_path *path,
908                                unsigned long block, int *aflags)
909 {
910         struct ext3_inode_info *ei = EXT3_I(inode);
911         unsigned long bg_start;
912         unsigned long colour;
913         int depth;
914
915         if (path) {
916                 struct ext3_extent *ex;
917                 depth = path->p_depth;
918
919                 /* try to predict block placement */
920                 if ((ex = path[depth].p_ext))
921                         return ext_pblock(ex) + (block - le32_to_cpu(ex->ee_block));
922
923                 /* it looks index is empty
924                  * try to find starting from index itself */
925                 if (path[depth].p_bh)
926                         return path[depth].p_bh->b_blocknr;
927         }
928
929         /* OK. use inode's group */
930         bg_start = (ei->i_block_group * EXT3_BLOCKS_PER_GROUP(inode->i_sb)) +
931                 le32_to_cpu(EXT3_SB(inode->i_sb)->s_es->s_first_data_block);
932         colour = (current->pid % 16) *
933                 (EXT3_BLOCKS_PER_GROUP(inode->i_sb) / 16);
934         return bg_start + colour + block;
935 }
936
937 #define ll_unmap_underlying_metadata(sb, blocknr) \
938         unmap_underlying_metadata((sb)->s_bdev, blocknr)
939
940 #ifndef EXT3_MB_HINT_GROUP_ALLOC
941 static unsigned long new_blocks(handle_t *handle, struct ext3_ext_base *base,
942                                 struct ext3_ext_path *path, unsigned long block,
943                                 unsigned long *count, int *err)
944 {
945         unsigned long pblock, goal;
946         int aflags = 0;
947         struct inode *inode = ext3_ext_base2inode(base);
948
949         goal = ext3_ext_find_goal(inode, path, block, &aflags);
950         aflags |= 2; /* block have been already reserved */
951         pblock = ext3_mb_new_blocks(handle, inode, goal, count, aflags, err);
952         return pblock;
953
954 }
955 #else
956 static unsigned long new_blocks(handle_t *handle, struct ext3_ext_base *base,
957                                 struct ext3_ext_path *path, unsigned long block,
958                                 unsigned long *count, int *err)
959 {
960         struct inode *inode = ext3_ext_base2inode(base);
961         struct ext3_allocation_request ar;
962         unsigned long pblock;
963         int aflags;
964
965         /* find neighbour allocated blocks */
966         ar.lleft = block;
967         *err = ext3_ext_search_left(base, path, &ar.lleft, &ar.pleft);
968         if (*err)
969                 return 0;
970         ar.lright = block;
971         *err = ext3_ext_search_right(base, path, &ar.lright, &ar.pright);
972         if (*err)
973                 return 0;
974
975         /* allocate new block */
976         ar.goal = ext3_ext_find_goal(inode, path, block, &aflags);
977         ar.inode = inode;
978         ar.logical = block;
979         ar.len = *count;
980         ar.flags = EXT3_MB_HINT_DATA;
981         pblock = ext3_mb_new_blocks(handle, &ar, err);
982         *count = ar.len;
983         return pblock;
984 }
985 #endif
986
987 #ifdef EXT3_EXT_HAS_NO_TREE
988 static int ext3_ext_new_extent_cb(struct ext3_ext_base *base,
989                                   struct ext3_ext_path *path,
990                                   struct ext3_ext_cache *cex,
991 #ifdef HAVE_EXT_PREPARE_CB_EXTENT
992                                    struct ext3_extent *ex,
993 #endif
994                                   void *cbdata)
995 {
996         struct bpointers *bp = cbdata;
997 #else
998 static int ext3_ext_new_extent_cb(struct ext3_ext_base *base,
999                                   struct ext3_ext_path *path,
1000                                   struct ext3_ext_cache *cex
1001 #ifdef HAVE_EXT_PREPARE_CB_EXTENT
1002                                   , struct ext3_extent *ex
1003 #endif
1004                                  )
1005 {
1006         struct bpointers *bp = base->private;
1007 #endif
1008         struct inode *inode = ext3_ext_base2inode(base);
1009         struct ext3_extent nex;
1010 #if defined(HAVE_EXT4_LDISKFS) && defined(WALK_SPACE_HAS_DATA_SEM)
1011         struct ext4_ext_path *tmppath = NULL;
1012         struct ext4_extent *tmpex;
1013 #endif
1014         unsigned long pblock;
1015         unsigned long tgen;
1016         int err, i, depth;
1017         unsigned long count;
1018         handle_t *handle;
1019
1020         i = depth = EXT_DEPTH(base);
1021         EXT_ASSERT(i == path->p_depth);
1022         EXT_ASSERT(path[i].p_hdr);
1023
1024         if (cex->ec_type == EXT3_EXT_CACHE_EXTENT) {
1025                 err = EXT_CONTINUE;
1026                 goto map;
1027         }
1028
1029         if (bp->create == 0) {
1030                 i = 0;
1031                 if (cex->ec_block < bp->start)
1032                         i = bp->start - cex->ec_block;
1033                 if (i >= cex->ec_len)
1034                         CERROR("nothing to do?! i = %d, e_num = %u\n",
1035                                         i, cex->ec_len);
1036                 for (; i < cex->ec_len && bp->num; i++) {
1037                         *(bp->created) = 0;
1038                         bp->created++;
1039                         *(bp->blocks) = 0;
1040                         bp->blocks++;
1041                         bp->num--;
1042                         bp->start++;
1043                 }
1044
1045                 return EXT_CONTINUE;
1046         }
1047
1048         tgen = EXT_GENERATION(base);
1049         count = ext3_ext_calc_credits_for_insert(base, path);
1050         fsfilt_up_truncate_sem(inode);
1051
1052         handle = ext3_journal_start(inode, count+EXT3_ALLOC_NEEDED+1);
1053         if (IS_ERR(handle)) {
1054                 fsfilt_down_truncate_sem(inode);
1055                 return PTR_ERR(handle);
1056         }
1057
1058         fsfilt_down_truncate_sem(inode);
1059         if (tgen != EXT_GENERATION(base)) {
1060                 /* the tree has changed. so path can be invalid at moment */
1061                 ext3_journal_stop(handle);
1062                 return EXT_REPEAT;
1063         }
1064
1065 #if defined(HAVE_EXT4_LDISKFS) && defined(WALK_SPACE_HAS_DATA_SEM)
1066         /* In 2.6.32 kernel, ext4_ext_walk_space()'s callback func is not
1067          * protected by i_data_sem, we need revalidate extent to be created */
1068         down_write((&EXT4_I(inode)->i_data_sem));
1069
1070         /* validate extent, make sure the extent tree does not changed */
1071         tmppath = ext4_ext_find_extent(inode, cex->ec_block, NULL);
1072         if (IS_ERR(tmppath)) {
1073                 up_write(&EXT4_I(inode)->i_data_sem);
1074                 ext3_journal_stop(handle);
1075                 return PTR_ERR(tmppath);
1076         }
1077         tmpex = tmppath[depth].p_ext;
1078         if (tmpex != ex) {
1079                 /* cex is invalid, try again */
1080                 ext4_ext_drop_refs(tmppath);
1081                 kfree(tmppath);
1082                 up_write(&EXT4_I(inode)->i_data_sem);
1083                 ext3_journal_stop(handle);
1084                 return EXT_REPEAT;
1085         }
1086 #endif
1087
1088         count = cex->ec_len;
1089         pblock = new_blocks(handle, base, path, cex->ec_block, &count, &err);
1090         if (!pblock)
1091                 goto out;
1092         EXT_ASSERT(count <= cex->ec_len);
1093
1094         /* insert new extent */
1095         nex.ee_block = cpu_to_le32(cex->ec_block);
1096         ext3_ext_store_pblock(&nex, pblock);
1097         nex.ee_len = cpu_to_le16(count);
1098         err = fsfilt_ext3_ext_insert_extent(handle, base, path, &nex, 0);
1099         if (err) {
1100                 /* free data blocks we just allocated */
1101                 /* not a good idea to call discard here directly,
1102                  * but otherwise we'd need to call it every free() */
1103 #ifdef EXT3_MB_HINT_GROUP_ALLOC
1104                 ext3_mb_discard_inode_preallocations(inode);
1105 #endif
1106                 ext3_free_blocks(handle, inode, ext_pblock(&nex),
1107                                  cpu_to_le16(nex.ee_len), 0);
1108                 goto out;
1109         }
1110
1111         /*
1112          * Putting len of the actual extent we just inserted,
1113          * we are asking ext3_ext_walk_space() to continue
1114          * scaning after that block
1115          */
1116         cex->ec_len = le16_to_cpu(nex.ee_len);
1117         cex->ec_start = ext_pblock(&nex);
1118         BUG_ON(le16_to_cpu(nex.ee_len) == 0);
1119         BUG_ON(le32_to_cpu(nex.ee_block) != cex->ec_block);
1120
1121 out:
1122 #if defined(HAVE_EXT4_LDISKFS) && defined(WALK_SPACE_HAS_DATA_SEM)
1123         ext4_ext_drop_refs(tmppath);
1124         kfree(tmppath);
1125         up_write((&EXT4_I(inode)->i_data_sem));
1126 #endif
1127         ext3_journal_stop(handle);
1128 map:
1129         if (err >= 0) {
1130                 /* map blocks */
1131                 if (bp->num == 0) {
1132                         CERROR("hmm. why do we find this extent?\n");
1133                         CERROR("initial space: %lu:%u\n",
1134                                 bp->start, bp->init_num);
1135                         CERROR("current extent: %u/%u/%llu %d\n",
1136                                 cex->ec_block, cex->ec_len,
1137                                 (unsigned long long)cex->ec_start,
1138                                 cex->ec_type);
1139                 }
1140                 i = 0;
1141                 if (cex->ec_block < bp->start)
1142                         i = bp->start - cex->ec_block;
1143                 if (i >= cex->ec_len)
1144                         CERROR("nothing to do?! i = %d, e_num = %u\n",
1145                                         i, cex->ec_len);
1146                 for (; i < cex->ec_len && bp->num; i++) {
1147                         *(bp->blocks) = cex->ec_start + i;
1148                         if (cex->ec_type == EXT3_EXT_CACHE_EXTENT) {
1149                                 *(bp->created) = 0;
1150                         } else {
1151                                 *(bp->created) = 1;
1152                                 /* unmap any possible underlying metadata from
1153                                  * the block device mapping.  bug 6998. */
1154                                 ll_unmap_underlying_metadata(inode->i_sb,
1155                                                              *(bp->blocks));
1156                         }
1157                         bp->created++;
1158                         bp->blocks++;
1159                         bp->num--;
1160                         bp->start++;
1161                 }
1162         }
1163         return err;
1164 }
1165
1166 int fsfilt_map_nblocks(struct inode *inode, unsigned long block,
1167                        unsigned long num, unsigned long *blocks,
1168                        int *created, int create)
1169 {
1170 #ifdef EXT3_EXT_HAS_NO_TREE
1171         struct ext3_ext_base *base = inode;
1172 #else
1173         struct ext3_extents_tree tree;
1174         struct ext3_ext_base *base = &tree;
1175 #endif
1176         struct bpointers bp;
1177         int err;
1178
1179         CDEBUG(D_OTHER, "blocks %lu-%lu requested for inode %u\n",
1180                block, block + num - 1, (unsigned) inode->i_ino);
1181
1182 #ifndef EXT3_EXT_HAS_NO_TREE
1183         ext3_init_tree_desc(base, inode);
1184         tree.private = &bp;
1185 #endif
1186         bp.blocks = blocks;
1187         bp.created = created;
1188         bp.start = block;
1189         bp.init_num = bp.num = num;
1190         bp.create = create;
1191
1192         fsfilt_down_truncate_sem(inode);
1193         err = fsfilt_ext3_ext_walk_space(base, block, num,
1194                                          ext3_ext_new_extent_cb, &bp);
1195         ext3_ext_invalidate_cache(base);
1196         fsfilt_up_truncate_sem(inode);
1197
1198         return err;
1199 }
1200
1201 int fsfilt_ext3_map_ext_inode_pages(struct inode *inode, struct page **page,
1202                                     int pages, unsigned long *blocks,
1203                                     int *created, int create)
1204 {
1205         int blocks_per_page = CFS_PAGE_SIZE >> inode->i_blkbits;
1206         int rc = 0, i = 0;
1207         struct page *fp = NULL;
1208         int clen = 0;
1209
1210         CDEBUG(D_OTHER, "inode %lu: map %d pages from %lu\n",
1211                 inode->i_ino, pages, (*page)->index);
1212
1213         /* pages are sorted already. so, we just have to find
1214          * contig. space and process them properly */
1215         while (i < pages) {
1216                 if (fp == NULL) {
1217                         /* start new extent */
1218                         fp = *page++;
1219                         clen = 1;
1220                         i++;
1221                         continue;
1222                 } else if (fp->index + clen == (*page)->index) {
1223                         /* continue the extent */
1224                         page++;
1225                         clen++;
1226                         i++;
1227                         continue;
1228                 }
1229
1230                 /* process found extent */
1231                 rc = fsfilt_map_nblocks(inode, fp->index * blocks_per_page,
1232                                         clen * blocks_per_page, blocks,
1233                                         created, create);
1234                 if (rc)
1235                         GOTO(cleanup, rc);
1236
1237                 /* look for next extent */
1238                 fp = NULL;
1239                 blocks += blocks_per_page * clen;
1240                 created += blocks_per_page * clen;
1241         }
1242
1243         if (fp)
1244                 rc = fsfilt_map_nblocks(inode, fp->index * blocks_per_page,
1245                                         clen * blocks_per_page, blocks,
1246                                         created, create);
1247 cleanup:
1248         return rc;
1249 }
1250
1251 extern int ext3_map_inode_page(struct inode *inode, struct page *page,
1252                                unsigned long *blocks, int *created, int create);
1253 int fsfilt_ext3_map_bm_inode_pages(struct inode *inode, struct page **page,
1254                                    int pages, unsigned long *blocks,
1255                                    int *created, int create)
1256 {
1257         int blocks_per_page = CFS_PAGE_SIZE >> inode->i_blkbits;
1258         unsigned long *b;
1259         int rc = 0, i, *cr;
1260
1261         for (i = 0, cr = created, b = blocks; i < pages; i++, page++) {
1262                 rc = ext3_map_inode_page(inode, *page, b, cr, create);
1263                 if (rc) {
1264                         CERROR("ino %lu, blk %lu cr %u create %d: rc %d\n",
1265                                inode->i_ino, *b, *cr, create, rc);
1266                         break;
1267                 }
1268
1269                 b += blocks_per_page;
1270                 cr += blocks_per_page;
1271         }
1272         return rc;
1273 }
1274
1275 int fsfilt_ext3_map_inode_pages(struct inode *inode, struct page **page,
1276                                 int pages, unsigned long *blocks,
1277                                 int *created, int create,
1278                                 cfs_semaphore_t *optional_sem)
1279 {
1280         int rc;
1281
1282         if (EXT3_I(inode)->i_flags & EXT3_EXTENTS_FL) {
1283                 rc = fsfilt_ext3_map_ext_inode_pages(inode, page, pages,
1284                                                      blocks, created, create);
1285                 return rc;
1286         }
1287         if (optional_sem != NULL)
1288                 cfs_down(optional_sem);
1289         rc = fsfilt_ext3_map_bm_inode_pages(inode, page, pages, blocks,
1290                                             created, create);
1291         if (optional_sem != NULL)
1292                 cfs_up(optional_sem);
1293
1294         return rc;
1295 }
1296
1297 int fsfilt_ext3_read(struct inode *inode, void *buf, int size, loff_t *offs)
1298 {
1299         unsigned long block;
1300         struct buffer_head *bh;
1301         int err, blocksize, csize, boffs, osize = size;
1302
1303         /* prevent reading after eof */
1304         cfs_lock_kernel();
1305         if (i_size_read(inode) < *offs + size) {
1306                 size = i_size_read(inode) - *offs;
1307                 cfs_unlock_kernel();
1308                 if (size < 0) {
1309                         CDEBUG(D_EXT2, "size %llu is too short for read @%llu\n",
1310                                i_size_read(inode), *offs);
1311                         return -EBADR;
1312                 } else if (size == 0) {
1313                         return 0;
1314                 }
1315         } else {
1316                 cfs_unlock_kernel();
1317         }
1318
1319         blocksize = 1 << inode->i_blkbits;
1320
1321         while (size > 0) {
1322                 block = *offs >> inode->i_blkbits;
1323                 boffs = *offs & (blocksize - 1);
1324                 csize = min(blocksize - boffs, size);
1325                 bh = ext3_bread(NULL, inode, block, 0, &err);
1326                 if (!bh) {
1327                         CERROR("can't read block: %d\n", err);
1328                         return err;
1329                 }
1330
1331                 memcpy(buf, bh->b_data + boffs, csize);
1332                 brelse(bh);
1333
1334                 *offs += csize;
1335                 buf += csize;
1336                 size -= csize;
1337         }
1338         return osize;
1339 }
1340 EXPORT_SYMBOL(fsfilt_ext3_read);
1341
1342 static int fsfilt_ext3_read_record(struct file * file, void *buf,
1343                                    int size, loff_t *offs)
1344 {
1345         int rc;
1346         rc = fsfilt_ext3_read(file->f_dentry->d_inode, buf, size, offs);
1347         if (rc > 0)
1348                 rc = 0;
1349         return rc;
1350 }
1351
1352 int fsfilt_ext3_write_handle(struct inode *inode, void *buf, int bufsize,
1353                                 loff_t *offs, handle_t *handle)
1354 {
1355         struct buffer_head *bh = NULL;
1356         loff_t old_size = i_size_read(inode), offset = *offs;
1357         loff_t new_size = i_size_read(inode);
1358         unsigned long block;
1359         int err = 0, blocksize = 1 << inode->i_blkbits, size, boffs;
1360
1361         while (bufsize > 0) {
1362                 if (bh != NULL)
1363                         brelse(bh);
1364
1365                 block = offset >> inode->i_blkbits;
1366                 boffs = offset & (blocksize - 1);
1367                 size = min(blocksize - boffs, bufsize);
1368                 bh = ext3_bread(handle, inode, block, 1, &err);
1369                 if (!bh) {
1370                         CERROR("can't read/create block: %d\n", err);
1371                         break;
1372                 }
1373
1374                 err = ext3_journal_get_write_access(handle, bh);
1375                 if (err) {
1376                         CERROR("journal_get_write_access() returned error %d\n",
1377                                err);
1378                         break;
1379                 }
1380                 LASSERT(bh->b_data + boffs + size <= bh->b_data + bh->b_size);
1381                 memcpy(bh->b_data + boffs, buf, size);
1382                 err = ext3_journal_dirty_metadata(handle, bh);
1383                 if (err) {
1384                         CERROR("journal_dirty_metadata() returned error %d\n",
1385                                err);
1386                         break;
1387                 }
1388                 if (offset + size > new_size)
1389                         new_size = offset + size;
1390                 offset += size;
1391                 bufsize -= size;
1392                 buf += size;
1393         }
1394         if (bh)
1395                 brelse(bh);
1396
1397         /* correct in-core and on-disk sizes */
1398         if (new_size > i_size_read(inode)) {
1399                 cfs_lock_kernel();
1400                 if (new_size > i_size_read(inode))
1401                         i_size_write(inode, new_size);
1402                 if (i_size_read(inode) > EXT3_I(inode)->i_disksize)
1403                         EXT3_I(inode)->i_disksize = i_size_read(inode);
1404                 if (i_size_read(inode) > old_size)
1405                         mark_inode_dirty(inode);
1406                 cfs_unlock_kernel();
1407         }
1408
1409         if (err == 0)
1410                 *offs = offset;
1411         return err;
1412 }
1413 EXPORT_SYMBOL(fsfilt_ext3_write_handle);
1414
1415 static int fsfilt_ext3_write_record(struct file *file, void *buf, int bufsize,
1416                                     loff_t *offs, int force_sync)
1417 {
1418         struct inode *inode = file->f_dentry->d_inode;
1419         handle_t *handle;
1420         int err, block_count = 0, blocksize;
1421
1422         /* Determine how many transaction credits are needed */
1423         blocksize = 1 << inode->i_blkbits;
1424         block_count = (*offs & (blocksize - 1)) + bufsize;
1425         block_count = (block_count + blocksize - 1) >> inode->i_blkbits;
1426
1427         handle = ext3_journal_start(inode,
1428                                block_count * FSFILT_DATA_TRANS_BLOCKS(inode->i_sb) + 2);
1429         if (IS_ERR(handle)) {
1430                 CERROR("can't start transaction for %d blocks (%d bytes)\n",
1431                        block_count * FSFILT_DATA_TRANS_BLOCKS(inode->i_sb) + 2, bufsize);
1432                 return PTR_ERR(handle);
1433         }
1434
1435         err = fsfilt_ext3_write_handle(inode, buf, bufsize, offs, handle);
1436
1437         if (!err && force_sync)
1438                 handle->h_sync = 1; /* recovery likes this */
1439
1440         ext3_journal_stop(handle);
1441
1442         return err;
1443 }
1444
1445 static int fsfilt_ext3_setup(struct super_block *sb)
1446 {
1447 #if ((LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,6)) && \
1448      defined(HAVE_QUOTA_SUPPORT)) || defined(S_PDIROPS)
1449         struct ext3_sb_info *sbi = EXT3_SB(sb);
1450 #if 0
1451         sbi->dx_lock = fsfilt_ext3_dx_lock;
1452         sbi->dx_unlock = fsfilt_ext3_dx_unlock;
1453 #endif
1454 #endif
1455 #ifdef S_PDIROPS
1456         CWARN("Enabling PDIROPS\n");
1457         set_opt(sbi->s_mount_opt, PDIROPS);
1458         sb->s_flags |= S_PDIROPS;
1459 #endif
1460         if (!EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX))
1461                 CWARN("filesystem doesn't have dir_index feature enabled\n");
1462 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,6)) && defined(HAVE_QUOTA_SUPPORT)
1463         /* enable journaled quota support */
1464         /* kfreed in ext3_put_super() */
1465         sbi->s_qf_names[USRQUOTA] = kstrdup("lquota.user.reserved", GFP_KERNEL);
1466         if (!sbi->s_qf_names[USRQUOTA])
1467                 return -ENOMEM;
1468         sbi->s_qf_names[GRPQUOTA] = kstrdup("lquota.group.reserved", GFP_KERNEL);
1469         if (!sbi->s_qf_names[GRPQUOTA]) {
1470                 kfree(sbi->s_qf_names[USRQUOTA]);
1471                 sbi->s_qf_names[USRQUOTA] = NULL;
1472                 return -ENOMEM;
1473         }
1474         sbi->s_jquota_fmt = QFMT_LUSTRE;
1475 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,13))
1476         set_opt(sbi->s_mount_opt, QUOTA);
1477 #endif
1478 #endif
1479         return 0;
1480 }
1481
1482 /* If fso is NULL, op is FSFILT operation, otherwise op is number of fso
1483    objects. Logs is number of logfiles to update */
1484 static int fsfilt_ext3_get_op_len(int op, struct fsfilt_objinfo *fso, int logs)
1485 {
1486         if ( !fso ) {
1487                 switch(op) {
1488                 case FSFILT_OP_CREATE:
1489                                  /* directory leaf, index & indirect & EA*/
1490                         return 4 + 3 * logs;
1491                 case FSFILT_OP_UNLINK:
1492                         return 3 * logs;
1493                 }
1494         } else {
1495                 int i;
1496                 int needed = 0;
1497                 struct super_block *sb = fso->fso_dentry->d_inode->i_sb;
1498                 int blockpp = 1 << (CFS_PAGE_SHIFT - sb->s_blocksize_bits);
1499                 int addrpp = EXT3_ADDR_PER_BLOCK(sb) * blockpp;
1500                 for (i = 0; i < op; i++, fso++) {
1501                         int nblocks = fso->fso_bufcnt * blockpp;
1502                         int ndindirect = min(nblocks, addrpp + 1);
1503                         int nindir = nblocks + ndindirect + 1;
1504
1505                         needed += nindir;
1506                 }
1507                 return needed + 3 * logs;
1508         }
1509
1510         return 0;
1511 }
1512
1513 #ifdef HAVE_QUOTA_SUPPORT
1514 #define DQINFO_COPY(out, in)                    \
1515 do {                                            \
1516         Q_COPY(out, in, dqi_bgrace);            \
1517         Q_COPY(out, in, dqi_igrace);            \
1518         Q_COPY(out, in, dqi_flags);             \
1519         Q_COPY(out, in, dqi_valid);             \
1520 } while (0)
1521
1522 #define DQBLK_COPY(out, in)                     \
1523 do {                                            \
1524         Q_COPY(out, in, dqb_bhardlimit);        \
1525         Q_COPY(out, in, dqb_bsoftlimit);        \
1526         Q_COPY(out, in, dqb_curspace);          \
1527         Q_COPY(out, in, dqb_ihardlimit);        \
1528         Q_COPY(out, in, dqb_isoftlimit);        \
1529         Q_COPY(out, in, dqb_curinodes);         \
1530         Q_COPY(out, in, dqb_btime);             \
1531         Q_COPY(out, in, dqb_itime);             \
1532         Q_COPY(out, in, dqb_valid);             \
1533 } while (0)
1534
1535 static int fsfilt_ext3_quotactl(struct super_block *sb,
1536                                 struct obd_quotactl *oqc)
1537 {
1538         int i, rc = 0, error = 0;
1539         const struct quotactl_ops *qcop;
1540         struct if_dqinfo *info;
1541         struct if_dqblk *dqblk;
1542         ENTRY;
1543
1544         if (!sb->s_qcop)
1545                 RETURN(-ENOSYS);
1546
1547         OBD_ALLOC_PTR(info);
1548         if (!info)
1549                 RETURN(-ENOMEM);
1550         OBD_ALLOC_PTR(dqblk);
1551         if (!dqblk) {
1552                 OBD_FREE_PTR(info);
1553                 RETURN(-ENOMEM);
1554         }
1555
1556         DQINFO_COPY(info, &oqc->qc_dqinfo);
1557         DQBLK_COPY(dqblk, &oqc->qc_dqblk);
1558
1559         qcop = sb->s_qcop;
1560         if (oqc->qc_cmd == Q_QUOTAON || oqc->qc_cmd == Q_QUOTAOFF) {
1561                 for (i = 0; i < MAXQUOTAS; i++) {
1562                         if (!Q_TYPESET(oqc, i))
1563                                 continue;
1564
1565                         if (oqc->qc_cmd == Q_QUOTAON) {
1566                                 char *name[MAXQUOTAS] = LUSTRE_OPQFILES_NAMES_V2;
1567
1568                                 LASSERT(oqc->qc_id == LUSTRE_QUOTA_V2);
1569
1570                                 rc = ll_quota_on(sb, i, QFMT_LUSTRE,
1571                                                  name[i], 0);
1572                         } else if (oqc->qc_cmd == Q_QUOTAOFF) {
1573                                 rc = ll_quota_off(sb, i, 0);
1574                         }
1575
1576                         if (rc == -EBUSY)
1577                                 error = rc;
1578                         else if (rc)
1579                                 GOTO(out, rc);
1580                 }
1581                 GOTO(out, rc ?: error);
1582         }
1583
1584         switch (oqc->qc_cmd) {
1585         case Q_GETOINFO:
1586         case Q_GETINFO:
1587                 if (!qcop->get_info)
1588                         GOTO(out, rc = -ENOSYS);
1589                 rc = qcop->get_info(sb, oqc->qc_type, info);
1590                 break;
1591         case Q_SETQUOTA:
1592         case Q_INITQUOTA:
1593                 if (!qcop->set_dqblk)
1594                         GOTO(out, rc = -ENOSYS);
1595                 rc = qcop->set_dqblk(sb, oqc->qc_type, oqc->qc_id, dqblk);
1596                 break;
1597         case Q_GETOQUOTA:
1598         case Q_GETQUOTA:
1599                 if (!qcop->get_dqblk)
1600                         GOTO(out, rc = -ENOSYS);
1601                 rc = qcop->get_dqblk(sb, oqc->qc_type, oqc->qc_id, dqblk);
1602                 if (!rc)
1603                         dqblk->dqb_valid = QIF_LIMITS | QIF_USAGE;
1604                 break;
1605         case Q_SYNC:
1606                 if (!sb->s_qcop->quota_sync)
1607                         GOTO(out, rc = -ENOSYS);
1608                 qcop->quota_sync(sb, oqc->qc_type);
1609                 break;
1610         case Q_FINVALIDATE:
1611                 CDEBUG(D_WARNING, "invalidating operational quota files\n");
1612                 for (i = 0; i < MAXQUOTAS; i++) {
1613                         struct file *fp;
1614                         char *name[MAXQUOTAS] = LUSTRE_OPQFILES_NAMES_V2;
1615
1616                         LASSERT(oqc->qc_id == LUSTRE_QUOTA_V2);
1617
1618                         if (!Q_TYPESET(oqc, i))
1619                                 continue;
1620
1621                         fp = filp_open(name[i], O_CREAT | O_TRUNC | O_RDWR, 0644);
1622                         if (IS_ERR(fp)) {
1623                                 rc = PTR_ERR(fp);
1624                                 CERROR("error invalidating operational quota file"
1625                                        " %s (rc:%d)\n", name[i], rc);
1626                         } else {
1627                                 filp_close(fp, 0);
1628                         }
1629
1630                 }
1631                 break;
1632         default:
1633                 CERROR("unsupported quotactl command: %d\n", oqc->qc_cmd);
1634                 LBUG();
1635         }
1636 out:
1637         DQINFO_COPY(&oqc->qc_dqinfo, info);
1638         DQBLK_COPY(&oqc->qc_dqblk, dqblk);
1639
1640         OBD_FREE_PTR(info);
1641         OBD_FREE_PTR(dqblk);
1642
1643         if (rc)
1644                 CDEBUG(D_QUOTA, "quotactl command %#x, id %u, type %u "
1645                                 "failed: %d\n",
1646                        oqc->qc_cmd, oqc->qc_id, oqc->qc_type, rc);
1647         RETURN(rc);
1648 }
1649
1650 struct chk_dqblk{
1651         cfs_hlist_node_t        dqb_hash;        /** quotacheck hash */
1652         cfs_list_t              dqb_list;        /** in list also */
1653         qid_t                   dqb_id;          /** uid/gid */
1654         short                   dqb_type;        /** USRQUOTA/GRPQUOTA */
1655         qsize_t                 dqb_bhardlimit;  /** block hard limit */
1656         qsize_t                 dqb_bsoftlimit;  /** block soft limit */
1657         qsize_t                 dqb_curspace;    /** current space */
1658         qsize_t                 dqb_ihardlimit;  /** inode hard limit */
1659         qsize_t                 dqb_isoftlimit;  /** inode soft limit */
1660         qsize_t                 dqb_curinodes;   /** current inodes */
1661         obd_time                dqb_btime;       /** block grace time */
1662         obd_time                dqb_itime;       /** inode grace time */
1663         __u32                   dqb_valid;       /** flag for above fields */
1664 };
1665
1666 static inline unsigned int chkquot_hash(qid_t id, int type)
1667                                         __attribute__((__const__));
1668
1669 static inline unsigned int chkquot_hash(qid_t id, int type)
1670 {
1671         return (id * (MAXQUOTAS - type)) % NR_DQHASH;
1672 }
1673
1674 static inline struct chk_dqblk *
1675 find_chkquot(cfs_hlist_head_t *head, qid_t id, int type)
1676 {
1677         cfs_hlist_node_t *node;
1678         struct chk_dqblk *cdqb;
1679
1680         cfs_hlist_for_each(node, head) {
1681                 cdqb = cfs_hlist_entry(node, struct chk_dqblk, dqb_hash);
1682                 if (cdqb->dqb_id == id && cdqb->dqb_type == type)
1683                         return cdqb;
1684         }
1685
1686         return NULL;
1687 }
1688
1689 static struct chk_dqblk *alloc_chkquot(qid_t id, int type)
1690 {
1691         struct chk_dqblk *cdqb;
1692
1693         OBD_ALLOC_PTR(cdqb);
1694         if (cdqb) {
1695                 CFS_INIT_HLIST_NODE(&cdqb->dqb_hash);
1696                 CFS_INIT_LIST_HEAD(&cdqb->dqb_list);
1697                 cdqb->dqb_id = id;
1698                 cdqb->dqb_type = type;
1699         }
1700
1701         return cdqb;
1702 }
1703
1704 static struct chk_dqblk *
1705 cqget(struct super_block *sb, cfs_hlist_head_t *hash,
1706       cfs_list_t *list, qid_t id, int type, int first_check)
1707 {
1708         cfs_hlist_head_t *head = hash + chkquot_hash(id, type);
1709         struct if_dqblk dqb;
1710         struct chk_dqblk *cdqb;
1711         int rc;
1712
1713         cdqb = find_chkquot(head, id, type);
1714         if (cdqb)
1715                 return cdqb;
1716
1717         cdqb = alloc_chkquot(id, type);
1718         if (!cdqb)
1719                 return NULL;
1720
1721         if (!first_check) {
1722                 rc = sb->s_qcop->get_dqblk(sb, type, id, &dqb);
1723                 if (rc) {
1724                         CERROR("get_dqblk of id %u, type %d failed: %d\n",
1725                                id, type, rc);
1726                 } else {
1727                         DQBLK_COPY(cdqb, &dqb);
1728                         cdqb->dqb_curspace = 0;
1729                         cdqb->dqb_curinodes = 0;
1730                 }
1731         }
1732
1733         cfs_hlist_add_head(&cdqb->dqb_hash, head);
1734         cfs_list_add_tail(&cdqb->dqb_list, list);
1735
1736         return cdqb;
1737 }
1738
1739 static inline int quota_onoff(struct super_block *sb, int cmd, int type, int qfmt)
1740 {
1741         struct obd_quotactl *oqctl;
1742         int rc;
1743
1744         OBD_ALLOC_PTR(oqctl);
1745         if (!oqctl)
1746                 RETURN(-ENOMEM);
1747
1748         oqctl->qc_cmd = cmd;
1749         oqctl->qc_id = qfmt;
1750         oqctl->qc_type = type;
1751         rc = fsfilt_ext3_quotactl(sb, oqctl);
1752
1753         OBD_FREE_PTR(oqctl);
1754         return rc;
1755 }
1756
1757 static inline int read_old_dqinfo(struct super_block *sb, int type,
1758                                   struct if_dqinfo *dqinfo)
1759 {
1760         struct obd_quotactl *oqctl;
1761         int rc;
1762         ENTRY;
1763
1764         OBD_ALLOC_PTR(oqctl);
1765         if (!oqctl)
1766                 RETURN(-ENOMEM);
1767
1768         oqctl->qc_cmd = Q_GETINFO;
1769         oqctl->qc_type = type;
1770         rc = fsfilt_ext3_quotactl(sb, oqctl);
1771         if (!rc)
1772                 ((struct obd_dqinfo *)dqinfo)[type] = oqctl->qc_dqinfo;
1773
1774         OBD_FREE_PTR(oqctl);
1775         RETURN(rc);
1776 }
1777
1778 #ifndef HAVE_EXT4_LDISKFS
1779 static inline struct ext3_group_desc *
1780 get_group_desc(struct super_block *sb, int group, struct buffer_head **bh)
1781 {
1782         unsigned long desc_block, desc;
1783         struct ext3_group_desc *gdp;
1784
1785         desc_block = group / EXT3_DESC_PER_BLOCK(sb);
1786         desc = group % EXT3_DESC_PER_BLOCK(sb);
1787         gdp = (struct ext3_group_desc *)
1788               EXT3_SB(sb)->s_group_desc[desc_block]->b_data;
1789
1790         return gdp + desc;
1791 }
1792
1793 static inline struct buffer_head *
1794 ext3_read_inode_bitmap(struct super_block *sb, unsigned long group)
1795 {
1796         struct ext3_group_desc *desc;
1797         struct buffer_head *bh;
1798
1799         desc = get_group_desc(sb, group, NULL);
1800         bh = sb_bread(sb, ext3_inode_bitmap(sb, desc));
1801         return bh;
1802 }
1803
1804 static __u32 ext3_itable_unused_count(struct super_block *sb,
1805                                struct ext3_group_desc *bg) {
1806        return le16_to_cpu(bg->bg_itable_unused);
1807 }
1808 #else
1809 #define get_group_desc ext3_get_group_desc
1810 #endif
1811
1812 struct qchk_ctxt {
1813         cfs_hlist_head_t        qckt_hash[NR_DQHASH];      /* quotacheck hash */
1814         cfs_list_t              qckt_list;                 /* quotacheck list */
1815         int                     qckt_first_check[MAXQUOTAS]; /* 1 if no old quotafile */
1816         struct if_dqinfo        qckt_dqinfo[MAXQUOTAS];    /* old dqinfo */
1817 };
1818
1819 static int add_inode_quota(struct inode *inode, struct qchk_ctxt *qctxt,
1820                            struct obd_quotactl *oqc)
1821 {
1822         struct chk_dqblk *cdqb[MAXQUOTAS] = { NULL, };
1823         loff_t size = 0;
1824         qid_t qid[MAXQUOTAS];
1825         int cnt, i, rc = 0;
1826
1827         if (!inode)
1828                 return 0;
1829
1830         qid[USRQUOTA] = inode->i_uid;
1831         qid[GRPQUOTA] = inode->i_gid;
1832
1833         if (S_ISDIR(inode->i_mode) ||
1834             S_ISREG(inode->i_mode) ||
1835             S_ISLNK(inode->i_mode))
1836                 size = inode_get_bytes(inode);
1837
1838         for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1839                 if (!Q_TYPESET(oqc, cnt))
1840                         continue;
1841
1842                 cdqb[cnt] = cqget(inode->i_sb, qctxt->qckt_hash,
1843                                 &qctxt->qckt_list, qid[cnt], cnt,
1844                                 qctxt->qckt_first_check[cnt]);
1845                 if (!cdqb[cnt]) {
1846                         rc = -ENOMEM;
1847                         break;
1848                 }
1849
1850                 cdqb[cnt]->dqb_curspace += size;
1851                 cdqb[cnt]->dqb_curinodes++;
1852         }
1853
1854         if (rc) {
1855                 for (i = 0; i < cnt; i++) {
1856                         if (!Q_TYPESET(oqc, i))
1857                                 continue;
1858                         LASSERT(cdqb[i]);
1859                         cdqb[i]->dqb_curspace -= size;
1860                         cdqb[i]->dqb_curinodes--;
1861                 }
1862         }
1863
1864         return rc;
1865 }
1866
1867 /* write dqinfo struct in a new quota file */
1868 static int v3_write_dqinfo(struct file *f, int type, struct if_dqinfo *info)
1869 {
1870         struct v2_disk_dqinfo dqinfo;
1871         __u32 blocks = V2_DQTREEOFF + 1;
1872         loff_t offset = V2_DQINFOOFF;
1873
1874         if (info) {
1875                 dqinfo.dqi_bgrace = cpu_to_le32(info->dqi_bgrace);
1876                 dqinfo.dqi_igrace = cpu_to_le32(info->dqi_igrace);
1877                 dqinfo.dqi_flags = cpu_to_le32(info->dqi_flags & DQF_MASK &
1878                                                ~DQF_INFO_DIRTY);
1879         } else {
1880                 dqinfo.dqi_bgrace = cpu_to_le32(MAX_DQ_TIME);
1881                 dqinfo.dqi_igrace = cpu_to_le32(MAX_IQ_TIME);
1882                 dqinfo.dqi_flags = 0;
1883         }
1884
1885         dqinfo.dqi_blocks = cpu_to_le32(blocks);
1886         dqinfo.dqi_free_blk = 0;
1887         dqinfo.dqi_free_entry = 0;
1888
1889         return cfs_user_write(f, (char *)&dqinfo, sizeof(dqinfo), &offset);
1890 }
1891
1892 static int v3_write_dqheader(struct file *f, int type)
1893 {
1894         static const __u32 quota_magics[] = V2_INITQMAGICS;
1895         static const __u32 quota_versions[] = LUSTRE_INITQVERSIONS_V2;
1896         struct v2_disk_dqheader dqhead;
1897         loff_t offset = 0;
1898
1899         CLASSERT(ARRAY_SIZE(quota_magics) == ARRAY_SIZE(quota_versions));
1900         LASSERT(0 <= type && type < ARRAY_SIZE(quota_magics));
1901
1902         dqhead.dqh_magic = cpu_to_le32(quota_magics[type]);
1903         dqhead.dqh_version = cpu_to_le32(quota_versions[type]);
1904
1905         return cfs_user_write(f, (char *)&dqhead, sizeof(dqhead), &offset);
1906 }
1907
1908 static int create_new_quota_files(struct qchk_ctxt *qctxt,
1909                                   struct obd_quotactl *oqc)
1910 {
1911         int i, rc = 0;
1912         ENTRY;
1913
1914         for (i = 0; i < MAXQUOTAS; i++) {
1915                 struct if_dqinfo *info = qctxt->qckt_first_check[i]?
1916                                          NULL : &qctxt->qckt_dqinfo[i];
1917                 struct file *file;
1918                 const char *name[MAXQUOTAS] = LUSTRE_OPQFILES_NAMES_V2;
1919
1920                 if (!Q_TYPESET(oqc, i))
1921                         continue;
1922
1923                 LASSERT(oqc->qc_id == LUSTRE_QUOTA_V2);
1924
1925                 file = filp_open(name[i], O_RDWR | O_CREAT | O_TRUNC, 0644);
1926                 if (IS_ERR(file)) {
1927                         rc = PTR_ERR(file);
1928                         CERROR("can't create %s file: rc = %d\n",
1929                                name[i], rc);
1930                         GOTO(out, rc);
1931                 }
1932
1933                 if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
1934                         CERROR("file %s is not regular", name[i]);
1935                         filp_close(file, 0);
1936                         GOTO(out, rc = -EINVAL);
1937                 }
1938
1939                 ll_vfs_dq_drop(file->f_dentry->d_inode);
1940
1941                 rc = v3_write_dqheader(file, i);
1942                 if (rc) {
1943                         filp_close(file, 0);
1944                         GOTO(out, rc);
1945                 }
1946
1947                 rc = v3_write_dqinfo(file, i, info);
1948                 filp_close(file, 0);
1949                 if (rc)
1950                         GOTO(out, rc);
1951         }
1952
1953 out:
1954         RETURN(rc);
1955 }
1956
1957
1958 static int commit_chkquot(struct super_block *sb, struct qchk_ctxt *qctxt,
1959                           struct chk_dqblk *cdqb)
1960 {
1961         struct obd_quotactl *oqc;
1962         long now;
1963         int rc;
1964         ENTRY;
1965
1966         OBD_ALLOC_PTR(oqc);
1967         if (!oqc)
1968                 RETURN(-ENOMEM);
1969
1970         now = cfs_time_current_sec();
1971
1972         if (cdqb->dqb_bsoftlimit &&
1973             toqb(cdqb->dqb_curspace) >= cdqb->dqb_bsoftlimit &&
1974             !cdqb->dqb_btime)
1975                 cdqb->dqb_btime =
1976                         now + qctxt->qckt_dqinfo[cdqb->dqb_type].dqi_bgrace;
1977
1978         if (cdqb->dqb_isoftlimit &&
1979             cdqb->dqb_curinodes >= cdqb->dqb_isoftlimit &&
1980             !cdqb->dqb_itime)
1981                 cdqb->dqb_itime =
1982                         now + qctxt->qckt_dqinfo[cdqb->dqb_type].dqi_igrace;
1983
1984         cdqb->dqb_valid = QIF_ALL;
1985
1986         oqc->qc_cmd = Q_SETQUOTA;
1987         oqc->qc_type = cdqb->dqb_type;
1988         oqc->qc_id = cdqb->dqb_id;
1989         DQBLK_COPY(&oqc->qc_dqblk, cdqb);
1990
1991         rc = fsfilt_ext3_quotactl(sb, oqc);
1992         OBD_FREE_PTR(oqc);
1993         RETURN(rc);
1994 }
1995
1996 static int prune_chkquots(struct super_block *sb,
1997                           struct qchk_ctxt *qctxt, int error)
1998 {
1999         struct chk_dqblk *cdqb, *tmp;
2000         int rc;
2001
2002         cfs_list_for_each_entry_safe(cdqb, tmp, &qctxt->qckt_list, dqb_list) {
2003                 if (!error) {
2004                         rc = commit_chkquot(sb, qctxt, cdqb);
2005                         if (rc)
2006                                 error = rc;
2007                 }
2008                 cfs_hlist_del_init(&cdqb->dqb_hash);
2009                 cfs_list_del(&cdqb->dqb_list);
2010                 OBD_FREE_PTR(cdqb);
2011         }
2012
2013         return error;
2014 }
2015
2016 #ifndef EXT3_FEATURE_RO_COMPAT_GDT_CSUM
2017 #define EXT3_FEATURE_RO_COMPAT_GDT_CSUM 0x0010
2018 #endif
2019
2020 static int fsfilt_ext3_quotacheck(struct super_block *sb,
2021                                   struct obd_quotactl *oqc)
2022 {
2023         struct ext3_sb_info *sbi = EXT3_SB(sb);
2024         int i, group, uninit_feat = 0;
2025         struct qchk_ctxt *qctxt;
2026         struct buffer_head *bitmap_bh = NULL;
2027         unsigned long ino, inode_inuse;
2028         struct inode *inode;
2029         int rc = 0;
2030         ENTRY;
2031
2032         /* turn on quota and read dqinfo if existed */
2033         OBD_ALLOC_PTR(qctxt);
2034         if (!qctxt) {
2035                 oqc->qc_stat = -ENOMEM;
2036                 RETURN(-ENOMEM);
2037         }
2038
2039         for (i = 0; i < NR_DQHASH; i++)
2040                 CFS_INIT_HLIST_HEAD(&qctxt->qckt_hash[i]);
2041         CFS_INIT_LIST_HEAD(&qctxt->qckt_list);
2042
2043         for (i = 0; i < MAXQUOTAS; i++) {
2044                 if (!Q_TYPESET(oqc, i))
2045                         continue;
2046
2047                 rc = quota_onoff(sb, Q_QUOTAON, i, oqc->qc_id);
2048                 if (!rc || rc == -EBUSY) {
2049                         rc = read_old_dqinfo(sb, i, qctxt->qckt_dqinfo);
2050                         if (rc)
2051                                 GOTO(out, rc);
2052                 } else if (rc == -ENOENT || rc == -EINVAL || rc == -EEXIST) {
2053                         qctxt->qckt_first_check[i] = 1;
2054                 } else if (rc) {
2055                         GOTO(out, rc);
2056                 }
2057         }
2058         if (EXT3_HAS_RO_COMPAT_FEATURE(sb, EXT3_FEATURE_RO_COMPAT_GDT_CSUM))
2059                 /* This filesystem supports the uninit group feature */
2060                 uninit_feat = 1;
2061
2062         /* number of inodes that have been allocated */
2063         inode_inuse = sbi->s_inodes_per_group * sbi->s_groups_count -
2064                       percpu_counter_sum(&sbi->s_freeinodes_counter);
2065
2066         /* check quota and update in hash */
2067         for (group = 0; group < sbi->s_groups_count && inode_inuse > 0;
2068              group++) {
2069                 unsigned long used_count = sbi->s_inodes_per_group;
2070
2071                 if (uninit_feat) {
2072                         struct ext3_group_desc *desc;
2073                         desc = get_group_desc(sb, group, NULL);
2074                         if (!desc)
2075                                 GOTO(out, -EIO);
2076
2077                         /* we don't really need to take the group lock here,
2078                          * but it may be useful if one day we support online
2079                          * quotacheck */
2080 #ifdef HAVE_EXT4_LDISKFS
2081                         ext4_lock_group(sb, group);
2082 #else
2083                         spin_lock(sb_bgl_lock(sbi, group));
2084 #endif
2085                         if (desc->bg_flags & cpu_to_le16(EXT3_BG_INODE_UNINIT)) {
2086                                 /* no inode in use in this group, just skip it */
2087 #ifdef HAVE_EXT4_LDISKFS
2088                                 ext3_unlock_group(sb, group);
2089 #else
2090                                 spin_unlock(sb_bgl_lock(sbi, group));
2091 #endif
2092                                 continue;
2093                         }
2094
2095                         used_count -= ext3_itable_unused_count(sb, desc);
2096 #ifdef HAVE_EXT4_LDISKFS
2097                         ext3_unlock_group(sb, group);
2098 #else
2099                         spin_unlock(sb_bgl_lock(sbi, group));
2100 #endif
2101                 }
2102
2103                 ino = group * sbi->s_inodes_per_group + 1;
2104                 bitmap_bh = ext3_read_inode_bitmap(sb, group);
2105                 if (!bitmap_bh) {
2106                         CERROR("%s: ext3_read_inode_bitmap group %d failed\n",
2107                                sb->s_id, group);
2108                         GOTO(out, -EIO);
2109                 }
2110
2111                 i = 0;
2112                 while (i < used_count &&
2113                        (i = ext3_find_next_bit(bitmap_bh->b_data,
2114                                                used_count, i)) < used_count) {
2115                         inode_inuse--;
2116                         i++;
2117                         ino = i + group * sbi->s_inodes_per_group;
2118                         if (ino < sbi->s_first_ino)
2119                                 continue;
2120 #if defined(HAVE_EXT4_LDISKFS) || !defined(HAVE_READ_INODE_IN_SBOPS)
2121                         inode = ext3_iget(sb, ino);
2122 #else
2123                         inode = iget(sb, ino);
2124 #endif
2125                         if (!inode || IS_ERR(inode))
2126                                 continue;
2127
2128                         rc = add_inode_quota(inode, qctxt, oqc);
2129                         iput(inode);
2130                         if (rc) {
2131                                 brelse(bitmap_bh);
2132                                 GOTO(out, rc);
2133                         }
2134                 }
2135                 brelse(bitmap_bh);
2136         }
2137
2138         /* read old quota limits from old quota file. (only for the user
2139          * has limits but hasn't file) */
2140 #ifdef HAVE_QUOTA_SUPPORT
2141         for (i = 0; i < MAXQUOTAS; i++) {
2142                 cfs_list_t id_list;
2143                 struct dquot_id *dqid, *tmp;
2144
2145                 if (!Q_TYPESET(oqc, i))
2146                         continue;
2147
2148                 if (qctxt->qckt_first_check[i])
2149                         continue;
2150
2151
2152                 LASSERT(sb_dqopt(sb)->files[i] != NULL);
2153                 CFS_INIT_LIST_HEAD(&id_list);
2154 #ifndef KERNEL_SUPPORTS_QUOTA_READ
2155                 rc = lustre_get_qids(sb_dqopt(sb)->files[i], NULL, i, &id_list);
2156 #else
2157                 rc = lustre_get_qids(NULL, sb_dqopt(sb)->files[i], i, &id_list);
2158 #endif
2159                 if (rc)
2160                         CERROR("read old limits failed. (rc:%d)\n", rc);
2161
2162                 cfs_list_for_each_entry_safe(dqid, tmp, &id_list, di_link) {
2163                         cfs_list_del_init(&dqid->di_link);
2164
2165                         if (!rc)
2166                                 cqget(sb, qctxt->qckt_hash, &qctxt->qckt_list,
2167                                       dqid->di_id, i,
2168                                       qctxt->qckt_first_check[i]);
2169                         OBD_FREE_PTR(dqid);
2170                 }
2171         }
2172 #endif
2173         /* turn off quota cause we are to dump chk_dqblk to files */
2174         quota_onoff(sb, Q_QUOTAOFF, oqc->qc_type, oqc->qc_id);
2175
2176         rc = create_new_quota_files(qctxt, oqc);
2177         if (rc)
2178                 GOTO(out, rc);
2179
2180         /* we use vfs functions to set dqblk, so turn quota on */
2181         rc = quota_onoff(sb, Q_QUOTAON, oqc->qc_type, oqc->qc_id);
2182 out:
2183         /* dump and free chk_dqblk */
2184         rc = prune_chkquots(sb, qctxt, rc);
2185         OBD_FREE_PTR(qctxt);
2186
2187         /* turn off quota, `lfs quotacheck` will turn on when all
2188          * nodes quotacheck finish. */
2189         quota_onoff(sb, Q_QUOTAOFF, oqc->qc_type, oqc->qc_id);
2190
2191         oqc->qc_stat = rc;
2192         if (rc)
2193                 CERROR("quotacheck failed: rc = %d\n", rc);
2194
2195         RETURN(rc);
2196 }
2197
2198 static int fsfilt_ext3_quotainfo(struct lustre_quota_info *lqi, int type,
2199                                  int cmd)
2200 {
2201         int rc = 0;
2202         ENTRY;
2203
2204         if (lqi->qi_files[type] == NULL) {
2205                 CERROR("operate qinfo before it's enabled!\n");
2206                 RETURN(-ESRCH);
2207         }
2208
2209         switch (cmd) {
2210         case QFILE_CHK:
2211                 rc = lustre_check_quota_file(lqi, type);
2212                 break;
2213         case QFILE_RD_INFO:
2214                 rc = lustre_read_quota_info(lqi, type);
2215                 break;
2216         case QFILE_WR_INFO:
2217                 rc = lustre_write_quota_info(lqi, type);
2218                 break;
2219         case QFILE_INIT_INFO:
2220                 rc = lustre_init_quota_info(lqi, type);
2221                 break;
2222         case QFILE_CONVERT:
2223                 rc = -ENOTSUPP;
2224                 CERROR("quota CONVERT command is not supported\n");
2225                 break;
2226         default:
2227                 rc = -ENOTSUPP;
2228                 CERROR("Unsupported admin quota file cmd %d\n"
2229                        "Are lquota.ko and fsfilt_ldiskfs.ko modules in sync?\n",
2230                        cmd);
2231                 break;
2232         }
2233         RETURN(rc);
2234 }
2235
2236 static int fsfilt_ext3_qids(struct file *file, struct inode *inode, int type,
2237                             cfs_list_t *list)
2238 {
2239         return lustre_get_qids(file, inode, type, list);
2240 }
2241
2242 static int fsfilt_ext3_dquot(struct lustre_dquot *dquot, int cmd)
2243 {
2244         int rc = 0;
2245         ENTRY;
2246
2247         if (dquot->dq_info->qi_files[dquot->dq_type] == NULL) {
2248                 CERROR("operate dquot before it's enabled!\n");
2249                 RETURN(-ESRCH);
2250         }
2251
2252         switch (cmd) {
2253         case QFILE_RD_DQUOT:
2254                 rc = lustre_read_dquot(dquot);
2255                 break;
2256         case QFILE_WR_DQUOT:
2257                 if (dquot->dq_dqb.dqb_ihardlimit ||
2258                     dquot->dq_dqb.dqb_isoftlimit ||
2259                     dquot->dq_dqb.dqb_bhardlimit ||
2260                     dquot->dq_dqb.dqb_bsoftlimit)
2261                         cfs_clear_bit(DQ_FAKE_B, &dquot->dq_flags);
2262                 else
2263                         cfs_set_bit(DQ_FAKE_B, &dquot->dq_flags);
2264
2265                 rc = lustre_commit_dquot(dquot);
2266                 if (rc >= 0)
2267                         rc = 0;
2268                 break;
2269         default:
2270                 CERROR("Unsupported admin quota file cmd %d\n", cmd);
2271                 LBUG();
2272                 break;
2273         }
2274         RETURN(rc);
2275 }
2276
2277 static int fsfilt_ext3_get_mblk(struct super_block *sb, int *count,
2278                                 struct inode *inode, int frags)
2279 {
2280 #ifdef EXT3_EXT_HAS_NO_TREE
2281         struct ext3_ext_base *base = inode;
2282 #else
2283         struct ext3_extents_tree tree;
2284         struct ext3_ext_base *base = &tree;
2285
2286         ext3_init_tree_desc(base, inode);
2287 #endif
2288         /* for an ost_write request, it needs <#fragments> * <tree depth + 1>
2289          * metablocks at maxium b=16542 */
2290         *count = frags * (EXT_DEPTH(base) + 1) * EXT3_BLOCK_SIZE(sb);
2291         return 0;
2292 }
2293
2294 #endif
2295
2296 lvfs_sbdev_type fsfilt_ext3_journal_sbdev(struct super_block *sb)
2297 {
2298         return (EXT3_SB(sb)->journal_bdev);
2299 }
2300 EXPORT_SYMBOL(fsfilt_ext3_journal_sbdev);
2301
2302 ssize_t lustre_read_quota(struct file *f, struct inode *inode, int type,
2303                           char *buf, int count, loff_t pos)
2304 {
2305         loff_t p = pos;
2306         int rc;
2307
2308         if (!f && !inode) {
2309                 CERROR("lustre_read_quota failed for no quota file!\n");
2310                 libcfs_debug_dumpstack(NULL);
2311                 return -EINVAL;
2312         }
2313
2314         /* Support for both adm and op quota files must be provided */
2315         if (f) {
2316                 rc = fsfilt_ext3_read_record(f, buf, count, &p);
2317                 rc = rc < 0 ? rc : p - pos;
2318         } else {
2319                 struct super_block *sb = inode->i_sb;
2320                 rc = sb->s_op->quota_read(sb, type, buf, count, pos);
2321         }
2322         return rc;
2323 }
2324
2325 ssize_t lustre_write_quota(struct file *f, char *buf, int count, loff_t pos)
2326 {
2327         loff_t p = pos;
2328         int rc;
2329
2330         /* Only adm quota files are supported, op updates are handled by vfs */
2331         rc = fsfilt_ext3_write_record(f, buf, count, &p, 0);
2332         rc = rc < 0 ? rc : p - pos;
2333
2334         return rc;
2335 }
2336
2337 void *lustre_quota_journal_start(struct inode *inode, int delete)
2338 {
2339         handle_t *handle;
2340         unsigned block_count;
2341
2342         if (delete) {
2343                 /* each indirect block (+4) may become free, attaching to the
2344                  * header list of free blocks (+1); the data block (+1) may
2345                  * become a free block (+0) or a block with free dqentries (+0) */
2346                 block_count = (4 + 1) + 1;
2347                 handle = ext3_journal_start(inode,
2348                             block_count*FSFILT_DATA_TRANS_BLOCKS(inode->i_sb)+2);
2349         } else {
2350                 /* indirect blocks are touched (+4), each causes file expansion (+0) or
2351                  * freeblk reusage with a header update (+1); dqentry is either reused
2352                  * causing update of the entry block (+1), prev (+1) and next (+1) or
2353                  * a new block allocation (+1) with a header update (+1)              */
2354                 block_count = (4 + 1) + 3;
2355                 handle = ext3_journal_start(inode,
2356                              block_count*FSFILT_DATA_TRANS_BLOCKS(inode->i_sb)+2);
2357
2358         }
2359
2360         return handle;
2361 }
2362
2363 void lustre_quota_journal_stop(void *handle)
2364 {
2365         ext3_journal_stop((handle_t *)handle);
2366 }
2367
2368 static int ll_decode_fh_accept(void *context, struct dentry *de)
2369 {
2370         return 1;
2371 }
2372
2373 #ifdef HAVE_EXPORTFS_DECODE_FH
2374 # define ll_exportfs_decode_fh(mnt, fid, len, type, acceptable, context) \
2375          exportfs_decode_fh(mnt, (struct fid*)(fid), len, type,          \
2376                             acceptable, context)
2377 #else
2378 # define ll_exportfs_decode_fh(mnt, fid, len, type, acceptable, context) \
2379          export_op_default.decode_fh((mnt)->mnt_sb, &(fid)->ino, len,    \
2380                                      type, acceptable, context)
2381 # define FILEID_INO32_GEN 1
2382 extern struct export_operations export_op_default;
2383 #endif
2384
2385 struct dentry *fsfilt_ext3_fid2dentry(struct vfsmount *mnt,
2386                                       struct fsfilt_fid *fid, int ignore_gen)
2387 {
2388         struct inode  *inode;
2389         struct dentry *result;
2390         
2391         result = ll_exportfs_decode_fh(mnt, fid, 2, FILEID_INO32_GEN,
2392                                        ll_decode_fh_accept, NULL);
2393         if (IS_ERR(result)) {
2394                 CDEBUG(D_DENTRY, "%s of %u/%u failed %ld\n", __func__,
2395                        fid->ino, fid->gen, PTR_ERR(result));
2396                 return result;
2397         }
2398
2399         CDEBUG(D_DENTRY, "%s of %u/%u succeeded\n", __func__,
2400                fid->ino, fid->gen);
2401         inode = result->d_inode;
2402         if (inode == NULL)
2403                 goto err_out;
2404
2405         if (inode->i_nlink == 0 &&
2406             inode->i_mode == 0 && LTIME_S(inode->i_ctime) == 0) {
2407                 LCONSOLE_WARN("Found inode with zero nlink, mode and"
2408                               " ctime -- this may indicate disk "
2409                               "corruption (inode: %lu, link: %lu, "
2410                               "count: %d)\n", inode->i_ino,
2411                               (unsigned long)inode->i_nlink,
2412                               atomic_read(&inode->i_count));
2413                 goto err_out;
2414         }
2415         if (fid->gen && inode->i_generation != fid->gen) {
2416                 /* we didn't find the right inode.. */
2417                 CDEBUG(D_INODE, "found wrong generation: inode %lu, link: %lu, "
2418                        "count: %d, generation %u/%u\n",
2419                        inode->i_ino, (unsigned long)inode->i_nlink,
2420                        atomic_read(&inode->i_count), inode->i_generation,
2421                        fid->gen);
2422                 goto err_out;
2423         }
2424
2425         return result;
2426 err_out:
2427         l_dput(result);
2428         return ERR_PTR(-ENOENT);
2429 }
2430
2431 static struct fsfilt_operations fsfilt_ext3_ops = {
2432         .fs_type                = "ext3",
2433         .fs_owner               = THIS_MODULE,
2434         .fs_getlabel            = fsfilt_ext3_get_label,
2435         .fs_setlabel            = fsfilt_ext3_set_label,
2436         .fs_uuid                = fsfilt_ext3_uuid,
2437         .fs_start               = fsfilt_ext3_start,
2438         .fs_brw_start           = fsfilt_ext3_brw_start,
2439         .fs_extend              = fsfilt_ext3_extend,
2440         .fs_commit              = fsfilt_ext3_commit,
2441         .fs_commit_async        = fsfilt_ext3_commit_async,
2442         .fs_commit_wait         = fsfilt_ext3_commit_wait,
2443         .fs_setattr             = fsfilt_ext3_setattr,
2444         .fs_iocontrol           = fsfilt_ext3_iocontrol,
2445         .fs_set_md              = fsfilt_ext3_set_md,
2446         .fs_get_md              = fsfilt_ext3_get_md,
2447         .fs_readpage            = fsfilt_ext3_readpage,
2448         .fs_add_journal_cb      = fsfilt_ext3_add_journal_cb,
2449         .fs_statfs              = fsfilt_ext3_statfs,
2450         .fs_sync                = fsfilt_ext3_sync,
2451         .fs_map_inode_pages     = fsfilt_ext3_map_inode_pages,
2452         .fs_write_record        = fsfilt_ext3_write_record,
2453         .fs_read_record         = fsfilt_ext3_read_record,
2454         .fs_setup               = fsfilt_ext3_setup,
2455         .fs_send_bio            = fsfilt_ext3_send_bio,
2456         .fs_get_op_len          = fsfilt_ext3_get_op_len,
2457 #ifdef HAVE_DISK_INODE_VERSION
2458         .fs_get_version         = fsfilt_ext3_get_version,
2459         .fs_set_version         = fsfilt_ext3_set_version,
2460 #endif
2461 #ifdef HAVE_QUOTA_SUPPORT
2462         .fs_quotactl            = fsfilt_ext3_quotactl,
2463         .fs_quotacheck          = fsfilt_ext3_quotacheck,
2464         .fs_quotainfo           = fsfilt_ext3_quotainfo,
2465         .fs_qids                = fsfilt_ext3_qids,
2466         .fs_dquot               = fsfilt_ext3_dquot,
2467         .fs_get_mblk            = fsfilt_ext3_get_mblk,
2468 #endif
2469         .fs_journal_sbdev       = fsfilt_ext3_journal_sbdev,
2470         .fs_fid2dentry          = fsfilt_ext3_fid2dentry,
2471 };
2472
2473 static int __init fsfilt_ext3_init(void)
2474 {
2475         int rc;
2476
2477         fcb_cache = cfs_mem_cache_create("fsfilt_ext3_fcb",
2478                                          sizeof(struct fsfilt_cb_data), 0, 0);
2479         if (!fcb_cache) {
2480                 CERROR("error allocating fsfilt journal callback cache\n");
2481                 GOTO(out, rc = -ENOMEM);
2482         }
2483
2484         rc = fsfilt_register_ops(&fsfilt_ext3_ops);
2485
2486         if (rc) {
2487                 int err = cfs_mem_cache_destroy(fcb_cache);
2488                 LASSERTF(err == 0, "error destroying new cache: rc %d\n", err);
2489         }
2490 out:
2491         return rc;
2492 }
2493
2494 static void __exit fsfilt_ext3_exit(void)
2495 {
2496         int rc;
2497
2498         fsfilt_unregister_ops(&fsfilt_ext3_ops);
2499         rc = cfs_mem_cache_destroy(fcb_cache);
2500         LASSERTF(rc == 0, "couldn't destroy fcb_cache slab\n");
2501 }
2502
2503 module_init(fsfilt_ext3_init);
2504 module_exit(fsfilt_ext3_exit);
2505
2506 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
2507 MODULE_DESCRIPTION("Lustre ext3 Filesystem Helper v0.1");
2508 MODULE_LICENSE("GPL");