Whamcloud - gitweb
LU-8802 obd: remove MAX_OBD_DEVICES
[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  *
31  * Implementation of cl_device and cl_device_type for LOV layer.
32  *
33  *   Author: Nikita Danilov <nikita.danilov@sun.com>
34  */
35
36 #define DEBUG_SUBSYSTEM S_LOV
37
38 /* class_name2obd() */
39 #include <obd_class.h>
40
41 #include "lov_cl_internal.h"
42
43 struct kmem_cache *lov_lock_kmem;
44 struct kmem_cache *lov_object_kmem;
45 struct kmem_cache *lov_thread_kmem;
46 struct kmem_cache *lov_session_kmem;
47
48 struct kmem_cache *lovsub_object_kmem;
49
50 struct lu_kmem_descr lov_caches[] = {
51         {
52                 .ckd_cache = &lov_lock_kmem,
53                 .ckd_name  = "lov_lock_kmem",
54                 .ckd_size  = sizeof(struct lov_lock)
55         },
56         {
57                 .ckd_cache = &lov_object_kmem,
58                 .ckd_name  = "lov_object_kmem",
59                 .ckd_size  = sizeof(struct lov_object)
60         },
61         {
62                 .ckd_cache = &lov_thread_kmem,
63                 .ckd_name  = "lov_thread_kmem",
64                 .ckd_size  = sizeof(struct lov_thread_info)
65         },
66         {
67                 .ckd_cache = &lov_session_kmem,
68                 .ckd_name  = "lov_session_kmem",
69                 .ckd_size  = sizeof(struct lov_session)
70         },
71         {
72                 .ckd_cache = &lovsub_object_kmem,
73                 .ckd_name  = "lovsub_object_kmem",
74                 .ckd_size  = sizeof(struct lovsub_object)
75         },
76         {
77                 .ckd_cache = NULL
78         }
79 };
80
81 /*****************************************************************************
82  *
83  * Lov device and device type functions.
84  *
85  */
86
87 static void *lov_key_init(const struct lu_context *ctx,
88                           struct lu_context_key *key)
89 {
90         struct lov_thread_info *info;
91
92         OBD_SLAB_ALLOC_PTR_GFP(info, lov_thread_kmem, GFP_NOFS);
93         if (!info)
94                 info = ERR_PTR(-ENOMEM);
95         return info;
96 }
97
98 static void lov_key_fini(const struct lu_context *ctx,
99                          struct lu_context_key *key, void *data)
100 {
101         struct lov_thread_info *info = data;
102         OBD_SLAB_FREE_PTR(info, lov_thread_kmem);
103 }
104
105 struct lu_context_key lov_key = {
106         .lct_tags = LCT_CL_THREAD,
107         .lct_init = lov_key_init,
108         .lct_fini = lov_key_fini
109 };
110
111 static void *lov_session_key_init(const struct lu_context *ctx,
112                                   struct lu_context_key *key)
113 {
114         struct lov_session *info;
115
116         OBD_SLAB_ALLOC_PTR_GFP(info, lov_session_kmem, GFP_NOFS);
117         if (!info)
118                 info = ERR_PTR(-ENOMEM);
119         return info;
120 }
121
122 static void lov_session_key_fini(const struct lu_context *ctx,
123                                  struct lu_context_key *key, void *data)
124 {
125         struct lov_session *info = data;
126
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) {
165                 class_decref(ld->ld_lmv, "lov", d);
166                 ld->ld_lmv = NULL;
167         }
168
169         if (ld->ld_md_tgts) {
170                 for (i = 0; i < ld->ld_md_tgts_nr; i++) {
171                         if (!ld->ld_md_tgts[i].ldm_mdc)
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) {
181                 lov_foreach_target(ld, i) {
182                         struct lovsub_device *lsd;
183
184                         lsd = ld->ld_target[i];
185                         if (lsd) {
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)
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)
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)
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_PTR_ARRAY(ld->ld_target, nr);
261                 ld->ld_target = NULL;
262         }
263         if (ld->ld_md_tgts) {
264                 OBD_FREE_PTR_ARRAY(ld->ld_md_tgts, LOV_MDC_TGT_MAX);
265                 ld->ld_md_tgts = NULL;
266         }
267         /* free array of MDCs */
268         if (ld->ld_lov->lov_mdc_tgts) {
269                 OBD_FREE_PTR_ARRAY(ld->ld_lov->lov_mdc_tgts, LOV_MDC_TGT_MAX);
270                 ld->ld_lov->lov_mdc_tgts = NULL;
271         }
272
273         OBD_FREE_PTR(ld);
274         return NULL;
275 }
276
277 static void lov_cl_del_target(const struct lu_env *env, struct lu_device *dev,
278                               __u32 index)
279 {
280         struct lov_device *ld = lu2lov_dev(dev);
281
282         ENTRY;
283
284         if (ld->ld_target[index]) {
285                 cl_stack_fini(env, lovsub2cl_dev(ld->ld_target[index]));
286                 ld->ld_target[index] = NULL;
287         }
288         EXIT;
289 }
290
291 static int lov_expand_targets(const struct lu_env *env, struct lov_device *dev)
292 {
293         int result;
294         __u32 tgt_size;
295         __u32 sub_size;
296
297         ENTRY;
298         result = 0;
299         tgt_size = dev->ld_lov->lov_tgt_size;
300         sub_size = dev->ld_target_nr;
301         if (sub_size < tgt_size) {
302                 struct lovsub_device **newd;
303                 const size_t sz = sizeof(newd[0]);
304
305                 OBD_ALLOC_PTR_ARRAY(newd, tgt_size);
306                 if (newd) {
307                         if (sub_size > 0) {
308                                 memcpy(newd, dev->ld_target, sub_size * sz);
309                                 OBD_FREE(dev->ld_target, sub_size * sz);
310                         }
311
312                         dev->ld_target = newd;
313                         dev->ld_target_nr = tgt_size;
314                 } else {
315                         result = -ENOMEM;
316                 }
317         }
318
319         RETURN(result);
320 }
321
322 static int lov_cl_add_target(const struct lu_env *env, struct lu_device *dev,
323                              __u32 index)
324 {
325         struct obd_device    *obd = dev->ld_obd;
326         struct lov_device    *ld  = lu2lov_dev(dev);
327         struct lov_tgt_desc  *tgt;
328         struct lovsub_device *lsd;
329         struct cl_device     *cl;
330         int rc;
331
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 = NULL;
385         unsigned long dev_no = 0;
386         int rc = 0;
387
388         ENTRY;
389
390         LASSERT(mdc != NULL);
391         if (ld->ld_md_tgts_nr == LOV_MDC_TGT_MAX) {
392                 /*
393                  * If the maximum value of LOV_MDC_TGT_MAX will become too
394                  * small then all MD target handling must be rewritten in LOD
395                  * manner, check lod_add_device() and related functionality.
396                  */
397                 CERROR("%s: cannot serve more than %d MDC devices\n",
398                        lov_obd->obd_name, LOV_MDC_TGT_MAX);
399                 RETURN(-ERANGE);
400         }
401
402         /*
403          * grab FLD from lmv, do that here, when first MDC is added
404          * to be sure LMV is set up and can be found
405          */
406         if (!ld->ld_lmv) {
407                 obd_device_lock();
408                 obd_device_for_each_uuid(dev_no, lmv_obd,
409                                          &lov_obd->obd_uuid) {
410                         if ((strncmp(lmv_obd->obd_type->typ_name,
411                                      LUSTRE_LMV_NAME,
412                                      strlen(LUSTRE_LMV_NAME)) == 0)) {
413                                 spin_lock(&lmv_obd->obd_dev_lock);
414                                 class_incref(lmv_obd, "lov", ld);
415                                 spin_unlock(&lmv_obd->obd_dev_lock);
416                                 break;
417                         }
418                 }
419                 obd_device_unlock();
420
421                 if (!lmv_obd) {
422                         CERROR("%s: cannot find LMV OBD by UUID (%s)\n",
423                                lov_obd->obd_name,
424                                obd_uuid2str(&lmv_obd->obd_uuid));
425                         RETURN(-ENODEV);
426                 }
427                 ld->ld_lmv = lmv_obd;
428         }
429
430         LASSERT(lov_obd->u.lov.lov_mdc_tgts[ld->ld_md_tgts_nr].lmtd_mdc ==
431                 NULL);
432
433         if (ld->ld_flags & LOV_DEV_INITIALIZED) {
434                 rc = lov_mdc_dev_init(env, ld, mdc->obd_lu_dev, idx,
435                                       ld->ld_md_tgts_nr);
436                 if (rc) {
437                         CERROR("%s: failed to add MDC %s as target: rc = %d\n",
438                                lov_obd->obd_name, obd_uuid2str(&mdc->obd_uuid),
439                                rc);
440                         RETURN(rc);
441                 }
442         }
443
444         lov_obd->u.lov.lov_mdc_tgts[ld->ld_md_tgts_nr].lmtd_mdc = mdc;
445         lov_obd->u.lov.lov_mdc_tgts[ld->ld_md_tgts_nr].lmtd_index = idx;
446         ld->ld_md_tgts_nr++;
447
448         RETURN(rc);
449 }
450
451 static int lov_process_config(const struct lu_env *env,
452                               struct lu_device *d, struct lustre_cfg *cfg)
453 {
454         struct obd_device *obd = d->ld_obd;
455         int cmd;
456         int rc;
457         int gen;
458         u32 index;
459
460         lov_tgts_getref(obd);
461
462         cmd = cfg->lcfg_command;
463
464         rc = lov_process_config_base(d->ld_obd, cfg, &index, &gen);
465         if (rc < 0)
466                 GOTO(out, rc);
467
468         switch (cmd) {
469         case LCFG_LOV_ADD_OBD:
470         case LCFG_LOV_ADD_INA:
471                 rc = lov_cl_add_target(env, d, index);
472                 if (rc != 0)
473                         lov_del_target(d->ld_obd, index, NULL, 0);
474                 break;
475         case LCFG_LOV_DEL_OBD:
476                 lov_cl_del_target(env, d, index);
477                 break;
478         case LCFG_ADD_MDC:
479         {
480                 struct obd_device *mdc;
481                 struct obd_uuid tgt_uuid;
482
483                 /*
484                  * modify_mdc_tgts add 0:lustre-clilmv  1:lustre-MDT0000_UUID
485                  * 2:0  3:1  4:lustre-MDT0000-mdc_UUID
486                  */
487                 if (LUSTRE_CFG_BUFLEN(cfg, 1) > sizeof(tgt_uuid.uuid))
488                         GOTO(out, rc = -EINVAL);
489
490                 obd_str2uuid(&tgt_uuid, lustre_cfg_buf(cfg, 1));
491
492                 rc = kstrtou32(lustre_cfg_buf(cfg, 2), 10, &index);
493                 if (rc)
494                         GOTO(out, rc);
495
496                 mdc = class_find_client_obd(&tgt_uuid, LUSTRE_MDC_NAME,
497                                             &obd->obd_uuid);
498                 if (!mdc)
499                         GOTO(out, rc = -ENODEV);
500                 rc = lov_add_mdc_target(env, d, mdc, index);
501                 break;
502         }
503         }
504 out:
505         lov_tgts_putref(obd);
506         RETURN(rc);
507 }
508
509 static const struct lu_device_operations lov_lu_ops = {
510         .ldo_object_alloc      = lov_object_alloc,
511         .ldo_process_config    = lov_process_config,
512 };
513
514 static struct lu_device *lov_device_alloc(const struct lu_env *env,
515                                           struct lu_device_type *t,
516                                           struct lustre_cfg *cfg)
517 {
518         struct lu_device *d;
519         struct lov_device *ld;
520         struct obd_device *obd;
521         int rc;
522
523         OBD_ALLOC_PTR(ld);
524         if (!ld)
525                 RETURN(ERR_PTR(-ENOMEM));
526
527         cl_device_init(&ld->ld_cl, t);
528         d = lov2lu_dev(ld);
529         d->ld_ops = &lov_lu_ops;
530
531         /* setup the LOV OBD */
532         obd = class_name2obd(lustre_cfg_string(cfg, 0));
533         LASSERT(obd != NULL);
534         rc = lov_setup(obd, cfg);
535         if (rc)
536                 GOTO(out, rc);
537
538         /* Alloc MDC devices array */
539         /* XXX: need dynamic allocation at some moment */
540         OBD_ALLOC_PTR_ARRAY(ld->ld_md_tgts, LOV_MDC_TGT_MAX);
541         if (!ld->ld_md_tgts)
542                 GOTO(out, rc = -ENOMEM);
543
544         ld->ld_md_tgts_nr = 0;
545
546         ld->ld_lov = &obd->u.lov;
547         OBD_ALLOC_PTR_ARRAY(ld->ld_lov->lov_mdc_tgts, LOV_MDC_TGT_MAX);
548         if (!ld->ld_lov->lov_mdc_tgts)
549                 GOTO(out_md_tgts, rc = -ENOMEM);
550
551         rc = lu_site_init(&ld->ld_site, d);
552         if (rc != 0)
553                 GOTO(out_mdc_tgts, rc);
554
555         rc = lu_site_init_finish(&ld->ld_site);
556         if (rc != 0)
557                 GOTO(out_site, rc);
558
559         RETURN(d);
560 out_site:
561         lu_site_fini(&ld->ld_site);
562 out_mdc_tgts:
563         OBD_FREE_PTR_ARRAY(ld->ld_lov->lov_mdc_tgts, LOV_MDC_TGT_MAX);
564         ld->ld_lov->lov_mdc_tgts = NULL;
565 out_md_tgts:
566         OBD_FREE_PTR_ARRAY(ld->ld_md_tgts, LOV_MDC_TGT_MAX);
567         ld->ld_md_tgts = NULL;
568 out:
569         OBD_FREE_PTR(ld);
570
571         return ERR_PTR(rc);
572 }
573
574 static const struct lu_device_type_operations lov_device_type_ops = {
575         .ldto_init = lov_type_init,
576         .ldto_fini = lov_type_fini,
577
578         .ldto_start = lov_type_start,
579         .ldto_stop  = lov_type_stop,
580
581         .ldto_device_alloc = lov_device_alloc,
582         .ldto_device_free  = lov_device_free,
583
584         .ldto_device_init    = lov_device_init,
585         .ldto_device_fini    = lov_device_fini
586 };
587
588 struct lu_device_type lov_device_type = {
589         .ldt_tags     = LU_DEVICE_CL,
590         .ldt_name     = LUSTRE_LOV_NAME,
591         .ldt_ops      = &lov_device_type_ops,
592         .ldt_ctx_tags = LCT_CL_THREAD
593 };
594
595 /** @} lov */