1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
5 * Lustre Management Server (MGS) filesystem interface code
7 * Copyright (C) 2006 Cluster File Systems, Inc.
8 * Author: Nathan Rutman <nathan@clusterfs.com>
10 * This file is part of Lustre, http://www.lustre.org.
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.
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.
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.
26 # define EXPORT_SYMTAB
28 #define DEBUG_SUBSYSTEM S_MGS
30 #include <linux/module.h>
31 #include <linux/kmod.h>
32 #include <linux/version.h>
33 #include <linux/sched.h>
34 #include <linux/mount.h>
35 #include <obd_class.h>
36 #include <obd_support.h>
37 #include <lustre_disk.h>
38 #include <lustre_lib.h>
39 #include <lustre_fsfilt.h>
40 #include <libcfs/list.h>
41 #include "mgs_internal.h"
43 /* Same as mds_fid2dentry */
44 /* Look up an entry by inode number. */
45 /* this function ONLY returns valid dget'd dentries with an initialized inode
47 static struct dentry *mgs_fid2dentry(struct mgs_obd *mgs,
52 struct dentry *result;
55 CDEBUG(D_DENTRY, "--> mgs_fid2dentry: ino/gen %lu/%u, sb %p\n",
56 (unsigned long)ino, gen, mgs->mgs_sb);
59 RETURN(ERR_PTR(-ESTALE));
61 snprintf(fid_name, sizeof(fid_name), "0x%lx", (unsigned long)ino);
63 /* under ext3 this is neither supposed to return bad inodes nor NULL
65 result = ll_lookup_one_len(fid_name, mgs->mgs_fid_de, strlen(fid_name));
69 inode = result->d_inode;
71 RETURN(ERR_PTR(-ENOENT));
73 if (inode->i_generation == 0 || inode->i_nlink == 0) {
74 LCONSOLE_WARN("Found inode with zero generation or link -- this"
75 " may indicate disk corruption (inode: %lu, link:"
76 " %lu, count: %d)\n", inode->i_ino,
77 (unsigned long)inode->i_nlink,
78 atomic_read(&inode->i_count));
80 RETURN(ERR_PTR(-ENOENT));
83 if (gen && inode->i_generation != gen) {
84 /* we didn't find the right inode.. */
85 CDEBUG(D_INODE, "found wrong generation: inode %lu, link: %lu, "
86 "count: %d, generation %u/%u\n", inode->i_ino,
87 (unsigned long)inode->i_nlink, atomic_read(&inode->i_count),
88 inode->i_generation, gen);
90 RETURN(ERR_PTR(-ENOENT));
96 static struct dentry *mgs_lvfs_fid2dentry(__u64 id, __u32 gen,
99 struct obd_device *obd = data;
100 return mgs_fid2dentry(&obd->u.mgs, id, gen);
103 struct lvfs_callback_ops mgs_lvfs_ops = {
104 l_fid2dentry: mgs_lvfs_fid2dentry,
107 int mgs_fs_setup(struct obd_device *obd, struct vfsmount *mnt)
109 struct mgs_obd *mgs = &obd->u.mgs;
110 struct lvfs_run_ctxt saved;
111 struct dentry *dentry;
115 /* FIXME what's this? Do I need it? */
116 rc = cleanup_group_info();
120 mgs->mgs_vfsmnt = mnt;
121 mgs->mgs_sb = mnt->mnt_root->d_inode->i_sb;
123 fsfilt_setup(obd, mgs->mgs_sb);
125 OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
126 obd->obd_lvfs_ctxt.pwdmnt = mnt;
127 obd->obd_lvfs_ctxt.pwd = mnt->mnt_root;
128 obd->obd_lvfs_ctxt.fs = get_ds();
129 obd->obd_lvfs_ctxt.cb_ops = mgs_lvfs_ops;
131 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
133 /* Setup the configs dir */
134 dentry = simple_mkdir(current->fs->pwd, MOUNT_CONFIGS_DIR, 0777, 1);
135 if (IS_ERR(dentry)) {
136 rc = PTR_ERR(dentry);
137 CERROR("cannot create %s directory: rc = %d\n",
138 MOUNT_CONFIGS_DIR, rc);
141 mgs->mgs_configs_dir = dentry;
143 /* Need the iopen dir for fid2dentry, required by
144 LLOG_ORIGIN_HANDLE_READ_HEADER */
145 dentry = lookup_one_len("__iopen__", current->fs->pwd,
146 strlen("__iopen__"));
147 if (IS_ERR(dentry)) {
148 rc = PTR_ERR(dentry);
149 CERROR("cannot lookup __iopen__ directory: rc = %d\n", rc);
150 GOTO(err_configs, rc);
152 mgs->mgs_fid_de = dentry;
153 if (!dentry->d_inode || is_bad_inode(dentry->d_inode)) {
155 CERROR("__iopen__ directory has no inode? rc = %d\n", rc);
160 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
163 dput(mgs->mgs_fid_de);
165 dput(mgs->mgs_configs_dir);
169 int mgs_fs_cleanup(struct obd_device *obd)
171 struct mgs_obd *mgs = &obd->u.mgs;
172 struct lvfs_run_ctxt saved;
175 class_disconnect_exports(obd); /* cleans up client info too */
177 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
179 if (mgs->mgs_configs_dir) {
180 /*CERROR("configs dir dcount=%d\n",
181 atomic_read(&mgs->mgs_configs_dir->d_count));*/
182 l_dput(mgs->mgs_configs_dir);
183 mgs->mgs_configs_dir = NULL;
186 shrink_dcache_parent(mgs->mgs_fid_de);
187 /*CERROR("fid dir dcount=%d\n",
188 atomic_read(&mgs->mgs_fid_de->d_count));*/
189 dput(mgs->mgs_fid_de);
191 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);