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, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License version 2 for more details (a copy is included
14 * in the LICENSE file that accompanied this code).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
18 * http://www.gnu.org/licenses/gpl-2.0.html
23 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2017, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
32 * lustre/osd/osd_handler.c
34 * Top-level entry points into osd module
36 * Author: Nikita Danilov <nikita@clusterfs.com>
37 * Pravin Shelar <pravin.shelar@sun.com> : Added fid in dirent
40 #define DEBUG_SUBSYSTEM S_OSD
42 #include <linux/kallsyms.h>
43 #include <linux/module.h>
44 #include <linux/user_namespace.h>
45 #ifdef HAVE_UIDGID_HEADER
46 # include <linux/uidgid.h>
49 /* prerequisite for linux/xattr.h */
50 #include <linux/types.h>
51 /* prerequisite for linux/xattr.h */
53 /* XATTR_{REPLACE,CREATE} */
54 #include <linux/xattr.h>
56 #include <ldiskfs/ldiskfs.h>
57 #include <ldiskfs/xattr.h>
58 #include <ldiskfs/ldiskfs_extents.h>
61 * struct OBD_{ALLOC,FREE}*()
64 #include <obd_support.h>
65 /* struct ptlrpc_thread */
66 #include <lustre_net.h>
67 #include <lustre_fid.h>
69 #include <uapi/linux/lustre/lustre_param.h>
71 #include "osd_internal.h"
72 #include "osd_dynlocks.h"
74 /* llo_* api support */
75 #include <md_object.h>
76 #include <lustre_quota.h>
78 #include <lustre_linkea.h>
80 /* Maximum EA size is limited by LNET_MTU for remote objects */
81 #define OSD_MAX_EA_SIZE 1048364
84 module_param(ldiskfs_pdo, int, 0644);
85 MODULE_PARM_DESC(ldiskfs_pdo, "ldiskfs with parallel directory operations");
87 int ldiskfs_track_declares_assert;
88 module_param(ldiskfs_track_declares_assert, int, 0644);
89 MODULE_PARM_DESC(ldiskfs_track_declares_assert, "LBUG during tracking of declares");
91 /* Slab to allocate dynlocks */
92 struct kmem_cache *dynlock_cachep;
94 /* Slab to allocate osd_it_ea */
95 struct kmem_cache *osd_itea_cachep;
97 static struct lu_kmem_descr ldiskfs_caches[] = {
99 .ckd_cache = &dynlock_cachep,
100 .ckd_name = "dynlock_cache",
101 .ckd_size = sizeof(struct dynlock_handle)
104 .ckd_cache = &osd_itea_cachep,
105 .ckd_name = "osd_itea_cache",
106 .ckd_size = sizeof(struct osd_it_ea)
113 static const char dot[] = ".";
114 static const char dotdot[] = "..";
116 static const struct lu_object_operations osd_lu_obj_ops;
117 static const struct dt_object_operations osd_obj_ops;
118 static const struct dt_object_operations osd_obj_otable_it_ops;
119 static const struct dt_index_operations osd_index_iam_ops;
120 static const struct dt_index_operations osd_index_ea_ops;
122 static int osd_remote_fid(const struct lu_env *env, struct osd_device *osd,
123 const struct lu_fid *fid);
124 static int osd_process_scheduled_agent_removals(const struct lu_env *env,
125 struct osd_device *osd);
127 int osd_trans_declare_op2rb[] = {
128 [OSD_OT_ATTR_SET] = OSD_OT_ATTR_SET,
129 [OSD_OT_PUNCH] = OSD_OT_MAX,
130 [OSD_OT_XATTR_SET] = OSD_OT_XATTR_SET,
131 [OSD_OT_CREATE] = OSD_OT_DESTROY,
132 [OSD_OT_DESTROY] = OSD_OT_CREATE,
133 [OSD_OT_REF_ADD] = OSD_OT_REF_DEL,
134 [OSD_OT_REF_DEL] = OSD_OT_REF_ADD,
135 [OSD_OT_WRITE] = OSD_OT_WRITE,
136 [OSD_OT_INSERT] = OSD_OT_DELETE,
137 [OSD_OT_DELETE] = OSD_OT_INSERT,
138 [OSD_OT_QUOTA] = OSD_OT_MAX,
141 static int osd_has_index(const struct osd_object *obj)
143 return obj->oo_dt.do_index_ops != NULL;
146 static int osd_object_invariant(const struct lu_object *l)
148 return osd_invariant(osd_obj(l));
152 * Concurrency: doesn't matter
154 static int osd_is_write_locked(const struct lu_env *env, struct osd_object *o)
156 struct osd_thread_info *oti = osd_oti_get(env);
158 return oti->oti_w_locks > 0 && o->oo_owner == env;
162 * Concurrency: doesn't access mutable data
164 static int osd_root_get(const struct lu_env *env,
165 struct dt_device *dev, struct lu_fid *f)
167 lu_local_obj_fid(f, OSD_FS_ROOT_OID);
172 * the following set of functions are used to maintain per-thread
173 * cache of FID->ino mapping. this mechanism is needed to resolve
174 * FID to inode at dt_insert() which in turn stores ino in the
175 * directory entries to keep ldiskfs compatible with ext[34].
176 * due to locking-originated restrictions we can't lookup ino
177 * using LU cache (deadlock is possible). lookup using OI is quite
178 * expensive. so instead we maintain this cache and methods like
179 * dt_create() fill it. so in the majority of cases dt_insert() is
180 * able to find needed mapping in lockless manner.
182 static struct osd_idmap_cache *
183 osd_idc_find(const struct lu_env *env, struct osd_device *osd,
184 const struct lu_fid *fid)
186 struct osd_thread_info *oti = osd_oti_get(env);
187 struct osd_idmap_cache *idc = oti->oti_ins_cache;
190 for (i = 0; i < oti->oti_ins_cache_used; i++) {
191 if (!lu_fid_eq(&idc[i].oic_fid, fid))
193 if (idc[i].oic_dev != osd)
202 static struct osd_idmap_cache *
203 osd_idc_add(const struct lu_env *env, struct osd_device *osd,
204 const struct lu_fid *fid)
206 struct osd_thread_info *oti = osd_oti_get(env);
207 struct osd_idmap_cache *idc;
210 if (unlikely(oti->oti_ins_cache_used >= oti->oti_ins_cache_size)) {
211 i = oti->oti_ins_cache_size * 2;
213 i = OSD_INS_CACHE_SIZE;
214 OBD_ALLOC(idc, sizeof(*idc) * i);
216 return ERR_PTR(-ENOMEM);
217 if (oti->oti_ins_cache != NULL) {
218 memcpy(idc, oti->oti_ins_cache,
219 oti->oti_ins_cache_used * sizeof(*idc));
220 OBD_FREE(oti->oti_ins_cache,
221 oti->oti_ins_cache_used * sizeof(*idc));
223 oti->oti_ins_cache = idc;
224 oti->oti_ins_cache_size = i;
227 idc = oti->oti_ins_cache + oti->oti_ins_cache_used++;
230 idc->oic_lid.oii_ino = 0;
231 idc->oic_lid.oii_gen = 0;
238 * lookup mapping for the given fid in the cache, initialize a
239 * new one if not found. the initialization checks whether the
240 * object is local or remote. for local objects, OI is used to
241 * learn ino/generation. the function is used when the caller
242 * has no information about the object, e.g. at dt_insert().
244 static struct osd_idmap_cache *
245 osd_idc_find_or_init(const struct lu_env *env, struct osd_device *osd,
246 const struct lu_fid *fid)
248 struct osd_idmap_cache *idc;
251 idc = osd_idc_find(env, osd, fid);
252 LASSERT(!IS_ERR(idc));
256 CDEBUG(D_INODE, "%s: FID "DFID" not in the id map cache\n",
257 osd->od_svname, PFID(fid));
259 /* new mapping is needed */
260 idc = osd_idc_add(env, osd, fid);
262 CERROR("%s: FID "DFID" add id map cache failed: %ld\n",
263 osd->od_svname, PFID(fid), PTR_ERR(idc));
268 rc = osd_remote_fid(env, osd, fid);
269 if (unlikely(rc < 0))
273 /* the object is local, lookup in OI */
274 /* XXX: probably cheaper to lookup in LU first? */
275 rc = osd_oi_lookup(osd_oti_get(env), osd, fid,
277 if (unlikely(rc < 0)) {
278 CERROR("can't lookup: rc = %d\n", rc);
282 /* the object is remote */
290 * lookup mapping for given FID and fill it from the given object.
291 * the object is lolcal by definition.
293 static int osd_idc_find_and_init(const struct lu_env *env,
294 struct osd_device *osd,
295 struct osd_object *obj)
297 const struct lu_fid *fid = lu_object_fid(&obj->oo_dt.do_lu);
298 struct osd_idmap_cache *idc;
300 idc = osd_idc_find(env, osd, fid);
301 LASSERT(!IS_ERR(idc));
303 if (obj->oo_inode == NULL)
305 if (idc->oic_lid.oii_ino != obj->oo_inode->i_ino) {
306 LASSERT(idc->oic_lid.oii_ino == 0);
307 idc->oic_lid.oii_ino = obj->oo_inode->i_ino;
308 idc->oic_lid.oii_gen = obj->oo_inode->i_generation;
313 CDEBUG(D_INODE, "%s: FID "DFID" not in the id map cache\n",
314 osd->od_svname, PFID(fid));
316 /* new mapping is needed */
317 idc = osd_idc_add(env, osd, fid);
319 CERROR("%s: FID "DFID" add id map cache failed: %ld\n",
320 osd->od_svname, PFID(fid), PTR_ERR(idc));
324 if (obj->oo_inode != NULL) {
325 idc->oic_lid.oii_ino = obj->oo_inode->i_ino;
326 idc->oic_lid.oii_gen = obj->oo_inode->i_generation;
332 * OSD object methods.
336 * Concurrency: no concurrent access is possible that early in object
339 static struct lu_object *osd_object_alloc(const struct lu_env *env,
340 const struct lu_object_header *hdr,
343 struct osd_object *mo;
348 struct lu_object_header *h;
349 struct osd_device *o = osd_dev(d);
351 l = &mo->oo_dt.do_lu;
352 if (unlikely(o->od_in_init)) {
359 lu_object_header_init(h);
360 lu_object_init(l, h, d);
361 lu_object_add_top(h, l);
364 dt_object_init(&mo->oo_dt, NULL, d);
365 mo->oo_header = NULL;
368 mo->oo_dt.do_ops = &osd_obj_ops;
369 l->lo_ops = &osd_lu_obj_ops;
370 init_rwsem(&mo->oo_sem);
371 init_rwsem(&mo->oo_ext_idx_sem);
372 spin_lock_init(&mo->oo_guard);
373 INIT_LIST_HEAD(&mo->oo_xattr_list);
379 int osd_get_lma(struct osd_thread_info *info, struct inode *inode,
380 struct dentry *dentry, struct lustre_ost_attrs *loa)
384 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LMA,
385 (void *)loa, sizeof(*loa));
387 struct lustre_mdt_attrs *lma = &loa->loa_lma;
389 if (rc < sizeof(*lma))
393 lustre_loa_swab(loa, true);
394 /* Check LMA compatibility */
395 if (lma->lma_incompat & ~LMA_INCOMPAT_SUPP) {
396 CWARN("%s: unsupported incompat LMA feature(s) %#x "
397 "for fid = "DFID", ino = %lu\n",
399 lma->lma_incompat & ~LMA_INCOMPAT_SUPP,
400 PFID(&lma->lma_self_fid), inode->i_ino);
403 } else if (rc == 0) {
411 * retrieve object from backend ext fs.
413 struct inode *osd_iget(struct osd_thread_info *info, struct osd_device *dev,
414 struct osd_inode_id *id)
417 struct inode *inode = NULL;
420 * if we look for an inode withing a running
421 * transaction, then we risk to deadlock
422 * osd_dirent_check_repair() breaks this
424 /* LASSERT(current->journal_info == NULL); */
426 inode = ldiskfs_iget(osd_sb(dev), id->oii_ino);
428 CDEBUG(D_INODE, "no inode: ino = %u, rc = %ld\n",
429 id->oii_ino, PTR_ERR(inode));
430 } else if (id->oii_gen != OSD_OII_NOGEN &&
431 inode->i_generation != id->oii_gen) {
432 CDEBUG(D_INODE, "unmatched inode: ino = %u, oii_gen = %u, "
433 "i_generation = %u\n",
434 id->oii_ino, id->oii_gen, inode->i_generation);
436 inode = ERR_PTR(-ESTALE);
437 } else if (inode->i_nlink == 0) {
439 * due to parallel readdir and unlink,
440 * we can have dead inode here.
442 CDEBUG(D_INODE, "stale inode: ino = %u\n", id->oii_ino);
444 inode = ERR_PTR(-ESTALE);
445 } else if (is_bad_inode(inode)) {
446 CWARN("%s: bad inode: ino = %u\n",
447 osd_dev2name(dev), id->oii_ino);
449 inode = ERR_PTR(-ENOENT);
450 } else if ((rc = osd_attach_jinode(inode))) {
454 ldiskfs_clear_inode_state(inode, LDISKFS_STATE_LUSTRE_DESTROY);
455 if (id->oii_gen == OSD_OII_NOGEN)
456 osd_id_gen(id, inode->i_ino, inode->i_generation);
459 * Do not update file c/mtime in ldiskfs.
460 * NB: we don't have any lock to protect this because we don't
461 * have reference on osd_object now, but contention with
462 * another lookup + attr_set can't happen in the tiny window
463 * between if (...) and set S_NOCMTIME.
465 if (!(inode->i_flags & S_NOCMTIME))
466 inode->i_flags |= S_NOCMTIME;
471 int osd_ldiskfs_add_entry(struct osd_thread_info *info, struct osd_device *osd,
472 handle_t *handle, struct dentry *child,
473 struct inode *inode, struct htree_lock *hlock)
477 rc = __ldiskfs_add_entry(handle, child, inode, hlock);
478 if (rc == -ENOBUFS || rc == -ENOSPC) {
479 struct lustre_ost_attrs *loa = &info->oti_ost_attrs;
480 struct inode *parent = child->d_parent->d_inode;
481 struct lu_fid *fid = NULL;
483 rc2 = osd_get_lma(info, parent, child->d_parent, loa);
485 fid = &loa->loa_lma.lma_self_fid;
486 } else if (rc2 == -ENODATA) {
487 if (unlikely(parent == inode->i_sb->s_root->d_inode)) {
488 fid = &info->oti_fid3;
489 lu_local_obj_fid(fid, OSD_FS_ROOT_OID);
490 } else if (!osd->od_is_ost && osd->od_index == 0) {
491 fid = &info->oti_fid3;
492 lu_igif_build(fid, parent->i_ino,
493 parent->i_generation);
498 CWARN("%s: directory (inode: %lu, FID: "DFID") %s "
499 "maximum entry limit\n",
500 osd_name(osd), parent->i_ino, PFID(fid),
501 rc == -ENOSPC ? "has reached" : "is approaching");
503 CWARN("%s: directory (inode: %lu, FID: unknown) %s "
504 "maximum entry limit\n",
505 osd_name(osd), parent->i_ino,
506 rc == -ENOSPC ? "has reached" : "is approaching");
508 /* ignore such error now */
518 osd_iget_fid(struct osd_thread_info *info, struct osd_device *dev,
519 struct osd_inode_id *id, struct lu_fid *fid)
521 struct lustre_ost_attrs *loa = &info->oti_ost_attrs;
525 inode = osd_iget(info, dev, id);
529 rc = osd_get_lma(info, inode, &info->oti_obj_dentry, loa);
531 *fid = loa->loa_lma.lma_self_fid;
532 } else if (rc == -ENODATA) {
533 if (unlikely(inode == osd_sb(dev)->s_root->d_inode))
534 lu_local_obj_fid(fid, OSD_FS_ROOT_OID);
536 lu_igif_build(fid, inode->i_ino, inode->i_generation);
544 static struct inode *osd_iget_check(struct osd_thread_info *info,
545 struct osd_device *dev,
546 const struct lu_fid *fid,
547 struct osd_inode_id *id,
556 * The cached OI mapping is trustable. If we cannot locate the inode
557 * via the cached OI mapping, then return the failure to the caller
558 * directly without further OI checking.
562 inode = ldiskfs_iget(osd_sb(dev), id->oii_ino);
565 if (!trusted && (rc == -ENOENT || rc == -ESTALE))
568 CDEBUG(D_INODE, "no inode for FID: "DFID", ino = %u, rc = %d\n",
569 PFID(fid), id->oii_ino, rc);
573 if (is_bad_inode(inode)) {
578 CDEBUG(D_INODE, "bad inode for FID: "DFID", ino = %u\n",
579 PFID(fid), id->oii_ino);
583 if (id->oii_gen != OSD_OII_NOGEN &&
584 inode->i_generation != id->oii_gen) {
589 CDEBUG(D_INODE, "unmatched inode for FID: "DFID", ino = %u, "
590 "oii_gen = %u, i_generation = %u\n", PFID(fid),
591 id->oii_ino, id->oii_gen, inode->i_generation);
595 if (inode->i_nlink == 0) {
600 CDEBUG(D_INODE, "stale inode for FID: "DFID", ino = %u\n",
601 PFID(fid), id->oii_ino);
605 ldiskfs_clear_inode_state(inode, LDISKFS_STATE_LUSTRE_DESTROY);
609 __u32 saved_ino = id->oii_ino;
610 __u32 saved_gen = id->oii_gen;
613 LASSERTF(rc == -ESTALE || rc == -ENOENT, "rc = %d\n", rc);
615 rc = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
617 * XXX: There are four possible cases:
619 * Backup/restore caused the OI invalid.
621 * Someone unlinked the object but NOT removed
622 * the OI mapping, such as mount target device
623 * as ldiskfs, and modify something directly.
625 * Someone just removed the object between the
626 * former oi_lookup and the iget. It is normal.
627 * 4. Other failure cases.
629 * Generally, when the device is mounted, it will
630 * auto check whether the system is restored from
631 * file-level backup or not. We trust such detect
632 * to distinguish the 1st case from the 2nd case:
633 * if the OI files are consistent but may contain
634 * stale OI mappings because of case 2, if iget()
635 * returns -ENOENT or -ESTALE, then it should be
640 * If the OI mapping was in OI file before the
641 * osd_iget_check(), but now, it is disappear,
642 * then it must be removed by race. That is a
648 * It is the OI scrub updated the OI mapping by race.
649 * The new OI mapping must be valid.
651 if (saved_ino != id->oii_ino ||
652 (saved_gen != id->oii_gen && saved_gen != OSD_OII_NOGEN)) {
661 if (dev->od_scrub.os_scrub.os_file.sf_flags &
664 * It still can be the case 2, but we cannot
665 * distinguish it from the case 1. So return
666 * -EREMCHG to block current operation until
667 * OI scrub rebuilt the OI mappings.
676 if (inode->i_generation == id->oii_gen)
681 if (id->oii_gen == OSD_OII_NOGEN)
682 osd_id_gen(id, inode->i_ino, inode->i_generation);
685 * Do not update file c/mtime in ldiskfs.
686 * NB: we don't have any lock to protect this because we don't
687 * have reference on osd_object now, but contention with
688 * another lookup + attr_set can't happen in the tiny window
689 * between if (...) and set S_NOCMTIME.
691 if (!(inode->i_flags & S_NOCMTIME))
692 inode->i_flags |= S_NOCMTIME;
709 * \retval +v: new filter_fid does not contain self-fid
710 * \retval 0: filter_fid_18_23, contains self-fid
711 * \retval -v: other failure cases
713 int osd_get_idif(struct osd_thread_info *info, struct inode *inode,
714 struct dentry *dentry, struct lu_fid *fid)
716 struct filter_fid *ff = &info->oti_ff;
717 struct ost_id *ostid = &info->oti_ostid;
720 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_FID, ff, sizeof(*ff));
721 if (rc == sizeof(struct filter_fid_18_23)) {
722 struct filter_fid_18_23 *ff_old = (void *)ff;
724 ostid_set_seq(ostid, le64_to_cpu(ff_old->ff_seq));
725 rc = ostid_set_id(ostid, le64_to_cpu(ff_old->ff_objid));
727 * XXX: use 0 as the index for compatibility, the caller will
728 * handle index related issues when necessary.
731 ostid_to_fid(fid, ostid, 0);
732 } else if (rc >= (int)sizeof(struct filter_fid_24_29)) {
734 } else if (rc >= 0) {
741 static int osd_lma_self_repair(struct osd_thread_info *info,
742 struct osd_device *osd, struct inode *inode,
743 const struct lu_fid *fid, __u32 compat)
748 LASSERT(current->journal_info == NULL);
750 jh = osd_journal_start_sb(osd_sb(osd), LDISKFS_HT_MISC,
751 osd_dto_credits_noquota[DTO_XATTR_SET]);
754 CWARN("%s: cannot start journal for lma_self_repair: rc = %d\n",
759 rc = osd_ea_fid_set(info, inode, fid, compat, 0);
761 CWARN("%s: cannot self repair the LMA: rc = %d\n",
763 ldiskfs_journal_stop(jh);
767 static int osd_check_lma(const struct lu_env *env, struct osd_object *obj)
769 struct osd_thread_info *info = osd_oti_get(env);
770 struct osd_device *osd = osd_obj2dev(obj);
771 struct lustre_ost_attrs *loa = &info->oti_ost_attrs;
772 struct lustre_mdt_attrs *lma = &loa->loa_lma;
773 struct inode *inode = obj->oo_inode;
774 struct dentry *dentry = &info->oti_obj_dentry;
775 struct lu_fid *fid = NULL;
776 const struct lu_fid *rfid = lu_object_fid(&obj->oo_dt.do_lu);
781 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LMA,
782 (void *)loa, sizeof(*loa));
783 if (rc == -ENODATA && !fid_is_igif(rfid) && osd->od_check_ff) {
784 fid = &lma->lma_self_fid;
785 rc = osd_get_idif(info, inode, dentry, fid);
786 if (rc > 0 || (rc == -ENODATA && osd->od_index_in_idif)) {
788 * For the given OST-object, if it has neither LMA nor
789 * FID in XATTR_NAME_FID, then the given FID (which is
790 * contained in the @obj, from client RPC for locating
791 * the OST-object) is trusted. We use it to generate
794 osd_lma_self_repair(info, osd, inode, rfid,
805 lustre_lma_swab(lma);
806 if (unlikely((lma->lma_incompat & ~LMA_INCOMPAT_SUPP) ||
807 (CFS_FAIL_CHECK(OBD_FAIL_OSD_LMA_INCOMPAT) &&
808 S_ISREG(inode->i_mode)))) {
809 CWARN("%s: unsupported incompat LMA feature(s) %#x for "
810 "fid = "DFID", ino = %lu\n", osd_name(osd),
811 lma->lma_incompat & ~LMA_INCOMPAT_SUPP,
812 PFID(rfid), inode->i_ino);
815 fid = &lma->lma_self_fid;
816 if (lma->lma_compat & LMAC_STRIPE_INFO &&
818 obj->oo_pfid_in_lma = 1;
819 if (unlikely(lma->lma_incompat & LMAI_REMOTE_PARENT) &&
821 lu_object_set_agent_entry(&obj->oo_dt.do_lu);
825 if (fid != NULL && unlikely(!lu_fid_eq(rfid, fid))) {
826 if (fid_is_idif(rfid) && fid_is_idif(fid)) {
827 struct ost_id *oi = &info->oti_ostid;
828 struct lu_fid *fid1 = &info->oti_fid3;
829 __u32 idx = fid_idif_ost_idx(rfid);
832 * For old IDIF, the OST index is not part of the IDIF,
833 * Means that different OSTs may have the same IDIFs.
834 * Under such case, we need to make some compatible
835 * check to make sure to trigger OI scrub properly.
837 if (idx != 0 && fid_idif_ost_idx(fid) == 0) {
838 /* Given @rfid is new, LMA is old. */
839 fid_to_ostid(fid, oi);
840 ostid_to_fid(fid1, oi, idx);
841 if (lu_fid_eq(fid1, rfid)) {
842 if (osd->od_index_in_idif)
843 osd_lma_self_repair(info, osd,
857 struct osd_check_lmv_buf {
858 #ifdef HAVE_DIR_CONTEXT
859 /* please keep it as first member */
860 struct dir_context ctx;
862 struct osd_thread_info *oclb_info;
863 struct osd_device *oclb_dev;
864 struct osd_idmap_cache *oclb_oic;
870 * It is called internally by ->readdir() to filter out the
871 * local slave object's FID of the striped directory.
873 * \retval 1 found the local slave's FID
874 * \retval 0 continue to check next item
875 * \retval -ve for failure
877 #ifdef HAVE_FILLDIR_USE_CTX
878 static int osd_stripe_dir_filldir(struct dir_context *buf,
880 static int osd_stripe_dir_filldir(void *buf,
882 const char *name, int namelen,
883 loff_t offset, __u64 ino, unsigned int d_type)
885 struct osd_check_lmv_buf *oclb = (struct osd_check_lmv_buf *)buf;
886 struct osd_thread_info *oti = oclb->oclb_info;
887 struct lu_fid *fid = &oti->oti_fid3;
888 struct osd_inode_id *id = &oti->oti_id3;
889 struct osd_device *dev = oclb->oclb_dev;
890 struct osd_idmap_cache *oic = oclb->oclb_oic;
899 sscanf(name + 1, SFID, RFID(fid));
900 if (!fid_is_sane(fid))
903 if (osd_remote_fid(oti->oti_env, dev, fid))
906 osd_id_gen(id, ino, OSD_OII_NOGEN);
907 inode = osd_iget(oti, dev, id);
909 return PTR_ERR(inode);
912 osd_add_oi_cache(oti, dev, id, fid);
916 osd_oii_insert(dev, oic, true);
917 oclb->oclb_found = true;
923 * When lookup item under striped directory, we need to locate the master
924 * MDT-object of the striped directory firstly, then the client will send
925 * lookup (getattr_by_name) RPC to the MDT with some slave MDT-object's FID
926 * and the item's name. If the system is restored from MDT file level backup,
927 * then before the OI scrub completely built the OI files, the OI mappings of
928 * the master MDT-object and slave MDT-object may be invalid. Usually, it is
929 * not a problem for the master MDT-object. Because when locate the master
930 * MDT-object, we will do name based lookup (for the striped directory itself)
931 * firstly, during such process we can setup the correct OI mapping for the
932 * master MDT-object. But it will be trouble for the slave MDT-object. Because
933 * the client will not trigger name based lookup on the MDT to locate the slave
934 * MDT-object before locating item under the striped directory, then when
935 * osd_fid_lookup(), it will find that the OI mapping for the slave MDT-object
936 * is invalid and does not know what the right OI mapping is, then the MDT has
937 * to return -EINPROGRESS to the client to notify that the OI scrub is rebuiding
938 * the OI file, related OI mapping is unknown yet, please try again later. And
939 * then client will re-try the RPC again and again until related OI mapping has
940 * been updated. That is quite inefficient.
942 * To resolve above trouble, we will handle it as the following two cases:
944 * 1) The slave MDT-object and the master MDT-object are on different MDTs.
945 * It is relative easy. Be as one of remote MDT-objects, the slave MDT-object
946 * is linked under /REMOTE_PARENT_DIR with the name of its FID string.
947 * We can locate the slave MDT-object via lookup the /REMOTE_PARENT_DIR
948 * directly. Please check osd_fid_lookup().
950 * 2) The slave MDT-object and the master MDT-object reside on the same MDT.
951 * Under such case, during lookup the master MDT-object, we will lookup the
952 * slave MDT-object via readdir against the master MDT-object, because the
953 * slave MDT-objects information are stored as sub-directories with the name
954 * "${FID}:${index}". Then when find the local slave MDT-object, its OI
955 * mapping will be recorded. Then subsequent osd_fid_lookup() will know
956 * the correct OI mapping for the slave MDT-object.
958 static int osd_check_lmv(struct osd_thread_info *oti, struct osd_device *dev,
959 struct inode *inode, struct osd_idmap_cache *oic)
961 struct lu_buf *buf = &oti->oti_big_buf;
962 struct dentry *dentry = &oti->oti_obj_dentry;
963 struct file *filp = &oti->oti_file;
964 const struct file_operations *fops;
965 struct lmv_mds_md_v1 *lmv1;
966 struct osd_check_lmv_buf oclb = {
967 #ifdef HAVE_DIR_CONTEXT
968 .ctx.actor = osd_stripe_dir_filldir,
980 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LMV, buf->lb_buf,
983 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LMV, NULL, 0);
985 lu_buf_realloc(buf, rc);
986 if (buf->lb_buf == NULL)
987 GOTO(out, rc = -ENOMEM);
993 if (unlikely(rc == 0 || rc == -ENODATA))
999 if (unlikely(buf->lb_buf == NULL)) {
1000 lu_buf_realloc(buf, rc);
1001 if (buf->lb_buf == NULL)
1002 GOTO(out, rc = -ENOMEM);
1008 if (le32_to_cpu(lmv1->lmv_magic) != LMV_MAGIC_V1)
1011 fops = inode->i_fop;
1012 dentry->d_inode = inode;
1013 dentry->d_sb = inode->i_sb;
1015 filp->f_path.dentry = dentry;
1016 filp->f_mode = FMODE_64BITHASH;
1017 filp->f_mapping = inode->i_mapping;
1019 filp->private_data = NULL;
1020 set_file_inode(filp, inode);
1023 oclb.oclb_items = 0;
1024 #ifdef HAVE_DIR_CONTEXT
1025 oclb.ctx.pos = filp->f_pos;
1026 #ifdef HAVE_ITERATE_SHARED
1027 rc = fops->iterate_shared(filp, &oclb.ctx);
1029 rc = fops->iterate(filp, &oclb.ctx);
1031 filp->f_pos = oclb.ctx.pos;
1033 rc = fops->readdir(filp, &oclb, osd_stripe_dir_filldir);
1035 } while (rc >= 0 && oclb.oclb_items > 0 && !oclb.oclb_found &&
1036 filp->f_pos != LDISKFS_HTREE_EOF_64BIT);
1037 fops->release(inode, filp);
1041 CDEBUG(D_LFSCK, "%s: fail to check LMV EA, inode = %lu/%u,"
1042 DFID": rc = %d\n", osd_ino2name(inode),
1043 inode->i_ino, inode->i_generation,
1044 PFID(&oic->oic_fid), rc);
1051 static int osd_fid_lookup(const struct lu_env *env, struct osd_object *obj,
1052 const struct lu_fid *fid,
1053 const struct lu_object_conf *conf)
1055 struct osd_thread_info *info;
1056 struct lu_device *ldev = obj->oo_dt.do_lu.lo_dev;
1057 struct osd_device *dev;
1058 struct osd_idmap_cache *oic;
1059 struct osd_inode_id *id;
1060 struct inode *inode = NULL;
1061 struct lustre_scrub *scrub;
1062 struct scrub_file *sf;
1063 __u32 flags = SS_CLEAR_DRYRUN | SS_CLEAR_FAILOUT | SS_AUTO_FULL;
1068 bool remote = false;
1069 bool trusted = true;
1070 bool updated = false;
1071 bool checked = false;
1075 LINVRNT(osd_invariant(obj));
1076 LASSERT(obj->oo_inode == NULL);
1077 LASSERTF(fid_is_sane(fid) || fid_is_idif(fid), DFID"\n", PFID(fid));
1079 dev = osd_dev(ldev);
1080 scrub = &dev->od_scrub.os_scrub;
1081 sf = &scrub->os_file;
1082 info = osd_oti_get(env);
1084 oic = &info->oti_cache;
1086 if (OBD_FAIL_CHECK(OBD_FAIL_SRV_ENOENT))
1090 * For the object is created as locking anchor, or for the object to
1091 * be created on disk. No need to osd_oi_lookup() at here because FID
1092 * shouldn't never be re-used, if it's really a duplicate FID from
1093 * unexpected reason, we should be able to detect it later by calling
1094 * do_create->osd_oi_insert().
1096 if (conf && conf->loc_flags & LOC_F_NEW)
1097 GOTO(out, result = 0);
1099 /* Search order: 1. per-thread cache. */
1100 if (lu_fid_eq(fid, &oic->oic_fid) && likely(oic->oic_dev == dev)) {
1106 if (!list_empty(&scrub->os_inconsistent_items)) {
1107 /* Search order: 2. OI scrub pending list. */
1108 result = osd_oii_lookup(dev, fid, id);
1114 * The OI mapping in the OI file can be updated by the OI scrub
1115 * when we locate the inode via FID. So it may be not trustable.
1119 /* Search order: 3. OI files. */
1120 result = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
1121 if (result == -ENOENT) {
1122 if (!(fid_is_norm(fid) || fid_is_igif(fid)) ||
1123 fid_is_on_ost(info, dev, fid, OI_CHECK_FLD) ||
1124 !ldiskfs_test_bit(osd_oi_fid2idx(dev, fid),
1126 GOTO(out, result = 0);
1135 obj->oo_inode = NULL;
1136 /* for later passes through checks, not true on first pass */
1137 if (!IS_ERR_OR_NULL(inode))
1140 inode = osd_iget_check(info, dev, fid, id, trusted);
1141 if (!IS_ERR(inode)) {
1142 obj->oo_inode = inode;
1150 result = PTR_ERR(inode);
1151 if (result == -ENOENT || result == -ESTALE)
1152 GOTO(out, result = 0);
1154 if (result != -EREMCHG)
1159 * We still have chance to get the valid inode: for the
1160 * object which is referenced by remote name entry, the
1161 * object on the local MDT will be linked under the dir
1162 * of "/REMOTE_PARENT_DIR" with its FID string as name.
1164 * We do not know whether the object for the given FID
1165 * is referenced by some remote name entry or not, and
1166 * especially for DNE II, a multiple-linked object may
1167 * have many name entries reside on many MDTs.
1169 * To simplify the operation, OSD will not distinguish
1170 * more, just lookup "/REMOTE_PARENT_DIR". Usually, it
1171 * only happened for the RPC from other MDT during the
1172 * OI scrub, or for the client side RPC with FID only,
1173 * such as FID to path, or from old connected client.
1176 rc1 = osd_lookup_in_remote_parent(info, dev, fid, id);
1180 flags |= SS_AUTO_PARTIAL;
1181 flags &= ~SS_AUTO_FULL;
1186 if (thread_is_running(&scrub->os_thread)) {
1187 if (scrub->os_partial_scan && !scrub->os_in_join)
1190 if (IS_ERR_OR_NULL(inode) || result)
1191 GOTO(out, result = -EINPROGRESS);
1194 LASSERT(obj->oo_inode == inode);
1196 osd_add_oi_cache(info, dev, id, fid);
1197 osd_oii_insert(dev, oic, true);
1201 if (dev->od_auto_scrub_interval == AS_NEVER) {
1203 GOTO(out, result = -EREMCHG);
1206 LASSERT(obj->oo_inode == inode);
1208 osd_add_oi_cache(info, dev, id, fid);
1213 rc1 = osd_scrub_start(env, dev, flags);
1214 LCONSOLE_WARN("%s: trigger OI scrub by RPC for the " DFID" with flags "
1215 "0x%x, rc = %d\n", osd_name(dev), PFID(fid), flags, rc1);
1216 if (rc1 && rc1 != -EALREADY)
1217 GOTO(out, result = -EREMCHG);
1219 if (IS_ERR_OR_NULL(inode) || result)
1220 GOTO(out, result = -EINPROGRESS);
1223 LASSERT(obj->oo_inode == inode);
1225 osd_add_oi_cache(info, dev, id, fid);
1226 osd_oii_insert(dev, oic, true);
1231 if (unlikely(obj->oo_header))
1234 result = osd_check_lma(env, obj);
1238 LASSERTF(id->oii_ino == inode->i_ino &&
1239 id->oii_gen == inode->i_generation,
1240 "locate wrong inode for FID: "DFID", %u/%u => %ld/%u\n",
1241 PFID(fid), id->oii_ino, id->oii_gen,
1242 inode->i_ino, inode->i_generation);
1244 saved_ino = inode->i_ino;
1245 saved_gen = inode->i_generation;
1247 if (unlikely(result == -ENODATA)) {
1249 * If the OI scrub updated the OI mapping by race, it
1250 * must be valid. Trust the inode that has no LMA EA.
1255 result = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
1258 * The OI mapping is still there, the inode is still
1259 * valid. It is just becaues the inode has no LMA EA.
1261 if (saved_ino == id->oii_ino &&
1262 saved_gen == id->oii_gen)
1266 * It is the OI scrub updated the OI mapping by race.
1267 * The new OI mapping must be valid.
1275 * "result == -ENOENT" means that the OI mappinghas been
1276 * removed by race, so the inode belongs to other object.
1278 * Others error can be returned directly.
1280 if (result == -ENOENT) {
1283 obj->oo_inode = NULL;
1288 if (result != -EREMCHG)
1293 result = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
1295 * "result == -ENOENT" means the cached OI mapping has been removed
1296 * from the OI file by race, above inode belongs to other object.
1298 if (result == -ENOENT) {
1301 obj->oo_inode = NULL;
1302 GOTO(out, result = 0);
1308 if (saved_ino == id->oii_ino && saved_gen == id->oii_gen) {
1314 * It is the OI scrub updated the OI mapping by race.
1315 * The new OI mapping must be valid.
1323 struct lustre_ost_attrs *loa = &info->oti_ost_attrs;
1324 struct lustre_mdt_attrs *lma = &info->oti_ost_attrs.loa_lma;
1326 result = osd_get_lma(info, inode, &info->oti_obj_dentry, loa);
1328 if (lma->lma_compat & LMAC_STRIPE_INFO &&
1330 obj->oo_pfid_in_lma = 1;
1331 if (unlikely(lma->lma_incompat & LMAI_REMOTE_PARENT) &&
1333 lu_object_set_agent_entry(&obj->oo_dt.do_lu);
1334 } else if (result != -ENODATA) {
1339 obj->oo_compat_dot_created = 1;
1340 obj->oo_compat_dotdot_created = 1;
1342 if (S_ISDIR(inode->i_mode) &&
1343 (flags & SS_AUTO_PARTIAL || sf->sf_status == SS_SCANNING))
1344 osd_check_lmv(info, dev, inode, oic);
1346 result = osd_attach_jinode(inode);
1351 GOTO(out, result = 0);
1353 LASSERT(!obj->oo_hl_head);
1354 obj->oo_hl_head = ldiskfs_htree_lock_head_alloc(HTREE_HBITS_DEF);
1356 GOTO(out, result = (!obj->oo_hl_head ? -ENOMEM : 0));
1359 if (result || !obj->oo_inode) {
1360 if (!IS_ERR_OR_NULL(inode))
1363 obj->oo_inode = NULL;
1365 fid_zero(&oic->oic_fid);
1368 LINVRNT(osd_invariant(obj));
1373 * Concurrency: shouldn't matter.
1375 static void osd_object_init0(struct osd_object *obj)
1377 LASSERT(obj->oo_inode != NULL);
1378 obj->oo_dt.do_body_ops = &osd_body_ops;
1379 obj->oo_dt.do_lu.lo_header->loh_attr |=
1380 (LOHA_EXISTS | (obj->oo_inode->i_mode & S_IFMT));
1384 * Concurrency: no concurrent access is possible that early in object
1387 static int osd_object_init(const struct lu_env *env, struct lu_object *l,
1388 const struct lu_object_conf *conf)
1390 struct osd_object *obj = osd_obj(l);
1393 LINVRNT(osd_invariant(obj));
1395 if (fid_is_otable_it(&l->lo_header->loh_fid)) {
1396 obj->oo_dt.do_ops = &osd_obj_otable_it_ops;
1397 l->lo_header->loh_attr |= LOHA_EXISTS;
1401 result = osd_fid_lookup(env, obj, lu_object_fid(l), conf);
1402 obj->oo_dt.do_body_ops = &osd_body_ops_new;
1403 if (result == 0 && obj->oo_inode != NULL) {
1404 struct osd_thread_info *oti = osd_oti_get(env);
1405 struct lustre_ost_attrs *loa = &oti->oti_ost_attrs;
1407 osd_object_init0(obj);
1408 if (unlikely(obj->oo_header))
1411 result = osd_get_lma(oti, obj->oo_inode,
1412 &oti->oti_obj_dentry, loa);
1415 * Convert LMAI flags to lustre LMA flags
1416 * and cache it to oo_lma_flags
1419 lma_to_lustre_flags(loa->loa_lma.lma_incompat);
1420 } else if (result == -ENODATA) {
1425 LINVRNT(osd_invariant(obj));
1430 * The first part of oxe_buf is xattr name, and is '\0' terminated.
1431 * The left part is for value, binary mode.
1433 struct osd_xattr_entry {
1434 struct list_head oxe_list;
1438 struct rcu_head oxe_rcu;
1442 static int osd_oxc_get(struct osd_object *obj, const char *name,
1445 struct osd_xattr_entry *tmp;
1446 struct osd_xattr_entry *oxe = NULL;
1447 size_t namelen = strlen(name);
1453 list_for_each_entry_rcu(tmp, &obj->oo_xattr_list, oxe_list) {
1454 if (namelen == tmp->oxe_namelen &&
1455 strncmp(name, tmp->oxe_buf, namelen) == 0) {
1462 GOTO(out, rc = -ENOENT);
1464 if (!oxe->oxe_exist)
1465 GOTO(out, rc = -ENODATA);
1468 rc = oxe->oxe_len - sizeof(*oxe) - oxe->oxe_namelen - 1;
1471 if (buf->lb_buf == NULL)
1474 if (buf->lb_len < rc)
1475 GOTO(out, rc = -ERANGE);
1477 memcpy(buf->lb_buf, &oxe->oxe_buf[namelen + 1], rc);
1485 static void osd_oxc_free(struct rcu_head *head)
1487 struct osd_xattr_entry *oxe;
1489 oxe = container_of(head, struct osd_xattr_entry, oxe_rcu);
1490 OBD_FREE(oxe, oxe->oxe_len);
1493 static void osd_oxc_add(struct osd_object *obj, const char *name,
1494 const char *buf, int buflen)
1496 struct osd_xattr_entry *oxe;
1497 struct osd_xattr_entry *old = NULL;
1498 struct osd_xattr_entry *tmp;
1499 size_t namelen = strlen(name);
1500 size_t len = sizeof(*oxe) + namelen + 1 + buflen;
1502 OBD_ALLOC(oxe, len);
1506 INIT_LIST_HEAD(&oxe->oxe_list);
1508 oxe->oxe_namelen = namelen;
1509 memcpy(oxe->oxe_buf, name, namelen);
1511 LASSERT(buf != NULL);
1512 memcpy(oxe->oxe_buf + namelen + 1, buf, buflen);
1513 oxe->oxe_exist = true;
1515 oxe->oxe_exist = false;
1518 /* this should be rarely called, just remove old and add new */
1519 spin_lock(&obj->oo_guard);
1520 list_for_each_entry(tmp, &obj->oo_xattr_list, oxe_list) {
1521 if (namelen == tmp->oxe_namelen &&
1522 strncmp(name, tmp->oxe_buf, namelen) == 0) {
1528 list_replace_rcu(&old->oxe_list, &oxe->oxe_list);
1529 call_rcu(&old->oxe_rcu, osd_oxc_free);
1531 list_add_tail_rcu(&oxe->oxe_list, &obj->oo_xattr_list);
1533 spin_unlock(&obj->oo_guard);
1536 static void osd_oxc_del(struct osd_object *obj, const char *name)
1538 struct osd_xattr_entry *oxe;
1539 size_t namelen = strlen(name);
1541 spin_lock(&obj->oo_guard);
1542 list_for_each_entry(oxe, &obj->oo_xattr_list, oxe_list) {
1543 if (namelen == oxe->oxe_namelen &&
1544 strncmp(name, oxe->oxe_buf, namelen) == 0) {
1545 list_del_rcu(&oxe->oxe_list);
1546 call_rcu(&oxe->oxe_rcu, osd_oxc_free);
1550 spin_unlock(&obj->oo_guard);
1553 static void osd_oxc_fini(struct osd_object *obj)
1555 struct osd_xattr_entry *oxe, *next;
1557 list_for_each_entry_safe(oxe, next, &obj->oo_xattr_list, oxe_list) {
1558 list_del(&oxe->oxe_list);
1559 OBD_FREE(oxe, oxe->oxe_len);
1564 * Concurrency: no concurrent access is possible that late in object
1567 static void osd_object_free(const struct lu_env *env, struct lu_object *l)
1569 struct osd_object *obj = osd_obj(l);
1570 struct lu_object_header *h = obj->oo_header;
1572 LINVRNT(osd_invariant(obj));
1575 dt_object_fini(&obj->oo_dt);
1576 if (obj->oo_hl_head != NULL)
1577 ldiskfs_htree_lock_head_free(obj->oo_hl_head);
1580 lu_object_header_fini(h);
1586 * Concurrency: no concurrent access is possible that late in object
1589 static void osd_index_fini(struct osd_object *o)
1591 struct iam_container *bag;
1593 if (o->oo_dir != NULL) {
1594 bag = &o->oo_dir->od_container;
1595 if (o->oo_inode != NULL) {
1596 if (bag->ic_object == o->oo_inode)
1597 iam_container_fini(bag);
1599 OBD_FREE_PTR(o->oo_dir);
1605 * Concurrency: no concurrent access is possible that late in object
1606 * life-cycle (for all existing callers, that is. New callers have to provide
1607 * their own locking.)
1609 static int osd_inode_unlinked(const struct inode *inode)
1611 return inode->i_nlink == 0;
1615 OSD_TXN_OI_DELETE_CREDITS = 20,
1616 OSD_TXN_INODE_DELETE_CREDITS = 20
1623 #if OSD_THANDLE_STATS
1625 * Set time when the handle is allocated
1627 static void osd_th_alloced(struct osd_thandle *oth)
1629 oth->oth_alloced = ktime_get();
1633 * Set time when the handle started
1635 static void osd_th_started(struct osd_thandle *oth)
1637 oth->oth_started = ktime_get();
1641 * Check whether the we deal with this handle for too long.
1643 static void __osd_th_check_slow(void *oth, struct osd_device *dev,
1644 ktime_t alloced, ktime_t started,
1647 ktime_t now = ktime_get();
1649 LASSERT(dev != NULL);
1651 lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_STARTING,
1652 ktime_us_delta(started, alloced));
1653 lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_OPEN,
1654 ktime_us_delta(closed, started));
1655 lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_CLOSING,
1656 ktime_us_delta(now, closed));
1658 if (ktime_before(ktime_add_ns(alloced, 30 * NSEC_PER_SEC), now)) {
1659 CWARN("transaction handle %p was open for too long: now %lld, alloced %lld, started %lld, closed %lld\n",
1660 oth, now, alloced, started, closed);
1661 libcfs_debug_dumpstack(NULL);
1665 #define OSD_CHECK_SLOW_TH(oth, dev, expr) \
1667 ktime_t __closed = ktime_get(); \
1668 ktime_t __alloced = oth->oth_alloced; \
1669 ktime_t __started = oth->oth_started; \
1672 __osd_th_check_slow(oth, dev, __alloced, __started, __closed); \
1675 #else /* OSD_THANDLE_STATS */
1677 #define osd_th_alloced(h) do {} while(0)
1678 #define osd_th_started(h) do {} while(0)
1679 #define OSD_CHECK_SLOW_TH(oth, dev, expr) expr
1681 #endif /* OSD_THANDLE_STATS */
1684 * Concurrency: doesn't access mutable data.
1686 static int osd_param_is_not_sane(const struct osd_device *dev,
1687 const struct thandle *th)
1689 struct osd_thandle *oh = container_of(th, typeof(*oh), ot_super);
1691 return oh->ot_credits > osd_transaction_size(dev);
1695 * Concurrency: shouldn't matter.
1697 static void osd_trans_commit_cb(struct super_block *sb,
1698 struct ldiskfs_journal_cb_entry *jcb, int error)
1700 struct osd_thandle *oh = container_of0(jcb, struct osd_thandle, ot_jcb);
1701 struct thandle *th = &oh->ot_super;
1702 struct lu_device *lud = &th->th_dev->dd_lu_dev;
1703 struct dt_txn_commit_cb *dcb, *tmp;
1705 LASSERT(oh->ot_handle == NULL);
1708 CERROR("transaction @0x%p commit error: %d\n", th, error);
1710 OBD_FAIL_TIMEOUT(OBD_FAIL_OST_DELAY_TRANS, 40);
1711 /* call per-transaction callbacks if any */
1712 list_for_each_entry_safe(dcb, tmp, &oh->ot_commit_dcb_list,
1714 LASSERTF(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC,
1715 "commit callback entry: magic=%x name='%s'\n",
1716 dcb->dcb_magic, dcb->dcb_name);
1717 list_del_init(&dcb->dcb_linkage);
1718 dcb->dcb_func(NULL, th, dcb, error);
1721 lu_ref_del_at(&lud->ld_reference, &oh->ot_dev_link, "osd-tx", th);
1728 #ifndef HAVE_SB_START_WRITE
1729 # define sb_start_write(sb) do {} while (0)
1730 # define sb_end_write(sb) do {} while (0)
1733 static struct thandle *osd_trans_create(const struct lu_env *env,
1734 struct dt_device *d)
1736 struct osd_thread_info *oti = osd_oti_get(env);
1737 struct osd_iobuf *iobuf = &oti->oti_iobuf;
1738 struct osd_thandle *oh;
1744 CERROR("%s: someone try to start transaction under "
1745 "readonly mode, should be disabled.\n",
1746 osd_name(osd_dt_dev(d)));
1748 RETURN(ERR_PTR(-EROFS));
1751 /* on pending IO in this thread should left from prev. request */
1752 LASSERT(atomic_read(&iobuf->dr_numreqs) == 0);
1754 sb_start_write(osd_sb(osd_dt_dev(d)));
1756 OBD_ALLOC_GFP(oh, sizeof(*oh), GFP_NOFS);
1758 sb_end_write(osd_sb(osd_dt_dev(d)));
1759 RETURN(ERR_PTR(-ENOMEM));
1762 oh->ot_quota_trans = &oti->oti_quota_trans;
1763 memset(oh->ot_quota_trans, 0, sizeof(*oh->ot_quota_trans));
1768 INIT_LIST_HEAD(&oh->ot_commit_dcb_list);
1769 INIT_LIST_HEAD(&oh->ot_stop_dcb_list);
1770 INIT_LIST_HEAD(&oh->ot_trunc_locks);
1773 memset(oti->oti_declare_ops, 0,
1774 sizeof(oti->oti_declare_ops));
1775 memset(oti->oti_declare_ops_cred, 0,
1776 sizeof(oti->oti_declare_ops_cred));
1777 memset(oti->oti_declare_ops_used, 0,
1778 sizeof(oti->oti_declare_ops_used));
1780 oti->oti_ins_cache_depth++;
1785 void osd_trans_dump_creds(const struct lu_env *env, struct thandle *th)
1787 struct osd_thread_info *oti = osd_oti_get(env);
1788 struct osd_thandle *oh;
1790 oh = container_of0(th, struct osd_thandle, ot_super);
1791 LASSERT(oh != NULL);
1793 CWARN(" create: %u/%u/%u, destroy: %u/%u/%u\n",
1794 oti->oti_declare_ops[OSD_OT_CREATE],
1795 oti->oti_declare_ops_cred[OSD_OT_CREATE],
1796 oti->oti_declare_ops_used[OSD_OT_CREATE],
1797 oti->oti_declare_ops[OSD_OT_DESTROY],
1798 oti->oti_declare_ops_cred[OSD_OT_DESTROY],
1799 oti->oti_declare_ops_used[OSD_OT_DESTROY]);
1800 CWARN(" attr_set: %u/%u/%u, xattr_set: %u/%u/%u\n",
1801 oti->oti_declare_ops[OSD_OT_ATTR_SET],
1802 oti->oti_declare_ops_cred[OSD_OT_ATTR_SET],
1803 oti->oti_declare_ops_used[OSD_OT_ATTR_SET],
1804 oti->oti_declare_ops[OSD_OT_XATTR_SET],
1805 oti->oti_declare_ops_cred[OSD_OT_XATTR_SET],
1806 oti->oti_declare_ops_used[OSD_OT_XATTR_SET]);
1807 CWARN(" write: %u/%u/%u, punch: %u/%u/%u, quota %u/%u/%u\n",
1808 oti->oti_declare_ops[OSD_OT_WRITE],
1809 oti->oti_declare_ops_cred[OSD_OT_WRITE],
1810 oti->oti_declare_ops_used[OSD_OT_WRITE],
1811 oti->oti_declare_ops[OSD_OT_PUNCH],
1812 oti->oti_declare_ops_cred[OSD_OT_PUNCH],
1813 oti->oti_declare_ops_used[OSD_OT_PUNCH],
1814 oti->oti_declare_ops[OSD_OT_QUOTA],
1815 oti->oti_declare_ops_cred[OSD_OT_QUOTA],
1816 oti->oti_declare_ops_used[OSD_OT_QUOTA]);
1817 CWARN(" insert: %u/%u/%u, delete: %u/%u/%u\n",
1818 oti->oti_declare_ops[OSD_OT_INSERT],
1819 oti->oti_declare_ops_cred[OSD_OT_INSERT],
1820 oti->oti_declare_ops_used[OSD_OT_INSERT],
1821 oti->oti_declare_ops[OSD_OT_DELETE],
1822 oti->oti_declare_ops_cred[OSD_OT_DELETE],
1823 oti->oti_declare_ops_used[OSD_OT_DELETE]);
1824 CWARN(" ref_add: %u/%u/%u, ref_del: %u/%u/%u\n",
1825 oti->oti_declare_ops[OSD_OT_REF_ADD],
1826 oti->oti_declare_ops_cred[OSD_OT_REF_ADD],
1827 oti->oti_declare_ops_used[OSD_OT_REF_ADD],
1828 oti->oti_declare_ops[OSD_OT_REF_DEL],
1829 oti->oti_declare_ops_cred[OSD_OT_REF_DEL],
1830 oti->oti_declare_ops_used[OSD_OT_REF_DEL]);
1834 * Concurrency: shouldn't matter.
1836 static int osd_trans_start(const struct lu_env *env, struct dt_device *d,
1839 struct osd_thread_info *oti = osd_oti_get(env);
1840 struct osd_device *dev = osd_dt_dev(d);
1842 struct osd_thandle *oh;
1847 LASSERT(current->journal_info == NULL);
1849 oh = container_of0(th, struct osd_thandle, ot_super);
1850 LASSERT(oh != NULL);
1851 LASSERT(oh->ot_handle == NULL);
1853 rc = dt_txn_hook_start(env, d, th);
1857 if (unlikely(osd_param_is_not_sane(dev, th))) {
1858 static unsigned long last_printed;
1859 static int last_credits;
1862 * don't make noise on a tiny testing systems
1863 * actual credits misuse will be caught anyway
1865 if (last_credits != oh->ot_credits &&
1866 time_after(jiffies, last_printed +
1867 msecs_to_jiffies(60 * MSEC_PER_SEC)) &&
1868 osd_transaction_size(dev) > 512) {
1869 CWARN("%s: credits %u > trans_max %u\n", osd_name(dev),
1870 oh->ot_credits, osd_transaction_size(dev));
1871 osd_trans_dump_creds(env, th);
1872 libcfs_debug_dumpstack(NULL);
1873 last_credits = oh->ot_credits;
1874 last_printed = jiffies;
1877 * XXX Limit the credits to 'max_transaction_buffers', and
1878 * let the underlying filesystem to catch the error if
1879 * we really need so many credits.
1881 * This should be removed when we can calculate the
1882 * credits precisely.
1884 oh->ot_credits = osd_transaction_size(dev);
1885 } else if (ldiskfs_track_declares_assert != 0) {
1887 * reserve few credits to prevent an assertion in JBD
1888 * our debugging mechanism will be able to detected
1889 * overuse. this can help to debug single-update
1892 oh->ot_credits += 10;
1893 if (unlikely(osd_param_is_not_sane(dev, th)))
1894 oh->ot_credits = osd_transaction_size(dev);
1897 if (OBD_FAIL_CHECK(OBD_FAIL_OSD_TXN_START))
1898 GOTO(out, rc = -EIO);
1901 * XXX temporary stuff. Some abstraction layer should
1904 jh = osd_journal_start_sb(osd_sb(dev), LDISKFS_HT_MISC, oh->ot_credits);
1908 LASSERT(oti->oti_txns == 0);
1910 lu_device_get(&d->dd_lu_dev);
1911 lu_ref_add_at(&d->dd_lu_dev.ld_reference, &oh->ot_dev_link,
1922 static int osd_seq_exists(const struct lu_env *env,
1923 struct osd_device *osd, u64 seq)
1925 struct lu_seq_range *range = &osd_oti_get(env)->oti_seq_range;
1926 struct seq_server_site *ss = osd_seq_site(osd);
1931 LASSERT(ss != NULL);
1932 LASSERT(ss->ss_server_fld != NULL);
1934 rc = osd_fld_lookup(env, osd, seq, range);
1937 CERROR("%s: can't lookup FLD sequence %#llx: rc = %d\n",
1938 osd_name(osd), seq, rc);
1942 RETURN(ss->ss_node_id == range->lsr_index);
1945 static void osd_trans_stop_cb(struct osd_thandle *oth, int result)
1947 struct dt_txn_commit_cb *dcb;
1948 struct dt_txn_commit_cb *tmp;
1950 /* call per-transaction stop callbacks if any */
1951 list_for_each_entry_safe(dcb, tmp, &oth->ot_stop_dcb_list,
1953 LASSERTF(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC,
1954 "commit callback entry: magic=%x name='%s'\n",
1955 dcb->dcb_magic, dcb->dcb_name);
1956 list_del_init(&dcb->dcb_linkage);
1957 dcb->dcb_func(NULL, &oth->ot_super, dcb, result);
1962 * Concurrency: shouldn't matter.
1964 static int osd_trans_stop(const struct lu_env *env, struct dt_device *dt,
1967 struct osd_thread_info *oti = osd_oti_get(env);
1968 struct osd_thandle *oh;
1969 struct osd_iobuf *iobuf = &oti->oti_iobuf;
1970 struct osd_device *osd = osd_dt_dev(th->th_dev);
1971 struct qsd_instance *qsd = osd_def_qsd(osd);
1972 struct lquota_trans *qtrans;
1973 struct list_head truncates = LIST_HEAD_INIT(truncates);
1974 int rc = 0, remove_agents = 0;
1978 oh = container_of0(th, struct osd_thandle, ot_super);
1980 remove_agents = oh->ot_remove_agents;
1982 qtrans = oh->ot_quota_trans;
1983 oh->ot_quota_trans = NULL;
1985 /* move locks to local list, stop tx, execute truncates */
1986 list_splice(&oh->ot_trunc_locks, &truncates);
1988 if (oh->ot_handle != NULL) {
1991 handle_t *hdl = oh->ot_handle;
1994 * add commit callback
1995 * notice we don't do this in osd_trans_start()
1996 * as underlying transaction can change during truncate
1998 ldiskfs_journal_callback_add(hdl, osd_trans_commit_cb,
2001 LASSERT(oti->oti_txns == 1);
2004 rc = dt_txn_hook_stop(env, th);
2006 CERROR("%s: failed in transaction hook: rc = %d\n",
2009 osd_trans_stop_cb(oh, rc);
2010 /* hook functions might modify th_sync */
2011 hdl->h_sync = th->th_sync;
2013 oh->ot_handle = NULL;
2014 OSD_CHECK_SLOW_TH(oh, osd, rc2 = ldiskfs_journal_stop(hdl));
2016 CERROR("%s: failed to stop transaction: rc = %d\n",
2017 osd_name(osd), rc2);
2021 osd_process_truncates(&truncates);
2023 osd_trans_stop_cb(oh, th->th_result);
2027 osd_trunc_unlock_all(&truncates);
2029 /* inform the quota slave device that the transaction is stopping */
2030 qsd_op_end(env, qsd, qtrans);
2033 * as we want IO to journal and data IO be concurrent, we don't block
2034 * awaiting data IO completion in osd_do_bio(), instead we wait here
2035 * once transaction is submitted to the journal. all reqular requests
2036 * don't do direct IO (except read/write), thus this wait_event becomes
2039 * IMPORTANT: we have to wait till any IO submited by the thread is
2040 * completed otherwise iobuf may be corrupted by different request
2042 wait_event(iobuf->dr_wait,
2043 atomic_read(&iobuf->dr_numreqs) == 0);
2044 osd_fini_iobuf(osd, iobuf);
2046 rc = iobuf->dr_error;
2048 if (unlikely(remove_agents != 0))
2049 osd_process_scheduled_agent_removals(env, osd);
2051 oti->oti_ins_cache_depth--;
2052 /* reset OI cache for safety */
2053 if (oti->oti_ins_cache_depth == 0)
2054 oti->oti_ins_cache_used = 0;
2056 sb_end_write(osd_sb(osd));
2061 static int osd_trans_cb_add(struct thandle *th, struct dt_txn_commit_cb *dcb)
2063 struct osd_thandle *oh = container_of0(th, struct osd_thandle,
2066 LASSERT(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC);
2067 LASSERT(&dcb->dcb_func != NULL);
2068 if (dcb->dcb_flags & DCB_TRANS_STOP)
2069 list_add(&dcb->dcb_linkage, &oh->ot_stop_dcb_list);
2071 list_add(&dcb->dcb_linkage, &oh->ot_commit_dcb_list);
2077 * Called just before object is freed. Releases all resources except for
2078 * object itself (that is released by osd_object_free()).
2080 * Concurrency: no concurrent access is possible that late in object
2083 static void osd_object_delete(const struct lu_env *env, struct lu_object *l)
2085 struct osd_object *obj = osd_obj(l);
2086 struct qsd_instance *qsd = osd_def_qsd(osd_obj2dev(obj));
2087 struct inode *inode = obj->oo_inode;
2092 LINVRNT(osd_invariant(obj));
2095 * If object is unlinked remove fid->ino mapping from object index.
2098 osd_index_fini(obj);
2103 uid = i_uid_read(inode);
2104 gid = i_gid_read(inode);
2105 projid = i_projid_read(inode);
2107 obj->oo_inode = NULL;
2110 /* do not rebalance quota if the caller needs to release memory
2111 * otherwise qsd_refresh_usage() may went into a new ldiskfs
2112 * transaction and risk to deadlock - LU-12178 */
2113 if (current->flags & (PF_MEMALLOC | PF_KSWAPD))
2116 if (!obj->oo_header && qsd) {
2117 struct osd_thread_info *info = osd_oti_get(env);
2118 struct lquota_id_info *qi = &info->oti_qi;
2120 /* Release granted quota to master if necessary */
2121 qi->lqi_id.qid_uid = uid;
2122 qsd_op_adjust(env, qsd, &qi->lqi_id, USRQUOTA);
2124 qi->lqi_id.qid_uid = gid;
2125 qsd_op_adjust(env, qsd, &qi->lqi_id, GRPQUOTA);
2127 qi->lqi_id.qid_uid = projid;
2128 qsd_op_adjust(env, qsd, &qi->lqi_id, PRJQUOTA);
2133 * Concurrency: ->loo_object_release() is called under site spin-lock.
2135 static void osd_object_release(const struct lu_env *env,
2136 struct lu_object *l)
2138 struct osd_object *o = osd_obj(l);
2141 * nobody should be releasing a non-destroyed object with nlink=0
2142 * the API allows this, but ldiskfs doesn't like and then report
2143 * this inode as deleted
2145 LASSERT(!(o->oo_destroyed == 0 && o->oo_inode &&
2146 o->oo_inode->i_nlink == 0));
2150 * Concurrency: shouldn't matter.
2152 static int osd_object_print(const struct lu_env *env, void *cookie,
2153 lu_printer_t p, const struct lu_object *l)
2155 struct osd_object *o = osd_obj(l);
2156 struct iam_descr *d;
2158 if (o->oo_dir != NULL)
2159 d = o->oo_dir->od_container.ic_descr;
2162 return (*p)(env, cookie,
2163 LUSTRE_OSD_LDISKFS_NAME"-object@%p(i:%p:%lu/%u)[%s]",
2165 o->oo_inode ? o->oo_inode->i_ino : 0UL,
2166 o->oo_inode ? o->oo_inode->i_generation : 0,
2167 d ? d->id_ops->id_name : "plain");
2171 * Concurrency: shouldn't matter.
2173 int osd_statfs(const struct lu_env *env, struct dt_device *d,
2174 struct obd_statfs *sfs)
2176 struct osd_device *osd = osd_dt_dev(d);
2177 struct super_block *sb = osd_sb(osd);
2178 struct kstatfs *ksfs;
2182 if (unlikely(osd->od_mnt == NULL))
2183 return -EINPROGRESS;
2185 /* osd_lproc.c call this without env, allocate ksfs for that case */
2186 if (unlikely(env == NULL)) {
2187 OBD_ALLOC_PTR(ksfs);
2191 ksfs = &osd_oti_get(env)->oti_ksfs;
2194 result = sb->s_op->statfs(sb->s_root, ksfs);
2198 statfs_pack(sfs, ksfs);
2199 if (unlikely(sb->s_flags & MS_RDONLY))
2200 sfs->os_state |= OS_STATE_READONLY;
2201 if (ldiskfs_has_feature_extents(sb))
2202 sfs->os_maxbytes = sb->s_maxbytes;
2204 sfs->os_maxbytes = LDISKFS_SB(sb)->s_bitmap_maxbytes;
2207 * Reserve some space so to avoid fragmenting the filesystem too much.
2208 * Fragmentation not only impacts performance, but can also increase
2209 * metadata overhead significantly, causing grant calculation to be
2212 * Reserve 0.78% of total space, at least 8MB for small filesystems.
2214 CLASSERT(OSD_STATFS_RESERVED > LDISKFS_MAX_BLOCK_SIZE);
2215 reserved = OSD_STATFS_RESERVED >> sb->s_blocksize_bits;
2216 if (likely(sfs->os_blocks >= reserved << OSD_STATFS_RESERVED_SHIFT))
2217 reserved = sfs->os_blocks >> OSD_STATFS_RESERVED_SHIFT;
2219 sfs->os_blocks -= reserved;
2220 sfs->os_bfree -= min(reserved, sfs->os_bfree);
2221 sfs->os_bavail -= min(reserved, sfs->os_bavail);
2224 if (unlikely(env == NULL))
2230 * Estimate space needed for file creations. We assume the largest filename
2231 * which is 2^64 - 1, hence a filename of 20 chars.
2232 * This is 28 bytes per object which is 28MB for 1M objects ... no so bad.
2234 #ifdef __LDISKFS_DIR_REC_LEN
2235 #define PER_OBJ_USAGE __LDISKFS_DIR_REC_LEN(20)
2237 #define PER_OBJ_USAGE LDISKFS_DIR_REC_LEN(20)
2241 * Concurrency: doesn't access mutable data.
2243 static void osd_conf_get(const struct lu_env *env,
2244 const struct dt_device *dev,
2245 struct dt_device_param *param)
2247 struct osd_device *d = osd_dt_dev(dev);
2248 struct super_block *sb = osd_sb(d);
2249 struct blk_integrity *bi = bdev_get_integrity(sb->s_bdev);
2254 * XXX should be taken from not-yet-existing fs abstraction layer.
2256 param->ddp_max_name_len = LDISKFS_NAME_LEN;
2257 param->ddp_max_nlink = LDISKFS_LINK_MAX;
2258 param->ddp_symlink_max = sb->s_blocksize;
2259 param->ddp_mount_type = LDD_MT_LDISKFS;
2260 if (ldiskfs_has_feature_extents(sb))
2261 param->ddp_maxbytes = sb->s_maxbytes;
2263 param->ddp_maxbytes = LDISKFS_SB(sb)->s_bitmap_maxbytes;
2265 * inode are statically allocated, so per-inode space consumption
2266 * is the space consumed by the directory entry
2268 param->ddp_inodespace = PER_OBJ_USAGE;
2270 * EXT_INIT_MAX_LEN is the theoretical maximum extent size (32k blocks
2271 * = 128MB) which is unlikely to be hit in real life. Report a smaller
2272 * maximum length to not under count the actual number of extents
2273 * needed for writing a file.
2275 param->ddp_max_extent_blks = EXT_INIT_MAX_LEN >> 2;
2276 /* worst-case extent insertion metadata overhead */
2277 param->ddp_extent_tax = 6 * LDISKFS_BLOCK_SIZE(sb);
2278 param->ddp_mntopts = 0;
2279 if (test_opt(sb, XATTR_USER))
2280 param->ddp_mntopts |= MNTOPT_USERXATTR;
2281 if (test_opt(sb, POSIX_ACL))
2282 param->ddp_mntopts |= MNTOPT_ACL;
2285 * LOD might calculate the max stripe count based on max_ea_size,
2286 * so we need take account in the overhead as well,
2287 * xattr_header + magic + xattr_entry_head
2289 ea_overhead = sizeof(struct ldiskfs_xattr_header) + sizeof(__u32) +
2290 LDISKFS_XATTR_LEN(XATTR_NAME_MAX_LEN);
2292 #if defined(LDISKFS_FEATURE_INCOMPAT_EA_INODE)
2293 if (ldiskfs_has_feature_ea_inode(sb))
2294 param->ddp_max_ea_size = LDISKFS_XATTR_MAX_LARGE_EA_SIZE -
2298 param->ddp_max_ea_size = sb->s_blocksize - ea_overhead;
2300 if (param->ddp_max_ea_size > OSD_MAX_EA_SIZE)
2301 param->ddp_max_ea_size = OSD_MAX_EA_SIZE;
2304 * Preferred RPC size for efficient disk IO. 4MB shows good
2305 * all-around performance for ldiskfs, but use bigalloc chunk size
2306 * by default if larger.
2308 #if defined(LDISKFS_CLUSTER_SIZE)
2309 if (LDISKFS_CLUSTER_SIZE(sb) > DT_DEF_BRW_SIZE)
2310 param->ddp_brw_size = LDISKFS_CLUSTER_SIZE(sb);
2313 param->ddp_brw_size = DT_DEF_BRW_SIZE;
2315 param->ddp_t10_cksum_type = 0;
2317 unsigned short interval = blk_integrity_interval(bi);
2318 name = blk_integrity_name(bi);
2326 if (strncmp(name, "T10-DIF-TYPE",
2327 sizeof("T10-DIF-TYPE") - 1) == 0) {
2328 /* also skip "1/3-" at end */
2329 const int type_off = sizeof("T10-DIF-TYPE.");
2330 char type_number = name[type_off - 2];
2332 if (interval != 512 && interval != 4096) {
2333 CERROR("%s: unsupported T10PI sector size %u\n",
2334 d->od_svname, interval);
2335 } else if (type_number != '1' && type_number != '3') {
2336 CERROR("%s: unsupported T10PI type %s\n",
2337 d->od_svname, name);
2338 } else if (strcmp(name + type_off, "CRC") == 0) {
2339 d->od_t10_type = type_number == '1' ?
2340 OSD_T10_TYPE1_CRC : OSD_T10_TYPE3_CRC;
2341 param->ddp_t10_cksum_type = interval == 512 ?
2342 OBD_CKSUM_T10CRC512 :
2344 } else if (strcmp(name + type_off, "IP") == 0) {
2345 d->od_t10_type = type_number == '1' ?
2346 OSD_T10_TYPE1_IP : OSD_T10_TYPE3_IP;
2347 param->ddp_t10_cksum_type = interval == 512 ?
2348 OBD_CKSUM_T10IP512 :
2351 CERROR("%s: unsupported checksum type of "
2353 d->od_svname, name);
2357 CERROR("%s: unsupported T10PI type '%s'",
2358 d->od_svname, name);
2364 * Concurrency: shouldn't matter.
2366 static int osd_sync(const struct lu_env *env, struct dt_device *d)
2369 struct super_block *s = osd_sb(osd_dt_dev(d));
2372 down_read(&s->s_umount);
2373 rc = s->s_op->sync_fs(s, 1);
2374 up_read(&s->s_umount);
2376 CDEBUG(D_CACHE, "%s: synced OSD: rc = %d\n", osd_dt_dev(d)->od_svname,
2383 * Start commit for OSD device.
2385 * An implementation of dt_commit_async method for OSD device.
2386 * Asychronously starts underlayng fs sync and thereby a transaction
2389 * \param env environment
2390 * \param d dt device
2392 * \see dt_device_operations
2394 static int osd_commit_async(const struct lu_env *env,
2395 struct dt_device *d)
2397 struct super_block *s = osd_sb(osd_dt_dev(d));
2402 CDEBUG(D_HA, "%s: async commit OSD\n", osd_dt_dev(d)->od_svname);
2403 down_read(&s->s_umount);
2404 rc = s->s_op->sync_fs(s, 0);
2405 up_read(&s->s_umount);
2410 /* Our own copy of the set readonly functions if present, or NU if not. */
2411 static int (*priv_dev_set_rdonly)(struct block_device *bdev);
2412 static int (*priv_dev_check_rdonly)(struct block_device *bdev);
2413 /* static int (*priv_dev_clear_rdonly)(struct block_device *bdev); */
2416 * Concurrency: shouldn't matter.
2418 static int osd_ro(const struct lu_env *env, struct dt_device *d)
2420 struct super_block *sb = osd_sb(osd_dt_dev(d));
2421 struct block_device *dev = sb->s_bdev;
2422 int rc = -EOPNOTSUPP;
2426 if (priv_dev_set_rdonly) {
2427 struct block_device *jdev = LDISKFS_SB(sb)->journal_bdev;
2430 CERROR("*** setting %s read-only ***\n",
2431 osd_dt_dev(d)->od_svname);
2433 if (sb->s_op->freeze_fs) {
2434 rc = sb->s_op->freeze_fs(sb);
2439 if (jdev && (jdev != dev)) {
2440 CDEBUG(D_IOCTL | D_HA, "set journal dev %lx rdonly\n",
2442 priv_dev_set_rdonly(jdev);
2444 CDEBUG(D_IOCTL | D_HA, "set dev %lx rdonly\n", (long)dev);
2445 priv_dev_set_rdonly(dev);
2447 if (sb->s_op->unfreeze_fs)
2448 sb->s_op->unfreeze_fs(sb);
2453 CERROR("%s: %lx CANNOT BE SET READONLY: rc = %d\n",
2454 osd_dt_dev(d)->od_svname, (long)dev, rc);
2460 * Note: we do not count into QUOTA here.
2461 * If we mount with --data_journal we may need more.
2463 const int osd_dto_credits_noquota[DTO_NR] = {
2466 * INDEX_EXTRA_TRANS_BLOCKS(8) +
2467 * SINGLEDATA_TRANS_BLOCKS(8)
2468 * XXX Note: maybe iam need more, since iam have more level than
2471 [DTO_INDEX_INSERT] = 16,
2474 * just modify a single entry, probably merge few within a block
2476 [DTO_INDEX_DELETE] = 1,
2480 [DTO_INDEX_UPDATE] = 16,
2482 * 4(inode, inode bits, groups, GDT)
2483 * notice: OI updates are counted separately with DTO_INDEX_INSERT
2485 [DTO_OBJECT_CREATE] = 4,
2487 * 4(inode, inode bits, groups, GDT)
2488 * notice: OI updates are counted separately with DTO_INDEX_DELETE
2490 [DTO_OBJECT_DELETE] = 4,
2492 * Attr set credits (inode)
2494 [DTO_ATTR_SET_BASE] = 1,
2496 * Xattr set. The same as xattr of EXT3.
2497 * DATA_TRANS_BLOCKS(14)
2498 * XXX Note: in original MDS implmentation INDEX_EXTRA_TRANS_BLOCKS
2499 * are also counted in. Do not know why?
2501 [DTO_XATTR_SET] = 14,
2503 * credits for inode change during write.
2505 [DTO_WRITE_BASE] = 3,
2507 * credits for single block write.
2509 [DTO_WRITE_BLOCK] = 14,
2511 * Attr set credits for chown.
2512 * This is extra credits for setattr, and it is null without quota
2514 [DTO_ATTR_SET_CHOWN] = 0
2517 static const struct dt_device_operations osd_dt_ops = {
2518 .dt_root_get = osd_root_get,
2519 .dt_statfs = osd_statfs,
2520 .dt_trans_create = osd_trans_create,
2521 .dt_trans_start = osd_trans_start,
2522 .dt_trans_stop = osd_trans_stop,
2523 .dt_trans_cb_add = osd_trans_cb_add,
2524 .dt_conf_get = osd_conf_get,
2525 .dt_sync = osd_sync,
2527 .dt_commit_async = osd_commit_async,
2530 static void osd_read_lock(const struct lu_env *env, struct dt_object *dt,
2533 struct osd_object *obj = osd_dt_obj(dt);
2534 struct osd_thread_info *oti = osd_oti_get(env);
2536 LINVRNT(osd_invariant(obj));
2538 LASSERT(obj->oo_owner != env);
2539 down_read_nested(&obj->oo_sem, role);
2541 LASSERT(obj->oo_owner == NULL);
2545 static void osd_write_lock(const struct lu_env *env, struct dt_object *dt,
2548 struct osd_object *obj = osd_dt_obj(dt);
2549 struct osd_thread_info *oti = osd_oti_get(env);
2551 LINVRNT(osd_invariant(obj));
2553 LASSERT(obj->oo_owner != env);
2554 down_write_nested(&obj->oo_sem, role);
2556 LASSERT(obj->oo_owner == NULL);
2557 obj->oo_owner = env;
2561 static void osd_read_unlock(const struct lu_env *env, struct dt_object *dt)
2563 struct osd_object *obj = osd_dt_obj(dt);
2564 struct osd_thread_info *oti = osd_oti_get(env);
2566 LINVRNT(osd_invariant(obj));
2568 LASSERT(oti->oti_r_locks > 0);
2570 up_read(&obj->oo_sem);
2573 static void osd_write_unlock(const struct lu_env *env, struct dt_object *dt)
2575 struct osd_object *obj = osd_dt_obj(dt);
2576 struct osd_thread_info *oti = osd_oti_get(env);
2578 LINVRNT(osd_invariant(obj));
2580 LASSERT(obj->oo_owner == env);
2581 LASSERT(oti->oti_w_locks > 0);
2583 obj->oo_owner = NULL;
2584 up_write(&obj->oo_sem);
2587 static int osd_write_locked(const struct lu_env *env, struct dt_object *dt)
2589 struct osd_object *obj = osd_dt_obj(dt);
2591 LINVRNT(osd_invariant(obj));
2593 return obj->oo_owner == env;
2596 static struct timespec *osd_inode_time(const struct lu_env *env,
2597 struct inode *inode, __u64 seconds)
2599 struct osd_thread_info *oti = osd_oti_get(env);
2600 struct timespec *t = &oti->oti_time;
2602 t->tv_sec = seconds;
2604 *t = timespec_trunc(*t, inode->i_sb->s_time_gran);
2608 static void osd_inode_getattr(const struct lu_env *env,
2609 struct inode *inode, struct lu_attr *attr)
2611 attr->la_valid |= LA_ATIME | LA_MTIME | LA_CTIME | LA_MODE |
2612 LA_SIZE | LA_BLOCKS | LA_UID | LA_GID |
2613 LA_PROJID | LA_FLAGS | LA_NLINK | LA_RDEV |
2614 LA_BLKSIZE | LA_TYPE;
2616 attr->la_atime = inode->i_atime.tv_sec;
2617 attr->la_mtime = inode->i_mtime.tv_sec;
2618 attr->la_ctime = inode->i_ctime.tv_sec;
2619 attr->la_mode = inode->i_mode;
2620 attr->la_size = i_size_read(inode);
2621 attr->la_blocks = inode->i_blocks;
2622 attr->la_uid = i_uid_read(inode);
2623 attr->la_gid = i_gid_read(inode);
2624 attr->la_projid = i_projid_read(inode);
2625 attr->la_flags = ll_inode_to_ext_flags(inode->i_flags);
2626 attr->la_nlink = inode->i_nlink;
2627 attr->la_rdev = inode->i_rdev;
2628 attr->la_blksize = 1 << inode->i_blkbits;
2629 attr->la_blkbits = inode->i_blkbits;
2631 * Ext4 did not transfer inherit flags from raw inode
2632 * to inode flags, and ext4 internally test raw inode
2633 * @i_flags directly. Instead of patching ext4, we do it here.
2635 if (LDISKFS_I(inode)->i_flags & LUSTRE_PROJINHERIT_FL)
2636 attr->la_flags |= LUSTRE_PROJINHERIT_FL;
2639 static int osd_attr_get(const struct lu_env *env, struct dt_object *dt,
2640 struct lu_attr *attr)
2642 struct osd_object *obj = osd_dt_obj(dt);
2644 if (unlikely(!dt_object_exists(dt)))
2646 if (unlikely(obj->oo_destroyed))
2649 LASSERT(!dt_object_remote(dt));
2650 LINVRNT(osd_invariant(obj));
2652 spin_lock(&obj->oo_guard);
2653 osd_inode_getattr(env, obj->oo_inode, attr);
2654 if (obj->oo_lma_flags & LUSTRE_ORPHAN_FL) {
2655 attr->la_valid |= LA_FLAGS;
2656 attr->la_flags |= LUSTRE_ORPHAN_FL;
2658 spin_unlock(&obj->oo_guard);
2663 static int osd_declare_attr_qid(const struct lu_env *env,
2664 struct osd_object *obj,
2665 struct osd_thandle *oh, long long bspace,
2666 qid_t old_id, qid_t new_id, bool enforce,
2667 unsigned int type, bool ignore_edquot)
2670 struct osd_thread_info *info = osd_oti_get(env);
2671 struct lquota_id_info *qi = &info->oti_qi;
2673 qi->lqi_type = type;
2674 /* inode accounting */
2675 qi->lqi_is_blk = false;
2677 /* one more inode for the new id ... */
2678 qi->lqi_id.qid_uid = new_id;
2680 /* Reserve credits for the new id */
2681 rc = osd_declare_qid(env, oh, qi, NULL, enforce, NULL);
2682 if (ignore_edquot && (rc == -EDQUOT || rc == -EINPROGRESS))
2687 /* and one less inode for the current id */
2688 qi->lqi_id.qid_uid = old_id;
2690 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
2691 if (ignore_edquot && (rc == -EDQUOT || rc == -EINPROGRESS))
2696 /* block accounting */
2697 qi->lqi_is_blk = true;
2699 /* more blocks for the new id ... */
2700 qi->lqi_id.qid_uid = new_id;
2701 qi->lqi_space = bspace;
2703 * Credits for the new uid has been reserved, re-use "obj"
2704 * to save credit reservation.
2706 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
2707 if (ignore_edquot && (rc == -EDQUOT || rc == -EINPROGRESS))
2712 /* and finally less blocks for the current uid */
2713 qi->lqi_id.qid_uid = old_id;
2714 qi->lqi_space = -bspace;
2715 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
2716 if (ignore_edquot && (rc == -EDQUOT || rc == -EINPROGRESS))
2722 static int osd_declare_attr_set(const struct lu_env *env,
2723 struct dt_object *dt,
2724 const struct lu_attr *attr,
2725 struct thandle *handle)
2727 struct osd_thandle *oh;
2728 struct osd_object *obj;
2737 LASSERT(dt != NULL);
2738 LASSERT(handle != NULL);
2740 obj = osd_dt_obj(dt);
2741 LASSERT(osd_invariant(obj));
2743 oh = container_of0(handle, struct osd_thandle, ot_super);
2744 LASSERT(oh->ot_handle == NULL);
2746 osd_trans_declare_op(env, oh, OSD_OT_ATTR_SET,
2747 osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
2749 osd_trans_declare_op(env, oh, OSD_OT_XATTR_SET,
2750 osd_dto_credits_noquota[DTO_XATTR_SET]);
2752 if (attr == NULL || obj->oo_inode == NULL)
2755 bspace = obj->oo_inode->i_blocks << 9;
2756 bspace = toqb(bspace);
2759 * Changing ownership is always preformed by super user, it should not
2760 * fail with EDQUOT unless required explicitly.
2762 * We still need to call the osd_declare_qid() to calculate the journal
2763 * credits for updating quota accounting files and to trigger quota
2764 * space adjustment once the operation is completed.
2766 if (attr->la_valid & LA_UID || attr->la_valid & LA_GID) {
2767 bool ignore_edquot = !(attr->la_flags & LUSTRE_SET_SYNC_FL);
2770 CDEBUG(D_QUOTA, "%s: enforce quota on UID %u, GID %u"
2771 "(the quota space is %lld)\n",
2772 obj->oo_inode->i_sb->s_id, attr->la_uid,
2773 attr->la_gid, bspace);
2776 uid = i_uid_read(obj->oo_inode);
2777 enforce = (attr->la_valid & LA_UID) && (attr->la_uid != uid);
2778 rc = osd_declare_attr_qid(env, obj, oh, bspace, uid,
2779 attr->la_uid, enforce, USRQUOTA,
2784 gid = i_gid_read(obj->oo_inode);
2785 enforce = (attr->la_valid & LA_GID) && (attr->la_gid != gid);
2786 rc = osd_declare_attr_qid(env, obj, oh, bspace,
2787 i_gid_read(obj->oo_inode),
2788 attr->la_gid, enforce, GRPQUOTA,
2794 #ifdef HAVE_PROJECT_QUOTA
2795 if (attr->la_valid & LA_PROJID) {
2796 __u32 projid = i_projid_read(obj->oo_inode);
2798 enforce = (attr->la_valid & LA_PROJID) &&
2799 (attr->la_projid != projid);
2800 rc = osd_declare_attr_qid(env, obj, oh, bspace,
2801 (qid_t)projid, (qid_t)attr->la_projid,
2802 enforce, PRJQUOTA, true);
2810 static int osd_inode_setattr(const struct lu_env *env,
2811 struct inode *inode, const struct lu_attr *attr)
2813 __u64 bits = attr->la_valid;
2815 /* Only allow set size for regular file */
2816 if (!S_ISREG(inode->i_mode))
2817 bits &= ~(LA_SIZE | LA_BLOCKS);
2822 if (bits & LA_ATIME)
2823 inode->i_atime = *osd_inode_time(env, inode, attr->la_atime);
2824 if (bits & LA_CTIME)
2825 inode->i_ctime = *osd_inode_time(env, inode, attr->la_ctime);
2826 if (bits & LA_MTIME)
2827 inode->i_mtime = *osd_inode_time(env, inode, attr->la_mtime);
2828 if (bits & LA_SIZE) {
2829 spin_lock(&inode->i_lock);
2830 LDISKFS_I(inode)->i_disksize = attr->la_size;
2831 i_size_write(inode, attr->la_size);
2832 spin_unlock(&inode->i_lock);
2836 * OSD should not change "i_blocks" which is used by quota.
2837 * "i_blocks" should be changed by ldiskfs only.
2840 inode->i_mode = (inode->i_mode & S_IFMT) |
2841 (attr->la_mode & ~S_IFMT);
2843 i_uid_write(inode, attr->la_uid);
2845 i_gid_write(inode, attr->la_gid);
2846 if (bits & LA_PROJID)
2847 i_projid_write(inode, attr->la_projid);
2848 if (bits & LA_NLINK)
2849 set_nlink(inode, attr->la_nlink);
2851 inode->i_rdev = attr->la_rdev;
2853 if (bits & LA_FLAGS) {
2854 /* always keep S_NOCMTIME */
2855 inode->i_flags = ll_ext_to_inode_flags(attr->la_flags) |
2858 * Ext4 did not transfer inherit flags from
2859 * @inode->i_flags to raw inode i_flags when writing
2860 * flags, we do it explictly here.
2862 if (attr->la_flags & LUSTRE_PROJINHERIT_FL)
2863 LDISKFS_I(inode)->i_flags |= LUSTRE_PROJINHERIT_FL;
2865 LDISKFS_I(inode)->i_flags &= ~LUSTRE_PROJINHERIT_FL;
2870 #ifdef HAVE_PROJECT_QUOTA
2871 static int osd_transfer_project(struct inode *inode, __u32 projid)
2873 struct super_block *sb = inode->i_sb;
2874 struct ldiskfs_inode_info *ei = LDISKFS_I(inode);
2877 struct ldiskfs_iloc iloc;
2878 struct ldiskfs_inode *raw_inode;
2879 struct dquot *transfer_to[LDISKFS_MAXQUOTAS] = { };
2881 if (!ldiskfs_has_feature_project(sb)) {
2882 LASSERT(__kprojid_val(LDISKFS_I(inode)->i_projid)
2883 == LDISKFS_DEF_PROJID);
2884 if (projid != LDISKFS_DEF_PROJID)
2890 if (LDISKFS_INODE_SIZE(sb) <= LDISKFS_GOOD_OLD_INODE_SIZE)
2893 kprojid = make_kprojid(&init_user_ns, (projid_t)projid);
2894 if (projid_eq(kprojid, LDISKFS_I(inode)->i_projid))
2897 err = ldiskfs_get_inode_loc(inode, &iloc);
2901 raw_inode = ldiskfs_raw_inode(&iloc);
2902 if (!LDISKFS_FITS_IN_INODE(raw_inode, ei, i_projid)) {
2909 dquot_initialize(inode);
2910 transfer_to[PRJQUOTA] = dqget(sb, make_kqid_projid(kprojid));
2911 if (transfer_to[PRJQUOTA]) {
2912 err = __dquot_transfer(inode, transfer_to);
2913 dqput(transfer_to[PRJQUOTA]);
2922 static int osd_quota_transfer(struct inode *inode, const struct lu_attr *attr)
2926 if ((attr->la_valid & LA_UID && attr->la_uid != i_uid_read(inode)) ||
2927 (attr->la_valid & LA_GID && attr->la_gid != i_gid_read(inode))) {
2930 ll_vfs_dq_init(inode);
2932 if (attr->la_valid & LA_UID)
2933 iattr.ia_valid |= ATTR_UID;
2934 if (attr->la_valid & LA_GID)
2935 iattr.ia_valid |= ATTR_GID;
2936 iattr.ia_uid = make_kuid(&init_user_ns, attr->la_uid);
2937 iattr.ia_gid = make_kgid(&init_user_ns, attr->la_gid);
2939 rc = ll_vfs_dq_transfer(inode, &iattr);
2941 CERROR("%s: quota transfer failed: rc = %d. Is quota "
2942 "enforcement enabled on the ldiskfs "
2943 "filesystem?\n", inode->i_sb->s_id, rc);
2948 /* Handle project id transfer here properly */
2949 if (attr->la_valid & LA_PROJID &&
2950 attr->la_projid != i_projid_read(inode)) {
2951 #ifdef HAVE_PROJECT_QUOTA
2952 rc = osd_transfer_project(inode, attr->la_projid);
2957 CERROR("%s: quota transfer failed: rc = %d. Is project "
2958 "enforcement enabled on the ldiskfs "
2959 "filesystem?\n", inode->i_sb->s_id, rc);
2966 static int osd_attr_set(const struct lu_env *env,
2967 struct dt_object *dt,
2968 const struct lu_attr *attr,
2969 struct thandle *handle)
2971 struct osd_object *obj = osd_dt_obj(dt);
2972 struct inode *inode;
2975 if (!dt_object_exists(dt))
2978 LASSERT(handle != NULL);
2979 LASSERT(!dt_object_remote(dt));
2980 LASSERT(osd_invariant(obj));
2982 osd_trans_exec_op(env, handle, OSD_OT_ATTR_SET);
2984 if (OBD_FAIL_CHECK(OBD_FAIL_OSD_FID_MAPPING) &&
2985 !osd_obj2dev(obj)->od_is_ost) {
2986 struct osd_thread_info *oti = osd_oti_get(env);
2987 const struct lu_fid *fid0 = lu_object_fid(&dt->do_lu);
2988 struct lu_fid *fid1 = &oti->oti_fid;
2989 struct osd_inode_id *id = &oti->oti_id;
2990 struct iam_path_descr *ipd;
2991 struct iam_container *bag;
2992 struct osd_thandle *oh;
2995 fid_cpu_to_be(fid1, fid0);
2996 memset(id, 1, sizeof(*id));
2997 bag = &osd_fid2oi(osd_dev(dt->do_lu.lo_dev),
2998 fid0)->oi_dir.od_container;
2999 ipd = osd_idx_ipd_get(env, bag);
3000 if (unlikely(ipd == NULL))
3003 oh = container_of0(handle, struct osd_thandle, ot_super);
3004 rc = iam_update(oh->ot_handle, bag,
3005 (const struct iam_key *)fid1,
3006 (const struct iam_rec *)id, ipd);
3007 osd_ipd_put(env, bag, ipd);
3008 return(rc > 0 ? 0 : rc);
3011 inode = obj->oo_inode;
3013 rc = osd_quota_transfer(inode, attr);
3017 spin_lock(&obj->oo_guard);
3018 rc = osd_inode_setattr(env, inode, attr);
3019 spin_unlock(&obj->oo_guard);
3023 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
3025 if (!(attr->la_valid & LA_FLAGS))
3028 /* Let's check if there are extra flags need to be set into LMA */
3029 if (attr->la_flags & LUSTRE_LMA_FL_MASKS) {
3030 struct osd_thread_info *info = osd_oti_get(env);
3031 struct lustre_mdt_attrs *lma = &info->oti_ost_attrs.loa_lma;
3033 LASSERT(!obj->oo_pfid_in_lma);
3035 rc = osd_get_lma(info, inode, &info->oti_obj_dentry,
3036 &info->oti_ost_attrs);
3040 lma->lma_incompat |=
3041 lustre_to_lma_flags(attr->la_flags);
3042 lustre_lma_swab(lma);
3043 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA,
3044 lma, sizeof(*lma), XATTR_REPLACE);
3046 struct osd_device *osd = osd_obj2dev(obj);
3048 CWARN("%s: set "DFID" lma flags %u failed: rc = %d\n",
3049 osd_name(osd), PFID(lu_object_fid(&dt->do_lu)),
3050 lma->lma_incompat, rc);
3053 attr->la_flags & LUSTRE_LMA_FL_MASKS;
3055 osd_trans_exec_check(env, handle, OSD_OT_XATTR_SET);
3058 osd_trans_exec_check(env, handle, OSD_OT_ATTR_SET);
3063 static struct dentry *osd_child_dentry_get(const struct lu_env *env,
3064 struct osd_object *obj,
3065 const char *name, const int namelen)
3067 return osd_child_dentry_by_inode(env, obj->oo_inode, name, namelen);
3070 static int osd_mkfile(struct osd_thread_info *info, struct osd_object *obj,
3071 umode_t mode, struct dt_allocation_hint *hint,
3072 struct thandle *th, struct lu_attr *attr)
3075 struct osd_device *osd = osd_obj2dev(obj);
3076 struct osd_thandle *oth;
3077 struct dt_object *parent = NULL;
3078 struct inode *inode;
3079 uid_t owner[2] = {0, 0};
3081 if (attr->la_valid & LA_UID)
3082 owner[0] = attr->la_uid;
3083 if (attr->la_valid & LA_GID)
3084 owner[1] = attr->la_gid;
3086 LINVRNT(osd_invariant(obj));
3087 LASSERT(obj->oo_inode == NULL);
3088 LASSERT(obj->oo_hl_head == NULL);
3090 if (S_ISDIR(mode) && ldiskfs_pdo) {
3092 ldiskfs_htree_lock_head_alloc(HTREE_HBITS_DEF);
3093 if (obj->oo_hl_head == NULL)
3097 oth = container_of(th, struct osd_thandle, ot_super);
3098 LASSERT(oth->ot_handle->h_transaction != NULL);
3100 if (hint != NULL && hint->dah_parent != NULL &&
3101 !dt_object_remote(hint->dah_parent))
3102 parent = hint->dah_parent;
3104 inode = ldiskfs_create_inode(oth->ot_handle,
3105 parent ? osd_dt_obj(parent)->oo_inode :
3106 osd_sb(osd)->s_root->d_inode,
3108 if (!IS_ERR(inode)) {
3109 /* Do not update file c/mtime in ldiskfs. */
3110 inode->i_flags |= S_NOCMTIME;
3113 * For new created object, it must be consistent,
3114 * and it is unnecessary to scrub against it.
3116 ldiskfs_set_inode_state(inode, LDISKFS_STATE_LUSTRE_NOSCRUB);
3118 obj->oo_inode = inode;
3121 if (obj->oo_hl_head != NULL) {
3122 ldiskfs_htree_lock_head_free(obj->oo_hl_head);
3123 obj->oo_hl_head = NULL;
3125 result = PTR_ERR(inode);
3127 LINVRNT(osd_invariant(obj));
3135 static int osd_mkdir(struct osd_thread_info *info, struct osd_object *obj,
3136 struct lu_attr *attr,
3137 struct dt_allocation_hint *hint,
3138 struct dt_object_format *dof,
3142 struct osd_thandle *oth;
3143 __u32 mode = (attr->la_mode & (S_IFMT | S_IRWXUGO | S_ISVTX | S_ISGID));
3145 LASSERT(S_ISDIR(attr->la_mode));
3147 oth = container_of(th, struct osd_thandle, ot_super);
3148 LASSERT(oth->ot_handle->h_transaction != NULL);
3149 result = osd_mkfile(info, obj, mode, hint, th, attr);
3154 static int osd_mk_index(struct osd_thread_info *info, struct osd_object *obj,
3155 struct lu_attr *attr,
3156 struct dt_allocation_hint *hint,
3157 struct dt_object_format *dof,
3161 struct osd_thandle *oth;
3162 const struct dt_index_features *feat = dof->u.dof_idx.di_feat;
3164 __u32 mode = (attr->la_mode & (S_IFMT | S_IALLUGO | S_ISVTX));
3166 LASSERT(S_ISREG(attr->la_mode));
3168 oth = container_of(th, struct osd_thandle, ot_super);
3169 LASSERT(oth->ot_handle->h_transaction != NULL);
3171 result = osd_mkfile(info, obj, mode, hint, th, attr);
3173 LASSERT(obj->oo_inode != NULL);
3174 if (feat->dif_flags & DT_IND_VARKEY)
3175 result = iam_lvar_create(obj->oo_inode,
3176 feat->dif_keysize_max,
3178 feat->dif_recsize_max,
3181 result = iam_lfix_create(obj->oo_inode,
3182 feat->dif_keysize_max,