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