Whamcloud - gitweb
Fix circutious xattr_set.
[fs/lustre-release.git] / lustre / mds / mds_extN.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  lustre/mds/mds_extN.c
5  *  Lustre Metadata Server (mds) journal abstraction routines
6  *
7  *  Copyright (c) 2002 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_MDS
27
28 #include <linux/fs.h>
29 #include <linux/jbd.h>
30 #include <linux/slab.h>
31 #include <linux/extN_fs.h>
32 #include <linux/extN_jbd.h>
33 #include <linux/extN_xattr.h>
34 #include <linux/kp30.h>
35 #include <linux/lustre_mds.h>
36 #include <linux/obd.h>
37 #include <linux/module.h>
38 #include <linux/obd_lov.h>
39
40 static struct mds_fs_operations mds_extN_fs_ops;
41 static kmem_cache_t *jcb_cache;
42 static int jcb_cache_count;
43
44 struct mds_cb_data {
45         struct journal_callback cb_jcb;
46         struct mds_obd *cb_mds;
47         __u64 cb_last_rcvd;
48 };
49
50 #define EXTN_XATTR_INDEX_LUSTRE         5
51 #define XATTR_LUSTRE_MDS_OBJID          "system.lustre_mds_objid"
52
53 #define XATTR_MDS_MO_MAGIC              0xEA0BD047
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 *mds_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 MDS_FSOP_RMDIR:
69         case MDS_FSOP_UNLINK:
70                 nblocks += EXTN_DELETE_TRANS_BLOCKS;
71                 break;
72         case MDS_FSOP_RENAME:
73                 /* We may be modifying two directories */
74                 nblocks += EXTN_DATA_TRANS_BLOCKS;
75         case MDS_FSOP_SYMLINK:
76                 /* Possible new block + block bitmap + GDT for long symlink */
77                 nblocks += 3;
78         case MDS_FSOP_CREATE:
79         case MDS_FSOP_MKDIR:
80         case MDS_FSOP_MKNOD:
81                 /* New inode + block bitmap + GDT for new file */
82                 nblocks += 3;
83         case MDS_FSOP_LINK:
84                 /* Change parent directory */
85                 nblocks += EXTN_INDEX_EXTRA_TRANS_BLOCKS+EXTN_DATA_TRANS_BLOCKS;
86                 break;
87         case MDS_FSOP_SETATTR:
88                 /* Setattr on inode */
89                 nblocks += 1;
90                 break;
91         default: CERROR("unknown transaction start op %d\n", op);
92                  LBUG();
93         }
94
95         //lock_kernel();
96         handle = journal_start(EXTN_JOURNAL(inode), nblocks);
97         //if (IS_ERR(handle))
98         //        unlock_kernel();
99
100         return handle;
101 }
102
103 static int mds_extN_commit(struct inode *inode, void *handle)
104 {
105         int rc = journal_stop((handle_t *)handle);
106
107         //unlock_kernel();
108
109         return rc;
110 }
111
112 /* Assumes BKL is held */
113 static int mds_extN_setattr(struct dentry *dentry, void *handle,
114                             struct iattr *iattr)
115 {
116         struct inode *inode = dentry->d_inode;
117
118         if (inode->i_op->setattr)
119                 return inode->i_op->setattr(dentry, iattr);
120         else
121                 return inode_setattr(inode, iattr);
122 }
123
124 static int mds_extN_set_md(struct inode *inode, void *handle,
125                            struct lov_mds_md *lmm)
126 {
127         int rc;
128
129         down(&inode->i_sem);
130         lock_kernel();
131         rc = extN_xattr_set(handle, inode, EXTN_XATTR_INDEX_LUSTRE,
132                             XATTR_LUSTRE_MDS_OBJID, lmm,
133                             lmm ? lmm->lmm_easize : 0, 0);
134         unlock_kernel();
135         up(&inode->i_sem);
136
137         if (rc) {
138                 CERROR("error adding objectid "LPX64" to inode %ld: %d\n",
139                        lmm->lmm_object_id, inode->i_ino, rc);
140                 if (rc != -ENOSPC) LBUG();
141         }
142         return rc;
143 }
144
145 static int mds_extN_get_md(struct inode *inode, struct lov_mds_md *lmm)
146 {
147         int rc;
148         int size = lmm->lmm_easize;
149
150         down(&inode->i_sem);
151         lock_kernel();
152         rc = extN_xattr_get(inode, EXTN_XATTR_INDEX_LUSTRE,
153                             XATTR_LUSTRE_MDS_OBJID, lmm, size);
154         unlock_kernel();
155         up(&inode->i_sem);
156
157         /* This gives us the MD size */
158         if (lmm == NULL)
159                 return rc;
160
161         if (rc < 0) {
162                 CDEBUG(D_INFO, "error getting EA %s from MDS inode %ld: "
163                        "rc = %d\n", XATTR_LUSTRE_MDS_OBJID, inode->i_ino, rc);
164                 memset(lmm, 0, size);
165                 return rc;
166         }
167
168         /* This field is byteswapped because it appears in the
169          * catalogue.  All others are opaque to the MDS */
170         lmm->lmm_object_id = le64_to_cpu(lmm->lmm_object_id);
171
172         return rc;
173 }
174
175 static ssize_t mds_extN_readpage(struct file *file, char *buf, size_t count,
176                                  loff_t *offset)
177 {
178         struct inode *inode = file->f_dentry->d_inode;
179         int rc = 0;
180
181         if (S_ISREG(inode->i_mode))
182                 rc = file->f_op->read(file, buf, count, offset);
183         else {
184                 struct buffer_head *bh;
185
186                 /* FIXME: this assumes the blocksize == count, but the calling
187                  *        function will detect this as an error for now */
188                 bh = extN_bread(NULL, inode,
189                                 *offset >> inode->i_sb->s_blocksize_bits,
190                                 0, &rc);
191
192                 if (bh) {
193                         memcpy(buf, bh->b_data, inode->i_blksize);
194                         brelse(bh);
195                         rc = inode->i_blksize;
196                 }
197         }
198
199         return rc;
200 }
201
202 static void mds_extN_delete_inode(struct inode *inode)
203 {
204         if (S_ISREG(inode->i_mode)) {
205                 void *handle = mds_extN_start(inode, MDS_FSOP_UNLINK);
206
207                 if (IS_ERR(handle)) {
208                         CERROR("unable to start transaction");
209                         EXIT;
210                         return;
211                 }
212                 if (mds_extN_set_md(inode, handle, NULL))
213                         CERROR("error clearing obdo on %ld\n", inode->i_ino);
214
215                 if (mds_extN_fs_ops.cl_delete_inode)
216                         mds_extN_fs_ops.cl_delete_inode(inode);
217
218                 if (mds_extN_commit(inode, handle))
219                         CERROR("error closing handle on %ld\n", inode->i_ino);
220         } else
221                 mds_extN_fs_ops.cl_delete_inode(inode);
222 }
223
224 static void mds_extN_callback_status(struct journal_callback *jcb, int error)
225 {
226         struct mds_cb_data *mcb = (struct mds_cb_data *)jcb;
227
228         CDEBUG(D_EXT2, "got callback for last_rcvd "LPD64": rc = %d\n",
229                mcb->cb_last_rcvd, error);
230         if (!error && mcb->cb_last_rcvd > mcb->cb_mds->mds_last_committed)
231                 mcb->cb_mds->mds_last_committed = mcb->cb_last_rcvd;
232
233         kmem_cache_free(jcb_cache, jcb);
234         --jcb_cache_count;
235 }
236
237 static int mds_extN_set_last_rcvd(struct mds_obd *mds, void *handle)
238 {
239         struct mds_cb_data *mcb;
240
241         mcb = kmem_cache_alloc(jcb_cache, GFP_NOFS);
242         if (!mcb)
243                 RETURN(-ENOMEM);
244
245         ++jcb_cache_count;
246         mcb->cb_mds = mds;
247         mcb->cb_last_rcvd = mds->mds_last_rcvd;
248
249 #ifdef HAVE_JOURNAL_CALLBACK_STATUS
250         CDEBUG(D_EXT2, "set callback for last_rcvd: %Ld\n",
251                (unsigned long long)mcb->cb_last_rcvd);
252         /* Note that an "incompatible pointer warning here is OK for now */
253         journal_callback_set(handle, mds_extN_callback_status,
254                              (struct journal_callback *)mcb);
255 #else
256 #warning "no journal callback kernel patch, faking it..."
257         {
258         static long next = 0;
259
260         if (time_after(jiffies, next)) {
261                 CERROR("no journal callback kernel patch, faking it...\n");
262                 next = jiffies + 300 * HZ;
263         }
264         }
265         mds_extN_callback_status((struct journal_callback *)mcb, 0);
266 #endif
267
268         return 0;
269 }
270
271 static int mds_extN_journal_data(struct file *filp)
272 {
273         struct inode *inode = filp->f_dentry->d_inode;
274
275         EXTN_I(inode)->i_flags |= EXTN_JOURNAL_DATA_FL;
276
277         return 0;
278 }
279
280 /*
281  * We need to hack the return value for the free inode counts because
282  * the current EA code requires one filesystem block per inode with EAs,
283  * so it is possible to run out of blocks before we run out of inodes.
284  *
285  * This can be removed when the extN EA code is fixed.
286  */
287 static int mds_extN_statfs(struct super_block *sb, struct statfs *sfs)
288 {
289         int rc = vfs_statfs(sb, sfs);
290
291         if (!rc && sfs->f_bfree < sfs->f_ffree)
292                 sfs->f_ffree = sfs->f_bfree;
293
294         return rc;
295 }
296
297 static struct mds_fs_operations mds_extN_fs_ops = {
298         fs_owner:               THIS_MODULE,
299         fs_start:               mds_extN_start,
300         fs_commit:              mds_extN_commit,
301         fs_setattr:             mds_extN_setattr,
302         fs_set_md:              mds_extN_set_md,
303         fs_get_md:              mds_extN_get_md,
304         fs_readpage:            mds_extN_readpage,
305         fs_delete_inode:        mds_extN_delete_inode,
306         cl_delete_inode:        clear_inode,
307         fs_journal_data:        mds_extN_journal_data,
308         fs_set_last_rcvd:       mds_extN_set_last_rcvd,
309         fs_statfs:              mds_extN_statfs,
310 };
311
312 static int __init mds_extN_init(void)
313 {
314         int rc;
315
316         //rc = extN_xattr_register();
317         jcb_cache = kmem_cache_create("mds_extN_jcb",
318                                       sizeof(struct mds_cb_data), 0,
319                                       0, NULL, NULL);
320         if (!jcb_cache) {
321                 CERROR("error allocating MDS journal callback cache\n");
322                 GOTO(out, rc = -ENOMEM);
323         }
324         rc = mds_register_fs_type(&mds_extN_fs_ops, "extN");
325
326         if (rc)
327                 kmem_cache_destroy(jcb_cache);
328 out:
329         return rc;
330 }
331
332 static void __exit mds_extN_exit(void)
333 {
334         int rc;
335
336         mds_unregister_fs_type("extN");
337         rc = kmem_cache_destroy(jcb_cache);
338
339         if (rc || jcb_cache_count) {
340                 CERROR("can't free MDS callback cache: count %d, rc = %d\n",
341                        jcb_cache_count, rc);
342         }
343
344         //rc = extN_xattr_unregister();
345 }
346
347 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
348 MODULE_DESCRIPTION("Lustre MDS extN Filesystem Helper v0.1");
349 MODULE_LICENSE("GPL");
350
351 module_init(mds_extN_init);
352 module_exit(mds_extN_exit);