Whamcloud - gitweb
b=19069 cleanup on nid_stats entry refcount
[fs/lustre-release.git] / lustre / mgs / mgs_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
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 (c) 2007, 2010, Oracle and/or its affiliates. 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/mgs/mgs_fs.c
37  *
38  * Lustre Management Server (MGS) filesystem interface code
39  *
40  * Author: Nathan Rutman <nathan@clusterfs.com>
41  */
42
43 #ifndef EXPORT_SYMTAB
44 # define EXPORT_SYMTAB
45 #endif
46 #define DEBUG_SUBSYSTEM S_MGS
47
48 #include <linux/module.h>
49 #include <linux/kmod.h>
50 #include <linux/version.h>
51 #include <linux/sched.h>
52 #include <linux/mount.h>
53 #include <obd_class.h>
54 #include <obd_support.h>
55 #include <lustre_disk.h>
56 #include <lustre_lib.h>
57 #include <lustre_fsfilt.h>
58 #include <libcfs/list.h>
59 #include "mgs_internal.h"
60
61 int mgs_export_stats_init(struct obd_device *obd, struct obd_export *exp,
62                           int reconnect, void *localdata)
63
64 {
65         lnet_nid_t *client_nid = localdata;
66         int rc, newnid;
67         ENTRY;
68
69         rc = lprocfs_exp_setup(exp, client_nid, reconnect, &newnid);
70         if (rc) {
71                 /* Mask error for already created
72                  * /proc entries */
73                 if (rc == -EALREADY)
74                         rc = 0;
75                 RETURN(rc);
76         }
77
78         if (newnid) {
79                 rc = lprocfs_nid_ldlm_stats_init(exp->exp_nid_stats);
80                 if (rc)
81                         GOTO(clean, rc);
82         }
83         RETURN(0);
84 clean:
85         lprocfs_exp_cleanup(exp);
86         return rc;
87 }
88
89 /**
90  * Add client export data to the MGS.  This data is currently NOT stored on
91  * disk in the last_rcvd file or anywhere else.  In the event of a MGS
92  * crash all connections are treated as new connections.
93  */
94 int mgs_client_add(struct obd_device *obd, struct obd_export *exp,
95                    void *localdata)
96 {
97         return 0;
98 }
99
100 /* Remove client export data from the MGS */
101 int mgs_client_free(struct obd_export *exp)
102 {
103         return 0;
104 }
105
106 /* Same as mds_fid2dentry */
107 /* Look up an entry by inode number. */
108 /* this function ONLY returns valid dget'd dentries with an initialized inode
109    or errors */
110 static struct dentry *mgs_fid2dentry(struct mgs_obd *mgs,
111                                      __u64 ino, __u32 gen)
112 {
113         char fid_name[32];
114         struct inode *inode;
115         struct dentry *result;
116         ENTRY;
117
118         CDEBUG(D_DENTRY, "--> mgs_fid2dentry: ino/gen %lu/%u, sb %p\n",
119                (unsigned long)ino, gen, mgs->mgs_sb);
120
121         if (ino == 0)
122                 RETURN(ERR_PTR(-ESTALE));
123
124         snprintf(fid_name, sizeof(fid_name), "0x%lx", (unsigned long)ino);
125
126         /* under ext3 this is neither supposed to return bad inodes nor NULL
127            inodes. */
128         result = ll_lookup_one_len(fid_name, mgs->mgs_fid_de, strlen(fid_name));
129         if (IS_ERR(result))
130                 RETURN(result);
131
132         inode = result->d_inode;
133         if (!inode)
134                 RETURN(ERR_PTR(-ENOENT));
135
136         if (inode->i_generation == 0 || inode->i_nlink == 0) {
137                 LCONSOLE_WARN("Found inode with zero generation or link -- this"
138                               " may indicate disk corruption (inode: %lu, link:"
139                               " %lu, count: %d)\n", inode->i_ino,
140                               (unsigned long)inode->i_nlink,
141                               atomic_read(&inode->i_count));
142                 l_dput(result);
143                 RETURN(ERR_PTR(-ENOENT));
144         }
145
146         if (gen && inode->i_generation != gen) {
147                 /* we didn't find the right inode.. */
148                 CDEBUG(D_INODE, "found wrong generation: inode %lu, link: %lu, "
149                        "count: %d, generation %u/%u\n", inode->i_ino,
150                        (unsigned long)inode->i_nlink,
151                        atomic_read(&inode->i_count),
152                        inode->i_generation, gen);
153                 l_dput(result);
154                 RETURN(ERR_PTR(-ENOENT));
155         }
156
157         RETURN(result);
158 }
159
160 static struct dentry *mgs_lvfs_fid2dentry(__u64 id, __u32 gen,
161                                           __u64 gr, void *data)
162 {
163         struct obd_device *obd = data;
164         return mgs_fid2dentry(&obd->u.mgs, id, gen);
165 }
166
167 struct lvfs_callback_ops mgs_lvfs_ops = {
168         l_fid2dentry:     mgs_lvfs_fid2dentry,
169 };
170
171 int mgs_fs_setup(struct obd_device *obd, struct vfsmount *mnt)
172 {
173         struct mgs_obd *mgs = &obd->u.mgs;
174         struct lvfs_run_ctxt saved;
175         struct dentry *dentry;
176         int rc;
177         ENTRY;
178
179         /* FIXME what's this?  Do I need it? */
180         rc = cfs_cleanup_group_info();
181         if (rc)
182                 RETURN(rc);
183
184         mgs->mgs_vfsmnt = mnt;
185         mgs->mgs_sb = mnt->mnt_root->d_inode->i_sb;
186
187         fsfilt_setup(obd, mgs->mgs_sb);
188
189         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
190         obd->obd_lvfs_ctxt.pwdmnt = mnt;
191         obd->obd_lvfs_ctxt.pwd = mnt->mnt_root;
192         obd->obd_lvfs_ctxt.fs = get_ds();
193         obd->obd_lvfs_ctxt.cb_ops = mgs_lvfs_ops;
194
195         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
196
197         /* Setup the configs dir */
198         dentry = simple_mkdir(current->fs->pwd, mnt, MOUNT_CONFIGS_DIR, 0777, 1);
199         if (IS_ERR(dentry)) {
200                 rc = PTR_ERR(dentry);
201                 CERROR("cannot create %s directory: rc = %d\n",
202                        MOUNT_CONFIGS_DIR, rc);
203                 GOTO(err_pop, rc);
204         }
205         mgs->mgs_configs_dir = dentry;
206
207         /* Need the iopen dir for fid2dentry, required by
208            LLOG_ORIGIN_HANDLE_READ_HEADER */
209         dentry = lookup_one_len("__iopen__", current->fs->pwd,
210                                 strlen("__iopen__"));
211         if (IS_ERR(dentry)) {
212                 rc = PTR_ERR(dentry);
213                 CERROR("cannot lookup __iopen__ directory: rc = %d\n", rc);
214                 GOTO(err_configs, rc);
215         }
216         mgs->mgs_fid_de = dentry;
217         if (!dentry->d_inode || is_bad_inode(dentry->d_inode)) {
218                 rc = -ENOENT;
219                 CERROR("__iopen__ directory has no inode? rc = %d\n", rc);
220                 GOTO(err_fid, rc);
221         }
222
223 err_pop:
224         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
225         return rc;
226 err_fid:
227         dput(mgs->mgs_fid_de);
228 err_configs:
229         dput(mgs->mgs_configs_dir);
230         goto err_pop;
231 }
232
233 int mgs_fs_cleanup(struct obd_device *obd)
234 {
235         struct mgs_obd *mgs = &obd->u.mgs;
236         struct lvfs_run_ctxt saved;
237         int rc = 0;
238
239         class_disconnect_exports(obd); /* cleans up client info too */
240
241         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
242
243         if (mgs->mgs_configs_dir) {
244                 l_dput(mgs->mgs_configs_dir);
245                 mgs->mgs_configs_dir = NULL;
246         }
247
248         dput(mgs->mgs_fid_de);
249         shrink_dcache_sb(mgs->mgs_sb);
250
251         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
252
253         return rc;
254 }