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