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