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