Whamcloud - gitweb
0984c669a8b2f36be573d8dc74ab98f56f7727d3
[fs/lustre-release.git] / lustre / obdclass / fsfilt_extN.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  lustre/lib/fsfilt_extN.c
5  *  Lustre filesystem abstraction routines
6  *
7  *  Copyright (C) 2002, 2003 Cluster File Systems, Inc.
8  *   Author: Andreas Dilger <adilger@clusterfs.com>
9  *
10  *   This file is part of Lustre, http://www.lustre.org.
11  *
12  *   Lustre is free software; you can redistribute it and/or
13  *   modify it under the terms of version 2 of the GNU General Public
14  *   License as published by the Free Software Foundation.
15  *
16  *   Lustre is distributed in the hope that it will be useful,
17  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *   GNU General Public License for more details.
20  *
21  *   You should have received a copy of the GNU General Public License
22  *   along with Lustre; if not, write to the Free Software
23  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  */
25
26 #define DEBUG_SUBSYSTEM S_FILTER
27
28 #include <linux/fs.h>
29 #include <linux/jbd.h>
30 #include <linux/slab.h>
31 #include <linux/pagemap.h>
32 #include <linux/quotaops.h>
33 #include <linux/extN_fs.h>
34 #include <linux/extN_jbd.h>
35 #include <linux/extN_xattr.h>
36 #include <linux/kp30.h>
37 #include <linux/lustre_fsfilt.h>
38 #include <linux/obd.h>
39 #include <linux/obd_class.h>
40 #include <linux/module.h>
41
42 static kmem_cache_t *fcb_cache;
43 static int fcb_cache_count;
44
45 struct fsfilt_cb_data {
46         struct journal_callback cb_jcb; /* data private to jbd */
47         fsfilt_cb_t cb_func;            /* MDS/OBD completion function */
48         struct obd_device *cb_obd;      /* MDS/OBD completion device */
49         __u64 cb_last_rcvd;             /* MDS/OST last committed operation */
50 };
51
52 #define EXTN_XATTR_INDEX_LUSTRE         5
53 #define XATTR_LUSTRE_MDS_OBJID          "system.lustre_mds_objid"
54
55 /*
56  * We don't currently need any additional blocks for rmdir and
57  * unlink transactions because we are storing the OST oa_id inside
58  * the inode (which we will be changing anyways as part of this
59  * transaction).
60  */
61 static void *fsfilt_extN_start(struct inode *inode, int op)
62 {
63         /* For updates to the last recieved file */
64         int nblocks = EXTN_DATA_TRANS_BLOCKS;
65         void *handle;
66
67         switch(op) {
68         case FSFILT_OP_RMDIR:
69         case FSFILT_OP_UNLINK:
70                 nblocks += EXTN_DELETE_TRANS_BLOCKS;
71                 break;
72         case FSFILT_OP_RENAME:
73                 /* modify additional directory */
74                 nblocks += EXTN_DATA_TRANS_BLOCKS;
75                 /* no break */
76         case FSFILT_OP_SYMLINK:
77                 /* additional block + block bitmap + GDT for long symlink */
78                 nblocks += 3;
79                 /* no break */
80         case FSFILT_OP_CREATE:
81         case FSFILT_OP_MKDIR:
82         case FSFILT_OP_MKNOD:
83                 /* modify one inode + block bitmap + GDT */
84                 nblocks += 3;
85                 /* no break */
86         case FSFILT_OP_LINK:
87                 /* modify parent directory */
88                 nblocks += EXTN_INDEX_EXTRA_TRANS_BLOCKS+EXTN_DATA_TRANS_BLOCKS;
89                 break;
90         case FSFILT_OP_SETATTR:
91                 /* Setattr on inode */
92                 nblocks += 1;
93                 break;
94         default: CERROR("unknown transaction start op %d\n", op);
95                  LBUG();
96         }
97
98         LASSERT(!current->journal_info);
99         lock_kernel();
100         handle = journal_start(EXTN_JOURNAL(inode), nblocks);
101         unlock_kernel();
102
103         return handle;
104 }
105
106 /*
107  * Calculate the number of buffer credits needed to write multiple pages in
108  * a single extN transaction.  No, this shouldn't be here, but as yet extN
109  * doesn't have a nice API for calculating this sort of thing in advance.
110  *
111  * See comment above extN_writepage_trans_blocks for details.  We assume
112  * no data journaling is being done, but it does allow for all of the pages
113  * being non-contiguous.  If we are guaranteed contiguous pages we could
114  * reduce the number of (d)indirect blocks a lot.
115  *
116  * With N blocks per page and P pages, for each inode we have at most:
117  * N*P indirect
118  * min(N*P, blocksize/4 + 1) dindirect blocks
119  * niocount tindirect
120  *
121  * For the entire filesystem, we have at most:
122  * min(sum(nindir + P), ngroups) bitmap blocks (from the above)
123  * min(sum(nindir + P), gdblocks) group descriptor blocks (from the above)
124  * objcount inode blocks
125  * 1 superblock
126  * 2 * EXTN_SINGLEDATA_TRANS_BLOCKS for the quota files
127  * 
128  * 1 EXTN_DATA_TRANS_BLOCKS for the last_rcvd update.
129  */
130 static int fsfilt_extN_credits_needed(int objcount, struct fsfilt_objinfo *fso)
131 {
132         struct super_block *sb = fso->fso_dentry->d_inode->i_sb;
133         int blockpp = 1 << (PAGE_CACHE_SHIFT - sb->s_blocksize_bits);
134         int addrpp = EXTN_ADDR_PER_BLOCK(sb) * blockpp;
135         int nbitmaps = 0;
136         int ngdblocks = 0;
137         int needed = objcount + 1;
138         int i;
139
140         for (i = 0; i < objcount; i++, fso++) {
141                 int nblocks = fso->fso_bufcnt * blockpp;
142                 int ndindirect = min(nblocks, addrpp + 1);
143                 int nindir = nblocks + ndindirect + 1;
144
145                 nbitmaps += nindir + nblocks;
146                 ngdblocks += nindir + nblocks;
147
148                 needed += nindir;
149         }
150
151         /* Assumes extN and extN have same sb_info layout at the start. */
152         if (nbitmaps > EXTN_SB(sb)->s_groups_count)
153                 nbitmaps = EXTN_SB(sb)->s_groups_count;
154         if (ngdblocks > EXTN_SB(sb)->s_gdb_count)
155                 ngdblocks = EXTN_SB(sb)->s_gdb_count;
156
157         needed += nbitmaps + ngdblocks;
158         
159         /* last_rcvd update */
160         needed += EXTN_DATA_TRANS_BLOCKS;
161
162 #ifdef CONFIG_QUOTA
163         /* We assume that there will be 1 bit set in s_dquot.flags for each
164          * quota file that is active.  This is at least true for now.
165          */
166         needed += hweight32(sb_any_quota_enabled(sb)) *
167                 EXTN_SINGLEDATA_TRANS_BLOCKS;
168 #endif
169
170         return needed;
171 }
172
173 /* We have to start a huge journal transaction here to hold all of the
174  * metadata for the pages being written here.  This is necessitated by
175  * the fact that we do lots of prepare_write operations before we do
176  * any of the matching commit_write operations, so even if we split
177  * up to use "smaller" transactions none of them could complete until
178  * all of them were opened.  By having a single journal transaction,
179  * we eliminate duplicate reservations for common blocks like the
180  * superblock and group descriptors or bitmaps.
181  *
182  * We will start the transaction here, but each prepare_write will
183  * add a refcount to the transaction, and each commit_write will
184  * remove a refcount.  The transaction will be closed when all of
185  * the pages have been written.
186  */
187 static void *fsfilt_extN_brw_start(int objcount, struct fsfilt_objinfo *fso,
188                                    int niocount, struct niobuf_remote *nb)
189 {
190         journal_t *journal;
191         handle_t *handle;
192         int needed;
193         ENTRY;
194
195         LASSERT(!current->journal_info);
196         journal = EXTN_SB(fso->fso_dentry->d_inode->i_sb)->s_journal;
197         needed = fsfilt_extN_credits_needed(objcount, fso);
198
199         /* The number of blocks we could _possibly_ dirty can very large.
200          * We reduce our request if it is absurd (and we couldn't get that
201          * many credits for a single handle anyways).
202          *
203          * At some point we have to limit the size of I/Os sent at one time,
204          * increase the size of the journal, or we have to calculate the
205          * actual journal requirements more carefully by checking all of
206          * the blocks instead of being maximally pessimistic.  It remains to
207          * be seen if this is a real problem or not.
208          */
209         if (needed > journal->j_max_transaction_buffers) {
210                 CERROR("want too many journal credits (%d) using %d instead\n",
211                        needed, journal->j_max_transaction_buffers);
212                 needed = journal->j_max_transaction_buffers;
213         }
214
215         lock_kernel();
216         handle = journal_start(journal, needed);
217         unlock_kernel();
218         if (IS_ERR(handle))
219                 CERROR("can't get handle for %d credits: rc = %ld\n", needed,
220                        PTR_ERR(handle));
221
222         RETURN(handle);
223 }
224
225 static int fsfilt_extN_commit(struct inode *inode, void *h /*, force_sync */)
226 {
227         int rc;
228         handle_t *handle = h;
229
230 #if 0
231         if (force_sync)
232                 handle->h_sync = 1; /* recovery likes this */
233 #endif
234
235         lock_kernel();
236         rc = journal_stop(handle);
237         unlock_kernel();
238
239         return rc;
240 }
241
242 static int fsfilt_extN_setattr(struct dentry *dentry, void *handle,
243                                struct iattr *iattr)
244 {
245         struct inode *inode = dentry->d_inode;
246         int rc;
247
248         lock_kernel();
249
250         /* A _really_ horrible hack to avoid removing the data stored
251          * in the block pointers; this is really the "small" stripe MD data.
252          * We can avoid further hackery by virtue of the MDS file size being
253          * zero all the time (which doesn't invoke block truncate at unlink
254          * time), so we assert we never change the MDS file size from zero.
255          */
256         if (iattr->ia_valid & ATTR_SIZE) {
257                 CERROR("hmm, setting %*s file size to %lld\n",
258                        dentry->d_name.len, dentry->d_name.name, iattr->ia_size);
259                 LASSERT(iattr->ia_size == 0);
260 #if 0
261                 /* ATTR_SIZE would invoke truncate: clear it */
262                 iattr->ia_valid &= ~ATTR_SIZE;
263                 inode->i_size = iattr->ia_size;
264
265                 /* make sure _something_ gets set - so new inode
266                  * goes to disk (probably won't work over XFS
267                  */
268                 if (!iattr->ia_valid & ATTR_MODE) {
269                         iattr->ia_valid |= ATTR_MODE;
270                         iattr->ia_mode = inode->i_mode;
271                 }
272 #endif
273         }
274         if (inode->i_op->setattr)
275                 rc = inode->i_op->setattr(dentry, iattr);
276         else
277                 rc = inode_setattr(inode, iattr);
278
279         unlock_kernel();
280
281         return rc;
282 }
283
284 static int fsfilt_extN_set_md(struct inode *inode, void *handle,
285                               void *lmm, int lmm_size)
286 {
287         int rc;
288
289         /* Nasty hack city - store stripe MD data in the block pointers if
290          * it will fit, because putting it in an EA currently kills the MDS
291          * performance.  We'll fix this with "fast EAs" in the future.
292          */
293         if (lmm_size <= sizeof(EXTN_I(inode)->i_data) -
294                         sizeof(EXTN_I(inode)->i_data[0])) {
295                 /* XXX old_size is debugging only */
296                 int old_size = EXTN_I(inode)->i_data[0];
297                 if (old_size != 0) {
298                         LASSERT(old_size < sizeof(EXTN_I(inode)->i_data));
299                         CERROR("setting EA on %lu again... interesting\n",
300                                inode->i_ino);
301                 }
302
303                 EXTN_I(inode)->i_data[0] = cpu_to_le32(lmm_size);
304                 memcpy(&EXTN_I(inode)->i_data[1], lmm, lmm_size);
305                 mark_inode_dirty(inode);
306                 return 0;
307         } else {
308                 down(&inode->i_sem);
309                 lock_kernel();
310                 rc = extN_xattr_set(handle, inode, EXTN_XATTR_INDEX_LUSTRE,
311                                     XATTR_LUSTRE_MDS_OBJID, lmm, lmm_size, 0);
312                 unlock_kernel();
313                 up(&inode->i_sem);
314         }
315
316         if (rc)
317                 CERROR("error adding MD data to inode %lu: rc = %d\n",
318                        inode->i_ino, rc);
319         return rc;
320 }
321
322 static int fsfilt_extN_get_md(struct inode *inode, void *lmm, int lmm_size)
323 {
324         int rc;
325
326         if (EXTN_I(inode)->i_data[0]) {
327                 int size = le32_to_cpu(EXTN_I(inode)->i_data[0]);
328                 LASSERT(size < sizeof(EXTN_I(inode)->i_data));
329                 if (lmm) {
330                         if (size > lmm_size)
331                                 return -ERANGE;
332                         memcpy(lmm, &EXTN_I(inode)->i_data[1], size);
333                 }
334                 return size;
335         }
336
337         down(&inode->i_sem);
338         lock_kernel();
339         rc = extN_xattr_get(inode, EXTN_XATTR_INDEX_LUSTRE,
340                             XATTR_LUSTRE_MDS_OBJID, lmm, lmm_size);
341         unlock_kernel();
342         up(&inode->i_sem);
343
344         /* This gives us the MD size */
345         if (lmm == NULL)
346                 return (rc == -ENODATA) ? 0 : rc;
347
348         if (rc < 0) {
349                 CDEBUG(D_INFO, "error getting EA %s from inode %lu: "
350                        "rc = %d\n", XATTR_LUSTRE_MDS_OBJID, inode->i_ino, rc);
351                 memset(lmm, 0, lmm_size);
352                 return (rc == -ENODATA) ? 0 : rc;
353         }
354
355         return rc;
356 }
357
358 static ssize_t fsfilt_extN_readpage(struct file *file, char *buf, size_t count,
359                                     loff_t *off)
360 {
361         struct inode *inode = file->f_dentry->d_inode;
362         int rc = 0;
363
364         if (S_ISREG(inode->i_mode))
365                 rc = file->f_op->read(file, buf, count, off);
366         else {
367                 const int blkbits = inode->i_sb->s_blocksize_bits;
368                 const int blksize = inode->i_sb->s_blocksize;
369
370                 CDEBUG(D_EXT2, "reading "LPSZ" at dir %lu+%llu\n",
371                        count, inode->i_ino, *off);
372                 while (count > 0) {
373                         struct buffer_head *bh;
374
375                         bh = NULL;
376                         if (*off < inode->i_size) {
377                                 int err = 0;
378
379                                 bh = extN_bread(NULL, inode, *off >> blkbits,
380                                                 0, &err);
381
382                                 CDEBUG(D_EXT2, "read %u@%llu\n", blksize, *off);
383
384                                 if (bh) {
385                                         memcpy(buf, bh->b_data, blksize);
386                                         brelse(bh);
387                                 } else if (err) {
388                                         /* XXX in theory we should just fake
389                                          * this buffer and continue like ext3,
390                                          * especially if this is a partial read
391                                          */
392                                         CERROR("error read dir %lu+%llu: %d\n",
393                                                inode->i_ino, *off, err);
394                                         RETURN(err);
395                                 }
396                         }
397                         if (!bh) {
398                                 struct extN_dir_entry_2 *fake = (void *)buf;
399
400                                 CDEBUG(D_EXT2, "fake %u@%llu\n", blksize, *off);
401                                 memset(fake, 0, sizeof(*fake));
402                                 fake->rec_len = cpu_to_le32(blksize);
403                         }
404                         count -= blksize;
405                         buf += blksize;
406                         *off += blksize;
407                         rc += blksize;
408                 }
409         }
410
411         return rc;
412 }
413
414 static void fsfilt_extN_cb_func(struct journal_callback *jcb, int error)
415 {
416         struct fsfilt_cb_data *fcb = (struct fsfilt_cb_data *)jcb;
417
418         fcb->cb_func(fcb->cb_obd, fcb->cb_last_rcvd, error);
419
420         kmem_cache_free(fcb_cache, fcb);
421         --fcb_cache_count;
422 }
423
424 static int fsfilt_extN_set_last_rcvd(struct obd_device *obd, __u64 last_rcvd,
425                                      void *handle, fsfilt_cb_t cb_func)
426 {
427         struct fsfilt_cb_data *fcb;
428
429         fcb = kmem_cache_alloc(fcb_cache, GFP_NOFS);
430         if (!fcb)
431                 RETURN(-ENOMEM);
432
433         ++fcb_cache_count;
434         fcb->cb_func = cb_func;
435         fcb->cb_obd = obd;
436         fcb->cb_last_rcvd = last_rcvd;
437
438         CDEBUG(D_EXT2, "set callback for last_rcvd: "LPD64"\n", last_rcvd);
439         lock_kernel();
440         /* Note that an "incompatible pointer" warning here is OK for now */
441         journal_callback_set(handle, fsfilt_extN_cb_func,
442                              (struct journal_callback *)fcb);
443         unlock_kernel();
444
445         return 0;
446 }
447
448 static int fsfilt_extN_journal_data(struct file *filp)
449 {
450         struct inode *inode = filp->f_dentry->d_inode;
451
452         EXTN_I(inode)->i_flags |= EXTN_JOURNAL_DATA_FL;
453
454         return 0;
455 }
456
457 /*
458  * We need to hack the return value for the free inode counts because
459  * the current EA code requires one filesystem block per inode with EAs,
460  * so it is possible to run out of blocks before we run out of inodes.
461  *
462  * This can be removed when the extN EA code is fixed.
463  */
464 static int fsfilt_extN_statfs(struct super_block *sb, struct obd_statfs *osfs)
465 {
466         struct statfs sfs;
467         int rc = vfs_statfs(sb, &sfs);
468
469         if (!rc && sfs.f_bfree < sfs.f_ffree)
470                 sfs.f_ffree = sfs.f_bfree;
471
472         statfs_pack(osfs, &sfs);
473         return rc;
474 }
475
476 static int fsfilt_extN_sync(struct super_block *sb)
477 {
478         return extN_force_commit(sb);
479 }
480
481 static struct fsfilt_operations fsfilt_extN_ops = {
482         fs_type:                "extN",
483         fs_owner:               THIS_MODULE,
484         fs_start:               fsfilt_extN_start,
485         fs_brw_start:           fsfilt_extN_brw_start,
486         fs_commit:              fsfilt_extN_commit,
487         fs_setattr:             fsfilt_extN_setattr,
488         fs_set_md:              fsfilt_extN_set_md,
489         fs_get_md:              fsfilt_extN_get_md,
490         fs_readpage:            fsfilt_extN_readpage,
491         fs_journal_data:        fsfilt_extN_journal_data,
492         fs_set_last_rcvd:       fsfilt_extN_set_last_rcvd,
493         fs_statfs:              fsfilt_extN_statfs,
494         fs_sync:                fsfilt_extN_sync,
495 };
496
497 static int __init fsfilt_extN_init(void)
498 {
499         int rc;
500
501         //rc = extN_xattr_register();
502         fcb_cache = kmem_cache_create("fsfilt_extN_fcb",
503                                       sizeof(struct fsfilt_cb_data), 0,
504                                       0, NULL, NULL);
505         if (!fcb_cache) {
506                 CERROR("error allocating fsfilt journal callback cache\n");
507                 GOTO(out, rc = -ENOMEM);
508         }
509
510         rc = fsfilt_register_ops(&fsfilt_extN_ops);
511
512         if (rc)
513                 kmem_cache_destroy(fcb_cache);
514 out:
515         return rc;
516 }
517
518 static void __exit fsfilt_extN_exit(void)
519 {
520         int rc;
521
522         fsfilt_unregister_ops(&fsfilt_extN_ops);
523         rc = kmem_cache_destroy(fcb_cache);
524
525         if (rc || fcb_cache_count) {
526                 CERROR("can't free fsfilt callback cache: count %d, rc = %d\n",
527                        fcb_cache_count, rc);
528         }
529
530         //rc = extN_xattr_unregister();
531 }
532
533 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
534 MODULE_DESCRIPTION("Lustre extN Filesystem Helper v0.1");
535 MODULE_LICENSE("GPL");
536
537 module_init(fsfilt_extN_init);
538 module_exit(fsfilt_extN_exit);