Whamcloud - gitweb
LU-15307 lod: add option to set max dir stripe count
[fs/lustre-release.git] / lustre / lod / lod_object.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  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
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_object.c
30  *
31  * This file contains implementations of methods for the OSD API
32  * for the Logical Object Device (LOD) layer, which provides a virtual
33  * local OSD object interface to the MDD layer, and abstracts the
34  * addressing of local (OSD) and remote (OSP) objects. The API is
35  * described in the file lustre/include/dt_object.h and in
36  * Documentation/osd-api.txt.
37  *
38  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_MDS
42
43 #include <linux/random.h>
44
45 #include <obd.h>
46 #include <obd_class.h>
47 #include <obd_support.h>
48
49 #include <lustre_fid.h>
50 #include <lustre_linkea.h>
51 #include <lustre_lmv.h>
52 #include <uapi/linux/lustre/lustre_param.h>
53 #include <lustre_swab.h>
54 #include <uapi/linux/lustre/lustre_ver.h>
55 #include <lprocfs_status.h>
56 #include <md_object.h>
57
58 #include "lod_internal.h"
59
60 static const char dot[] = ".";
61 static const char dotdot[] = "..";
62
63 /**
64  * Implementation of dt_index_operations::dio_lookup
65  *
66  * Used with regular (non-striped) objects.
67  *
68  * \see dt_index_operations::dio_lookup() in the API description for details.
69  */
70 static int lod_lookup(const struct lu_env *env, struct dt_object *dt,
71                       struct dt_rec *rec, const struct dt_key *key)
72 {
73         struct dt_object *next = dt_object_child(dt);
74         return next->do_index_ops->dio_lookup(env, next, rec, key);
75 }
76
77 /**
78  * Implementation of dt_index_operations::dio_declare_insert.
79  *
80  * Used with regular (non-striped) objects.
81  *
82  * \see dt_index_operations::dio_declare_insert() in the API description
83  * for details.
84  */
85 static int lod_declare_insert(const struct lu_env *env, struct dt_object *dt,
86                               const struct dt_rec *rec,
87                               const struct dt_key *key, struct thandle *th)
88 {
89         return lod_sub_declare_insert(env, dt_object_child(dt), rec, key, th);
90 }
91
92 /**
93  * Implementation of dt_index_operations::dio_insert.
94  *
95  * Used with regular (non-striped) objects
96  *
97  * \see dt_index_operations::dio_insert() in the API description for details.
98  */
99 static int lod_insert(const struct lu_env *env, struct dt_object *dt,
100                       const struct dt_rec *rec, const struct dt_key *key,
101                       struct thandle *th)
102 {
103         return lod_sub_insert(env, dt_object_child(dt), rec, key, th);
104 }
105
106 /**
107  * Implementation of dt_index_operations::dio_declare_delete.
108  *
109  * Used with regular (non-striped) objects.
110  *
111  * \see dt_index_operations::dio_declare_delete() in the API description
112  * for details.
113  */
114 static int lod_declare_delete(const struct lu_env *env, struct dt_object *dt,
115                               const struct dt_key *key, struct thandle *th)
116 {
117         return lod_sub_declare_delete(env, dt_object_child(dt), key, th);
118 }
119
120 /**
121  * Implementation of dt_index_operations::dio_delete.
122  *
123  * Used with regular (non-striped) objects.
124  *
125  * \see dt_index_operations::dio_delete() in the API description for details.
126  */
127 static int lod_delete(const struct lu_env *env, struct dt_object *dt,
128                       const struct dt_key *key, struct thandle *th)
129 {
130         return lod_sub_delete(env, dt_object_child(dt), key, th);
131 }
132
133 /**
134  * Implementation of dt_it_ops::init.
135  *
136  * Used with regular (non-striped) objects.
137  *
138  * \see dt_it_ops::init() in the API description for details.
139  */
140 static struct dt_it *lod_it_init(const struct lu_env *env,
141                                  struct dt_object *dt, __u32 attr)
142 {
143         struct dt_object        *next = dt_object_child(dt);
144         struct lod_it           *it = &lod_env_info(env)->lti_it;
145         struct dt_it            *it_next;
146
147         it_next = next->do_index_ops->dio_it.init(env, next, attr);
148         if (IS_ERR(it_next))
149                 return it_next;
150
151         /* currently we do not use more than one iterator per thread
152          * so we store it in thread info. if at some point we need
153          * more active iterators in a single thread, we can allocate
154          * additional ones */
155         LASSERT(it->lit_obj == NULL);
156
157         it->lit_it = it_next;
158         it->lit_obj = next;
159
160         return (struct dt_it *)it;
161 }
162
163 #define LOD_CHECK_IT(env, it)                                   \
164 do {                                                            \
165         LASSERT((it)->lit_obj != NULL);                         \
166         LASSERT((it)->lit_it != NULL);                          \
167 } while (0)
168
169 /**
170  * Implementation of dt_index_operations::dio_it.fini.
171  *
172  * Used with regular (non-striped) objects.
173  *
174  * \see dt_index_operations::dio_it.fini() in the API description for details.
175  */
176 static void lod_it_fini(const struct lu_env *env, struct dt_it *di)
177 {
178         struct lod_it *it = (struct lod_it *)di;
179
180         LOD_CHECK_IT(env, it);
181         it->lit_obj->do_index_ops->dio_it.fini(env, it->lit_it);
182
183         /* the iterator not in use any more */
184         it->lit_obj = NULL;
185         it->lit_it = NULL;
186 }
187
188 /**
189  * Implementation of dt_it_ops::get.
190  *
191  * Used with regular (non-striped) objects.
192  *
193  * \see dt_it_ops::get() in the API description for details.
194  */
195 static int lod_it_get(const struct lu_env *env, struct dt_it *di,
196                       const struct dt_key *key)
197 {
198         const struct lod_it *it = (const struct lod_it *)di;
199
200         LOD_CHECK_IT(env, it);
201         return it->lit_obj->do_index_ops->dio_it.get(env, it->lit_it, key);
202 }
203
204 /**
205  * Implementation of dt_it_ops::put.
206  *
207  * Used with regular (non-striped) objects.
208  *
209  * \see dt_it_ops::put() in the API description for details.
210  */
211 static void lod_it_put(const struct lu_env *env, struct dt_it *di)
212 {
213         struct lod_it *it = (struct lod_it *)di;
214
215         LOD_CHECK_IT(env, it);
216         return it->lit_obj->do_index_ops->dio_it.put(env, it->lit_it);
217 }
218
219 /**
220  * Implementation of dt_it_ops::next.
221  *
222  * Used with regular (non-striped) objects
223  *
224  * \see dt_it_ops::next() in the API description for details.
225  */
226 static int lod_it_next(const struct lu_env *env, struct dt_it *di)
227 {
228         struct lod_it *it = (struct lod_it *)di;
229
230         LOD_CHECK_IT(env, it);
231         return it->lit_obj->do_index_ops->dio_it.next(env, it->lit_it);
232 }
233
234 /**
235  * Implementation of dt_it_ops::key.
236  *
237  * Used with regular (non-striped) objects.
238  *
239  * \see dt_it_ops::key() in the API description for details.
240  */
241 static struct dt_key *lod_it_key(const struct lu_env *env,
242                                  const struct dt_it *di)
243 {
244         const struct lod_it *it = (const struct lod_it *)di;
245
246         LOD_CHECK_IT(env, it);
247         return it->lit_obj->do_index_ops->dio_it.key(env, it->lit_it);
248 }
249
250 /**
251  * Implementation of dt_it_ops::key_size.
252  *
253  * Used with regular (non-striped) objects.
254  *
255  * \see dt_it_ops::key_size() in the API description for details.
256  */
257 static int lod_it_key_size(const struct lu_env *env, const struct dt_it *di)
258 {
259         struct lod_it *it = (struct lod_it *)di;
260
261         LOD_CHECK_IT(env, it);
262         return it->lit_obj->do_index_ops->dio_it.key_size(env, it->lit_it);
263 }
264
265 /**
266  * Implementation of dt_it_ops::rec.
267  *
268  * Used with regular (non-striped) objects.
269  *
270  * \see dt_it_ops::rec() in the API description for details.
271  */
272 static int lod_it_rec(const struct lu_env *env, const struct dt_it *di,
273                       struct dt_rec *rec, __u32 attr)
274 {
275         const struct lod_it *it = (const struct lod_it *)di;
276
277         LOD_CHECK_IT(env, it);
278         return it->lit_obj->do_index_ops->dio_it.rec(env, it->lit_it, rec,
279                                                      attr);
280 }
281
282 /**
283  * Implementation of dt_it_ops::rec_size.
284  *
285  * Used with regular (non-striped) objects.
286  *
287  * \see dt_it_ops::rec_size() in the API description for details.
288  */
289 static int lod_it_rec_size(const struct lu_env *env, const struct dt_it *di,
290                            __u32 attr)
291 {
292         const struct lod_it *it = (const struct lod_it *)di;
293
294         LOD_CHECK_IT(env, it);
295         return it->lit_obj->do_index_ops->dio_it.rec_size(env, it->lit_it,
296                                                           attr);
297 }
298
299 /**
300  * Implementation of dt_it_ops::store.
301  *
302  * Used with regular (non-striped) objects.
303  *
304  * \see dt_it_ops::store() in the API description for details.
305  */
306 static __u64 lod_it_store(const struct lu_env *env, const struct dt_it *di)
307 {
308         const struct lod_it *it = (const struct lod_it *)di;
309
310         LOD_CHECK_IT(env, it);
311         return it->lit_obj->do_index_ops->dio_it.store(env, it->lit_it);
312 }
313
314 /**
315  * Implementation of dt_it_ops::load.
316  *
317  * Used with regular (non-striped) objects.
318  *
319  * \see dt_it_ops::load() in the API description for details.
320  */
321 static int lod_it_load(const struct lu_env *env, const struct dt_it *di,
322                        __u64 hash)
323 {
324         const struct lod_it *it = (const struct lod_it *)di;
325
326         LOD_CHECK_IT(env, it);
327         return it->lit_obj->do_index_ops->dio_it.load(env, it->lit_it, hash);
328 }
329
330 /**
331  * Implementation of dt_it_ops::key_rec.
332  *
333  * Used with regular (non-striped) objects.
334  *
335  * \see dt_it_ops::rec() in the API description for details.
336  */
337 static int lod_it_key_rec(const struct lu_env *env, const struct dt_it *di,
338                           void *key_rec)
339 {
340         const struct lod_it *it = (const struct lod_it *)di;
341
342         LOD_CHECK_IT(env, it);
343         return it->lit_obj->do_index_ops->dio_it.key_rec(env, it->lit_it,
344                                                          key_rec);
345 }
346
347 static const struct dt_index_operations lod_index_ops = {
348         .dio_lookup             = lod_lookup,
349         .dio_declare_insert     = lod_declare_insert,
350         .dio_insert             = lod_insert,
351         .dio_declare_delete     = lod_declare_delete,
352         .dio_delete             = lod_delete,
353         .dio_it = {
354                 .init           = lod_it_init,
355                 .fini           = lod_it_fini,
356                 .get            = lod_it_get,
357                 .put            = lod_it_put,
358                 .next           = lod_it_next,
359                 .key            = lod_it_key,
360                 .key_size       = lod_it_key_size,
361                 .rec            = lod_it_rec,
362                 .rec_size       = lod_it_rec_size,
363                 .store          = lod_it_store,
364                 .load           = lod_it_load,
365                 .key_rec        = lod_it_key_rec,
366         }
367 };
368
369 /**
370  * Implementation of dt_index_operations::dio_lookup
371  *
372  * Used with striped directories.
373  *
374  * \see dt_index_operations::dio_lookup() in the API description for details.
375  */
376 static int lod_striped_lookup(const struct lu_env *env, struct dt_object *dt,
377                       struct dt_rec *rec, const struct dt_key *key)
378 {
379         struct lod_object *lo = lod_dt_obj(dt);
380         struct dt_object *next;
381         const char *name = (const char *)key;
382
383         LASSERT(lo->ldo_dir_stripe_count > 0);
384
385         if (strcmp(name, dot) == 0) {
386                 struct lu_fid *fid = (struct lu_fid *)rec;
387
388                 *fid = *lod_object_fid(lo);
389                 return 1;
390         }
391
392         if (strcmp(name, dotdot) == 0) {
393                 next = dt_object_child(dt);
394         } else {
395                 int index;
396
397                 index = __lmv_name_to_stripe_index(lo->ldo_dir_hash_type,
398                                                    lo->ldo_dir_stripe_count,
399                                                    lo->ldo_dir_migrate_hash,
400                                                    lo->ldo_dir_migrate_offset,
401                                                    name, strlen(name), true);
402                 if (index < 0)
403                         return index;
404
405                 next = lo->ldo_stripe[index];
406                 if (!next || !dt_object_exists(next))
407                         return -ENODEV;
408         }
409
410         return next->do_index_ops->dio_lookup(env, next, rec, key);
411 }
412
413 /**
414  * Implementation of dt_it_ops::init.
415  *
416  * Used with striped objects. Internally just initializes the iterator
417  * on the first stripe.
418  *
419  * \see dt_it_ops::init() in the API description for details.
420  */
421 static struct dt_it *lod_striped_it_init(const struct lu_env *env,
422                                          struct dt_object *dt, __u32 attr)
423 {
424         struct lod_object *lo = lod_dt_obj(dt);
425         struct dt_object *next;
426         struct lod_it *it = &lod_env_info(env)->lti_it;
427         struct dt_it *it_next;
428         __u16 index = 0;
429
430         LASSERT(lo->ldo_dir_stripe_count > 0);
431
432         do {
433                 next = lo->ldo_stripe[index];
434                 if (next && dt_object_exists(next))
435                         break;
436         } while (++index < lo->ldo_dir_stripe_count);
437
438         /* no valid stripe */
439         if (!next || !dt_object_exists(next))
440                 return ERR_PTR(-ENODEV);
441
442         LASSERT(next->do_index_ops != NULL);
443
444         it_next = next->do_index_ops->dio_it.init(env, next, attr);
445         if (IS_ERR(it_next))
446                 return it_next;
447
448         /* currently we do not use more than one iterator per thread
449          * so we store it in thread info. if at some point we need
450          * more active iterators in a single thread, we can allocate
451          * additional ones */
452         LASSERT(it->lit_obj == NULL);
453
454         it->lit_stripe_index = index;
455         it->lit_attr = attr;
456         it->lit_it = it_next;
457         it->lit_obj = dt;
458
459         return (struct dt_it *)it;
460 }
461
462 #define LOD_CHECK_STRIPED_IT(env, it, lo)                               \
463 do {                                                                    \
464         LASSERT((it)->lit_obj != NULL);                                 \
465         LASSERT((it)->lit_it != NULL);                                  \
466         LASSERT((lo)->ldo_dir_stripe_count > 0);                        \
467         LASSERT((it)->lit_stripe_index < (lo)->ldo_dir_stripe_count);   \
468 } while (0)
469
470 /**
471  * Implementation of dt_it_ops::fini.
472  *
473  * Used with striped objects.
474  *
475  * \see dt_it_ops::fini() in the API description for details.
476  */
477 static void lod_striped_it_fini(const struct lu_env *env, struct dt_it *di)
478 {
479         struct lod_it           *it = (struct lod_it *)di;
480         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
481         struct dt_object        *next;
482
483         /* If lit_it == NULL, then it means the sub_it has been finished,
484          * which only happens in failure cases, see lod_striped_it_next() */
485         if (it->lit_it != NULL) {
486                 LOD_CHECK_STRIPED_IT(env, it, lo);
487
488                 next = lo->ldo_stripe[it->lit_stripe_index];
489                 if (next) {
490                         LASSERT(next->do_index_ops != NULL);
491                         next->do_index_ops->dio_it.fini(env, it->lit_it);
492                 }
493         }
494
495         /* the iterator not in use any more */
496         it->lit_obj = NULL;
497         it->lit_it = NULL;
498         it->lit_stripe_index = 0;
499 }
500
501 /**
502  * Implementation of dt_it_ops::get.
503  *
504  * Right now it's not used widely, only to reset the iterator to the
505  * initial position. It should be possible to implement a full version
506  * which chooses a correct stripe to be able to position with any key.
507  *
508  * \see dt_it_ops::get() in the API description for details.
509  */
510 static int lod_striped_it_get(const struct lu_env *env, struct dt_it *di,
511                               const struct dt_key *key)
512 {
513         const struct lod_it *it = (const struct lod_it *)di;
514         struct lod_object *lo = lod_dt_obj(it->lit_obj);
515         struct dt_object *next;
516
517         LOD_CHECK_STRIPED_IT(env, it, lo);
518
519         next = lo->ldo_stripe[it->lit_stripe_index];
520         LASSERT(next != NULL);
521         LASSERT(dt_object_exists(next));
522         LASSERT(next->do_index_ops != NULL);
523
524         return next->do_index_ops->dio_it.get(env, it->lit_it, key);
525 }
526
527 /**
528  * Implementation of dt_it_ops::put.
529  *
530  * Used with striped objects.
531  *
532  * \see dt_it_ops::put() in the API description for details.
533  */
534 static void lod_striped_it_put(const struct lu_env *env, struct dt_it *di)
535 {
536         struct lod_it *it = (struct lod_it *)di;
537         struct lod_object *lo = lod_dt_obj(it->lit_obj);
538         struct dt_object *next;
539
540         /*
541          * If lit_it == NULL, then it means the sub_it has been finished,
542          * which only happens in failure cases, see lod_striped_it_next()
543          */
544         if (!it->lit_it)
545                 return;
546
547         LOD_CHECK_STRIPED_IT(env, it, lo);
548
549         next = lo->ldo_stripe[it->lit_stripe_index];
550         LASSERT(next != NULL);
551         LASSERT(next->do_index_ops != NULL);
552
553         return next->do_index_ops->dio_it.put(env, it->lit_it);
554 }
555
556 /**
557  * Implementation of dt_it_ops::next.
558  *
559  * Used with striped objects. When the end of the current stripe is
560  * reached, the method takes the next stripe's iterator.
561  *
562  * \see dt_it_ops::next() in the API description for details.
563  */
564 static int lod_striped_it_next(const struct lu_env *env, struct dt_it *di)
565 {
566         struct lod_it *it = (struct lod_it *)di;
567         struct lod_object *lo = lod_dt_obj(it->lit_obj);
568         struct dt_object *next;
569         struct dt_it *it_next;
570         __u32 index;
571         int rc;
572
573         ENTRY;
574
575         LOD_CHECK_STRIPED_IT(env, it, lo);
576
577         next = lo->ldo_stripe[it->lit_stripe_index];
578         LASSERT(next != NULL);
579         LASSERT(dt_object_exists(next));
580         LASSERT(next->do_index_ops != NULL);
581 again:
582         rc = next->do_index_ops->dio_it.next(env, it->lit_it);
583         if (rc < 0)
584                 RETURN(rc);
585
586         if (rc == 0 && it->lit_stripe_index == 0)
587                 RETURN(rc);
588
589         if (rc == 0 && it->lit_stripe_index > 0) {
590                 struct lu_dirent *ent;
591
592                 ent = (struct lu_dirent *)lod_env_info(env)->lti_key;
593
594                 rc = next->do_index_ops->dio_it.rec(env, it->lit_it,
595                                                     (struct dt_rec *)ent,
596                                                     it->lit_attr);
597                 if (rc != 0)
598                         RETURN(rc);
599
600                 /* skip . and .. for slave stripe */
601                 if ((strncmp(ent->lde_name, ".",
602                              le16_to_cpu(ent->lde_namelen)) == 0 &&
603                      le16_to_cpu(ent->lde_namelen) == 1) ||
604                     (strncmp(ent->lde_name, "..",
605                              le16_to_cpu(ent->lde_namelen)) == 0 &&
606                      le16_to_cpu(ent->lde_namelen) == 2))
607                         goto again;
608
609                 RETURN(rc);
610         }
611
612         next->do_index_ops->dio_it.put(env, it->lit_it);
613         next->do_index_ops->dio_it.fini(env, it->lit_it);
614         it->lit_it = NULL;
615
616         /* go to next stripe */
617         index = it->lit_stripe_index;
618         while (++index < lo->ldo_dir_stripe_count) {
619                 next = lo->ldo_stripe[index];
620                 if (!next)
621                         continue;
622
623                 if (!dt_object_exists(next))
624                         continue;
625
626                 rc = next->do_ops->do_index_try(env, next,
627                                                 &dt_directory_features);
628                 if (rc != 0)
629                         RETURN(rc);
630
631                 LASSERT(next->do_index_ops != NULL);
632
633                 it_next = next->do_index_ops->dio_it.init(env, next,
634                                                           it->lit_attr);
635                 if (IS_ERR(it_next))
636                         RETURN(PTR_ERR(it_next));
637
638                 rc = next->do_index_ops->dio_it.get(env, it_next,
639                                                     (const struct dt_key *)"");
640                 if (rc <= 0)
641                         RETURN(rc == 0 ? -EIO : rc);
642
643                 it->lit_it = it_next;
644                 it->lit_stripe_index = index;
645                 goto again;
646
647         }
648
649         RETURN(1);
650 }
651
652 /**
653  * Implementation of dt_it_ops::key.
654  *
655  * Used with striped objects.
656  *
657  * \see dt_it_ops::key() in the API description for details.
658  */
659 static struct dt_key *lod_striped_it_key(const struct lu_env *env,
660                                          const struct dt_it *di)
661 {
662         const struct lod_it     *it = (const struct lod_it *)di;
663         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
664         struct dt_object        *next;
665
666         LOD_CHECK_STRIPED_IT(env, it, lo);
667
668         next = lo->ldo_stripe[it->lit_stripe_index];
669         LASSERT(next != NULL);
670         LASSERT(next->do_index_ops != NULL);
671
672         return next->do_index_ops->dio_it.key(env, it->lit_it);
673 }
674
675 /**
676  * Implementation of dt_it_ops::key_size.
677  *
678  * Used with striped objects.
679  *
680  * \see dt_it_ops::size() in the API description for details.
681  */
682 static int lod_striped_it_key_size(const struct lu_env *env,
683                                    const struct dt_it *di)
684 {
685         struct lod_it           *it = (struct lod_it *)di;
686         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
687         struct dt_object        *next;
688
689         LOD_CHECK_STRIPED_IT(env, it, lo);
690
691         next = lo->ldo_stripe[it->lit_stripe_index];
692         LASSERT(next != NULL);
693         LASSERT(next->do_index_ops != NULL);
694
695         return next->do_index_ops->dio_it.key_size(env, it->lit_it);
696 }
697
698 /**
699  * Implementation of dt_it_ops::rec.
700  *
701  * Used with striped objects.
702  *
703  * \see dt_it_ops::rec() in the API description for details.
704  */
705 static int lod_striped_it_rec(const struct lu_env *env, const struct dt_it *di,
706                               struct dt_rec *rec, __u32 attr)
707 {
708         const struct lod_it     *it = (const struct lod_it *)di;
709         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
710         struct dt_object        *next;
711
712         LOD_CHECK_STRIPED_IT(env, it, lo);
713
714         next = lo->ldo_stripe[it->lit_stripe_index];
715         LASSERT(next != NULL);
716         LASSERT(next->do_index_ops != NULL);
717
718         return next->do_index_ops->dio_it.rec(env, it->lit_it, rec, attr);
719 }
720
721 /**
722  * Implementation of dt_it_ops::rec_size.
723  *
724  * Used with striped objects.
725  *
726  * \see dt_it_ops::rec_size() in the API description for details.
727  */
728 static int lod_striped_it_rec_size(const struct lu_env *env,
729                                    const struct dt_it *di, __u32 attr)
730 {
731         struct lod_it           *it = (struct lod_it *)di;
732         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
733         struct dt_object        *next;
734
735         LOD_CHECK_STRIPED_IT(env, it, lo);
736
737         next = lo->ldo_stripe[it->lit_stripe_index];
738         LASSERT(next != NULL);
739         LASSERT(next->do_index_ops != NULL);
740
741         return next->do_index_ops->dio_it.rec_size(env, it->lit_it, attr);
742 }
743
744 /**
745  * Implementation of dt_it_ops::store.
746  *
747  * Used with striped objects.
748  *
749  * \see dt_it_ops::store() in the API description for details.
750  */
751 static __u64 lod_striped_it_store(const struct lu_env *env,
752                                   const struct dt_it *di)
753 {
754         const struct lod_it     *it = (const struct lod_it *)di;
755         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
756         struct dt_object        *next;
757
758         LOD_CHECK_STRIPED_IT(env, it, lo);
759
760         next = lo->ldo_stripe[it->lit_stripe_index];
761         LASSERT(next != NULL);
762         LASSERT(next->do_index_ops != NULL);
763
764         return next->do_index_ops->dio_it.store(env, it->lit_it);
765 }
766
767 /**
768  * Implementation of dt_it_ops::load.
769  *
770  * Used with striped objects.
771  *
772  * \see dt_it_ops::load() in the API description for details.
773  */
774 static int lod_striped_it_load(const struct lu_env *env,
775                                const struct dt_it *di, __u64 hash)
776 {
777         const struct lod_it     *it = (const struct lod_it *)di;
778         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
779         struct dt_object        *next;
780
781         LOD_CHECK_STRIPED_IT(env, it, lo);
782
783         next = lo->ldo_stripe[it->lit_stripe_index];
784         LASSERT(next != NULL);
785         LASSERT(next->do_index_ops != NULL);
786
787         return next->do_index_ops->dio_it.load(env, it->lit_it, hash);
788 }
789
790 static const struct dt_index_operations lod_striped_index_ops = {
791         .dio_lookup             = lod_striped_lookup,
792         .dio_declare_insert     = lod_declare_insert,
793         .dio_insert             = lod_insert,
794         .dio_declare_delete     = lod_declare_delete,
795         .dio_delete             = lod_delete,
796         .dio_it = {
797                 .init           = lod_striped_it_init,
798                 .fini           = lod_striped_it_fini,
799                 .get            = lod_striped_it_get,
800                 .put            = lod_striped_it_put,
801                 .next           = lod_striped_it_next,
802                 .key            = lod_striped_it_key,
803                 .key_size       = lod_striped_it_key_size,
804                 .rec            = lod_striped_it_rec,
805                 .rec_size       = lod_striped_it_rec_size,
806                 .store          = lod_striped_it_store,
807                 .load           = lod_striped_it_load,
808         }
809 };
810
811 /**
812  * Append the FID for each shard of the striped directory after the
813  * given LMV EA header.
814  *
815  * To simplify striped directory and the consistency verification,
816  * we only store the LMV EA header on disk, for both master object
817  * and slave objects. When someone wants to know the whole LMV EA,
818  * such as client readdir(), we can build the entrie LMV EA on the
819  * MDT side (in RAM) via iterating the sub-directory entries that
820  * are contained in the master object of the stripe directory.
821  *
822  * For the master object of the striped directroy, the valid name
823  * for each shard is composed of the ${shard_FID}:${shard_idx}.
824  *
825  * There may be holes in the LMV EA if some shards' name entries
826  * are corrupted or lost.
827  *
828  * \param[in] env       pointer to the thread context
829  * \param[in] lo        pointer to the master object of the striped directory
830  * \param[in] buf       pointer to the lu_buf which will hold the LMV EA
831  * \param[in] resize    whether re-allocate the buffer if it is not big enough
832  *
833  * \retval              positive size of the LMV EA
834  * \retval              0 for nothing to be loaded
835  * \retval              negative error number on failure
836  */
837 int lod_load_lmv_shards(const struct lu_env *env, struct lod_object *lo,
838                         struct lu_buf *buf, bool resize)
839 {
840         struct lu_dirent        *ent    =
841                         (struct lu_dirent *)lod_env_info(env)->lti_key;
842         struct lod_device       *lod    = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
843         struct dt_object        *obj    = dt_object_child(&lo->ldo_obj);
844         struct lmv_mds_md_v1    *lmv1   = buf->lb_buf;
845         struct dt_it            *it;
846         const struct dt_it_ops  *iops;
847         __u32                    stripes;
848         __u32                    magic  = le32_to_cpu(lmv1->lmv_magic);
849         size_t                   lmv1_size;
850         int                      rc;
851         ENTRY;
852
853         if (magic != LMV_MAGIC_V1)
854                 RETURN(0);
855
856         stripes = le32_to_cpu(lmv1->lmv_stripe_count);
857         if (stripes < 1)
858                 RETURN(0);
859
860         rc = lmv_mds_md_size(stripes, magic);
861         if (rc < 0)
862                 RETURN(rc);
863         lmv1_size = rc;
864         if (buf->lb_len < lmv1_size) {
865                 struct lu_buf tbuf;
866
867                 if (!resize)
868                         RETURN(-ERANGE);
869
870                 tbuf = *buf;
871                 buf->lb_buf = NULL;
872                 buf->lb_len = 0;
873                 lu_buf_alloc(buf, lmv1_size);
874                 lmv1 = buf->lb_buf;
875                 if (lmv1 == NULL)
876                         RETURN(-ENOMEM);
877
878                 memcpy(buf->lb_buf, tbuf.lb_buf, tbuf.lb_len);
879         }
880
881         if (unlikely(!dt_try_as_dir(env, obj)))
882                 RETURN(-ENOTDIR);
883
884         memset(&lmv1->lmv_stripe_fids[0], 0, stripes * sizeof(struct lu_fid));
885         iops = &obj->do_index_ops->dio_it;
886         it = iops->init(env, obj, LUDA_64BITHASH);
887         if (IS_ERR(it))
888                 RETURN(PTR_ERR(it));
889
890         rc = iops->load(env, it, 0);
891         if (rc == 0)
892                 rc = iops->next(env, it);
893         else if (rc > 0)
894                 rc = 0;
895
896         while (rc == 0) {
897                 char             name[FID_LEN + 2] = "";
898                 struct lu_fid    fid;
899                 __u32            index;
900                 int              len;
901
902                 rc = iops->rec(env, it, (struct dt_rec *)ent, LUDA_64BITHASH);
903                 if (rc != 0)
904                         break;
905
906                 rc = -EIO;
907
908                 fid_le_to_cpu(&fid, &ent->lde_fid);
909                 ent->lde_namelen = le16_to_cpu(ent->lde_namelen);
910                 if (ent->lde_name[0] == '.') {
911                         if (ent->lde_namelen == 1)
912                                 goto next;
913
914                         if (ent->lde_namelen == 2 && ent->lde_name[1] == '.')
915                                 goto next;
916                 }
917
918                 len = scnprintf(name, sizeof(name),
919                                 DFID":", PFID(&ent->lde_fid));
920                 /* The ent->lde_name is composed of ${FID}:${index} */
921                 if (ent->lde_namelen < len + 1 ||
922                     memcmp(ent->lde_name, name, len) != 0) {
923                         CDEBUG_LIMIT(lod->lod_lmv_failout ? D_ERROR : D_INFO,
924                                      "%s: invalid shard name %.*s with the FID "DFID" for the striped directory "DFID", %s\n",
925                                      lod2obd(lod)->obd_name, ent->lde_namelen,
926                                      ent->lde_name, PFID(&fid),
927                                      PFID(lu_object_fid(&obj->do_lu)),
928                                      lod->lod_lmv_failout ? "failout" : "skip");
929
930                         if (lod->lod_lmv_failout)
931                                 break;
932
933                         goto next;
934                 }
935
936                 index = 0;
937                 do {
938                         if (ent->lde_name[len] < '0' ||
939                             ent->lde_name[len] > '9') {
940                                 CDEBUG_LIMIT(lod->lod_lmv_failout ?
941                                              D_ERROR : D_INFO,
942                                              "%s: invalid shard name %.*s with the FID "DFID" for the striped directory "DFID", %s\n",
943                                              lod2obd(lod)->obd_name,
944                                              ent->lde_namelen,
945                                              ent->lde_name, PFID(&fid),
946                                              PFID(lu_object_fid(&obj->do_lu)),
947                                              lod->lod_lmv_failout ?
948                                              "failout" : "skip");
949
950                                 if (lod->lod_lmv_failout)
951                                         break;
952
953                                 goto next;
954                         }
955
956                         index = index * 10 + ent->lde_name[len++] - '0';
957                 } while (len < ent->lde_namelen);
958
959                 if (len == ent->lde_namelen) {
960                         /* Out of LMV EA range. */
961                         if (index >= stripes) {
962                                 CERROR("%s: the shard %.*s for the striped "
963                                        "directory "DFID" is out of the known "
964                                        "LMV EA range [0 - %u], failout\n",
965                                        lod2obd(lod)->obd_name, ent->lde_namelen,
966                                        ent->lde_name,
967                                        PFID(lu_object_fid(&obj->do_lu)),
968                                        stripes - 1);
969
970                                 break;
971                         }
972
973                         /* The slot has been occupied. */
974                         if (!fid_is_zero(&lmv1->lmv_stripe_fids[index])) {
975                                 struct lu_fid fid0;
976
977                                 fid_le_to_cpu(&fid0,
978                                         &lmv1->lmv_stripe_fids[index]);
979                                 CERROR("%s: both the shard "DFID" and "DFID
980                                        " for the striped directory "DFID
981                                        " claim the same LMV EA slot at the "
982                                        "index %d, failout\n",
983                                        lod2obd(lod)->obd_name,
984                                        PFID(&fid0), PFID(&fid),
985                                        PFID(lu_object_fid(&obj->do_lu)), index);
986
987                                 break;
988                         }
989
990                         /* stored as LE mode */
991                         lmv1->lmv_stripe_fids[index] = ent->lde_fid;
992
993 next:
994                         rc = iops->next(env, it);
995                 }
996         }
997
998         iops->put(env, it);
999         iops->fini(env, it);
1000
1001         RETURN(rc > 0 ? lmv_mds_md_size(stripes, magic) : rc);
1002 }
1003
1004 /**
1005  * Implementation of dt_object_operations::do_index_try.
1006  *
1007  * \see dt_object_operations::do_index_try() in the API description for details.
1008  */
1009 static int lod_index_try(const struct lu_env *env, struct dt_object *dt,
1010                          const struct dt_index_features *feat)
1011 {
1012         struct lod_object       *lo = lod_dt_obj(dt);
1013         struct dt_object        *next = dt_object_child(dt);
1014         int                     rc;
1015         ENTRY;
1016
1017         LASSERT(next->do_ops);
1018         LASSERT(next->do_ops->do_index_try);
1019
1020         rc = lod_striping_load(env, lo);
1021         if (rc != 0)
1022                 RETURN(rc);
1023
1024         rc = next->do_ops->do_index_try(env, next, feat);
1025         if (rc != 0)
1026                 RETURN(rc);
1027
1028         if (lo->ldo_dir_stripe_count > 0) {
1029                 int i;
1030
1031                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
1032                         if (!lo->ldo_stripe[i])
1033                                 continue;
1034                         if (!dt_object_exists(lo->ldo_stripe[i]))
1035                                 continue;
1036                         rc = lo->ldo_stripe[i]->do_ops->do_index_try(env,
1037                                                 lo->ldo_stripe[i], feat);
1038                         if (rc != 0)
1039                                 RETURN(rc);
1040                 }
1041                 dt->do_index_ops = &lod_striped_index_ops;
1042         } else {
1043                 dt->do_index_ops = &lod_index_ops;
1044         }
1045
1046         RETURN(rc);
1047 }
1048
1049 /**
1050  * Implementation of dt_object_operations::do_read_lock.
1051  *
1052  * \see dt_object_operations::do_read_lock() in the API description for details.
1053  */
1054 static void lod_read_lock(const struct lu_env *env, struct dt_object *dt,
1055                           unsigned role)
1056 {
1057         dt_read_lock(env, dt_object_child(dt), role);
1058 }
1059
1060 /**
1061  * Implementation of dt_object_operations::do_write_lock.
1062  *
1063  * \see dt_object_operations::do_write_lock() in the API description for
1064  * details.
1065  */
1066 static void lod_write_lock(const struct lu_env *env, struct dt_object *dt,
1067                            unsigned role)
1068 {
1069         dt_write_lock(env, dt_object_child(dt), role);
1070 }
1071
1072 /**
1073  * Implementation of dt_object_operations::do_read_unlock.
1074  *
1075  * \see dt_object_operations::do_read_unlock() in the API description for
1076  * details.
1077  */
1078 static void lod_read_unlock(const struct lu_env *env, struct dt_object *dt)
1079 {
1080         dt_read_unlock(env, dt_object_child(dt));
1081 }
1082
1083 /**
1084  * Implementation of dt_object_operations::do_write_unlock.
1085  *
1086  * \see dt_object_operations::do_write_unlock() in the API description for
1087  * details.
1088  */
1089 static void lod_write_unlock(const struct lu_env *env, struct dt_object *dt)
1090 {
1091         dt_write_unlock(env, dt_object_child(dt));
1092 }
1093
1094 /**
1095  * Implementation of dt_object_operations::do_write_locked.
1096  *
1097  * \see dt_object_operations::do_write_locked() in the API description for
1098  * details.
1099  */
1100 static int lod_write_locked(const struct lu_env *env, struct dt_object *dt)
1101 {
1102         return dt_write_locked(env, dt_object_child(dt));
1103 }
1104
1105 /**
1106  * Implementation of dt_object_operations::do_attr_get.
1107  *
1108  * \see dt_object_operations::do_attr_get() in the API description for details.
1109  */
1110 static int lod_attr_get(const struct lu_env *env,
1111                         struct dt_object *dt,
1112                         struct lu_attr *attr)
1113 {
1114         /* Note: for striped directory, client will merge attributes
1115          * from all of the sub-stripes see lmv_merge_attr(), and there
1116          * no MDD logic depend on directory nlink/size/time, so we can
1117          * always use master inode nlink and size for now. */
1118         return dt_attr_get(env, dt_object_child(dt), attr);
1119 }
1120
1121 void lod_adjust_stripe_size(struct lod_layout_component *comp,
1122                             __u32 def_stripe_size)
1123 {
1124         __u64 comp_end = comp->llc_extent.e_end;
1125
1126         /* Choose stripe size if not set. Note that default stripe size can't
1127          * be used as is, because it must be multiplier of given component end.
1128          *  - first check if default stripe size can be used
1129          *  - if not than select the lowest set bit from component end and use
1130          *    that value as stripe size
1131          */
1132         if (!comp->llc_stripe_size) {
1133                 if (comp_end == LUSTRE_EOF || !(comp_end % def_stripe_size))
1134                         comp->llc_stripe_size = def_stripe_size;
1135                 else
1136                         comp->llc_stripe_size = comp_end & ~(comp_end - 1);
1137         } else {
1138                 if (comp_end != LUSTRE_EOF &&
1139                     comp_end & (LOV_MIN_STRIPE_SIZE - 1)) {
1140                         CWARN("Component end %llu is not a multiple of min size %u\n",
1141                               comp_end, LOV_MIN_STRIPE_SIZE);
1142                         comp_end = round_up(comp_end, LOV_MIN_STRIPE_SIZE);
1143                 }
1144                 /* check stripe size is multiplier of comp_end */
1145                 if (comp_end != LUSTRE_EOF &&
1146                     comp_end != comp->llc_extent.e_start &&
1147                     comp_end % comp->llc_stripe_size) {
1148                         /* fix that even for defined stripe size but warn
1149                          * about the problem, that must not happen
1150                          */
1151                         CWARN("Component end %llu is not aligned by the stripe size %u\n",
1152                               comp_end, comp->llc_stripe_size);
1153                         comp->llc_stripe_size = comp_end & ~(comp_end - 1);
1154                 }
1155         }
1156 }
1157
1158 static inline void lod_adjust_stripe_info(struct lod_layout_component *comp,
1159                                           struct lov_desc *desc,
1160                                           int append_stripes)
1161 {
1162         if (comp->llc_pattern != LOV_PATTERN_MDT) {
1163                 if (append_stripes) {
1164                         comp->llc_stripe_count = append_stripes;
1165                 } else if (!comp->llc_stripe_count) {
1166                         comp->llc_stripe_count =
1167                                 desc->ld_default_stripe_count;
1168                 }
1169         }
1170
1171         lod_adjust_stripe_size(comp, desc->ld_default_stripe_size);
1172 }
1173
1174 int lod_obj_for_each_stripe(const struct lu_env *env, struct lod_object *lo,
1175                             struct thandle *th,
1176                             struct lod_obj_stripe_cb_data *data)
1177 {
1178         struct lod_layout_component *lod_comp;
1179         int i, j, rc = 0;
1180         ENTRY;
1181
1182         mutex_lock(&lo->ldo_layout_mutex);
1183         for (i = 0; i < lo->ldo_comp_cnt; i++) {
1184                 lod_comp = &lo->ldo_comp_entries[i];
1185
1186                 if (lod_comp->llc_stripe == NULL)
1187                         continue;
1188
1189                 /* has stripe but not inited yet, this component has been
1190                  * declared to be created, but hasn't created yet.
1191                  */
1192                 if (!lod_comp_inited(lod_comp))
1193                         continue;
1194
1195                 if (data->locd_comp_skip_cb &&
1196                     data->locd_comp_skip_cb(env, lo, i, data))
1197                         continue;
1198
1199                 if (data->locd_comp_cb) {
1200                         rc = data->locd_comp_cb(env, lo, i, data);
1201                         if (rc)
1202                                 GOTO(unlock, rc);
1203                 }
1204
1205                 /* could used just to do sth about component, not each
1206                  * stripes
1207                  */
1208                 if (!data->locd_stripe_cb)
1209                         continue;
1210
1211                 LASSERT(lod_comp->llc_stripe_count > 0);
1212                 for (j = 0; j < lod_comp->llc_stripe_count; j++) {
1213                         struct dt_object *dt = lod_comp->llc_stripe[j];
1214
1215                         if (dt == NULL)
1216                                 continue;
1217                         rc = data->locd_stripe_cb(env, lo, dt, th, i, j, data);
1218                         if (rc != 0)
1219                                 GOTO(unlock, rc);
1220                 }
1221         }
1222 unlock:
1223         mutex_unlock(&lo->ldo_layout_mutex);
1224         RETURN(rc);
1225 }
1226
1227 static bool lod_obj_attr_set_comp_skip_cb(const struct lu_env *env,
1228                 struct lod_object *lo, int comp_idx,
1229                 struct lod_obj_stripe_cb_data *data)
1230 {
1231         struct lod_layout_component *lod_comp = &lo->ldo_comp_entries[comp_idx];
1232         bool skipped = false;
1233
1234         if (!(data->locd_attr->la_valid & LA_LAYOUT_VERSION))
1235                 return skipped;
1236
1237         switch (lo->ldo_flr_state) {
1238         case LCM_FL_WRITE_PENDING: {
1239                 int i;
1240
1241                 /* skip stale components */
1242                 if (lod_comp->llc_flags & LCME_FL_STALE) {
1243                         skipped = true;
1244                         break;
1245                 }
1246
1247                 /* skip valid and overlapping components, therefore any
1248                  * attempts to write overlapped components will never succeed
1249                  * because client will get EINPROGRESS. */
1250                 for (i = 0; i < lo->ldo_comp_cnt; i++) {
1251                         if (i == comp_idx)
1252                                 continue;
1253
1254                         if (lo->ldo_comp_entries[i].llc_flags & LCME_FL_STALE)
1255                                 continue;
1256
1257                         if (lu_extent_is_overlapped(&lod_comp->llc_extent,
1258                                         &lo->ldo_comp_entries[i].llc_extent)) {
1259                                 skipped = true;
1260                                 break;
1261                         }
1262                 }
1263                 break;
1264         }
1265         case LCM_FL_RDONLY:
1266         case LCM_FL_SYNC_PENDING:
1267                 break;
1268         default:
1269                 LASSERTF(0, "impossible: %d\n", lo->ldo_flr_state);
1270                 break;
1271         }
1272
1273         CDEBUG(D_LAYOUT, DFID": %s to set component %x to version: %u\n",
1274                PFID(lu_object_fid(&lo->ldo_obj.do_lu)),
1275                skipped ? "skipped" : "chose", lod_comp->llc_id,
1276                data->locd_attr->la_layout_version);
1277
1278         return skipped;
1279 }
1280
1281 static inline int
1282 lod_obj_stripe_attr_set_cb(const struct lu_env *env, struct lod_object *lo,
1283                            struct dt_object *dt, struct thandle *th,
1284                            int comp_idx, int stripe_idx,
1285                            struct lod_obj_stripe_cb_data *data)
1286 {
1287         if (data->locd_declare)
1288                 return lod_sub_declare_attr_set(env, dt, data->locd_attr, th);
1289
1290         if (data->locd_attr->la_valid & LA_LAYOUT_VERSION) {
1291                 CDEBUG(D_LAYOUT, DFID": set layout version: %u, comp_idx: %d\n",
1292                        PFID(lu_object_fid(&dt->do_lu)),
1293                        data->locd_attr->la_layout_version, comp_idx);
1294         }
1295
1296         return lod_sub_attr_set(env, dt, data->locd_attr, th);
1297 }
1298
1299 /**
1300  * Implementation of dt_object_operations::do_declare_attr_set.
1301  *
1302  * If the object is striped, then apply the changes to all the stripes.
1303  *
1304  * \see dt_object_operations::do_declare_attr_set() in the API description
1305  * for details.
1306  */
1307 static int lod_declare_attr_set(const struct lu_env *env,
1308                                 struct dt_object *dt,
1309                                 const struct lu_attr *attr,
1310                                 struct thandle *th)
1311 {
1312         struct dt_object  *next = dt_object_child(dt);
1313         struct lod_object *lo = lod_dt_obj(dt);
1314         int                rc, i;
1315         ENTRY;
1316
1317         /*
1318          * declare setattr on the local object
1319          */
1320         rc = lod_sub_declare_attr_set(env, next, attr, th);
1321         if (rc)
1322                 RETURN(rc);
1323
1324         /* osp_declare_attr_set() ignores all attributes other than
1325          * UID, GID, PROJID, and size, and osp_attr_set() ignores all
1326          * but UID, GID and PROJID. Declaration of size attr setting
1327          * happens through lod_declare_init_size(), and not through
1328          * this function. Therefore we need not load striping unless
1329          * ownership is changing.  This should save memory and (we hope)
1330          * speed up rename().
1331          */
1332         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
1333                 if (!(attr->la_valid & LA_REMOTE_ATTR_SET))
1334                         RETURN(rc);
1335
1336                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_OWNER))
1337                         RETURN(0);
1338         } else {
1339                 if (!(attr->la_valid & (LA_UID | LA_GID | LA_PROJID | LA_MODE |
1340                                         LA_ATIME | LA_MTIME | LA_CTIME |
1341                                         LA_FLAGS)))
1342                         RETURN(rc);
1343         }
1344         /*
1345          * load striping information, notice we don't do this when object
1346          * is being initialized as we don't need this information till
1347          * few specific cases like destroy, chown
1348          */
1349         rc = lod_striping_load(env, lo);
1350         if (rc)
1351                 RETURN(rc);
1352
1353         if (!lod_obj_is_striped(dt))
1354                 RETURN(0);
1355
1356         /*
1357          * if object is striped declare changes on the stripes
1358          */
1359         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
1360                 LASSERT(lo->ldo_stripe);
1361                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
1362                         if (lo->ldo_stripe[i] == NULL)
1363                                 continue;
1364                         if (!dt_object_exists(lo->ldo_stripe[i]))
1365                                 continue;
1366                         rc = lod_sub_declare_attr_set(env, lo->ldo_stripe[i],
1367                                                       attr, th);
1368                         if (rc != 0)
1369                                 RETURN(rc);
1370                 }
1371         } else {
1372                 struct lod_obj_stripe_cb_data data = { { 0 } };
1373
1374                 data.locd_attr = attr;
1375                 data.locd_declare = true;
1376                 data.locd_stripe_cb = lod_obj_stripe_attr_set_cb;
1377                 rc = lod_obj_for_each_stripe(env, lo, th, &data);
1378         }
1379
1380         if (rc)
1381                 RETURN(rc);
1382
1383         if (!dt_object_exists(next) || dt_object_remote(next) ||
1384             !S_ISREG(attr->la_mode))
1385                 RETURN(0);
1386
1387         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_STRIPE)) {
1388                 rc = lod_sub_declare_xattr_del(env, next, XATTR_NAME_LOV, th);
1389                 RETURN(rc);
1390         }
1391
1392         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_CHANGE_STRIPE) ||
1393             OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_PFL_RANGE)) {
1394                 struct lod_thread_info *info = lod_env_info(env);
1395                 struct lu_buf *buf = &info->lti_buf;
1396
1397                 buf->lb_buf = info->lti_ea_store;
1398                 buf->lb_len = info->lti_ea_store_size;
1399                 rc = lod_sub_declare_xattr_set(env, next, buf, XATTR_NAME_LOV,
1400                                                LU_XATTR_REPLACE, th);
1401         }
1402
1403         RETURN(rc);
1404 }
1405
1406 /**
1407  * Implementation of dt_object_operations::do_attr_set.
1408  *
1409  * If the object is striped, then apply the changes to all or subset of
1410  * the stripes depending on the object type and specific attributes.
1411  *
1412  * \see dt_object_operations::do_attr_set() in the API description for details.
1413  */
1414 static int lod_attr_set(const struct lu_env *env,
1415                         struct dt_object *dt,
1416                         const struct lu_attr *attr,
1417                         struct thandle *th)
1418 {
1419         struct dt_object        *next = dt_object_child(dt);
1420         struct lod_object       *lo = lod_dt_obj(dt);
1421         int                     rc, i;
1422         ENTRY;
1423
1424         /*
1425          * apply changes to the local object
1426          */
1427         rc = lod_sub_attr_set(env, next, attr, th);
1428         if (rc)
1429                 RETURN(rc);
1430
1431         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
1432                 if (!(attr->la_valid & LA_REMOTE_ATTR_SET))
1433                         RETURN(rc);
1434
1435                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_OWNER))
1436                         RETURN(0);
1437         } else {
1438                 if (!(attr->la_valid & (LA_UID | LA_GID | LA_MODE | LA_PROJID |
1439                                         LA_ATIME | LA_MTIME | LA_CTIME |
1440                                         LA_FLAGS)))
1441                         RETURN(rc);
1442         }
1443
1444         /* FIXME: a tricky case in the code path of mdd_layout_change():
1445          * the in-memory striping information has been freed in lod_xattr_set()
1446          * due to layout change. It has to load stripe here again. It only
1447          * changes flags of layout so declare_attr_set() is still accurate */
1448         rc = lod_striping_load(env, lo);
1449         if (rc)
1450                 RETURN(rc);
1451
1452         if (!lod_obj_is_striped(dt))
1453                 RETURN(0);
1454
1455         /*
1456          * if object is striped, apply changes to all the stripes
1457          */
1458         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
1459                 LASSERT(lo->ldo_stripe);
1460                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
1461                         if (unlikely(lo->ldo_stripe[i] == NULL))
1462                                 continue;
1463
1464                         if ((dt_object_exists(lo->ldo_stripe[i]) == 0))
1465                                 continue;
1466
1467                         rc = lod_sub_attr_set(env, lo->ldo_stripe[i], attr, th);
1468                         if (rc != 0)
1469                                 break;
1470                 }
1471         } else {
1472                 struct lod_obj_stripe_cb_data data = { { 0 } };
1473
1474                 data.locd_attr = attr;
1475                 data.locd_declare = false;
1476                 data.locd_comp_skip_cb = lod_obj_attr_set_comp_skip_cb;
1477                 data.locd_stripe_cb = lod_obj_stripe_attr_set_cb;
1478                 rc = lod_obj_for_each_stripe(env, lo, th, &data);
1479         }
1480
1481         if (rc)
1482                 RETURN(rc);
1483
1484         if (!dt_object_exists(next) || dt_object_remote(next) ||
1485             !S_ISREG(attr->la_mode))
1486                 RETURN(0);
1487
1488         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_STRIPE)) {
1489                 rc = lod_sub_xattr_del(env, next, XATTR_NAME_LOV, th);
1490                 RETURN(rc);
1491         }
1492
1493         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_CHANGE_STRIPE)) {
1494                 struct lod_thread_info *info = lod_env_info(env);
1495                 struct lu_buf *buf = &info->lti_buf;
1496                 struct ost_id *oi = &info->lti_ostid;
1497                 struct lu_fid *fid = &info->lti_fid;
1498                 struct lov_mds_md_v1 *lmm;
1499                 struct lov_ost_data_v1 *objs;
1500                 __u32 magic;
1501
1502                 rc = lod_get_lov_ea(env, lo);
1503                 if (rc <= 0)
1504                         RETURN(rc);
1505
1506                 buf->lb_buf = info->lti_ea_store;
1507                 buf->lb_len = info->lti_ea_store_size;
1508                 lmm = info->lti_ea_store;
1509                 magic = le32_to_cpu(lmm->lmm_magic);
1510                 if (magic == LOV_MAGIC_COMP_V1 || magic == LOV_MAGIC_SEL) {
1511                         struct lov_comp_md_v1 *lcm = buf->lb_buf;
1512                         struct lov_comp_md_entry_v1 *lcme =
1513                                                 &lcm->lcm_entries[0];
1514
1515                         lmm = buf->lb_buf + le32_to_cpu(lcme->lcme_offset);
1516                         magic = le32_to_cpu(lmm->lmm_magic);
1517                 }
1518
1519                 if (magic == LOV_MAGIC_V1)
1520                         objs = &(lmm->lmm_objects[0]);
1521                 else
1522                         objs = &((struct lov_mds_md_v3 *)lmm)->lmm_objects[0];
1523                 ostid_le_to_cpu(&objs->l_ost_oi, oi);
1524                 ostid_to_fid(fid, oi, le32_to_cpu(objs->l_ost_idx));
1525                 fid->f_oid--;
1526                 fid_to_ostid(fid, oi);
1527                 ostid_cpu_to_le(oi, &objs->l_ost_oi);
1528
1529                 rc = lod_sub_xattr_set(env, next, buf, XATTR_NAME_LOV,
1530                                        LU_XATTR_REPLACE, th);
1531         } else if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_PFL_RANGE)) {
1532                 struct lod_thread_info *info = lod_env_info(env);
1533                 struct lu_buf *buf = &info->lti_buf;
1534                 struct lov_comp_md_v1 *lcm;
1535                 struct lov_comp_md_entry_v1 *lcme;
1536
1537                 rc = lod_get_lov_ea(env, lo);
1538                 if (rc <= 0)
1539                         RETURN(rc);
1540
1541                 buf->lb_buf = info->lti_ea_store;
1542                 buf->lb_len = info->lti_ea_store_size;
1543                 lcm = buf->lb_buf;
1544                 if (le32_to_cpu(lcm->lcm_magic) != LOV_MAGIC_COMP_V1 &&
1545                     le32_to_cpu(lcm->lcm_magic) != LOV_MAGIC_SEL)
1546                         RETURN(-EINVAL);
1547
1548                 le32_add_cpu(&lcm->lcm_layout_gen, 1);
1549                 lcme = &lcm->lcm_entries[0];
1550                 le64_add_cpu(&lcme->lcme_extent.e_start, 1);
1551                 le64_add_cpu(&lcme->lcme_extent.e_end, -1);
1552
1553                 rc = lod_sub_xattr_set(env, next, buf, XATTR_NAME_LOV,
1554                                        LU_XATTR_REPLACE, th);
1555         }
1556
1557         RETURN(rc);
1558 }
1559
1560 /**
1561  * Implementation of dt_object_operations::do_xattr_get.
1562  *
1563  * If LOV EA is requested from the root object and it's not
1564  * found, then return default striping for the filesystem.
1565  *
1566  * \see dt_object_operations::do_xattr_get() in the API description for details.
1567  */
1568 static int lod_xattr_get(const struct lu_env *env, struct dt_object *dt,
1569                          struct lu_buf *buf, const char *name)
1570 {
1571         struct lod_thread_info *info = lod_env_info(env);
1572         struct lod_device *dev = lu2lod_dev(dt->do_lu.lo_dev);
1573         int is_root;
1574         int rc;
1575         ENTRY;
1576
1577         rc = dt_xattr_get(env, dt_object_child(dt), buf, name);
1578         if (strcmp(name, XATTR_NAME_LMV) == 0) {
1579                 struct lmv_mds_md_v1    *lmv1;
1580                 struct lmv_foreign_md   *lfm;
1581                 int                      rc1 = 0;
1582
1583                 if (rc > (typeof(rc))sizeof(*lmv1))
1584                         RETURN(rc);
1585
1586                 /* short (<= sizeof(struct lmv_mds_md_v1)) foreign LMV case */
1587                 /* XXX empty foreign LMV is not allowed */
1588                 if (rc <= offsetof(typeof(*lfm), lfm_value))
1589                         RETURN(rc = rc > 0 ? -EINVAL : rc);
1590
1591                 if (buf->lb_buf == NULL || buf->lb_len == 0) {
1592                         BUILD_BUG_ON(sizeof(*lmv1) > sizeof(info->lti_key));
1593
1594                         /* lti_buf is large enough for *lmv1 or a short
1595                          * (<= sizeof(struct lmv_mds_md_v1)) foreign LMV
1596                          */
1597                         info->lti_buf.lb_buf = info->lti_key;
1598                         info->lti_buf.lb_len = sizeof(*lmv1);
1599                         rc = dt_xattr_get(env, dt_object_child(dt),
1600                                           &info->lti_buf, name);
1601                         if (unlikely(rc <= offsetof(typeof(*lfm),
1602                                                     lfm_value)))
1603                                 RETURN(rc = rc > 0 ? -EINVAL : rc);
1604
1605                         lfm = info->lti_buf.lb_buf;
1606                         if (le32_to_cpu(lfm->lfm_magic) == LMV_MAGIC_FOREIGN)
1607                                 RETURN(rc);
1608
1609                         if (unlikely(rc != sizeof(*lmv1)))
1610                                 RETURN(rc = rc > 0 ? -EINVAL : rc);
1611
1612                         lmv1 = info->lti_buf.lb_buf;
1613                         /* The on-disk LMV EA only contains header, but the
1614                          * returned LMV EA size should contain the space for
1615                          * the FIDs of all shards of the striped directory. */
1616                         if (le32_to_cpu(lmv1->lmv_magic) == LMV_MAGIC_V1)
1617                                 rc = lmv_mds_md_size(
1618                                         le32_to_cpu(lmv1->lmv_stripe_count),
1619                                         le32_to_cpu(lmv1->lmv_magic));
1620                 } else {
1621                         lmv1 = buf->lb_buf;
1622                         if (le32_to_cpu(lmv1->lmv_magic) != LMV_MAGIC_V1)
1623                                 RETURN(rc);
1624
1625                         if (rc != sizeof(*lmv1))
1626                                 RETURN(rc = rc > 0 ? -EINVAL : rc);
1627
1628                         rc1 = lod_load_lmv_shards(env, lod_dt_obj(dt),
1629                                                   buf, false);
1630                 }
1631
1632                 RETURN(rc = rc1 != 0 ? rc1 : rc);
1633         }
1634
1635         if ((rc > 0) && buf->lb_buf && strcmp(name, XATTR_NAME_LOV) == 0) {
1636                 struct lov_comp_md_v1 *lcm = buf->lb_buf;
1637
1638                 if (lcm->lcm_magic == cpu_to_le32(LOV_MAGIC_SEL))
1639                         lcm->lcm_magic = cpu_to_le32(LOV_MAGIC_COMP_V1);
1640         }
1641
1642         if (rc != -ENODATA || !S_ISDIR(dt->do_lu.lo_header->loh_attr & S_IFMT))
1643                 RETURN(rc);
1644
1645         /*
1646          * XXX: Only used by lfsck
1647          *
1648          * lod returns default striping on the real root of the device
1649          * this is like the root stores default striping for the whole
1650          * filesystem. historically we've been using a different approach
1651          * and store it in the config.
1652          */
1653         dt_root_get(env, dev->lod_child, &info->lti_fid);
1654         is_root = lu_fid_eq(&info->lti_fid, lu_object_fid(&dt->do_lu));
1655
1656         if (is_root && strcmp(XATTR_NAME_LOV, name) == 0) {
1657                 struct lov_user_md *lum = buf->lb_buf;
1658                 struct lov_desc *desc = &dev->lod_ost_descs.ltd_lov_desc;
1659
1660                 if (buf->lb_buf == NULL) {
1661                         rc = sizeof(*lum);
1662                 } else if (buf->lb_len >= sizeof(*lum)) {
1663                         lum->lmm_magic = cpu_to_le32(LOV_USER_MAGIC_V1);
1664                         lmm_oi_set_seq(&lum->lmm_oi, FID_SEQ_LOV_DEFAULT);
1665                         lmm_oi_set_id(&lum->lmm_oi, 0);
1666                         lmm_oi_cpu_to_le(&lum->lmm_oi, &lum->lmm_oi);
1667                         lum->lmm_pattern = cpu_to_le32(desc->ld_pattern);
1668                         lum->lmm_stripe_size = cpu_to_le32(
1669                                                 desc->ld_default_stripe_size);
1670                         lum->lmm_stripe_count = cpu_to_le16(
1671                                                 desc->ld_default_stripe_count);
1672                         lum->lmm_stripe_offset = cpu_to_le16(
1673                                                 desc->ld_default_stripe_offset);
1674                         rc = sizeof(*lum);
1675                 } else {
1676                         rc = -ERANGE;
1677                 }
1678         }
1679
1680         RETURN(rc);
1681 }
1682
1683 /**
1684  * Verify LVM EA.
1685  *
1686  * Checks that the magic of the stripe is sane.
1687  *
1688  * \param[in] lod       lod device
1689  * \param[in] lum       a buffer storing LMV EA to verify
1690  *
1691  * \retval              0 if the EA is sane
1692  * \retval              negative otherwise
1693  */
1694 static int lod_verify_md_striping(struct lod_device *lod,
1695                                   const struct lmv_user_md_v1 *lum)
1696 {
1697         if (unlikely(le32_to_cpu(lum->lum_magic) != LMV_USER_MAGIC)) {
1698                 CERROR("%s: invalid lmv_user_md: magic = %x, "
1699                        "stripe_offset = %d, stripe_count = %u: rc = %d\n",
1700                        lod2obd(lod)->obd_name, le32_to_cpu(lum->lum_magic),
1701                        (int)le32_to_cpu(lum->lum_stripe_offset),
1702                        le32_to_cpu(lum->lum_stripe_count), -EINVAL);
1703                 return -EINVAL;
1704         }
1705
1706         return 0;
1707 }
1708
1709 /**
1710  * Initialize LMV EA for a slave.
1711  *
1712  * Initialize slave's LMV EA from the master's LMV EA.
1713  *
1714  * \param[in] master_lmv        a buffer containing master's EA
1715  * \param[out] slave_lmv        a buffer where slave's EA will be stored
1716  *
1717  */
1718 static void lod_prep_slave_lmv_md(struct lmv_mds_md_v1 *slave_lmv,
1719                                   const struct lmv_mds_md_v1 *master_lmv)
1720 {
1721         *slave_lmv = *master_lmv;
1722         slave_lmv->lmv_magic = cpu_to_le32(LMV_MAGIC_STRIPE);
1723 }
1724
1725 /**
1726  * Generate LMV EA.
1727  *
1728  * Generate LMV EA from the object passed as \a dt. The object must have
1729  * the stripes created and initialized.
1730  *
1731  * \param[in] env       execution environment
1732  * \param[in] dt        object
1733  * \param[out] lmv_buf  buffer storing generated LMV EA
1734  *
1735  * \retval              0 on success
1736  * \retval              negative if failed
1737  */
1738 static int lod_prep_lmv_md(const struct lu_env *env, struct dt_object *dt,
1739                            struct lu_buf *lmv_buf)
1740 {
1741         struct lod_thread_info  *info = lod_env_info(env);
1742         struct lod_device       *lod = lu2lod_dev(dt->do_lu.lo_dev);
1743         struct lod_object       *lo = lod_dt_obj(dt);
1744         struct lmv_mds_md_v1    *lmm1;
1745         int                     stripe_count;
1746         int                     type = LU_SEQ_RANGE_ANY;
1747         int                     rc;
1748         __u32                   mdtidx;
1749         ENTRY;
1750
1751         LASSERT(lo->ldo_dir_striped != 0);
1752         LASSERT(lo->ldo_dir_stripe_count > 0);
1753         stripe_count = lo->ldo_dir_stripe_count;
1754         /* Only store the LMV EA heahder on the disk. */
1755         if (info->lti_ea_store_size < sizeof(*lmm1)) {
1756                 rc = lod_ea_store_resize(info, sizeof(*lmm1));
1757                 if (rc != 0)
1758                         RETURN(rc);
1759         } else {
1760                 memset(info->lti_ea_store, 0, sizeof(*lmm1));
1761         }
1762
1763         lmm1 = (struct lmv_mds_md_v1 *)info->lti_ea_store;
1764         memset(lmm1, 0, sizeof(*lmm1));
1765         lmm1->lmv_magic = cpu_to_le32(LMV_MAGIC);
1766         lmm1->lmv_stripe_count = cpu_to_le32(stripe_count);
1767         lmm1->lmv_hash_type = cpu_to_le32(lo->ldo_dir_hash_type);
1768         lmm1->lmv_layout_version = cpu_to_le32(lo->ldo_dir_layout_version);
1769         if (lod_is_layout_changing(lo)) {
1770                 lmm1->lmv_migrate_hash = cpu_to_le32(lo->ldo_dir_migrate_hash);
1771                 lmm1->lmv_migrate_offset =
1772                         cpu_to_le32(lo->ldo_dir_migrate_offset);
1773         }
1774         rc = lod_fld_lookup(env, lod, lu_object_fid(&dt->do_lu),
1775                             &mdtidx, &type);
1776         if (rc != 0)
1777                 RETURN(rc);
1778
1779         lmm1->lmv_master_mdt_index = cpu_to_le32(mdtidx);
1780         lmv_buf->lb_buf = info->lti_ea_store;
1781         lmv_buf->lb_len = sizeof(*lmm1);
1782
1783         RETURN(rc);
1784 }
1785
1786 /**
1787  * Create in-core represenation for a striped directory.
1788  *
1789  * Parse the buffer containing LMV EA and instantiate LU objects
1790  * representing the stripe objects. The pointers to the objects are
1791  * stored in ldo_stripe field of \a lo. This function is used when
1792  * we need to access an already created object (i.e. load from a disk).
1793  *
1794  * \param[in] env       execution environment
1795  * \param[in] lo        lod object
1796  * \param[in] buf       buffer containing LMV EA
1797  *
1798  * \retval              0 on success
1799  * \retval              negative if failed
1800  */
1801 int lod_parse_dir_striping(const struct lu_env *env, struct lod_object *lo,
1802                            const struct lu_buf *buf)
1803 {
1804         struct lod_thread_info  *info = lod_env_info(env);
1805         struct lod_device       *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
1806         struct lod_tgt_descs    *ltd = &lod->lod_mdt_descs;
1807         struct dt_object        **stripe;
1808         union lmv_mds_md        *lmm = buf->lb_buf;
1809         struct lmv_mds_md_v1    *lmv1 = &lmm->lmv_md_v1;
1810         struct lu_fid           *fid = &info->lti_fid;
1811         unsigned int            i;
1812         int                     rc = 0;
1813         ENTRY;
1814
1815         LASSERT(mutex_is_locked(&lo->ldo_layout_mutex));
1816
1817         /* XXX may be useless as not called for foreign LMV ?? */
1818         if (le32_to_cpu(lmv1->lmv_magic) == LMV_MAGIC_FOREIGN)
1819                 RETURN(0);
1820
1821         if (le32_to_cpu(lmv1->lmv_magic) == LMV_MAGIC_STRIPE) {
1822                 lo->ldo_dir_slave_stripe = 1;
1823                 RETURN(0);
1824         }
1825
1826         if (!lmv_is_sane(lmv1))
1827                 RETURN(-EINVAL);
1828
1829         LASSERT(lo->ldo_stripe == NULL);
1830         OBD_ALLOC_PTR_ARRAY(stripe, le32_to_cpu(lmv1->lmv_stripe_count));
1831         if (stripe == NULL)
1832                 RETURN(-ENOMEM);
1833
1834         for (i = 0; i < le32_to_cpu(lmv1->lmv_stripe_count); i++) {
1835                 struct dt_device        *tgt_dt;
1836                 struct dt_object        *dto;
1837                 int                     type = LU_SEQ_RANGE_ANY;
1838                 __u32                   idx;
1839
1840                 fid_le_to_cpu(fid, &lmv1->lmv_stripe_fids[i]);
1841                 if (!fid_is_sane(fid)) {
1842                         stripe[i] = NULL;
1843                         continue;
1844                 }
1845
1846                 rc = lod_fld_lookup(env, lod, fid, &idx, &type);
1847                 if (rc != 0)
1848                         GOTO(out, rc);
1849
1850                 if (idx == lod2lu_dev(lod)->ld_site->ld_seq_site->ss_node_id) {
1851                         tgt_dt = lod->lod_child;
1852                 } else {
1853                         struct lod_tgt_desc     *tgt;
1854
1855                         tgt = LTD_TGT(ltd, idx);
1856                         if (tgt == NULL)
1857                                 GOTO(out, rc = -ESTALE);
1858                         tgt_dt = tgt->ltd_tgt;
1859                 }
1860
1861                 dto = dt_locate_at(env, tgt_dt, fid,
1862                                   lo->ldo_obj.do_lu.lo_dev->ld_site->ls_top_dev,
1863                                   NULL);
1864                 if (IS_ERR(dto))
1865                         GOTO(out, rc = PTR_ERR(dto));
1866
1867                 stripe[i] = dto;
1868         }
1869 out:
1870         lo->ldo_stripe = stripe;
1871         lo->ldo_dir_stripe_count = le32_to_cpu(lmv1->lmv_stripe_count);
1872         lo->ldo_dir_stripes_allocated = le32_to_cpu(lmv1->lmv_stripe_count);
1873         lo->ldo_dir_layout_version = le32_to_cpu(lmv1->lmv_layout_version);
1874         lo->ldo_dir_migrate_offset = le32_to_cpu(lmv1->lmv_migrate_offset);
1875         lo->ldo_dir_migrate_hash = le32_to_cpu(lmv1->lmv_migrate_hash);
1876         lo->ldo_dir_hash_type = le32_to_cpu(lmv1->lmv_hash_type);
1877         if (rc != 0)
1878                 lod_striping_free_nolock(env, lo);
1879
1880         RETURN(rc);
1881 }
1882
1883 /**
1884  * Declare create a striped directory.
1885  *
1886  * Declare creating a striped directory with a given stripe pattern on the
1887  * specified MDTs. A striped directory is represented as a regular directory
1888  * - an index listing all the stripes. The stripes point back to the master
1889  * object with ".." and LinkEA. The master object gets LMV EA which
1890  * identifies it as a striped directory. The function allocates FIDs
1891  * for all stripes.
1892  *
1893  * \param[in] env       execution environment
1894  * \param[in] dt        object
1895  * \param[in] attr      attributes to initialize the objects with
1896  * \param[in] dof       type of objects to be created
1897  * \param[in] th        transaction handle
1898  *
1899  * \retval              0 on success
1900  * \retval              negative if failed
1901  */
1902 static int lod_dir_declare_create_stripes(const struct lu_env *env,
1903                                           struct dt_object *dt,
1904                                           struct lu_attr *attr,
1905                                           struct dt_object_format *dof,
1906                                           struct thandle *th)
1907 {
1908         struct lod_thread_info  *info = lod_env_info(env);
1909         struct lu_buf           lmv_buf;
1910         struct lu_buf           slave_lmv_buf;
1911         struct lmv_mds_md_v1    *lmm;
1912         struct lmv_mds_md_v1    *slave_lmm = NULL;
1913         struct dt_insert_rec    *rec = &info->lti_dt_rec;
1914         struct lod_object       *lo = lod_dt_obj(dt);
1915         int                     rc;
1916         __u32                   i;
1917         ENTRY;
1918
1919         rc = lod_prep_lmv_md(env, dt, &lmv_buf);
1920         if (rc != 0)
1921                 GOTO(out, rc);
1922         lmm = lmv_buf.lb_buf;
1923
1924         OBD_ALLOC_PTR(slave_lmm);
1925         if (slave_lmm == NULL)
1926                 GOTO(out, rc = -ENOMEM);
1927
1928         lod_prep_slave_lmv_md(slave_lmm, lmm);
1929         slave_lmv_buf.lb_buf = slave_lmm;
1930         slave_lmv_buf.lb_len = sizeof(*slave_lmm);
1931
1932         if (!dt_try_as_dir(env, dt_object_child(dt)))
1933                 GOTO(out, rc = -EINVAL);
1934
1935         rec->rec_type = S_IFDIR;
1936         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
1937                 struct dt_object        *dto = lo->ldo_stripe[i];
1938                 char                    *stripe_name = info->lti_key;
1939                 struct lu_name          *sname;
1940                 struct linkea_data       ldata          = { NULL };
1941                 struct lu_buf           linkea_buf;
1942
1943                 /* OBD_FAIL_MDS_STRIPE_FID may leave stripe uninitialized */
1944                 if (!dto)
1945                         continue;
1946
1947                 /* directory split skip create for existing stripes */
1948                 if (!(lod_is_splitting(lo) && i < lo->ldo_dir_split_offset)) {
1949                         rc = lod_sub_declare_create(env, dto, attr, NULL, dof,
1950                                                     th);
1951                         if (rc != 0)
1952                                 GOTO(out, rc);
1953
1954                         if (!dt_try_as_dir(env, dto))
1955                                 GOTO(out, rc = -EINVAL);
1956
1957                         rc = lod_sub_declare_ref_add(env, dto, th);
1958                         if (rc != 0)
1959                                 GOTO(out, rc);
1960
1961                         rec->rec_fid = lu_object_fid(&dto->do_lu);
1962                         rc = lod_sub_declare_insert(env, dto,
1963                                                     (const struct dt_rec *)rec,
1964                                                     (const struct dt_key *)dot,
1965                                                     th);
1966                         if (rc != 0)
1967                                 GOTO(out, rc);
1968
1969                         /* master stripe FID will be put to .. */
1970                         rec->rec_fid = lu_object_fid(&dt->do_lu);
1971                         rc = lod_sub_declare_insert(env, dto,
1972                                                   (const struct dt_rec *)rec,
1973                                                   (const struct dt_key *)dotdot,
1974                                                   th);
1975                         if (rc != 0)
1976                                 GOTO(out, rc);
1977
1978                         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_NAME) &&
1979                             cfs_fail_val == i)
1980                                 snprintf(stripe_name, sizeof(info->lti_key),
1981                                          DFID":%u",
1982                                          PFID(lu_object_fid(&dto->do_lu)),
1983                                          i + 1);
1984                         else
1985                                 snprintf(stripe_name, sizeof(info->lti_key),
1986                                          DFID":%u",
1987                                          PFID(lu_object_fid(&dto->do_lu)), i);
1988
1989                         sname = lod_name_get(env, stripe_name,
1990                                              strlen(stripe_name));
1991                         rc = linkea_links_new(&ldata, &info->lti_linkea_buf,
1992                                               sname, lu_object_fid(&dt->do_lu));
1993                         if (rc != 0)
1994                                 GOTO(out, rc);
1995
1996                         linkea_buf.lb_buf = ldata.ld_buf->lb_buf;
1997                         linkea_buf.lb_len = ldata.ld_leh->leh_len;
1998                         rc = lod_sub_declare_xattr_set(env, dto, &linkea_buf,
1999                                                        XATTR_NAME_LINK, 0, th);
2000                         if (rc != 0)
2001                                 GOTO(out, rc);
2002
2003                         rec->rec_fid = lu_object_fid(&dto->do_lu);
2004                         rc = lod_sub_declare_insert(env, dt_object_child(dt),
2005                                         (const struct dt_rec *)rec,
2006                                         (const struct dt_key *)stripe_name, th);
2007                         if (rc != 0)
2008                                 GOTO(out, rc);
2009
2010                         rc = lod_sub_declare_ref_add(env, dt_object_child(dt),
2011                                                      th);
2012                         if (rc != 0)
2013                                 GOTO(out, rc);
2014                 }
2015
2016                 if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_SLAVE_LMV) ||
2017                     cfs_fail_val != i) {
2018                         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_LMV) &&
2019                             cfs_fail_val == i)
2020                                 slave_lmm->lmv_master_mdt_index =
2021                                                         cpu_to_le32(i + 1);
2022                         else
2023                                 slave_lmm->lmv_master_mdt_index =
2024                                                         cpu_to_le32(i);
2025                         rc = lod_sub_declare_xattr_set(env, dto, &slave_lmv_buf,
2026                                                        XATTR_NAME_LMV, 0, th);
2027                         if (rc != 0)
2028                                 GOTO(out, rc);
2029                 }
2030         }
2031
2032         rc = lod_sub_declare_xattr_set(env, dt_object_child(dt),
2033                                        &lmv_buf, XATTR_NAME_LMV, 0, th);
2034         if (rc != 0)
2035                 GOTO(out, rc);
2036 out:
2037         if (slave_lmm != NULL)
2038                 OBD_FREE_PTR(slave_lmm);
2039
2040         RETURN(rc);
2041 }
2042
2043 /**
2044  * Allocate a striping on a predefined set of MDTs.
2045  *
2046  * Allocates new striping using the MDT index range provided by the data from
2047  * the lum_obejcts contained in the lmv_user_md passed to this method if
2048  * \a is_specific is true; or allocates new layout starting from MDT index in
2049  * lo->ldo_dir_stripe_offset. The exact order of MDTs is not important and
2050  * varies depending on MDT status. The number of stripes needed and stripe
2051  * offset are taken from the object. If that number cannot be met, then the
2052  * function returns an error and then it's the caller's responsibility to
2053  * release the stripes allocated. All the internal structures are protected,
2054  * but no concurrent allocation is allowed on the same objects.
2055  *
2056  * \param[in] env               execution environment for this thread
2057  * \param[in] lo                LOD object
2058  * \param[out] stripes          striping created
2059  * \param[out] mdt_indices      MDT indices of striping created
2060  * \param[in] is_specific       true if the MDTs are provided by lum; false if
2061  *                              only the starting MDT index is provided
2062  *
2063  * \retval positive     stripes allocated, including the first stripe allocated
2064  *                      outside
2065  * \retval negative     errno on failure
2066  */
2067 static int lod_mdt_alloc_specific(const struct lu_env *env,
2068                                   struct lod_object *lo,
2069                                   struct dt_object **stripes,
2070                                   __u32 *mdt_indices, bool is_specific)
2071 {
2072         struct lod_device *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
2073         struct lu_tgt_descs *ltd = &lod->lod_mdt_descs;
2074         struct lu_tgt_desc *tgt = NULL;
2075         struct lu_object_conf conf = { .loc_flags = LOC_F_NEW };
2076         struct dt_device *tgt_dt = NULL;
2077         struct lu_fid fid = { 0 };
2078         struct dt_object *dto;
2079         u32 master_index;
2080         u32 stripe_count = lo->ldo_dir_stripe_count;
2081         int stripe_idx = 1;
2082         int j;
2083         int idx;
2084         int rc;
2085
2086         master_index = lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_node_id;
2087         if (!is_specific && stripe_count > 1)
2088                 /* Set the start index for the 2nd stripe allocation */
2089                 mdt_indices[1] = (mdt_indices[0] + 1) %
2090                                         (lod->lod_remote_mdt_count + 1);
2091
2092         for (; stripe_idx < stripe_count; stripe_idx++) {
2093                 /* Try to find next avaible target */
2094                 idx = mdt_indices[stripe_idx];
2095                 for (j = 0; j < lod->lod_remote_mdt_count;
2096                      j++, idx = (idx + 1) % (lod->lod_remote_mdt_count + 1)) {
2097                         bool already_allocated = false;
2098                         __u32 k;
2099
2100                         CDEBUG(D_INFO, "try idx %d, mdt cnt %u, allocated %u\n",
2101                                idx, lod->lod_remote_mdt_count + 1, stripe_idx);
2102
2103                         if (likely(!is_specific &&
2104                                    !OBD_FAIL_CHECK(OBD_FAIL_LARGE_STRIPE))) {
2105                                 /* check whether the idx already exists
2106                                  * in current allocated array */
2107                                 for (k = 0; k < stripe_idx; k++) {
2108                                         if (mdt_indices[k] == idx) {
2109                                                 already_allocated = true;
2110                                                 break;
2111                                         }
2112                                 }
2113
2114                                 if (already_allocated)
2115                                         continue;
2116                         }
2117
2118                         /* Sigh, this index is not in the bitmap, let's check
2119                          * next available target */
2120                         if (!test_bit(idx, ltd->ltd_tgt_bitmap) &&
2121                             idx != master_index)
2122                                 continue;
2123
2124                         if (idx == master_index) {
2125                                 /* Allocate the FID locally */
2126                                 tgt_dt = lod->lod_child;
2127                                 rc = dt_fid_alloc(env, tgt_dt, &fid, NULL,
2128                                                   NULL);
2129                                 if (rc < 0)
2130                                         continue;
2131                                 break;
2132                         }
2133
2134                         /* check the status of the OSP */
2135                         tgt = LTD_TGT(ltd, idx);
2136                         if (!tgt)
2137                                 continue;
2138
2139                         tgt_dt = tgt->ltd_tgt;
2140                         if (!tgt->ltd_active)
2141                                 /* this OSP doesn't feel well */
2142                                 continue;
2143
2144                         rc = dt_fid_alloc(env, tgt_dt, &fid, NULL, NULL);
2145                         if (rc < 0)
2146                                 continue;
2147
2148                         break;
2149                 }
2150
2151                 /* Can not allocate more stripes */
2152                 if (j == lod->lod_remote_mdt_count) {
2153                         CDEBUG(D_INFO, "%s: require stripes %u only get %d\n",
2154                                lod2obd(lod)->obd_name, stripe_count,
2155                                stripe_idx);
2156                         break;
2157                 }
2158
2159                 CDEBUG(D_INFO, "Get idx %d, for stripe %d "DFID"\n",
2160                        idx, stripe_idx, PFID(&fid));
2161                 mdt_indices[stripe_idx] = idx;
2162                 /* Set the start index for next stripe allocation */
2163                 if (!is_specific && stripe_idx < stripe_count - 1) {
2164                         /*
2165                          * for large dir test, put all other slaves on one
2166                          * remote MDT, otherwise we may save too many local
2167                          * slave locks which will exceed RS_MAX_LOCKS.
2168                          */
2169                         if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_LARGE_STRIPE)))
2170                                 idx = master_index;
2171                         mdt_indices[stripe_idx + 1] = (idx + 1) %
2172                                            (lod->lod_remote_mdt_count + 1);
2173                 }
2174                 /* tgt_dt and fid must be ready after search avaible OSP
2175                  * in the above loop */
2176                 LASSERT(tgt_dt != NULL);
2177                 LASSERT(fid_is_sane(&fid));
2178
2179                 /* fail a remote stripe FID allocation */
2180                 if (stripe_idx && OBD_FAIL_CHECK(OBD_FAIL_MDS_STRIPE_FID))
2181                         continue;
2182
2183                 dto = dt_locate_at(env, tgt_dt, &fid,
2184                                   lo->ldo_obj.do_lu.lo_dev->ld_site->ls_top_dev,
2185                                   &conf);
2186                 if (IS_ERR(dto)) {
2187                         rc = PTR_ERR(dto);
2188                         goto error;
2189                 }
2190
2191                 stripes[stripe_idx] = dto;
2192         }
2193
2194         return stripe_idx;
2195
2196 error:
2197         for (j = 1; j < stripe_idx; j++) {
2198                 LASSERT(stripes[j] != NULL);
2199                 dt_object_put(env, stripes[j]);
2200                 stripes[j] = NULL;
2201         }
2202         return rc;
2203 }
2204
2205 static int lod_prep_md_striped_create(const struct lu_env *env,
2206                                       struct dt_object *dt,
2207                                       struct lu_attr *attr,
2208                                       const struct lmv_user_md_v1 *lum,
2209                                       struct dt_object_format *dof,
2210                                       struct thandle *th)
2211 {
2212         struct lod_device *lod = lu2lod_dev(dt->do_lu.lo_dev);
2213         struct lod_object *lo = lod_dt_obj(dt);
2214         struct dt_object **stripes;
2215         struct lu_object_conf conf = { .loc_flags = LOC_F_NEW };
2216         struct lu_fid fid = { 0 };
2217         __u32 stripe_count;
2218         int i;
2219         int rc = 0;
2220
2221         ENTRY;
2222
2223         /* The lum has been verifed in lod_verify_md_striping */
2224         LASSERT(le32_to_cpu(lum->lum_magic) == LMV_USER_MAGIC ||
2225                 le32_to_cpu(lum->lum_magic) == LMV_USER_MAGIC_SPECIFIC);
2226
2227         stripe_count = lo->ldo_dir_stripe_count;
2228
2229         OBD_ALLOC_PTR_ARRAY(stripes, stripe_count);
2230         if (!stripes)
2231                 RETURN(-ENOMEM);
2232
2233         /* Allocate the first stripe locally */
2234         rc = dt_fid_alloc(env, lod->lod_child, &fid, NULL, NULL);
2235         if (rc < 0)
2236                 GOTO(out, rc);
2237
2238         stripes[0] = dt_locate_at(env, lod->lod_child, &fid,
2239                                   dt->do_lu.lo_dev->ld_site->ls_top_dev, &conf);
2240         if (IS_ERR(stripes[0]))
2241                 GOTO(out, rc = PTR_ERR(stripes[0]));
2242
2243         if (lo->ldo_dir_stripe_offset == LMV_OFFSET_DEFAULT) {
2244                 lod_qos_statfs_update(env, lod, &lod->lod_mdt_descs);
2245                 rc = lod_mdt_alloc_qos(env, lo, stripes, 1, stripe_count);
2246                 if (rc == -EAGAIN)
2247                         rc = lod_mdt_alloc_rr(env, lo, stripes, 1,
2248                                               stripe_count);
2249         } else {
2250                 int *idx_array;
2251                 bool is_specific = false;
2252
2253                 OBD_ALLOC_PTR_ARRAY(idx_array, stripe_count);
2254                 if (!idx_array)
2255                         GOTO(out, rc = -ENOMEM);
2256
2257                 if (le32_to_cpu(lum->lum_magic) == LMV_USER_MAGIC_SPECIFIC) {
2258                         is_specific = true;
2259                         for (i = 0; i < stripe_count; i++)
2260                                 idx_array[i] =
2261                                        le32_to_cpu(lum->lum_objects[i].lum_mds);
2262                 }
2263
2264                 /* stripe 0 is local */
2265                 idx_array[0] =
2266                         lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_node_id;
2267                 rc = lod_mdt_alloc_specific(env, lo, stripes, idx_array,
2268                                             is_specific);
2269                 OBD_FREE_PTR_ARRAY(idx_array, stripe_count);
2270         }
2271
2272         if (rc < 0)
2273                 GOTO(out, rc);
2274
2275         LASSERT(rc > 0);
2276
2277         lo->ldo_dir_striped = 1;
2278         lo->ldo_stripe = stripes;
2279         lo->ldo_dir_stripe_count = rc;
2280         lo->ldo_dir_stripes_allocated = stripe_count;
2281         smp_mb();
2282         lo->ldo_dir_stripe_loaded = 1;
2283
2284         rc = lod_dir_declare_create_stripes(env, dt, attr, dof, th);
2285         if (rc < 0)
2286                 lod_striping_free(env, lo);
2287
2288         RETURN(rc);
2289
2290 out:
2291         LASSERT(rc < 0);
2292         if (!IS_ERR_OR_NULL(stripes[0]))
2293                 dt_object_put(env, stripes[0]);
2294         for (i = 1; i < stripe_count; i++)
2295                 LASSERT(!stripes[i]);
2296         OBD_FREE_PTR_ARRAY(stripes, stripe_count);
2297
2298         return rc;
2299 }
2300
2301 /**
2302  *
2303  * Alloc cached foreign LMV
2304  *
2305  * \param[in] lo        object
2306  * \param[in] size      size of foreign LMV
2307  *
2308  * \retval              0 on success
2309  * \retval              negative if failed
2310  */
2311 int lod_alloc_foreign_lmv(struct lod_object *lo, size_t size)
2312 {
2313         OBD_ALLOC_LARGE(lo->ldo_foreign_lmv, size);
2314         if (lo->ldo_foreign_lmv == NULL)
2315                 return -ENOMEM;
2316         lo->ldo_foreign_lmv_size = size;
2317         lo->ldo_dir_is_foreign = 1;
2318
2319         return 0;
2320 }
2321
2322 /**
2323  * Declare create striped md object.
2324  *
2325  * The function declares intention to create a striped directory. This is a
2326  * wrapper for lod_prep_md_striped_create(). The only additional functionality
2327  * is to verify pattern \a lum_buf is good. Check that function for the details.
2328  *
2329  * \param[in] env       execution environment
2330  * \param[in] dt        object
2331  * \param[in] attr      attributes to initialize the objects with
2332  * \param[in] lum_buf   a pattern specifying the number of stripes and
2333  *                      MDT to start from
2334  * \param[in] dof       type of objects to be created
2335  * \param[in] th        transaction handle
2336  *
2337  * \retval              0 on success
2338  * \retval              negative if failed
2339  *
2340  */
2341 static int lod_declare_xattr_set_lmv(const struct lu_env *env,
2342                                      struct dt_object *dt,
2343                                      struct lu_attr *attr,
2344                                      const struct lu_buf *lum_buf,
2345                                      struct dt_object_format *dof,
2346                                      struct thandle *th)
2347 {
2348         struct lod_object       *lo = lod_dt_obj(dt);
2349         struct lmv_user_md_v1   *lum = lum_buf->lb_buf;
2350         int                     rc;
2351         ENTRY;
2352
2353         LASSERT(lum != NULL);
2354
2355         CDEBUG(D_INFO, "lum magic = %x count = %u offset = %d\n",
2356                le32_to_cpu(lum->lum_magic), le32_to_cpu(lum->lum_stripe_count),
2357                (int)le32_to_cpu(lum->lum_stripe_offset));
2358
2359         if (lo->ldo_dir_stripe_count == 0) {
2360                 if (lo->ldo_dir_is_foreign) {
2361                         rc = lod_alloc_foreign_lmv(lo, lum_buf->lb_len);
2362                         if (rc != 0)
2363                                 GOTO(out, rc);
2364                         memcpy(lo->ldo_foreign_lmv, lum, lum_buf->lb_len);
2365                         lo->ldo_dir_stripe_loaded = 1;
2366                 }
2367                 GOTO(out, rc = 0);
2368         }
2369
2370         /* prepare dir striped objects */
2371         rc = lod_prep_md_striped_create(env, dt, attr, lum, dof, th);
2372         if (rc != 0) {
2373                 /* failed to create striping, let's reset
2374                  * config so that others don't get confused */
2375                 lod_striping_free(env, lo);
2376                 GOTO(out, rc);
2377         }
2378 out:
2379         RETURN(rc);
2380 }
2381
2382 /**
2383  * Set or replace striped directory layout, and LFSCK may set layout on a plain
2384  * directory, so don't check stripe count.
2385  *
2386  * \param[in] env       execution environment
2387  * \param[in] dt        target object
2388  * \param[in] buf       LMV buf which contains source stripe fids
2389  * \param[in] fl        set or replace
2390  * \param[in] th        transaction handle
2391  *
2392  * \retval              0 on success
2393  * \retval              negative if failed
2394  */
2395 static int lod_dir_layout_set(const struct lu_env *env,
2396                               struct dt_object *dt,
2397                               const struct lu_buf *buf,
2398                               int fl,
2399                               struct thandle *th)
2400 {
2401         struct dt_object *next = dt_object_child(dt);
2402         struct lod_object *lo = lod_dt_obj(dt);
2403         struct lod_device *lod = lu2lod_dev(lod2lu_obj(lo)->lo_dev);
2404         struct lmv_mds_md_v1 *lmv = buf->lb_buf;
2405         struct lmv_mds_md_v1 *slave_lmv;
2406         struct lu_buf slave_buf;
2407         int i;
2408         int rc;
2409
2410         ENTRY;
2411
2412         if (!lmv_is_sane2(lmv))
2413                 RETURN(-EINVAL);
2414
2415         /* adjust hash for dir merge, which may not be set in user command */
2416         if (lmv_is_merging(lmv) &&
2417             !(lmv->lmv_migrate_hash & LMV_HASH_TYPE_MASK))
2418                 lmv->lmv_merge_hash |=
2419                         lod->lod_mdt_descs.ltd_lmv_desc.ld_pattern &
2420                         LMV_HASH_TYPE_MASK;
2421
2422         LMV_DEBUG(D_INFO, lmv, "set");
2423
2424         rc = lod_sub_xattr_set(env, next, buf, XATTR_NAME_LMV, fl, th);
2425         if (rc)
2426                 RETURN(rc);
2427
2428         /* directory restripe may update stripe LMV directly */
2429         if (!lo->ldo_dir_stripe_count)
2430                 RETURN(0);
2431
2432         lo->ldo_dir_hash_type = le32_to_cpu(lmv->lmv_hash_type);
2433         lo->ldo_dir_migrate_offset = le32_to_cpu(lmv->lmv_migrate_offset);
2434         lo->ldo_dir_migrate_hash = le32_to_cpu(lmv->lmv_migrate_hash);
2435         lo->ldo_dir_layout_version = le32_to_cpu(lmv->lmv_layout_version);
2436
2437         OBD_ALLOC_PTR(slave_lmv);
2438         if (!slave_lmv)
2439                 RETURN(-ENOMEM);
2440
2441         lod_prep_slave_lmv_md(slave_lmv, lmv);
2442         slave_buf.lb_buf = slave_lmv;
2443         slave_buf.lb_len = sizeof(*slave_lmv);
2444
2445         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
2446                 if (!lo->ldo_stripe[i])
2447                         continue;
2448
2449                 if (!dt_object_exists(lo->ldo_stripe[i]))
2450                         continue;
2451
2452                 rc = lod_sub_xattr_set(env, lo->ldo_stripe[i], &slave_buf,
2453                                        XATTR_NAME_LMV, fl, th);
2454                 if (rc)
2455                         break;
2456         }
2457
2458         OBD_FREE_PTR(slave_lmv);
2459
2460         RETURN(rc);
2461 }
2462
2463 /**
2464  * Implementation of dt_object_operations::do_declare_xattr_set.
2465  *
2466  * Used with regular (non-striped) objects. Basically it
2467  * initializes the striping information and applies the
2468  * change to all the stripes.
2469  *
2470  * \see dt_object_operations::do_declare_xattr_set() in the API description
2471  * for details.
2472  */
2473 static int lod_dir_declare_xattr_set(const struct lu_env *env,
2474                                      struct dt_object *dt,
2475                                      const struct lu_buf *buf,
2476                                      const char *name, int fl,
2477                                      struct thandle *th)
2478 {
2479         struct dt_object        *next = dt_object_child(dt);
2480         struct lod_device       *d = lu2lod_dev(dt->do_lu.lo_dev);
2481         struct lod_object       *lo = lod_dt_obj(dt);
2482         int                     i;
2483         int                     rc;
2484         ENTRY;
2485
2486         if (strcmp(name, XATTR_NAME_DEFAULT_LMV) == 0) {
2487                 struct lmv_user_md_v1 *lum;
2488
2489                 LASSERT(buf != NULL && buf->lb_buf != NULL);
2490                 lum = buf->lb_buf;
2491                 rc = lod_verify_md_striping(d, lum);
2492                 if (rc != 0)
2493                         RETURN(rc);
2494         } else if (strcmp(name, XATTR_NAME_LOV) == 0) {
2495                 rc = lod_verify_striping(env, d, lo, buf, false);
2496                 if (rc != 0)
2497                         RETURN(rc);
2498         }
2499
2500         rc = lod_sub_declare_xattr_set(env, next, buf, name, fl, th);
2501         if (rc != 0)
2502                 RETURN(rc);
2503
2504         /* Note: Do not set LinkEA on sub-stripes, otherwise
2505          * it will confuse the fid2path process(see mdt_path_current()).
2506          * The linkEA between master and sub-stripes is set in
2507          * lod_xattr_set_lmv(). */
2508         if (strcmp(name, XATTR_NAME_LINK) == 0)
2509                 RETURN(0);
2510
2511         /* set xattr to each stripes, if needed */
2512         rc = lod_striping_load(env, lo);
2513         if (rc != 0)
2514                 RETURN(rc);
2515
2516         if (lo->ldo_dir_stripe_count == 0)
2517                 RETURN(0);
2518
2519         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
2520                 if (!lo->ldo_stripe[i])
2521                         continue;
2522
2523                 if (!dt_object_exists(lo->ldo_stripe[i]))
2524                         continue;
2525
2526                 rc = lod_sub_declare_xattr_set(env, lo->ldo_stripe[i],
2527                                                buf, name, fl, th);
2528                 if (rc != 0)
2529                         break;
2530         }
2531
2532         RETURN(rc);
2533 }
2534
2535 static int
2536 lod_obj_stripe_replace_parent_fid_cb(const struct lu_env *env,
2537                                      struct lod_object *lo,
2538                                      struct dt_object *dt, struct thandle *th,
2539                                      int comp_idx, int stripe_idx,
2540                                      struct lod_obj_stripe_cb_data *data)
2541 {
2542         struct lod_thread_info *info = lod_env_info(env);
2543         struct lod_layout_component *comp = &lo->ldo_comp_entries[comp_idx];
2544         struct filter_fid *ff = &info->lti_ff;
2545         struct lu_buf *buf = &info->lti_buf;
2546         int rc;
2547
2548         buf->lb_buf = ff;
2549         buf->lb_len = sizeof(*ff);
2550         rc = dt_xattr_get(env, dt, buf, XATTR_NAME_FID);
2551         if (rc < 0) {
2552                 if (rc == -ENODATA)
2553                         return 0;
2554                 return rc;
2555         }
2556
2557         /*
2558          * locd_buf is set if it's called by dir migration, which doesn't check
2559          * pfid and comp id.
2560          */
2561         if (data->locd_buf) {
2562                 memset(ff, 0, sizeof(*ff));
2563                 ff->ff_parent = *(struct lu_fid *)data->locd_buf->lb_buf;
2564         } else {
2565                 filter_fid_le_to_cpu(ff, ff, sizeof(*ff));
2566
2567                 if (lu_fid_eq(lod_object_fid(lo), &ff->ff_parent) &&
2568                     ff->ff_layout.ol_comp_id == comp->llc_id)
2569                         return 0;
2570
2571                 memset(ff, 0, sizeof(*ff));
2572                 ff->ff_parent = *lu_object_fid(&lo->ldo_obj.do_lu);
2573         }
2574
2575         /* rewrite filter_fid */
2576         ff->ff_parent.f_ver = stripe_idx;
2577         ff->ff_layout.ol_stripe_size = comp->llc_stripe_size;
2578         ff->ff_layout.ol_stripe_count = comp->llc_stripe_count;
2579         ff->ff_layout.ol_comp_id = comp->llc_id;
2580         ff->ff_layout.ol_comp_start = comp->llc_extent.e_start;
2581         ff->ff_layout.ol_comp_end = comp->llc_extent.e_end;
2582         filter_fid_cpu_to_le(ff, ff, sizeof(*ff));
2583
2584         if (data->locd_declare)
2585                 rc = lod_sub_declare_xattr_set(env, dt, buf, XATTR_NAME_FID,
2586                                                LU_XATTR_REPLACE, th);
2587         else
2588                 rc = lod_sub_xattr_set(env, dt, buf, XATTR_NAME_FID,
2589                                        LU_XATTR_REPLACE, th);
2590
2591         return rc;
2592 }
2593
2594 /**
2595  * Reset parent FID on OST object
2596  *
2597  * Replace parent FID with @dt object FID, which is only called during migration
2598  * to reset the parent FID after the MDT object is migrated to the new MDT, i.e.
2599  * the FID is changed.
2600  *
2601  * \param[in] env execution environment
2602  * \param[in] dt dt_object whose stripes's parent FID will be reset
2603  * \parem[in] th thandle
2604  * \param[in] declare if it is declare
2605  *
2606  * \retval      0 if reset succeeds
2607  * \retval      negative errno if reset fails
2608  */
2609 static int lod_replace_parent_fid(const struct lu_env *env,
2610                                   struct dt_object *dt,
2611                                   const struct lu_buf *buf,
2612                                   struct thandle *th, bool declare)
2613 {
2614         struct lod_object *lo = lod_dt_obj(dt);
2615         struct lod_thread_info  *info = lod_env_info(env);
2616         struct filter_fid *ff;
2617         struct lod_obj_stripe_cb_data data = { { 0 } };
2618         int rc;
2619         ENTRY;
2620
2621         LASSERT(S_ISREG(dt->do_lu.lo_header->loh_attr));
2622
2623         /* set xattr to each stripes, if needed */
2624         rc = lod_striping_load(env, lo);
2625         if (rc != 0)
2626                 RETURN(rc);
2627
2628         if (!lod_obj_is_striped(dt))
2629                 RETURN(0);
2630
2631         if (info->lti_ea_store_size < sizeof(*ff)) {
2632                 rc = lod_ea_store_resize(info, sizeof(*ff));
2633                 if (rc != 0)
2634                         RETURN(rc);
2635         }
2636
2637         data.locd_declare = declare;
2638         data.locd_stripe_cb = lod_obj_stripe_replace_parent_fid_cb;
2639         data.locd_buf = buf;
2640         rc = lod_obj_for_each_stripe(env, lo, th, &data);
2641
2642         RETURN(rc);
2643 }
2644
2645 __u16 lod_comp_entry_stripe_count(struct lod_object *lo,
2646                                   int comp_idx, bool is_dir)
2647 {
2648         struct lod_device *lod = lu2lod_dev(lod2lu_obj(lo)->lo_dev);
2649         struct lod_layout_component *entry;
2650
2651         if (is_dir)
2652                 return  0;
2653
2654         entry = &lo->ldo_comp_entries[comp_idx];
2655         if (lod_comp_inited(entry))
2656                 return entry->llc_stripe_count;
2657         else if ((__u16)-1 == entry->llc_stripe_count)
2658                 return lod->lod_ost_count;
2659         else
2660                 return lod_get_stripe_count(lod, lo, comp_idx,
2661                                             entry->llc_stripe_count,
2662                                             entry->llc_pattern &
2663                                             LOV_PATTERN_OVERSTRIPING);
2664 }
2665
2666 static int lod_comp_md_size(struct lod_object *lo, bool is_dir)
2667 {
2668         int magic, size = 0, i;
2669         struct lod_layout_component *comp_entries;
2670         __u16 comp_cnt;
2671         bool is_composite, is_foreign = false;
2672
2673         if (is_dir) {
2674                 comp_cnt = lo->ldo_def_striping->lds_def_comp_cnt;
2675                 comp_entries = lo->ldo_def_striping->lds_def_comp_entries;
2676                 is_composite =
2677                         lo->ldo_def_striping->lds_def_striping_is_composite;
2678         } else {
2679                 comp_cnt = lo->ldo_comp_cnt;
2680                 comp_entries = lo->ldo_comp_entries;
2681                 is_composite = lo->ldo_is_composite;
2682                 is_foreign = lo->ldo_is_foreign;
2683         }
2684
2685         if (is_foreign)
2686                 return lo->ldo_foreign_lov_size;
2687
2688         LASSERT(comp_cnt != 0 && comp_entries != NULL);
2689         if (is_composite) {
2690                 size = sizeof(struct lov_comp_md_v1) +
2691                        sizeof(struct lov_comp_md_entry_v1) * comp_cnt;
2692                 LASSERT(size % sizeof(__u64) == 0);
2693         }
2694
2695         for (i = 0; i < comp_cnt; i++) {
2696                 __u16 stripe_count;
2697
2698                 magic = comp_entries[i].llc_pool ? LOV_MAGIC_V3 : LOV_MAGIC_V1;
2699                 stripe_count = lod_comp_entry_stripe_count(lo, i, is_dir);
2700                 if (!is_dir && is_composite)
2701                         lod_comp_shrink_stripe_count(&comp_entries[i],
2702                                                      &stripe_count);
2703
2704                 size += lov_user_md_size(stripe_count, magic);
2705                 LASSERT(size % sizeof(__u64) == 0);
2706         }
2707         return size;
2708 }
2709
2710 /**
2711  * Declare component add. The xattr name is XATTR_LUSTRE_LOV.add, and
2712  * the xattr value is binary lov_comp_md_v1 which contains component(s)
2713  * to be added.
2714   *
2715  * \param[in] env       execution environment
2716  * \param[in] dt        dt_object to add components on
2717  * \param[in] buf       buffer contains components to be added
2718  * \parem[in] th        thandle
2719  *
2720  * \retval      0 on success
2721  * \retval      negative errno on failure
2722  */
2723 static int lod_declare_layout_add(const struct lu_env *env,
2724                                   struct dt_object *dt,
2725                                   const struct lu_buf *buf,
2726                                   struct thandle *th)
2727 {
2728         struct lod_thread_info  *info = lod_env_info(env);
2729         struct lod_layout_component *comp_array, *lod_comp, *old_array;
2730         struct lod_device *d = lu2lod_dev(dt->do_lu.lo_dev);
2731         struct dt_object *next = dt_object_child(dt);
2732         struct lov_desc *desc = &d->lod_ost_descs.ltd_lov_desc;
2733         struct lod_object *lo = lod_dt_obj(dt);
2734         struct lov_user_md_v3 *v3;
2735         struct lov_comp_md_v1 *comp_v1 = buf->lb_buf;
2736         __u32 magic;
2737         int i, rc, array_cnt, old_array_cnt;
2738         ENTRY;
2739
2740         LASSERT(lo->ldo_is_composite);
2741
2742         if (lo->ldo_flr_state != LCM_FL_NONE)
2743                 RETURN(-EBUSY);
2744
2745         rc = lod_verify_striping(env, d, lo, buf, false);
2746         if (rc != 0)
2747                 RETURN(rc);
2748
2749         magic = comp_v1->lcm_magic;
2750         if (magic == __swab32(LOV_USER_MAGIC_COMP_V1)) {
2751                 lustre_swab_lov_comp_md_v1(comp_v1);
2752                 magic = comp_v1->lcm_magic;
2753         }
2754
2755         if (magic != LOV_USER_MAGIC_COMP_V1)
2756                 RETURN(-EINVAL);
2757
2758         mutex_lock(&lo->ldo_layout_mutex);
2759
2760         array_cnt = lo->ldo_comp_cnt + comp_v1->lcm_entry_count;
2761         OBD_ALLOC_PTR_ARRAY(comp_array, array_cnt);
2762         if (comp_array == NULL) {
2763                 mutex_unlock(&lo->ldo_layout_mutex);
2764                 RETURN(-ENOMEM);
2765         }
2766
2767
2768         memcpy(comp_array, lo->ldo_comp_entries,
2769                sizeof(*comp_array) * lo->ldo_comp_cnt);
2770
2771         for (i = 0; i < comp_v1->lcm_entry_count; i++) {
2772                 struct lov_user_md_v1 *v1;
2773                 struct lu_extent *ext;
2774
2775                 v1 = (struct lov_user_md *)((char *)comp_v1 +
2776                                 comp_v1->lcm_entries[i].lcme_offset);
2777                 ext = &comp_v1->lcm_entries[i].lcme_extent;
2778
2779                 lod_comp = &comp_array[lo->ldo_comp_cnt + i];
2780                 lod_comp->llc_extent.e_start = ext->e_start;
2781                 lod_comp->llc_extent.e_end = ext->e_end;
2782                 lod_comp->llc_stripe_offset = v1->lmm_stripe_offset;
2783                 lod_comp->llc_flags = comp_v1->lcm_entries[i].lcme_flags;
2784
2785                 lod_comp->llc_stripe_count = v1->lmm_stripe_count;
2786                 lod_comp->llc_stripe_size = v1->lmm_stripe_size;
2787                 lod_adjust_stripe_info(lod_comp, desc, 0);
2788
2789                 if (v1->lmm_magic == LOV_USER_MAGIC_V3) {
2790                         v3 = (struct lov_user_md_v3 *) v1;
2791                         if (v3->lmm_pool_name[0] != '\0') {
2792                                 rc = lod_set_pool(&lod_comp->llc_pool,
2793                                                   v3->lmm_pool_name);
2794                                 if (rc)
2795                                         GOTO(error, rc);
2796                         }
2797                 }
2798         }
2799
2800         old_array = lo->ldo_comp_entries;
2801         old_array_cnt = lo->ldo_comp_cnt;
2802
2803         lo->ldo_comp_entries = comp_array;
2804         lo->ldo_comp_cnt = array_cnt;
2805
2806         /* No need to increase layout generation here, it will be increased
2807          * later when generating component ID for the new components */
2808
2809         info->lti_buf.lb_len = lod_comp_md_size(lo, false);
2810         rc = lod_sub_declare_xattr_set(env, next, &info->lti_buf,
2811                                               XATTR_NAME_LOV, 0, th);
2812         if (rc) {
2813                 lo->ldo_comp_entries = old_array;
2814                 lo->ldo_comp_cnt = old_array_cnt;
2815                 GOTO(error, rc);
2816         }
2817
2818         OBD_FREE_PTR_ARRAY(old_array, old_array_cnt);
2819
2820         LASSERT(lo->ldo_mirror_count == 1);
2821         lo->ldo_mirrors[0].lme_end = array_cnt - 1;
2822
2823         mutex_unlock(&lo->ldo_layout_mutex);
2824
2825         RETURN(0);
2826
2827 error:
2828         for (i = lo->ldo_comp_cnt; i < array_cnt; i++) {
2829                 lod_comp = &comp_array[i];
2830                 if (lod_comp->llc_pool != NULL) {
2831                         OBD_FREE(lod_comp->llc_pool,
2832                                  strlen(lod_comp->llc_pool) + 1);
2833                         lod_comp->llc_pool = NULL;
2834                 }
2835         }
2836         OBD_FREE_PTR_ARRAY(comp_array, array_cnt);
2837         mutex_unlock(&lo->ldo_layout_mutex);
2838
2839         RETURN(rc);
2840 }
2841
2842 /**
2843  * lod_last_non_stale_mirror() - Check if a mirror is the last non-stale mirror.
2844  * @mirror_id: Mirror id to be checked.
2845  * @lo:        LOD object.
2846  *
2847  * This function checks if a mirror with specified @mirror_id is the last
2848  * non-stale mirror of a LOD object @lo.
2849  *
2850  * Return: true or false.
2851  */
2852 static inline
2853 bool lod_last_non_stale_mirror(__u16 mirror_id, struct lod_object *lo)
2854 {
2855         struct lod_layout_component *lod_comp;
2856         bool has_stale_flag;
2857         int i;
2858
2859         for (i = 0; i < lo->ldo_mirror_count; i++) {
2860                 if (lo->ldo_mirrors[i].lme_id == mirror_id ||
2861                     lo->ldo_mirrors[i].lme_stale)
2862                         continue;
2863
2864                 has_stale_flag = false;
2865                 lod_foreach_mirror_comp(lod_comp, lo, i) {
2866                         if (lod_comp->llc_flags & LCME_FL_STALE) {
2867                                 has_stale_flag = true;
2868                                 break;
2869                         }
2870                 }
2871                 if (!has_stale_flag)
2872                         return false;
2873         }
2874
2875         return true;
2876 }
2877
2878 /**
2879  * Declare component set. The xattr is name XATTR_LUSTRE_LOV.set.$field,
2880  * the '$field' can only be 'flags' now. The xattr value is binary
2881  * lov_comp_md_v1 which contains the component ID(s) and the value of
2882  * the field to be modified.
2883  * Please update allowed_lustre_lov macro if $field groks more values
2884  * in the future.
2885  *
2886  * \param[in] env       execution environment
2887  * \param[in] dt        dt_object to be modified
2888  * \param[in] op        operation string, like "set.flags"
2889  * \param[in] buf       buffer contains components to be set
2890  * \parem[in] th        thandle
2891  *
2892  * \retval      0 on success
2893  * \retval      negative errno on failure
2894  */
2895 static int lod_declare_layout_set(const struct lu_env *env,
2896                                   struct dt_object *dt,
2897                                   char *op, const struct lu_buf *buf,
2898                                   struct thandle *th)
2899 {
2900         struct lod_layout_component     *lod_comp;
2901         struct lod_thread_info  *info = lod_env_info(env);
2902         struct lod_device       *d = lu2lod_dev(dt->do_lu.lo_dev);
2903         struct lod_object       *lo = lod_dt_obj(dt);
2904         struct lov_comp_md_v1   *comp_v1 = buf->lb_buf;
2905         __u32   magic;
2906         int     i, j, rc;
2907         bool    changed = false;
2908         ENTRY;
2909
2910         /* Please update allowed_lustre_lov macro if op
2911          * groks more values in the future
2912          */
2913         if (strcmp(op, "set.flags") != 0) {
2914                 CDEBUG(D_LAYOUT, "%s: operation (%s) not supported.\n",
2915                        lod2obd(d)->obd_name, op);
2916                 RETURN(-ENOTSUPP);
2917         }
2918
2919         magic = comp_v1->lcm_magic;
2920         if (magic == __swab32(LOV_USER_MAGIC_COMP_V1)) {
2921                 lustre_swab_lov_comp_md_v1(comp_v1);
2922                 magic = comp_v1->lcm_magic;
2923         }
2924
2925         if (magic != LOV_USER_MAGIC_COMP_V1)
2926                 RETURN(-EINVAL);
2927
2928         if (comp_v1->lcm_entry_count == 0) {
2929                 CDEBUG(D_LAYOUT, "%s: entry count is zero.\n",
2930                        lod2obd(d)->obd_name);
2931                 RETURN(-EINVAL);
2932         }
2933
2934         mutex_lock(&lo->ldo_layout_mutex);
2935         for (i = 0; i < comp_v1->lcm_entry_count; i++) {
2936                 __u32 id = comp_v1->lcm_entries[i].lcme_id;
2937                 __u32 flags = comp_v1->lcm_entries[i].lcme_flags;
2938                 __u32 mirror_flag = flags & LCME_MIRROR_FLAGS;
2939                 __u16 mirror_id = mirror_id_of(id);
2940                 bool neg = flags & LCME_FL_NEG;
2941
2942                 if (flags & LCME_FL_INIT) {
2943                         if (changed)
2944                                 lod_striping_free_nolock(env, lo);
2945                         mutex_unlock(&lo->ldo_layout_mutex);
2946                         RETURN(-EINVAL);
2947                 }
2948
2949                 flags &= ~(LCME_MIRROR_FLAGS | LCME_FL_NEG);
2950                 for (j = 0; j < lo->ldo_comp_cnt; j++) {
2951                         lod_comp = &lo->ldo_comp_entries[j];
2952
2953                         /* lfs only put one flag in each entry */
2954                         if ((flags && id != lod_comp->llc_id) ||
2955                             (mirror_flag && mirror_id !=
2956                                             mirror_id_of(lod_comp->llc_id)))
2957                                 continue;
2958
2959                         if (neg) {
2960                                 if (flags)
2961                                         lod_comp->llc_flags &= ~flags;
2962                                 if (mirror_flag)
2963                                         lod_comp->llc_flags &= ~mirror_flag;
2964                         } else {
2965                                 if (flags) {
2966                                         if ((flags & LCME_FL_STALE) &&
2967                                             lod_last_non_stale_mirror(mirror_id,
2968                                                                       lo)) {
2969                                                 mutex_unlock(
2970                                                         &lo->ldo_layout_mutex);
2971                                                 RETURN(-EUCLEAN);
2972                                         }
2973                                         lod_comp->llc_flags |= flags;
2974                                 }
2975                                 if (mirror_flag) {
2976                                         lod_comp->llc_flags |= mirror_flag;
2977                                         if (mirror_flag & LCME_FL_NOSYNC)
2978                                                 lod_comp->llc_timestamp =
2979                                                        ktime_get_real_seconds();
2980                                 }
2981                         }
2982                         changed = true;
2983                 }
2984         }
2985         mutex_unlock(&lo->ldo_layout_mutex);
2986
2987         if (!changed) {
2988                 CDEBUG(D_LAYOUT, "%s: requested component(s) not found.\n",
2989                        lod2obd(d)->obd_name);
2990                 RETURN(-EINVAL);
2991         }
2992
2993         lod_obj_inc_layout_gen(lo);
2994
2995         info->lti_buf.lb_len = lod_comp_md_size(lo, false);
2996         rc = lod_sub_declare_xattr_set(env, dt_object_child(dt), &info->lti_buf,
2997                                        XATTR_NAME_LOV, LU_XATTR_REPLACE, th);
2998         RETURN(rc);
2999 }
3000
3001 /**
3002  * Declare component deletion. The xattr name is XATTR_LUSTRE_LOV.del,
3003  * and the xattr value is a unique component ID or a special lcme_id.
3004  *
3005  * \param[in] env       execution environment
3006  * \param[in] dt        dt_object to be operated on
3007  * \param[in] buf       buffer contains component ID or lcme_id
3008  * \parem[in] th        thandle
3009  *
3010  * \retval      0 on success
3011  * \retval      negative errno on failure
3012  */
3013 static int lod_declare_layout_del(const struct lu_env *env,
3014                                   struct dt_object *dt,
3015                                   const struct lu_buf *buf,
3016                                   struct thandle *th)
3017 {
3018         struct lod_thread_info  *info = lod_env_info(env);
3019         struct dt_object *next = dt_object_child(dt);
3020         struct lod_device *d = lu2lod_dev(dt->do_lu.lo_dev);
3021         struct lod_object *lo = lod_dt_obj(dt);
3022         struct lu_attr *attr = &lod_env_info(env)->lti_attr;
3023         struct lov_comp_md_v1 *comp_v1 = buf->lb_buf;
3024         __u32 magic, id, flags, neg_flags = 0;
3025         int rc, i, j, left;
3026         ENTRY;
3027
3028         LASSERT(lo->ldo_is_composite);
3029
3030         if (lo->ldo_flr_state != LCM_FL_NONE)
3031                 RETURN(-EBUSY);
3032
3033         magic = comp_v1->lcm_magic;
3034         if (magic == __swab32(LOV_USER_MAGIC_COMP_V1)) {
3035                 lustre_swab_lov_comp_md_v1(comp_v1);
3036                 magic = comp_v1->lcm_magic;
3037         }
3038
3039         if (magic != LOV_USER_MAGIC_COMP_V1)
3040                 RETURN(-EINVAL);
3041
3042         id = comp_v1->lcm_entries[0].lcme_id;
3043         flags = comp_v1->lcm_entries[0].lcme_flags;
3044
3045         if (id > LCME_ID_MAX || (flags & ~LCME_KNOWN_FLAGS)) {
3046                 CDEBUG(D_LAYOUT, "%s: invalid component id %#x, flags %#x\n",
3047                        lod2obd(d)->obd_name, id, flags);
3048                 RETURN(-EINVAL);
3049         }
3050
3051         if (id != LCME_ID_INVAL && flags != 0) {
3052                 CDEBUG(D_LAYOUT, "%s: specified both id and flags.\n",
3053                        lod2obd(d)->obd_name);
3054                 RETURN(-EINVAL);
3055         }
3056
3057         if (id == LCME_ID_INVAL && !flags) {
3058                 CDEBUG(D_LAYOUT, "%s: no id or flags specified.\n",
3059                        lod2obd(d)->obd_name);
3060                 RETURN(-EINVAL);
3061         }
3062
3063         if (flags & LCME_FL_NEG) {
3064                 neg_flags = flags & ~LCME_FL_NEG;
3065                 flags = 0;
3066         }
3067
3068         mutex_lock(&lo->ldo_layout_mutex);
3069
3070         left = lo->ldo_comp_cnt;
3071         if (left <= 0) {
3072                 mutex_unlock(&lo->ldo_layout_mutex);
3073                 RETURN(-EINVAL);
3074         }
3075
3076         for (i = (lo->ldo_comp_cnt - 1); i >= 0; i--) {
3077                 struct lod_layout_component *lod_comp;
3078
3079                 lod_comp = &lo->ldo_comp_entries[i];
3080
3081                 if (id != LCME_ID_INVAL && id != lod_comp->llc_id)
3082                         continue;
3083                 else if (flags && !(flags & lod_comp->llc_flags))
3084                         continue;
3085                 else if (neg_flags && (neg_flags & lod_comp->llc_flags))
3086                         continue;
3087
3088                 if (left != (i + 1)) {
3089                         CDEBUG(D_LAYOUT, "%s: this deletion will create "
3090                                "a hole.\n", lod2obd(d)->obd_name);
3091                         mutex_unlock(&lo->ldo_layout_mutex);
3092                         RETURN(-EINVAL);
3093                 }
3094                 left--;
3095
3096                 /* Mark the component as deleted */
3097                 lod_comp->llc_id = LCME_ID_INVAL;
3098
3099                 /* Not instantiated component */
3100                 if (lod_comp->llc_stripe == NULL)
3101                         continue;
3102
3103                 LASSERT(lod_comp->llc_stripe_count > 0);
3104                 for (j = 0; j < lod_comp->llc_stripe_count; j++) {
3105                         struct dt_object *obj = lod_comp->llc_stripe[j];
3106
3107                         if (obj == NULL)
3108                                 continue;
3109                         rc = lod_sub_declare_destroy(env, obj, th);
3110                         if (rc) {
3111                                 mutex_unlock(&lo->ldo_layout_mutex);
3112                                 RETURN(rc);
3113                         }
3114                 }
3115         }
3116
3117         LASSERTF(left >= 0, "left = %d\n", left);
3118         if (left == lo->ldo_comp_cnt) {
3119                 CDEBUG(D_LAYOUT, "%s: requested component id:%#x not found\n",
3120                        lod2obd(d)->obd_name, id);
3121                 mutex_unlock(&lo->ldo_layout_mutex);
3122                 RETURN(-EINVAL);
3123         }
3124
3125         mutex_unlock(&lo->ldo_layout_mutex);
3126
3127         memset(attr, 0, sizeof(*attr));
3128         attr->la_valid = LA_SIZE;
3129         rc = lod_sub_declare_attr_set(env, next, attr, th);
3130         if (rc)
3131                 RETURN(rc);
3132
3133         if (left > 0) {
3134                 info->lti_buf.lb_len = lod_comp_md_size(lo, false);
3135                 rc = lod_sub_declare_xattr_set(env, next, &info->lti_buf,
3136                                                XATTR_NAME_LOV, 0, th);
3137         } else {
3138                 rc = lod_sub_declare_xattr_del(env, next, XATTR_NAME_LOV, th);
3139         }
3140
3141         RETURN(rc);
3142 }
3143
3144 /**
3145  * Declare layout add/set/del operations issued by special xattr names:
3146  *
3147  * XATTR_LUSTRE_LOV.add         add component(s) to existing file
3148  * XATTR_LUSTRE_LOV.del         delete component(s) from existing file
3149  * XATTR_LUSTRE_LOV.set.$field  set specified field of certain component(s)
3150  *
3151  * \param[in] env       execution environment
3152  * \param[in] dt        object
3153  * \param[in] name      name of xattr
3154  * \param[in] buf       lu_buf contains xattr value
3155  * \param[in] th        transaction handle
3156  *
3157  * \retval              0 on success
3158  * \retval              negative if failed
3159  */
3160 static int lod_declare_modify_layout(const struct lu_env *env,
3161                                      struct dt_object *dt,
3162                                      const char *name,
3163                                      const struct lu_buf *buf,
3164                                      struct thandle *th)
3165 {
3166         struct lod_device *d = lu2lod_dev(dt->do_lu.lo_dev);
3167         struct lod_object *lo = lod_dt_obj(dt);
3168         char *op;
3169         int rc, len = strlen(XATTR_LUSTRE_LOV);
3170         ENTRY;
3171
3172         LASSERT(dt_object_exists(dt));
3173
3174         if (strlen(name) <= len || name[len] != '.') {
3175                 CDEBUG(D_LAYOUT, "%s: invalid xattr name: %s\n",
3176                        lod2obd(d)->obd_name, name);
3177                 RETURN(-EINVAL);
3178         }
3179         len++;
3180
3181         rc = lod_striping_load(env, lo);
3182         if (rc)
3183                 GOTO(unlock, rc);
3184
3185         /* the layout to be modified must be a composite layout */
3186         if (!lo->ldo_is_composite) {
3187                 CDEBUG(D_LAYOUT, "%s: object "DFID" isn't a composite file.\n",
3188                        lod2obd(d)->obd_name, PFID(lu_object_fid(&dt->do_lu)));
3189                 GOTO(unlock, rc = -EINVAL);
3190         }
3191
3192         op = (char *)name + len;
3193         if (strcmp(op, "add") == 0) {
3194                 rc = lod_declare_layout_add(env, dt, buf, th);
3195         } else if (strcmp(op, "del") == 0) {
3196                 rc = lod_declare_layout_del(env, dt, buf, th);
3197         } else if (strncmp(op, "set", strlen("set")) == 0) {
3198                 rc = lod_declare_layout_set(env, dt, op, buf, th);
3199         } else  {
3200                 CDEBUG(D_LAYOUT, "%s: unsupported xattr name:%s\n",
3201                        lod2obd(d)->obd_name, name);
3202                 GOTO(unlock, rc = -ENOTSUPP);
3203         }
3204 unlock:
3205         if (rc)
3206                 lod_striping_free(env, lo);
3207
3208         RETURN(rc);
3209 }
3210
3211 /**
3212  * Convert a plain file lov_mds_md to a composite layout.
3213  *
3214  * \param[in,out] info  the thread info::lti_ea_store buffer contains little
3215  *                      endian plain file layout
3216  *
3217  * \retval              0 on success, <0 on failure
3218  */
3219 static int lod_layout_convert(struct lod_thread_info *info)
3220 {
3221         struct lov_mds_md *lmm = info->lti_ea_store;
3222         struct lov_mds_md *lmm_save;
3223         struct lov_comp_md_v1 *lcm;
3224         struct lov_comp_md_entry_v1 *lcme;
3225         size_t size;
3226         __u32 blob_size;
3227         int rc = 0;
3228         ENTRY;
3229
3230         /* realloc buffer to a composite layout which contains one component */
3231         blob_size = lov_mds_md_size(le16_to_cpu(lmm->lmm_stripe_count),
3232                                     le32_to_cpu(lmm->lmm_magic));
3233         size = sizeof(*lcm) + sizeof(*lcme) + blob_size;
3234
3235         OBD_ALLOC_LARGE(lmm_save, blob_size);
3236         if (!lmm_save)
3237                 GOTO(out, rc = -ENOMEM);
3238
3239         memcpy(lmm_save, lmm, blob_size);
3240
3241         if (info->lti_ea_store_size < size) {
3242                 rc = lod_ea_store_resize(info, size);
3243                 if (rc)
3244                         GOTO(out, rc);
3245         }
3246
3247         lcm = info->lti_ea_store;
3248         memset(lcm, 0, sizeof(*lcm) + sizeof(*lcme));
3249         lcm->lcm_magic = cpu_to_le32(LOV_MAGIC_COMP_V1);
3250         lcm->lcm_size = cpu_to_le32(size);
3251         lcm->lcm_layout_gen = cpu_to_le32(le16_to_cpu(
3252                                                 lmm_save->lmm_layout_gen));
3253         lcm->lcm_flags = cpu_to_le16(LCM_FL_NONE);
3254         lcm->lcm_entry_count = cpu_to_le16(1);
3255
3256         lcme = &lcm->lcm_entries[0];
3257         lcme->lcme_flags = cpu_to_le32(LCME_FL_INIT);
3258         lcme->lcme_extent.e_start = 0;
3259         lcme->lcme_extent.e_end = cpu_to_le64(OBD_OBJECT_EOF);
3260         lcme->lcme_offset = cpu_to_le32(sizeof(*lcm) + sizeof(*lcme));
3261         lcme->lcme_size = cpu_to_le32(blob_size);
3262
3263         memcpy((char *)lcm + lcme->lcme_offset, (char *)lmm_save, blob_size);
3264
3265         EXIT;
3266 out:
3267         if (lmm_save)
3268                 OBD_FREE_LARGE(lmm_save, blob_size);
3269         return rc;
3270 }
3271
3272 /**
3273  * Merge layouts to form a mirrored file.
3274  */
3275 static int lod_declare_layout_merge(const struct lu_env *env,
3276                 struct dt_object *dt, const struct lu_buf *mbuf,
3277                 struct thandle *th)
3278 {
3279         struct lod_thread_info *info = lod_env_info(env);
3280         struct lu_attr *layout_attr = &info->lti_layout_attr;
3281         struct lu_buf *buf = &info->lti_buf;
3282         struct lod_object *lo = lod_dt_obj(dt);
3283         struct lov_comp_md_v1 *lcm;
3284         struct lov_comp_md_v1 *cur_lcm;
3285         struct lov_comp_md_v1 *merge_lcm;
3286         struct lov_comp_md_entry_v1 *lcme;
3287         struct lov_mds_md_v1 *lmm;
3288         size_t size = 0;
3289         size_t offset;
3290         __u16 cur_entry_count;
3291         __u16 merge_entry_count;
3292         __u32 id = 0;
3293         __u16 mirror_id = 0;
3294         __u32 mirror_count;
3295         int rc, i;
3296         bool merge_has_dom;
3297
3298         ENTRY;
3299
3300         merge_lcm = mbuf->lb_buf;
3301         if (mbuf->lb_len < sizeof(*merge_lcm))
3302                 RETURN(-EINVAL);
3303
3304         /* must be an existing layout from disk */
3305         if (le32_to_cpu(merge_lcm->lcm_magic) != LOV_MAGIC_COMP_V1)
3306                 RETURN(-EINVAL);
3307
3308         merge_entry_count = le16_to_cpu(merge_lcm->lcm_entry_count);
3309
3310         /* do not allow to merge two mirrored files */
3311         if (le16_to_cpu(merge_lcm->lcm_mirror_count))
3312                 RETURN(-EBUSY);
3313
3314         /* verify the target buffer */
3315         rc = lod_get_lov_ea(env, lo);
3316         if (rc <= 0)
3317                 RETURN(rc ? : -ENODATA);
3318
3319         cur_lcm = info->lti_ea_store;
3320         switch (le32_to_cpu(cur_lcm->lcm_magic)) {
3321         case LOV_MAGIC_V1:
3322         case LOV_MAGIC_V3:
3323                 rc = lod_layout_convert(info);
3324                 break;
3325         case LOV_MAGIC_COMP_V1:
3326         case LOV_MAGIC_SEL:
3327                 rc = 0;
3328                 break;
3329         default:
3330                 rc = -EINVAL;
3331         }
3332         if (rc)
3333                 RETURN(rc);
3334
3335         /* info->lti_ea_store could be reallocated in lod_layout_convert() */
3336         cur_lcm = info->lti_ea_store;
3337         cur_entry_count = le16_to_cpu(cur_lcm->lcm_entry_count);
3338
3339         /* 'lcm_mirror_count + 1' is the current # of mirrors the file has */
3340         mirror_count = le16_to_cpu(cur_lcm->lcm_mirror_count) + 1;
3341         if (mirror_count + 1 > LUSTRE_MIRROR_COUNT_MAX)
3342                 RETURN(-ERANGE);
3343
3344         /* size of new layout */
3345         size = le32_to_cpu(cur_lcm->lcm_size) +
3346                le32_to_cpu(merge_lcm->lcm_size) - sizeof(*cur_lcm);
3347
3348         memset(buf, 0, sizeof(*buf));
3349         lu_buf_alloc(buf, size);
3350         if (buf->lb_buf == NULL)
3351                 RETURN(-ENOMEM);
3352
3353         lcm = buf->lb_buf;
3354         memcpy(lcm, cur_lcm, sizeof(*lcm) + cur_entry_count * sizeof(*lcme));
3355
3356         offset = sizeof(*lcm) +
3357                  sizeof(*lcme) * (cur_entry_count + merge_entry_count);
3358         for (i = 0; i < cur_entry_count; i++) {
3359                 struct lov_comp_md_entry_v1 *cur_lcme;
3360
3361                 lcme = &lcm->lcm_entries[i];
3362                 cur_lcme = &cur_lcm->lcm_entries[i];
3363
3364                 lcme->lcme_offset = cpu_to_le32(offset);
3365                 memcpy((char *)lcm + offset,
3366                        (char *)cur_lcm + le32_to_cpu(cur_lcme->lcme_offset),
3367                        le32_to_cpu(lcme->lcme_size));
3368
3369                 offset += le32_to_cpu(lcme->lcme_size);
3370
3371                 if (mirror_count == 1 &&
3372                     mirror_id_of(le32_to_cpu(lcme->lcme_id)) == 0) {
3373                         /* Add mirror from a non-flr file, create new mirror ID.
3374                          * Otherwise, keep existing mirror's component ID, used
3375                          * for mirror extension.
3376                          */
3377                         id = pflr_id(1, i + 1);
3378                         lcme->lcme_id = cpu_to_le32(id);
3379                 }
3380
3381                 id = max(le32_to_cpu(lcme->lcme_id), id);
3382         }
3383
3384         mirror_id = mirror_id_of(id) + 1;
3385
3386         /* check if first entry in new layout is DOM */
3387         lmm = (struct lov_mds_md_v1 *)((char *)merge_lcm +
3388                                         merge_lcm->lcm_entries[0].lcme_offset);
3389         merge_has_dom = lov_pattern(le32_to_cpu(lmm->lmm_pattern)) ==
3390                         LOV_PATTERN_MDT;
3391
3392         for (i = 0; i < merge_entry_count; i++) {
3393                 struct lov_comp_md_entry_v1 *merge_lcme;
3394
3395                 merge_lcme = &merge_lcm->lcm_entries[i];
3396                 lcme = &lcm->lcm_entries[cur_entry_count + i];
3397
3398                 *lcme = *merge_lcme;
3399                 lcme->lcme_offset = cpu_to_le32(offset);
3400                 if (merge_has_dom && i == 0)
3401                         lcme->lcme_flags |= cpu_to_le32(LCME_FL_STALE);
3402
3403                 id = pflr_id(mirror_id, i + 1);
3404                 lcme->lcme_id = cpu_to_le32(id);
3405
3406                 memcpy((char *)lcm + offset,
3407                        (char *)merge_lcm + le32_to_cpu(merge_lcme->lcme_offset),
3408                        le32_to_cpu(lcme->lcme_size));
3409
3410                 offset += le32_to_cpu(lcme->lcme_size);
3411         }
3412
3413         /* fixup layout information */
3414         lcm->lcm_size = cpu_to_le32(size);
3415         lcm->lcm_entry_count = cpu_to_le16(cur_entry_count + merge_entry_count);
3416         lcm->lcm_mirror_count = cpu_to_le16(mirror_count);
3417         if ((le16_to_cpu(lcm->lcm_flags) & LCM_FL_FLR_MASK) == LCM_FL_NONE)
3418                 lcm->lcm_flags = cpu_to_le32(LCM_FL_RDONLY);
3419
3420         rc = lod_striping_reload(env, lo, buf, 0);
3421         if (rc)
3422                 GOTO(out, rc);
3423
3424         lod_obj_inc_layout_gen(lo);
3425         lcm->lcm_layout_gen = cpu_to_le32(lo->ldo_layout_gen);
3426
3427         /* transfer layout version to OST objects. */
3428         if (lo->ldo_mirror_count > 1) {
3429                 struct lod_obj_stripe_cb_data data = { {0} };
3430
3431                 layout_attr->la_valid = LA_LAYOUT_VERSION;
3432                 layout_attr->la_layout_version = 0;
3433                 data.locd_attr = layout_attr;
3434                 data.locd_declare = true;
3435                 data.locd_stripe_cb = lod_obj_stripe_attr_set_cb;
3436                 rc = lod_obj_for_each_stripe(env, lo, th, &data);
3437                 if (rc)
3438                         GOTO(out, rc);
3439         }
3440
3441         rc = lod_sub_declare_xattr_set(env, dt_object_child(dt), buf,
3442                                         XATTR_NAME_LOV, LU_XATTR_REPLACE, th);
3443
3444 out:
3445         lu_buf_free(buf);
3446         RETURN(rc);
3447 }
3448
3449 /**
3450  * Split layouts, just set the LOVEA with the layout from mbuf.
3451  */
3452 static int lod_declare_layout_split(const struct lu_env *env,
3453                 struct dt_object *dt, const struct lu_buf *mbuf,
3454                 struct thandle *th)
3455 {
3456         struct lod_thread_info *info = lod_env_info(env);
3457         struct lu_attr *layout_attr = &info->lti_layout_attr;
3458         struct lod_object *lo = lod_dt_obj(dt);
3459         struct lov_comp_md_v1 *lcm = mbuf->lb_buf;
3460         int rc;
3461         ENTRY;
3462
3463         rc = lod_striping_reload(env, lo, mbuf, LVF_ALL_STALE);
3464         if (rc)
3465                 RETURN(rc);
3466
3467         lod_obj_inc_layout_gen(lo);
3468         /* fix on-disk layout gen */
3469         lcm->lcm_layout_gen = cpu_to_le32(lo->ldo_layout_gen);
3470
3471
3472         /* transfer layout version to OST objects. */
3473         if (lo->ldo_mirror_count > 1) {
3474                 struct lod_obj_stripe_cb_data data = { {0} };
3475
3476                 layout_attr->la_valid = LA_LAYOUT_VERSION;
3477                 layout_attr->la_layout_version = 0;
3478                 data.locd_attr = layout_attr;
3479                 data.locd_declare = true;
3480                 data.locd_stripe_cb = lod_obj_stripe_attr_set_cb;
3481                 rc = lod_obj_for_each_stripe(env, lo, th, &data);
3482                 if (rc)
3483                         RETURN(rc);
3484         }
3485
3486         rc = lod_sub_declare_xattr_set(env, dt_object_child(dt), mbuf,
3487                                        XATTR_NAME_LOV, LU_XATTR_REPLACE, th);
3488         RETURN(rc);
3489 }
3490
3491 static int lod_layout_declare_or_purge_mirror(const struct lu_env *env,
3492                         struct dt_object *dt, const struct lu_buf *buf,
3493                         struct thandle *th, bool declare)
3494 {
3495         struct lod_thread_info *info = lod_env_info(env);
3496         struct lod_device *d = lu2lod_dev(dt->do_lu.lo_dev);
3497         struct lod_object *lo = lod_dt_obj(dt);
3498         struct lov_comp_md_v1 *comp_v1 = buf->lb_buf;
3499         struct lov_comp_md_entry_v1 *entry;
3500         struct lov_mds_md_v1 *lmm;
3501         struct dt_object **sub_objs = NULL;
3502         int rc = 0, i, k, array_count = 0;
3503
3504         ENTRY;
3505
3506         /**
3507          * other ops (like lod_declare_destroy) could destroying sub objects
3508          * as well.
3509          */
3510         mutex_lock(&lo->ldo_layout_mutex);
3511
3512         if (!declare) {
3513                 /* prepare sub-objects array */
3514                 for (i = 0; i < comp_v1->lcm_entry_count; i++) {
3515                         entry = &comp_v1->lcm_entries[i];
3516
3517                         if (!(entry->lcme_flags & LCME_FL_INIT))
3518                                 continue;
3519
3520                         lmm = (struct lov_mds_md_v1 *)
3521                                         ((char *)comp_v1 + entry->lcme_offset);
3522                         array_count += lmm->lmm_stripe_count;
3523                 }
3524                 OBD_ALLOC_PTR_ARRAY(sub_objs, array_count);
3525                 if (sub_objs == NULL) {
3526                         mutex_unlock(&lo->ldo_layout_mutex);
3527                         RETURN(-ENOMEM);
3528                 }
3529         }
3530
3531         k = 0;  /* sub_objs index */
3532         for (i = 0; i < comp_v1->lcm_entry_count; i++) {
3533                 struct lov_ost_data_v1 *objs;
3534                 struct lu_object *o, *n;
3535                 struct dt_object *dto;
3536                 struct lu_device *nd;
3537                 struct lov_mds_md_v3 *v3;
3538                 __u32 idx;
3539                 int j;
3540
3541                 entry = &comp_v1->lcm_entries[i];
3542
3543                 if (!(entry->lcme_flags & LCME_FL_INIT))
3544                         continue;
3545
3546                 lmm = (struct lov_mds_md_v1 *)
3547                                 ((char *)comp_v1 + entry->lcme_offset);
3548                 v3 = (struct lov_mds_md_v3 *)lmm;
3549                 if (lmm->lmm_magic == LOV_MAGIC_V3)
3550                         objs = &v3->lmm_objects[0];
3551                 else
3552                         objs = &lmm->lmm_objects[0];
3553
3554                 for (j = 0; j < lmm->lmm_stripe_count; j++) {
3555                         idx = objs[j].l_ost_idx;
3556                         rc = ostid_to_fid(&info->lti_fid, &objs[j].l_ost_oi,
3557                                           idx);
3558                         if (rc)
3559                                 GOTO(out, rc);
3560
3561                         if (!fid_is_sane(&info->lti_fid)) {
3562                                 CERROR("%s: sub-object insane fid "DFID"\n",
3563                                        lod2obd(d)->obd_name,
3564                                        PFID(&info->lti_fid));
3565                                 GOTO(out, rc = -EINVAL);
3566                         }
3567
3568                         lod_getref(&d->lod_ost_descs);
3569
3570                         rc = validate_lod_and_idx(d, idx);
3571                         if (unlikely(rc)) {
3572                                 lod_putref(d, &d->lod_ost_descs);
3573                                 GOTO(out, rc);
3574                         }
3575
3576                         nd = &OST_TGT(d, idx)->ltd_tgt->dd_lu_dev;
3577                         lod_putref(d, &d->lod_ost_descs);
3578
3579                         o = lu_object_find_at(env, nd, &info->lti_fid, NULL);
3580                         if (IS_ERR(o))
3581                                 GOTO(out, rc = PTR_ERR(o));
3582
3583                         n = lu_object_locate(o->lo_header, nd->ld_type);
3584                         if (unlikely(!n)) {
3585                                 lu_object_put(env, n);
3586                                 GOTO(out, rc = -ENOENT);
3587                         }
3588
3589                         dto = container_of(n, struct dt_object, do_lu);
3590
3591                         if (declare) {
3592                                 rc = lod_sub_declare_destroy(env, dto, th);
3593                                 dt_object_put(env, dto);
3594                                 if (rc)
3595                                         GOTO(out, rc);
3596                         } else {
3597                                 /**
3598                                  * collect to-be-destroyed sub objects, the
3599                                  * reference would be released after actual
3600                                  * deletion.
3601                                  */
3602                                 sub_objs[k] = dto;
3603                                 k++;
3604                         }
3605                 } /* for each stripe */
3606         } /* for each component in the mirror */
3607 out:
3608         if (!declare) {
3609                 i = 0;
3610                 if (!rc) {
3611                         /* destroy the sub objects */
3612                         for (; i < k; i++) {
3613                                 rc = lod_sub_destroy(env, sub_objs[i], th);
3614                                 if (rc)
3615                                         break;
3616                                 dt_object_put(env, sub_objs[i]);
3617                         }
3618                 }
3619                 /**
3620                  * if a sub object destroy failed, we'd release sub objects
3621                  * reference get from above sub_objs collection.
3622                  */
3623                 for (; i < k; i++)
3624                         dt_object_put(env, sub_objs[i]);
3625
3626                 OBD_FREE_PTR_ARRAY(sub_objs, array_count);
3627         }
3628         mutex_unlock(&lo->ldo_layout_mutex);
3629
3630         RETURN(rc);
3631 }
3632
3633 /**
3634  * Purge layouts, delete sub objects in the mirror stored in the vic_buf,
3635  * and set the LOVEA with the layout from mbuf.
3636  */
3637 static int lod_declare_layout_purge(const struct lu_env *env,
3638                 struct dt_object *dt, const struct lu_buf *buf,
3639                 struct thandle *th)
3640 {
3641         struct lod_device *d = lu2lod_dev(dt->do_lu.lo_dev);
3642         struct lov_comp_md_v1 *comp_v1 = buf->lb_buf;
3643         int rc;
3644
3645         ENTRY;
3646
3647         if (le32_to_cpu(comp_v1->lcm_magic) != LOV_MAGIC_COMP_V1) {
3648                 CERROR("%s: invalid layout magic %#x != %#x\n",
3649                        lod2obd(d)->obd_name, le32_to_cpu(comp_v1->lcm_magic),
3650                        LOV_MAGIC_COMP_V1);
3651                 RETURN(-EINVAL);
3652         }
3653
3654         if (cpu_to_le32(LOV_MAGIC_COMP_V1) != LOV_MAGIC_COMP_V1)
3655                 lustre_swab_lov_comp_md_v1(comp_v1);
3656
3657         /* from now on, @buf contains cpu endian data */
3658
3659         if (comp_v1->lcm_mirror_count != 0) {
3660                 CERROR("%s: can only purge one mirror from "DFID"\n",
3661                        lod2obd(d)->obd_name, PFID(lu_object_fid(&dt->do_lu)));
3662                 RETURN(-EINVAL);
3663         }
3664
3665         /* delcare sub objects deletion in the mirror stored in @buf */
3666         rc = lod_layout_declare_or_purge_mirror(env, dt, buf, th, true);
3667         RETURN(rc);
3668 }
3669
3670 /* delete sub objects from the mirror stored in @buf */
3671 static int lod_layout_purge(const struct lu_env *env, struct dt_object *dt,
3672                             const struct lu_buf *buf, struct thandle *th)
3673 {
3674         int rc;
3675
3676         ENTRY;
3677         rc = lod_layout_declare_or_purge_mirror(env, dt, buf, th, false);
3678         RETURN(rc);
3679 }
3680
3681 /**
3682  * Implementation of dt_object_operations::do_declare_xattr_set.
3683  *
3684  * \see dt_object_operations::do_declare_xattr_set() in the API description
3685  * for details.
3686  *
3687  * the extension to the API:
3688  *   - declaring LOVEA requests striping creation
3689  *   - LU_XATTR_REPLACE means layout swap
3690  */
3691 static int lod_declare_xattr_set(const struct lu_env *env,
3692                                  struct dt_object *dt,
3693                                  const struct lu_buf *buf,
3694                                  const char *name, int fl,
3695                                  struct thandle *th)
3696 {
3697         struct dt_object *next = dt_object_child(dt);
3698         struct lu_attr   *attr = &lod_env_info(env)->lti_attr;
3699         __u32             mode;
3700         int               rc;
3701         ENTRY;
3702
3703         mode = dt->do_lu.lo_header->loh_attr & S_IFMT;
3704         if ((S_ISREG(mode) || mode == 0) &&
3705             !(fl & (LU_XATTR_REPLACE | LU_XATTR_MERGE | LU_XATTR_SPLIT |
3706                     LU_XATTR_PURGE)) &&
3707             (strcmp(name, XATTR_NAME_LOV) == 0 ||
3708              strcmp(name, XATTR_LUSTRE_LOV) == 0)) {
3709                 /*
3710                  * this is a request to create object's striping.
3711                  *
3712                  * allow to declare predefined striping on a new (!mode) object
3713                  * which is supposed to be replay of regular file creation
3714                  * (when LOV setting is declared)
3715                  *
3716                  * LU_XATTR_REPLACE is set to indicate a layout swap
3717                  */
3718                 if (dt_object_exists(dt)) {
3719                         rc = dt_attr_get(env, next, attr);
3720                         if (rc)
3721                                 RETURN(rc);
3722                 } else {
3723                         memset(attr, 0, sizeof(*attr));
3724                         attr->la_valid = LA_TYPE | LA_MODE;
3725                         attr->la_mode = S_IFREG;
3726                 }
3727                 rc = lod_declare_striped_create(env, dt, attr, buf, th);
3728         } else if (fl & LU_XATTR_MERGE) {
3729                 LASSERT(strcmp(name, XATTR_NAME_LOV) == 0 ||
3730                         strcmp(name, XATTR_LUSTRE_LOV) == 0);
3731                 rc = lod_declare_layout_merge(env, dt, buf, th);
3732         } else if (fl & LU_XATTR_SPLIT) {
3733                 LASSERT(strcmp(name, XATTR_NAME_LOV) == 0 ||
3734                         strcmp(name, XATTR_LUSTRE_LOV) == 0);
3735                 rc = lod_declare_layout_split(env, dt, buf, th);
3736         } else if (fl & LU_XATTR_PURGE) {
3737                 LASSERT(strcmp(name, XATTR_NAME_LOV) == 0 ||
3738                         strcmp(name, XATTR_LUSTRE_LOV) == 0);
3739                 rc = lod_declare_layout_purge(env, dt, buf, th);
3740         } else if (S_ISREG(mode) &&
3741                    strlen(name) >= sizeof(XATTR_LUSTRE_LOV) + 3 &&
3742                    allowed_lustre_lov(name)) {
3743                 /*
3744                  * this is a request to modify object's striping.
3745                  * add/set/del component(s).
3746                  */
3747                 if (!dt_object_exists(dt))
3748                         RETURN(-ENOENT);
3749
3750                 rc = lod_declare_modify_layout(env, dt, name, buf, th);
3751         } else if (S_ISDIR(mode)) {
3752                 rc = lod_dir_declare_xattr_set(env, dt, buf, name, fl, th);
3753         } else if (strcmp(name, XATTR_NAME_FID) == 0) {
3754                 rc = lod_replace_parent_fid(env, dt, buf, th, true);
3755         } else {
3756                 rc = lod_sub_declare_xattr_set(env, next, buf, name, fl, th);
3757         }
3758
3759         RETURN(rc);
3760 }
3761
3762 /**
3763  * Apply xattr changes to the object.
3764  *
3765  * Applies xattr changes to the object and the stripes if the latter exist.
3766  *
3767  * \param[in] env       execution environment
3768  * \param[in] dt        object
3769  * \param[in] buf       buffer pointing to the new value of xattr
3770  * \param[in] name      name of xattr
3771  * \param[in] fl        flags
3772  * \param[in] th        transaction handle
3773  *
3774  * \retval              0 on success
3775  * \retval              negative if failed
3776  */
3777 static int lod_xattr_set_internal(const struct lu_env *env,
3778                                   struct dt_object *dt,
3779                                   const struct lu_buf *buf,
3780                                   const char *name, int fl,
3781                                   struct thandle *th)
3782 {
3783         struct dt_object        *next = dt_object_child(dt);
3784         struct lod_object       *lo = lod_dt_obj(dt);
3785         int                     rc;
3786         int                     i;
3787         ENTRY;
3788
3789         rc = lod_sub_xattr_set(env, next, buf, name, fl, th);
3790         if (rc != 0 || !S_ISDIR(dt->do_lu.lo_header->loh_attr))
3791                 RETURN(rc);
3792
3793         /* Note: Do not set LinkEA on sub-stripes, otherwise
3794          * it will confuse the fid2path process(see mdt_path_current()).
3795          * The linkEA between master and sub-stripes is set in
3796          * lod_xattr_set_lmv(). */
3797         if (lo->ldo_dir_stripe_count == 0 || strcmp(name, XATTR_NAME_LINK) == 0)
3798                 RETURN(0);
3799
3800         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
3801                 if (!lo->ldo_stripe[i])
3802                         continue;
3803
3804                 if (!dt_object_exists(lo->ldo_stripe[i]))
3805                         continue;
3806
3807                 rc = lod_sub_xattr_set(env, lo->ldo_stripe[i], buf, name,
3808                                        fl, th);
3809                 if (rc != 0)
3810                         break;
3811         }
3812
3813         RETURN(rc);
3814 }
3815
3816 /**
3817  * Delete an extended attribute.
3818  *
3819  * Deletes specified xattr from the object and the stripes if the latter exist.
3820  *
3821  * \param[in] env       execution environment
3822  * \param[in] dt        object
3823  * \param[in] name      name of xattr
3824  * \param[in] th        transaction handle
3825  *
3826  * \retval              0 on success
3827  * \retval              negative if failed
3828  */
3829 static int lod_xattr_del_internal(const struct lu_env *env,
3830                                   struct dt_object *dt,
3831                                   const char *name, struct thandle *th)
3832 {
3833         struct dt_object *next = dt_object_child(dt);
3834         struct lod_object *lo = lod_dt_obj(dt);
3835         int i;
3836         int rc;
3837
3838         ENTRY;
3839
3840         rc = lod_sub_xattr_del(env, next, name, th);
3841         if (rc != 0 || !S_ISDIR(dt->do_lu.lo_header->loh_attr))
3842                 RETURN(rc);
3843
3844         if (lo->ldo_dir_stripe_count == 0)
3845                 RETURN(rc);
3846
3847         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
3848                 if (!lo->ldo_stripe[i])
3849                         continue;
3850
3851                 if (!dt_object_exists(lo->ldo_stripe[i]))
3852                         continue;
3853
3854                 rc = lod_sub_xattr_del(env, lo->ldo_stripe[i], name, th);
3855                 if (rc != 0)
3856                         break;
3857         }
3858
3859         RETURN(rc);
3860 }
3861
3862 /**
3863  * Set default striping on a directory.
3864  *
3865  * Sets specified striping on a directory object unless it matches the default
3866  * striping (LOVEA_DELETE_VALUES() macro). In the latter case remove existing
3867  * EA. This striping will be used when regular file is being created in this
3868  * directory.
3869  *
3870  * \param[in] env       execution environment
3871  * \param[in] dt        the striped object
3872  * \param[in] buf       buffer with the striping
3873  * \param[in] name      name of EA
3874  * \param[in] fl        xattr flag (see OSD API description)
3875  * \param[in] th        transaction handle
3876  *
3877  * \retval              0 on success
3878  * \retval              negative if failed
3879  */
3880 static int lod_xattr_set_lov_on_dir(const struct lu_env *env,
3881                                     struct dt_object *dt,
3882                                     const struct lu_buf *buf,
3883                                     const char *name, int fl,
3884                                     struct thandle *th)
3885 {
3886         struct lov_user_md_v1   *lum;
3887         struct lov_user_md_v3   *v3 = NULL;
3888         const char              *pool_name = NULL;
3889         int                      rc;
3890         bool                     is_del;
3891         ENTRY;
3892
3893         LASSERT(buf != NULL && buf->lb_buf != NULL);
3894         lum = buf->lb_buf;
3895
3896         switch (lum->lmm_magic) {
3897         case LOV_USER_MAGIC_SPECIFIC:
3898         case LOV_USER_MAGIC_V3:
3899                 v3 = buf->lb_buf;
3900                 if (v3->lmm_pool_name[0] != '\0')
3901                         pool_name = v3->lmm_pool_name;
3902                 /* fall through */
3903         case LOV_USER_MAGIC_V1:
3904                 /* if { size, offset, count } = { 0, -1, 0 } and no pool
3905                  * (i.e. all default values specified) then delete default
3906                  * striping from dir. */
3907                 CDEBUG(D_LAYOUT,
3908                        "set default striping: sz %u # %u offset %d %s %s\n",
3909                        (unsigned)lum->lmm_stripe_size,
3910                        (unsigned)lum->lmm_stripe_count,
3911                        (int)lum->lmm_stripe_offset,
3912                        v3 ? "from" : "", v3 ? v3->lmm_pool_name : "");
3913
3914                 is_del = LOVEA_DELETE_VALUES(lum->lmm_stripe_size,
3915                                              lum->lmm_stripe_count,
3916                                              lum->lmm_stripe_offset,
3917                                              pool_name);
3918                 break;
3919         case LOV_USER_MAGIC_COMP_V1:
3920         {
3921                 struct lov_comp_md_v1 *lcm = (struct lov_comp_md_v1 *)lum;
3922                 struct lov_comp_md_entry_v1 *lcme;
3923                 int i, comp_cnt;
3924
3925                 comp_cnt = le16_to_cpu(lcm->lcm_entry_count);
3926                 for (i = 0; i < comp_cnt; i++) {
3927                         lcme = &lcm->lcm_entries[i];
3928                         if (lcme->lcme_flags & cpu_to_le32(LCME_FL_EXTENSION)) {
3929                                 lcm->lcm_magic = cpu_to_le32(LOV_MAGIC_SEL);
3930                                 break;
3931                         }
3932                 }
3933
3934                 is_del = false;
3935                 break;
3936         }
3937         default:
3938                 CERROR("Invalid magic %x\n", lum->lmm_magic);
3939                 RETURN(-EINVAL);
3940         }
3941
3942         if (is_del) {
3943                 rc = lod_xattr_del_internal(env, dt, name, th);
3944                 if (rc == -ENODATA)
3945                         rc = 0;
3946         } else {
3947                 rc = lod_xattr_set_internal(env, dt, buf, name, fl, th);
3948         }
3949
3950         RETURN(rc);
3951 }
3952
3953 /**
3954  * Set default striping on a directory object.
3955  *
3956  * Sets specified striping on a directory object unless it matches the default
3957  * striping (LOVEA_DELETE_VALUES() macro). In the latter case remove existing
3958  * EA. This striping will be used when a new directory is being created in the
3959  * directory.
3960  *
3961  * \param[in] env       execution environment
3962  * \param[in] dt        the striped object
3963  * \param[in] buf       buffer with the striping
3964  * \param[in] name      name of EA
3965  * \param[in] fl        xattr flag (see OSD API description)
3966  * \param[in] th        transaction handle
3967  *
3968  * \retval              0 on success
3969  * \retval              negative if failed
3970  */
3971 static int lod_xattr_set_default_lmv_on_dir(const struct lu_env *env,
3972                                             struct dt_object *dt,
3973                                             const struct lu_buf *buf,
3974                                             const char *name, int fl,
3975                                             struct thandle *th)
3976 {
3977         struct lmv_user_md_v1 *lum;
3978         int rc;
3979
3980         ENTRY;
3981
3982         LASSERT(buf != NULL && buf->lb_buf != NULL);
3983         lum = buf->lb_buf;
3984
3985         CDEBUG(D_INFO,
3986                "set default stripe_count # %u stripe_offset %d hash %u\n",
3987               le32_to_cpu(lum->lum_stripe_count),
3988               (int)le32_to_cpu(lum->lum_stripe_offset),
3989               le32_to_cpu(lum->lum_hash_type));
3990
3991         if (LMVEA_DELETE_VALUES((le32_to_cpu(lum->lum_stripe_count)),
3992                                  le32_to_cpu(lum->lum_stripe_offset)) &&
3993             le32_to_cpu(lum->lum_magic) == LMV_USER_MAGIC) {
3994                 rc = lod_xattr_del_internal(env, dt, name, th);
3995                 if (rc == -ENODATA)
3996                         rc = 0;
3997         } else {
3998                 rc = lod_xattr_set_internal(env, dt, buf, name, fl, th);
3999                 if (rc != 0)
4000                         RETURN(rc);
4001         }
4002
4003         RETURN(rc);
4004 }
4005
4006 /**
4007  * Turn directory into a striped directory.
4008  *
4009  * During replay the client sends the striping created before MDT
4010  * failure, then the layer above LOD sends this defined striping
4011  * using ->do_xattr_set(), so LOD uses this method to replay creation
4012  * of the stripes. Notice the original information for the striping
4013  * (#stripes, FIDs, etc) was transferred in declare path.
4014  *
4015  * \param[in] env       execution environment
4016  * \param[in] dt        the striped object
4017  * \param[in] buf       not used currently
4018  * \param[in] name      not used currently
4019  * \param[in] fl        xattr flag (see OSD API description)
4020  * \param[in] th        transaction handle
4021  *
4022  * \retval              0 on success
4023  * \retval              negative if failed
4024  */
4025 static int lod_xattr_set_lmv(const struct lu_env *env, struct dt_object *dt,
4026                              const struct lu_buf *buf, const char *name,
4027                              int fl, struct thandle *th)
4028 {
4029         struct lod_object       *lo = lod_dt_obj(dt);
4030         struct lod_thread_info  *info = lod_env_info(env);
4031         struct lu_attr          *attr = &info->lti_attr;
4032         struct dt_object_format *dof = &info->lti_format;
4033         struct lu_buf           lmv_buf;
4034         struct lu_buf           slave_lmv_buf;
4035         struct lmv_mds_md_v1    *lmm;
4036         struct lmv_mds_md_v1    *slave_lmm = NULL;
4037         struct dt_insert_rec    *rec = &info->lti_dt_rec;
4038         int                     i;
4039         int                     rc;
4040         ENTRY;
4041
4042         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr))
4043                 RETURN(-ENOTDIR);
4044
4045         /* The stripes are supposed to be allocated in declare phase,
4046          * if there are no stripes being allocated, it will skip */
4047         if (lo->ldo_dir_stripe_count == 0) {
4048                 if (lo->ldo_dir_is_foreign) {
4049                         rc = lod_sub_xattr_set(env, dt_object_child(dt), buf,
4050                                                XATTR_NAME_LMV, fl, th);
4051                         if (rc != 0)
4052                                 RETURN(rc);
4053                 }
4054                 RETURN(0);
4055         }
4056
4057         rc = dt_attr_get(env, dt_object_child(dt), attr);
4058         if (rc != 0)
4059                 RETURN(rc);
4060
4061         attr->la_valid = LA_ATIME | LA_MTIME | LA_CTIME | LA_FLAGS |
4062                          LA_MODE | LA_UID | LA_GID | LA_TYPE | LA_PROJID;
4063         dof->dof_type = DFT_DIR;
4064
4065         rc = lod_prep_lmv_md(env, dt, &lmv_buf);
4066         if (rc != 0)
4067                 RETURN(rc);
4068         lmm = lmv_buf.lb_buf;
4069
4070         OBD_ALLOC_PTR(slave_lmm);
4071         if (slave_lmm == NULL)
4072                 RETURN(-ENOMEM);
4073
4074         lod_prep_slave_lmv_md(slave_lmm, lmm);
4075         slave_lmv_buf.lb_buf = slave_lmm;
4076         slave_lmv_buf.lb_len = sizeof(*slave_lmm);
4077
4078         rec->rec_type = S_IFDIR;
4079         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
4080                 struct dt_object *dto = lo->ldo_stripe[i];
4081                 char *stripe_name = info->lti_key;
4082                 struct lu_name *sname;
4083                 struct linkea_data ldata = { NULL };
4084                 struct lu_buf linkea_buf;
4085
4086                 /* OBD_FAIL_MDS_STRIPE_FID may leave stripe uninitialized */
4087                 if (!dto)
4088                         continue;
4089
4090                 /* fail a remote stripe creation */
4091                 if (i && OBD_FAIL_CHECK(OBD_FAIL_MDS_STRIPE_CREATE))
4092                         continue;
4093
4094                 /* don't create stripe if:
4095                  * 1. it's source stripe of migrating directory
4096                  * 2. it's existed stripe of splitting directory
4097                  */
4098                 if ((lod_is_migrating(lo) && i >= lo->ldo_dir_migrate_offset) ||
4099                     (lod_is_splitting(lo) && i < lo->ldo_dir_split_offset)) {
4100                         if (!dt_object_exists(dto))
4101                                 GOTO(out, rc = -EINVAL);
4102                 } else {
4103                         dt_write_lock(env, dto, DT_TGT_CHILD);
4104                         rc = lod_sub_create(env, dto, attr, NULL, dof, th);
4105                         if (rc != 0) {
4106                                 dt_write_unlock(env, dto);
4107                                 GOTO(out, rc);
4108                         }
4109
4110                         rc = lod_sub_ref_add(env, dto, th);
4111                         dt_write_unlock(env, dto);
4112                         if (rc != 0)
4113                                 GOTO(out, rc);
4114
4115                         rec->rec_fid = lu_object_fid(&dto->do_lu);
4116                         rc = lod_sub_insert(env, dto,
4117                                             (const struct dt_rec *)rec,
4118                                             (const struct dt_key *)dot, th);
4119                         if (rc != 0)
4120                                 GOTO(out, rc);
4121                 }
4122
4123                 if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_SLAVE_LMV) ||
4124                     cfs_fail_val != i) {
4125                         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_LMV) &&
4126                             cfs_fail_val == i)
4127                                 slave_lmm->lmv_master_mdt_index =
4128                                                         cpu_to_le32(i + 1);
4129                         else
4130                                 slave_lmm->lmv_master_mdt_index =
4131                                                         cpu_to_le32(i);
4132
4133                         rc = lod_sub_xattr_set(env, dto, &slave_lmv_buf,
4134                                                XATTR_NAME_LMV, 0, th);
4135                         if (rc != 0)
4136                                 GOTO(out, rc);
4137                 }
4138
4139                 /* don't insert stripe if it's existed stripe of splitting
4140                  * directory (this directory is striped).
4141                  * NB, plain directory will insert itself as the first
4142                  * stripe in target.
4143                  */
4144                 if (lod_is_splitting(lo) && lo->ldo_dir_split_offset > 1 &&
4145                     lo->ldo_dir_split_offset > i)
4146                         continue;
4147
4148                 rec->rec_fid = lu_object_fid(&dt->do_lu);
4149                 rc = lod_sub_insert(env, dto, (struct dt_rec *)rec,
4150                                     (const struct dt_key *)dotdot, th);
4151                 if (rc != 0)
4152                         GOTO(out, rc);
4153
4154                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_NAME) &&
4155                     cfs_fail_val == i)
4156                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
4157                                  PFID(lu_object_fid(&dto->do_lu)), i + 1);
4158                 else
4159                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
4160                                  PFID(lu_object_fid(&dto->do_lu)), i);
4161
4162                 sname = lod_name_get(env, stripe_name, strlen(stripe_name));
4163                 rc = linkea_links_new(&ldata, &info->lti_linkea_buf,
4164                                       sname, lu_object_fid(&dt->do_lu));
4165                 if (rc != 0)
4166                         GOTO(out, rc);
4167
4168                 linkea_buf.lb_buf = ldata.ld_buf->lb_buf;
4169                 linkea_buf.lb_len = ldata.ld_leh->leh_len;
4170                 rc = lod_sub_xattr_set(env, dto, &linkea_buf,
4171                                        XATTR_NAME_LINK, 0, th);
4172                 if (rc != 0)
4173                         GOTO(out, rc);
4174
4175                 rec->rec_fid = lu_object_fid(&dto->do_lu);
4176                 rc = lod_sub_insert(env, dt_object_child(dt),
4177                                     (const struct dt_rec *)rec,
4178                                     (const struct dt_key *)stripe_name, th);
4179                 if (rc != 0)
4180                         GOTO(out, rc);
4181
4182                 rc = lod_sub_ref_add(env, dt_object_child(dt), th);
4183                 if (rc != 0)
4184                         GOTO(out, rc);
4185         }
4186
4187         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MASTER_LMV))
4188                 rc = lod_sub_xattr_set(env, dt_object_child(dt),
4189                                        &lmv_buf, XATTR_NAME_LMV, fl, th);
4190 out:
4191         if (slave_lmm != NULL)
4192                 OBD_FREE_PTR(slave_lmm);
4193
4194         RETURN(rc);
4195 }
4196
4197 /**
4198  * Helper function to declare/execute creation of a striped directory
4199  *
4200  * Called in declare/create object path, prepare striping for a directory
4201  * and prepare defaults data striping for the objects to be created in
4202  * that directory. Notice the function calls "declaration" or "execution"
4203  * methods depending on \a declare param. This is a consequence of the
4204  * current approach while we don't have natural distributed transactions:
4205  * we basically execute non-local updates in the declare phase. So, the
4206  * arguments for the both phases are the same and this is the reason for
4207  * this function to exist.
4208  *
4209  * \param[in] env       execution environment
4210  * \param[in] dt        object
4211  * \param[in] attr      attributes the stripes will be created with
4212  * \param[in] lmu       lmv_user_md if MDT indices are specified
4213  * \param[in] dof       format of stripes (see OSD API description)
4214  * \param[in] th        transaction handle
4215  * \param[in] declare   where to call "declare" or "execute" methods
4216  *
4217  * \retval              0 on success
4218  * \retval              negative if failed
4219  */
4220 static int lod_dir_striping_create_internal(const struct lu_env *env,
4221                                             struct dt_object *dt,
4222                                             struct lu_attr *attr,
4223                                             const struct lu_buf *lmu,
4224                                             struct dt_object_format *dof,
4225                                             struct thandle *th,
4226                                             bool declare)
4227 {
4228         struct lod_thread_info *info = lod_env_info(env);
4229         struct lod_object *lo = lod_dt_obj(dt);
4230         const struct lod_default_striping *lds = lo->ldo_def_striping;
4231         int rc;
4232         ENTRY;
4233
4234         LASSERT(ergo(lds != NULL,
4235                      lds->lds_def_striping_set ||
4236                      lds->lds_dir_def_striping_set));
4237
4238         if (!LMVEA_DELETE_VALUES(lo->ldo_dir_stripe_count,
4239                                  lo->ldo_dir_stripe_offset)) {
4240                 if (!lmu) {
4241                         struct lmv_user_md_v1 *v1 = info->lti_ea_store;
4242                         int stripe_count = lo->ldo_dir_stripe_count;
4243
4244                         if (info->lti_ea_store_size < sizeof(*v1)) {
4245                                 rc = lod_ea_store_resize(info, sizeof(*v1));
4246                                 if (rc != 0)
4247                                         RETURN(rc);
4248                                 v1 = info->lti_ea_store;
4249                         }
4250
4251                         memset(v1, 0, sizeof(*v1));
4252                         v1->lum_magic = cpu_to_le32(LMV_USER_MAGIC);
4253                         v1->lum_stripe_count = cpu_to_le32(stripe_count);
4254                         v1->lum_stripe_offset =
4255                                         cpu_to_le32(lo->ldo_dir_stripe_offset);
4256
4257                         info->lti_buf.lb_buf = v1;
4258                         info->lti_buf.lb_len = sizeof(*v1);
4259                         lmu = &info->lti_buf;
4260                 }
4261
4262                 if (declare)
4263                         rc = lod_declare_xattr_set_lmv(env, dt, attr, lmu, dof,
4264                                                        th);
4265                 else
4266                         rc = lod_xattr_set_lmv(env, dt, lmu, XATTR_NAME_LMV, 0,
4267                                                th);
4268                 if (rc != 0)
4269                         RETURN(rc);
4270         } else {
4271                 /* foreign LMV EA case */
4272                 if (lmu) {
4273                         struct lmv_foreign_md *lfm = lmu->lb_buf;
4274
4275                         if (lfm->lfm_magic == LMV_MAGIC_FOREIGN) {
4276                                 rc = lod_declare_xattr_set_lmv(env, dt, attr,
4277                                                                lmu, dof, th);
4278                         }
4279                 } else {
4280                         if (lo->ldo_dir_is_foreign) {
4281                                 LASSERT(lo->ldo_foreign_lmv != NULL &&
4282                                         lo->ldo_foreign_lmv_size > 0);
4283                                 info->lti_buf.lb_buf = lo->ldo_foreign_lmv;
4284                                 info->lti_buf.lb_len = lo->ldo_foreign_lmv_size;
4285                                 lmu = &info->lti_buf;
4286                                 rc = lod_xattr_set_lmv(env, dt, lmu,
4287                                                        XATTR_NAME_LMV, 0, th);
4288                         }
4289                 }
4290         }
4291
4292         /* Transfer default LMV striping from the parent */
4293         if (lds != NULL && lds->lds_dir_def_striping_set &&
4294             lds->lds_dir_def_max_inherit != LMV_INHERIT_END &&
4295             lds->lds_dir_def_max_inherit != LMV_INHERIT_NONE &&
4296             !(LMVEA_DELETE_VALUES(lds->lds_dir_def_stripe_count,
4297                                  lds->lds_dir_def_stripe_offset) &&
4298               le32_to_cpu(lds->lds_dir_def_hash_type) !=
4299               LMV_HASH_TYPE_UNKNOWN)) {
4300                 struct lmv_user_md_v1 *v1 = info->lti_ea_store;
4301
4302                 if (info->lti_ea_store_size < sizeof(*v1)) {
4303                         rc = lod_ea_store_resize(info, sizeof(*v1));
4304                         if (rc != 0)
4305                                 RETURN(rc);
4306                         v1 = info->lti_ea_store;
4307                 }
4308
4309                 memset(v1, 0, sizeof(*v1));
4310                 v1->lum_magic = cpu_to_le32(LMV_USER_MAGIC);
4311                 v1->lum_stripe_count =
4312                         cpu_to_le32(lds->lds_dir_def_stripe_count);
4313                 v1->lum_stripe_offset =
4314                         cpu_to_le32(lds->lds_dir_def_stripe_offset);
4315                 v1->lum_hash_type =
4316                         cpu_to_le32(lds->lds_dir_def_hash_type);
4317                 v1->lum_max_inherit =
4318                         lmv_inherit_next(lds->lds_dir_def_max_inherit);
4319                 v1->lum_max_inherit_rr =
4320                         lmv_inherit_rr_next(lds->lds_dir_def_max_inherit_rr);
4321
4322                 info->lti_buf.lb_buf = v1;
4323                 info->lti_buf.lb_len = sizeof(*v1);
4324                 if (declare)
4325                         rc = lod_dir_declare_xattr_set(env, dt, &info->lti_buf,
4326                                                        XATTR_NAME_DEFAULT_LMV,
4327                                                        0, th);
4328                 else
4329                         rc = lod_xattr_set_default_lmv_on_dir(env, dt,
4330                                                   &info->lti_buf,
4331                                                   XATTR_NAME_DEFAULT_LMV, 0,
4332                                                   th);
4333                 if (rc != 0)
4334                         RETURN(rc);
4335         }
4336
4337         /* Transfer default LOV striping from the parent */
4338         if (lds != NULL && lds->lds_def_striping_set &&
4339             lds->lds_def_comp_cnt != 0) {
4340                 struct lov_mds_md *lmm;
4341                 int lmm_size = lod_comp_md_size(lo, true);
4342
4343                 if (info->lti_ea_store_size < lmm_size) {
4344                         rc = lod_ea_store_resize(info, lmm_size);
4345                         if (rc != 0)
4346                                 RETURN(rc);
4347                 }
4348                 lmm = info->lti_ea_store;
4349
4350                 rc = lod_generate_lovea(env, lo, lmm, &lmm_size, true);
4351                 if (rc != 0)
4352                         RETURN(rc);
4353
4354                 info->lti_buf.lb_buf = lmm;
4355                 info->lti_buf.lb_len = lmm_size;
4356
4357                 if (declare)
4358                         rc = lod_dir_declare_xattr_set(env, dt, &info->lti_buf,
4359                                                        XATTR_NAME_LOV, 0, th);
4360                 else
4361                         rc = lod_xattr_set_lov_on_dir(env, dt, &info->lti_buf,
4362                                                       XATTR_NAME_LOV, 0, th);
4363                 if (rc != 0)
4364                         RETURN(rc);
4365         }
4366
4367         /* ldo_def_striping is not allocated, clear after use, in case directory
4368          * layout is changed later.
4369          */
4370         if (!declare)
4371                 lo->ldo_def_striping = NULL;
4372
4373         RETURN(0);
4374 }
4375
4376 static int lod_declare_dir_striping_create(const struct lu_env *env,
4377                                            struct dt_object *dt,
4378                                            struct lu_attr *attr,
4379                                            struct lu_buf *lmu,
4380                                            struct dt_object_format *dof,
4381                                            struct thandle *th)
4382 {
4383         return lod_dir_striping_create_internal(env, dt, attr, lmu, dof, th,
4384                                                 true);
4385 }
4386
4387 static int lod_dir_striping_create(const struct lu_env *env,
4388                                    struct dt_object *dt,
4389                                    struct lu_attr *attr,
4390                                    struct dt_object_format *dof,
4391                                    struct thandle *th)
4392 {
4393         return lod_dir_striping_create_internal(env, dt, attr, NULL, dof, th,
4394                                                 false);
4395 }
4396
4397 /**
4398  * Make LOV EA for striped object.
4399  *
4400  * Generate striping information and store it in the LOV EA of the given
4401  * object. The caller must ensure nobody else is calling the function
4402  * against the object concurrently. The transaction must be started.
4403  * FLDB service must be running as well; it's used to map FID to the target,
4404  * which is stored in LOV EA.
4405  *
4406  * \param[in] env               execution environment for this thread
4407  * \param[in] lo                LOD object
4408  * \param[in] th                transaction handle
4409  *
4410  * \retval                      0 if LOV EA is stored successfully
4411  * \retval                      negative error number on failure
4412  */
4413 static int lod_generate_and_set_lovea(const struct lu_env *env,
4414                                       struct lod_object *lo,
4415                                       struct thandle *th)
4416 {
4417         struct lod_thread_info  *info = lod_env_info(env);
4418         struct dt_object        *next = dt_object_child(&lo->ldo_obj);
4419         struct lov_mds_md_v1    *lmm;
4420         int                      rc, lmm_size;
4421         ENTRY;
4422
4423         LASSERT(lo);
4424
4425         if (lo->ldo_comp_cnt == 0 && !lo->ldo_is_foreign) {
4426                 lod_striping_free_nolock(env, lo);
4427                 rc = lod_sub_xattr_del(env, next, XATTR_NAME_LOV, th);
4428                 RETURN(rc);
4429         }
4430
4431         lmm_size = lod_comp_md_size(lo, false);
4432         if (info->lti_ea_store_size < lmm_size) {
4433                 rc = lod_ea_store_resize(info, lmm_size);
4434                 if (rc)
4435                         RETURN(rc);
4436         }
4437         lmm = info->lti_ea_store;
4438
4439         rc = lod_generate_lovea(env, lo, lmm, &lmm_size, false);
4440         if (rc)
4441                 RETURN(rc);
4442
4443         info->lti_buf.lb_buf = lmm;
4444         info->lti_buf.lb_len = lmm_size;
4445         rc = lod_sub_xattr_set(env, next, &info->lti_buf,
4446                                XATTR_NAME_LOV, 0, th);
4447         RETURN(rc);
4448 }
4449
4450 static __u32 lod_gen_component_id(struct lod_object *lo,
4451                                   int mirror_id, int comp_idx);
4452
4453 /**
4454  * Repeat an existing component
4455  *
4456  * Creates a new layout by replicating an existing component.  Uses striping
4457  * policy from previous component as a template for the striping for the new
4458  * new component.
4459  *
4460  * New component starts with zero length, will be extended (or removed) before
4461  * returning layout to client.
4462  *
4463  * NB: Reallocates layout components array (lo->ldo_comp_entries), invalidating
4464  * any pre-existing pointers to components.  Handle with care.
4465  *
4466  * \param[in] env       execution environment for this thread
4467  * \param[in,out] lo    object to update the layout of
4468  * \param[in] index     index of component to copy
4469  *
4470  * \retval      0 on success
4471  * \retval      negative errno on error
4472  */
4473 static int lod_layout_repeat_comp(const struct lu_env *env,
4474                                   struct lod_object *lo, int index)
4475 {
4476         struct lod_layout_component *lod_comp;
4477         struct lod_layout_component *new_comp = NULL;
4478         struct lod_layout_component *comp_array;
4479         int rc = 0, i, new_cnt = lo->ldo_comp_cnt + 1;
4480         __u16 mirror_id;
4481         int offset = 0;
4482         ENTRY;
4483
4484         lod_comp = &lo->ldo_comp_entries[index];
4485         LASSERT(lod_comp_inited(lod_comp) && lod_comp->llc_id != LCME_ID_INVAL);
4486
4487         CDEBUG(D_LAYOUT, "repeating component %d\n", index);
4488
4489         OBD_ALLOC_PTR_ARRAY(comp_array, new_cnt);
4490         if (comp_array == NULL)
4491                 GOTO(out, rc = -ENOMEM);
4492
4493         for (i = 0; i < lo->ldo_comp_cnt; i++) {
4494                 memcpy(&comp_array[i + offset], &lo->ldo_comp_entries[i],
4495                        sizeof(*comp_array));
4496
4497                 /* Duplicate this component in to the next slot */
4498                 if (i == index) {
4499                         new_comp = &comp_array[i + 1];
4500                         memcpy(&comp_array[i + 1], &lo->ldo_comp_entries[i],
4501                                sizeof(*comp_array));
4502                         /* We must now skip this new component when copying */
4503                         offset = 1;
4504                 }
4505         }
4506
4507         /* Set up copied component */
4508         new_comp->llc_flags &= ~LCME_FL_INIT;
4509         new_comp->llc_stripe = NULL;
4510         new_comp->llc_stripes_allocated = 0;
4511         new_comp->llc_ost_indices = NULL;
4512         new_comp->llc_stripe_offset = LOV_OFFSET_DEFAULT;
4513         /* for uninstantiated components, layout gen stores default stripe
4514          * offset */
4515         new_comp->llc_layout_gen = lod_comp->llc_stripe_offset;
4516         /* This makes the repeated component zero-length, placed at the end of
4517          * the preceding component */
4518         new_comp->llc_extent.e_start = new_comp->llc_extent.e_end;
4519         new_comp->llc_timestamp = lod_comp->llc_timestamp;
4520         new_comp->llc_pool = NULL;
4521
4522         rc = lod_set_pool(&new_comp->llc_pool, lod_comp->llc_pool);
4523         if (rc)
4524                 GOTO(out, rc);
4525
4526         if (new_comp->llc_ostlist.op_array) {
4527                 __u32 *op_array = NULL;
4528
4529                 OBD_ALLOC(op_array, new_comp->llc_ostlist.op_size);
4530                 if (!op_array)
4531                         GOTO(out, rc = -ENOMEM);
4532                 memcpy(op_array, &new_comp->llc_ostlist.op_array,
4533                        new_comp->llc_ostlist.op_size);
4534                 new_comp->llc_ostlist.op_array = op_array;
4535         }
4536
4537         OBD_FREE_PTR_ARRAY(lo->ldo_comp_entries, lo->ldo_comp_cnt);
4538         lo->ldo_comp_entries = comp_array;
4539         lo->ldo_comp_cnt = new_cnt;
4540
4541         /* Generate an id for the new component */
4542         mirror_id = mirror_id_of(new_comp->llc_id);
4543         new_comp->llc_id = LCME_ID_INVAL;
4544         new_comp->llc_id = lod_gen_component_id(lo, mirror_id, index + 1);
4545         if (new_comp->llc_id == LCME_ID_INVAL)
4546                 GOTO(out, rc = -ERANGE);
4547
4548         EXIT;
4549 out:
4550         if (rc)
4551                 OBD_FREE_PTR_ARRAY(comp_array, new_cnt);
4552
4553         return rc;
4554 }
4555
4556 static int lod_layout_data_init(struct lod_thread_info *info, __u32 comp_cnt)
4557 {
4558         ENTRY;
4559
4560         /* clear memory region that will be used for layout change */
4561         memset(&info->lti_layout_attr, 0, sizeof(struct lu_attr));
4562         info->lti_count = 0;
4563
4564         if (info->lti_comp_size >= comp_cnt)
4565                 RETURN(0);
4566
4567         if (info->lti_comp_size > 0) {
4568                 OBD_FREE_PTR_ARRAY(info->lti_comp_idx, info->lti_comp_size);
4569                 info->lti_comp_size = 0;
4570         }
4571
4572         OBD_ALLOC_PTR_ARRAY(info->lti_comp_idx, comp_cnt);
4573         if (!info->lti_comp_idx)
4574                 RETURN(-ENOMEM);
4575
4576         info->lti_comp_size = comp_cnt;
4577         RETURN(0);
4578 }
4579
4580 /**
4581  * Prepare new layout minus deleted components
4582  *
4583  * Removes components marked for deletion (LCME_ID_INVAL) by copying to a new
4584  * layout and skipping those components.  Removes stripe objects if any exist.
4585  *
4586  * NB:
4587  * Reallocates layout components array (lo->ldo_comp_entries), invalidating
4588  * any pre-existing pointers to components.
4589  *
4590  * Caller is responsible for updating mirror end (ldo_mirror[].lme_end).
4591  *
4592  * \param[in] env       execution environment for this thread
4593  * \param[in,out] lo    object to update the layout of
4594  * \param[in] th        transaction handle for this operation
4595  *
4596  * \retval      # of components deleted
4597  * \retval      negative errno on error
4598  */
4599 static int lod_layout_del_prep_layout(const struct lu_env *env,
4600                                       struct lod_object *lo,
4601                                       struct thandle *th)
4602 {
4603         struct lod_layout_component     *lod_comp;
4604         struct lod_thread_info  *info = lod_env_info(env);
4605         int rc = 0, i, j, deleted = 0;
4606
4607         ENTRY;
4608
4609         LASSERT(lo->ldo_is_composite);
4610         LASSERT(lo->ldo_comp_cnt > 0 && lo->ldo_comp_entries != NULL);
4611
4612         rc = lod_layout_data_init(info, lo->ldo_comp_cnt);
4613         if (rc)
4614                 RETURN(rc);
4615
4616         for (i = 0; i < lo->ldo_comp_cnt; i++) {
4617                 lod_comp = &lo->ldo_comp_entries[i];
4618
4619                 if (lod_comp->llc_id != LCME_ID_INVAL) {
4620                         /* Build array of things to keep */
4621                         info->lti_comp_idx[info->lti_count++] = i;
4622                         continue;
4623                 }
4624
4625                 lod_obj_set_pool(lo, i, NULL);
4626                 if (lod_comp->llc_ostlist.op_array) {
4627                         OBD_FREE(lod_comp->llc_ostlist.op_array,
4628                                  lod_comp->llc_ostlist.op_size);
4629                         lod_comp->llc_ostlist.op_array = NULL;
4630                         lod_comp->llc_ostlist.op_size = 0;
4631                 }
4632
4633                 deleted++;
4634                 CDEBUG(D_LAYOUT, "deleting comp %d, left %d\n", i,
4635                        lo->ldo_comp_cnt - deleted);
4636
4637                 /* No striping info for this component */
4638                 if (lod_comp->llc_stripe == NULL)
4639                         continue;
4640
4641                 LASSERT(lod_comp->llc_stripe_count > 0);
4642                 for (j = 0; j < lod_comp->llc_stripe_count; j++) {
4643                         struct dt_object *obj = lod_comp->llc_stripe[j];
4644
4645                         if (obj == NULL)
4646                                 continue;
4647
4648                         /* components which are not init have no sub objects
4649                          * to destroy */
4650                         if (lod_comp_inited(lod_comp)) {
4651                                 rc = lod_sub_destroy(env, obj, th);
4652                                 if (rc)
4653                                         GOTO(out, rc);
4654                         }
4655
4656                         lu_object_put(env, &obj->do_lu);
4657                         lod_comp->llc_stripe[j] = NULL;
4658                 }
4659                 OBD_FREE_PTR_ARRAY(lod_comp->llc_stripe,
4660                                    lod_comp->llc_stripes_allocated);
4661                 lod_comp->llc_stripe = NULL;
4662                 OBD_FREE_PTR_ARRAY(lod_comp->llc_ost_indices,
4663                                    lod_comp->llc_stripes_allocated);
4664                 lod_comp->llc_ost_indices = NULL;
4665                 lod_comp->llc_stripes_allocated = 0;
4666         }
4667
4668         /* info->lti_count has the amount of left components */
4669         LASSERTF(info->lti_count >= 0 && info->lti_count < lo->ldo_comp_cnt,
4670                  "left = %d, lo->ldo_comp_cnt %d\n", (int)info->lti_count,
4671                  (int)lo->ldo_comp_cnt);
4672
4673         if (info->lti_count > 0) {
4674                 struct lod_layout_component *comp_array;
4675
4676                 OBD_ALLOC_PTR_ARRAY(comp_array, info->lti_count);
4677                 if (comp_array == NULL)
4678                         GOTO(out, rc = -ENOMEM);
4679
4680                 for (i = 0; i < info->lti_count; i++) {
4681                         memcpy(&comp_array[i],
4682                                &lo->ldo_comp_entries[info->lti_comp_idx[i]],
4683                                sizeof(*comp_array));
4684                 }
4685
4686                 OBD_FREE_PTR_ARRAY(lo->ldo_comp_entries, lo->ldo_comp_cnt);
4687                 lo->ldo_comp_entries = comp_array;
4688                 lo->ldo_comp_cnt = info->lti_count;
4689         } else {
4690                 lod_free_comp_entries(lo);
4691         }
4692
4693         EXIT;
4694 out:
4695         return rc ? rc : deleted;
4696 }
4697
4698 /**
4699  * Delete layout component(s)
4700  *
4701  * This function sets up the layout data in the env and does the setattrs
4702  * required to write out the new layout.  The layout itself is modified in
4703  * lod_layout_del_prep_layout.
4704  *
4705  * \param[in] env       execution environment for this thread
4706  * \param[in] dt        object
4707  * \param[in] th        transaction handle
4708  *
4709  * \retval      0 on success
4710  * \retval      negative error number on failure
4711  */
4712 static int lod_layout_del(const struct lu_env *env, struct dt_object *dt,
4713                           struct thandle *th)
4714 {
4715         struct lod_object *lo = lod_dt_obj(dt);
4716         struct dt_object *next = dt_object_child(dt);
4717         struct lu_attr *attr = &lod_env_info(env)->lti_attr;
4718         int rc;
4719
4720         LASSERT(lo->ldo_mirror_count == 1);
4721
4722         mutex_lock(&lo->ldo_layout_mutex);
4723
4724         rc = lod_layout_del_prep_layout(env, lo, th);
4725         if (rc < 0)
4726                 GOTO(out, rc);
4727
4728         /* Only do this if we didn't delete all components */
4729         if (lo->ldo_comp_cnt > 0) {
4730                 lo->ldo_mirrors[0].lme_end = lo->ldo_comp_cnt - 1;
4731                 lod_obj_inc_layout_gen(lo);
4732         }
4733
4734         LASSERT(dt_object_exists(dt));
4735         rc = dt_attr_get(env, next, attr);
4736         if (rc)
4737                 GOTO(out, rc);
4738
4739         if (attr->la_size > 0) {
4740                 attr->la_size = 0;
4741                 attr->la_valid = LA_SIZE;
4742                 rc = lod_sub_attr_set(env, next, attr, th);
4743                 if (rc)
4744                         GOTO(out, rc);
4745         }
4746
4747         rc = lod_generate_and_set_lovea(env, lo, th);
4748         EXIT;
4749 out:
4750         if (rc)
4751                 lod_striping_free_nolock(env, lo);
4752
4753         mutex_unlock(&lo->ldo_layout_mutex);
4754
4755         return rc;
4756 }
4757
4758
4759 static int lod_get_default_lov_striping(const struct lu_env *env,
4760                                         struct lod_object *lo,
4761                                         struct lod_default_striping *lds,
4762                                         struct dt_allocation_hint *ah);
4763 /**
4764  * Implementation of dt_object_operations::do_xattr_set.
4765  *
4766  * Sets specified extended attribute on the object. Three types of EAs are
4767  * special:
4768  *   LOV EA - stores striping for a regular file or default striping (when set
4769  *            on a directory)
4770  *   LMV EA - stores a marker for the striped directories
4771  *   DMV EA - stores default directory striping
4772  *
4773  * When striping is applied to a non-striped existing object (this is called
4774  * late striping), then LOD notices the caller wants to turn the object into a
4775  * striped one. The stripe objects are created and appropriate EA is set:
4776  * LOV EA storing all the stripes directly or LMV EA storing just a small header
4777  * with striping configuration.
4778  *
4779  * \see dt_object_operations::do_xattr_set() in the API description for details.
4780  */
4781 static int lod_xattr_set(const struct lu_env *env,
4782                          struct dt_object *dt, const struct lu_buf *buf,
4783                          const char *name, int fl, struct thandle *th)
4784 {
4785         struct dt_object *next = dt_object_child(dt);
4786         struct lu_attr *layout_attr = &lod_env_info(env)->lti_layout_attr;
4787         struct lod_object *lo = lod_dt_obj(dt);
4788         struct lod_obj_stripe_cb_data data = { {0} };
4789         int rc = 0;
4790
4791         ENTRY;
4792
4793         if (S_ISDIR(dt->do_lu.lo_header->loh_attr) &&
4794             !strcmp(name, XATTR_NAME_LMV)) {
4795                 switch (fl) {
4796                 case LU_XATTR_CREATE:
4797                         rc = lod_dir_striping_create(env, dt, NULL, NULL, th);
4798                         break;
4799                 case 0:
4800                 case LU_XATTR_REPLACE:
4801                         rc = lod_dir_layout_set(env, dt, buf, fl, th);
4802                         break;
4803                 default:
4804                         LBUG();
4805                 }
4806
4807                 RETURN(rc);
4808         } else if (S_ISDIR(dt->do_lu.lo_header->loh_attr) &&
4809                    strcmp(name, XATTR_NAME_LOV) == 0) {
4810                 struct lod_default_striping *lds = lod_lds_buf_get(env);
4811                 struct lov_user_md_v1 *v1 = buf->lb_buf;
4812                 char pool[LOV_MAXPOOLNAME + 1];
4813                 bool is_del;
4814
4815                 /* get existing striping config */
4816                 rc = lod_get_default_lov_striping(env, lod_dt_obj(dt), lds,
4817                                                   NULL);
4818                 if (rc)
4819                         RETURN(rc);
4820
4821                 memset(pool, 0, sizeof(pool));
4822                 if (lds->lds_def_striping_set == 1)
4823                         lod_layout_get_pool(lds->lds_def_comp_entries,
4824                                             lds->lds_def_comp_cnt, pool,
4825                                             sizeof(pool));
4826
4827                 is_del = LOVEA_DELETE_VALUES(v1->lmm_stripe_size,
4828                                              v1->lmm_stripe_count,
4829                                              v1->lmm_stripe_offset,
4830                                              NULL);
4831
4832                 /* Retain the pool name if it is not given */
4833                 if (v1->lmm_magic == LOV_USER_MAGIC_V1 && pool[0] != '\0' &&
4834                         !is_del) {
4835                         struct lod_thread_info *info = lod_env_info(env);
4836                         struct lov_user_md_v3 *v3  = info->lti_ea_store;
4837
4838                         memset(v3, 0, sizeof(*v3));
4839                         v3->lmm_magic = cpu_to_le32(LOV_USER_MAGIC_V3);
4840                         v3->lmm_pattern = cpu_to_le32(v1->lmm_pattern);
4841                         v3->lmm_stripe_count =
4842                                         cpu_to_le32(v1->lmm_stripe_count);
4843                         v3->lmm_stripe_offset =
4844                                         cpu_to_le32(v1->lmm_stripe_offset);
4845                         v3->lmm_stripe_size = cpu_to_le32(v1->lmm_stripe_size);
4846
4847                         strlcpy(v3->lmm_pool_name, pool,
4848                                 sizeof(v3->lmm_pool_name));
4849
4850                         info->lti_buf.lb_buf = v3;
4851                         info->lti_buf.lb_len = sizeof(*v3);
4852                         rc = lod_xattr_set_lov_on_dir(env, dt, &info->lti_buf,
4853                                                       name, fl, th);
4854                 } else {
4855                         rc = lod_xattr_set_lov_on_dir(env, dt, buf, name,
4856                                                       fl, th);
4857                 }
4858
4859                 if (lds->lds_def_striping_set == 1 &&
4860                     lds->lds_def_comp_entries != NULL)
4861                         lod_free_def_comp_entries(lds);
4862
4863                 RETURN(rc);
4864         } else if (S_ISDIR(dt->do_lu.lo_header->loh_attr) &&
4865                    strcmp(name, XATTR_NAME_DEFAULT_LMV) == 0) {
4866                 /* default LMVEA */
4867                 rc = lod_xattr_set_default_lmv_on_dir(env, dt, buf, name, fl,
4868                                                       th);
4869                 RETURN(rc);
4870         } else if (S_ISREG(dt->do_lu.lo_header->loh_attr) &&
4871                    (strcmp(name, XATTR_NAME_LOV) == 0 ||
4872                     strcmp(name, XATTR_LUSTRE_LOV) == 0 ||
4873                     allowed_lustre_lov(name))) {
4874                 /* in case of lov EA swap, just set it
4875                  * if not, it is a replay so check striping match what we
4876                  * already have during req replay, declare_xattr_set()
4877                  * defines striping, then create() does the work */
4878                 if (fl & LU_XATTR_REPLACE) {
4879                         /* free stripes, then update disk */
4880                         lod_striping_free(env, lod_dt_obj(dt));
4881
4882                         rc = lod_sub_xattr_set(env, next, buf, name, fl, th);
4883                 } else if (fl & LU_XATTR_SPLIT) {
4884                         rc = lod_sub_xattr_set(env, next, buf, name, fl, th);
4885                         if (rc)
4886                                 RETURN(rc);
4887
4888                         rc = lod_striping_reload(env, lo, buf, LVF_ALL_STALE);
4889                         if (rc)
4890                                 RETURN(rc);
4891
4892                         if (lo->ldo_mirror_count > 1 &&
4893                             layout_attr->la_valid & LA_LAYOUT_VERSION) {
4894                                 /* mirror split */
4895                                 layout_attr->la_layout_version =
4896                                                 lo->ldo_layout_gen;
4897                                 data.locd_attr = layout_attr;
4898                                 data.locd_declare = false;
4899                                 data.locd_stripe_cb =
4900                                                 lod_obj_stripe_attr_set_cb;
4901                                 rc = lod_obj_for_each_stripe(env, lo, th,
4902                                                              &data);
4903                                 if (rc)
4904                                         RETURN(rc);
4905                         }
4906                 } else if (fl & LU_XATTR_PURGE) {
4907                         rc = lod_layout_purge(env, dt, buf, th);
4908                 } else if (dt_object_remote(dt)) {
4909                         /* This only happens during migration, see
4910                          * mdd_migrate_create(), in which Master MDT will
4911                          * create a remote target object, and only set
4912                          * (migrating) stripe EA on the remote object,
4913                          * and does not need creating each stripes. */
4914                         rc = lod_sub_xattr_set(env, next, buf, name,
4915                                                       fl, th);
4916                 } else if (strcmp(name, XATTR_LUSTRE_LOV".del") == 0) {
4917                         /* delete component(s) */
4918                         LASSERT(lod_dt_obj(dt)->ldo_comp_cached);
4919                         rc = lod_layout_del(env, dt, th);
4920                 } else {
4921                         /*
4922                          * When 'name' is XATTR_LUSTRE_LOV or XATTR_NAME_LOV,
4923                          * it's going to create create file with specified
4924                          * component(s), the striping must have not being
4925                          * cached in this case;
4926                          *
4927                          * Otherwise, it's going to add/change component(s) to
4928                          * an existing file, the striping must have been cached
4929                          * in this case.
4930                          */
4931                         LASSERT(equi(!strcmp(name, XATTR_LUSTRE_LOV) ||
4932                                      !strcmp(name, XATTR_NAME_LOV),
4933                                 !lod_dt_obj(dt)->ldo_comp_cached));
4934
4935                         rc = lod_striped_create(env, dt, NULL, NULL, th);
4936                         if (rc)
4937                                 RETURN(rc);
4938
4939                         if (fl & LU_XATTR_MERGE && lo->ldo_mirror_count > 1 &&
4940                             layout_attr->la_valid & LA_LAYOUT_VERSION) {
4941                                 /* mirror merge exec phase */
4942                                 layout_attr->la_layout_version =
4943                                                 lo->ldo_layout_gen;
4944                                 data.locd_attr = layout_attr;
4945                                 data.locd_declare = false;
4946                                 data.locd_stripe_cb =
4947                                                 lod_obj_stripe_attr_set_cb;
4948                                 rc = lod_obj_for_each_stripe(env, lo, th,
4949                                                              &data);
4950                                 if (rc)
4951                                         RETURN(rc);
4952                         }
4953                 }
4954                 RETURN(rc);
4955         } else if (strcmp(name, XATTR_NAME_FID) == 0) {
4956                 rc = lod_replace_parent_fid(env, dt, buf, th, false);
4957
4958                 RETURN(rc);
4959         }
4960
4961         /* then all other xattr */
4962         rc = lod_xattr_set_internal(env, dt, buf, name, fl, th);
4963
4964         RETURN(rc);
4965 }
4966
4967 /**
4968  * Implementation of dt_object_operations::do_declare_xattr_del.
4969  *
4970  * \see dt_object_operations::do_declare_xattr_del() in the API description
4971  * for details.
4972  */
4973 static int lod_declare_xattr_del(const struct lu_env *env,
4974                                  struct dt_object *dt, const char *name,
4975                                  struct thandle *th)
4976 {
4977         struct lod_object *lo = lod_dt_obj(dt);
4978         struct dt_object *next = dt_object_child(dt);
4979         int i;
4980         int rc;
4981         ENTRY;
4982
4983         rc = lod_sub_declare_xattr_del(env, next, name, th);
4984         if (rc != 0)
4985                 RETURN(rc);
4986
4987         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr))
4988                 RETURN(0);
4989
4990         /* NB: don't delete stripe LMV, because when we do this, normally we
4991          * will remove stripes, besides, if directory LMV is corrupt, this will
4992          * prevent deleting its LMV and fixing it (via LFSCK).
4993          */
4994         if (!strcmp(name, XATTR_NAME_LMV))
4995                 RETURN(0);
4996
4997         rc = lod_striping_load(env, lo);
4998         if (rc != 0)
4999                 RETURN(rc);
5000
5001         if (lo->ldo_dir_stripe_count == 0)
5002                 RETURN(0);
5003
5004         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
5005                 struct dt_object *dto = lo->ldo_stripe[i];
5006
5007                 if (!dto)
5008                         continue;
5009
5010                 if (!dt_object_exists(dto))
5011                         continue;
5012
5013                 rc = lod_sub_declare_xattr_del(env, dto, name, th);
5014                 if (rc != 0)
5015                         break;
5016         }
5017
5018         RETURN(rc);
5019 }
5020
5021 /**
5022  * Implementation of dt_object_operations::do_xattr_del.
5023  *
5024  * If EA storing a regular striping is being deleted, then release
5025  * all the references to the stripe objects in core.
5026  *
5027  * \see dt_object_operations::do_xattr_del() in the API description for details.
5028  */
5029 static int lod_xattr_del(const struct lu_env *env, struct dt_object *dt,
5030                          const char *name, struct thandle *th)
5031 {
5032         int rc;
5033
5034         ENTRY;
5035
5036         if (!strcmp(name, XATTR_NAME_LOV) || !strcmp(name, XATTR_NAME_LMV))
5037                 lod_striping_free(env, lod_dt_obj(dt));
5038
5039         rc = lod_xattr_del_internal(env, dt, name, th);
5040
5041         RETURN(rc);
5042 }
5043
5044 /**
5045  * Implementation of dt_object_operations::do_xattr_list.
5046  *
5047  * \see dt_object_operations::do_xattr_list() in the API description
5048  * for details.
5049  */
5050 static int lod_xattr_list(const struct lu_env *env,
5051                           struct dt_object *dt, const struct lu_buf *buf)
5052 {
5053         return dt_xattr_list(env, dt_object_child(dt), buf);
5054 }
5055
5056 static inline int lod_object_will_be_striped(int is_reg, const struct lu_fid *fid)
5057 {
5058         return (is_reg && fid_seq(fid) != FID_SEQ_LOCAL_FILE);
5059 }
5060
5061 /**
5062  * Copy OST list from layout provided by user.
5063  *
5064  * \param[in] lod_comp          layout_component to be filled
5065  * \param[in] v3                LOV EA V3 user data
5066  *
5067  * \retval              0 on success
5068  * \retval              negative if failed
5069  */
5070 int lod_comp_copy_ost_lists(struct lod_layout_component *lod_comp,
5071                             struct lov_user_md_v3 *v3)
5072 {
5073         int j;
5074
5075         ENTRY;
5076
5077         if (v3->lmm_stripe_offset == LOV_OFFSET_DEFAULT)
5078                 v3->lmm_stripe_offset = v3->lmm_objects[0].l_ost_idx;
5079
5080         if (lod_comp->llc_ostlist.op_array) {
5081                 if (lod_comp->llc_ostlist.op_size >=
5082                     v3->lmm_stripe_count * sizeof(__u32))  {
5083                         lod_comp->llc_ostlist.op_count =
5084                                         v3->lmm_stripe_count;
5085                         goto skip;
5086                 }
5087                 OBD_FREE(lod_comp->llc_ostlist.op_array,
5088                          lod_comp->llc_ostlist.op_size);
5089         }
5090
5091         /* copy ost list from lmm */
5092         lod_comp->llc_ostlist.op_count = v3->lmm_stripe_count;
5093         lod_comp->llc_ostlist.op_size = v3->lmm_stripe_count * sizeof(__u32);
5094         OBD_ALLOC(lod_comp->llc_ostlist.op_array,
5095                   lod_comp->llc_ostlist.op_size);
5096         if (!lod_comp->llc_ostlist.op_array)
5097                 RETURN(-ENOMEM);
5098 skip:
5099         for (j = 0; j < v3->lmm_stripe_count; j++) {
5100                 lod_comp->llc_ostlist.op_array[j] =
5101                         v3->lmm_objects[j].l_ost_idx;
5102         }
5103
5104         RETURN(0);
5105 }
5106
5107
5108 /**
5109  * Get default striping.
5110  *
5111  * \param[in] env               execution environment
5112  * \param[in] lo                object
5113  * \param[out] lds              default striping
5114  *
5115  * \retval              0 on success
5116  * \retval              negative if failed
5117  */
5118 static int lod_get_default_lov_striping(const struct lu_env *env,
5119                                         struct lod_object *lo,
5120                                         struct lod_default_striping *lds,
5121                                         struct dt_allocation_hint *ah)
5122 {
5123         struct lod_thread_info *info = lod_env_info(env);
5124         struct lov_user_md_v1 *v1 = NULL;
5125         struct lov_user_md_v3 *v3 = NULL;
5126         struct lov_comp_md_v1 *comp_v1 = NULL;
5127         __u16 comp_cnt;
5128         __u16 mirror_cnt;
5129         bool composite;
5130         int rc, i, j;
5131
5132         ENTRY;
5133
5134         lds->lds_def_striping_set = 0;
5135
5136         rc = lod_get_lov_ea(env, lo);
5137         if (rc < 0)
5138                 RETURN(rc);
5139
5140         if (rc < (typeof(rc))sizeof(struct lov_user_md))
5141                 RETURN(0);
5142
5143         v1 = info->lti_ea_store;
5144         if (v1->lmm_magic == __swab32(LOV_USER_MAGIC_V1)) {
5145                 lustre_swab_lov_user_md_v1(v1);
5146         } else if (v1->lmm_magic == __swab32(LOV_USER_MAGIC_V3)) {
5147                 v3 = (struct lov_user_md_v3 *)v1;
5148                 lustre_swab_lov_user_md_v3(v3);
5149         } else if (v1->lmm_magic == __swab32(LOV_USER_MAGIC_SPECIFIC)) {
5150                 v3 = (struct lov_user_md_v3 *)v1;
5151                 lustre_swab_lov_user_md_v3(v3);
5152                 lustre_swab_lov_user_md_objects(v3->lmm_objects,
5153                                                 v3->lmm_stripe_count);
5154         } else if (v1->lmm_magic == __swab32(LOV_USER_MAGIC_COMP_V1) ||
5155                    v1->lmm_magic == __swab32(LOV_USER_MAGIC_SEL)) {
5156                 comp_v1 = (struct lov_comp_md_v1 *)v1;
5157                 lustre_swab_lov_comp_md_v1(comp_v1);
5158         }
5159
5160         if (v1->lmm_magic != LOV_MAGIC_V3 && v1->lmm_magic != LOV_MAGIC_V1 &&
5161             v1->lmm_magic != LOV_MAGIC_COMP_V1 &&
5162             v1->lmm_magic != LOV_MAGIC_SEL &&
5163             v1->lmm_magic != LOV_USER_MAGIC_SPECIFIC)
5164                 RETURN(-ENOTSUPP);
5165
5166         if ((v1->lmm_magic == LOV_MAGIC_COMP_V1 ||
5167             v1->lmm_magic == LOV_MAGIC_SEL) &&
5168              !(ah && ah->dah_append_stripes)) {
5169                 comp_v1 = (struct lov_comp_md_v1 *)v1;
5170                 comp_cnt = comp_v1->lcm_entry_count;
5171                 if (comp_cnt == 0)
5172                         RETURN(-EINVAL);
5173                 mirror_cnt = comp_v1->lcm_mirror_count + 1;
5174                 composite = true;
5175         } else {
5176                 comp_cnt = 1;
5177                 mirror_cnt = 0;
5178                 composite = false;
5179         }
5180
5181         /* realloc default comp entries if necessary */
5182         rc = lod_def_striping_comp_resize(lds, comp_cnt);
5183         if (rc < 0)
5184                 RETURN(rc);
5185
5186         lds->lds_def_comp_cnt = comp_cnt;
5187         lds->lds_def_striping_is_composite = composite;
5188         lds->lds_def_mirror_cnt = mirror_cnt;
5189
5190         for (i = 0; i < comp_cnt; i++) {
5191                 struct lod_layout_component *lod_comp;
5192                 char *pool;
5193
5194                 lod_comp = &lds->lds_def_comp_entries[i];
5195                 /*
5196                  * reset lod_comp values, llc_stripes is always NULL in
5197                  * the default striping template, llc_pool will be reset
5198                  * later below.
5199                  */
5200                 memset(lod_comp, 0, offsetof(typeof(*lod_comp), llc_pool));
5201
5202                 if (composite) {
5203                         v1 = (struct lov_user_md *)((char *)comp_v1 +
5204                                         comp_v1->lcm_entries[i].lcme_offset);
5205                         lod_comp->llc_extent =
5206                                         comp_v1->lcm_entries[i].lcme_extent;
5207                         /* We only inherit certain flags from the layout */
5208                         lod_comp->llc_flags =
5209                                         comp_v1->lcm_entries[i].lcme_flags &
5210                                         LCME_TEMPLATE_FLAGS;
5211                 }
5212
5213                 if (!lov_pattern_supported(v1->lmm_pattern) &&
5214                     !(v1->lmm_pattern & LOV_PATTERN_F_RELEASED)) {
5215                         lod_free_def_comp_entries(lds);
5216                         RETURN(-EINVAL);
5217                 }
5218
5219                 CDEBUG(D_LAYOUT, DFID" stripe_count=%d stripe_size=%d stripe_offset=%d append_stripes=%d\n",
5220                        PFID(lu_object_fid(&lo->ldo_obj.do_lu)),
5221                        (int)v1->lmm_stripe_count, (int)v1->lmm_stripe_size,
5222                        (int)v1->lmm_stripe_offset,
5223                        ah ? ah->dah_append_stripes : 0);
5224
5225                 if (ah && ah->dah_append_stripes)
5226                         lod_comp->llc_stripe_count = ah->dah_append_stripes;
5227                 else
5228                         lod_comp->llc_stripe_count = v1->lmm_stripe_count;
5229                 lod_comp->llc_stripe_size = v1->lmm_stripe_size;
5230                 lod_comp->llc_stripe_offset = v1->lmm_stripe_offset;
5231                 lod_comp->llc_pattern = v1->lmm_pattern;
5232
5233                 pool = NULL;
5234                 if (ah && ah->dah_append_pool && ah->dah_append_pool[0]) {
5235                         pool = ah->dah_append_pool;
5236                 } else if (v1->lmm_magic == LOV_USER_MAGIC_V3) {
5237                         /* XXX: sanity check here */
5238                         v3 = (struct lov_user_md_v3 *) v1;
5239                         if (v3->lmm_pool_name[0] != '\0')
5240                                 pool = v3->lmm_pool_name;
5241                 }
5242                 lod_set_def_pool(lds, i, pool);
5243                 if (v1->lmm_magic == LOV_USER_MAGIC_SPECIFIC) {
5244                         v3 = (struct lov_user_md_v3 *)v1;
5245                         rc = lod_comp_copy_ost_lists(lod_comp, v3);
5246                         if (rc)
5247                                 RETURN(rc);
5248                 } else if (lod_comp->llc_ostlist.op_array &&
5249                            lod_comp->llc_ostlist.op_count) {
5250                         for (j = 0; j < lod_comp->llc_ostlist.op_count; j++)
5251                                 lod_comp->llc_ostlist.op_array[j] = -1;
5252                         lod_comp->llc_ostlist.op_count = 0;
5253                 }
5254         }
5255
5256         lds->lds_def_striping_set = 1;
5257         RETURN(rc);
5258 }
5259
5260 /**
5261  * Get default directory striping.
5262  *
5263  * \param[in] env               execution environment
5264  * \param[in] lo                object
5265  * \param[out] lds              default striping
5266  *
5267  * \retval              0 on success
5268  * \retval              negative if failed
5269  */
5270 static int lod_get_default_lmv_striping(const struct lu_env *env,
5271                                         struct lod_object *lo,
5272                                         struct lod_default_striping *lds)
5273 {
5274         struct lmv_user_md *lmu;
5275         int rc;
5276
5277         lds->lds_dir_def_striping_set = 0;
5278
5279         rc = lod_get_default_lmv_ea(env, lo);
5280         if (rc < 0)
5281                 return rc;
5282
5283         if (rc >= (int)sizeof(*lmu)) {
5284                 struct lod_thread_info *info = lod_env_info(env);
5285
5286                 lmu = info->lti_ea_store;
5287
5288                 lds->lds_dir_def_stripe_count =
5289                                 le32_to_cpu(lmu->lum_stripe_count);
5290                 lds->lds_dir_def_stripe_offset =
5291                                 le32_to_cpu(lmu->lum_stripe_offset);
5292                 lds->lds_dir_def_hash_type =
5293                                 le32_to_cpu(lmu->lum_hash_type);
5294                 lds->lds_dir_def_max_inherit = lmu->lum_max_inherit;
5295                 lds->lds_dir_def_max_inherit_rr = lmu->lum_max_inherit_rr;
5296                 lds->lds_dir_def_striping_set = 1;
5297         }
5298
5299         return 0;
5300 }
5301
5302 /**
5303  * Get default striping in the object.
5304  *
5305  * Get object default striping and default directory striping.
5306  *
5307  * \param[in] env               execution environment
5308  * \param[in] lo                object
5309  * \param[out] lds              default striping
5310  *
5311  * \retval              0 on success
5312  * \retval              negative if failed
5313  */
5314 static int lod_get_default_striping(const struct lu_env *env,
5315                                     struct lod_object *lo,
5316                                     struct lod_default_striping *lds)
5317 {
5318         int rc, rc1;
5319
5320         rc = lod_get_default_lov_striping(env, lo, lds, NULL);
5321         if (lds->lds_def_striping_set) {
5322                 struct lod_thread_info *info = lod_env_info(env);
5323                 struct lod_device *d = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
5324
5325                 rc = lod_verify_striping(env, d, lo, &info->lti_buf, false);
5326                 if (rc)
5327                         lds->lds_def_striping_set = 0;
5328         }
5329
5330         rc1 = lod_get_default_lmv_striping(env, lo, lds);
5331         if (rc == 0 && rc1 < 0)
5332                 rc = rc1;
5333
5334         return rc;
5335 }
5336
5337 /**
5338  * Apply default striping on object.
5339  *
5340  * If object striping pattern is not set, set to the one in default striping.
5341  * The default striping is from parent or fs.
5342  *
5343  * \param[in] lo                new object
5344  * \param[in] lds               default striping
5345  * \param[in] mode              new object's mode
5346  */
5347 static void lod_striping_from_default(struct lod_object *lo,
5348                                       const struct lod_default_striping *lds,
5349                                       umode_t mode)
5350 {
5351         struct lod_device *d = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
5352         int i, rc;
5353
5354         if (lds->lds_def_striping_set && S_ISREG(mode)) {
5355                 struct lov_desc *desc = &d->lod_ost_descs.ltd_lov_desc;
5356
5357                 rc = lod_alloc_comp_entries(lo, lds->lds_def_mirror_cnt,
5358                                             lds->lds_def_comp_cnt);
5359                 if (rc != 0)
5360                         return;
5361
5362                 lo->ldo_is_composite = lds->lds_def_striping_is_composite;
5363                 if (lds->lds_def_mirror_cnt > 1)
5364                         lo->ldo_flr_state = LCM_FL_RDONLY;
5365
5366                 for (i = 0; i < lo->ldo_comp_cnt; i++) {
5367                         struct lod_layout_component *obj_comp =
5368                                                 &lo->ldo_comp_entries[i];
5369                         struct lod_layout_component *def_comp =
5370                                                 &lds->lds_def_comp_entries[i];
5371
5372                         CDEBUG(D_LAYOUT, "Inherit from default: flags=%#x "
5373                                "size=%hu nr=%u offset=%u pattern=%#x pool=%s\n",
5374                                def_comp->llc_flags,
5375                                def_comp->llc_stripe_size,
5376                                def_comp->llc_stripe_count,
5377                                def_comp->llc_stripe_offset,
5378                                def_comp->llc_pattern,
5379                                def_comp->llc_pool ?: "");
5380
5381                         *obj_comp = *def_comp;
5382                         if (def_comp->llc_pool != NULL) {
5383                                 /* pointer was copied from def_comp */
5384                                 obj_comp->llc_pool = NULL;
5385                                 lod_obj_set_pool(lo, i, def_comp->llc_pool);
5386                         }
5387
5388                         /* copy ost list */
5389                         if (def_comp->llc_ostlist.op_array &&
5390                             def_comp->llc_ostlist.op_count) {
5391                                 OBD_ALLOC(obj_comp->llc_ostlist.op_array,
5392                                           obj_comp->llc_ostlist.op_size);
5393                                 if (!obj_comp->llc_ostlist.op_array)
5394                                         return;
5395                                 memcpy(obj_comp->llc_ostlist.op_array,
5396                                        def_comp->llc_ostlist.op_array,
5397                                        obj_comp->llc_ostlist.op_size);
5398                         } else if (def_comp->llc_ostlist.op_array) {
5399                                 obj_comp->llc_ostlist.op_array = NULL;
5400                         }
5401
5402                         /*
5403                          * Don't initialize these fields for plain layout
5404                          * (v1/v3) here, they are inherited in the order of
5405                          * 'parent' -> 'fs default (root)' -> 'global default
5406                          * values for stripe_count & stripe_size'.
5407                          *
5408                          * see lod_ah_init().
5409                          */
5410                         if (!lo->ldo_is_composite)
5411                                 continue;
5412
5413                         lod_adjust_stripe_info(obj_comp, desc, 0);
5414                 }
5415         } else if (lds->lds_dir_def_striping_set && S_ISDIR(mode)) {
5416                 if (lo->ldo_dir_stripe_count == 0)
5417                         lo->ldo_dir_stripe_count =
5418                                 lds->lds_dir_def_stripe_count;
5419                 if (lo->ldo_dir_stripe_offset == -1)
5420                         lo->ldo_dir_stripe_offset =
5421                                 lds->lds_dir_def_stripe_offset;
5422                 if (lo->ldo_dir_hash_type == 0)
5423                         lo->ldo_dir_hash_type = lds->lds_dir_def_hash_type;
5424
5425                 CDEBUG(D_LAYOUT, "striping from default dir: count:%hu, "
5426                        "offset:%u, hash_type:%u\n",
5427                        lo->ldo_dir_stripe_count, lo->ldo_dir_stripe_offset,
5428                        lo->ldo_dir_hash_type);
5429         }
5430 }
5431
5432 static inline bool lod_need_inherit_more(struct lod_object *lo, bool from_root,
5433                                          char *append_pool)
5434 {
5435         struct lod_layout_component *lod_comp;
5436
5437         if (lo->ldo_comp_cnt == 0)
5438                 return true;
5439
5440         if (lo->ldo_is_composite)
5441                 return false;
5442
5443         lod_comp = &lo->ldo_comp_entries[0];
5444
5445         if (lod_comp->llc_stripe_count <= 0 ||
5446             lod_comp->llc_stripe_size <= 0)
5447                 return true;
5448
5449         if (from_root && (lod_comp->llc_pool == NULL ||
5450                           lod_comp->llc_stripe_offset == LOV_OFFSET_DEFAULT))
5451                 return true;
5452
5453         if (append_pool && append_pool[0])
5454                 return true;
5455
5456         return false;
5457 }
5458
5459 /**
5460  * Implementation of dt_object_operations::do_ah_init.
5461  *
5462  * This method is used to make a decision on the striping configuration for the
5463  * object being created. It can be taken from the \a parent object if it exists,
5464  * or filesystem's default. The resulting configuration (number of stripes,
5465  * stripe size/offset, pool name, etc) is stored in the object itself and will
5466  * be used by the methods like ->doo_declare_create().
5467  *
5468  * \see dt_object_operations::do_ah_init() in the API description for details.
5469  */
5470 static void lod_ah_init(const struct lu_env *env,
5471                         struct dt_allocation_hint *ah,
5472                         struct dt_object *parent,
5473                         struct dt_object *child,
5474                         umode_t child_mode)
5475 {
5476         struct lod_device *d = lu2lod_dev(child->do_lu.lo_dev);
5477         struct lod_thread_info *info = lod_env_info(env);
5478         struct lod_default_striping *lds = lod_lds_buf_get(env);
5479         struct dt_object *nextp = NULL;
5480         struct dt_object *nextc;
5481         struct lod_object *lp = NULL;
5482         struct lod_object *lc;
5483         struct lov_desc *desc;
5484         struct lod_layout_component *lod_comp;
5485         int rc;
5486         ENTRY;
5487
5488         LASSERT(child);
5489
5490         if (ah->dah_append_stripes == -1)
5491                 ah->dah_append_stripes =
5492                         d->lod_ost_descs.ltd_lov_desc.ld_tgt_count;
5493
5494         if (likely(parent)) {
5495                 nextp = dt_object_child(parent);
5496                 lp = lod_dt_obj(parent);
5497         }
5498
5499         nextc = dt_object_child(child);
5500         lc = lod_dt_obj(child);
5501
5502         LASSERT(!lod_obj_is_striped(child));
5503         /* default layout template may have been set on the regular file
5504          * when this is called from mdd_create_data() */
5505         if (S_ISREG(child_mode))
5506                 lod_free_comp_entries(lc);
5507
5508         if (!dt_object_exists(nextc))
5509                 nextc->do_ops->do_ah_init(env, ah, nextp, nextc, child_mode);
5510
5511         if (S_ISDIR(child_mode)) {
5512                 const struct lmv_user_md_v1 *lum1 = ah->dah_eadata;
5513
5514                 /* other default values are 0 */
5515                 lc->ldo_dir_stripe_offset = -1;
5516
5517                 /* no default striping configuration is needed for
5518                  * foreign dirs
5519                  */
5520                 if (ah->dah_eadata != NULL && ah->dah_eadata_len != 0 &&
5521                     le32_to_cpu(lum1->lum_magic) == LMV_MAGIC_FOREIGN) {
5522                         lc->ldo_dir_is_foreign = true;
5523                         /* keep stripe_count 0 and stripe_offset -1 */
5524                         CDEBUG(D_INFO, "no default striping for foreign dir\n");
5525                         RETURN_EXIT;
5526                 }
5527
5528                 if (likely(lp != NULL))
5529                         lod_get_default_striping(env, lp, lds);
5530
5531                 /* It should always honour the specified stripes */
5532                 /* Note: old client (< 2.7)might also do lfs mkdir, whose EA
5533                  * will have old magic. In this case, we should ignore the
5534                  * stripe count and try to create dir by default stripe.
5535                  */
5536                 if (ah->dah_eadata != NULL && ah->dah_eadata_len != 0 &&
5537                     (le32_to_cpu(lum1->lum_magic) == LMV_USER_MAGIC ||
5538                      le32_to_cpu(lum1->lum_magic) == LMV_USER_MAGIC_SPECIFIC)) {
5539                         lc->ldo_dir_stripe_count =
5540                                 le32_to_cpu(lum1->lum_stripe_count);
5541                         lc->ldo_dir_stripe_offset =
5542                                 le32_to_cpu(lum1->lum_stripe_offset);
5543                         lc->ldo_dir_hash_type =
5544                                 le32_to_cpu(lum1->lum_hash_type);
5545                         CDEBUG(D_INFO,
5546                                "set dirstripe: count %hu, offset %d, hash %u\n",
5547                                 lc->ldo_dir_stripe_count,
5548                                 (int)lc->ldo_dir_stripe_offset,
5549                                 lc->ldo_dir_hash_type);
5550
5551                         if (d->lod_mdt_descs.ltd_lmv_desc.ld_active_tgt_count &&
5552                             lc->ldo_dir_stripe_count < 2 &&
5553                             lum1->lum_max_inherit != LMV_INHERIT_NONE) {
5554                                 /* when filesystem-wide default LMV is set, dirs
5555                                  * will be created on MDT by space usage, but if
5556                                  * dir is created with "lfs mkdir -c 1 ...", its
5557                                  * subdirs should be kept on the same MDT. To
5558                                  * guarantee this, set default LMV for such dir.
5559                                  */
5560                                 lds->lds_dir_def_stripe_count =
5561                                         le32_to_cpu(lum1->lum_stripe_count);
5562                                 /* if "-1" stripe offset is set, save current
5563                                  * MDT index in default LMV.
5564                                  */
5565                                 if (le32_to_cpu(lum1->lum_stripe_offset) ==
5566                                     LMV_OFFSET_DEFAULT)
5567                                         lds->lds_dir_def_stripe_offset =
5568                                                 lod2lu_dev(d)->ld_site->ld_seq_site->ss_node_id;
5569                                 else
5570                                         lds->lds_dir_def_stripe_offset =
5571                                                 le32_to_cpu(lum1->lum_stripe_offset);
5572                                 lds->lds_dir_def_hash_type =
5573                                         le32_to_cpu(lum1->lum_hash_type);
5574                                 lds->lds_dir_def_max_inherit =
5575                                         lum1->lum_max_inherit;
5576                                 /* it will be decreased by 1 later in setting */
5577                                 if (lum1->lum_max_inherit >= LMV_INHERIT_END &&
5578                                     lum1->lum_max_inherit < LMV_INHERIT_MAX)
5579                                         lds->lds_dir_def_max_inherit++;
5580                                 lds->lds_dir_def_max_inherit_rr =
5581                                         lum1->lum_max_inherit_rr;
5582                                 lds->lds_dir_def_striping_set = 1;
5583                                 /* don't inherit LOV from ROOT */
5584                                 if (lds->lds_def_striping_set &&
5585                                     fid_is_root(lod_object_fid(lp)))
5586                                         lds->lds_def_striping_set = 0;
5587                                 lc->ldo_def_striping = lds;
5588                         } else if (lds->lds_def_striping_set &&
5589                                    !fid_is_root(lod_object_fid(lp))) {
5590                                 /* don't inherit default LMV for "lfs mkdir" */
5591                                 lds->lds_dir_def_striping_set = 0;
5592                                 lc->ldo_def_striping = lds;
5593                         }
5594                 } else {
5595                         /* inherit default striping except ROOT */
5596                         if ((lds->lds_def_striping_set ||
5597                              lds->lds_dir_def_striping_set) &&
5598                             !fid_is_root(lod_object_fid(lp)))
5599                                 lc->ldo_def_striping = lds;
5600
5601                         /* transfer defaults LMV to new directory */
5602                         lod_striping_from_default(lc, lds, child_mode);
5603
5604                         /* set count 0 to create normal directory */
5605                         if (lc->ldo_dir_stripe_count == 1)
5606                                 lc->ldo_dir_stripe_count = 0;
5607                 }
5608
5609                 /* shrink the stripe count to max_mdt_stripecount if it is -1
5610                  * and max_mdt_stripecount is not 0
5611                  */
5612                 if (lc->ldo_dir_stripe_count == (__u16)(-1) &&
5613                     d->lod_max_mdt_stripecount)
5614                         lc->ldo_dir_stripe_count = d->lod_max_mdt_stripecount;
5615
5616                 /* shrink the stripe_count to the avaible MDT count */
5617                 if (lc->ldo_dir_stripe_count > d->lod_remote_mdt_count + 1 &&
5618                     !OBD_FAIL_CHECK(OBD_FAIL_LARGE_STRIPE)) {
5619                         lc->ldo_dir_stripe_count = d->lod_remote_mdt_count + 1;
5620                         if (lc->ldo_dir_stripe_count == 1)
5621                                 lc->ldo_dir_stripe_count = 0;
5622                 }
5623
5624                 if (!(lc->ldo_dir_hash_type & LMV_HASH_TYPE_MASK))
5625                         lc->ldo_dir_hash_type |=
5626                                 d->lod_mdt_descs.ltd_lmv_desc.ld_pattern;
5627
5628                 CDEBUG(D_INFO, "final dir stripe [%hu %d %u]\n",
5629                        lc->ldo_dir_stripe_count,
5630                        (int)lc->ldo_dir_stripe_offset, lc->ldo_dir_hash_type);
5631
5632                 RETURN_EXIT;
5633         }
5634
5635         /* child object regular file*/
5636
5637         if (!lod_object_will_be_striped(S_ISREG(child_mode),
5638                                         lu_object_fid(&child->do_lu)))
5639                 RETURN_EXIT;
5640
5641         /* If object is going to be striped over OSTs, transfer default
5642          * striping information to the child, so that we can use it
5643          * during declaration and creation.
5644          *
5645          * Try from the parent first.
5646          */
5647         if (likely(lp != NULL)) {
5648                 rc = lod_get_default_lov_striping(env, lp, lds, ah);
5649                 if (rc == 0 && lds->lds_def_striping_set) {
5650                         rc = lod_verify_striping(env, d, lp, &info->lti_buf,
5651                                                  false);
5652                         if (rc == 0)
5653                                 lod_striping_from_default(lc, lds, child_mode);
5654                 }
5655         }
5656
5657         /* Initialize lod_device::lod_md_root object reference */
5658         if (d->lod_md_root == NULL) {
5659                 struct dt_object *root;
5660                 struct lod_object *lroot;
5661
5662                 lu_root_fid(&info->lti_fid);
5663                 root = dt_locate(env, &d->lod_dt_dev, &info->lti_fid);
5664                 if (!IS_ERR(root)) {
5665                         lroot = lod_dt_obj(root);
5666
5667                         spin_lock(&d->lod_lock);
5668                         if (d->lod_md_root != NULL)
5669                                 dt_object_put(env, &d->lod_md_root->ldo_obj);
5670                         d->lod_md_root = lroot;
5671                         spin_unlock(&d->lod_lock);
5672                 }
5673         }
5674
5675         /* try inherit layout from the root object (fs default) when:
5676          *  - parent does not have default layout; or
5677          *  - parent has plain(v1/v3) default layout, and some attributes
5678          *    are not specified in the default layout;
5679          */
5680         if (d->lod_md_root != NULL &&
5681             lod_need_inherit_more(lc, true, ah->dah_append_pool)) {
5682                 rc = lod_get_default_lov_striping(env, d->lod_md_root, lds,
5683                                                   ah);
5684                 if (rc || !lds->lds_def_striping_set)
5685                         goto out;
5686
5687                 rc = lod_verify_striping(env, d, d->lod_md_root, &info->lti_buf,
5688                                          false);
5689                 if (rc)
5690                         goto out;
5691
5692                 if (lc->ldo_comp_cnt == 0) {
5693                         lod_striping_from_default(lc, lds, child_mode);
5694                 } else if (!lds->lds_def_striping_is_composite) {
5695                         struct lod_layout_component *def_comp;
5696
5697                         LASSERT(!lc->ldo_is_composite);
5698                         lod_comp = &lc->ldo_comp_entries[0];
5699                         def_comp = &lds->lds_def_comp_entries[0];
5700
5701                         if (lod_comp->llc_stripe_count <= 0)
5702                                 lod_comp->llc_stripe_count =
5703                                         def_comp->llc_stripe_count;
5704                         if (lod_comp->llc_stripe_size <= 0)
5705                                 lod_comp->llc_stripe_size =
5706                                         def_comp->llc_stripe_size;
5707                         if (lod_comp->llc_stripe_offset == LOV_OFFSET_DEFAULT &&
5708                             (!lod_comp->llc_pool || !lod_comp->llc_pool[0]))
5709                                 lod_comp->llc_stripe_offset =
5710                                         def_comp->llc_stripe_offset;
5711                         if (lod_comp->llc_pool == NULL)
5712                                 lod_obj_set_pool(lc, 0, def_comp->llc_pool);
5713                 }
5714         }
5715 out:
5716         /*
5717          * fs default striping may not be explicitly set, or historically set
5718          * in config log, use them.
5719          */
5720         if (lod_need_inherit_more(lc, false, ah->dah_append_pool)) {
5721                 if (lc->ldo_comp_cnt == 0) {
5722                         rc = lod_alloc_comp_entries(lc, 0, 1);
5723                         if (rc)
5724                                 /* fail to allocate memory, will create a
5725                                  * non-striped file. */
5726                                 RETURN_EXIT;
5727                         lc->ldo_is_composite = 0;
5728                         lod_comp = &lc->ldo_comp_entries[0];
5729                         lod_comp->llc_stripe_offset = LOV_OFFSET_DEFAULT;
5730                 }
5731                 LASSERT(!lc->ldo_is_composite);
5732                 lod_comp = &lc->ldo_comp_entries[0];
5733                 desc = &d->lod_ost_descs.ltd_lov_desc;
5734                 lod_adjust_stripe_info(lod_comp, desc, ah->dah_append_stripes);
5735                 if (ah->dah_append_pool && ah->dah_append_pool[0])
5736                         lod_obj_set_pool(lc, 0, ah->dah_append_pool);
5737         }
5738
5739         EXIT;
5740 }
5741
5742 /**
5743  * Size initialization on late striping.
5744  *
5745  * Propagate the size of a truncated object to a deferred striping.
5746  * This function handles a special case when truncate was done on a
5747  * non-striped object and now while the striping is being created
5748  * we can't lose that size, so we have to propagate it to the stripes
5749  * being created.
5750  *
5751  * \param[in] env       execution environment
5752  * \param[in] dt        object
5753  * \param[in] th        transaction handle
5754  *
5755  * \retval              0 on success
5756  * \retval              negative if failed
5757  */
5758 static int lod_declare_init_size(const struct lu_env *env,
5759                                  struct dt_object *dt, struct thandle *th)
5760 {
5761         struct dt_object        *next = dt_object_child(dt);
5762         struct lod_object       *lo = lod_dt_obj(dt);
5763         struct dt_object        **objects = NULL;
5764         struct lu_attr  *attr = &lod_env_info(env)->lti_attr;
5765         uint64_t        size, offs;
5766         int     i, rc, stripe, stripe_count = 0, stripe_size = 0;
5767         struct lu_extent size_ext;
5768         ENTRY;
5769
5770         if (!lod_obj_is_striped(dt))
5771                 RETURN(0);
5772
5773         rc = dt_attr_get(env, next, attr);
5774         LASSERT(attr->la_valid & LA_SIZE);
5775         if (rc)
5776                 RETURN(rc);
5777
5778         size = attr->la_size;
5779         if (size == 0)
5780                 RETURN(0);
5781
5782         size_ext = (typeof(size_ext)){ .e_start = size - 1, .e_end = size };
5783         for (i = 0; i < lo->ldo_comp_cnt; i++) {
5784                 struct lod_layout_component *lod_comp;
5785                 struct lu_extent *extent;
5786
5787                 lod_comp = &lo->ldo_comp_entries[i];
5788
5789                 if (lod_comp->llc_stripe == NULL)
5790                         continue;
5791
5792                 extent = &lod_comp->llc_extent;
5793                 CDEBUG(D_INFO, "%lld "DEXT"\n", size, PEXT(extent));
5794                 if (!lo->ldo_is_composite ||
5795                     lu_extent_is_overlapped(extent, &size_ext)) {
5796                         objects = lod_comp->llc_stripe;
5797                         stripe_count = lod_comp->llc_stripe_count;
5798                         stripe_size = lod_comp->llc_stripe_size;
5799
5800                         /* next mirror */
5801                         if (stripe_count == 0)
5802                                 continue;
5803
5804                         LASSERT(objects != NULL && stripe_size != 0);
5805                         do_div(size, stripe_size);
5806                         stripe = do_div(size, stripe_count);
5807                         LASSERT(objects[stripe] != NULL);
5808
5809                         size = size * stripe_size;
5810                         offs = attr->la_size;
5811                         size += do_div(offs, stripe_size);
5812
5813                         attr->la_valid = LA_SIZE;
5814                         attr->la_size = size;
5815
5816                         rc = lod_sub_declare_attr_set(env, objects[stripe],
5817                                                       attr, th);
5818                 }
5819         }
5820
5821         RETURN(rc);
5822 }
5823
5824 /**
5825  * Declare creation of striped object.
5826  *
5827  * The function declares creation stripes for a regular object. The function
5828  * also declares whether the stripes will be created with non-zero size if
5829  * previously size was set non-zero on the master object. If object \a dt is
5830  * not local, then only fully defined striping can be applied in \a lovea.
5831  * Otherwise \a lovea can be in the form of pattern, see lod_qos_parse_config()
5832  * for the details.
5833  *
5834  * \param[in] env       execution environment
5835  * \param[in] dt        object
5836  * \param[in] attr      attributes the stripes will be created with
5837  * \param[in] lovea     a buffer containing striping description
5838  * \param[in] th        transaction handle
5839  *
5840  * \retval              0 on success
5841  * \retval              negative if failed
5842  */
5843 int lod_declare_striped_create(const struct lu_env *env, struct dt_object *dt,
5844                                struct lu_attr *attr,
5845                                const struct lu_buf *lovea, struct thandle *th)
5846 {
5847         struct lod_thread_info  *info = lod_env_info(env);
5848         struct dt_object        *next = dt_object_child(dt);
5849         struct lod_object       *lo = lod_dt_obj(dt);
5850         int                      rc;
5851         ENTRY;
5852
5853         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_ALLOC_OBDO))
5854                 GOTO(out, rc = -ENOMEM);
5855
5856         if (!dt_object_remote(next)) {
5857                 /* choose OST and generate appropriate objects */
5858                 rc = lod_prepare_create(env, lo, attr, lovea, th);
5859                 if (rc)
5860                         GOTO(out, rc);
5861
5862                 /*
5863                  * declare storage for striping data
5864                  */
5865                 info->lti_buf.lb_len = lod_comp_md_size(lo, false);
5866         } else {
5867                 /* LOD can not choose OST objects for remote objects, i.e.
5868                  * stripes must be ready before that. Right now, it can only
5869                  * happen during migrate, i.e. migrate process needs to create
5870                  * remote regular file (mdd_migrate_create), then the migrate
5871                  * process will provide stripeEA. */
5872                 LASSERT(lovea != NULL);
5873                 info->lti_buf = *lovea;
5874         }
5875
5876         rc = lod_sub_declare_xattr_set(env, next, &info->lti_buf,
5877                                        XATTR_NAME_LOV, 0, th);
5878         if (rc)
5879                 GOTO(out, rc);
5880
5881         /*
5882          * if striping is created with local object's size > 0,
5883          * we have to propagate this size to specific object
5884          * the case is possible only when local object was created previously
5885          */
5886         if (dt_object_exists(next))
5887                 rc = lod_declare_init_size(env, dt, th);
5888
5889 out:
5890         /* failed to create striping or to set initial size, let's reset
5891          * config so that others don't get confused */
5892         if (rc)
5893                 lod_striping_free(env, lo);
5894
5895         RETURN(rc);
5896 }
5897
5898 /*
5899  * Whether subdirectories under \a dt should be created on MDTs by space QoS
5900  *
5901  * If LMV_HASH_FLAG_SPACE is set on directory default layout, its subdirectories
5902  * should be created on MDT by space QoS.
5903  *
5904  * \param[in] env       execution environment
5905  * \param[in] dev       lu device
5906  * \param[in] dt        object
5907  *
5908  * \retval              1 if directory should create subdir by space usage
5909  * \retval              0 if not
5910  * \retval              -ev if failed
5911  */
5912 static inline int dt_object_qos_mkdir(const struct lu_env *env,
5913                                       struct lu_device *dev,
5914                                       struct dt_object *dt)
5915 {
5916         struct lod_thread_info *info = lod_env_info(env);
5917         struct lu_object *obj;
5918         struct lod_object *lo;
5919         struct lmv_user_md *lmu;
5920         int rc;
5921
5922         obj = lu_object_find_slice(env, dev, lu_object_fid(&dt->do_lu), NULL);
5923         if (IS_ERR(obj))
5924                 return PTR_ERR(obj);
5925
5926         lo = lu2lod_obj(obj);
5927
5928         rc = lod_get_default_lmv_ea(env, lo);
5929         dt_object_put(env, dt);
5930         if (rc <= 0)
5931                 return rc;
5932
5933         if (rc < (int)sizeof(*lmu))
5934                 return -EINVAL;
5935
5936         lmu = info->lti_ea_store;
5937         return le32_to_cpu(lmu->lum_stripe_offset) == LMV_OFFSET_DEFAULT;
5938 }
5939
5940 /**
5941  * Implementation of dt_object_operations::do_declare_create.
5942  *
5943  * The method declares creation of a new object. If the object will be striped,
5944  * then helper functions are called to find FIDs for the stripes, declare
5945  * creation of the stripes and declare initialization of the striping
5946  * information to be stored in the master object.
5947  *
5948  * \see dt_object_operations::do_declare_create() in the API description
5949  * for details.
5950  */
5951 static int lod_declare_create(const struct lu_env *env, struct dt_object *dt,
5952                               struct lu_attr *attr,
5953                               struct dt_allocation_hint *hint,
5954                               struct dt_object_format *dof, struct thandle *th)
5955 {
5956         struct dt_object   *next = dt_object_child(dt);
5957         struct lod_object  *lo = lod_dt_obj(dt);
5958         int                 rc;
5959         ENTRY;
5960
5961         LASSERT(dof);
5962         LASSERT(attr);
5963         LASSERT(th);
5964
5965         /*
5966          * first of all, we declare creation of local object
5967          */
5968         rc = lod_sub_declare_create(env, next, attr, hint, dof, th);
5969         if (rc != 0)
5970                 GOTO(out, rc);
5971
5972         /*
5973          * it's lod_ah_init() that has decided the object will be striped
5974          */
5975         if (dof->dof_type == DFT_REGULAR) {
5976                 /* callers don't want stripes */
5977                 /* XXX: all tricky interactions with ->ah_make_hint() decided
5978                  * to use striping, then ->declare_create() behaving differently
5979                  * should be cleaned */
5980                 if (dof->u.dof_reg.striped != 0)
5981                         rc = lod_declare_striped_create(env, dt, attr,
5982                                                         NULL, th);
5983         } else if (dof->dof_type == DFT_DIR) {
5984                 struct seq_server_site *ss;
5985                 struct lu_buf buf = { NULL };
5986                 struct lu_buf *lmu = NULL;
5987
5988                 ss = lu_site2seq(dt->do_lu.lo_dev->ld_site);
5989
5990                 /* If the parent has default stripeEA, and client
5991                  * did not find it before sending create request,
5992                  * then MDT will return -EREMOTE, and client will
5993                  * retrieve the default stripeEA and re-create the
5994                  * sub directory.
5995                  *
5996                  * Note: if dah_eadata != NULL, it means creating the
5997                  * striped directory with specified stripeEA, then it
5998                  * should ignore the default stripeEA */
5999                 if (hint != NULL && hint->dah_eadata == NULL) {
6000                         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_STALE_DIR_LAYOUT))
6001                                 GOTO(out, rc = -EREMOTE);
6002
6003                         if (lo->ldo_dir_stripe_offset != LMV_OFFSET_DEFAULT &&
6004                             lo->ldo_dir_stripe_offset != ss->ss_node_id) {
6005                                 struct lod_device *lod;
6006                                 struct lu_tgt_desc *mdt = NULL;
6007                                 bool found_mdt = false;
6008
6009                                 lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
6010                                 lod_foreach_mdt(lod, mdt) {
6011                                         if (mdt->ltd_index ==
6012                                                 lo->ldo_dir_stripe_offset) {
6013                                                 found_mdt = true;
6014                                                 break;
6015                                         }
6016                                 }
6017
6018                                 /* If the MDT indicated by stripe_offset can be
6019                                  * found, then tell client to resend the create
6020                                  * request to the correct MDT, otherwise return
6021                                  * error to client */
6022                                 if (found_mdt)
6023                                         GOTO(out, rc = -EREMOTE);
6024                                 else
6025                                         GOTO(out, rc = -EINVAL);
6026                         }
6027                 } else if (hint && hint->dah_eadata) {
6028                         lmu = &buf;
6029                         lmu->lb_buf = (void *)hint->dah_eadata;
6030                         lmu->lb_len = hint->dah_eadata_len;
6031                 }
6032
6033                 rc = lod_declare_dir_striping_create(env, dt, attr, lmu, dof,
6034                                                      th);
6035         }
6036 out:
6037         /* failed to create striping or to set initial size, let's reset
6038          * config so that others don't get confused */
6039         if (rc)
6040                 lod_striping_free(env, lo);
6041         RETURN(rc);
6042 }
6043
6044 /**
6045  * Generate component ID for new created component.
6046  *
6047  * \param[in] lo                LOD object
6048  * \param[in] comp_idx          index of ldo_comp_entries
6049  *
6050  * \retval                      component ID on success
6051  * \retval                      LCME_ID_INVAL on failure
6052  */
6053 static __u32 lod_gen_component_id(struct lod_object *lo,
6054                                   int mirror_id, int comp_idx)
6055 {
6056         struct lod_layout_component *lod_comp;
6057         __u32   id, start, end;
6058         int     i;
6059
6060         LASSERT(lo->ldo_comp_entries[comp_idx].llc_id == LCME_ID_INVAL);
6061
6062         lod_obj_inc_layout_gen(lo);
6063         id = lo->ldo_layout_gen;
6064         if (likely(id <= SEQ_ID_MAX))
6065                 RETURN(pflr_id(mirror_id, id & SEQ_ID_MASK));
6066
6067         /* Layout generation wraps, need to check collisions. */
6068         start = id & SEQ_ID_MASK;
6069         end = SEQ_ID_MAX;
6070 again:
6071         for (id = start; id <= end; id++) {
6072                 for (i = 0; i < lo->ldo_comp_cnt; i++) {
6073                         lod_comp = &lo->ldo_comp_entries[i];
6074                         if (pflr_id(mirror_id, id) == lod_comp->llc_id)
6075                                 break;
6076                 }
6077                 /* Found the ununsed ID */
6078                 if (i == lo->ldo_comp_cnt)
6079                         RETURN(pflr_id(mirror_id, id));
6080         }
6081         if (end == LCME_ID_MAX) {
6082                 start = 1;
6083                 end = min(lo->ldo_layout_gen & LCME_ID_MASK,
6084                           (__u32)(LCME_ID_MAX - 1));
6085                 goto again;
6086         }
6087
6088         RETURN(LCME_ID_INVAL);
6089 }
6090
6091 /**
6092  * Creation of a striped regular object.
6093  *
6094  * The function is called to create the stripe objects for a regular
6095  * striped file. This can happen at the initial object creation or
6096  * when the caller asks LOD to do so using ->do_xattr_set() method
6097  * (so called late striping). Notice all the information are already
6098  * prepared in the form of the list of objects (ldo_stripe field).
6099  * This is done during declare phase.
6100  *
6101  * \param[in] env       execution environment
6102  * \param[in] dt        object
6103  * \param[in] attr      attributes the stripes will be created with
6104  * \param[in] dof       format of stripes (see OSD API description)
6105  * \param[in] th        transaction handle
6106  *
6107  * \retval              0 on success
6108  * \retval              negative if failed
6109  */
6110 int lod_striped_create(const struct lu_env *env, struct dt_object *dt,
6111                        struct lu_attr *attr, struct dt_object_format *dof,
6112                        struct thandle *th)
6113 {
6114         struct lod_layout_component     *lod_comp;
6115         struct lod_object       *lo = lod_dt_obj(dt);
6116         __u16   mirror_id;
6117         int     rc = 0, i, j;
6118         ENTRY;
6119
6120         mutex_lock(&lo->ldo_layout_mutex);
6121
6122         LASSERT((lo->ldo_comp_cnt != 0 && lo->ldo_comp_entries != NULL) ||
6123                 lo->ldo_is_foreign);
6124
6125         mirror_id = 0; /* non-flr file's mirror_id is 0 */
6126         if (lo->ldo_mirror_count > 1) {
6127                 for (i = 0; i < lo->ldo_comp_cnt; i++) {
6128                         lod_comp = &lo->ldo_comp_entries[i];
6129                         if (lod_comp->llc_id != LCME_ID_INVAL &&
6130                             mirror_id_of(lod_comp->llc_id) > mirror_id)
6131                                 mirror_id = mirror_id_of(lod_comp->llc_id);
6132                 }
6133         }
6134
6135         /* create all underlying objects */
6136         for (i = 0; i < lo->ldo_comp_cnt; i++) {
6137                 lod_comp = &lo->ldo_comp_entries[i];
6138
6139                 if (lod_comp->llc_id == LCME_ID_INVAL) {
6140                         /* only the component of FLR layout with more than 1
6141                          * mirror has mirror ID in its component ID.
6142                          */
6143                         if (lod_comp->llc_extent.e_start == 0 &&
6144                             lo->ldo_mirror_count > 1)
6145                                 ++mirror_id;
6146
6147                         lod_comp->llc_id = lod_gen_component_id(lo,
6148                                                                 mirror_id, i);
6149                         if (lod_comp->llc_id == LCME_ID_INVAL)
6150                                 GOTO(out, rc = -ERANGE);
6151                 }
6152
6153                 if (lod_comp_inited(lod_comp))
6154                         continue;
6155
6156                 if (lod_comp->llc_pattern & LOV_PATTERN_F_RELEASED)
6157                         lod_comp_set_init(lod_comp);
6158
6159                 if (lov_pattern(lod_comp->llc_pattern) == LOV_PATTERN_MDT)
6160                         lod_comp_set_init(lod_comp);
6161
6162                 if (lod_comp->llc_stripe == NULL)
6163                         continue;
6164
6165                 LASSERT(lod_comp->llc_stripe_count);
6166                 for (j = 0; j < lod_comp->llc_stripe_count; j++) {
6167                         struct dt_object *object = lod_comp->llc_stripe[j];
6168                         LASSERT(object != NULL);
6169                         rc = lod_sub_create(env, object, attr, NULL, dof, th);
6170                         if (rc)
6171                                 GOTO(out, rc);
6172                 }
6173                 lod_comp_set_init(lod_comp);
6174         }
6175
6176         rc = lod_fill_mirrors(lo);
6177         if (rc)
6178                 GOTO(out, rc);
6179
6180         lo->ldo_comp_cached = 1;
6181
6182         rc = lod_generate_and_set_lovea(env, lo, th);
6183         if (rc)
6184                 GOTO(out, rc);
6185
6186         mutex_unlock(&lo->ldo_layout_mutex);
6187
6188         RETURN(0);
6189
6190 out:
6191         lod_striping_free_nolock(env, lo);
6192         mutex_unlock(&lo->ldo_layout_mutex);
6193
6194         RETURN(rc);
6195 }
6196
6197 static inline bool lod_obj_is_dom(struct dt_object *dt)
6198 {
6199         struct lod_object *lo = lod_dt_obj(dt);
6200
6201         if (!dt_object_exists(dt_object_child(dt)))
6202                 return false;
6203
6204         if (S_ISDIR(dt->do_lu.lo_header->loh_attr))
6205                 return false;
6206
6207         if (!lo->ldo_comp_cnt)
6208                 return false;
6209
6210         return (lov_pattern(lo->ldo_comp_entries[0].llc_pattern) ==
6211                 LOV_PATTERN_MDT);
6212 }
6213
6214 /**
6215  * Implementation of dt_object_operations::do_create.
6216  *
6217  * If any of preceeding methods (like ->do_declare_create(),
6218  * ->do_ah_init(), etc) chose to create a striped object,
6219  * then this method will create the master and the stripes.
6220  *
6221  * \see dt_object_operations::do_create() in the API description for details.
6222  */
6223 static int lod_create(const struct lu_env *env, struct dt_object *dt,
6224                       struct lu_attr *attr, struct dt_allocation_hint *hint,
6225                       struct dt_object_format *dof, struct thandle *th)
6226 {
6227         int                 rc;
6228         ENTRY;
6229
6230         /* create local object */
6231         rc = lod_sub_create(env, dt_object_child(dt), attr, hint, dof, th);
6232         if (rc != 0)
6233                 RETURN(rc);
6234
6235         if (S_ISREG(dt->do_lu.lo_header->loh_attr) &&
6236             (lod_obj_is_striped(dt) || lod_obj_is_dom(dt)) &&
6237             dof->u.dof_reg.striped != 0) {
6238                 LASSERT(lod_dt_obj(dt)->ldo_comp_cached == 0);
6239                 rc = lod_striped_create(env, dt, attr, dof, th);
6240         }
6241
6242         RETURN(rc);
6243 }
6244
6245 static inline int
6246 lod_obj_stripe_destroy_cb(const struct lu_env *env, struct lod_object *lo,
6247                           struct dt_object *dt, struct thandle *th,
6248                           int comp_idx, int stripe_idx,
6249                           struct lod_obj_stripe_cb_data *data)
6250 {
6251         if (data->locd_declare)
6252                 return lod_sub_declare_destroy(env, dt, th);
6253
6254         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_SPEOBJ) ||
6255             stripe_idx == cfs_fail_val)
6256                 return lod_sub_destroy(env, dt, th);
6257
6258         return 0;
6259 }
6260
6261 /**
6262  * Implementation of dt_object_operations::do_declare_destroy.
6263  *
6264  * If the object is a striped directory, then the function declares reference
6265  * removal from the master object (this is an index) to the stripes and declares
6266  * destroy of all the stripes. In all the cases, it declares an intention to
6267  * destroy the object itself.
6268  *
6269  * \see dt_object_operations::do_declare_destroy() in the API description
6270  * for details.
6271  */
6272 static int lod_declare_destroy(const struct lu_env *env, struct dt_object *dt,
6273                                struct thandle *th)
6274 {
6275         struct dt_object *next = dt_object_child(dt);
6276         struct lod_object *lo = lod_dt_obj(dt);
6277         struct lod_thread_info *info = lod_env_info(env);
6278         struct dt_object *stripe;
6279         char *stripe_name = info->lti_key;
6280         int rc, i;
6281
6282         ENTRY;
6283
6284         /*
6285          * load striping information, notice we don't do this when object
6286          * is being initialized as we don't need this information till
6287          * few specific cases like destroy, chown
6288          */
6289         rc = lod_striping_load(env, lo);
6290         if (rc)
6291                 RETURN(rc);
6292
6293         /* declare destroy for all underlying objects */
6294         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
6295                 rc = next->do_ops->do_index_try(env, next,
6296                                                 &dt_directory_features);
6297                 if (rc != 0)
6298                         RETURN(rc);
6299
6300                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
6301                         stripe = lo->ldo_stripe[i];
6302                         if (!stripe)
6303                                 continue;
6304
6305                         rc = lod_sub_declare_ref_del(env, next, th);
6306                         if (rc != 0)
6307                                 RETURN(rc);
6308
6309                         snprintf(stripe_name, sizeof(info->lti_key),
6310                                  DFID":%d",
6311                                  PFID(lu_object_fid(&stripe->do_lu)), i);
6312                         rc = lod_sub_declare_delete(env, next,
6313                                         (const struct dt_key *)stripe_name, th);
6314                         if (rc != 0)
6315                                 RETURN(rc);
6316                 }
6317         }
6318
6319         /*
6320          * we declare destroy for the local object
6321          */
6322         rc = lod_sub_declare_destroy(env, next, th);
6323         if (rc)
6324                 RETURN(rc);
6325
6326         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ) ||
6327             OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ2))
6328                 RETURN(0);
6329
6330         if (!lod_obj_is_striped(dt))
6331                 RETURN(0);
6332
6333         /* declare destroy all striped objects */
6334         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
6335                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
6336                         stripe = lo->ldo_stripe[i];
6337                         if (!stripe)
6338                                 continue;
6339
6340                         if (!dt_object_exists(stripe))
6341                                 continue;
6342
6343                         rc = lod_sub_declare_ref_del(env, stripe, th);
6344                         if (rc != 0)
6345                                 break;
6346
6347                         rc = lod_sub_declare_destroy(env, stripe, th);
6348                         if (rc != 0)
6349                                 break;
6350                 }
6351         } else {
6352                 struct lod_obj_stripe_cb_data data = { { 0 } };
6353
6354                 data.locd_declare = true;
6355                 data.locd_stripe_cb = lod_obj_stripe_destroy_cb;
6356                 rc = lod_obj_for_each_stripe(env, lo, th, &data);
6357         }
6358
6359         RETURN(rc);
6360 }
6361
6362 /**
6363  * Implementation of dt_object_operations::do_destroy.
6364  *
6365  * If the object is a striped directory, then the function removes references
6366  * from the master object (this is an index) to the stripes and destroys all
6367  * the stripes. In all the cases, the function destroys the object itself.
6368  *
6369  * \see dt_object_operations::do_destroy() in the API description for details.
6370  */
6371 static int lod_destroy(const struct lu_env *env, struct dt_object *dt,
6372                        struct thandle *th)
6373 {
6374         struct dt_object  *next = dt_object_child(dt);
6375         struct lod_object *lo = lod_dt_obj(dt);
6376         struct lod_thread_info *info = lod_env_info(env);
6377         char *stripe_name = info->lti_key;
6378         struct dt_object *stripe;
6379         unsigned int i;
6380         int rc;
6381
6382         ENTRY;
6383
6384         /* destroy sub-stripe of master object */
6385         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
6386                 rc = next->do_ops->do_index_try(env, next,
6387                                                 &dt_directory_features);
6388                 if (rc != 0)
6389                         RETURN(rc);
6390
6391                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
6392                         stripe = lo->ldo_stripe[i];
6393                         if (!stripe)
6394                                 continue;
6395
6396                         rc = lod_sub_ref_del(env, next, th);
6397                         if (rc != 0)
6398                                 RETURN(rc);
6399
6400                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
6401                                 PFID(lu_object_fid(&stripe->do_lu)), i);
6402
6403                         CDEBUG(D_INFO, DFID" delete stripe %s "DFID"\n",
6404                                PFID(lu_object_fid(&dt->do_lu)), stripe_name,
6405                                PFID(lu_object_fid(&stripe->do_lu)));
6406
6407                         rc = lod_sub_delete(env, next,
6408                                        (const struct dt_key *)stripe_name, th);
6409                         if (rc != 0)
6410                                 RETURN(rc);
6411                 }
6412         }
6413
6414         rc = lod_sub_destroy(env, next, th);
6415         if (rc != 0)
6416                 RETURN(rc);
6417
6418         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ) ||
6419             OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ2))
6420                 RETURN(0);
6421
6422         if (!lod_obj_is_striped(dt))
6423                 RETURN(0);
6424
6425         /* destroy all striped objects */
6426         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
6427                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
6428                         stripe = lo->ldo_stripe[i];
6429                         if (!stripe)
6430                                 continue;
6431
6432                         if (!dt_object_exists(stripe))
6433                                 continue;
6434
6435                         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_SPEOBJ) ||
6436                             i == cfs_fail_val) {
6437                                 dt_write_lock(env, stripe, DT_TGT_CHILD);
6438                                 rc = lod_sub_ref_del(env, stripe, th);
6439                                 dt_write_unlock(env, stripe);
6440                                 if (rc != 0)
6441                                         break;
6442
6443                                 rc = lod_sub_destroy(env, stripe, th);
6444                                 if (rc != 0)
6445                                         break;
6446                         }
6447                 }
6448         } else {
6449                 struct lod_obj_stripe_cb_data data = { { 0 } };
6450
6451                 data.locd_declare = false;
6452                 data.locd_stripe_cb = lod_obj_stripe_destroy_cb;
6453                 rc = lod_obj_for_each_stripe(env, lo, th, &data);
6454         }
6455
6456         RETURN(rc);
6457 }
6458
6459 /**
6460  * Implementation of dt_object_operations::do_declare_ref_add.
6461  *
6462  * \see dt_object_operations::do_declare_ref_add() in the API description
6463  * for details.
6464  */
6465 static int lod_declare_ref_add(const struct lu_env *env,
6466                                struct dt_object *dt, struct thandle *th)
6467 {
6468         return lod_sub_declare_ref_add(env, dt_object_child(dt), th);
6469 }
6470
6471 /**
6472  * Implementation of dt_object_operations::do_ref_add.
6473  *
6474  * \see dt_object_operations::do_ref_add() in the API description for details.
6475  */
6476 static int lod_ref_add(const struct lu_env *env,
6477                        struct dt_object *dt, struct thandle *th)
6478 {
6479         return lod_sub_ref_add(env, dt_object_child(dt), th);
6480 }
6481
6482 /**
6483  * Implementation of dt_object_operations::do_declare_ref_del.
6484  *
6485  * \see dt_object_operations::do_declare_ref_del() in the API description
6486  * for details.
6487  */
6488 static int lod_declare_ref_del(const struct lu_env *env,
6489                                struct dt_object *dt, struct thandle *th)
6490 {
6491         return lod_sub_declare_ref_del(env, dt_object_child(dt), th);
6492 }
6493
6494 /**
6495  * Implementation of dt_object_operations::do_ref_del
6496  *
6497  * \see dt_object_operations::do_ref_del() in the API description for details.
6498  */
6499 static int lod_ref_del(const struct lu_env *env,
6500                        struct dt_object *dt, struct thandle *th)
6501 {
6502         return lod_sub_ref_del(env, dt_object_child(dt), th);
6503 }
6504
6505 /**
6506  * Implementation of dt_object_operations::do_object_sync.
6507  *
6508  * \see dt_object_operations::do_object_sync() in the API description
6509  * for details.
6510  */
6511 static int lod_object_sync(const struct lu_env *env, struct dt_object *dt,
6512                            __u64 start, __u64 end)
6513 {
6514         return dt_object_sync(env, dt_object_child(dt), start, end);
6515 }
6516
6517 /**
6518  * Implementation of dt_object_operations::do_object_unlock.
6519  *
6520  * Used to release LDLM lock(s).
6521  *
6522  * \see dt_object_operations::do_object_unlock() in the API description
6523  * for details.
6524  */
6525 static int lod_object_unlock(const struct lu_env *env, struct dt_object *dt,
6526                              struct ldlm_enqueue_info *einfo,
6527                              union ldlm_policy_data *policy)
6528 {
6529         struct lod_object *lo = lod_dt_obj(dt);
6530         struct lustre_handle_array *slave_locks = einfo->ei_cbdata;
6531         int slave_locks_size;
6532         int i;
6533         ENTRY;
6534
6535         if (slave_locks == NULL)
6536                 RETURN(0);
6537
6538         LASSERT(S_ISDIR(dt->do_lu.lo_header->loh_attr));
6539         /* Note: for remote lock for single stripe dir, MDT will cancel
6540          * the lock by lockh directly */
6541         LASSERT(!dt_object_remote(dt_object_child(dt)));
6542
6543         /* locks were unlocked in MDT layer */
6544         for (i = 0; i < slave_locks->ha_count; i++)
6545                 LASSERT(!lustre_handle_is_used(&slave_locks->ha_handles[i]));
6546
6547         /*
6548          * NB, ha_count may not equal to ldo_dir_stripe_count, because dir
6549          * layout may change, e.g., shrink dir layout after migration.
6550          */
6551         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
6552                 if (lo->ldo_stripe[i])
6553                         dt_invalidate(env, lo->ldo_stripe[i]);
6554         }
6555
6556         slave_locks_size = offsetof(typeof(*slave_locks),
6557                                     ha_handles[slave_locks->ha_count]);
6558         OBD_FREE(slave_locks, slave_locks_size);
6559         einfo->ei_cbdata = NULL;
6560
6561         RETURN(0);
6562 }
6563
6564 /**
6565  * Implementation of dt_object_operations::do_object_lock.
6566  *
6567  * Used to get LDLM lock on the non-striped and striped objects.
6568  *
6569  * \see dt_object_operations::do_object_lock() in the API description
6570  * for details.
6571  */
6572 static int lod_object_lock(const struct lu_env *env,
6573                            struct dt_object *dt,
6574                            struct lustre_handle *lh,
6575                            struct ldlm_enqueue_info *einfo,
6576                            union ldlm_policy_data *policy)
6577 {
6578         struct lod_object *lo = lod_dt_obj(dt);
6579         int slave_locks_size;
6580         struct lustre_handle_array *slave_locks = NULL;
6581         int i;
6582         int rc;
6583         ENTRY;
6584
6585         /* remote object lock */
6586         if (!einfo->ei_enq_slave) {
6587                 LASSERT(dt_object_remote(dt));
6588                 return dt_object_lock(env, dt_object_child(dt), lh, einfo,
6589                                       policy);
6590         }
6591
6592         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr))
6593                 RETURN(-ENOTDIR);
6594
6595         rc = lod_striping_load(env, lo);
6596         if (rc != 0)
6597                 RETURN(rc);
6598
6599         /* No stripes */
6600         if (lo->ldo_dir_stripe_count <= 1)
6601                 RETURN(0);
6602
6603         slave_locks_size = offsetof(typeof(*slave_locks),
6604                                     ha_handles[lo->ldo_dir_stripe_count]);
6605         /* Freed in lod_object_unlock */
6606         OBD_ALLOC(slave_locks, slave_locks_size);
6607         if (!slave_locks)
6608                 RETURN(-ENOMEM);
6609         slave_locks->ha_count = lo->ldo_dir_stripe_count;
6610
6611         /* striped directory lock */
6612         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
6613                 struct lustre_handle lockh;
6614                 struct ldlm_res_id *res_id;
6615                 struct dt_object *stripe;
6616
6617                 stripe = lo->ldo_stripe[i];
6618                 if (!stripe)
6619                         continue;
6620
6621                 res_id = &lod_env_info(env)->lti_res_id;
6622                 fid_build_reg_res_name(lu_object_fid(&stripe->do_lu), res_id);
6623                 einfo->ei_res_id = res_id;
6624
6625                 if (dt_object_remote(stripe)) {
6626                         set_bit(i, (void *)slave_locks->ha_map);
6627                         rc = dt_object_lock(env, stripe, &lockh, einfo, policy);
6628                 } else {
6629                         struct ldlm_namespace *ns = einfo->ei_namespace;
6630                         ldlm_blocking_callback blocking = einfo->ei_cb_local_bl;
6631                         ldlm_completion_callback completion = einfo->ei_cb_cp;
6632                         __u64 dlmflags = LDLM_FL_ATOMIC_CB;
6633
6634                         if (einfo->ei_mode == LCK_PW ||
6635                             einfo->ei_mode == LCK_EX)
6636                                 dlmflags |= LDLM_FL_COS_INCOMPAT;
6637
6638                         LASSERT(ns != NULL);
6639                         rc = ldlm_cli_enqueue_local(env, ns, res_id, LDLM_IBITS,
6640                                                     policy, einfo->ei_mode,
6641                                                     &dlmflags, blocking,
6642                                                     completion, NULL,
6643                                                     NULL, 0, LVB_T_NONE,
6644                                                     NULL, &lockh);
6645                 }
6646                 if (rc) {
6647                         while (i--)
6648                                 ldlm_lock_decref_and_cancel(
6649                                                 &slave_locks->ha_handles[i],
6650                                                 einfo->ei_mode);
6651                         OBD_FREE(slave_locks, slave_locks_size);
6652                         RETURN(rc);
6653                 }
6654                 slave_locks->ha_handles[i] = lockh;
6655         }
6656         einfo->ei_cbdata = slave_locks;
6657
6658         RETURN(0);
6659 }
6660
6661 /**
6662  * Implementation of dt_object_operations::do_invalidate.
6663  *
6664  * \see dt_object_operations::do_invalidate() in the API description for details
6665  */
6666 static int lod_invalidate(const struct lu_env *env, struct dt_object *dt)
6667 {
6668         return dt_invalidate(env, dt_object_child(dt));
6669 }
6670
6671 static int lod_declare_instantiate_components(const struct lu_env *env,
6672                                               struct lod_object *lo,
6673                                               struct thandle *th,
6674                                               __u64 reserve)
6675 {
6676         struct lod_thread_info *info = lod_env_info(env);
6677         int i;
6678         int rc = 0;
6679         ENTRY;
6680
6681         LASSERT(info->lti_count < lo->ldo_comp_cnt);
6682
6683         for (i = 0; i < info->lti_count; i++) {
6684                 rc = lod_qos_prep_create(env, lo, NULL, th,
6685                                          info->lti_comp_idx[i], reserve);
6686                 if (rc)
6687                         break;
6688         }
6689
6690         if (!rc) {
6691                 info->lti_buf.lb_len = lod_comp_md_size(lo, false);
6692                 rc = lod_sub_declare_xattr_set(env, lod_object_child(lo),
6693                                 &info->lti_buf, XATTR_NAME_LOV, 0, th);
6694         }
6695
6696         RETURN(rc);
6697 }
6698
6699 /**
6700  * Check OSTs for an existing component for further extension
6701  *
6702  * Checks if OSTs are still healthy and not out of space.  Gets free space
6703  * on OSTs (relative to allocation watermark rmb_low) and compares to
6704  * the proposed new_end for this component.
6705  *
6706  * Decides whether or not to extend a component on its current OSTs.
6707  *
6708  * \param[in] env               execution environment for this thread
6709  * \param[in] lo                object we're checking
6710  * \param[in] index             index of this component
6711  * \param[in] extension_size    extension size for this component
6712  * \param[in] extent            layout extent for requested operation
6713  * \param[in] comp_extent       extension component extent
6714  * \param[in] write             if this is write operation
6715  *
6716  * \retval      true - OK to extend on current OSTs
6717  * \retval      false - do not extend on current OSTs
6718  */
6719 static bool lod_sel_osts_allowed(const struct lu_env *env,
6720                                  struct lod_object *lo,
6721                                  int index, __u64 reserve,
6722                                  struct lu_extent *extent,
6723                                  struct lu_extent *comp_extent, int write)
6724 {
6725         struct lod_layout_component *lod_comp = &lo->ldo_comp_entries[index];
6726         struct lod_device *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
6727         struct lod_thread_info *tinfo = lod_env_info(env);
6728         struct obd_statfs *sfs = &tinfo->lti_osfs;
6729         __u64 available = 0;
6730         bool ret = true;
6731         int i, rc;
6732
6733         ENTRY;
6734
6735         LASSERT(lod_comp->llc_stripe_count != 0);
6736
6737         lod_getref(&lod->lod_ost_descs);
6738         for (i = 0; i < lod_comp->llc_stripe_count; i++) {
6739                 int index = lod_comp->llc_ost_indices[i];
6740                 struct lod_tgt_desc *ost = OST_TGT(lod, index);
6741                 struct obd_statfs_info info = { 0 };
6742                 int j, repeated = 0;
6743
6744                 LASSERT(ost);
6745
6746                 /* Get the number of times this OST repeats in this component.
6747                  * Note: inter-component repeats are not counted as this is
6748                  * considered as a rare case: we try to not repeat OST in other
6749                  * components if possible. */
6750                 for (j = 0; j < lod_comp->llc_stripe_count; j++) {
6751                         if (index != lod_comp->llc_ost_indices[j])
6752                                 continue;
6753
6754                         /* already handled */
6755                         if (j < i)
6756                                 break;
6757
6758                         repeated++;
6759                 }
6760                 if (j < lod_comp->llc_stripe_count)
6761                         continue;
6762
6763                 if (!test_bit(index, lod->lod_ost_bitmap)) {
6764                         CDEBUG(D_LAYOUT, "ost %d no longer present\n", index);
6765                         ret = false;
6766                         break;
6767                 }
6768
6769                 rc = dt_statfs_info(env, ost->ltd_tgt, sfs, &info);
6770                 if (rc) {
6771                         CDEBUG(D_LAYOUT, "statfs failed for ost %d, error %d\n",
6772                                index, rc);
6773                         ret = false;
6774                         break;
6775                 }
6776
6777                 if (sfs->os_state & OS_STATFS_ENOSPC ||
6778                     sfs->os_state & OS_STATFS_READONLY ||
6779                     sfs->os_state & OS_STATFS_DEGRADED) {
6780                         CDEBUG(D_LAYOUT, "ost %d is not availble for SEL "
6781                                "extension, state %u\n", index, sfs->os_state);
6782                         ret = false;
6783                         break;
6784                 }
6785
6786                 /* In bytes */
6787                 available = sfs->os_bavail * sfs->os_bsize;
6788                 /* 'available' is relative to the allocation threshold */
6789                 available -= (__u64) info.os_reserved_mb_low << 20;
6790
6791                 CDEBUG(D_LAYOUT, "ost %d lowwm: %d highwm: %d, "
6792                        "%llu %% blocks available, %llu %% blocks free\n",
6793                        index, info.os_reserved_mb_low, info.os_reserved_mb_high,
6794                        (100ull * sfs->os_bavail) / sfs->os_blocks,
6795                        (100ull * sfs->os_bfree) / sfs->os_blocks);
6796
6797                 if (reserve * repeated > available) {
6798                         ret = false;
6799                         CDEBUG(D_LAYOUT, "low space on ost %d, available %llu "
6800                                "< extension size %llu repeated %d\n", index,
6801                                available, reserve, repeated);
6802                         break;
6803                 }
6804         }
6805         lod_putref(lod, &lod->lod_ost_descs);
6806
6807         RETURN(ret);
6808 }
6809
6810 /**
6811  * Adjust extents after component removal
6812  *
6813  * When we remove an extension component, we move the start of the next
6814  * component to match the start of the extension component, so no space is left
6815  * without layout.
6816  *
6817  * \param[in] env       execution environment for this thread
6818  * \param[in] lo        object
6819  * \param[in] max_comp  layout component
6820  * \param[in] index     index of this component
6821  *
6822  * \retval              0 on success
6823  * \retval              negative errno on error
6824  */
6825 static void lod_sel_adjust_extents(const struct lu_env *env,
6826                                    struct lod_object *lo,
6827                                    int max_comp, int index)
6828 {
6829         struct lod_layout_component *lod_comp = NULL;
6830         struct lod_layout_component *next = NULL;
6831         struct lod_layout_component *prev = NULL;
6832         __u64 new_start = 0;
6833         __u64 start;
6834         int i;
6835
6836         /* Extension space component */
6837         lod_comp = &lo->ldo_comp_entries[index];
6838         next = &lo->ldo_comp_entries[index + 1];
6839         prev = &lo->ldo_comp_entries[index - 1];
6840
6841         LASSERT(lod_comp != NULL && prev != NULL && next != NULL);
6842         LASSERT(lod_comp->llc_flags & LCME_FL_EXTENSION);
6843
6844         /* Previous is being removed */
6845         if (prev && prev->llc_id == LCME_ID_INVAL)
6846                 new_start = prev->llc_extent.e_start;
6847         else
6848                 new_start = lod_comp->llc_extent.e_start;
6849
6850         for (i = index + 1; i < max_comp; i++) {
6851                 lod_comp = &lo->ldo_comp_entries[i];
6852
6853                 start = lod_comp->llc_extent.e_start;
6854                 lod_comp->llc_extent.e_start = new_start;
6855
6856                 /* We only move zero length extendable components */
6857                 if (!(start == lod_comp->llc_extent.e_end))
6858                         break;
6859
6860                 LASSERT(!(lod_comp->llc_flags & LCME_FL_INIT));
6861
6862                 lod_comp->llc_extent.e_end = new_start;
6863         }
6864 }
6865
6866 /* Calculate the proposed 'new end' for a component we're extending */
6867 static __u64 lod_extension_new_end(__u64 extension_size, __u64 extent_end,
6868                                    __u32 stripe_size, __u64 component_end,
6869                                    __u64 extension_end)
6870 {
6871         __u64 new_end;
6872
6873         LASSERT(extension_size != 0 && stripe_size != 0);
6874
6875         /* Round up to extension size */
6876         if (extent_end == OBD_OBJECT_EOF) {
6877                 new_end = OBD_OBJECT_EOF;
6878         } else {
6879                 /* Add at least extension_size to the previous component_end,
6880                  * covering the req layout extent */
6881                 new_end = max(extent_end - component_end, extension_size);
6882                 new_end = roundup(new_end, extension_size);
6883                 new_end += component_end;
6884
6885                 /* Component end must be min stripe size aligned */
6886                 if (new_end % stripe_size) {
6887                         CDEBUG(D_LAYOUT, "new component end is not aligned "
6888                                "by the stripe size %u: [%llu, %llu) ext size "
6889                                "%llu new end %llu, aligning\n",
6890                                stripe_size, component_end, extent_end,
6891                                extension_size, new_end);
6892                         new_end = roundup(new_end, stripe_size);
6893                 }
6894
6895                 /* Overflow */
6896                 if (new_end < extent_end)
6897                         new_end = OBD_OBJECT_EOF;
6898         }
6899
6900         /* Don't extend past the end of the extension component */
6901         if (new_end > extension_end)
6902                 new_end = extension_end;
6903
6904         return new_end;
6905 }
6906
6907 /**
6908  * Calculate the exact reservation (per-OST extension_size) on the OSTs being
6909  * instantiated. It needs to be calculated in advance and taken into account at
6910  * the instantiation time, because otherwise lod_statfs_and_check() may consider
6911  * an OST as OK, but SEL needs its extension_size to fit the free space and the
6912  * OST may turn out to be low-on-space, thus inappropriate OST may be used and
6913  * ENOSPC occurs.
6914  *
6915  * \param[in] lod_comp          lod component we are checking
6916  *
6917  * \retval      size to reserved on each OST of lod_comp's stripe.
6918  */
6919 static __u64 lod_sel_stripe_reserved(struct lod_layout_component *lod_comp)
6920 {
6921         /* extension_size is file level, so we must divide by stripe count to
6922          * compare it to available space on a single OST */
6923         return  lod_comp->llc_stripe_size * SEL_UNIT_SIZE /
6924                 lod_comp->llc_stripe_count;
6925 }
6926
6927 /* As lod_sel_handler() could be re-entered for the same component several
6928  * times, this is the data for the next call. Fields could be changed to
6929  * component indexes when needed, (e.g. if there is no need to instantiate
6930  * all the previous components up to the current position) to tell the caller
6931  * where to start over from. */
6932 struct sel_data {
6933         int sd_force;
6934         int sd_repeat;
6935 };
6936
6937 /**
6938  * Process extent updates for a particular layout component
6939  *
6940  * Handle layout updates for a particular extension space component touched by
6941  * a layout update operation.  Core function of self-extending PFL feature.
6942  *
6943  * In general, this function processes exactly *one* stage of an extension
6944  * operation, modifying the layout accordingly, then returns to the caller.
6945  * The caller is responsible for restarting processing with the new layout,
6946  * which may repeatedly return to this function until the extension updates
6947  * are complete.
6948  *
6949  * This function does one of a few things to the layout:
6950  * 1. Extends the component before the current extension space component to
6951  * allow it to accomodate the requested operation (if space/policy permit that
6952  * component to continue on its current OSTs)
6953  *
6954  * 2. If extension of the existing component fails, we do one of two things:
6955  *    a. If there is a component after the extension space, we remove the
6956  *       extension space component, move the start of the next component down
6957  *       accordingly, then notify the caller to restart processing w/the new
6958  *       layout.
6959  *    b. If there is no following component, we try repeating the current
6960  *       component, creating a new component using the current one as a
6961  *       template (keeping its stripe properties but not specific striping),
6962  *       and try assigning striping for this component.  If there is sufficient
6963  *       free space on the OSTs chosen for this component, it is instantiated
6964  *       and i/o continues there.
6965  *
6966  *       If there is not sufficient space on the new OSTs, we remove this new
6967  *       component & extend the current component.
6968  *
6969  * Note further that uninited components followed by extension space can be zero
6970  * length meaning that we will try to extend them before initializing them, and
6971  * if that fails, they will be removed without initialization.
6972  *
6973  * 3. If we extend to/beyond the end of an extension space component, that
6974  * component is exhausted (all of its range has been given to real components),
6975  * so we remove it and restart processing.
6976  *
6977  * \param[in] env               execution environment for this thread
6978  * \param[in,out] lo            object to update the layout of
6979  * \param[in] extent            layout extent for requested operation, update
6980  *                              layout to fit this operation
6981  * \param[in] th                transaction handle for this operation
6982  * \param[in,out] max_comp      the highest comp for the portion of the layout
6983  *                              we are operating on (For FLR, the chosen
6984  *                              replica).  Updated because we may remove
6985  *                              components.
6986  * \param[in] index             index of the extension space component we're
6987  *                              working on
6988  * \param[in] write             if this is write op
6989  * \param[in,out] force         if the extension is to be forced; set here
6990                                 to force it on the 2nd call for the same
6991                                 extension component
6992  *
6993  * \retval      0 on success
6994  * \retval      negative errno on error
6995  */
6996 static int lod_sel_handler(const struct lu_env *env,
6997                           struct lod_object *lo,
6998                           struct lu_extent *extent,
6999                           struct thandle *th, int *max_comp,
7000                           int index, int write,
7001                           struct sel_data *sd)
7002 {
7003         struct lod_device *d = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
7004         struct lod_thread_info *info = lod_env_info(env);
7005         struct lod_layout_component *lod_comp;
7006         struct lod_layout_component *prev;
7007         struct lod_layout_component *next = NULL;
7008         __u64 extension_size, reserve;
7009         __u64 new_end = 0;
7010         bool repeated;
7011         int change = 0;
7012         int rc = 0;
7013         ENTRY;
7014
7015         /* First component cannot be extension space */
7016         if (index == 0) {
7017                 CERROR("%s: "DFID" first component cannot be extension space\n",
7018                        lod2obd(d)->obd_name, PFID(lod_object_fid(lo)));
7019                 RETURN(-EINVAL);
7020         }
7021
7022         lod_comp = &lo->ldo_comp_entries[index];
7023         prev = &lo->ldo_comp_entries[index - 1];
7024         if ((index + 1) < *max_comp)
7025                 next = &lo->ldo_comp_entries[index + 1];
7026
7027         /* extension size uses the stripe size field as KiB */
7028         extension_size = lod_comp->llc_stripe_size * SEL_UNIT_SIZE;
7029
7030         CDEBUG(D_LAYOUT, "prev start %llu, extension start %llu, extension end"
7031                " %llu, extension size %llu\n", prev->llc_extent.e_start,
7032                lod_comp->llc_extent.e_start, lod_comp->llc_extent.e_end,
7033                extension_size);
7034
7035         /* Two extension space components cannot be adjacent & extension space
7036          * components cannot be init */
7037         if ((prev->llc_flags & LCME_FL_EXTENSION) ||
7038             !(ergo(next, !(next->llc_flags & LCME_FL_EXTENSION))) ||
7039              lod_comp_inited(lod_comp)) {
7040                 CERROR("%s: "DFID" invalid extension space components\n",
7041                        lod2obd(d)->obd_name, PFID(lod_object_fid(lo)));
7042                 RETURN(-EINVAL);
7043         }
7044
7045         reserve = lod_sel_stripe_reserved(lod_comp);
7046
7047         if (!prev->llc_stripe) {
7048                 CDEBUG(D_LAYOUT, "Previous component not inited\n");
7049                 info->lti_count = 1;
7050                 info->lti_comp_idx[0] = index - 1;
7051                 rc = lod_declare_instantiate_components(env, lo, th, reserve);
7052                 /* ENOSPC tells us we can't use this component.  If there is
7053                  * a next or we are repeating, we either spill over (next) or
7054                  * extend the original comp (repeat).  Otherwise, return the
7055                  * error to the user. */
7056                 if (rc == -ENOSPC && (next || sd->sd_repeat))
7057                         rc = 1;
7058                 if (rc < 0)
7059                         RETURN(rc);
7060         }
7061
7062         if (sd->sd_force == 0 && rc == 0)
7063                 rc = !lod_sel_osts_allowed(env, lo, index - 1, reserve, extent,
7064                                            &lod_comp->llc_extent, write);
7065
7066         repeated = !!(sd->sd_repeat);
7067         sd->sd_repeat = 0;
7068         sd->sd_force = 0;
7069
7070         /* Extend previous component */
7071         if (rc == 0) {
7072                 new_end = lod_extension_new_end(extension_size, extent->e_end,
7073                                                 prev->llc_stripe_size,
7074                                                 prev->llc_extent.e_end,
7075                                                 lod_comp->llc_extent.e_end);
7076
7077                 CDEBUG(D_LAYOUT, "new end %llu\n", new_end);
7078                 lod_comp->llc_extent.e_start = new_end;
7079                 prev->llc_extent.e_end = new_end;
7080
7081                 if (prev->llc_extent.e_end == lod_comp->llc_extent.e_end) {
7082                         CDEBUG(D_LAYOUT, "Extension component exhausted\n");
7083                         lod_comp->llc_id = LCME_ID_INVAL;
7084                         change--;
7085                 }
7086         } else {
7087                 /* rc == 1, failed to extend current component */
7088                 LASSERT(rc == 1);
7089                 if (next) {
7090                         /* Normal 'spillover' case - Remove the extension
7091                          * space component & bring down the start of the next
7092                          * component. */
7093                         lod_comp->llc_id = LCME_ID_INVAL;
7094                         change--;
7095                         if (!(prev->llc_flags & LCME_FL_INIT)) {
7096                                 prev->llc_id = LCME_ID_INVAL;
7097                                 change--;
7098                         }
7099                         lod_sel_adjust_extents(env, lo, *max_comp, index);
7100                 } else if (lod_comp_inited(prev)) {
7101                         /* If there is no next, and the previous component is
7102                          * INIT'ed, try repeating the previous component. */
7103                         LASSERT(repeated == 0);
7104                         rc = lod_layout_repeat_comp(env, lo, index - 1);
7105                         if (rc < 0)
7106                                 RETURN(rc);
7107                         change++;
7108                         /* The previous component is a repeated component.
7109                          * Record this so we don't keep trying to repeat it. */
7110                         sd->sd_repeat = 1;
7111                 } else {
7112                         /* If the previous component is not INIT'ed, this may
7113                          * be a component we have just instantiated but failed
7114                          * to extend. Or even a repeated component we failed
7115                          * to prepare a striping for. Do not repeat but instead
7116                          * remove the repeated component & force the extention
7117                          * of the original one */
7118                         sd->sd_force = 1;
7119                         if (repeated) {
7120                                 prev->llc_id = LCME_ID_INVAL;
7121                                 change--;
7122                         }
7123                 }
7124         }
7125
7126         if (change < 0) {
7127                 rc = lod_layout_del_prep_layout(env, lo, NULL);
7128                 if (rc < 0)
7129                         RETURN(rc);
7130                 LASSERTF(-rc == change,
7131                          "number deleted %d != requested %d\n", -rc,
7132                          change);
7133         }
7134         *max_comp = *max_comp + change;
7135
7136         /* lod_del_prep_layout reallocates ldo_comp_entries, so we must
7137          * refresh these pointers before using them */
7138         lod_comp = &lo->ldo_comp_entries[index];
7139         prev = &lo->ldo_comp_entries[index - 1];
7140         CDEBUG(D_LAYOUT, "After extent updates: prev start %llu, current start "
7141                "%llu, current end %llu max_comp %d ldo_comp_cnt %d\n",
7142                prev->llc_extent.e_start, lod_comp->llc_extent.e_start,
7143                lod_comp->llc_extent.e_end, *max_comp, lo->ldo_comp_cnt);
7144
7145         /* Layout changed successfully */
7146         RETURN(0);
7147 }
7148
7149 /**
7150  * Declare layout extent updates
7151  *
7152  * Handles extensions.  Identifies extension components touched by current
7153  * operation and passes them to processing function.
7154  *
7155  * Restarts with updated layouts from the processing function until the current
7156  * operation no longer touches an extension space component.
7157  *
7158  * \param[in] env       execution environment for this thread
7159  * \param[in,out] lo    object to update the layout of
7160  * \param[in] extent    layout extent for requested operation, update layout to
7161  *                      fit this operation
7162  * \param[in] th        transaction handle for this operation
7163  * \param[in] pick      identifies chosen mirror for FLR layouts
7164  * \param[in] write     if this is write op
7165  *
7166  * \retval      1 on layout changed, 0 on no change
7167  * \retval      negative errno on error
7168  */
7169 static int lod_declare_update_extents(const struct lu_env *env,
7170                 struct lod_object *lo, struct lu_extent *extent,
7171                 struct thandle *th, int pick, int write)
7172 {
7173         struct lod_thread_info *info = lod_env_info(env);
7174         struct lod_layout_component *lod_comp;
7175         bool layout_changed = false;
7176         struct sel_data sd = { 0 };
7177         int start_index;
7178         int i = 0;
7179         int max_comp = 0;
7180         int rc = 0, rc2;
7181         int change = 0;
7182         ENTRY;
7183
7184         /* This makes us work on the components of the chosen mirror */
7185         start_index = lo->ldo_mirrors[pick].lme_start;
7186         max_comp = lo->ldo_mirrors[pick].lme_end + 1;
7187         if (lo->ldo_flr_state == LCM_FL_NONE)
7188                 LASSERT(start_index == 0 && max_comp == lo->ldo_comp_cnt);
7189
7190         CDEBUG(D_LAYOUT, "extent->e_start %llu, extent->e_end %llu\n",
7191                extent->e_start, extent->e_end);
7192         for (i = start_index; i < max_comp; i++) {
7193                 lod_comp = &lo->ldo_comp_entries[i];
7194
7195                 /* We've passed all components of interest */
7196                 if (lod_comp->llc_extent.e_start >= extent->e_end)
7197                         break;
7198
7199                 if (lod_comp->llc_flags & LCME_FL_EXTENSION) {
7200                         layout_changed = true;
7201                         rc = lod_sel_handler(env, lo, extent, th, &max_comp,
7202                                              i, write, &sd);
7203                         if (rc < 0)
7204                                 GOTO(out, rc);
7205
7206                         /* Nothing has changed behind the prev one */
7207                         i -= 2;
7208                         continue;
7209                 }
7210         }
7211
7212         /* We may have added or removed components.  If so, we must update the
7213          * start & ends of all the mirrors after the current one, and the end
7214          * of the current mirror. */
7215         change = max_comp - 1 - lo->ldo_mirrors[pick].lme_end;
7216         if (change) {
7217                 lo->ldo_mirrors[pick].lme_end += change;
7218                 for (i = pick + 1; i < lo->ldo_mirror_count; i++) {
7219                         lo->ldo_mirrors[i].lme_start += change;
7220                         lo->ldo_mirrors[i].lme_end += change;
7221                 }
7222         }
7223
7224         EXIT;
7225 out:
7226         /* The amount of components has changed, adjust the lti_comp_idx */
7227         rc2 = lod_layout_data_init(info, lo->ldo_comp_cnt);
7228
7229         return rc < 0 ? rc : rc2 < 0 ? rc2 : layout_changed;
7230 }
7231
7232 /* If striping is already instantiated or INIT'ed DOM? */
7233 static bool lod_is_instantiation_needed(struct lod_layout_component *comp)
7234 {
7235         return !(((lov_pattern(comp->llc_pattern) == LOV_PATTERN_MDT) &&
7236                   lod_comp_inited(comp)) || comp->llc_stripe);
7237 }
7238
7239 /**
7240  * Declare layout update for a non-FLR layout.
7241  *
7242  * \param[in] env       execution environment for this thread
7243  * \param[in,out] lo    object to update the layout of
7244  * \param[in] layout    layout intent for requested operation, "update" is
7245  *                      a process of reacting to this
7246  * \param[in] buf       buffer containing lov ea (see comment on usage inline)
7247  * \param[in] th        transaction handle for this operation
7248  *
7249  * \retval      0 on success
7250  * \retval      negative errno on error
7251  */
7252 static int lod_declare_update_plain(const struct lu_env *env,
7253                 struct lod_object *lo, struct layout_intent *layout,
7254                 const struct lu_buf *buf, struct thandle *th)
7255 {
7256         struct lod_thread_info *info = lod_env_info(env);
7257         struct lod_device *d = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
7258         struct lod_layout_component *lod_comp;
7259         struct lov_comp_md_v1 *comp_v1 = NULL;
7260         bool layout_changed = false;
7261         bool replay = false;
7262         int i, rc;
7263         ENTRY;
7264
7265         LASSERT(lo->ldo_flr_state == LCM_FL_NONE);
7266
7267         /*
7268          * In case the client is passing lovea, which only happens during
7269          * the replay of layout intent write RPC for now, we may need to
7270          * parse the lovea and apply new layout configuration.
7271          */
7272         if (buf && buf->lb_len)  {
7273                 struct lov_user_md_v1 *v1 = buf->lb_buf;
7274
7275                 if (v1->lmm_magic != (LOV_MAGIC_DEFINED | LOV_MAGIC_COMP_V1) &&
7276                     v1->lmm_magic != __swab32(LOV_MAGIC_DEFINED |
7277                                               LOV_MAGIC_COMP_V1)) {
7278                         CERROR("%s: the replay buffer of layout extend "
7279                                "(magic %#x) does not contain expected "
7280                                "composite layout.\n",
7281                                lod2obd(d)->obd_name, v1->lmm_magic);
7282                         GOTO(out, rc = -EINVAL);
7283                 }
7284
7285                 rc = lod_use_defined_striping(env, lo, buf);
7286                 if (rc)
7287                         GOTO(out, rc);
7288                 lo->ldo_comp_cached = 1;
7289
7290                 rc = lod_get_lov_ea(env, lo);
7291                 if (rc <= 0)
7292                         GOTO(out, rc);
7293                 /* old on-disk EA is stored in info->lti_buf */
7294                 comp_v1 = (struct lov_comp_md_v1 *)info->lti_buf.lb_buf;
7295                 replay = true;
7296                 layout_changed = true;
7297
7298                 rc = lod_layout_data_init(info, lo->ldo_comp_cnt);
7299                 if (rc)
7300                         GOTO(out, rc);
7301         } else {
7302                 /* non replay path */
7303                 rc = lod_striping_load(env, lo);
7304                 if (rc)
7305                         GOTO(out, rc);
7306         }
7307
7308         /* Make sure defined layout covers the requested write range. */
7309         lod_comp = &lo->ldo_comp_entries[lo->ldo_comp_cnt - 1];
7310         if (lo->ldo_comp_cnt > 1 &&
7311             lod_comp->llc_extent.e_end != OBD_OBJECT_EOF &&
7312             lod_comp->llc_extent.e_end < layout->li_extent.e_end) {
7313                 CDEBUG_LIMIT(replay ? D_ERROR : D_LAYOUT,
7314                              "%s: the defined layout [0, %#llx) does not "
7315                              "covers the write range "DEXT"\n",
7316                              lod2obd(d)->obd_name, lod_comp->llc_extent.e_end,
7317                              PEXT(&layout->li_extent));
7318                 GOTO(out, rc = -EINVAL);
7319         }
7320
7321         CDEBUG(D_LAYOUT, "%s: "DFID": update components "DEXT"\n",
7322                lod2obd(d)->obd_name, PFID(lod_object_fid(lo)),
7323                PEXT(&layout->li_extent));
7324
7325         if (!replay) {
7326                 rc = lod_declare_update_extents(env, lo, &layout->li_extent,
7327                                 th, 0, layout->li_opc == LAYOUT_INTENT_WRITE);
7328                 if (rc < 0)
7329                         GOTO(out, rc);
7330                 else if (rc)
7331                         layout_changed = true;
7332         }
7333
7334         /*
7335          * Iterate ld->ldo_comp_entries, find the component whose extent under
7336          * the write range and not instantianted.
7337          */
7338         for (i = 0; i < lo->ldo_comp_cnt; i++) {
7339                 lod_comp = &lo->ldo_comp_entries[i];
7340
7341                 if (lod_comp->llc_extent.e_start >= layout->li_extent.e_end)
7342                         break;
7343
7344                 if (!replay) {
7345                         /* If striping is instantiated or INIT'ed DOM skip */
7346                         if (!lod_is_instantiation_needed(lod_comp))
7347                                 continue;
7348                 } else {
7349                         /**
7350                          * In replay path, lod_comp is the EA passed by
7351                          * client replay buffer,  comp_v1 is the pre-recovery
7352                          * on-disk EA, we'd sift out those components which
7353                          * were init-ed in the on-disk EA.
7354                          */
7355                         if (le32_to_cpu(comp_v1->lcm_entries[i].lcme_flags) &
7356                             LCME_FL_INIT)
7357                                 continue;
7358                 }
7359                 /*
7360                  * this component hasn't instantiated in normal path, or during
7361                  * replay it needs replay the instantiation.
7362                  */
7363
7364                 /* A released component is being extended */
7365                 if (lod_comp->llc_pattern & LOV_PATTERN_F_RELEASED)
7366                         GOTO(out, rc = -EINVAL);
7367
7368                 LASSERT(info->lti_comp_idx != NULL);
7369                 info->lti_comp_idx[info->lti_count++] = i;
7370                 layout_changed = true;
7371         }
7372
7373         if (!layout_changed)
7374                 RETURN(-EALREADY);
7375
7376         lod_obj_inc_layout_gen(lo);
7377         rc = lod_declare_instantiate_components(env, lo, th, 0);
7378         EXIT;
7379 out:
7380         if (rc)
7381                 lod_striping_free(env, lo);
7382         return rc;
7383 }
7384
7385 static inline int lod_comp_index(struct lod_object *lo,
7386                                  struct lod_layout_component *lod_comp)
7387 {
7388         LASSERT(lod_comp >= lo->ldo_comp_entries &&
7389                 lod_comp <= &lo->ldo_comp_entries[lo->ldo_comp_cnt - 1]);
7390
7391         return lod_comp - lo->ldo_comp_entries;
7392 }
7393
7394 /**
7395  * Stale other mirrors by writing extent.
7396  */
7397 static int lod_stale_components(const struct lu_env *env, struct lod_object *lo,
7398                                 int primary, struct lu_extent *extent,
7399                                 struct thandle *th)
7400 {
7401         struct lod_layout_component *pri_comp, *lod_comp;
7402         struct lu_extent pri_extent;
7403         int rc = 0;
7404         int i;
7405         ENTRY;
7406
7407         /* The writing extent decides which components in the primary
7408          * are affected... */
7409         CDEBUG(D_LAYOUT, "primary mirror %d, "DEXT"\n", primary, PEXT(extent));
7410
7411 restart:
7412         lod_foreach_mirror_comp(pri_comp, lo, primary) {
7413                 if (!lu_extent_is_overlapped(extent, &pri_comp->llc_extent))
7414                         continue;
7415
7416                 CDEBUG(D_LAYOUT, "primary comp %u "DEXT"\n",
7417                        lod_comp_index(lo, pri_comp),
7418                        PEXT(&pri_comp->llc_extent));
7419
7420                 pri_extent.e_start = pri_comp->llc_extent.e_start;
7421                 pri_extent.e_end = pri_comp->llc_extent.e_end;
7422
7423                 for (i = 0; i < lo->ldo_mirror_count; i++) {
7424                         if (i == primary)
7425                                 continue;
7426                         rc = lod_declare_update_extents(env, lo, &pri_extent,
7427                                                         th, i, 0);
7428                         /* if update_extents changed the layout, it may have
7429                          * reallocated the component array, so start over to
7430                          * avoid using stale pointers */
7431                         if (rc == 1)
7432                                 goto restart;
7433                         if (rc < 0)
7434                                 RETURN(rc);
7435
7436                         /* ... and then stale other components that are
7437                          * overlapping with primary components */
7438                         lod_foreach_mirror_comp(lod_comp, lo, i) {
7439                                 if (!lu_extent_is_overlapped(
7440                                                         &pri_extent,
7441                                                         &lod_comp->llc_extent))
7442                                         continue;
7443
7444                                 CDEBUG(D_LAYOUT, "stale: %u / %u\n",
7445                                       i, lod_comp_index(lo, lod_comp));
7446
7447                                 lod_comp->llc_flags |= LCME_FL_STALE;
7448                                 lo->ldo_mirrors[i].lme_stale = 1;
7449                         }
7450                 }
7451         }
7452
7453         RETURN(rc);
7454 }
7455
7456 /**
7457  * check an OST's availability
7458  * \param[in] env       execution environment
7459  * \param[in] lo        lod object
7460  * \param[in] dt        dt object
7461  * \param[in] index     mirror index
7462  *
7463  * \retval      negative if failed
7464  * \retval      1 if \a dt is available
7465  * \retval      0 if \a dt is not available
7466  */
7467 static inline int lod_check_ost_avail(const struct lu_env *env,
7468                                       struct lod_object *lo,
7469                                       struct dt_object *dt, int index)
7470 {
7471         struct lod_device *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
7472         struct lod_tgt_desc *ost;
7473         __u32 idx;
7474         int type = LU_SEQ_RANGE_OST;
7475         int rc;
7476
7477         rc = lod_fld_lookup(env, lod, lu_object_fid(&dt->do_lu), &idx, &type);
7478         if (rc < 0) {
7479                 CERROR("%s: can't locate "DFID":rc = %d\n",
7480                        lod2obd(lod)->obd_name, PFID(lu_object_fid(&dt->do_lu)),
7481                        rc);
7482                 return rc;
7483         }
7484
7485         ost = OST_TGT(lod, idx);
7486         if (ost->ltd_statfs.os_state &
7487                 (OS_STATFS_READONLY | OS_STATFS_ENOSPC | OS_STATFS_ENOINO |
7488                  OS_STATFS_NOPRECREATE) ||
7489             ost->ltd_active == 0) {
7490                 CDEBUG(D_LAYOUT, DFID ": mirror %d OST%d unavail, rc = %d\n",
7491                        PFID(lod_object_fid(lo)), index, idx, rc);
7492                 return 0;
7493         }
7494
7495         return 1;
7496 }
7497
7498 /**
7499  * Pick primary mirror for write
7500  * \param[in] env       execution environment
7501  * \param[in] lo        object
7502  * \param[in] extent    write range
7503  */
7504 static int lod_primary_pick(const struct lu_env *env, struct lod_object *lo,
7505                             struct lu_extent *extent)
7506 {
7507         struct lod_device *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
7508         unsigned int seq = 0;
7509         struct lod_layout_component *lod_comp;
7510         int i, j, rc;
7511         int picked = -1, second_pick = -1, third_pick = -1;
7512         ENTRY;
7513
7514         if (OBD_FAIL_CHECK(OBD_FAIL_FLR_RANDOM_PICK_MIRROR)) {
7515                 get_random_bytes(&seq, sizeof(seq));
7516                 seq %= lo->ldo_mirror_count;
7517         }
7518
7519         /**
7520          * Pick a mirror as the primary, and check the availability of OSTs.
7521          *
7522          * This algo can be revised later after knowing the topology of
7523          * cluster.
7524          */
7525         lod_qos_statfs_update(env, lod, &lod->lod_ost_descs);
7526
7527         rc = lod_fill_mirrors(lo);
7528         if (rc)
7529                 RETURN(rc);
7530
7531         for (i = 0; i < lo->ldo_mirror_count; i++) {
7532                 bool ost_avail = true;
7533                 int index = (i + seq) % lo->ldo_mirror_count;
7534
7535                 if (lo->ldo_mirrors[index].lme_stale) {
7536                         CDEBUG(D_LAYOUT, DFID": mirror %d stale\n",
7537                                PFID(lod_object_fid(lo)), index);
7538                         continue;
7539                 }
7540
7541                 /* 2nd pick is for the primary mirror containing unavail OST */
7542                 if (lo->ldo_mirrors[index].lme_prefer && second_pick < 0)
7543                         second_pick = index;
7544
7545                 /* 3rd pick is for non-primary mirror containing unavail OST */
7546                 if (second_pick < 0 && third_pick < 0)
7547                         third_pick = index;
7548
7549                 /**
7550                  * we found a non-primary 1st pick, we'd like to find a
7551                  * potential pirmary mirror.
7552                  */
7553                 if (picked >= 0 && !lo->ldo_mirrors[index].lme_prefer)
7554                         continue;
7555
7556                 /* check the availability of OSTs */
7557                 lod_foreach_mirror_comp(lod_comp, lo, index) {
7558                         if (!lod_comp_inited(lod_comp) || !lod_comp->llc_stripe)
7559                                 continue;
7560
7561                         for (j = 0; j < lod_comp->llc_stripe_count; j++) {
7562                                 struct dt_object *dt = lod_comp->llc_stripe[j];
7563
7564                                 rc = lod_check_ost_avail(env, lo, dt, index);
7565                                 if (rc < 0)
7566                                         RETURN(rc);
7567
7568                                 ost_avail = !!rc;
7569                                 if (!ost_avail)
7570                                         break;
7571                         } /* for all dt object in one component */
7572                         if (!ost_avail)
7573                                 break;
7574                 } /* for all components in a mirror */
7575
7576                 /**
7577                  * the OSTs where allocated objects locates in the components
7578                  * of the mirror are available.
7579                  */
7580                 if (!ost_avail)
7581                         continue;
7582
7583                 /* this mirror has all OSTs available */
7584                 picked = index;
7585
7586                 /**
7587                  * primary with all OSTs are available, this is the perfect
7588                  * 1st pick.
7589                  */
7590                 if (lo->ldo_mirrors[index].lme_prefer)
7591                         break;
7592         } /* for all mirrors */
7593
7594         /* failed to pick a sound mirror, lower our expectation */
7595         if (picked < 0)
7596                 picked = second_pick;
7597         if (picked < 0)
7598                 picked = third_pick;
7599         if (picked < 0)
7600                 RETURN(-ENODATA);
7601
7602         RETURN(picked);
7603 }
7604
7605 static int lod_prepare_resync_mirror(const struct lu_env *env,
7606                                      struct lod_object *lo,
7607                                      __u16 mirror_id)
7608 {
7609         struct lod_thread_info *info = lod_env_info(env);
7610         struct lod_layout_component *lod_comp;
7611         bool neg = !!(MIRROR_ID_NEG & mirror_id);
7612         int i;
7613
7614         mirror_id &= ~MIRROR_ID_NEG;
7615
7616         for (i = 0; i < lo->ldo_mirror_count; i++) {
7617                 if ((!neg && lo->ldo_mirrors[i].lme_id != mirror_id) ||
7618                     (neg && lo->ldo_mirrors[i].lme_id == mirror_id))
7619                         continue;
7620
7621                 lod_foreach_mirror_comp(lod_comp, lo, i) {
7622                         if (lod_comp_inited(lod_comp))
7623                                 continue;
7624
7625                         info->lti_comp_idx[info->lti_count++] =
7626                                 lod_comp_index(lo, lod_comp);
7627                 }
7628         }
7629
7630         return 0;
7631 }
7632
7633 /**
7634  * figure out the components should be instantiated for resync.
7635  */
7636 static int lod_prepare_resync(const struct lu_env *env, struct lod_object *lo,
7637                               struct lu_extent *extent)
7638 {
7639         struct lod_thread_info *info = lod_env_info(env);
7640         struct lod_layout_component *lod_comp;
7641         unsigned int need_sync = 0;
7642         int i;
7643
7644         CDEBUG(D_LAYOUT,
7645                DFID": instantiate all stale components in "DEXT"\n",
7646                PFID(lod_object_fid(lo)), PEXT(extent));
7647
7648         /**
7649          * instantiate all components within this extent, even non-stale
7650          * components.
7651          */
7652         for (i = 0; i < lo->ldo_mirror_count; i++) {
7653                 if (!lo->ldo_mirrors[i].lme_stale)
7654                         continue;
7655
7656                 lod_foreach_mirror_comp(lod_comp, lo, i) {
7657                         if (!lu_extent_is_overlapped(extent,
7658                                                 &lod_comp->llc_extent))
7659                                 break;
7660
7661                         need_sync++;
7662
7663                         if (lod_comp_inited(lod_comp))
7664                                 continue;
7665
7666                         CDEBUG(D_LAYOUT, "resync instantiate %d / %d\n",
7667                                i, lod_comp_index(lo, lod_comp));
7668                         info->lti_comp_idx[info->lti_count++] =
7669                                         lod_comp_index(lo, lod_comp);
7670                 }
7671         }
7672
7673         return need_sync ? 0 : -EALREADY;
7674 }
7675
7676 static int lod_declare_update_rdonly(const struct lu_env *env,
7677                 struct lod_object *lo, struct md_layout_change *mlc,
7678                 struct thandle *th)
7679 {
7680         struct lod_thread_info *info = lod_env_info(env);
7681         struct lu_attr *layout_attr = &info->lti_layout_attr;
7682         struct lod_layout_component *lod_comp;
7683         struct lu_extent extent = { 0 };
7684         int rc;
7685         ENTRY;
7686
7687         LASSERT(lo->ldo_flr_state == LCM_FL_RDONLY);
7688         LASSERT(mlc->mlc_opc == MD_LAYOUT_WRITE ||
7689                 mlc->mlc_opc == MD_LAYOUT_RESYNC);
7690         LASSERT(lo->ldo_mirror_count > 0);
7691
7692         if (mlc->mlc_opc == MD_LAYOUT_WRITE) {
7693                 struct layout_intent *layout = mlc->mlc_intent;
7694                 int write = layout->li_opc == LAYOUT_INTENT_WRITE;
7695                 int picked;
7696
7697                 extent = layout->li_extent;
7698                 CDEBUG(D_LAYOUT, DFID": trying to write :"DEXT"\n",
7699                        PFID(lod_object_fid(lo)), PEXT(&extent));
7700
7701                 picked = lod_primary_pick(env, lo, &extent);
7702                 if (picked < 0)
7703                         RETURN(picked);
7704
7705                 CDEBUG(D_LAYOUT, DFID": picked mirror id %u as primary\n",
7706                        PFID(lod_object_fid(lo)),
7707                        lo->ldo_mirrors[picked].lme_id);
7708
7709                 /* Update extents of primary before staling */
7710                 rc = lod_declare_update_extents(env, lo, &extent, th, picked,
7711                                                 write);
7712                 if (rc < 0)
7713                         GOTO(out, rc);
7714
7715                 if (layout->li_opc == LAYOUT_INTENT_TRUNC) {
7716                         /**
7717                          * trunc transfers [0, size) in the intent extent, we'd
7718                          * stale components overlapping [size, eof).
7719                          */
7720                         extent.e_start = extent.e_end;
7721                         extent.e_end = OBD_OBJECT_EOF;
7722                 }
7723
7724                 /* stale overlapping components from other mirrors */
7725                 rc = lod_stale_components(env, lo, picked, &extent, th);
7726                 if (rc < 0)
7727                         GOTO(out, rc);
7728
7729                 /* restore truncate intent extent */
7730                 if (layout->li_opc == LAYOUT_INTENT_TRUNC)
7731                         extent.e_end = extent.e_start;
7732
7733                 /* instantiate components for the picked mirror, start from 0 */
7734                 extent.e_start = 0;
7735
7736                 lod_foreach_mirror_comp(lod_comp, lo, picked) {
7737                         if (!lu_extent_is_overlapped(&extent,
7738                                                      &lod_comp->llc_extent))
7739                                 break;
7740
7741                         if (!lod_is_instantiation_needed(lod_comp))
7742                                 continue;
7743
7744                         info->lti_comp_idx[info->lti_count++] =
7745                                                 lod_comp_index(lo, lod_comp);
7746                 }
7747
7748                 lo->ldo_flr_state = LCM_FL_WRITE_PENDING;
7749         } else { /* MD_LAYOUT_RESYNC */
7750                 int i;
7751
7752                 /**
7753                  * could contain multiple non-stale mirrors, so we need to
7754                  * prep uninited all components assuming any non-stale mirror
7755                  * could be picked as the primary mirror.
7756                  */
7757                 if (mlc->mlc_mirror_id == 0) {
7758                         /* normal resync */
7759                         for (i = 0; i < lo->ldo_mirror_count; i++) {
7760                                 if (lo->ldo_mirrors[i].lme_stale)
7761                                         continue;
7762
7763                                 lod_foreach_mirror_comp(lod_comp, lo, i) {
7764                                         if (!lod_comp_inited(lod_comp))
7765                                                 break;
7766
7767                                         if (extent.e_end <
7768                                                 lod_comp->llc_extent.e_end)
7769                                                 extent.e_end =
7770                                                      lod_comp->llc_extent.e_end;
7771                                 }
7772                         }
7773                         rc = lod_prepare_resync(env, lo, &extent);
7774                         if (rc)
7775                                 GOTO(out, rc);
7776                 } else {
7777                         /* mirror write, try to init its all components */
7778                         rc = lod_prepare_resync_mirror(env, lo,
7779                                                        mlc->mlc_mirror_id);
7780                         if (rc)
7781                                 GOTO(out, rc);
7782                 }
7783
7784                 /* change the file state to SYNC_PENDING */
7785                 lo->ldo_flr_state = LCM_FL_SYNC_PENDING;
7786         }
7787
7788         /* Reset the layout version once it's becoming too large.
7789          * This way it can make sure that the layout version is
7790          * monotonously increased in this writing era. */
7791         lod_obj_inc_layout_gen(lo);
7792         if (lo->ldo_layout_gen > (LCME_ID_MAX >> 1)) {
7793                 __u32 layout_version;
7794
7795                 get_random_bytes(&layout_version, sizeof(layout_version));
7796                 lo->ldo_layout_gen = layout_version & 0xffff;
7797         }
7798
7799         rc = lod_declare_instantiate_components(env, lo, th, 0);
7800         if (rc)
7801                 GOTO(out, rc);
7802
7803         layout_attr->la_valid = LA_LAYOUT_VERSION;
7804         layout_attr->la_layout_version = 0; /* set current version */
7805         if (mlc->mlc_opc == MD_LAYOUT_RESYNC)
7806                 layout_attr->la_layout_version = LU_LAYOUT_RESYNC;
7807         rc = lod_declare_attr_set(env, &lo->ldo_obj, layout_attr, th);
7808         if (rc)
7809                 GOTO(out, rc);
7810
7811 out:
7812         if (rc)
7813                 lod_striping_free(env, lo);
7814         RETURN(rc);
7815 }
7816
7817 static int lod_declare_update_write_pending(const struct lu_env *env,
7818                 struct lod_object *lo, struct md_layout_change *mlc,
7819                 struct thandle *th)
7820 {
7821         struct lod_thread_info *info = lod_env_info(env);
7822         struct lu_attr *layout_attr = &info->lti_layout_attr;
7823         struct lod_layout_component *lod_comp;
7824         struct lu_extent extent = { 0 };
7825         int primary = -1;
7826         int i;
7827         int rc;
7828         ENTRY;
7829
7830         LASSERT(lo->ldo_flr_state == LCM_FL_WRITE_PENDING);
7831         LASSERT(mlc->mlc_opc == MD_LAYOUT_WRITE ||
7832                 mlc->mlc_opc == MD_LAYOUT_RESYNC);
7833
7834         /* look for the first preferred mirror */
7835         for (i = 0; i < lo->ldo_mirror_count; i++) {
7836                 if (lo->ldo_mirrors[i].lme_stale)
7837                         continue;
7838                 if (lo->ldo_mirrors[i].lme_prefer == 0)
7839                         continue;
7840
7841                 primary = i;
7842                 break;
7843         }
7844         if (primary < 0) {
7845                 /* no primary, use any in-sync */
7846                 for (i = 0; i < lo->ldo_mirror_count; i++) {
7847                         if (lo->ldo_mirrors[i].lme_stale)
7848                                 continue;
7849                         primary = i;
7850                         break;
7851                 }
7852                 if (primary < 0) {
7853                         CERROR(DFID ": doesn't have a primary mirror\n",
7854                                PFID(lod_object_fid(lo)));
7855                         GOTO(out, rc = -ENODATA);
7856                 }
7857         }
7858
7859         CDEBUG(D_LAYOUT, DFID": found primary %u\n",
7860                PFID(lod_object_fid(lo)), lo->ldo_mirrors[primary].lme_id);
7861
7862         LASSERT(!lo->ldo_mirrors[primary].lme_stale);
7863
7864         /* for LAYOUT_WRITE opc, it has to do the following operations:
7865          * 1. stale overlapping componets from stale mirrors;
7866          * 2. instantiate components of the primary mirror;
7867          * 3. transfter layout version to all objects of the primary;
7868          *
7869          * for LAYOUT_RESYNC opc, it will do:
7870          * 1. instantiate components of all stale mirrors;
7871          * 2. transfer layout version to all objects to close write era. */
7872
7873         if (mlc->mlc_opc == MD_LAYOUT_WRITE) {
7874                 struct layout_intent *layout = mlc->mlc_intent;
7875                 int write = layout->li_opc == LAYOUT_INTENT_WRITE;
7876
7877                 LASSERT(mlc->mlc_intent != NULL);
7878
7879                 extent = mlc->mlc_intent->li_extent;
7880
7881                 CDEBUG(D_LAYOUT, DFID": intent to write: "DEXT"\n",
7882                        PFID(lod_object_fid(lo)), PEXT(&extent));
7883
7884                 /* 1. Update extents of primary before staling */
7885                 rc = lod_declare_update_extents(env, lo, &extent, th, primary,
7886                                                 write);
7887                 if (rc < 0)
7888                         GOTO(out, rc);
7889
7890                 if (mlc->mlc_intent->li_opc == LAYOUT_INTENT_TRUNC) {
7891                         /**
7892                          * trunc transfers [0, size) in the intent extent, we'd
7893                          * stale components overlapping [size, eof).
7894                          */
7895                         extent.e_start = extent.e_end;
7896                         extent.e_end = OBD_OBJECT_EOF;
7897                 }
7898
7899                 /* 2. stale overlapping components */
7900                 rc = lod_stale_components(env, lo, primary, &extent, th);
7901                 if (rc < 0)
7902                         GOTO(out, rc);
7903
7904                 /* 3. find the components which need instantiating.
7905                  * instantiate [0, mlc->mlc_intent->e_end) */
7906
7907                 /* restore truncate intent extent */
7908                 if (mlc->mlc_intent->li_opc == LAYOUT_INTENT_TRUNC)
7909                         extent.e_end = extent.e_start;
7910                 extent.e_start = 0;
7911
7912                 lod_foreach_mirror_comp(lod_comp, lo, primary) {
7913                         if (!lu_extent_is_overlapped(&extent,
7914                                                      &lod_comp->llc_extent))
7915                                 break;
7916
7917                         if (!lod_is_instantiation_needed(lod_comp))
7918                                 continue;
7919
7920                         CDEBUG(D_LAYOUT, "write instantiate %d / %d\n",
7921                                primary, lod_comp_index(lo, lod_comp));
7922                         info->lti_comp_idx[info->lti_count++] =
7923                                                 lod_comp_index(lo, lod_comp);
7924                 }
7925         } else { /* MD_LAYOUT_RESYNC */
7926                 if (mlc->mlc_mirror_id == 0) {
7927                         /* normal resync */
7928                         lod_foreach_mirror_comp(lod_comp, lo, primary) {
7929                                 if (!lod_comp_inited(lod_comp))
7930                                         break;
7931
7932                                 extent.e_end = lod_comp->llc_extent.e_end;
7933                         }
7934
7935                         rc = lod_prepare_resync(env, lo, &extent);
7936                         if (rc)
7937                                 GOTO(out, rc);
7938                 } else {
7939                         /* mirror write, try to init its all components */
7940                         rc = lod_prepare_resync_mirror(env, lo,
7941                                                        mlc->mlc_mirror_id);
7942                         if (rc)
7943                                 GOTO(out, rc);
7944                 }
7945
7946                 /* change the file state to SYNC_PENDING */
7947                 lo->ldo_flr_state = LCM_FL_SYNC_PENDING;
7948         }
7949
7950         rc = lod_declare_instantiate_components(env, lo, th, 0);
7951         if (rc)
7952                 GOTO(out, rc);
7953
7954         /* 3. transfer layout version to OST objects.
7955          * transfer new layout version to OST objects so that stale writes
7956          * can be denied. It also ends an era of writing by setting
7957          * LU_LAYOUT_RESYNC. Normal client can never use this bit to
7958          * send write RPC; only resync RPCs could do it. */
7959         layout_attr->la_valid = LA_LAYOUT_VERSION;
7960         layout_attr->la_layout_version = 0; /* set current version */
7961         if (mlc->mlc_opc == MD_LAYOUT_RESYNC)
7962                 layout_attr->la_layout_version = LU_LAYOUT_RESYNC;
7963         rc = lod_declare_attr_set(env, &lo->ldo_obj, layout_attr, th);
7964         if (rc)
7965                 GOTO(out, rc);
7966
7967         lod_obj_inc_layout_gen(lo);
7968 out:
7969         if (rc)
7970                 lod_striping_free(env, lo);
7971         RETURN(rc);
7972 }
7973
7974 static int lod_declare_update_sync_pending(const struct lu_env *env,
7975                 struct lod_object *lo, struct md_layout_change *mlc,
7976                 struct thandle *th)
7977 {
7978         struct lod_thread_info  *info = lod_env_info(env);
7979         struct lu_attr *layout_attr = &info->lti_layout_attr;
7980         unsigned sync_components = 0;
7981         unsigned resync_components = 0;
7982         int i;
7983         int rc;
7984         ENTRY;
7985
7986         LASSERT(lo->ldo_flr_state == LCM_FL_SYNC_PENDING);
7987         LASSERT(mlc->mlc_opc == MD_LAYOUT_RESYNC_DONE ||
7988                 mlc->mlc_opc == MD_LAYOUT_WRITE);
7989
7990         CDEBUG(D_LAYOUT, DFID ": received op %d in sync pending\n",
7991                PFID(lod_object_fid(lo)), mlc->mlc_opc);
7992
7993         if (mlc->mlc_opc == MD_LAYOUT_WRITE) {
7994                 CDEBUG(D_LAYOUT, DFID": cocurrent write to sync pending\n",
7995                        PFID(lod_object_fid(lo)));
7996
7997                 lo->ldo_flr_state = LCM_FL_WRITE_PENDING;
7998                 return lod_declare_update_write_pending(env, lo, mlc, th);
7999         }
8000
8001         /* MD_LAYOUT_RESYNC_DONE */
8002
8003         for (i = 0; i < lo->ldo_comp_cnt; i++) {
8004                 struct lod_layout_component *lod_comp;
8005                 int j;
8006
8007                 lod_comp = &lo->ldo_comp_entries[i];
8008
8009                 if (!(lod_comp->llc_flags & LCME_FL_STALE)) {
8010                         sync_components++;
8011                         continue;
8012                 }
8013
8014                 for (j = 0; j < mlc->mlc_resync_count; j++) {
8015                         if (lod_comp->llc_id != mlc->mlc_resync_ids[j])
8016                                 continue;
8017
8018                         mlc->mlc_resync_ids[j] = LCME_ID_INVAL;
8019                         lod_comp->llc_flags &= ~LCME_FL_STALE;
8020                         resync_components++;
8021                         break;
8022                 }
8023         }
8024
8025         /* valid check */
8026         for (i = 0; i < mlc->mlc_resync_count; i++) {
8027                 if (mlc->mlc_resync_ids[i] == LCME_ID_INVAL)
8028                         continue;
8029
8030                 CDEBUG(D_LAYOUT, DFID": lcme id %u (%d / %zd) not exist "
8031                        "or already synced\n", PFID(lod_object_fid(lo)),
8032                        mlc->mlc_resync_ids[i], i, mlc->mlc_resync_count);
8033                 GOTO(out, rc = -EINVAL);
8034         }
8035
8036         if (!sync_components || (mlc->mlc_resync_count && !resync_components)) {
8037                 CDEBUG(D_LAYOUT, DFID": no mirror in sync\n",
8038                        PFID(lod_object_fid(lo)));
8039
8040                 /* tend to return an error code here to prevent
8041                  * the MDT from setting SoM attribute */
8042                 GOTO(out, rc = -EINVAL);
8043         }
8044
8045         CDEBUG(D_LAYOUT, DFID": synced %u resynced %u/%zu components\n",
8046                PFID(lod_object_fid(lo)),
8047                sync_components, resync_components, mlc->mlc_resync_count);
8048
8049         lo->ldo_flr_state = LCM_FL_RDONLY;
8050         lod_obj_inc_layout_gen(lo);
8051
8052         layout_attr->la_valid = LA_LAYOUT_VERSION;
8053         layout_attr->la_layout_version = 0; /* set current version */
8054         rc = lod_declare_attr_set(env, &lo->ldo_obj, layout_attr, th);
8055         if (rc)
8056                 GOTO(out, rc);
8057
8058         info->lti_buf.lb_len = lod_comp_md_size(lo, false);
8059         rc = lod_sub_declare_xattr_set(env, lod_object_child(lo),
8060                                        &info->lti_buf, XATTR_NAME_LOV, 0, th);
8061         EXIT;
8062
8063 out:
8064         if (rc)
8065                 lod_striping_free(env, lo);
8066         RETURN(rc);
8067 }
8068
8069 typedef int (*mlc_handler)(const struct lu_env *env, struct dt_object *dt,
8070                            const struct md_layout_change *mlc,
8071                            struct thandle *th);
8072
8073 /**
8074  * Attach stripes after target's for migrating directory. NB, we
8075  * only need to declare this, the actual work is done inside
8076  * lod_xattr_set_lmv().
8077  *
8078  * \param[in] env       execution environment
8079  * \param[in] dt        target object
8080  * \param[in] mlc       layout change data
8081  * \param[in] th        transaction handle
8082  *
8083  * \retval              0 on success
8084  * \retval              negative if failed
8085  */
8086 static int lod_dir_declare_layout_attach(const struct lu_env *env,
8087                                          struct dt_object *dt,
8088                                          const struct md_layout_change *mlc,
8089                                          struct thandle *th)
8090 {
8091         struct lod_thread_info *info = lod_env_info(env);
8092         struct lod_device *lod = lu2lod_dev(dt->do_lu.lo_dev);
8093         struct lod_tgt_descs *ltd = &lod->lod_mdt_descs;
8094         struct lod_object *lo = lod_dt_obj(dt);
8095         struct dt_object *next = dt_object_child(dt);
8096         struct dt_object_format *dof = &info->lti_format;
8097         struct lmv_mds_md_v1 *lmv = mlc->mlc_buf.lb_buf;
8098         struct dt_object **stripes;
8099         __u32 stripe_count = le32_to_cpu(lmv->lmv_stripe_count);
8100         struct lu_fid *fid = &info->lti_fid;
8101         struct lod_tgt_desc *tgt;
8102         struct dt_object *dto;
8103         struct dt_device *tgt_dt;
8104         int type = LU_SEQ_RANGE_ANY;
8105         struct dt_insert_rec *rec = &info->lti_dt_rec;
8106         char *stripe_name = info->lti_key;
8107         struct lu_name *sname;
8108         struct linkea_data ldata = { NULL };
8109         struct lu_buf linkea_buf;
8110         __u32 idx;
8111         int i;
8112         int rc;
8113
8114         ENTRY;
8115
8116         if (!lmv_is_sane(lmv))
8117                 RETURN(-EINVAL);
8118
8119         if (!dt_try_as_dir(env, dt))
8120                 return -ENOTDIR;
8121
8122         dof->dof_type = DFT_DIR;
8123
8124         OBD_ALLOC_PTR_ARRAY(stripes, (lo->ldo_dir_stripe_count + stripe_count));
8125         if (!stripes)
8126                 RETURN(-ENOMEM);
8127
8128         for (i = 0; i < lo->ldo_dir_stripe_count; i++)
8129                 stripes[i] = lo->ldo_stripe[i];
8130
8131         rec->rec_type = S_IFDIR;
8132
8133         for (i = 0; i < stripe_count; i++) {
8134                 fid_le_to_cpu(fid,
8135                         &lmv->lmv_stripe_fids[i]);
8136                 if (!fid_is_sane(fid))
8137                         continue;
8138
8139                 rc = lod_fld_lookup(env, lod, fid, &idx, &type);
8140                 if (rc)
8141                         GOTO(out, rc);
8142
8143                 if (idx == lod2lu_dev(lod)->ld_site->ld_seq_site->ss_node_id) {
8144                         tgt_dt = lod->lod_child;
8145                 } else {
8146                         tgt = LTD_TGT(ltd, idx);
8147                         if (tgt == NULL)
8148                                 GOTO(out, rc = -ESTALE);
8149                         tgt_dt = tgt->ltd_tgt;
8150                 }
8151
8152                 dto = dt_locate_at(env, tgt_dt, fid,
8153                                   lo->ldo_obj.do_lu.lo_dev->ld_site->ls_top_dev,
8154                                   NULL);
8155                 if (IS_ERR(dto))
8156                         GOTO(out, rc = PTR_ERR(dto));
8157
8158                 stripes[i + lo->ldo_dir_stripe_count] = dto;
8159
8160                 if (!dt_try_as_dir(env, dto))
8161                         GOTO(out, rc = -ENOTDIR);
8162
8163                 rc = lod_sub_declare_ref_add(env, dto, th);
8164                 if (rc)
8165                         GOTO(out, rc);
8166
8167                 rec->rec_fid = lu_object_fid(&dto->do_lu);
8168                 rc = lod_sub_declare_insert(env, dto,
8169                                             (const struct dt_rec *)rec,
8170                                             (const struct dt_key *)dot, th);
8171                 if (rc)
8172                         GOTO(out, rc);
8173
8174                 rc = lod_sub_declare_insert(env, dto,
8175                                             (const struct dt_rec *)rec,
8176                                             (const struct dt_key *)dotdot, th);
8177                 if (rc)
8178                         GOTO(out, rc);
8179
8180                 rc = lod_sub_declare_xattr_set(env, dto, &mlc->mlc_buf,
8181                                                 XATTR_NAME_LMV, 0, th);
8182                 if (rc)
8183                         GOTO(out, rc);
8184
8185                 snprintf(stripe_name, sizeof(info->lti_key), DFID":%u",
8186                          PFID(lu_object_fid(&dto->do_lu)),
8187                          i + lo->ldo_dir_stripe_count);
8188
8189                 sname = lod_name_get(env, stripe_name, strlen(stripe_name));
8190                 rc = linkea_links_new(&ldata, &info->lti_linkea_buf,
8191                                       sname, lu_object_fid(&dt->do_lu));
8192                 if (rc)
8193                         GOTO(out, rc);
8194
8195                 linkea_buf.lb_buf = ldata.ld_buf->lb_buf;
8196                 linkea_buf.lb_len = ldata.ld_leh->leh_len;
8197                 rc = lod_sub_declare_xattr_set(env, dto, &linkea_buf,
8198                                                XATTR_NAME_LINK, 0, th);
8199                 if (rc)
8200                         GOTO(out, rc);
8201
8202                 rc = lod_sub_declare_insert(env, next,
8203                                             (const struct dt_rec *)rec,
8204                                             (const struct dt_key *)stripe_name,
8205                                             th);
8206                 if (rc)
8207                         GOTO(out, rc);
8208
8209                 rc = lod_sub_declare_ref_add(env, next, th);
8210                 if (rc)
8211                         GOTO(out, rc);
8212         }
8213
8214         if (lo->ldo_stripe)
8215                 OBD_FREE_PTR_ARRAY(lo->ldo_stripe,
8216                                    lo->ldo_dir_stripes_allocated);
8217         lo->ldo_stripe = stripes;
8218         lo->ldo_dir_migrate_offset = lo->ldo_dir_stripe_count;
8219         lo->ldo_dir_migrate_hash = le32_to_cpu(lmv->lmv_hash_type);
8220         lo->ldo_dir_stripe_count += stripe_count;
8221         lo->ldo_dir_stripes_allocated += stripe_count;
8222
8223         /* plain directory split creates target as a plain directory, while
8224          * after source attached as the first stripe, it becomes a striped
8225          * directory, set correct do_index_ops, otherwise it can't be unlinked.
8226          */
8227         dt->do_index_ops = &lod_striped_index_ops;
8228
8229         RETURN(0);
8230 out:
8231         i = lo->ldo_dir_stripe_count;
8232         while (i < lo->ldo_dir_stripe_count + stripe_count && stripes[i])
8233                 dt_object_put(env, stripes[i++]);
8234
8235         OBD_FREE_PTR_ARRAY(stripes, stripe_count + lo->ldo_dir_stripe_count);
8236         return rc;
8237 }
8238
8239 static int lod_dir_declare_layout_detach(const struct lu_env *env,
8240                                          struct dt_object *dt,
8241                                          const struct md_layout_change *unused,
8242                                          struct thandle *th)
8243 {
8244         struct lod_thread_info *info = lod_env_info(env);
8245         struct lod_object *lo = lod_dt_obj(dt);
8246         struct dt_object *next = dt_object_child(dt);
8247         char *stripe_name = info->lti_key;
8248         struct dt_object *dto;
8249         int i;
8250         int rc = 0;
8251
8252         if (!dt_try_as_dir(env, dt))
8253                 return -ENOTDIR;
8254
8255         if (!lo->ldo_dir_stripe_count)
8256                 return lod_sub_declare_delete(env, next,
8257                                         (const struct dt_key *)dotdot, th);
8258
8259         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
8260                 dto = lo->ldo_stripe[i];
8261                 if (!dto)
8262                         continue;
8263
8264                 if (!dt_try_as_dir(env, dto))
8265                         return -ENOTDIR;
8266
8267                 rc = lod_sub_declare_delete(env, dto,
8268                                         (const struct dt_key *)dotdot, th);
8269                 if (rc)
8270                         return rc;
8271
8272                 snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
8273                          PFID(lu_object_fid(&dto->do_lu)), i);
8274
8275                 rc = lod_sub_declare_delete(env, next,
8276                                         (const struct dt_key *)stripe_name, th);
8277                 if (rc)
8278                         return rc;
8279
8280                 rc = lod_sub_declare_ref_del(env, next, th);
8281                 if (rc)
8282                         return rc;
8283         }
8284
8285         return 0;
8286 }
8287
8288 static int dt_dir_is_empty(const struct lu_env *env,
8289                            struct dt_object *obj)
8290 {
8291         struct dt_it *it;
8292         const struct dt_it_ops *iops;
8293         int rc;
8294
8295         ENTRY;
8296
8297         if (!dt_try_as_dir(env, obj))
8298                 RETURN(-ENOTDIR);
8299
8300         iops = &obj->do_index_ops->dio_it;
8301         it = iops->init(env, obj, LUDA_64BITHASH);
8302         if (IS_ERR(it))
8303                 RETURN(PTR_ERR(it));
8304
8305         rc = iops->get(env, it, (const struct dt_key *)"");
8306         if (rc > 0) {
8307                 int i;
8308
8309                 for (rc = 0, i = 0; rc == 0 && i < 3; ++i)
8310                         rc = iops->next(env, it);
8311                 if (!rc)
8312                         rc = -ENOTEMPTY;
8313                 else if (rc == 1)
8314                         rc = 0;
8315         } else if (!rc) {
8316                 /* Huh? Index contains no zero key? */
8317                 rc = -EIO;
8318         }
8319
8320         iops->put(env, it);
8321         iops->fini(env, it);
8322
8323         RETURN(rc);
8324 }
8325
8326 static int lod_dir_declare_layout_shrink(const struct lu_env *env,
8327                                          struct dt_object *dt,
8328                                          const struct md_layout_change *mlc,
8329                                          struct thandle *th)
8330 {
8331         struct lod_thread_info *info = lod_env_info(env);
8332         struct lod_object *lo = lod_dt_obj(dt);
8333         struct dt_object *next = dt_object_child(dt);
8334         struct lmv_user_md *lmu = mlc->mlc_buf.lb_buf;
8335         char *stripe_name = info->lti_key;
8336         struct lu_buf *lmv_buf = &info->lti_buf;
8337         __u32 final_stripe_count;
8338         struct dt_object *dto;
8339         int i;
8340         int rc;
8341
8342         LASSERT(lmu);
8343
8344         if (!dt_try_as_dir(env, dt))
8345                 return -ENOTDIR;
8346
8347         /* shouldn't be called on plain directory */
8348         LASSERT(lo->ldo_dir_stripe_count);
8349
8350         lmv_buf->lb_buf = &info->lti_lmv.lmv_md_v1;
8351         lmv_buf->lb_len = sizeof(info->lti_lmv.lmv_md_v1);
8352
8353         final_stripe_count = le32_to_cpu(lmu->lum_stripe_count);
8354         LASSERT(final_stripe_count &&
8355                 final_stripe_count < lo->ldo_dir_stripe_count);
8356
8357         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
8358                 dto = lo->ldo_stripe[i];
8359                 if (!dto)
8360                         continue;
8361
8362                 if (i < final_stripe_count) {
8363                         rc = lod_sub_declare_xattr_set(env, dto, lmv_buf,
8364                                                        XATTR_NAME_LMV,
8365                                                        LU_XATTR_REPLACE, th);
8366                         if (rc)
8367                                 return rc;
8368
8369                         continue;
8370                 }
8371
8372                 rc = dt_dir_is_empty(env, dto);
8373                 if (rc < 0)
8374                         return rc;
8375
8376                 rc = lod_sub_declare_ref_del(env, dto, th);
8377                 if (rc)
8378                         return rc;
8379
8380                 rc = lod_sub_declare_destroy(env, dto, th);
8381                 if (rc)
8382                         return rc;
8383
8384                 snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
8385                          PFID(lu_object_fid(&dto->do_lu)), i);
8386
8387                 rc = lod_sub_declare_delete(env, next,
8388                                         (const struct dt_key *)stripe_name, th);
8389                 if (rc)
8390                         return rc;
8391
8392                 rc = lod_sub_declare_ref_del(env, next, th);
8393                 if (rc)
8394                         return rc;
8395         }
8396
8397         rc = lod_sub_declare_xattr_set(env, next, lmv_buf, XATTR_NAME_LMV,
8398                                        LU_XATTR_REPLACE, th);
8399         return rc;
8400 }
8401
8402 /**
8403  * Allocate stripes for split directory.
8404  *
8405  * \param[in] env       execution environment
8406  * \param[in] dt        target object
8407  * \param[in] mlc       layout change data
8408  * \param[in] th        transaction handle
8409  *
8410  * \retval              0 on success
8411  * \retval              negative if failed
8412  */
8413 static int lod_dir_declare_layout_split(const struct lu_env *env,
8414                                         struct dt_object *dt,
8415                                         const struct md_layout_change *mlc,
8416                                         struct thandle *th)
8417 {
8418         struct lod_thread_info *info = lod_env_info(env);
8419         struct lod_device *lod = lu2lod_dev(dt->do_lu.lo_dev);
8420         struct lod_object *lo = lod_dt_obj(dt);
8421         struct dt_object_format *dof = &info->lti_format;
8422         struct lmv_user_md_v1 *lum = mlc->mlc_spec->u.sp_ea.eadata;
8423         struct dt_object **stripes;
8424         u32 stripe_count;
8425         u32 saved_count;
8426         int i;
8427         int rc;
8428
8429         ENTRY;
8430
8431         LASSERT(le32_to_cpu(lum->lum_magic) == LMV_USER_MAGIC);
8432         LASSERT(le32_to_cpu(lum->lum_stripe_offset) == LMV_OFFSET_DEFAULT);
8433
8434         saved_count = lo->ldo_dir_stripes_allocated;
8435         stripe_count = le32_to_cpu(lum->lum_stripe_count);
8436         if (stripe_count <= saved_count)
8437                 RETURN(-EINVAL);
8438
8439         dof->dof_type = DFT_DIR;
8440
8441         OBD_ALLOC(stripes, sizeof(*stripes) * stripe_count);
8442         if (!stripes)
8443                 RETURN(-ENOMEM);
8444
8445         for (i = 0; i < lo->ldo_dir_stripes_allocated; i++)
8446                 stripes[i] = lo->ldo_stripe[i];
8447
8448         lod_qos_statfs_update(env, lod, &lod->lod_mdt_descs);
8449         rc = lod_mdt_alloc_qos(env, lo, stripes, saved_count, stripe_count);
8450         if (rc == -EAGAIN)
8451                 rc = lod_mdt_alloc_rr(env, lo, stripes, saved_count,
8452                                       stripe_count);
8453         if (rc < 0) {
8454                 OBD_FREE(stripes, sizeof(*stripes) * stripe_count);
8455                 RETURN(rc);
8456         }
8457
8458         LASSERT(rc > saved_count);
8459         OBD_FREE(lo->ldo_stripe,
8460                  sizeof(*stripes) * lo->ldo_dir_stripes_allocated);
8461         lo->ldo_stripe = stripes;
8462         lo->ldo_dir_striped = 1;
8463         lo->ldo_dir_stripe_count = rc;
8464         lo->ldo_dir_stripes_allocated = stripe_count;
8465         lo->ldo_dir_split_hash = lo->ldo_dir_hash_type;
8466         lo->ldo_dir_hash_type = le32_to_cpu(lum->lum_hash_type);
8467         if (!lmv_is_known_hash_type(lo->ldo_dir_hash_type))
8468                 lo->ldo_dir_hash_type =
8469                         lod->lod_mdt_descs.ltd_lmv_desc.ld_pattern;
8470         lo->ldo_dir_hash_type |= LMV_HASH_FLAG_SPLIT | LMV_HASH_FLAG_MIGRATION;
8471         lo->ldo_dir_split_offset = saved_count;
8472         lo->ldo_dir_layout_version++;
8473         lo->ldo_dir_stripe_loaded = 1;
8474
8475         rc = lod_dir_declare_create_stripes(env, dt, mlc->mlc_attr, dof, th);
8476         if (rc)
8477                 lod_striping_free(env, lo);
8478
8479         RETURN(rc);
8480 }
8481
8482 /*
8483  * detach all stripes from dir master object, NB, stripes are not destroyed, but
8484  * deleted from it's parent namespace, this function is called in two places:
8485  * 1. mdd_migrate_mdt() detach stripes from source, and attach them to
8486  *    target.
8487  * 2. mdd_dir_layout_update() detach stripe before turning 1-stripe directory to
8488  *    a plain directory.
8489  *
8490  * \param[in] env       execution environment
8491  * \param[in] dt        target object
8492  * \param[in] mlc       layout change data
8493  * \param[in] th        transaction handle
8494  *
8495  * \retval              0 on success
8496  * \retval              negative if failed
8497  */
8498 static int lod_dir_layout_detach(const struct lu_env *env,
8499                                  struct dt_object *dt,
8500                                  const struct md_layout_change *mlc,
8501                                  struct thandle *th)
8502 {
8503         struct lod_thread_info *info = lod_env_info(env);
8504         struct lod_object *lo = lod_dt_obj(dt);
8505         struct dt_object *next = dt_object_child(dt);
8506         char *stripe_name = info->lti_key;
8507         struct dt_object *dto;
8508         int i;
8509         int rc = 0;
8510
8511         ENTRY;
8512
8513         if (!lo->ldo_dir_stripe_count) {
8514                 /* plain directory delete .. */
8515                 rc = lod_sub_delete(env, next,
8516                                     (const struct dt_key *)dotdot, th);
8517                 RETURN(rc);
8518         }
8519
8520         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
8521                 dto = lo->ldo_stripe[i];
8522                 if (!dto)
8523                         continue;
8524
8525                 rc = lod_sub_delete(env, dto,
8526                                     (const struct dt_key *)dotdot, th);
8527                 if (rc)
8528                         break;
8529
8530                 snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
8531                          PFID(lu_object_fid(&dto->do_lu)), i);
8532
8533                 rc = lod_sub_delete(env, next,
8534                                     (const struct dt_key *)stripe_name, th);
8535                 if (rc)
8536                         break;
8537
8538                 rc = lod_sub_ref_del(env, next, th);
8539                 if (rc)
8540                         break;
8541         }
8542
8543         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
8544                 dto = lo->ldo_stripe[i];
8545                 if (dto)
8546                         dt_object_put(env, dto);
8547         }
8548         OBD_FREE_PTR_ARRAY(lo->ldo_stripe, lo->ldo_dir_stripes_allocated);
8549         lo->ldo_stripe = NULL;
8550         lo->ldo_dir_stripes_allocated = 0;
8551         lo->ldo_dir_stripe_count = 0;
8552         dt->do_index_ops = &lod_index_ops;
8553
8554         RETURN(rc);
8555 }
8556
8557 static int lod_dir_layout_shrink(const struct lu_env *env,
8558                                  struct dt_object *dt,
8559                                  const struct md_layout_change *mlc,
8560                                  struct thandle *th)
8561 {
8562         struct lod_thread_info *info = lod_env_info(env);
8563         struct lod_object *lo = lod_dt_obj(dt);
8564         struct lod_device *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
8565         struct dt_object *next = dt_object_child(dt);
8566         struct lmv_user_md *lmu = mlc->mlc_buf.lb_buf;
8567         __u32 final_stripe_count;
8568         char *stripe_name = info->lti_key;
8569         struct dt_object *dto;
8570         struct lu_buf *lmv_buf = &info->lti_buf;
8571         struct lmv_mds_md_v1 *lmv = &info->lti_lmv.lmv_md_v1;
8572         u32 mdtidx;
8573         int type = LU_SEQ_RANGE_ANY;
8574         int i;
8575         int rc;
8576
8577         ENTRY;
8578
8579         final_stripe_count = le32_to_cpu(lmu->lum_stripe_count);
8580
8581         lmv_buf->lb_buf = lmv;
8582         lmv_buf->lb_len = sizeof(*lmv);
8583         lmv->lmv_magic = cpu_to_le32(LMV_MAGIC_STRIPE);
8584         lmv->lmv_stripe_count = cpu_to_le32(final_stripe_count);
8585         lmv->lmv_hash_type = cpu_to_le32(lo->ldo_dir_hash_type) &
8586                              cpu_to_le32(LMV_HASH_TYPE_MASK |
8587                                          LMV_HASH_FLAG_FIXED);
8588         lmv->lmv_layout_version =
8589                         cpu_to_le32(lo->ldo_dir_layout_version + 1);
8590         lmv->lmv_migrate_offset = 0;
8591         lmv->lmv_migrate_hash = 0;
8592
8593         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
8594                 dto = lo->ldo_stripe[i];
8595                 if (!dto)
8596                         continue;
8597
8598                 if (i < final_stripe_count) {
8599                         rc = lod_fld_lookup(env, lod,
8600                                             lu_object_fid(&dto->do_lu),
8601                                             &mdtidx, &type);
8602                         if (rc)
8603                                 RETURN(rc);
8604
8605                         lmv->lmv_master_mdt_index = cpu_to_le32(mdtidx);
8606                         rc = lod_sub_xattr_set(env, dto, lmv_buf,
8607                                                XATTR_NAME_LMV,
8608                                                LU_XATTR_REPLACE, th);
8609                         if (rc)
8610                                 RETURN(rc);
8611
8612                         continue;
8613                 }
8614
8615                 dt_write_lock(env, dto, DT_TGT_CHILD);
8616                 rc = lod_sub_ref_del(env, dto, th);
8617                 dt_write_unlock(env, dto);
8618                 if (rc)
8619                         RETURN(rc);
8620
8621                 rc = lod_sub_destroy(env, dto, th);
8622                 if (rc)
8623                         RETURN(rc);
8624
8625                 snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
8626                          PFID(lu_object_fid(&dto->do_lu)), i);
8627
8628                 rc = lod_sub_delete(env, next,
8629                                     (const struct dt_key *)stripe_name, th);
8630                 if (rc)
8631                         RETURN(rc);
8632
8633                 rc = lod_sub_ref_del(env, next, th);
8634                 if (rc)
8635                         RETURN(rc);
8636         }
8637
8638         rc = lod_fld_lookup(env, lod, lu_object_fid(&dt->do_lu), &mdtidx,
8639                             &type);
8640         if (rc)
8641                 RETURN(rc);
8642
8643         lmv->lmv_magic = cpu_to_le32(LMV_MAGIC_V1);
8644         lmv->lmv_master_mdt_index = cpu_to_le32(mdtidx);
8645         rc = lod_sub_xattr_set(env, next, lmv_buf, XATTR_NAME_LMV,
8646                                LU_XATTR_REPLACE, th);
8647         if (rc)
8648                 RETURN(rc);
8649
8650         for (i = final_stripe_count; i < lo->ldo_dir_stripe_count; i++) {
8651                 dto = lo->ldo_stripe[i];
8652                 if (dto)
8653                         dt_object_put(env, dto);
8654         }
8655         lo->ldo_dir_stripe_count = final_stripe_count;
8656
8657         RETURN(rc);
8658 }
8659
8660 static mlc_handler dir_mlc_declare_ops[MD_LAYOUT_MAX] = {
8661         [MD_LAYOUT_ATTACH] = lod_dir_declare_layout_attach,
8662         [MD_LAYOUT_DETACH] = lod_dir_declare_layout_detach,
8663         [MD_LAYOUT_SHRINK] = lod_dir_declare_layout_shrink,
8664         [MD_LAYOUT_SPLIT]  = lod_dir_declare_layout_split,
8665 };
8666
8667 static mlc_handler dir_mlc_ops[MD_LAYOUT_MAX] = {
8668         [MD_LAYOUT_DETACH] = lod_dir_layout_detach,
8669         [MD_LAYOUT_SHRINK] = lod_dir_layout_shrink,
8670 };
8671
8672 static int lod_declare_layout_change(const struct lu_env *env,
8673                 struct dt_object *dt, struct md_layout_change *mlc,
8674                 struct thandle *th)
8675 {
8676         struct lod_thread_info  *info = lod_env_info(env);
8677         struct lod_object *lo = lod_dt_obj(dt);
8678         int rc;
8679
8680         ENTRY;
8681
8682         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
8683                 LASSERT(dir_mlc_declare_ops[mlc->mlc_opc]);
8684                 rc = dir_mlc_declare_ops[mlc->mlc_opc](env, dt, mlc, th);
8685                 RETURN(rc);
8686         }
8687
8688         if (!S_ISREG(dt->do_lu.lo_header->loh_attr) || !dt_object_exists(dt) ||
8689             dt_object_remote(dt_object_child(dt)))
8690                 RETURN(-EINVAL);
8691
8692         rc = lod_striping_load(env, lo);
8693         if (rc)
8694                 GOTO(out, rc);
8695
8696         LASSERT(lo->ldo_comp_cnt > 0);
8697
8698         rc = lod_layout_data_init(info, lo->ldo_comp_cnt);
8699         if (rc)
8700                 GOTO(out, rc);
8701
8702         switch (lo->ldo_flr_state) {
8703         case LCM_FL_NONE:
8704                 rc = lod_declare_update_plain(env, lo, mlc->mlc_intent,
8705                                               &mlc->mlc_buf, th);
8706                 break;
8707         case LCM_FL_RDONLY:
8708                 rc = lod_declare_update_rdonly(env, lo, mlc, th);
8709                 break;
8710         case LCM_FL_WRITE_PENDING:
8711                 rc = lod_declare_update_write_pending(env, lo, mlc, th);
8712                 break;
8713         case LCM_FL_SYNC_PENDING:
8714                 rc = lod_declare_update_sync_pending(env, lo, mlc, th);
8715                 break;
8716         default:
8717                 rc = -ENOTSUPP;
8718                 break;
8719         }
8720 out:
8721         RETURN(rc);
8722 }
8723
8724 /**
8725  * Instantiate layout component objects which covers the intent write offset.
8726  */
8727 static int lod_layout_change(const struct lu_env *env, struct dt_object *dt,
8728                              struct md_layout_change *mlc, struct thandle *th)
8729 {
8730         struct lu_attr *attr = &lod_env_info(env)->lti_attr;
8731         struct lu_attr *layout_attr = &lod_env_info(env)->lti_layout_attr;
8732         struct lod_object *lo = lod_dt_obj(dt);
8733         int rc;
8734
8735         ENTRY;
8736
8737         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
8738                 LASSERT(dir_mlc_ops[mlc->mlc_opc]);
8739                 rc = dir_mlc_ops[mlc->mlc_opc](env, dt, mlc, th);
8740                 RETURN(rc);
8741         }
8742
8743         rc = lod_striped_create(env, dt, attr, NULL, th);
8744         if (!rc && layout_attr->la_valid & LA_LAYOUT_VERSION) {
8745                 layout_attr->la_layout_version |= lo->ldo_layout_gen;
8746                 rc = lod_attr_set(env, dt, layout_attr, th);
8747         }
8748
8749         RETURN(rc);
8750 }
8751
8752 const struct dt_object_operations lod_obj_ops = {
8753         .do_read_lock           = lod_read_lock,
8754         .do_write_lock          = lod_write_lock,
8755         .do_read_unlock         = lod_read_unlock,
8756         .do_write_unlock        = lod_write_unlock,
8757         .do_write_locked        = lod_write_locked,
8758         .do_attr_get            = lod_attr_get,
8759         .do_declare_attr_set    = lod_declare_attr_set,
8760         .do_attr_set            = lod_attr_set,
8761         .do_xattr_get           = lod_xattr_get,
8762         .do_declare_xattr_set   = lod_declare_xattr_set,
8763         .do_xattr_set           = lod_xattr_set,
8764         .do_declare_xattr_del   = lod_declare_xattr_del,
8765         .do_xattr_del           = lod_xattr_del,
8766         .do_xattr_list          = lod_xattr_list,
8767         .do_ah_init             = lod_ah_init,
8768         .do_declare_create      = lod_declare_create,
8769         .do_create              = lod_create,
8770         .do_declare_destroy     = lod_declare_destroy,
8771         .do_destroy             = lod_destroy,
8772         .do_index_try           = lod_index_try,
8773         .do_declare_ref_add     = lod_declare_ref_add,
8774         .do_ref_add             = lod_ref_add,
8775         .do_declare_ref_del     = lod_declare_ref_del,
8776         .do_ref_del             = lod_ref_del,
8777         .do_object_sync         = lod_object_sync,
8778         .do_object_lock         = lod_object_lock,
8779         .do_object_unlock       = lod_object_unlock,
8780         .do_invalidate          = lod_invalidate,
8781         .do_declare_layout_change = lod_declare_layout_change,
8782         .do_layout_change       = lod_layout_change,
8783 };
8784
8785 /**
8786  * Implementation of dt_body_operations::dbo_read.
8787  *
8788  * \see dt_body_operations::dbo_read() in the API description for details.
8789  */
8790 static ssize_t lod_read(const struct lu_env *env, struct dt_object *dt,
8791                         struct lu_buf *buf, loff_t *pos)
8792 {
8793         struct dt_object *next = dt_object_child(dt);
8794
8795         LASSERT(S_ISREG(dt->do_lu.lo_header->loh_attr) ||
8796                 S_ISLNK(dt->do_lu.lo_header->loh_attr));
8797         return next->do_body_ops->dbo_read(env, next, buf, pos);
8798 }
8799
8800 /**
8801  * Implementation of dt_body_operations::dbo_declare_write.
8802  *
8803  * \see dt_body_operations::dbo_declare_write() in the API description
8804  * for details.
8805  */
8806 static ssize_t lod_declare_write(const struct lu_env *env,
8807                                  struct dt_object *dt,
8808                                  const struct lu_buf *buf, loff_t pos,
8809                                  struct thandle *th)
8810 {
8811         return lod_sub_declare_write(env, dt_object_child(dt), buf, pos, th);
8812 }
8813
8814 /**
8815  * Implementation of dt_body_operations::dbo_write.
8816  *
8817  * \see dt_body_operations::dbo_write() in the API description for details.
8818  */
8819 static ssize_t lod_write(const struct lu_env *env, struct dt_object *dt,
8820                          const struct lu_buf *buf, loff_t *pos,
8821                          struct thandle *th)
8822 {
8823         LASSERT(S_ISREG(dt->do_lu.lo_header->loh_attr) ||
8824                 S_ISLNK(dt->do_lu.lo_header->loh_attr));
8825         return lod_sub_write(env, dt_object_child(dt), buf, pos, th);
8826 }
8827
8828 static int lod_declare_punch(const struct lu_env *env, struct dt_object *dt,
8829                              __u64 start, __u64 end, struct thandle *th)
8830 {
8831         if (dt_object_remote(dt))
8832                 return -ENOTSUPP;
8833
8834         return lod_sub_declare_punch(env, dt_object_child(dt), start, end, th);
8835 }
8836
8837 static int lod_punch(const struct lu_env *env, struct dt_object *dt,
8838                      __u64 start, __u64 end, struct thandle *th)
8839 {
8840         if (dt_object_remote(dt))
8841                 return -ENOTSUPP;
8842
8843         LASSERT(S_ISREG(dt->do_lu.lo_header->loh_attr));
8844         return lod_sub_punch(env, dt_object_child(dt), start, end, th);
8845 }
8846
8847 /*
8848  * different type of files use the same body_ops because object may be created
8849  * in OUT, where there is no chance to set correct body_ops for each type, so
8850  * body_ops themselves will check file type inside, see lod_read/write/punch for
8851  * details.
8852  */
8853 static const struct dt_body_operations lod_body_ops = {
8854         .dbo_read               = lod_read,
8855         .dbo_declare_write      = lod_declare_write,
8856         .dbo_write              = lod_write,
8857         .dbo_declare_punch      = lod_declare_punch,
8858         .dbo_punch              = lod_punch,
8859 };
8860
8861 /**
8862  * Implementation of lu_object_operations::loo_object_init.
8863  *
8864  * The function determines the type and the index of the target device using
8865  * sequence of the object's FID. Then passes control down to the
8866  * corresponding device:
8867  *  OSD for the local objects, OSP for remote
8868  *
8869  * \see lu_object_operations::loo_object_init() in the API description
8870  * for details.
8871  */
8872 static int lod_object_init(const struct lu_env *env, struct lu_object *lo,
8873                            const struct lu_object_conf *conf)
8874 {
8875         struct lod_device       *lod    = lu2lod_dev(lo->lo_dev);
8876         struct lu_device        *cdev   = NULL;
8877         struct lu_object        *cobj;
8878         struct lod_tgt_descs    *ltd    = NULL;
8879         struct lod_tgt_desc     *tgt;
8880         u32                      idx    = 0;
8881         int                      type   = LU_SEQ_RANGE_ANY;
8882         int                      rc;
8883         ENTRY;
8884
8885         rc = lod_fld_lookup(env, lod, lu_object_fid(lo), &idx, &type);
8886         if (rc != 0)
8887                 RETURN(rc);
8888
8889         if (type == LU_SEQ_RANGE_MDT &&
8890             idx == lu_site2seq(lo->lo_dev->ld_site)->ss_node_id) {
8891                 cdev = &lod->lod_child->dd_lu_dev;
8892         } else if (type == LU_SEQ_RANGE_MDT) {
8893                 ltd = &lod->lod_mdt_descs;
8894                 lod_getref(ltd);
8895         } else if (type == LU_SEQ_RANGE_OST) {
8896                 ltd = &lod->lod_ost_descs;
8897                 lod_getref(ltd);
8898         } else {
8899                 LBUG();
8900         }
8901
8902         if (ltd != NULL) {
8903                 if (ltd->ltd_tgts_size > idx &&
8904                     test_bit(idx, ltd->ltd_tgt_bitmap)) {
8905                         tgt = LTD_TGT(ltd, idx);
8906
8907                         LASSERT(tgt != NULL);
8908                         LASSERT(tgt->ltd_tgt != NULL);
8909
8910                         cdev = &(tgt->ltd_tgt->dd_lu_dev);
8911                 }
8912                 lod_putref(lod, ltd);
8913         }
8914
8915         if (unlikely(cdev == NULL))
8916                 RETURN(-ENOENT);
8917
8918         cobj = cdev->ld_ops->ldo_object_alloc(env, lo->lo_header, cdev);
8919         if (unlikely(cobj == NULL))
8920                 RETURN(-ENOMEM);
8921
8922         lu2lod_obj(lo)->ldo_obj.do_body_ops = &lod_body_ops;
8923
8924         lu_object_add(lo, cobj);
8925
8926         RETURN(0);
8927 }
8928
8929 /**
8930  *
8931  * Alloc cached foreign LOV
8932  *
8933  * \param[in] lo        object
8934  * \param[in] size      size of foreign LOV
8935  *
8936  * \retval              0 on success
8937  * \retval              negative if failed
8938  */
8939 int lod_alloc_foreign_lov(struct lod_object *lo, size_t size)
8940 {
8941         OBD_ALLOC_LARGE(lo->ldo_foreign_lov, size);
8942         if (lo->ldo_foreign_lov == NULL)
8943                 return -ENOMEM;
8944         lo->ldo_foreign_lov_size = size;
8945         lo->ldo_is_foreign = 1;
8946         return 0;
8947 }
8948
8949 /**
8950  *
8951  * Free cached foreign LOV
8952  *
8953  * \param[in] lo        object
8954  */
8955 void lod_free_foreign_lov(struct lod_object *lo)
8956 {
8957         if (lo->ldo_foreign_lov != NULL)
8958                 OBD_FREE_LARGE(lo->ldo_foreign_lov, lo->ldo_foreign_lov_size);
8959         lo->ldo_foreign_lov = NULL;
8960         lo->ldo_foreign_lov_size = 0;
8961         lo->ldo_is_foreign = 0;
8962 }
8963
8964 /**
8965  *
8966  * Free cached foreign LMV
8967  *
8968  * \param[in] lo        object
8969  */
8970 void lod_free_foreign_lmv(struct lod_object *lo)
8971 {
8972         if (lo->ldo_foreign_lmv != NULL)
8973                 OBD_FREE_LARGE(lo->ldo_foreign_lmv, lo->ldo_foreign_lmv_size);
8974         lo->ldo_foreign_lmv = NULL;
8975         lo->ldo_foreign_lmv_size = 0;
8976         lo->ldo_dir_is_foreign = 0;
8977 }
8978
8979 /**
8980  *
8981  * Release resources associated with striping.
8982  *
8983  * If the object is striped (regular or directory), then release
8984  * the stripe objects references and free the ldo_stripe array.
8985  *
8986  * \param[in] env       execution environment
8987  * \param[in] lo        object
8988  */
8989 void lod_striping_free_nolock(const struct lu_env *env, struct lod_object *lo)
8990 {
8991         struct lod_layout_component *lod_comp;
8992         int i, j;
8993
8994         if (unlikely(lo->ldo_is_foreign)) {
8995                 lod_free_foreign_lov(lo);
8996                 lo->ldo_comp_cached = 0;
8997         } else if (unlikely(lo->ldo_dir_is_foreign)) {
8998                 lod_free_foreign_lmv(lo);
8999                 lo->ldo_dir_stripe_loaded = 0;
9000         } else if (lo->ldo_stripe != NULL) {
9001                 LASSERT(lo->ldo_comp_entries == NULL);
9002                 LASSERT(lo->ldo_dir_stripes_allocated > 0);
9003
9004                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
9005                         if (lo->ldo_stripe[i])
9006                                 dt_object_put(env, lo->ldo_stripe[i]);
9007                 }
9008
9009                 j = sizeof(struct dt_object *) * lo->ldo_dir_stripes_allocated;
9010                 OBD_FREE(lo->ldo_stripe, j);
9011                 lo->ldo_stripe = NULL;
9012                 lo->ldo_dir_stripes_allocated = 0;
9013                 lo->ldo_dir_stripe_loaded = 0;
9014                 lo->ldo_dir_stripe_count = 0;
9015         } else if (lo->ldo_comp_entries != NULL) {
9016                 for (i = 0; i < lo->ldo_comp_cnt; i++) {
9017                         /* free lod_layout_component::llc_stripe array */
9018                         lod_comp = &lo->ldo_comp_entries[i];
9019
9020                         if (lod_comp->llc_stripe == NULL)
9021                                 continue;
9022                         LASSERT(lod_comp->llc_stripes_allocated != 0);
9023                         for (j = 0; j < lod_comp->llc_stripes_allocated; j++) {
9024                                 if (lod_comp->llc_stripe[j] != NULL)
9025                                         lu_object_put(env,
9026                                                &lod_comp->llc_stripe[j]->do_lu);
9027                         }
9028                         OBD_FREE_PTR_ARRAY(lod_comp->llc_stripe,
9029                                            lod_comp->llc_stripes_allocated);
9030                         lod_comp->llc_stripe = NULL;
9031                         OBD_FREE_PTR_ARRAY(lod_comp->llc_ost_indices,
9032                                            lod_comp->llc_stripes_allocated);
9033                         lod_comp->llc_ost_indices = NULL;
9034                         lod_comp->llc_stripes_allocated = 0;
9035                 }
9036                 lod_free_comp_entries(lo);
9037                 lo->ldo_comp_cached = 0;
9038         }
9039 }
9040
9041 void lod_striping_free(const struct lu_env *env, struct lod_object *lo)
9042 {
9043         mutex_lock(&lo->ldo_layout_mutex);
9044         lod_striping_free_nolock(env, lo);
9045         mutex_unlock(&lo->ldo_layout_mutex);
9046 }
9047
9048 /**
9049  * Implementation of lu_object_operations::loo_object_free.
9050  *
9051  * \see lu_object_operations::loo_object_free() in the API description
9052  * for details.
9053  */
9054 static void lod_object_free(const struct lu_env *env, struct lu_object *o)
9055 {
9056         struct lod_object *lo = lu2lod_obj(o);
9057
9058         /* release all underlying object pinned */
9059         lod_striping_free(env, lo);
9060         lu_object_fini(o);
9061         /* lo doesn't contain a lu_object_header, so we don't need call_rcu */
9062         OBD_SLAB_FREE_PTR(lo, lod_object_kmem);
9063 }
9064
9065 /**
9066  * Implementation of lu_object_operations::loo_object_release.
9067  *
9068  * \see lu_object_operations::loo_object_release() in the API description
9069  * for details.
9070  */
9071 static void lod_object_release(const struct lu_env *env, struct lu_object *o)
9072 {
9073         /* XXX: shouldn't we release everything here in case if object
9074          * creation failed before? */
9075 }
9076
9077 /**
9078  * Implementation of lu_object_operations::loo_object_print.
9079  *
9080  * \see lu_object_operations::loo_object_print() in the API description
9081  * for details.
9082  */
9083 static int lod_object_print(const struct lu_env *env, void *cookie,
9084                             lu_printer_t p, const struct lu_object *l)
9085 {
9086         struct lod_object *o = lu2lod_obj((struct lu_object *) l);
9087
9088         return (*p)(env, cookie, LUSTRE_LOD_NAME"-object@%p", o);
9089 }
9090
9091 const struct lu_object_operations lod_lu_obj_ops = {
9092         .loo_object_init        = lod_object_init,
9093         .loo_object_free        = lod_object_free,
9094         .loo_object_release     = lod_object_release,
9095         .loo_object_print       = lod_object_print,
9096 };