Whamcloud - gitweb
52f022f3453473af2e7a2fab756acf0c8506fc02
[fs/lustre-release.git] / lustre / lov / lov_dev.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * Implementation of cl_device and cl_device_type for LOV layer.
33  *
34  *   Author: Nikita Danilov <nikita.danilov@sun.com>
35  */
36
37 #define DEBUG_SUBSYSTEM S_LOV
38
39 /* class_name2obd() */
40 #include <obd_class.h>
41
42 #include "lov_cl_internal.h"
43
44 struct kmem_cache *lov_lock_kmem;
45 struct kmem_cache *lov_object_kmem;
46 struct kmem_cache *lov_thread_kmem;
47 struct kmem_cache *lov_session_kmem;
48
49 struct kmem_cache *lovsub_object_kmem;
50
51 struct lu_kmem_descr lov_caches[] = {
52         {
53                 .ckd_cache = &lov_lock_kmem,
54                 .ckd_name  = "lov_lock_kmem",
55                 .ckd_size  = sizeof (struct lov_lock)
56         },
57         {
58                 .ckd_cache = &lov_object_kmem,
59                 .ckd_name  = "lov_object_kmem",
60                 .ckd_size  = sizeof (struct lov_object)
61         },
62         {
63                 .ckd_cache = &lov_thread_kmem,
64                 .ckd_name  = "lov_thread_kmem",
65                 .ckd_size  = sizeof (struct lov_thread_info)
66         },
67         {
68                 .ckd_cache = &lov_session_kmem,
69                 .ckd_name  = "lov_session_kmem",
70                 .ckd_size  = sizeof (struct lov_session)
71         },
72         {
73                 .ckd_cache = &lovsub_object_kmem,
74                 .ckd_name  = "lovsub_object_kmem",
75                 .ckd_size  = sizeof (struct lovsub_object)
76         },
77         {
78                 .ckd_cache = NULL
79         }
80 };
81
82 /*****************************************************************************
83  *
84  * Lov device and device type functions.
85  *
86  */
87
88 static void *lov_key_init(const struct lu_context *ctx,
89                           struct lu_context_key *key)
90 {
91         struct lov_thread_info *info;
92
93         OBD_SLAB_ALLOC_PTR_GFP(info, lov_thread_kmem, GFP_NOFS);
94         if (info == NULL)
95                 info = ERR_PTR(-ENOMEM);
96         return info;
97 }
98
99 static void lov_key_fini(const struct lu_context *ctx,
100                          struct lu_context_key *key, void *data)
101 {
102         struct lov_thread_info *info = data;
103         OBD_SLAB_FREE_PTR(info, lov_thread_kmem);
104 }
105
106 struct lu_context_key lov_key = {
107         .lct_tags = LCT_CL_THREAD,
108         .lct_init = lov_key_init,
109         .lct_fini = lov_key_fini
110 };
111
112 static void *lov_session_key_init(const struct lu_context *ctx,
113                                   struct lu_context_key *key)
114 {
115         struct lov_session *info;
116
117         OBD_SLAB_ALLOC_PTR_GFP(info, lov_session_kmem, GFP_NOFS);
118         if (info == NULL)
119                 info = ERR_PTR(-ENOMEM);
120         return info;
121 }
122
123 static void lov_session_key_fini(const struct lu_context *ctx,
124                                  struct lu_context_key *key, void *data)
125 {
126         struct lov_session *info = data;
127         OBD_SLAB_FREE_PTR(info, lov_session_kmem);
128 }
129
130 struct lu_context_key lov_session_key = {
131         .lct_tags = LCT_SESSION,
132         .lct_init = lov_session_key_init,
133         .lct_fini = lov_session_key_fini
134 };
135
136 /* type constructor/destructor: lov_type_{init,fini,start,stop}() */
137 LU_TYPE_INIT_FINI(lov, &lov_key, &lov_session_key);
138
139
140 static int lov_mdc_dev_init(const struct lu_env *env, struct lov_device *ld,
141                             struct lu_device *mdc_dev, __u32 idx, __u32 nr)
142 {
143         struct cl_device *cl;
144
145         ENTRY;
146         cl = cl_type_setup(env, &ld->ld_site, &lovsub_device_type,
147                            mdc_dev);
148         if (IS_ERR(cl))
149                 RETURN(PTR_ERR(cl));
150
151         ld->ld_md_tgts[nr].ldm_mdc = cl;
152         ld->ld_md_tgts[nr].ldm_idx = idx;
153         RETURN(0);
154 }
155
156 static struct lu_device *lov_device_fini(const struct lu_env *env,
157                                          struct lu_device *d)
158 {
159         struct lov_device *ld = lu2lov_dev(d);
160         int i;
161
162         LASSERT(ld->ld_lov != NULL);
163
164         if (ld->ld_lmv != NULL) {
165                 class_decref(ld->ld_lmv, "lov", d);
166                 ld->ld_lmv = NULL;
167         }
168
169         if (ld->ld_md_tgts != NULL) {
170                 for (i = 0; i < ld->ld_md_tgts_nr; i++) {
171                         if (ld->ld_md_tgts[i].ldm_mdc == NULL)
172                                 continue;
173
174                         cl_stack_fini(env, ld->ld_md_tgts[i].ldm_mdc);
175                         ld->ld_md_tgts[i].ldm_mdc = NULL;
176                         ld->ld_lov->lov_mdc_tgts[i].lmtd_mdc = NULL;
177                 }
178         }
179
180         if (ld->ld_target != NULL) {
181                 lov_foreach_target(ld, i) {
182                         struct lovsub_device *lsd;
183
184                         lsd = ld->ld_target[i];
185                         if (lsd != NULL) {
186                                 cl_stack_fini(env, lovsub2cl_dev(lsd));
187                                 ld->ld_target[i] = NULL;
188                         }
189                 }
190         }
191         RETURN(NULL);
192 }
193
194 static int lov_device_init(const struct lu_env *env, struct lu_device *d,
195                            const char *name, struct lu_device *next)
196 {
197         struct lov_device *ld = lu2lov_dev(d);
198         int i;
199         int rc = 0;
200
201         /* check all added already MDC subdevices and initialize them */
202         for (i = 0; i < ld->ld_md_tgts_nr; i++) {
203                 struct obd_device *mdc;
204                 __u32 idx;
205
206                 mdc = ld->ld_lov->lov_mdc_tgts[i].lmtd_mdc;
207                 idx = ld->ld_lov->lov_mdc_tgts[i].lmtd_index;
208
209                 if (mdc == NULL)
210                         continue;
211
212                 rc = lov_mdc_dev_init(env, ld, mdc->obd_lu_dev, idx, i);
213                 if (rc) {
214                         CERROR("%s: failed to add MDC %s as target: rc = %d\n",
215                                d->ld_obd->obd_name,
216                                obd_uuid2str(&mdc->obd_uuid), rc);
217                         GOTO(out_err, rc);
218                 }
219         }
220
221         if (ld->ld_target == NULL)
222                 RETURN(0);
223
224         lov_foreach_target(ld, i) {
225                 struct lovsub_device *lsd;
226                 struct cl_device *cl;
227                 struct lov_tgt_desc *desc;
228
229                 desc = ld->ld_lov->lov_tgts[i];
230                 if (desc == NULL)
231                         continue;
232
233                 cl = cl_type_setup(env, &ld->ld_site, &lovsub_device_type,
234                                    desc->ltd_obd->obd_lu_dev);
235                 if (IS_ERR(cl))
236                         GOTO(out_err, rc = PTR_ERR(cl));
237
238                 lsd = cl2lovsub_dev(cl);
239                 ld->ld_target[i] = lsd;
240         }
241         ld->ld_flags |= LOV_DEV_INITIALIZED;
242         RETURN(0);
243
244 out_err:
245         lu_device_fini(d);
246         RETURN(rc);
247 }
248
249 /* Free the lov specific data created for the back end lu_device. */
250 static struct lu_device *lov_device_free(const struct lu_env *env,
251                                          struct lu_device *d)
252 {
253         struct lov_device *ld = lu2lov_dev(d);
254         const int nr = ld->ld_target_nr;
255
256         lu_site_fini(&ld->ld_site);
257
258         cl_device_fini(lu2cl_dev(d));
259         if (ld->ld_target) {
260                 OBD_FREE(ld->ld_target, nr * sizeof ld->ld_target[0]);
261                 ld->ld_target = NULL;
262         }
263         if (ld->ld_md_tgts) {
264                 OBD_FREE(ld->ld_md_tgts,
265                          sizeof(*ld->ld_md_tgts) * LOV_MDC_TGT_MAX);
266                 ld->ld_md_tgts = NULL;
267         }
268         /* free array of MDCs */
269         if (ld->ld_lov->lov_mdc_tgts) {
270                 OBD_FREE(ld->ld_lov->lov_mdc_tgts,
271                          sizeof(*ld->ld_lov->lov_mdc_tgts) * LOV_MDC_TGT_MAX);
272                 ld->ld_lov->lov_mdc_tgts = NULL;
273         }
274
275         OBD_FREE_PTR(ld);
276         return NULL;
277 }
278
279 static void lov_cl_del_target(const struct lu_env *env, struct lu_device *dev,
280                               __u32 index)
281 {
282         struct lov_device *ld = lu2lov_dev(dev);
283         ENTRY;
284
285         if (ld->ld_target[index] != NULL) {
286                 cl_stack_fini(env, lovsub2cl_dev(ld->ld_target[index]));
287                 ld->ld_target[index] = NULL;
288         }
289         EXIT;
290 }
291
292 static int lov_expand_targets(const struct lu_env *env, struct lov_device *dev)
293 {
294         int result;
295         __u32 tgt_size;
296         __u32 sub_size;
297
298         ENTRY;
299         result = 0;
300         tgt_size = dev->ld_lov->lov_tgt_size;
301         sub_size = dev->ld_target_nr;
302         if (sub_size < tgt_size) {
303                 struct lovsub_device **newd;
304                 const size_t sz = sizeof(newd[0]);
305
306                 OBD_ALLOC(newd, tgt_size * sz);
307                 if (newd != NULL) {
308                         if (sub_size > 0) {
309                                 memcpy(newd, dev->ld_target, sub_size * sz);
310                                 OBD_FREE(dev->ld_target, sub_size * sz);
311                         }
312
313                         dev->ld_target = newd;
314                         dev->ld_target_nr = tgt_size;
315                 } else {
316                         result = -ENOMEM;
317                 }
318         }
319
320         RETURN(result);
321 }
322
323 static int lov_cl_add_target(const struct lu_env *env, struct lu_device *dev,
324                              __u32 index)
325 {
326         struct obd_device    *obd = dev->ld_obd;
327         struct lov_device    *ld  = lu2lov_dev(dev);
328         struct lov_tgt_desc  *tgt;
329         struct lovsub_device *lsd;
330         struct cl_device     *cl;
331         int rc;
332         ENTRY;
333
334         lov_tgts_getref(obd);
335
336         tgt = obd->u.lov.lov_tgts[index];
337         LASSERT(tgt != NULL);
338         LASSERT(tgt->ltd_obd != NULL);
339
340         if (!tgt->ltd_obd->obd_set_up) {
341                 CERROR("Target %s not set up\n", obd_uuid2str(&tgt->ltd_uuid));
342                 RETURN(-EINVAL);
343         }
344
345         rc = lov_expand_targets(env, ld);
346         if (rc == 0 && ld->ld_flags & LOV_DEV_INITIALIZED) {
347                 cl = cl_type_setup(env, &ld->ld_site, &lovsub_device_type,
348                                    tgt->ltd_obd->obd_lu_dev);
349                 if (!IS_ERR(cl)) {
350                         lsd = cl2lovsub_dev(cl);
351                         ld->ld_target[index] = lsd;
352                 } else {
353                         CERROR("add failed (%d), deleting %s\n", rc,
354                                obd_uuid2str(&tgt->ltd_uuid));
355                         lov_cl_del_target(env, dev, index);
356                         rc = PTR_ERR(cl);
357                 }
358         }
359
360         lov_tgts_putref(obd);
361
362         RETURN(rc);
363 }
364
365 /**
366  * Add new MDC target device in LOV.
367  *
368  * This function is part of the configuration log processing. It adds new MDC
369  * device to the MDC device array indexed by their indexes.
370  *
371  * \param[in] env       execution environment
372  * \param[in] d         LU device of LOV device
373  * \param[in] mdc       MDC device to add
374  * \param[in] idx       MDC device index
375  *
376  * \retval              0 if successful
377  * \retval              negative value on error
378  */
379 static int lov_add_mdc_target(const struct lu_env *env, struct lu_device *d,
380                               struct obd_device *mdc, __u32 idx)
381 {
382         struct lov_device *ld = lu2lov_dev(d);
383         struct obd_device *lov_obd = d->ld_obd;
384         struct obd_device *lmv_obd;
385         int next;
386         int rc = 0;
387
388         ENTRY;
389
390         LASSERT(mdc != NULL);
391         if (ld->ld_md_tgts_nr == LOV_MDC_TGT_MAX) {
392                 /* If the maximum value of LOV_MDC_TGT_MAX will become too
393                  * small then all MD target handling must be rewritten in LOD
394                  * manner, check lod_add_device() and related functionality.
395                  */
396                 CERROR("%s: cannot serve more than %d MDC devices\n",
397                        lov_obd->obd_name, LOV_MDC_TGT_MAX);
398                 RETURN(-ERANGE);
399         }
400
401         /* grab FLD from lmv, do that here, when first MDC is added
402          * to be sure LMV is set up and can be found */
403         if (ld->ld_lmv == NULL) {
404                 next = 0;
405                 while ((lmv_obd = class_devices_in_group(&lov_obd->obd_uuid,
406                                                          &next)) != NULL) {
407                         if ((strncmp(lmv_obd->obd_type->typ_name,
408                                      LUSTRE_LMV_NAME,
409                                      strlen(LUSTRE_LMV_NAME)) == 0))
410                                 break;
411                 }
412                 if (lmv_obd == NULL) {
413                         CERROR("%s: cannot find LMV OBD by UUID (%s)\n",
414                                lov_obd->obd_name,
415                                obd_uuid2str(&lmv_obd->obd_uuid));
416                         RETURN(-ENODEV);
417                 }
418                 spin_lock(&lmv_obd->obd_dev_lock);
419                 class_incref(lmv_obd, "lov", ld);
420                 spin_unlock(&lmv_obd->obd_dev_lock);
421                 ld->ld_lmv = lmv_obd;
422         }
423
424         LASSERT(lov_obd->u.lov.lov_mdc_tgts[ld->ld_md_tgts_nr].lmtd_mdc ==
425                 NULL);
426
427         if (ld->ld_flags & LOV_DEV_INITIALIZED) {
428                 rc = lov_mdc_dev_init(env, ld, mdc->obd_lu_dev, idx,
429                                       ld->ld_md_tgts_nr);
430                 if (rc) {
431                         CERROR("%s: failed to add MDC %s as target: rc = %d\n",
432                                lov_obd->obd_name, obd_uuid2str(&mdc->obd_uuid),
433                                rc);
434                         RETURN(rc);
435                 }
436         }
437
438         lov_obd->u.lov.lov_mdc_tgts[ld->ld_md_tgts_nr].lmtd_mdc = mdc;
439         lov_obd->u.lov.lov_mdc_tgts[ld->ld_md_tgts_nr].lmtd_index = idx;
440         ld->ld_md_tgts_nr++;
441
442         RETURN(rc);
443 }
444
445 static int lov_process_config(const struct lu_env *env,
446                               struct lu_device *d, struct lustre_cfg *cfg)
447 {
448         struct obd_device *obd = d->ld_obd;
449         int cmd;
450         int rc;
451         int gen;
452         u32 index;
453
454         lov_tgts_getref(obd);
455
456         cmd = cfg->lcfg_command;
457
458         rc = lov_process_config_base(d->ld_obd, cfg, &index, &gen);
459         if (rc < 0)
460                 GOTO(out, rc);
461
462         switch (cmd) {
463         case LCFG_LOV_ADD_OBD:
464         case LCFG_LOV_ADD_INA:
465                 rc = lov_cl_add_target(env, d, index);
466                 if (rc != 0)
467                         lov_del_target(d->ld_obd, index, NULL, 0);
468                 break;
469         case LCFG_LOV_DEL_OBD:
470                 lov_cl_del_target(env, d, index);
471                 break;
472         case LCFG_ADD_MDC:
473         {
474                 struct obd_device       *mdc;
475                 struct obd_uuid          tgt_uuid;
476
477                 /* modify_mdc_tgts add 0:lustre-clilmv  1:lustre-MDT0000_UUID
478                  * 2:0  3:1  4:lustre-MDT0000-mdc_UUID */
479                 if (LUSTRE_CFG_BUFLEN(cfg, 1) > sizeof(tgt_uuid.uuid))
480                         GOTO(out, rc = -EINVAL);
481
482                 obd_str2uuid(&tgt_uuid, lustre_cfg_buf(cfg, 1));
483
484                 rc = kstrtou32(lustre_cfg_buf(cfg, 2), 10, &index);
485                 if (rc)
486                         GOTO(out, rc);
487
488                 mdc = class_find_client_obd(&tgt_uuid, LUSTRE_MDC_NAME,
489                                             &obd->obd_uuid);
490                 if (mdc == NULL)
491                         GOTO(out, rc = -ENODEV);
492                 rc = lov_add_mdc_target(env, d, mdc, index);
493                 break;
494         }
495         }
496 out:
497         lov_tgts_putref(obd);
498         RETURN(rc);
499 }
500
501 static const struct lu_device_operations lov_lu_ops = {
502         .ldo_object_alloc      = lov_object_alloc,
503         .ldo_process_config    = lov_process_config,
504 };
505
506 static struct lu_device *lov_device_alloc(const struct lu_env *env,
507                                           struct lu_device_type *t,
508                                           struct lustre_cfg *cfg)
509 {
510         struct lu_device *d;
511         struct lov_device *ld;
512         struct obd_device *obd;
513         int rc;
514
515         OBD_ALLOC_PTR(ld);
516         if (ld == NULL)
517                 RETURN(ERR_PTR(-ENOMEM));
518
519         cl_device_init(&ld->ld_cl, t);
520         d = lov2lu_dev(ld);
521         d->ld_ops = &lov_lu_ops;
522
523         /* setup the LOV OBD */
524         obd = class_name2obd(lustre_cfg_string(cfg, 0));
525         LASSERT(obd != NULL);
526         rc = lov_setup(obd, cfg);
527         if (rc)
528                 GOTO(out, rc);
529
530         /* Alloc MDC devices array */
531         /* XXX: need dynamic allocation at some moment */
532         OBD_ALLOC(ld->ld_md_tgts, sizeof(*ld->ld_md_tgts) * LOV_MDC_TGT_MAX);
533         if (ld->ld_md_tgts == NULL)
534                 GOTO(out, rc = -ENOMEM);
535
536         ld->ld_md_tgts_nr = 0;
537
538         ld->ld_lov = &obd->u.lov;
539         OBD_ALLOC(ld->ld_lov->lov_mdc_tgts,
540                   sizeof(*ld->ld_lov->lov_mdc_tgts) * LOV_MDC_TGT_MAX);
541         if (ld->ld_lov->lov_mdc_tgts == NULL)
542                 GOTO(out_md_tgts, rc = -ENOMEM);
543
544         rc = lu_site_init(&ld->ld_site, d);
545         if (rc != 0)
546                 GOTO(out_mdc_tgts, rc);
547
548         rc = lu_site_init_finish(&ld->ld_site);
549         if (rc != 0)
550                 GOTO(out_site, rc);
551
552         RETURN(d);
553 out_site:
554         lu_site_fini(&ld->ld_site);
555 out_mdc_tgts:
556         OBD_FREE(ld->ld_lov->lov_mdc_tgts,
557                  sizeof(*ld->ld_lov->lov_mdc_tgts) * LOV_MDC_TGT_MAX);
558         ld->ld_lov->lov_mdc_tgts = NULL;
559 out_md_tgts:
560         OBD_FREE(ld->ld_md_tgts, sizeof(*ld->ld_md_tgts) * LOV_MDC_TGT_MAX);
561         ld->ld_md_tgts = NULL;
562 out:
563         OBD_FREE_PTR(ld);
564
565         return ERR_PTR(rc);
566 }
567
568 static const struct lu_device_type_operations lov_device_type_ops = {
569         .ldto_init = lov_type_init,
570         .ldto_fini = lov_type_fini,
571
572         .ldto_start = lov_type_start,
573         .ldto_stop  = lov_type_stop,
574
575         .ldto_device_alloc = lov_device_alloc,
576         .ldto_device_free  = lov_device_free,
577
578         .ldto_device_init    = lov_device_init,
579         .ldto_device_fini    = lov_device_fini
580 };
581
582 struct lu_device_type lov_device_type = {
583         .ldt_tags     = LU_DEVICE_CL,
584         .ldt_name     = LUSTRE_LOV_NAME,
585         .ldt_ops      = &lov_device_type_ops,
586         .ldt_ctx_tags = LCT_CL_THREAD
587 };
588
589 /** @} lov */