Whamcloud - gitweb
b=16098
[fs/lustre-release.git] / lustre / mds / mds_fs.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see [sun.com URL with a
20  * copy of GPLv2].
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/mds/mds_fs.c
37  *
38  * Lustre Metadata Server (MDS) filesystem interface code
39  *
40  * Author: Andreas Dilger <adilger@clusterfs.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_MDS
44
45 #include <linux/module.h>
46 #include <linux/kmod.h>
47 #include <linux/version.h>
48 #include <linux/sched.h>
49 #include <lustre_quota.h>
50 #include <linux/mount.h>
51 #include <lustre_mds.h>
52 #include <obd_class.h>
53 #include <obd_support.h>
54 #include <lustre_lib.h>
55 #include <lustre_fsfilt.h>
56 #include <lustre_disk.h>
57 #include <libcfs/list.h>
58
59 #include "mds_internal.h"
60
61
62 /* Creates an object with the same name as its fid.  Because this is not at all
63  * performance sensitive, it is accomplished by creating a file, checking the
64  * fid, and renaming it. */
65 int mds_obd_create(struct obd_export *exp, struct obdo *oa,
66                    struct lov_stripe_md **ea, struct obd_trans_info *oti)
67 {
68         struct mds_obd *mds = &exp->exp_obd->u.mds;
69         struct inode *parent_inode = mds->mds_objects_dir->d_inode;
70         unsigned int tmpname = ll_rand();
71         struct file *filp;
72         struct dentry *new_child;
73         struct lvfs_run_ctxt saved;
74         char fidname[LL_FID_NAMELEN];
75         void *handle;
76         struct lvfs_ucred ucred = { 0 };
77         int rc = 0, err, namelen;
78         ENTRY;
79
80         /* the owner of object file should always be root */
81         cap_raise(ucred.luc_cap, CAP_SYS_RESOURCE);
82
83         if (strncmp(exp->exp_obd->obd_name, MDD_OBD_NAME,
84                                    strlen(MDD_OBD_NAME))) {
85                 RETURN(0);
86         }
87         
88         push_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, &ucred);
89
90         sprintf(fidname, "OBJECTS/%u.%u", tmpname, current->pid);
91         filp = filp_open(fidname, O_CREAT | O_EXCL, 0666);
92         if (IS_ERR(filp)) {
93                 rc = PTR_ERR(filp);
94                 if (rc == -EEXIST) {
95                         CERROR("impossible object name collision %u\n",
96                                tmpname);
97                         LBUG();
98                 }
99                 CERROR("error creating tmp object %u: rc %d\n", tmpname, rc);
100                 GOTO(out_pop, rc);
101         }
102
103         LASSERT(mds->mds_objects_dir == filp->f_dentry->d_parent);
104
105         oa->o_id = filp->f_dentry->d_inode->i_ino;
106         oa->o_generation = filp->f_dentry->d_inode->i_generation;
107         namelen = ll_fid2str(fidname, oa->o_id, oa->o_generation);
108
109         LOCK_INODE_MUTEX(parent_inode);
110         new_child = lookup_one_len(fidname, mds->mds_objects_dir, namelen);
111
112         if (IS_ERR(new_child)) {
113                 CERROR("getting neg dentry for obj rename: %d\n", rc);
114                 GOTO(out_close, rc = PTR_ERR(new_child));
115         }
116         if (new_child->d_inode != NULL) {
117                 CERROR("impossible non-negative obj dentry " LPU64":%u!\n",
118                        oa->o_id, oa->o_generation);
119                 LBUG();
120         }
121
122         handle = fsfilt_start(exp->exp_obd, mds->mds_objects_dir->d_inode,
123                               FSFILT_OP_RENAME, NULL);
124         if (IS_ERR(handle))
125                 GOTO(out_dput, rc = PTR_ERR(handle));
126
127         lock_kernel();
128         rc = vfs_rename(mds->mds_objects_dir->d_inode, filp->f_dentry,
129                         mds->mds_objects_dir->d_inode, new_child);
130         unlock_kernel();
131         if (rc)
132                 CERROR("error renaming new object "LPU64":%u: rc %d\n",
133                        oa->o_id, oa->o_generation, rc);
134
135         err = fsfilt_commit(exp->exp_obd, mds->mds_objects_dir->d_inode,
136                             handle, 0);
137         if (!err) {
138                 oa->o_gr = FILTER_GROUP_MDS0 + mds->mds_id;
139                 oa->o_valid |= OBD_MD_FLID | OBD_MD_FLGENER | OBD_MD_FLGROUP;
140         } else if (!rc)
141                 rc = err;
142 out_dput:
143         dput(new_child);
144 out_close:
145         UNLOCK_INODE_MUTEX(parent_inode);
146         err = filp_close(filp, 0);
147         if (err) {
148                 CERROR("closing tmpfile %u: rc %d\n", tmpname, rc);
149                 if (!rc)
150                         rc = err;
151         }
152 out_pop:
153         pop_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, &ucred);
154         RETURN(rc);
155 }
156
157 int mds_obd_destroy(struct obd_export *exp, struct obdo *oa,
158                     struct lov_stripe_md *ea, struct obd_trans_info *oti,
159                     struct obd_export *md_exp)
160 {
161         struct mds_obd *mds = &exp->exp_obd->u.mds;
162         struct inode *parent_inode = mds->mds_objects_dir->d_inode;
163         struct obd_device *obd = exp->exp_obd;
164         struct lvfs_run_ctxt saved;
165         struct lvfs_ucred ucred = { 0 };
166         char fidname[LL_FID_NAMELEN];
167         struct inode *inode = NULL;
168         struct dentry *de;
169         void *handle;
170         int err, namelen, rc = 0;
171         ENTRY;
172
173         cap_raise(ucred.luc_cap, CAP_SYS_RESOURCE);
174         push_ctxt(&saved, &obd->obd_lvfs_ctxt, &ucred);
175
176         namelen = ll_fid2str(fidname, oa->o_id, oa->o_generation);
177
178         LOCK_INODE_MUTEX(parent_inode);
179         de = lookup_one_len(fidname, mds->mds_objects_dir, namelen);
180         if (IS_ERR(de)) {
181                 rc = IS_ERR(de);
182                 de = NULL;
183                 CERROR("error looking up object "LPU64" %s: rc %d\n",
184                        oa->o_id, fidname, rc);
185                 GOTO(out_dput, rc);
186         }
187         if (de->d_inode == NULL) {
188                 CERROR("destroying non-existent object "LPU64" %s: rc %d\n",
189                        oa->o_id, fidname, rc);
190                 GOTO(out_dput, rc = -ENOENT);
191         }
192
193         /* Stripe count is 1 here since this is some MDS specific stuff
194            that is unlinked, not spanned across multiple OSTs */
195         handle = fsfilt_start_log(obd, mds->mds_objects_dir->d_inode,
196                                   FSFILT_OP_UNLINK, oti, 1);
197
198         if (IS_ERR(handle))
199                 GOTO(out_dput, rc = PTR_ERR(handle));
200
201         /* take a reference to protect inode from truncation within
202            vfs_unlink() context. bug 10409 */
203         inode = de->d_inode;
204         atomic_inc(&inode->i_count);
205         rc = vfs_unlink(mds->mds_objects_dir->d_inode, de);
206         if (rc)
207                 CERROR("error destroying object "LPU64":%u: rc %d\n",
208                        oa->o_id, oa->o_generation, rc);
209
210         err = fsfilt_commit(obd, mds->mds_objects_dir->d_inode, handle, 0);
211         if (err && !rc)
212                 rc = err;
213 out_dput:
214         if (de != NULL)
215                 l_dput(de);
216         UNLOCK_INODE_MUTEX(parent_inode);
217
218         if (inode)
219                 iput(inode);
220
221         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, &ucred);
222         RETURN(rc);
223 }