4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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.
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
23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved
24 * Use is subject to license terms.
26 * Copyright (c) 2012, 2015, Intel Corporation.
29 * lustre/lod/lod_object.c
31 * This file contains implementations of methods for the OSD API
32 * for the Logical Object Device (LOD) layer, which provides a virtual
33 * local OSD object interface to the MDD layer, and abstracts the
34 * addressing of local (OSD) and remote (OSP) objects. The API is
35 * described in the file lustre/include/dt_object.h and in
36 * Documentation/osd-api.txt.
38 * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
41 #define DEBUG_SUBSYSTEM S_MDS
44 #include <obd_class.h>
45 #include <obd_support.h>
47 #include <lustre_fid.h>
48 #include <lustre_linkea.h>
49 #include <lustre_lmv.h>
50 #include <lustre_param.h>
51 #include <lustre_swab.h>
52 #include <lustre_ver.h>
53 #include <lprocfs_status.h>
54 #include <md_object.h>
56 #include "lod_internal.h"
58 static const char dot[] = ".";
59 static const char dotdot[] = "..";
61 static const struct dt_body_operations lod_body_lnk_ops;
62 static const struct dt_body_operations lod_body_ops;
65 * Implementation of dt_index_operations::dio_lookup
67 * Used with regular (non-striped) objects.
69 * \see dt_index_operations::dio_lookup() in the API description for details.
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)
74 struct dt_object *next = dt_object_child(dt);
75 return next->do_index_ops->dio_lookup(env, next, rec, key);
79 * Implementation of dt_index_operations::dio_declare_insert.
81 * Used with regular (non-striped) objects.
83 * \see dt_index_operations::dio_declare_insert() in the API description
86 static int lod_declare_index_insert(const struct lu_env *env,
88 const struct dt_rec *rec,
89 const struct dt_key *key,
92 return lod_sub_object_declare_insert(env, dt_object_child(dt),
97 * Implementation of dt_index_operations::dio_insert.
99 * Used with regular (non-striped) objects
101 * \see dt_index_operations::dio_insert() in the API description for details.
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,
110 return lod_sub_object_index_insert(env, dt_object_child(dt), rec, key,
115 * Implementation of dt_index_operations::dio_declare_delete.
117 * Used with regular (non-striped) objects.
119 * \see dt_index_operations::dio_declare_delete() in the API description
122 static int lod_declare_index_delete(const struct lu_env *env,
123 struct dt_object *dt,
124 const struct dt_key *key,
127 return lod_sub_object_declare_delete(env, dt_object_child(dt), key,
132 * Implementation of dt_index_operations::dio_delete.
134 * Used with regular (non-striped) objects.
136 * \see dt_index_operations::dio_delete() in the API description for details.
138 static int lod_index_delete(const struct lu_env *env,
139 struct dt_object *dt,
140 const struct dt_key *key,
143 return lod_sub_object_delete(env, dt_object_child(dt), key, th);
147 * Implementation of dt_it_ops::init.
149 * Used with regular (non-striped) objects.
151 * \see dt_it_ops::init() in the API description for details.
153 static struct dt_it *lod_it_init(const struct lu_env *env,
154 struct dt_object *dt, __u32 attr)
156 struct dt_object *next = dt_object_child(dt);
157 struct lod_it *it = &lod_env_info(env)->lti_it;
158 struct dt_it *it_next;
160 it_next = next->do_index_ops->dio_it.init(env, next, attr);
164 /* currently we do not use more than one iterator per thread
165 * so we store it in thread info. if at some point we need
166 * more active iterators in a single thread, we can allocate
168 LASSERT(it->lit_obj == NULL);
170 it->lit_it = it_next;
173 return (struct dt_it *)it;
176 #define LOD_CHECK_IT(env, it) \
178 LASSERT((it)->lit_obj != NULL); \
179 LASSERT((it)->lit_it != NULL); \
183 * Implementation of dt_index_operations::dio_it.fini.
185 * Used with regular (non-striped) objects.
187 * \see dt_index_operations::dio_it.fini() in the API description for details.
189 static void lod_it_fini(const struct lu_env *env, struct dt_it *di)
191 struct lod_it *it = (struct lod_it *)di;
193 LOD_CHECK_IT(env, it);
194 it->lit_obj->do_index_ops->dio_it.fini(env, it->lit_it);
196 /* the iterator not in use any more */
202 * Implementation of dt_it_ops::get.
204 * Used with regular (non-striped) objects.
206 * \see dt_it_ops::get() in the API description for details.
208 static int lod_it_get(const struct lu_env *env, struct dt_it *di,
209 const struct dt_key *key)
211 const struct lod_it *it = (const struct lod_it *)di;
213 LOD_CHECK_IT(env, it);
214 return it->lit_obj->do_index_ops->dio_it.get(env, it->lit_it, key);
218 * Implementation of dt_it_ops::put.
220 * Used with regular (non-striped) objects.
222 * \see dt_it_ops::put() in the API description for details.
224 static void lod_it_put(const struct lu_env *env, struct dt_it *di)
226 struct lod_it *it = (struct lod_it *)di;
228 LOD_CHECK_IT(env, it);
229 return it->lit_obj->do_index_ops->dio_it.put(env, it->lit_it);
233 * Implementation of dt_it_ops::next.
235 * Used with regular (non-striped) objects
237 * \see dt_it_ops::next() in the API description for details.
239 static int lod_it_next(const struct lu_env *env, struct dt_it *di)
241 struct lod_it *it = (struct lod_it *)di;
243 LOD_CHECK_IT(env, it);
244 return it->lit_obj->do_index_ops->dio_it.next(env, it->lit_it);
248 * Implementation of dt_it_ops::key.
250 * Used with regular (non-striped) objects.
252 * \see dt_it_ops::key() in the API description for details.
254 static struct dt_key *lod_it_key(const struct lu_env *env,
255 const struct dt_it *di)
257 const struct lod_it *it = (const struct lod_it *)di;
259 LOD_CHECK_IT(env, it);
260 return it->lit_obj->do_index_ops->dio_it.key(env, it->lit_it);
264 * Implementation of dt_it_ops::key_size.
266 * Used with regular (non-striped) objects.
268 * \see dt_it_ops::key_size() in the API description for details.
270 static int lod_it_key_size(const struct lu_env *env, const struct dt_it *di)
272 struct lod_it *it = (struct lod_it *)di;
274 LOD_CHECK_IT(env, it);
275 return it->lit_obj->do_index_ops->dio_it.key_size(env, it->lit_it);
279 * Implementation of dt_it_ops::rec.
281 * Used with regular (non-striped) objects.
283 * \see dt_it_ops::rec() in the API description for details.
285 static int lod_it_rec(const struct lu_env *env, const struct dt_it *di,
286 struct dt_rec *rec, __u32 attr)
288 const struct lod_it *it = (const struct lod_it *)di;
290 LOD_CHECK_IT(env, it);
291 return it->lit_obj->do_index_ops->dio_it.rec(env, it->lit_it, rec,
296 * Implementation of dt_it_ops::rec_size.
298 * Used with regular (non-striped) objects.
300 * \see dt_it_ops::rec_size() in the API description for details.
302 static int lod_it_rec_size(const struct lu_env *env, const struct dt_it *di,
305 const struct lod_it *it = (const struct lod_it *)di;
307 LOD_CHECK_IT(env, it);
308 return it->lit_obj->do_index_ops->dio_it.rec_size(env, it->lit_it,
313 * Implementation of dt_it_ops::store.
315 * Used with regular (non-striped) objects.
317 * \see dt_it_ops::store() in the API description for details.
319 static __u64 lod_it_store(const struct lu_env *env, const struct dt_it *di)
321 const struct lod_it *it = (const struct lod_it *)di;
323 LOD_CHECK_IT(env, it);
324 return it->lit_obj->do_index_ops->dio_it.store(env, it->lit_it);
328 * Implementation of dt_it_ops::load.
330 * Used with regular (non-striped) objects.
332 * \see dt_it_ops::load() in the API description for details.
334 static int lod_it_load(const struct lu_env *env, const struct dt_it *di,
337 const struct lod_it *it = (const struct lod_it *)di;
339 LOD_CHECK_IT(env, it);
340 return it->lit_obj->do_index_ops->dio_it.load(env, it->lit_it, hash);
344 * Implementation of dt_it_ops::key_rec.
346 * Used with regular (non-striped) objects.
348 * \see dt_it_ops::rec() in the API description for details.
350 static int lod_it_key_rec(const struct lu_env *env, const struct dt_it *di,
353 const struct lod_it *it = (const struct lod_it *)di;
355 LOD_CHECK_IT(env, it);
356 return it->lit_obj->do_index_ops->dio_it.key_rec(env, it->lit_it,
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,
373 .key_size = lod_it_key_size,
375 .rec_size = lod_it_rec_size,
376 .store = lod_it_store,
378 .key_rec = lod_it_key_rec,
383 * Implementation of dt_it_ops::init.
385 * Used with striped objects. Internally just initializes the iterator
386 * on the first stripe.
388 * \see dt_it_ops::init() in the API description for details.
390 static struct dt_it *lod_striped_it_init(const struct lu_env *env,
391 struct dt_object *dt, __u32 attr)
393 struct lod_object *lo = lod_dt_obj(dt);
394 struct dt_object *next;
395 struct lod_it *it = &lod_env_info(env)->lti_it;
396 struct dt_it *it_next;
399 LASSERT(lo->ldo_stripenr > 0);
400 next = lo->ldo_stripe[0];
401 LASSERT(next != NULL);
402 LASSERT(next->do_index_ops != NULL);
404 it_next = next->do_index_ops->dio_it.init(env, next, attr);
408 /* currently we do not use more than one iterator per thread
409 * so we store it in thread info. if at some point we need
410 * more active iterators in a single thread, we can allocate
412 LASSERT(it->lit_obj == NULL);
414 it->lit_stripe_index = 0;
416 it->lit_it = it_next;
419 return (struct dt_it *)it;
422 #define LOD_CHECK_STRIPED_IT(env, it, lo) \
424 LASSERT((it)->lit_obj != NULL); \
425 LASSERT((it)->lit_it != NULL); \
426 LASSERT((lo)->ldo_stripenr > 0); \
427 LASSERT((it)->lit_stripe_index < (lo)->ldo_stripenr); \
431 * Implementation of dt_it_ops::fini.
433 * Used with striped objects.
435 * \see dt_it_ops::fini() in the API description for details.
437 static void lod_striped_it_fini(const struct lu_env *env, struct dt_it *di)
439 struct lod_it *it = (struct lod_it *)di;
440 struct lod_object *lo = lod_dt_obj(it->lit_obj);
441 struct dt_object *next;
443 /* If lit_it == NULL, then it means the sub_it has been finished,
444 * which only happens in failure cases, see lod_striped_it_next() */
445 if (it->lit_it != NULL) {
446 LOD_CHECK_STRIPED_IT(env, it, lo);
448 next = lo->ldo_stripe[it->lit_stripe_index];
449 LASSERT(next != NULL);
450 LASSERT(next->do_index_ops != NULL);
452 next->do_index_ops->dio_it.fini(env, it->lit_it);
455 /* the iterator not in use any more */
458 it->lit_stripe_index = 0;
462 * Implementation of dt_it_ops::get.
464 * Right now it's not used widely, only to reset the iterator to the
465 * initial position. It should be possible to implement a full version
466 * which chooses a correct stripe to be able to position with any key.
468 * \see dt_it_ops::get() in the API description for details.
470 static int lod_striped_it_get(const struct lu_env *env, struct dt_it *di,
471 const struct dt_key *key)
473 const struct lod_it *it = (const struct lod_it *)di;
474 struct lod_object *lo = lod_dt_obj(it->lit_obj);
475 struct dt_object *next;
478 LOD_CHECK_STRIPED_IT(env, it, lo);
480 next = lo->ldo_stripe[it->lit_stripe_index];
481 LASSERT(next != NULL);
482 LASSERT(next->do_index_ops != NULL);
484 return next->do_index_ops->dio_it.get(env, it->lit_it, key);
488 * Implementation of dt_it_ops::put.
490 * Used with striped objects.
492 * \see dt_it_ops::put() in the API description for details.
494 static void lod_striped_it_put(const struct lu_env *env, struct dt_it *di)
496 struct lod_it *it = (struct lod_it *)di;
497 struct lod_object *lo = lod_dt_obj(it->lit_obj);
498 struct dt_object *next;
500 LOD_CHECK_STRIPED_IT(env, it, lo);
502 next = lo->ldo_stripe[it->lit_stripe_index];
503 LASSERT(next != NULL);
504 LASSERT(next->do_index_ops != NULL);
506 return next->do_index_ops->dio_it.put(env, it->lit_it);
510 * Implementation of dt_it_ops::next.
512 * Used with striped objects. When the end of the current stripe is
513 * reached, the method takes the next stripe's iterator.
515 * \see dt_it_ops::next() in the API description for details.
517 static int lod_striped_it_next(const struct lu_env *env, struct dt_it *di)
519 struct lod_it *it = (struct lod_it *)di;
520 struct lod_object *lo = lod_dt_obj(it->lit_obj);
521 struct dt_object *next;
522 struct dt_it *it_next;
526 LOD_CHECK_STRIPED_IT(env, it, lo);
528 next = lo->ldo_stripe[it->lit_stripe_index];
529 LASSERT(next != NULL);
530 LASSERT(next->do_index_ops != NULL);
532 rc = next->do_index_ops->dio_it.next(env, it->lit_it);
536 if (rc == 0 && it->lit_stripe_index == 0)
539 if (rc == 0 && it->lit_stripe_index > 0) {
540 struct lu_dirent *ent;
542 ent = (struct lu_dirent *)lod_env_info(env)->lti_key;
544 rc = next->do_index_ops->dio_it.rec(env, it->lit_it,
545 (struct dt_rec *)ent,
550 /* skip . and .. for slave stripe */
551 if ((strncmp(ent->lde_name, ".",
552 le16_to_cpu(ent->lde_namelen)) == 0 &&
553 le16_to_cpu(ent->lde_namelen) == 1) ||
554 (strncmp(ent->lde_name, "..",
555 le16_to_cpu(ent->lde_namelen)) == 0 &&
556 le16_to_cpu(ent->lde_namelen) == 2))
562 /* go to next stripe */
563 if (it->lit_stripe_index + 1 >= lo->ldo_stripenr)
566 it->lit_stripe_index++;
568 next->do_index_ops->dio_it.put(env, it->lit_it);
569 next->do_index_ops->dio_it.fini(env, it->lit_it);
572 next = lo->ldo_stripe[it->lit_stripe_index];
573 LASSERT(next != NULL);
574 rc = next->do_ops->do_index_try(env, next, &dt_directory_features);
578 LASSERT(next->do_index_ops != NULL);
580 it_next = next->do_index_ops->dio_it.init(env, next, it->lit_attr);
581 if (!IS_ERR(it_next)) {
582 it->lit_it = it_next;
585 rc = PTR_ERR(it_next);
592 * Implementation of dt_it_ops::key.
594 * Used with striped objects.
596 * \see dt_it_ops::key() in the API description for details.
598 static struct dt_key *lod_striped_it_key(const struct lu_env *env,
599 const struct dt_it *di)
601 const struct lod_it *it = (const struct lod_it *)di;
602 struct lod_object *lo = lod_dt_obj(it->lit_obj);
603 struct dt_object *next;
605 LOD_CHECK_STRIPED_IT(env, it, lo);
607 next = lo->ldo_stripe[it->lit_stripe_index];
608 LASSERT(next != NULL);
609 LASSERT(next->do_index_ops != NULL);
611 return next->do_index_ops->dio_it.key(env, it->lit_it);
615 * Implementation of dt_it_ops::key_size.
617 * Used with striped objects.
619 * \see dt_it_ops::size() in the API description for details.
621 static int lod_striped_it_key_size(const struct lu_env *env,
622 const struct dt_it *di)
624 struct lod_it *it = (struct lod_it *)di;
625 struct lod_object *lo = lod_dt_obj(it->lit_obj);
626 struct dt_object *next;
628 LOD_CHECK_STRIPED_IT(env, it, lo);
630 next = lo->ldo_stripe[it->lit_stripe_index];
631 LASSERT(next != NULL);
632 LASSERT(next->do_index_ops != NULL);
634 return next->do_index_ops->dio_it.key_size(env, it->lit_it);
638 * Implementation of dt_it_ops::rec.
640 * Used with striped objects.
642 * \see dt_it_ops::rec() in the API description for details.
644 static int lod_striped_it_rec(const struct lu_env *env, const struct dt_it *di,
645 struct dt_rec *rec, __u32 attr)
647 const struct lod_it *it = (const struct lod_it *)di;
648 struct lod_object *lo = lod_dt_obj(it->lit_obj);
649 struct dt_object *next;
651 LOD_CHECK_STRIPED_IT(env, it, lo);
653 next = lo->ldo_stripe[it->lit_stripe_index];
654 LASSERT(next != NULL);
655 LASSERT(next->do_index_ops != NULL);
657 return next->do_index_ops->dio_it.rec(env, it->lit_it, rec, attr);
661 * Implementation of dt_it_ops::rec_size.
663 * Used with striped objects.
665 * \see dt_it_ops::rec_size() in the API description for details.
667 static int lod_striped_it_rec_size(const struct lu_env *env,
668 const struct dt_it *di, __u32 attr)
670 struct lod_it *it = (struct lod_it *)di;
671 struct lod_object *lo = lod_dt_obj(it->lit_obj);
672 struct dt_object *next;
674 LOD_CHECK_STRIPED_IT(env, it, lo);
676 next = lo->ldo_stripe[it->lit_stripe_index];
677 LASSERT(next != NULL);
678 LASSERT(next->do_index_ops != NULL);
680 return next->do_index_ops->dio_it.rec_size(env, it->lit_it, attr);
684 * Implementation of dt_it_ops::store.
686 * Used with striped objects.
688 * \see dt_it_ops::store() in the API description for details.
690 static __u64 lod_striped_it_store(const struct lu_env *env,
691 const struct dt_it *di)
693 const struct lod_it *it = (const struct lod_it *)di;
694 struct lod_object *lo = lod_dt_obj(it->lit_obj);
695 struct dt_object *next;
697 LOD_CHECK_STRIPED_IT(env, it, lo);
699 next = lo->ldo_stripe[it->lit_stripe_index];
700 LASSERT(next != NULL);
701 LASSERT(next->do_index_ops != NULL);
703 return next->do_index_ops->dio_it.store(env, it->lit_it);
707 * Implementation of dt_it_ops::load.
709 * Used with striped objects.
711 * \see dt_it_ops::load() in the API description for details.
713 static int lod_striped_it_load(const struct lu_env *env,
714 const struct dt_it *di, __u64 hash)
716 const struct lod_it *it = (const struct lod_it *)di;
717 struct lod_object *lo = lod_dt_obj(it->lit_obj);
718 struct dt_object *next;
720 LOD_CHECK_STRIPED_IT(env, it, lo);
722 next = lo->ldo_stripe[it->lit_stripe_index];
723 LASSERT(next != NULL);
724 LASSERT(next->do_index_ops != NULL);
726 return next->do_index_ops->dio_it.load(env, it->lit_it, hash);
729 static struct dt_index_operations lod_striped_index_ops = {
730 .dio_lookup = lod_index_lookup,
731 .dio_declare_insert = lod_declare_index_insert,
732 .dio_insert = lod_index_insert,
733 .dio_declare_delete = lod_declare_index_delete,
734 .dio_delete = lod_index_delete,
736 .init = lod_striped_it_init,
737 .fini = lod_striped_it_fini,
738 .get = lod_striped_it_get,
739 .put = lod_striped_it_put,
740 .next = lod_striped_it_next,
741 .key = lod_striped_it_key,
742 .key_size = lod_striped_it_key_size,
743 .rec = lod_striped_it_rec,
744 .rec_size = lod_striped_it_rec_size,
745 .store = lod_striped_it_store,
746 .load = lod_striped_it_load,
751 * Append the FID for each shard of the striped directory after the
752 * given LMV EA header.
754 * To simplify striped directory and the consistency verification,
755 * we only store the LMV EA header on disk, for both master object
756 * and slave objects. When someone wants to know the whole LMV EA,
757 * such as client readdir(), we can build the entrie LMV EA on the
758 * MDT side (in RAM) via iterating the sub-directory entries that
759 * are contained in the master object of the stripe directory.
761 * For the master object of the striped directroy, the valid name
762 * for each shard is composed of the ${shard_FID}:${shard_idx}.
764 * There may be holes in the LMV EA if some shards' name entries
765 * are corrupted or lost.
767 * \param[in] env pointer to the thread context
768 * \param[in] lo pointer to the master object of the striped directory
769 * \param[in] buf pointer to the lu_buf which will hold the LMV EA
770 * \param[in] resize whether re-allocate the buffer if it is not big enough
772 * \retval positive size of the LMV EA
773 * \retval 0 for nothing to be loaded
774 * \retval negative error number on failure
776 int lod_load_lmv_shards(const struct lu_env *env, struct lod_object *lo,
777 struct lu_buf *buf, bool resize)
779 struct lu_dirent *ent =
780 (struct lu_dirent *)lod_env_info(env)->lti_key;
781 struct lod_device *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
782 struct dt_object *obj = dt_object_child(&lo->ldo_obj);
783 struct lmv_mds_md_v1 *lmv1 = buf->lb_buf;
785 const struct dt_it_ops *iops;
787 __u32 magic = le32_to_cpu(lmv1->lmv_magic);
792 /* If it is not a striped directory, then load nothing. */
793 if (magic != LMV_MAGIC_V1)
796 /* If it is in migration (or failure), then load nothing. */
797 if (le32_to_cpu(lmv1->lmv_hash_type) & LMV_HASH_FLAG_MIGRATION)
800 stripes = le32_to_cpu(lmv1->lmv_stripe_count);
804 rc = lmv_mds_md_size(stripes, magic);
808 if (buf->lb_len < lmv1_size) {
817 lu_buf_alloc(buf, lmv1_size);
822 memcpy(buf->lb_buf, tbuf.lb_buf, tbuf.lb_len);
825 if (unlikely(!dt_try_as_dir(env, obj)))
828 memset(&lmv1->lmv_stripe_fids[0], 0, stripes * sizeof(struct lu_fid));
829 iops = &obj->do_index_ops->dio_it;
830 it = iops->init(env, obj, LUDA_64BITHASH);
834 rc = iops->load(env, it, 0);
836 rc = iops->next(env, it);
841 char name[FID_LEN + 2] = "";
846 rc = iops->rec(env, it, (struct dt_rec *)ent, LUDA_64BITHASH);
852 fid_le_to_cpu(&fid, &ent->lde_fid);
853 ent->lde_namelen = le16_to_cpu(ent->lde_namelen);
854 if (ent->lde_name[0] == '.') {
855 if (ent->lde_namelen == 1)
858 if (ent->lde_namelen == 2 && ent->lde_name[1] == '.')
862 len = snprintf(name, sizeof(name),
863 DFID":", PFID(&ent->lde_fid));
864 /* The ent->lde_name is composed of ${FID}:${index} */
865 if (ent->lde_namelen < len + 1 ||
866 memcmp(ent->lde_name, name, len) != 0) {
867 CDEBUG(lod->lod_lmv_failout ? D_ERROR : D_INFO,
868 "%s: invalid shard name %.*s with the FID "DFID
869 " for the striped directory "DFID", %s\n",
870 lod2obd(lod)->obd_name, ent->lde_namelen,
871 ent->lde_name, PFID(&fid),
872 PFID(lu_object_fid(&obj->do_lu)),
873 lod->lod_lmv_failout ? "failout" : "skip");
875 if (lod->lod_lmv_failout)
883 if (ent->lde_name[len] < '0' ||
884 ent->lde_name[len] > '9') {
885 CDEBUG(lod->lod_lmv_failout ? D_ERROR : D_INFO,
886 "%s: invalid shard name %.*s with the "
887 "FID "DFID" for the striped directory "
889 lod2obd(lod)->obd_name, ent->lde_namelen,
890 ent->lde_name, PFID(&fid),
891 PFID(lu_object_fid(&obj->do_lu)),
892 lod->lod_lmv_failout ?
895 if (lod->lod_lmv_failout)
901 index = index * 10 + ent->lde_name[len++] - '0';
902 } while (len < ent->lde_namelen);
904 if (len == ent->lde_namelen) {
905 /* Out of LMV EA range. */
906 if (index >= stripes) {
907 CERROR("%s: the shard %.*s for the striped "
908 "directory "DFID" is out of the known "
909 "LMV EA range [0 - %u], failout\n",
910 lod2obd(lod)->obd_name, ent->lde_namelen,
912 PFID(lu_object_fid(&obj->do_lu)),
918 /* The slot has been occupied. */
919 if (!fid_is_zero(&lmv1->lmv_stripe_fids[index])) {
923 &lmv1->lmv_stripe_fids[index]);
924 CERROR("%s: both the shard "DFID" and "DFID
925 " for the striped directory "DFID
926 " claim the same LMV EA slot at the "
927 "index %d, failout\n",
928 lod2obd(lod)->obd_name,
929 PFID(&fid0), PFID(&fid),
930 PFID(lu_object_fid(&obj->do_lu)), index);
935 /* stored as LE mode */
936 lmv1->lmv_stripe_fids[index] = ent->lde_fid;
939 rc = iops->next(env, it);
946 RETURN(rc > 0 ? lmv_mds_md_size(stripes, magic) : rc);
950 * Implementation of dt_object_operations::do_index_try.
952 * \see dt_object_operations::do_index_try() in the API description for details.
954 static int lod_index_try(const struct lu_env *env, struct dt_object *dt,
955 const struct dt_index_features *feat)
957 struct lod_object *lo = lod_dt_obj(dt);
958 struct dt_object *next = dt_object_child(dt);
962 LASSERT(next->do_ops);
963 LASSERT(next->do_ops->do_index_try);
965 rc = lod_load_striping_locked(env, lo);
969 rc = next->do_ops->do_index_try(env, next, feat);
973 if (lo->ldo_stripenr > 0) {
976 for (i = 0; i < lo->ldo_stripenr; i++) {
977 if (dt_object_exists(lo->ldo_stripe[i]) == 0)
979 rc = lo->ldo_stripe[i]->do_ops->do_index_try(env,
980 lo->ldo_stripe[i], feat);
984 dt->do_index_ops = &lod_striped_index_ops;
986 dt->do_index_ops = &lod_index_ops;
993 * Implementation of dt_object_operations::do_read_lock.
995 * \see dt_object_operations::do_read_lock() in the API description for details.
997 static void lod_object_read_lock(const struct lu_env *env,
998 struct dt_object *dt, unsigned role)
1000 dt_read_lock(env, dt_object_child(dt), role);
1004 * Implementation of dt_object_operations::do_write_lock.
1006 * \see dt_object_operations::do_write_lock() in the API description for
1009 static void lod_object_write_lock(const struct lu_env *env,
1010 struct dt_object *dt, unsigned role)
1012 dt_write_lock(env, dt_object_child(dt), role);
1016 * Implementation of dt_object_operations::do_read_unlock.
1018 * \see dt_object_operations::do_read_unlock() in the API description for
1021 static void lod_object_read_unlock(const struct lu_env *env,
1022 struct dt_object *dt)
1024 dt_read_unlock(env, dt_object_child(dt));
1028 * Implementation of dt_object_operations::do_write_unlock.
1030 * \see dt_object_operations::do_write_unlock() in the API description for
1033 static void lod_object_write_unlock(const struct lu_env *env,
1034 struct dt_object *dt)
1036 dt_write_unlock(env, dt_object_child(dt));
1040 * Implementation of dt_object_operations::do_write_locked.
1042 * \see dt_object_operations::do_write_locked() in the API description for
1045 static int lod_object_write_locked(const struct lu_env *env,
1046 struct dt_object *dt)
1048 return dt_write_locked(env, dt_object_child(dt));
1052 * Implementation of dt_object_operations::do_attr_get.
1054 * \see dt_object_operations::do_attr_get() in the API description for details.
1056 static int lod_attr_get(const struct lu_env *env,
1057 struct dt_object *dt,
1058 struct lu_attr *attr)
1060 /* Note: for striped directory, client will merge attributes
1061 * from all of the sub-stripes see lmv_merge_attr(), and there
1062 * no MDD logic depend on directory nlink/size/time, so we can
1063 * always use master inode nlink and size for now. */
1064 return dt_attr_get(env, dt_object_child(dt), attr);
1068 * Implementation of dt_object_operations::do_declare_attr_set.
1070 * If the object is striped, then apply the changes to all the stripes.
1072 * \see dt_object_operations::do_declare_attr_set() in the API description
1075 static int lod_declare_attr_set(const struct lu_env *env,
1076 struct dt_object *dt,
1077 const struct lu_attr *attr,
1080 struct dt_object *next = dt_object_child(dt);
1081 struct lod_object *lo = lod_dt_obj(dt);
1086 * declare setattr on the local object
1088 rc = lod_sub_object_declare_attr_set(env, next, attr, th);
1092 /* osp_declare_attr_set() ignores all attributes other than
1093 * UID, GID, and size, and osp_attr_set() ignores all but UID
1094 * and GID. Declaration of size attr setting happens through
1095 * lod_declare_init_size(), and not through this function.
1096 * Therefore we need not load striping unless ownership is
1097 * changing. This should save memory and (we hope) speed up
1099 if (!S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
1100 if (!(attr->la_valid & (LA_UID | LA_GID)))
1103 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_OWNER))
1106 if (!(attr->la_valid & (LA_UID | LA_GID | LA_MODE |
1107 LA_ATIME | LA_MTIME | LA_CTIME |
1112 * load striping information, notice we don't do this when object
1113 * is being initialized as we don't need this information till
1114 * few specific cases like destroy, chown
1116 rc = lod_load_striping(env, lo);
1120 if (lo->ldo_stripenr == 0)
1124 * if object is striped declare changes on the stripes
1126 LASSERT(lo->ldo_stripe);
1127 for (i = 0; i < lo->ldo_stripenr; i++) {
1128 if (lo->ldo_stripe[i] == NULL)
1130 rc = lod_sub_object_declare_attr_set(env,
1131 lo->ldo_stripe[i], attr,
1137 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_STRIPE) &&
1138 dt_object_exists(next) != 0 &&
1139 dt_object_remote(next) == 0)
1140 lod_sub_object_declare_xattr_del(env, next,
1141 XATTR_NAME_LOV, th);
1143 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_CHANGE_STRIPE) &&
1144 dt_object_exists(next) &&
1145 dt_object_remote(next) == 0 && S_ISREG(attr->la_mode)) {
1146 struct lod_thread_info *info = lod_env_info(env);
1147 struct lu_buf *buf = &info->lti_buf;
1149 buf->lb_buf = info->lti_ea_store;
1150 buf->lb_len = info->lti_ea_store_size;
1151 lod_sub_object_declare_xattr_set(env, next, buf,
1153 LU_XATTR_REPLACE, th);
1160 * Implementation of dt_object_operations::do_attr_set.
1162 * If the object is striped, then apply the changes to all or subset of
1163 * the stripes depending on the object type and specific attributes.
1165 * \see dt_object_operations::do_attr_set() in the API description for details.
1167 static int lod_attr_set(const struct lu_env *env,
1168 struct dt_object *dt,
1169 const struct lu_attr *attr,
1172 struct dt_object *next = dt_object_child(dt);
1173 struct lod_object *lo = lod_dt_obj(dt);
1178 * apply changes to the local object
1180 rc = lod_sub_object_attr_set(env, next, attr, th);
1184 if (!S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
1185 if (!(attr->la_valid & (LA_UID | LA_GID)))
1188 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_OWNER))
1191 if (!(attr->la_valid & (LA_UID | LA_GID | LA_MODE |
1192 LA_ATIME | LA_MTIME | LA_CTIME |
1197 if (lo->ldo_stripenr == 0)
1201 * if object is striped, apply changes to all the stripes
1203 LASSERT(lo->ldo_stripe);
1204 for (i = 0; i < lo->ldo_stripenr; i++) {
1205 if (unlikely(lo->ldo_stripe[i] == NULL))
1208 if (S_ISDIR(dt->do_lu.lo_header->loh_attr) &&
1209 (dt_object_exists(lo->ldo_stripe[i]) == 0))
1212 rc = lod_sub_object_attr_set(env, lo->ldo_stripe[i], attr, th);
1217 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_STRIPE) &&
1218 dt_object_exists(next) != 0 &&
1219 dt_object_remote(next) == 0)
1220 rc = lod_sub_object_xattr_del(env, next, XATTR_NAME_LOV, th);
1222 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_CHANGE_STRIPE) &&
1223 dt_object_exists(next) &&
1224 dt_object_remote(next) == 0 && S_ISREG(attr->la_mode)) {
1225 struct lod_thread_info *info = lod_env_info(env);
1226 struct lu_buf *buf = &info->lti_buf;
1227 struct ost_id *oi = &info->lti_ostid;
1228 struct lu_fid *fid = &info->lti_fid;
1229 struct lov_mds_md_v1 *lmm;
1230 struct lov_ost_data_v1 *objs;
1234 rc1 = lod_get_lov_ea(env, lo);
1238 buf->lb_buf = info->lti_ea_store;
1239 buf->lb_len = info->lti_ea_store_size;
1240 lmm = info->lti_ea_store;
1241 magic = le32_to_cpu(lmm->lmm_magic);
1242 if (magic == LOV_MAGIC_V1)
1243 objs = &(lmm->lmm_objects[0]);
1245 objs = &((struct lov_mds_md_v3 *)lmm)->lmm_objects[0];
1246 ostid_le_to_cpu(&objs->l_ost_oi, oi);
1247 ostid_to_fid(fid, oi, le32_to_cpu(objs->l_ost_idx));
1249 fid_to_ostid(fid, oi);
1250 ostid_cpu_to_le(oi, &objs->l_ost_oi);
1252 rc = lod_sub_object_xattr_set(env, next, buf, XATTR_NAME_LOV,
1253 LU_XATTR_REPLACE, th);
1260 * Implementation of dt_object_operations::do_xattr_get.
1262 * If LOV EA is requested from the root object and it's not
1263 * found, then return default striping for the filesystem.
1265 * \see dt_object_operations::do_xattr_get() in the API description for details.
1267 static int lod_xattr_get(const struct lu_env *env, struct dt_object *dt,
1268 struct lu_buf *buf, const char *name)
1270 struct lod_thread_info *info = lod_env_info(env);
1271 struct lod_device *dev = lu2lod_dev(dt->do_lu.lo_dev);
1275 rc = dt_xattr_get(env, dt_object_child(dt), buf, name);
1276 if (strcmp(name, XATTR_NAME_LMV) == 0) {
1277 struct lmv_mds_md_v1 *lmv1;
1280 if (rc > (typeof(rc))sizeof(*lmv1))
1283 if (rc < (typeof(rc))sizeof(*lmv1))
1284 RETURN(rc = rc > 0 ? -EINVAL : rc);
1286 if (buf->lb_buf == NULL || buf->lb_len == 0) {
1287 CLASSERT(sizeof(*lmv1) <= sizeof(info->lti_key));
1289 info->lti_buf.lb_buf = info->lti_key;
1290 info->lti_buf.lb_len = sizeof(*lmv1);
1291 rc = dt_xattr_get(env, dt_object_child(dt),
1292 &info->lti_buf, name);
1293 if (unlikely(rc != sizeof(*lmv1)))
1294 RETURN(rc = rc > 0 ? -EINVAL : rc);
1296 lmv1 = info->lti_buf.lb_buf;
1297 /* The on-disk LMV EA only contains header, but the
1298 * returned LMV EA size should contain the space for
1299 * the FIDs of all shards of the striped directory. */
1300 if (le32_to_cpu(lmv1->lmv_magic) == LMV_MAGIC_V1)
1301 rc = lmv_mds_md_size(
1302 le32_to_cpu(lmv1->lmv_stripe_count),
1305 rc1 = lod_load_lmv_shards(env, lod_dt_obj(dt),
1309 RETURN(rc = rc1 != 0 ? rc1 : rc);
1312 if (rc != -ENODATA || !S_ISDIR(dt->do_lu.lo_header->loh_attr & S_IFMT))
1316 * lod returns default striping on the real root of the device
1317 * this is like the root stores default striping for the whole
1318 * filesystem. historically we've been using a different approach
1319 * and store it in the config.
1321 dt_root_get(env, dev->lod_child, &info->lti_fid);
1322 is_root = lu_fid_eq(&info->lti_fid, lu_object_fid(&dt->do_lu));
1324 if (is_root && strcmp(XATTR_NAME_LOV, name) == 0) {
1325 struct lov_user_md *lum = buf->lb_buf;
1326 struct lov_desc *desc = &dev->lod_desc;
1328 if (buf->lb_buf == NULL) {
1330 } else if (buf->lb_len >= sizeof(*lum)) {
1331 lum->lmm_magic = cpu_to_le32(LOV_USER_MAGIC_V1);
1332 lmm_oi_set_seq(&lum->lmm_oi, FID_SEQ_LOV_DEFAULT);
1333 lmm_oi_set_id(&lum->lmm_oi, 0);
1334 lmm_oi_cpu_to_le(&lum->lmm_oi, &lum->lmm_oi);
1335 lum->lmm_pattern = cpu_to_le32(desc->ld_pattern);
1336 lum->lmm_stripe_size = cpu_to_le32(
1337 desc->ld_default_stripe_size);
1338 lum->lmm_stripe_count = cpu_to_le16(
1339 desc->ld_default_stripe_count);
1340 lum->lmm_stripe_offset = cpu_to_le16(
1341 desc->ld_default_stripe_offset);
1354 * Checks that the magic of the stripe is sane.
1356 * \param[in] lod lod device
1357 * \param[in] lum a buffer storing LMV EA to verify
1359 * \retval 0 if the EA is sane
1360 * \retval negative otherwise
1362 static int lod_verify_md_striping(struct lod_device *lod,
1363 const struct lmv_user_md_v1 *lum)
1365 if (unlikely(le32_to_cpu(lum->lum_magic) != LMV_USER_MAGIC)) {
1366 CERROR("%s: invalid lmv_user_md: magic = %x, "
1367 "stripe_offset = %d, stripe_count = %u: rc = %d\n",
1368 lod2obd(lod)->obd_name, le32_to_cpu(lum->lum_magic),
1369 (int)le32_to_cpu(lum->lum_stripe_offset),
1370 le32_to_cpu(lum->lum_stripe_count), -EINVAL);
1378 * Initialize LMV EA for a slave.
1380 * Initialize slave's LMV EA from the master's LMV EA.
1382 * \param[in] master_lmv a buffer containing master's EA
1383 * \param[out] slave_lmv a buffer where slave's EA will be stored
1386 static void lod_prep_slave_lmv_md(struct lmv_mds_md_v1 *slave_lmv,
1387 const struct lmv_mds_md_v1 *master_lmv)
1389 *slave_lmv = *master_lmv;
1390 slave_lmv->lmv_magic = cpu_to_le32(LMV_MAGIC_STRIPE);
1396 * Generate LMV EA from the object passed as \a dt. The object must have
1397 * the stripes created and initialized.
1399 * \param[in] env execution environment
1400 * \param[in] dt object
1401 * \param[out] lmv_buf buffer storing generated LMV EA
1403 * \retval 0 on success
1404 * \retval negative if failed
1406 static int lod_prep_lmv_md(const struct lu_env *env, struct dt_object *dt,
1407 struct lu_buf *lmv_buf)
1409 struct lod_thread_info *info = lod_env_info(env);
1410 struct lod_device *lod = lu2lod_dev(dt->do_lu.lo_dev);
1411 struct lod_object *lo = lod_dt_obj(dt);
1412 struct lmv_mds_md_v1 *lmm1;
1414 int type = LU_SEQ_RANGE_ANY;
1419 LASSERT(lo->ldo_dir_striped != 0);
1420 LASSERT(lo->ldo_stripenr > 0);
1421 stripe_count = lo->ldo_stripenr;
1422 /* Only store the LMV EA heahder on the disk. */
1423 if (info->lti_ea_store_size < sizeof(*lmm1)) {
1424 rc = lod_ea_store_resize(info, sizeof(*lmm1));
1428 memset(info->lti_ea_store, 0, sizeof(*lmm1));
1431 lmm1 = (struct lmv_mds_md_v1 *)info->lti_ea_store;
1432 lmm1->lmv_magic = cpu_to_le32(LMV_MAGIC);
1433 lmm1->lmv_stripe_count = cpu_to_le32(stripe_count);
1434 lmm1->lmv_hash_type = cpu_to_le32(lo->ldo_dir_hash_type);
1435 rc = lod_fld_lookup(env, lod, lu_object_fid(&dt->do_lu),
1440 lmm1->lmv_master_mdt_index = cpu_to_le32(mdtidx);
1441 lmv_buf->lb_buf = info->lti_ea_store;
1442 lmv_buf->lb_len = sizeof(*lmm1);
1448 * Create in-core represenation for a striped directory.
1450 * Parse the buffer containing LMV EA and instantiate LU objects
1451 * representing the stripe objects. The pointers to the objects are
1452 * stored in ldo_stripe field of \a lo. This function is used when
1453 * we need to access an already created object (i.e. load from a disk).
1455 * \param[in] env execution environment
1456 * \param[in] lo lod object
1457 * \param[in] buf buffer containing LMV EA
1459 * \retval 0 on success
1460 * \retval negative if failed
1462 int lod_parse_dir_striping(const struct lu_env *env, struct lod_object *lo,
1463 const struct lu_buf *buf)
1465 struct lod_thread_info *info = lod_env_info(env);
1466 struct lod_device *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
1467 struct lod_tgt_descs *ltd = &lod->lod_mdt_descs;
1468 struct dt_object **stripe;
1469 union lmv_mds_md *lmm = buf->lb_buf;
1470 struct lmv_mds_md_v1 *lmv1 = &lmm->lmv_md_v1;
1471 struct lu_fid *fid = &info->lti_fid;
1476 if (le32_to_cpu(lmv1->lmv_hash_type) & LMV_HASH_FLAG_MIGRATION)
1479 if (le32_to_cpu(lmv1->lmv_magic) == LMV_MAGIC_STRIPE) {
1480 lo->ldo_dir_slave_stripe = 1;
1484 if (le32_to_cpu(lmv1->lmv_magic) != LMV_MAGIC_V1)
1487 if (le32_to_cpu(lmv1->lmv_stripe_count) < 1)
1490 LASSERT(lo->ldo_stripe == NULL);
1491 OBD_ALLOC(stripe, sizeof(stripe[0]) *
1492 (le32_to_cpu(lmv1->lmv_stripe_count)));
1496 for (i = 0; i < le32_to_cpu(lmv1->lmv_stripe_count); i++) {
1497 struct dt_device *tgt_dt;
1498 struct dt_object *dto;
1499 int type = LU_SEQ_RANGE_ANY;
1502 fid_le_to_cpu(fid, &lmv1->lmv_stripe_fids[i]);
1503 if (!fid_is_sane(fid))
1504 GOTO(out, rc = -ESTALE);
1506 rc = lod_fld_lookup(env, lod, fid, &idx, &type);
1510 if (idx == lod2lu_dev(lod)->ld_site->ld_seq_site->ss_node_id) {
1511 tgt_dt = lod->lod_child;
1513 struct lod_tgt_desc *tgt;
1515 tgt = LTD_TGT(ltd, idx);
1517 GOTO(out, rc = -ESTALE);
1518 tgt_dt = tgt->ltd_tgt;
1521 dto = dt_locate_at(env, tgt_dt, fid,
1522 lo->ldo_obj.do_lu.lo_dev->ld_site->ls_top_dev,
1525 GOTO(out, rc = PTR_ERR(dto));
1530 lo->ldo_stripe = stripe;
1531 lo->ldo_stripenr = le32_to_cpu(lmv1->lmv_stripe_count);
1532 lo->ldo_stripes_allocated = le32_to_cpu(lmv1->lmv_stripe_count);
1534 lod_object_free_striping(env, lo);
1540 * Declare create a striped directory.
1542 * Declare creating a striped directory with a given stripe pattern on the
1543 * specified MDTs. A striped directory is represented as a regular directory
1544 * - an index listing all the stripes. The stripes point back to the master
1545 * object with ".." and LinkEA. The master object gets LMV EA which
1546 * identifies it as a striped directory. The function allocates FIDs
1549 * \param[in] env execution environment
1550 * \param[in] dt object
1551 * \param[in] attr attributes to initialize the objects with
1552 * \param[in] dof type of objects to be created
1553 * \param[in] th transaction handle
1555 * \retval 0 on success
1556 * \retval negative if failed
1558 static int lod_dir_declare_create_stripes(const struct lu_env *env,
1559 struct dt_object *dt,
1560 struct lu_attr *attr,
1561 struct dt_object_format *dof,
1564 struct lod_thread_info *info = lod_env_info(env);
1565 struct lu_buf lmv_buf;
1566 struct lu_buf slave_lmv_buf;
1567 struct lmv_mds_md_v1 *lmm;
1568 struct lmv_mds_md_v1 *slave_lmm = NULL;
1569 struct dt_insert_rec *rec = &info->lti_dt_rec;
1570 struct lod_object *lo = lod_dt_obj(dt);
1575 rc = lod_prep_lmv_md(env, dt, &lmv_buf);
1578 lmm = lmv_buf.lb_buf;
1580 OBD_ALLOC_PTR(slave_lmm);
1581 if (slave_lmm == NULL)
1582 GOTO(out, rc = -ENOMEM);
1584 lod_prep_slave_lmv_md(slave_lmm, lmm);
1585 slave_lmv_buf.lb_buf = slave_lmm;
1586 slave_lmv_buf.lb_len = sizeof(*slave_lmm);
1588 if (!dt_try_as_dir(env, dt_object_child(dt)))
1589 GOTO(out, rc = -EINVAL);
1591 rec->rec_type = S_IFDIR;
1592 for (i = 0; i < lo->ldo_stripenr; i++) {
1593 struct dt_object *dto = lo->ldo_stripe[i];
1594 char *stripe_name = info->lti_key;
1595 struct lu_name *sname;
1596 struct linkea_data ldata = { NULL };
1597 struct lu_buf linkea_buf;
1599 rc = lod_sub_object_declare_create(env, dto, attr, NULL,
1604 if (!dt_try_as_dir(env, dto))
1605 GOTO(out, rc = -EINVAL);
1607 rc = lod_sub_object_declare_ref_add(env, dto, th);
1611 rec->rec_fid = lu_object_fid(&dto->do_lu);
1612 rc = lod_sub_object_declare_insert(env, dto,
1613 (const struct dt_rec *)rec,
1614 (const struct dt_key *)dot, th);
1618 /* master stripe FID will be put to .. */
1619 rec->rec_fid = lu_object_fid(&dt->do_lu);
1620 rc = lod_sub_object_declare_insert(env, dto,
1621 (const struct dt_rec *)rec,
1622 (const struct dt_key *)dotdot,
1627 if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_SLAVE_LMV) ||
1628 cfs_fail_val != i) {
1629 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_LMV) &&
1631 slave_lmm->lmv_master_mdt_index =
1634 slave_lmm->lmv_master_mdt_index =
1636 rc = lod_sub_object_declare_xattr_set(env, dto,
1637 &slave_lmv_buf, XATTR_NAME_LMV, 0, th);
1642 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_NAME) &&
1644 snprintf(stripe_name, sizeof(info->lti_key), DFID":%u",
1645 PFID(lu_object_fid(&dto->do_lu)), i + 1);
1647 snprintf(stripe_name, sizeof(info->lti_key), DFID":%u",
1648 PFID(lu_object_fid(&dto->do_lu)), i);
1650 sname = lod_name_get(env, stripe_name, strlen(stripe_name));
1651 rc = linkea_data_new(&ldata, &info->lti_linkea_buf);
1655 rc = linkea_add_buf(&ldata, sname, lu_object_fid(&dt->do_lu));
1659 linkea_buf.lb_buf = ldata.ld_buf->lb_buf;
1660 linkea_buf.lb_len = ldata.ld_leh->leh_len;
1661 rc = lod_sub_object_declare_xattr_set(env, dto, &linkea_buf,
1662 XATTR_NAME_LINK, 0, th);
1666 rec->rec_fid = lu_object_fid(&dto->do_lu);
1667 rc = lod_sub_object_declare_insert(env, dt_object_child(dt),
1668 (const struct dt_rec *)rec,
1669 (const struct dt_key *)stripe_name,
1674 rc = lod_sub_object_declare_ref_add(env, dt_object_child(dt),
1680 rc = lod_sub_object_declare_xattr_set(env, dt_object_child(dt),
1681 &lmv_buf, XATTR_NAME_LMV, 0, th);
1685 if (slave_lmm != NULL)
1686 OBD_FREE_PTR(slave_lmm);
1691 static int lod_prep_md_striped_create(const struct lu_env *env,
1692 struct dt_object *dt,
1693 struct lu_attr *attr,
1694 const struct lmv_user_md_v1 *lum,
1695 struct dt_object_format *dof,
1698 struct lod_device *lod = lu2lod_dev(dt->do_lu.lo_dev);
1699 struct lod_tgt_descs *ltd = &lod->lod_mdt_descs;
1700 struct lod_object *lo = lod_dt_obj(dt);
1701 struct dt_object **stripe;
1710 /* The lum has been verifed in lod_verify_md_striping */
1711 LASSERT(le32_to_cpu(lum->lum_magic) == LMV_USER_MAGIC);
1712 LASSERT(le32_to_cpu(lum->lum_stripe_count) > 0);
1714 stripe_count = le32_to_cpu(lum->lum_stripe_count);
1716 OBD_ALLOC(stripe, sizeof(stripe[0]) * stripe_count);
1720 OBD_ALLOC(idx_array, sizeof(idx_array[0]) * stripe_count);
1721 if (idx_array == NULL)
1722 GOTO(out_free, rc = -ENOMEM);
1724 /* Start index will be the master MDT */
1725 master_index = lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_node_id;
1726 idx_array[0] = master_index;
1727 for (i = 0; i < stripe_count; i++) {
1728 struct lod_tgt_desc *tgt = NULL;
1729 struct dt_object *dto;
1730 struct lu_fid fid = { 0 };
1732 struct lu_object_conf conf = { 0 };
1733 struct dt_device *tgt_dt = NULL;
1735 /* Try to find next avaible target */
1737 for (j = 0; j < lod->lod_remote_mdt_count;
1738 j++, idx = (idx + 1) % (lod->lod_remote_mdt_count + 1)) {
1739 bool already_allocated = false;
1742 CDEBUG(D_INFO, "try idx %d, mdt cnt %u, allocated %u\n",
1743 idx, lod->lod_remote_mdt_count + 1, i);
1744 if (idx == master_index) {
1745 /* Allocate the FID locally */
1746 rc = obd_fid_alloc(env, lod->lod_child_exp,
1750 tgt_dt = lod->lod_child;
1754 /* Find next available target */
1755 if (!cfs_bitmap_check(ltd->ltd_tgt_bitmap, idx))
1758 if (likely(!OBD_FAIL_CHECK(OBD_FAIL_LARGE_STRIPE))) {
1759 /* check whether the idx already exists
1760 * in current allocated array */
1761 for (k = 0; k < i; k++) {
1762 if (idx_array[k] == idx) {
1763 already_allocated = true;
1768 if (already_allocated)
1772 /* check the status of the OSP */
1773 tgt = LTD_TGT(ltd, idx);
1777 tgt_dt = tgt->ltd_tgt;
1778 rc = dt_statfs(env, tgt_dt, NULL);
1780 /* this OSP doesn't feel well */
1785 rc = obd_fid_alloc(env, tgt->ltd_exp, &fid, NULL);
1794 /* Can not allocate more stripes */
1795 if (j == lod->lod_remote_mdt_count) {
1796 CDEBUG(D_INFO, "%s: require stripes %u only get %d\n",
1797 lod2obd(lod)->obd_name, stripe_count, i - 1);
1801 CDEBUG(D_INFO, "Get idx %d, for stripe %d "DFID"\n",
1802 idx, i, PFID(&fid));
1804 /* Set the start index for next stripe allocation */
1805 if (i < stripe_count - 1)
1806 idx_array[i + 1] = (idx + 1) %
1807 (lod->lod_remote_mdt_count + 1);
1808 /* tgt_dt and fid must be ready after search avaible OSP
1809 * in the above loop */
1810 LASSERT(tgt_dt != NULL);
1811 LASSERT(fid_is_sane(&fid));
1812 conf.loc_flags = LOC_F_NEW;
1813 dto = dt_locate_at(env, tgt_dt, &fid,
1814 dt->do_lu.lo_dev->ld_site->ls_top_dev,
1817 GOTO(out_put, rc = PTR_ERR(dto));
1821 lo->ldo_dir_striped = 1;
1822 lo->ldo_stripe = stripe;
1823 lo->ldo_stripenr = i;
1824 lo->ldo_stripes_allocated = stripe_count;
1826 if (lo->ldo_stripenr == 0)
1827 GOTO(out_put, rc = -ENOSPC);
1829 rc = lod_dir_declare_create_stripes(env, dt, attr, dof, th);
1835 for (i = 0; i < stripe_count; i++)
1836 if (stripe[i] != NULL)
1837 lu_object_put(env, &stripe[i]->do_lu);
1838 OBD_FREE(stripe, sizeof(stripe[0]) * stripe_count);
1839 lo->ldo_stripenr = 0;
1840 lo->ldo_stripes_allocated = 0;
1841 lo->ldo_stripe = NULL;
1845 if (idx_array != NULL)
1846 OBD_FREE(idx_array, sizeof(idx_array[0]) * stripe_count);
1852 * Declare create striped md object.
1854 * The function declares intention to create a striped directory. This is a
1855 * wrapper for lod_prep_md_striped_create(). The only additional functionality
1856 * is to verify pattern \a lum_buf is good. Check that function for the details.
1858 * \param[in] env execution environment
1859 * \param[in] dt object
1860 * \param[in] attr attributes to initialize the objects with
1861 * \param[in] lum_buf a pattern specifying the number of stripes and
1863 * \param[in] dof type of objects to be created
1864 * \param[in] th transaction handle
1866 * \retval 0 on success
1867 * \retval negative if failed
1870 static int lod_declare_xattr_set_lmv(const struct lu_env *env,
1871 struct dt_object *dt,
1872 struct lu_attr *attr,
1873 const struct lu_buf *lum_buf,
1874 struct dt_object_format *dof,
1877 struct lod_object *lo = lod_dt_obj(dt);
1878 struct lod_device *lod = lu2lod_dev(dt->do_lu.lo_dev);
1879 struct lmv_user_md_v1 *lum;
1883 lum = lum_buf->lb_buf;
1884 LASSERT(lum != NULL);
1886 CDEBUG(D_INFO, "lum magic = %x count = %u offset = %d\n",
1887 le32_to_cpu(lum->lum_magic), le32_to_cpu(lum->lum_stripe_count),
1888 (int)le32_to_cpu(lum->lum_stripe_offset));
1890 if (le32_to_cpu(lum->lum_stripe_count) == 0)
1893 rc = lod_verify_md_striping(lod, lum);
1897 /* prepare dir striped objects */
1898 rc = lod_prep_md_striped_create(env, dt, attr, lum, dof, th);
1900 /* failed to create striping, let's reset
1901 * config so that others don't get confused */
1902 lod_object_free_striping(env, lo);
1910 * Implementation of dt_object_operations::do_declare_xattr_set.
1912 * Used with regular (non-striped) objects. Basically it
1913 * initializes the striping information and applies the
1914 * change to all the stripes.
1916 * \see dt_object_operations::do_declare_xattr_set() in the API description
1919 static int lod_dir_declare_xattr_set(const struct lu_env *env,
1920 struct dt_object *dt,
1921 const struct lu_buf *buf,
1922 const char *name, int fl,
1925 struct dt_object *next = dt_object_child(dt);
1926 struct lod_device *d = lu2lod_dev(dt->do_lu.lo_dev);
1927 struct lod_object *lo = lod_dt_obj(dt);
1932 if (strcmp(name, XATTR_NAME_DEFAULT_LMV) == 0) {
1933 struct lmv_user_md_v1 *lum;
1935 LASSERT(buf != NULL && buf->lb_buf != NULL);
1937 rc = lod_verify_md_striping(d, lum);
1942 rc = lod_sub_object_declare_xattr_set(env, next, buf, name, fl, th);
1946 /* Note: Do not set LinkEA on sub-stripes, otherwise
1947 * it will confuse the fid2path process(see mdt_path_current()).
1948 * The linkEA between master and sub-stripes is set in
1949 * lod_xattr_set_lmv(). */
1950 if (strcmp(name, XATTR_NAME_LINK) == 0)
1953 /* set xattr to each stripes, if needed */
1954 rc = lod_load_striping(env, lo);
1958 if (lo->ldo_stripenr == 0)
1961 for (i = 0; i < lo->ldo_stripenr; i++) {
1962 LASSERT(lo->ldo_stripe[i]);
1964 rc = lod_sub_object_declare_xattr_set(env, lo->ldo_stripe[i],
1974 * Reset parent FID on OST object
1976 * Replace parent FID with @dt object FID, which is only called during migration
1977 * to reset the parent FID after the MDT object is migrated to the new MDT, i.e.
1978 * the FID is changed.
1980 * \param[in] env execution environment
1981 * \param[in] dt dt_object whose stripes's parent FID will be reset
1982 * \parem[in] th thandle
1983 * \param[in] declare if it is declare
1985 * \retval 0 if reset succeeds
1986 * \retval negative errno if reset fais
1988 static int lod_object_replace_parent_fid(const struct lu_env *env,
1989 struct dt_object *dt,
1990 struct thandle *th, bool declare)
1992 struct lod_object *lo = lod_dt_obj(dt);
1993 struct lod_thread_info *info = lod_env_info(env);
1994 struct lu_buf *buf = &info->lti_buf;
1995 struct filter_fid *ff;
1999 LASSERT(S_ISREG(dt->do_lu.lo_header->loh_attr));
2001 /* set xattr to each stripes, if needed */
2002 rc = lod_load_striping(env, lo);
2006 if (lo->ldo_stripenr == 0)
2009 if (info->lti_ea_store_size < sizeof(*ff)) {
2010 rc = lod_ea_store_resize(info, sizeof(*ff));
2015 buf->lb_buf = info->lti_ea_store;
2016 buf->lb_len = info->lti_ea_store_size;
2018 for (i = 0; i < lo->ldo_stripenr; i++) {
2019 if (lo->ldo_stripe[i] == NULL)
2022 rc = dt_xattr_get(env, lo->ldo_stripe[i], buf,
2030 fid_le_to_cpu(&ff->ff_parent, &ff->ff_parent);
2031 ff->ff_parent.f_seq = lu_object_fid(&dt->do_lu)->f_seq;
2032 ff->ff_parent.f_oid = lu_object_fid(&dt->do_lu)->f_oid;
2033 fid_cpu_to_le(&ff->ff_parent, &ff->ff_parent);
2036 rc = lod_sub_object_declare_xattr_set(env,
2037 lo->ldo_stripe[i], buf,
2039 LU_XATTR_REPLACE, th);
2041 rc = lod_sub_object_xattr_set(env, lo->ldo_stripe[i],
2042 buf, XATTR_NAME_FID,
2043 LU_XATTR_REPLACE, th);
2053 * Implementation of dt_object_operations::do_declare_xattr_set.
2055 * \see dt_object_operations::do_declare_xattr_set() in the API description
2058 * the extension to the API:
2059 * - declaring LOVEA requests striping creation
2060 * - LU_XATTR_REPLACE means layout swap
2062 static int lod_declare_xattr_set(const struct lu_env *env,
2063 struct dt_object *dt,
2064 const struct lu_buf *buf,
2065 const char *name, int fl,
2068 struct dt_object *next = dt_object_child(dt);
2069 struct lu_attr *attr = &lod_env_info(env)->lti_attr;
2075 * allow to declare predefined striping on a new (!mode) object
2076 * which is supposed to be replay of regular file creation
2077 * (when LOV setting is declared)
2078 * LU_XATTR_REPLACE is set to indicate a layout swap
2080 mode = dt->do_lu.lo_header->loh_attr & S_IFMT;
2081 if ((S_ISREG(mode) || mode == 0) && strcmp(name, XATTR_NAME_LOV) == 0 &&
2082 !(fl & LU_XATTR_REPLACE)) {
2084 * this is a request to manipulate object's striping
2086 if (dt_object_exists(dt)) {
2087 rc = dt_attr_get(env, next, attr);
2091 memset(attr, 0, sizeof(*attr));
2092 attr->la_valid = LA_TYPE | LA_MODE;
2093 attr->la_mode = S_IFREG;
2095 rc = lod_declare_striped_object(env, dt, attr, buf, th);
2096 } else if (S_ISDIR(mode)) {
2097 rc = lod_dir_declare_xattr_set(env, dt, buf, name, fl, th);
2098 } else if (strcmp(name, XATTR_NAME_FID) == 0) {
2099 rc = lod_object_replace_parent_fid(env, dt, th, true);
2101 rc = lod_sub_object_declare_xattr_set(env, next, buf, name,
2109 * Resets cached default striping in the object.
2111 * \param[in] lo object
2113 static void lod_lov_stripe_cache_clear(struct lod_object *lo)
2115 lo->ldo_def_striping_set = 0;
2116 lo->ldo_def_striping_cached = 0;
2117 lod_object_set_pool(lo, NULL);
2118 lo->ldo_def_stripe_size = 0;
2119 lo->ldo_def_stripenr = 0;
2120 if (lo->ldo_dir_stripe != NULL)
2121 lo->ldo_dir_def_striping_cached = 0;
2125 * Apply xattr changes to the object.
2127 * Applies xattr changes to the object and the stripes if the latter exist.
2129 * \param[in] env execution environment
2130 * \param[in] dt object
2131 * \param[in] buf buffer pointing to the new value of xattr
2132 * \param[in] name name of xattr
2133 * \param[in] fl flags
2134 * \param[in] th transaction handle
2136 * \retval 0 on success
2137 * \retval negative if failed
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,
2145 struct dt_object *next = dt_object_child(dt);
2146 struct lod_object *lo = lod_dt_obj(dt);
2151 rc = lod_sub_object_xattr_set(env, next, buf, name, fl, th);
2152 if (rc != 0 || !S_ISDIR(dt->do_lu.lo_header->loh_attr))
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)
2162 for (i = 0; i < lo->ldo_stripenr; i++) {
2163 LASSERT(lo->ldo_stripe[i]);
2165 rc = lod_sub_object_xattr_set(env, lo->ldo_stripe[i], buf, name,
2175 * Delete an extended attribute.
2177 * Deletes specified xattr from the object and the stripes if the latter exist.
2179 * \param[in] env execution environment
2180 * \param[in] dt object
2181 * \param[in] name name of xattr
2182 * \param[in] th transaction handle
2184 * \retval 0 on success
2185 * \retval negative if failed
2187 static int lod_xattr_del_internal(const struct lu_env *env,
2188 struct dt_object *dt,
2189 const char *name, struct thandle *th)
2191 struct dt_object *next = dt_object_child(dt);
2192 struct lod_object *lo = lod_dt_obj(dt);
2197 rc = lod_sub_object_xattr_del(env, next, name, th);
2198 if (rc != 0 || !S_ISDIR(dt->do_lu.lo_header->loh_attr))
2201 if (lo->ldo_stripenr == 0)
2204 for (i = 0; i < lo->ldo_stripenr; i++) {
2205 LASSERT(lo->ldo_stripe[i]);
2207 rc = lod_sub_object_xattr_del(env, lo->ldo_stripe[i], name,
2217 * Set default striping on a directory.
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
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
2231 * \retval 0 on success
2232 * \retval negative if failed
2234 static int lod_xattr_set_lov_on_dir(const struct lu_env *env,
2235 struct dt_object *dt,
2236 const struct lu_buf *buf,
2237 const char *name, int fl,
2240 struct lod_device *d = lu2lod_dev(dt->do_lu.lo_dev);
2241 struct lod_object *l = lod_dt_obj(dt);
2242 struct lov_user_md_v1 *lum;
2243 struct lov_user_md_v3 *v3 = NULL;
2244 const char *pool_name = NULL;
2248 /* If it is striped dir, we should clear the stripe cache for
2249 * slave stripe as well, but there are no effective way to
2250 * notify the LOD on the slave MDT, so we do not cache stripe
2251 * information for slave stripe for now. XXX*/
2252 lod_lov_stripe_cache_clear(l);
2253 LASSERT(buf != NULL && buf->lb_buf != NULL);
2256 rc = lod_verify_striping(d, buf, false);
2260 if (lum->lmm_magic == LOV_USER_MAGIC_V3) {
2262 if (v3->lmm_pool_name[0] != '\0')
2263 pool_name = v3->lmm_pool_name;
2266 /* if { size, offset, count } = { 0, -1, 0 } and no pool
2267 * (i.e. all default values specified) then delete default
2268 * striping from dir. */
2270 "set default striping: sz %u # %u offset %d %s %s\n",
2271 (unsigned)lum->lmm_stripe_size,
2272 (unsigned)lum->lmm_stripe_count,
2273 (int)lum->lmm_stripe_offset,
2274 v3 ? "from" : "", v3 ? v3->lmm_pool_name : "");
2276 if (LOVEA_DELETE_VALUES(lum->lmm_stripe_size, lum->lmm_stripe_count,
2277 lum->lmm_stripe_offset, pool_name)) {
2278 rc = lod_xattr_del_internal(env, dt, name, th);
2282 rc = lod_xattr_set_internal(env, dt, buf, name, fl, th);
2289 * Set default striping on a directory object.
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
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
2303 * \retval 0 on success
2304 * \retval negative if failed
2306 static int lod_xattr_set_default_lmv_on_dir(const struct lu_env *env,
2307 struct dt_object *dt,
2308 const struct lu_buf *buf,
2309 const char *name, int fl,
2312 struct lod_object *l = lod_dt_obj(dt);
2313 struct lmv_user_md_v1 *lum;
2317 LASSERT(buf != NULL && buf->lb_buf != NULL);
2320 CDEBUG(D_OTHER, "set default stripe_count # %u stripe_offset %d\n",
2321 le32_to_cpu(lum->lum_stripe_count),
2322 (int)le32_to_cpu(lum->lum_stripe_offset));
2324 if (LMVEA_DELETE_VALUES((le32_to_cpu(lum->lum_stripe_count)),
2325 le32_to_cpu(lum->lum_stripe_offset)) &&
2326 le32_to_cpu(lum->lum_magic) == LMV_USER_MAGIC) {
2327 rc = lod_xattr_del_internal(env, dt, name, th);
2331 rc = lod_xattr_set_internal(env, dt, buf, name, fl, th);
2336 /* Update default stripe cache */
2337 if (l->ldo_dir_stripe == NULL) {
2338 OBD_ALLOC_PTR(l->ldo_dir_stripe);
2339 if (l->ldo_dir_stripe == NULL)
2343 l->ldo_dir_def_striping_cached = 0;
2348 * Turn directory into a striped directory.
2350 * During replay the client sends the striping created before MDT
2351 * failure, then the layer above LOD sends this defined striping
2352 * using ->do_xattr_set(), so LOD uses this method to replay creation
2353 * of the stripes. Notice the original information for the striping
2354 * (#stripes, FIDs, etc) was transferred in declare path.
2356 * \param[in] env execution environment
2357 * \param[in] dt the striped object
2358 * \param[in] buf not used currently
2359 * \param[in] name not used currently
2360 * \param[in] fl xattr flag (see OSD API description)
2361 * \param[in] th transaction handle
2363 * \retval 0 on success
2364 * \retval negative if failed
2366 static int lod_xattr_set_lmv(const struct lu_env *env, struct dt_object *dt,
2367 const struct lu_buf *buf, const char *name,
2368 int fl, struct thandle *th)
2370 struct lod_object *lo = lod_dt_obj(dt);
2371 struct lod_thread_info *info = lod_env_info(env);
2372 struct lu_attr *attr = &info->lti_attr;
2373 struct dt_object_format *dof = &info->lti_format;
2374 struct lu_buf lmv_buf;
2375 struct lu_buf slave_lmv_buf;
2376 struct lmv_mds_md_v1 *lmm;
2377 struct lmv_mds_md_v1 *slave_lmm = NULL;
2378 struct dt_insert_rec *rec = &info->lti_dt_rec;
2383 if (!S_ISDIR(dt->do_lu.lo_header->loh_attr))
2386 /* The stripes are supposed to be allocated in declare phase,
2387 * if there are no stripes being allocated, it will skip */
2388 if (lo->ldo_stripenr == 0)
2391 rc = dt_attr_get(env, dt_object_child(dt), attr);
2395 attr->la_valid = LA_ATIME | LA_MTIME | LA_CTIME |
2396 LA_MODE | LA_UID | LA_GID | LA_TYPE;
2397 dof->dof_type = DFT_DIR;
2399 rc = lod_prep_lmv_md(env, dt, &lmv_buf);
2402 lmm = lmv_buf.lb_buf;
2404 OBD_ALLOC_PTR(slave_lmm);
2405 if (slave_lmm == NULL)
2408 lod_prep_slave_lmv_md(slave_lmm, lmm);
2409 slave_lmv_buf.lb_buf = slave_lmm;
2410 slave_lmv_buf.lb_len = sizeof(*slave_lmm);
2412 rec->rec_type = S_IFDIR;
2413 for (i = 0; i < lo->ldo_stripenr; i++) {
2414 struct dt_object *dto;
2415 char *stripe_name = info->lti_key;
2416 struct lu_name *sname;
2417 struct linkea_data ldata = { NULL };
2418 struct lu_buf linkea_buf;
2420 dto = lo->ldo_stripe[i];
2422 dt_write_lock(env, dto, MOR_TGT_CHILD);
2423 rc = lod_sub_object_create(env, dto, attr, NULL, dof,
2426 dt_write_unlock(env, dto);
2430 rc = lod_sub_object_ref_add(env, dto, th);
2431 dt_write_unlock(env, dto);
2435 rec->rec_fid = lu_object_fid(&dto->do_lu);
2436 rc = lod_sub_object_index_insert(env, dto,
2437 (const struct dt_rec *)rec,
2438 (const struct dt_key *)dot, th, 0);
2442 rec->rec_fid = lu_object_fid(&dt->do_lu);
2443 rc = lod_sub_object_index_insert(env, dto, (struct dt_rec *)rec,
2444 (const struct dt_key *)dotdot, th, 0);
2448 if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_SLAVE_LMV) ||
2449 cfs_fail_val != i) {
2450 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_LMV) &&
2452 slave_lmm->lmv_master_mdt_index =
2455 slave_lmm->lmv_master_mdt_index =
2458 rc = lod_sub_object_xattr_set(env, dto, &slave_lmv_buf,
2459 XATTR_NAME_LMV, fl, th);
2464 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_NAME) &&
2466 snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
2467 PFID(lu_object_fid(&dto->do_lu)), i + 1);
2469 snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
2470 PFID(lu_object_fid(&dto->do_lu)), i);
2472 sname = lod_name_get(env, stripe_name, strlen(stripe_name));
2473 rc = linkea_data_new(&ldata, &info->lti_linkea_buf);
2477 rc = linkea_add_buf(&ldata, sname, lu_object_fid(&dt->do_lu));
2481 linkea_buf.lb_buf = ldata.ld_buf->lb_buf;
2482 linkea_buf.lb_len = ldata.ld_leh->leh_len;
2483 rc = lod_sub_object_xattr_set(env, dto, &linkea_buf,
2484 XATTR_NAME_LINK, 0, th);
2488 rec->rec_fid = lu_object_fid(&dto->do_lu);
2489 rc = lod_sub_object_index_insert(env, dt_object_child(dt),
2490 (const struct dt_rec *)rec,
2491 (const struct dt_key *)stripe_name, th, 0);
2495 rc = lod_sub_object_ref_add(env, dt_object_child(dt), th);
2500 if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MASTER_LMV))
2501 rc = lod_sub_object_xattr_set(env, dt_object_child(dt),
2502 &lmv_buf, XATTR_NAME_LMV, fl, th);
2504 if (slave_lmm != NULL)
2505 OBD_FREE_PTR(slave_lmm);
2511 * Helper function to declare/execute creation of a striped directory
2513 * Called in declare/create object path, prepare striping for a directory
2514 * and prepare defaults data striping for the objects to be created in
2515 * that directory. Notice the function calls "declaration" or "execution"
2516 * methods depending on \a declare param. This is a consequence of the
2517 * current approach while we don't have natural distributed transactions:
2518 * we basically execute non-local updates in the declare phase. So, the
2519 * arguments for the both phases are the same and this is the reason for
2520 * this function to exist.
2522 * \param[in] env execution environment
2523 * \param[in] dt object
2524 * \param[in] attr attributes the stripes will be created with
2525 * \param[in] dof format of stripes (see OSD API description)
2526 * \param[in] th transaction handle
2527 * \param[in] declare where to call "declare" or "execute" methods
2529 * \retval 0 on success
2530 * \retval negative if failed
2532 static int lod_dir_striping_create_internal(const struct lu_env *env,
2533 struct dt_object *dt,
2534 struct lu_attr *attr,
2535 struct dt_object_format *dof,
2539 struct lod_thread_info *info = lod_env_info(env);
2540 struct lod_object *lo = lod_dt_obj(dt);
2544 if (!LMVEA_DELETE_VALUES(lo->ldo_stripenr,
2545 lo->ldo_dir_stripe_offset)) {
2546 struct lmv_user_md_v1 *v1 = info->lti_ea_store;
2547 int stripe_count = lo->ldo_stripenr;
2549 if (info->lti_ea_store_size < sizeof(*v1)) {
2550 rc = lod_ea_store_resize(info, sizeof(*v1));
2553 v1 = info->lti_ea_store;
2556 memset(v1, 0, sizeof(*v1));
2557 v1->lum_magic = cpu_to_le32(LMV_USER_MAGIC);
2558 v1->lum_stripe_count = cpu_to_le32(stripe_count);
2559 v1->lum_stripe_offset =
2560 cpu_to_le32(lo->ldo_dir_stripe_offset);
2562 info->lti_buf.lb_buf = v1;
2563 info->lti_buf.lb_len = sizeof(*v1);
2566 rc = lod_declare_xattr_set_lmv(env, dt, attr,
2567 &info->lti_buf, dof, th);
2569 rc = lod_xattr_set_lmv(env, dt, &info->lti_buf,
2570 XATTR_NAME_LMV, 0, th);
2575 /* Transfer default LMV striping from the parent */
2576 if (lo->ldo_dir_def_striping_set &&
2577 !LMVEA_DELETE_VALUES(lo->ldo_dir_def_stripenr,
2578 lo->ldo_dir_def_stripe_offset)) {
2579 struct lmv_user_md_v1 *v1 = info->lti_ea_store;
2580 int def_stripe_count = lo->ldo_dir_def_stripenr;
2582 if (info->lti_ea_store_size < sizeof(*v1)) {
2583 rc = lod_ea_store_resize(info, sizeof(*v1));
2586 v1 = info->lti_ea_store;
2589 memset(v1, 0, sizeof(*v1));
2590 v1->lum_magic = cpu_to_le32(LMV_USER_MAGIC);
2591 v1->lum_stripe_count = cpu_to_le32(def_stripe_count);
2592 v1->lum_stripe_offset =
2593 cpu_to_le32(lo->ldo_dir_def_stripe_offset);
2595 cpu_to_le32(lo->ldo_dir_def_hash_type);
2597 info->lti_buf.lb_buf = v1;
2598 info->lti_buf.lb_len = sizeof(*v1);
2600 rc = lod_dir_declare_xattr_set(env, dt, &info->lti_buf,
2601 XATTR_NAME_DEFAULT_LMV,
2604 rc = lod_xattr_set_default_lmv_on_dir(env, dt,
2606 XATTR_NAME_DEFAULT_LMV, 0,
2612 /* Transfer default LOV striping from the parent */
2613 if (lo->ldo_def_striping_set &&
2614 !LOVEA_DELETE_VALUES(lo->ldo_def_stripe_size,
2615 lo->ldo_def_stripenr,
2616 lo->ldo_def_stripe_offset,
2618 struct lov_user_md_v3 *v3 = info->lti_ea_store;
2620 if (info->lti_ea_store_size < sizeof(*v3)) {
2621 rc = lod_ea_store_resize(info, sizeof(*v3));
2624 v3 = info->lti_ea_store;
2627 memset(v3, 0, sizeof(*v3));
2628 v3->lmm_magic = cpu_to_le32(LOV_USER_MAGIC_V3);
2629 v3->lmm_stripe_count = cpu_to_le16(lo->ldo_def_stripenr);
2630 v3->lmm_stripe_offset = cpu_to_le16(lo->ldo_def_stripe_offset);
2631 v3->lmm_stripe_size = cpu_to_le32(lo->ldo_def_stripe_size);
2632 if (lo->ldo_pool != NULL)
2633 strlcpy(v3->lmm_pool_name, lo->ldo_pool,
2634 sizeof(v3->lmm_pool_name));
2636 info->lti_buf.lb_buf = v3;
2637 info->lti_buf.lb_len = sizeof(*v3);
2640 rc = lod_dir_declare_xattr_set(env, dt, &info->lti_buf,
2641 XATTR_NAME_LOV, 0, th);
2643 rc = lod_xattr_set_lov_on_dir(env, dt, &info->lti_buf,
2644 XATTR_NAME_LOV, 0, th);
2652 static int lod_declare_dir_striping_create(const struct lu_env *env,
2653 struct dt_object *dt,
2654 struct lu_attr *attr,
2655 struct dt_object_format *dof,
2658 return lod_dir_striping_create_internal(env, dt, attr, dof, th, true);
2661 static int lod_dir_striping_create(const struct lu_env *env,
2662 struct dt_object *dt,
2663 struct lu_attr *attr,
2664 struct dt_object_format *dof,
2667 struct lod_object *lo = lod_dt_obj(dt);
2670 rc = lod_dir_striping_create_internal(env, dt, attr, dof, th, false);
2672 lo->ldo_striping_cached = 1;
2678 * Implementation of dt_object_operations::do_xattr_set.
2680 * Sets specified extended attribute on the object. Three types of EAs are
2682 * LOV EA - stores striping for a regular file or default striping (when set
2684 * LMV EA - stores a marker for the striped directories
2685 * DMV EA - stores default directory striping
2687 * When striping is applied to a non-striped existing object (this is called
2688 * late striping), then LOD notices the caller wants to turn the object into a
2689 * striped one. The stripe objects are created and appropriate EA is set:
2690 * LOV EA storing all the stripes directly or LMV EA storing just a small header
2691 * with striping configuration.
2693 * \see dt_object_operations::do_xattr_set() in the API description for details.
2695 static int lod_xattr_set(const struct lu_env *env,
2696 struct dt_object *dt, const struct lu_buf *buf,
2697 const char *name, int fl, struct thandle *th)
2699 struct dt_object *next = dt_object_child(dt);
2703 if (S_ISDIR(dt->do_lu.lo_header->loh_attr) &&
2704 strcmp(name, XATTR_NAME_LMV) == 0) {
2705 struct lmv_mds_md_v1 *lmm = buf->lb_buf;
2707 if (lmm != NULL && le32_to_cpu(lmm->lmv_hash_type) &
2708 LMV_HASH_FLAG_MIGRATION)
2709 rc = lod_sub_object_xattr_set(env, next, buf, name, fl,
2712 rc = lod_dir_striping_create(env, dt, NULL, NULL, th);
2717 if (S_ISDIR(dt->do_lu.lo_header->loh_attr) &&
2718 strcmp(name, XATTR_NAME_LOV) == 0) {
2720 rc = lod_xattr_set_lov_on_dir(env, dt, buf, name, fl, th);
2722 } else if (S_ISDIR(dt->do_lu.lo_header->loh_attr) &&
2723 strcmp(name, XATTR_NAME_DEFAULT_LMV) == 0) {
2725 rc = lod_xattr_set_default_lmv_on_dir(env, dt, buf, name, fl,
2728 } else if (S_ISREG(dt->do_lu.lo_header->loh_attr) &&
2729 !strcmp(name, XATTR_NAME_LOV)) {
2730 /* in case of lov EA swap, just set it
2731 * if not, it is a replay so check striping match what we
2732 * already have during req replay, declare_xattr_set()
2733 * defines striping, then create() does the work */
2734 if (fl & LU_XATTR_REPLACE) {
2735 /* free stripes, then update disk */
2736 lod_object_free_striping(env, lod_dt_obj(dt));
2738 rc = lod_sub_object_xattr_set(env, next, buf, name,
2740 } else if (dt_object_remote(dt)) {
2741 /* This only happens during migration, see
2742 * mdd_migrate_create(), in which Master MDT will
2743 * create a remote target object, and only set
2744 * (migrating) stripe EA on the remote object,
2745 * and does not need creating each stripes. */
2746 rc = lod_sub_object_xattr_set(env, next, buf, name,
2749 rc = lod_striping_create(env, dt, NULL, NULL, th);
2752 } else if (strcmp(name, XATTR_NAME_FID) == 0) {
2753 rc = lod_object_replace_parent_fid(env, dt, th, false);
2758 /* then all other xattr */
2759 rc = lod_xattr_set_internal(env, dt, buf, name, fl, th);
2765 * Implementation of dt_object_operations::do_declare_xattr_del.
2767 * \see dt_object_operations::do_declare_xattr_del() in the API description
2770 static int lod_declare_xattr_del(const struct lu_env *env,
2771 struct dt_object *dt, const char *name,
2774 struct lod_object *lo = lod_dt_obj(dt);
2779 rc = lod_sub_object_declare_xattr_del(env, dt_object_child(dt),
2784 if (!S_ISDIR(dt->do_lu.lo_header->loh_attr))
2787 /* set xattr to each stripes, if needed */
2788 rc = lod_load_striping(env, lo);
2792 if (lo->ldo_stripenr == 0)
2795 for (i = 0; i < lo->ldo_stripenr; i++) {
2796 LASSERT(lo->ldo_stripe[i]);
2797 rc = lod_sub_object_declare_xattr_del(env, lo->ldo_stripe[i],
2807 * Implementation of dt_object_operations::do_xattr_del.
2809 * If EA storing a regular striping is being deleted, then release
2810 * all the references to the stripe objects in core.
2812 * \see dt_object_operations::do_xattr_del() in the API description for details.
2814 static int lod_xattr_del(const struct lu_env *env, struct dt_object *dt,
2815 const char *name, struct thandle *th)
2817 struct dt_object *next = dt_object_child(dt);
2818 struct lod_object *lo = lod_dt_obj(dt);
2823 if (!strcmp(name, XATTR_NAME_LOV))
2824 lod_object_free_striping(env, lod_dt_obj(dt));
2826 rc = lod_sub_object_xattr_del(env, next, name, th);
2827 if (rc != 0 || !S_ISDIR(dt->do_lu.lo_header->loh_attr))
2830 if (lo->ldo_stripenr == 0)
2833 for (i = 0; i < lo->ldo_stripenr; i++) {
2834 LASSERT(lo->ldo_stripe[i]);
2836 rc = lod_sub_object_xattr_del(env, lo->ldo_stripe[i], name, th);
2845 * Implementation of dt_object_operations::do_xattr_list.
2847 * \see dt_object_operations::do_xattr_list() in the API description
2850 static int lod_xattr_list(const struct lu_env *env,
2851 struct dt_object *dt, const struct lu_buf *buf)
2853 return dt_xattr_list(env, dt_object_child(dt), buf);
2857 * Initialize a pool the object belongs to.
2859 * When a striped object is being created, striping configuration
2860 * may demand the stripes are allocated on a limited set of the
2861 * targets. These limited sets are known as "pools". So we copy
2862 * a pool name into the object and later actual creation methods
2863 * (like lod_object_create()) will use this information to allocate
2864 * the stripes properly.
2866 * \param[in] o object
2867 * \param[in] pool pool name
2869 int lod_object_set_pool(struct lod_object *o, char *pool)
2874 len = strlen(o->ldo_pool);
2875 OBD_FREE(o->ldo_pool, len + 1);
2880 OBD_ALLOC(o->ldo_pool, len + 1);
2881 if (o->ldo_pool == NULL)
2883 strcpy(o->ldo_pool, pool);
2888 static inline int lod_object_will_be_striped(int is_reg, const struct lu_fid *fid)
2890 return (is_reg && fid_seq(fid) != FID_SEQ_LOCAL_FILE);
2895 * Cache default regular striping in the object.
2897 * To improve performance of striped regular object creation we cache
2898 * default LOV striping (if it exists) in the parent directory object.
2900 * \param[in] env execution environment
2901 * \param[in] lp object
2903 * \retval 0 on success
2904 * \retval negative if failed
2906 static int lod_cache_parent_lov_striping(const struct lu_env *env,
2907 struct lod_object *lp)
2909 struct lod_thread_info *info = lod_env_info(env);
2910 struct lov_user_md_v1 *v1 = NULL;
2911 struct lov_user_md_v3 *v3 = NULL;
2915 /* called from MDD without parent being write locked,
2917 dt_write_lock(env, dt_object_child(&lp->ldo_obj), 0);
2918 rc = lod_get_lov_ea(env, lp);
2922 if (rc < (typeof(rc))sizeof(struct lov_user_md)) {
2923 /* don't lookup for non-existing or invalid striping */
2924 lp->ldo_def_striping_set = 0;
2925 lp->ldo_def_striping_cached = 1;
2926 lp->ldo_def_stripe_size = 0;
2927 lp->ldo_def_stripenr = 0;
2928 lp->ldo_def_stripe_offset = (typeof(v1->lmm_stripe_offset))(-1);
2929 GOTO(unlock, rc = 0);
2933 v1 = info->lti_ea_store;
2934 if (v1->lmm_magic == __swab32(LOV_USER_MAGIC_V1)) {
2935 lustre_swab_lov_user_md_v1(v1);
2936 } else if (v1->lmm_magic == __swab32(LOV_USER_MAGIC_V3)) {
2937 v3 = (struct lov_user_md_v3 *)v1;
2938 lustre_swab_lov_user_md_v3(v3);
2941 if (v1->lmm_magic != LOV_MAGIC_V3 && v1->lmm_magic != LOV_MAGIC_V1)
2942 GOTO(unlock, rc = 0);
2944 if (v1->lmm_pattern != LOV_PATTERN_RAID0 && v1->lmm_pattern != 0)
2945 GOTO(unlock, rc = 0);
2947 CDEBUG(D_INFO, DFID" stripe_count=%d stripe_size=%d stripe_offset=%d\n",
2948 PFID(lu_object_fid(&lp->ldo_obj.do_lu)),
2949 (int)v1->lmm_stripe_count,
2950 (int)v1->lmm_stripe_size, (int)v1->lmm_stripe_offset);
2952 lp->ldo_def_stripenr = v1->lmm_stripe_count;
2953 lp->ldo_def_stripe_size = v1->lmm_stripe_size;
2954 lp->ldo_def_stripe_offset = v1->lmm_stripe_offset;
2955 lp->ldo_def_striping_cached = 1;
2956 lp->ldo_def_striping_set = 1;
2957 if (v1->lmm_magic == LOV_USER_MAGIC_V3) {
2958 /* XXX: sanity check here */
2959 v3 = (struct lov_user_md_v3 *) v1;
2960 if (v3->lmm_pool_name[0])
2961 lod_object_set_pool(lp, v3->lmm_pool_name);
2965 dt_write_unlock(env, dt_object_child(&lp->ldo_obj));
2971 * Cache default directory striping in the object.
2973 * To improve performance of striped directory creation we cache default
2974 * directory striping (if it exists) in the parent directory object.
2976 * \param[in] env execution environment
2977 * \param[in] lp object
2979 * \retval 0 on success
2980 * \retval negative if failed
2982 static int lod_cache_parent_lmv_striping(const struct lu_env *env,
2983 struct lod_object *lp)
2985 struct lod_thread_info *info = lod_env_info(env);
2986 struct lmv_user_md_v1 *v1 = NULL;
2990 /* called from MDD without parent being write locked,
2992 dt_write_lock(env, dt_object_child(&lp->ldo_obj), 0);
2993 rc = lod_get_default_lmv_ea(env, lp);
2997 if (rc < (typeof(rc))sizeof(struct lmv_user_md)) {
2998 /* don't lookup for non-existing or invalid striping */
2999 lp->ldo_dir_def_striping_set = 0;
3000 lp->ldo_dir_def_striping_cached = 1;
3001 lp->ldo_dir_def_stripenr = 0;
3002 lp->ldo_dir_def_stripe_offset =
3003 (typeof(v1->lum_stripe_offset))(-1);
3004 lp->ldo_dir_def_hash_type = LMV_HASH_TYPE_FNV_1A_64;
3005 GOTO(unlock, rc = 0);
3009 v1 = info->lti_ea_store;
3011 lp->ldo_dir_def_stripenr = le32_to_cpu(v1->lum_stripe_count);
3012 lp->ldo_dir_def_stripe_offset = le32_to_cpu(v1->lum_stripe_offset);
3013 lp->ldo_dir_def_hash_type = le32_to_cpu(v1->lum_hash_type);
3014 lp->ldo_dir_def_striping_set = 1;
3015 lp->ldo_dir_def_striping_cached = 1;
3019 dt_write_unlock(env, dt_object_child(&lp->ldo_obj));
3024 * Cache default striping in the object.
3026 * To improve performance of striped object creation we cache default striping
3027 * (if it exists) in the parent directory object. We always cache default
3028 * striping for the regular files (stored in LOV EA) and we cache default
3029 * striping for the directories if requested by \a child_mode (when a new
3030 * directory is being created).
3032 * \param[in] env execution environment
3033 * \param[in] lp object
3034 * \param[in] child_mode new object's mode
3036 * \retval 0 on success
3037 * \retval negative if failed
3039 static int lod_cache_parent_striping(const struct lu_env *env,
3040 struct lod_object *lp,
3046 if (!lp->ldo_def_striping_cached) {
3047 /* we haven't tried to get default striping for
3048 * the directory yet, let's cache it in the object */
3049 rc = lod_cache_parent_lov_striping(env, lp);
3054 /* If the parent is on the remote MDT, we should always
3055 * try to refresh the default stripeEA cache, because we
3056 * do not cache default striping information for remote
3058 if (S_ISDIR(child_mode) && (!lp->ldo_dir_def_striping_cached ||
3059 dt_object_remote(&lp->ldo_obj)))
3060 rc = lod_cache_parent_lmv_striping(env, lp);
3066 * Implementation of dt_object_operations::do_ah_init.
3068 * This method is used to make a decision on the striping configuration for the
3069 * object being created. It can be taken from the \a parent object if it exists,
3070 * or filesystem's default. The resulting configuration (number of stripes,
3071 * stripe size/offset, pool name, etc) is stored in the object itself and will
3072 * be used by the methods like ->doo_declare_create().
3074 * \see dt_object_operations::do_ah_init() in the API description for details.
3076 static void lod_ah_init(const struct lu_env *env,
3077 struct dt_allocation_hint *ah,
3078 struct dt_object *parent,
3079 struct dt_object *child,
3082 struct lod_device *d = lu2lod_dev(child->do_lu.lo_dev);
3083 struct dt_object *nextp = NULL;
3084 struct dt_object *nextc;
3085 struct lod_object *lp = NULL;
3086 struct lod_object *lc;
3087 struct lov_desc *desc;
3093 if (likely(parent)) {
3094 nextp = dt_object_child(parent);
3095 lp = lod_dt_obj(parent);
3096 rc = lod_load_striping(env, lp);
3101 nextc = dt_object_child(child);
3102 lc = lod_dt_obj(child);
3104 LASSERT(lc->ldo_stripenr == 0);
3105 LASSERT(lc->ldo_stripe == NULL);
3107 if (!dt_object_exists(nextc))
3108 nextc->do_ops->do_ah_init(env, ah, nextp, nextc, child_mode);
3110 if (S_ISDIR(child_mode)) {
3111 if (lc->ldo_dir_stripe == NULL) {
3112 OBD_ALLOC_PTR(lc->ldo_dir_stripe);
3113 if (lc->ldo_dir_stripe == NULL)
3117 LASSERT(lp != NULL);
3118 if (lp->ldo_dir_stripe == NULL) {
3119 OBD_ALLOC_PTR(lp->ldo_dir_stripe);
3120 if (lp->ldo_dir_stripe == NULL)
3124 rc = lod_cache_parent_striping(env, lp, child_mode);
3128 /* transfer defaults to new directory */
3129 if (lp->ldo_def_striping_set) {
3131 lod_object_set_pool(lc, lp->ldo_pool);
3132 lc->ldo_def_stripenr = lp->ldo_def_stripenr;
3133 lc->ldo_def_stripe_size = lp->ldo_def_stripe_size;
3134 lc->ldo_def_stripe_offset = lp->ldo_def_stripe_offset;
3135 lc->ldo_def_striping_set = 1;
3136 lc->ldo_def_striping_cached = 1;
3137 CDEBUG(D_OTHER, "inherite EA sz:%d off:%d nr:%d\n",
3138 (int)lc->ldo_def_stripe_size,
3139 (int)lc->ldo_def_stripe_offset,
3140 (int)lc->ldo_def_stripenr);
3143 /* transfer dir defaults to new directory */
3144 if (lp->ldo_dir_def_striping_set) {
3145 lc->ldo_dir_def_stripenr = lp->ldo_dir_def_stripenr;
3146 lc->ldo_dir_def_stripe_offset =
3147 lp->ldo_dir_def_stripe_offset;
3148 lc->ldo_dir_def_hash_type =
3149 lp->ldo_dir_def_hash_type;
3150 lc->ldo_dir_def_striping_set = 1;
3151 lc->ldo_dir_def_striping_cached = 1;
3152 CDEBUG(D_INFO, "inherit default EA nr:%d off:%d t%u\n",
3153 (int)lc->ldo_dir_def_stripenr,
3154 (int)lc->ldo_dir_def_stripe_offset,
3155 lc->ldo_dir_def_hash_type);
3158 /* It should always honour the specified stripes */
3159 if (ah->dah_eadata != NULL && ah->dah_eadata_len != 0) {
3160 const struct lmv_user_md_v1 *lum1 = ah->dah_eadata;
3162 rc = lod_verify_md_striping(d, lum1);
3164 le32_to_cpu(lum1->lum_stripe_count) > 1) {
3166 le32_to_cpu(lum1->lum_stripe_count);
3167 lc->ldo_dir_stripe_offset =
3168 le32_to_cpu(lum1->lum_stripe_offset);
3169 lc->ldo_dir_hash_type =
3170 le32_to_cpu(lum1->lum_hash_type);
3171 CDEBUG(D_INFO, "set stripe EA nr:%hu off:%d\n",
3173 (int)lc->ldo_dir_stripe_offset);
3175 /* then check whether there is default stripes from parent */
3176 } else if (lp->ldo_dir_def_striping_set) {
3177 /* If there are default dir stripe from parent */
3178 lc->ldo_stripenr = lp->ldo_dir_def_stripenr;
3179 lc->ldo_dir_stripe_offset =
3180 lp->ldo_dir_def_stripe_offset;
3181 lc->ldo_dir_hash_type =
3182 lp->ldo_dir_def_hash_type;
3183 CDEBUG(D_INFO, "inherit EA nr:%hu off:%d\n",
3185 (int)lc->ldo_dir_stripe_offset);
3187 /* set default stripe for this directory */
3188 lc->ldo_stripenr = 0;
3189 lc->ldo_dir_stripe_offset = -1;
3192 /* shrink the stripe_count to the avaible MDT count */
3193 if (lc->ldo_stripenr > d->lod_remote_mdt_count + 1 &&
3194 !OBD_FAIL_CHECK(OBD_FAIL_LARGE_STRIPE))
3195 lc->ldo_stripenr = d->lod_remote_mdt_count + 1;
3197 /* Directory will be striped only if stripe_count > 1, if
3198 * stripe_count == 1, let's reset stripenr = 0 to avoid
3199 * create single master stripe and also help to unify the
3200 * stripe handling of directories and files */
3201 if (lc->ldo_stripenr == 1)
3202 lc->ldo_stripenr = 0;
3204 CDEBUG(D_INFO, "final striping count:%hu, offset:%d\n",
3205 lc->ldo_stripenr, (int)lc->ldo_dir_stripe_offset);
3211 * if object is going to be striped over OSTs, transfer default
3212 * striping information to the child, so that we can use it
3213 * during declaration and creation
3215 if (!lod_object_will_be_striped(S_ISREG(child_mode),
3216 lu_object_fid(&child->do_lu)))
3219 * try from the parent
3221 if (likely(parent)) {
3222 lod_cache_parent_striping(env, lp, child_mode);
3224 lc->ldo_def_stripe_offset = LOV_OFFSET_DEFAULT;
3226 if (lp->ldo_def_striping_set) {
3228 lod_object_set_pool(lc, lp->ldo_pool);
3229 lc->ldo_stripenr = lp->ldo_def_stripenr;
3230 lc->ldo_stripe_size = lp->ldo_def_stripe_size;
3231 lc->ldo_def_stripe_offset = lp->ldo_def_stripe_offset;
3232 CDEBUG(D_OTHER, "striping from parent: #%d, sz %d %s\n",
3233 lc->ldo_stripenr, lc->ldo_stripe_size,
3234 lp->ldo_pool ? lp->ldo_pool : "");
3239 * if the parent doesn't provide with specific pattern, grab fs-wide one
3241 desc = &d->lod_desc;
3242 if (lc->ldo_stripenr == 0)
3243 lc->ldo_stripenr = desc->ld_default_stripe_count;
3244 if (lc->ldo_stripe_size == 0)
3245 lc->ldo_stripe_size = desc->ld_default_stripe_size;
3246 CDEBUG(D_OTHER, "final striping: # %d stripes, sz %d from %s\n",
3247 lc->ldo_stripenr, lc->ldo_stripe_size,
3248 lc->ldo_pool ? lc->ldo_pool : "");
3251 /* we do not cache stripe information for slave stripe, see
3252 * lod_xattr_set_lov_on_dir */
3253 if (lp != NULL && lp->ldo_dir_slave_stripe)
3254 lod_lov_stripe_cache_clear(lp);
3259 #define ll_do_div64(aaa,bbb) do_div((aaa), (bbb))
3261 * Size initialization on late striping.
3263 * Propagate the size of a truncated object to a deferred striping.
3264 * This function handles a special case when truncate was done on a
3265 * non-striped object and now while the striping is being created
3266 * we can't lose that size, so we have to propagate it to the stripes
3269 * \param[in] env execution environment
3270 * \param[in] dt object
3271 * \param[in] th transaction handle
3273 * \retval 0 on success
3274 * \retval negative if failed
3276 static int lod_declare_init_size(const struct lu_env *env,
3277 struct dt_object *dt, struct thandle *th)
3279 struct dt_object *next = dt_object_child(dt);
3280 struct lod_object *lo = lod_dt_obj(dt);
3281 struct lu_attr *attr = &lod_env_info(env)->lti_attr;
3282 uint64_t size, offs;
3286 /* XXX: we support the simplest (RAID0) striping so far */
3287 LASSERT(lo->ldo_stripe || lo->ldo_stripenr == 0);
3288 LASSERT(lo->ldo_stripe_size > 0);
3290 if (lo->ldo_stripenr == 0)
3293 rc = dt_attr_get(env, next, attr);
3294 LASSERT(attr->la_valid & LA_SIZE);
3298 size = attr->la_size;
3302 /* ll_do_div64(a, b) returns a % b, and a = a / b */
3303 ll_do_div64(size, (__u64) lo->ldo_stripe_size);
3304 stripe = ll_do_div64(size, (__u64) lo->ldo_stripenr);
3306 size = size * lo->ldo_stripe_size;
3307 offs = attr->la_size;
3308 size += ll_do_div64(offs, lo->ldo_stripe_size);
3310 attr->la_valid = LA_SIZE;
3311 attr->la_size = size;
3313 rc = lod_sub_object_declare_attr_set(env, lo->ldo_stripe[stripe], attr,
3320 * Declare creation of striped object.
3322 * The function declares creation stripes for a regular object. The function
3323 * also declares whether the stripes will be created with non-zero size if
3324 * previously size was set non-zero on the master object. If object \a dt is
3325 * not local, then only fully defined striping can be applied in \a lovea.
3326 * Otherwise \a lovea can be in the form of pattern, see lod_qos_parse_config()
3329 * \param[in] env execution environment
3330 * \param[in] dt object
3331 * \param[in] attr attributes the stripes will be created with
3332 * \param[in] lovea a buffer containing striping description
3333 * \param[in] th transaction handle
3335 * \retval 0 on success
3336 * \retval negative if failed
3338 int lod_declare_striped_object(const struct lu_env *env, struct dt_object *dt,
3339 struct lu_attr *attr,
3340 const struct lu_buf *lovea, struct thandle *th)
3342 struct lod_thread_info *info = lod_env_info(env);
3343 struct dt_object *next = dt_object_child(dt);
3344 struct lod_object *lo = lod_dt_obj(dt);
3348 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_ALLOC_OBDO)) {
3349 /* failed to create striping, let's reset
3350 * config so that others don't get confused */
3351 lod_object_free_striping(env, lo);
3352 GOTO(out, rc = -ENOMEM);
3355 if (!dt_object_remote(next)) {
3356 /* choose OST and generate appropriate objects */
3357 rc = lod_qos_prep_create(env, lo, attr, lovea, th);
3359 /* failed to create striping, let's reset
3360 * config so that others don't get confused */
3361 lod_object_free_striping(env, lo);
3366 * declare storage for striping data
3368 info->lti_buf.lb_len = lov_mds_md_size(lo->ldo_stripenr,
3369 lo->ldo_pool ? LOV_MAGIC_V3 : LOV_MAGIC_V1);
3371 /* LOD can not choose OST objects for remote objects, i.e.
3372 * stripes must be ready before that. Right now, it can only
3373 * happen during migrate, i.e. migrate process needs to create
3374 * remote regular file (mdd_migrate_create), then the migrate
3375 * process will provide stripeEA. */
3376 LASSERT(lovea != NULL);
3377 info->lti_buf = *lovea;
3380 rc = lod_sub_object_declare_xattr_set(env, next, &info->lti_buf,
3381 XATTR_NAME_LOV, 0, th);
3386 * if striping is created with local object's size > 0,
3387 * we have to propagate this size to specific object
3388 * the case is possible only when local object was created previously
3390 if (dt_object_exists(next))
3391 rc = lod_declare_init_size(env, dt, th);
3398 * Implementation of dt_object_operations::do_declare_create.
3400 * The method declares creation of a new object. If the object will be striped,
3401 * then helper functions are called to find FIDs for the stripes, declare
3402 * creation of the stripes and declare initialization of the striping
3403 * information to be stored in the master object.
3405 * \see dt_object_operations::do_declare_create() in the API description
3408 static int lod_declare_object_create(const struct lu_env *env,
3409 struct dt_object *dt,
3410 struct lu_attr *attr,
3411 struct dt_allocation_hint *hint,
3412 struct dt_object_format *dof,
3415 struct dt_object *next = dt_object_child(dt);
3416 struct lod_object *lo = lod_dt_obj(dt);
3425 * first of all, we declare creation of local object
3427 rc = lod_sub_object_declare_create(env, next, attr, hint, dof, th);
3431 if (dof->dof_type == DFT_SYM)
3432 dt->do_body_ops = &lod_body_lnk_ops;
3433 else if (dof->dof_type == DFT_REGULAR)
3434 dt->do_body_ops = &lod_body_ops;
3437 * it's lod_ah_init() that has decided the object will be striped
3439 if (dof->dof_type == DFT_REGULAR) {
3440 /* callers don't want stripes */
3441 /* XXX: all tricky interactions with ->ah_make_hint() decided
3442 * to use striping, then ->declare_create() behaving differently
3443 * should be cleaned */
3444 if (dof->u.dof_reg.striped == 0)
3445 lo->ldo_stripenr = 0;
3446 if (lo->ldo_stripenr > 0)
3447 rc = lod_declare_striped_object(env, dt, attr,
3449 } else if (dof->dof_type == DFT_DIR) {
3450 struct seq_server_site *ss;
3452 ss = lu_site2seq(dt->do_lu.lo_dev->ld_site);
3454 /* If the parent has default stripeEA, and client
3455 * did not find it before sending create request,
3456 * then MDT will return -EREMOTE, and client will
3457 * retrieve the default stripeEA and re-create the
3460 * Note: if dah_eadata != NULL, it means creating the
3461 * striped directory with specified stripeEA, then it
3462 * should ignore the default stripeEA */
3463 if (hint != NULL && hint->dah_eadata == NULL) {
3464 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_STALE_DIR_LAYOUT))
3465 GOTO(out, rc = -EREMOTE);
3467 if (lo->ldo_dir_stripe_offset == -1) {
3468 /* child and parent should be in the same MDT */
3469 if (hint->dah_parent != NULL &&
3470 dt_object_remote(hint->dah_parent))
3471 GOTO(out, rc = -EREMOTE);
3472 } else if (lo->ldo_dir_stripe_offset !=
3474 struct lod_device *lod;
3475 struct lod_tgt_descs *ltd;
3476 struct lod_tgt_desc *tgt = NULL;
3477 bool found_mdt = false;
3480 lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
3481 ltd = &lod->lod_mdt_descs;
3482 cfs_foreach_bit(ltd->ltd_tgt_bitmap, i) {
3483 tgt = LTD_TGT(ltd, i);
3484 if (tgt->ltd_index ==
3485 lo->ldo_dir_stripe_offset) {
3491 /* If the MDT indicated by stripe_offset can be
3492 * found, then tell client to resend the create
3493 * request to the correct MDT, otherwise return
3494 * error to client */
3496 GOTO(out, rc = -EREMOTE);
3498 GOTO(out, rc = -EINVAL);
3502 /* Orphan object (like migrating object) does not have
3503 * lod_dir_stripe, see lod_ah_init */
3504 if (lo->ldo_dir_stripe != NULL)
3505 rc = lod_declare_dir_striping_create(env, dt, attr,
3513 * Creation of a striped regular object.
3515 * The function is called to create the stripe objects for a regular
3516 * striped file. This can happen at the initial object creation or
3517 * when the caller asks LOD to do so using ->do_xattr_set() method
3518 * (so called late striping). Notice all the information are already
3519 * prepared in the form of the list of objects (ldo_stripe field).
3520 * This is done during declare phase.
3522 * \param[in] env execution environment
3523 * \param[in] dt object
3524 * \param[in] attr attributes the stripes will be created with
3525 * \param[in] dof format of stripes (see OSD API description)
3526 * \param[in] th transaction handle
3528 * \retval 0 on success
3529 * \retval negative if failed
3531 int lod_striping_create(const struct lu_env *env, struct dt_object *dt,
3532 struct lu_attr *attr, struct dt_object_format *dof,
3535 struct lod_object *lo = lod_dt_obj(dt);
3539 LASSERT(lo->ldo_striping_cached == 0);
3541 /* create all underlying objects */
3542 for (i = 0; i < lo->ldo_stripenr; i++) {
3543 LASSERT(lo->ldo_stripe[i]);
3544 rc = lod_sub_object_create(env, lo->ldo_stripe[i], attr, NULL,
3551 rc = lod_generate_and_set_lovea(env, lo, th);
3553 lo->ldo_striping_cached = 1;
3560 * Implementation of dt_object_operations::do_create.
3562 * If any of preceeding methods (like ->do_declare_create(),
3563 * ->do_ah_init(), etc) chose to create a striped object,
3564 * then this method will create the master and the stripes.
3566 * \see dt_object_operations::do_create() in the API description for details.
3568 static int lod_object_create(const struct lu_env *env, struct dt_object *dt,
3569 struct lu_attr *attr,
3570 struct dt_allocation_hint *hint,
3571 struct dt_object_format *dof, struct thandle *th)
3573 struct lod_object *lo = lod_dt_obj(dt);
3577 /* create local object */
3578 rc = lod_sub_object_create(env, dt_object_child(dt), attr, hint, dof,
3583 if (S_ISREG(dt->do_lu.lo_header->loh_attr) &&
3584 lo->ldo_stripe && dof->u.dof_reg.striped != 0)
3585 rc = lod_striping_create(env, dt, attr, dof, th);
3591 * Implementation of dt_object_operations::do_declare_destroy.
3593 * If the object is a striped directory, then the function declares reference
3594 * removal from the master object (this is an index) to the stripes and declares
3595 * destroy of all the stripes. In all the cases, it declares an intention to
3596 * destroy the object itself.
3598 * \see dt_object_operations::do_declare_destroy() in the API description
3601 static int lod_declare_object_destroy(const struct lu_env *env,
3602 struct dt_object *dt,
3605 struct dt_object *next = dt_object_child(dt);
3606 struct lod_object *lo = lod_dt_obj(dt);
3607 struct lod_thread_info *info = lod_env_info(env);
3608 char *stripe_name = info->lti_key;
3613 * load striping information, notice we don't do this when object
3614 * is being initialized as we don't need this information till
3615 * few specific cases like destroy, chown
3617 rc = lod_load_striping(env, lo);
3621 /* declare destroy for all underlying objects */
3622 if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
3623 rc = next->do_ops->do_index_try(env, next,
3624 &dt_directory_features);
3628 for (i = 0; i < lo->ldo_stripenr; i++) {
3629 rc = lod_sub_object_declare_ref_del(env, next, th);
3633 snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
3634 PFID(lu_object_fid(&lo->ldo_stripe[i]->do_lu)),
3636 rc = lod_sub_object_declare_delete(env, next,
3637 (const struct dt_key *)stripe_name, th);
3644 * we declare destroy for the local object
3646 rc = lod_sub_object_declare_destroy(env, next, th);
3650 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ))
3653 /* declare destroy all striped objects */
3654 for (i = 0; i < lo->ldo_stripenr; i++) {
3655 if (lo->ldo_stripe[i] == NULL)
3658 if (S_ISDIR(dt->do_lu.lo_header->loh_attr))
3659 rc = lod_sub_object_declare_ref_del(env,
3660 lo->ldo_stripe[i], th);
3662 rc = lod_sub_object_declare_destroy(env, lo->ldo_stripe[i],
3672 * Implementation of dt_object_operations::do_destroy.
3674 * If the object is a striped directory, then the function removes references
3675 * from the master object (this is an index) to the stripes and destroys all
3676 * the stripes. In all the cases, the function destroys the object itself.
3678 * \see dt_object_operations::do_destroy() in the API description for details.
3680 static int lod_object_destroy(const struct lu_env *env,
3681 struct dt_object *dt, struct thandle *th)
3683 struct dt_object *next = dt_object_child(dt);
3684 struct lod_object *lo = lod_dt_obj(dt);
3685 struct lod_thread_info *info = lod_env_info(env);
3686 char *stripe_name = info->lti_key;
3691 /* destroy sub-stripe of master object */
3692 if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
3693 rc = next->do_ops->do_index_try(env, next,
3694 &dt_directory_features);
3698 for (i = 0; i < lo->ldo_stripenr; i++) {
3699 rc = lod_sub_object_ref_del(env, next, th);
3703 snprintf(stripe_name, sizeof(info->lti_key), DFID":%d",
3704 PFID(lu_object_fid(&lo->ldo_stripe[i]->do_lu)),
3707 CDEBUG(D_INFO, DFID" delete stripe %s "DFID"\n",
3708 PFID(lu_object_fid(&dt->do_lu)), stripe_name,
3709 PFID(lu_object_fid(&lo->ldo_stripe[i]->do_lu)));
3711 rc = lod_sub_object_delete(env, next,
3712 (const struct dt_key *)stripe_name, th);
3718 rc = lod_sub_object_destroy(env, next, th);
3722 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ))
3725 /* destroy all striped objects */
3726 for (i = 0; i < lo->ldo_stripenr; i++) {
3727 if (likely(lo->ldo_stripe[i] != NULL) &&
3728 (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_SPEOBJ) ||
3729 i == cfs_fail_val)) {
3730 if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
3731 dt_write_lock(env, lo->ldo_stripe[i],
3733 rc = lod_sub_object_ref_del(env,
3734 lo->ldo_stripe[i], th);
3735 dt_write_unlock(env, lo->ldo_stripe[i]);
3740 rc = lod_sub_object_destroy(env, lo->ldo_stripe[i], th);
3750 * Implementation of dt_object_operations::do_declare_ref_add.
3752 * \see dt_object_operations::do_declare_ref_add() in the API description
3755 static int lod_declare_ref_add(const struct lu_env *env,
3756 struct dt_object *dt, struct thandle *th)
3758 return lod_sub_object_declare_ref_add(env, dt_object_child(dt), th);
3762 * Implementation of dt_object_operations::do_ref_add.
3764 * \see dt_object_operations::do_ref_add() in the API description for details.
3766 static int lod_ref_add(const struct lu_env *env,
3767 struct dt_object *dt, struct thandle *th)
3769 return lod_sub_object_ref_add(env, dt_object_child(dt), th);
3773 * Implementation of dt_object_operations::do_declare_ref_del.
3775 * \see dt_object_operations::do_declare_ref_del() in the API description
3778 static int lod_declare_ref_del(const struct lu_env *env,
3779 struct dt_object *dt, struct thandle *th)
3781 return lod_sub_object_declare_ref_del(env, dt_object_child(dt), th);
3785 * Implementation of dt_object_operations::do_ref_del
3787 * \see dt_object_operations::do_ref_del() in the API description for details.
3789 static int lod_ref_del(const struct lu_env *env,
3790 struct dt_object *dt, struct thandle *th)
3792 return lod_sub_object_ref_del(env, dt_object_child(dt), th);
3796 * Implementation of dt_object_operations::do_object_sync.
3798 * \see dt_object_operations::do_object_sync() in the API description
3801 static int lod_object_sync(const struct lu_env *env, struct dt_object *dt,
3802 __u64 start, __u64 end)
3804 return dt_object_sync(env, dt_object_child(dt), start, end);
3808 * Release LDLM locks on the stripes of a striped directory.
3810 * Iterates over all the locks taken on the stripe objects and
3811 * release them using ->do_object_unlock() method.
3813 * \param[in] env execution environment
3814 * \param[in] dt striped object
3815 * \param[in] einfo lock description
3816 * \param[in] policy data describing requested lock
3818 * \retval 0 on success
3819 * \retval negative if failed
3821 static int lod_object_unlock_internal(const struct lu_env *env,
3822 struct dt_object *dt,
3823 struct ldlm_enqueue_info *einfo,
3824 union ldlm_policy_data *policy)
3826 struct lustre_handle_array *slave_locks = einfo->ei_cbdata;
3831 if (slave_locks == NULL)
3834 for (i = 1; i < slave_locks->count; i++) {
3835 if (lustre_handle_is_used(&slave_locks->handles[i]))
3836 ldlm_lock_decref(&slave_locks->handles[i],
3844 * Implementation of dt_object_operations::do_object_unlock.
3846 * Used to release LDLM lock(s).
3848 * \see dt_object_operations::do_object_unlock() in the API description
3851 static int lod_object_unlock(const struct lu_env *env, struct dt_object *dt,
3852 struct ldlm_enqueue_info *einfo,
3853 union ldlm_policy_data *policy)
3855 struct lod_object *lo = lod_dt_obj(dt);
3856 struct lustre_handle_array *slave_locks = einfo->ei_cbdata;
3857 int slave_locks_size;
3861 if (slave_locks == NULL)
3864 LASSERT(S_ISDIR(dt->do_lu.lo_header->loh_attr));
3865 LASSERT(lo->ldo_stripenr > 1);
3866 /* Note: for remote lock for single stripe dir, MDT will cancel
3867 * the lock by lockh directly */
3868 LASSERT(!dt_object_remote(dt_object_child(dt)));
3870 /* locks were unlocked in MDT layer */
3871 for (i = 1; i < slave_locks->count; i++)
3872 LASSERT(!lustre_handle_is_used(&slave_locks->handles[i]));
3874 slave_locks_size = sizeof(*slave_locks) + slave_locks->count *
3875 sizeof(slave_locks->handles[0]);
3876 OBD_FREE(slave_locks, slave_locks_size);
3877 einfo->ei_cbdata = NULL;
3883 * Implementation of dt_object_operations::do_object_lock.
3885 * Used to get LDLM lock on the non-striped and striped objects.
3887 * \see dt_object_operations::do_object_lock() in the API description
3890 static int lod_object_lock(const struct lu_env *env,
3891 struct dt_object *dt,
3892 struct lustre_handle *lh,
3893 struct ldlm_enqueue_info *einfo,
3894 union ldlm_policy_data *policy)
3896 struct lod_object *lo = lod_dt_obj(dt);
3899 int slave_locks_size;
3900 struct lustre_handle_array *slave_locks = NULL;
3903 /* remote object lock */
3904 if (!einfo->ei_enq_slave) {
3905 LASSERT(dt_object_remote(dt));
3906 return dt_object_lock(env, dt_object_child(dt), lh, einfo,
3910 if (!S_ISDIR(dt->do_lu.lo_header->loh_attr))
3913 rc = lod_load_striping(env, lo);
3918 if (lo->ldo_stripenr <= 1)
3921 slave_locks_size = sizeof(*slave_locks) + lo->ldo_stripenr *
3922 sizeof(slave_locks->handles[0]);
3923 /* Freed in lod_object_unlock */
3924 OBD_ALLOC(slave_locks, slave_locks_size);
3925 if (slave_locks == NULL)
3927 slave_locks->count = lo->ldo_stripenr;
3929 /* striped directory lock */
3930 for (i = 1; i < lo->ldo_stripenr; i++) {
3931 struct lustre_handle lockh;
3932 struct ldlm_res_id *res_id;
3934 res_id = &lod_env_info(env)->lti_res_id;
3935 fid_build_reg_res_name(lu_object_fid(&lo->ldo_stripe[i]->do_lu),
3937 einfo->ei_res_id = res_id;
3939 LASSERT(lo->ldo_stripe[i] != NULL);
3940 if (likely(dt_object_remote(lo->ldo_stripe[i]))) {
3941 rc = dt_object_lock(env, lo->ldo_stripe[i], &lockh,
3944 struct ldlm_namespace *ns = einfo->ei_namespace;
3945 ldlm_blocking_callback blocking = einfo->ei_cb_local_bl;
3946 ldlm_completion_callback completion = einfo->ei_cb_cp;
3947 __u64 dlmflags = LDLM_FL_ATOMIC_CB;
3949 if (einfo->ei_mode == LCK_PW ||
3950 einfo->ei_mode == LCK_EX)
3951 dlmflags |= LDLM_FL_COS_INCOMPAT;
3953 /* This only happens if there are mulitple stripes
3954 * on the master MDT, i.e. except stripe0, there are
3955 * other stripes on the Master MDT as well, Only
3956 * happens in the test case right now. */
3957 LASSERT(ns != NULL);
3958 rc = ldlm_cli_enqueue_local(ns, res_id, LDLM_IBITS,
3959 policy, einfo->ei_mode,
3960 &dlmflags, blocking,
3962 NULL, 0, LVB_T_NONE,
3967 slave_locks->handles[i] = lockh;
3970 einfo->ei_cbdata = slave_locks;
3973 if (rc != 0 && slave_locks != NULL) {
3974 einfo->ei_cbdata = slave_locks;
3975 lod_object_unlock_internal(env, dt, einfo, policy);
3976 OBD_FREE(slave_locks, slave_locks_size);
3977 einfo->ei_cbdata = NULL;
3983 struct dt_object_operations lod_obj_ops = {
3984 .do_read_lock = lod_object_read_lock,
3985 .do_write_lock = lod_object_write_lock,
3986 .do_read_unlock = lod_object_read_unlock,
3987 .do_write_unlock = lod_object_write_unlock,
3988 .do_write_locked = lod_object_write_locked,
3989 .do_attr_get = lod_attr_get,
3990 .do_declare_attr_set = lod_declare_attr_set,
3991 .do_attr_set = lod_attr_set,
3992 .do_xattr_get = lod_xattr_get,
3993 .do_declare_xattr_set = lod_declare_xattr_set,
3994 .do_xattr_set = lod_xattr_set,
3995 .do_declare_xattr_del = lod_declare_xattr_del,
3996 .do_xattr_del = lod_xattr_del,
3997 .do_xattr_list = lod_xattr_list,
3998 .do_ah_init = lod_ah_init,
3999 .do_declare_create = lod_declare_object_create,
4000 .do_create = lod_object_create,
4001 .do_declare_destroy = lod_declare_object_destroy,
4002 .do_destroy = lod_object_destroy,
4003 .do_index_try = lod_index_try,
4004 .do_declare_ref_add = lod_declare_ref_add,
4005 .do_ref_add = lod_ref_add,
4006 .do_declare_ref_del = lod_declare_ref_del,
4007 .do_ref_del = lod_ref_del,
4008 .do_object_sync = lod_object_sync,
4009 .do_object_lock = lod_object_lock,
4010 .do_object_unlock = lod_object_unlock,
4014 * Implementation of dt_body_operations::dbo_read.
4016 * \see dt_body_operations::dbo_read() in the API description for details.
4018 static ssize_t lod_read(const struct lu_env *env, struct dt_object *dt,
4019 struct lu_buf *buf, loff_t *pos)
4021 struct dt_object *next = dt_object_child(dt);
4022 return next->do_body_ops->dbo_read(env, next, buf, pos);
4026 * Implementation of dt_body_operations::dbo_declare_write.
4028 * \see dt_body_operations::dbo_declare_write() in the API description
4031 static ssize_t lod_declare_write(const struct lu_env *env,
4032 struct dt_object *dt,
4033 const struct lu_buf *buf, loff_t pos,
4036 return lod_sub_object_declare_write(env, dt_object_child(dt), buf, pos,
4041 * Implementation of dt_body_operations::dbo_write.
4043 * \see dt_body_operations::dbo_write() in the API description for details.
4045 static ssize_t lod_write(const struct lu_env *env, struct dt_object *dt,
4046 const struct lu_buf *buf, loff_t *pos,
4047 struct thandle *th, int iq)
4049 return lod_sub_object_write(env, dt_object_child(dt), buf, pos, th, iq);
4052 static int lod_declare_punch(const struct lu_env *env, struct dt_object *dt,
4053 __u64 start, __u64 end, struct thandle *th)
4055 if (dt_object_remote(dt))
4058 return lod_sub_object_declare_punch(env, dt_object_child(dt), start,
4062 static int lod_punch(const struct lu_env *env, struct dt_object *dt,
4063 __u64 start, __u64 end, struct thandle *th)
4065 if (dt_object_remote(dt))
4068 return lod_sub_object_punch(env, dt_object_child(dt), start, end, th);
4071 static const struct dt_body_operations lod_body_lnk_ops = {
4072 .dbo_read = lod_read,
4073 .dbo_declare_write = lod_declare_write,
4074 .dbo_write = lod_write
4077 static const struct dt_body_operations lod_body_ops = {
4078 .dbo_read = lod_read,
4079 .dbo_declare_write = lod_declare_write,
4080 .dbo_write = lod_write,
4081 .dbo_declare_punch = lod_declare_punch,
4082 .dbo_punch = lod_punch,
4086 * Implementation of lu_object_operations::loo_object_init.
4088 * The function determines the type and the index of the target device using
4089 * sequence of the object's FID. Then passes control down to the
4090 * corresponding device:
4091 * OSD for the local objects, OSP for remote
4093 * \see lu_object_operations::loo_object_init() in the API description
4096 static int lod_object_init(const struct lu_env *env, struct lu_object *lo,
4097 const struct lu_object_conf *conf)
4099 struct lod_device *lod = lu2lod_dev(lo->lo_dev);
4100 struct lu_device *cdev = NULL;
4101 struct lu_object *cobj;
4102 struct lod_tgt_descs *ltd = NULL;
4103 struct lod_tgt_desc *tgt;
4105 int type = LU_SEQ_RANGE_ANY;
4109 rc = lod_fld_lookup(env, lod, lu_object_fid(lo), &idx, &type);
4111 /* Note: Sometimes, it will Return EAGAIN here, see
4112 * ptrlpc_import_delay_req(), which might confuse
4113 * lu_object_find_at() and make it wait there incorrectly.
4114 * so we convert it to EIO here.*/
4121 if (type == LU_SEQ_RANGE_MDT &&
4122 idx == lu_site2seq(lo->lo_dev->ld_site)->ss_node_id) {
4123 cdev = &lod->lod_child->dd_lu_dev;
4124 } else if (type == LU_SEQ_RANGE_MDT) {
4125 ltd = &lod->lod_mdt_descs;
4127 } else if (type == LU_SEQ_RANGE_OST) {
4128 ltd = &lod->lod_ost_descs;
4135 if (ltd->ltd_tgts_size > idx &&
4136 cfs_bitmap_check(ltd->ltd_tgt_bitmap, idx)) {
4137 tgt = LTD_TGT(ltd, idx);
4139 LASSERT(tgt != NULL);
4140 LASSERT(tgt->ltd_tgt != NULL);
4142 cdev = &(tgt->ltd_tgt->dd_lu_dev);
4144 lod_putref(lod, ltd);
4147 if (unlikely(cdev == NULL))
4150 cobj = cdev->ld_ops->ldo_object_alloc(env, lo->lo_header, cdev);
4151 if (unlikely(cobj == NULL))
4154 lu_object_add(lo, cobj);
4161 * Release resources associated with striping.
4163 * If the object is striped (regular or directory), then release
4164 * the stripe objects references and free the ldo_stripe array.
4166 * \param[in] env execution environment
4167 * \param[in] lo object
4169 void lod_object_free_striping(const struct lu_env *env, struct lod_object *lo)
4173 if (lo->ldo_dir_stripe != NULL) {
4174 OBD_FREE_PTR(lo->ldo_dir_stripe);
4175 lo->ldo_dir_stripe = NULL;
4178 if (lo->ldo_stripe) {
4179 LASSERT(lo->ldo_stripes_allocated > 0);
4181 for (i = 0; i < lo->ldo_stripenr; i++) {
4182 if (lo->ldo_stripe[i])
4183 lu_object_put(env, &lo->ldo_stripe[i]->do_lu);
4186 i = sizeof(struct dt_object *) * lo->ldo_stripes_allocated;
4187 OBD_FREE(lo->ldo_stripe, i);
4188 lo->ldo_stripe = NULL;
4189 lo->ldo_stripes_allocated = 0;
4191 lo->ldo_striping_cached = 0;
4192 lo->ldo_stripenr = 0;
4193 lo->ldo_pattern = 0;
4197 * Implementation of lu_object_operations::loo_object_start.
4199 * \see lu_object_operations::loo_object_start() in the API description
4202 static int lod_object_start(const struct lu_env *env, struct lu_object *o)
4204 if (S_ISLNK(o->lo_header->loh_attr & S_IFMT)) {
4205 lu2lod_obj(o)->ldo_obj.do_body_ops = &lod_body_lnk_ops;
4206 } else if (S_ISREG(o->lo_header->loh_attr & S_IFMT) ||
4207 fid_is_local_file(lu_object_fid(o))) {
4208 /* Note: some local file (like last rcvd) is created
4209 * through bottom layer (OSD), so the object initialization
4210 * comes to lod, it does not set loh_attr yet, so
4211 * set do_body_ops for local file anyway */
4212 lu2lod_obj(o)->ldo_obj.do_body_ops = &lod_body_ops;
4218 * Implementation of lu_object_operations::loo_object_free.
4220 * \see lu_object_operations::loo_object_free() in the API description
4223 static void lod_object_free(const struct lu_env *env, struct lu_object *o)
4225 struct lod_object *mo = lu2lod_obj(o);
4228 * release all underlying object pinned
4231 lod_object_free_striping(env, mo);
4233 lod_object_set_pool(mo, NULL);
4236 OBD_SLAB_FREE_PTR(mo, lod_object_kmem);
4240 * Implementation of lu_object_operations::loo_object_release.
4242 * \see lu_object_operations::loo_object_release() in the API description
4245 static void lod_object_release(const struct lu_env *env, struct lu_object *o)
4247 /* XXX: shouldn't we release everything here in case if object
4248 * creation failed before? */
4252 * Implementation of lu_object_operations::loo_object_print.
4254 * \see lu_object_operations::loo_object_print() in the API description
4257 static int lod_object_print(const struct lu_env *env, void *cookie,
4258 lu_printer_t p, const struct lu_object *l)
4260 struct lod_object *o = lu2lod_obj((struct lu_object *) l);
4262 return (*p)(env, cookie, LUSTRE_LOD_NAME"-object@%p", o);
4265 struct lu_object_operations lod_lu_obj_ops = {
4266 .loo_object_init = lod_object_init,
4267 .loo_object_start = lod_object_start,
4268 .loo_object_free = lod_object_free,
4269 .loo_object_release = lod_object_release,
4270 .loo_object_print = lod_object_print,