Whamcloud - gitweb
LU-7975 lod: fix delayed stripe error path & Client resend
[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, 2015, Intel Corporation.
27  */
28 /*
29  * lustre/lod/lod_object.c
30  *
31  * This file contains implementations of methods for the OSD API
32  * for the Logical Object Device (LOD) layer, which provides a virtual
33  * local OSD object interface to the MDD layer, and abstracts the
34  * addressing of local (OSD) and remote (OSP) objects. The API is
35  * described in the file lustre/include/dt_object.h and in
36  * Documentation/osd-api.txt.
37  *
38  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_MDS
42
43 #include <obd.h>
44 #include <obd_class.h>
45 #include <obd_support.h>
46
47 #include <lustre_fid.h>
48 #include <lustre_linkea.h>
49 #include <lustre_lmv.h>
50 #include <lustre_param.h>
51 #include <lustre_swab.h>
52 #include <lustre_ver.h>
53 #include <lprocfs_status.h>
54 #include <md_object.h>
55
56 #include "lod_internal.h"
57
58 static const char dot[] = ".";
59 static const char dotdot[] = "..";
60
61 static const struct dt_body_operations lod_body_lnk_ops;
62 static const struct dt_body_operations lod_body_ops;
63
64 /**
65  * Implementation of dt_index_operations::dio_lookup
66  *
67  * Used with regular (non-striped) objects.
68  *
69  * \see dt_index_operations::dio_lookup() in the API description for details.
70  */
71 static int lod_index_lookup(const struct lu_env *env, struct dt_object *dt,
72                             struct dt_rec *rec, const struct dt_key *key)
73 {
74         struct dt_object *next = dt_object_child(dt);
75         return next->do_index_ops->dio_lookup(env, next, rec, key);
76 }
77
78 /**
79  * Implementation of dt_index_operations::dio_declare_insert.
80  *
81  * Used with regular (non-striped) objects.
82  *
83  * \see dt_index_operations::dio_declare_insert() in the API description
84  * for details.
85  */
86 static int lod_declare_index_insert(const struct lu_env *env,
87                                     struct dt_object *dt,
88                                     const struct dt_rec *rec,
89                                     const struct dt_key *key,
90                                     struct thandle *th)
91 {
92         return lod_sub_object_declare_insert(env, dt_object_child(dt),
93                                              rec, key, th);
94 }
95
96 /**
97  * Implementation of dt_index_operations::dio_insert.
98  *
99  * Used with regular (non-striped) objects
100  *
101  * \see dt_index_operations::dio_insert() in the API description for details.
102  */
103 static int lod_index_insert(const struct lu_env *env,
104                             struct dt_object *dt,
105                             const struct dt_rec *rec,
106                             const struct dt_key *key,
107                             struct thandle *th,
108                             int ign)
109 {
110         return lod_sub_object_index_insert(env, dt_object_child(dt), rec, key,
111                                            th, ign);
112 }
113
114 /**
115  * Implementation of dt_index_operations::dio_declare_delete.
116  *
117  * Used with regular (non-striped) objects.
118  *
119  * \see dt_index_operations::dio_declare_delete() in the API description
120  * for details.
121  */
122 static int lod_declare_index_delete(const struct lu_env *env,
123                                     struct dt_object *dt,
124                                     const struct dt_key *key,
125                                     struct thandle *th)
126 {
127         return lod_sub_object_declare_delete(env, dt_object_child(dt), key,
128                                              th);
129 }
130
131 /**
132  * Implementation of dt_index_operations::dio_delete.
133  *
134  * Used with regular (non-striped) objects.
135  *
136  * \see dt_index_operations::dio_delete() in the API description for details.
137  */
138 static int lod_index_delete(const struct lu_env *env,
139                             struct dt_object *dt,
140                             const struct dt_key *key,
141                             struct thandle *th)
142 {
143         return lod_sub_object_delete(env, dt_object_child(dt), key, th);
144 }
145
146 /**
147  * Implementation of dt_it_ops::init.
148  *
149  * Used with regular (non-striped) objects.
150  *
151  * \see dt_it_ops::init() in the API description for details.
152  */
153 static struct dt_it *lod_it_init(const struct lu_env *env,
154                                  struct dt_object *dt, __u32 attr)
155 {
156         struct dt_object        *next = dt_object_child(dt);
157         struct lod_it           *it = &lod_env_info(env)->lti_it;
158         struct dt_it            *it_next;
159
160         it_next = next->do_index_ops->dio_it.init(env, next, attr);
161         if (IS_ERR(it_next))
162                 return it_next;
163
164         /* currently we do not use more than one iterator per thread
165          * so we store it in thread info. if at some point we need
166          * more active iterators in a single thread, we can allocate
167          * additional ones */
168         LASSERT(it->lit_obj == NULL);
169
170         it->lit_it = it_next;
171         it->lit_obj = next;
172
173         return (struct dt_it *)it;
174 }
175
176 #define LOD_CHECK_IT(env, it)                                   \
177 do {                                                            \
178         LASSERT((it)->lit_obj != NULL);                         \
179         LASSERT((it)->lit_it != NULL);                          \
180 } while (0)
181
182 /**
183  * Implementation of dt_index_operations::dio_it.fini.
184  *
185  * Used with regular (non-striped) objects.
186  *
187  * \see dt_index_operations::dio_it.fini() in the API description for details.
188  */
189 static void lod_it_fini(const struct lu_env *env, struct dt_it *di)
190 {
191         struct lod_it *it = (struct lod_it *)di;
192
193         LOD_CHECK_IT(env, it);
194         it->lit_obj->do_index_ops->dio_it.fini(env, it->lit_it);
195
196         /* the iterator not in use any more */
197         it->lit_obj = NULL;
198         it->lit_it = NULL;
199 }
200
201 /**
202  * Implementation of dt_it_ops::get.
203  *
204  * Used with regular (non-striped) objects.
205  *
206  * \see dt_it_ops::get() in the API description for details.
207  */
208 static int lod_it_get(const struct lu_env *env, struct dt_it *di,
209                       const struct dt_key *key)
210 {
211         const struct lod_it *it = (const struct lod_it *)di;
212
213         LOD_CHECK_IT(env, it);
214         return it->lit_obj->do_index_ops->dio_it.get(env, it->lit_it, key);
215 }
216
217 /**
218  * Implementation of dt_it_ops::put.
219  *
220  * Used with regular (non-striped) objects.
221  *
222  * \see dt_it_ops::put() in the API description for details.
223  */
224 static void lod_it_put(const struct lu_env *env, struct dt_it *di)
225 {
226         struct lod_it *it = (struct lod_it *)di;
227
228         LOD_CHECK_IT(env, it);
229         return it->lit_obj->do_index_ops->dio_it.put(env, it->lit_it);
230 }
231
232 /**
233  * Implementation of dt_it_ops::next.
234  *
235  * Used with regular (non-striped) objects
236  *
237  * \see dt_it_ops::next() in the API description for details.
238  */
239 static int lod_it_next(const struct lu_env *env, struct dt_it *di)
240 {
241         struct lod_it *it = (struct lod_it *)di;
242
243         LOD_CHECK_IT(env, it);
244         return it->lit_obj->do_index_ops->dio_it.next(env, it->lit_it);
245 }
246
247 /**
248  * Implementation of dt_it_ops::key.
249  *
250  * Used with regular (non-striped) objects.
251  *
252  * \see dt_it_ops::key() in the API description for details.
253  */
254 static struct dt_key *lod_it_key(const struct lu_env *env,
255                                  const struct dt_it *di)
256 {
257         const struct lod_it *it = (const struct lod_it *)di;
258
259         LOD_CHECK_IT(env, it);
260         return it->lit_obj->do_index_ops->dio_it.key(env, it->lit_it);
261 }
262
263 /**
264  * Implementation of dt_it_ops::key_size.
265  *
266  * Used with regular (non-striped) objects.
267  *
268  * \see dt_it_ops::key_size() in the API description for details.
269  */
270 static int lod_it_key_size(const struct lu_env *env, const struct dt_it *di)
271 {
272         struct lod_it *it = (struct lod_it *)di;
273
274         LOD_CHECK_IT(env, it);
275         return it->lit_obj->do_index_ops->dio_it.key_size(env, it->lit_it);
276 }
277
278 /**
279  * Implementation of dt_it_ops::rec.
280  *
281  * Used with regular (non-striped) objects.
282  *
283  * \see dt_it_ops::rec() in the API description for details.
284  */
285 static int lod_it_rec(const struct lu_env *env, const struct dt_it *di,
286                       struct dt_rec *rec, __u32 attr)
287 {
288         const struct lod_it *it = (const struct lod_it *)di;
289
290         LOD_CHECK_IT(env, it);
291         return it->lit_obj->do_index_ops->dio_it.rec(env, it->lit_it, rec,
292                                                      attr);
293 }
294
295 /**
296  * Implementation of dt_it_ops::rec_size.
297  *
298  * Used with regular (non-striped) objects.
299  *
300  * \see dt_it_ops::rec_size() in the API description for details.
301  */
302 static int lod_it_rec_size(const struct lu_env *env, const struct dt_it *di,
303                            __u32 attr)
304 {
305         const struct lod_it *it = (const struct lod_it *)di;
306
307         LOD_CHECK_IT(env, it);
308         return it->lit_obj->do_index_ops->dio_it.rec_size(env, it->lit_it,
309                                                           attr);
310 }
311
312 /**
313  * Implementation of dt_it_ops::store.
314  *
315  * Used with regular (non-striped) objects.
316  *
317  * \see dt_it_ops::store() in the API description for details.
318  */
319 static __u64 lod_it_store(const struct lu_env *env, const struct dt_it *di)
320 {
321         const struct lod_it *it = (const struct lod_it *)di;
322
323         LOD_CHECK_IT(env, it);
324         return it->lit_obj->do_index_ops->dio_it.store(env, it->lit_it);
325 }
326
327 /**
328  * Implementation of dt_it_ops::load.
329  *
330  * Used with regular (non-striped) objects.
331  *
332  * \see dt_it_ops::load() in the API description for details.
333  */
334 static int lod_it_load(const struct lu_env *env, const struct dt_it *di,
335                        __u64 hash)
336 {
337         const struct lod_it *it = (const struct lod_it *)di;
338
339         LOD_CHECK_IT(env, it);
340         return it->lit_obj->do_index_ops->dio_it.load(env, it->lit_it, hash);
341 }
342
343 /**
344  * Implementation of dt_it_ops::key_rec.
345  *
346  * Used with regular (non-striped) objects.
347  *
348  * \see dt_it_ops::rec() in the API description for details.
349  */
350 static int lod_it_key_rec(const struct lu_env *env, const struct dt_it *di,
351                           void *key_rec)
352 {
353         const struct lod_it *it = (const struct lod_it *)di;
354
355         LOD_CHECK_IT(env, it);
356         return it->lit_obj->do_index_ops->dio_it.key_rec(env, it->lit_it,
357                                                          key_rec);
358 }
359
360 static struct dt_index_operations lod_index_ops = {
361         .dio_lookup             = lod_index_lookup,
362         .dio_declare_insert     = lod_declare_index_insert,
363         .dio_insert             = lod_index_insert,
364         .dio_declare_delete     = lod_declare_index_delete,
365         .dio_delete             = lod_index_delete,
366         .dio_it = {
367                 .init           = lod_it_init,
368                 .fini           = lod_it_fini,
369                 .get            = lod_it_get,
370                 .put            = lod_it_put,
371                 .next           = lod_it_next,
372                 .key            = lod_it_key,
373                 .key_size       = lod_it_key_size,
374                 .rec            = lod_it_rec,
375                 .rec_size       = lod_it_rec_size,
376                 .store          = lod_it_store,
377                 .load           = lod_it_load,
378                 .key_rec        = lod_it_key_rec,
379         }
380 };
381
382 /**
383  * Implementation of dt_it_ops::init.
384  *
385  * Used with striped objects. Internally just initializes the iterator
386  * on the first stripe.
387  *
388  * \see dt_it_ops::init() in the API description for details.
389  */
390 static struct dt_it *lod_striped_it_init(const struct lu_env *env,
391                                          struct dt_object *dt, __u32 attr)
392 {
393         struct lod_object       *lo = lod_dt_obj(dt);
394         struct dt_object        *next;
395         struct lod_it           *it = &lod_env_info(env)->lti_it;
396         struct dt_it            *it_next;
397         ENTRY;
398
399         LASSERT(lo->ldo_stripenr > 0);
400         next = lo->ldo_stripe[0];
401         LASSERT(next != NULL);
402         LASSERT(next->do_index_ops != NULL);
403
404         it_next = next->do_index_ops->dio_it.init(env, next, attr);
405         if (IS_ERR(it_next))
406                 return it_next;
407
408         /* currently we do not use more than one iterator per thread
409          * so we store it in thread info. if at some point we need
410          * more active iterators in a single thread, we can allocate
411          * additional ones */
412         LASSERT(it->lit_obj == NULL);
413
414         it->lit_stripe_index = 0;
415         it->lit_attr = attr;
416         it->lit_it = it_next;
417         it->lit_obj = dt;
418
419         return (struct dt_it *)it;
420 }
421
422 #define LOD_CHECK_STRIPED_IT(env, it, lo)                       \
423 do {                                                            \
424         LASSERT((it)->lit_obj != NULL);                         \
425         LASSERT((it)->lit_it != NULL);                          \
426         LASSERT((lo)->ldo_stripenr > 0);                        \
427         LASSERT((it)->lit_stripe_index < (lo)->ldo_stripenr);   \
428 } while (0)
429
430 /**
431  * Implementation of dt_it_ops::fini.
432  *
433  * Used with striped objects.
434  *
435  * \see dt_it_ops::fini() in the API description for details.
436  */
437 static void lod_striped_it_fini(const struct lu_env *env, struct dt_it *di)
438 {
439         struct lod_it           *it = (struct lod_it *)di;
440         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
441         struct dt_object        *next;
442
443         /* If lit_it == NULL, then it means the sub_it has been finished,
444          * which only happens in failure cases, see lod_striped_it_next() */
445         if (it->lit_it != NULL) {
446                 LOD_CHECK_STRIPED_IT(env, it, lo);
447
448                 next = lo->ldo_stripe[it->lit_stripe_index];
449                 LASSERT(next != NULL);
450                 LASSERT(next->do_index_ops != NULL);
451
452                 next->do_index_ops->dio_it.fini(env, it->lit_it);
453         }
454
455         /* the iterator not in use any more */
456         it->lit_obj = NULL;
457         it->lit_it = NULL;
458         it->lit_stripe_index = 0;
459 }
460
461 /**
462  * Implementation of dt_it_ops::get.
463  *
464  * Right now it's not used widely, only to reset the iterator to the
465  * initial position. It should be possible to implement a full version
466  * which chooses a correct stripe to be able to position with any key.
467  *
468  * \see dt_it_ops::get() in the API description for details.
469  */
470 static int lod_striped_it_get(const struct lu_env *env, struct dt_it *di,
471                               const struct dt_key *key)
472 {
473         const struct lod_it     *it = (const struct lod_it *)di;
474         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
475         struct dt_object        *next;
476         ENTRY;
477
478         LOD_CHECK_STRIPED_IT(env, it, lo);
479
480         next = lo->ldo_stripe[it->lit_stripe_index];
481         LASSERT(next != NULL);
482         LASSERT(next->do_index_ops != NULL);
483
484         return next->do_index_ops->dio_it.get(env, it->lit_it, key);
485 }
486
487 /**
488  * Implementation of dt_it_ops::put.
489  *
490  * Used with striped objects.
491  *
492  * \see dt_it_ops::put() in the API description for details.
493  */
494 static void lod_striped_it_put(const struct lu_env *env, struct dt_it *di)
495 {
496         struct lod_it           *it = (struct lod_it *)di;
497         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
498         struct dt_object        *next;
499
500         LOD_CHECK_STRIPED_IT(env, it, lo);
501
502         next = lo->ldo_stripe[it->lit_stripe_index];
503         LASSERT(next != NULL);
504         LASSERT(next->do_index_ops != NULL);
505
506         return next->do_index_ops->dio_it.put(env, it->lit_it);
507 }
508
509 /**
510  * Implementation of dt_it_ops::next.
511  *
512  * Used with striped objects. When the end of the current stripe is
513  * reached, the method takes the next stripe's iterator.
514  *
515  * \see dt_it_ops::next() in the API description for details.
516  */
517 static int lod_striped_it_next(const struct lu_env *env, struct dt_it *di)
518 {
519         struct lod_it           *it = (struct lod_it *)di;
520         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
521         struct dt_object        *next;
522         struct dt_it            *it_next;
523         int                     rc;
524         ENTRY;
525
526         LOD_CHECK_STRIPED_IT(env, it, lo);
527
528         next = lo->ldo_stripe[it->lit_stripe_index];
529         LASSERT(next != NULL);
530         LASSERT(next->do_index_ops != NULL);
531 again:
532         rc = next->do_index_ops->dio_it.next(env, it->lit_it);
533         if (rc < 0)
534                 RETURN(rc);
535
536         if (rc == 0 && it->lit_stripe_index == 0)
537                 RETURN(rc);
538
539         if (rc == 0 && it->lit_stripe_index > 0) {
540                 struct lu_dirent *ent;
541
542                 ent = (struct lu_dirent *)lod_env_info(env)->lti_key;
543
544                 rc = next->do_index_ops->dio_it.rec(env, it->lit_it,
545                                                     (struct dt_rec *)ent,
546                                                     it->lit_attr);
547                 if (rc != 0)
548                         RETURN(rc);
549
550                 /* skip . and .. for slave stripe */
551                 if ((strncmp(ent->lde_name, ".",
552                              le16_to_cpu(ent->lde_namelen)) == 0 &&
553                      le16_to_cpu(ent->lde_namelen) == 1) ||
554                     (strncmp(ent->lde_name, "..",
555                              le16_to_cpu(ent->lde_namelen)) == 0 &&
556                      le16_to_cpu(ent->lde_namelen) == 2))
557                         goto again;
558
559                 RETURN(rc);
560         }
561
562         /* go to next stripe */
563         if (it->lit_stripe_index + 1 >= lo->ldo_stripenr)
564                 RETURN(1);
565
566         it->lit_stripe_index++;
567
568         next->do_index_ops->dio_it.put(env, it->lit_it);
569         next->do_index_ops->dio_it.fini(env, it->lit_it);
570         it->lit_it = NULL;
571
572         next = lo->ldo_stripe[it->lit_stripe_index];
573         LASSERT(next != NULL);
574         rc = next->do_ops->do_index_try(env, next, &dt_directory_features);
575         if (rc != 0)
576                 RETURN(rc);
577
578         LASSERT(next->do_index_ops != NULL);
579
580         it_next = next->do_index_ops->dio_it.init(env, next, it->lit_attr);
581         if (!IS_ERR(it_next)) {
582                 it->lit_it = it_next;
583                 goto again;
584         } else {
585                 rc = PTR_ERR(it_next);
586         }
587
588         RETURN(rc);
589 }
590
591 /**
592  * Implementation of dt_it_ops::key.
593  *
594  * Used with striped objects.
595  *
596  * \see dt_it_ops::key() in the API description for details.
597  */
598 static struct dt_key *lod_striped_it_key(const struct lu_env *env,
599                                          const struct dt_it *di)
600 {
601         const struct lod_it     *it = (const struct lod_it *)di;
602         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
603         struct dt_object        *next;
604
605         LOD_CHECK_STRIPED_IT(env, it, lo);
606
607         next = lo->ldo_stripe[it->lit_stripe_index];
608         LASSERT(next != NULL);
609         LASSERT(next->do_index_ops != NULL);
610
611         return next->do_index_ops->dio_it.key(env, it->lit_it);
612 }
613
614 /**
615  * Implementation of dt_it_ops::key_size.
616  *
617  * Used with striped objects.
618  *
619  * \see dt_it_ops::size() in the API description for details.
620  */
621 static int lod_striped_it_key_size(const struct lu_env *env,
622                                    const struct dt_it *di)
623 {
624         struct lod_it           *it = (struct lod_it *)di;
625         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
626         struct dt_object        *next;
627
628         LOD_CHECK_STRIPED_IT(env, it, lo);
629
630         next = lo->ldo_stripe[it->lit_stripe_index];
631         LASSERT(next != NULL);
632         LASSERT(next->do_index_ops != NULL);
633
634         return next->do_index_ops->dio_it.key_size(env, it->lit_it);
635 }
636
637 /**
638  * Implementation of dt_it_ops::rec.
639  *
640  * Used with striped objects.
641  *
642  * \see dt_it_ops::rec() in the API description for details.
643  */
644 static int lod_striped_it_rec(const struct lu_env *env, const struct dt_it *di,
645                               struct dt_rec *rec, __u32 attr)
646 {
647         const struct lod_it     *it = (const struct lod_it *)di;
648         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
649         struct dt_object        *next;
650
651         LOD_CHECK_STRIPED_IT(env, it, lo);
652
653         next = lo->ldo_stripe[it->lit_stripe_index];
654         LASSERT(next != NULL);
655         LASSERT(next->do_index_ops != NULL);
656
657         return next->do_index_ops->dio_it.rec(env, it->lit_it, rec, attr);
658 }
659
660 /**
661  * Implementation of dt_it_ops::rec_size.
662  *
663  * Used with striped objects.
664  *
665  * \see dt_it_ops::rec_size() in the API description for details.
666  */
667 static int lod_striped_it_rec_size(const struct lu_env *env,
668                                    const struct dt_it *di, __u32 attr)
669 {
670         struct lod_it           *it = (struct lod_it *)di;
671         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
672         struct dt_object        *next;
673
674         LOD_CHECK_STRIPED_IT(env, it, lo);
675
676         next = lo->ldo_stripe[it->lit_stripe_index];
677         LASSERT(next != NULL);
678         LASSERT(next->do_index_ops != NULL);
679
680         return next->do_index_ops->dio_it.rec_size(env, it->lit_it, attr);
681 }
682
683 /**
684  * Implementation of dt_it_ops::store.
685  *
686  * Used with striped objects.
687  *
688  * \see dt_it_ops::store() in the API description for details.
689  */
690 static __u64 lod_striped_it_store(const struct lu_env *env,
691                                   const struct dt_it *di)
692 {
693         const struct lod_it     *it = (const struct lod_it *)di;
694         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
695         struct dt_object        *next;
696
697         LOD_CHECK_STRIPED_IT(env, it, lo);
698
699         next = lo->ldo_stripe[it->lit_stripe_index];
700         LASSERT(next != NULL);
701         LASSERT(next->do_index_ops != NULL);
702
703         return next->do_index_ops->dio_it.store(env, it->lit_it);
704 }
705
706 /**
707  * Implementation of dt_it_ops::load.
708  *
709  * Used with striped objects.
710  *
711  * \see dt_it_ops::load() in the API description for details.
712  */
713 static int lod_striped_it_load(const struct lu_env *env,
714                                const struct dt_it *di, __u64 hash)
715 {
716         const struct lod_it     *it = (const struct lod_it *)di;
717         struct lod_object       *lo = lod_dt_obj(it->lit_obj);
718         struct dt_object        *next;
719
720         LOD_CHECK_STRIPED_IT(env, it, lo);
721
722         next = lo->ldo_stripe[it->lit_stripe_index];
723         LASSERT(next != NULL);
724         LASSERT(next->do_index_ops != NULL);
725
726         return next->do_index_ops->dio_it.load(env, it->lit_it, hash);
727 }
728
729 static struct dt_index_operations lod_striped_index_ops = {
730         .dio_lookup             = lod_index_lookup,
731         .dio_declare_insert     = lod_declare_index_insert,
732         .dio_insert             = lod_index_insert,
733         .dio_declare_delete     = lod_declare_index_delete,
734         .dio_delete             = lod_index_delete,
735         .dio_it = {
736                 .init           = lod_striped_it_init,
737                 .fini           = lod_striped_it_fini,
738                 .get            = lod_striped_it_get,
739                 .put            = lod_striped_it_put,
740                 .next           = lod_striped_it_next,
741                 .key            = lod_striped_it_key,
742                 .key_size       = lod_striped_it_key_size,
743                 .rec            = lod_striped_it_rec,
744                 .rec_size       = lod_striped_it_rec_size,
745                 .store          = lod_striped_it_store,
746                 .load           = lod_striped_it_load,
747         }
748 };
749
750 /**
751  * Append the FID for each shard of the striped directory after the
752  * given LMV EA header.
753  *
754  * To simplify striped directory and the consistency verification,
755  * we only store the LMV EA header on disk, for both master object
756  * and slave objects. When someone wants to know the whole LMV EA,
757  * such as client readdir(), we can build the entrie LMV EA on the
758  * MDT side (in RAM) via iterating the sub-directory entries that
759  * are contained in the master object of the stripe directory.
760  *
761  * For the master object of the striped directroy, the valid name
762  * for each shard is composed of the ${shard_FID}:${shard_idx}.
763  *
764  * There may be holes in the LMV EA if some shards' name entries
765  * are corrupted or lost.
766  *
767  * \param[in] env       pointer to the thread context
768  * \param[in] lo        pointer to the master object of the striped directory
769  * \param[in] buf       pointer to the lu_buf which will hold the LMV EA
770  * \param[in] resize    whether re-allocate the buffer if it is not big enough
771  *
772  * \retval              positive size of the LMV EA
773  * \retval              0 for nothing to be loaded
774  * \retval              negative error number on failure
775  */
776 int lod_load_lmv_shards(const struct lu_env *env, struct lod_object *lo,
777                         struct lu_buf *buf, bool resize)
778 {
779         struct lu_dirent        *ent    =
780                         (struct lu_dirent *)lod_env_info(env)->lti_key;
781         struct lod_device       *lod    = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
782         struct dt_object        *obj    = dt_object_child(&lo->ldo_obj);
783         struct lmv_mds_md_v1    *lmv1   = buf->lb_buf;
784         struct dt_it            *it;
785         const struct dt_it_ops  *iops;
786         __u32                    stripes;
787         __u32                    magic  = le32_to_cpu(lmv1->lmv_magic);
788         size_t                   lmv1_size;
789         int                      rc;
790         ENTRY;
791
792         /* If it is not a striped directory, then load nothing. */
793         if (magic != LMV_MAGIC_V1)
794                 RETURN(0);
795
796         /* If it is in migration (or failure), then load nothing. */
797         if (le32_to_cpu(lmv1->lmv_hash_type) & LMV_HASH_FLAG_MIGRATION)
798                 RETURN(0);
799
800         stripes = le32_to_cpu(lmv1->lmv_stripe_count);
801         if (stripes < 1)
802                 RETURN(0);
803
804         rc = lmv_mds_md_size(stripes, magic);
805         if (rc < 0)
806                 RETURN(rc);
807         lmv1_size = rc;
808         if (buf->lb_len < lmv1_size) {
809                 struct lu_buf tbuf;
810
811                 if (!resize)
812                         RETURN(-ERANGE);
813
814                 tbuf = *buf;
815                 buf->lb_buf = NULL;
816                 buf->lb_len = 0;
817                 lu_buf_alloc(buf, lmv1_size);
818                 lmv1 = buf->lb_buf;
819                 if (lmv1 == NULL)
820                         RETURN(-ENOMEM);
821
822                 memcpy(buf->lb_buf, tbuf.lb_buf, tbuf.lb_len);
823         }
824
825         if (unlikely(!dt_try_as_dir(env, obj)))
826                 RETURN(-ENOTDIR);
827
828         memset(&lmv1->lmv_stripe_fids[0], 0, stripes * sizeof(struct lu_fid));
829         iops = &obj->do_index_ops->dio_it;
830         it = iops->init(env, obj, LUDA_64BITHASH);
831         if (IS_ERR(it))
832                 RETURN(PTR_ERR(it));
833
834         rc = iops->load(env, it, 0);
835         if (rc == 0)
836                 rc = iops->next(env, it);
837         else if (rc > 0)
838                 rc = 0;
839
840         while (rc == 0) {
841                 char             name[FID_LEN + 2] = "";
842                 struct lu_fid    fid;
843                 __u32            index;
844                 int              len;
845
846                 rc = iops->rec(env, it, (struct dt_rec *)ent, LUDA_64BITHASH);
847                 if (rc != 0)
848                         break;
849
850                 rc = -EIO;
851
852                 fid_le_to_cpu(&fid, &ent->lde_fid);
853                 ent->lde_namelen = le16_to_cpu(ent->lde_namelen);
854                 if (ent->lde_name[0] == '.') {
855                         if (ent->lde_namelen == 1)
856                                 goto next;
857
858                         if (ent->lde_namelen == 2 && ent->lde_name[1] == '.')
859                                 goto next;
860                 }
861
862                 len = snprintf(name, sizeof(name),
863                                DFID":", PFID(&ent->lde_fid));
864                 /* The ent->lde_name is composed of ${FID}:${index} */
865                 if (ent->lde_namelen < len + 1 ||
866                     memcmp(ent->lde_name, name, len) != 0) {
867                         CDEBUG(lod->lod_lmv_failout ? D_ERROR : D_INFO,
868                                "%s: invalid shard name %.*s with the FID "DFID
869                                " for the striped directory "DFID", %s\n",
870                                lod2obd(lod)->obd_name, ent->lde_namelen,
871                                ent->lde_name, PFID(&fid),
872                                PFID(lu_object_fid(&obj->do_lu)),
873                                lod->lod_lmv_failout ? "failout" : "skip");
874
875                         if (lod->lod_lmv_failout)
876                                 break;
877
878                         goto next;
879                 }
880
881                 index = 0;
882                 do {
883                         if (ent->lde_name[len] < '0' ||
884                             ent->lde_name[len] > '9') {
885                                 CDEBUG(lod->lod_lmv_failout ? D_ERROR : D_INFO,
886                                        "%s: invalid shard name %.*s with the "
887                                        "FID "DFID" for the striped directory "
888                                        DFID", %s\n",
889                                        lod2obd(lod)->obd_name, ent->lde_namelen,
890                                        ent->lde_name, PFID(&fid),
891                                        PFID(lu_object_fid(&obj->do_lu)),
892                                        lod->lod_lmv_failout ?
893                                        "failout" : "skip");
894
895                                 if (lod->lod_lmv_failout)
896                                         break;
897
898                                 goto next;
899                         }
900
901                         index = index * 10 + ent->lde_name[len++] - '0';
902                 } while (len < ent->lde_namelen);
903
904                 if (len == ent->lde_namelen) {
905                         /* Out of LMV EA range. */
906                         if (index >= stripes) {
907                                 CERROR("%s: the shard %.*s for the striped "
908                                        "directory "DFID" is out of the known "
909                                        "LMV EA range [0 - %u], failout\n",
910                                        lod2obd(lod)->obd_name, ent->lde_namelen,
911                                        ent->lde_name,
912                                        PFID(lu_object_fid(&obj->do_lu)),
913                                        stripes - 1);
914
915                                 break;
916                         }
917
918                         /* The slot has been occupied. */
919                         if (!fid_is_zero(&lmv1->lmv_stripe_fids[index])) {
920                                 struct lu_fid fid0;
921
922                                 fid_le_to_cpu(&fid0,
923                                         &lmv1->lmv_stripe_fids[index]);
924                                 CERROR("%s: both the shard "DFID" and "DFID
925                                        " for the striped directory "DFID
926                                        " claim the same LMV EA slot at the "
927                                        "index %d, failout\n",
928                                        lod2obd(lod)->obd_name,
929                                        PFID(&fid0), PFID(&fid),
930                                        PFID(lu_object_fid(&obj->do_lu)), index);
931
932                                 break;
933                         }
934
935                         /* stored as LE mode */
936                         lmv1->lmv_stripe_fids[index] = ent->lde_fid;
937
938 next:
939                         rc = iops->next(env, it);
940                 }
941         }
942
943         iops->put(env, it);
944         iops->fini(env, it);
945
946         RETURN(rc > 0 ? lmv_mds_md_size(stripes, magic) : rc);
947 }
948
949 /**
950  * Implementation of dt_object_operations::do_index_try.
951  *
952  * \see dt_object_operations::do_index_try() in the API description for details.
953  */
954 static int lod_index_try(const struct lu_env *env, struct dt_object *dt,
955                          const struct dt_index_features *feat)
956 {
957         struct lod_object       *lo = lod_dt_obj(dt);
958         struct dt_object        *next = dt_object_child(dt);
959         int                     rc;
960         ENTRY;
961
962         LASSERT(next->do_ops);
963         LASSERT(next->do_ops->do_index_try);
964
965         rc = lod_load_striping_locked(env, lo);
966         if (rc != 0)
967                 RETURN(rc);
968
969         rc = next->do_ops->do_index_try(env, next, feat);
970         if (rc != 0)
971                 RETURN(rc);
972
973         if (lo->ldo_stripenr > 0) {
974                 int i;
975
976                 for (i = 0; i < lo->ldo_stripenr; i++) {
977                         if (dt_object_exists(lo->ldo_stripe[i]) == 0)
978                                 continue;
979                         rc = lo->ldo_stripe[i]->do_ops->do_index_try(env,
980                                                 lo->ldo_stripe[i], feat);
981                         if (rc != 0)
982                                 RETURN(rc);
983                 }
984                 dt->do_index_ops = &lod_striped_index_ops;
985         } else {
986                 dt->do_index_ops = &lod_index_ops;
987         }
988
989         RETURN(rc);
990 }
991
992 /**
993  * Implementation of dt_object_operations::do_read_lock.
994  *
995  * \see dt_object_operations::do_read_lock() in the API description for details.
996  */
997 static void lod_object_read_lock(const struct lu_env *env,
998                                  struct dt_object *dt, unsigned role)
999 {
1000         dt_read_lock(env, dt_object_child(dt), role);
1001 }
1002
1003 /**
1004  * Implementation of dt_object_operations::do_write_lock.
1005  *
1006  * \see dt_object_operations::do_write_lock() in the API description for
1007  * details.
1008  */
1009 static void lod_object_write_lock(const struct lu_env *env,
1010                                   struct dt_object *dt, unsigned role)
1011 {
1012         dt_write_lock(env, dt_object_child(dt), role);
1013 }
1014
1015 /**
1016  * Implementation of dt_object_operations::do_read_unlock.
1017  *
1018  * \see dt_object_operations::do_read_unlock() in the API description for
1019  * details.
1020  */
1021 static void lod_object_read_unlock(const struct lu_env *env,
1022                                    struct dt_object *dt)
1023 {
1024         dt_read_unlock(env, dt_object_child(dt));
1025 }
1026
1027 /**
1028  * Implementation of dt_object_operations::do_write_unlock.
1029  *
1030  * \see dt_object_operations::do_write_unlock() in the API description for
1031  * details.
1032  */
1033 static void lod_object_write_unlock(const struct lu_env *env,
1034                                     struct dt_object *dt)
1035 {
1036         dt_write_unlock(env, dt_object_child(dt));
1037 }
1038
1039 /**
1040  * Implementation of dt_object_operations::do_write_locked.
1041  *
1042  * \see dt_object_operations::do_write_locked() in the API description for
1043  * details.
1044  */
1045 static int lod_object_write_locked(const struct lu_env *env,
1046                                    struct dt_object *dt)
1047 {
1048         return dt_write_locked(env, dt_object_child(dt));
1049 }
1050
1051 /**
1052  * Implementation of dt_object_operations::do_attr_get.
1053  *
1054  * \see dt_object_operations::do_attr_get() in the API description for details.
1055  */
1056 static int lod_attr_get(const struct lu_env *env,
1057                         struct dt_object *dt,
1058                         struct lu_attr *attr)
1059 {
1060         /* Note: for striped directory, client will merge attributes
1061          * from all of the sub-stripes see lmv_merge_attr(), and there
1062          * no MDD logic depend on directory nlink/size/time, so we can
1063          * always use master inode nlink and size for now. */
1064         return dt_attr_get(env, dt_object_child(dt), attr);
1065 }
1066
1067 /**
1068  * Implementation of dt_object_operations::do_declare_attr_set.
1069  *
1070  * If the object is striped, then apply the changes to all the stripes.
1071  *
1072  * \see dt_object_operations::do_declare_attr_set() in the API description
1073  * for details.
1074  */
1075 static int lod_declare_attr_set(const struct lu_env *env,
1076                                 struct dt_object *dt,
1077                                 const struct lu_attr *attr,
1078                                 struct thandle *th)
1079 {
1080         struct dt_object  *next = dt_object_child(dt);
1081         struct lod_object *lo = lod_dt_obj(dt);
1082         int                rc, i;
1083         ENTRY;
1084
1085         /*
1086          * declare setattr on the local object
1087          */
1088         rc = lod_sub_object_declare_attr_set(env, next, attr, th);
1089         if (rc)
1090                 RETURN(rc);
1091
1092         /* osp_declare_attr_set() ignores all attributes other than
1093          * UID, GID, and size, and osp_attr_set() ignores all but UID
1094          * and GID.  Declaration of size attr setting happens through
1095          * lod_declare_init_size(), and not through this function.
1096          * Therefore we need not load striping unless ownership is
1097          * changing.  This should save memory and (we hope) speed up
1098          * rename(). */
1099         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
1100                 if (!(attr->la_valid & (LA_UID | LA_GID)))
1101                         RETURN(rc);
1102
1103                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_OWNER))
1104                         RETURN(0);
1105         } else {
1106                 if (!(attr->la_valid & (LA_UID | LA_GID | LA_MODE |
1107                                         LA_ATIME | LA_MTIME | LA_CTIME |
1108                                         LA_FLAGS)))
1109                         RETURN(rc);
1110         }
1111         /*
1112          * load striping information, notice we don't do this when object
1113          * is being initialized as we don't need this information till
1114          * few specific cases like destroy, chown
1115          */
1116         rc = lod_load_striping(env, lo);
1117         if (rc)
1118                 RETURN(rc);
1119
1120         if (lo->ldo_stripenr == 0)
1121                 RETURN(0);
1122
1123         /*
1124          * if object is striped declare changes on the stripes
1125          */
1126         LASSERT(lo->ldo_stripe);
1127         for (i = 0; i < lo->ldo_stripenr; i++) {
1128                 if (lo->ldo_stripe[i] == NULL)
1129                         continue;
1130                 rc = lod_sub_object_declare_attr_set(env,
1131                                         lo->ldo_stripe[i], attr,
1132                                         th);
1133                 if (rc != 0)
1134                         RETURN(rc);
1135         }
1136
1137         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_STRIPE) &&
1138             dt_object_exists(next) != 0 &&
1139             dt_object_remote(next) == 0)
1140                 lod_sub_object_declare_xattr_del(env, next,
1141                                                 XATTR_NAME_LOV, th);
1142
1143         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_CHANGE_STRIPE) &&
1144             dt_object_exists(next) &&
1145             dt_object_remote(next) == 0 && S_ISREG(attr->la_mode)) {
1146                 struct lod_thread_info *info = lod_env_info(env);
1147                 struct lu_buf *buf = &info->lti_buf;
1148
1149                 buf->lb_buf = info->lti_ea_store;
1150                 buf->lb_len = info->lti_ea_store_size;
1151                 lod_sub_object_declare_xattr_set(env, next, buf,
1152                                                  XATTR_NAME_LOV,
1153                                                  LU_XATTR_REPLACE, th);
1154         }
1155
1156         RETURN(rc);
1157 }
1158
1159 /**
1160  * Implementation of dt_object_operations::do_attr_set.
1161  *
1162  * If the object is striped, then apply the changes to all or subset of
1163  * the stripes depending on the object type and specific attributes.
1164  *
1165  * \see dt_object_operations::do_attr_set() in the API description for details.
1166  */
1167 static int lod_attr_set(const struct lu_env *env,
1168                         struct dt_object *dt,
1169                         const struct lu_attr *attr,
1170                         struct thandle *th)
1171 {
1172         struct dt_object        *next = dt_object_child(dt);
1173         struct lod_object       *lo = lod_dt_obj(dt);
1174         int                     rc, i;
1175         ENTRY;
1176
1177         /*
1178          * apply changes to the local object
1179          */
1180         rc = lod_sub_object_attr_set(env, next, attr, th);
1181         if (rc)
1182                 RETURN(rc);
1183
1184         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
1185                 if (!(attr->la_valid & (LA_UID | LA_GID)))
1186                         RETURN(rc);
1187
1188                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_OWNER))
1189                         RETURN(0);
1190         } else {
1191                 if (!(attr->la_valid & (LA_UID | LA_GID | LA_MODE |
1192                                         LA_ATIME | LA_MTIME | LA_CTIME |
1193                                         LA_FLAGS)))
1194                         RETURN(rc);
1195         }
1196
1197         if (lo->ldo_stripenr == 0)
1198                 RETURN(0);
1199
1200         /*
1201          * if object is striped, apply changes to all the stripes
1202          */
1203         LASSERT(lo->ldo_stripe);
1204         for (i = 0; i < lo->ldo_stripenr; i++) {
1205                 if (unlikely(lo->ldo_stripe[i] == NULL))
1206                         continue;
1207
1208                 if (S_ISDIR(dt->do_lu.lo_header->loh_attr) &&
1209                     (dt_object_exists(lo->ldo_stripe[i]) == 0))
1210                         continue;
1211
1212                 rc = lod_sub_object_attr_set(env, lo->ldo_stripe[i], attr, th);
1213                 if (rc != 0)
1214                         break;
1215         }
1216
1217         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_STRIPE) &&
1218             dt_object_exists(next) != 0 &&
1219             dt_object_remote(next) == 0)
1220                 rc = lod_sub_object_xattr_del(env, next, XATTR_NAME_LOV, th);
1221
1222         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_CHANGE_STRIPE) &&
1223             dt_object_exists(next) &&
1224             dt_object_remote(next) == 0 && S_ISREG(attr->la_mode)) {
1225                 struct lod_thread_info *info = lod_env_info(env);
1226                 struct lu_buf *buf = &info->lti_buf;
1227                 struct ost_id *oi = &info->lti_ostid;
1228                 struct lu_fid *fid = &info->lti_fid;
1229                 struct lov_mds_md_v1 *lmm;
1230                 struct lov_ost_data_v1 *objs;
1231                 __u32 magic;
1232                 int rc1;
1233
1234                 rc1 = lod_get_lov_ea(env, lo);
1235                 if (rc1  <= 0)
1236                         RETURN(rc);
1237
1238                 buf->lb_buf = info->lti_ea_store;
1239                 buf->lb_len = info->lti_ea_store_size;
1240                 lmm = info->lti_ea_store;
1241                 magic = le32_to_cpu(lmm->lmm_magic);
1242                 if (magic == LOV_MAGIC_V1)
1243                         objs = &(lmm->lmm_objects[0]);
1244                 else
1245                         objs = &((struct lov_mds_md_v3 *)lmm)->lmm_objects[0];
1246                 ostid_le_to_cpu(&objs->l_ost_oi, oi);
1247                 ostid_to_fid(fid, oi, le32_to_cpu(objs->l_ost_idx));
1248                 fid->f_oid--;
1249                 fid_to_ostid(fid, oi);
1250                 ostid_cpu_to_le(oi, &objs->l_ost_oi);
1251
1252                 rc = lod_sub_object_xattr_set(env, next, buf, XATTR_NAME_LOV,
1253                                               LU_XATTR_REPLACE, th);
1254         }
1255
1256         RETURN(rc);
1257 }
1258
1259 /**
1260  * Implementation of dt_object_operations::do_xattr_get.
1261  *
1262  * If LOV EA is requested from the root object and it's not
1263  * found, then return default striping for the filesystem.
1264  *
1265  * \see dt_object_operations::do_xattr_get() in the API description for details.
1266  */
1267 static int lod_xattr_get(const struct lu_env *env, struct dt_object *dt,
1268                          struct lu_buf *buf, const char *name)
1269 {
1270         struct lod_thread_info  *info = lod_env_info(env);
1271         struct lod_device       *dev = lu2lod_dev(dt->do_lu.lo_dev);
1272         int                      rc, is_root;
1273         ENTRY;
1274
1275         rc = dt_xattr_get(env, dt_object_child(dt), buf, name);
1276         if (strcmp(name, XATTR_NAME_LMV) == 0) {
1277                 struct lmv_mds_md_v1    *lmv1;
1278                 int                      rc1 = 0;
1279
1280                 if (rc > (typeof(rc))sizeof(*lmv1))
1281                         RETURN(rc);
1282
1283                 if (rc < (typeof(rc))sizeof(*lmv1))
1284                         RETURN(rc = rc > 0 ? -EINVAL : rc);
1285
1286                 if (buf->lb_buf == NULL || buf->lb_len == 0) {
1287                         CLASSERT(sizeof(*lmv1) <= sizeof(info->lti_key));
1288
1289                         info->lti_buf.lb_buf = info->lti_key;
1290                         info->lti_buf.lb_len = sizeof(*lmv1);
1291                         rc = dt_xattr_get(env, dt_object_child(dt),
1292                                           &info->lti_buf, name);
1293                         if (unlikely(rc != sizeof(*lmv1)))
1294                                 RETURN(rc = rc > 0 ? -EINVAL : rc);
1295
1296                         lmv1 = info->lti_buf.lb_buf;
1297                         /* The on-disk LMV EA only contains header, but the
1298                          * returned LMV EA size should contain the space for
1299                          * the FIDs of all shards of the striped directory. */
1300                         if (le32_to_cpu(lmv1->lmv_magic) == LMV_MAGIC_V1)
1301                                 rc = lmv_mds_md_size(
1302                                         le32_to_cpu(lmv1->lmv_stripe_count),
1303                                         LMV_MAGIC_V1);
1304                 } else {
1305                         rc1 = lod_load_lmv_shards(env, lod_dt_obj(dt),
1306                                                   buf, false);
1307                 }
1308
1309                 RETURN(rc = rc1 != 0 ? rc1 : rc);
1310         }
1311
1312         if (rc != -ENODATA || !S_ISDIR(dt->do_lu.lo_header->loh_attr & S_IFMT))
1313                 RETURN(rc);
1314
1315         /*
1316          * lod returns default striping on the real root of the device
1317          * this is like the root stores default striping for the whole
1318          * filesystem. historically we've been using a different approach
1319          * and store it in the config.
1320          */
1321         dt_root_get(env, dev->lod_child, &info->lti_fid);
1322         is_root = lu_fid_eq(&info->lti_fid, lu_object_fid(&dt->do_lu));
1323
1324         if (is_root && strcmp(XATTR_NAME_LOV, name) == 0) {
1325                 struct lov_user_md *lum = buf->lb_buf;
1326                 struct lov_desc    *desc = &dev->lod_desc;
1327
1328                 if (buf->lb_buf == NULL) {
1329                         rc = sizeof(*lum);
1330                 } else if (buf->lb_len >= sizeof(*lum)) {
1331                         lum->lmm_magic = cpu_to_le32(LOV_USER_MAGIC_V1);
1332                         lmm_oi_set_seq(&lum->lmm_oi, FID_SEQ_LOV_DEFAULT);
1333                         lmm_oi_set_id(&lum->lmm_oi, 0);
1334                         lmm_oi_cpu_to_le(&lum->lmm_oi, &lum->lmm_oi);
1335                         lum->lmm_pattern = cpu_to_le32(desc->ld_pattern);
1336                         lum->lmm_stripe_size = cpu_to_le32(
1337                                                 desc->ld_default_stripe_size);
1338                         lum->lmm_stripe_count = cpu_to_le16(
1339                                                 desc->ld_default_stripe_count);
1340                         lum->lmm_stripe_offset = cpu_to_le16(
1341                                                 desc->ld_default_stripe_offset);
1342                         rc = sizeof(*lum);
1343                 } else {
1344                         rc = -ERANGE;
1345                 }
1346         }
1347
1348         RETURN(rc);
1349 }
1350
1351 /**
1352  * Verify LVM EA.
1353  *
1354  * Checks that the magic of the stripe is sane.
1355  *
1356  * \param[in] lod       lod device
1357  * \param[in] lum       a buffer storing LMV EA to verify
1358  *
1359  * \retval              0 if the EA is sane
1360  * \retval              negative otherwise
1361  */
1362 static int lod_verify_md_striping(struct lod_device *lod,
1363                                   const struct lmv_user_md_v1 *lum)
1364 {
1365         if (unlikely(le32_to_cpu(lum->lum_magic) != LMV_USER_MAGIC)) {
1366                 CERROR("%s: invalid lmv_user_md: magic = %x, "
1367                        "stripe_offset = %d, stripe_count = %u: rc = %d\n",
1368                        lod2obd(lod)->obd_name, le32_to_cpu(lum->lum_magic),
1369                        (int)le32_to_cpu(lum->lum_stripe_offset),
1370                        le32_to_cpu(lum->lum_stripe_count), -EINVAL);
1371                 return -EINVAL;
1372         }
1373
1374         return 0;
1375 }
1376
1377 /**
1378  * Initialize LMV EA for a slave.
1379  *
1380  * Initialize slave's LMV EA from the master's LMV EA.
1381  *
1382  * \param[in] master_lmv        a buffer containing master's EA
1383  * \param[out] slave_lmv        a buffer where slave's EA will be stored
1384  *
1385  */
1386 static void lod_prep_slave_lmv_md(struct lmv_mds_md_v1 *slave_lmv,
1387                                   const struct lmv_mds_md_v1 *master_lmv)
1388 {
1389         *slave_lmv = *master_lmv;
1390         slave_lmv->lmv_magic = cpu_to_le32(LMV_MAGIC_STRIPE);
1391 }
1392
1393 /**
1394  * Generate LMV EA.
1395  *
1396  * Generate LMV EA from the object passed as \a dt. The object must have
1397  * the stripes created and initialized.
1398  *
1399  * \param[in] env       execution environment
1400  * \param[in] dt        object
1401  * \param[out] lmv_buf  buffer storing generated LMV EA
1402  *
1403  * \retval              0 on success
1404  * \retval              negative if failed
1405  */
1406 static int lod_prep_lmv_md(const struct lu_env *env, struct dt_object *dt,
1407                            struct lu_buf *lmv_buf)
1408 {
1409         struct lod_thread_info  *info = lod_env_info(env);
1410         struct lod_device       *lod = lu2lod_dev(dt->do_lu.lo_dev);
1411         struct lod_object       *lo = lod_dt_obj(dt);
1412         struct lmv_mds_md_v1    *lmm1;
1413         int                     stripe_count;
1414         int                     type = LU_SEQ_RANGE_ANY;
1415         int                     rc;
1416         __u32                   mdtidx;
1417         ENTRY;
1418
1419         LASSERT(lo->ldo_dir_striped != 0);
1420         LASSERT(lo->ldo_stripenr > 0);
1421         stripe_count = lo->ldo_stripenr;
1422         /* Only store the LMV EA heahder on the disk. */
1423         if (info->lti_ea_store_size < sizeof(*lmm1)) {
1424                 rc = lod_ea_store_resize(info, sizeof(*lmm1));
1425                 if (rc != 0)
1426                         RETURN(rc);
1427         } else {
1428                 memset(info->lti_ea_store, 0, sizeof(*lmm1));
1429         }
1430
1431         lmm1 = (struct lmv_mds_md_v1 *)info->lti_ea_store;
1432         lmm1->lmv_magic = cpu_to_le32(LMV_MAGIC);
1433         lmm1->lmv_stripe_count = cpu_to_le32(stripe_count);
1434         lmm1->lmv_hash_type = cpu_to_le32(lo->ldo_dir_hash_type);
1435         rc = lod_fld_lookup(env, lod, lu_object_fid(&dt->do_lu),
1436                             &mdtidx, &type);
1437         if (rc != 0)
1438                 RETURN(rc);
1439
1440         lmm1->lmv_master_mdt_index = cpu_to_le32(mdtidx);
1441         lmv_buf->lb_buf = info->lti_ea_store;
1442         lmv_buf->lb_len = sizeof(*lmm1);
1443
1444         RETURN(rc);
1445 }
1446
1447 /**
1448  * Create in-core represenation for a striped directory.
1449  *
1450  * Parse the buffer containing LMV EA and instantiate LU objects
1451  * representing the stripe objects. The pointers to the objects are
1452  * stored in ldo_stripe field of \a lo. This function is used when
1453  * we need to access an already created object (i.e. load from a disk).
1454  *
1455  * \param[in] env       execution environment
1456  * \param[in] lo        lod object
1457  * \param[in] buf       buffer containing LMV EA
1458  *
1459  * \retval              0 on success
1460  * \retval              negative if failed
1461  */
1462 int lod_parse_dir_striping(const struct lu_env *env, struct lod_object *lo,
1463                            const struct lu_buf *buf)
1464 {
1465         struct lod_thread_info  *info = lod_env_info(env);
1466         struct lod_device       *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
1467         struct lod_tgt_descs    *ltd = &lod->lod_mdt_descs;
1468         struct dt_object        **stripe;
1469         union lmv_mds_md        *lmm = buf->lb_buf;
1470         struct lmv_mds_md_v1    *lmv1 = &lmm->lmv_md_v1;
1471         struct lu_fid           *fid = &info->lti_fid;
1472         unsigned int            i;
1473         int                     rc = 0;
1474         ENTRY;
1475
1476         if (le32_to_cpu(lmv1->lmv_hash_type) & LMV_HASH_FLAG_MIGRATION)
1477                 RETURN(0);
1478
1479         if (le32_to_cpu(lmv1->lmv_magic) == LMV_MAGIC_STRIPE) {
1480                 lo->ldo_dir_slave_stripe = 1;
1481                 RETURN(0);
1482         }
1483
1484         if (le32_to_cpu(lmv1->lmv_magic) != LMV_MAGIC_V1)
1485                 RETURN(-EINVAL);
1486
1487         if (le32_to_cpu(lmv1->lmv_stripe_count) < 1)
1488                 RETURN(0);
1489
1490         LASSERT(lo->ldo_stripe == NULL);
1491         OBD_ALLOC(stripe, sizeof(stripe[0]) *
1492                   (le32_to_cpu(lmv1->lmv_stripe_count)));
1493         if (stripe == NULL)
1494                 RETURN(-ENOMEM);
1495
1496         for (i = 0; i < le32_to_cpu(lmv1->lmv_stripe_count); i++) {
1497                 struct dt_device        *tgt_dt;
1498                 struct dt_object        *dto;
1499                 int                     type = LU_SEQ_RANGE_ANY;
1500                 __u32                   idx;
1501
1502                 fid_le_to_cpu(fid, &lmv1->lmv_stripe_fids[i]);
1503                 if (!fid_is_sane(fid))
1504                         GOTO(out, rc = -ESTALE);
1505
1506                 rc = lod_fld_lookup(env, lod, fid, &idx, &type);
1507                 if (rc != 0)
1508                         GOTO(out, rc);
1509
1510                 if (idx == lod2lu_dev(lod)->ld_site->ld_seq_site->ss_node_id) {
1511                         tgt_dt = lod->lod_child;
1512                 } else {
1513                         struct lod_tgt_desc     *tgt;
1514
1515                         tgt = LTD_TGT(ltd, idx);
1516                         if (tgt == NULL)
1517                                 GOTO(out, rc = -ESTALE);
1518                         tgt_dt = tgt->ltd_tgt;
1519                 }
1520
1521                 dto = dt_locate_at(env, tgt_dt, fid,
1522                                   lo->ldo_obj.do_lu.lo_dev->ld_site->ls_top_dev,
1523                                   NULL);
1524                 if (IS_ERR(dto))
1525                         GOTO(out, rc = PTR_ERR(dto));
1526
1527                 stripe[i] = dto;
1528         }
1529 out:
1530         lo->ldo_stripe = stripe;
1531         lo->ldo_stripenr = le32_to_cpu(lmv1->lmv_stripe_count);
1532         lo->ldo_stripes_allocated = le32_to_cpu(lmv1->lmv_stripe_count);
1533         if (rc != 0)
1534                 lod_object_free_striping(env, lo);
1535
1536         RETURN(rc);
1537 }
1538
1539 /**
1540  * Declare create a striped directory.
1541  *
1542  * Declare creating a striped directory with a given stripe pattern on the
1543  * specified MDTs. A striped directory is represented as a regular directory
1544  * - an index listing all the stripes. The stripes point back to the master
1545  * object with ".." and LinkEA. The master object gets LMV EA which
1546  * identifies it as a striped directory. The function allocates FIDs
1547  * for all stripes.
1548  *
1549  * \param[in] env       execution environment
1550  * \param[in] dt        object
1551  * \param[in] attr      attributes to initialize the objects with
1552  * \param[in] dof       type of objects to be created
1553  * \param[in] th        transaction handle
1554  *
1555  * \retval              0 on success
1556  * \retval              negative if failed
1557  */
1558 static int lod_dir_declare_create_stripes(const struct lu_env *env,
1559                                           struct dt_object *dt,
1560                                           struct lu_attr *attr,
1561                                           struct dt_object_format *dof,
1562                                           struct thandle *th)
1563 {
1564         struct lod_thread_info  *info = lod_env_info(env);
1565         struct lu_buf           lmv_buf;
1566         struct lu_buf           slave_lmv_buf;
1567         struct lmv_mds_md_v1    *lmm;
1568         struct lmv_mds_md_v1    *slave_lmm = NULL;
1569         struct dt_insert_rec    *rec = &info->lti_dt_rec;
1570         struct lod_object       *lo = lod_dt_obj(dt);
1571         int                     rc;
1572         __u32                   i;
1573         ENTRY;
1574
1575         rc = lod_prep_lmv_md(env, dt, &lmv_buf);
1576         if (rc != 0)
1577                 GOTO(out, rc);
1578         lmm = lmv_buf.lb_buf;
1579
1580         OBD_ALLOC_PTR(slave_lmm);
1581         if (slave_lmm == NULL)
1582                 GOTO(out, rc = -ENOMEM);
1583
1584         lod_prep_slave_lmv_md(slave_lmm, lmm);
1585         slave_lmv_buf.lb_buf = slave_lmm;
1586         slave_lmv_buf.lb_len = sizeof(*slave_lmm);
1587
1588         if (!dt_try_as_dir(env, dt_object_child(dt)))
1589                 GOTO(out, rc = -EINVAL);
1590
1591         rec->rec_type = S_IFDIR;
1592         for (i = 0; i < lo->ldo_stripenr; i++) {
1593                 struct dt_object        *dto = lo->ldo_stripe[i];
1594                 char                    *stripe_name = info->lti_key;
1595                 struct lu_name          *sname;
1596                 struct linkea_data       ldata          = { NULL };
1597                 struct lu_buf           linkea_buf;
1598
1599                 rc = lod_sub_object_declare_create(env, dto, attr, NULL,
1600                                                    dof, th);
1601                 if (rc != 0)
1602                         GOTO(out, rc);
1603
1604                 if (!dt_try_as_dir(env, dto))
1605                         GOTO(out, rc = -EINVAL);
1606
1607                 rc = lod_sub_object_declare_ref_add(env, dto, th);
1608                 if (rc != 0)
1609                         GOTO(out, rc);
1610
1611                 rec->rec_fid = lu_object_fid(&dto->do_lu);
1612                 rc = lod_sub_object_declare_insert(env, dto,
1613                                         (const struct dt_rec *)rec,
1614                                         (const struct dt_key *)dot, th);
1615                 if (rc != 0)
1616                         GOTO(out, rc);
1617
1618                 /* master stripe FID will be put to .. */
1619                 rec->rec_fid = lu_object_fid(&dt->do_lu);
1620                 rc = lod_sub_object_declare_insert(env, dto,
1621                                         (const struct dt_rec *)rec,
1622                                         (const struct dt_key *)dotdot,
1623                                         th);
1624                 if (rc != 0)
1625                         GOTO(out, rc);
1626
1627                 if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_SLAVE_LMV) ||
1628                     cfs_fail_val != i) {
1629                         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_LMV) &&
1630                             cfs_fail_val == i)
1631                                 slave_lmm->lmv_master_mdt_index =
1632                                                         cpu_to_le32(i + 1);
1633                         else
1634                                 slave_lmm->lmv_master_mdt_index =
1635                                                         cpu_to_le32(i);
1636                         rc = lod_sub_object_declare_xattr_set(env, dto,
1637                                         &slave_lmv_buf, XATTR_NAME_LMV, 0, th);
1638                         if (rc != 0)
1639                                 GOTO(out, rc);
1640                 }
1641
1642                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_NAME) &&
1643                     cfs_fail_val == i)
1644                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%u",
1645                                 PFID(lu_object_fid(&dto->do_lu)), i + 1);
1646                 else
1647                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%u",
1648                                 PFID(lu_object_fid(&dto->do_lu)), i);
1649
1650                 sname = lod_name_get(env, stripe_name, strlen(stripe_name));
1651                 rc = linkea_data_new(&ldata, &info->lti_linkea_buf);
1652                 if (rc != 0)
1653                         GOTO(out, rc);
1654
1655                 rc = linkea_add_buf(&ldata, sname, lu_object_fid(&dt->do_lu));
1656                 if (rc != 0)
1657                         GOTO(out, rc);
1658
1659                 linkea_buf.lb_buf = ldata.ld_buf->lb_buf;
1660                 linkea_buf.lb_len = ldata.ld_leh->leh_len;
1661                 rc = lod_sub_object_declare_xattr_set(env, dto, &linkea_buf,
1662                                           XATTR_NAME_LINK, 0, th);
1663                 if (rc != 0)
1664                         GOTO(out, rc);
1665
1666                 rec->rec_fid = lu_object_fid(&dto->do_lu);
1667                 rc = lod_sub_object_declare_insert(env, dt_object_child(dt),
1668                                        (const struct dt_rec *)rec,
1669                                        (const struct dt_key *)stripe_name,
1670                                        th);
1671                 if (rc != 0)
1672                         GOTO(out, rc);
1673
1674                 rc = lod_sub_object_declare_ref_add(env, dt_object_child(dt),
1675                                                     th);
1676                 if (rc != 0)
1677                         GOTO(out, rc);
1678         }
1679
1680         rc = lod_sub_object_declare_xattr_set(env, dt_object_child(dt),
1681                                 &lmv_buf, XATTR_NAME_LMV, 0, th);
1682         if (rc != 0)
1683                 GOTO(out, rc);
1684 out:
1685         if (slave_lmm != NULL)
1686                 OBD_FREE_PTR(slave_lmm);
1687
1688         RETURN(rc);
1689 }
1690
1691 static int lod_prep_md_striped_create(const struct lu_env *env,
1692                                       struct dt_object *dt,
1693                                       struct lu_attr *attr,
1694                                       const struct lmv_user_md_v1 *lum,
1695                                       struct dt_object_format *dof,
1696                                       struct thandle *th)
1697 {
1698         struct lod_device       *lod = lu2lod_dev(dt->do_lu.lo_dev);
1699         struct lod_tgt_descs    *ltd = &lod->lod_mdt_descs;
1700         struct lod_object       *lo = lod_dt_obj(dt);
1701         struct dt_object        **stripe;
1702         __u32                   stripe_count;
1703         int                     *idx_array;
1704         __u32                   master_index;
1705         int                     rc = 0;
1706         __u32                   i;
1707         __u32                   j;
1708         ENTRY;
1709
1710         /* The lum has been verifed in lod_verify_md_striping */
1711         LASSERT(le32_to_cpu(lum->lum_magic) == LMV_USER_MAGIC);
1712         LASSERT(le32_to_cpu(lum->lum_stripe_count) > 0);
1713
1714         stripe_count = le32_to_cpu(lum->lum_stripe_count);
1715
1716         OBD_ALLOC(idx_array, sizeof(idx_array[0]) * stripe_count);
1717         if (idx_array == NULL)
1718                 RETURN(-ENOMEM);
1719
1720         OBD_ALLOC(stripe, sizeof(stripe[0]) * stripe_count);
1721         if (stripe == NULL)
1722                 GOTO(out_free, rc = -ENOMEM);
1723
1724         /* Start index will be the master MDT */
1725         master_index = lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_node_id;
1726         idx_array[0] = master_index;
1727         for (i = 0; i < stripe_count; i++) {
1728                 struct lod_tgt_desc     *tgt = NULL;
1729                 struct dt_object        *dto;
1730                 struct lu_fid           fid = { 0 };
1731                 int                     idx;
1732                 struct lu_object_conf   conf = { 0 };
1733                 struct dt_device        *tgt_dt = NULL;
1734
1735                 /* Try to find next avaible target */
1736                 idx = idx_array[i];
1737                 for (j = 0; j < lod->lod_remote_mdt_count;
1738                      j++, idx = (idx + 1) % (lod->lod_remote_mdt_count + 1)) {
1739                         bool already_allocated = false;
1740                         __u32 k;
1741
1742                         CDEBUG(D_INFO, "try idx %d, mdt cnt %u, allocated %u\n",
1743                                idx, lod->lod_remote_mdt_count + 1, i);
1744                         if (idx == master_index) {
1745                                 /* Allocate the FID locally */
1746                                 rc = obd_fid_alloc(env, lod->lod_child_exp,
1747                                                    &fid, NULL);
1748                                 if (rc < 0)
1749                                         GOTO(out_put, rc);
1750                                 tgt_dt = lod->lod_child;
1751                                 break;
1752                         }
1753
1754                         /* Find next available target */
1755                         if (!cfs_bitmap_check(ltd->ltd_tgt_bitmap, idx))
1756                                 continue;
1757
1758                         if (likely(!OBD_FAIL_CHECK(OBD_FAIL_LARGE_STRIPE))) {
1759                                 /* check whether the idx already exists
1760                                  * in current allocated array */
1761                                 for (k = 0; k < i; k++) {
1762                                         if (idx_array[k] == idx) {
1763                                                 already_allocated = true;
1764                                                 break;
1765                                         }
1766                                 }
1767
1768                                 if (already_allocated)
1769                                         continue;
1770                         }
1771
1772                         /* check the status of the OSP */
1773                         tgt = LTD_TGT(ltd, idx);
1774                         if (tgt == NULL)
1775                                 continue;
1776
1777                         tgt_dt = tgt->ltd_tgt;
1778                         rc = dt_statfs(env, tgt_dt, NULL);
1779                         if (rc) {
1780                                 /* this OSP doesn't feel well */
1781                                 rc = 0;
1782                                 continue;
1783                         }
1784
1785                         rc = obd_fid_alloc(env, tgt->ltd_exp, &fid, NULL);
1786                         if (rc < 0) {
1787                                 rc = 0;
1788                                 continue;
1789                         }
1790
1791                         break;
1792                 }
1793
1794                 /* Can not allocate more stripes */
1795                 if (j == lod->lod_remote_mdt_count) {
1796                         CDEBUG(D_INFO, "%s: require stripes %u only get %d\n",
1797                                lod2obd(lod)->obd_name, stripe_count, i - 1);
1798                         break;
1799                 }
1800
1801                 CDEBUG(D_INFO, "Get idx %d, for stripe %d "DFID"\n",
1802                        idx, i, PFID(&fid));
1803                 idx_array[i] = idx;
1804                 /* Set the start index for next stripe allocation */
1805                 if (i < stripe_count - 1)
1806                         idx_array[i + 1] = (idx + 1) %
1807                                            (lod->lod_remote_mdt_count + 1);
1808                 /* tgt_dt and fid must be ready after search avaible OSP
1809                  * in the above loop */
1810                 LASSERT(tgt_dt != NULL);
1811                 LASSERT(fid_is_sane(&fid));
1812                 conf.loc_flags = LOC_F_NEW;
1813                 dto = dt_locate_at(env, tgt_dt, &fid,
1814                                    dt->do_lu.lo_dev->ld_site->ls_top_dev,
1815                                    &conf);
1816                 if (IS_ERR(dto))
1817                         GOTO(out_put, rc = PTR_ERR(dto));
1818                 stripe[i] = dto;
1819         }
1820
1821         lo->ldo_dir_striped = 1;
1822         lo->ldo_stripe = stripe;
1823         lo->ldo_stripenr = i;
1824         lo->ldo_stripes_allocated = stripe_count;
1825
1826         if (lo->ldo_stripenr == 0)
1827                 GOTO(out_put, rc = -ENOSPC);
1828
1829         rc = lod_dir_declare_create_stripes(env, dt, attr, dof, th);
1830         if (rc != 0)
1831                 GOTO(out_put, rc);
1832
1833 out_put:
1834         if (rc < 0) {
1835                 for (i = 0; i < stripe_count; i++)
1836                         if (stripe[i] != NULL)
1837                                 lu_object_put(env, &stripe[i]->do_lu);
1838                 OBD_FREE(stripe, sizeof(stripe[0]) * stripe_count);
1839                 lo->ldo_stripenr = 0;
1840                 lo->ldo_stripes_allocated = 0;
1841                 lo->ldo_stripe = NULL;
1842         }
1843
1844 out_free:
1845         OBD_FREE(idx_array, sizeof(idx_array[0]) * stripe_count);
1846
1847         RETURN(rc);
1848 }
1849
1850 /**
1851  * Declare create striped md object.
1852  *
1853  * The function declares intention to create a striped directory. This is a
1854  * wrapper for lod_prep_md_striped_create(). The only additional functionality
1855  * is to verify pattern \a lum_buf is good. Check that function for the details.
1856  *
1857  * \param[in] env       execution environment
1858  * \param[in] dt        object
1859  * \param[in] attr      attributes to initialize the objects with
1860  * \param[in] lum_buf   a pattern specifying the number of stripes and
1861  *                      MDT to start from
1862  * \param[in] dof       type of objects to be created
1863  * \param[in] th        transaction handle
1864  *
1865  * \retval              0 on success
1866  * \retval              negative if failed
1867  *
1868  */
1869 static int lod_declare_xattr_set_lmv(const struct lu_env *env,
1870                                      struct dt_object *dt,
1871                                      struct lu_attr *attr,
1872                                      const struct lu_buf *lum_buf,
1873                                      struct dt_object_format *dof,
1874                                      struct thandle *th)
1875 {
1876         struct lod_object       *lo = lod_dt_obj(dt);
1877         struct lod_device       *lod = lu2lod_dev(dt->do_lu.lo_dev);
1878         struct lmv_user_md_v1   *lum;
1879         int                     rc;
1880         ENTRY;
1881
1882         lum = lum_buf->lb_buf;
1883         LASSERT(lum != NULL);
1884
1885         CDEBUG(D_INFO, "lum magic = %x count = %u offset = %d\n",
1886                le32_to_cpu(lum->lum_magic), le32_to_cpu(lum->lum_stripe_count),
1887                (int)le32_to_cpu(lum->lum_stripe_offset));
1888
1889         if (le32_to_cpu(lum->lum_stripe_count) == 0)
1890                 GOTO(out, rc = 0);
1891
1892         rc = lod_verify_md_striping(lod, lum);
1893         if (rc != 0)
1894                 GOTO(out, rc);
1895
1896         /* prepare dir striped objects */
1897         rc = lod_prep_md_striped_create(env, dt, attr, lum, dof, th);
1898         if (rc != 0) {
1899                 /* failed to create striping, let's reset
1900                  * config so that others don't get confused */
1901                 lod_object_free_striping(env, lo);
1902                 GOTO(out, rc);
1903         }
1904 out:
1905         RETURN(rc);
1906 }
1907
1908 /**
1909  * Implementation of dt_object_operations::do_declare_xattr_set.
1910  *
1911  * Used with regular (non-striped) objects. Basically it
1912  * initializes the striping information and applies the
1913  * change to all the stripes.
1914  *
1915  * \see dt_object_operations::do_declare_xattr_set() in the API description
1916  * for details.
1917  */
1918 static int lod_dir_declare_xattr_set(const struct lu_env *env,
1919                                      struct dt_object *dt,
1920                                      const struct lu_buf *buf,
1921                                      const char *name, int fl,
1922                                      struct thandle *th)
1923 {
1924         struct dt_object        *next = dt_object_child(dt);
1925         struct lod_device       *d = lu2lod_dev(dt->do_lu.lo_dev);
1926         struct lod_object       *lo = lod_dt_obj(dt);
1927         int                     i;
1928         int                     rc;
1929         ENTRY;
1930
1931         if (strcmp(name, XATTR_NAME_DEFAULT_LMV) == 0) {
1932                 struct lmv_user_md_v1 *lum;
1933
1934                 LASSERT(buf != NULL && buf->lb_buf != NULL);
1935                 lum = buf->lb_buf;
1936                 rc = lod_verify_md_striping(d, lum);
1937                 if (rc != 0)
1938                         RETURN(rc);
1939         }
1940
1941         rc = lod_sub_object_declare_xattr_set(env, next, buf, name, fl, th);
1942         if (rc != 0)
1943                 RETURN(rc);
1944
1945         /* Note: Do not set LinkEA on sub-stripes, otherwise
1946          * it will confuse the fid2path process(see mdt_path_current()).
1947          * The linkEA between master and sub-stripes is set in
1948          * lod_xattr_set_lmv(). */
1949         if (strcmp(name, XATTR_NAME_LINK) == 0)
1950                 RETURN(0);
1951
1952         /* set xattr to each stripes, if needed */
1953         rc = lod_load_striping(env, lo);
1954         if (rc != 0)
1955                 RETURN(rc);
1956
1957         if (lo->ldo_stripenr == 0)
1958                 RETURN(0);
1959
1960         for (i = 0; i < lo->ldo_stripenr; i++) {
1961                 LASSERT(lo->ldo_stripe[i]);
1962
1963                 rc = lod_sub_object_declare_xattr_set(env, lo->ldo_stripe[i],
1964                                                 buf, name, fl, th);
1965                 if (rc != 0)
1966                         break;
1967         }
1968
1969         RETURN(rc);
1970 }
1971
1972 /**
1973  * Reset parent FID on OST object
1974  *
1975  * Replace parent FID with @dt object FID, which is only called during migration
1976  * to reset the parent FID after the MDT object is migrated to the new MDT, i.e.
1977  * the FID is changed.
1978  *
1979  * \param[in] env execution environment
1980  * \param[in] dt dt_object whose stripes's parent FID will be reset
1981  * \parem[in] th thandle
1982  * \param[in] declare if it is declare
1983  *
1984  * \retval      0 if reset succeeds
1985  * \retval      negative errno if reset fais
1986  */
1987 static int lod_object_replace_parent_fid(const struct lu_env *env,
1988                                          struct dt_object *dt,
1989                                          struct thandle *th, bool declare)
1990 {
1991         struct lod_object *lo = lod_dt_obj(dt);
1992         struct lod_thread_info  *info = lod_env_info(env);
1993         struct lu_buf *buf = &info->lti_buf;
1994         struct filter_fid *ff;
1995         int i, rc;
1996         ENTRY;
1997
1998         LASSERT(S_ISREG(dt->do_lu.lo_header->loh_attr));
1999
2000         /* set xattr to each stripes, if needed */
2001         rc = lod_load_striping(env, lo);
2002         if (rc != 0)
2003                 RETURN(rc);
2004
2005         if (lo->ldo_stripenr == 0)
2006                 RETURN(0);
2007
2008         if (info->lti_ea_store_size < sizeof(*ff)) {
2009                 rc = lod_ea_store_resize(info, sizeof(*ff));
2010                 if (rc != 0)
2011                         RETURN(rc);
2012         }
2013
2014         buf->lb_buf = info->lti_ea_store;
2015         buf->lb_len = info->lti_ea_store_size;
2016
2017         for (i = 0; i < lo->ldo_stripenr; i++) {
2018                 if (lo->ldo_stripe[i] == NULL)
2019                         continue;
2020
2021                 rc = dt_xattr_get(env, lo->ldo_stripe[i], buf,
2022                                   XATTR_NAME_FID);
2023                 if (rc < 0) {
2024                         rc = 0;
2025                         continue;
2026                 }
2027
2028                 ff = buf->lb_buf;
2029                 fid_le_to_cpu(&ff->ff_parent, &ff->ff_parent);
2030                 ff->ff_parent.f_seq = lu_object_fid(&dt->do_lu)->f_seq;
2031                 ff->ff_parent.f_oid = lu_object_fid(&dt->do_lu)->f_oid;
2032                 fid_cpu_to_le(&ff->ff_parent, &ff->ff_parent);
2033
2034                 if (declare) {
2035                         rc = lod_sub_object_declare_xattr_set(env,
2036                                                 lo->ldo_stripe[i], buf,
2037                                                 XATTR_NAME_FID,
2038                                                 LU_XATTR_REPLACE, th);
2039                 } else {
2040                         rc = lod_sub_object_xattr_set(env, lo->ldo_stripe[i],
2041                                                       buf, XATTR_NAME_FID,
2042                                                       LU_XATTR_REPLACE, th);
2043                 }
2044                 if (rc < 0)
2045                         break;
2046         }
2047
2048         RETURN(rc);
2049 }
2050
2051 /**
2052  * Implementation of dt_object_operations::do_declare_xattr_set.
2053  *
2054  * \see dt_object_operations::do_declare_xattr_set() in the API description
2055  * for details.
2056  *
2057  * the extension to the API:
2058  *   - declaring LOVEA requests striping creation
2059  *   - LU_XATTR_REPLACE means layout swap
2060  */
2061 static int lod_declare_xattr_set(const struct lu_env *env,
2062                                  struct dt_object *dt,
2063                                  const struct lu_buf *buf,
2064                                  const char *name, int fl,
2065                                  struct thandle *th)
2066 {
2067         struct dt_object *next = dt_object_child(dt);
2068         struct lu_attr   *attr = &lod_env_info(env)->lti_attr;
2069         __u32             mode;
2070         int               rc;
2071         ENTRY;
2072
2073         /*
2074          * allow to declare predefined striping on a new (!mode) object
2075          * which is supposed to be replay of regular file creation
2076          * (when LOV setting is declared)
2077          * LU_XATTR_REPLACE is set to indicate a layout swap
2078          */
2079         mode = dt->do_lu.lo_header->loh_attr & S_IFMT;
2080         if ((S_ISREG(mode) || mode == 0) && strcmp(name, XATTR_NAME_LOV) == 0 &&
2081              !(fl & LU_XATTR_REPLACE)) {
2082                 /*
2083                  * this is a request to manipulate object's striping
2084                  */
2085                 if (dt_object_exists(dt)) {
2086                         rc = dt_attr_get(env, next, attr);
2087                         if (rc)
2088                                 RETURN(rc);
2089                 } else {
2090                         memset(attr, 0, sizeof(*attr));
2091                         attr->la_valid = LA_TYPE | LA_MODE;
2092                         attr->la_mode = S_IFREG;
2093                 }
2094                 rc = lod_declare_striped_object(env, dt, attr, buf, th);
2095         } else if (S_ISDIR(mode)) {
2096                 rc = lod_dir_declare_xattr_set(env, dt, buf, name, fl, th);
2097         } else if (strcmp(name, XATTR_NAME_FID) == 0) {
2098                 rc = lod_object_replace_parent_fid(env, dt, th, true);
2099         } else {
2100                 rc = lod_sub_object_declare_xattr_set(env, next, buf, name,
2101                                                       fl, th);
2102         }
2103
2104         RETURN(rc);
2105 }
2106
2107 /**
2108  * Resets cached default striping in the object.
2109  *
2110  * \param[in] lo        object
2111  */
2112 static void lod_lov_stripe_cache_clear(struct lod_object *lo)
2113 {
2114         lo->ldo_def_striping_set = 0;
2115         lo->ldo_def_striping_cached = 0;
2116         lod_object_set_pool(lo, NULL);
2117         lo->ldo_def_stripe_size = 0;
2118         lo->ldo_def_stripenr = 0;
2119         if (lo->ldo_dir_stripe != NULL)
2120                 lo->ldo_dir_def_striping_cached = 0;
2121 }
2122
2123 /**
2124  * Apply xattr changes to the object.
2125  *
2126  * Applies xattr changes to the object and the stripes if the latter exist.
2127  *
2128  * \param[in] env       execution environment
2129  * \param[in] dt        object
2130  * \param[in] buf       buffer pointing to the new value of xattr
2131  * \param[in] name      name of xattr
2132  * \param[in] fl        flags
2133  * \param[in] th        transaction handle
2134  *
2135  * \retval              0 on success
2136  * \retval              negative if failed
2137  */
2138 static int lod_xattr_set_internal(const struct lu_env *env,
2139                                   struct dt_object *dt,
2140                                   const struct lu_buf *buf,
2141                                   const char *name, int fl,
2142                                   struct thandle *th)
2143 {
2144         struct dt_object        *next = dt_object_child(dt);
2145         struct lod_object       *lo = lod_dt_obj(dt);
2146         int                     rc;
2147         int                     i;
2148         ENTRY;
2149
2150         rc = lod_sub_object_xattr_set(env, next, buf, name, fl, th);
2151         if (rc != 0 || !S_ISDIR(dt->do_lu.lo_header->loh_attr))
2152                 RETURN(rc);
2153
2154         /* Note: Do not set LinkEA on sub-stripes, otherwise
2155          * it will confuse the fid2path process(see mdt_path_current()).
2156          * The linkEA between master and sub-stripes is set in
2157          * lod_xattr_set_lmv(). */
2158         if (lo->ldo_stripenr == 0 || strcmp(name, XATTR_NAME_LINK) == 0)
2159                 RETURN(0);
2160
2161         for (i = 0; i < lo->ldo_stripenr; i++) {
2162                 LASSERT(lo->ldo_stripe[i]);
2163
2164                 rc = lod_sub_object_xattr_set(env, lo->ldo_stripe[i], buf, name,
2165                                               fl, th);
2166                 if (rc != 0)
2167                         break;
2168         }
2169
2170         RETURN(rc);
2171 }
2172
2173 /**
2174  * Delete an extended attribute.
2175  *
2176  * Deletes specified xattr from the object and the stripes if the latter exist.
2177  *
2178  * \param[in] env       execution environment
2179  * \param[in] dt        object
2180  * \param[in] name      name of xattr
2181  * \param[in] th        transaction handle
2182  *
2183  * \retval              0 on success
2184  * \retval              negative if failed
2185  */
2186 static int lod_xattr_del_internal(const struct lu_env *env,
2187                                   struct dt_object *dt,
2188                                   const char *name, struct thandle *th)
2189 {
2190         struct dt_object        *next = dt_object_child(dt);
2191         struct lod_object       *lo = lod_dt_obj(dt);
2192         int                     rc;
2193         int                     i;
2194         ENTRY;
2195
2196         rc = lod_sub_object_xattr_del(env, next, name, th);
2197         if (rc != 0 || !S_ISDIR(dt->do_lu.lo_header->loh_attr))
2198                 RETURN(rc);
2199
2200         if (lo->ldo_stripenr == 0)
2201                 RETURN(rc);
2202
2203         for (i = 0; i < lo->ldo_stripenr; i++) {
2204                 LASSERT(lo->ldo_stripe[i]);
2205
2206                 rc = lod_sub_object_xattr_del(env, lo->ldo_stripe[i], name,
2207                                               th);
2208                 if (rc != 0)
2209                         break;
2210         }
2211
2212         RETURN(rc);
2213 }
2214
2215 /**
2216  * Set default striping on a directory.
2217  *
2218  * Sets specified striping on a directory object unless it matches the default
2219  * striping (LOVEA_DELETE_VALUES() macro). In the latter case remove existing
2220  * EA. This striping will be used when regular file is being created in this
2221  * directory.
2222  *
2223  * \param[in] env       execution environment
2224  * \param[in] dt        the striped object
2225  * \param[in] buf       buffer with the striping
2226  * \param[in] name      name of EA
2227  * \param[in] fl        xattr flag (see OSD API description)
2228  * \param[in] th        transaction handle
2229  *
2230  * \retval              0 on success
2231  * \retval              negative if failed
2232  */
2233 static int lod_xattr_set_lov_on_dir(const struct lu_env *env,
2234                                     struct dt_object *dt,
2235                                     const struct lu_buf *buf,
2236                                     const char *name, int fl,
2237                                     struct thandle *th)
2238 {
2239         struct lod_device       *d = lu2lod_dev(dt->do_lu.lo_dev);
2240         struct lod_object       *l = lod_dt_obj(dt);
2241         struct lov_user_md_v1   *lum;
2242         struct lov_user_md_v3   *v3 = NULL;
2243         const char              *pool_name = NULL;
2244         int                      rc;
2245         ENTRY;
2246
2247         /* If it is striped dir, we should clear the stripe cache for
2248          * slave stripe as well, but there are no effective way to
2249          * notify the LOD on the slave MDT, so we do not cache stripe
2250          * information for slave stripe for now. XXX*/
2251         lod_lov_stripe_cache_clear(l);
2252         LASSERT(buf != NULL && buf->lb_buf != NULL);
2253         lum = buf->lb_buf;
2254
2255         rc = lod_verify_striping(d, buf, false);
2256         if (rc)
2257                 RETURN(rc);
2258
2259         if (lum->lmm_magic == LOV_USER_MAGIC_V3) {
2260                 v3 = buf->lb_buf;
2261                 if (v3->lmm_pool_name[0] != '\0')
2262                         pool_name = v3->lmm_pool_name;
2263         }
2264
2265         /* if { size, offset, count } = { 0, -1, 0 } and no pool
2266          * (i.e. all default values specified) then delete default
2267          * striping from dir. */
2268         CDEBUG(D_OTHER,
2269                 "set default striping: sz %u # %u offset %d %s %s\n",
2270                 (unsigned)lum->lmm_stripe_size,
2271                 (unsigned)lum->lmm_stripe_count,
2272                 (int)lum->lmm_stripe_offset,
2273                 v3 ? "from" : "", v3 ? v3->lmm_pool_name : "");
2274
2275         if (LOVEA_DELETE_VALUES(lum->lmm_stripe_size, lum->lmm_stripe_count,
2276                                 lum->lmm_stripe_offset, pool_name)) {
2277                 rc = lod_xattr_del_internal(env, dt, name, th);
2278                 if (rc == -ENODATA)
2279                         rc = 0;
2280         } else {
2281                 rc = lod_xattr_set_internal(env, dt, buf, name, fl, th);
2282         }
2283
2284         RETURN(rc);
2285 }
2286
2287 /**
2288  * Set default striping on a directory object.
2289  *
2290  * Sets specified striping on a directory object unless it matches the default
2291  * striping (LOVEA_DELETE_VALUES() macro). In the latter case remove existing
2292  * EA. This striping will be used when a new directory is being created in the
2293  * directory.
2294  *
2295  * \param[in] env       execution environment
2296  * \param[in] dt        the striped object
2297  * \param[in] buf       buffer with the striping
2298  * \param[in] name      name of EA
2299  * \param[in] fl        xattr flag (see OSD API description)
2300  * \param[in] th        transaction handle
2301  *
2302  * \retval              0 on success
2303  * \retval              negative if failed
2304  */
2305 static int lod_xattr_set_default_lmv_on_dir(const struct lu_env *env,
2306                                             struct dt_object *dt,
2307                                             const struct lu_buf *buf,
2308                                             const char *name, int fl,
2309                                             struct thandle *th)
2310 {
2311         struct lod_object       *l = lod_dt_obj(dt);
2312         struct lmv_user_md_v1   *lum;
2313         int                      rc;
2314         ENTRY;
2315
2316         LASSERT(buf != NULL && buf->lb_buf != NULL);
2317         lum = buf->lb_buf;
2318
2319         CDEBUG(D_OTHER, "set default stripe_count # %u stripe_offset %d\n",
2320               le32_to_cpu(lum->lum_stripe_count),
2321               (int)le32_to_cpu(lum->lum_stripe_offset));
2322
2323         if (LMVEA_DELETE_VALUES((le32_to_cpu(lum->lum_stripe_count)),
2324                                  le32_to_cpu(lum->lum_stripe_offset)) &&
2325                                 le32_to_cpu(lum->lum_magic) == LMV_USER_MAGIC) {
2326                 rc = lod_xattr_del_internal(env, dt, name, th);
2327                 if (rc == -ENODATA)
2328                         rc = 0;
2329         } else {
2330                 rc = lod_xattr_set_internal(env, dt, buf, name, fl, th);
2331                 if (rc != 0)
2332                         RETURN(rc);
2333         }
2334
2335         /* Update default stripe cache */
2336         if (l->ldo_dir_stripe == NULL) {
2337                 OBD_ALLOC_PTR(l->ldo_dir_stripe);
2338                 if (l->ldo_dir_stripe == NULL)
2339                         RETURN(-ENOMEM);
2340         }
2341
2342         l->ldo_dir_def_striping_cached = 0;
2343         RETURN(rc);
2344 }
2345
2346 /**
2347  * Turn directory into a striped directory.
2348  *
2349  * During replay the client sends the striping created before MDT
2350  * failure, then the layer above LOD sends this defined striping
2351  * using ->do_xattr_set(), so LOD uses this method to replay creation
2352  * of the stripes. Notice the original information for the striping
2353  * (#stripes, FIDs, etc) was transferred in declare path.
2354  *
2355  * \param[in] env       execution environment
2356  * \param[in] dt        the striped object
2357  * \param[in] buf       not used currently
2358  * \param[in] name      not used currently
2359  * \param[in] fl        xattr flag (see OSD API description)
2360  * \param[in] th        transaction handle
2361  *
2362  * \retval              0 on success
2363  * \retval              negative if failed
2364  */
2365 static int lod_xattr_set_lmv(const struct lu_env *env, struct dt_object *dt,
2366                              const struct lu_buf *buf, const char *name,
2367                              int fl, struct thandle *th)
2368 {
2369         struct lod_object       *lo = lod_dt_obj(dt);
2370         struct lod_thread_info  *info = lod_env_info(env);
2371         struct lu_attr          *attr = &info->lti_attr;
2372         struct dt_object_format *dof = &info->lti_format;
2373         struct lu_buf           lmv_buf;
2374         struct lu_buf           slave_lmv_buf;
2375         struct lmv_mds_md_v1    *lmm;
2376         struct lmv_mds_md_v1    *slave_lmm = NULL;
2377         struct dt_insert_rec    *rec = &info->lti_dt_rec;
2378         int                     i;
2379         int                     rc;
2380         ENTRY;
2381
2382         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr))
2383                 RETURN(-ENOTDIR);
2384
2385         /* The stripes are supposed to be allocated in declare phase,
2386          * if there are no stripes being allocated, it will skip */
2387         if (lo->ldo_stripenr == 0)
2388                 RETURN(0);
2389
2390         rc = dt_attr_get(env, dt_object_child(dt), attr);
2391         if (rc != 0)
2392                 RETURN(rc);
2393
2394         attr->la_valid = LA_ATIME | LA_MTIME | LA_CTIME |
2395                          LA_MODE | LA_UID | LA_GID | LA_TYPE;
2396         dof->dof_type = DFT_DIR;
2397
2398         rc = lod_prep_lmv_md(env, dt, &lmv_buf);
2399         if (rc != 0)
2400                 RETURN(rc);
2401         lmm = lmv_buf.lb_buf;
2402
2403         OBD_ALLOC_PTR(slave_lmm);
2404         if (slave_lmm == NULL)
2405                 RETURN(-ENOMEM);
2406
2407         lod_prep_slave_lmv_md(slave_lmm, lmm);
2408         slave_lmv_buf.lb_buf = slave_lmm;
2409         slave_lmv_buf.lb_len = sizeof(*slave_lmm);
2410
2411         rec->rec_type = S_IFDIR;
2412         for (i = 0; i < lo->ldo_stripenr; i++) {
2413                 struct dt_object *dto;
2414                 char             *stripe_name = info->lti_key;
2415                 struct lu_name          *sname;
2416                 struct linkea_data       ldata          = { NULL };
2417                 struct lu_buf            linkea_buf;
2418
2419                 dto = lo->ldo_stripe[i];
2420
2421                 dt_write_lock(env, dto, MOR_TGT_CHILD);
2422                 rc = lod_sub_object_create(env, dto, attr, NULL, dof,
2423                                            th);
2424                 if (rc != 0) {
2425                         dt_write_unlock(env, dto);
2426                         GOTO(out, rc);
2427                 }
2428
2429                 rc = lod_sub_object_ref_add(env, dto, th);
2430                 dt_write_unlock(env, dto);
2431                 if (rc != 0)
2432                         GOTO(out, rc);
2433
2434                 rec->rec_fid = lu_object_fid(&dto->do_lu);
2435                 rc = lod_sub_object_index_insert(env, dto,
2436                                 (const struct dt_rec *)rec,
2437                                 (const struct dt_key *)dot, th, 0);
2438                 if (rc != 0)
2439                         GOTO(out, rc);
2440
2441                 rec->rec_fid = lu_object_fid(&dt->do_lu);
2442                 rc = lod_sub_object_index_insert(env, dto, (struct dt_rec *)rec,
2443                                (const struct dt_key *)dotdot, th, 0);
2444                 if (rc != 0)
2445                         GOTO(out, rc);
2446
2447                 if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_SLAVE_LMV) ||
2448                     cfs_fail_val != i) {
2449                         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_LMV) &&
2450                             cfs_fail_val == i)
2451                                 slave_lmm->lmv_master_mdt_index =
2452                                                         cpu_to_le32(i + 1);
2453                         else
2454                                 slave_lmm->lmv_master_mdt_index =
2455                                                         cpu_to_le32(i);
2456
2457                         rc = lod_sub_object_xattr_set(env, dto, &slave_lmv_buf,
2458                                                       XATTR_NAME_LMV, fl, th);
2459                         if (rc != 0)
2460                                 GOTO(out, rc);
2461                 }
2462
2463                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_NAME) &&
2464                     cfs_fail_val == i)
2465                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
2466                                  PFID(lu_object_fid(&dto->do_lu)), i + 1);
2467                 else
2468                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
2469                                  PFID(lu_object_fid(&dto->do_lu)), i);
2470
2471                 sname = lod_name_get(env, stripe_name, strlen(stripe_name));
2472                 rc = linkea_data_new(&ldata, &info->lti_linkea_buf);
2473                 if (rc != 0)
2474                         GOTO(out, rc);
2475
2476                 rc = linkea_add_buf(&ldata, sname, lu_object_fid(&dt->do_lu));
2477                 if (rc != 0)
2478                         GOTO(out, rc);
2479
2480                 linkea_buf.lb_buf = ldata.ld_buf->lb_buf;
2481                 linkea_buf.lb_len = ldata.ld_leh->leh_len;
2482                 rc = lod_sub_object_xattr_set(env, dto, &linkea_buf,
2483                                         XATTR_NAME_LINK, 0, th);
2484                 if (rc != 0)
2485                         GOTO(out, rc);
2486
2487                 rec->rec_fid = lu_object_fid(&dto->do_lu);
2488                 rc = lod_sub_object_index_insert(env, dt_object_child(dt),
2489                                (const struct dt_rec *)rec,
2490                                (const struct dt_key *)stripe_name, th, 0);
2491                 if (rc != 0)
2492                         GOTO(out, rc);
2493
2494                 rc = lod_sub_object_ref_add(env, dt_object_child(dt), th);
2495                 if (rc != 0)
2496                         GOTO(out, rc);
2497         }
2498
2499         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MASTER_LMV))
2500                 rc = lod_sub_object_xattr_set(env, dt_object_child(dt),
2501                                               &lmv_buf, XATTR_NAME_LMV, fl, th);
2502 out:
2503         if (slave_lmm != NULL)
2504                 OBD_FREE_PTR(slave_lmm);
2505
2506         RETURN(rc);
2507 }
2508
2509 /**
2510  * Helper function to declare/execute creation of a striped directory
2511  *
2512  * Called in declare/create object path, prepare striping for a directory
2513  * and prepare defaults data striping for the objects to be created in
2514  * that directory. Notice the function calls "declaration" or "execution"
2515  * methods depending on \a declare param. This is a consequence of the
2516  * current approach while we don't have natural distributed transactions:
2517  * we basically execute non-local updates in the declare phase. So, the
2518  * arguments for the both phases are the same and this is the reason for
2519  * this function to exist.
2520  *
2521  * \param[in] env       execution environment
2522  * \param[in] dt        object
2523  * \param[in] attr      attributes the stripes will be created with
2524  * \param[in] dof       format of stripes (see OSD API description)
2525  * \param[in] th        transaction handle
2526  * \param[in] declare   where to call "declare" or "execute" methods
2527  *
2528  * \retval              0 on success
2529  * \retval              negative if failed
2530  */
2531 static int lod_dir_striping_create_internal(const struct lu_env *env,
2532                                             struct dt_object *dt,
2533                                             struct lu_attr *attr,
2534                                             struct dt_object_format *dof,
2535                                             struct thandle *th,
2536                                             bool declare)
2537 {
2538         struct lod_thread_info  *info = lod_env_info(env);
2539         struct lod_object       *lo = lod_dt_obj(dt);
2540         int                     rc;
2541         ENTRY;
2542
2543         if (!LMVEA_DELETE_VALUES(lo->ldo_stripenr,
2544                                  lo->ldo_dir_stripe_offset)) {
2545                 struct lmv_user_md_v1 *v1 = info->lti_ea_store;
2546                 int stripe_count = lo->ldo_stripenr;
2547
2548                 if (info->lti_ea_store_size < sizeof(*v1)) {
2549                         rc = lod_ea_store_resize(info, sizeof(*v1));
2550                         if (rc != 0)
2551                                 RETURN(rc);
2552                         v1 = info->lti_ea_store;
2553                 }
2554
2555                 memset(v1, 0, sizeof(*v1));
2556                 v1->lum_magic = cpu_to_le32(LMV_USER_MAGIC);
2557                 v1->lum_stripe_count = cpu_to_le32(stripe_count);
2558                 v1->lum_stripe_offset =
2559                                 cpu_to_le32(lo->ldo_dir_stripe_offset);
2560
2561                 info->lti_buf.lb_buf = v1;
2562                 info->lti_buf.lb_len = sizeof(*v1);
2563
2564                 if (declare)
2565                         rc = lod_declare_xattr_set_lmv(env, dt, attr,
2566                                                        &info->lti_buf, dof, th);
2567                 else
2568                         rc = lod_xattr_set_lmv(env, dt, &info->lti_buf,
2569                                                XATTR_NAME_LMV, 0, th);
2570                 if (rc != 0)
2571                         RETURN(rc);
2572         }
2573
2574         /* Transfer default LMV striping from the parent */
2575         if (lo->ldo_dir_def_striping_set &&
2576             !LMVEA_DELETE_VALUES(lo->ldo_dir_def_stripenr,
2577                                  lo->ldo_dir_def_stripe_offset)) {
2578                 struct lmv_user_md_v1 *v1 = info->lti_ea_store;
2579                 int def_stripe_count = lo->ldo_dir_def_stripenr;
2580
2581                 if (info->lti_ea_store_size < sizeof(*v1)) {
2582                         rc = lod_ea_store_resize(info, sizeof(*v1));
2583                         if (rc != 0)
2584                                 RETURN(rc);
2585                         v1 = info->lti_ea_store;
2586                 }
2587
2588                 memset(v1, 0, sizeof(*v1));
2589                 v1->lum_magic = cpu_to_le32(LMV_USER_MAGIC);
2590                 v1->lum_stripe_count = cpu_to_le32(def_stripe_count);
2591                 v1->lum_stripe_offset =
2592                                 cpu_to_le32(lo->ldo_dir_def_stripe_offset);
2593                 v1->lum_hash_type =
2594                                 cpu_to_le32(lo->ldo_dir_def_hash_type);
2595
2596                 info->lti_buf.lb_buf = v1;
2597                 info->lti_buf.lb_len = sizeof(*v1);
2598                 if (declare)
2599                         rc = lod_dir_declare_xattr_set(env, dt, &info->lti_buf,
2600                                                        XATTR_NAME_DEFAULT_LMV,
2601                                                        0, th);
2602                 else
2603                         rc = lod_xattr_set_default_lmv_on_dir(env, dt,
2604                                                   &info->lti_buf,
2605                                                   XATTR_NAME_DEFAULT_LMV, 0,
2606                                                   th);
2607                 if (rc != 0)
2608                         RETURN(rc);
2609         }
2610
2611         /* Transfer default LOV striping from the parent */
2612         if (lo->ldo_def_striping_set &&
2613             !LOVEA_DELETE_VALUES(lo->ldo_def_stripe_size,
2614                                  lo->ldo_def_stripenr,
2615                                  lo->ldo_def_stripe_offset,
2616                                  lo->ldo_pool)) {
2617                 struct lov_user_md_v3 *v3 = info->lti_ea_store;
2618
2619                 if (info->lti_ea_store_size < sizeof(*v3)) {
2620                         rc = lod_ea_store_resize(info, sizeof(*v3));
2621                         if (rc != 0)
2622                                 RETURN(rc);
2623                         v3 = info->lti_ea_store;
2624                 }
2625
2626                 memset(v3, 0, sizeof(*v3));
2627                 v3->lmm_magic = cpu_to_le32(LOV_USER_MAGIC_V3);
2628                 v3->lmm_stripe_count = cpu_to_le16(lo->ldo_def_stripenr);
2629                 v3->lmm_stripe_offset = cpu_to_le16(lo->ldo_def_stripe_offset);
2630                 v3->lmm_stripe_size = cpu_to_le32(lo->ldo_def_stripe_size);
2631                 if (lo->ldo_pool != NULL)
2632                         strlcpy(v3->lmm_pool_name, lo->ldo_pool,
2633                                 sizeof(v3->lmm_pool_name));
2634
2635                 info->lti_buf.lb_buf = v3;
2636                 info->lti_buf.lb_len = sizeof(*v3);
2637
2638                 if (declare)
2639                         rc = lod_dir_declare_xattr_set(env, dt, &info->lti_buf,
2640                                                        XATTR_NAME_LOV, 0, th);
2641                 else
2642                         rc = lod_xattr_set_lov_on_dir(env, dt, &info->lti_buf,
2643                                                       XATTR_NAME_LOV, 0, th);
2644                 if (rc != 0)
2645                         RETURN(rc);
2646         }
2647
2648         RETURN(0);
2649 }
2650
2651 static int lod_declare_dir_striping_create(const struct lu_env *env,
2652                                            struct dt_object *dt,
2653                                            struct lu_attr *attr,
2654                                            struct dt_object_format *dof,
2655                                            struct thandle *th)
2656 {
2657         return lod_dir_striping_create_internal(env, dt, attr, dof, th, true);
2658 }
2659
2660 static int lod_dir_striping_create(const struct lu_env *env,
2661                                    struct dt_object *dt,
2662                                    struct lu_attr *attr,
2663                                    struct dt_object_format *dof,
2664                                    struct thandle *th)
2665 {
2666         struct lod_object *lo = lod_dt_obj(dt);
2667         int rc;
2668
2669         rc = lod_dir_striping_create_internal(env, dt, attr, dof, th, false);
2670         if (rc == 0)
2671                 lo->ldo_striping_cached = 1;
2672
2673         return rc;
2674 }
2675
2676 /**
2677  * Implementation of dt_object_operations::do_xattr_set.
2678  *
2679  * Sets specified extended attribute on the object. Three types of EAs are
2680  * special:
2681  *   LOV EA - stores striping for a regular file or default striping (when set
2682  *            on a directory)
2683  *   LMV EA - stores a marker for the striped directories
2684  *   DMV EA - stores default directory striping
2685  *
2686  * When striping is applied to a non-striped existing object (this is called
2687  * late striping), then LOD notices the caller wants to turn the object into a
2688  * striped one. The stripe objects are created and appropriate EA is set:
2689  * LOV EA storing all the stripes directly or LMV EA storing just a small header
2690  * with striping configuration.
2691  *
2692  * \see dt_object_operations::do_xattr_set() in the API description for details.
2693  */
2694 static int lod_xattr_set(const struct lu_env *env,
2695                          struct dt_object *dt, const struct lu_buf *buf,
2696                          const char *name, int fl, struct thandle *th)
2697 {
2698         struct dt_object        *next = dt_object_child(dt);
2699         int                      rc;
2700         ENTRY;
2701
2702         if (S_ISDIR(dt->do_lu.lo_header->loh_attr) &&
2703             strcmp(name, XATTR_NAME_LMV) == 0) {
2704                 struct lmv_mds_md_v1 *lmm = buf->lb_buf;
2705
2706                 if (lmm != NULL && le32_to_cpu(lmm->lmv_hash_type) &
2707                                                 LMV_HASH_FLAG_MIGRATION)
2708                         rc = lod_sub_object_xattr_set(env, next, buf, name, fl,
2709                                                       th);
2710                 else
2711                         rc = lod_dir_striping_create(env, dt, NULL, NULL, th);
2712
2713                 RETURN(rc);
2714         }
2715
2716         if (S_ISDIR(dt->do_lu.lo_header->loh_attr) &&
2717             strcmp(name, XATTR_NAME_LOV) == 0) {
2718                 /* default LOVEA */
2719                 rc = lod_xattr_set_lov_on_dir(env, dt, buf, name, fl, th);
2720                 RETURN(rc);
2721         } else if (S_ISDIR(dt->do_lu.lo_header->loh_attr) &&
2722                    strcmp(name, XATTR_NAME_DEFAULT_LMV) == 0) {
2723                 /* default LMVEA */
2724                 rc = lod_xattr_set_default_lmv_on_dir(env, dt, buf, name, fl,
2725                                                       th);
2726                 RETURN(rc);
2727         } else if (S_ISREG(dt->do_lu.lo_header->loh_attr) &&
2728                    !strcmp(name, XATTR_NAME_LOV)) {
2729                 /* in case of lov EA swap, just set it
2730                  * if not, it is a replay so check striping match what we
2731                  * already have during req replay, declare_xattr_set()
2732                  * defines striping, then create() does the work */
2733                 if (fl & LU_XATTR_REPLACE) {
2734                         /* free stripes, then update disk */
2735                         lod_object_free_striping(env, lod_dt_obj(dt));
2736
2737                         rc = lod_sub_object_xattr_set(env, next, buf, name,
2738                                                       fl, th);
2739                 } else if (dt_object_remote(dt)) {
2740                         /* This only happens during migration, see
2741                          * mdd_migrate_create(), in which Master MDT will
2742                          * create a remote target object, and only set
2743                          * (migrating) stripe EA on the remote object,
2744                          * and does not need creating each stripes. */
2745                         rc = lod_sub_object_xattr_set(env, next, buf, name,
2746                                                       fl, th);
2747                 } else {
2748                         rc = lod_striping_create(env, dt, NULL, NULL, th);
2749                 }
2750                 RETURN(rc);
2751         } else if (strcmp(name, XATTR_NAME_FID) == 0) {
2752                 rc = lod_object_replace_parent_fid(env, dt, th, false);
2753
2754                 RETURN(rc);
2755         }
2756
2757         /* then all other xattr */
2758         rc = lod_xattr_set_internal(env, dt, buf, name, fl, th);
2759
2760         RETURN(rc);
2761 }
2762
2763 /**
2764  * Implementation of dt_object_operations::do_declare_xattr_del.
2765  *
2766  * \see dt_object_operations::do_declare_xattr_del() in the API description
2767  * for details.
2768  */
2769 static int lod_declare_xattr_del(const struct lu_env *env,
2770                                  struct dt_object *dt, const char *name,
2771                                  struct thandle *th)
2772 {
2773         struct lod_object       *lo = lod_dt_obj(dt);
2774         int                     rc;
2775         int                     i;
2776         ENTRY;
2777
2778         rc = lod_sub_object_declare_xattr_del(env, dt_object_child(dt),
2779                                               name, th);
2780         if (rc != 0)
2781                 RETURN(rc);
2782
2783         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr))
2784                 RETURN(0);
2785
2786         /* set xattr to each stripes, if needed */
2787         rc = lod_load_striping(env, lo);
2788         if (rc != 0)
2789                 RETURN(rc);
2790
2791         if (lo->ldo_stripenr == 0)
2792                 RETURN(0);
2793
2794         for (i = 0; i < lo->ldo_stripenr; i++) {
2795                 LASSERT(lo->ldo_stripe[i]);
2796                 rc = lod_sub_object_declare_xattr_del(env, lo->ldo_stripe[i],
2797                                                       name, th);
2798                 if (rc != 0)
2799                         break;
2800         }
2801
2802         RETURN(rc);
2803 }
2804
2805 /**
2806  * Implementation of dt_object_operations::do_xattr_del.
2807  *
2808  * If EA storing a regular striping is being deleted, then release
2809  * all the references to the stripe objects in core.
2810  *
2811  * \see dt_object_operations::do_xattr_del() in the API description for details.
2812  */
2813 static int lod_xattr_del(const struct lu_env *env, struct dt_object *dt,
2814                          const char *name, struct thandle *th)
2815 {
2816         struct dt_object        *next = dt_object_child(dt);
2817         struct lod_object       *lo = lod_dt_obj(dt);
2818         int                     rc;
2819         int                     i;
2820         ENTRY;
2821
2822         if (!strcmp(name, XATTR_NAME_LOV))
2823                 lod_object_free_striping(env, lod_dt_obj(dt));
2824
2825         rc = lod_sub_object_xattr_del(env, next, name, th);
2826         if (rc != 0 || !S_ISDIR(dt->do_lu.lo_header->loh_attr))
2827                 RETURN(rc);
2828
2829         if (lo->ldo_stripenr == 0)
2830                 RETURN(0);
2831
2832         for (i = 0; i < lo->ldo_stripenr; i++) {
2833                 LASSERT(lo->ldo_stripe[i]);
2834
2835                 rc = lod_sub_object_xattr_del(env, lo->ldo_stripe[i], name, th);
2836                 if (rc != 0)
2837                         break;
2838         }
2839
2840         RETURN(rc);
2841 }
2842
2843 /**
2844  * Implementation of dt_object_operations::do_xattr_list.
2845  *
2846  * \see dt_object_operations::do_xattr_list() in the API description
2847  * for details.
2848  */
2849 static int lod_xattr_list(const struct lu_env *env,
2850                           struct dt_object *dt, const struct lu_buf *buf)
2851 {
2852         return dt_xattr_list(env, dt_object_child(dt), buf);
2853 }
2854
2855 /**
2856  * Initialize a pool the object belongs to.
2857  *
2858  * When a striped object is being created, striping configuration
2859  * may demand the stripes are allocated on a limited set of the
2860  * targets. These limited sets are known as "pools". So we copy
2861  * a pool name into the object and later actual creation methods
2862  * (like lod_object_create()) will use this information to allocate
2863  * the stripes properly.
2864  *
2865  * \param[in] o         object
2866  * \param[in] pool      pool name
2867  */
2868 int lod_object_set_pool(struct lod_object *o, char *pool)
2869 {
2870         int len;
2871
2872         if (o->ldo_pool) {
2873                 len = strlen(o->ldo_pool);
2874                 OBD_FREE(o->ldo_pool, len + 1);
2875                 o->ldo_pool = NULL;
2876         }
2877         if (pool) {
2878                 len = strlen(pool);
2879                 OBD_ALLOC(o->ldo_pool, len + 1);
2880                 if (o->ldo_pool == NULL)
2881                         return -ENOMEM;
2882                 strcpy(o->ldo_pool, pool);
2883         }
2884         return 0;
2885 }
2886
2887 static inline int lod_object_will_be_striped(int is_reg, const struct lu_fid *fid)
2888 {
2889         return (is_reg && fid_seq(fid) != FID_SEQ_LOCAL_FILE);
2890 }
2891
2892
2893 /**
2894  * Cache default regular striping in the object.
2895  *
2896  * To improve performance of striped regular object creation we cache
2897  * default LOV striping (if it exists) in the parent directory object.
2898  *
2899  * \param[in] env               execution environment
2900  * \param[in] lp                object
2901  *
2902  * \retval              0 on success
2903  * \retval              negative if failed
2904  */
2905 static int lod_cache_parent_lov_striping(const struct lu_env *env,
2906                                          struct lod_object *lp)
2907 {
2908         struct lod_thread_info  *info = lod_env_info(env);
2909         struct lov_user_md_v1   *v1 = NULL;
2910         struct lov_user_md_v3   *v3 = NULL;
2911         int                      rc;
2912         ENTRY;
2913
2914         /* called from MDD without parent being write locked,
2915          * lock it here */
2916         dt_write_lock(env, dt_object_child(&lp->ldo_obj), 0);
2917         rc = lod_get_lov_ea(env, lp);
2918         if (rc < 0)
2919                 GOTO(unlock, rc);
2920
2921         if (rc < (typeof(rc))sizeof(struct lov_user_md)) {
2922                 /* don't lookup for non-existing or invalid striping */
2923                 lp->ldo_def_striping_set = 0;
2924                 lp->ldo_def_striping_cached = 1;
2925                 lp->ldo_def_stripe_size = 0;
2926                 lp->ldo_def_stripenr = 0;
2927                 lp->ldo_def_stripe_offset = (typeof(v1->lmm_stripe_offset))(-1);
2928                 GOTO(unlock, rc = 0);
2929         }
2930
2931         rc = 0;
2932         v1 = info->lti_ea_store;
2933         if (v1->lmm_magic == __swab32(LOV_USER_MAGIC_V1)) {
2934                 lustre_swab_lov_user_md_v1(v1);
2935         } else if (v1->lmm_magic == __swab32(LOV_USER_MAGIC_V3)) {
2936                 v3 = (struct lov_user_md_v3 *)v1;
2937                 lustre_swab_lov_user_md_v3(v3);
2938         }
2939
2940         if (v1->lmm_magic != LOV_MAGIC_V3 && v1->lmm_magic != LOV_MAGIC_V1)
2941                 GOTO(unlock, rc = 0);
2942
2943         if (v1->lmm_pattern != LOV_PATTERN_RAID0 && v1->lmm_pattern != 0)
2944                 GOTO(unlock, rc = 0);
2945
2946         CDEBUG(D_INFO, DFID" stripe_count=%d stripe_size=%d stripe_offset=%d\n",
2947                PFID(lu_object_fid(&lp->ldo_obj.do_lu)),
2948                (int)v1->lmm_stripe_count,
2949                (int)v1->lmm_stripe_size, (int)v1->lmm_stripe_offset);
2950
2951         lp->ldo_def_stripenr = v1->lmm_stripe_count;
2952         lp->ldo_def_stripe_size = v1->lmm_stripe_size;
2953         lp->ldo_def_stripe_offset = v1->lmm_stripe_offset;
2954         lp->ldo_def_striping_cached = 1;
2955         lp->ldo_def_striping_set = 1;
2956         if (v1->lmm_magic == LOV_USER_MAGIC_V3) {
2957                 /* XXX: sanity check here */
2958                 v3 = (struct lov_user_md_v3 *) v1;
2959                 if (v3->lmm_pool_name[0])
2960                         lod_object_set_pool(lp, v3->lmm_pool_name);
2961         }
2962         EXIT;
2963 unlock:
2964         dt_write_unlock(env, dt_object_child(&lp->ldo_obj));
2965         return rc;
2966 }
2967
2968
2969 /**
2970  * Cache default directory striping in the object.
2971  *
2972  * To improve performance of striped directory creation we cache default
2973  * directory striping (if it exists) in the parent directory object.
2974  *
2975  * \param[in] env               execution environment
2976  * \param[in] lp                object
2977  *
2978  * \retval              0 on success
2979  * \retval              negative if failed
2980  */
2981 static int lod_cache_parent_lmv_striping(const struct lu_env *env,
2982                                          struct lod_object *lp)
2983 {
2984         struct lod_thread_info  *info = lod_env_info(env);
2985         struct lmv_user_md_v1   *v1 = NULL;
2986         int                      rc;
2987         ENTRY;
2988
2989         /* called from MDD without parent being write locked,
2990          * lock it here */
2991         dt_write_lock(env, dt_object_child(&lp->ldo_obj), 0);
2992         rc = lod_get_default_lmv_ea(env, lp);
2993         if (rc < 0)
2994                 GOTO(unlock, rc);
2995
2996         if (rc < (typeof(rc))sizeof(struct lmv_user_md)) {
2997                 /* don't lookup for non-existing or invalid striping */
2998                 lp->ldo_dir_def_striping_set = 0;
2999                 lp->ldo_dir_def_striping_cached = 1;
3000                 lp->ldo_dir_def_stripenr = 0;
3001                 lp->ldo_dir_def_stripe_offset =
3002                                         (typeof(v1->lum_stripe_offset))(-1);
3003                 lp->ldo_dir_def_hash_type = LMV_HASH_TYPE_FNV_1A_64;
3004                 GOTO(unlock, rc = 0);
3005         }
3006
3007         rc = 0;
3008         v1 = info->lti_ea_store;
3009
3010         lp->ldo_dir_def_stripenr = le32_to_cpu(v1->lum_stripe_count);
3011         lp->ldo_dir_def_stripe_offset = le32_to_cpu(v1->lum_stripe_offset);
3012         lp->ldo_dir_def_hash_type = le32_to_cpu(v1->lum_hash_type);
3013         lp->ldo_dir_def_striping_set = 1;
3014         lp->ldo_dir_def_striping_cached = 1;
3015
3016         EXIT;
3017 unlock:
3018         dt_write_unlock(env, dt_object_child(&lp->ldo_obj));
3019         return rc;
3020 }
3021
3022 /**
3023  * Cache default striping in the object.
3024  *
3025  * To improve performance of striped object creation we cache default striping
3026  * (if it exists) in the parent directory object. We always cache default
3027  * striping for the regular files (stored in LOV EA) and we cache default
3028  * striping for the directories if requested by \a child_mode (when a new
3029  * directory is being created).
3030  *
3031  * \param[in] env               execution environment
3032  * \param[in] lp                object
3033  * \param[in] child_mode        new object's mode
3034  *
3035  * \retval              0 on success
3036  * \retval              negative if failed
3037  */
3038 static int lod_cache_parent_striping(const struct lu_env *env,
3039                                      struct lod_object *lp,
3040                                      umode_t child_mode)
3041 {
3042         int rc = 0;
3043         ENTRY;
3044
3045         if (!lp->ldo_def_striping_cached) {
3046                 /* we haven't tried to get default striping for
3047                  * the directory yet, let's cache it in the object */
3048                 rc = lod_cache_parent_lov_striping(env, lp);
3049                 if (rc != 0)
3050                         RETURN(rc);
3051         }
3052
3053         /* If the parent is on the remote MDT, we should always
3054          * try to refresh the default stripeEA cache, because we
3055          * do not cache default striping information for remote
3056          * object. */
3057         if (S_ISDIR(child_mode) && (!lp->ldo_dir_def_striping_cached ||
3058                                     dt_object_remote(&lp->ldo_obj)))
3059                 rc = lod_cache_parent_lmv_striping(env, lp);
3060
3061         RETURN(rc);
3062 }
3063
3064 /**
3065  * Implementation of dt_object_operations::do_ah_init.
3066  *
3067  * This method is used to make a decision on the striping configuration for the
3068  * object being created. It can be taken from the \a parent object if it exists,
3069  * or filesystem's default. The resulting configuration (number of stripes,
3070  * stripe size/offset, pool name, etc) is stored in the object itself and will
3071  * be used by the methods like ->doo_declare_create().
3072  *
3073  * \see dt_object_operations::do_ah_init() in the API description for details.
3074  */
3075 static void lod_ah_init(const struct lu_env *env,
3076                         struct dt_allocation_hint *ah,
3077                         struct dt_object *parent,
3078                         struct dt_object *child,
3079                         umode_t child_mode)
3080 {
3081         struct lod_device *d = lu2lod_dev(child->do_lu.lo_dev);
3082         struct dt_object  *nextp = NULL;
3083         struct dt_object  *nextc;
3084         struct lod_object *lp = NULL;
3085         struct lod_object *lc;
3086         struct lov_desc   *desc;
3087         int               rc;
3088         ENTRY;
3089
3090         LASSERT(child);
3091
3092         if (likely(parent)) {
3093                 nextp = dt_object_child(parent);
3094                 lp = lod_dt_obj(parent);
3095                 rc = lod_load_striping(env, lp);
3096                 if (rc != 0)
3097                         return;
3098         }
3099
3100         nextc = dt_object_child(child);
3101         lc = lod_dt_obj(child);
3102
3103         LASSERT(lc->ldo_stripenr == 0);
3104         LASSERT(lc->ldo_stripe == NULL);
3105
3106         if (!dt_object_exists(nextc))
3107                 nextc->do_ops->do_ah_init(env, ah, nextp, nextc, child_mode);
3108
3109         if (S_ISDIR(child_mode)) {
3110                 if (lc->ldo_dir_stripe == NULL) {
3111                         OBD_ALLOC_PTR(lc->ldo_dir_stripe);
3112                         if (lc->ldo_dir_stripe == NULL)
3113                                 return;
3114                 }
3115
3116                 LASSERT(lp != NULL);
3117                 if (lp->ldo_dir_stripe == NULL) {
3118                         OBD_ALLOC_PTR(lp->ldo_dir_stripe);
3119                         if (lp->ldo_dir_stripe == NULL)
3120                                 return;
3121                 }
3122
3123                 rc = lod_cache_parent_striping(env, lp, child_mode);
3124                 if (rc != 0)
3125                         return;
3126
3127                 /* transfer defaults to new directory */
3128                 if (lp->ldo_def_striping_set) {
3129                         if (lp->ldo_pool)
3130                                 lod_object_set_pool(lc, lp->ldo_pool);
3131                         lc->ldo_def_stripenr = lp->ldo_def_stripenr;
3132                         lc->ldo_def_stripe_size = lp->ldo_def_stripe_size;
3133                         lc->ldo_def_stripe_offset = lp->ldo_def_stripe_offset;
3134                         lc->ldo_def_striping_set = 1;
3135                         lc->ldo_def_striping_cached = 1;
3136                         CDEBUG(D_OTHER, "inherite EA sz:%d off:%d nr:%d\n",
3137                                (int)lc->ldo_def_stripe_size,
3138                                (int)lc->ldo_def_stripe_offset,
3139                                (int)lc->ldo_def_stripenr);
3140                 }
3141
3142                 /* transfer dir defaults to new directory */
3143                 if (lp->ldo_dir_def_striping_set) {
3144                         lc->ldo_dir_def_stripenr = lp->ldo_dir_def_stripenr;
3145                         lc->ldo_dir_def_stripe_offset =
3146                                                   lp->ldo_dir_def_stripe_offset;
3147                         lc->ldo_dir_def_hash_type =
3148                                                   lp->ldo_dir_def_hash_type;
3149                         lc->ldo_dir_def_striping_set = 1;
3150                         lc->ldo_dir_def_striping_cached = 1;
3151                         CDEBUG(D_INFO, "inherit default EA nr:%d off:%d t%u\n",
3152                                (int)lc->ldo_dir_def_stripenr,
3153                                (int)lc->ldo_dir_def_stripe_offset,
3154                                lc->ldo_dir_def_hash_type);
3155                 }
3156
3157                 /* It should always honour the specified stripes */
3158                 if (ah->dah_eadata != NULL && ah->dah_eadata_len != 0) {
3159                         const struct lmv_user_md_v1 *lum1 = ah->dah_eadata;
3160
3161                         rc = lod_verify_md_striping(d, lum1);
3162                         if (rc == 0 &&
3163                                 le32_to_cpu(lum1->lum_stripe_count) > 1) {
3164                                 lc->ldo_stripenr =
3165                                         le32_to_cpu(lum1->lum_stripe_count);
3166                                 lc->ldo_dir_stripe_offset =
3167                                         le32_to_cpu(lum1->lum_stripe_offset);
3168                                 lc->ldo_dir_hash_type =
3169                                         le32_to_cpu(lum1->lum_hash_type);
3170                                 CDEBUG(D_INFO, "set stripe EA nr:%hu off:%d\n",
3171                                        lc->ldo_stripenr,
3172                                        (int)lc->ldo_dir_stripe_offset);
3173                         }
3174                 /* then check whether there is default stripes from parent */
3175                 } else if (lp->ldo_dir_def_striping_set) {
3176                         /* If there are default dir stripe from parent */
3177                         lc->ldo_stripenr = lp->ldo_dir_def_stripenr;
3178                         lc->ldo_dir_stripe_offset =
3179                                         lp->ldo_dir_def_stripe_offset;
3180                         lc->ldo_dir_hash_type =
3181                                         lp->ldo_dir_def_hash_type;
3182                         CDEBUG(D_INFO, "inherit EA nr:%hu off:%d\n",
3183                                lc->ldo_stripenr,
3184                                (int)lc->ldo_dir_stripe_offset);
3185                 } else {
3186                         /* set default stripe for this directory */
3187                         lc->ldo_stripenr = 0;
3188                         lc->ldo_dir_stripe_offset = -1;
3189                 }
3190
3191                 /* shrink the stripe_count to the avaible MDT count */
3192                 if (lc->ldo_stripenr > d->lod_remote_mdt_count + 1 &&
3193                     !OBD_FAIL_CHECK(OBD_FAIL_LARGE_STRIPE))
3194                         lc->ldo_stripenr = d->lod_remote_mdt_count + 1;
3195
3196                 /* Directory will be striped only if stripe_count > 1, if
3197                  * stripe_count == 1, let's reset stripenr = 0 to avoid
3198                  * create single master stripe and also help to unify the
3199                  * stripe handling of directories and files */
3200                 if (lc->ldo_stripenr == 1)
3201                         lc->ldo_stripenr = 0;
3202
3203                 CDEBUG(D_INFO, "final striping count:%hu, offset:%d\n",
3204                        lc->ldo_stripenr, (int)lc->ldo_dir_stripe_offset);
3205
3206                 goto out;
3207         }
3208
3209         /*
3210          * if object is going to be striped over OSTs, transfer default
3211          * striping information to the child, so that we can use it
3212          * during declaration and creation
3213          */
3214         if (!lod_object_will_be_striped(S_ISREG(child_mode),
3215                                         lu_object_fid(&child->do_lu)))
3216                 goto out;
3217         /*
3218          * try from the parent
3219          */
3220         if (likely(parent)) {
3221                 lod_cache_parent_striping(env, lp, child_mode);
3222
3223                 lc->ldo_def_stripe_offset = LOV_OFFSET_DEFAULT;
3224
3225                 if (lp->ldo_def_striping_set) {
3226                         if (lp->ldo_pool)
3227                                 lod_object_set_pool(lc, lp->ldo_pool);
3228                         lc->ldo_stripenr = lp->ldo_def_stripenr;
3229                         lc->ldo_stripe_size = lp->ldo_def_stripe_size;
3230                         lc->ldo_def_stripe_offset = lp->ldo_def_stripe_offset;
3231                         CDEBUG(D_OTHER, "striping from parent: #%d, sz %d %s\n",
3232                                lc->ldo_stripenr, lc->ldo_stripe_size,
3233                                lp->ldo_pool ? lp->ldo_pool : "");
3234                 }
3235         }
3236
3237         /*
3238          * if the parent doesn't provide with specific pattern, grab fs-wide one
3239          */
3240         desc = &d->lod_desc;
3241         if (lc->ldo_stripenr == 0)
3242                 lc->ldo_stripenr = desc->ld_default_stripe_count;
3243         if (lc->ldo_stripe_size == 0)
3244                 lc->ldo_stripe_size = desc->ld_default_stripe_size;
3245         CDEBUG(D_OTHER, "final striping: # %d stripes, sz %d from %s\n",
3246                lc->ldo_stripenr, lc->ldo_stripe_size,
3247                lc->ldo_pool ? lc->ldo_pool : "");
3248
3249 out:
3250         /* we do not cache stripe information for slave stripe, see
3251          * lod_xattr_set_lov_on_dir */
3252         if (lp != NULL && lp->ldo_dir_slave_stripe)
3253                 lod_lov_stripe_cache_clear(lp);
3254
3255         EXIT;
3256 }
3257
3258 #define ll_do_div64(aaa,bbb)    do_div((aaa), (bbb))
3259 /**
3260  * Size initialization on late striping.
3261  *
3262  * Propagate the size of a truncated object to a deferred striping.
3263  * This function handles a special case when truncate was done on a
3264  * non-striped object and now while the striping is being created
3265  * we can't lose that size, so we have to propagate it to the stripes
3266  * being created.
3267  *
3268  * \param[in] env       execution environment
3269  * \param[in] dt        object
3270  * \param[in] th        transaction handle
3271  *
3272  * \retval              0 on success
3273  * \retval              negative if failed
3274  */
3275 static int lod_declare_init_size(const struct lu_env *env,
3276                                  struct dt_object *dt, struct thandle *th)
3277 {
3278         struct dt_object   *next = dt_object_child(dt);
3279         struct lod_object  *lo = lod_dt_obj(dt);
3280         struct lu_attr     *attr = &lod_env_info(env)->lti_attr;
3281         uint64_t            size, offs;
3282         int                 rc, stripe;
3283         ENTRY;
3284
3285         /* XXX: we support the simplest (RAID0) striping so far */
3286         LASSERT(lo->ldo_stripe || lo->ldo_stripenr == 0);
3287         LASSERT(lo->ldo_stripe_size > 0);
3288
3289         if (lo->ldo_stripenr == 0)
3290                 RETURN(0);
3291
3292         rc = dt_attr_get(env, next, attr);
3293         LASSERT(attr->la_valid & LA_SIZE);
3294         if (rc)
3295                 RETURN(rc);
3296
3297         size = attr->la_size;
3298         if (size == 0)
3299                 RETURN(0);
3300
3301         /* ll_do_div64(a, b) returns a % b, and a = a / b */
3302         ll_do_div64(size, (__u64) lo->ldo_stripe_size);
3303         stripe = ll_do_div64(size, (__u64) lo->ldo_stripenr);
3304
3305         size = size * lo->ldo_stripe_size;
3306         offs = attr->la_size;
3307         size += ll_do_div64(offs, lo->ldo_stripe_size);
3308
3309         attr->la_valid = LA_SIZE;
3310         attr->la_size = size;
3311
3312         rc = lod_sub_object_declare_attr_set(env, lo->ldo_stripe[stripe], attr,
3313                                              th);
3314
3315         RETURN(rc);
3316 }
3317
3318 /**
3319  * Declare creation of striped object.
3320  *
3321  * The function declares creation stripes for a regular object. The function
3322  * also declares whether the stripes will be created with non-zero size if
3323  * previously size was set non-zero on the master object. If object \a dt is
3324  * not local, then only fully defined striping can be applied in \a lovea.
3325  * Otherwise \a lovea can be in the form of pattern, see lod_qos_parse_config()
3326  * for the details.
3327  *
3328  * \param[in] env       execution environment
3329  * \param[in] dt        object
3330  * \param[in] attr      attributes the stripes will be created with
3331  * \param[in] lovea     a buffer containing striping description
3332  * \param[in] th        transaction handle
3333  *
3334  * \retval              0 on success
3335  * \retval              negative if failed
3336  */
3337 int lod_declare_striped_object(const struct lu_env *env, struct dt_object *dt,
3338                                struct lu_attr *attr,
3339                                const struct lu_buf *lovea, struct thandle *th)
3340 {
3341         struct lod_thread_info  *info = lod_env_info(env);
3342         struct dt_object        *next = dt_object_child(dt);
3343         struct lod_object       *lo = lod_dt_obj(dt);
3344         int                      rc;
3345         ENTRY;
3346
3347         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_ALLOC_OBDO))
3348                 GOTO(out, rc = -ENOMEM);
3349
3350         if (!dt_object_remote(next)) {
3351                 /* choose OST and generate appropriate objects */
3352                 rc = lod_qos_prep_create(env, lo, attr, lovea, th);
3353                 if (rc)
3354                         GOTO(out, rc);
3355
3356                 /*
3357                  * declare storage for striping data
3358                  */
3359                 info->lti_buf.lb_len = lov_mds_md_size(lo->ldo_stripenr,
3360                                 lo->ldo_pool ?  LOV_MAGIC_V3 : LOV_MAGIC_V1);
3361         } else {
3362                 /* LOD can not choose OST objects for remote objects, i.e.
3363                  * stripes must be ready before that. Right now, it can only
3364                  * happen during migrate, i.e. migrate process needs to create
3365                  * remote regular file (mdd_migrate_create), then the migrate
3366                  * process will provide stripeEA. */
3367                 LASSERT(lovea != NULL);
3368                 info->lti_buf = *lovea;
3369         }
3370
3371         rc = lod_sub_object_declare_xattr_set(env, next, &info->lti_buf,
3372                                               XATTR_NAME_LOV, 0, th);
3373         if (rc)
3374                 GOTO(out, rc);
3375
3376         /*
3377          * if striping is created with local object's size > 0,
3378          * we have to propagate this size to specific object
3379          * the case is possible only when local object was created previously
3380          */
3381         if (dt_object_exists(next))
3382                 rc = lod_declare_init_size(env, dt, th);
3383
3384 out:
3385         /* failed to create striping or to set initial size, let's reset
3386          * config so that others don't get confused */
3387         if (rc)
3388                 lod_object_free_striping(env, lo);
3389
3390         RETURN(rc);
3391 }
3392
3393 /**
3394  * Implementation of dt_object_operations::do_declare_create.
3395  *
3396  * The method declares creation of a new object. If the object will be striped,
3397  * then helper functions are called to find FIDs for the stripes, declare
3398  * creation of the stripes and declare initialization of the striping
3399  * information to be stored in the master object.
3400  *
3401  * \see dt_object_operations::do_declare_create() in the API description
3402  * for details.
3403  */
3404 static int lod_declare_object_create(const struct lu_env *env,
3405                                      struct dt_object *dt,
3406                                      struct lu_attr *attr,
3407                                      struct dt_allocation_hint *hint,
3408                                      struct dt_object_format *dof,
3409                                      struct thandle *th)
3410 {
3411         struct dt_object   *next = dt_object_child(dt);
3412         struct lod_object  *lo = lod_dt_obj(dt);
3413         int                 rc;
3414         ENTRY;
3415
3416         LASSERT(dof);
3417         LASSERT(attr);
3418         LASSERT(th);
3419
3420         /*
3421          * first of all, we declare creation of local object
3422          */
3423         rc = lod_sub_object_declare_create(env, next, attr, hint, dof, th);
3424         if (rc != 0)
3425                 GOTO(out, rc);
3426
3427         if (dof->dof_type == DFT_SYM)
3428                 dt->do_body_ops = &lod_body_lnk_ops;
3429         else if (dof->dof_type == DFT_REGULAR)
3430                 dt->do_body_ops = &lod_body_ops;
3431
3432         /*
3433          * it's lod_ah_init() that has decided the object will be striped
3434          */
3435         if (dof->dof_type == DFT_REGULAR) {
3436                 /* callers don't want stripes */
3437                 /* XXX: all tricky interactions with ->ah_make_hint() decided
3438                  * to use striping, then ->declare_create() behaving differently
3439                  * should be cleaned */
3440                 if (dof->u.dof_reg.striped == 0)
3441                         lo->ldo_stripenr = 0;
3442                 if (lo->ldo_stripenr > 0)
3443                         rc = lod_declare_striped_object(env, dt, attr,
3444                                                         NULL, th);
3445         } else if (dof->dof_type == DFT_DIR) {
3446                 struct seq_server_site *ss;
3447
3448                 ss = lu_site2seq(dt->do_lu.lo_dev->ld_site);
3449
3450                 /* If the parent has default stripeEA, and client
3451                  * did not find it before sending create request,
3452                  * then MDT will return -EREMOTE, and client will
3453                  * retrieve the default stripeEA and re-create the
3454                  * sub directory.
3455                  *
3456                  * Note: if dah_eadata != NULL, it means creating the
3457                  * striped directory with specified stripeEA, then it
3458                  * should ignore the default stripeEA */
3459                 if (hint != NULL && hint->dah_eadata == NULL) {
3460                         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_STALE_DIR_LAYOUT))
3461                                 GOTO(out, rc = -EREMOTE);
3462
3463                         if (lo->ldo_dir_stripe_offset == -1) {
3464                                 /* child and parent should be in the same MDT */
3465                                 if (hint->dah_parent != NULL &&
3466                                     dt_object_remote(hint->dah_parent))
3467                                         GOTO(out, rc = -EREMOTE);
3468                         } else if (lo->ldo_dir_stripe_offset !=
3469                                    ss->ss_node_id) {
3470                                 struct lod_device *lod;
3471                                 struct lod_tgt_descs *ltd;
3472                                 struct lod_tgt_desc *tgt = NULL;
3473                                 bool found_mdt = false;
3474                                 int i;
3475
3476                                 lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
3477                                 ltd = &lod->lod_mdt_descs;
3478                                 cfs_foreach_bit(ltd->ltd_tgt_bitmap, i) {
3479                                         tgt = LTD_TGT(ltd, i);
3480                                         if (tgt->ltd_index ==
3481                                                 lo->ldo_dir_stripe_offset) {
3482                                                 found_mdt = true;
3483                                                 break;
3484                                         }
3485                                 }
3486
3487                                 /* If the MDT indicated by stripe_offset can be
3488                                  * found, then tell client to resend the create
3489                                  * request to the correct MDT, otherwise return
3490                                  * error to client */
3491                                 if (found_mdt)
3492                                         GOTO(out, rc = -EREMOTE);
3493                                 else
3494                                         GOTO(out, rc = -EINVAL);
3495                         }
3496                 }
3497
3498                 /* Orphan object (like migrating object) does not have
3499                  * lod_dir_stripe, see lod_ah_init */
3500                 if (lo->ldo_dir_stripe != NULL)
3501                         rc = lod_declare_dir_striping_create(env, dt, attr,
3502                                                              dof, th);
3503         }
3504 out:
3505         RETURN(rc);
3506 }
3507
3508 /**
3509  * Creation of a striped regular object.
3510  *
3511  * The function is called to create the stripe objects for a regular
3512  * striped file. This can happen at the initial object creation or
3513  * when the caller asks LOD to do so using ->do_xattr_set() method
3514  * (so called late striping). Notice all the information are already
3515  * prepared in the form of the list of objects (ldo_stripe field).
3516  * This is done during declare phase.
3517  *
3518  * \param[in] env       execution environment
3519  * \param[in] dt        object
3520  * \param[in] attr      attributes the stripes will be created with
3521  * \param[in] dof       format of stripes (see OSD API description)
3522  * \param[in] th        transaction handle
3523  *
3524  * \retval              0 on success
3525  * \retval              negative if failed
3526  */
3527 int lod_striping_create(const struct lu_env *env, struct dt_object *dt,
3528                         struct lu_attr *attr, struct dt_object_format *dof,
3529                         struct thandle *th)
3530 {
3531         struct lod_object *lo = lod_dt_obj(dt);
3532         int                rc = 0, i;
3533         ENTRY;
3534
3535         LASSERT(lo->ldo_striping_cached == 0);
3536
3537         /* create all underlying objects */
3538         for (i = 0; i < lo->ldo_stripenr; i++) {
3539                 LASSERT(lo->ldo_stripe[i]);
3540                 rc = lod_sub_object_create(env, lo->ldo_stripe[i], attr, NULL,
3541                                            dof, th);
3542                 if (rc)
3543                         break;
3544         }
3545
3546         if (rc == 0) {
3547                 rc = lod_generate_and_set_lovea(env, lo, th);
3548                 if (rc == 0)
3549                         lo->ldo_striping_cached = 1;
3550         }
3551
3552         RETURN(rc);
3553 }
3554
3555 /**
3556  * Implementation of dt_object_operations::do_create.
3557  *
3558  * If any of preceeding methods (like ->do_declare_create(),
3559  * ->do_ah_init(), etc) chose to create a striped object,
3560  * then this method will create the master and the stripes.
3561  *
3562  * \see dt_object_operations::do_create() in the API description for details.
3563  */
3564 static int lod_object_create(const struct lu_env *env, struct dt_object *dt,
3565                              struct lu_attr *attr,
3566                              struct dt_allocation_hint *hint,
3567                              struct dt_object_format *dof, struct thandle *th)
3568 {
3569         struct lod_object  *lo = lod_dt_obj(dt);
3570         int                 rc;
3571         ENTRY;
3572
3573         /* create local object */
3574         rc = lod_sub_object_create(env, dt_object_child(dt), attr, hint, dof,
3575                                    th);
3576         if (rc != 0)
3577                 RETURN(rc);
3578
3579         if (S_ISREG(dt->do_lu.lo_header->loh_attr) &&
3580             lo->ldo_stripe && dof->u.dof_reg.striped != 0)
3581                 rc = lod_striping_create(env, dt, attr, dof, th);
3582
3583         RETURN(rc);
3584 }
3585
3586 /**
3587  * Implementation of dt_object_operations::do_declare_destroy.
3588  *
3589  * If the object is a striped directory, then the function declares reference
3590  * removal from the master object (this is an index) to the stripes and declares
3591  * destroy of all the stripes. In all the cases, it declares an intention to
3592  * destroy the object itself.
3593  *
3594  * \see dt_object_operations::do_declare_destroy() in the API description
3595  * for details.
3596  */
3597 static int lod_declare_object_destroy(const struct lu_env *env,
3598                                       struct dt_object *dt,
3599                                       struct thandle *th)
3600 {
3601         struct dt_object   *next = dt_object_child(dt);
3602         struct lod_object  *lo = lod_dt_obj(dt);
3603         struct lod_thread_info *info = lod_env_info(env);
3604         char               *stripe_name = info->lti_key;
3605         int                 rc, i;
3606         ENTRY;
3607
3608         /*
3609          * load striping information, notice we don't do this when object
3610          * is being initialized as we don't need this information till
3611          * few specific cases like destroy, chown
3612          */
3613         rc = lod_load_striping(env, lo);
3614         if (rc)
3615                 RETURN(rc);
3616
3617         /* declare destroy for all underlying objects */
3618         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
3619                 rc = next->do_ops->do_index_try(env, next,
3620                                                 &dt_directory_features);
3621                 if (rc != 0)
3622                         RETURN(rc);
3623
3624                 for (i = 0; i < lo->ldo_stripenr; i++) {
3625                         rc = lod_sub_object_declare_ref_del(env, next, th);
3626                         if (rc != 0)
3627                                 RETURN(rc);
3628
3629                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
3630                                 PFID(lu_object_fid(&lo->ldo_stripe[i]->do_lu)),
3631                                 i);
3632                         rc = lod_sub_object_declare_delete(env, next,
3633                                         (const struct dt_key *)stripe_name, th);
3634                         if (rc != 0)
3635                                 RETURN(rc);
3636                 }
3637         }
3638
3639         /*
3640          * we declare destroy for the local object
3641          */
3642         rc = lod_sub_object_declare_destroy(env, next, th);
3643         if (rc)
3644                 RETURN(rc);
3645
3646         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ))
3647                 RETURN(0);
3648
3649         /* declare destroy all striped objects */
3650         for (i = 0; i < lo->ldo_stripenr; i++) {
3651                 if (lo->ldo_stripe[i] == NULL)
3652                         continue;
3653
3654                 if (S_ISDIR(dt->do_lu.lo_header->loh_attr))
3655                         rc = lod_sub_object_declare_ref_del(env,
3656                                         lo->ldo_stripe[i], th);
3657
3658                 rc = lod_sub_object_declare_destroy(env, lo->ldo_stripe[i],
3659                                         th);
3660                 if (rc != 0)
3661                         break;
3662         }
3663
3664         RETURN(rc);
3665 }
3666
3667 /**
3668  * Implementation of dt_object_operations::do_destroy.
3669  *
3670  * If the object is a striped directory, then the function removes references
3671  * from the master object (this is an index) to the stripes and destroys all
3672  * the stripes. In all the cases, the function destroys the object itself.
3673  *
3674  * \see dt_object_operations::do_destroy() in the API description for details.
3675  */
3676 static int lod_object_destroy(const struct lu_env *env,
3677                 struct dt_object *dt, struct thandle *th)
3678 {
3679         struct dt_object  *next = dt_object_child(dt);
3680         struct lod_object *lo = lod_dt_obj(dt);
3681         struct lod_thread_info *info = lod_env_info(env);
3682         char               *stripe_name = info->lti_key;
3683         unsigned int       i;
3684         int                rc;
3685         ENTRY;
3686
3687         /* destroy sub-stripe of master object */
3688         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
3689                 rc = next->do_ops->do_index_try(env, next,
3690                                                 &dt_directory_features);
3691                 if (rc != 0)
3692                         RETURN(rc);
3693
3694                 for (i = 0; i < lo->ldo_stripenr; i++) {
3695                         rc = lod_sub_object_ref_del(env, next, th);
3696                         if (rc != 0)
3697                                 RETURN(rc);
3698
3699                         snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
3700                                 PFID(lu_object_fid(&lo->ldo_stripe[i]->do_lu)),
3701                                 i);
3702
3703                         CDEBUG(D_INFO, DFID" delete stripe %s "DFID"\n",
3704                                PFID(lu_object_fid(&dt->do_lu)), stripe_name,
3705                                PFID(lu_object_fid(&lo->ldo_stripe[i]->do_lu)));
3706
3707                         rc = lod_sub_object_delete(env, next,
3708                                        (const struct dt_key *)stripe_name, th);
3709                         if (rc != 0)
3710                                 RETURN(rc);
3711                 }
3712         }
3713
3714         rc = lod_sub_object_destroy(env, next, th);
3715         if (rc != 0)
3716                 RETURN(rc);
3717
3718         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ))
3719                 RETURN(0);
3720
3721         /* destroy all striped objects */
3722         for (i = 0; i < lo->ldo_stripenr; i++) {
3723                 if (likely(lo->ldo_stripe[i] != NULL) &&
3724                     (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_SPEOBJ) ||
3725                      i == cfs_fail_val)) {
3726                         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
3727                                 dt_write_lock(env, lo->ldo_stripe[i],
3728                                               MOR_TGT_CHILD);
3729                                 rc = lod_sub_object_ref_del(env,
3730                                                 lo->ldo_stripe[i], th);
3731                                 dt_write_unlock(env, lo->ldo_stripe[i]);
3732                                 if (rc != 0)
3733                                         break;
3734                         }
3735
3736                         rc = lod_sub_object_destroy(env, lo->ldo_stripe[i], th);
3737                         if (rc != 0)
3738                                 break;
3739                 }
3740         }
3741
3742         RETURN(rc);
3743 }
3744
3745 /**
3746  * Implementation of dt_object_operations::do_declare_ref_add.
3747  *
3748  * \see dt_object_operations::do_declare_ref_add() in the API description
3749  * for details.
3750  */
3751 static int lod_declare_ref_add(const struct lu_env *env,
3752                                struct dt_object *dt, struct thandle *th)
3753 {
3754         return lod_sub_object_declare_ref_add(env, dt_object_child(dt), th);
3755 }
3756
3757 /**
3758  * Implementation of dt_object_operations::do_ref_add.
3759  *
3760  * \see dt_object_operations::do_ref_add() in the API description for details.
3761  */
3762 static int lod_ref_add(const struct lu_env *env,
3763                        struct dt_object *dt, struct thandle *th)
3764 {
3765         return lod_sub_object_ref_add(env, dt_object_child(dt), th);
3766 }
3767
3768 /**
3769  * Implementation of dt_object_operations::do_declare_ref_del.
3770  *
3771  * \see dt_object_operations::do_declare_ref_del() in the API description
3772  * for details.
3773  */
3774 static int lod_declare_ref_del(const struct lu_env *env,
3775                                struct dt_object *dt, struct thandle *th)
3776 {
3777         return lod_sub_object_declare_ref_del(env, dt_object_child(dt), th);
3778 }
3779
3780 /**
3781  * Implementation of dt_object_operations::do_ref_del
3782  *
3783  * \see dt_object_operations::do_ref_del() in the API description for details.
3784  */
3785 static int lod_ref_del(const struct lu_env *env,
3786                        struct dt_object *dt, struct thandle *th)
3787 {
3788         return lod_sub_object_ref_del(env, dt_object_child(dt), th);
3789 }
3790
3791 /**
3792  * Implementation of dt_object_operations::do_object_sync.
3793  *
3794  * \see dt_object_operations::do_object_sync() in the API description
3795  * for details.
3796  */
3797 static int lod_object_sync(const struct lu_env *env, struct dt_object *dt,
3798                            __u64 start, __u64 end)
3799 {
3800         return dt_object_sync(env, dt_object_child(dt), start, end);
3801 }
3802
3803 /**
3804  * Release LDLM locks on the stripes of a striped directory.
3805  *
3806  * Iterates over all the locks taken on the stripe objects and
3807  * release them using ->do_object_unlock() method.
3808  *
3809  * \param[in] env       execution environment
3810  * \param[in] dt        striped object
3811  * \param[in] einfo     lock description
3812  * \param[in] policy    data describing requested lock
3813  *
3814  * \retval              0 on success
3815  * \retval              negative if failed
3816  */
3817 static int lod_object_unlock_internal(const struct lu_env *env,
3818                                       struct dt_object *dt,
3819                                       struct ldlm_enqueue_info *einfo,
3820                                       union ldlm_policy_data *policy)
3821 {
3822         struct lustre_handle_array *slave_locks = einfo->ei_cbdata;
3823         int                     rc = 0;
3824         int                     i;
3825         ENTRY;
3826
3827         if (slave_locks == NULL)
3828                 RETURN(0);
3829
3830         for (i = 1; i < slave_locks->count; i++) {
3831                 if (lustre_handle_is_used(&slave_locks->handles[i]))
3832                         ldlm_lock_decref(&slave_locks->handles[i],
3833                                          einfo->ei_mode);
3834         }
3835
3836         RETURN(rc);
3837 }
3838
3839 /**
3840  * Implementation of dt_object_operations::do_object_unlock.
3841  *
3842  * Used to release LDLM lock(s).
3843  *
3844  * \see dt_object_operations::do_object_unlock() in the API description
3845  * for details.
3846  */
3847 static int lod_object_unlock(const struct lu_env *env, struct dt_object *dt,
3848                              struct ldlm_enqueue_info *einfo,
3849                              union ldlm_policy_data *policy)
3850 {
3851         struct lod_object *lo = lod_dt_obj(dt);
3852         struct lustre_handle_array *slave_locks = einfo->ei_cbdata;
3853         int slave_locks_size;
3854         int i;
3855         ENTRY;
3856
3857         if (slave_locks == NULL)
3858                 RETURN(0);
3859
3860         LASSERT(S_ISDIR(dt->do_lu.lo_header->loh_attr));
3861         LASSERT(lo->ldo_stripenr > 1);
3862         /* Note: for remote lock for single stripe dir, MDT will cancel
3863          * the lock by lockh directly */
3864         LASSERT(!dt_object_remote(dt_object_child(dt)));
3865
3866         /* locks were unlocked in MDT layer */
3867         for (i = 1; i < slave_locks->count; i++)
3868                 LASSERT(!lustre_handle_is_used(&slave_locks->handles[i]));
3869
3870         slave_locks_size = sizeof(*slave_locks) + slave_locks->count *
3871                            sizeof(slave_locks->handles[0]);
3872         OBD_FREE(slave_locks, slave_locks_size);
3873         einfo->ei_cbdata = NULL;
3874
3875         RETURN(0);
3876 }
3877
3878 /**
3879  * Implementation of dt_object_operations::do_object_lock.
3880  *
3881  * Used to get LDLM lock on the non-striped and striped objects.
3882  *
3883  * \see dt_object_operations::do_object_lock() in the API description
3884  * for details.
3885  */
3886 static int lod_object_lock(const struct lu_env *env,
3887                            struct dt_object *dt,
3888                            struct lustre_handle *lh,
3889                            struct ldlm_enqueue_info *einfo,
3890                            union ldlm_policy_data *policy)
3891 {
3892         struct lod_object       *lo = lod_dt_obj(dt);
3893         int                     rc = 0;
3894         int                     i;
3895         int                     slave_locks_size;
3896         struct lustre_handle_array *slave_locks = NULL;
3897         ENTRY;
3898
3899         /* remote object lock */
3900         if (!einfo->ei_enq_slave) {
3901                 LASSERT(dt_object_remote(dt));
3902                 return dt_object_lock(env, dt_object_child(dt), lh, einfo,
3903                                       policy);
3904         }
3905
3906         if (!S_ISDIR(dt->do_lu.lo_header->loh_attr))
3907                 RETURN(-ENOTDIR);
3908
3909         rc = lod_load_striping(env, lo);
3910         if (rc != 0)
3911                 RETURN(rc);
3912
3913         /* No stripes */
3914         if (lo->ldo_stripenr <= 1)
3915                 RETURN(0);
3916
3917         slave_locks_size = sizeof(*slave_locks) + lo->ldo_stripenr *
3918                            sizeof(slave_locks->handles[0]);
3919         /* Freed in lod_object_unlock */
3920         OBD_ALLOC(slave_locks, slave_locks_size);
3921         if (slave_locks == NULL)
3922                 RETURN(-ENOMEM);
3923         slave_locks->count = lo->ldo_stripenr;
3924
3925         /* striped directory lock */
3926         for (i = 1; i < lo->ldo_stripenr; i++) {
3927                 struct lustre_handle    lockh;
3928                 struct ldlm_res_id      *res_id;
3929
3930                 res_id = &lod_env_info(env)->lti_res_id;
3931                 fid_build_reg_res_name(lu_object_fid(&lo->ldo_stripe[i]->do_lu),
3932                                        res_id);
3933                 einfo->ei_res_id = res_id;
3934
3935                 LASSERT(lo->ldo_stripe[i] != NULL);
3936                 if (likely(dt_object_remote(lo->ldo_stripe[i]))) {
3937                         rc = dt_object_lock(env, lo->ldo_stripe[i], &lockh,
3938                                             einfo, policy);
3939                 } else {
3940                         struct ldlm_namespace *ns = einfo->ei_namespace;
3941                         ldlm_blocking_callback blocking = einfo->ei_cb_local_bl;
3942                         ldlm_completion_callback completion = einfo->ei_cb_cp;
3943                         __u64   dlmflags = LDLM_FL_ATOMIC_CB;
3944
3945                         if (einfo->ei_mode == LCK_PW ||
3946                             einfo->ei_mode == LCK_EX)
3947                                 dlmflags |= LDLM_FL_COS_INCOMPAT;
3948
3949                         /* This only happens if there are mulitple stripes
3950                          * on the master MDT, i.e. except stripe0, there are
3951                          * other stripes on the Master MDT as well, Only
3952                          * happens in the test case right now. */
3953                         LASSERT(ns != NULL);
3954                         rc = ldlm_cli_enqueue_local(ns, res_id, LDLM_IBITS,
3955                                                     policy, einfo->ei_mode,
3956                                                     &dlmflags, blocking,
3957                                                     completion, NULL,
3958                                                     NULL, 0, LVB_T_NONE,
3959                                                     NULL, &lockh);
3960                 }
3961                 if (rc != 0)
3962                         GOTO(out, rc);
3963                 slave_locks->handles[i] = lockh;
3964         }
3965
3966         einfo->ei_cbdata = slave_locks;
3967
3968 out:
3969         if (rc != 0 && slave_locks != NULL) {
3970                 einfo->ei_cbdata = slave_locks;
3971                 lod_object_unlock_internal(env, dt, einfo, policy);
3972                 OBD_FREE(slave_locks, slave_locks_size);
3973                 einfo->ei_cbdata = NULL;
3974         }
3975
3976         RETURN(rc);
3977 }
3978
3979 struct dt_object_operations lod_obj_ops = {
3980         .do_read_lock           = lod_object_read_lock,
3981         .do_write_lock          = lod_object_write_lock,
3982         .do_read_unlock         = lod_object_read_unlock,
3983         .do_write_unlock        = lod_object_write_unlock,
3984         .do_write_locked        = lod_object_write_locked,
3985         .do_attr_get            = lod_attr_get,
3986         .do_declare_attr_set    = lod_declare_attr_set,
3987         .do_attr_set            = lod_attr_set,
3988         .do_xattr_get           = lod_xattr_get,
3989         .do_declare_xattr_set   = lod_declare_xattr_set,
3990         .do_xattr_set           = lod_xattr_set,
3991         .do_declare_xattr_del   = lod_declare_xattr_del,
3992         .do_xattr_del           = lod_xattr_del,
3993         .do_xattr_list          = lod_xattr_list,
3994         .do_ah_init             = lod_ah_init,
3995         .do_declare_create      = lod_declare_object_create,
3996         .do_create              = lod_object_create,
3997         .do_declare_destroy     = lod_declare_object_destroy,
3998         .do_destroy             = lod_object_destroy,
3999         .do_index_try           = lod_index_try,
4000         .do_declare_ref_add     = lod_declare_ref_add,
4001         .do_ref_add             = lod_ref_add,
4002         .do_declare_ref_del     = lod_declare_ref_del,
4003         .do_ref_del             = lod_ref_del,
4004         .do_object_sync         = lod_object_sync,
4005         .do_object_lock         = lod_object_lock,
4006         .do_object_unlock       = lod_object_unlock,
4007 };
4008
4009 /**
4010  * Implementation of dt_body_operations::dbo_read.
4011  *
4012  * \see dt_body_operations::dbo_read() in the API description for details.
4013  */
4014 static ssize_t lod_read(const struct lu_env *env, struct dt_object *dt,
4015                         struct lu_buf *buf, loff_t *pos)
4016 {
4017         struct dt_object *next = dt_object_child(dt);
4018         return next->do_body_ops->dbo_read(env, next, buf, pos);
4019 }
4020
4021 /**
4022  * Implementation of dt_body_operations::dbo_declare_write.
4023  *
4024  * \see dt_body_operations::dbo_declare_write() in the API description
4025  * for details.
4026  */
4027 static ssize_t lod_declare_write(const struct lu_env *env,
4028                                  struct dt_object *dt,
4029                                  const struct lu_buf *buf, loff_t pos,
4030                                  struct thandle *th)
4031 {
4032         return lod_sub_object_declare_write(env, dt_object_child(dt), buf, pos,
4033                                             th);
4034 }
4035
4036 /**
4037  * Implementation of dt_body_operations::dbo_write.
4038  *
4039  * \see dt_body_operations::dbo_write() in the API description for details.
4040  */
4041 static ssize_t lod_write(const struct lu_env *env, struct dt_object *dt,
4042                          const struct lu_buf *buf, loff_t *pos,
4043                          struct thandle *th, int iq)
4044 {
4045         return lod_sub_object_write(env, dt_object_child(dt), buf, pos, th, iq);
4046 }
4047
4048 static int lod_declare_punch(const struct lu_env *env, struct dt_object *dt,
4049                              __u64 start, __u64 end, struct thandle *th)
4050 {
4051         if (dt_object_remote(dt))
4052                 return -ENOTSUPP;
4053
4054         return lod_sub_object_declare_punch(env, dt_object_child(dt), start,
4055                                             end, th);
4056 }
4057
4058 static int lod_punch(const struct lu_env *env, struct dt_object *dt,
4059                      __u64 start, __u64 end, struct thandle *th)
4060 {
4061         if (dt_object_remote(dt))
4062                 return -ENOTSUPP;
4063
4064         return lod_sub_object_punch(env, dt_object_child(dt), start, end, th);
4065 }
4066
4067 static const struct dt_body_operations lod_body_lnk_ops = {
4068         .dbo_read               = lod_read,
4069         .dbo_declare_write      = lod_declare_write,
4070         .dbo_write              = lod_write
4071 };
4072
4073 static const struct dt_body_operations lod_body_ops = {
4074         .dbo_read               = lod_read,
4075         .dbo_declare_write      = lod_declare_write,
4076         .dbo_write              = lod_write,
4077         .dbo_declare_punch      = lod_declare_punch,
4078         .dbo_punch              = lod_punch,
4079 };
4080
4081 /**
4082  * Implementation of lu_object_operations::loo_object_init.
4083  *
4084  * The function determines the type and the index of the target device using
4085  * sequence of the object's FID. Then passes control down to the
4086  * corresponding device:
4087  *  OSD for the local objects, OSP for remote
4088  *
4089  * \see lu_object_operations::loo_object_init() in the API description
4090  * for details.
4091  */
4092 static int lod_object_init(const struct lu_env *env, struct lu_object *lo,
4093                            const struct lu_object_conf *conf)
4094 {
4095         struct lod_device       *lod    = lu2lod_dev(lo->lo_dev);
4096         struct lu_device        *cdev   = NULL;
4097         struct lu_object        *cobj;
4098         struct lod_tgt_descs    *ltd    = NULL;
4099         struct lod_tgt_desc     *tgt;
4100         u32                      idx    = 0;
4101         int                      type   = LU_SEQ_RANGE_ANY;
4102         int                      rc;
4103         ENTRY;
4104
4105         rc = lod_fld_lookup(env, lod, lu_object_fid(lo), &idx, &type);
4106         if (rc != 0) {
4107                 /* Note: Sometimes, it will Return EAGAIN here, see
4108                  * ptrlpc_import_delay_req(), which might confuse
4109                  * lu_object_find_at() and make it wait there incorrectly.
4110                  * so we convert it to EIO here.*/
4111                 if (rc == -EAGAIN)
4112                         rc = -EIO;
4113
4114                 RETURN(rc);
4115         }
4116
4117         if (type == LU_SEQ_RANGE_MDT &&
4118             idx == lu_site2seq(lo->lo_dev->ld_site)->ss_node_id) {
4119                 cdev = &lod->lod_child->dd_lu_dev;
4120         } else if (type == LU_SEQ_RANGE_MDT) {
4121                 ltd = &lod->lod_mdt_descs;
4122                 lod_getref(ltd);
4123         } else if (type == LU_SEQ_RANGE_OST) {
4124                 ltd = &lod->lod_ost_descs;
4125                 lod_getref(ltd);
4126         } else {
4127                 LBUG();
4128         }
4129
4130         if (ltd != NULL) {
4131                 if (ltd->ltd_tgts_size > idx &&
4132                     cfs_bitmap_check(ltd->ltd_tgt_bitmap, idx)) {
4133                         tgt = LTD_TGT(ltd, idx);
4134
4135                         LASSERT(tgt != NULL);
4136                         LASSERT(tgt->ltd_tgt != NULL);
4137
4138                         cdev = &(tgt->ltd_tgt->dd_lu_dev);
4139                 }
4140                 lod_putref(lod, ltd);
4141         }
4142
4143         if (unlikely(cdev == NULL))
4144                 RETURN(-ENOENT);
4145
4146         cobj = cdev->ld_ops->ldo_object_alloc(env, lo->lo_header, cdev);
4147         if (unlikely(cobj == NULL))
4148                 RETURN(-ENOMEM);
4149
4150         lu_object_add(lo, cobj);
4151
4152         RETURN(0);
4153 }
4154
4155 /**
4156  *
4157  * Release resources associated with striping.
4158  *
4159  * If the object is striped (regular or directory), then release
4160  * the stripe objects references and free the ldo_stripe array.
4161  *
4162  * \param[in] env       execution environment
4163  * \param[in] lo        object
4164  */
4165 void lod_object_free_striping(const struct lu_env *env, struct lod_object *lo)
4166 {
4167         int i;
4168
4169         if (lo->ldo_dir_stripe != NULL) {
4170                 OBD_FREE_PTR(lo->ldo_dir_stripe);
4171                 lo->ldo_dir_stripe = NULL;
4172         }
4173
4174         if (lo->ldo_stripe) {
4175                 LASSERT(lo->ldo_stripes_allocated > 0);
4176
4177                 for (i = 0; i < lo->ldo_stripenr; i++) {
4178                         if (lo->ldo_stripe[i])
4179                                 lu_object_put(env, &lo->ldo_stripe[i]->do_lu);
4180                 }
4181
4182                 i = sizeof(struct dt_object *) * lo->ldo_stripes_allocated;
4183                 OBD_FREE(lo->ldo_stripe, i);
4184                 lo->ldo_stripe = NULL;
4185                 lo->ldo_stripes_allocated = 0;
4186         }
4187         lo->ldo_striping_cached = 0;
4188         lo->ldo_stripenr = 0;
4189         lo->ldo_pattern = 0;
4190 }
4191
4192 /**
4193  * Implementation of lu_object_operations::loo_object_start.
4194  *
4195  * \see lu_object_operations::loo_object_start() in the API description
4196  * for details.
4197  */
4198 static int lod_object_start(const struct lu_env *env, struct lu_object *o)
4199 {
4200         if (S_ISLNK(o->lo_header->loh_attr & S_IFMT)) {
4201                 lu2lod_obj(o)->ldo_obj.do_body_ops = &lod_body_lnk_ops;
4202         } else if (S_ISREG(o->lo_header->loh_attr & S_IFMT) ||
4203                    fid_is_local_file(lu_object_fid(o))) {
4204                 /* Note: some local file (like last rcvd) is created
4205                  * through bottom layer (OSD), so the object initialization
4206                  * comes to lod, it does not set loh_attr yet, so
4207                  * set do_body_ops for local file anyway */
4208                 lu2lod_obj(o)->ldo_obj.do_body_ops = &lod_body_ops;
4209         }
4210         return 0;
4211 }
4212
4213 /**
4214  * Implementation of lu_object_operations::loo_object_free.
4215  *
4216  * \see lu_object_operations::loo_object_free() in the API description
4217  * for details.
4218  */
4219 static void lod_object_free(const struct lu_env *env, struct lu_object *o)
4220 {
4221         struct lod_object *mo = lu2lod_obj(o);
4222
4223         /*
4224          * release all underlying object pinned
4225          */
4226
4227         lod_object_free_striping(env, mo);
4228
4229         lod_object_set_pool(mo, NULL);
4230
4231         lu_object_fini(o);
4232         OBD_SLAB_FREE_PTR(mo, lod_object_kmem);
4233 }
4234
4235 /**
4236  * Implementation of lu_object_operations::loo_object_release.
4237  *
4238  * \see lu_object_operations::loo_object_release() in the API description
4239  * for details.
4240  */
4241 static void lod_object_release(const struct lu_env *env, struct lu_object *o)
4242 {
4243         /* XXX: shouldn't we release everything here in case if object
4244          * creation failed before? */
4245 }
4246
4247 /**
4248  * Implementation of lu_object_operations::loo_object_print.
4249  *
4250  * \see lu_object_operations::loo_object_print() in the API description
4251  * for details.
4252  */
4253 static int lod_object_print(const struct lu_env *env, void *cookie,
4254                             lu_printer_t p, const struct lu_object *l)
4255 {
4256         struct lod_object *o = lu2lod_obj((struct lu_object *) l);
4257
4258         return (*p)(env, cookie, LUSTRE_LOD_NAME"-object@%p", o);
4259 }
4260
4261 struct lu_object_operations lod_lu_obj_ops = {
4262         .loo_object_init        = lod_object_init,
4263         .loo_object_start       = lod_object_start,
4264         .loo_object_free        = lod_object_free,
4265         .loo_object_release     = lod_object_release,
4266         .loo_object_print       = lod_object_print,
4267 };