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