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