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