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