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