Whamcloud - gitweb
dd7292d2e57c0b4e54d0a56293836ac83f98ad05
[fs/lustre-release.git] / lustre / lvfs / fsfilt_ext3.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  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 #ifdef HAVE_EXT_PREPARE_CB_EXTENT
894                                    struct ext3_extent *ex,
895 #endif
896                                   void *cbdata)
897 {
898         struct bpointers *bp = cbdata;
899 #else
900 static int ext3_ext_new_extent_cb(struct ext3_ext_base *base,
901                                   struct ext3_ext_path *path,
902                                   struct ext3_ext_cache *cex
903 #ifdef HAVE_EXT_PREPARE_CB_EXTENT
904                                   , struct ext3_extent *ex
905 #endif
906                                  )
907 {
908         struct bpointers *bp = base->private;
909 #endif
910         struct inode *inode = ext3_ext_base2inode(base);
911         struct ext3_extent nex;
912         unsigned long pblock;
913         unsigned long tgen;
914         int err, i;
915         unsigned long count;
916         handle_t *handle;
917
918         i = EXT_DEPTH(base);
919         EXT_ASSERT(i == path->p_depth);
920         EXT_ASSERT(path[i].p_hdr);
921
922         if (cex->ec_type == EXT3_EXT_CACHE_EXTENT) {
923                 err = EXT_CONTINUE;
924                 goto map;
925         }
926
927         if (bp->create == 0) {
928                 i = 0;
929                 if (cex->ec_block < bp->start)
930                         i = bp->start - cex->ec_block;
931                 if (i >= cex->ec_len)
932                         CERROR("nothing to do?! i = %d, e_num = %u\n",
933                                         i, cex->ec_len);
934                 for (; i < cex->ec_len && bp->num; i++) {
935                         *(bp->created) = 0;
936                         bp->created++;
937                         *(bp->blocks) = 0;
938                         bp->blocks++;
939                         bp->num--;
940                         bp->start++;
941                 }
942
943                 return EXT_CONTINUE;
944         }
945
946         tgen = EXT_GENERATION(base);
947         count = ext3_ext_calc_credits_for_insert(base, path);
948         ext3_up_truncate_sem(inode);
949
950         handle = fsfilt_ext3_journal_start(inode, count+EXT3_ALLOC_NEEDED+1);
951         if (IS_ERR(handle)) {
952                 ext3_down_truncate_sem(inode);
953                 return PTR_ERR(handle);
954         }
955
956         ext3_down_truncate_sem(inode);
957         if (tgen != EXT_GENERATION(base)) {
958                 /* the tree has changed. so path can be invalid at moment */
959                 fsfilt_ext3_journal_stop(handle);
960                 return EXT_REPEAT;
961         }
962
963         count = cex->ec_len;
964         pblock = new_blocks(handle, base, path, cex->ec_block, &count, &err);
965         if (!pblock)
966                 goto out;
967         EXT_ASSERT(count <= cex->ec_len);
968
969         /* insert new extent */
970         nex.ee_block = cex->ec_block;
971         nex.ee_start = pblock;
972         nex.ee_len = count;
973         err = ext3_ext_insert_extent(handle, base, path, &nex);
974         if (err) {
975                 /* free data blocks we just allocated */
976                 /* not a good idea to call discard here directly,
977                  * but otherwise we'd need to call it every free() */
978 #ifdef EXT3_MB_HINT_GROUP_ALLOC
979                 ext3_mb_discard_inode_preallocations(inode);
980 #endif
981                 ext3_free_blocks(handle, inode, nex.ee_start, nex.ee_len, 0);
982                 goto out;
983         }
984
985         /*
986          * Putting len of the actual extent we just inserted,
987          * we are asking ext3_ext_walk_space() to continue
988          * scaning after that block
989          */
990         cex->ec_len = nex.ee_len;
991         cex->ec_start = nex.ee_start;
992         BUG_ON(nex.ee_len == 0);
993         BUG_ON(nex.ee_block != cex->ec_block);
994
995 out:
996         fsfilt_ext3_journal_stop(handle);
997 map:
998         if (err >= 0) {
999                 /* map blocks */
1000                 if (bp->num == 0) {
1001                         CERROR("hmm. why do we find this extent?\n");
1002                         CERROR("initial space: %lu:%u\n",
1003                                 bp->start, bp->init_num);
1004                         CERROR("current extent: %u/%u/%u %d\n",
1005                                 cex->ec_block, cex->ec_len,
1006                                 cex->ec_start, cex->ec_type);
1007                 }
1008                 i = 0;
1009                 if (cex->ec_block < bp->start)
1010                         i = bp->start - cex->ec_block;
1011                 if (i >= cex->ec_len)
1012                         CERROR("nothing to do?! i = %d, e_num = %u\n",
1013                                         i, cex->ec_len);
1014                 for (; i < cex->ec_len && bp->num; i++) {
1015                         *(bp->blocks) = cex->ec_start + i;
1016                         if (cex->ec_type == EXT3_EXT_CACHE_EXTENT) {
1017                                 *(bp->created) = 0;
1018                         } else {
1019                                 *(bp->created) = 1;
1020                                 /* unmap any possible underlying metadata from
1021                                  * the block device mapping.  bug 6998. */
1022                                 ll_unmap_underlying_metadata(inode->i_sb,
1023                                                              *(bp->blocks));
1024                         }
1025                         bp->created++;
1026                         bp->blocks++;
1027                         bp->num--;
1028                         bp->start++;
1029                 }
1030         }
1031         return err;
1032 }
1033
1034 int fsfilt_map_nblocks(struct inode *inode, unsigned long block,
1035                        unsigned long num, unsigned long *blocks,
1036                        int *created, int create)
1037 {
1038 #ifdef EXT3_EXT_HAS_NO_TREE
1039         struct ext3_ext_base *base = inode;
1040 #else
1041         struct ext3_extents_tree tree;
1042         struct ext3_ext_base *base = &tree;
1043 #endif
1044         struct bpointers bp;
1045         int err;
1046
1047         CDEBUG(D_OTHER, "blocks %lu-%lu requested for inode %u\n",
1048                block, block + num - 1, (unsigned) inode->i_ino);
1049
1050 #ifndef EXT3_EXT_HAS_NO_TREE
1051         ext3_init_tree_desc(base, inode);
1052         tree.private = &bp;
1053 #endif
1054         bp.blocks = blocks;
1055         bp.created = created;
1056         bp.start = block;
1057         bp.init_num = bp.num = num;
1058         bp.create = create;
1059
1060         ext3_down_truncate_sem(inode);
1061         err = fsfilt_ext3_ext_walk_space(base, block, num,
1062                                          ext3_ext_new_extent_cb, &bp);
1063         ext3_ext_invalidate_cache(base);
1064         ext3_up_truncate_sem(inode);
1065
1066         return err;
1067 }
1068
1069 int fsfilt_ext3_map_ext_inode_pages(struct inode *inode, struct page **page,
1070                                     int pages, unsigned long *blocks,
1071                                     int *created, int create)
1072 {
1073         int blocks_per_page = CFS_PAGE_SIZE >> inode->i_blkbits;
1074         int rc = 0, i = 0;
1075         struct page *fp = NULL;
1076         int clen = 0;
1077
1078         CDEBUG(D_OTHER, "inode %lu: map %d pages from %lu\n",
1079                 inode->i_ino, pages, (*page)->index);
1080
1081         /* pages are sorted already. so, we just have to find
1082          * contig. space and process them properly */
1083         while (i < pages) {
1084                 if (fp == NULL) {
1085                         /* start new extent */
1086                         fp = *page++;
1087                         clen = 1;
1088                         i++;
1089                         continue;
1090                 } else if (fp->index + clen == (*page)->index) {
1091                         /* continue the extent */
1092                         page++;
1093                         clen++;
1094                         i++;
1095                         continue;
1096                 }
1097
1098                 /* process found extent */
1099                 rc = fsfilt_map_nblocks(inode, fp->index * blocks_per_page,
1100                                         clen * blocks_per_page, blocks,
1101                                         created, create);
1102                 if (rc)
1103                         GOTO(cleanup, rc);
1104
1105                 /* look for next extent */
1106                 fp = NULL;
1107                 blocks += blocks_per_page * clen;
1108                 created += blocks_per_page * clen;
1109         }
1110
1111         if (fp)
1112                 rc = fsfilt_map_nblocks(inode, fp->index * blocks_per_page,
1113                                         clen * blocks_per_page, blocks,
1114                                         created, create);
1115 cleanup:
1116         return rc;
1117 }
1118 #endif /* EXT3_MULTIBLOCK_ALLOCATOR */
1119
1120 extern int ext3_map_inode_page(struct inode *inode, struct page *page,
1121                                unsigned long *blocks, int *created, int create);
1122 int fsfilt_ext3_map_bm_inode_pages(struct inode *inode, struct page **page,
1123                                    int pages, unsigned long *blocks,
1124                                    int *created, int create)
1125 {
1126         int blocks_per_page = CFS_PAGE_SIZE >> inode->i_blkbits;
1127         unsigned long *b;
1128         int rc = 0, i, *cr;
1129
1130         for (i = 0, cr = created, b = blocks; i < pages; i++, page++) {
1131                 rc = ext3_map_inode_page(inode, *page, b, cr, create);
1132                 if (rc) {
1133                         CERROR("ino %lu, blk %lu cr %u create %d: rc %d\n",
1134                                inode->i_ino, *b, *cr, create, rc);
1135                         break;
1136                 }
1137
1138                 b += blocks_per_page;
1139                 cr += blocks_per_page;
1140         }
1141         return rc;
1142 }
1143
1144 int fsfilt_ext3_map_inode_pages(struct inode *inode, struct page **page,
1145                                 int pages, unsigned long *blocks,
1146                                 int *created, int create,
1147                                 struct semaphore *optional_sem)
1148 {
1149         int rc;
1150 #ifdef EXT3_MULTIBLOCK_ALLOCATOR
1151         if (EXT3_I(inode)->i_flags & EXT3_EXTENTS_FL) {
1152                 rc = fsfilt_ext3_map_ext_inode_pages(inode, page, pages,
1153                                                      blocks, created, create);
1154                 return rc;
1155         }
1156 #endif
1157         if (optional_sem != NULL)
1158                 down(optional_sem);
1159         rc = fsfilt_ext3_map_bm_inode_pages(inode, page, pages, blocks,
1160                                             created, create);
1161         if (optional_sem != NULL)
1162                 up(optional_sem);
1163
1164         return rc;
1165 }
1166
1167 int fsfilt_ext3_read(struct inode *inode, void *buf, int size, loff_t *offs)
1168 {
1169         unsigned long block;
1170         struct buffer_head *bh;
1171         int err, blocksize, csize, boffs, osize = size;
1172
1173         /* prevent reading after eof */
1174         lock_kernel();
1175         if (i_size_read(inode) < *offs + size) {
1176                 size = i_size_read(inode) - *offs;
1177                 unlock_kernel();
1178                 if (size < 0) {
1179                         CERROR("size %llu is too short for read %u@%llu\n",
1180                                i_size_read(inode), size, *offs);
1181                         return -EIO;
1182                 } else if (size == 0) {
1183                         return 0;
1184                 }
1185         } else {
1186                 unlock_kernel();
1187         }
1188
1189         blocksize = 1 << inode->i_blkbits;
1190
1191         while (size > 0) {
1192                 block = *offs >> inode->i_blkbits;
1193                 boffs = *offs & (blocksize - 1);
1194                 csize = min(blocksize - boffs, size);
1195                 bh = ext3_bread(NULL, inode, block, 0, &err);
1196                 if (!bh) {
1197                         CERROR("can't read block: %d\n", err);
1198                         return err;
1199                 }
1200
1201                 memcpy(buf, bh->b_data + boffs, csize);
1202                 brelse(bh);
1203
1204                 *offs += csize;
1205                 buf += csize;
1206                 size -= csize;
1207         }
1208         return osize;
1209 }
1210 EXPORT_SYMBOL(fsfilt_ext3_read);
1211
1212 static int fsfilt_ext3_read_record(struct file * file, void *buf,
1213                                    int size, loff_t *offs)
1214 {
1215         int rc;
1216         rc = fsfilt_ext3_read(file->f_dentry->d_inode, buf, size, offs);
1217         if (rc > 0)
1218                 rc = 0;
1219         return rc;
1220 }
1221
1222 int fsfilt_ext3_write_handle(struct inode *inode, void *buf, int bufsize,
1223                                 loff_t *offs, handle_t *handle)
1224 {
1225         struct buffer_head *bh = NULL;
1226         loff_t old_size = i_size_read(inode), offset = *offs;
1227         loff_t new_size = i_size_read(inode);
1228         unsigned long block;
1229         int err = 0, blocksize = 1 << inode->i_blkbits, size, boffs;
1230
1231         while (bufsize > 0) {
1232                 if (bh != NULL)
1233                         brelse(bh);
1234
1235                 block = offset >> inode->i_blkbits;
1236                 boffs = offset & (blocksize - 1);
1237                 size = min(blocksize - boffs, bufsize);
1238                 bh = ext3_bread(handle, inode, block, 1, &err);
1239                 if (!bh) {
1240                         CERROR("can't read/create block: %d\n", err);
1241                         break;
1242                 }
1243
1244                 err = ext3_journal_get_write_access(handle, bh);
1245                 if (err) {
1246                         CERROR("journal_get_write_access() returned error %d\n",
1247                                err);
1248                         break;
1249                 }
1250                 LASSERT(bh->b_data + boffs + size <= bh->b_data + bh->b_size);
1251                 memcpy(bh->b_data + boffs, buf, size);
1252                 err = ext3_journal_dirty_metadata(handle, bh);
1253                 if (err) {
1254                         CERROR("journal_dirty_metadata() returned error %d\n",
1255                                err);
1256                         break;
1257                 }
1258                 if (offset + size > new_size)
1259                         new_size = offset + size;
1260                 offset += size;
1261                 bufsize -= size;
1262                 buf += size;
1263         }
1264         if (bh)
1265                 brelse(bh);
1266
1267         /* correct in-core and on-disk sizes */
1268         if (new_size > i_size_read(inode)) {
1269                 lock_kernel();
1270                 if (new_size > i_size_read(inode))
1271                         i_size_write(inode, new_size);
1272                 if (i_size_read(inode) > EXT3_I(inode)->i_disksize)
1273                         EXT3_I(inode)->i_disksize = i_size_read(inode);
1274                 if (i_size_read(inode) > old_size)
1275                         mark_inode_dirty(inode);
1276                 unlock_kernel();
1277         }
1278
1279         if (err == 0)
1280                 *offs = offset;
1281         return err;
1282 }
1283 EXPORT_SYMBOL(fsfilt_ext3_write_handle);
1284
1285 static int fsfilt_ext3_write_record(struct file *file, void *buf, int bufsize,
1286                                     loff_t *offs, int force_sync)
1287 {
1288         struct inode *inode = file->f_dentry->d_inode;
1289         handle_t *handle;
1290         int err, block_count = 0, blocksize;
1291
1292         /* Determine how many transaction credits are needed */
1293         blocksize = 1 << inode->i_blkbits;
1294         block_count = (*offs & (blocksize - 1)) + bufsize;
1295         block_count = (block_count + blocksize - 1) >> inode->i_blkbits;
1296
1297         handle = fsfilt_ext3_journal_start(inode,
1298                                block_count * FSFILT_DATA_TRANS_BLOCKS(inode->i_sb) + 2);
1299         if (IS_ERR(handle)) {
1300                 CERROR("can't start transaction for %d blocks (%d bytes)\n",
1301                        block_count * FSFILT_DATA_TRANS_BLOCKS(inode->i_sb) + 2, bufsize);
1302                 return PTR_ERR(handle);
1303         }
1304
1305         err = fsfilt_ext3_write_handle(inode, buf, bufsize, offs, handle);
1306
1307         if (!err && force_sync)
1308                 handle->h_sync = 1; /* recovery likes this */
1309
1310         fsfilt_ext3_journal_stop(handle);
1311
1312         return err;
1313 }
1314
1315 static int fsfilt_ext3_setup(struct super_block *sb)
1316 {
1317 #if 0
1318         EXT3_SB(sb)->dx_lock = fsfilt_ext3_dx_lock;
1319         EXT3_SB(sb)->dx_unlock = fsfilt_ext3_dx_unlock;
1320 #endif
1321 #ifdef S_PDIROPS
1322         CWARN("Enabling PDIROPS\n");
1323         set_opt(EXT3_SB(sb)->s_mount_opt, PDIROPS);
1324         sb->s_flags |= S_PDIROPS;
1325 #endif
1326         if (!EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX))
1327                 CWARN("filesystem doesn't have dir_index feature enabled\n");
1328 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,13)) && defined(HAVE_QUOTA_SUPPORT)
1329         set_opt(EXT3_SB(sb)->s_mount_opt, QUOTA);
1330 #endif
1331         return 0;
1332 }
1333
1334 /* If fso is NULL, op is FSFILT operation, otherwise op is number of fso
1335    objects. Logs is number of logfiles to update */
1336 static int fsfilt_ext3_get_op_len(int op, struct fsfilt_objinfo *fso, int logs)
1337 {
1338         if ( !fso ) {
1339                 switch(op) {
1340                 case FSFILT_OP_CREATE:
1341                                  /* directory leaf, index & indirect & EA*/
1342                         return 4 + 3 * logs;
1343                 case FSFILT_OP_UNLINK:
1344                         return 3 * logs;
1345                 }
1346         } else {
1347                 int i;
1348                 int needed = 0;
1349                 struct super_block *sb = fso->fso_dentry->d_inode->i_sb;
1350                 int blockpp = 1 << (CFS_PAGE_SHIFT - sb->s_blocksize_bits);
1351                 int addrpp = EXT3_ADDR_PER_BLOCK(sb) * blockpp;
1352                 for (i = 0; i < op; i++, fso++) {
1353                         int nblocks = fso->fso_bufcnt * blockpp;
1354                         int ndindirect = min(nblocks, addrpp + 1);
1355                         int nindir = nblocks + ndindirect + 1;
1356
1357                         needed += nindir;
1358                 }
1359                 return needed + 3 * logs;
1360         }
1361
1362         return 0;
1363 }
1364
1365 static const char *op_quotafile[] = { "lquota.user", "lquota.group" };
1366
1367 #define DQINFO_COPY(out, in)                    \
1368 do {                                            \
1369         Q_COPY(out, in, dqi_bgrace);            \
1370         Q_COPY(out, in, dqi_igrace);            \
1371         Q_COPY(out, in, dqi_flags);             \
1372         Q_COPY(out, in, dqi_valid);             \
1373 } while (0)
1374
1375 #define DQBLK_COPY(out, in)                     \
1376 do {                                            \
1377         Q_COPY(out, in, dqb_bhardlimit);        \
1378         Q_COPY(out, in, dqb_bsoftlimit);        \
1379         Q_COPY(out, in, dqb_curspace);          \
1380         Q_COPY(out, in, dqb_ihardlimit);        \
1381         Q_COPY(out, in, dqb_isoftlimit);        \
1382         Q_COPY(out, in, dqb_curinodes);         \
1383         Q_COPY(out, in, dqb_btime);             \
1384         Q_COPY(out, in, dqb_itime);             \
1385         Q_COPY(out, in, dqb_valid);             \
1386 } while (0)
1387
1388
1389
1390 static int fsfilt_ext3_quotactl(struct super_block *sb,
1391                                 struct obd_quotactl *oqc)
1392 {
1393         int i, rc = 0, error = 0;
1394         struct quotactl_ops *qcop;
1395         struct if_dqinfo *info;
1396         struct if_dqblk *dqblk;
1397         ENTRY;
1398
1399         if (!sb->s_qcop)
1400                 RETURN(-ENOSYS);
1401
1402         OBD_ALLOC_PTR(info);
1403         if (!info)
1404                 RETURN(-ENOMEM);
1405         OBD_ALLOC_PTR(dqblk);
1406         if (!dqblk) {
1407                 OBD_FREE_PTR(info);
1408                 RETURN(-ENOMEM);
1409         }
1410
1411         DQINFO_COPY(info, &oqc->qc_dqinfo);
1412         DQBLK_COPY(dqblk, &oqc->qc_dqblk);
1413
1414         qcop = sb->s_qcop;
1415         if (oqc->qc_cmd == Q_QUOTAON || oqc->qc_cmd == Q_QUOTAOFF) {
1416                 for (i = 0; i < MAXQUOTAS; i++) {
1417                         if (!Q_TYPESET(oqc, i))
1418                                 continue;
1419
1420                         if (oqc->qc_cmd == Q_QUOTAON) {
1421                                 if (!qcop->quota_on)
1422                                         GOTO(out, rc = -ENOSYS);
1423                                 rc = qcop->quota_on(sb, i, oqc->qc_id,
1424                                                     (char *)op_quotafile[i]);
1425                         } else if (oqc->qc_cmd == Q_QUOTAOFF) {
1426                                 if (!qcop->quota_off)
1427                                         GOTO(out, rc = -ENOSYS);
1428                                 rc = qcop->quota_off(sb, i);
1429                         }
1430
1431                         if (rc == -EBUSY)
1432                                 error = rc;
1433                         else if (rc)
1434                                 GOTO(out, rc);
1435                 }
1436                 GOTO(out, rc ?: error);
1437         }
1438
1439         switch (oqc->qc_cmd) {
1440         case Q_GETOINFO:
1441         case Q_GETINFO:
1442                 if (!qcop->get_info)
1443                         GOTO(out, rc = -ENOSYS);
1444                 rc = qcop->get_info(sb, oqc->qc_type, info);
1445                 break;
1446         case Q_SETQUOTA:
1447         case Q_INITQUOTA:
1448                 if (!qcop->set_dqblk)
1449                         GOTO(out, rc = -ENOSYS);
1450                 rc = qcop->set_dqblk(sb, oqc->qc_type, oqc->qc_id, dqblk);
1451                 break;
1452         case Q_GETOQUOTA:
1453         case Q_GETQUOTA:
1454                 if (!qcop->get_dqblk)
1455                         GOTO(out, rc = -ENOSYS);
1456                 rc = qcop->get_dqblk(sb, oqc->qc_type, oqc->qc_id, dqblk);
1457                 break;
1458         case Q_SYNC:
1459                 if (!sb->s_qcop->quota_sync)
1460                         GOTO(out, rc = -ENOSYS);
1461                 qcop->quota_sync(sb, oqc->qc_type);
1462                 break;
1463         default:
1464                 CERROR("unsupported quotactl command: %d", oqc->qc_cmd);
1465                 LBUG();
1466         }
1467 out:
1468         DQINFO_COPY(&oqc->qc_dqinfo, info);
1469         DQBLK_COPY(&oqc->qc_dqblk, dqblk);
1470
1471         OBD_FREE_PTR(info);
1472         OBD_FREE_PTR(dqblk);
1473
1474         if (rc)
1475                 CDEBUG(D_QUOTA, "quotactl command %#x, id %u, type %d "
1476                                 "failed: %d\n",
1477                        oqc->qc_cmd, oqc->qc_id, oqc->qc_type, rc);
1478         RETURN(rc);
1479 }
1480
1481 struct chk_dqblk{
1482         struct hlist_node       dqb_hash;        /* quotacheck hash */
1483         struct list_head        dqb_list;        /* in list also */
1484         qid_t                   dqb_id;          /* uid/gid */
1485         short                   dqb_type;        /* USRQUOTA/GRPQUOTA */
1486         __u32                   dqb_bhardlimit;  /* block hard limit */
1487         __u32                   dqb_bsoftlimit;  /* block soft limit */
1488         qsize_t                 dqb_curspace;    /* current space */
1489         __u32                   dqb_ihardlimit;  /* inode hard limit */
1490         __u32                   dqb_isoftlimit;  /* inode soft limit */
1491         __u32                   dqb_curinodes;   /* current inodes */
1492         __u64                   dqb_btime;       /* block grace time */
1493         __u64                   dqb_itime;       /* inode grace time */
1494         __u32                   dqb_valid;       /* flag for above fields */
1495 };
1496
1497 static inline unsigned int chkquot_hash(qid_t id, int type)
1498                                         __attribute__((__const__));
1499
1500 static inline unsigned int chkquot_hash(qid_t id, int type)
1501 {
1502         return (id * (MAXQUOTAS - type)) % NR_DQHASH;
1503 }
1504
1505 static inline struct chk_dqblk *
1506 find_chkquot(struct hlist_head *head, qid_t id, int type)
1507 {
1508         struct hlist_node *node;
1509         struct chk_dqblk *cdqb;
1510
1511         hlist_for_each(node, head) {
1512                 cdqb = hlist_entry(node, struct chk_dqblk, dqb_hash);
1513                 if (cdqb->dqb_id == id && cdqb->dqb_type == type)
1514                         return cdqb;
1515         }
1516
1517         return NULL;
1518 }
1519
1520 static struct chk_dqblk *alloc_chkquot(qid_t id, int type)
1521 {
1522         struct chk_dqblk *cdqb;
1523
1524         OBD_ALLOC_PTR(cdqb);
1525         if (cdqb) {
1526                 INIT_HLIST_NODE(&cdqb->dqb_hash);
1527                 INIT_LIST_HEAD(&cdqb->dqb_list);
1528                 cdqb->dqb_id = id;
1529                 cdqb->dqb_type = type;
1530         }
1531
1532         return cdqb;
1533 }
1534
1535 static struct chk_dqblk *
1536 cqget(struct super_block *sb, struct hlist_head *hash, struct list_head *list,
1537       qid_t id, int type, int first_check)
1538 {
1539         struct hlist_head *head = hash + chkquot_hash(id, type);
1540         struct if_dqblk dqb;
1541         struct chk_dqblk *cdqb;
1542         int rc;
1543
1544         cdqb = find_chkquot(head, id, type);
1545         if (cdqb)
1546                 return cdqb;
1547
1548         cdqb = alloc_chkquot(id, type);
1549         if (!cdqb)
1550                 return NULL;
1551
1552         if (!first_check) {
1553                 rc = sb->s_qcop->get_dqblk(sb, type, id, &dqb);
1554                 if (rc) {
1555                         CERROR("get_dqblk of id %u, type %d failed: %d\n",
1556                                id, type, rc);
1557                 } else {
1558                         DQBLK_COPY(cdqb, &dqb);
1559                         cdqb->dqb_curspace = 0;
1560                         cdqb->dqb_curinodes = 0;
1561                 }
1562         }
1563
1564         hlist_add_head(&cdqb->dqb_hash, head);
1565         list_add_tail(&cdqb->dqb_list, list);
1566
1567         return cdqb;
1568 }
1569
1570 static inline int quota_onoff(struct super_block *sb, int cmd, int type)
1571 {
1572         struct obd_quotactl *oqctl;
1573         int rc;
1574
1575         OBD_ALLOC_PTR(oqctl);
1576         if (!oqctl)
1577                 RETURN(-ENOMEM);
1578
1579         oqctl->qc_cmd = cmd;
1580         oqctl->qc_id = QFMT_LDISKFS;
1581         oqctl->qc_type = type;
1582         rc = fsfilt_ext3_quotactl(sb, oqctl);
1583
1584         OBD_FREE_PTR(oqctl);
1585         return rc;
1586 }
1587
1588 static inline int read_old_dqinfo(struct super_block *sb, int type,
1589                                   struct if_dqinfo *dqinfo)
1590 {
1591         struct obd_quotactl *oqctl;
1592         int rc;
1593         ENTRY;
1594
1595         OBD_ALLOC_PTR(oqctl);
1596         if (!oqctl)
1597                 RETURN(-ENOMEM);
1598
1599         oqctl->qc_cmd = Q_GETINFO;
1600         oqctl->qc_type = type;
1601         rc = fsfilt_ext3_quotactl(sb, oqctl);
1602         if (!rc)
1603                 ((struct obd_dqinfo *)dqinfo)[type] = oqctl->qc_dqinfo;
1604
1605         OBD_FREE_PTR(oqctl);
1606         RETURN(rc);
1607 }
1608
1609 static inline struct ext3_group_desc *
1610 get_group_desc(struct super_block *sb, int group)
1611 {
1612         unsigned long desc_block, desc;
1613         struct ext3_group_desc *gdp;
1614
1615         desc_block = group / EXT3_DESC_PER_BLOCK(sb);
1616         desc = group % EXT3_DESC_PER_BLOCK(sb);
1617         gdp = (struct ext3_group_desc *)
1618               EXT3_SB(sb)->s_group_desc[desc_block]->b_data;
1619
1620         return gdp + desc;
1621 }
1622
1623 static inline struct buffer_head *
1624 read_inode_bitmap(struct super_block *sb, unsigned long group)
1625 {
1626         struct ext3_group_desc *desc;
1627         struct buffer_head *bh;
1628
1629         desc = get_group_desc(sb, group);
1630         bh = sb_bread(sb, le32_to_cpu(desc->bg_inode_bitmap));
1631
1632         return bh;
1633 }
1634
1635 static inline struct inode *ext3_iget_inuse(struct super_block *sb,
1636                                      struct buffer_head *bitmap_bh,
1637                                      int index, unsigned long ino)
1638 {
1639         struct inode *inode = NULL;
1640
1641         if (ext3_test_bit(index, bitmap_bh->b_data))
1642                 inode = iget(sb, ino);
1643
1644         return inode;
1645 }
1646
1647 struct qchk_ctxt {
1648         struct hlist_head       qckt_hash[NR_DQHASH];        /* quotacheck hash */
1649         struct list_head        qckt_list;                   /* quotacheck list */
1650         int                     qckt_first_check[MAXQUOTAS]; /* 1 if no old quotafile */
1651         struct if_dqinfo        qckt_dqinfo[MAXQUOTAS];      /* old dqinfo */
1652 };
1653
1654 static int add_inode_quota(struct inode *inode, struct qchk_ctxt *qctxt,
1655                            struct obd_quotactl *oqc)
1656 {
1657         struct chk_dqblk *cdqb[MAXQUOTAS] = { NULL, };
1658         loff_t size = 0;
1659         qid_t qid[MAXQUOTAS];
1660         int cnt, i, rc = 0;
1661
1662         if (!inode)
1663                 return 0;
1664
1665         qid[USRQUOTA] = inode->i_uid;
1666         qid[GRPQUOTA] = inode->i_gid;
1667
1668         if (S_ISDIR(inode->i_mode) ||
1669             S_ISREG(inode->i_mode) ||
1670             S_ISLNK(inode->i_mode))
1671                 size = inode_get_bytes(inode);
1672
1673         for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1674                 if (!Q_TYPESET(oqc, cnt))
1675                         continue;
1676
1677                 cdqb[cnt] = cqget(inode->i_sb, qctxt->qckt_hash,
1678                                 &qctxt->qckt_list, qid[cnt], cnt,
1679                                 qctxt->qckt_first_check[cnt]);
1680                 if (!cdqb[cnt]) {
1681                         rc = -ENOMEM;
1682                         break;
1683                 }
1684
1685                 cdqb[cnt]->dqb_curspace += size;
1686                 cdqb[cnt]->dqb_curinodes++;
1687         }
1688
1689         if (rc) {
1690                 for (i = 0; i < cnt; i++) {
1691                         if (!Q_TYPESET(oqc, i))
1692                                 continue;
1693                         LASSERT(cdqb[i]);
1694                         cdqb[i]->dqb_curspace -= size;
1695                         cdqb[i]->dqb_curinodes--;
1696                 }
1697         }
1698
1699         return rc;
1700 }
1701
1702 static int v2_write_dqheader(struct file *f, int type)
1703 {
1704         static const __u32 quota_magics[] = V2_INITQMAGICS;
1705         static const __u32 quota_versions[] = V2_INITQVERSIONS;
1706         struct v2_disk_dqheader dqhead;
1707         loff_t offset = 0;
1708
1709         CLASSERT(ARRAY_SIZE(quota_magics) == ARRAY_SIZE(quota_versions));
1710         LASSERT(0 <= type && type < ARRAY_SIZE(quota_magics));
1711
1712         dqhead.dqh_magic = cpu_to_le32(quota_magics[type]);
1713         dqhead.dqh_version = cpu_to_le32(quota_versions[type]);
1714
1715         return cfs_user_write(f, (char *)&dqhead, sizeof(dqhead), &offset);
1716 }
1717
1718 /* write dqinfo struct in a new quota file */
1719 static int v2_write_dqinfo(struct file *f, int type, struct if_dqinfo *info)
1720 {
1721         struct v2_disk_dqinfo dqinfo;
1722         __u32 blocks = V2_DQTREEOFF + 1;
1723         loff_t offset = V2_DQINFOOFF;
1724
1725         if (info) {
1726                 dqinfo.dqi_bgrace = cpu_to_le32(info->dqi_bgrace);
1727                 dqinfo.dqi_igrace = cpu_to_le32(info->dqi_igrace);
1728                 dqinfo.dqi_flags = cpu_to_le32(info->dqi_flags & DQF_MASK &
1729                                                ~DQF_INFO_DIRTY);
1730         } else {
1731                 dqinfo.dqi_bgrace = cpu_to_le32(MAX_DQ_TIME);
1732                 dqinfo.dqi_igrace = cpu_to_le32(MAX_IQ_TIME);
1733                 dqinfo.dqi_flags = 0;
1734         }
1735
1736         dqinfo.dqi_blocks = cpu_to_le32(blocks);
1737         dqinfo.dqi_free_blk = 0;
1738         dqinfo.dqi_free_entry = 0;
1739
1740         return cfs_user_write(f, (char *)&dqinfo, sizeof(dqinfo), &offset);
1741 }
1742
1743 static int create_new_quota_files(struct qchk_ctxt *qctxt,
1744                                   struct obd_quotactl *oqc)
1745 {
1746         int i, rc = 0;
1747         ENTRY;
1748
1749         for (i = 0; i < MAXQUOTAS; i++) {
1750                 struct if_dqinfo *info = qctxt->qckt_first_check[i]?
1751                                          NULL : &qctxt->qckt_dqinfo[i];
1752                 struct file *file;
1753
1754                 if (!Q_TYPESET(oqc, i))
1755                         continue;
1756
1757                 file = filp_open(op_quotafile[i], O_RDWR | O_CREAT | O_TRUNC,
1758                                  0644);
1759                 if (IS_ERR(file)) {
1760                         rc = PTR_ERR(file);
1761                         CERROR("can't create %s file: rc = %d\n",
1762                                op_quotafile[i], rc);
1763                         GOTO(out, rc);
1764                 }
1765
1766                 if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
1767                         CERROR("file %s is not regular", op_quotafile[i]);
1768                         filp_close(file, 0);
1769                         GOTO(out, rc = -EINVAL);
1770                 }
1771
1772                 rc = v2_write_dqheader(file, i);
1773                 if (rc) {
1774                         filp_close(file, 0);
1775                         GOTO(out, rc);
1776                 }
1777
1778                 rc = v2_write_dqinfo(file, i, info);
1779                 filp_close(file, 0);
1780                 if (rc)
1781                         GOTO(out, rc);
1782         }
1783
1784 out:
1785         RETURN(rc);
1786 }
1787
1788
1789 static int commit_chkquot(struct super_block *sb, struct qchk_ctxt *qctxt,
1790                           struct chk_dqblk *cdqb)
1791 {
1792         struct obd_quotactl *oqc;
1793         long now;
1794         int rc;
1795         ENTRY;
1796
1797         OBD_ALLOC_PTR(oqc);
1798         if (!oqc)
1799                 RETURN(-ENOMEM);
1800
1801         now = cfs_time_current_sec();
1802
1803         if (cdqb->dqb_bsoftlimit &&
1804             toqb(cdqb->dqb_curspace) >= cdqb->dqb_bsoftlimit &&
1805             !cdqb->dqb_btime)
1806                 cdqb->dqb_btime = 
1807                         now + qctxt->qckt_dqinfo[cdqb->dqb_type].dqi_bgrace;
1808
1809         if (cdqb->dqb_isoftlimit &&
1810             cdqb->dqb_curinodes >= cdqb->dqb_isoftlimit &&
1811             !cdqb->dqb_itime)
1812                 cdqb->dqb_itime = 
1813                         now + qctxt->qckt_dqinfo[cdqb->dqb_type].dqi_igrace;
1814
1815         cdqb->dqb_valid = QIF_ALL;
1816
1817         oqc->qc_cmd = Q_SETQUOTA;
1818         oqc->qc_type = cdqb->dqb_type;
1819         oqc->qc_id = cdqb->dqb_id;
1820         DQBLK_COPY(&oqc->qc_dqblk, cdqb);
1821
1822         rc = fsfilt_ext3_quotactl(sb, oqc);
1823         OBD_FREE_PTR(oqc);
1824         RETURN(rc);
1825 }
1826
1827 static int prune_chkquots(struct super_block *sb,
1828                           struct qchk_ctxt *qctxt, int error)
1829 {
1830         struct chk_dqblk *cdqb, *tmp;
1831         int rc;
1832
1833         list_for_each_entry_safe(cdqb, tmp, &qctxt->qckt_list, dqb_list) {
1834                 if (!error) {
1835                         rc = commit_chkquot(sb, qctxt, cdqb);
1836                         if (rc)
1837                                 error = rc;
1838                 }
1839                 hlist_del_init(&cdqb->dqb_hash);
1840                 list_del(&cdqb->dqb_list);
1841                 OBD_FREE_PTR(cdqb);
1842         }
1843
1844         return error;
1845 }
1846
1847 static int fsfilt_ext3_quotacheck(struct super_block *sb,
1848                                   struct obd_quotactl *oqc)
1849 {
1850         struct ext3_sb_info *sbi = EXT3_SB(sb);
1851         int i, group;
1852         struct qchk_ctxt *qctxt;
1853         struct buffer_head *bitmap_bh = NULL;
1854         unsigned long ino;
1855         struct inode *inode;
1856         int rc = 0;
1857         ENTRY;
1858
1859         /* turn on quota and read dqinfo if existed */
1860         OBD_ALLOC_PTR(qctxt);
1861         if (!qctxt) {
1862                 oqc->qc_stat = -ENOMEM;
1863                 RETURN(-ENOMEM);
1864         }
1865
1866         for (i = 0; i < NR_DQHASH; i++)
1867                 INIT_HLIST_HEAD(&qctxt->qckt_hash[i]);
1868         INIT_LIST_HEAD(&qctxt->qckt_list);
1869
1870         for (i = 0; i < MAXQUOTAS; i++) {
1871                 if (!Q_TYPESET(oqc, i))
1872                         continue;
1873
1874                 rc = quota_onoff(sb, Q_QUOTAON, i);
1875                 if (!rc || rc == -EBUSY) {
1876                         rc = read_old_dqinfo(sb, i, qctxt->qckt_dqinfo);
1877                         if (rc)
1878                                 GOTO(out, rc);
1879                 } else if (rc == -ENOENT) {
1880                         qctxt->qckt_first_check[i] = 1;
1881                 } else if (rc) {
1882                         GOTO(out, rc);
1883                 }
1884         }
1885
1886         /* check quota and update in hash */
1887         for (group = 0; group < sbi->s_groups_count; group++) {
1888                 ino = group * sbi->s_inodes_per_group + 1;
1889                 bitmap_bh = read_inode_bitmap(sb, group);
1890                 if (!bitmap_bh) {
1891                         CERROR("read_inode_bitmap group %d failed", group);
1892                         GOTO(out, rc = -EIO);
1893                 }
1894
1895                 for (i = 0; i < sbi->s_inodes_per_group; i++, ino++) {
1896                         if (ino < sbi->s_first_ino)
1897                                 continue;
1898
1899                         inode = ext3_iget_inuse(sb, bitmap_bh, i, ino);
1900                         rc = add_inode_quota(inode, qctxt, oqc);
1901                         iput(inode);
1902                         if (rc) {
1903                                 brelse(bitmap_bh);
1904                                 GOTO(out, rc);
1905                         }
1906                 }
1907
1908                 brelse(bitmap_bh);
1909         }
1910
1911         /* read old quota limits from old quota file. (only for the user
1912          * has limits but hasn't file) */
1913 #ifdef HAVE_QUOTA_SUPPORT
1914         for (i = 0; i < MAXQUOTAS; i++) {
1915                 struct list_head id_list;
1916                 struct dquot_id *dqid, *tmp;
1917
1918                 if (!Q_TYPESET(oqc, i))
1919                         continue;
1920
1921                 if (qctxt->qckt_first_check[i])
1922                         continue;
1923
1924
1925                 LASSERT(sb_dqopt(sb)->files[i] != NULL);
1926                 INIT_LIST_HEAD(&id_list);
1927 #ifndef KERNEL_SUPPORTS_QUOTA_READ 
1928                 rc = lustre_get_qids(sb_dqopt(sb)->files[i], NULL, i, &id_list);
1929 #else
1930                 rc = lustre_get_qids(NULL, sb_dqopt(sb)->files[i], i, &id_list);
1931 #endif
1932                 if (rc)
1933                         CERROR("read old limits failed. (rc:%d)\n", rc);
1934
1935                 list_for_each_entry_safe(dqid, tmp, &id_list, di_link) {
1936                         list_del_init(&dqid->di_link);
1937
1938                         if (!rc)
1939                                 cqget(sb, qctxt->qckt_hash, &qctxt->qckt_list,
1940                                       dqid->di_id, i,
1941                                       qctxt->qckt_first_check[i]);
1942                         kfree(dqid);
1943                 }
1944         }
1945 #endif
1946         /* turn off quota cause we are to dump chk_dqblk to files */
1947         quota_onoff(sb, Q_QUOTAOFF, oqc->qc_type);
1948
1949         rc = create_new_quota_files(qctxt, oqc);
1950         if (rc)
1951                 GOTO(out, rc);
1952
1953         /* we use vfs functions to set dqblk, so turn quota on */
1954         rc = quota_onoff(sb, Q_QUOTAON, oqc->qc_type);
1955 out:
1956         /* dump and free chk_dqblk */
1957         rc = prune_chkquots(sb, qctxt, rc);
1958         OBD_FREE_PTR(qctxt);
1959
1960         /* turn off quota, `lfs quotacheck` will turn on when all
1961          * nodes quotacheck finish. */
1962         quota_onoff(sb, Q_QUOTAOFF, oqc->qc_type);
1963
1964         oqc->qc_stat = rc;
1965         if (rc)
1966                 CERROR("quotacheck failed: rc = %d\n", rc);
1967
1968         RETURN(rc);
1969 }
1970
1971 #ifdef HAVE_QUOTA_SUPPORT
1972 static int fsfilt_ext3_quotainfo(struct lustre_quota_info *lqi, int type,
1973                                  int cmd)
1974 {
1975         int rc = 0;
1976         ENTRY;
1977
1978         if (lqi->qi_files[type] == NULL) {
1979                 CERROR("operate qinfo before it's enabled!\n");
1980                 RETURN(-EIO);
1981         }
1982
1983         switch (cmd) {
1984         case QFILE_CHK:
1985                 rc = lustre_check_quota_file(lqi, type);
1986                 break;
1987         case QFILE_RD_INFO:
1988                 rc = lustre_read_quota_info(lqi, type);
1989                 break;
1990         case QFILE_WR_INFO:
1991                 rc = lustre_write_quota_info(lqi, type);
1992                 break;
1993         case QFILE_INIT_INFO:
1994                 rc = lustre_init_quota_info(lqi, type);
1995                 break;
1996         default:
1997                 CERROR("Unsupported admin quota file cmd %d\n", cmd);
1998                 LBUG();
1999                 break;
2000         }
2001         RETURN(rc);
2002 }
2003
2004 static int fsfilt_ext3_qids(struct file *file, struct inode *inode, int type,
2005                             struct list_head *list)
2006 {
2007         return lustre_get_qids(file, inode, type, list);
2008 }
2009
2010 static int fsfilt_ext3_dquot(struct lustre_dquot *dquot, int cmd)
2011 {
2012         int rc = 0;
2013         ENTRY;
2014
2015         if (dquot->dq_info->qi_files[dquot->dq_type] == NULL) {
2016                 CERROR("operate dquot before it's enabled!\n");
2017                 RETURN(-EIO);
2018         }
2019
2020         switch (cmd) {
2021         case QFILE_RD_DQUOT:
2022                 rc = lustre_read_dquot(dquot);
2023                 break;
2024         case QFILE_WR_DQUOT:
2025                 if (dquot->dq_dqb.dqb_ihardlimit ||
2026                     dquot->dq_dqb.dqb_isoftlimit ||
2027                     dquot->dq_dqb.dqb_bhardlimit ||
2028                     dquot->dq_dqb.dqb_bsoftlimit)
2029                         clear_bit(DQ_FAKE_B, &dquot->dq_flags);
2030                 else
2031                         set_bit(DQ_FAKE_B, &dquot->dq_flags);
2032
2033                 rc = lustre_commit_dquot(dquot);
2034                 if (rc >= 0)
2035                         rc = 0;
2036                 break;
2037         default:
2038                 CERROR("Unsupported admin quota file cmd %d\n", cmd);
2039                 LBUG();
2040                 break;
2041         }
2042         RETURN(rc);
2043 }
2044 #endif
2045
2046 lvfs_sbdev_type fsfilt_ext3_journal_sbdev(struct super_block *sb)
2047 {
2048         return (EXT3_SB(sb)->journal_bdev);
2049 }
2050 EXPORT_SYMBOL(fsfilt_ext3_journal_sbdev);
2051
2052 static struct fsfilt_operations fsfilt_ext3_ops = {
2053         .fs_type                = "ext3",
2054         .fs_owner               = THIS_MODULE,
2055         .fs_getlabel            = fsfilt_ext3_get_label,
2056         .fs_setlabel            = fsfilt_ext3_set_label,
2057         .fs_uuid                = fsfilt_ext3_uuid,
2058         .fs_start               = fsfilt_ext3_start,
2059         .fs_brw_start           = fsfilt_ext3_brw_start,
2060         .fs_extend              = fsfilt_ext3_extend,
2061         .fs_commit              = fsfilt_ext3_commit,
2062         .fs_commit_async        = fsfilt_ext3_commit_async,
2063         .fs_commit_wait         = fsfilt_ext3_commit_wait,
2064         .fs_setattr             = fsfilt_ext3_setattr,
2065         .fs_iocontrol           = fsfilt_ext3_iocontrol,
2066         .fs_set_md              = fsfilt_ext3_set_md,
2067         .fs_get_md              = fsfilt_ext3_get_md,
2068         .fs_readpage            = fsfilt_ext3_readpage,
2069         .fs_add_journal_cb      = fsfilt_ext3_add_journal_cb,
2070         .fs_statfs              = fsfilt_ext3_statfs,
2071         .fs_sync                = fsfilt_ext3_sync,
2072         .fs_map_inode_pages     = fsfilt_ext3_map_inode_pages,
2073         .fs_write_record        = fsfilt_ext3_write_record,
2074         .fs_read_record         = fsfilt_ext3_read_record,
2075         .fs_setup               = fsfilt_ext3_setup,
2076         .fs_send_bio            = fsfilt_ext3_send_bio,
2077         .fs_get_op_len          = fsfilt_ext3_get_op_len,
2078         .fs_quotactl            = fsfilt_ext3_quotactl,
2079         .fs_quotacheck          = fsfilt_ext3_quotacheck,
2080 #ifdef HAVE_DISK_INODE_VERSION
2081         .fs_get_version         = fsfilt_ext3_get_version,
2082         .fs_set_version         = fsfilt_ext3_set_version,
2083 #endif
2084 #ifdef HAVE_QUOTA_SUPPORT
2085         .fs_quotainfo           = fsfilt_ext3_quotainfo,
2086         .fs_qids                = fsfilt_ext3_qids,
2087         .fs_dquot               = fsfilt_ext3_dquot,
2088 #endif
2089         .fs_journal_sbdev       = fsfilt_ext3_journal_sbdev,
2090 };
2091
2092 static int __init fsfilt_ext3_init(void)
2093 {
2094         int rc;
2095
2096         fcb_cache = cfs_mem_cache_create("fsfilt_ext3_fcb",
2097                                          sizeof(struct fsfilt_cb_data), 0, 0);
2098         if (!fcb_cache) {
2099                 CERROR("error allocating fsfilt journal callback cache\n");
2100                 GOTO(out, rc = -ENOMEM);
2101         }
2102
2103         rc = fsfilt_register_ops(&fsfilt_ext3_ops);
2104
2105         if (rc) {
2106                 int err = cfs_mem_cache_destroy(fcb_cache);
2107                 LASSERTF(err == 0, "error destroying new cache: rc %d\n", err);
2108         }
2109 out:
2110         return rc;
2111 }
2112
2113 static void __exit fsfilt_ext3_exit(void)
2114 {
2115         int rc;
2116
2117         fsfilt_unregister_ops(&fsfilt_ext3_ops);
2118         rc = cfs_mem_cache_destroy(fcb_cache);
2119         LASSERTF(rc == 0, "couldn't destroy fcb_cache slab\n");
2120 }
2121
2122 module_init(fsfilt_ext3_init);
2123 module_exit(fsfilt_ext3_exit);
2124
2125 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
2126 MODULE_DESCRIPTION("Lustre ext3 Filesystem Helper v0.1");
2127 MODULE_LICENSE("GPL");