Whamcloud - gitweb
Branch HEAD
[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  *  lustre/mgs/mgs_fs.c
5  *  Lustre Management Server (MGS) filesystem interface code
6  *
7  *  Copyright (C) 2006 Cluster File Systems, Inc.
8  *   Author: Nathan Rutman <nathan@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 #ifndef EXPORT_SYMTAB
26 # define EXPORT_SYMTAB
27 #endif
28 #define DEBUG_SUBSYSTEM S_MGS
29
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"
42
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
46    or errors */
47 static struct dentry *mgs_fid2dentry(struct mgs_obd *mgs,
48                                      __u64 ino, __u32 gen)
49 {
50         char fid_name[32];
51         struct inode *inode;
52         struct dentry *result;
53         ENTRY;
54
55         CDEBUG(D_DENTRY, "--> mgs_fid2dentry: ino/gen %lu/%u, sb %p\n",
56                (unsigned long)ino, gen, mgs->mgs_sb);
57
58         if (ino == 0)
59                 RETURN(ERR_PTR(-ESTALE));
60         
61         snprintf(fid_name, sizeof(fid_name), "0x%lx", (unsigned long)ino);
62         
63         /* under ext3 this is neither supposed to return bad inodes nor NULL
64            inodes. */
65         result = ll_lookup_one_len(fid_name, mgs->mgs_fid_de, strlen(fid_name));
66         if (IS_ERR(result))
67                 RETURN(result);
68
69         inode = result->d_inode;
70         if (!inode)
71                 RETURN(ERR_PTR(-ENOENT));
72
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));
79                 l_dput(result);
80                 RETURN(ERR_PTR(-ENOENT));
81         }
82
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);
89                 l_dput(result);
90                 RETURN(ERR_PTR(-ENOENT));
91         }
92
93         RETURN(result);
94 }
95
96 static struct dentry *mgs_lvfs_fid2dentry(__u64 id, __u32 gen,
97                                           __u64 gr, void *data)
98 {
99         struct obd_device *obd = data;
100         return mgs_fid2dentry(&obd->u.mgs, id, gen);
101 }
102
103 struct lvfs_callback_ops mgs_lvfs_ops = {
104         l_fid2dentry:     mgs_lvfs_fid2dentry,
105 };
106
107 int mgs_fs_setup(struct obd_device *obd, struct vfsmount *mnt)
108 {
109         struct mgs_obd *mgs = &obd->u.mgs;
110         struct lvfs_run_ctxt saved;
111         struct dentry *dentry;
112         int rc;
113         ENTRY;
114
115         /* FIXME what's this?  Do I need it? */
116         rc = cleanup_group_info();
117         if (rc)
118                 RETURN(rc);
119
120         mgs->mgs_vfsmnt = mnt;
121         mgs->mgs_sb = mnt->mnt_root->d_inode->i_sb;
122
123         fsfilt_setup(obd, mgs->mgs_sb);
124
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;
130
131         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
132
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);
139                 GOTO(err_pop, rc);
140         }
141         mgs->mgs_configs_dir = dentry;
142
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);
151         }
152         mgs->mgs_fid_de = dentry;
153         if (!dentry->d_inode || is_bad_inode(dentry->d_inode)) {
154                 rc = -ENOENT;
155                 CERROR("__iopen__ directory has no inode? rc = %d\n", rc);
156                 GOTO(err_fid, rc);
157         }
158
159 err_pop:
160         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
161         return rc;
162 err_fid:
163         dput(mgs->mgs_fid_de);
164 err_configs:
165         dput(mgs->mgs_configs_dir);
166         goto err_pop;
167 }
168
169 int mgs_fs_cleanup(struct obd_device *obd)
170 {
171         struct mgs_obd *mgs = &obd->u.mgs;
172         struct lvfs_run_ctxt saved;
173         int rc = 0;
174
175         class_disconnect_exports(obd); /* cleans up client info too */
176
177         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
178
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;
184         }
185
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);
190
191         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
192
193         return rc;
194 }