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