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