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