1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
6 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
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
29 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
30 * Use is subject to license terms.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
38 * Lustre Management Server (MGS) filesystem interface code
40 * Author: Nathan Rutman <nathan@clusterfs.com>
44 # define EXPORT_SYMTAB
46 #define DEBUG_SUBSYSTEM S_MGS
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"
62 int mgs_export_stats_init(struct obd_device *obd,
63 struct obd_export *exp,
66 lnet_nid_t *client_nid = localdata;
67 int rc, num_stats, newnid = 0;
69 rc = lprocfs_exp_setup(exp, client_nid, &newnid);
71 /* Mask error for already created
79 struct nid_stat *tmp = exp->exp_nid_stats;
81 num_stats = (sizeof(*obd->obd_type->typ_ops) / sizeof(void *)) +
83 tmp->nid_stats = lprocfs_alloc_stats(num_stats,
84 LPROCFS_STATS_FLAG_NOPERCPU);
85 if (tmp->nid_stats == NULL)
88 lprocfs_init_ops_stats(LPROC_MGS_LAST, tmp->nid_stats);
89 mgs_stats_counter_init(tmp->nid_stats);
91 rc = lprocfs_nid_ldlm_stats_init(tmp);
99 /* Add client export data to the MGS. This data is currently NOT stored on
100 * disk in the last_rcvd file or anywhere else. In the event of a MGS
101 * crash all connections are treated as new connections.
103 int mgs_client_add(struct obd_device *obd,
104 struct obd_export *exp,
110 /* Remove client export data from the MGS */
111 int mgs_client_free(struct obd_export *exp)
116 /* Same as mds_fid2dentry */
117 /* Look up an entry by inode number. */
118 /* this function ONLY returns valid dget'd dentries with an initialized inode
120 static struct dentry *mgs_fid2dentry(struct mgs_obd *mgs, struct ll_fid *fid)
123 unsigned long ino = fid->id;
124 __u32 generation = fid->generation;
126 struct dentry *result;
128 CDEBUG(D_DENTRY, "--> mgs_fid2dentry: ino/gen %lu/%u, sb %p\n",
129 ino, generation, mgs->mgs_sb);
132 RETURN(ERR_PTR(-ESTALE));
134 snprintf(fid_name, sizeof(fid_name), "0x%lx", ino);
136 /* under ext3 this is neither supposed to return bad inodes
138 result = ll_lookup_one_len(fid_name, mgs->mgs_fid_de, strlen(fid_name));
142 inode = result->d_inode;
144 RETURN(ERR_PTR(-ENOENT));
146 if (inode->i_generation == 0 || inode->i_nlink == 0) {
147 LCONSOLE_WARN("Found inode with zero generation or link -- this"
148 " may indicate disk corruption (inode: %lu, link:"
149 " %lu, count: %d)\n", inode->i_ino,
150 (unsigned long)inode->i_nlink,
151 atomic_read(&inode->i_count));
153 RETURN(ERR_PTR(-ENOENT));
156 if (generation && inode->i_generation != generation) {
157 /* we didn't find the right inode.. */
158 CDEBUG(D_INODE, "found wrong generation: inode %lu, link: %lu, "
159 "count: %d, generation %u/%u\n", inode->i_ino,
160 (unsigned long)inode->i_nlink,
161 atomic_read(&inode->i_count), inode->i_generation,
164 RETURN(ERR_PTR(-ENOENT));
170 static struct dentry *mgs_lvfs_fid2dentry(__u64 id, __u32 gen, __u64 gr,
173 struct obd_device *obd = data;
176 fid.generation = gen;
177 return mgs_fid2dentry(&obd->u.mgs, &fid);
180 struct lvfs_callback_ops mgs_lvfs_ops = {
181 l_fid2dentry: mgs_lvfs_fid2dentry,
184 int mgs_fs_setup(struct obd_device *obd, struct vfsmount *mnt)
186 struct mgs_obd *mgs = &obd->u.mgs;
187 struct lvfs_run_ctxt saved;
188 struct dentry *dentry;
192 /* FIXME what's this? Do I need it? */
193 rc = cleanup_group_info();
197 mgs->mgs_vfsmnt = mnt;
198 mgs->mgs_sb = mnt->mnt_root->d_inode->i_sb;
200 rc = fsfilt_setup(obd, mgs->mgs_sb);
202 CWARN("fail to set fsfilter options\n");
204 OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
205 obd->obd_lvfs_ctxt.pwdmnt = mnt;
206 obd->obd_lvfs_ctxt.pwd = mnt->mnt_root;
207 obd->obd_lvfs_ctxt.fs = get_ds();
208 obd->obd_lvfs_ctxt.cb_ops = mgs_lvfs_ops;
210 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
212 /* Setup the configs dir */
213 dentry = simple_mkdir(cfs_fs_pwd(current->fs), mnt, MOUNT_CONFIGS_DIR, 0777, 1);
214 if (IS_ERR(dentry)) {
215 rc = PTR_ERR(dentry);
216 CERROR("cannot create %s directory: rc = %d\n",
217 MOUNT_CONFIGS_DIR, rc);
220 mgs->mgs_configs_dir = dentry;
222 /* Need the iopen dir for fid2dentry, required by
223 LLOG_ORIGIN_HANDLE_READ_HEADER */
224 dentry = ll_lookup_one_len("__iopen__", cfs_fs_pwd(current->fs),
225 strlen("__iopen__"));
226 if (IS_ERR(dentry)) {
227 rc = PTR_ERR(dentry);
228 CERROR("cannot lookup __iopen__ directory: rc = %d\n", rc);
229 GOTO(err_configs, rc);
231 mgs->mgs_fid_de = dentry;
232 if (!dentry->d_inode || is_bad_inode(dentry->d_inode)) {
234 CERROR("__iopen__ directory has no inode? rc = %d\n", rc);
239 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
242 dput(mgs->mgs_fid_de);
244 dput(mgs->mgs_configs_dir);
248 int mgs_fs_cleanup(struct obd_device *obd)
250 struct mgs_obd *mgs = &obd->u.mgs;
251 struct lvfs_run_ctxt saved;
254 class_disconnect_exports(obd); /* cleans up client info too */
256 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
258 if (mgs->mgs_configs_dir) {
259 l_dput(mgs->mgs_configs_dir);
260 mgs->mgs_configs_dir = NULL;
263 dput(mgs->mgs_fid_de);
264 shrink_dcache_sb(mgs->mgs_sb);
266 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);