Whamcloud - gitweb
parallel llog init
[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 <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         /* clean PENDING dir */
236 #if 0
237         if (strncmp(obd->obd_name, MDD_OBD_NAME, strlen(MDD_OBD_NAME)))
238                 rc = mds_cleanup_pending(obd);
239                 if (rc < 0)
240                         GOTO(out, rc);
241 #endif
242         /* FIXME Does target_finish_recovery really need this to block? */
243         /* Notify the LOV, which will in turn call mds_notify for each tgt */
244         /* This means that we have to hack obd_notify to think we're obd_set_up
245            during mds_lov_connect. */
246         obd_notify(obd->u.mds.mds_osc_obd, NULL,
247                    obd->obd_async_recov ? OBD_NOTIFY_SYNC_NONBLOCK :
248                    OBD_NOTIFY_SYNC, NULL);
249
250         /* quota recovery */
251         lquota_recovery(mds_quota_interface_ref, obd);
252
253         RETURN(rc);
254 }
255
256 /* We need to be able to stop an mds_lov_synchronize */
257 static int mds_lov_early_clean(struct obd_device *obd)
258 {
259         struct mds_obd *mds = &obd->u.mds;
260         struct obd_device *osc = mds->mds_osc_obd;
261
262         if (!osc || (!obd->obd_force && !obd->obd_fail))
263                 return(0);
264
265         CDEBUG(D_HA, "abort inflight\n");
266         return (obd_precleanup(osc, OBD_CLEANUP_EARLY));
267 }
268
269 static int mds_precleanup(struct obd_device *obd, enum obd_cleanup_stage stage)
270 {
271         int rc = 0;
272         struct mds_obd *mds = &obd->u.mds;
273         ENTRY;
274
275         switch (stage) {
276         case OBD_CLEANUP_EARLY:
277                 break;
278         case OBD_CLEANUP_EXPORTS:
279                 mds_lov_early_clean(obd);
280                 down_write(&mds->mds_notify_lock);
281                 mds_lov_disconnect(obd);
282                 mds_lov_clean(obd);
283                 llog_cleanup(llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT));
284                 llog_cleanup(llog_get_context(obd, LLOG_LOVEA_ORIG_CTXT));
285                 rc = obd_llog_finish(obd, 0);
286                 mds->mds_osc_exp = NULL;
287                 up_write(&mds->mds_notify_lock);
288                 break;
289         }
290         RETURN(rc);
291 }
292
293 static struct dentry *mds_lvfs_fid2dentry(__u64 id, __u32 gen, __u64 gr,
294                                           void *data)
295 {
296         struct obd_device *obd = data;
297         struct ll_fid fid;
298         fid.id = id;
299         fid.generation = gen;
300         return mds_fid2dentry(&obd->u.mds, &fid, NULL);
301 }
302
303
304 struct lvfs_callback_ops mds_lvfs_ops = {
305         l_fid2dentry:     mds_lvfs_fid2dentry,
306 };
307
308 quota_interface_t *mds_quota_interface_ref;
309 extern quota_interface_t mds_quota_interface;
310
311 static void mds_init_ctxt(struct obd_device *obd, struct vfsmount *mnt)
312 {
313         struct mds_obd *mds = &obd->u.mds;
314
315         mds->mds_vfsmnt = mnt;
316         /* why not mnt->mnt_sb instead of mnt->mnt_root->d_inode->i_sb? */
317         obd->u.obt.obt_sb = mnt->mnt_root->d_inode->i_sb;
318
319         fsfilt_setup(obd, obd->u.obt.obt_sb);
320
321         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
322         obd->obd_lvfs_ctxt.pwdmnt = mnt;
323         obd->obd_lvfs_ctxt.pwd = mnt->mnt_root;
324         obd->obd_lvfs_ctxt.fs = get_ds();
325         obd->obd_lvfs_ctxt.cb_ops = mds_lvfs_ops;
326         return;
327 }
328
329 /*mds still need lov setup here*/
330 static int mds_cmd_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
331 {
332         struct mds_obd *mds = &obd->u.mds;
333         struct lvfs_run_ctxt saved;
334         const char     *dev;
335         struct vfsmount *mnt;
336         struct lustre_sb_info *lsi;
337         struct lustre_mount_info *lmi;
338         struct dentry  *dentry;
339         int rc = 0;
340         ENTRY;
341
342         CDEBUG(D_INFO, "obd %s setup \n", obd->obd_name);
343         if (strncmp(obd->obd_name, MDD_OBD_NAME, strlen(MDD_OBD_NAME)))
344                 RETURN(0);
345
346         if (lcfg->lcfg_bufcount < 5) {
347                 CERROR("invalid arg for setup %s\n", MDD_OBD_NAME);
348                 RETURN(-EINVAL);
349         }
350         dev = lustre_cfg_string(lcfg, 4);
351         lmi = server_get_mount(dev);
352         LASSERT(lmi != NULL);
353
354         lsi = s2lsi(lmi->lmi_sb);
355         mnt = lmi->lmi_mnt;
356         /* FIXME: MDD LOV initialize objects.
357          * we need only lmi here but not get mount
358          * OSD did mount already, so put mount back
359          */
360         atomic_dec(&lsi->lsi_mounts);
361         mntput(mnt);
362         init_rwsem(&mds->mds_notify_lock);
363
364         obd->obd_fsops = fsfilt_get_ops(MT_STR(lsi->lsi_ldd));
365         mds_init_ctxt(obd, mnt);
366
367         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
368         dentry = simple_mkdir(current->fs->pwd, mnt, "OBJECTS", 0777, 1);
369         if (IS_ERR(dentry)) {
370                 rc = PTR_ERR(dentry);
371                 CERROR("cannot create OBJECTS directory: rc = %d\n", rc);
372                 GOTO(err_putfs, rc);
373         }
374         mds->mds_objects_dir = dentry;
375
376         dentry = lookup_one_len("__iopen__", current->fs->pwd,
377                                 strlen("__iopen__"));
378         if (IS_ERR(dentry)) {
379                 rc = PTR_ERR(dentry);
380                 CERROR("cannot lookup __iopen__ directory: rc = %d\n", rc);
381                 GOTO(err_objects, rc);
382         }
383
384         mds->mds_fid_de = dentry;
385         if (!dentry->d_inode || is_bad_inode(dentry->d_inode)) {
386                 rc = -ENOENT;
387                 CERROR("__iopen__ directory has no inode? rc = %d\n", rc);
388                 GOTO(err_fid, rc);
389         }
390         rc = mds_lov_init_objids(obd);
391         if (rc != 0) {
392                CERROR("cannot init lov objid rc = %d\n", rc);
393                GOTO(err_fid, rc );
394         }
395
396         rc = mds_lov_presetup(mds, lcfg);
397         if (rc < 0)
398                 GOTO(err_objects, rc);
399
400         /* Don't wait for mds_postrecov trying to clear orphans */
401         obd->obd_async_recov = 1;
402         rc = mds_postsetup(obd);
403         /* Bug 11557 - allow async abort_recov start
404            FIXME can remove most of this obd_async_recov plumbing
405         obd->obd_async_recov = 0;
406         */
407
408         if (rc)
409                 GOTO(err_objects, rc);
410
411         mds->mds_max_mdsize = sizeof(struct lov_mds_md_v3);
412         mds->mds_max_cookiesize = sizeof(struct llog_cookie);
413
414 err_pop:
415         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
416         RETURN(rc);
417 err_fid:
418         dput(mds->mds_fid_de);
419 err_objects:
420         dput(mds->mds_objects_dir);
421 err_putfs:
422         fsfilt_put_ops(obd->obd_fsops);
423         goto err_pop;
424 }
425
426 static int mds_cmd_cleanup(struct obd_device *obd)
427 {
428         struct mds_obd *mds = &obd->u.mds;
429         struct lvfs_run_ctxt saved;
430         int rc = 0;
431         ENTRY;
432
433         mds->mds_osc_exp = NULL;
434
435         if (obd->obd_fail)
436                 LCONSOLE_WARN("%s: shutting down for failover; client state "
437                               "will be preserved.\n", obd->obd_name);
438
439         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
440
441         mds_lov_destroy_objids(obd);
442
443         if (mds->mds_objects_dir != NULL) {
444                 l_dput(mds->mds_objects_dir);
445                 mds->mds_objects_dir = NULL;
446         }
447
448         shrink_dcache_parent(mds->mds_fid_de);
449         dput(mds->mds_fid_de);
450         LL_DQUOT_OFF(obd->u.obt.obt_sb);
451         fsfilt_put_ops(obd->obd_fsops);
452
453         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
454         RETURN(rc);
455 }
456
457 #if 0
458 static int mds_cmd_health_check(struct obd_device *obd)
459 {
460         return 0;
461 }
462 #endif
463 static struct obd_ops mds_cmd_obd_ops = {
464         .o_owner           = THIS_MODULE,
465         .o_setup           = mds_cmd_setup,
466         .o_cleanup         = mds_cmd_cleanup,
467         .o_precleanup      = mds_precleanup,
468         .o_create          = mds_obd_create,
469         .o_destroy         = mds_obd_destroy,
470         .o_llog_init       = mds_llog_init,
471         .o_llog_finish     = mds_llog_finish,
472         .o_notify          = mds_notify,
473         .o_postrecov       = mds_postrecov,
474         //   .o_health_check    = mds_cmd_health_check,
475 };
476
477 static int __init mds_cmd_init(void)
478 {
479         struct lprocfs_static_vars lvars;
480
481         lprocfs_mds_init_vars(&lvars);
482         class_register_type(&mds_cmd_obd_ops, NULL, lvars.module_vars,
483                             LUSTRE_MDS_NAME, NULL);
484
485         return 0;
486 }
487
488 static void /*__exit*/ mds_cmd_exit(void)
489 {
490         class_unregister_type(LUSTRE_MDS_NAME);
491 }
492
493 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
494 MODULE_DESCRIPTION("Lustre Metadata Server (MDS)");
495 MODULE_LICENSE("GPL");
496
497 module_init(mds_cmd_init);
498 module_exit(mds_cmd_exit);