Whamcloud - gitweb
b=16098
[fs/lustre-release.git] / lustre / mds / handler.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  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/handler.c
37  *
38  * Author: Peter Braam <braam@clusterfs.com>
39  * Author: Andreas Dilger <adilger@clusterfs.com>
40  * Author: Phil Schwan <phil@clusterfs.com>
41  * Author: Mike Shaver <shaver@clusterfs.com>
42  */
43
44 #define DEBUG_SUBSYSTEM S_MDS
45
46 #include <lustre_mds.h>
47 #include <linux/module.h>
48 #include <linux/init.h>
49 #include <linux/random.h>
50 #include <linux/fs.h>
51 #include <linux/jbd.h>
52 #include <linux/smp_lock.h>
53 #include <linux/buffer_head.h>
54 #include <linux/workqueue.h>
55 #include <linux/mount.h>
56
57 #include <linux/lustre_acl.h>
58 #include <obd_class.h>
59 #include <lustre_dlm.h>
60 #include <obd_lov.h>
61 #include <lustre_fsfilt.h>
62 #include <lprocfs_status.h>
63 #include <lustre_quota.h>
64 #include <lustre_disk.h>
65 #include <lustre_param.h>
66
67 #include "mds_internal.h"
68
69 __u32 mds_max_ost_index=0xFFFF;
70 CFS_MODULE_PARM(mds_max_ost_index, "i", int, 0444,
71                 "maximal OST index");
72
73 /* Look up an entry by inode number. */
74 /* this function ONLY returns valid dget'd dentries with an initialized inode
75    or errors */
76 struct dentry *mds_fid2dentry(struct mds_obd *mds, struct ll_fid *fid,
77                               struct vfsmount **mnt)
78 {
79         char fid_name[32];
80         unsigned long ino = fid->id;
81         __u32 generation = fid->generation;
82         struct inode *inode;
83         struct dentry *result;
84
85         if (ino == 0)
86                 RETURN(ERR_PTR(-ESTALE));
87
88         snprintf(fid_name, sizeof(fid_name), "0x%lx", ino);
89
90         CDEBUG(D_DENTRY, "--> mds_fid2dentry: ino/gen %lu/%u, sb %p\n",
91                ino, generation, mds->mds_obt.obt_sb);
92
93         /* under ext3 this is neither supposed to return bad inodes
94            nor NULL inodes. */
95         result = ll_lookup_one_len(fid_name, mds->mds_fid_de, strlen(fid_name));
96         if (IS_ERR(result))
97                 RETURN(result);
98
99         inode = result->d_inode;
100         if (!inode)
101                 RETURN(ERR_PTR(-ENOENT));
102
103         if (inode->i_generation == 0 || inode->i_nlink == 0) {
104                 LCONSOLE_WARN("Found inode with zero generation or link -- this"
105                               " may indicate disk corruption (inode: %lu/%u, "
106                               "link %lu, count %d)\n", inode->i_ino,
107                               inode->i_generation,(unsigned long)inode->i_nlink,
108                               atomic_read(&inode->i_count));
109                 dput(result);
110                 RETURN(ERR_PTR(-ENOENT));
111         }
112
113         if (generation && inode->i_generation != generation) {
114                 /* we didn't find the right inode.. */
115                 CDEBUG(D_INODE, "found wrong generation: inode %lu, link: %lu, "
116                        "count: %d, generation %u/%u\n", inode->i_ino,
117                        (unsigned long)inode->i_nlink,
118                        atomic_read(&inode->i_count), inode->i_generation,
119                        generation);
120                 dput(result);
121                 RETURN(ERR_PTR(-ENOENT));
122         }
123
124         if (mnt) {
125                 *mnt = mds->mds_vfsmnt;
126                 mntget(*mnt);
127         }
128
129         RETURN(result);
130 }
131
132 static int mds_lov_presetup (struct mds_obd *mds, struct lustre_cfg *lcfg)
133 {
134         int rc = 0;
135         ENTRY;
136
137         if (lcfg->lcfg_bufcount >= 4 && LUSTRE_CFG_BUFLEN(lcfg, 3) > 0) {
138                 class_uuid_t uuid;
139
140                 ll_generate_random_uuid(uuid);
141                 class_uuid_unparse(uuid, &mds->mds_lov_uuid);
142
143                 OBD_ALLOC(mds->mds_profile, LUSTRE_CFG_BUFLEN(lcfg, 3));
144                 if (mds->mds_profile == NULL)
145                         RETURN(-ENOMEM);
146
147                 strncpy(mds->mds_profile, lustre_cfg_string(lcfg, 3),
148                         LUSTRE_CFG_BUFLEN(lcfg, 3));
149         }
150         RETURN(rc);
151 }
152
153 static int mds_lov_clean(struct obd_device *obd)
154 {
155         struct mds_obd *mds = &obd->u.mds;
156         struct obd_device *osc = mds->mds_osc_obd;
157         ENTRY;
158
159         if (mds->mds_profile) {
160                 class_del_profile(mds->mds_profile);
161                 OBD_FREE(mds->mds_profile, strlen(mds->mds_profile) + 1);
162                 mds->mds_profile = NULL;
163         }
164
165         /* There better be a lov */
166         if (!osc)
167                 RETURN(0);
168         if (IS_ERR(osc))
169                 RETURN(PTR_ERR(osc));
170
171         obd_register_observer(osc, NULL);
172
173         /* Give lov our same shutdown flags */
174         osc->obd_force = obd->obd_force;
175         osc->obd_fail = obd->obd_fail;
176
177         /* Cleanup the lov */
178         obd_disconnect(mds->mds_osc_exp);
179         class_manual_cleanup(osc);
180
181         RETURN(0);
182 }
183
184 static int mds_postsetup(struct obd_device *obd)
185 {
186         struct mds_obd *mds = &obd->u.mds;
187         int rc = 0;
188         ENTRY;
189
190         rc = llog_setup(obd, &obd->obd_olg, LLOG_CONFIG_ORIG_CTXT, obd, 0, NULL,
191                         &llog_lvfs_ops);
192         if (rc)
193                 RETURN(rc);
194
195         rc = llog_setup(obd, &obd->obd_olg, LLOG_LOVEA_ORIG_CTXT, obd, 0, NULL,
196                         &llog_lvfs_ops);
197         if (rc)
198                 RETURN(rc);
199
200         if (mds->mds_profile) {
201                 struct lustre_profile *lprof;
202                 /* The profile defines which osc and mdc to connect to, for a
203                    client.  We reuse that here to figure out the name of the
204                    lov to use (and ignore lprof->lp_md).
205                    The profile was set in the config log with
206                    LCFG_MOUNTOPT profilenm oscnm mdcnm */
207                 lprof = class_get_profile(mds->mds_profile);
208                 if (lprof == NULL) {
209                         CERROR("No profile found: %s\n", mds->mds_profile);
210                         GOTO(err_cleanup, rc = -ENOENT);
211                 }
212                 rc = mds_lov_connect(obd, lprof->lp_dt);
213                 if (rc)
214                         GOTO(err_cleanup, rc);
215         }
216
217         RETURN(rc);
218
219 err_cleanup:
220         mds_lov_clean(obd);
221         llog_cleanup(llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT));
222         llog_cleanup(llog_get_context(obd, LLOG_LOVEA_ORIG_CTXT));
223         RETURN(rc);
224 }
225
226 int mds_postrecov(struct obd_device *obd)
227 {
228         int rc = 0;
229         ENTRY;
230
231         if (obd->obd_fail)
232                 RETURN(0);
233
234         LASSERT(!obd->obd_recovering);
235         LASSERT(!llog_ctxt_null(obd, LLOG_MDS_OST_ORIG_CTXT));
236
237         /* clean PENDING dir */
238 #if 0
239         if (strncmp(obd->obd_name, MDD_OBD_NAME, strlen(MDD_OBD_NAME)))
240                 rc = mds_cleanup_pending(obd);
241                 if (rc < 0)
242                         GOTO(out, rc);
243 #endif
244         /* FIXME Does target_finish_recovery really need this to block? */
245         /* Notify the LOV, which will in turn call mds_notify for each tgt */
246         /* This means that we have to hack obd_notify to think we're obd_set_up
247            during mds_lov_connect. */
248         obd_notify(obd->u.mds.mds_osc_obd, NULL,
249                    obd->obd_async_recov ? OBD_NOTIFY_SYNC_NONBLOCK :
250                    OBD_NOTIFY_SYNC, NULL);
251
252         /* quota recovery */
253         lquota_recovery(mds_quota_interface_ref, obd);
254
255         RETURN(rc);
256 }
257
258 /* We need to be able to stop an mds_lov_synchronize */
259 static int mds_lov_early_clean(struct obd_device *obd)
260 {
261         struct mds_obd *mds = &obd->u.mds;
262         struct obd_device *osc = mds->mds_osc_obd;
263
264         if (!osc || (!obd->obd_force && !obd->obd_fail))
265                 return(0);
266
267         CDEBUG(D_HA, "abort inflight\n");
268         return (obd_precleanup(osc, OBD_CLEANUP_EARLY));
269 }
270
271 static int mds_precleanup(struct obd_device *obd, enum obd_cleanup_stage stage)
272 {
273         int rc = 0;
274         struct mds_obd *mds = &obd->u.mds;
275         ENTRY;
276
277         switch (stage) {
278         case OBD_CLEANUP_EARLY:
279                 break;
280         case OBD_CLEANUP_EXPORTS:
281                 mds_lov_early_clean(obd);
282                 down_write(&mds->mds_notify_lock);
283                 mds_lov_disconnect(obd);
284                 mds_lov_clean(obd);
285                 llog_cleanup(llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT));
286                 llog_cleanup(llog_get_context(obd, LLOG_LOVEA_ORIG_CTXT));
287                 rc = obd_llog_finish(obd, 0);
288                 mds->mds_osc_exp = NULL;
289                 up_write(&mds->mds_notify_lock);
290                 break;
291         }
292         RETURN(rc);
293 }
294
295 static struct dentry *mds_lvfs_fid2dentry(__u64 id, __u32 gen, __u64 gr,
296                                           void *data)
297 {
298         struct obd_device *obd = data;
299         struct ll_fid fid;
300         fid.id = id;
301         fid.generation = gen;
302         return mds_fid2dentry(&obd->u.mds, &fid, NULL);
303 }
304
305
306 struct lvfs_callback_ops mds_lvfs_ops = {
307         l_fid2dentry:     mds_lvfs_fid2dentry,
308 };
309
310 quota_interface_t *mds_quota_interface_ref;
311 extern quota_interface_t mds_quota_interface;
312
313 static void mds_init_ctxt(struct obd_device *obd, struct vfsmount *mnt)
314 {
315         struct mds_obd *mds = &obd->u.mds;
316
317         mds->mds_vfsmnt = mnt;
318         /* why not mnt->mnt_sb instead of mnt->mnt_root->d_inode->i_sb? */
319         obd->u.obt.obt_sb = mnt->mnt_root->d_inode->i_sb;
320
321         fsfilt_setup(obd, obd->u.obt.obt_sb);
322
323         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
324         obd->obd_lvfs_ctxt.pwdmnt = mnt;
325         obd->obd_lvfs_ctxt.pwd = mnt->mnt_root;
326         obd->obd_lvfs_ctxt.fs = get_ds();
327         obd->obd_lvfs_ctxt.cb_ops = mds_lvfs_ops;
328         return;
329 }
330
331 /*mds still need lov setup here*/
332 static int mds_cmd_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
333 {
334         struct mds_obd *mds = &obd->u.mds;
335         struct lvfs_run_ctxt saved;
336         const char     *dev;
337         struct vfsmount *mnt;
338         struct lustre_sb_info *lsi;
339         struct lustre_mount_info *lmi;
340         struct dentry  *dentry;
341         int rc = 0;
342         ENTRY;
343
344         CDEBUG(D_INFO, "obd %s setup \n", obd->obd_name);
345         if (strncmp(obd->obd_name, MDD_OBD_NAME, strlen(MDD_OBD_NAME)))
346                 RETURN(0);
347
348         if (lcfg->lcfg_bufcount < 5) {
349                 CERROR("invalid arg for setup %s\n", MDD_OBD_NAME);
350                 RETURN(-EINVAL);
351         }
352         dev = lustre_cfg_string(lcfg, 4);
353         lmi = server_get_mount(dev);
354         LASSERT(lmi != NULL);
355
356         lsi = s2lsi(lmi->lmi_sb);
357         mnt = lmi->lmi_mnt;
358         /* FIXME: MDD LOV initialize objects.
359          * we need only lmi here but not get mount
360          * OSD did mount already, so put mount back
361          */
362         atomic_dec(&lsi->lsi_mounts);
363         mntput(mnt);
364         init_rwsem(&mds->mds_notify_lock);
365
366         obd->obd_fsops = fsfilt_get_ops(MT_STR(lsi->lsi_ldd));
367         mds_init_ctxt(obd, mnt);
368
369         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
370         dentry = simple_mkdir(current->fs->pwd, mnt, "OBJECTS", 0777, 1);
371         if (IS_ERR(dentry)) {
372                 rc = PTR_ERR(dentry);
373                 CERROR("cannot create OBJECTS directory: rc = %d\n", rc);
374                 GOTO(err_putfs, rc);
375         }
376         mds->mds_objects_dir = dentry;
377
378         dentry = lookup_one_len("__iopen__", current->fs->pwd,
379                                 strlen("__iopen__"));
380         if (IS_ERR(dentry)) {
381                 rc = PTR_ERR(dentry);
382                 CERROR("cannot lookup __iopen__ directory: rc = %d\n", rc);
383                 GOTO(err_objects, rc);
384         }
385
386         mds->mds_fid_de = dentry;
387         if (!dentry->d_inode || is_bad_inode(dentry->d_inode)) {
388                 rc = -ENOENT;
389                 CERROR("__iopen__ directory has no inode? rc = %d\n", rc);
390                 GOTO(err_fid, rc);
391         }
392         rc = mds_lov_init_objids(obd);
393         if (rc != 0) {
394                CERROR("cannot init lov objid rc = %d\n", rc);
395                GOTO(err_fid, rc );
396         }
397
398         rc = mds_lov_presetup(mds, lcfg);
399         if (rc < 0)
400                 GOTO(err_objects, rc);
401
402         /* Don't wait for mds_postrecov trying to clear orphans */
403         obd->obd_async_recov = 1;
404         rc = mds_postsetup(obd);
405         /* Bug 11557 - allow async abort_recov start
406            FIXME can remove most of this obd_async_recov plumbing
407         obd->obd_async_recov = 0;
408         */
409
410         if (rc)
411                 GOTO(err_objects, rc);
412
413         mds->mds_max_mdsize = sizeof(struct lov_mds_md);
414         mds->mds_max_cookiesize = sizeof(struct llog_cookie);
415
416 err_pop:
417         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
418         RETURN(rc);
419 err_fid:
420         dput(mds->mds_fid_de);
421 err_objects:
422         dput(mds->mds_objects_dir);
423 err_putfs:
424         fsfilt_put_ops(obd->obd_fsops);
425         goto err_pop;
426 }
427
428 static int mds_cmd_cleanup(struct obd_device *obd)
429 {
430         struct mds_obd *mds = &obd->u.mds;
431         struct lvfs_run_ctxt saved;
432         int rc = 0;
433         ENTRY;
434
435         mds->mds_osc_exp = NULL;
436
437         if (obd->obd_fail)
438                 LCONSOLE_WARN("%s: shutting down for failover; client state "
439                               "will be preserved.\n", obd->obd_name);
440
441         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
442
443         mds_lov_destroy_objids(obd);
444
445         if (mds->mds_objects_dir != NULL) {
446                 l_dput(mds->mds_objects_dir);
447                 mds->mds_objects_dir = NULL;
448         }
449
450         shrink_dcache_parent(mds->mds_fid_de);
451         dput(mds->mds_fid_de);
452         LL_DQUOT_OFF(obd->u.obt.obt_sb);
453         fsfilt_put_ops(obd->obd_fsops);
454
455         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
456         RETURN(rc);
457 }
458
459 #if 0
460 static int mds_cmd_health_check(struct obd_device *obd)
461 {
462         return 0;
463 }
464 #endif
465 static struct obd_ops mds_cmd_obd_ops = {
466         .o_owner           = THIS_MODULE,
467         .o_setup           = mds_cmd_setup,
468         .o_cleanup         = mds_cmd_cleanup,
469         .o_precleanup      = mds_precleanup,
470         .o_create          = mds_obd_create,
471         .o_destroy         = mds_obd_destroy,
472         .o_llog_init       = mds_llog_init,
473         .o_llog_finish     = mds_llog_finish,
474         .o_notify          = mds_notify,
475         .o_postrecov       = mds_postrecov,
476         //   .o_health_check    = mds_cmd_health_check,
477 };
478
479 static int __init mds_cmd_init(void)
480 {
481         struct lprocfs_static_vars lvars;
482
483         lprocfs_mds_init_vars(&lvars);
484         class_register_type(&mds_cmd_obd_ops, NULL, lvars.module_vars,
485                             LUSTRE_MDS_NAME, NULL);
486
487         return 0;
488 }
489
490 static void /*__exit*/ mds_cmd_exit(void)
491 {
492         class_unregister_type(LUSTRE_MDS_NAME);
493 }
494
495 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
496 MODULE_DESCRIPTION("Lustre Metadata Server (MDS)");
497 MODULE_LICENSE("GPL");
498
499 module_init(mds_cmd_init);
500 module_exit(mds_cmd_exit);