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