Whamcloud - gitweb
b=16098
[fs/lustre-release.git] / lustre / cmm / cmm_device.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 [sun.com URL with a
20  * copy of GPLv2].
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/cmm/cmm_device.c
37  *
38  * Lustre Cluster Metadata Manager (cmm)
39  *
40  * Author: Mike Pershin <tappro@clusterfs.com>
41  */
42
43 #ifndef EXPORT_SYMTAB
44 # define EXPORT_SYMTAB
45 #endif
46 #define DEBUG_SUBSYSTEM S_MDS
47
48 #include <linux/module.h>
49
50 #include <obd.h>
51 #include <obd_class.h>
52 #include <lprocfs_status.h>
53 #include <lustre_ver.h>
54 #include "cmm_internal.h"
55 #include "mdc_internal.h"
56
57 static struct obd_ops cmm_obd_device_ops = {
58         .o_owner           = THIS_MODULE
59 };
60
61 static struct lu_device_operations cmm_lu_ops;
62
63 static inline int lu_device_is_cmm(struct lu_device *d)
64 {
65         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &cmm_lu_ops);
66 }
67
68 int cmm_root_get(const struct lu_env *env, struct md_device *md,
69                  struct lu_fid *fid)
70 {
71         struct cmm_device *cmm_dev = md2cmm_dev(md);
72         /* valid only on master MDS */
73         if (cmm_dev->cmm_local_num == 0)
74                 return cmm_child_ops(cmm_dev)->mdo_root_get(env,
75                                      cmm_dev->cmm_child, fid);
76         else
77                 return -EINVAL;
78 }
79
80 static int cmm_statfs(const struct lu_env *env, struct md_device *md,
81                       struct kstatfs *sfs)
82 {
83         struct cmm_device *cmm_dev = md2cmm_dev(md);
84         int rc;
85
86         ENTRY;
87         rc = cmm_child_ops(cmm_dev)->mdo_statfs(env,
88                                                 cmm_dev->cmm_child, sfs);
89         RETURN (rc);
90 }
91
92 static int cmm_maxsize_get(const struct lu_env *env, struct md_device *md,
93                            int *md_size, int *cookie_size)
94 {
95         struct cmm_device *cmm_dev = md2cmm_dev(md);
96         int rc;
97         ENTRY;
98         rc = cmm_child_ops(cmm_dev)->mdo_maxsize_get(env, cmm_dev->cmm_child,
99                                                      md_size, cookie_size);
100         RETURN(rc);
101 }
102
103 static int cmm_init_capa_ctxt(const struct lu_env *env, struct md_device *md,
104                               int mode , unsigned long timeout, __u32 alg,
105                               struct lustre_capa_key *keys)
106 {
107         struct cmm_device *cmm_dev = md2cmm_dev(md);
108         int rc;
109         ENTRY;
110         LASSERT(cmm_child_ops(cmm_dev)->mdo_init_capa_ctxt);
111         rc = cmm_child_ops(cmm_dev)->mdo_init_capa_ctxt(env, cmm_dev->cmm_child,
112                                                         mode, timeout, alg,
113                                                         keys);
114         RETURN(rc);
115 }
116
117 static int cmm_update_capa_key(const struct lu_env *env,
118                                struct md_device *md,
119                                struct lustre_capa_key *key)
120 {
121         struct cmm_device *cmm_dev = md2cmm_dev(md);
122         int rc;
123         ENTRY;
124         rc = cmm_child_ops(cmm_dev)->mdo_update_capa_key(env,
125                                                          cmm_dev->cmm_child,
126                                                          key);
127         RETURN(rc);
128 }
129
130 static struct md_device_operations cmm_md_ops = {
131         .mdo_statfs          = cmm_statfs,
132         .mdo_root_get        = cmm_root_get,
133         .mdo_maxsize_get     = cmm_maxsize_get,
134         .mdo_init_capa_ctxt  = cmm_init_capa_ctxt,
135         .mdo_update_capa_key = cmm_update_capa_key,
136 };
137
138 extern struct lu_device_type mdc_device_type;
139
140 static int cmm_post_init_mdc(const struct lu_env *env,
141                              struct cmm_device *cmm)
142 {
143         int max_mdsize, max_cookiesize, rc;
144         struct mdc_device *mc, *tmp;
145
146         /* get the max mdsize and cookiesize from lower layer */
147         rc = cmm_maxsize_get(env, &cmm->cmm_md_dev, &max_mdsize,
148                                                 &max_cookiesize);
149         if (rc)
150                 RETURN(rc);
151
152         spin_lock(&cmm->cmm_tgt_guard);
153         list_for_each_entry_safe(mc, tmp, &cmm->cmm_targets,
154                                  mc_linkage) {
155                 cmm_mdc_init_ea_size(env, mc, max_mdsize, max_cookiesize);
156         }
157         spin_unlock(&cmm->cmm_tgt_guard);
158         RETURN(rc);
159 }
160
161 /* --- cmm_lu_operations --- */
162 /* add new MDC to the CMM, create MDC lu_device and connect it to mdc_obd */
163 static int cmm_add_mdc(const struct lu_env *env,
164                        struct cmm_device *cm, struct lustre_cfg *cfg)
165 {
166         struct lu_device_type *ldt = &mdc_device_type;
167         char *p, *num = lustre_cfg_string(cfg, 2);
168         struct mdc_device *mc, *tmp;
169         struct lu_fld_target target;
170         struct lu_device *ld;
171         mdsno_t mdc_num;
172         int rc;
173         ENTRY;
174
175         /* find out that there is no such mdc */
176         LASSERT(num);
177         mdc_num = simple_strtol(num, &p, 10);
178         if (*p) {
179                 CERROR("Invalid index in lustre_cgf, offset 2\n");
180                 RETURN(-EINVAL);
181         }
182
183         spin_lock(&cm->cmm_tgt_guard);
184         list_for_each_entry_safe(mc, tmp, &cm->cmm_targets,
185                                  mc_linkage) {
186                 if (mc->mc_num == mdc_num) {
187                         spin_unlock(&cm->cmm_tgt_guard);
188                         RETURN(-EEXIST);
189                 }
190         }
191         spin_unlock(&cm->cmm_tgt_guard);
192         ld = ldt->ldt_ops->ldto_device_alloc(env, ldt, cfg);
193         ld->ld_site = cmm2lu_dev(cm)->ld_site;
194
195         rc = ldt->ldt_ops->ldto_device_init(env, ld, NULL, NULL);
196         if (rc) {
197                 ldt->ldt_ops->ldto_device_free(env, ld);
198                 RETURN (rc);
199         }
200         /* pass config to the just created MDC */
201         rc = ld->ld_ops->ldo_process_config(env, ld, cfg);
202         if (rc)
203                 RETURN(rc);
204
205         spin_lock(&cm->cmm_tgt_guard);
206         list_for_each_entry_safe(mc, tmp, &cm->cmm_targets,
207                                  mc_linkage) {
208                 if (mc->mc_num == mdc_num) {
209                         spin_unlock(&cm->cmm_tgt_guard);
210                         ldt->ldt_ops->ldto_device_fini(env, ld);
211                         ldt->ldt_ops->ldto_device_free(env, ld);
212                         RETURN(-EEXIST);
213                 }
214         }
215         mc = lu2mdc_dev(ld);
216         list_add_tail(&mc->mc_linkage, &cm->cmm_targets);
217         cm->cmm_tgt_count++;
218         spin_unlock(&cm->cmm_tgt_guard);
219
220         lu_device_get(cmm2lu_dev(cm));
221
222         target.ft_srv = NULL;
223         target.ft_idx = mc->mc_num;
224         target.ft_exp = mc->mc_desc.cl_exp;
225         fld_client_add_target(cm->cmm_fld, &target);
226
227         /* Set max md size for the mdc. */
228         rc = cmm_post_init_mdc(env, cm);
229         RETURN(rc);
230 }
231
232 static void cmm_device_shutdown(const struct lu_env *env,
233                                 struct cmm_device *cm,
234                                 struct lustre_cfg *cfg)
235 {
236         struct mdc_device *mc, *tmp;
237         ENTRY;
238
239         /* Remove local target from FLD. */
240         fld_client_del_target(cm->cmm_fld, cm->cmm_local_num);
241
242         /* Finish all mdc devices. */
243         spin_lock(&cm->cmm_tgt_guard);
244         list_for_each_entry_safe(mc, tmp, &cm->cmm_targets, mc_linkage) {
245                 struct lu_device *ld_m = mdc2lu_dev(mc);
246                 fld_client_del_target(cm->cmm_fld, mc->mc_num);
247                 ld_m->ld_ops->ldo_process_config(env, ld_m, cfg);
248         }
249         spin_unlock(&cm->cmm_tgt_guard);
250
251         /* remove upcall device*/
252         md_upcall_fini(&cm->cmm_md_dev);
253
254         EXIT;
255 }
256
257 static int cmm_device_mount(const struct lu_env *env,
258                             struct cmm_device *m, struct lustre_cfg *cfg)
259 {
260         const char *index = lustre_cfg_string(cfg, 2);
261         char *p;
262
263         LASSERT(index != NULL);
264
265         m->cmm_local_num = simple_strtol(index, &p, 10);
266         if (*p) {
267                 CERROR("Invalid index in lustre_cgf\n");
268                 RETURN(-EINVAL);
269         }
270
271         RETURN(0);
272 }
273
274 static int cmm_process_config(const struct lu_env *env,
275                               struct lu_device *d, struct lustre_cfg *cfg)
276 {
277         struct cmm_device *m = lu2cmm_dev(d);
278         struct lu_device *next = md2lu_dev(m->cmm_child);
279         int err;
280         ENTRY;
281
282         switch(cfg->lcfg_command) {
283         case LCFG_ADD_MDC:
284                 /* On first ADD_MDC add also local target. */
285                 if (!(m->cmm_flags & CMM_INITIALIZED)) {
286                         struct lu_site *ls = cmm2lu_dev(m)->ld_site;
287                         struct lu_fld_target target;
288
289                         target.ft_srv = ls->ls_server_fld;
290                         target.ft_idx = m->cmm_local_num;
291                         target.ft_exp = NULL;
292
293                         fld_client_add_target(m->cmm_fld, &target);
294                 }
295                 err = cmm_add_mdc(env, m, cfg);
296
297                 /* The first ADD_MDC can be counted as setup is finished. */
298                 if (!(m->cmm_flags & CMM_INITIALIZED))
299                         m->cmm_flags |= CMM_INITIALIZED;
300
301                 break;
302         case LCFG_SETUP:
303         {
304                 /* lower layers should be set up at first */
305                 err = next->ld_ops->ldo_process_config(env, next, cfg);
306                 if (err == 0)
307                         err = cmm_device_mount(env, m, cfg);
308                 break;
309         }
310         case LCFG_CLEANUP:
311         {
312                 cmm_device_shutdown(env, m, cfg);
313         }
314         default:
315                 err = next->ld_ops->ldo_process_config(env, next, cfg);
316         }
317         RETURN(err);
318 }
319
320 static int cmm_recovery_complete(const struct lu_env *env,
321                                  struct lu_device *d)
322 {
323         struct cmm_device *m = lu2cmm_dev(d);
324         struct lu_device *next = md2lu_dev(m->cmm_child);
325         int rc;
326         ENTRY;
327         rc = next->ld_ops->ldo_recovery_complete(env, next);
328         RETURN(rc);
329 }
330
331 static struct lu_device_operations cmm_lu_ops = {
332         .ldo_object_alloc      = cmm_object_alloc,
333         .ldo_process_config    = cmm_process_config,
334         .ldo_recovery_complete = cmm_recovery_complete
335 };
336
337 /* --- lu_device_type operations --- */
338 int cmm_upcall(const struct lu_env *env, struct md_device *md,
339                enum md_upcall_event ev)
340 {
341         int rc;
342         ENTRY;
343
344         switch (ev) {
345                 case MD_LOV_SYNC:
346                         rc = cmm_post_init_mdc(env, md2cmm_dev(md));
347                         if (rc)
348                                 CERROR("can not init md size %d\n", rc);
349                         /* fall through */
350                 default:
351                         rc = md_do_upcall(env, md, ev);
352         }
353         RETURN(rc);
354 }
355
356 static struct lu_device *cmm_device_alloc(const struct lu_env *env,
357                                           struct lu_device_type *t,
358                                           struct lustre_cfg *cfg)
359 {
360         struct lu_device  *l;
361         struct cmm_device *m;
362         ENTRY;
363
364         OBD_ALLOC_PTR(m);
365         if (m == NULL) {
366                 l = ERR_PTR(-ENOMEM);
367         } else {
368                 md_device_init(&m->cmm_md_dev, t);
369                 m->cmm_md_dev.md_ops = &cmm_md_ops;
370                 md_upcall_init(&m->cmm_md_dev, cmm_upcall);
371                 l = cmm2lu_dev(m);
372                 l->ld_ops = &cmm_lu_ops;
373
374                 OBD_ALLOC_PTR(m->cmm_fld);
375                 if (!m->cmm_fld)
376                         GOTO(out_free_cmm, l = ERR_PTR(-ENOMEM));
377         }
378
379         RETURN(l);
380 out_free_cmm:
381         OBD_FREE_PTR(m);
382         return l;
383 }
384
385 static struct lu_device *cmm_device_free(const struct lu_env *env,
386                                          struct lu_device *d)
387 {
388         struct cmm_device *m = lu2cmm_dev(d);
389         struct lu_device  *next = md2lu_dev(m->cmm_child);
390         ENTRY;
391
392         LASSERT(m->cmm_tgt_count == 0);
393         LASSERT(list_empty(&m->cmm_targets));
394         if (m->cmm_fld != NULL) {
395                 OBD_FREE_PTR(m->cmm_fld);
396                 m->cmm_fld = NULL;
397         }
398         md_device_fini(&m->cmm_md_dev);
399         OBD_FREE_PTR(m);
400         RETURN(next);
401 }
402
403 /* context key constructor/destructor: cmm_key_init, cmm_key_fini */
404 LU_KEY_INIT_FINI(cmm, struct cmm_thread_info);
405
406 /* context key: cmm_thread_key */
407 LU_CONTEXT_KEY_DEFINE(cmm, LCT_MD_THREAD);
408
409 struct cmm_thread_info *cmm_env_info(const struct lu_env *env)
410 {
411         struct cmm_thread_info *info;
412
413         info = lu_context_key_get(&env->le_ctx, &cmm_thread_key);
414         LASSERT(info != NULL);
415         return info;
416 }
417
418 /* type constructor/destructor: cmm_type_init/cmm_type_fini */
419 LU_TYPE_INIT_FINI(cmm, &cmm_thread_key);
420
421 static int cmm_device_init(const struct lu_env *env, struct lu_device *d,
422                            const char *name, struct lu_device *next)
423 {
424         struct cmm_device *m = lu2cmm_dev(d);
425         struct lu_site *ls;
426         int err = 0;
427         ENTRY;
428
429         spin_lock_init(&m->cmm_tgt_guard);
430         CFS_INIT_LIST_HEAD(&m->cmm_targets);
431         m->cmm_tgt_count = 0;
432         m->cmm_child = lu2md_dev(next);
433
434         err = fld_client_init(m->cmm_fld, name,
435                               LUSTRE_CLI_FLD_HASH_DHT);
436         if (err) {
437                 CERROR("Can't init FLD, err %d\n", err);
438                 RETURN(err);
439         }
440
441         /* Assign site's fld client ref, needed for asserts in osd. */
442         ls = cmm2lu_dev(m)->ld_site;
443         ls->ls_client_fld = m->cmm_fld;
444         err = cmm_procfs_init(m, name);
445         
446         RETURN(err);
447 }
448
449 static struct lu_device *cmm_device_fini(const struct lu_env *env,
450                                          struct lu_device *ld)
451 {
452         struct cmm_device *cm = lu2cmm_dev(ld);
453         struct mdc_device *mc, *tmp;
454         struct lu_site *ls;
455         ENTRY;
456
457         /* Finish all mdc devices */
458         spin_lock(&cm->cmm_tgt_guard);
459         list_for_each_entry_safe(mc, tmp, &cm->cmm_targets, mc_linkage) {
460                 struct lu_device *ld_m = mdc2lu_dev(mc);
461
462                 list_del_init(&mc->mc_linkage);
463                 lu_device_put(cmm2lu_dev(cm));
464                 ld_m->ld_type->ldt_ops->ldto_device_fini(env, ld_m);
465                 ld_m->ld_type->ldt_ops->ldto_device_free(env, ld_m);
466                 cm->cmm_tgt_count--;
467         }
468         spin_unlock(&cm->cmm_tgt_guard);
469
470         fld_client_fini(cm->cmm_fld);
471         ls = cmm2lu_dev(cm)->ld_site;
472         ls->ls_client_fld = NULL;
473         cmm_procfs_fini(cm);
474
475         RETURN (md2lu_dev(cm->cmm_child));
476 }
477
478 static struct lu_device_type_operations cmm_device_type_ops = {
479         .ldto_init = cmm_type_init,
480         .ldto_fini = cmm_type_fini,
481
482         .ldto_device_alloc = cmm_device_alloc,
483         .ldto_device_free  = cmm_device_free,
484
485         .ldto_device_init = cmm_device_init,
486         .ldto_device_fini = cmm_device_fini
487 };
488
489 static struct lu_device_type cmm_device_type = {
490         .ldt_tags     = LU_DEVICE_MD,
491         .ldt_name     = LUSTRE_CMM_NAME,
492         .ldt_ops      = &cmm_device_type_ops,
493         .ldt_ctx_tags = LCT_MD_THREAD | LCT_DT_THREAD
494 };
495
496 struct lprocfs_vars lprocfs_cmm_obd_vars[] = {
497         { 0 }
498 };
499
500 struct lprocfs_vars lprocfs_cmm_module_vars[] = {
501         { 0 }
502 };
503
504 static void lprocfs_cmm_init_vars(struct lprocfs_static_vars *lvars)
505 {
506     lvars->module_vars  = lprocfs_cmm_module_vars;
507     lvars->obd_vars     = lprocfs_cmm_obd_vars;
508 }
509
510 static int __init cmm_mod_init(void)
511 {
512         struct lprocfs_static_vars lvars;
513
514         lprocfs_cmm_init_vars(&lvars);
515         return class_register_type(&cmm_obd_device_ops, NULL, lvars.module_vars,
516                                    LUSTRE_CMM_NAME, &cmm_device_type);
517 }
518
519 static void __exit cmm_mod_exit(void)
520 {
521         class_unregister_type(LUSTRE_CMM_NAME);
522 }
523
524 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
525 MODULE_DESCRIPTION("Lustre Clustered Metadata Manager ("LUSTRE_CMM_NAME")");
526 MODULE_LICENSE("GPL");
527
528 cfs_module(cmm, "0.1.0", cmm_mod_init, cmm_mod_exit);