Whamcloud - gitweb
LU-15486 lod: mirroring a plain file in mirrored-layout dir
[fs/lustre-release.git] / lustre / lod / lod_lov.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,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License version 2 for more details.  A copy is
14  * included in the COPYING 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  2009 Sun Microsystems, Inc. All rights reserved
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * lustre/lod/lod_lov.c
30  *
31  * A set of helpers to maintain Logical Object Volume (LOV)
32  * Extended Attribute (EA) and known OST targets
33  *
34  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
35  */
36
37 #define DEBUG_SUBSYSTEM S_MDS
38
39 #include <obd_class.h>
40 #include <lustre_lfsck.h>
41 #include <lustre_lmv.h>
42 #include <lustre_swab.h>
43
44 #include "lod_internal.h"
45
46 /**
47  * Increase reference count on the target table.
48  *
49  * Increase reference count on the target table usage to prevent racing with
50  * addition/deletion. Any function that expects the table to remain
51  * stationary must take a ref.
52  *
53  * \param[in] ltd       target table (lod_ost_descs or lod_mdt_descs)
54  */
55 void lod_getref(struct lod_tgt_descs *ltd)
56 {
57         down_read(&ltd->ltd_rw_sem);
58         mutex_lock(&ltd->ltd_mutex);
59         ltd->ltd_refcount++;
60         mutex_unlock(&ltd->ltd_mutex);
61 }
62
63 /**
64  * Decrease reference count on the target table.
65  *
66  * Companion of lod_getref() to release a reference on the target table.
67  * If this is the last reference and the OST entry was scheduled for deletion,
68  * the descriptor is removed from the table.
69  *
70  * \param[in] lod       LOD device from which we release a reference
71  * \param[in] ltd       target table (lod_ost_descs or lod_mdt_descs)
72  */
73 void lod_putref(struct lod_device *lod, struct lod_tgt_descs *ltd)
74 {
75         mutex_lock(&ltd->ltd_mutex);
76         ltd->ltd_refcount--;
77         if (ltd->ltd_refcount == 0 && ltd->ltd_death_row) {
78                 struct lod_tgt_desc *tgt_desc, *tmp;
79                 LIST_HEAD(kill);
80
81                 CDEBUG(D_CONFIG, "destroying %d ltd desc\n",
82                        ltd->ltd_death_row);
83
84                 ltd_foreach_tgt_safe(ltd, tgt_desc, tmp) {
85                         LASSERT(tgt_desc);
86                         if (!tgt_desc->ltd_reap)
87                                 continue;
88
89                         list_add(&tgt_desc->ltd_kill, &kill);
90                         lu_tgt_pool_remove(&ltd->ltd_tgt_pool,
91                                            tgt_desc->ltd_index);
92                         ltd_del_tgt(ltd, tgt_desc);
93                         ltd->ltd_death_row--;
94                 }
95                 mutex_unlock(&ltd->ltd_mutex);
96                 up_read(&ltd->ltd_rw_sem);
97
98                 list_for_each_entry_safe(tgt_desc, tmp, &kill, ltd_kill) {
99                         int rc;
100
101                         list_del(&tgt_desc->ltd_kill);
102                         rc = obd_disconnect(tgt_desc->ltd_exp);
103                         if (rc)
104                                 CERROR("%s: failed to disconnect %s: rc = %d\n",
105                                        lod2obd(lod)->obd_name,
106                                        obd_uuid2str(&tgt_desc->ltd_uuid), rc);
107                         OBD_FREE_PTR(tgt_desc);
108                 }
109         } else {
110                 mutex_unlock(&ltd->ltd_mutex);
111                 up_read(&ltd->ltd_rw_sem);
112         }
113 }
114
115 /**
116  * Connect LOD to a new OSP and add it to the target table.
117  *
118  * Connect to the OSP device passed, initialize all the internal
119  * structures related to the device and add it to the target table.
120  *
121  * \param[in] env               execution environment for this thread
122  * \param[in] lod               LOD device to be connected to the new OSP
123  * \param[in] osp               name of OSP device name to be added
124  * \param[in] index             index of the new target
125  * \param[in] gen               target's generation number
126  * \param[in] tgt_index         OSP's group
127  * \param[in] type              type of device (mdc or osc)
128  * \param[in] active            state of OSP: 0 - inactive, 1 - active
129  *
130  * \retval                      0 if added successfully
131  * \retval                      negative error number on failure
132  */
133 int lod_add_device(const struct lu_env *env, struct lod_device *lod,
134                    char *osp, unsigned index, unsigned gen, int tgt_index,
135                    char *type, int active)
136 {
137         struct obd_connect_data *data = NULL;
138         struct obd_export       *exp = NULL;
139         struct obd_device       *obd;
140         struct lu_device        *lu_dev;
141         struct dt_device        *dt_dev;
142         int                      rc;
143         struct lod_tgt_desc     *tgt_desc;
144         struct lod_tgt_descs    *ltd;
145         struct lustre_cfg       *lcfg;
146         struct obd_uuid         obd_uuid;
147         bool                    for_ost;
148         bool connected = false;
149         ENTRY;
150
151         CDEBUG(D_CONFIG, "osp:%s idx:%d gen:%d\n", osp, index, gen);
152
153         if (gen <= 0) {
154                 CERROR("request to add OBD %s with invalid generation: %d\n",
155                        osp, gen);
156                 RETURN(-EINVAL);
157         }
158
159         obd_str2uuid(&obd_uuid, osp);
160
161         obd = class_find_client_obd(&obd_uuid, LUSTRE_OSP_NAME,
162                                 &lod->lod_dt_dev.dd_lu_dev.ld_obd->obd_uuid);
163         if (obd == NULL) {
164                 CERROR("can't find %s device\n", osp);
165                 RETURN(-EINVAL);
166         }
167
168         LASSERT(obd->obd_lu_dev != NULL);
169         LASSERT(obd->obd_lu_dev->ld_site == lod->lod_dt_dev.dd_lu_dev.ld_site);
170
171         lu_dev = obd->obd_lu_dev;
172         dt_dev = lu2dt_dev(lu_dev);
173
174         OBD_ALLOC_PTR(data);
175         if (data == NULL)
176                 GOTO(out_cleanup, rc = -ENOMEM);
177
178         data->ocd_connect_flags = OBD_CONNECT_INDEX | OBD_CONNECT_VERSION;
179         data->ocd_version = LUSTRE_VERSION_CODE;
180         data->ocd_index = index;
181
182         if (strcmp(LUSTRE_OSC_NAME, type) == 0) {
183                 for_ost = true;
184                 data->ocd_connect_flags |= OBD_CONNECT_AT |
185                                            OBD_CONNECT_FULL20 |
186                                            OBD_CONNECT_INDEX |
187 #ifdef HAVE_LRU_RESIZE_SUPPORT
188                                            OBD_CONNECT_LRU_RESIZE |
189 #endif
190                                            OBD_CONNECT_MDS |
191                                            OBD_CONNECT_REQPORTAL |
192                                            OBD_CONNECT_SKIP_ORPHAN |
193                                            OBD_CONNECT_FID |
194                                            OBD_CONNECT_LVB_TYPE |
195                                            OBD_CONNECT_VERSION |
196                                            OBD_CONNECT_PINGLESS |
197                                            OBD_CONNECT_LFSCK |
198                                            OBD_CONNECT_BULK_MBITS;
199
200                 data->ocd_group = tgt_index;
201                 ltd = &lod->lod_ost_descs;
202         } else {
203                 struct obd_import *imp = obd->u.cli.cl_import;
204
205                 for_ost = false;
206                 data->ocd_ibits_known = MDS_INODELOCK_UPDATE;
207                 data->ocd_connect_flags |= OBD_CONNECT_ACL |
208                                            OBD_CONNECT_IBITS |
209                                            OBD_CONNECT_MDS_MDS |
210                                            OBD_CONNECT_MULTIMODRPCS |
211                                            OBD_CONNECT_FID |
212                                            OBD_CONNECT_AT |
213                                            OBD_CONNECT_FULL20 |
214                                            OBD_CONNECT_LFSCK |
215                                            OBD_CONNECT_BULK_MBITS;
216                 spin_lock(&imp->imp_lock);
217                 imp->imp_server_timeout = 1;
218                 spin_unlock(&imp->imp_lock);
219                 imp->imp_client->cli_request_portal = OUT_PORTAL;
220                 CDEBUG(D_OTHER, "%s: Set 'mds' portal and timeout\n",
221                       obd->obd_name);
222                 ltd = &lod->lod_mdt_descs;
223         }
224
225         rc = obd_connect(env, &exp, obd, &obd->obd_uuid, data, NULL);
226         OBD_FREE_PTR(data);
227         if (rc) {
228                 CERROR("%s: cannot connect to next dev %s (%d)\n",
229                        obd->obd_name, osp, rc);
230                 GOTO(out_cleanup, rc);
231         }
232         connected = true;
233
234         /* Allocate ost descriptor and fill it */
235         OBD_ALLOC_PTR(tgt_desc);
236         if (!tgt_desc)
237                 GOTO(out_cleanup, rc = -ENOMEM);
238
239         tgt_desc->ltd_tgt    = dt_dev;
240         tgt_desc->ltd_exp    = exp;
241         tgt_desc->ltd_uuid   = obd->u.cli.cl_target_uuid;
242         tgt_desc->ltd_gen    = gen;
243         tgt_desc->ltd_index  = index;
244         tgt_desc->ltd_active = active;
245
246         down_write(&ltd->ltd_rw_sem);
247         mutex_lock(&ltd->ltd_mutex);
248         rc = ltd_add_tgt(ltd, tgt_desc);
249         if (rc)
250                 GOTO(out_mutex, rc);
251
252         rc = lu_qos_add_tgt(&ltd->ltd_qos, tgt_desc);
253         if (rc)
254                 GOTO(out_del_tgt, rc);
255
256         rc = lu_tgt_pool_add(&ltd->ltd_tgt_pool, index,
257                           ltd->ltd_lov_desc.ld_tgt_count);
258         if (rc) {
259                 CERROR("%s: can't set up pool, failed with %d\n",
260                        obd->obd_name, rc);
261                 GOTO(out_del_tgt, rc);
262         }
263
264         mutex_unlock(&ltd->ltd_mutex);
265         up_write(&ltd->ltd_rw_sem);
266
267         if (lod->lod_recovery_completed)
268                 lu_dev->ld_ops->ldo_recovery_complete(env, lu_dev);
269
270         if (!for_ost && lod->lod_initialized) {
271                 rc = lod_sub_init_llog(env, lod, tgt_desc->ltd_tgt);
272                 if (rc != 0) {
273                         CERROR("%s: cannot start llog on %s:rc = %d\n",
274                                lod2obd(lod)->obd_name, osp, rc);
275                         GOTO(out_ltd, rc);
276                 }
277         }
278
279         rc = lfsck_add_target(env, lod->lod_child, dt_dev, exp, index, for_ost);
280         if (rc != 0) {
281                 CERROR("Fail to add LFSCK target: name = %s, type = %s, "
282                        "index = %u, rc = %d\n", osp, type, index, rc);
283                 GOTO(out_fini_llog, rc);
284         }
285         RETURN(rc);
286 out_fini_llog:
287         lod_sub_fini_llog(env, tgt_desc->ltd_tgt,
288                           &tgt_desc->ltd_recovery_task);
289 out_ltd:
290         down_write(&ltd->ltd_rw_sem);
291         mutex_lock(&ltd->ltd_mutex);
292         lu_tgt_pool_remove(&ltd->ltd_tgt_pool, index);
293 out_del_tgt:
294         ltd_del_tgt(ltd, tgt_desc);
295 out_mutex:
296         mutex_unlock(&ltd->ltd_mutex);
297         up_write(&ltd->ltd_rw_sem);
298         OBD_FREE_PTR(tgt_desc);
299 out_cleanup:
300         /* XXX OSP needs us to send down LCFG_CLEANUP because it uses
301          * objects from the MDT stack. See LU-7184. */
302         lcfg = &lod_env_info(env)->lti_lustre_cfg;
303         memset(lcfg, 0, sizeof(*lcfg));
304         lcfg->lcfg_version = LUSTRE_CFG_VERSION;
305         lcfg->lcfg_command = LCFG_CLEANUP;
306         lu_dev->ld_ops->ldo_process_config(env, lu_dev, lcfg);
307
308         if (connected)
309                 obd_disconnect(exp);
310
311         return rc;
312 }
313
314 /**
315  * Schedule target removal from the target table.
316  *
317  * Mark the device as dead. The device is not removed here because it may
318  * still be in use. The device will be removed in lod_putref() when the
319  * last reference is released.
320  *
321  * \param[in] env               execution environment for this thread
322  * \param[in] lod               LOD device the target table belongs to
323  * \param[in] ltd               target table
324  * \param[in] tgt               target
325  */
326 static void __lod_del_device(const struct lu_env *env, struct lod_device *lod,
327                              struct lod_tgt_descs *ltd, struct lu_tgt_desc *tgt)
328 {
329         lfsck_del_target(env, lod->lod_child, tgt->ltd_tgt, tgt->ltd_index,
330                          !ltd->ltd_is_mdt);
331
332         if (!tgt->ltd_reap) {
333                 tgt->ltd_reap = 1;
334                 ltd->ltd_death_row++;
335         }
336 }
337
338 /**
339  * Schedule removal of all the targets from the given target table.
340  *
341  * See more details in the description for __lod_del_device()
342  *
343  * \param[in] env               execution environment for this thread
344  * \param[in] lod               LOD device the target table belongs to
345  * \param[in] ltd               target table
346  *
347  * \retval                      0 always
348  */
349 int lod_fini_tgt(const struct lu_env *env, struct lod_device *lod,
350                  struct lod_tgt_descs *ltd)
351 {
352         struct lu_tgt_desc *tgt;
353
354         if (ltd->ltd_tgts_size <= 0)
355                 return 0;
356
357         lod_getref(ltd);
358         mutex_lock(&ltd->ltd_mutex);
359         ltd_foreach_tgt(ltd, tgt)
360                 __lod_del_device(env, lod, ltd, tgt);
361         mutex_unlock(&ltd->ltd_mutex);
362         lod_putref(lod, ltd);
363
364         lu_tgt_descs_fini(ltd);
365
366         return 0;
367 }
368
369 /**
370  * Remove device by name.
371  *
372  * Remove a device identified by \a osp from the target table. Given
373  * the device can be in use, the real deletion happens in lod_putref().
374  *
375  * \param[in] env               execution environment for this thread
376  * \param[in] lod               LOD device to be connected to the new OSP
377  * \param[in] ltd               target table
378  * \param[in] osp               name of OSP device to be removed
379  * \param[in] idx               index of the target
380  * \param[in] gen               generation number, not used currently
381  *
382  * \retval                      0 if the device was scheduled for removal
383  * \retval                      -EINVAL if no device was found
384  */
385 int lod_del_device(const struct lu_env *env, struct lod_device *lod,
386                    struct lod_tgt_descs *ltd, char *osp, unsigned int idx,
387                    unsigned int gen)
388 {
389         struct obd_device *obd;
390         struct lu_tgt_desc *tgt;
391         struct obd_uuid uuid;
392         int rc = 0;
393
394         ENTRY;
395
396         CDEBUG(D_CONFIG, "osp:%s idx:%d gen:%d\n", osp, idx, gen);
397
398         obd_str2uuid(&uuid, osp);
399
400         obd = class_find_client_obd(&uuid, LUSTRE_OSP_NAME,
401                                    &lod->lod_dt_dev.dd_lu_dev.ld_obd->obd_uuid);
402         if (obd == NULL) {
403                 CERROR("can't find %s device\n", osp);
404                 RETURN(-EINVAL);
405         }
406
407         if (gen <= 0) {
408                 CERROR("%s: request to remove OBD %s with invalid generation %d"
409                        "\n", obd->obd_name, osp, gen);
410                 RETURN(-EINVAL);
411         }
412
413         obd_str2uuid(&uuid,  osp);
414
415         lod_getref(ltd);
416         mutex_lock(&ltd->ltd_mutex);
417         tgt = LTD_TGT(ltd, idx);
418         /* check that the index is allocated in the bitmap */
419         if (!test_bit(idx, ltd->ltd_tgt_bitmap) || !tgt) {
420                 CERROR("%s: device %d is not set up\n", obd->obd_name, idx);
421                 GOTO(out, rc = -EINVAL);
422         }
423
424         /* check that the UUID matches */
425         if (!obd_uuid_equals(&uuid, &tgt->ltd_uuid)) {
426                 CERROR("%s: LOD target UUID %s at index %d does not match %s\n",
427                        obd->obd_name, obd_uuid2str(&tgt->ltd_uuid), idx, osp);
428                 GOTO(out, rc = -EINVAL);
429         }
430
431         __lod_del_device(env, lod, ltd, tgt);
432         EXIT;
433 out:
434         mutex_unlock(&ltd->ltd_mutex);
435         lod_putref(lod, ltd);
436         return(rc);
437 }
438
439 /**
440  * Resize per-thread storage to hold specified size.
441  *
442  * A helper function to resize per-thread temporary storage. This storage
443  * is used to process LOV/LVM EAs and may be quite large. We do not want to
444  * allocate/release it every time, so instead we put it into the env and
445  * reallocate on demand. The memory is released when the correspondent thread
446  * is finished.
447  *
448  * \param[in] info              LOD-specific storage in the environment
449  * \param[in] size              new size to grow the buffer to
450
451  * \retval                      0 on success, -ENOMEM if reallocation failed
452  */
453 int lod_ea_store_resize(struct lod_thread_info *info, size_t size)
454 {
455         __u32 round = size_roundup_power2(size);
456
457         if (info->lti_ea_store) {
458                 LASSERT(info->lti_ea_store_size);
459                 LASSERT(info->lti_ea_store_size < round);
460                 CDEBUG(D_INFO, "EA store size %d is not enough, need %d\n",
461                        info->lti_ea_store_size, round);
462                 OBD_FREE_LARGE(info->lti_ea_store, info->lti_ea_store_size);
463                 info->lti_ea_store = NULL;
464                 info->lti_ea_store_size = 0;
465         }
466
467         OBD_ALLOC_LARGE(info->lti_ea_store, round);
468         if (info->lti_ea_store == NULL)
469                 RETURN(-ENOMEM);
470         info->lti_ea_store_size = round;
471
472         RETURN(0);
473 }
474
475 static void lod_free_comp_buffer(struct lod_layout_component *entries,
476                                  __u16 count, __u32 bufsize)
477 {
478         struct lod_layout_component *entry;
479         int i;
480
481         for (i = 0; i < count; i++) {
482                 entry = &entries[i];
483                 if (entry->llc_pool != NULL)
484                         lod_set_pool(&entry->llc_pool, NULL);
485                 if (entry->llc_ostlist.op_array)
486                         OBD_FREE(entry->llc_ostlist.op_array,
487                                  entry->llc_ostlist.op_size);
488                 LASSERT(entry->llc_stripe == NULL);
489                 LASSERT(entry->llc_stripes_allocated == 0);
490         }
491
492         if (bufsize != 0)
493                 OBD_FREE_LARGE(entries, bufsize);
494 }
495
496 void lod_free_def_comp_entries(struct lod_default_striping *lds)
497 {
498         lod_free_comp_buffer(lds->lds_def_comp_entries,
499                              lds->lds_def_comp_size_cnt,
500                              size_roundup_power2(
501                                      sizeof(*lds->lds_def_comp_entries) *
502                                      lds->lds_def_comp_size_cnt));
503         lds->lds_def_comp_entries = NULL;
504         lds->lds_def_comp_cnt = 0;
505         lds->lds_def_striping_is_composite = 0;
506         lds->lds_def_comp_size_cnt = 0;
507 }
508
509 /**
510  * Resize per-thread storage to hold default striping component entries
511  *
512  * A helper function to resize per-thread temporary storage. This storage
513  * is used to hold default LOV/LVM EAs and may be quite large. We do not want
514  * to allocate/release it every time, so instead we put it into the env and
515  * reallocate it on demand. The memory is released when the correspondent
516  * thread is finished.
517  *
518  * \param[in,out] lds           default striping
519  * \param[in] count             new component count to grow the buffer to
520
521  * \retval                      0 on success, -ENOMEM if reallocation failed
522  */
523 int lod_def_striping_comp_resize(struct lod_default_striping *lds, __u16 count)
524 {
525         struct lod_layout_component *entries;
526         __u32 new = size_roundup_power2(sizeof(*lds->lds_def_comp_entries) *
527                                         count);
528         __u32 old = size_roundup_power2(sizeof(*lds->lds_def_comp_entries) *
529                                         lds->lds_def_comp_size_cnt);
530
531         if (new <= old)
532                 return 0;
533
534         OBD_ALLOC_LARGE(entries, new);
535         if (entries == NULL)
536                 return -ENOMEM;
537
538         if (lds->lds_def_comp_entries != NULL) {
539                 CDEBUG(D_INFO, "default striping component size %d is not "
540                        "enough, need %d\n", old, new);
541                 lod_free_def_comp_entries(lds);
542         }
543
544         lds->lds_def_comp_entries = entries;
545         lds->lds_def_comp_size_cnt = count;
546
547         RETURN(0);
548 }
549
550 void lod_free_comp_entries(struct lod_object *lo)
551 {
552         if (lo->ldo_mirrors) {
553                 OBD_FREE_PTR_ARRAY(lo->ldo_mirrors, lo->ldo_mirror_count);
554                 lo->ldo_mirrors = NULL;
555                 lo->ldo_mirror_count = 0;
556         }
557         lod_free_comp_buffer(lo->ldo_comp_entries,
558                              lo->ldo_comp_cnt,
559                              sizeof(*lo->ldo_comp_entries) * lo->ldo_comp_cnt);
560         lo->ldo_comp_entries = NULL;
561         lo->ldo_comp_cnt = 0;
562         lo->ldo_is_composite = 0;
563 }
564
565 int lod_alloc_comp_entries(struct lod_object *lo,
566                            int mirror_count, int comp_count)
567 {
568         LASSERT(comp_count != 0);
569         LASSERT(lo->ldo_comp_cnt == 0 && lo->ldo_comp_entries == NULL);
570
571         if (mirror_count > 0) {
572                 OBD_ALLOC_PTR_ARRAY(lo->ldo_mirrors, mirror_count);
573                 if (!lo->ldo_mirrors)
574                         return -ENOMEM;
575
576                 lo->ldo_mirror_count = mirror_count;
577         }
578
579         OBD_ALLOC_LARGE(lo->ldo_comp_entries,
580                         sizeof(*lo->ldo_comp_entries) * comp_count);
581         if (lo->ldo_comp_entries == NULL) {
582                 OBD_FREE_PTR_ARRAY(lo->ldo_mirrors, mirror_count);
583                 lo->ldo_mirrors = NULL;
584                 lo->ldo_mirror_count = 0;
585                 return -ENOMEM;
586         }
587
588         lo->ldo_comp_cnt = comp_count;
589         lo->ldo_is_foreign = 0;
590         return 0;
591 }
592
593 int lod_fill_mirrors(struct lod_object *lo)
594 {
595         struct lod_device *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
596         struct lod_layout_component *lod_comp;
597         bool found_preferred = false;
598         int mirror_idx = -1;
599         __u16 mirror_id = 0xffff;
600         int i, pref;
601         ENTRY;
602
603         LASSERT(equi(!lo->ldo_is_composite, lo->ldo_mirror_count == 0));
604
605         if (!lo->ldo_is_composite)
606                 RETURN(0);
607
608         lod_comp = &lo->ldo_comp_entries[0];
609
610         for (i = 0; i < lo->ldo_comp_cnt; i++, lod_comp++) {
611                 bool stale = lod_comp->llc_flags & LCME_FL_STALE;
612                 bool preferred = lod_comp->llc_flags & LCME_FL_PREF_WR;
613                 bool init = (lod_comp->llc_stripe != NULL) &&
614                             !(lod_comp->llc_pattern & LOV_PATTERN_F_RELEASED) &&
615                             !(lod_comp->llc_pattern & LOV_PATTERN_MDT);
616                 int j;
617
618                 pref = 0;
619                 /* calculate component preference over all used OSTs */
620                 for (j = 0; init && j < lod_comp->llc_stripes_allocated; j++) {
621                         __u32 idx = lod_comp->llc_ost_indices[j];
622                         struct lod_tgt_desc *ltd;
623
624                         if (lod_comp->llc_stripe[j] == NULL)
625                                 continue;
626
627                         if (unlikely(idx >= lod->lod_ost_descs.ltd_tgts_size)) {
628                                 CERROR("%s: "DFID" OST idx %u > max %u\n",
629                                        lod2obd(lod)->obd_name,
630                                        PFID(lu_object_fid(&lo->ldo_obj.do_lu)),
631                                        idx, lod->lod_ost_descs.ltd_tgts_size);
632                                 continue;
633                         }
634                         ltd = OST_TGT(lod, idx);
635                         if (unlikely(!ltd)) {
636                                 CERROR("%s: "DFID" OST idx %u is NULL\n",
637                                        lod2obd(lod)->obd_name,
638                                        PFID(lu_object_fid(&lo->ldo_obj.do_lu)),
639                                        idx);
640                                 continue;
641                         }
642
643                         if (ltd->ltd_statfs.os_state & OS_STATFS_NONROT)
644                                 pref++;
645                 }
646
647                 if (mirror_id_of(lod_comp->llc_id) == mirror_id) {
648                         lo->ldo_mirrors[mirror_idx].lme_stale |= stale;
649                         lo->ldo_mirrors[mirror_idx].lme_prefer |= preferred;
650                         lo->ldo_mirrors[mirror_idx].lme_preference += pref;
651                         lo->ldo_mirrors[mirror_idx].lme_end = i;
652                         continue;
653                 }
654
655                 if (mirror_idx >= 0 && preferred &&
656                     !lo->ldo_mirrors[mirror_idx].lme_stale)
657                         found_preferred = true;
658
659                 /* new mirror */
660                 ++mirror_idx;
661                 if (mirror_idx >= lo->ldo_mirror_count)
662                         RETURN(-EINVAL);
663
664                 mirror_id = mirror_id_of(lod_comp->llc_id);
665
666                 lo->ldo_mirrors[mirror_idx].lme_id = mirror_id;
667                 lo->ldo_mirrors[mirror_idx].lme_stale = stale;
668                 lo->ldo_mirrors[mirror_idx].lme_prefer = preferred;
669                 lo->ldo_mirrors[mirror_idx].lme_preference = pref;
670                 lo->ldo_mirrors[mirror_idx].lme_start = i;
671                 lo->ldo_mirrors[mirror_idx].lme_end = i;
672         }
673         if (mirror_idx != lo->ldo_mirror_count - 1)
674                 RETURN(-EINVAL);
675
676         if (!found_preferred && mirror_idx > 0) {
677                 int best = -1;
678
679                 /*
680                  * if no explicited preferred found, then find a mirror
681                  * with higher number of non-rotational OSTs
682                  * */
683                 pref = -1;
684                 for (i = 0; i <= mirror_idx; i++) {
685                         if (lo->ldo_mirrors[i].lme_stale)
686                                 continue;
687                         if (lo->ldo_mirrors[i].lme_preference > pref) {
688                                 pref = lo->ldo_mirrors[i].lme_preference;
689                                 best = i;
690                         }
691                 }
692
693                 LASSERT(best >= 0);
694                 lo->ldo_mirrors[best].lme_prefer = 1;
695         }
696
697         RETURN(0);
698 }
699
700 /**
701  * Generate on-disk lov_mds_md structure for each layout component based on
702  * the information in lod_object->ldo_comp_entries[i].
703  *
704  * \param[in] env               execution environment for this thread
705  * \param[in] lo                LOD object
706  * \param[in] comp_idx          index of ldo_comp_entries
707  * \param[in] lmm               buffer to cotain the on-disk lov_mds_md
708  * \param[in|out] lmm_size      buffer size/lmm size
709  * \param[in] is_dir            generate lov ea for dir or file? For dir case,
710  *                              the stripe info is from the default stripe
711  *                              template, which is collected in lod_ah_init(),
712  *                              either from parent object or root object; for
713  *                              file case, it's from the @lo object
714  *
715  * \retval                      0 if on disk structure is created successfully
716  * \retval                      negative error number on failure
717  */
718 static int lod_gen_component_ea(const struct lu_env *env,
719                                 struct lod_object *lo, int comp_idx,
720                                 struct lov_mds_md *lmm, int *lmm_size,
721                                 bool is_dir)
722 {
723         struct lod_thread_info  *info = lod_env_info(env);
724         const struct lu_fid     *fid  = lu_object_fid(&lo->ldo_obj.do_lu);
725         struct lod_device       *lod;
726         struct lov_ost_data_v1  *objs;
727         struct lod_layout_component *lod_comp;
728         __u32   magic;
729         __u16 stripe_count;
730         int     i, rc = 0;
731         ENTRY;
732
733         LASSERT(lo);
734         if (is_dir)
735                 lod_comp =
736                         &lo->ldo_def_striping->lds_def_comp_entries[comp_idx];
737         else
738                 lod_comp = &lo->ldo_comp_entries[comp_idx];
739
740         magic = lod_comp->llc_pool != NULL ? LOV_MAGIC_V3 : LOV_MAGIC_V1;
741         if (lod_comp->llc_pattern == 0) /* default striping */
742                 lod_comp->llc_pattern = LOV_PATTERN_RAID0;
743
744         lmm->lmm_magic = cpu_to_le32(magic);
745         lmm->lmm_pattern = cpu_to_le32(lod_comp->llc_pattern);
746         fid_to_lmm_oi(fid, &lmm->lmm_oi);
747         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_LMMOI))
748                 lmm->lmm_oi.oi.oi_id++;
749         lmm_oi_cpu_to_le(&lmm->lmm_oi, &lmm->lmm_oi);
750
751         lmm->lmm_stripe_size = cpu_to_le32(lod_comp->llc_stripe_size);
752         lmm->lmm_stripe_count = cpu_to_le16(lod_comp->llc_stripe_count);
753         /**
754          * for dir and uninstantiated component, lmm_layout_gen stores
755          * default stripe offset.
756          */
757         lmm->lmm_layout_gen =
758                 (is_dir || !lod_comp_inited(lod_comp)) ?
759                         cpu_to_le16(lod_comp->llc_stripe_offset) :
760                         cpu_to_le16(lod_comp->llc_layout_gen);
761
762         if (magic == LOV_MAGIC_V1) {
763                 objs = &lmm->lmm_objects[0];
764         } else {
765                 struct lov_mds_md_v3 *v3 = (struct lov_mds_md_v3 *)lmm;
766                 size_t cplen = strlcpy(v3->lmm_pool_name,
767                                        lod_comp->llc_pool,
768                                        sizeof(v3->lmm_pool_name));
769                 if (cplen >= sizeof(v3->lmm_pool_name))
770                         RETURN(-E2BIG);
771                 objs = &v3->lmm_objects[0];
772         }
773         lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
774         stripe_count = lod_comp_entry_stripe_count(lo, comp_idx, is_dir);
775         if (stripe_count == 0 && !is_dir &&
776             !(lod_comp->llc_pattern & LOV_PATTERN_F_RELEASED) &&
777             !(lod_comp->llc_pattern & LOV_PATTERN_MDT)) {
778                 /* Try again if all active targets are disconnected.
779                  * It is possible when MDS does failover. */
780                 if (!lod->lod_ost_active_count &&
781                     lod->lod_ost_count)
782                         RETURN(-EAGAIN);
783                 RETURN(-E2BIG);
784         }
785
786         if (!is_dir && lo->ldo_is_composite)
787                 lod_comp_shrink_stripe_count(lod_comp, &stripe_count);
788
789         if (is_dir || lod_comp->llc_pattern & LOV_PATTERN_F_RELEASED)
790                 GOTO(done, rc = 0);
791
792         /* generate ost_idx of this component stripe */
793         for (i = 0; i < stripe_count; i++) {
794                 struct dt_object *object;
795                 __u32 ost_idx = (__u32)-1UL;
796                 int type = LU_SEQ_RANGE_OST;
797
798                 if (lod_comp->llc_stripe && lod_comp->llc_stripe[i]) {
799                         object = lod_comp->llc_stripe[i];
800                         /* instantiated component */
801                         info->lti_fid = *lu_object_fid(&object->do_lu);
802
803                         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_MULTIPLE_REF) &&
804                             comp_idx == 0) {
805                                 if (cfs_fail_val == 0)
806                                         cfs_fail_val = info->lti_fid.f_oid;
807                                 else if (i == 0)
808                                         info->lti_fid.f_oid = cfs_fail_val;
809                         }
810
811                         rc = fid_to_ostid(&info->lti_fid, &info->lti_ostid);
812                         LASSERT(rc == 0);
813
814                         ostid_cpu_to_le(&info->lti_ostid, &objs[i].l_ost_oi);
815                         objs[i].l_ost_gen = cpu_to_le32(0);
816                         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_FLD_LOOKUP))
817                                 rc = -ENOENT;
818                         else
819                                 rc = lod_fld_lookup(env, lod, &info->lti_fid,
820                                                     &ost_idx, &type);
821                         if (rc < 0) {
822                                 CERROR("%s: Can not locate "DFID": rc = %d\n",
823                                        lod2obd(lod)->obd_name,
824                                        PFID(&info->lti_fid), rc);
825                                 RETURN(rc);
826                         }
827                 } else if (lod_comp->llc_ostlist.op_array &&
828                            lod_comp->llc_ostlist.op_count) {
829                         /* user specified ost list */
830                         ost_idx = lod_comp->llc_ostlist.op_array[i];
831                 }
832                 /*
833                  * with un-instantiated or with no specified ost list
834                  * component, its l_ost_idx does not matter.
835                  */
836                 objs[i].l_ost_idx = cpu_to_le32(ost_idx);
837         }
838 done:
839         if (lmm_size != NULL)
840                 *lmm_size = lov_mds_md_size(stripe_count, magic);
841         RETURN(rc);
842 }
843
844 /**
845  * Generate on-disk lov_mds_md structure based on the information in
846  * the lod_object->ldo_comp_entries.
847  *
848  * \param[in] env               execution environment for this thread
849  * \param[in] lo                LOD object
850  * \param[in] lmm               buffer to cotain the on-disk lov_mds_md
851  * \param[in|out] lmm_size      buffer size/lmm size
852  * \param[in] is_dir            generate lov ea for dir or file? For dir case,
853  *                              the stripe info is from the default stripe
854  *                              template, which is collected in lod_ah_init(),
855  *                              either from parent object or root object; for
856  *                              file case, it's from the @lo object
857  *
858  * \retval                      0 if on disk structure is created successfully
859  * \retval                      negative error number on failure
860  */
861 int lod_generate_lovea(const struct lu_env *env, struct lod_object *lo,
862                        struct lov_mds_md *lmm, int *lmm_size, bool is_dir)
863 {
864         struct lov_comp_md_entry_v1 *lcme;
865         struct lov_comp_md_v1 *lcm;
866         struct lod_layout_component *comp_entries;
867         __u16 comp_cnt, mirror_cnt;
868         bool is_composite, is_foreign = false;
869         int i, rc = 0, offset;
870         ENTRY;
871
872         if (is_dir) {
873                 comp_cnt = lo->ldo_def_striping->lds_def_comp_cnt;
874                 mirror_cnt = lo->ldo_def_striping->lds_def_mirror_cnt;
875                 comp_entries = lo->ldo_def_striping->lds_def_comp_entries;
876                 is_composite =
877                         lo->ldo_def_striping->lds_def_striping_is_composite;
878         } else {
879                 comp_cnt = lo->ldo_comp_cnt;
880                 mirror_cnt = lo->ldo_mirror_count;
881                 comp_entries = lo->ldo_comp_entries;
882                 is_composite = lo->ldo_is_composite;
883                 is_foreign = lo->ldo_is_foreign;
884         }
885
886         LASSERT(lmm_size != NULL);
887
888         if (is_foreign) {
889                 struct lov_foreign_md *lfm;
890
891                 lfm = (struct lov_foreign_md *)lmm;
892                 memcpy(lfm, lo->ldo_foreign_lov, lo->ldo_foreign_lov_size);
893                 /* need to store little-endian */
894                 if (cpu_to_le32(LOV_MAGIC_FOREIGN) != LOV_MAGIC_FOREIGN) {
895                         __swab32s(&lfm->lfm_magic);
896                         __swab32s(&lfm->lfm_length);
897                         __swab32s(&lfm->lfm_type);
898                         __swab32s(&lfm->lfm_flags);
899                 }
900                 *lmm_size = lo->ldo_foreign_lov_size;
901                 RETURN(0);
902         }
903
904         LASSERT(comp_cnt != 0 && comp_entries != NULL);
905
906         if (!is_composite) {
907                 rc = lod_gen_component_ea(env, lo, 0, lmm, lmm_size, is_dir);
908                 RETURN(rc);
909         }
910
911         lcm = (struct lov_comp_md_v1 *)lmm;
912         memset(lcm, 0, sizeof(*lcm));
913
914         lcm->lcm_magic = cpu_to_le32(LOV_MAGIC_COMP_V1);
915         lcm->lcm_entry_count = cpu_to_le16(comp_cnt);
916         lcm->lcm_mirror_count = cpu_to_le16(mirror_cnt - 1);
917         if (mirror_cnt > 1)
918                 lcm->lcm_flags = cpu_to_le16(lo->ldo_flr_state);
919         else
920                 lcm->lcm_flags = LCM_FL_NONE;
921
922         offset = sizeof(*lcm) + sizeof(*lcme) * comp_cnt;
923         LASSERT(offset % sizeof(__u64) == 0);
924
925         for (i = 0; i < comp_cnt; i++) {
926                 struct lod_layout_component *lod_comp;
927                 struct lov_mds_md *sub_md;
928                 int size;
929
930                 lod_comp = &comp_entries[i];
931                 lcme = &lcm->lcm_entries[i];
932
933                 LASSERT(ergo(!is_dir, lod_comp->llc_id != LCME_ID_INVAL));
934                 lcme->lcme_id = cpu_to_le32(lod_comp->llc_id);
935
936                 /* component could be un-inistantiated */
937                 lcme->lcme_flags = cpu_to_le32(lod_comp->llc_flags);
938                 if (lod_comp->llc_flags & LCME_FL_NOSYNC)
939                         lcme->lcme_timestamp =
940                                 cpu_to_le64(lod_comp->llc_timestamp);
941                 if (lod_comp->llc_flags & LCME_FL_EXTENSION && !is_dir)
942                         lcm->lcm_magic = cpu_to_le32(LOV_MAGIC_SEL);
943
944                 lcme->lcme_extent.e_start =
945                         cpu_to_le64(lod_comp->llc_extent.e_start);
946                 lcme->lcme_extent.e_end =
947                         cpu_to_le64(lod_comp->llc_extent.e_end);
948                 lcme->lcme_offset = cpu_to_le32(offset);
949
950                 sub_md = (struct lov_mds_md *)((char *)lcm + offset);
951                 rc = lod_gen_component_ea(env, lo, i, sub_md, &size, is_dir);
952                 if (rc)
953                         GOTO(out, rc);
954                 lcme->lcme_size = cpu_to_le32(size);
955                 offset += size;
956                 LASSERTF((offset <= *lmm_size) && (offset % sizeof(__u64) == 0),
957                          "offset:%d lmm_size:%d\n", offset, *lmm_size);
958         }
959         lcm->lcm_size = cpu_to_le32(offset);
960         lcm->lcm_layout_gen = cpu_to_le32(is_dir ? 0 : lo->ldo_layout_gen);
961
962         lustre_print_user_md(D_LAYOUT, (struct lov_user_md *)lmm,
963                              "generate lum");
964 out:
965         if (rc == 0)
966                 *lmm_size = offset;
967         RETURN(rc);
968 }
969
970 /**
971  * Get LOV EA.
972  *
973  * Fill lti_ea_store buffer in the environment with a value for the given
974  * EA. The buffer is reallocated if the value doesn't fit.
975  *
976  * \param[in,out] env           execution environment for this thread
977  *                              .lti_ea_store buffer is filled with EA's value
978  * \param[in] lo                LOD object
979  * \param[in] name              name of the EA
980  *
981  * \retval                      > 0 if EA is fetched successfully
982  * \retval                      0 if EA is empty
983  * \retval                      negative error number on failure
984  */
985 int lod_get_ea(const struct lu_env *env, struct lod_object *lo,
986                const char *name)
987 {
988         struct lod_thread_info  *info = lod_env_info(env);
989         struct dt_object        *next = dt_object_child(&lo->ldo_obj);
990         int                     rc;
991         ENTRY;
992
993         LASSERT(info);
994
995         if (unlikely(info->lti_ea_store == NULL)) {
996                 /* just to enter in allocation block below */
997                 rc = -ERANGE;
998         } else {
999 repeat:
1000                 info->lti_buf.lb_buf = info->lti_ea_store;
1001                 info->lti_buf.lb_len = info->lti_ea_store_size;
1002                 rc = dt_xattr_get(env, next, &info->lti_buf, name);
1003         }
1004
1005         /* if object is not striped or inaccessible */
1006         if (rc == -ENODATA || rc == -ENOENT)
1007                 RETURN(0);
1008
1009         if (rc == -ERANGE) {
1010                 /* EA doesn't fit, reallocate new buffer */
1011                 rc = dt_xattr_get(env, next, &LU_BUF_NULL, name);
1012                 if (rc == -ENODATA || rc == -ENOENT)
1013                         RETURN(0);
1014                 else if (rc < 0)
1015                         RETURN(rc);
1016
1017                 LASSERT(rc > 0);
1018                 rc = lod_ea_store_resize(info, rc);
1019                 if (rc)
1020                         RETURN(rc);
1021                 goto repeat;
1022         }
1023
1024         RETURN(rc);
1025 }
1026
1027 /**
1028  * Verify the target index is present in the current configuration.
1029  *
1030  * \param[in] md                LOD device where the target table is stored
1031  * \param[in] idx               target's index
1032  *
1033  * \retval                      0 if the index is present
1034  * \retval                      -EINVAL if not
1035  */
1036 int validate_lod_and_idx(struct lod_device *md, __u32 idx)
1037 {
1038         if (unlikely(idx >= md->lod_ost_descs.ltd_tgts_size ||
1039                      !test_bit(idx, md->lod_ost_bitmap))) {
1040                 CERROR("%s: bad idx: %d of %d\n", lod2obd(md)->obd_name, idx,
1041                        md->lod_ost_descs.ltd_tgts_size);
1042                 return -EINVAL;
1043         }
1044
1045         if (unlikely(OST_TGT(md, idx) == NULL)) {
1046                 CERROR("%s: bad lod_tgt_desc for idx: %d\n",
1047                        lod2obd(md)->obd_name, idx);
1048                 return -EINVAL;
1049         }
1050
1051         if (unlikely(OST_TGT(md, idx)->ltd_tgt == NULL)) {
1052                 CERROR("%s: invalid lod device, for idx: %d\n",
1053                        lod2obd(md)->obd_name , idx);
1054                 return -EINVAL;
1055         }
1056
1057         return 0;
1058 }
1059
1060 /**
1061  * Instantiate objects for stripes.
1062  *
1063  * Allocate and initialize LU-objects representing the stripes. The number
1064  * of the stripes (llc_stripe_count) must be initialized already. The caller
1065  * must ensure nobody else is calling the function on the object at the same
1066  * time. FLDB service must be running to be able to map a FID to the targets
1067  * and find appropriate device representing that target.
1068  *
1069  * \param[in] env               execution environment for this thread
1070  * \param[in,out] lo            LOD object
1071  * \param[in] objs              an array of IDs to creates the objects from
1072  * \param[in] comp_idx          index of ldo_comp_entries
1073  *
1074  * \retval                      0 if the objects are instantiated successfully
1075  * \retval                      negative error number on failure
1076  */
1077 int lod_initialize_objects(const struct lu_env *env, struct lod_object *lo,
1078                            struct lov_ost_data_v1 *objs, int comp_idx)
1079 {
1080         struct lod_layout_component *lod_comp;
1081         struct lod_thread_info *info = lod_env_info(env);
1082         struct lod_device *md;
1083         struct lu_object *o, *n;
1084         struct lu_device *nd;
1085         struct dt_object **stripe = NULL;
1086         __u32 *ost_indices = NULL;
1087         int stripe_len;
1088         int i, rc = 0;
1089         __u32 idx;
1090         ENTRY;
1091
1092         LASSERT(lo != NULL);
1093         md = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
1094
1095         LASSERT(lo->ldo_comp_cnt != 0 && lo->ldo_comp_entries != NULL);
1096         lod_comp = &lo->ldo_comp_entries[comp_idx];
1097
1098         LASSERT(lod_comp->llc_stripe == NULL);
1099         LASSERT(lod_comp->llc_stripe_count > 0);
1100         LASSERT(lod_comp->llc_stripe_size > 0);
1101
1102         stripe_len = lod_comp->llc_stripe_count;
1103         OBD_ALLOC_PTR_ARRAY(stripe, stripe_len);
1104         if (stripe == NULL)
1105                 RETURN(-ENOMEM);
1106         OBD_ALLOC_PTR_ARRAY(ost_indices, stripe_len);
1107         if (!ost_indices)
1108                 GOTO(out, rc = -ENOMEM);
1109
1110         for (i = 0; i < lod_comp->llc_stripe_count; i++) {
1111                 if (unlikely(lovea_slot_is_dummy(&objs[i])))
1112                         continue;
1113
1114                 ostid_le_to_cpu(&objs[i].l_ost_oi, &info->lti_ostid);
1115                 idx = le32_to_cpu(objs[i].l_ost_idx);
1116                 rc = ostid_to_fid(&info->lti_fid, &info->lti_ostid, idx);
1117                 if (rc != 0)
1118                         GOTO(out, rc);
1119                 LASSERTF(fid_is_sane(&info->lti_fid), ""DFID" insane!\n",
1120                          PFID(&info->lti_fid));
1121                 lod_getref(&md->lod_ost_descs);
1122
1123                 rc = validate_lod_and_idx(md, idx);
1124                 if (unlikely(rc != 0)) {
1125                         lod_putref(md, &md->lod_ost_descs);
1126                         GOTO(out, rc);
1127                 }
1128
1129                 nd = &OST_TGT(md, idx)->ltd_tgt->dd_lu_dev;
1130                 lod_putref(md, &md->lod_ost_descs);
1131
1132                 /* In the function below, .hs_keycmp resolves to
1133                  * u_obj_hop_keycmp() */
1134                 /* coverity[overrun-buffer-val] */
1135                 o = lu_object_find_at(env, nd, &info->lti_fid, NULL);
1136                 if (IS_ERR(o))
1137                         GOTO(out, rc = PTR_ERR(o));
1138
1139                 n = lu_object_locate(o->lo_header, nd->ld_type);
1140                 LASSERT(n);
1141
1142                 stripe[i] = container_of(n, struct dt_object, do_lu);
1143                 ost_indices[i] = idx;
1144         }
1145
1146 out:
1147         if (rc != 0) {
1148                 for (i = 0; i < stripe_len; i++)
1149                         if (stripe[i] != NULL)
1150                                 dt_object_put(env, stripe[i]);
1151
1152                 OBD_FREE_PTR_ARRAY(stripe, stripe_len);
1153                 lod_comp->llc_stripe_count = 0;
1154                 if (ost_indices)
1155                         OBD_FREE_PTR_ARRAY(ost_indices, stripe_len);
1156         } else {
1157                 lod_comp->llc_stripe = stripe;
1158                 lod_comp->llc_ost_indices = ost_indices;
1159                 lod_comp->llc_stripes_allocated = stripe_len;
1160         }
1161
1162         RETURN(rc);
1163 }
1164
1165 /**
1166  * Instantiate objects for striping.
1167  *
1168  * Parse striping information in \a buf and instantiate the objects
1169  * representing the stripes.
1170  *
1171  * \param[in] env               execution environment for this thread
1172  * \param[in] lo                LOD object
1173  * \param[in] buf               buffer storing LOV EA to parse
1174  * \param[in] lvf               verify flags when parsing the layout
1175  *
1176  * \retval                      0 if parsing and objects creation succeed
1177  * \retval                      negative error number on failure
1178  */
1179 int lod_parse_striping(const struct lu_env *env, struct lod_object *lo,
1180                        const struct lu_buf *buf, enum layout_verify_flags lvf)
1181 {
1182         struct lod_device *d = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
1183         struct lov_mds_md_v1 *lmm;
1184         struct lov_comp_md_v1 *comp_v1 = NULL;
1185         struct lov_foreign_md *foreign = NULL;
1186         struct lov_ost_data_v1 *objs;
1187         __u32 magic, pattern;
1188         __u16 mirror_cnt = 0;
1189         __u16 comp_cnt;
1190         int i, rc;
1191         __u16 mirror_id = MIRROR_ID_NEG;
1192         bool stale = false;
1193         int stale_mirrors = 0;
1194         ENTRY;
1195
1196         LASSERT(buf);
1197         LASSERT(buf->lb_buf);
1198         LASSERT(buf->lb_len);
1199         LASSERT(mutex_is_locked(&lo->ldo_layout_mutex));
1200
1201         lmm = (struct lov_mds_md_v1 *)buf->lb_buf;
1202         magic = le32_to_cpu(lmm->lmm_magic);
1203
1204         if (magic != LOV_MAGIC_V1 && magic != LOV_MAGIC_V3 &&
1205             magic != LOV_MAGIC_COMP_V1 && magic != LOV_MAGIC_FOREIGN &&
1206             magic != LOV_MAGIC_SEL)
1207                 GOTO(out, rc = -EINVAL);
1208
1209         lod_striping_free_nolock(env, lo);
1210
1211         if (magic == LOV_MAGIC_COMP_V1 || magic == LOV_MAGIC_SEL) {
1212                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
1213                 comp_cnt = le16_to_cpu(comp_v1->lcm_entry_count);
1214                 if (comp_cnt == 0)
1215                         GOTO(out, rc = -EINVAL);
1216                 lo->ldo_layout_gen = le32_to_cpu(comp_v1->lcm_layout_gen);
1217                 lo->ldo_is_composite = 1;
1218                 mirror_cnt = le16_to_cpu(comp_v1->lcm_mirror_count) + 1;
1219                 if (mirror_cnt > 1)
1220                         lo->ldo_flr_state = le16_to_cpu(comp_v1->lcm_flags) &
1221                                                         LCM_FL_FLR_MASK;
1222                 else
1223                         lo->ldo_flr_state = LCM_FL_NONE;
1224         } else if (magic == LOV_MAGIC_FOREIGN) {
1225                 size_t length;
1226
1227                 foreign = (struct lov_foreign_md *)buf->lb_buf;
1228                 length = offsetof(typeof(*foreign), lfm_value);
1229                 if (buf->lb_len < length ||
1230                     buf->lb_len < (length + le32_to_cpu(foreign->lfm_length))) {
1231                         CDEBUG(D_LAYOUT,
1232                                "buf len %zu too small for lov_foreign_md\n",
1233                                buf->lb_len);
1234                         GOTO(out, rc = -EINVAL);
1235                 }
1236
1237                 /* just cache foreign LOV EA raw */
1238                 rc = lod_alloc_foreign_lov(lo, length);
1239                 if (rc)
1240                         GOTO(out, rc);
1241                 memcpy(lo->ldo_foreign_lov, buf->lb_buf, length);
1242                 GOTO(out, rc);
1243         } else {
1244                 comp_cnt = 1;
1245                 lo->ldo_layout_gen = le16_to_cpu(lmm->lmm_layout_gen);
1246                 lo->ldo_is_composite = 0;
1247         }
1248
1249         rc = lod_alloc_comp_entries(lo, mirror_cnt, comp_cnt);
1250         if (rc)
1251                 GOTO(out, rc);
1252
1253         for (i = 0; i < comp_cnt; i++) {
1254                 struct lod_layout_component *lod_comp;
1255                 struct lu_extent *ext;
1256                 __u32 offs;
1257
1258                 lod_comp = &lo->ldo_comp_entries[i];
1259                 if (lo->ldo_is_composite) {
1260                         offs = le32_to_cpu(comp_v1->lcm_entries[i].lcme_offset);
1261                         lmm = (struct lov_mds_md_v1 *)((char *)comp_v1 + offs);
1262
1263                         ext = &comp_v1->lcm_entries[i].lcme_extent;
1264                         lod_comp->llc_extent.e_start =
1265                                 le64_to_cpu(ext->e_start);
1266                         if (lod_comp->llc_extent.e_start &
1267                             (LOV_MIN_STRIPE_SIZE - 1)) {
1268                                 CDEBUG(D_LAYOUT,
1269                                        "extent start %llu is not a multiple of min size %u\n",
1270                                        lod_comp->llc_extent.e_start,
1271                                        LOV_MIN_STRIPE_SIZE);
1272                                 GOTO(out, rc = -EINVAL);
1273                         }
1274
1275                         lod_comp->llc_extent.e_end = le64_to_cpu(ext->e_end);
1276                         if (lod_comp->llc_extent.e_end != LUSTRE_EOF &&
1277                             lod_comp->llc_extent.e_end &
1278                             (LOV_MIN_STRIPE_SIZE - 1)) {
1279                                 CDEBUG(D_LAYOUT,
1280                                        "extent end %llu is not a multiple of min size %u\n",
1281                                        lod_comp->llc_extent.e_end,
1282                                        LOV_MIN_STRIPE_SIZE);
1283                                 GOTO(out, rc = -EINVAL);
1284                         }
1285
1286                         lod_comp->llc_flags =
1287                                 le32_to_cpu(comp_v1->lcm_entries[i].lcme_flags);
1288
1289                         if (lod_comp->llc_flags & LCME_FL_NOSYNC)
1290                                 lod_comp->llc_timestamp = le64_to_cpu(
1291                                         comp_v1->lcm_entries[i].lcme_timestamp);
1292                         lod_comp->llc_id =
1293                                 le32_to_cpu(comp_v1->lcm_entries[i].lcme_id);
1294                         if (lod_comp->llc_id == LCME_ID_INVAL)
1295                                 GOTO(out, rc = -EINVAL);
1296
1297                         if (lvf & LVF_ALL_STALE) {
1298                                 if (mirror_id_of(lod_comp->llc_id) ==
1299                                     mirror_id) {
1300                                         /* remaining comps in the mirror */
1301                                         stale |= lod_comp->llc_flags &
1302                                                  LCME_FL_STALE;
1303                                 } else {
1304                                         /*
1305                                          * new mirror, check last mirror's
1306                                          * stale-ness
1307                                          */
1308                                         if (stale)
1309                                                 stale_mirrors++;
1310
1311                                         mirror_id =
1312                                                 mirror_id_of(lod_comp->llc_id);
1313
1314                                         /* the first comp of the new mirror */
1315                                         stale = lod_comp->llc_flags &
1316                                                 LCME_FL_STALE;
1317                                 }
1318                         }
1319
1320                         if ((lod_comp->llc_flags & LCME_FL_EXTENSION) &&
1321                             comp_v1->lcm_magic != cpu_to_le32(LOV_MAGIC_SEL)) {
1322                                 CWARN("%s: EXTENSION flags=%x set on component[%u]=%x of non-SEL file "DFID" with magic=%#08x\n",
1323                                       lod2obd(d)->obd_name,
1324                                       lod_comp->llc_flags, lod_comp->llc_id, i,
1325                                       PFID(lod_object_fid(lo)),
1326                                       le32_to_cpu(comp_v1->lcm_magic));
1327                         }
1328                 } else {
1329                         lod_comp_set_init(lod_comp);
1330                 }
1331
1332                 pattern = le32_to_cpu(lmm->lmm_pattern);
1333                 if (!lov_pattern_supported(lov_pattern(pattern)))
1334                         GOTO(out, rc = -EINVAL);
1335
1336                 lod_comp->llc_pattern = pattern;
1337                 lod_comp->llc_stripe_size = le32_to_cpu(lmm->lmm_stripe_size);
1338                 lod_comp->llc_stripe_count = le16_to_cpu(lmm->lmm_stripe_count);
1339                 lod_comp->llc_layout_gen = le16_to_cpu(lmm->lmm_layout_gen);
1340
1341                 if (lmm->lmm_magic == cpu_to_le32(LOV_MAGIC_V3)) {
1342                         struct lov_mds_md_v3 *v3 = (struct lov_mds_md_v3 *)lmm;
1343
1344                         lod_set_pool(&lod_comp->llc_pool, v3->lmm_pool_name);
1345                         objs = &v3->lmm_objects[0];
1346                 } else {
1347                         lod_set_pool(&lod_comp->llc_pool, NULL);
1348                         objs = &lmm->lmm_objects[0];
1349                 }
1350
1351                 /**
1352                  * If uninstantiated template component has valid l_ost_idx,
1353                  * then user has specified ost list for this component.
1354                  */
1355                 if (!lod_comp_inited(lod_comp)) {
1356                         __u16 stripe_count;
1357
1358                         if (objs[0].l_ost_idx != (__u32)-1UL) {
1359                                 int j;
1360
1361                                 stripe_count = lod_comp_entry_stripe_count(
1362                                                         lo, i, false);
1363                                 if (stripe_count == 0 &&
1364                                     !(lod_comp->llc_pattern & LOV_PATTERN_F_RELEASED) &&
1365                                     !(lod_comp->llc_pattern & LOV_PATTERN_MDT))
1366                                         GOTO(out, rc = -E2BIG);
1367                                 /**
1368                                  * load the user specified ost list, when this
1369                                  * component is instantiated later, it will be
1370                                  * used in lod_alloc_ost_list().
1371                                  */
1372                                 lod_comp->llc_ostlist.op_count = stripe_count;
1373                                 lod_comp->llc_ostlist.op_size =
1374                                         stripe_count * sizeof(__u32);
1375                                 OBD_ALLOC(lod_comp->llc_ostlist.op_array,
1376                                           lod_comp->llc_ostlist.op_size);
1377                                 if (!lod_comp->llc_ostlist.op_array)
1378                                         GOTO(out, rc = -ENOMEM);
1379
1380                                 for (j = 0; j < stripe_count; j++)
1381                                         lod_comp->llc_ostlist.op_array[j] =
1382                                                 le32_to_cpu(objs[j].l_ost_idx);
1383
1384                                 /**
1385                                  * this component OST objects starts from the
1386                                  * first ost_idx, lod_alloc_ost_list() will
1387                                  * check this.
1388                                  */
1389                                 lod_comp->llc_stripe_offset = objs[0].l_ost_idx;
1390                         } else {
1391                                 /**
1392                                  * for uninstantiated component,
1393                                  * lmm_layout_gen stores default stripe offset.
1394                                  */
1395                                 lod_comp->llc_stripe_offset =
1396                                                         lmm->lmm_layout_gen;
1397                         }
1398                 }
1399
1400                 /* skip un-instantiated component object initialization */
1401                 if (!lod_comp_inited(lod_comp))
1402                         continue;
1403
1404                 if (!(lod_comp->llc_pattern & LOV_PATTERN_F_RELEASED) &&
1405                     !(lod_comp->llc_pattern & LOV_PATTERN_MDT)) {
1406                         rc = lod_initialize_objects(env, lo, objs, i);
1407                         if (rc)
1408                                 GOTO(out, rc);
1409                 }
1410         }
1411
1412         if (lo->ldo_is_composite && (lvf & LVF_ALL_STALE)) {
1413                 /* check the last mirror stale-ness */
1414                 if (stale)
1415                         stale_mirrors++;
1416
1417                 if (mirror_cnt == stale_mirrors) {
1418                         rc = -EPERM;
1419                         CERROR("%s: can not set all stale mirrors for "
1420                                DFID": rc = %d\n",
1421                                lod2obd(d)->obd_name, PFID(lod_object_fid(lo)),
1422                                rc);
1423                         GOTO(out, rc);
1424                 }
1425         }
1426
1427         rc = lod_fill_mirrors(lo);
1428         if (rc)
1429                 GOTO(out, rc);
1430
1431 out:
1432         if (rc)
1433                 lod_striping_free_nolock(env, lo);
1434         RETURN(rc);
1435 }
1436
1437 /**
1438  * Check whether the striping (LOVEA for regular file, LMVEA for directory)
1439  * is already cached.
1440  *
1441  * \param[in] lo        LOD object
1442  *
1443  * \retval              True if the striping is cached, otherwise
1444  *                      return false.
1445  */
1446 static bool lod_striping_loaded(struct lod_object *lo)
1447 {
1448         if (S_ISREG(lod2lu_obj(lo)->lo_header->loh_attr) &&
1449             lo->ldo_comp_cached)
1450                 return true;
1451
1452         if (S_ISDIR(lod2lu_obj(lo)->lo_header->loh_attr)) {
1453                 if (lo->ldo_dir_stripe_loaded)
1454                         return true;
1455
1456                 /* Never load LMV stripe for slaves of striped dir */
1457                 if (lo->ldo_dir_slave_stripe)
1458                         return true;
1459         }
1460
1461         return false;
1462 }
1463
1464 /**
1465  * A generic function to initialize the stripe objects.
1466  *
1467  * A protected version of lod_striping_load_locked() - load the striping
1468  * information from storage, parse that and instantiate LU objects to
1469  * represent the stripes.  The LOD object \a lo supplies a pointer to the
1470  * next sub-object in the LU stack so we can lock it. Also use \a lo to
1471  * return an array of references to the newly instantiated objects.
1472  *
1473  * \param[in] env               execution environment for this thread
1474  * \param[in,out] lo            LOD object, where striping is stored and
1475  *                              which gets an array of references
1476  *
1477  * \retval                      0 if parsing and object creation succeed
1478  * \retval                      negative error number on failure
1479  **/
1480 int lod_striping_load(const struct lu_env *env, struct lod_object *lo)
1481 {
1482         struct lod_thread_info *info = lod_env_info(env);
1483         struct dt_object *next = dt_object_child(&lo->ldo_obj);
1484         struct lu_buf *buf = &info->lti_buf;
1485         int rc = 0;
1486
1487         ENTRY;
1488
1489         if (!dt_object_exists(next))
1490                 RETURN(0);
1491
1492         if (lod_striping_loaded(lo))
1493                 RETURN(0);
1494
1495         mutex_lock(&lo->ldo_layout_mutex);
1496         if (lod_striping_loaded(lo))
1497                 GOTO(unlock, rc = 0);
1498
1499         if (S_ISREG(lod2lu_obj(lo)->lo_header->loh_attr)) {
1500                 rc = lod_get_lov_ea(env, lo);
1501                 if (rc <= 0)
1502                         GOTO(unlock, rc);
1503
1504                 /*
1505                  * there is LOV EA (striping information) in this object
1506                  * let's parse it and create in-core objects for the stripes
1507                  */
1508                 buf->lb_buf = info->lti_ea_store;
1509                 buf->lb_len = info->lti_ea_store_size;
1510                 rc = lod_parse_striping(env, lo, buf, 0);
1511                 if (rc == 0)
1512                         lo->ldo_comp_cached = 1;
1513         } else if (S_ISDIR(lod2lu_obj(lo)->lo_header->loh_attr)) {
1514                 rc = lod_get_lmv_ea(env, lo);
1515                 if (rc > sizeof(struct lmv_foreign_md)) {
1516                         struct lmv_foreign_md *lfm = info->lti_ea_store;
1517
1518                         if (le32_to_cpu(lfm->lfm_magic) == LMV_MAGIC_FOREIGN) {
1519                                 lo->ldo_foreign_lmv = info->lti_ea_store;
1520                                 lo->ldo_foreign_lmv_size =
1521                                         info->lti_ea_store_size;
1522                                 info->lti_ea_store = NULL;
1523                                 info->lti_ea_store_size = 0;
1524
1525                                 lo->ldo_dir_stripe_loaded = 1;
1526                                 lo->ldo_is_foreign = 1;
1527                                 GOTO(unlock, rc = 0);
1528                         }
1529                 }
1530
1531                 if (rc < (int)sizeof(struct lmv_mds_md_v1)) {
1532                         /* Let's set stripe_loaded to avoid further
1533                          * stripe loading especially for non-stripe directory,
1534                          * which can hurt performance. (See LU-9840)
1535                          */
1536                         if (rc == 0)
1537                                 lo->ldo_dir_stripe_loaded = 1;
1538                         GOTO(unlock, rc = rc > 0 ? -EINVAL : rc);
1539                 }
1540                 buf->lb_buf = info->lti_ea_store;
1541                 buf->lb_len = info->lti_ea_store_size;
1542                 if (rc == sizeof(struct lmv_mds_md_v1)) {
1543                         rc = lod_load_lmv_shards(env, lo, buf, true);
1544                         if (buf->lb_buf != info->lti_ea_store) {
1545                                 OBD_FREE_LARGE(info->lti_ea_store,
1546                                                info->lti_ea_store_size);
1547                                 info->lti_ea_store = buf->lb_buf;
1548                                 info->lti_ea_store_size = buf->lb_len;
1549                         }
1550
1551                         if (rc < 0)
1552                                 GOTO(unlock, rc);
1553                 }
1554
1555                 /*
1556                  * there is LMV EA (striping information) in this object
1557                  * let's parse it and create in-core objects for the stripes
1558                  */
1559                 rc = lod_parse_dir_striping(env, lo, buf);
1560                 if (rc == 0)
1561                         lo->ldo_dir_stripe_loaded = 1;
1562         }
1563         EXIT;
1564 unlock:
1565         mutex_unlock(&lo->ldo_layout_mutex);
1566
1567         return rc;
1568 }
1569
1570 int lod_striping_reload(const struct lu_env *env, struct lod_object *lo,
1571                         const struct lu_buf *buf, enum layout_verify_flags lvf)
1572 {
1573         int rc;
1574
1575         ENTRY;
1576
1577         mutex_lock(&lo->ldo_layout_mutex);
1578         rc = lod_parse_striping(env, lo, buf, lvf);
1579         mutex_unlock(&lo->ldo_layout_mutex);
1580
1581         RETURN(rc);
1582 }
1583
1584 /**
1585  * Verify lov_user_md_v1/v3 striping.
1586  *
1587  * Check the validity of all fields including the magic, stripe size,
1588  * stripe count, stripe offset and that the pool is present.  Also check
1589  * that each target index points to an existing target. The additional
1590  * \a is_from_disk turns additional checks. In some cases zero fields
1591  * are allowed (like pattern=0).
1592  *
1593  * \param[in] d                 LOD device
1594  * \param[in] buf               buffer with LOV EA to verify
1595  * \param[in] is_from_disk      0 - from user, allow some fields to be 0
1596  *                              1 - from disk, do not allow
1597  *
1598  * \retval                      0 if the striping is valid
1599  * \retval                      -EINVAL if striping is invalid
1600  */
1601 static int lod_verify_v1v3(struct lod_device *d, const struct lu_buf *buf,
1602                            bool is_from_disk)
1603 {
1604         struct lov_user_md_v1   *lum;
1605         struct lov_user_md_v3   *lum3;
1606         struct pool_desc        *pool = NULL;
1607         __u32                    magic;
1608         __u32                    stripe_size;
1609         __u16                    stripe_count;
1610         __u16                    stripe_offset;
1611         size_t                   lum_size;
1612         int                      rc = 0;
1613         ENTRY;
1614
1615         lum = buf->lb_buf;
1616
1617         if (buf->lb_len < sizeof(*lum)) {
1618                 CDEBUG(D_LAYOUT, "buf len %zu too small for lov_user_md\n",
1619                        buf->lb_len);
1620                 GOTO(out, rc = -EINVAL);
1621         }
1622
1623         magic = le32_to_cpu(lum->lmm_magic) & ~LOV_MAGIC_DEFINED;
1624         if (magic != LOV_USER_MAGIC_V1 &&
1625             magic != LOV_USER_MAGIC_V3 &&
1626             magic != LOV_USER_MAGIC_SPECIFIC) {
1627                 CDEBUG(D_LAYOUT, "bad userland LOV MAGIC: %#x\n",
1628                        le32_to_cpu(lum->lmm_magic));
1629                 GOTO(out, rc = -EINVAL);
1630         }
1631
1632         /* the user uses "0" for default stripe pattern normally. */
1633         if (!is_from_disk && lum->lmm_pattern == LOV_PATTERN_NONE)
1634                 lum->lmm_pattern = cpu_to_le32(LOV_PATTERN_RAID0);
1635
1636         if (!lov_pattern_supported(le32_to_cpu(lum->lmm_pattern))) {
1637                 CDEBUG(D_LAYOUT, "bad userland stripe pattern: %#x\n",
1638                        le32_to_cpu(lum->lmm_pattern));
1639                 GOTO(out, rc = -EINVAL);
1640         }
1641
1642         /* a released lum comes from creating orphan on hsm release,
1643          * doesn't make sense to verify it. */
1644         if (le32_to_cpu(lum->lmm_pattern) & LOV_PATTERN_F_RELEASED)
1645                 GOTO(out, rc = 0);
1646
1647         /* 64kB is the largest common page size we see (ia64), and matches the
1648          * check in lfs */
1649         stripe_size = le32_to_cpu(lum->lmm_stripe_size);
1650         if (stripe_size & (LOV_MIN_STRIPE_SIZE - 1)) {
1651                 CDEBUG(D_LAYOUT, "stripe size %u not a multiple of %u\n",
1652                        stripe_size, LOV_MIN_STRIPE_SIZE);
1653                 GOTO(out, rc = -EINVAL);
1654         }
1655
1656         stripe_offset = le16_to_cpu(lum->lmm_stripe_offset);
1657         if (!is_from_disk && stripe_offset != LOV_OFFSET_DEFAULT &&
1658             lov_pattern(le32_to_cpu(lum->lmm_pattern)) != LOV_PATTERN_MDT) {
1659                 /* if offset is not within valid range [0, osts_size) */
1660                 if (stripe_offset >= d->lod_ost_descs.ltd_tgts_size) {
1661                         CDEBUG(D_LAYOUT, "stripe offset %u >= bitmap size %u\n",
1662                                stripe_offset, d->lod_ost_descs.ltd_tgts_size);
1663                         GOTO(out, rc = -EINVAL);
1664                 }
1665
1666                 /* if lmm_stripe_offset is *not* in bitmap */
1667                 if (!test_bit(stripe_offset, d->lod_ost_bitmap)) {
1668                         CDEBUG(D_LAYOUT, "stripe offset %u not in bitmap\n",
1669                                stripe_offset);
1670                         GOTO(out, rc = -EINVAL);
1671                 }
1672         }
1673
1674         if (magic == LOV_USER_MAGIC_V1)
1675                 lum_size = offsetof(struct lov_user_md_v1,
1676                                     lmm_objects[0]);
1677         else if (magic == LOV_USER_MAGIC_V3 || magic == LOV_USER_MAGIC_SPECIFIC)
1678                 lum_size = offsetof(struct lov_user_md_v3,
1679                                     lmm_objects[0]);
1680         else
1681                 GOTO(out, rc = -EINVAL);
1682
1683         stripe_count = le16_to_cpu(lum->lmm_stripe_count);
1684         if (buf->lb_len < lum_size) {
1685                 CDEBUG(D_LAYOUT, "invalid buf len %zu/%zu for lov_user_md with "
1686                        "magic %#x and stripe_count %u\n",
1687                        buf->lb_len, lum_size, magic, stripe_count);
1688                 GOTO(out, rc = -EINVAL);
1689         }
1690
1691         if (!(magic == LOV_USER_MAGIC_V3 || magic == LOV_USER_MAGIC_SPECIFIC))
1692                 goto out;
1693
1694         lum3 = buf->lb_buf;
1695         /* In the function below, .hs_keycmp resolves to
1696          * pool_hashkey_keycmp() */
1697         /* coverity[overrun-buffer-val] */
1698         pool = lod_find_pool(d, lum3->lmm_pool_name);
1699         if (pool == NULL)
1700                 goto out;
1701
1702         if (!is_from_disk && stripe_offset != LOV_OFFSET_DEFAULT) {
1703                 rc = lod_check_index_in_pool(stripe_offset, pool);
1704                 if (rc < 0)
1705                         GOTO(out, rc = -EINVAL);
1706         }
1707
1708         if (is_from_disk && stripe_count > pool_tgt_count(pool)) {
1709                 CDEBUG(D_LAYOUT, "stripe count %u > # OSTs %u in the pool\n",
1710                        stripe_count, pool_tgt_count(pool));
1711                 GOTO(out, rc = -EINVAL);
1712         }
1713
1714 out:
1715         if (pool != NULL)
1716                 lod_pool_putref(pool);
1717
1718         RETURN(rc);
1719 }
1720
1721 static inline
1722 struct lov_comp_md_entry_v1 *comp_entry_v1(struct lov_comp_md_v1 *comp, int i)
1723 {
1724         LASSERTF((le32_to_cpu(comp->lcm_magic) & ~LOV_MAGIC_DEFINED) ==
1725                  LOV_USER_MAGIC_COMP_V1 ||
1726                  (le32_to_cpu(comp->lcm_magic) & ~LOV_MAGIC_DEFINED) ==
1727                  LOV_USER_MAGIC_SEL, "Wrong magic %x\n",
1728                  le32_to_cpu(comp->lcm_magic));
1729         LASSERTF(i >= 0 && i < le16_to_cpu(comp->lcm_entry_count),
1730                  "bad index %d, max = %d\n",
1731                  i, le16_to_cpu(comp->lcm_entry_count));
1732
1733         return &comp->lcm_entries[i];
1734 }
1735
1736 #define for_each_comp_entry_v1(comp, entry) \
1737         for (entry = comp_entry_v1(comp, 0); \
1738              entry <= comp_entry_v1(comp, \
1739                                    le16_to_cpu(comp->lcm_entry_count) - 1); \
1740              entry++)
1741
1742 int lod_erase_dom_stripe(struct lov_comp_md_v1 *comp_v1,
1743                          struct lov_comp_md_entry_v1 *dom_ent)
1744 {
1745         struct lov_comp_md_entry_v1 *ent;
1746         __u16 entries;
1747         __u32 dom_off, dom_size, comp_size, off;
1748         void *src, *dst;
1749         unsigned int size, shift;
1750
1751         entries = le16_to_cpu(comp_v1->lcm_entry_count) - 1;
1752         LASSERT(entries > 0);
1753         comp_v1->lcm_entry_count = cpu_to_le16(entries);
1754
1755         comp_size = le32_to_cpu(comp_v1->lcm_size);
1756         dom_off = le32_to_cpu(dom_ent->lcme_offset);
1757         dom_size = le32_to_cpu(dom_ent->lcme_size);
1758
1759         /* all entries offsets are shifted by entry size at least */
1760         shift = sizeof(*dom_ent);
1761         for_each_comp_entry_v1(comp_v1, ent) {
1762                 off = le32_to_cpu(ent->lcme_offset);
1763                 if (off == dom_off) {
1764                         /* Entry deletion creates two holes in layout data:
1765                          * - hole in entries array
1766                          * - hole in layout data at dom_off with dom_size
1767                          *
1768                          * First memmove is one entry shift from next entry
1769                          * start with size up to dom_off in blob
1770                          */
1771                         dst = (void *)ent;
1772                         src = (void *)(ent + 1);
1773                         size = (unsigned long)((void *)comp_v1 + dom_off - src);
1774                         memmove(dst, src, size);
1775                         /* take 'off' from just moved entry */
1776                         off = le32_to_cpu(ent->lcme_offset);
1777                         /* second memmove is blob tail after 'off' up to
1778                          * component end
1779                          */
1780                         dst = (void *)comp_v1 + dom_off - sizeof(*ent);
1781                         src = (void *)comp_v1 + off;
1782                         size = (unsigned long)(comp_size - off);
1783                         memmove(dst, src, size);
1784                         /* all entries offsets after DoM entry are shifted by
1785                          * dom_size additionally
1786                          */
1787                         shift += dom_size;
1788                 }
1789                 ent->lcme_offset = cpu_to_le32(off - shift);
1790         }
1791         comp_v1->lcm_size = cpu_to_le32(comp_size - shift);
1792
1793         /* notify a caller to re-check entry */
1794         return -ERESTART;
1795 }
1796
1797 void lod_dom_stripesize_recalc(struct lod_device *d)
1798 {
1799         __u64 threshold_mb = d->lod_dom_threshold_free_mb;
1800         __u32 max_size = d->lod_dom_stripesize_max_kb;
1801         __u32 def_size = d->lod_dom_stripesize_cur_kb;
1802
1803         /* use maximum allowed value if free space is above threshold */
1804         if (d->lod_lsfs_free_mb >= threshold_mb) {
1805                 def_size = max_size;
1806         } else if (!d->lod_lsfs_free_mb || max_size <= LOD_DOM_MIN_SIZE_KB) {
1807                 def_size = 0;
1808         } else {
1809                 /* recalc threshold like it would be with def_size as max */
1810                 threshold_mb = mult_frac(threshold_mb, def_size, max_size);
1811                 if (d->lod_lsfs_free_mb < threshold_mb)
1812                         def_size = rounddown(def_size / 2, LOD_DOM_MIN_SIZE_KB);
1813                 else if (d->lod_lsfs_free_mb > threshold_mb * 2)
1814                         def_size = max_t(unsigned int, def_size * 2,
1815                                          LOD_DOM_MIN_SIZE_KB);
1816         }
1817
1818         if (d->lod_dom_stripesize_cur_kb != def_size) {
1819                 CDEBUG(D_LAYOUT, "Change default DOM stripe size %d->%d\n",
1820                        d->lod_dom_stripesize_cur_kb, def_size);
1821                 d->lod_dom_stripesize_cur_kb = def_size;
1822         }
1823 }
1824
1825 static __u32 lod_dom_stripesize_limit(const struct lu_env *env,
1826                                       struct lod_device *d)
1827 {
1828         int rc;
1829
1830         /* set bfree as fraction of total space */
1831         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_STATFS_SPOOF)) {
1832                 spin_lock(&d->lod_lsfs_lock);
1833                 d->lod_lsfs_free_mb = mult_frac(d->lod_lsfs_total_mb,
1834                                         min_t(int, cfs_fail_val, 100), 100);
1835                 GOTO(recalc, rc = 0);
1836         }
1837
1838         if (d->lod_lsfs_age < ktime_get_seconds() - LOD_DOM_SFS_MAX_AGE) {
1839                 struct obd_statfs sfs;
1840
1841                 spin_lock(&d->lod_lsfs_lock);
1842                 if (d->lod_lsfs_age > ktime_get_seconds() - LOD_DOM_SFS_MAX_AGE)
1843                         GOTO(unlock, rc = 0);
1844
1845                 d->lod_lsfs_age = ktime_get_seconds();
1846                 spin_unlock(&d->lod_lsfs_lock);
1847                 rc = dt_statfs(env, d->lod_child, &sfs);
1848                 if (rc) {
1849                         CDEBUG(D_LAYOUT,
1850                                "%s: failed to get OSD statfs: rc = %d\n",
1851                                lod2obd(d)->obd_name, rc);
1852                         GOTO(out, rc);
1853                 }
1854                 /* udpate local OSD cached statfs data */
1855                 spin_lock(&d->lod_lsfs_lock);
1856                 d->lod_lsfs_total_mb = (sfs.os_blocks * sfs.os_bsize) >> 20;
1857                 d->lod_lsfs_free_mb = (sfs.os_bfree * sfs.os_bsize) >> 20;
1858 recalc:
1859                 lod_dom_stripesize_recalc(d);
1860 unlock:
1861                 spin_unlock(&d->lod_lsfs_lock);
1862         }
1863 out:
1864         return d->lod_dom_stripesize_cur_kb << 10;
1865 }
1866
1867 int lod_dom_stripesize_choose(const struct lu_env *env, struct lod_device *d,
1868                               struct lov_comp_md_v1 *comp_v1,
1869                               struct lov_comp_md_entry_v1 *dom_ent,
1870                               __u32 stripe_size)
1871 {
1872         struct lov_comp_md_entry_v1 *ent;
1873         struct lu_extent *dom_ext, *ext;
1874         struct lov_user_md_v1 *lum;
1875         __u32 max_stripe_size;
1876         __u16 mid, dom_mid;
1877         int rc = 0;
1878         bool dom_next_entry = false;
1879
1880         dom_ext = &dom_ent->lcme_extent;
1881         dom_mid = mirror_id_of(le32_to_cpu(dom_ent->lcme_id));
1882         max_stripe_size = lod_dom_stripesize_limit(env, d);
1883
1884         /* Check stripe size againts current per-MDT limit */
1885         if (stripe_size <= max_stripe_size)
1886                 return 0;
1887
1888         lum = (void *)comp_v1 + le32_to_cpu(dom_ent->lcme_offset);
1889         CDEBUG(D_LAYOUT, "overwrite DoM component size %u with MDT limit %u\n",
1890                stripe_size, max_stripe_size);
1891         lum->lmm_stripe_size = cpu_to_le32(max_stripe_size);
1892
1893         /* In common case the DoM stripe is first entry in a mirror and
1894          * can be deleted only if it is not single entry in layout or
1895          * mirror, otherwise error should be returned.
1896          */
1897         for_each_comp_entry_v1(comp_v1, ent) {
1898                 if (ent == dom_ent)
1899                         continue;
1900
1901                 mid = mirror_id_of(le32_to_cpu(ent->lcme_id));
1902                 if (mid != dom_mid)
1903                         continue;
1904
1905                 ext = &ent->lcme_extent;
1906                 if (ext->e_start != dom_ext->e_end)
1907                         continue;
1908
1909                 /* Found next component after the DoM one with the same
1910                  * mirror_id and adjust its start with DoM component end.
1911                  *
1912                  * NOTE: we are considering here that there can be only one
1913                  * DoM component in a file, all replicas are located on OSTs
1914                  * always and don't need adjustment since use own layouts.
1915                  */
1916                 ext->e_start = cpu_to_le64(max_stripe_size);
1917                 dom_next_entry = true;
1918                 break;
1919         }
1920
1921         if (max_stripe_size == 0) {
1922                 /* DoM component size is zero due to server setting, remove
1923                  * it from the layout but only if next component exists in
1924                  * the same mirror. That must be checked prior calling the
1925                  * lod_erase_dom_stripe().
1926                  */
1927                 if (!dom_next_entry)
1928                         return -EFBIG;
1929
1930                 rc = lod_erase_dom_stripe(comp_v1, dom_ent);
1931         } else {
1932                 /* Update DoM extent end finally */
1933                 dom_ext->e_end = cpu_to_le64(max_stripe_size);
1934         }
1935
1936         return rc;
1937 }
1938
1939 /**
1940  * Verify LOV striping.
1941  *
1942  * \param[in] d                 LOD device
1943  * \param[in] buf               buffer with LOV EA to verify
1944  * \param[in] is_from_disk      0 - from user, allow some fields to be 0
1945  *                              1 - from disk, do not allow
1946  * \param[in] start             extent start for composite layout
1947  *
1948  * \retval                      0 if the striping is valid
1949  * \retval                      -EINVAL if striping is invalid
1950  */
1951 int lod_verify_striping(const struct lu_env *env, struct lod_device *d,
1952                         struct lod_object *lo, const struct lu_buf *buf,
1953                         bool is_from_disk)
1954 {
1955         struct lov_user_md_v1   *lum;
1956         struct lov_comp_md_v1   *comp_v1;
1957         struct lov_comp_md_entry_v1     *ent;
1958         struct lu_extent        *ext;
1959         struct lu_buf   tmp;
1960         __u64   prev_end = 0;
1961         __u32   stripe_size = 0;
1962         __u16   prev_mid = -1, mirror_id = -1;
1963         __u32   mirror_count;
1964         __u32   magic;
1965         int     rc = 0;
1966         ENTRY;
1967
1968         if (buf->lb_len < sizeof(lum->lmm_magic)) {
1969                 CDEBUG(D_LAYOUT, "invalid buf len %zu\n", buf->lb_len);
1970                 RETURN(-EINVAL);
1971         }
1972
1973         lum = buf->lb_buf;
1974
1975         magic = le32_to_cpu(lum->lmm_magic) & ~LOV_MAGIC_DEFINED;
1976         /* treat foreign LOV EA/object case first
1977          * XXX is it expected to try setting again a foreign?
1978          * XXX should we care about different current vs new layouts ?
1979          */
1980         if (unlikely(magic == LOV_USER_MAGIC_FOREIGN)) {
1981                 struct lov_foreign_md *lfm = buf->lb_buf;
1982
1983                 if (buf->lb_len < offsetof(typeof(*lfm), lfm_value)) {
1984                         CDEBUG(D_LAYOUT,
1985                                "buf len %zu < min lov_foreign_md size (%zu)\n",
1986                                buf->lb_len, offsetof(typeof(*lfm),
1987                                lfm_value));
1988                         RETURN(-EINVAL);
1989                 }
1990
1991                 if (foreign_size_le(lfm) > buf->lb_len) {
1992                         CDEBUG(D_LAYOUT,
1993                                "buf len %zu < this lov_foreign_md size (%zu)\n",
1994                                buf->lb_len, foreign_size_le(lfm));
1995                         RETURN(-EINVAL);
1996                 }
1997                 /* Don't do anything with foreign layouts */
1998                 RETURN(0);
1999         }
2000
2001         /* normal LOV/layout cases */
2002
2003         if (buf->lb_len < sizeof(*lum)) {
2004                 CDEBUG(D_LAYOUT, "buf len %zu too small for lov_user_md\n",
2005                        buf->lb_len);
2006                 RETURN(-EINVAL);
2007         }
2008
2009         switch (magic) {
2010         case LOV_USER_MAGIC_FOREIGN:
2011                 RETURN(0);
2012         case LOV_USER_MAGIC_V1:
2013         case LOV_USER_MAGIC_V3:
2014         case LOV_USER_MAGIC_SPECIFIC:
2015                 RETURN(lod_verify_v1v3(d, buf, is_from_disk));
2016         case LOV_USER_MAGIC_COMP_V1:
2017         case LOV_USER_MAGIC_SEL:
2018                 break;
2019         default:
2020                 CDEBUG(D_LAYOUT, "bad userland LOV MAGIC: %#x\n",
2021                        le32_to_cpu(lum->lmm_magic));
2022                 RETURN(-EINVAL);
2023         }
2024
2025         /* magic == LOV_USER_MAGIC_COMP_V1 */
2026         comp_v1 = buf->lb_buf;
2027         if (buf->lb_len < le32_to_cpu(comp_v1->lcm_size)) {
2028                 CDEBUG(D_LAYOUT, "buf len %zu is less than %u\n",
2029                        buf->lb_len, le32_to_cpu(comp_v1->lcm_size));
2030                 RETURN(-EINVAL);
2031         }
2032
2033 recheck:
2034         mirror_count = 0;
2035         if (le16_to_cpu(comp_v1->lcm_entry_count) == 0) {
2036                 CDEBUG(D_LAYOUT, "entry count is zero\n");
2037                 RETURN(-EINVAL);
2038         }
2039
2040         if (S_ISREG(lod2lu_obj(lo)->lo_header->loh_attr) &&
2041             lo->ldo_comp_cnt > 0) {
2042                 /* could be called from lustre.lov.add */
2043                 __u32 cnt = lo->ldo_comp_cnt;
2044
2045                 ext = &lo->ldo_comp_entries[cnt - 1].llc_extent;
2046                 prev_end = ext->e_end;
2047
2048                 ++mirror_count;
2049         }
2050
2051         for_each_comp_entry_v1(comp_v1, ent) {
2052                 ext = &ent->lcme_extent;
2053
2054                 if (le64_to_cpu(ext->e_start) > le64_to_cpu(ext->e_end) ||
2055                     le64_to_cpu(ext->e_start) & (LOV_MIN_STRIPE_SIZE - 1) ||
2056                     (le64_to_cpu(ext->e_end) != LUSTRE_EOF &&
2057                     le64_to_cpu(ext->e_end) & (LOV_MIN_STRIPE_SIZE - 1))) {
2058                         CDEBUG(D_LAYOUT, "invalid extent "DEXT"\n",
2059                                le64_to_cpu(ext->e_start),
2060                                le64_to_cpu(ext->e_end));
2061                         RETURN(-EINVAL);
2062                 }
2063
2064                 if (is_from_disk) {
2065                         /* lcme_id contains valid value */
2066                         if (le32_to_cpu(ent->lcme_id) == 0 ||
2067                             le32_to_cpu(ent->lcme_id) > LCME_ID_MAX) {
2068                                 CDEBUG(D_LAYOUT, "invalid id %u\n",
2069                                        le32_to_cpu(ent->lcme_id));
2070                                 RETURN(-EINVAL);
2071                         }
2072
2073                         if (le16_to_cpu(comp_v1->lcm_mirror_count) > 0) {
2074                                 mirror_id = mirror_id_of(
2075                                                 le32_to_cpu(ent->lcme_id));
2076
2077                                 /* first component must start with 0 */
2078                                 if (mirror_id != prev_mid &&
2079                                     le64_to_cpu(ext->e_start) != 0) {
2080                                         CDEBUG(D_LAYOUT,
2081                                                "invalid start:%llu, expect:0\n",
2082                                                le64_to_cpu(ext->e_start));
2083                                         RETURN(-EINVAL);
2084                                 }
2085
2086                                 prev_mid = mirror_id;
2087                         }
2088                 }
2089
2090                 if (le64_to_cpu(ext->e_start) == 0) {
2091                         ++mirror_count;
2092                         prev_end = 0;
2093                 }
2094
2095                 /* the next must be adjacent with the previous one */
2096                 if (le64_to_cpu(ext->e_start) != prev_end) {
2097                         CDEBUG(D_LAYOUT,
2098                                "invalid start actual:%llu, expect:%llu\n",
2099                                le64_to_cpu(ext->e_start), prev_end);
2100                         RETURN(-EINVAL);
2101                 }
2102
2103                 tmp.lb_buf = (char *)comp_v1 + le32_to_cpu(ent->lcme_offset);
2104                 tmp.lb_len = le32_to_cpu(ent->lcme_size);
2105
2106                 /* Check DoM entry is always the first one */
2107                 lum = tmp.lb_buf;
2108                 if (lov_pattern(le32_to_cpu(lum->lmm_pattern)) ==
2109                     LOV_PATTERN_MDT) {
2110                         /* DoM component must be the first in a mirror */
2111                         if (le64_to_cpu(ext->e_start) > 0) {
2112                                 CDEBUG(D_LAYOUT, "invalid DoM component "
2113                                        "with %llu extent start\n",
2114                                        le64_to_cpu(ext->e_start));
2115                                 RETURN(-EINVAL);
2116                         }
2117                         stripe_size = le32_to_cpu(lum->lmm_stripe_size);
2118                         /* There is just one stripe on MDT and it must
2119                          * cover whole component size. */
2120                         if (stripe_size != le64_to_cpu(ext->e_end)) {
2121                                 CDEBUG(D_LAYOUT, "invalid DoM layout "
2122                                        "stripe size %u != %llu "
2123                                        "(component size)\n",
2124                                        stripe_size, prev_end);
2125                                 RETURN(-EINVAL);
2126                         }
2127                         /* Check and adjust stripe size by per-MDT limit */
2128                         rc = lod_dom_stripesize_choose(env, d, comp_v1, ent,
2129                                                        stripe_size);
2130                         /* DoM entry was removed, re-check layout from start */
2131                         if (rc == -ERESTART)
2132                                 goto recheck;
2133                         else if (rc)
2134                                 RETURN(rc);
2135
2136                         if (le16_to_cpu(lum->lmm_stripe_count) == 1)
2137                                 lum->lmm_stripe_count = 0;
2138                         /* Any stripe count is forbidden on DoM component */
2139                         if (lum->lmm_stripe_count > 0) {
2140                                 CDEBUG(D_LAYOUT,
2141                                        "invalid DoM layout stripe count %u, must be 0\n",
2142                                        le16_to_cpu(lum->lmm_stripe_count));
2143                                 RETURN(-EINVAL);
2144                         }
2145
2146                         /* Any pool is forbidden on DoM component */
2147                         if (lum->lmm_magic == LOV_USER_MAGIC_V3) {
2148                                 struct lov_user_md_v3 *v3 = (void *)lum;
2149
2150                                 if (v3->lmm_pool_name[0] != '\0') {
2151                                         CDEBUG(D_LAYOUT,
2152                                                "DoM component cannot have pool assigned\n");
2153                                         RETURN(-EINVAL);
2154                                 }
2155                         }
2156                 }
2157
2158                 prev_end = le64_to_cpu(ext->e_end);
2159
2160                 rc = lod_verify_v1v3(d, &tmp, is_from_disk);
2161                 if (rc)
2162                         RETURN(rc);
2163
2164                 if (prev_end == LUSTRE_EOF || ext->e_start == prev_end)
2165                         continue;
2166
2167                 /* extent end must be aligned with the stripe_size */
2168                 stripe_size = le32_to_cpu(lum->lmm_stripe_size);
2169                 if (stripe_size && prev_end % stripe_size) {
2170                         CDEBUG(D_LAYOUT, "stripe size isn't aligned, "
2171                                "stripe_sz: %u, [%llu, %llu)\n",
2172                                stripe_size, ext->e_start, prev_end);
2173                         RETURN(-EINVAL);
2174                 }
2175         }
2176
2177         /* make sure that the mirror_count is telling the truth */
2178         if (mirror_count != le16_to_cpu(comp_v1->lcm_mirror_count) + 1)
2179                 RETURN(-EINVAL);
2180
2181         RETURN(0);
2182 }
2183
2184 /**
2185  * set the default stripe size, if unset.
2186  *
2187  * \param[in,out] val   number of bytes per OST stripe
2188  *
2189  * The minimum stripe size is 64KB to ensure that a single stripe is an
2190  * even multiple of a client PAGE_SIZE (IA64, PPC, etc).  Otherwise, it
2191  * is difficult to split dirty pages across OSCs during writes.
2192  */
2193 void lod_fix_desc_stripe_size(__u64 *val)
2194 {
2195         if (*val < LOV_MIN_STRIPE_SIZE) {
2196                 if (*val != 0)
2197                         LCONSOLE_INFO("Increasing default stripe size to "
2198                                       "minimum value %u\n",
2199                                       LOV_DESC_STRIPE_SIZE_DEFAULT);
2200                 *val = LOV_DESC_STRIPE_SIZE_DEFAULT;
2201         } else if (*val & (LOV_MIN_STRIPE_SIZE - 1)) {
2202                 *val &= ~(LOV_MIN_STRIPE_SIZE - 1);
2203                 LCONSOLE_WARN("Changing default stripe size to %llu (a "
2204                               "multiple of %u)\n",
2205                               *val, LOV_MIN_STRIPE_SIZE);
2206         }
2207 }
2208
2209 /**
2210  * set the filesystem default number of stripes, if unset.
2211  *
2212  * \param[in,out] val   number of stripes
2213  *
2214  * A value of "0" means "use the system-wide default stripe count", which
2215  * has either been inherited by now, or falls back to 1 stripe per file.
2216  * A value of "-1" (0xffffffff) means "stripe over all available OSTs",
2217  * and is a valid value, so is left unchanged here.
2218  */
2219 void lod_fix_desc_stripe_count(__u32 *val)
2220 {
2221         if (*val == 0)
2222                 *val = 1;
2223 }
2224
2225 /**
2226  * set the filesystem default layout pattern
2227  *
2228  * \param[in,out] val   LOV_PATTERN_* layout
2229  *
2230  * A value of "0" means "use the system-wide default layout type", which
2231  * has either been inherited by now, or falls back to plain RAID0 striping.
2232  */
2233 void lod_fix_desc_pattern(__u32 *val)
2234 {
2235         /* from lov_setstripe */
2236         if ((*val != 0) && !lov_pattern_supported_normal_comp(*val)) {
2237                 LCONSOLE_WARN("lod: Unknown stripe pattern: %#x\n", *val);
2238                 *val = 0;
2239         }
2240 }
2241
2242 void lod_fix_lmv_desc_pattern(__u32 *val)
2243 {
2244         if ((*val) && !lmv_is_known_hash_type(*val)) {
2245                 LCONSOLE_WARN("lod: Unknown md stripe pattern: %#x\n", *val);
2246                 *val = 0;
2247         }
2248 }
2249
2250 void lod_fix_desc_qos_maxage(__u32 *val)
2251 {
2252         /* fix qos_maxage */
2253         if (*val == 0)
2254                 *val = LOV_DESC_QOS_MAXAGE_DEFAULT;
2255 }
2256
2257 /**
2258  * Used to fix insane default striping.
2259  *
2260  * \param[in] desc      striping description
2261  */
2262 void lod_fix_desc(struct lov_desc *desc)
2263 {
2264         lod_fix_desc_stripe_size(&desc->ld_default_stripe_size);
2265         lod_fix_desc_stripe_count(&desc->ld_default_stripe_count);
2266         lod_fix_desc_pattern(&desc->ld_pattern);
2267         lod_fix_desc_qos_maxage(&desc->ld_qos_maxage);
2268 }
2269
2270 static void lod_fix_lmv_desc(struct lmv_desc *desc)
2271 {
2272         desc->ld_active_tgt_count = 0;
2273         lod_fix_desc_stripe_count(&desc->ld_default_stripe_count);
2274         lod_fix_lmv_desc_pattern(&desc->ld_pattern);
2275         lod_fix_desc_qos_maxage(&desc->ld_qos_maxage);
2276 }
2277
2278 /**
2279  * Initialize the structures used to store pools and default striping.
2280  *
2281  * \param[in] lod       LOD device
2282  * \param[in] lcfg      configuration structure storing default striping.
2283  *
2284  * \retval              0 if initialization succeeds
2285  * \retval              negative error number on failure
2286  */
2287 int lod_pools_init(struct lod_device *lod, struct lustre_cfg *lcfg)
2288 {
2289         struct obd_device          *obd;
2290         struct lov_desc            *desc;
2291         int                         rc;
2292         ENTRY;
2293
2294         obd = class_name2obd(lustre_cfg_string(lcfg, 0));
2295         LASSERT(obd != NULL);
2296         obd->obd_lu_dev = &lod->lod_dt_dev.dd_lu_dev;
2297
2298         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1) {
2299                 CERROR("LOD setup requires a descriptor\n");
2300                 RETURN(-EINVAL);
2301         }
2302
2303         desc = (struct lov_desc *)lustre_cfg_buf(lcfg, 1);
2304
2305         if (sizeof(*desc) > LUSTRE_CFG_BUFLEN(lcfg, 1)) {
2306                 CERROR("descriptor size wrong: %d > %d\n",
2307                        (int)sizeof(*desc), LUSTRE_CFG_BUFLEN(lcfg, 1));
2308                 RETURN(-EINVAL);
2309         }
2310
2311         if (desc->ld_magic != LOV_DESC_MAGIC) {
2312                 if (desc->ld_magic == __swab32(LOV_DESC_MAGIC)) {
2313                         CDEBUG(D_OTHER, "%s: Swabbing lov desc %p\n",
2314                                obd->obd_name, desc);
2315                         lustre_swab_lov_desc(desc);
2316                 } else {
2317                         CERROR("%s: Bad lov desc magic: %#x\n",
2318                                obd->obd_name, desc->ld_magic);
2319                         RETURN(-EINVAL);
2320                 }
2321         }
2322
2323         lod_fix_desc(desc);
2324
2325         desc->ld_active_tgt_count = 0;
2326         lod->lod_ost_descs.ltd_lov_desc = *desc;
2327
2328         /* NB: config doesn't contain lmv_desc, alter it via sysfs. */
2329         lod_fix_lmv_desc(&lod->lod_mdt_descs.ltd_lmv_desc);
2330
2331         lod->lod_sp_me = LUSTRE_SP_CLI;
2332
2333         /* Set up OST pool environment */
2334         lod->lod_pool_count = 0;
2335         rc = lod_pool_hash_init(&lod->lod_pools_hash_body);
2336         if (rc)
2337                 RETURN(-ENOMEM);
2338
2339         INIT_LIST_HEAD(&lod->lod_pool_list);
2340         lod->lod_pool_count = 0;
2341         rc = lu_tgt_pool_init(&lod->lod_mdt_descs.ltd_tgt_pool, 0);
2342         if (rc)
2343                 GOTO(out_hash, rc);
2344
2345         rc = lu_tgt_pool_init(&lod->lod_mdt_descs.ltd_qos.lq_rr.lqr_pool, 0);
2346         if (rc)
2347                 GOTO(out_mdt_pool, rc);
2348
2349         rc = lu_tgt_pool_init(&lod->lod_ost_descs.ltd_tgt_pool, 0);
2350         if (rc)
2351                 GOTO(out_mdt_rr_pool, rc);
2352
2353         rc = lu_tgt_pool_init(&lod->lod_ost_descs.ltd_qos.lq_rr.lqr_pool, 0);
2354         if (rc)
2355                 GOTO(out_ost_pool, rc);
2356
2357         RETURN(0);
2358
2359 out_ost_pool:
2360         lu_tgt_pool_free(&lod->lod_ost_descs.ltd_tgt_pool);
2361 out_mdt_rr_pool:
2362         lu_tgt_pool_free(&lod->lod_mdt_descs.ltd_qos.lq_rr.lqr_pool);
2363 out_mdt_pool:
2364         lu_tgt_pool_free(&lod->lod_mdt_descs.ltd_tgt_pool);
2365 out_hash:
2366         lod_pool_hash_destroy(&lod->lod_pools_hash_body);
2367
2368         return rc;
2369 }
2370
2371 /**
2372  * Release the structures describing the pools.
2373  *
2374  * \param[in] lod       LOD device from which we release the structures
2375  *
2376  * \retval              0 always
2377  */
2378 int lod_pools_fini(struct lod_device *lod)
2379 {
2380         struct obd_device   *obd = lod2obd(lod);
2381         struct pool_desc    *pool, *tmp;
2382         ENTRY;
2383
2384         list_for_each_entry_safe(pool, tmp, &lod->lod_pool_list, pool_list) {
2385                 /* free pool structs */
2386                 CDEBUG(D_INFO, "delete pool %p\n", pool);
2387                 /* In the function below, .hs_keycmp resolves to
2388                  * pool_hashkey_keycmp() */
2389                 /* coverity[overrun-buffer-val] */
2390                 lod_pool_del(obd, pool->pool_name);
2391         }
2392
2393         lod_pool_hash_destroy(&lod->lod_pools_hash_body);
2394         lu_tgt_pool_free(&lod->lod_ost_descs.ltd_qos.lq_rr.lqr_pool);
2395         lu_tgt_pool_free(&lod->lod_ost_descs.ltd_tgt_pool);
2396         lu_tgt_pool_free(&lod->lod_mdt_descs.ltd_qos.lq_rr.lqr_pool);
2397         lu_tgt_pool_free(&lod->lod_mdt_descs.ltd_tgt_pool);
2398
2399         RETURN(0);
2400 }