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