Whamcloud - gitweb
LU-9771 lod: support setting mirror layout from CLI
[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, 2016, 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 <obd.h>
44 #include <obd_class.h>
45 #include <obd_support.h>
46
47 #include <lustre_fid.h>
48 #include <lustre_linkea.h>
49 #include <lustre_lmv.h>
50 #include <uapi/linux/lustre/lustre_param.h>
51 #include <lustre_swab.h>
52 #include <uapi/linux/lustre/lustre_ver.h>
53 #include <lprocfs_status.h>
54 #include <md_object.h>
55
56 #include "lod_internal.h"
57
58 static const char dot[] = ".";
59 static const char dotdot[] = "..";
60
61 /**
62  * Implementation of dt_index_operations::dio_lookup
63  *
64  * Used with regular (non-striped) objects.
65  *
66  * \see dt_index_operations::dio_lookup() in the API description for details.
67  */
68 static int lod_lookup(const struct lu_env *env, struct dt_object *dt,
69                       struct dt_rec *rec, const struct dt_key *key)
70 {
71         struct dt_object *next = dt_object_child(dt);
72         return next->do_index_ops->dio_lookup(env, next, rec, key);
73 }
74
75 /**
76  * Implementation of dt_index_operations::dio_declare_insert.
77  *
78  * Used with regular (non-striped) objects.
79  *
80  * \see dt_index_operations::dio_declare_insert() in the API description
81  * for details.
82  */
83 static int lod_declare_insert(const struct lu_env *env, struct dt_object *dt,
84                               const struct dt_rec *rec,
85                               const struct dt_key *key, struct thandle *th)
86 {
87         return lod_sub_declare_insert(env, dt_object_child(dt), rec, key, th);
88 }
89
90 /**
91  * Implementation of dt_index_operations::dio_insert.
92  *
93  * Used with regular (non-striped) objects
94  *
95  * \see dt_index_operations::dio_insert() in the API description for details.
96  */
97 static int lod_insert(const struct lu_env *env, struct dt_object *dt,
98                       const struct dt_rec *rec, const struct dt_key *key,
99                       struct thandle *th, int ign)
100 {
101         return lod_sub_insert(env, dt_object_child(dt), rec, key, th, ign);
102 }
103
104 /**
105  * Implementation of dt_index_operations::dio_declare_delete.
106  *
107  * Used with regular (non-striped) objects.
108  *
109  * \see dt_index_operations::dio_declare_delete() in the API description
110  * for details.
111  */
112 static int lod_declare_delete(const struct lu_env *env, struct dt_object *dt,
113                               const struct dt_key *key, struct thandle *th)
114 {
115         return lod_sub_declare_delete(env, dt_object_child(dt), key, th);
116 }
117
118 /**
119  * Implementation of dt_index_operations::dio_delete.
120  *
121  * Used with regular (non-striped) objects.
122  *
123  * \see dt_index_operations::dio_delete() in the API description for details.
124  */
125 static int lod_delete(const struct lu_env *env, struct dt_object *dt,
126                       const struct dt_key *key, struct thandle *th)
127 {
128         return lod_sub_delete(env, dt_object_child(dt), key, th);
129 }
130
131 /**
132  * Implementation of dt_it_ops::init.
133  *
134  * Used with regular (non-striped) objects.
135  *
136  * \see dt_it_ops::init() in the API description for details.
137  */
138 static struct dt_it *lod_it_init(const struct lu_env *env,
139                                  struct dt_object *dt, __u32 attr)
140 {
141         struct dt_object        *next = dt_object_child(dt);
142         struct lod_it           *it = &lod_env_info(env)->lti_it;
143         struct dt_it            *it_next;
144
145         it_next = next->do_index_ops->dio_it.init(env, next, attr);
146         if (IS_ERR(it_next))
147                 return it_next;
148
149         /* currently we do not use more than one iterator per thread
150          * so we store it in thread info. if at some point we need
151          * more active iterators in a single thread, we can allocate
152          * additional ones */
153         LASSERT(it->lit_obj == NULL);
154
155         it->lit_it = it_next;
156         it->lit_obj = next;
157
158         return (struct dt_it *)it;
159 }
160
161 #define LOD_CHECK_IT(env, it)                                   \
162 do {                                                            \
163         LASSERT((it)->lit_obj != NULL);                         \
164         LASSERT((it)->lit_it != NULL);                          \
165 } while (0)
166
167 /**
168  * Implementation of dt_index_operations::dio_it.fini.
169  *
170  * Used with regular (non-striped) objects.
171  *
172  * \see dt_index_operations::dio_it.fini() in the API description for details.
173  */
174 static void lod_it_fini(const struct lu_env *env, struct dt_it *di)
175 {
176         struct lod_it *it = (struct lod_it *)di;
177
178         LOD_CHECK_IT(env, it);
179         it->lit_obj->do_index_ops->dio_it.fini(env, it->lit_it);
180
181         /* the iterator not in use any more */
182         it->lit_obj = NULL;
183         it->lit_it = NULL;
184 }
185
186 /**
187  * Implementation of dt_it_ops::get.
188  *
189  * Used with regular (non-striped) objects.
190  *
191  * \see dt_it_ops::get() in the API description for details.
192  */
193 static int lod_it_get(const struct lu_env *env, struct dt_it *di,
194                       const struct dt_key *key)
195 {
196         const struct lod_it *it = (const struct lod_it *)di;
197
198         LOD_CHECK_IT(env, it);
199         return it->lit_obj->do_index_ops->dio_it.get(env, it->lit_it, key);
200 }
201
202 /**
203  * Implementation of dt_it_ops::put.
204  *
205  * Used with regular (non-striped) objects.
206  *
207  * \see dt_it_ops::put() in the API description for details.
208  */
209 static void lod_it_put(const struct lu_env *env, struct dt_it *di)
210 {
211         struct lod_it *it = (struct lod_it *)di;
212
213         LOD_CHECK_IT(env, it);
214         return it->lit_obj->do_index_ops->dio_it.put(env, it->lit_it);
215 }
216
217 /**
218  * Implementation of dt_it_ops::next.
219  *
220  * Used with regular (non-striped) objects
221  *
222  * \see dt_it_ops::next() in the API description for details.
223  */
224 static int lod_it_next(const struct lu_env *env, struct dt_it *di)
225 {
226         struct lod_it *it = (struct lod_it *)di;
227
228         LOD_CHECK_IT(env, it);
229         return it->lit_obj->do_index_ops->dio_it.next(env, it->lit_it);
230 }
231
232 /**
233  * Implementation of dt_it_ops::key.
234  *
235  * Used with regular (non-striped) objects.
236  *
237  * \see dt_it_ops::key() in the API description for details.
238  */
239 static struct dt_key *lod_it_key(const struct lu_env *env,
240                                  const struct dt_it *di)
241 {
242         const struct lod_it *it = (const struct lod_it *)di;
243
244         LOD_CHECK_IT(env, it);
245         return it->lit_obj->do_index_ops->dio_it.key(env, it->lit_it);
246 }
247
248 /**
249  * Implementation of dt_it_ops::key_size.
250  *
251  * Used with regular (non-striped) objects.
252  *
253  * \see dt_it_ops::key_size() in the API description for details.
254  */
255 static int lod_it_key_size(const struct lu_env *env, const struct dt_it *di)
256 {
257         struct lod_it *it = (struct lod_it *)di;
258
259         LOD_CHECK_IT(env, it);
260         return it->lit_obj->do_index_ops->dio_it.key_size(env, it->lit_it);
261 }
262
263 /**
264  * Implementation of dt_it_ops::rec.
265  *
266  * Used with regular (non-striped) objects.
267  *
268  * \see dt_it_ops::rec() in the API description for details.
269  */
270 static int lod_it_rec(const struct lu_env *env, const struct dt_it *di,
271                       struct dt_rec *rec, __u32 attr)
272 {
273         const struct lod_it *it = (const struct lod_it *)di;
274
275         LOD_CHECK_IT(env, it);
276         return it->lit_obj->do_index_ops->dio_it.rec(env, it->lit_it, rec,
277                                                      attr);
278 }
279
280 /**
281  * Implementation of dt_it_ops::rec_size.
282  *
283  * Used with regular (non-striped) objects.
284  *
285  * \see dt_it_ops::rec_size() in the API description for details.
286  */
287 static int lod_it_rec_size(const struct lu_env *env, const struct dt_it *di,
288                            __u32 attr)
289 {
290         const struct lod_it *it = (const struct lod_it *)di;
291
292         LOD_CHECK_IT(env, it);
293         return it->lit_obj->do_index_ops->dio_it.rec_size(env, it->lit_it,
294                                                           attr);
295 }
296
297 /**
298  * Implementation of dt_it_ops::store.
299  *
300  * Used with regular (non-striped) objects.
301  *
302  * \see dt_it_ops::store() in the API description for details.
303  */
304 static __u64 lod_it_store(const struct lu_env *env, const struct dt_it *di)
305 {
306         const struct lod_it *it = (const struct lod_it *)di;
307
308         LOD_CHECK_IT(env, it);
309         return it->lit_obj->do_index_ops->dio_it.store(env, it->lit_it);
310 }
311
312 /**
313  * Implementation of dt_it_ops::load.
314  *
315  * Used with regular (non-striped) objects.
316  *
317  * \see dt_it_ops::load() in the API description for details.
318  */
319 static int lod_it_load(const struct lu_env *env, const struct dt_it *di,
320                        __u64 hash)
321 {
322         const struct lod_it *it = (const struct lod_it *)di;
323
324         LOD_CHECK_IT(env, it);
325         return it->lit_obj->do_index_ops->dio_it.load(env, it->lit_it, hash);
326 }
327
328 /**
329  * Implementation of dt_it_ops::key_rec.
330  *
331  * Used with regular (non-striped) objects.
332  *
333  * \see dt_it_ops::rec() in the API description for details.
334  */
335 static int lod_it_key_rec(const struct lu_env *env, const struct dt_it *di,
336                           void *key_rec)
337 {
338         const struct lod_it *it = (const struct lod_it *)di;
339
340         LOD_CHECK_IT(env, it);
341         return it->lit_obj->do_index_ops->dio_it.key_rec(env, it->lit_it,
342                                                          key_rec);
343 }
344
345 static struct dt_index_operations lod_index_ops = {
346         .dio_lookup             = lod_lookup,
347         .dio_declare_insert     = lod_declare_insert,
348         .dio_insert             = lod_insert,
349         .dio_declare_delete     = lod_declare_delete,
350         .dio_delete             = lod_delete,
351         .dio_it = {
352                 .init           = lod_it_init,
353                 .fini           = lod_it_fini,
354                 .get            = lod_it_get,
355                 .put            = lod_it_put,
356                 .next           = lod_it_next,
357                 .key            = lod_it_key,
358                 .key_size       = lod_it_key_size,
359                 .rec            = lod_it_rec,
360                 .rec_size       = lod_it_rec_size,
361                 .store          = lod_it_store,
362                 .load           = lod_it_load,
363                 .key_rec        = lod_it_key_rec,
364         }
365 };
366
367 /**
368  * Implementation of dt_it_ops::init.
369  *
370  * Used with striped objects. Internally just initializes the iterator
371  * on the first stripe.
372  *
373  * \see dt_it_ops::init() in the API description for details.
374  */
375 static struct dt_it *lod_striped_it_init(const struct lu_env *env,
376                                          struct dt_object *dt, __u32 attr)
377 {
378         struct lod_object       *lo = lod_dt_obj(dt);
379         struct dt_object        *next;
380         struct lod_it           *it = &lod_env_info(env)->lti_it;
381         struct dt_it            *it_next;
382         ENTRY;
383
384         LASSERT(lo->ldo_dir_stripe_count > 0);
385         next = lo->ldo_stripe[0];
386         LASSERT(next != NULL);
387         LASSERT(next->do_index_ops != NULL);
388
389         it_next = next->do_index_ops->dio_it.init(env, next, attr);
390         if (IS_ERR(it_next))
391                 return it_next;
392
393         /* currently we do not use more than one iterator per thread
394          * so we store it in thread info. if at some point we need
395          * more active iterators in a single thread, we can allocate
396          * additional ones */
397         LASSERT(it->lit_obj == NULL);
398
399         it->lit_stripe_index = 0;
400         it->lit_attr = attr;
401         it->lit_it = it_next;
402         it->lit_obj = dt;
403
404         return (struct dt_it *)it;
405 }
406
407 #define LOD_CHECK_STRIPED_IT(env, it, lo)                               \
408 do {                                                                    \
409         LASSERT((it)->lit_obj != NULL);                                 \
410         LASSERT((it)->lit_it != NULL);                                  \
411         LASSERT((lo)->ldo_dir_stripe_count > 0);                        \
412         LASSERT((it)->lit_stripe_index < (lo)->ldo_dir_stripe_count);   \
413 } while (0)
414
415 /**
416  * Implementation of dt_it_ops::fini.
417  *
418  * Used with striped objects.
419  *
420  * \see dt_it_ops::fini() in the API description for details.
421  */
422 static void lod_striped_it_fini(const struct lu_env *env, struct dt_it *di)
423 {
424         struct lod_it           *it = (struct lod_it *)di;
425         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
426         struct dt_object        *next;
427
428         /* If lit_it == NULL, then it means the sub_it has been finished,
429          * which only happens in failure cases, see lod_striped_it_next() */
430         if (it->lit_it != NULL) {
431                 LOD_CHECK_STRIPED_IT(env, it, lo);
432
433                 next = lo->ldo_stripe[it->lit_stripe_index];
434                 LASSERT(next != NULL);
435                 LASSERT(next->do_index_ops != NULL);
436
437                 next->do_index_ops->dio_it.fini(env, it->lit_it);
438         }
439
440         /* the iterator not in use any more */
441         it->lit_obj = NULL;
442         it->lit_it = NULL;
443         it->lit_stripe_index = 0;
444 }
445
446 /**
447  * Implementation of dt_it_ops::get.
448  *
449  * Right now it's not used widely, only to reset the iterator to the
450  * initial position. It should be possible to implement a full version
451  * which chooses a correct stripe to be able to position with any key.
452  *
453  * \see dt_it_ops::get() in the API description for details.
454  */
455 static int lod_striped_it_get(const struct lu_env *env, struct dt_it *di,
456                               const struct dt_key *key)
457 {
458         const struct lod_it     *it = (const struct lod_it *)di;
459         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
460         struct dt_object        *next;
461         ENTRY;
462
463         LOD_CHECK_STRIPED_IT(env, it, lo);
464
465         next = lo->ldo_stripe[it->lit_stripe_index];
466         LASSERT(next != NULL);
467         LASSERT(next->do_index_ops != NULL);
468
469         return next->do_index_ops->dio_it.get(env, it->lit_it, key);
470 }
471
472 /**
473  * Implementation of dt_it_ops::put.
474  *
475  * Used with striped objects.
476  *
477  * \see dt_it_ops::put() in the API description for details.
478  */
479 static void lod_striped_it_put(const struct lu_env *env, struct dt_it *di)
480 {
481         struct lod_it           *it = (struct lod_it *)di;
482         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
483         struct dt_object        *next;
484
485         LOD_CHECK_STRIPED_IT(env, it, lo);
486
487         next = lo->ldo_stripe[it->lit_stripe_index];
488         LASSERT(next != NULL);
489         LASSERT(next->do_index_ops != NULL);
490
491         return next->do_index_ops->dio_it.put(env, it->lit_it);
492 }
493
494 /**
495  * Implementation of dt_it_ops::next.
496  *
497  * Used with striped objects. When the end of the current stripe is
498  * reached, the method takes the next stripe's iterator.
499  *
500  * \see dt_it_ops::next() in the API description for details.
501  */
502 static int lod_striped_it_next(const struct lu_env *env, struct dt_it *di)
503 {
504         struct lod_it           *it = (struct lod_it *)di;
505         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
506         struct dt_object        *next;
507         struct dt_it            *it_next;
508         int                     rc;
509         ENTRY;
510
511         LOD_CHECK_STRIPED_IT(env, it, lo);
512
513         next = lo->ldo_stripe[it->lit_stripe_index];
514         LASSERT(next != NULL);
515         LASSERT(next->do_index_ops != NULL);
516 again:
517         rc = next->do_index_ops->dio_it.next(env, it->lit_it);
518         if (rc < 0)
519                 RETURN(rc);
520
521         if (rc == 0 && it->lit_stripe_index == 0)
522                 RETURN(rc);
523
524         if (rc == 0 && it->lit_stripe_index > 0) {
525                 struct lu_dirent *ent;
526
527                 ent = (struct lu_dirent *)lod_env_info(env)->lti_key;
528
529                 rc = next->do_index_ops->dio_it.rec(env, it->lit_it,
530                                                     (struct dt_rec *)ent,
531                                                     it->lit_attr);
532                 if (rc != 0)
533                         RETURN(rc);
534
535                 /* skip . and .. for slave stripe */
536                 if ((strncmp(ent->lde_name, ".",
537                              le16_to_cpu(ent->lde_namelen)) == 0 &&
538                      le16_to_cpu(ent->lde_namelen) == 1) ||
539                     (strncmp(ent->lde_name, "..",
540                              le16_to_cpu(ent->lde_namelen)) == 0 &&
541                      le16_to_cpu(ent->lde_namelen) == 2))
542                         goto again;
543
544                 RETURN(rc);
545         }
546
547         /* go to next stripe */
548         if (it->lit_stripe_index + 1 >= lo->ldo_dir_stripe_count)
549                 RETURN(1);
550
551         it->lit_stripe_index++;
552
553         next->do_index_ops->dio_it.put(env, it->lit_it);
554         next->do_index_ops->dio_it.fini(env, it->lit_it);
555         it->lit_it = NULL;
556
557         next = lo->ldo_stripe[it->lit_stripe_index];
558         LASSERT(next != NULL);
559         rc = next->do_ops->do_index_try(env, next, &dt_directory_features);
560         if (rc != 0)
561                 RETURN(rc);
562
563         LASSERT(next->do_index_ops != NULL);
564
565         it_next = next->do_index_ops->dio_it.init(env, next, it->lit_attr);
566         if (!IS_ERR(it_next)) {
567                 it->lit_it = it_next;
568                 goto again;
569         } else {
570                 rc = PTR_ERR(it_next);
571         }
572
573         RETURN(rc);
574 }
575
576 /**
577  * Implementation of dt_it_ops::key.
578  *
579  * Used with striped objects.
580  *
581  * \see dt_it_ops::key() in the API description for details.
582  */
583 static struct dt_key *lod_striped_it_key(const struct lu_env *env,
584                                          const struct dt_it *di)
585 {
586         const struct lod_it     *it = (const struct lod_it *)di;
587         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
588         struct dt_object        *next;
589
590         LOD_CHECK_STRIPED_IT(env, it, lo);
591
592         next = lo->ldo_stripe[it->lit_stripe_index];
593         LASSERT(next != NULL);
594         LASSERT(next->do_index_ops != NULL);
595
596         return next->do_index_ops->dio_it.key(env, it->lit_it);
597 }
598
599 /**
600  * Implementation of dt_it_ops::key_size.
601  *
602  * Used with striped objects.
603  *
604  * \see dt_it_ops::size() in the API description for details.
605  */
606 static int lod_striped_it_key_size(const struct lu_env *env,
607                                    const struct dt_it *di)
608 {
609         struct lod_it           *it = (struct lod_it *)di;
610         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
611         struct dt_object        *next;
612
613         LOD_CHECK_STRIPED_IT(env, it, lo);
614
615         next = lo->ldo_stripe[it->lit_stripe_index];
616         LASSERT(next != NULL);
617         LASSERT(next->do_index_ops != NULL);
618
619         return next->do_index_ops->dio_it.key_size(env, it->lit_it);
620 }
621
622 /**
623  * Implementation of dt_it_ops::rec.
624  *
625  * Used with striped objects.
626  *
627  * \see dt_it_ops::rec() in the API description for details.
628  */
629 static int lod_striped_it_rec(const struct lu_env *env, const struct dt_it *di,
630                               struct dt_rec *rec, __u32 attr)
631 {
632         const struct lod_it     *it = (const struct lod_it *)di;
633         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
634         struct dt_object        *next;
635
636         LOD_CHECK_STRIPED_IT(env, it, lo);
637
638         next = lo->ldo_stripe[it->lit_stripe_index];
639         LASSERT(next != NULL);
640         LASSERT(next->do_index_ops != NULL);
641
642         return next->do_index_ops->dio_it.rec(env, it->lit_it, rec, attr);
643 }
644
645 /**
646  * Implementation of dt_it_ops::rec_size.
647  *
648  * Used with striped objects.
649  *
650  * \see dt_it_ops::rec_size() in the API description for details.
651  */
652 static int lod_striped_it_rec_size(const struct lu_env *env,
653                                    const struct dt_it *di, __u32 attr)
654 {
655         struct lod_it           *it = (struct lod_it *)di;
656         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
657         struct dt_object        *next;
658
659         LOD_CHECK_STRIPED_IT(env, it, lo);
660
661         next = lo->ldo_stripe[it->lit_stripe_index];
662         LASSERT(next != NULL);
663         LASSERT(next->do_index_ops != NULL);
664
665         return next->do_index_ops->dio_it.rec_size(env, it->lit_it, attr);
666 }
667
668 /**
669  * Implementation of dt_it_ops::store.
670  *
671  * Used with striped objects.
672  *
673  * \see dt_it_ops::store() in the API description for details.
674  */
675 static __u64 lod_striped_it_store(const struct lu_env *env,
676                                   const struct dt_it *di)
677 {
678         const struct lod_it     *it = (const struct lod_it *)di;
679         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
680         struct dt_object        *next;
681
682         LOD_CHECK_STRIPED_IT(env, it, lo);
683
684         next = lo->ldo_stripe[it->lit_stripe_index];
685         LASSERT(next != NULL);
686         LASSERT(next->do_index_ops != NULL);
687
688         return next->do_index_ops->dio_it.store(env, it->lit_it);
689 }
690
691 /**
692  * Implementation of dt_it_ops::load.
693  *
694  * Used with striped objects.
695  *
696  * \see dt_it_ops::load() in the API description for details.
697  */
698 static int lod_striped_it_load(const struct lu_env *env,
699                                const struct dt_it *di, __u64 hash)
700 {
701         const struct lod_it     *it = (const struct lod_it *)di;
702         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
703         struct dt_object        *next;
704
705         LOD_CHECK_STRIPED_IT(env, it, lo);
706
707         next = lo->ldo_stripe[it->lit_stripe_index];
708         LASSERT(next != NULL);
709         LASSERT(next->do_index_ops != NULL);
710
711         return next->do_index_ops->dio_it.load(env, it->lit_it, hash);
712 }
713
714 static struct dt_index_operations lod_striped_index_ops = {
715         .dio_lookup             = lod_lookup,
716         .dio_declare_insert     = lod_declare_insert,
717         .dio_insert             = lod_insert,
718         .dio_declare_delete     = lod_declare_delete,
719         .dio_delete             = lod_delete,
720         .dio_it = {
721                 .init           = lod_striped_it_init,
722                 .fini           = lod_striped_it_fini,
723                 .get            = lod_striped_it_get,
724                 .put            = lod_striped_it_put,
725                 .next           = lod_striped_it_next,
726                 .key            = lod_striped_it_key,
727                 .key_size       = lod_striped_it_key_size,
728                 .rec            = lod_striped_it_rec,
729                 .rec_size       = lod_striped_it_rec_size,
730                 .store          = lod_striped_it_store,
731                 .load           = lod_striped_it_load,
732         }
733 };
734
735 /**
736  * Append the FID for each shard of the striped directory after the
737  * given LMV EA header.
738  *
739  * To simplify striped directory and the consistency verification,
740  * we only store the LMV EA header on disk, for both master object
741  * and slave objects. When someone wants to know the whole LMV EA,
742  * such as client readdir(), we can build the entrie LMV EA on the
743  * MDT side (in RAM) via iterating the sub-directory entries that
744  * are contained in the master object of the stripe directory.
745  *
746  * For the master object of the striped directroy, the valid name
747  * for each shard is composed of the ${shard_FID}:${shard_idx}.
748  *
749  * There may be holes in the LMV EA if some shards' name entries
750  * are corrupted or lost.
751  *
752  * \param[in] env       pointer to the thread context
753  * \param[in] lo        pointer to the master object of the striped directory
754  * \param[in] buf       pointer to the lu_buf which will hold the LMV EA
755  * \param[in] resize    whether re-allocate the buffer if it is not big enough
756  *
757  * \retval              positive size of the LMV EA
758  * \retval              0 for nothing to be loaded
759  * \retval              negative error number on failure
760  */
761 int lod_load_lmv_shards(const struct lu_env *env, struct lod_object *lo,
762                         struct lu_buf *buf, bool resize)
763 {
764         struct lu_dirent        *ent    =
765                         (struct lu_dirent *)lod_env_info(env)->lti_key;
766         struct lod_device       *lod    = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
767         struct dt_object        *obj    = dt_object_child(&lo->ldo_obj);
768         struct lmv_mds_md_v1    *lmv1   = buf->lb_buf;
769         struct dt_it            *it;
770         const struct dt_it_ops  *iops;
771         __u32                    stripes;
772         __u32                    magic  = le32_to_cpu(lmv1->lmv_magic);
773         size_t                   lmv1_size;
774         int                      rc;
775         ENTRY;
776
777         /* If it is not a striped directory, then load nothing. */
778         if (magic != LMV_MAGIC_V1)
779                 RETURN(0);
780
781         /* If it is in migration (or failure), then load nothing. */
782         if (le32_to_cpu(lmv1->lmv_hash_type) & LMV_HASH_FLAG_MIGRATION)
783                 RETURN(0);
784
785         stripes = le32_to_cpu(lmv1->lmv_stripe_count);
786         if (stripes < 1)
787                 RETURN(0);
788
789         rc = lmv_mds_md_size(stripes, magic);
790         if (rc < 0)
791                 RETURN(rc);
792         lmv1_size = rc;
793         if (buf->lb_len < lmv1_size) {
794                 struct lu_buf tbuf;
795
796                 if (!resize)
797                         RETURN(-ERANGE);
798
799                 tbuf = *buf;
800                 buf->lb_buf = NULL;
801                 buf->lb_len = 0;
802                 lu_buf_alloc(buf, lmv1_size);
803                 lmv1 = buf->lb_buf;
804                 if (lmv1 == NULL)
805                         RETURN(-ENOMEM);
806
807                 memcpy(buf->lb_buf, tbuf.lb_buf, tbuf.lb_len);
808         }
809
810         if (unlikely(!dt_try_as_dir(env, obj)))
811                 RETURN(-ENOTDIR);
812
813         memset(&lmv1->lmv_stripe_fids[0], 0, stripes * sizeof(struct lu_fid));
814         iops = &obj->do_index_ops->dio_it;
815         it = iops->init(env, obj, LUDA_64BITHASH);
816         if (IS_ERR(it))
817                 RETURN(PTR_ERR(it));
818
819         rc = iops->load(env, it, 0);
820         if (rc == 0)
821                 rc = iops->next(env, it);
822         else if (rc > 0)
823                 rc = 0;
824
825         while (rc == 0) {
826                 char             name[FID_LEN + 2] = "";
827                 struct lu_fid    fid;
828                 __u32            index;
829                 int              len;
830
831                 rc = iops->rec(env, it, (struct dt_rec *)ent, LUDA_64BITHASH);
832                 if (rc != 0)
833                         break;
834
835                 rc = -EIO;
836
837                 fid_le_to_cpu(&fid, &ent->lde_fid);
838                 ent->lde_namelen = le16_to_cpu(ent->lde_namelen);
839                 if (ent->lde_name[0] == '.') {
840                         if (ent->lde_namelen == 1)
841                                 goto next;
842
843                         if (ent->lde_namelen == 2 && ent->lde_name[1] == '.')
844                                 goto next;
845                 }
846
847                 len = snprintf(name, sizeof(name),
848                                DFID":", PFID(&ent->lde_fid));
849                 /* The ent->lde_name is composed of ${FID}:${index} */
850                 if (ent->lde_namelen < len + 1 ||
851                     memcmp(ent->lde_name, name, len) != 0) {
852                         CDEBUG(lod->lod_lmv_failout ? D_ERROR : D_INFO,
853                                "%s: invalid shard name %.*s with the FID "DFID
854                                " for the striped directory "DFID", %s\n",
855                                lod2obd(lod)->obd_name, ent->lde_namelen,
856                                ent->lde_name, PFID(&fid),
857                                PFID(lu_object_fid(&obj->do_lu)),
858                                lod->lod_lmv_failout ? "failout" : "skip");
859
860                         if (lod->lod_lmv_failout)
861                                 break;
862
863                         goto next;
864                 }
865
866                 index = 0;
867                 do {
868                         if (ent->lde_name[len] < '0' ||
869                             ent->lde_name[len] > '9') {
870                                 CDEBUG(lod->lod_lmv_failout ? D_ERROR : D_INFO,
871                                        "%s: invalid shard name %.*s with the "
872                                        "FID "DFID" for the striped directory "
873                                        DFID", %s\n",
874                                        lod2obd(lod)->obd_name, ent->lde_namelen,
875                                        ent->lde_name, PFID(&fid),
876                                        PFID(lu_object_fid(&obj->do_lu)),
877                                        lod->lod_lmv_failout ?
878                                        "failout" : "skip");
879
880                                 if (lod->lod_lmv_failout)
881                                         break;
882
883                                 goto next;
884                         }
885
886                         index = index * 10 + ent->lde_name[len++] - '0';
887                 } while (len < ent->lde_namelen);
888
889                 if (len == ent->lde_namelen) {
890                         /* Out of LMV EA range. */
891                         if (index >= stripes) {
892                                 CERROR("%s: the shard %.*s for the striped "
893                                        "directory "DFID" is out of the known "
894                                        "LMV EA range [0 - %u], failout\n",
895                                        lod2obd(lod)->obd_name, ent->lde_namelen,
896                                        ent->lde_name,
897                                        PFID(lu_object_fid(&obj->do_lu)),
898                                        stripes - 1);
899
900                                 break;
901                         }
902
903                         /* The slot has been occupied. */
904                         if (!fid_is_zero(&lmv1->lmv_stripe_fids[index])) {
905                                 struct lu_fid fid0;
906
907                                 fid_le_to_cpu(&fid0,
908                                         &lmv1->lmv_stripe_fids[index]);
909                                 CERROR("%s: both the shard "DFID" and "DFID
910                                        " for the striped directory "DFID
911                                        " claim the same LMV EA slot at the "
912                                        "index %d, failout\n",
913                                        lod2obd(lod)->obd_name,
914                                        PFID(&fid0), PFID(&fid),
915                                        PFID(lu_object_fid(&obj->do_lu)), index);
916
917                                 break;
918                         }
919
920                         /* stored as LE mode */
921                         lmv1->lmv_stripe_fids[index] = ent->lde_fid;
922
923 next:
924                         rc = iops->next(env, it);
925                 }
926         }
927
928         iops->put(env, it);
929         iops->fini(env, it);
930
931         RETURN(rc > 0 ? lmv_mds_md_size(stripes, magic) : rc);
932 }
933
934 /**
935  * Implementation of dt_object_operations::do_index_try.
936  *
937  * \see dt_object_operations::do_index_try() in the API description for details.
938  */
939 static int lod_index_try(const struct lu_env *env, struct dt_object *dt,
940                          const struct dt_index_features *feat)
941 {
942         struct lod_object       *lo = lod_dt_obj(dt);
943         struct dt_object        *next = dt_object_child(dt);
944         int                     rc;
945         ENTRY;
946
947         LASSERT(next->do_ops);
948         LASSERT(next->do_ops->do_index_try);
949
950         rc = lod_load_striping_locked(env, lo);
951         if (rc != 0)
952                 RETURN(rc);
953
954         rc = next->do_ops->do_index_try(env, next, feat);
955         if (rc != 0)
956                 RETURN(rc);
957
958         if (lo->ldo_dir_stripe_count > 0) {
959                 int i;
960
961                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
962                         if (dt_object_exists(lo->ldo_stripe[i]) == 0)
963                                 continue;
964                         rc = lo->ldo_stripe[i]->do_ops->do_index_try(env,
965                                                 lo->ldo_stripe[i], feat);
966                         if (rc != 0)
967                                 RETURN(rc);
968                 }
969                 dt->do_index_ops = &lod_striped_index_ops;
970         } else {
971                 dt->do_index_ops = &lod_index_ops;
972         }
973
974         RETURN(rc);
975 }
976
977 /**
978  * Implementation of dt_object_operations::do_read_lock.
979  *
980  * \see dt_object_operations::do_read_lock() in the API description for details.
981  */
982 static void lod_read_lock(const struct lu_env *env, struct dt_object *dt,
983                           unsigned role)
984 {
985         dt_read_lock(env, dt_object_child(dt), role);
986 }
987
988 /**
989  * Implementation of dt_object_operations::do_write_lock.
990  *
991  * \see dt_object_operations::do_write_lock() in the API description for
992  * details.
993  */
994 static void lod_write_lock(const struct lu_env *env, struct dt_object *dt,
995                            unsigned role)
996 {
997         dt_write_lock(env, dt_object_child(dt), role);
998 }
999
1000 /**
1001  * Implementation of dt_object_operations::do_read_unlock.
1002  *
1003  * \see dt_object_operations::do_read_unlock() in the API description for
1004  * details.
1005  */
1006 static void lod_read_unlock(const struct lu_env *env, struct dt_object *dt)
1007 {
1008         dt_read_unlock(env, dt_object_child(dt));
1009 }
1010
1011 /**
1012  * Implementation of dt_object_operations::do_write_unlock.
1013  *
1014  * \see dt_object_operations::do_write_unlock() in the API description for
1015  * details.
1016  */
1017 static void lod_write_unlock(const struct lu_env *env, struct dt_object *dt)
1018 {
1019         dt_write_unlock(env, dt_object_child(dt));
1020 }
1021
1022 /**
1023  * Implementation of dt_object_operations::do_write_locked.
1024  *
1025  * \see dt_object_operations::do_write_locked() in the API description for
1026  * details.
1027  */
1028 static int lod_write_locked(const struct lu_env *env, struct dt_object *dt)
1029 {
1030         return dt_write_locked(env, dt_object_child(dt));
1031 }
1032
1033 /**
1034  * Implementation of dt_object_operations::do_attr_get.
1035  *
1036  * \see dt_object_operations::do_attr_get() in the API description for details.
1037  */
1038 static int lod_attr_get(const struct lu_env *env,
1039                         struct dt_object *dt,
1040                         struct lu_attr *attr)
1041 {
1042         /* Note: for striped directory, client will merge attributes
1043          * from all of the sub-stripes see lmv_merge_attr(), and there
1044          * no MDD logic depend on directory nlink/size/time, so we can
1045          * always use master inode nlink and size for now. */
1046         return dt_attr_get(env, dt_object_child(dt), attr);
1047 }
1048
1049 int lod_obj_for_each_stripe(const struct lu_env *env, struct lod_object *lo,
1050                             struct thandle *th,
1051                             struct lod_obj_stripe_cb_data *data)
1052 {
1053         struct lod_layout_component *lod_comp;
1054         int i, j, rc;
1055         ENTRY;
1056
1057         LASSERT(lo->ldo_comp_cnt != 0 && lo->ldo_comp_entries != NULL);
1058         for (i = 0; i < lo->ldo_comp_cnt; i++) {
1059                 lod_comp = &lo->ldo_comp_entries[i];
1060
1061                 if (lod_comp->llc_stripe == NULL)
1062                         continue;
1063
1064                 /* has stripe but not inited yet, this component has been
1065                  * declared to be created, but hasn't created yet.
1066                  */
1067                 if (!lod_comp_inited(lod_comp))
1068                         continue;
1069
1070                 if (data->locd_comp_skip_cb &&
1071                     data->locd_comp_skip_cb(env, lo, i, data))
1072                         continue;
1073
1074                 LASSERT(lod_comp->llc_stripe_count > 0);
1075                 for (j = 0; j < lod_comp->llc_stripe_count; j++) {
1076                         struct dt_object *dt = lod_comp->llc_stripe[j];
1077
1078                         if (dt == NULL)
1079                                 continue;
1080                         rc = data->locd_stripe_cb(env, lo, dt, th, i, j, data);
1081                         if (rc != 0)
1082                                 RETURN(rc);
1083                 }
1084         }
1085         RETURN(0);
1086 }
1087
1088 static bool lod_obj_attr_set_comp_skip_cb(const struct lu_env *env,
1089                 struct lod_object *lo, int comp_idx,
1090                 struct lod_obj_stripe_cb_data *data)
1091 {
1092         struct lod_layout_component *lod_comp = &lo->ldo_comp_entries[comp_idx];
1093         bool skipped = false;
1094
1095         if (!(data->locd_attr->la_valid & LA_LAYOUT_VERSION))
1096                 return skipped;
1097
1098         switch (lo->ldo_flr_state) {
1099         case LCM_FL_WRITE_PENDING: {
1100                 int i;
1101
1102                 /* skip stale components */
1103                 if (lod_comp->llc_flags & LCME_FL_STALE) {
1104                         skipped = true;
1105                         break;
1106                 }
1107
1108                 /* skip valid and overlapping components, therefore any
1109                  * attempts to write overlapped components will never succeed
1110                  * because client will get EINPROGRESS. */
1111                 for (i = 0; i < lo->ldo_comp_cnt; i++) {
1112                         if (i == comp_idx)
1113                                 continue;
1114
1115                         if (lo->ldo_comp_entries[i].llc_flags & LCME_FL_STALE)
1116                                 continue;
1117
1118                         if (lu_extent_is_overlapped(&lod_comp->llc_extent,
1119                                         &lo->ldo_comp_entries[i].llc_extent)) {
1120                                 skipped = true;
1121                                 break;
1122                         }
1123                 }
1124                 break;
1125         }
1126         default:
1127                 LASSERTF(0, "impossible: %d\n", lo->ldo_flr_state);
1128         case LCM_FL_SYNC_PENDING:
1129                 break;
1130         }
1131
1132         CDEBUG(D_LAYOUT, DFID": %s to set component %x to version: %u\n",
1133                PFID(lu_object_fid(&lo->ldo_obj.do_lu)),
1134                skipped ? "skipped" : "chose", lod_comp->llc_id,
1135                data->locd_attr->la_layout_version);
1136
1137         return skipped;
1138 }
1139
1140 static inline int
1141 lod_obj_stripe_attr_set_cb(const struct lu_env *env, struct lod_object *lo,
1142                            struct dt_object *dt, struct thandle *th,
1143                            int comp_idx, int stripe_idx,
1144                            struct lod_obj_stripe_cb_data *data)
1145 {
1146         if (data->locd_declare)
1147                 return lod_sub_declare_attr_set(env, dt, data->locd_attr, th);
1148
1149         if (data->locd_attr->la_valid & LA_LAYOUT_VERSION) {
1150                 CDEBUG(D_LAYOUT, DFID": set layout version: %u, comp_idx: %d\n",
1151                        PFID(lu_object_fid(&dt->do_lu)),
1152                        data->locd_attr->la_layout_version, comp_idx);
1153         }
1154
1155         return lod_sub_attr_set(env, dt, data->locd_attr, th);
1156 }
1157
1158 /**
1159  * Implementation of dt_object_operations::do_declare_attr_set.
1160  *
1161  * If the object is striped, then apply the changes to all the stripes.
1162  *
1163  * \see dt_object_operations::do_declare_attr_set() in the API description
1164  * for details.
1165  */
1166 static int lod_declare_attr_set(const struct lu_env *env,
1167                                 struct dt_object *dt,
1168                                 const struct lu_attr *attr,
1169                                 struct thandle *th)
1170 {
1171         struct dt_object  *next = dt_object_child(dt);
1172         struct lod_object *lo = lod_dt_obj(dt);
1173         int                rc, i;
1174         ENTRY;
1175
1176         /*
1177          * declare setattr on the local object
1178          */
1179         rc = lod_sub_declare_attr_set(env, next, attr, th);
1180         if (rc)
1181                 RETURN(rc);
1182
1183         /* osp_declare_attr_set() ignores all attributes other than
1184          * UID, GID, PROJID, and size, and osp_attr_set() ignores all
1185          * but UID, GID and PROJID. Declaration of size attr setting
1186          * happens through lod_declare_init_size(), and not through
1187          * this function. Therefore we need not load striping unless
1188          * ownership is changing.  This should save memory and (we hope)
1189          * speed up rename().
1190          */
1191         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
1192                 if (!(attr->la_valid & LA_REMOTE_ATTR_SET))
1193                         RETURN(rc);
1194
1195                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_OWNER))
1196                         RETURN(0);
1197         } else {
1198                 if (!(attr->la_valid & (LA_UID | LA_GID | LA_PROJID | LA_MODE |
1199                                         LA_ATIME | LA_MTIME | LA_CTIME |
1200                                         LA_FLAGS)))
1201                         RETURN(rc);
1202         }
1203         /*
1204          * load striping information, notice we don't do this when object
1205          * is being initialized as we don't need this information till
1206          * few specific cases like destroy, chown
1207          */
1208         rc = lod_load_striping(env, lo);
1209         if (rc)
1210                 RETURN(rc);
1211
1212         if (!lod_obj_is_striped(dt))
1213                 RETURN(0);
1214
1215         /*
1216          * if object is striped declare changes on the stripes
1217          */
1218         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
1219                 LASSERT(lo->ldo_stripe);
1220                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
1221                         if (lo->ldo_stripe[i] == NULL)
1222                                 continue;
1223                         rc = lod_sub_declare_attr_set(env, lo->ldo_stripe[i],
1224                                                       attr, th);
1225                         if (rc != 0)
1226                                 RETURN(rc);
1227                 }
1228         } else {
1229                 struct lod_obj_stripe_cb_data data = { { 0 } };
1230
1231                 data.locd_attr = attr;
1232                 data.locd_declare = true;
1233                 data.locd_stripe_cb = lod_obj_stripe_attr_set_cb;
1234                 rc = lod_obj_for_each_stripe(env, lo, th, &data);
1235         }
1236
1237         if (rc)
1238                 RETURN(rc);
1239
1240         if (!dt_object_exists(next) || dt_object_remote(next) ||
1241             !S_ISREG(attr->la_mode))
1242                 RETURN(0);
1243
1244         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_STRIPE)) {
1245                 rc = lod_sub_declare_xattr_del(env, next, XATTR_NAME_LOV, th);
1246                 RETURN(rc);
1247         }
1248
1249         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_CHANGE_STRIPE) ||
1250             OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_PFL_RANGE)) {
1251                 struct lod_thread_info *info = lod_env_info(env);
1252                 struct lu_buf *buf = &info->lti_buf;
1253
1254                 buf->lb_buf = info->lti_ea_store;
1255                 buf->lb_len = info->lti_ea_store_size;
1256                 rc = lod_sub_declare_xattr_set(env, next, buf, XATTR_NAME_LOV,
1257                                                LU_XATTR_REPLACE, th);
1258         }
1259
1260         RETURN(rc);
1261 }
1262
1263 /**
1264  * Implementation of dt_object_operations::do_attr_set.
1265  *
1266  * If the object is striped, then apply the changes to all or subset of
1267  * the stripes depending on the object type and specific attributes.
1268  *
1269  * \see dt_object_operations::do_attr_set() in the API description for details.
1270  */
1271 static int lod_attr_set(const struct lu_env *env,
1272                         struct dt_object *dt,
1273                         const struct lu_attr *attr,
1274                         struct thandle *th)
1275 {
1276         struct dt_object        *next = dt_object_child(dt);
1277         struct lod_object       *lo = lod_dt_obj(dt);
1278         int                     rc, i;
1279         ENTRY;
1280
1281         /*
1282          * apply changes to the local object
1283          */
1284         rc = lod_sub_attr_set(env, next, attr, th);
1285         if (rc)
1286                 RETURN(rc);
1287
1288         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
1289                 if (!(attr->la_valid & LA_REMOTE_ATTR_SET))
1290                         RETURN(rc);
1291
1292                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_OWNER))
1293                         RETURN(0);
1294         } else {
1295                 if (!(attr->la_valid & (LA_UID | LA_GID | LA_MODE | LA_PROJID |
1296                                         LA_ATIME | LA_MTIME | LA_CTIME |
1297                                         LA_FLAGS)))
1298                         RETURN(rc);
1299         }
1300
1301         /* FIXME: a tricky case in the code path of mdd_layout_change():
1302          * the in-memory striping information has been freed in lod_xattr_set()
1303          * due to layout change. It has to load stripe here again. It only
1304          * changes flags of layout so declare_attr_set() is still accurate */
1305         rc = lod_load_striping_locked(env, lo);
1306         if (rc)
1307                 RETURN(rc);
1308
1309         if (!lod_obj_is_striped(dt))
1310                 RETURN(0);
1311
1312         /*
1313          * if object is striped, apply changes to all the stripes
1314          */
1315         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
1316                 LASSERT(lo->ldo_stripe);
1317                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
1318                         if (unlikely(lo->ldo_stripe[i] == NULL))
1319                                 continue;
1320
1321                         if ((dt_object_exists(lo->ldo_stripe[i]) == 0))
1322                                 continue;
1323
1324                         rc = lod_sub_attr_set(env, lo->ldo_stripe[i], attr, th);
1325                         if (rc != 0)
1326                                 break;
1327                 }
1328         } else {
1329                 struct lod_obj_stripe_cb_data data = { { 0 } };
1330
1331                 data.locd_attr = attr;
1332                 data.locd_declare = false;
1333                 data.locd_comp_skip_cb = lod_obj_attr_set_comp_skip_cb;
1334                 data.locd_stripe_cb = lod_obj_stripe_attr_set_cb;
1335                 rc = lod_obj_for_each_stripe(env, lo, th, &data);
1336         }
1337
1338         if (rc)
1339                 RETURN(rc);
1340
1341         if (!dt_object_exists(next) || dt_object_remote(next) ||
1342             !S_ISREG(attr->la_mode))
1343                 RETURN(0);
1344
1345         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_STRIPE)) {
1346                 rc = lod_sub_xattr_del(env, next, XATTR_NAME_LOV, th);
1347                 RETURN(rc);
1348         }
1349
1350         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_CHANGE_STRIPE)) {
1351                 struct lod_thread_info *info = lod_env_info(env);
1352                 struct lu_buf *buf = &info->lti_buf;
1353                 struct ost_id *oi = &info->lti_ostid;
1354                 struct lu_fid *fid = &info->lti_fid;
1355                 struct lov_mds_md_v1 *lmm;
1356                 struct lov_ost_data_v1 *objs;
1357                 __u32 magic;
1358
1359                 rc = lod_get_lov_ea(env, lo);
1360                 if (rc <= 0)
1361                         RETURN(rc);
1362
1363                 buf->lb_buf = info->lti_ea_store;
1364                 buf->lb_len = info->lti_ea_store_size;
1365                 lmm = info->lti_ea_store;
1366                 magic = le32_to_cpu(lmm->lmm_magic);
1367                 if (magic == LOV_MAGIC_COMP_V1) {
1368                         struct lov_comp_md_v1 *lcm = buf->lb_buf;
1369                         struct lov_comp_md_entry_v1 *lcme =
1370                                                 &lcm->lcm_entries[0];
1371
1372                         lmm = buf->lb_buf + le32_to_cpu(lcme->lcme_offset);
1373                         magic = le32_to_cpu(lmm->lmm_magic);
1374                 }
1375
1376                 if (magic == LOV_MAGIC_V1)
1377                         objs = &(lmm->lmm_objects[0]);
1378                 else
1379                         objs = &((struct lov_mds_md_v3 *)lmm)->lmm_objects[0];
1380                 ostid_le_to_cpu(&objs->l_ost_oi, oi);
1381                 ostid_to_fid(fid, oi, le32_to_cpu(objs->l_ost_idx));
1382                 fid->f_oid--;
1383                 fid_to_ostid(fid, oi);
1384                 ostid_cpu_to_le(oi, &objs->l_ost_oi);
1385
1386                 rc = lod_sub_xattr_set(env, next, buf, XATTR_NAME_LOV,
1387                                        LU_XATTR_REPLACE, th);
1388         } else if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_PFL_RANGE)) {
1389                 struct lod_thread_info *info = lod_env_info(env);
1390                 struct lu_buf *buf = &info->lti_buf;
1391                 struct lov_comp_md_v1 *lcm;
1392                 struct lov_comp_md_entry_v1 *lcme;
1393
1394                 rc = lod_get_lov_ea(env, lo);
1395                 if (rc <= 0)
1396                         RETURN(rc);
1397
1398                 buf->lb_buf = info->lti_ea_store;
1399                 buf->lb_len = info->lti_ea_store_size;
1400                 lcm = buf->lb_buf;
1401                 if (le32_to_cpu(lcm->lcm_magic) != LOV_MAGIC_COMP_V1)
1402                         RETURN(-EINVAL);
1403
1404                 le32_add_cpu(&lcm->lcm_layout_gen, 1);
1405                 lcme = &lcm->lcm_entries[0];
1406                 le64_add_cpu(&lcme->lcme_extent.e_start, 1);
1407                 le64_add_cpu(&lcme->lcme_extent.e_end, -1);
1408
1409                 rc = lod_sub_xattr_set(env, next, buf, XATTR_NAME_LOV,
1410                                        LU_XATTR_REPLACE, th);
1411         }
1412
1413         RETURN(rc);
1414 }
1415
1416 /**
1417  * Implementation of dt_object_operations::do_xattr_get.
1418  *
1419  * If LOV EA is requested from the root object and it's not
1420  * found, then return default striping for the filesystem.
1421  *
1422  * \see dt_object_operations::do_xattr_get() in the API description for details.
1423  */
1424 static int lod_xattr_get(const struct lu_env *env, struct dt_object *dt,
1425                          struct lu_buf *buf, const char *name)
1426 {
1427         struct lod_thread_info *info = lod_env_info(env);
1428         struct lod_device *dev = lu2lod_dev(dt->do_lu.lo_dev);
1429         int is_root;
1430         int rc;
1431         ENTRY;
1432
1433         rc = dt_xattr_get(env, dt_object_child(dt), buf, name);
1434         if (strcmp(name, XATTR_NAME_LMV) == 0) {
1435                 struct lmv_mds_md_v1    *lmv1;
1436                 int                      rc1 = 0;
1437
1438                 if (rc > (typeof(rc))sizeof(*lmv1))
1439                         RETURN(rc);
1440
1441                 if (rc < (typeof(rc))sizeof(*lmv1))
1442                         RETURN(rc = rc > 0 ? -EINVAL : rc);
1443
1444                 if (buf->lb_buf == NULL || buf->lb_len == 0) {
1445                         CLASSERT(sizeof(*lmv1) <= sizeof(info->lti_key));
1446
1447                         info->lti_buf.lb_buf = info->lti_key;
1448                         info->lti_buf.lb_len = sizeof(*lmv1);
1449                         rc = dt_xattr_get(env, dt_object_child(dt),
1450                                           &info->lti_buf, name);
1451                         if (unlikely(rc != sizeof(*lmv1)))
1452                                 RETURN(rc = rc > 0 ? -EINVAL : rc);
1453
1454                         lmv1 = info->lti_buf.lb_buf;
1455                         /* The on-disk LMV EA only contains header, but the
1456                          * returned LMV EA size should contain the space for
1457                          * the FIDs of all shards of the striped directory. */
1458                         if (le32_to_cpu(lmv1->lmv_magic) == LMV_MAGIC_V1)
1459                                 rc = lmv_mds_md_size(
1460                                         le32_to_cpu(lmv1->lmv_stripe_count),
1461                                         LMV_MAGIC_V1);
1462                 } else {
1463                         rc1 = lod_load_lmv_shards(env, lod_dt_obj(dt),
1464                                                   buf, false);
1465                 }
1466
1467                 RETURN(rc = rc1 != 0 ? rc1 : rc);
1468         }
1469
1470         if (rc != -ENODATA || !S_ISDIR(dt->do_lu.lo_header->loh_attr & S_IFMT))
1471                 RETURN(rc);
1472
1473         /*
1474          * XXX: Only used by lfsck
1475          *
1476          * lod returns default striping on the real root of the device
1477          * this is like the root stores default striping for the whole
1478          * filesystem. historically we've been using a different approach
1479          * and store it in the config.
1480          */
1481         dt_root_get(env, dev->lod_child, &info->lti_fid);
1482         is_root = lu_fid_eq(&info->lti_fid, lu_object_fid(&dt->do_lu));
1483
1484         if (is_root && strcmp(XATTR_NAME_LOV, name) == 0) {
1485                 struct lov_user_md *lum = buf->lb_buf;
1486                 struct lov_desc    *desc = &dev->lod_desc;
1487
1488                 if (buf->lb_buf == NULL) {
1489                         rc = sizeof(*lum);
1490                 } else if (buf->lb_len >= sizeof(*lum)) {
1491                         lum->lmm_magic = cpu_to_le32(LOV_USER_MAGIC_V1);
1492                         lmm_oi_set_seq(&lum->lmm_oi, FID_SEQ_LOV_DEFAULT);
1493                         lmm_oi_set_id(&lum->lmm_oi, 0);
1494                         lmm_oi_cpu_to_le(&lum->lmm_oi, &lum->lmm_oi);
1495                         lum->lmm_pattern = cpu_to_le32(desc->ld_pattern);
1496                         lum->lmm_stripe_size = cpu_to_le32(
1497                                                 desc->ld_default_stripe_size);
1498                         lum->lmm_stripe_count = cpu_to_le16(
1499                                                 desc->ld_default_stripe_count);
1500                         lum->lmm_stripe_offset = cpu_to_le16(
1501                                                 desc->ld_default_stripe_offset);
1502                         rc = sizeof(*lum);
1503                 } else {
1504                         rc = -ERANGE;
1505                 }
1506         }
1507
1508         RETURN(rc);
1509 }
1510
1511 /**
1512  * Verify LVM EA.
1513  *
1514  * Checks that the magic of the stripe is sane.
1515  *
1516  * \param[in] lod       lod device
1517  * \param[in] lum       a buffer storing LMV EA to verify
1518  *
1519  * \retval              0 if the EA is sane
1520  * \retval              negative otherwise
1521  */
1522 static int lod_verify_md_striping(struct lod_device *lod,
1523                                   const struct lmv_user_md_v1 *lum)
1524 {
1525         if (unlikely(le32_to_cpu(lum->lum_magic) != LMV_USER_MAGIC)) {
1526                 CERROR("%s: invalid lmv_user_md: magic = %x, "
1527                        "stripe_offset = %d, stripe_count = %u: rc = %d\n",
1528                        lod2obd(lod)->obd_name, le32_to_cpu(lum->lum_magic),
1529                        (int)le32_to_cpu(lum->lum_stripe_offset),
1530                        le32_to_cpu(lum->lum_stripe_count), -EINVAL);
1531                 return -EINVAL;
1532         }
1533
1534         return 0;
1535 }
1536
1537 /**
1538  * Initialize LMV EA for a slave.
1539  *
1540  * Initialize slave's LMV EA from the master's LMV EA.
1541  *
1542  * \param[in] master_lmv        a buffer containing master's EA
1543  * \param[out] slave_lmv        a buffer where slave's EA will be stored
1544  *
1545  */
1546 static void lod_prep_slave_lmv_md(struct lmv_mds_md_v1 *slave_lmv,
1547                                   const struct lmv_mds_md_v1 *master_lmv)
1548 {
1549         *slave_lmv = *master_lmv;
1550         slave_lmv->lmv_magic = cpu_to_le32(LMV_MAGIC_STRIPE);
1551 }
1552
1553 /**
1554  * Generate LMV EA.
1555  *
1556  * Generate LMV EA from the object passed as \a dt. The object must have
1557  * the stripes created and initialized.
1558  *
1559  * \param[in] env       execution environment
1560  * \param[in] dt        object
1561  * \param[out] lmv_buf  buffer storing generated LMV EA
1562  *
1563  * \retval              0 on success
1564  * \retval              negative if failed
1565  */
1566 static int lod_prep_lmv_md(const struct lu_env *env, struct dt_object *dt,
1567                            struct lu_buf *lmv_buf)
1568 {
1569         struct lod_thread_info  *info = lod_env_info(env);
1570         struct lod_device       *lod = lu2lod_dev(dt->do_lu.lo_dev);
1571         struct lod_object       *lo = lod_dt_obj(dt);
1572         struct lmv_mds_md_v1    *lmm1;
1573         int                     stripe_count;
1574         int                     type = LU_SEQ_RANGE_ANY;
1575         int                     rc;
1576         __u32                   mdtidx;
1577         ENTRY;
1578
1579         LASSERT(lo->ldo_dir_striped != 0);
1580         LASSERT(lo->ldo_dir_stripe_count > 0);
1581         stripe_count = lo->ldo_dir_stripe_count;
1582         /* Only store the LMV EA heahder on the disk. */
1583         if (info->lti_ea_store_size < sizeof(*lmm1)) {
1584                 rc = lod_ea_store_resize(info, sizeof(*lmm1));
1585                 if (rc != 0)
1586                         RETURN(rc);
1587         } else {
1588                 memset(info->lti_ea_store, 0, sizeof(*lmm1));
1589         }
1590
1591         lmm1 = (struct lmv_mds_md_v1 *)info->lti_ea_store;
1592         lmm1->lmv_magic = cpu_to_le32(LMV_MAGIC);
1593         lmm1->lmv_stripe_count = cpu_to_le32(stripe_count);
1594         lmm1->lmv_hash_type = cpu_to_le32(lo->ldo_dir_hash_type);
1595         rc = lod_fld_lookup(env, lod, lu_object_fid(&dt->do_lu),
1596                             &mdtidx, &type);
1597         if (rc != 0)
1598                 RETURN(rc);
1599
1600         lmm1->lmv_master_mdt_index = cpu_to_le32(mdtidx);
1601         lmv_buf->lb_buf = info->lti_ea_store;
1602         lmv_buf->lb_len = sizeof(*lmm1);
1603
1604         RETURN(rc);
1605 }
1606
1607 /**
1608  * Create in-core represenation for a striped directory.
1609  *
1610  * Parse the buffer containing LMV EA and instantiate LU objects
1611  * representing the stripe objects. The pointers to the objects are
1612  * stored in ldo_stripe field of \a lo. This function is used when
1613  * we need to access an already created object (i.e. load from a disk).
1614  *
1615  * \param[in] env       execution environment
1616  * \param[in] lo        lod object
1617  * \param[in] buf       buffer containing LMV EA
1618  *
1619  * \retval              0 on success
1620  * \retval              negative if failed
1621  */
1622 int lod_parse_dir_striping(const struct lu_env *env, struct lod_object *lo,
1623                            const struct lu_buf *buf)
1624 {
1625         struct lod_thread_info  *info = lod_env_info(env);
1626         struct lod_device       *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
1627         struct lod_tgt_descs    *ltd = &lod->lod_mdt_descs;
1628         struct dt_object        **stripe;
1629         union lmv_mds_md        *lmm = buf->lb_buf;
1630         struct lmv_mds_md_v1    *lmv1 = &lmm->lmv_md_v1;
1631         struct lu_fid           *fid = &info->lti_fid;
1632         unsigned int            i;
1633         int                     rc = 0;
1634         ENTRY;
1635
1636         if (le32_to_cpu(lmv1->lmv_hash_type) & LMV_HASH_FLAG_MIGRATION)
1637                 RETURN(0);
1638
1639         if (le32_to_cpu(lmv1->lmv_magic) == LMV_MAGIC_STRIPE) {
1640                 lo->ldo_dir_slave_stripe = 1;
1641                 RETURN(0);
1642         }
1643
1644         if (le32_to_cpu(lmv1->lmv_magic) != LMV_MAGIC_V1)
1645                 RETURN(-EINVAL);
1646
1647         if (le32_to_cpu(lmv1->lmv_stripe_count) < 1)
1648                 RETURN(0);
1649
1650         LASSERT(lo->ldo_stripe == NULL);
1651         OBD_ALLOC(stripe, sizeof(stripe[0]) *
1652                   (le32_to_cpu(lmv1->lmv_stripe_count)));
1653         if (stripe == NULL)
1654                 RETURN(-ENOMEM);
1655
1656         for (i = 0; i < le32_to_cpu(lmv1->lmv_stripe_count); i++) {
1657                 struct dt_device        *tgt_dt;
1658                 struct dt_object        *dto;
1659                 int                     type = LU_SEQ_RANGE_ANY;
1660                 __u32                   idx;
1661
1662                 fid_le_to_cpu(fid, &lmv1->lmv_stripe_fids[i]);
1663                 if (!fid_is_sane(fid))
1664                         GOTO(out, rc = -ESTALE);
1665
1666                 rc = lod_fld_lookup(env, lod, fid, &idx, &type);
1667                 if (rc != 0)
1668                         GOTO(out, rc);
1669
1670                 if (idx == lod2lu_dev(lod)->ld_site->ld_seq_site->ss_node_id) {
1671                         tgt_dt = lod->lod_child;
1672                 } else {
1673                         struct lod_tgt_desc     *tgt;
1674
1675                         tgt = LTD_TGT(ltd, idx);
1676                         if (tgt == NULL)
1677                                 GOTO(out, rc = -ESTALE);
1678                         tgt_dt = tgt->ltd_tgt;
1679                 }
1680
1681                 dto = dt_locate_at(env, tgt_dt, fid,
1682                                   lo->ldo_obj.do_lu.lo_dev->ld_site->ls_top_dev,
1683                                   NULL);
1684                 if (IS_ERR(dto))
1685                         GOTO(out, rc = PTR_ERR(dto));
1686
1687                 stripe[i] = dto;
1688         }
1689 out:
1690         lo->ldo_stripe = stripe;
1691         lo->ldo_dir_stripe_count = le32_to_cpu(lmv1->lmv_stripe_count);
1692         lo->ldo_dir_stripes_allocated = le32_to_cpu(lmv1->lmv_stripe_count);
1693         if (rc != 0)
1694                 lod_object_free_striping(env, lo);
1695
1696         RETURN(rc);
1697 }
1698
1699 /**
1700  * Declare create a striped directory.
1701  *
1702  * Declare creating a striped directory with a given stripe pattern on the
1703  * specified MDTs. A striped directory is represented as a regular directory
1704  * - an index listing all the stripes. The stripes point back to the master
1705  * object with ".." and LinkEA. The master object gets LMV EA which
1706  * identifies it as a striped directory. The function allocates FIDs
1707  * for all stripes.
1708  *
1709  * \param[in] env       execution environment
1710  * \param[in] dt        object
1711  * \param[in] attr      attributes to initialize the objects with
1712  * \param[in] dof       type of objects to be created
1713  * \param[in] th        transaction handle
1714  *
1715  * \retval              0 on success
1716  * \retval              negative if failed
1717  */
1718 static int lod_dir_declare_create_stripes(const struct lu_env *env,
1719                                           struct dt_object *dt,
1720                                           struct lu_attr *attr,
1721                                           struct dt_object_format *dof,
1722                                           struct thandle *th)
1723 {
1724         struct lod_thread_info  *info = lod_env_info(env);
1725         struct lu_buf           lmv_buf;
1726         struct lu_buf           slave_lmv_buf;
1727         struct lmv_mds_md_v1    *lmm;
1728         struct lmv_mds_md_v1    *slave_lmm = NULL;
1729         struct dt_insert_rec    *rec = &info->lti_dt_rec;
1730         struct lod_object       *lo = lod_dt_obj(dt);
1731         int                     rc;
1732         __u32                   i;
1733         ENTRY;
1734
1735         rc = lod_prep_lmv_md(env, dt, &lmv_buf);
1736         if (rc != 0)
1737                 GOTO(out, rc);
1738         lmm = lmv_buf.lb_buf;
1739
1740         OBD_ALLOC_PTR(slave_lmm);
1741         if (slave_lmm == NULL)
1742                 GOTO(out, rc = -ENOMEM);
1743
1744         lod_prep_slave_lmv_md(slave_lmm, lmm);
1745         slave_lmv_buf.lb_buf = slave_lmm;
1746         slave_lmv_buf.lb_len = sizeof(*slave_lmm);
1747
1748         if (!dt_try_as_dir(env, dt_object_child(dt)))
1749                 GOTO(out, rc = -EINVAL);
1750
1751         rec->rec_type = S_IFDIR;
1752         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
1753                 struct dt_object        *dto = lo->ldo_stripe[i];
1754                 char                    *stripe_name = info->lti_key;
1755                 struct lu_name          *sname;
1756                 struct linkea_data       ldata          = { NULL };
1757                 struct lu_buf           linkea_buf;
1758
1759                 rc = lod_sub_declare_create(env, dto, attr, NULL, dof, th);
1760                 if (rc != 0)
1761                         GOTO(out, rc);
1762
1763                 if (!dt_try_as_dir(env, dto))
1764                         GOTO(out, rc = -EINVAL);
1765
1766                 rc = lod_sub_declare_ref_add(env, dto, th);
1767                 if (rc != 0)
1768                         GOTO(out, rc);
1769
1770                 rec->rec_fid = lu_object_fid(&dto->do_lu);
1771                 rc = lod_sub_declare_insert(env, dto,
1772                                             (const struct dt_rec *)rec,
1773                                             (const struct dt_key *)dot, th);
1774                 if (rc != 0)
1775                         GOTO(out, rc);
1776
1777                 /* master stripe FID will be put to .. */
1778                 rec->rec_fid = lu_object_fid(&dt->do_lu);
1779                 rc = lod_sub_declare_insert(env, dto,
1780                                             (const struct dt_rec *)rec,
1781                                             (const struct dt_key *)dotdot, th);
1782                 if (rc != 0)
1783                         GOTO(out, rc);
1784
1785                 if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_SLAVE_LMV) ||
1786                     cfs_fail_val != i) {
1787                         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_LMV) &&
1788                             cfs_fail_val == i)
1789                                 slave_lmm->lmv_master_mdt_index =
1790                                                         cpu_to_le32(i + 1);
1791                         else
1792                                 slave_lmm->lmv_master_mdt_index =
1793                                                         cpu_to_le32(i);
1794                         rc = lod_sub_declare_xattr_set(env, dto, &slave_lmv_buf,
1795                                                        XATTR_NAME_LMV, 0, th);
1796                         if (rc != 0)
1797                                 GOTO(out, rc);
1798                 }
1799
1800                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_NAME) &&
1801                     cfs_fail_val == i)
1802                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%u",
1803                                 PFID(lu_object_fid(&dto->do_lu)), i + 1);
1804                 else
1805                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%u",
1806                                 PFID(lu_object_fid(&dto->do_lu)), i);
1807
1808                 sname = lod_name_get(env, stripe_name, strlen(stripe_name));
1809                 rc = linkea_links_new(&ldata, &info->lti_linkea_buf,
1810                                       sname, lu_object_fid(&dt->do_lu));
1811                 if (rc != 0)
1812                         GOTO(out, rc);
1813
1814                 linkea_buf.lb_buf = ldata.ld_buf->lb_buf;
1815                 linkea_buf.lb_len = ldata.ld_leh->leh_len;
1816                 rc = lod_sub_declare_xattr_set(env, dto, &linkea_buf,
1817                                                XATTR_NAME_LINK, 0, th);
1818                 if (rc != 0)
1819                         GOTO(out, rc);
1820
1821                 rec->rec_fid = lu_object_fid(&dto->do_lu);
1822                 rc = lod_sub_declare_insert(env, dt_object_child(dt),
1823                                             (const struct dt_rec *)rec,
1824                                             (const struct dt_key *)stripe_name,
1825                                             th);
1826                 if (rc != 0)
1827                         GOTO(out, rc);
1828
1829                 rc = lod_sub_declare_ref_add(env, dt_object_child(dt), th);
1830                 if (rc != 0)
1831                         GOTO(out, rc);
1832         }
1833
1834         rc = lod_sub_declare_xattr_set(env, dt_object_child(dt),
1835                                        &lmv_buf, XATTR_NAME_LMV, 0, th);
1836         if (rc != 0)
1837                 GOTO(out, rc);
1838 out:
1839         if (slave_lmm != NULL)
1840                 OBD_FREE_PTR(slave_lmm);
1841
1842         RETURN(rc);
1843 }
1844
1845 static int lod_prep_md_striped_create(const struct lu_env *env,
1846                                       struct dt_object *dt,
1847                                       struct lu_attr *attr,
1848                                       const struct lmv_user_md_v1 *lum,
1849                                       struct dt_object_format *dof,
1850                                       struct thandle *th)
1851 {
1852         struct lod_device       *lod = lu2lod_dev(dt->do_lu.lo_dev);
1853         struct lod_tgt_descs    *ltd = &lod->lod_mdt_descs;
1854         struct lod_object       *lo = lod_dt_obj(dt);
1855         struct dt_object        **stripe;
1856         __u32                   stripe_count;
1857         int                     *idx_array;
1858         __u32                   master_index;
1859         int                     rc = 0;
1860         __u32                   i;
1861         __u32                   j;
1862         ENTRY;
1863
1864         /* The lum has been verifed in lod_verify_md_striping */
1865         LASSERT(le32_to_cpu(lum->lum_magic) == LMV_USER_MAGIC);
1866         LASSERT(le32_to_cpu(lum->lum_stripe_count) > 0);
1867
1868         stripe_count = le32_to_cpu(lum->lum_stripe_count);
1869
1870         OBD_ALLOC(idx_array, sizeof(idx_array[0]) * stripe_count);
1871         if (idx_array == NULL)
1872                 RETURN(-ENOMEM);
1873
1874         OBD_ALLOC(stripe, sizeof(stripe[0]) * stripe_count);
1875         if (stripe == NULL)
1876                 GOTO(out_free, rc = -ENOMEM);
1877
1878         /* Start index must be the master MDT */
1879         master_index = lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_node_id;
1880         idx_array[0] = master_index;
1881         for (i = 0; i < stripe_count; i++) {
1882                 struct lod_tgt_desc     *tgt = NULL;
1883                 struct dt_object        *dto;
1884                 struct lu_fid           fid = { 0 };
1885                 int                     idx;
1886                 struct lu_object_conf   conf = { 0 };
1887                 struct dt_device        *tgt_dt = NULL;
1888
1889                 /* Try to find next avaible target */
1890                 idx = idx_array[i];
1891                 for (j = 0; j < lod->lod_remote_mdt_count;
1892                      j++, idx = (idx + 1) % (lod->lod_remote_mdt_count + 1)) {
1893                         bool already_allocated = false;
1894                         __u32 k;
1895
1896                         CDEBUG(D_INFO, "try idx %d, mdt cnt %u, allocated %u\n",
1897                                idx, lod->lod_remote_mdt_count + 1, i);
1898
1899                         if (likely(!OBD_FAIL_CHECK(OBD_FAIL_LARGE_STRIPE))) {
1900                                 /* check whether the idx already exists
1901                                  * in current allocated array */
1902                                 for (k = 0; k < i; k++) {
1903                                         if (idx_array[k] == idx) {
1904                                                 already_allocated = true;
1905                                                 break;
1906                                         }
1907                                 }
1908
1909                                 if (already_allocated)
1910                                         continue;
1911                         }
1912
1913                         /* Sigh, this index is not in the bitmap, let's check
1914                          * next available target */
1915                         if (!cfs_bitmap_check(ltd->ltd_tgt_bitmap, idx) &&
1916                             idx != master_index)
1917                                 continue;
1918
1919                         if (idx == master_index) {
1920                                 /* Allocate the FID locally */
1921                                 rc = obd_fid_alloc(env, lod->lod_child_exp,
1922                                                    &fid, NULL);
1923                                 if (rc < 0)
1924                                         GOTO(out_put, rc);
1925                                 tgt_dt = lod->lod_child;
1926                                 break;
1927                         }
1928
1929                         /* check the status of the OSP */
1930                         tgt = LTD_TGT(ltd, idx);
1931                         if (tgt == NULL)
1932                                 continue;
1933
1934                         tgt_dt = tgt->ltd_tgt;
1935                         rc = dt_statfs(env, tgt_dt, NULL);
1936                         if (rc) {
1937                                 /* this OSP doesn't feel well */
1938                                 rc = 0;
1939                                 continue;
1940                         }
1941
1942                         rc = obd_fid_alloc(env, tgt->ltd_exp, &fid, NULL);
1943                         if (rc < 0) {
1944                                 rc = 0;
1945                                 continue;
1946                         }
1947
1948                         break;
1949                 }
1950
1951                 /* Can not allocate more stripes */
1952                 if (j == lod->lod_remote_mdt_count) {
1953                         CDEBUG(D_INFO, "%s: require stripes %u only get %d\n",
1954                                lod2obd(lod)->obd_name, stripe_count, i);
1955                         break;
1956                 }
1957
1958                 CDEBUG(D_INFO, "Get idx %d, for stripe %d "DFID"\n",
1959                        idx, i, PFID(&fid));
1960                 idx_array[i] = idx;
1961                 /* Set the start index for next stripe allocation */
1962                 if (i < stripe_count - 1)
1963                         idx_array[i + 1] = (idx + 1) %
1964                                            (lod->lod_remote_mdt_count + 1);
1965                 /* tgt_dt and fid must be ready after search avaible OSP
1966                  * in the above loop */
1967                 LASSERT(tgt_dt != NULL);
1968                 LASSERT(fid_is_sane(&fid));
1969                 conf.loc_flags = LOC_F_NEW;
1970                 dto = dt_locate_at(env, tgt_dt, &fid,
1971                                    dt->do_lu.lo_dev->ld_site->ls_top_dev,
1972                                    &conf);
1973                 if (IS_ERR(dto))
1974                         GOTO(out_put, rc = PTR_ERR(dto));
1975                 stripe[i] = dto;
1976         }
1977
1978         lo->ldo_dir_stripe_loaded = 1;
1979         lo->ldo_dir_striped = 1;
1980         lo->ldo_stripe = stripe;
1981         lo->ldo_dir_stripe_count = i;
1982         lo->ldo_dir_stripes_allocated = stripe_count;
1983
1984         if (lo->ldo_dir_stripe_count == 0)
1985                 GOTO(out_put, rc = -ENOSPC);
1986
1987         rc = lod_dir_declare_create_stripes(env, dt, attr, dof, th);
1988         if (rc != 0)
1989                 GOTO(out_put, rc);
1990
1991 out_put:
1992         if (rc < 0) {
1993                 for (i = 0; i < stripe_count; i++)
1994                         if (stripe[i] != NULL)
1995                                 dt_object_put(env, stripe[i]);
1996                 OBD_FREE(stripe, sizeof(stripe[0]) * stripe_count);
1997                 lo->ldo_dir_stripe_count = 0;
1998                 lo->ldo_dir_stripes_allocated = 0;
1999                 lo->ldo_stripe = NULL;
2000         }
2001
2002 out_free:
2003         OBD_FREE(idx_array, sizeof(idx_array[0]) * stripe_count);
2004
2005         RETURN(rc);
2006 }
2007
2008 /**
2009  * Declare create striped md object.
2010  *
2011  * The function declares intention to create a striped directory. This is a
2012  * wrapper for lod_prep_md_striped_create(). The only additional functionality
2013  * is to verify pattern \a lum_buf is good. Check that function for the details.
2014  *
2015  * \param[in] env       execution environment
2016  * \param[in] dt        object
2017  * \param[in] attr      attributes to initialize the objects with
2018  * \param[in] lum_buf   a pattern specifying the number of stripes and
2019  *                      MDT to start from
2020  * \param[in] dof       type of objects to be created
2021  * \param[in] th        transaction handle
2022  *
2023  * \retval              0 on success
2024  * \retval              negative if failed
2025  *
2026  */
2027 static int lod_declare_xattr_set_lmv(const struct lu_env *env,
2028                                      struct dt_object *dt,
2029                                      struct lu_attr *attr,
2030                                      const struct lu_buf *lum_buf,
2031                                      struct dt_object_format *dof,
2032                                      struct thandle *th)
2033 {
2034         struct lod_object       *lo = lod_dt_obj(dt);
2035         struct lod_device       *lod = lu2lod_dev(dt->do_lu.lo_dev);
2036         struct lmv_user_md_v1   *lum;
2037         int                     rc;
2038         ENTRY;
2039
2040         lum = lum_buf->lb_buf;
2041         LASSERT(lum != NULL);
2042
2043         CDEBUG(D_INFO, "lum magic = %x count = %u offset = %d\n",
2044                le32_to_cpu(lum->lum_magic), le32_to_cpu(lum->lum_stripe_count),
2045                (int)le32_to_cpu(lum->lum_stripe_offset));
2046
2047         if (le32_to_cpu(lum->lum_stripe_count) == 0)
2048                 GOTO(out, rc = 0);
2049
2050         rc = lod_verify_md_striping(lod, lum);
2051         if (rc != 0)
2052                 GOTO(out, rc);
2053
2054         /* prepare dir striped objects */
2055         rc = lod_prep_md_striped_create(env, dt, attr, lum, dof, th);
2056         if (rc != 0) {
2057                 /* failed to create striping, let's reset
2058                  * config so that others don't get confused */
2059                 lod_object_free_striping(env, lo);
2060                 GOTO(out, rc);
2061         }
2062 out:
2063         RETURN(rc);
2064 }
2065
2066 /**
2067  * Implementation of dt_object_operations::do_declare_xattr_set.
2068  *
2069  * Used with regular (non-striped) objects. Basically it
2070  * initializes the striping information and applies the
2071  * change to all the stripes.
2072  *
2073  * \see dt_object_operations::do_declare_xattr_set() in the API description
2074  * for details.
2075  */
2076 static int lod_dir_declare_xattr_set(const struct lu_env *env,
2077                                      struct dt_object *dt,
2078                                      const struct lu_buf *buf,
2079                                      const char *name, int fl,
2080                                      struct thandle *th)
2081 {
2082         struct dt_object        *next = dt_object_child(dt);
2083         struct lod_device       *d = lu2lod_dev(dt->do_lu.lo_dev);
2084         struct lod_object       *lo = lod_dt_obj(dt);
2085         int                     i;
2086         int                     rc;
2087         ENTRY;
2088
2089         if (strcmp(name, XATTR_NAME_DEFAULT_LMV) == 0) {
2090                 struct lmv_user_md_v1 *lum;
2091
2092                 LASSERT(buf != NULL && buf->lb_buf != NULL);
2093                 lum = buf->lb_buf;
2094                 rc = lod_verify_md_striping(d, lum);
2095                 if (rc != 0)
2096                         RETURN(rc);
2097         } else if (strcmp(name, XATTR_NAME_LOV) == 0) {
2098                 rc = lod_verify_striping(d, lo, buf, false);
2099                 if (rc != 0)
2100                         RETURN(rc);
2101         }
2102
2103         rc = lod_sub_declare_xattr_set(env, next, buf, name, fl, th);
2104         if (rc != 0)
2105                 RETURN(rc);
2106
2107         /* Note: Do not set LinkEA on sub-stripes, otherwise
2108          * it will confuse the fid2path process(see mdt_path_current()).
2109          * The linkEA between master and sub-stripes is set in
2110          * lod_xattr_set_lmv(). */
2111         if (strcmp(name, XATTR_NAME_LINK) == 0)
2112                 RETURN(0);
2113
2114         /* set xattr to each stripes, if needed */
2115         rc = lod_load_striping(env, lo);
2116         if (rc != 0)
2117                 RETURN(rc);
2118
2119         if (lo->ldo_dir_stripe_count == 0)
2120                 RETURN(0);
2121
2122         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
2123                 LASSERT(lo->ldo_stripe[i]);
2124
2125                 rc = lod_sub_declare_xattr_set(env, lo->ldo_stripe[i],
2126                                                buf, name, fl, th);
2127                 if (rc != 0)
2128                         break;
2129         }
2130
2131         RETURN(rc);
2132 }
2133
2134 static int
2135 lod_obj_stripe_replace_parent_fid_cb(const struct lu_env *env,
2136                                      struct lod_object *lo,
2137                                      struct dt_object *dt, struct thandle *th,
2138                                      int comp_idx, int stripe_idx,
2139                                      struct lod_obj_stripe_cb_data *data)
2140 {
2141         struct lod_thread_info *info = lod_env_info(env);
2142         struct filter_fid *ff = &info->lti_ff;
2143         struct lu_buf *buf = &info->lti_buf;
2144         int rc;
2145
2146         buf->lb_buf = ff;
2147         buf->lb_len = sizeof(*ff);
2148         rc = dt_xattr_get(env, dt, buf, XATTR_NAME_FID);
2149         if (rc == -ENODATA)
2150                 return 0;
2151
2152         if (rc < 0)
2153                 return rc;
2154
2155         ff->ff_parent = *lu_object_fid(&lo->ldo_obj.do_lu);
2156         ff->ff_parent.f_ver = stripe_idx;
2157         fid_cpu_to_le(&ff->ff_parent, &ff->ff_parent);
2158         if (data->locd_declare)
2159                 rc = lod_sub_declare_xattr_set(env, dt, buf, XATTR_NAME_FID,
2160                                                LU_XATTR_REPLACE, th);
2161         else
2162                 rc = lod_sub_xattr_set(env, dt, buf, XATTR_NAME_FID,
2163                                        LU_XATTR_REPLACE, th);
2164
2165         return rc;
2166 }
2167
2168 /**
2169  * Reset parent FID on OST object
2170  *
2171  * Replace parent FID with @dt object FID, which is only called during migration
2172  * to reset the parent FID after the MDT object is migrated to the new MDT, i.e.
2173  * the FID is changed.
2174  *
2175  * \param[in] env execution environment
2176  * \param[in] dt dt_object whose stripes's parent FID will be reset
2177  * \parem[in] th thandle
2178  * \param[in] declare if it is declare
2179  *
2180  * \retval      0 if reset succeeds
2181  * \retval      negative errno if reset fails
2182  */
2183 static int lod_replace_parent_fid(const struct lu_env *env,
2184                                   struct dt_object *dt,
2185                                   struct thandle *th, bool declare)
2186 {
2187         struct lod_object *lo = lod_dt_obj(dt);
2188         struct lod_thread_info  *info = lod_env_info(env);
2189         struct lu_buf *buf = &info->lti_buf;
2190         struct filter_fid *ff;
2191         struct lod_obj_stripe_cb_data data = { { 0 } };
2192         int rc;
2193         ENTRY;
2194
2195         LASSERT(S_ISREG(dt->do_lu.lo_header->loh_attr));
2196
2197         /* set xattr to each stripes, if needed */
2198         rc = lod_load_striping(env, lo);
2199         if (rc != 0)
2200                 RETURN(rc);
2201
2202         if (!lod_obj_is_striped(dt))
2203                 RETURN(0);
2204
2205         if (info->lti_ea_store_size < sizeof(*ff)) {
2206                 rc = lod_ea_store_resize(info, sizeof(*ff));
2207                 if (rc != 0)
2208                         RETURN(rc);
2209         }
2210
2211         buf->lb_buf = info->lti_ea_store;
2212         buf->lb_len = info->lti_ea_store_size;
2213
2214         data.locd_declare = declare;
2215         data.locd_stripe_cb = lod_obj_stripe_replace_parent_fid_cb;
2216         rc = lod_obj_for_each_stripe(env, lo, th, &data);
2217
2218         RETURN(rc);
2219 }
2220
2221 inline __u16 lod_comp_entry_stripe_count(struct lod_object *lo,
2222                                          struct lod_layout_component *entry,
2223                                          bool is_dir)
2224 {
2225         struct lod_device *lod = lu2lod_dev(lod2lu_obj(lo)->lo_dev);
2226
2227         if (is_dir)
2228                 return  0;
2229         else if (lod_comp_inited(entry))
2230                 return entry->llc_stripe_count;
2231         else if ((__u16)-1 == entry->llc_stripe_count)
2232                 return lod->lod_desc.ld_tgt_count;
2233         else
2234                 return lod_get_stripe_count(lod, lo, entry->llc_stripe_count);
2235 }
2236
2237 static int lod_comp_md_size(struct lod_object *lo, bool is_dir)
2238 {
2239         int magic, size = 0, i;
2240         struct lod_layout_component *comp_entries;
2241         __u16 comp_cnt;
2242         bool is_composite;
2243
2244         if (is_dir) {
2245                 comp_cnt = lo->ldo_def_striping->lds_def_comp_cnt;
2246                 comp_entries = lo->ldo_def_striping->lds_def_comp_entries;
2247                 is_composite =
2248                         lo->ldo_def_striping->lds_def_striping_is_composite;
2249         } else {
2250                 comp_cnt = lo->ldo_comp_cnt;
2251                 comp_entries = lo->ldo_comp_entries;
2252                 is_composite = lo->ldo_is_composite;
2253         }
2254
2255
2256         LASSERT(comp_cnt != 0 && comp_entries != NULL);
2257         if (is_composite) {
2258                 size = sizeof(struct lov_comp_md_v1) +
2259                        sizeof(struct lov_comp_md_entry_v1) * comp_cnt;
2260                 LASSERT(size % sizeof(__u64) == 0);
2261         }
2262
2263         for (i = 0; i < comp_cnt; i++) {
2264                 __u16 stripe_count;
2265
2266                 magic = comp_entries[i].llc_pool ? LOV_MAGIC_V3 : LOV_MAGIC_V1;
2267                 stripe_count = lod_comp_entry_stripe_count(lo, &comp_entries[i],
2268                                                            is_dir);
2269                 if (!is_dir && is_composite)
2270                         lod_comp_shrink_stripe_count(&comp_entries[i],
2271                                                      &stripe_count);
2272
2273                 size += lov_user_md_size(stripe_count, magic);
2274                 LASSERT(size % sizeof(__u64) == 0);
2275         }
2276         return size;
2277 }
2278
2279 /**
2280  * Declare component add. The xattr name is XATTR_LUSTRE_LOV.add, and
2281  * the xattr value is binary lov_comp_md_v1 which contains component(s)
2282  * to be added.
2283   *
2284  * \param[in] env       execution environment
2285  * \param[in] dt        dt_object to add components on
2286  * \param[in] buf       buffer contains components to be added
2287  * \parem[in] th        thandle
2288  *
2289  * \retval      0 on success
2290  * \retval      negative errno on failure
2291  */
2292 static int lod_declare_layout_add(const struct lu_env *env,
2293                                   struct dt_object *dt,
2294                                   const struct lu_buf *buf,
2295                                   struct thandle *th)
2296 {
2297         struct lod_thread_info  *info = lod_env_info(env);
2298         struct lod_layout_component *comp_array, *lod_comp, *old_array;
2299         struct lod_device       *d = lu2lod_dev(dt->do_lu.lo_dev);
2300         struct dt_object *next = dt_object_child(dt);
2301         struct lov_desc         *desc = &d->lod_desc;
2302         struct lod_object       *lo = lod_dt_obj(dt);
2303         struct lov_user_md_v3   *v3;
2304         struct lov_comp_md_v1   *comp_v1 = buf->lb_buf;
2305         __u32   magic;
2306         int     i, rc, array_cnt, old_array_cnt;
2307         ENTRY;
2308
2309         LASSERT(lo->ldo_is_composite);
2310
2311         if (lo->ldo_flr_state != LCM_FL_NOT_FLR)
2312                 RETURN(-EBUSY);
2313
2314         rc = lod_verify_striping(d, lo, buf, false);
2315         if (rc != 0)
2316                 RETURN(rc);
2317
2318         magic = comp_v1->lcm_magic;
2319         if (magic == __swab32(LOV_USER_MAGIC_COMP_V1)) {
2320                 lustre_swab_lov_comp_md_v1(comp_v1);
2321                 magic = comp_v1->lcm_magic;
2322         }
2323
2324         if (magic != LOV_USER_MAGIC_COMP_V1)
2325                 RETURN(-EINVAL);
2326
2327         array_cnt = lo->ldo_comp_cnt + comp_v1->lcm_entry_count;
2328         OBD_ALLOC(comp_array, sizeof(*comp_array) * array_cnt);
2329         if (comp_array == NULL)
2330                 RETURN(-ENOMEM);
2331
2332         memcpy(comp_array, lo->ldo_comp_entries,
2333                sizeof(*comp_array) * lo->ldo_comp_cnt);
2334
2335         for (i = 0; i < comp_v1->lcm_entry_count; i++) {
2336                 struct lov_user_md_v1 *v1;
2337                 struct lu_extent *ext;
2338
2339                 v1 = (struct lov_user_md *)((char *)comp_v1 +
2340                                 comp_v1->lcm_entries[i].lcme_offset);
2341                 ext = &comp_v1->lcm_entries[i].lcme_extent;
2342
2343                 lod_comp = &comp_array[lo->ldo_comp_cnt + i];
2344                 lod_comp->llc_extent.e_start = ext->e_start;
2345                 lod_comp->llc_extent.e_end = ext->e_end;
2346                 lod_comp->llc_stripe_offset = v1->lmm_stripe_offset;
2347                 lod_comp->llc_flags = comp_v1->lcm_entries[i].lcme_flags;
2348
2349                 lod_comp->llc_stripe_count = v1->lmm_stripe_count;
2350                 if (!lod_comp->llc_stripe_count ||
2351                     lod_comp->llc_stripe_count == (__u16)-1)
2352                         lod_comp->llc_stripe_count =
2353                                 desc->ld_default_stripe_count;
2354                 lod_comp->llc_stripe_size = v1->lmm_stripe_size;
2355                 if (!lod_comp->llc_stripe_size)
2356                         lod_comp->llc_stripe_size =
2357                                 desc->ld_default_stripe_size;
2358
2359                 if (v1->lmm_magic == LOV_USER_MAGIC_V3) {
2360                         v3 = (struct lov_user_md_v3 *) v1;
2361                         if (v3->lmm_pool_name[0] != '\0') {
2362                                 rc = lod_set_pool(&lod_comp->llc_pool,
2363                                                   v3->lmm_pool_name);
2364                                 if (rc)
2365                                         GOTO(error, rc);
2366                         }
2367                 }
2368         }
2369
2370         old_array = lo->ldo_comp_entries;
2371         old_array_cnt = lo->ldo_comp_cnt;
2372
2373         lo->ldo_comp_entries = comp_array;
2374         lo->ldo_comp_cnt = array_cnt;
2375
2376         /* No need to increase layout generation here, it will be increased
2377          * later when generating component ID for the new components */
2378
2379         info->lti_buf.lb_len = lod_comp_md_size(lo, false);
2380         rc = lod_sub_declare_xattr_set(env, next, &info->lti_buf,
2381                                               XATTR_NAME_LOV, 0, th);
2382         if (rc) {
2383                 lo->ldo_comp_entries = old_array;
2384                 lo->ldo_comp_cnt = old_array_cnt;
2385                 GOTO(error, rc);
2386         }
2387
2388         OBD_FREE(old_array, sizeof(*lod_comp) * old_array_cnt);
2389
2390         LASSERT(lo->ldo_mirror_count == 1);
2391         lo->ldo_mirrors[0].lme_end = array_cnt - 1;
2392
2393         RETURN(0);
2394
2395 error:
2396         for (i = lo->ldo_comp_cnt; i < array_cnt; i++) {
2397                 lod_comp = &comp_array[i];
2398                 if (lod_comp->llc_pool != NULL) {
2399                         OBD_FREE(lod_comp->llc_pool,
2400                                  strlen(lod_comp->llc_pool) + 1);
2401                         lod_comp->llc_pool = NULL;
2402                 }
2403         }
2404         OBD_FREE(comp_array, sizeof(*comp_array) * array_cnt);
2405         RETURN(rc);
2406 }
2407
2408 /**
2409  * Declare component set. The xattr is name XATTR_LUSTRE_LOV.set.$field,
2410  * the '$field' can only be 'flags' now. The xattr value is binary
2411  * lov_comp_md_v1 which contains the component ID(s) and the value of
2412  * the field to be modified.
2413  *
2414  * \param[in] env       execution environment
2415  * \param[in] dt        dt_object to be modified
2416  * \param[in] op        operation string, like "set.flags"
2417  * \param[in] buf       buffer contains components to be set
2418  * \parem[in] th        thandle
2419  *
2420  * \retval      0 on success
2421  * \retval      negative errno on failure
2422  */
2423 static int lod_declare_layout_set(const struct lu_env *env,
2424                                   struct dt_object *dt,
2425                                   char *op, const struct lu_buf *buf,
2426                                   struct thandle *th)
2427 {
2428         struct lod_layout_component     *lod_comp;
2429         struct lod_thread_info  *info = lod_env_info(env);
2430         struct lod_device       *d = lu2lod_dev(dt->do_lu.lo_dev);
2431         struct lod_object       *lo = lod_dt_obj(dt);
2432         struct lov_comp_md_v1   *comp_v1 = buf->lb_buf;
2433         __u32   magic, id;
2434         int     i, j, rc;
2435         bool    changed = false;
2436         ENTRY;
2437
2438         if (strcmp(op, "set.flags") != 0) {
2439                 CDEBUG(D_LAYOUT, "%s: operation (%s) not supported.\n",
2440                        lod2obd(d)->obd_name, op);
2441                 RETURN(-ENOTSUPP);
2442         }
2443
2444         magic = comp_v1->lcm_magic;
2445         if (magic == __swab32(LOV_USER_MAGIC_COMP_V1)) {
2446                 lustre_swab_lov_comp_md_v1(comp_v1);
2447                 magic = comp_v1->lcm_magic;
2448         }
2449
2450         if (magic != LOV_USER_MAGIC_COMP_V1)
2451                 RETURN(-EINVAL);
2452
2453         if (comp_v1->lcm_entry_count == 0) {
2454                 CDEBUG(D_LAYOUT, "%s: entry count is zero.\n",
2455                        lod2obd(d)->obd_name);
2456                 RETURN(-EINVAL);
2457         }
2458
2459         for (i = 0; i < comp_v1->lcm_entry_count; i++) {
2460                 id = comp_v1->lcm_entries[i].lcme_id;
2461
2462                 for (j = 0; j < lo->ldo_comp_cnt; j++) {
2463                         lod_comp = &lo->ldo_comp_entries[j];
2464                         if (id == lod_comp->llc_id || id == LCME_ID_ALL) {
2465                                 lod_comp->llc_flags =
2466                                         comp_v1->lcm_entries[i].lcme_flags;
2467                                 changed = true;
2468                         }
2469                 }
2470         }
2471
2472         if (!changed) {
2473                 CDEBUG(D_LAYOUT, "%s: requested component(s) not found.\n",
2474                        lod2obd(d)->obd_name);
2475                 RETURN(-EINVAL);
2476         }
2477
2478         lod_obj_inc_layout_gen(lo);
2479
2480         info->lti_buf.lb_len = lod_comp_md_size(lo, false);
2481         rc = lod_sub_declare_xattr_set(env, dt, &info->lti_buf,
2482                                        XATTR_NAME_LOV, 0, th);
2483         RETURN(rc);
2484 }
2485
2486 /**
2487  * Declare component deletion. The xattr name is XATTR_LUSTRE_LOV.del,
2488  * and the xattr value is a unique component ID or a special lcme_id.
2489  *
2490  * \param[in] env       execution environment
2491  * \param[in] dt        dt_object to be operated on
2492  * \param[in] buf       buffer contains component ID or lcme_id
2493  * \parem[in] th        thandle
2494  *
2495  * \retval      0 on success
2496  * \retval      negative errno on failure
2497  */
2498 static int lod_declare_layout_del(const struct lu_env *env,
2499                                   struct dt_object *dt,
2500                                   const struct lu_buf *buf,
2501                                   struct thandle *th)
2502 {
2503         struct lod_thread_info  *info = lod_env_info(env);
2504         struct dt_object *next = dt_object_child(dt);
2505         struct lod_device *d = lu2lod_dev(dt->do_lu.lo_dev);
2506         struct lod_object *lo = lod_dt_obj(dt);
2507         struct lu_attr *attr = &lod_env_info(env)->lti_attr;
2508         struct lov_comp_md_v1 *comp_v1 = buf->lb_buf;
2509         __u32 magic, id, flags, neg_flags = 0;
2510         int rc, i, j, left;
2511         ENTRY;
2512
2513         LASSERT(lo->ldo_is_composite);
2514
2515         if (lo->ldo_flr_state != LCM_FL_NOT_FLR)
2516                 RETURN(-EBUSY);
2517
2518         magic = comp_v1->lcm_magic;
2519         if (magic == __swab32(LOV_USER_MAGIC_COMP_V1)) {
2520                 lustre_swab_lov_comp_md_v1(comp_v1);
2521                 magic = comp_v1->lcm_magic;
2522         }
2523
2524         if (magic != LOV_USER_MAGIC_COMP_V1)
2525                 RETURN(-EINVAL);
2526
2527         id = comp_v1->lcm_entries[0].lcme_id;
2528         flags = comp_v1->lcm_entries[0].lcme_flags;
2529
2530         if (id > LCME_ID_MAX || (flags & ~LCME_KNOWN_FLAGS)) {
2531                 CDEBUG(D_LAYOUT, "%s: invalid component id %#x, flags %#x\n",
2532                        lod2obd(d)->obd_name, id, flags);
2533                 RETURN(-EINVAL);
2534         }
2535
2536         if (id != LCME_ID_INVAL && flags != 0) {
2537                 CDEBUG(D_LAYOUT, "%s: specified both id and flags.\n",
2538                        lod2obd(d)->obd_name);
2539                 RETURN(-EINVAL);
2540         }
2541
2542         if (flags & LCME_FL_NEG) {
2543                 neg_flags = flags & ~LCME_FL_NEG;
2544                 flags = 0;
2545         }
2546
2547         left = lo->ldo_comp_cnt;
2548         if (left <= 0)
2549                 RETURN(-EINVAL);
2550
2551         for (i = (lo->ldo_comp_cnt - 1); i >= 0; i--) {
2552                 struct lod_layout_component *lod_comp;
2553
2554                 lod_comp = &lo->ldo_comp_entries[i];
2555
2556                 if (id != LCME_ID_INVAL && id != lod_comp->llc_id)
2557                         continue;
2558                 else if (flags && !(flags & lod_comp->llc_flags))
2559                         continue;
2560                 else if (neg_flags && (neg_flags & lod_comp->llc_flags))
2561                         continue;
2562
2563                 if (left != (i + 1)) {
2564                         CDEBUG(D_LAYOUT, "%s: this deletion will create "
2565                                "a hole.\n", lod2obd(d)->obd_name);
2566                         RETURN(-EINVAL);
2567                 }
2568                 left--;
2569
2570                 /* Mark the component as deleted */
2571                 lod_comp->llc_id = LCME_ID_INVAL;
2572
2573                 /* Not instantiated component */
2574                 if (lod_comp->llc_stripe == NULL)
2575                         continue;
2576
2577                 LASSERT(lod_comp->llc_stripe_count > 0);
2578                 for (j = 0; j < lod_comp->llc_stripe_count; j++) {
2579                         struct dt_object *obj = lod_comp->llc_stripe[j];
2580
2581                         if (obj == NULL)
2582                                 continue;
2583                         rc = lod_sub_declare_destroy(env, obj, th);
2584                         if (rc)
2585                                 RETURN(rc);
2586                 }
2587         }
2588
2589         LASSERTF(left >= 0, "left = %d\n", left);
2590         if (left == lo->ldo_comp_cnt) {
2591                 CDEBUG(D_LAYOUT, "%s: requested component id:%#x not found\n",
2592                        lod2obd(d)->obd_name, id);
2593                 RETURN(-EINVAL);
2594         }
2595
2596         memset(attr, 0, sizeof(*attr));
2597         attr->la_valid = LA_SIZE;
2598         rc = lod_sub_declare_attr_set(env, next, attr, th);
2599         if (rc)
2600                 RETURN(rc);
2601
2602         if (left > 0) {
2603                 info->lti_buf.lb_len = lod_comp_md_size(lo, false);
2604                 rc = lod_sub_declare_xattr_set(env, next, &info->lti_buf,
2605                                                XATTR_NAME_LOV, 0, th);
2606         } else {
2607                 rc = lod_sub_declare_xattr_del(env, next, XATTR_NAME_LOV, th);
2608         }
2609
2610         RETURN(rc);
2611 }
2612
2613 /**
2614  * Declare layout add/set/del operations issued by special xattr names:
2615  *
2616  * XATTR_LUSTRE_LOV.add         add component(s) to existing file
2617  * XATTR_LUSTRE_LOV.del         delete component(s) from existing file
2618  * XATTR_LUSTRE_LOV.set.$field  set specified field of certain component(s)
2619  *
2620  * \param[in] env       execution environment
2621  * \param[in] dt        object
2622  * \param[in] name      name of xattr
2623  * \param[in] buf       lu_buf contains xattr value
2624  * \param[in] th        transaction handle
2625  *
2626  * \retval              0 on success
2627  * \retval              negative if failed
2628  */
2629 static int lod_declare_modify_layout(const struct lu_env *env,
2630                                      struct dt_object *dt,
2631                                      const char *name,
2632                                      const struct lu_buf *buf,
2633                                      struct thandle *th)
2634 {
2635         struct lod_device *d = lu2lod_dev(dt->do_lu.lo_dev);
2636         struct lod_object *lo = lod_dt_obj(dt);
2637         struct dt_object *next = dt_object_child(&lo->ldo_obj);
2638         char *op;
2639         int rc, len = strlen(XATTR_LUSTRE_LOV);
2640         ENTRY;
2641
2642         LASSERT(dt_object_exists(dt));
2643
2644         if (strlen(name) <= len || name[len] != '.') {
2645                 CDEBUG(D_LAYOUT, "%s: invalid xattr name: %s\n",
2646                        lod2obd(d)->obd_name, name);
2647                 RETURN(-EINVAL);
2648         }
2649         len++;
2650
2651         dt_write_lock(env, next, 0);
2652         rc = lod_load_striping_locked(env, lo);
2653         if (rc)
2654                 GOTO(unlock, rc);
2655
2656         /* the layout to be modified must be a composite layout */
2657         if (!lo->ldo_is_composite) {
2658                 CDEBUG(D_LAYOUT, "%s: object "DFID" isn't a composite file.\n",
2659                        lod2obd(d)->obd_name, PFID(lu_object_fid(&dt->do_lu)));
2660                 GOTO(unlock, rc = -EINVAL);
2661         }
2662
2663         op = (char *)name + len;
2664         if (strcmp(op, "add") == 0) {
2665                 rc = lod_declare_layout_add(env, dt, buf, th);
2666         } else if (strcmp(op, "del") == 0) {
2667                 rc = lod_declare_layout_del(env, dt, buf, th);
2668         } else if (strncmp(op, "set", strlen("set")) == 0) {
2669                 rc = lod_declare_layout_set(env, dt, op, buf, th);
2670         } else  {
2671                 CDEBUG(D_LAYOUT, "%s: unsupported xattr name:%s\n",
2672                        lod2obd(d)->obd_name, name);
2673                 GOTO(unlock, rc = -ENOTSUPP);
2674         }
2675 unlock:
2676         if (rc)
2677                 lod_object_free_striping(env, lo);
2678         dt_write_unlock(env, next);
2679
2680         RETURN(rc);
2681 }
2682
2683 /**
2684  * Merge layouts to form a mirrored file.
2685  */
2686 static int lod_declare_layout_merge(const struct lu_env *env,
2687                 struct dt_object *dt, const struct lu_buf *mbuf,
2688                 struct thandle *th)
2689 {
2690         struct lod_thread_info  *info = lod_env_info(env);
2691         struct lu_buf           *buf = &info->lti_buf;
2692         struct lod_object       *lo = lod_dt_obj(dt);
2693         struct lov_comp_md_v1   *lcm;
2694         struct lov_comp_md_v1   *cur_lcm;
2695         struct lov_comp_md_v1   *merge_lcm;
2696         struct lov_comp_md_entry_v1     *lcme;
2697         size_t size = 0;
2698         size_t offset;
2699         __u16 cur_entry_count;
2700         __u16 merge_entry_count;
2701         __u32 id = 0;
2702         __u16 mirror_id = 0;
2703         __u32 mirror_count;
2704         int     rc, i;
2705         ENTRY;
2706
2707         merge_lcm = mbuf->lb_buf;
2708         if (mbuf->lb_len < sizeof(*merge_lcm))
2709                 RETURN(-EINVAL);
2710
2711         /* must be an existing layout from disk */
2712         if (le32_to_cpu(merge_lcm->lcm_magic) != LOV_MAGIC_COMP_V1)
2713                 RETURN(-EINVAL);
2714
2715         merge_entry_count = le16_to_cpu(merge_lcm->lcm_entry_count);
2716
2717         /* do not allow to merge two mirrored files */
2718         if (le16_to_cpu(merge_lcm->lcm_mirror_count))
2719                 RETURN(-EBUSY);
2720
2721         /* verify the target buffer */
2722         rc = lod_get_lov_ea(env, lo);
2723         if (rc <= 0)
2724                 RETURN(rc ? : -ENODATA);
2725
2726         cur_lcm = info->lti_ea_store;
2727         if (le32_to_cpu(cur_lcm->lcm_magic) != LOV_MAGIC_COMP_V1)
2728                 RETURN(-EINVAL);
2729
2730         cur_entry_count = le16_to_cpu(cur_lcm->lcm_entry_count);
2731
2732         /* 'lcm_mirror_count + 1' is the current # of mirrors the file has */
2733         mirror_count = le16_to_cpu(cur_lcm->lcm_mirror_count) + 1;
2734         if (mirror_count + 1 > LUSTRE_MIRROR_COUNT_MAX)
2735                 RETURN(-ERANGE);
2736
2737         /* size of new layout */
2738         size = le32_to_cpu(cur_lcm->lcm_size) +
2739                le32_to_cpu(merge_lcm->lcm_size) - sizeof(*cur_lcm);
2740
2741         memset(buf, 0, sizeof(*buf));
2742         lu_buf_alloc(buf, size);
2743         if (buf->lb_buf == NULL)
2744                 RETURN(-ENOMEM);
2745
2746         lcm = buf->lb_buf;
2747         memcpy(lcm, cur_lcm, sizeof(*lcm) + cur_entry_count * sizeof(*lcme));
2748
2749         offset = sizeof(*lcm) +
2750                  sizeof(*lcme) * (cur_entry_count + merge_entry_count);
2751         for (i = 0; i < cur_entry_count; i++) {
2752                 struct lov_comp_md_entry_v1 *cur_lcme;
2753
2754                 lcme = &lcm->lcm_entries[i];
2755                 cur_lcme = &cur_lcm->lcm_entries[i];
2756
2757                 lcme->lcme_offset = cpu_to_le32(offset);
2758                 memcpy((char *)lcm + offset,
2759                        (char *)cur_lcm + le32_to_cpu(cur_lcme->lcme_offset),
2760                        le32_to_cpu(lcme->lcme_size));
2761
2762                 offset += le32_to_cpu(lcme->lcme_size);
2763
2764                 if (mirror_count == 1) {
2765                         /* new mirrored file, create new mirror ID */
2766                         id = pflr_id(1, i + 1);
2767                         lcme->lcme_id = cpu_to_le32(id);
2768                 }
2769
2770                 id = MAX(le32_to_cpu(lcme->lcme_id), id);
2771         }
2772
2773         mirror_id = mirror_id_of(id) + 1;
2774         for (i = 0; i < merge_entry_count; i++) {
2775                 struct lov_comp_md_entry_v1 *merge_lcme;
2776
2777                 merge_lcme = &merge_lcm->lcm_entries[i];
2778                 lcme = &lcm->lcm_entries[cur_entry_count + i];
2779
2780                 *lcme = *merge_lcme;
2781                 lcme->lcme_offset = cpu_to_le32(offset);
2782
2783                 id = pflr_id(mirror_id, i + 1);
2784                 lcme->lcme_id = cpu_to_le32(id);
2785
2786                 memcpy((char *)lcm + offset,
2787                        (char *)merge_lcm + le32_to_cpu(merge_lcme->lcme_offset),
2788                        le32_to_cpu(lcme->lcme_size));
2789
2790                 offset += le32_to_cpu(lcme->lcme_size);
2791         }
2792
2793         /* fixup layout information */
2794         lod_obj_inc_layout_gen(lo);
2795         lcm->lcm_layout_gen = cpu_to_le32(lo->ldo_layout_gen);
2796         lcm->lcm_size = cpu_to_le32(size);
2797         lcm->lcm_entry_count = cpu_to_le16(cur_entry_count + merge_entry_count);
2798         lcm->lcm_mirror_count = cpu_to_le16(mirror_count);
2799         if ((le16_to_cpu(lcm->lcm_flags) & LCM_FL_FLR_MASK) == LCM_FL_NOT_FLR)
2800                 lcm->lcm_flags = cpu_to_le32(LCM_FL_RDONLY);
2801
2802         LASSERT(dt_write_locked(env, dt_object_child(dt)));
2803         lod_object_free_striping(env, lo);
2804         rc = lod_parse_striping(env, lo, buf);
2805         if (rc)
2806                 GOTO(out, rc);
2807
2808         rc = lod_sub_declare_xattr_set(env, dt_object_child(dt), buf,
2809                                         XATTR_NAME_LOV, LU_XATTR_REPLACE, th);
2810
2811 out:
2812         lu_buf_free(buf);
2813         RETURN(rc);
2814 }
2815
2816 /**
2817  * Implementation of dt_object_operations::do_declare_xattr_set.
2818  *
2819  * \see dt_object_operations::do_declare_xattr_set() in the API description
2820  * for details.
2821  *
2822  * the extension to the API:
2823  *   - declaring LOVEA requests striping creation
2824  *   - LU_XATTR_REPLACE means layout swap
2825  */
2826 static int lod_declare_xattr_set(const struct lu_env *env,
2827                                  struct dt_object *dt,
2828                                  const struct lu_buf *buf,
2829                                  const char *name, int fl,
2830                                  struct thandle *th)
2831 {
2832         struct dt_object *next = dt_object_child(dt);
2833         struct lu_attr   *attr = &lod_env_info(env)->lti_attr;
2834         __u32             mode;
2835         int               rc;
2836         ENTRY;
2837
2838         mode = dt->do_lu.lo_header->loh_attr & S_IFMT;
2839         if ((S_ISREG(mode) || mode == 0) &&
2840             !(fl & (LU_XATTR_REPLACE | LU_XATTR_MERGE)) &&
2841             (strcmp(name, XATTR_NAME_LOV) == 0 ||
2842              strcmp(name, XATTR_LUSTRE_LOV) == 0)) {
2843                 /*
2844                  * this is a request to create object's striping.
2845                  *
2846                  * allow to declare predefined striping on a new (!mode) object
2847                  * which is supposed to be replay of regular file creation
2848                  * (when LOV setting is declared)
2849                  *
2850                  * LU_XATTR_REPLACE is set to indicate a layout swap
2851                  */
2852                 if (dt_object_exists(dt)) {
2853                         rc = dt_attr_get(env, next, attr);
2854                         if (rc)
2855                                 RETURN(rc);
2856                 } else {
2857                         memset(attr, 0, sizeof(*attr));
2858                         attr->la_valid = LA_TYPE | LA_MODE;
2859                         attr->la_mode = S_IFREG;
2860                 }
2861                 rc = lod_declare_striped_create(env, dt, attr, buf, th);
2862         } else if (fl & LU_XATTR_MERGE) {
2863                 LASSERT(strcmp(name, XATTR_NAME_LOV) == 0 ||
2864                         strcmp(name, XATTR_LUSTRE_LOV) == 0);
2865                 rc = lod_declare_layout_merge(env, dt, buf, th);
2866         } else if (S_ISREG(mode) &&
2867                    strlen(name) > strlen(XATTR_LUSTRE_LOV) + 1 &&
2868                    strncmp(name, XATTR_LUSTRE_LOV,
2869                            strlen(XATTR_LUSTRE_LOV)) == 0) {
2870                 /*
2871                  * this is a request to modify object's striping.
2872                  * add/set/del component(s).
2873                  */
2874                 if (!dt_object_exists(dt))
2875                         RETURN(-ENOENT);
2876
2877                 rc = lod_declare_modify_layout(env, dt, name, buf, th);
2878         } else if (S_ISDIR(mode)) {
2879                 rc = lod_dir_declare_xattr_set(env, dt, buf, name, fl, th);
2880         } else if (strcmp(name, XATTR_NAME_FID) == 0) {
2881                 rc = lod_replace_parent_fid(env, dt, th, true);
2882         } else {
2883                 rc = lod_sub_declare_xattr_set(env, next, buf, name, fl, th);
2884         }
2885
2886         RETURN(rc);
2887 }
2888
2889 /**
2890  * Apply xattr changes to the object.
2891  *
2892  * Applies xattr changes to the object and the stripes if the latter exist.
2893  *
2894  * \param[in] env       execution environment
2895  * \param[in] dt        object
2896  * \param[in] buf       buffer pointing to the new value of xattr
2897  * \param[in] name      name of xattr
2898  * \param[in] fl        flags
2899  * \param[in] th        transaction handle
2900  *
2901  * \retval              0 on success
2902  * \retval              negative if failed
2903  */
2904 static int lod_xattr_set_internal(const struct lu_env *env,
2905                                   struct dt_object *dt,
2906                                   const struct lu_buf *buf,
2907                                   const char *name, int fl,
2908                                   struct thandle *th)
2909 {
2910         struct dt_object        *next = dt_object_child(dt);
2911         struct lod_object       *lo = lod_dt_obj(dt);
2912         int                     rc;
2913         int                     i;
2914         ENTRY;
2915
2916         rc = lod_sub_xattr_set(env, next, buf, name, fl, th);
2917         if (rc != 0 || !S_ISDIR(dt->do_lu.lo_header->loh_attr))
2918                 RETURN(rc);
2919
2920         /* Note: Do not set LinkEA on sub-stripes, otherwise
2921          * it will confuse the fid2path process(see mdt_path_current()).
2922          * The linkEA between master and sub-stripes is set in
2923          * lod_xattr_set_lmv(). */
2924         if (lo->ldo_dir_stripe_count == 0 || strcmp(name, XATTR_NAME_LINK) == 0)
2925                 RETURN(0);
2926
2927         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
2928                 LASSERT(lo->ldo_stripe[i]);
2929
2930                 rc = lod_sub_xattr_set(env, lo->ldo_stripe[i], buf, name,
2931                                        fl, th);
2932                 if (rc != 0)
2933                         break;
2934         }
2935
2936         RETURN(rc);
2937 }
2938
2939 /**
2940  * Delete an extended attribute.
2941  *
2942  * Deletes specified xattr from the object and the stripes if the latter exist.
2943  *
2944  * \param[in] env       execution environment
2945  * \param[in] dt        object
2946  * \param[in] name      name of xattr
2947  * \param[in] th        transaction handle
2948  *
2949  * \retval              0 on success
2950  * \retval              negative if failed
2951  */
2952 static int lod_xattr_del_internal(const struct lu_env *env,
2953                                   struct dt_object *dt,
2954                                   const char *name, struct thandle *th)
2955 {
2956         struct dt_object        *next = dt_object_child(dt);
2957         struct lod_object       *lo = lod_dt_obj(dt);
2958         int                     rc;
2959         int                     i;
2960         ENTRY;
2961
2962         rc = lod_sub_xattr_del(env, next, name, th);
2963         if (rc != 0 || !S_ISDIR(dt->do_lu.lo_header->loh_attr))
2964                 RETURN(rc);
2965
2966         if (lo->ldo_dir_stripe_count == 0)
2967                 RETURN(rc);
2968
2969         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
2970                 LASSERT(lo->ldo_stripe[i]);
2971
2972                 rc = lod_sub_xattr_del(env, lo->ldo_stripe[i], name, th);
2973                 if (rc != 0)
2974                         break;
2975         }
2976
2977         RETURN(rc);
2978 }
2979
2980 /**
2981  * Set default striping on a directory.
2982  *
2983  * Sets specified striping on a directory object unless it matches the default
2984  * striping (LOVEA_DELETE_VALUES() macro). In the latter case remove existing
2985  * EA. This striping will be used when regular file is being created in this
2986  * directory.
2987  *
2988  * \param[in] env       execution environment
2989  * \param[in] dt        the striped object
2990  * \param[in] buf       buffer with the striping
2991  * \param[in] name      name of EA
2992  * \param[in] fl        xattr flag (see OSD API description)
2993  * \param[in] th        transaction handle
2994  *
2995  * \retval              0 on success
2996  * \retval              negative if failed
2997  */
2998 static int lod_xattr_set_lov_on_dir(const struct lu_env *env,
2999                                     struct dt_object *dt,
3000                                     const struct lu_buf *buf,
3001                                     const char *name, int fl,
3002                                     struct thandle *th)
3003 {
3004         struct lov_user_md_v1   *lum;
3005         struct lov_user_md_v3   *v3 = NULL;
3006         const char              *pool_name = NULL;
3007         int                      rc;
3008         bool                     is_del;
3009         ENTRY;
3010
3011         LASSERT(buf != NULL && buf->lb_buf != NULL);
3012         lum = buf->lb_buf;
3013
3014         switch (lum->lmm_magic) {
3015         case LOV_USER_MAGIC_V3:
3016                 v3 = buf->lb_buf;
3017                 if (v3->lmm_pool_name[0] != '\0')
3018                         pool_name = v3->lmm_pool_name;
3019                 /* fall through */
3020         case LOV_USER_MAGIC_V1:
3021                 /* if { size, offset, count } = { 0, -1, 0 } and no pool
3022                  * (i.e. all default values specified) then delete default
3023                  * striping from dir. */
3024                 CDEBUG(D_LAYOUT,
3025                        "set default striping: sz %u # %u offset %d %s %s\n",
3026                        (unsigned)lum->lmm_stripe_size,
3027                        (unsigned)lum->lmm_stripe_count,
3028                        (int)lum->lmm_stripe_offset,
3029                        v3 ? "from" : "", v3 ? v3->lmm_pool_name : "");
3030
3031                 is_del = LOVEA_DELETE_VALUES(lum->lmm_stripe_size,
3032                                              lum->lmm_stripe_count,
3033                                              lum->lmm_stripe_offset,
3034                                              pool_name);
3035                 break;
3036         case LOV_USER_MAGIC_COMP_V1:
3037                 is_del = false;
3038                 break;
3039         default:
3040                 CERROR("Invalid magic %x\n", lum->lmm_magic);
3041                 RETURN(-EINVAL);
3042         }
3043
3044         if (is_del) {
3045                 rc = lod_xattr_del_internal(env, dt, name, th);
3046                 if (rc == -ENODATA)
3047                         rc = 0;
3048         } else {
3049                 rc = lod_xattr_set_internal(env, dt, buf, name, fl, th);
3050         }
3051
3052         RETURN(rc);
3053 }
3054
3055 /**
3056  * Set default striping on a directory object.
3057  *
3058  * Sets specified striping on a directory object unless it matches the default
3059  * striping (LOVEA_DELETE_VALUES() macro). In the latter case remove existing
3060  * EA. This striping will be used when a new directory is being created in the
3061  * directory.
3062  *
3063  * \param[in] env       execution environment
3064  * \param[in] dt        the striped object
3065  * \param[in] buf       buffer with the striping
3066  * \param[in] name      name of EA
3067  * \param[in] fl        xattr flag (see OSD API description)
3068  * \param[in] th        transaction handle
3069  *
3070  * \retval              0 on success
3071  * \retval              negative if failed
3072  */
3073 static int lod_xattr_set_default_lmv_on_dir(const struct lu_env *env,
3074                                             struct dt_object *dt,
3075                                             const struct lu_buf *buf,
3076                                             const char *name, int fl,
3077                                             struct thandle *th)
3078 {
3079         struct lmv_user_md_v1   *lum;
3080         int                      rc;
3081         ENTRY;
3082
3083         LASSERT(buf != NULL && buf->lb_buf != NULL);
3084         lum = buf->lb_buf;
3085
3086         CDEBUG(D_OTHER, "set default stripe_count # %u stripe_offset %d\n",
3087               le32_to_cpu(lum->lum_stripe_count),
3088               (int)le32_to_cpu(lum->lum_stripe_offset));
3089
3090         if (LMVEA_DELETE_VALUES((le32_to_cpu(lum->lum_stripe_count)),
3091                                  le32_to_cpu(lum->lum_stripe_offset)) &&
3092                                 le32_to_cpu(lum->lum_magic) == LMV_USER_MAGIC) {
3093                 rc = lod_xattr_del_internal(env, dt, name, th);
3094                 if (rc == -ENODATA)
3095                         rc = 0;
3096         } else {
3097                 rc = lod_xattr_set_internal(env, dt, buf, name, fl, th);
3098                 if (rc != 0)
3099                         RETURN(rc);
3100         }
3101
3102         RETURN(rc);
3103 }
3104
3105 /**
3106  * Turn directory into a striped directory.
3107  *
3108  * During replay the client sends the striping created before MDT
3109  * failure, then the layer above LOD sends this defined striping
3110  * using ->do_xattr_set(), so LOD uses this method to replay creation
3111  * of the stripes. Notice the original information for the striping
3112  * (#stripes, FIDs, etc) was transferred in declare path.
3113  *
3114  * \param[in] env       execution environment
3115  * \param[in] dt        the striped object
3116  * \param[in] buf       not used currently
3117  * \param[in] name      not used currently
3118  * \param[in] fl        xattr flag (see OSD API description)
3119  * \param[in] th        transaction handle
3120  *
3121  * \retval              0 on success
3122  * \retval              negative if failed
3123  */
3124 static int lod_xattr_set_lmv(const struct lu_env *env, struct dt_object *dt,
3125                              const struct lu_buf *buf, const char *name,
3126                              int fl, struct thandle *th)
3127 {
3128         struct lod_object       *lo = lod_dt_obj(dt);
3129         struct lod_thread_info  *info = lod_env_info(env);
3130         struct lu_attr          *attr = &info->lti_attr;
3131         struct dt_object_format *dof = &info->lti_format;
3132         struct lu_buf           lmv_buf;
3133         struct lu_buf           slave_lmv_buf;
3134         struct lmv_mds_md_v1    *lmm;
3135         struct lmv_mds_md_v1    *slave_lmm = NULL;
3136         struct dt_insert_rec    *rec = &info->lti_dt_rec;
3137         int                     i;
3138         int                     rc;
3139         ENTRY;
3140
3141         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr))
3142                 RETURN(-ENOTDIR);
3143
3144         /* The stripes are supposed to be allocated in declare phase,
3145          * if there are no stripes being allocated, it will skip */
3146         if (lo->ldo_dir_stripe_count == 0)
3147                 RETURN(0);
3148
3149         rc = dt_attr_get(env, dt_object_child(dt), attr);
3150         if (rc != 0)
3151                 RETURN(rc);
3152
3153         attr->la_valid = LA_ATIME | LA_MTIME | LA_CTIME |
3154                          LA_MODE | LA_UID | LA_GID | LA_TYPE | LA_PROJID;
3155         dof->dof_type = DFT_DIR;
3156
3157         rc = lod_prep_lmv_md(env, dt, &lmv_buf);
3158         if (rc != 0)
3159                 RETURN(rc);
3160         lmm = lmv_buf.lb_buf;
3161
3162         OBD_ALLOC_PTR(slave_lmm);
3163         if (slave_lmm == NULL)
3164                 RETURN(-ENOMEM);
3165
3166         lod_prep_slave_lmv_md(slave_lmm, lmm);
3167         slave_lmv_buf.lb_buf = slave_lmm;
3168         slave_lmv_buf.lb_len = sizeof(*slave_lmm);
3169
3170         rec->rec_type = S_IFDIR;
3171         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
3172                 struct dt_object *dto;
3173                 char             *stripe_name = info->lti_key;
3174                 struct lu_name          *sname;
3175                 struct linkea_data       ldata          = { NULL };
3176                 struct lu_buf            linkea_buf;
3177
3178                 dto = lo->ldo_stripe[i];
3179
3180                 dt_write_lock(env, dto, MOR_TGT_CHILD);
3181                 rc = lod_sub_create(env, dto, attr, NULL, dof, th);
3182                 if (rc != 0) {
3183                         dt_write_unlock(env, dto);
3184                         GOTO(out, rc);
3185                 }
3186
3187                 rc = lod_sub_ref_add(env, dto, th);
3188                 dt_write_unlock(env, dto);
3189                 if (rc != 0)
3190                         GOTO(out, rc);
3191
3192                 rec->rec_fid = lu_object_fid(&dto->do_lu);
3193                 rc = lod_sub_insert(env, dto, (const struct dt_rec *)rec,
3194                                     (const struct dt_key *)dot, th, 0);
3195                 if (rc != 0)
3196                         GOTO(out, rc);
3197
3198                 rec->rec_fid = lu_object_fid(&dt->do_lu);
3199                 rc = lod_sub_insert(env, dto, (struct dt_rec *)rec,
3200                                     (const struct dt_key *)dotdot, th, 0);
3201                 if (rc != 0)
3202                         GOTO(out, rc);
3203
3204                 if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_SLAVE_LMV) ||
3205                     cfs_fail_val != i) {
3206                         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_LMV) &&
3207                             cfs_fail_val == i)
3208                                 slave_lmm->lmv_master_mdt_index =
3209                                                         cpu_to_le32(i + 1);
3210                         else
3211                                 slave_lmm->lmv_master_mdt_index =
3212                                                         cpu_to_le32(i);
3213
3214                         rc = lod_sub_xattr_set(env, dto, &slave_lmv_buf,
3215                                                XATTR_NAME_LMV, fl, th);
3216                         if (rc != 0)
3217                                 GOTO(out, rc);
3218                 }
3219
3220                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_NAME) &&
3221                     cfs_fail_val == i)
3222                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
3223                                  PFID(lu_object_fid(&dto->do_lu)), i + 1);
3224                 else
3225                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
3226                                  PFID(lu_object_fid(&dto->do_lu)), i);
3227
3228                 sname = lod_name_get(env, stripe_name, strlen(stripe_name));
3229                 rc = linkea_links_new(&ldata, &info->lti_linkea_buf,
3230                                       sname, lu_object_fid(&dt->do_lu));
3231                 if (rc != 0)
3232                         GOTO(out, rc);
3233
3234                 linkea_buf.lb_buf = ldata.ld_buf->lb_buf;
3235                 linkea_buf.lb_len = ldata.ld_leh->leh_len;
3236                 rc = lod_sub_xattr_set(env, dto, &linkea_buf,
3237                                        XATTR_NAME_LINK, 0, th);
3238                 if (rc != 0)
3239                         GOTO(out, rc);
3240
3241                 rec->rec_fid = lu_object_fid(&dto->do_lu);
3242                 rc = lod_sub_insert(env, dt_object_child(dt),
3243                                     (const struct dt_rec *)rec,
3244                                     (const struct dt_key *)stripe_name, th, 0);
3245                 if (rc != 0)
3246                         GOTO(out, rc);
3247
3248                 rc = lod_sub_ref_add(env, dt_object_child(dt), th);
3249                 if (rc != 0)
3250                         GOTO(out, rc);
3251         }
3252
3253         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MASTER_LMV))
3254                 rc = lod_sub_xattr_set(env, dt_object_child(dt),
3255                                        &lmv_buf, XATTR_NAME_LMV, fl, th);
3256 out:
3257         if (slave_lmm != NULL)
3258                 OBD_FREE_PTR(slave_lmm);
3259
3260         RETURN(rc);
3261 }
3262
3263 /**
3264  * Helper function to declare/execute creation of a striped directory
3265  *
3266  * Called in declare/create object path, prepare striping for a directory
3267  * and prepare defaults data striping for the objects to be created in
3268  * that directory. Notice the function calls "declaration" or "execution"
3269  * methods depending on \a declare param. This is a consequence of the
3270  * current approach while we don't have natural distributed transactions:
3271  * we basically execute non-local updates in the declare phase. So, the
3272  * arguments for the both phases are the same and this is the reason for
3273  * this function to exist.
3274  *
3275  * \param[in] env       execution environment
3276  * \param[in] dt        object
3277  * \param[in] attr      attributes the stripes will be created with
3278  * \param[in] dof       format of stripes (see OSD API description)
3279  * \param[in] th        transaction handle
3280  * \param[in] declare   where to call "declare" or "execute" methods
3281  *
3282  * \retval              0 on success
3283  * \retval              negative if failed
3284  */
3285 static int lod_dir_striping_create_internal(const struct lu_env *env,
3286                                             struct dt_object *dt,
3287                                             struct lu_attr *attr,
3288                                             struct dt_object_format *dof,
3289                                             struct thandle *th,
3290                                             bool declare)
3291 {
3292         struct lod_thread_info *info = lod_env_info(env);
3293         struct lod_object *lo = lod_dt_obj(dt);
3294         const struct lod_default_striping *lds = lo->ldo_def_striping;
3295         int rc;
3296         ENTRY;
3297
3298         LASSERT(ergo(lds != NULL,
3299                      lds->lds_def_striping_set ||
3300                      lds->lds_dir_def_striping_set));
3301
3302         if (!LMVEA_DELETE_VALUES(lo->ldo_dir_stripe_count,
3303                                  lo->ldo_dir_stripe_offset)) {
3304                 struct lmv_user_md_v1 *v1 = info->lti_ea_store;
3305                 int stripe_count = lo->ldo_dir_stripe_count;
3306
3307                 if (info->lti_ea_store_size < sizeof(*v1)) {
3308                         rc = lod_ea_store_resize(info, sizeof(*v1));
3309                         if (rc != 0)
3310                                 RETURN(rc);
3311                         v1 = info->lti_ea_store;
3312                 }
3313
3314                 memset(v1, 0, sizeof(*v1));
3315                 v1->lum_magic = cpu_to_le32(LMV_USER_MAGIC);
3316                 v1->lum_stripe_count = cpu_to_le32(stripe_count);
3317                 v1->lum_stripe_offset =
3318                                 cpu_to_le32(lo->ldo_dir_stripe_offset);
3319
3320                 info->lti_buf.lb_buf = v1;
3321                 info->lti_buf.lb_len = sizeof(*v1);
3322
3323                 if (declare)
3324                         rc = lod_declare_xattr_set_lmv(env, dt, attr,
3325                                                        &info->lti_buf, dof, th);
3326                 else
3327                         rc = lod_xattr_set_lmv(env, dt, &info->lti_buf,
3328                                                XATTR_NAME_LMV, 0, th);
3329                 if (rc != 0)
3330                         RETURN(rc);
3331         }
3332
3333         /* Transfer default LMV striping from the parent */
3334         if (lds != NULL && lds->lds_dir_def_striping_set &&
3335             !LMVEA_DELETE_VALUES(lds->lds_dir_def_stripe_count,
3336                                  lds->lds_dir_def_stripe_offset)) {
3337                 struct lmv_user_md_v1 *v1 = info->lti_ea_store;
3338
3339                 if (info->lti_ea_store_size < sizeof(*v1)) {
3340                         rc = lod_ea_store_resize(info, sizeof(*v1));
3341                         if (rc != 0)
3342                                 RETURN(rc);
3343                         v1 = info->lti_ea_store;
3344                 }
3345
3346                 memset(v1, 0, sizeof(*v1));
3347                 v1->lum_magic = cpu_to_le32(LMV_USER_MAGIC);
3348                 v1->lum_stripe_count =
3349                         cpu_to_le32(lds->lds_dir_def_stripe_count);
3350                 v1->lum_stripe_offset =
3351                         cpu_to_le32(lds->lds_dir_def_stripe_offset);
3352                 v1->lum_hash_type =
3353                         cpu_to_le32(lds->lds_dir_def_hash_type);
3354
3355                 info->lti_buf.lb_buf = v1;
3356                 info->lti_buf.lb_len = sizeof(*v1);
3357                 if (declare)
3358                         rc = lod_dir_declare_xattr_set(env, dt, &info->lti_buf,
3359                                                        XATTR_NAME_DEFAULT_LMV,
3360                                                        0, th);
3361                 else
3362                         rc = lod_xattr_set_default_lmv_on_dir(env, dt,
3363                                                   &info->lti_buf,
3364                                                   XATTR_NAME_DEFAULT_LMV, 0,
3365                                                   th);
3366                 if (rc != 0)
3367                         RETURN(rc);
3368         }
3369
3370         /* Transfer default LOV striping from the parent */
3371         if (lds != NULL && lds->lds_def_striping_set &&
3372             lds->lds_def_comp_cnt != 0) {
3373                 struct lov_mds_md *lmm;
3374                 int lmm_size = lod_comp_md_size(lo, true);
3375
3376                 if (info->lti_ea_store_size < lmm_size) {
3377                         rc = lod_ea_store_resize(info, lmm_size);
3378                         if (rc != 0)
3379                                 RETURN(rc);
3380                 }
3381                 lmm = info->lti_ea_store;
3382
3383                 rc = lod_generate_lovea(env, lo, lmm, &lmm_size, true);
3384                 if (rc != 0)
3385                         RETURN(rc);
3386
3387                 info->lti_buf.lb_buf = lmm;
3388                 info->lti_buf.lb_len = lmm_size;
3389
3390                 if (declare)
3391                         rc = lod_dir_declare_xattr_set(env, dt, &info->lti_buf,
3392                                                        XATTR_NAME_LOV, 0, th);
3393                 else
3394                         rc = lod_xattr_set_lov_on_dir(env, dt, &info->lti_buf,
3395                                                       XATTR_NAME_LOV, 0, th);
3396                 if (rc != 0)
3397                         RETURN(rc);
3398         }
3399
3400         RETURN(0);
3401 }
3402
3403 static int lod_declare_dir_striping_create(const struct lu_env *env,
3404                                            struct dt_object *dt,
3405                                            struct lu_attr *attr,
3406                                            struct dt_object_format *dof,
3407                                            struct thandle *th)
3408 {
3409         return lod_dir_striping_create_internal(env, dt, attr, dof, th, true);
3410 }
3411
3412 static int lod_dir_striping_create(const struct lu_env *env,
3413                                    struct dt_object *dt,
3414                                    struct lu_attr *attr,
3415                                    struct dt_object_format *dof,
3416                                    struct thandle *th)
3417 {
3418         return lod_dir_striping_create_internal(env, dt, attr, dof, th, false);
3419 }
3420
3421 /**
3422  * Make LOV EA for striped object.
3423  *
3424  * Generate striping information and store it in the LOV EA of the given
3425  * object. The caller must ensure nobody else is calling the function
3426  * against the object concurrently. The transaction must be started.
3427  * FLDB service must be running as well; it's used to map FID to the target,
3428  * which is stored in LOV EA.
3429  *
3430  * \param[in] env               execution environment for this thread
3431  * \param[in] lo                LOD object
3432  * \param[in] th                transaction handle
3433  *
3434  * \retval                      0 if LOV EA is stored successfully
3435  * \retval                      negative error number on failure
3436  */
3437 static int lod_generate_and_set_lovea(const struct lu_env *env,
3438                                       struct lod_object *lo,
3439                                       struct thandle *th)
3440 {
3441         struct lod_thread_info  *info = lod_env_info(env);
3442         struct dt_object        *next = dt_object_child(&lo->ldo_obj);
3443         struct lov_mds_md_v1    *lmm;
3444         int                      rc, lmm_size;
3445         ENTRY;
3446
3447         LASSERT(lo);
3448
3449         if (lo->ldo_comp_cnt == 0) {
3450                 lod_object_free_striping(env, lo);
3451                 rc = lod_sub_xattr_del(env, next, XATTR_NAME_LOV, th);
3452                 RETURN(rc);
3453         }
3454
3455         lmm_size = lod_comp_md_size(lo, false);
3456         if (info->lti_ea_store_size < lmm_size) {
3457                 rc = lod_ea_store_resize(info, lmm_size);
3458                 if (rc)
3459                         RETURN(rc);
3460         }
3461         lmm = info->lti_ea_store;
3462
3463         rc = lod_generate_lovea(env, lo, lmm, &lmm_size, false);
3464         if (rc)
3465                 RETURN(rc);
3466
3467         info->lti_buf.lb_buf = lmm;
3468         info->lti_buf.lb_len = lmm_size;
3469         rc = lod_sub_xattr_set(env, next, &info->lti_buf,
3470                                XATTR_NAME_LOV, 0, th);
3471         RETURN(rc);
3472 }
3473
3474 /**
3475  * Delete layout component(s)
3476  *
3477  * \param[in] env       execution environment for this thread
3478  * \param[in] dt        object
3479  * \param[in] th        transaction handle
3480  *
3481  * \retval      0 on success
3482  * \retval      negative error number on failure
3483  */
3484 static int lod_layout_del(const struct lu_env *env, struct dt_object *dt,
3485                           struct thandle *th)
3486 {
3487         struct lod_layout_component     *lod_comp;
3488         struct lod_object       *lo = lod_dt_obj(dt);
3489         struct dt_object        *next = dt_object_child(dt);
3490         struct lu_attr  *attr = &lod_env_info(env)->lti_attr;
3491         int     rc, i, j, left;
3492
3493         LASSERT(lo->ldo_is_composite);
3494         LASSERT(lo->ldo_comp_cnt > 0 && lo->ldo_comp_entries != NULL);
3495
3496         left = lo->ldo_comp_cnt;
3497         for (i = (lo->ldo_comp_cnt - 1); i >= 0; i--) {
3498                 lod_comp = &lo->ldo_comp_entries[i];
3499
3500                 if (lod_comp->llc_id != LCME_ID_INVAL)
3501                         break;
3502                 left--;
3503
3504                 /* Not instantiated component */
3505                 if (lod_comp->llc_stripe == NULL)
3506                         continue;
3507
3508                 LASSERT(lod_comp->llc_stripe_count > 0);
3509                 for (j = 0; j < lod_comp->llc_stripe_count; j++) {
3510                         struct dt_object *obj = lod_comp->llc_stripe[j];
3511
3512                         if (obj == NULL)
3513                                 continue;
3514                         rc = lod_sub_destroy(env, obj, th);
3515                         if (rc)
3516                                 GOTO(out, rc);
3517
3518                         lu_object_put(env, &obj->do_lu);
3519                         lod_comp->llc_stripe[j] = NULL;
3520                 }
3521                 OBD_FREE(lod_comp->llc_stripe, sizeof(struct dt_object *) *
3522                                         lod_comp->llc_stripes_allocated);
3523                 lod_comp->llc_stripe = NULL;
3524                 lod_comp->llc_stripes_allocated = 0;
3525                 lod_obj_set_pool(lo, i, NULL);
3526                 if (lod_comp->llc_ostlist.op_array) {
3527                         OBD_FREE(lod_comp->llc_ostlist.op_array,
3528                                  lod_comp->llc_ostlist.op_size);
3529                         lod_comp->llc_ostlist.op_array = NULL;
3530                         lod_comp->llc_ostlist.op_size = 0;
3531                 }
3532         }
3533
3534         LASSERTF(left >= 0 && left < lo->ldo_comp_cnt, "left = %d\n", left);
3535         if (left > 0) {
3536                 struct lod_layout_component     *comp_array;
3537
3538                 OBD_ALLOC(comp_array, sizeof(*comp_array) * left);
3539                 if (comp_array == NULL)
3540                         GOTO(out, rc = -ENOMEM);
3541
3542                 memcpy(&comp_array[0], &lo->ldo_comp_entries[0],
3543                        sizeof(*comp_array) * left);
3544
3545                 OBD_FREE(lo->ldo_comp_entries,
3546                          sizeof(*comp_array) * lo->ldo_comp_cnt);
3547                 lo->ldo_comp_entries = comp_array;
3548                 lo->ldo_comp_cnt = left;
3549
3550                 LASSERT(lo->ldo_mirror_count == 1);
3551                 lo->ldo_mirrors[0].lme_end = left - 1;
3552                 lod_obj_inc_layout_gen(lo);
3553         } else {
3554                 lod_free_comp_entries(lo);
3555         }
3556
3557         LASSERT(dt_object_exists(dt));
3558         rc = dt_attr_get(env, next, attr);
3559         if (rc)
3560                 GOTO(out, rc);
3561
3562         if (attr->la_size > 0) {
3563                 attr->la_size = 0;
3564                 attr->la_valid = LA_SIZE;
3565                 rc = lod_sub_attr_set(env, next, attr, th);
3566                 if (rc)
3567                         GOTO(out, rc);
3568         }
3569
3570         rc = lod_generate_and_set_lovea(env, lo, th);
3571         EXIT;
3572 out:
3573         if (rc)
3574                 lod_object_free_striping(env, lo);
3575         return rc;
3576 }
3577
3578 /**
3579  * Implementation of dt_object_operations::do_xattr_set.
3580  *
3581  * Sets specified extended attribute on the object. Three types of EAs are
3582  * special:
3583  *   LOV EA - stores striping for a regular file or default striping (when set
3584  *            on a directory)
3585  *   LMV EA - stores a marker for the striped directories
3586  *   DMV EA - stores default directory striping
3587  *
3588  * When striping is applied to a non-striped existing object (this is called
3589  * late striping), then LOD notices the caller wants to turn the object into a
3590  * striped one. The stripe objects are created and appropriate EA is set:
3591  * LOV EA storing all the stripes directly or LMV EA storing just a small header
3592  * with striping configuration.
3593  *
3594  * \see dt_object_operations::do_xattr_set() in the API description for details.
3595  */
3596 static int lod_xattr_set(const struct lu_env *env,
3597                          struct dt_object *dt, const struct lu_buf *buf,
3598                          const char *name, int fl, struct thandle *th)
3599 {
3600         struct dt_object        *next = dt_object_child(dt);
3601         int                      rc;
3602         ENTRY;
3603
3604         if (S_ISDIR(dt->do_lu.lo_header->loh_attr) &&
3605             strcmp(name, XATTR_NAME_LMV) == 0) {
3606                 struct lmv_mds_md_v1 *lmm = buf->lb_buf;
3607
3608                 if (lmm != NULL && le32_to_cpu(lmm->lmv_hash_type) &
3609                                                 LMV_HASH_FLAG_MIGRATION)
3610                         rc = lod_sub_xattr_set(env, next, buf, name, fl, th);
3611                 else
3612                         rc = lod_dir_striping_create(env, dt, NULL, NULL, th);
3613
3614                 RETURN(rc);
3615         }
3616
3617         if (S_ISDIR(dt->do_lu.lo_header->loh_attr) &&
3618             strcmp(name, XATTR_NAME_LOV) == 0) {
3619                 /* default LOVEA */
3620                 rc = lod_xattr_set_lov_on_dir(env, dt, buf, name, fl, th);
3621                 RETURN(rc);
3622         } else if (S_ISDIR(dt->do_lu.lo_header->loh_attr) &&
3623                    strcmp(name, XATTR_NAME_DEFAULT_LMV) == 0) {
3624                 /* default LMVEA */
3625                 rc = lod_xattr_set_default_lmv_on_dir(env, dt, buf, name, fl,
3626                                                       th);
3627                 RETURN(rc);
3628         } else if (S_ISREG(dt->do_lu.lo_header->loh_attr) &&
3629                    (!strcmp(name, XATTR_NAME_LOV) ||
3630                     !strncmp(name, XATTR_LUSTRE_LOV,
3631                              strlen(XATTR_LUSTRE_LOV)))) {
3632                 /* in case of lov EA swap, just set it
3633                  * if not, it is a replay so check striping match what we
3634                  * already have during req replay, declare_xattr_set()
3635                  * defines striping, then create() does the work */
3636                 if (fl & LU_XATTR_REPLACE) {
3637                         /* free stripes, then update disk */
3638                         lod_object_free_striping(env, lod_dt_obj(dt));
3639
3640                         rc = lod_sub_xattr_set(env, next, buf, name, fl, th);
3641                 } else if (dt_object_remote(dt)) {
3642                         /* This only happens during migration, see
3643                          * mdd_migrate_create(), in which Master MDT will
3644                          * create a remote target object, and only set
3645                          * (migrating) stripe EA on the remote object,
3646                          * and does not need creating each stripes. */
3647                         rc = lod_sub_xattr_set(env, next, buf, name,
3648                                                       fl, th);
3649                 } else if (strcmp(name, XATTR_LUSTRE_LOV".del") == 0) {
3650                         /* delete component(s) */
3651                         LASSERT(lod_dt_obj(dt)->ldo_comp_cached);
3652                         rc = lod_layout_del(env, dt, th);
3653                 } else {
3654                         /*
3655                          * When 'name' is XATTR_LUSTRE_LOV or XATTR_NAME_LOV,
3656                          * it's going to create create file with specified
3657                          * component(s), the striping must have not being
3658                          * cached in this case;
3659                          *
3660                          * Otherwise, it's going to add/change component(s) to
3661                          * an existing file, the striping must have been cached
3662                          * in this case.
3663                          */
3664                         LASSERT(equi(!strcmp(name, XATTR_LUSTRE_LOV) ||
3665                                      !strcmp(name, XATTR_NAME_LOV),
3666                                 !lod_dt_obj(dt)->ldo_comp_cached));
3667
3668                         rc = lod_striped_create(env, dt, NULL, NULL, th);
3669                 }
3670                 RETURN(rc);
3671         } else if (strcmp(name, XATTR_NAME_FID) == 0) {
3672                 rc = lod_replace_parent_fid(env, dt, th, false);
3673
3674                 RETURN(rc);
3675         }
3676
3677         /* then all other xattr */
3678         rc = lod_xattr_set_internal(env, dt, buf, name, fl, th);
3679
3680         RETURN(rc);
3681 }
3682
3683 /**
3684  * Implementation of dt_object_operations::do_declare_xattr_del.
3685  *
3686  * \see dt_object_operations::do_declare_xattr_del() in the API description
3687  * for details.
3688  */
3689 static int lod_declare_xattr_del(const struct lu_env *env,
3690                                  struct dt_object *dt, const char *name,
3691                                  struct thandle *th)
3692 {
3693         struct lod_object       *lo = lod_dt_obj(dt);
3694         int                     rc;
3695         int                     i;
3696         ENTRY;
3697
3698         rc = lod_sub_declare_xattr_del(env, dt_object_child(dt), name, th);
3699         if (rc != 0)
3700                 RETURN(rc);
3701
3702         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr))
3703                 RETURN(0);
3704
3705         /* set xattr to each stripes, if needed */
3706         rc = lod_load_striping(env, lo);
3707         if (rc != 0)
3708                 RETURN(rc);
3709
3710         if (lo->ldo_dir_stripe_count == 0)
3711                 RETURN(0);
3712
3713         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
3714                 LASSERT(lo->ldo_stripe[i]);
3715                 rc = lod_sub_declare_xattr_del(env, lo->ldo_stripe[i],
3716                                                name, th);
3717                 if (rc != 0)
3718                         break;
3719         }
3720
3721         RETURN(rc);
3722 }
3723
3724 /**
3725  * Implementation of dt_object_operations::do_xattr_del.
3726  *
3727  * If EA storing a regular striping is being deleted, then release
3728  * all the references to the stripe objects in core.
3729  *
3730  * \see dt_object_operations::do_xattr_del() in the API description for details.
3731  */
3732 static int lod_xattr_del(const struct lu_env *env, struct dt_object *dt,
3733                          const char *name, struct thandle *th)
3734 {
3735         struct dt_object        *next = dt_object_child(dt);
3736         struct lod_object       *lo = lod_dt_obj(dt);
3737         int                     rc;
3738         int                     i;
3739         ENTRY;
3740
3741         if (!strcmp(name, XATTR_NAME_LOV))
3742                 lod_object_free_striping(env, lod_dt_obj(dt));
3743
3744         rc = lod_sub_xattr_del(env, next, name, th);
3745         if (rc != 0 || !S_ISDIR(dt->do_lu.lo_header->loh_attr))
3746                 RETURN(rc);
3747
3748         if (lo->ldo_dir_stripe_count == 0)
3749                 RETURN(0);
3750
3751         for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
3752                 LASSERT(lo->ldo_stripe[i]);
3753
3754                 rc = lod_sub_xattr_del(env, lo->ldo_stripe[i], name, th);
3755                 if (rc != 0)
3756                         break;
3757         }
3758
3759         RETURN(rc);
3760 }
3761
3762 /**
3763  * Implementation of dt_object_operations::do_xattr_list.
3764  *
3765  * \see dt_object_operations::do_xattr_list() in the API description
3766  * for details.
3767  */
3768 static int lod_xattr_list(const struct lu_env *env,
3769                           struct dt_object *dt, const struct lu_buf *buf)
3770 {
3771         return dt_xattr_list(env, dt_object_child(dt), buf);
3772 }
3773
3774 static inline int lod_object_will_be_striped(int is_reg, const struct lu_fid *fid)
3775 {
3776         return (is_reg && fid_seq(fid) != FID_SEQ_LOCAL_FILE);
3777 }
3778
3779
3780 /**
3781  * Get default striping.
3782  *
3783  * \param[in] env               execution environment
3784  * \param[in] lo                object
3785  * \param[out] lds              default striping
3786  *
3787  * \retval              0 on success
3788  * \retval              negative if failed
3789  */
3790 static int lod_get_default_lov_striping(const struct lu_env *env,
3791                                         struct lod_object *lo,
3792                                         struct lod_default_striping *lds)
3793 {
3794         struct lod_thread_info *info = lod_env_info(env);
3795         struct lov_user_md_v1 *v1 = NULL;
3796         struct lov_user_md_v3 *v3 = NULL;
3797         struct lov_comp_md_v1 *comp_v1 = NULL;
3798         __u16   comp_cnt;
3799         __u16   mirror_cnt;
3800         bool    composite;
3801         int     rc, i;
3802         ENTRY;
3803
3804         lds->lds_def_striping_set = 0;
3805
3806         rc = lod_get_lov_ea(env, lo);
3807         if (rc < 0)
3808                 RETURN(rc);
3809
3810         if (rc < (typeof(rc))sizeof(struct lov_user_md))
3811                 RETURN(0);
3812
3813         v1 = info->lti_ea_store;
3814         if (v1->lmm_magic == __swab32(LOV_USER_MAGIC_V1)) {
3815                 lustre_swab_lov_user_md_v1(v1);
3816         } else if (v1->lmm_magic == __swab32(LOV_USER_MAGIC_V3)) {
3817                 v3 = (struct lov_user_md_v3 *)v1;
3818                 lustre_swab_lov_user_md_v3(v3);
3819         } else if (v1->lmm_magic == __swab32(LOV_USER_MAGIC_COMP_V1)) {
3820                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3821                 lustre_swab_lov_comp_md_v1(comp_v1);
3822         }
3823
3824         if (v1->lmm_magic != LOV_MAGIC_V3 && v1->lmm_magic != LOV_MAGIC_V1 &&
3825             v1->lmm_magic != LOV_MAGIC_COMP_V1)
3826                 RETURN(-ENOTSUPP);
3827
3828         if (v1->lmm_magic == LOV_MAGIC_COMP_V1) {
3829                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3830                 comp_cnt = comp_v1->lcm_entry_count;
3831                 if (comp_cnt == 0)
3832                         RETURN(-EINVAL);
3833                 mirror_cnt = comp_v1->lcm_mirror_count + 1;
3834                 composite = true;
3835         } else {
3836                 comp_cnt = 1;
3837                 mirror_cnt = 0;
3838                 composite = false;
3839         }
3840
3841         /* realloc default comp entries if necessary */
3842         rc = lod_def_striping_comp_resize(lds, comp_cnt);
3843         if (rc < 0)
3844                 RETURN(rc);
3845
3846         lds->lds_def_comp_cnt = comp_cnt;
3847         lds->lds_def_striping_is_composite = composite;
3848         lds->lds_def_mirror_cnt = mirror_cnt;
3849
3850         for (i = 0; i < comp_cnt; i++) {
3851                 struct lod_layout_component *lod_comp;
3852                 struct lu_extent *ext;
3853                 char *pool;
3854
3855                 lod_comp = &lds->lds_def_comp_entries[i];
3856                 /*
3857                  * reset lod_comp values, llc_stripes is always NULL in
3858                  * the default striping template, llc_pool will be reset
3859                  * later below.
3860                  */
3861                 memset(lod_comp, 0, offsetof(typeof(*lod_comp), llc_pool));
3862
3863                 if (composite) {
3864                         v1 = (struct lov_user_md *)((char *)comp_v1 +
3865                                         comp_v1->lcm_entries[i].lcme_offset);
3866                         ext = &comp_v1->lcm_entries[i].lcme_extent;
3867                         lod_comp->llc_extent = *ext;
3868                 }
3869
3870                 if (v1->lmm_pattern != LOV_PATTERN_RAID0 &&
3871                     v1->lmm_pattern != LOV_PATTERN_MDT &&
3872                     v1->lmm_pattern != 0) {
3873                         lod_free_def_comp_entries(lds);
3874                         RETURN(-EINVAL);
3875                 }
3876
3877                 CDEBUG(D_LAYOUT, DFID" stripe_count=%d stripe_size=%d "
3878                        "stripe_offset=%d\n",
3879                        PFID(lu_object_fid(&lo->ldo_obj.do_lu)),
3880                        (int)v1->lmm_stripe_count, (int)v1->lmm_stripe_size,
3881                        (int)v1->lmm_stripe_offset);
3882
3883                 lod_comp->llc_stripe_count = v1->lmm_stripe_count;
3884                 lod_comp->llc_stripe_size = v1->lmm_stripe_size;
3885                 lod_comp->llc_stripe_offset = v1->lmm_stripe_offset;
3886                 lod_comp->llc_pattern = v1->lmm_pattern;
3887
3888                 pool = NULL;
3889                 if (v1->lmm_magic == LOV_USER_MAGIC_V3) {
3890                         /* XXX: sanity check here */
3891                         v3 = (struct lov_user_md_v3 *) v1;
3892                         if (v3->lmm_pool_name[0] != '\0')
3893                                 pool = v3->lmm_pool_name;
3894                 }
3895                 lod_set_def_pool(lds, i, pool);
3896         }
3897
3898         lds->lds_def_striping_set = 1;
3899         RETURN(rc);
3900 }
3901
3902 /**
3903  * Get default directory striping.
3904  *
3905  * \param[in] env               execution environment
3906  * \param[in] lo                object
3907  * \param[out] lds              default striping
3908  *
3909  * \retval              0 on success
3910  * \retval              negative if failed
3911  */
3912 static int lod_get_default_lmv_striping(const struct lu_env *env,
3913                                         struct lod_object *lo,
3914                                         struct lod_default_striping *lds)
3915 {
3916         struct lod_thread_info  *info = lod_env_info(env);
3917         struct lmv_user_md_v1   *v1 = NULL;
3918         int                      rc;
3919         ENTRY;
3920
3921         lds->lds_dir_def_striping_set = 0;
3922         rc = lod_get_default_lmv_ea(env, lo);
3923         if (rc < 0)
3924                 RETURN(rc);
3925
3926         if (rc < (typeof(rc))sizeof(struct lmv_user_md))
3927                 RETURN(0);
3928
3929         v1 = info->lti_ea_store;
3930
3931         lds->lds_dir_def_stripe_count = le32_to_cpu(v1->lum_stripe_count);
3932         lds->lds_dir_def_stripe_offset = le32_to_cpu(v1->lum_stripe_offset);
3933         lds->lds_dir_def_hash_type = le32_to_cpu(v1->lum_hash_type);
3934         lds->lds_dir_def_striping_set = 1;
3935
3936         RETURN(0);
3937 }
3938
3939 /**
3940  * Get default striping in the object.
3941  *
3942  * Get object default striping and default directory striping.
3943  *
3944  * \param[in] env               execution environment
3945  * \param[in] lo                object
3946  * \param[out] lds              default striping
3947  *
3948  * \retval              0 on success
3949  * \retval              negative if failed
3950  */
3951 static int lod_get_default_striping(const struct lu_env *env,
3952                                     struct lod_object *lo,
3953                                     struct lod_default_striping *lds)
3954 {
3955         int rc, rc1;
3956
3957         rc = lod_get_default_lov_striping(env, lo, lds);
3958         rc1 = lod_get_default_lmv_striping(env, lo, lds);
3959         if (rc == 0 && rc1 < 0)
3960                 rc = rc1;
3961
3962         return rc;
3963 }
3964
3965 /**
3966  * Apply default striping on object.
3967  *
3968  * If object striping pattern is not set, set to the one in default striping.
3969  * The default striping is from parent or fs.
3970  *
3971  * \param[in] lo                new object
3972  * \param[in] lds               default striping
3973  * \param[in] mode              new object's mode
3974  */
3975 static void lod_striping_from_default(struct lod_object *lo,
3976                                       const struct lod_default_striping *lds,
3977                                       umode_t mode)
3978 {
3979         struct lod_device *d = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
3980         struct lov_desc *desc = &d->lod_desc;
3981         int i, rc;
3982
3983         if (lds->lds_def_striping_set && S_ISREG(mode)) {
3984                 rc = lod_alloc_comp_entries(lo, lds->lds_def_mirror_cnt,
3985                                             lds->lds_def_comp_cnt);
3986                 if (rc != 0)
3987                         return;
3988
3989                 lo->ldo_is_composite = lds->lds_def_striping_is_composite;
3990
3991                 for (i = 0; i < lo->ldo_comp_cnt; i++) {
3992                         struct lod_layout_component *obj_comp =
3993                                                 &lo->ldo_comp_entries[i];
3994                         struct lod_layout_component *def_comp =
3995                                                 &lds->lds_def_comp_entries[i];
3996
3997                         CDEBUG(D_LAYOUT, "Inherite from default: size:%hu "
3998                                "nr:%u offset:%u pattern %#x %s\n",
3999                                def_comp->llc_stripe_size,
4000                                def_comp->llc_stripe_count,
4001                                def_comp->llc_stripe_offset,
4002                                def_comp->llc_pattern,
4003                                def_comp->llc_pool ?: "");
4004
4005                         *obj_comp = *def_comp;
4006                         if (def_comp->llc_pool != NULL) {
4007                                 /* pointer was copied from def_comp */
4008                                 obj_comp->llc_pool = NULL;
4009                                 lod_obj_set_pool(lo, i, def_comp->llc_pool);
4010                         }
4011
4012                         /*
4013                          * Don't initialize these fields for plain layout
4014                          * (v1/v3) here, they are inherited in the order of
4015                          * 'parent' -> 'fs default (root)' -> 'global default
4016                          * values for stripe_count & stripe_size'.
4017                          *
4018                          * see lod_ah_init().
4019                          */
4020                         if (!lo->ldo_is_composite)
4021                                 continue;
4022
4023                         if (obj_comp->llc_stripe_count <= 0 &&
4024                             obj_comp->llc_pattern != LOV_PATTERN_MDT)
4025                                 obj_comp->llc_stripe_count =
4026                                         desc->ld_default_stripe_count;
4027                         if (obj_comp->llc_stripe_size <= 0)
4028                                 obj_comp->llc_stripe_size =
4029                                         desc->ld_default_stripe_size;
4030                 }
4031         } else if (lds->lds_dir_def_striping_set && S_ISDIR(mode)) {
4032                 if (lo->ldo_dir_stripe_count == 0)
4033                         lo->ldo_dir_stripe_count =
4034                                 lds->lds_dir_def_stripe_count;
4035                 if (lo->ldo_dir_stripe_offset == -1)
4036                         lo->ldo_dir_stripe_offset =
4037                                 lds->lds_dir_def_stripe_offset;
4038                 if (lo->ldo_dir_hash_type == 0)
4039                         lo->ldo_dir_hash_type = lds->lds_dir_def_hash_type;
4040
4041                 CDEBUG(D_LAYOUT, "striping from default dir: count:%hu, "
4042                        "offset:%u, hash_type:%u\n",
4043                        lo->ldo_dir_stripe_count, lo->ldo_dir_stripe_offset,
4044                        lo->ldo_dir_hash_type);
4045         }
4046 }
4047
4048 static inline bool lod_need_inherit_more(struct lod_object *lo, bool from_root)
4049 {
4050         struct lod_layout_component *lod_comp;
4051
4052         if (lo->ldo_comp_cnt == 0)
4053                 return true;
4054
4055         if (lo->ldo_is_composite)
4056                 return false;
4057
4058         lod_comp = &lo->ldo_comp_entries[0];
4059
4060         if (lod_comp->llc_stripe_count <= 0 ||
4061             lod_comp->llc_stripe_size <= 0)
4062                 return true;
4063
4064         if (from_root && (lod_comp->llc_pool == NULL ||
4065                           lod_comp->llc_stripe_offset == LOV_OFFSET_DEFAULT))
4066                 return true;
4067
4068         return false;
4069 }
4070
4071 /**
4072  * Implementation of dt_object_operations::do_ah_init.
4073  *
4074  * This method is used to make a decision on the striping configuration for the
4075  * object being created. It can be taken from the \a parent object if it exists,
4076  * or filesystem's default. The resulting configuration (number of stripes,
4077  * stripe size/offset, pool name, etc) is stored in the object itself and will
4078  * be used by the methods like ->doo_declare_create().
4079  *
4080  * \see dt_object_operations::do_ah_init() in the API description for details.
4081  */
4082 static void lod_ah_init(const struct lu_env *env,
4083                         struct dt_allocation_hint *ah,
4084                         struct dt_object *parent,
4085                         struct dt_object *child,
4086                         umode_t child_mode)
4087 {
4088         struct lod_device *d = lu2lod_dev(child->do_lu.lo_dev);
4089         struct lod_thread_info *info = lod_env_info(env);
4090         struct lod_default_striping *lds = &info->lti_def_striping;
4091         struct dt_object *nextp = NULL;
4092         struct dt_object *nextc;
4093         struct lod_object *lp = NULL;
4094         struct lod_object *lc;
4095         struct lov_desc *desc;
4096         struct lod_layout_component *lod_comp;
4097         int rc;
4098         ENTRY;
4099
4100         LASSERT(child);
4101
4102         if (likely(parent)) {
4103                 nextp = dt_object_child(parent);
4104                 lp = lod_dt_obj(parent);
4105         }
4106
4107         nextc = dt_object_child(child);
4108         lc = lod_dt_obj(child);
4109
4110         LASSERT(!lod_obj_is_striped(child));
4111         /* default layout template may have been set on the regular file
4112          * when this is called from mdd_create_data() */
4113         if (S_ISREG(child_mode))
4114                 lod_free_comp_entries(lc);
4115
4116         if (!dt_object_exists(nextc))
4117                 nextc->do_ops->do_ah_init(env, ah, nextp, nextc, child_mode);
4118
4119         if (S_ISDIR(child_mode)) {
4120                 /* other default values are 0 */
4121                 lc->ldo_dir_stripe_offset = -1;
4122
4123                 /* get default striping from parent object */
4124                 if (likely(lp != NULL))
4125                         lod_get_default_striping(env, lp, lds);
4126
4127                 /* set child default striping info, default value is NULL */
4128                 if (lds->lds_def_striping_set || lds->lds_dir_def_striping_set)
4129                         lc->ldo_def_striping = lds;
4130
4131                 /* It should always honour the specified stripes */
4132                 if (ah->dah_eadata != NULL && ah->dah_eadata_len != 0 &&
4133                     lod_verify_md_striping(d, ah->dah_eadata) == 0) {
4134                         const struct lmv_user_md_v1 *lum1 = ah->dah_eadata;
4135
4136                         lc->ldo_dir_stripe_count =
4137                                 le32_to_cpu(lum1->lum_stripe_count);
4138                         lc->ldo_dir_stripe_offset =
4139                                 le32_to_cpu(lum1->lum_stripe_offset);
4140                         lc->ldo_dir_hash_type =
4141                                 le32_to_cpu(lum1->lum_hash_type);
4142                         CDEBUG(D_INFO,
4143                                "set dirstripe: count %hu, offset %d, hash %u\n",
4144                                 lc->ldo_dir_stripe_count,
4145                                 (int)lc->ldo_dir_stripe_offset,
4146                                 lc->ldo_dir_hash_type);
4147                 } else {
4148                         /* transfer defaults LMV to new directory */
4149                         lod_striping_from_default(lc, lds, child_mode);
4150                 }
4151
4152                 /* shrink the stripe_count to the avaible MDT count */
4153                 if (lc->ldo_dir_stripe_count > d->lod_remote_mdt_count + 1 &&
4154                     !OBD_FAIL_CHECK(OBD_FAIL_LARGE_STRIPE))
4155                         lc->ldo_dir_stripe_count = d->lod_remote_mdt_count + 1;
4156
4157                 /* Directory will be striped only if stripe_count > 1, if
4158                  * stripe_count == 1, let's reset stripe_count = 0 to avoid
4159                  * create single master stripe and also help to unify the
4160                  * stripe handling of directories and files */
4161                 if (lc->ldo_dir_stripe_count == 1)
4162                         lc->ldo_dir_stripe_count = 0;
4163
4164                 CDEBUG(D_INFO, "final dir stripe [%hu %d %u]\n",
4165                        lc->ldo_dir_stripe_count,
4166                        (int)lc->ldo_dir_stripe_offset, lc->ldo_dir_hash_type);
4167
4168                 RETURN_EXIT;
4169         }
4170
4171         /* child object regular file*/
4172
4173         if (!lod_object_will_be_striped(S_ISREG(child_mode),
4174                                         lu_object_fid(&child->do_lu)))
4175                 RETURN_EXIT;
4176
4177         /* If object is going to be striped over OSTs, transfer default
4178          * striping information to the child, so that we can use it
4179          * during declaration and creation.
4180          *
4181          * Try from the parent first.
4182          */
4183         if (likely(lp != NULL)) {
4184                 rc = lod_get_default_lov_striping(env, lp, lds);
4185                 if (rc == 0)
4186                         lod_striping_from_default(lc, lds, child_mode);
4187         }
4188
4189         /* Initialize lod_device::lod_md_root object reference */
4190         if (d->lod_md_root == NULL) {
4191                 struct dt_object *root;
4192                 struct lod_object *lroot;
4193
4194                 lu_root_fid(&info->lti_fid);
4195                 root = dt_locate(env, &d->lod_dt_dev, &info->lti_fid);
4196                 if (!IS_ERR(root)) {
4197                         lroot = lod_dt_obj(root);
4198
4199                         spin_lock(&d->lod_lock);
4200                         if (d->lod_md_root != NULL)
4201                                 dt_object_put(env, &d->lod_md_root->ldo_obj);
4202                         d->lod_md_root = lroot;
4203                         spin_unlock(&d->lod_lock);
4204                 }
4205         }
4206
4207         /* try inherit layout from the root object (fs default) when:
4208          *  - parent does not have default layout; or
4209          *  - parent has plain(v1/v3) default layout, and some attributes
4210          *    are not specified in the default layout;
4211          */
4212         if (d->lod_md_root != NULL && lod_need_inherit_more(lc, true)) {
4213                 rc = lod_get_default_lov_striping(env, d->lod_md_root, lds);
4214                 if (rc)
4215                         goto out;
4216                 if (lc->ldo_comp_cnt == 0) {
4217                         lod_striping_from_default(lc, lds, child_mode);
4218                 } else if (!lds->lds_def_striping_is_composite) {
4219                         struct lod_layout_component *def_comp;
4220
4221                         LASSERT(!lc->ldo_is_composite);
4222                         lod_comp = &lc->ldo_comp_entries[0];
4223                         def_comp = &lds->lds_def_comp_entries[0];
4224
4225                         if (lod_comp->llc_stripe_count <= 0)
4226                                 lod_comp->llc_stripe_count =
4227                                         def_comp->llc_stripe_count;
4228                         if (lod_comp->llc_stripe_size <= 0)
4229                                 lod_comp->llc_stripe_size =
4230                                         def_comp->llc_stripe_size;
4231                         if (lod_comp->llc_stripe_offset == LOV_OFFSET_DEFAULT)
4232                                 lod_comp->llc_stripe_offset =
4233                                         def_comp->llc_stripe_offset;
4234                         if (lod_comp->llc_pool == NULL)
4235                                 lod_obj_set_pool(lc, 0, def_comp->llc_pool);
4236                 }
4237         }
4238 out:
4239         /*
4240          * fs default striping may not be explicitly set, or historically set
4241          * in config log, use them.
4242          */
4243         if (lod_need_inherit_more(lc, false)) {
4244                 if (lc->ldo_comp_cnt == 0) {
4245                         rc = lod_alloc_comp_entries(lc, 0, 1);
4246                         if (rc)
4247                                 /* fail to allocate memory, will create a
4248                                  * non-striped file. */
4249                                 RETURN_EXIT;
4250                         lc->ldo_is_composite = 0;
4251                         lod_comp = &lc->ldo_comp_entries[0];
4252                         lod_comp->llc_stripe_offset = LOV_OFFSET_DEFAULT;
4253                 }
4254                 LASSERT(!lc->ldo_is_composite);
4255                 lod_comp = &lc->ldo_comp_entries[0];
4256                 desc = &d->lod_desc;
4257                 if (lod_comp->llc_stripe_count <= 0)
4258                         lod_comp->llc_stripe_count =
4259                                 desc->ld_default_stripe_count;
4260                 if (lod_comp->llc_stripe_size <= 0)
4261                         lod_comp->llc_stripe_size =
4262                                 desc->ld_default_stripe_size;
4263         }
4264
4265         EXIT;
4266 }
4267
4268 #define ll_do_div64(aaa,bbb)    do_div((aaa), (bbb))
4269 /**
4270  * Size initialization on late striping.
4271  *
4272  * Propagate the size of a truncated object to a deferred striping.
4273  * This function handles a special case when truncate was done on a
4274  * non-striped object and now while the striping is being created
4275  * we can't lose that size, so we have to propagate it to the stripes
4276  * being created.
4277  *
4278  * \param[in] env       execution environment
4279  * \param[in] dt        object
4280  * \param[in] th        transaction handle
4281  *
4282  * \retval              0 on success
4283  * \retval              negative if failed
4284  */
4285 static int lod_declare_init_size(const struct lu_env *env,
4286                                  struct dt_object *dt, struct thandle *th)
4287 {
4288         struct dt_object        *next = dt_object_child(dt);
4289         struct lod_object       *lo = lod_dt_obj(dt);
4290         struct dt_object        **objects = NULL;
4291         struct lu_attr  *attr = &lod_env_info(env)->lti_attr;
4292         uint64_t        size, offs;
4293         int     i, rc, stripe, stripe_count = 0, stripe_size = 0;
4294         struct lu_extent size_ext;
4295         ENTRY;
4296
4297         if (!lod_obj_is_striped(dt))
4298                 RETURN(0);
4299
4300         rc = dt_attr_get(env, next, attr);
4301         LASSERT(attr->la_valid & LA_SIZE);
4302         if (rc)
4303                 RETURN(rc);
4304
4305         size = attr->la_size;
4306         if (size == 0)
4307                 RETURN(0);
4308
4309         size_ext = (typeof(size_ext)){ .e_start = size - 1, .e_end = size };
4310         for (i = 0; i < lo->ldo_comp_cnt; i++) {
4311                 struct lod_layout_component *lod_comp;
4312                 struct lu_extent *extent;
4313
4314                 lod_comp = &lo->ldo_comp_entries[i];
4315
4316                 if (lod_comp->llc_stripe == NULL)
4317                         continue;
4318
4319                 extent = &lod_comp->llc_extent;
4320                 CDEBUG(D_INFO, "%lld "DEXT"\n", size, PEXT(extent));
4321                 if (!lo->ldo_is_composite ||
4322                     lu_extent_is_overlapped(extent, &size_ext)) {
4323                         objects = lod_comp->llc_stripe;
4324                         stripe_count = lod_comp->llc_stripe_count;
4325                         stripe_size = lod_comp->llc_stripe_size;
4326
4327                         /* next mirror */
4328                         if (stripe_count == 0)
4329                                 continue;
4330
4331                         LASSERT(objects != NULL && stripe_size != 0);
4332                         /* ll_do_div64(a, b) returns a % b, and a = a / b */
4333                         ll_do_div64(size, (__u64)stripe_size);
4334                         stripe = ll_do_div64(size, (__u64)stripe_count);
4335                         LASSERT(objects[stripe] != NULL);
4336
4337                         size = size * stripe_size;
4338                         offs = attr->la_size;
4339                         size += ll_do_div64(offs, stripe_size);
4340
4341                         attr->la_valid = LA_SIZE;
4342                         attr->la_size = size;
4343
4344                         rc = lod_sub_declare_attr_set(env, objects[stripe],
4345                                                       attr, th);
4346                 }
4347         }
4348
4349         RETURN(rc);
4350 }
4351
4352 /**
4353  * Declare creation of striped object.
4354  *
4355  * The function declares creation stripes for a regular object. The function
4356  * also declares whether the stripes will be created with non-zero size if
4357  * previously size was set non-zero on the master object. If object \a dt is
4358  * not local, then only fully defined striping can be applied in \a lovea.
4359  * Otherwise \a lovea can be in the form of pattern, see lod_qos_parse_config()
4360  * for the details.
4361  *
4362  * \param[in] env       execution environment
4363  * \param[in] dt        object
4364  * \param[in] attr      attributes the stripes will be created with
4365  * \param[in] lovea     a buffer containing striping description
4366  * \param[in] th        transaction handle
4367  *
4368  * \retval              0 on success
4369  * \retval              negative if failed
4370  */
4371 int lod_declare_striped_create(const struct lu_env *env, struct dt_object *dt,
4372                                struct lu_attr *attr,
4373                                const struct lu_buf *lovea, struct thandle *th)
4374 {
4375         struct lod_thread_info  *info = lod_env_info(env);
4376         struct dt_object        *next = dt_object_child(dt);
4377         struct lod_object       *lo = lod_dt_obj(dt);
4378         int                      rc;
4379         ENTRY;
4380
4381         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_ALLOC_OBDO))
4382                 GOTO(out, rc = -ENOMEM);
4383
4384         if (!dt_object_remote(next)) {
4385                 /* choose OST and generate appropriate objects */
4386                 rc = lod_prepare_create(env, lo, attr, lovea, th);
4387                 if (rc)
4388                         GOTO(out, rc);
4389
4390                 /*
4391                  * declare storage for striping data
4392                  */
4393                 info->lti_buf.lb_len = lod_comp_md_size(lo, false);
4394         } else {
4395                 /* LOD can not choose OST objects for remote objects, i.e.
4396                  * stripes must be ready before that. Right now, it can only
4397                  * happen during migrate, i.e. migrate process needs to create
4398                  * remote regular file (mdd_migrate_create), then the migrate
4399                  * process will provide stripeEA. */
4400                 LASSERT(lovea != NULL);
4401                 info->lti_buf = *lovea;
4402         }
4403
4404         rc = lod_sub_declare_xattr_set(env, next, &info->lti_buf,
4405                                        XATTR_NAME_LOV, 0, th);
4406         if (rc)
4407                 GOTO(out, rc);
4408
4409         /*
4410          * if striping is created with local object's size > 0,
4411          * we have to propagate this size to specific object
4412          * the case is possible only when local object was created previously
4413          */
4414         if (dt_object_exists(next))
4415                 rc = lod_declare_init_size(env, dt, th);
4416
4417 out:
4418         /* failed to create striping or to set initial size, let's reset
4419          * config so that others don't get confused */
4420         if (rc)
4421                 lod_object_free_striping(env, lo);
4422
4423         RETURN(rc);
4424 }
4425
4426 /**
4427  * Implementation of dt_object_operations::do_declare_create.
4428  *
4429  * The method declares creation of a new object. If the object will be striped,
4430  * then helper functions are called to find FIDs for the stripes, declare
4431  * creation of the stripes and declare initialization of the striping
4432  * information to be stored in the master object.
4433  *
4434  * \see dt_object_operations::do_declare_create() in the API description
4435  * for details.
4436  */
4437 static int lod_declare_create(const struct lu_env *env, struct dt_object *dt,
4438                               struct lu_attr *attr,
4439                               struct dt_allocation_hint *hint,
4440                               struct dt_object_format *dof, struct thandle *th)
4441 {
4442         struct dt_object   *next = dt_object_child(dt);
4443         struct lod_object  *lo = lod_dt_obj(dt);
4444         int                 rc;
4445         ENTRY;
4446
4447         LASSERT(dof);
4448         LASSERT(attr);
4449         LASSERT(th);
4450
4451         /*
4452          * first of all, we declare creation of local object
4453          */
4454         rc = lod_sub_declare_create(env, next, attr, hint, dof, th);
4455         if (rc != 0)
4456                 GOTO(out, rc);
4457
4458         /*
4459          * it's lod_ah_init() that has decided the object will be striped
4460          */
4461         if (dof->dof_type == DFT_REGULAR) {
4462                 /* callers don't want stripes */
4463                 /* XXX: all tricky interactions with ->ah_make_hint() decided
4464                  * to use striping, then ->declare_create() behaving differently
4465                  * should be cleaned */
4466                 if (dof->u.dof_reg.striped != 0)
4467                         rc = lod_declare_striped_create(env, dt, attr,
4468                                                         NULL, th);
4469         } else if (dof->dof_type == DFT_DIR) {
4470                 struct seq_server_site *ss;
4471
4472                 ss = lu_site2seq(dt->do_lu.lo_dev->ld_site);
4473
4474                 /* If the parent has default stripeEA, and client
4475                  * did not find it before sending create request,
4476                  * then MDT will return -EREMOTE, and client will
4477                  * retrieve the default stripeEA and re-create the
4478                  * sub directory.
4479                  *
4480                  * Note: if dah_eadata != NULL, it means creating the
4481                  * striped directory with specified stripeEA, then it
4482                  * should ignore the default stripeEA */
4483                 if (hint != NULL && hint->dah_eadata == NULL) {
4484                         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_STALE_DIR_LAYOUT))
4485                                 GOTO(out, rc = -EREMOTE);
4486
4487                         if (lo->ldo_dir_stripe_offset == -1) {
4488                                 /* child and parent should be in the same MDT */
4489                                 if (hint->dah_parent != NULL &&
4490                                     dt_object_remote(hint->dah_parent))
4491                                         GOTO(out, rc = -EREMOTE);
4492                         } else if (lo->ldo_dir_stripe_offset !=
4493                                    ss->ss_node_id) {
4494                                 struct lod_device *lod;
4495                                 struct lod_tgt_descs *ltd;
4496                                 struct lod_tgt_desc *tgt = NULL;
4497                                 bool found_mdt = false;
4498                                 int i;
4499
4500                                 lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
4501                                 ltd = &lod->lod_mdt_descs;
4502                                 cfs_foreach_bit(ltd->ltd_tgt_bitmap, i) {
4503                                         tgt = LTD_TGT(ltd, i);
4504                                         if (tgt->ltd_index ==
4505                                                 lo->ldo_dir_stripe_offset) {
4506                                                 found_mdt = true;
4507                                                 break;
4508                                         }
4509                                 }
4510
4511                                 /* If the MDT indicated by stripe_offset can be
4512                                  * found, then tell client to resend the create
4513                                  * request to the correct MDT, otherwise return
4514                                  * error to client */
4515                                 if (found_mdt)
4516                                         GOTO(out, rc = -EREMOTE);
4517                                 else
4518                                         GOTO(out, rc = -EINVAL);
4519                         }
4520                 }
4521
4522                 rc = lod_declare_dir_striping_create(env, dt, attr, dof, th);
4523         }
4524 out:
4525         /* failed to create striping or to set initial size, let's reset
4526          * config so that others don't get confused */
4527         if (rc)
4528                 lod_object_free_striping(env, lo);
4529         RETURN(rc);
4530 }
4531
4532 /**
4533  * Generate component ID for new created component.
4534  *
4535  * \param[in] lo                LOD object
4536  * \param[in] comp_idx          index of ldo_comp_entries
4537  *
4538  * \retval                      component ID on success
4539  * \retval                      LCME_ID_INVAL on failure
4540  */
4541 static __u32 lod_gen_component_id(struct lod_object *lo,
4542                                   int mirror_id, int comp_idx)
4543 {
4544         struct lod_layout_component *lod_comp;
4545         __u32   id, start, end;
4546         int     i;
4547
4548         LASSERT(lo->ldo_comp_entries[comp_idx].llc_id == LCME_ID_INVAL);
4549
4550         lod_obj_inc_layout_gen(lo);
4551         id = lo->ldo_layout_gen;
4552         if (likely(id <= SEQ_ID_MAX))
4553                 RETURN(pflr_id(mirror_id, id & SEQ_ID_MASK));
4554
4555         /* Layout generation wraps, need to check collisions. */
4556         start = id & SEQ_ID_MASK;
4557         end = SEQ_ID_MAX;
4558 again:
4559         for (id = start; id <= end; id++) {
4560                 for (i = 0; i < lo->ldo_comp_cnt; i++) {
4561                         lod_comp = &lo->ldo_comp_entries[i];
4562                         if (pflr_id(mirror_id, id) == lod_comp->llc_id)
4563                                 break;
4564                 }
4565                 /* Found the ununsed ID */
4566                 if (i == lo->ldo_comp_cnt)
4567                         RETURN(pflr_id(mirror_id, id));
4568         }
4569         if (end == LCME_ID_MAX) {
4570                 start = 1;
4571                 end = min(lo->ldo_layout_gen & LCME_ID_MASK,
4572                           (__u32)(LCME_ID_MAX - 1));
4573                 goto again;
4574         }
4575
4576         RETURN(LCME_ID_INVAL);
4577 }
4578
4579 /**
4580  * Creation of a striped regular object.
4581  *
4582  * The function is called to create the stripe objects for a regular
4583  * striped file. This can happen at the initial object creation or
4584  * when the caller asks LOD to do so using ->do_xattr_set() method
4585  * (so called late striping). Notice all the information are already
4586  * prepared in the form of the list of objects (ldo_stripe field).
4587  * This is done during declare phase.
4588  *
4589  * \param[in] env       execution environment
4590  * \param[in] dt        object
4591  * \param[in] attr      attributes the stripes will be created with
4592  * \param[in] dof       format of stripes (see OSD API description)
4593  * \param[in] th        transaction handle
4594  *
4595  * \retval              0 on success
4596  * \retval              negative if failed
4597  */
4598 int lod_striped_create(const struct lu_env *env, struct dt_object *dt,
4599                        struct lu_attr *attr, struct dt_object_format *dof,
4600                        struct thandle *th)
4601 {
4602         struct lod_layout_component     *lod_comp;
4603         struct lod_object       *lo = lod_dt_obj(dt);
4604         __u16   mirror_id;
4605         int     rc = 0, i, j;
4606         ENTRY;
4607
4608         LASSERT(lo->ldo_comp_cnt != 0 && lo->ldo_comp_entries != NULL);
4609
4610         mirror_id = lo->ldo_mirror_count > 1 ? 1 : 0;
4611
4612         /* create all underlying objects */
4613         for (i = 0; i < lo->ldo_comp_cnt; i++) {
4614                 lod_comp = &lo->ldo_comp_entries[i];
4615
4616                 if (lod_comp->llc_extent.e_start == 0 && i > 0) /* new mirror */
4617                         ++mirror_id;
4618
4619                 if (lod_comp->llc_id == LCME_ID_INVAL) {
4620                         lod_comp->llc_id = lod_gen_component_id(lo,
4621                                                                 mirror_id, i);
4622                         if (lod_comp->llc_id == LCME_ID_INVAL)
4623                                 GOTO(out, rc = -ERANGE);
4624                 }
4625
4626                 if (lod_comp_inited(lod_comp))
4627                         continue;
4628
4629                 if (lod_comp->llc_pattern & LOV_PATTERN_F_RELEASED)
4630                         lod_comp_set_init(lod_comp);
4631
4632                 if (lov_pattern(lod_comp->llc_pattern) == LOV_PATTERN_MDT)
4633                         lod_comp_set_init(lod_comp);
4634
4635                 if (lod_comp->llc_stripe == NULL)
4636                         continue;
4637
4638                 LASSERT(lod_comp->llc_stripe_count);
4639                 for (j = 0; j < lod_comp->llc_stripe_count; j++) {
4640                         struct dt_object *object = lod_comp->llc_stripe[j];
4641                         LASSERT(object != NULL);
4642                         rc = lod_sub_create(env, object, attr, NULL, dof, th);
4643                         if (rc)
4644                                 GOTO(out, rc);
4645                 }
4646                 lod_comp_set_init(lod_comp);
4647         }
4648
4649         rc = lod_fill_mirrors(lo);
4650         if (rc)
4651                 GOTO(out, rc);
4652
4653         rc = lod_generate_and_set_lovea(env, lo, th);
4654         if (rc)
4655                 GOTO(out, rc);
4656
4657         lo->ldo_comp_cached = 1;
4658         RETURN(0);
4659
4660 out:
4661         lod_object_free_striping(env, lo);
4662         RETURN(rc);
4663 }
4664
4665 /**
4666  * Implementation of dt_object_operations::do_create.
4667  *
4668  * If any of preceeding methods (like ->do_declare_create(),
4669  * ->do_ah_init(), etc) chose to create a striped object,
4670  * then this method will create the master and the stripes.
4671  *
4672  * \see dt_object_operations::do_create() in the API description for details.
4673  */
4674 static int lod_create(const struct lu_env *env, struct dt_object *dt,
4675                       struct lu_attr *attr, struct dt_allocation_hint *hint,
4676                       struct dt_object_format *dof, struct thandle *th)
4677 {
4678         int                 rc;
4679         ENTRY;
4680
4681         /* create local object */
4682         rc = lod_sub_create(env, dt_object_child(dt), attr, hint, dof, th);
4683         if (rc != 0)
4684                 RETURN(rc);
4685
4686         if (S_ISREG(dt->do_lu.lo_header->loh_attr) &&
4687             lod_obj_is_striped(dt) && dof->u.dof_reg.striped != 0) {
4688                 LASSERT(lod_dt_obj(dt)->ldo_comp_cached == 0);
4689                 rc = lod_striped_create(env, dt, attr, dof, th);
4690         }
4691
4692         RETURN(rc);
4693 }
4694
4695 static inline int
4696 lod_obj_stripe_destroy_cb(const struct lu_env *env, struct lod_object *lo,
4697                           struct dt_object *dt, struct thandle *th,
4698                           int comp_idx, int stripe_idx,
4699                           struct lod_obj_stripe_cb_data *data)
4700 {
4701         if (data->locd_declare)
4702                 return lod_sub_declare_destroy(env, dt, th);
4703         else if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_SPEOBJ) ||
4704                  stripe_idx == cfs_fail_val)
4705                 return lod_sub_destroy(env, dt, th);
4706         else
4707                 return 0;
4708 }
4709
4710 /**
4711  * Implementation of dt_object_operations::do_declare_destroy.
4712  *
4713  * If the object is a striped directory, then the function declares reference
4714  * removal from the master object (this is an index) to the stripes and declares
4715  * destroy of all the stripes. In all the cases, it declares an intention to
4716  * destroy the object itself.
4717  *
4718  * \see dt_object_operations::do_declare_destroy() in the API description
4719  * for details.
4720  */
4721 static int lod_declare_destroy(const struct lu_env *env, struct dt_object *dt,
4722                                struct thandle *th)
4723 {
4724         struct dt_object   *next = dt_object_child(dt);
4725         struct lod_object  *lo = lod_dt_obj(dt);
4726         struct lod_thread_info *info = lod_env_info(env);
4727         char               *stripe_name = info->lti_key;
4728         int                 rc, i;
4729         ENTRY;
4730
4731         /*
4732          * load striping information, notice we don't do this when object
4733          * is being initialized as we don't need this information till
4734          * few specific cases like destroy, chown
4735          */
4736         rc = lod_load_striping(env, lo);
4737         if (rc)
4738                 RETURN(rc);
4739
4740         /* declare destroy for all underlying objects */
4741         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
4742                 rc = next->do_ops->do_index_try(env, next,
4743                                                 &dt_directory_features);
4744                 if (rc != 0)
4745                         RETURN(rc);
4746
4747                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
4748                         rc = lod_sub_declare_ref_del(env, next, th);
4749                         if (rc != 0)
4750                                 RETURN(rc);
4751
4752                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
4753                                 PFID(lu_object_fid(&lo->ldo_stripe[i]->do_lu)),
4754                                 i);
4755                         rc = lod_sub_declare_delete(env, next,
4756                                         (const struct dt_key *)stripe_name, th);
4757                         if (rc != 0)
4758                                 RETURN(rc);
4759                 }
4760         }
4761
4762         /*
4763          * we declare destroy for the local object
4764          */
4765         rc = lod_sub_declare_destroy(env, next, th);
4766         if (rc)
4767                 RETURN(rc);
4768
4769         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ) ||
4770             OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ2))
4771                 RETURN(0);
4772
4773         if (!lod_obj_is_striped(dt))
4774                 RETURN(0);
4775
4776         /* declare destroy all striped objects */
4777         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
4778                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
4779                         if (lo->ldo_stripe[i] == NULL)
4780                                 continue;
4781
4782                         rc = lod_sub_declare_ref_del(env, lo->ldo_stripe[i],
4783                                                      th);
4784
4785                         rc = lod_sub_declare_destroy(env, lo->ldo_stripe[i],
4786                                                      th);
4787                         if (rc != 0)
4788                                 break;
4789                 }
4790         } else {
4791                 struct lod_obj_stripe_cb_data data = { { 0 } };
4792
4793                 data.locd_declare = true;
4794                 data.locd_stripe_cb = lod_obj_stripe_destroy_cb;
4795                 rc = lod_obj_for_each_stripe(env, lo, th, &data);
4796         }
4797
4798         RETURN(rc);
4799 }
4800
4801 /**
4802  * Implementation of dt_object_operations::do_destroy.
4803  *
4804  * If the object is a striped directory, then the function removes references
4805  * from the master object (this is an index) to the stripes and destroys all
4806  * the stripes. In all the cases, the function destroys the object itself.
4807  *
4808  * \see dt_object_operations::do_destroy() in the API description for details.
4809  */
4810 static int lod_destroy(const struct lu_env *env, struct dt_object *dt,
4811                        struct thandle *th)
4812 {
4813         struct dt_object  *next = dt_object_child(dt);
4814         struct lod_object *lo = lod_dt_obj(dt);
4815         struct lod_thread_info *info = lod_env_info(env);
4816         char               *stripe_name = info->lti_key;
4817         unsigned int       i;
4818         int                rc;
4819         ENTRY;
4820
4821         /* destroy sub-stripe of master object */
4822         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
4823                 rc = next->do_ops->do_index_try(env, next,
4824                                                 &dt_directory_features);
4825                 if (rc != 0)
4826                         RETURN(rc);
4827
4828                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
4829                         rc = lod_sub_ref_del(env, next, th);
4830                         if (rc != 0)
4831                                 RETURN(rc);
4832
4833                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
4834                                 PFID(lu_object_fid(&lo->ldo_stripe[i]->do_lu)),
4835                                 i);
4836
4837                         CDEBUG(D_INFO, DFID" delete stripe %s "DFID"\n",
4838                                PFID(lu_object_fid(&dt->do_lu)), stripe_name,
4839                                PFID(lu_object_fid(&lo->ldo_stripe[i]->do_lu)));
4840
4841                         rc = lod_sub_delete(env, next,
4842                                        (const struct dt_key *)stripe_name, th);
4843                         if (rc != 0)
4844                                 RETURN(rc);
4845                 }
4846         }
4847
4848         rc = lod_sub_destroy(env, next, th);
4849         if (rc != 0)
4850                 RETURN(rc);
4851
4852         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ) ||
4853             OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ2))
4854                 RETURN(0);
4855
4856         if (!lod_obj_is_striped(dt))
4857                 RETURN(0);
4858
4859         /* destroy all striped objects */
4860         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
4861                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
4862                         if (lo->ldo_stripe[i] == NULL)
4863                                 continue;
4864                         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_SPEOBJ) ||
4865                             i == cfs_fail_val) {
4866                                 dt_write_lock(env, lo->ldo_stripe[i],
4867                                               MOR_TGT_CHILD);
4868                                 rc = lod_sub_ref_del(env, lo->ldo_stripe[i],
4869                                                      th);
4870                                 dt_write_unlock(env, lo->ldo_stripe[i]);
4871                                 if (rc != 0)
4872                                         break;
4873
4874                                 rc = lod_sub_destroy(env, lo->ldo_stripe[i],
4875                                                      th);
4876                                 if (rc != 0)
4877                                         break;
4878                         }
4879                 }
4880         } else {
4881                 struct lod_obj_stripe_cb_data data = { { 0 } };
4882
4883                 data.locd_declare = false;
4884                 data.locd_stripe_cb = lod_obj_stripe_destroy_cb;
4885                 rc = lod_obj_for_each_stripe(env, lo, th, &data);
4886         }
4887
4888         RETURN(rc);
4889 }
4890
4891 /**
4892  * Implementation of dt_object_operations::do_declare_ref_add.
4893  *
4894  * \see dt_object_operations::do_declare_ref_add() in the API description
4895  * for details.
4896  */
4897 static int lod_declare_ref_add(const struct lu_env *env,
4898                                struct dt_object *dt, struct thandle *th)
4899 {
4900         return lod_sub_declare_ref_add(env, dt_object_child(dt), th);
4901 }
4902
4903 /**
4904  * Implementation of dt_object_operations::do_ref_add.
4905  *
4906  * \see dt_object_operations::do_ref_add() in the API description for details.
4907  */
4908 static int lod_ref_add(const struct lu_env *env,
4909                        struct dt_object *dt, struct thandle *th)
4910 {
4911         return lod_sub_ref_add(env, dt_object_child(dt), th);
4912 }
4913
4914 /**
4915  * Implementation of dt_object_operations::do_declare_ref_del.
4916  *
4917  * \see dt_object_operations::do_declare_ref_del() in the API description
4918  * for details.
4919  */
4920 static int lod_declare_ref_del(const struct lu_env *env,
4921                                struct dt_object *dt, struct thandle *th)
4922 {
4923         return lod_sub_declare_ref_del(env, dt_object_child(dt), th);
4924 }
4925
4926 /**
4927  * Implementation of dt_object_operations::do_ref_del
4928  *
4929  * \see dt_object_operations::do_ref_del() in the API description for details.
4930  */
4931 static int lod_ref_del(const struct lu_env *env,
4932                        struct dt_object *dt, struct thandle *th)
4933 {
4934         return lod_sub_ref_del(env, dt_object_child(dt), th);
4935 }
4936
4937 /**
4938  * Implementation of dt_object_operations::do_object_sync.
4939  *
4940  * \see dt_object_operations::do_object_sync() in the API description
4941  * for details.
4942  */
4943 static int lod_object_sync(const struct lu_env *env, struct dt_object *dt,
4944                            __u64 start, __u64 end)
4945 {
4946         return dt_object_sync(env, dt_object_child(dt), start, end);
4947 }
4948
4949 /**
4950  * Release LDLM locks on the stripes of a striped directory.
4951  *
4952  * Iterates over all the locks taken on the stripe objects and
4953  * cancel them.
4954  *
4955  * \param[in] env       execution environment
4956  * \param[in] dt        striped object
4957  * \param[in] einfo     lock description
4958  * \param[in] policy    data describing requested lock
4959  *
4960  * \retval              0 on success
4961  * \retval              negative if failed
4962  */
4963 static int lod_object_unlock_internal(const struct lu_env *env,
4964                                       struct dt_object *dt,
4965                                       struct ldlm_enqueue_info *einfo,
4966                                       union ldlm_policy_data *policy)
4967 {
4968         struct lustre_handle_array *slave_locks = einfo->ei_cbdata;
4969         int                     rc = 0;
4970         int                     i;
4971         ENTRY;
4972
4973         if (slave_locks == NULL)
4974                 RETURN(0);
4975
4976         for (i = 1; i < slave_locks->count; i++) {
4977                 if (lustre_handle_is_used(&slave_locks->handles[i]))
4978                         ldlm_lock_decref_and_cancel(&slave_locks->handles[i],
4979                                                     einfo->ei_mode);
4980         }
4981
4982         RETURN(rc);
4983 }
4984
4985 /**
4986  * Implementation of dt_object_operations::do_object_unlock.
4987  *
4988  * Used to release LDLM lock(s).
4989  *
4990  * \see dt_object_operations::do_object_unlock() in the API description
4991  * for details.
4992  */
4993 static int lod_object_unlock(const struct lu_env *env, struct dt_object *dt,
4994                              struct ldlm_enqueue_info *einfo,
4995                              union ldlm_policy_data *policy)
4996 {
4997         struct lod_object *lo = lod_dt_obj(dt);
4998         struct lustre_handle_array *slave_locks = einfo->ei_cbdata;
4999         int slave_locks_size;
5000         int i;
5001         ENTRY;
5002
5003         if (slave_locks == NULL)
5004                 RETURN(0);
5005
5006         LASSERT(S_ISDIR(dt->do_lu.lo_header->loh_attr));
5007         LASSERT(lo->ldo_dir_stripe_count > 1);
5008         /* Note: for remote lock for single stripe dir, MDT will cancel
5009          * the lock by lockh directly */
5010         LASSERT(!dt_object_remote(dt_object_child(dt)));
5011
5012         /* locks were unlocked in MDT layer */
5013         for (i = 1; i < slave_locks->count; i++) {
5014                 LASSERT(!lustre_handle_is_used(&slave_locks->handles[i]));
5015                 dt_invalidate(env, lo->ldo_stripe[i]);
5016         }
5017
5018         slave_locks_size = sizeof(*slave_locks) + slave_locks->count *
5019                            sizeof(slave_locks->handles[0]);
5020         OBD_FREE(slave_locks, slave_locks_size);
5021         einfo->ei_cbdata = NULL;
5022
5023         RETURN(0);
5024 }
5025
5026 /**
5027  * Implementation of dt_object_operations::do_object_lock.
5028  *
5029  * Used to get LDLM lock on the non-striped and striped objects.
5030  *
5031  * \see dt_object_operations::do_object_lock() in the API description
5032  * for details.
5033  */
5034 static int lod_object_lock(const struct lu_env *env,
5035                            struct dt_object *dt,
5036                            struct lustre_handle *lh,
5037                            struct ldlm_enqueue_info *einfo,
5038                            union ldlm_policy_data *policy)
5039 {
5040         struct lod_object       *lo = lod_dt_obj(dt);
5041         int                     rc = 0;
5042         int                     i;
5043         int                     slave_locks_size;
5044         struct lustre_handle_array *slave_locks = NULL;
5045         ENTRY;
5046
5047         /* remote object lock */
5048         if (!einfo->ei_enq_slave) {
5049                 LASSERT(dt_object_remote(dt));
5050                 return dt_object_lock(env, dt_object_child(dt), lh, einfo,
5051                                       policy);
5052         }
5053
5054         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr))
5055                 GOTO(out, rc = -ENOTDIR);
5056
5057         rc = lod_load_striping(env, lo);
5058         if (rc != 0)
5059                 GOTO(out, rc);
5060
5061         /* No stripes */
5062         if (lo->ldo_dir_stripe_count <= 1) {
5063                 /*
5064                  * NB, ei_cbdata stores pointer to slave locks, if no locks
5065                  * taken, make sure it's set to NULL, otherwise MDT will try to
5066                  * unlock them.
5067                  */
5068                 einfo->ei_cbdata = NULL;
5069                 GOTO(out, rc = 0);
5070         }
5071
5072         slave_locks_size = sizeof(*slave_locks) + lo->ldo_dir_stripe_count *
5073                            sizeof(slave_locks->handles[0]);
5074         /* Freed in lod_object_unlock */
5075         OBD_ALLOC(slave_locks, slave_locks_size);
5076         if (slave_locks == NULL)
5077                 GOTO(out, rc = -ENOMEM);
5078         slave_locks->count = lo->ldo_dir_stripe_count;
5079
5080         /* striped directory lock */
5081         for (i = 1; i < lo->ldo_dir_stripe_count; i++) {
5082                 struct lustre_handle    lockh;
5083                 struct ldlm_res_id      *res_id;
5084
5085                 res_id = &lod_env_info(env)->lti_res_id;
5086                 fid_build_reg_res_name(lu_object_fid(&lo->ldo_stripe[i]->do_lu),
5087                                        res_id);
5088                 einfo->ei_res_id = res_id;
5089
5090                 LASSERT(lo->ldo_stripe[i] != NULL);
5091                 if (likely(dt_object_remote(lo->ldo_stripe[i]))) {
5092                         rc = dt_object_lock(env, lo->ldo_stripe[i], &lockh,
5093                                             einfo, policy);
5094                 } else {
5095                         struct ldlm_namespace *ns = einfo->ei_namespace;
5096                         ldlm_blocking_callback blocking = einfo->ei_cb_local_bl;
5097                         ldlm_completion_callback completion = einfo->ei_cb_cp;
5098                         __u64   dlmflags = LDLM_FL_ATOMIC_CB;
5099
5100                         if (einfo->ei_mode == LCK_PW ||
5101                             einfo->ei_mode == LCK_EX)
5102                                 dlmflags |= LDLM_FL_COS_INCOMPAT;
5103
5104                         /* This only happens if there are mulitple stripes
5105                          * on the master MDT, i.e. except stripe0, there are
5106                          * other stripes on the Master MDT as well, Only
5107                          * happens in the test case right now. */
5108                         LASSERT(ns != NULL);
5109                         rc = ldlm_cli_enqueue_local(ns, res_id, LDLM_IBITS,
5110                                                     policy, einfo->ei_mode,
5111                                                     &dlmflags, blocking,
5112                                                     completion, NULL,
5113                                                     NULL, 0, LVB_T_NONE,
5114                                                     NULL, &lockh);
5115                 }
5116                 if (rc != 0)
5117                         break;
5118                 slave_locks->handles[i] = lockh;
5119         }
5120         einfo->ei_cbdata = slave_locks;
5121
5122         if (rc != 0 && slave_locks != NULL) {
5123                 lod_object_unlock_internal(env, dt, einfo, policy);
5124                 OBD_FREE(slave_locks, slave_locks_size);
5125         }
5126         EXIT;
5127 out:
5128         if (rc != 0)
5129                 einfo->ei_cbdata = NULL;
5130         RETURN(rc);
5131 }
5132
5133 /**
5134  * Implementation of dt_object_operations::do_invalidate.
5135  *
5136  * \see dt_object_operations::do_invalidate() in the API description for details
5137  */
5138 static int lod_invalidate(const struct lu_env *env, struct dt_object *dt)
5139 {
5140         return dt_invalidate(env, dt_object_child(dt));
5141 }
5142
5143 static int lod_layout_data_init(struct lod_thread_info *info, __u32 comp_cnt)
5144 {
5145         ENTRY;
5146
5147         /* clear memory region that will be used for layout change */
5148         memset(&info->lti_layout_attr, 0, sizeof(struct lu_attr));
5149         info->lti_count = 0;
5150
5151         if (info->lti_comp_size >= comp_cnt)
5152                 RETURN(0);
5153
5154         if (info->lti_comp_size > 0) {
5155                 OBD_FREE(info->lti_comp_idx,
5156                          info->lti_comp_size * sizeof(__u32));
5157                 info->lti_comp_size = 0;
5158         }
5159
5160         OBD_ALLOC(info->lti_comp_idx, comp_cnt * sizeof(__u32));
5161         if (!info->lti_comp_idx)
5162                 RETURN(-ENOMEM);
5163
5164         info->lti_comp_size = comp_cnt;
5165         RETURN(0);
5166 }
5167
5168 static int lod_declare_instantiate_components(const struct lu_env *env,
5169                 struct lod_object *lo, struct thandle *th)
5170 {
5171         struct lod_thread_info *info = lod_env_info(env);
5172         struct ost_pool *inuse = &info->lti_inuse_osts;
5173         int i;
5174         int rc = 0;
5175         ENTRY;
5176
5177         LASSERT(info->lti_count < lo->ldo_comp_cnt);
5178         if (info->lti_count > 0) {
5179                 /* Prepare inuse array for composite file */
5180                 rc = lod_prepare_inuse(env, lo);
5181                 if (rc)
5182                         RETURN(rc);
5183         }
5184
5185         for (i = 0; i < info->lti_count; i++) {
5186                 rc = lod_qos_prep_create(env, lo, NULL, th,
5187                                          info->lti_comp_idx[i], inuse);
5188                 if (rc)
5189                         break;
5190         }
5191
5192         if (!rc) {
5193                 info->lti_buf.lb_len = lod_comp_md_size(lo, false);
5194                 rc = lod_sub_declare_xattr_set(env, lod_object_child(lo),
5195                                 &info->lti_buf, XATTR_NAME_LOV, 0, th);
5196         }
5197
5198         RETURN(rc);
5199 }
5200
5201 static int lod_declare_update_plain(const struct lu_env *env,
5202                 struct lod_object *lo, struct layout_intent *layout,
5203                 const struct lu_buf *buf, struct thandle *th)
5204 {
5205         struct lod_thread_info *info = lod_env_info(env);
5206         struct lod_device *d = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
5207         struct lod_layout_component *lod_comp;
5208         struct lov_comp_md_v1 *comp_v1 = NULL;
5209         bool replay = false;
5210         int i, rc;
5211         ENTRY;
5212
5213         LASSERT(lo->ldo_flr_state == LCM_FL_NOT_FLR);
5214
5215         /*
5216          * In case the client is passing lovea, which only happens during
5217          * the replay of layout intent write RPC for now, we may need to
5218          * parse the lovea and apply new layout configuration.
5219          */
5220         if (buf && buf->lb_len)  {
5221                 struct lov_user_md_v1 *v1 = buf->lb_buf;
5222
5223                 if (v1->lmm_magic != (LOV_MAGIC_DEFINED | LOV_MAGIC_COMP_V1) &&
5224                     v1->lmm_magic != __swab32(LOV_MAGIC_DEFINED |
5225                                               LOV_MAGIC_COMP_V1)) {
5226                         CERROR("%s: the replay buffer of layout extend "
5227                                "(magic %#x) does not contain expected "
5228                                "composite layout.\n",
5229                                lod2obd(d)->obd_name, v1->lmm_magic);
5230                         GOTO(out, rc = -EINVAL);
5231                 }
5232
5233                 lod_object_free_striping(env, lo);
5234                 rc = lod_use_defined_striping(env, lo, buf);
5235                 if (rc)
5236                         GOTO(out, rc);
5237
5238                 rc = lod_get_lov_ea(env, lo);
5239                 if (rc <= 0)
5240                         GOTO(out, rc);
5241                 /* old on-disk EA is stored in info->lti_buf */
5242                 comp_v1 = (struct lov_comp_md_v1 *)info->lti_buf.lb_buf;
5243                 replay = true;
5244         } else {
5245                 /* non replay path */
5246                 rc = lod_load_striping_locked(env, lo);
5247                 if (rc)
5248                         GOTO(out, rc);
5249         }
5250
5251         /* Make sure defined layout covers the requested write range. */
5252         lod_comp = &lo->ldo_comp_entries[lo->ldo_comp_cnt - 1];
5253         if (lo->ldo_comp_cnt > 1 &&
5254             lod_comp->llc_extent.e_end != OBD_OBJECT_EOF &&
5255             lod_comp->llc_extent.e_end < layout->li_extent.e_end) {
5256                 CDEBUG(replay ? D_ERROR : D_LAYOUT,
5257                        "%s: the defined layout [0, %#llx) does not covers "
5258                        "the write range "DEXT"\n",
5259                        lod2obd(d)->obd_name, lod_comp->llc_extent.e_end,
5260                        PEXT(&layout->li_extent));
5261                 GOTO(out, rc = -EINVAL);
5262         }
5263
5264         CDEBUG(D_LAYOUT, "%s: "DFID": instantiate components "DEXT"\n",
5265                lod2obd(d)->obd_name, PFID(lod_object_fid(lo)),
5266                PEXT(&layout->li_extent));
5267
5268         /*
5269          * Iterate ld->ldo_comp_entries, find the component whose extent under
5270          * the write range and not instantianted.
5271          */
5272         for (i = 0; i < lo->ldo_comp_cnt; i++) {
5273                 lod_comp = &lo->ldo_comp_entries[i];
5274
5275                 if (lod_comp->llc_extent.e_start >= layout->li_extent.e_end)
5276                         break;
5277
5278                 if (!replay) {
5279                         if (lod_comp_inited(lod_comp))
5280                                 continue;
5281                 } else {
5282                         /**
5283                          * In replay path, lod_comp is the EA passed by
5284                          * client replay buffer,  comp_v1 is the pre-recovery
5285                          * on-disk EA, we'd sift out those components which
5286                          * were init-ed in the on-disk EA.
5287                          */
5288                         if (le32_to_cpu(comp_v1->lcm_entries[i].lcme_flags) &
5289                             LCME_FL_INIT)
5290                                 continue;
5291                 }
5292                 /*
5293                  * this component hasn't instantiated in normal path, or during
5294                  * replay it needs replay the instantiation.
5295                  */
5296
5297                 /* A released component is being extended */
5298                 if (lod_comp->llc_pattern & LOV_PATTERN_F_RELEASED)
5299                         GOTO(out, rc = -EINVAL);
5300
5301                 LASSERT(info->lti_comp_idx != NULL);
5302                 info->lti_comp_idx[info->lti_count++] = i;
5303         }
5304
5305         if (info->lti_count == 0)
5306                 RETURN(-EALREADY);
5307
5308         lod_obj_inc_layout_gen(lo);
5309         rc = lod_declare_instantiate_components(env, lo, th);
5310 out:
5311         if (rc)
5312                 lod_object_free_striping(env, lo);
5313         RETURN(rc);
5314 }
5315
5316 #define lod_foreach_mirror_comp(comp, lo, mirror_idx)                      \
5317 for (comp = &lo->ldo_comp_entries[lo->ldo_mirrors[mirror_idx].lme_start];  \
5318      comp <= &lo->ldo_comp_entries[lo->ldo_mirrors[mirror_idx].lme_end];   \
5319      comp++)
5320
5321 static inline int lod_comp_index(struct lod_object *lo,
5322                                  struct lod_layout_component *lod_comp)
5323 {
5324         LASSERT(lod_comp >= lo->ldo_comp_entries &&
5325                 lod_comp <= &lo->ldo_comp_entries[lo->ldo_comp_cnt - 1]);
5326
5327         return lod_comp - lo->ldo_comp_entries;
5328 }
5329
5330 /**
5331  * Stale other mirrors by writing extent.
5332  */
5333 static void lod_stale_components(struct lod_object *lo, int primary,
5334                                  struct lu_extent *extent)
5335 {
5336         struct lod_layout_component *pri_comp, *lod_comp;
5337         int i;
5338
5339         /* The writing extent decides which components in the primary
5340          * are affected... */
5341         lod_foreach_mirror_comp(pri_comp, lo, primary) {
5342                 if (!lu_extent_is_overlapped(extent, &pri_comp->llc_extent))
5343                         continue;
5344
5345                 for (i = 0; i < lo->ldo_mirror_count; i++) {
5346                         if (i == primary)
5347                                 continue;
5348
5349                         /* ... and then stale other components that are
5350                          * overlapping with primary components */
5351                         lod_foreach_mirror_comp(lod_comp, lo, i) {
5352                                 if (!lu_extent_is_overlapped(
5353                                                         &pri_comp->llc_extent,
5354                                                         &lod_comp->llc_extent))
5355                                         continue;
5356
5357                                 CDEBUG(D_LAYOUT, "stale: %u / %u\n",
5358                                       i, lod_comp_index(lo, lod_comp));
5359
5360                                 lod_comp->llc_flags |= LCME_FL_STALE;
5361                                 lo->ldo_mirrors[i].lme_stale = 1;
5362                         }
5363                 }
5364         }
5365 }
5366
5367 static int lod_declare_update_rdonly(const struct lu_env *env,
5368                 struct lod_object *lo, struct md_layout_change *mlc,
5369                 struct thandle *th)
5370 {
5371         struct lod_thread_info *info = lod_env_info(env);
5372         struct lu_attr *layout_attr = &info->lti_layout_attr;
5373         struct lod_layout_component *lod_comp;
5374         struct layout_intent *layout = mlc->mlc_intent;
5375         struct lu_extent extent = layout->li_extent;
5376         unsigned int seq = 0;
5377         int picked;
5378         int i;
5379         int rc;
5380         ENTRY;
5381
5382         LASSERT(mlc->mlc_opc == MD_LAYOUT_WRITE);
5383         LASSERT(lo->ldo_flr_state == LCM_FL_RDONLY);
5384         LASSERT(lo->ldo_mirror_count > 0);
5385
5386         CDEBUG(D_LAYOUT, DFID": trying to write :"DEXT"\n",
5387                PFID(lod_object_fid(lo)), PEXT(&extent));
5388
5389         if (OBD_FAIL_CHECK(OBD_FAIL_FLR_RANDOM_PICK_MIRROR)) {
5390                 get_random_bytes(&seq, sizeof(seq));
5391                 seq %= lo->ldo_mirror_count;
5392         }
5393
5394         /**
5395          * Pick a mirror as the primary.
5396          * Now it only picks the first mirror, this algo can be
5397          * revised later after knowing the topology of cluster or
5398          * the availability of OSTs.
5399          */
5400         for (picked = -1, i = 0; i < lo->ldo_mirror_count; i++) {
5401                 int index = (i + seq) % lo->ldo_mirror_count;
5402
5403                 if (!lo->ldo_mirrors[index].lme_stale) {
5404                         picked = index;
5405                         break;
5406                 }
5407         }
5408         if (picked < 0) /* failed to pick a primary */
5409                 RETURN(-ENODATA);
5410
5411         CDEBUG(D_LAYOUT, DFID": picked mirror %u as primary\n",
5412                PFID(lod_object_fid(lo)), lo->ldo_mirrors[picked].lme_id);
5413
5414         /* stale overlapping components from other mirrors */
5415         lod_stale_components(lo, picked, &extent);
5416
5417         /* instantiate components for the picked mirror, start from 0 */
5418         extent = (struct lu_extent) { 0, layout->li_extent.e_end };
5419         lod_foreach_mirror_comp(lod_comp, lo, picked) {
5420                 if (!lu_extent_is_overlapped(&extent,
5421                                              &lod_comp->llc_extent))
5422                         break;
5423
5424                 if (lod_comp_inited(lod_comp))
5425                         continue;
5426
5427                 CDEBUG(D_LAYOUT, "instantiate: %u / %u\n",
5428                        i, lod_comp_index(lo, lod_comp));
5429
5430                 info->lti_comp_idx[info->lti_count++] =
5431                                                 lod_comp_index(lo, lod_comp);
5432         }
5433
5434         lo->ldo_flr_state = LCM_FL_WRITE_PENDING;
5435
5436         /* Reset the layout version once it's becoming too large.
5437          * This way it can make sure that the layout version is
5438          * monotonously increased in this writing era. */
5439         lod_obj_inc_layout_gen(lo);
5440         if (lo->ldo_layout_gen > (LCME_ID_MAX >> 1)) {
5441                 __u32 layout_version;
5442
5443                 cfs_get_random_bytes(&layout_version, sizeof(layout_version));
5444                 lo->ldo_layout_gen = layout_version & 0xffff;
5445         }
5446
5447         rc = lod_declare_instantiate_components(env, lo, th);
5448         if (rc)
5449                 GOTO(out, rc);
5450
5451         layout_attr->la_valid = LA_LAYOUT_VERSION;
5452         layout_attr->la_layout_version = 0; /* set current version */
5453         rc = lod_declare_attr_set(env, &lo->ldo_obj, layout_attr, th);
5454         if (rc)
5455                 GOTO(out, rc);
5456
5457 out:
5458         if (rc)
5459                 lod_object_free_striping(env, lo);
5460         RETURN(rc);
5461 }
5462
5463 static int lod_declare_update_write_pending(const struct lu_env *env,
5464                 struct lod_object *lo, struct md_layout_change *mlc,
5465                 struct thandle *th)
5466 {
5467         struct lod_thread_info *info = lod_env_info(env);
5468         struct lu_attr *layout_attr = &info->lti_layout_attr;
5469         struct lod_layout_component *lod_comp;
5470         struct lu_extent extent = { 0 };
5471         int primary = -1;
5472         int i;
5473         int rc;
5474         ENTRY;
5475
5476         LASSERT(lo->ldo_flr_state == LCM_FL_WRITE_PENDING);
5477         LASSERT(mlc->mlc_opc == MD_LAYOUT_WRITE ||
5478                 mlc->mlc_opc == MD_LAYOUT_RESYNC);
5479
5480         /* look for the primary mirror */
5481         for (i = 0; i < lo->ldo_mirror_count; i++) {
5482                 if (lo->ldo_mirrors[i].lme_stale)
5483                         continue;
5484
5485                 LASSERTF(primary < 0, DFID " has multiple primary: %u / %u",
5486                          PFID(lod_object_fid(lo)),
5487                          lo->ldo_mirrors[i].lme_id,
5488                          lo->ldo_mirrors[primary].lme_id);
5489
5490                 primary = i;
5491         }
5492         if (primary < 0) {
5493                 CERROR(DFID ": doesn't have a primary mirror\n",
5494                        PFID(lod_object_fid(lo)));
5495                 GOTO(out, rc = -ENODATA);
5496         }
5497
5498         CDEBUG(D_LAYOUT, DFID": found primary %u\n",
5499                PFID(lod_object_fid(lo)), lo->ldo_mirrors[primary].lme_id);
5500
5501         LASSERT(!lo->ldo_mirrors[primary].lme_stale);
5502
5503         /* for LAYOUT_WRITE opc, it has to do the following operations:
5504          * 1. stale overlapping componets from stale mirrors;
5505          * 2. instantiate components of the primary mirror;
5506          * 3. transfter layout version to all objects of the primary;
5507          *
5508          * for LAYOUT_RESYNC opc, it will do:
5509          * 1. instantiate components of all stale mirrors;
5510          * 2. transfer layout version to all objects to close write era. */
5511
5512         if (mlc->mlc_opc == MD_LAYOUT_WRITE) {
5513                 LASSERT(mlc->mlc_intent != NULL);
5514
5515                 extent = mlc->mlc_intent->li_extent;
5516
5517                 CDEBUG(D_LAYOUT, DFID": intent to write: "DEXT"\n",
5518                        PFID(lod_object_fid(lo)), PEXT(&extent));
5519
5520                 /* 1. stale overlapping components */
5521                 lod_stale_components(lo, primary, &extent);
5522
5523                 /* 2. find out the components need instantiating.
5524                  * instantiate [0, mlc->mlc_intent->e_end) */
5525                 extent.e_start = 0;
5526                 lod_foreach_mirror_comp(lod_comp, lo, primary) {
5527                         if (!lu_extent_is_overlapped(&extent,
5528                                                      &lod_comp->llc_extent))
5529                                 break;
5530
5531                         if (lod_comp_inited(lod_comp))
5532                                 continue;
5533
5534                         CDEBUG(D_LAYOUT, "write instantiate %d / %d\n",
5535                                primary, lod_comp_index(lo, lod_comp));
5536                         info->lti_comp_idx[info->lti_count++] =
5537                                                 lod_comp_index(lo, lod_comp);
5538                 }
5539         } else { /* MD_LAYOUT_RESYNC */
5540                 /* figure out the components that have been instantiated in
5541                  * in primary to decide what components should be instantiated
5542                  * in stale mirrors */
5543                 lod_foreach_mirror_comp(lod_comp, lo, primary) {
5544                         if (!lod_comp_inited(lod_comp))
5545                                 break;
5546
5547                         extent.e_end = lod_comp->llc_extent.e_end;
5548                 }
5549
5550                 CDEBUG(D_LAYOUT,
5551                        DFID": instantiate all stale components in "DEXT"\n",
5552                        PFID(lod_object_fid(lo)), PEXT(&extent));
5553
5554                 /* 1. instantiate all components within this extent, even
5555                  * non-stale components so that it won't need to instantiate
5556                  * those components for mirror truncate later. */
5557                 for (i = 0; i < lo->ldo_mirror_count; i++) {
5558                         if (primary == i)
5559                                 continue;
5560
5561                         LASSERTF(lo->ldo_mirrors[i].lme_stale,
5562                                  "both %d and %d are primary\n", i, primary);
5563
5564                         lod_foreach_mirror_comp(lod_comp, lo, i) {
5565                                 if (!lu_extent_is_overlapped(&extent,
5566                                                         &lod_comp->llc_extent))
5567                                         break;
5568
5569                                 if (lod_comp_inited(lod_comp))
5570                                         continue;
5571
5572                                 CDEBUG(D_LAYOUT, "resync instantiate %d / %d\n",
5573                                        i, lod_comp_index(lo, lod_comp));
5574
5575                                 info->lti_comp_idx[info->lti_count++] =
5576                                                 lod_comp_index(lo, lod_comp);
5577                         }
5578                 }
5579
5580                 /* change the file state to SYNC_PENDING */
5581                 lo->ldo_flr_state = LCM_FL_SYNC_PENDING;
5582         }
5583
5584         rc = lod_declare_instantiate_components(env, lo, th);
5585         if (rc)
5586                 GOTO(out, rc);
5587
5588         /* 3. transfer layout version to OST objects.
5589          * transfer new layout version to OST objects so that stale writes
5590          * can be denied. It also ends an era of writing by setting
5591          * LU_LAYOUT_RESYNC. Normal client can never use this bit to
5592          * send write RPC; only resync RPCs could do it. */
5593         layout_attr->la_valid = LA_LAYOUT_VERSION;
5594         layout_attr->la_layout_version = 0; /* set current version */
5595         if (mlc->mlc_opc == MD_LAYOUT_RESYNC)
5596                 layout_attr->la_layout_version = LU_LAYOUT_RESYNC;
5597         rc = lod_declare_attr_set(env, &lo->ldo_obj, layout_attr, th);
5598         if (rc)
5599                 GOTO(out, rc);
5600
5601         lod_obj_inc_layout_gen(lo);
5602 out:
5603         if (rc)
5604                 lod_object_free_striping(env, lo);
5605         RETURN(rc);
5606 }
5607
5608 static int lod_declare_update_sync_pending(const struct lu_env *env,
5609                 struct lod_object *lo, struct md_layout_change *mlc,
5610                 struct thandle *th)
5611 {
5612         struct lod_thread_info  *info = lod_env_info(env);
5613         unsigned sync_components = 0;
5614         unsigned resync_components = 0;
5615         int i;
5616         int rc;
5617         ENTRY;
5618
5619         LASSERT(lo->ldo_flr_state == LCM_FL_SYNC_PENDING);
5620         LASSERT(mlc->mlc_opc == MD_LAYOUT_RESYNC_DONE ||
5621                 mlc->mlc_opc == MD_LAYOUT_WRITE);
5622
5623         CDEBUG(D_LAYOUT, DFID ": received op %d in sync pending\n",
5624                PFID(lod_object_fid(lo)), mlc->mlc_opc);
5625
5626         if (mlc->mlc_opc == MD_LAYOUT_WRITE) {
5627                 CDEBUG(D_LAYOUT, DFID": cocurrent write to sync pending\n",
5628                        PFID(lod_object_fid(lo)));
5629
5630                 lo->ldo_flr_state = LCM_FL_WRITE_PENDING;
5631                 return lod_declare_update_write_pending(env, lo, mlc, th);
5632         }
5633
5634         /* MD_LAYOUT_RESYNC_DONE */
5635
5636         for (i = 0; i < lo->ldo_comp_cnt; i++) {
5637                 struct lod_layout_component *lod_comp;
5638                 int j;
5639
5640                 lod_comp = &lo->ldo_comp_entries[i];
5641
5642                 if (!(lod_comp->llc_flags & LCME_FL_STALE)) {
5643                         sync_components++;
5644                         continue;
5645                 }
5646
5647                 for (j = 0; j < mlc->mlc_resync_count; j++) {
5648                         if (lod_comp->llc_id != mlc->mlc_resync_ids[j])
5649                                 continue;
5650
5651                         mlc->mlc_resync_ids[j] = LCME_ID_INVAL;
5652                         lod_comp->llc_flags &= ~LCME_FL_STALE;
5653                         resync_components++;
5654                         break;
5655                 }
5656         }
5657
5658         /* valid check */
5659         for (i = 0; i < mlc->mlc_resync_count; i++) {
5660                 if (mlc->mlc_resync_ids[i] == LCME_ID_INVAL)
5661                         continue;
5662
5663                 CDEBUG(D_LAYOUT, DFID": lcme id %u (%d / %zd) not exist "
5664                        "or already synced\n", PFID(lod_object_fid(lo)),
5665                        mlc->mlc_resync_ids[i], i, mlc->mlc_resync_count);
5666                 GOTO(out, rc = -EINVAL);
5667         }
5668
5669         if (!sync_components || !resync_components) {
5670                 CDEBUG(D_LAYOUT, DFID": no mirror in sync or resync\n",
5671                        PFID(lod_object_fid(lo)));
5672
5673                 /* tend to return an error code here to prevent
5674                  * the MDT from setting SoM attribute */
5675                 GOTO(out, rc = -EINVAL);
5676         }
5677
5678         CDEBUG(D_LAYOUT, DFID": resynced %u/%zu components\n",
5679                PFID(lod_object_fid(lo)),
5680                resync_components, mlc->mlc_resync_count);
5681
5682         lo->ldo_flr_state = LCM_FL_RDONLY;
5683         lod_obj_inc_layout_gen(lo);
5684
5685         info->lti_buf.lb_len = lod_comp_md_size(lo, false);
5686         rc = lod_sub_declare_xattr_set(env, lod_object_child(lo),
5687                                        &info->lti_buf, XATTR_NAME_LOV, 0, th);
5688         EXIT;
5689
5690 out:
5691         if (rc)
5692                 lod_object_free_striping(env, lo);
5693         RETURN(rc);
5694 }
5695
5696 static int lod_declare_layout_change(const struct lu_env *env,
5697                 struct dt_object *dt, struct md_layout_change *mlc,
5698                 struct thandle *th)
5699 {
5700         struct lod_thread_info  *info = lod_env_info(env);
5701         struct lod_object *lo = lod_dt_obj(dt);
5702         int rc;
5703         ENTRY;
5704
5705         if (!S_ISREG(dt->do_lu.lo_header->loh_attr) || !dt_object_exists(dt) ||
5706             dt_object_remote(dt_object_child(dt)))
5707                 RETURN(-EINVAL);
5708
5709         lod_write_lock(env, dt, 0);
5710         rc = lod_load_striping_locked(env, lo);
5711         if (rc)
5712                 GOTO(out, rc);
5713
5714         LASSERT(lo->ldo_comp_cnt > 0);
5715
5716         rc = lod_layout_data_init(info, lo->ldo_comp_cnt);
5717         if (rc)
5718                 GOTO(out, rc);
5719
5720         switch (lo->ldo_flr_state) {
5721         case LCM_FL_NOT_FLR:
5722                 rc = lod_declare_update_plain(env, lo, mlc->mlc_intent,
5723                                               &mlc->mlc_buf, th);
5724                 break;
5725         case LCM_FL_RDONLY:
5726                 rc = lod_declare_update_rdonly(env, lo, mlc, th);
5727                 break;
5728         case LCM_FL_WRITE_PENDING:
5729                 rc = lod_declare_update_write_pending(env, lo, mlc, th);
5730                 break;
5731         case LCM_FL_SYNC_PENDING:
5732                 rc = lod_declare_update_sync_pending(env, lo, mlc, th);
5733                 break;
5734         default:
5735                 rc = -ENOTSUPP;
5736                 break;
5737         }
5738 out:
5739         dt_write_unlock(env, dt);
5740         RETURN(rc);
5741 }
5742
5743 /**
5744  * Instantiate layout component objects which covers the intent write offset.
5745  */
5746 static int lod_layout_change(const struct lu_env *env, struct dt_object *dt,
5747                              struct md_layout_change *mlc, struct thandle *th)
5748 {
5749         struct lu_attr *attr = &lod_env_info(env)->lti_attr;
5750         struct lu_attr *layout_attr = &lod_env_info(env)->lti_layout_attr;
5751         struct lod_object *lo = lod_dt_obj(dt);
5752         int rc;
5753
5754         rc = lod_striped_create(env, dt, attr, NULL, th);
5755         if (!rc && layout_attr->la_valid & LA_LAYOUT_VERSION) {
5756                 layout_attr->la_layout_version |= lo->ldo_layout_gen;
5757                 rc = lod_attr_set(env, dt, layout_attr, th);
5758         }
5759
5760         return rc;
5761 }
5762
5763 struct dt_object_operations lod_obj_ops = {
5764         .do_read_lock           = lod_read_lock,
5765         .do_write_lock          = lod_write_lock,
5766         .do_read_unlock         = lod_read_unlock,
5767         .do_write_unlock        = lod_write_unlock,
5768         .do_write_locked        = lod_write_locked,
5769         .do_attr_get            = lod_attr_get,
5770         .do_declare_attr_set    = lod_declare_attr_set,
5771         .do_attr_set            = lod_attr_set,
5772         .do_xattr_get           = lod_xattr_get,
5773         .do_declare_xattr_set   = lod_declare_xattr_set,
5774         .do_xattr_set           = lod_xattr_set,
5775         .do_declare_xattr_del   = lod_declare_xattr_del,
5776         .do_xattr_del           = lod_xattr_del,
5777         .do_xattr_list          = lod_xattr_list,
5778         .do_ah_init             = lod_ah_init,
5779         .do_declare_create      = lod_declare_create,
5780         .do_create              = lod_create,
5781         .do_declare_destroy     = lod_declare_destroy,
5782         .do_destroy             = lod_destroy,
5783         .do_index_try           = lod_index_try,
5784         .do_declare_ref_add     = lod_declare_ref_add,
5785         .do_ref_add             = lod_ref_add,
5786         .do_declare_ref_del     = lod_declare_ref_del,
5787         .do_ref_del             = lod_ref_del,
5788         .do_object_sync         = lod_object_sync,
5789         .do_object_lock         = lod_object_lock,
5790         .do_object_unlock       = lod_object_unlock,
5791         .do_invalidate          = lod_invalidate,
5792         .do_declare_layout_change = lod_declare_layout_change,
5793         .do_layout_change       = lod_layout_change,
5794 };
5795
5796 /**
5797  * Implementation of dt_body_operations::dbo_read.
5798  *
5799  * \see dt_body_operations::dbo_read() in the API description for details.
5800  */
5801 static ssize_t lod_read(const struct lu_env *env, struct dt_object *dt,
5802                         struct lu_buf *buf, loff_t *pos)
5803 {
5804         struct dt_object *next = dt_object_child(dt);
5805
5806         LASSERT(S_ISREG(dt->do_lu.lo_header->loh_attr) ||
5807                 S_ISLNK(dt->do_lu.lo_header->loh_attr));
5808         return next->do_body_ops->dbo_read(env, next, buf, pos);
5809 }
5810
5811 /**
5812  * Implementation of dt_body_operations::dbo_declare_write.
5813  *
5814  * \see dt_body_operations::dbo_declare_write() in the API description
5815  * for details.
5816  */
5817 static ssize_t lod_declare_write(const struct lu_env *env,
5818                                  struct dt_object *dt,
5819                                  const struct lu_buf *buf, loff_t pos,
5820                                  struct thandle *th)
5821 {
5822         return lod_sub_declare_write(env, dt_object_child(dt), buf, pos, th);
5823 }
5824
5825 /**
5826  * Implementation of dt_body_operations::dbo_write.
5827  *
5828  * \see dt_body_operations::dbo_write() in the API description for details.
5829  */
5830 static ssize_t lod_write(const struct lu_env *env, struct dt_object *dt,
5831                          const struct lu_buf *buf, loff_t *pos,
5832                          struct thandle *th, int iq)
5833 {
5834         LASSERT(S_ISREG(dt->do_lu.lo_header->loh_attr) ||
5835                 S_ISLNK(dt->do_lu.lo_header->loh_attr));
5836         return lod_sub_write(env, dt_object_child(dt), buf, pos, th, iq);
5837 }
5838
5839 static int lod_declare_punch(const struct lu_env *env, struct dt_object *dt,
5840                              __u64 start, __u64 end, struct thandle *th)
5841 {
5842         if (dt_object_remote(dt))
5843                 return -ENOTSUPP;
5844
5845         return lod_sub_declare_punch(env, dt_object_child(dt), start, end, th);
5846 }
5847
5848 static int lod_punch(const struct lu_env *env, struct dt_object *dt,
5849                      __u64 start, __u64 end, struct thandle *th)
5850 {
5851         if (dt_object_remote(dt))
5852                 return -ENOTSUPP;
5853
5854         LASSERT(S_ISREG(dt->do_lu.lo_header->loh_attr));
5855         return lod_sub_punch(env, dt_object_child(dt), start, end, th);
5856 }
5857
5858 /*
5859  * different type of files use the same body_ops because object may be created
5860  * in OUT, where there is no chance to set correct body_ops for each type, so
5861  * body_ops themselves will check file type inside, see lod_read/write/punch for
5862  * details.
5863  */
5864 const struct dt_body_operations lod_body_ops = {
5865         .dbo_read               = lod_read,
5866         .dbo_declare_write      = lod_declare_write,
5867         .dbo_write              = lod_write,
5868         .dbo_declare_punch      = lod_declare_punch,
5869         .dbo_punch              = lod_punch,
5870 };
5871
5872 /**
5873  * Implementation of lu_object_operations::loo_object_init.
5874  *
5875  * The function determines the type and the index of the target device using
5876  * sequence of the object's FID. Then passes control down to the
5877  * corresponding device:
5878  *  OSD for the local objects, OSP for remote
5879  *
5880  * \see lu_object_operations::loo_object_init() in the API description
5881  * for details.
5882  */
5883 static int lod_object_init(const struct lu_env *env, struct lu_object *lo,
5884                            const struct lu_object_conf *conf)
5885 {
5886         struct lod_device       *lod    = lu2lod_dev(lo->lo_dev);
5887         struct lu_device        *cdev   = NULL;
5888         struct lu_object        *cobj;
5889         struct lod_tgt_descs    *ltd    = NULL;
5890         struct lod_tgt_desc     *tgt;
5891         u32                      idx    = 0;
5892         int                      type   = LU_SEQ_RANGE_ANY;
5893         int                      rc;
5894         ENTRY;
5895
5896         rc = lod_fld_lookup(env, lod, lu_object_fid(lo), &idx, &type);
5897         if (rc != 0) {
5898                 /* Note: Sometimes, it will Return EAGAIN here, see
5899                  * ptrlpc_import_delay_req(), which might confuse
5900                  * lu_object_find_at() and make it wait there incorrectly.
5901                  * so we convert it to EIO here.*/
5902                 if (rc == -EAGAIN)
5903                         rc = -EIO;
5904
5905                 RETURN(rc);
5906         }
5907
5908         if (type == LU_SEQ_RANGE_MDT &&
5909             idx == lu_site2seq(lo->lo_dev->ld_site)->ss_node_id) {
5910                 cdev = &lod->lod_child->dd_lu_dev;
5911         } else if (type == LU_SEQ_RANGE_MDT) {
5912                 ltd = &lod->lod_mdt_descs;
5913                 lod_getref(ltd);
5914         } else if (type == LU_SEQ_RANGE_OST) {
5915                 ltd = &lod->lod_ost_descs;
5916                 lod_getref(ltd);
5917         } else {
5918                 LBUG();
5919         }
5920
5921         if (ltd != NULL) {
5922                 if (ltd->ltd_tgts_size > idx &&
5923                     cfs_bitmap_check(ltd->ltd_tgt_bitmap, idx)) {
5924                         tgt = LTD_TGT(ltd, idx);
5925
5926                         LASSERT(tgt != NULL);
5927                         LASSERT(tgt->ltd_tgt != NULL);
5928
5929                         cdev = &(tgt->ltd_tgt->dd_lu_dev);
5930                 }
5931                 lod_putref(lod, ltd);
5932         }
5933
5934         if (unlikely(cdev == NULL))
5935                 RETURN(-ENOENT);
5936
5937         cobj = cdev->ld_ops->ldo_object_alloc(env, lo->lo_header, cdev);
5938         if (unlikely(cobj == NULL))
5939                 RETURN(-ENOMEM);
5940
5941         lu2lod_obj(lo)->ldo_obj.do_body_ops = &lod_body_ops;
5942
5943         lu_object_add(lo, cobj);
5944
5945         RETURN(0);
5946 }
5947
5948 /**
5949  *
5950  * Release resources associated with striping.
5951  *
5952  * If the object is striped (regular or directory), then release
5953  * the stripe objects references and free the ldo_stripe array.
5954  *
5955  * \param[in] env       execution environment
5956  * \param[in] lo        object
5957  */
5958 void lod_object_free_striping(const struct lu_env *env, struct lod_object *lo)
5959 {
5960         struct lod_layout_component *lod_comp;
5961         int i, j;
5962
5963         if (lo->ldo_stripe != NULL) {
5964                 LASSERT(lo->ldo_comp_entries == NULL);
5965                 LASSERT(lo->ldo_dir_stripes_allocated > 0);
5966
5967                 for (i = 0; i < lo->ldo_dir_stripe_count; i++) {
5968                         if (lo->ldo_stripe[i])
5969                                 dt_object_put(env, lo->ldo_stripe[i]);
5970                 }
5971
5972                 j = sizeof(struct dt_object *) * lo->ldo_dir_stripes_allocated;
5973                 OBD_FREE(lo->ldo_stripe, j);
5974                 lo->ldo_stripe = NULL;
5975                 lo->ldo_dir_stripes_allocated = 0;
5976                 lo->ldo_dir_stripe_loaded = 0;
5977                 lo->ldo_dir_stripe_count = 0;
5978         } else if (lo->ldo_comp_entries != NULL) {
5979                 for (i = 0; i < lo->ldo_comp_cnt; i++) {
5980                         /* free lod_layout_component::llc_stripe array */
5981                         lod_comp = &lo->ldo_comp_entries[i];
5982
5983                         if (lod_comp->llc_stripe == NULL)
5984                                 continue;
5985                         LASSERT(lod_comp->llc_stripes_allocated != 0);
5986                         for (j = 0; j < lod_comp->llc_stripes_allocated; j++) {
5987                                 if (lod_comp->llc_stripe[j] != NULL)
5988                                         lu_object_put(env,
5989                                                &lod_comp->llc_stripe[j]->do_lu);
5990                         }
5991                         OBD_FREE(lod_comp->llc_stripe,
5992                                  sizeof(struct dt_object *) *
5993                                  lod_comp->llc_stripes_allocated);
5994                         lod_comp->llc_stripe = NULL;
5995                         lod_comp->llc_stripes_allocated = 0;
5996                 }
5997                 lod_free_comp_entries(lo);
5998                 lo->ldo_comp_cached = 0;
5999         }
6000 }
6001
6002 /**
6003  * Implementation of lu_object_operations::loo_object_free.
6004  *
6005  * \see lu_object_operations::loo_object_free() in the API description
6006  * for details.
6007  */
6008 static void lod_object_free(const struct lu_env *env, struct lu_object *o)
6009 {
6010         struct lod_object *lo = lu2lod_obj(o);
6011
6012         /* release all underlying object pinned */
6013         lod_object_free_striping(env, lo);
6014         lu_object_fini(o);
6015         OBD_SLAB_FREE_PTR(lo, lod_object_kmem);
6016 }
6017
6018 /**
6019  * Implementation of lu_object_operations::loo_object_release.
6020  *
6021  * \see lu_object_operations::loo_object_release() in the API description
6022  * for details.
6023  */
6024 static void lod_object_release(const struct lu_env *env, struct lu_object *o)
6025 {
6026         /* XXX: shouldn't we release everything here in case if object
6027          * creation failed before? */
6028 }
6029
6030 /**
6031  * Implementation of lu_object_operations::loo_object_print.
6032  *
6033  * \see lu_object_operations::loo_object_print() in the API description
6034  * for details.
6035  */
6036 static int lod_object_print(const struct lu_env *env, void *cookie,
6037                             lu_printer_t p, const struct lu_object *l)
6038 {
6039         struct lod_object *o = lu2lod_obj((struct lu_object *) l);
6040
6041         return (*p)(env, cookie, LUSTRE_LOD_NAME"-object@%p", o);
6042 }
6043
6044 struct lu_object_operations lod_lu_obj_ops = {
6045         .loo_object_init        = lod_object_init,
6046         .loo_object_free        = lod_object_free,
6047         .loo_object_release     = lod_object_release,
6048         .loo_object_print       = lod_object_print,
6049 };