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