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