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