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/
31 * lustre/osd/osd_handler.c
33 * Top-level entry points into osd module
35 * Author: Nikita Danilov <nikita@clusterfs.com>
36 * Pravin Shelar <pravin.shelar@sun.com> : Added fid in dirent
39 #define DEBUG_SUBSYSTEM S_OSD
41 #include <linux/fs_struct.h>
42 #include <linux/module.h>
43 #include <linux/user_namespace.h>
44 #include <linux/uidgid.h>
46 /* prerequisite for linux/xattr.h */
47 #include <linux/types.h>
48 /* prerequisite for linux/xattr.h */
50 /* XATTR_{REPLACE,CREATE} */
51 #include <linux/xattr.h>
53 #include <ldiskfs/ldiskfs.h>
54 #include <ldiskfs/xattr.h>
55 #include <ldiskfs/ldiskfs_extents.h>
58 * struct OBD_{ALLOC,FREE}*()
61 #include <obd_support.h>
62 /* struct ptlrpc_thread */
63 #include <lustre_net.h>
64 #include <lustre_fid.h>
66 #include <uapi/linux/lustre/lustre_param.h>
68 #include "osd_internal.h"
69 #include "osd_dynlocks.h"
71 /* llo_* api support */
72 #include <md_object.h>
73 #include <lustre_quota.h>
75 #include <lustre_linkea.h>
77 /* encoding routines */
78 #include <lustre_crypto.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_PTR_ARRAY_LARGE(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_PTR_ARRAY_LARGE(oti->oti_ins_cache,
221 oti->oti_ins_cache_used);
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 */
289 static void osd_idc_dump_lma(const struct lu_env *env,
290 struct osd_device *osd,
294 struct osd_thread_info *info = osd_oti_get(env);
295 struct lustre_ost_attrs *loa = &info->oti_ost_attrs;
296 const struct lu_fid *fid;
297 struct osd_inode_id lid;
301 inode = osd_ldiskfs_iget(osd_sb(osd), ino);
303 CERROR("%s: can't get inode %lu: rc = %d\n",
304 osd->od_svname, ino, (int)PTR_ERR(inode));
307 if (is_bad_inode(inode)) {
308 CERROR("%s: bad inode %lu\n", osd->od_svname, ino);
311 rc = osd_get_lma(info, inode, &info->oti_obj_dentry, loa);
313 CERROR("%s: can't get LMA for %lu: rc = %d\n",
314 osd->od_svname, ino, rc);
317 fid = &loa->loa_lma.lma_self_fid;
318 LCONSOLE(D_INFO, "%s: "DFID" in inode %lu/%u\n", osd->od_svname,
319 PFID(fid), ino, (unsigned)inode->i_generation);
322 rc = osd_oi_lookup(osd_oti_get(env), osd, fid, &lid, 0);
324 CERROR("%s: can't lookup "DFID": rc = %d\n",
325 osd->od_svname, PFID(fid), rc);
328 LCONSOLE(D_INFO, "%s: "DFID" maps to %u/%u\n", osd->od_svname,
329 PFID(fid), lid.oii_ino, lid.oii_gen);
334 static void osd_idc_dump_debug(const struct lu_env *env,
335 struct osd_device *osd,
336 const struct lu_fid *fid,
340 struct osd_inode_id lid;
344 rc = osd_oi_lookup(osd_oti_get(env), osd, fid, &lid, 0);
346 LCONSOLE(D_INFO, "%s: "DFID" maps to %u/%u\n",
347 osd->od_svname, PFID(fid), lid.oii_ino, lid.oii_gen);
348 osd_idc_dump_lma(env, osd, lid.oii_ino, false);
350 CERROR("%s: can't lookup "DFID": rc = %d\n",
351 osd->od_svname, PFID(fid), rc);
354 osd_idc_dump_lma(env, osd, ino1, true);
356 osd_idc_dump_lma(env, osd, ino2, true);
360 * lookup mapping for given FID and fill it from the given object.
361 * the object is lolcal by definition.
363 static int osd_idc_find_and_init(const struct lu_env *env,
364 struct osd_device *osd,
365 struct osd_object *obj)
367 const struct lu_fid *fid = lu_object_fid(&obj->oo_dt.do_lu);
368 struct osd_idmap_cache *idc;
370 idc = osd_idc_find(env, osd, fid);
371 LASSERT(!IS_ERR(idc));
373 if (obj->oo_inode == NULL)
375 if (idc->oic_lid.oii_ino != obj->oo_inode->i_ino) {
376 if (idc->oic_lid.oii_ino) {
377 osd_idc_dump_debug(env, osd, fid,
378 idc->oic_lid.oii_ino,
379 obj->oo_inode->i_ino);
382 idc->oic_lid.oii_ino = obj->oo_inode->i_ino;
383 idc->oic_lid.oii_gen = obj->oo_inode->i_generation;
388 CDEBUG(D_INODE, "%s: FID "DFID" not in the id map cache\n",
389 osd->od_svname, PFID(fid));
391 /* new mapping is needed */
392 idc = osd_idc_add(env, osd, fid);
394 CERROR("%s: FID "DFID" add id map cache failed: %ld\n",
395 osd->od_svname, PFID(fid), PTR_ERR(idc));
399 if (obj->oo_inode != NULL) {
400 idc->oic_lid.oii_ino = obj->oo_inode->i_ino;
401 idc->oic_lid.oii_gen = obj->oo_inode->i_generation;
407 * OSD object methods.
411 * Concurrency: no concurrent access is possible that early in object
414 static struct lu_object *osd_object_alloc(const struct lu_env *env,
415 const struct lu_object_header *hdr,
418 struct osd_object *mo;
423 struct lu_object_header *h;
424 struct osd_device *o = osd_dev(d);
426 l = &mo->oo_dt.do_lu;
427 if (unlikely(o->od_in_init)) {
434 lu_object_header_init(h);
435 lu_object_init(l, h, d);
436 lu_object_add_top(h, l);
439 dt_object_init(&mo->oo_dt, NULL, d);
440 mo->oo_header = NULL;
443 mo->oo_dt.do_ops = &osd_obj_ops;
444 l->lo_ops = &osd_lu_obj_ops;
445 init_rwsem(&mo->oo_sem);
446 init_rwsem(&mo->oo_ext_idx_sem);
447 spin_lock_init(&mo->oo_guard);
448 INIT_LIST_HEAD(&mo->oo_xattr_list);
454 int osd_get_lma(struct osd_thread_info *info, struct inode *inode,
455 struct dentry *dentry, struct lustre_ost_attrs *loa)
459 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LMA,
460 (void *)loa, sizeof(*loa));
462 struct lustre_mdt_attrs *lma = &loa->loa_lma;
464 if (rc < sizeof(*lma))
468 lustre_loa_swab(loa, true);
469 /* Check LMA compatibility */
470 if (lma->lma_incompat & ~LMA_INCOMPAT_SUPP) {
472 CWARN("%s: unsupported incompat LMA feature(s) %#x for fid = "DFID", ino = %lu: rc = %d\n",
474 lma->lma_incompat & ~LMA_INCOMPAT_SUPP,
475 PFID(&lma->lma_self_fid), inode->i_ino, rc);
477 } else if (rc == 0) {
485 * retrieve object from backend ext fs.
487 struct inode *osd_iget(struct osd_thread_info *info, struct osd_device *dev,
488 struct osd_inode_id *id)
491 struct inode *inode = NULL;
494 * if we look for an inode withing a running
495 * transaction, then we risk to deadlock
496 * osd_dirent_check_repair() breaks this
498 /* LASSERT(current->journal_info == NULL); */
500 inode = osd_ldiskfs_iget(osd_sb(dev), id->oii_ino);
502 CDEBUG(D_INODE, "no inode: ino = %u, rc = %ld\n",
503 id->oii_ino, PTR_ERR(inode));
504 } else if (id->oii_gen != OSD_OII_NOGEN &&
505 inode->i_generation != id->oii_gen) {
506 CDEBUG(D_INODE, "unmatched inode: ino = %u, oii_gen = %u, "
507 "i_generation = %u\n",
508 id->oii_ino, id->oii_gen, inode->i_generation);
510 inode = ERR_PTR(-ESTALE);
511 } else if (inode->i_nlink == 0) {
513 * due to parallel readdir and unlink,
514 * we can have dead inode here.
516 CDEBUG(D_INODE, "stale inode: ino = %u\n", id->oii_ino);
518 inode = ERR_PTR(-ESTALE);
519 } else if (is_bad_inode(inode)) {
521 CWARN("%s: bad inode: ino = %u: rc = %d\n",
522 osd_dev2name(dev), id->oii_ino, rc);
525 } else if ((rc = osd_attach_jinode(inode))) {
529 ldiskfs_clear_inode_state(inode, LDISKFS_STATE_LUSTRE_DESTROY);
530 if (id->oii_gen == OSD_OII_NOGEN)
531 osd_id_gen(id, inode->i_ino, inode->i_generation);
534 * Do not update file c/mtime in ldiskfs.
535 * NB: we don't have any lock to protect this because we don't
536 * have reference on osd_object now, but contention with
537 * another lookup + attr_set can't happen in the tiny window
538 * between if (...) and set S_NOCMTIME.
540 if (!(inode->i_flags & S_NOCMTIME))
541 inode->i_flags |= S_NOCMTIME;
546 int osd_ldiskfs_add_entry(struct osd_thread_info *info, struct osd_device *osd,
547 handle_t *handle, struct dentry *child,
548 struct inode *inode, struct htree_lock *hlock)
552 rc = __ldiskfs_add_entry(handle, child, inode, hlock);
553 if (rc == -ENOBUFS || rc == -ENOSPC) {
554 struct lustre_ost_attrs *loa = &info->oti_ost_attrs;
555 struct inode *parent = child->d_parent->d_inode;
556 struct lu_fid *fid = NULL;
557 char fidstr[FID_LEN + 1] = "unknown";
559 rc2 = osd_get_lma(info, parent, child->d_parent, loa);
561 fid = &loa->loa_lma.lma_self_fid;
562 } else if (rc2 == -ENODATA) {
563 if (unlikely(is_root_inode(parent))) {
564 fid = &info->oti_fid3;
565 lu_local_obj_fid(fid, OSD_FS_ROOT_OID);
566 } else if (!osd->od_is_ost && osd->od_index == 0) {
567 fid = &info->oti_fid3;
568 lu_igif_build(fid, parent->i_ino,
569 parent->i_generation);
574 snprintf(fidstr, sizeof(fidstr), DFID, PFID(fid));
576 /* below message is checked in sanity.sh test_129 */
578 CWARN("%s: directory (inode: %lu, FID: %s) has reached max size limit\n",
579 osd_name(osd), parent->i_ino, fidstr);
581 rc = 0; /* ignore such error now */
582 CWARN("%s: directory (inode: %lu, FID: %s) is approaching max size limit\n",
583 osd_name(osd), parent->i_ino, fidstr);
593 osd_iget_fid(struct osd_thread_info *info, struct osd_device *dev,
594 struct osd_inode_id *id, struct lu_fid *fid)
596 struct lustre_ost_attrs *loa = &info->oti_ost_attrs;
600 inode = osd_iget(info, dev, id);
604 rc = osd_get_lma(info, inode, &info->oti_obj_dentry, loa);
606 *fid = loa->loa_lma.lma_self_fid;
607 } else if (rc == -ENODATA) {
608 if (unlikely(is_root_inode(inode)))
609 lu_local_obj_fid(fid, OSD_FS_ROOT_OID);
611 lu_igif_build(fid, inode->i_ino, inode->i_generation);
619 static struct inode *osd_iget_check(struct osd_thread_info *info,
620 struct osd_device *dev,
621 const struct lu_fid *fid,
622 struct osd_inode_id *id,
631 * The cached OI mapping is trustable. If we cannot locate the inode
632 * via the cached OI mapping, then return the failure to the caller
633 * directly without further OI checking.
637 inode = osd_ldiskfs_iget(osd_sb(dev), id->oii_ino);
640 if (!trusted && (rc == -ENOENT || rc == -ESTALE))
643 CDEBUG(D_INODE, "no inode for FID: "DFID", ino = %u, rc = %d\n",
644 PFID(fid), id->oii_ino, rc);
648 if (is_bad_inode(inode)) {
653 CDEBUG(D_INODE, "bad inode for FID: "DFID", ino = %u\n",
654 PFID(fid), id->oii_ino);
658 if (id->oii_gen != OSD_OII_NOGEN &&
659 inode->i_generation != id->oii_gen) {
664 CDEBUG(D_INODE, "unmatched inode for FID: "DFID", ino = %u, "
665 "oii_gen = %u, i_generation = %u\n", PFID(fid),
666 id->oii_ino, id->oii_gen, inode->i_generation);
670 if (inode->i_nlink == 0) {
675 CDEBUG(D_INODE, "stale inode for FID: "DFID", ino = %u\n",
676 PFID(fid), id->oii_ino);
680 ldiskfs_clear_inode_state(inode, LDISKFS_STATE_LUSTRE_DESTROY);
684 __u32 saved_ino = id->oii_ino;
685 __u32 saved_gen = id->oii_gen;
688 LASSERTF(rc == -ESTALE || rc == -ENOENT, "rc = %d\n", rc);
690 rc = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
692 * XXX: There are four possible cases:
694 * Backup/restore caused the OI invalid.
696 * Someone unlinked the object but NOT removed
697 * the OI mapping, such as mount target device
698 * as ldiskfs, and modify something directly.
700 * Someone just removed the object between the
701 * former oi_lookup and the iget. It is normal.
702 * 4. Other failure cases.
704 * Generally, when the device is mounted, it will
705 * auto check whether the system is restored from
706 * file-level backup or not. We trust such detect
707 * to distinguish the 1st case from the 2nd case:
708 * if the OI files are consistent but may contain
709 * stale OI mappings because of case 2, if iget()
710 * returns -ENOENT or -ESTALE, then it should be
715 * If the OI mapping was in OI file before the
716 * osd_iget_check(), but now, it is disappear,
717 * then it must be removed by race. That is a
723 * It is the OI scrub updated the OI mapping by race.
724 * The new OI mapping must be valid.
726 if (saved_ino != id->oii_ino ||
727 (saved_gen != id->oii_gen && saved_gen != OSD_OII_NOGEN)) {
736 if (dev->od_scrub.os_scrub.os_file.sf_flags &
739 * It still can be the case 2, but we cannot
740 * distinguish it from the case 1. So return
741 * -EREMCHG to block current operation until
742 * OI scrub rebuilt the OI mappings.
751 if (inode->i_generation == id->oii_gen)
756 if (id->oii_gen == OSD_OII_NOGEN)
757 osd_id_gen(id, inode->i_ino, inode->i_generation);
760 * Do not update file c/mtime in ldiskfs.
761 * NB: we don't have any lock to protect this because we don't
762 * have reference on osd_object now, but contention with
763 * another lookup + attr_set can't happen in the tiny window
764 * between if (...) and set S_NOCMTIME.
766 if (!(inode->i_flags & S_NOCMTIME))
767 inode->i_flags |= S_NOCMTIME;
784 * \retval +v: new filter_fid does not contain self-fid
785 * \retval 0: filter_fid_18_23, contains self-fid
786 * \retval -v: other failure cases
788 int osd_get_idif(struct osd_thread_info *info, struct inode *inode,
789 struct dentry *dentry, struct lu_fid *fid)
791 struct filter_fid *ff = &info->oti_ff;
792 struct ost_id *ostid = &info->oti_ostid;
795 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_FID, ff, sizeof(*ff));
796 if (rc == sizeof(struct filter_fid_18_23)) {
797 struct filter_fid_18_23 *ff_old = (void *)ff;
799 ostid_set_seq(ostid, le64_to_cpu(ff_old->ff_seq));
800 rc = ostid_set_id(ostid, le64_to_cpu(ff_old->ff_objid));
802 * XXX: use 0 as the index for compatibility, the caller will
803 * handle index related issues when necessary.
806 ostid_to_fid(fid, ostid, 0);
807 } else if (rc >= (int)sizeof(struct filter_fid_24_29)) {
809 } else if (rc >= 0) {
816 static int osd_lma_self_repair(struct osd_thread_info *info,
817 struct osd_device *osd, struct inode *inode,
818 const struct lu_fid *fid, __u32 compat)
823 LASSERT(current->journal_info == NULL);
825 jh = osd_journal_start_sb(osd_sb(osd), LDISKFS_HT_MISC,
826 osd_dto_credits_noquota[DTO_XATTR_SET]);
829 CWARN("%s: cannot start journal for lma_self_repair: rc = %d\n",
834 rc = osd_ea_fid_set(info, inode, fid, compat, 0);
836 CWARN("%s: cannot self repair the LMA: rc = %d\n",
838 ldiskfs_journal_stop(jh);
842 static int osd_check_lma(const struct lu_env *env, struct osd_object *obj)
844 struct osd_thread_info *info = osd_oti_get(env);
845 struct osd_device *osd = osd_obj2dev(obj);
846 struct lustre_ost_attrs *loa = &info->oti_ost_attrs;
847 struct lustre_mdt_attrs *lma = &loa->loa_lma;
848 struct inode *inode = obj->oo_inode;
849 struct dentry *dentry = &info->oti_obj_dentry;
850 struct lu_fid *fid = NULL;
851 const struct lu_fid *rfid = lu_object_fid(&obj->oo_dt.do_lu);
856 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LMA,
857 (void *)loa, sizeof(*loa));
858 if (rc == -ENODATA && !fid_is_igif(rfid) && osd->od_check_ff) {
859 fid = &lma->lma_self_fid;
860 rc = osd_get_idif(info, inode, dentry, fid);
861 if (rc > 0 || (rc == -ENODATA && osd->od_index_in_idif)) {
863 * For the given OST-object, if it has neither LMA nor
864 * FID in XATTR_NAME_FID, then the given FID (which is
865 * contained in the @obj, from client RPC for locating
866 * the OST-object) is trusted. We use it to generate
869 osd_lma_self_repair(info, osd, inode, rfid,
880 lustre_lma_swab(lma);
881 if (unlikely((lma->lma_incompat & ~LMA_INCOMPAT_SUPP) ||
882 (CFS_FAIL_CHECK(OBD_FAIL_OSD_LMA_INCOMPAT) &&
883 S_ISREG(inode->i_mode)))) {
884 CWARN("%s: unsupported incompat LMA feature(s) %#x for "
885 "fid = "DFID", ino = %lu\n", osd_name(osd),
886 lma->lma_incompat & ~LMA_INCOMPAT_SUPP,
887 PFID(rfid), inode->i_ino);
890 fid = &lma->lma_self_fid;
891 if (lma->lma_compat & LMAC_STRIPE_INFO &&
893 obj->oo_pfid_in_lma = 1;
894 if (unlikely(lma->lma_incompat & LMAI_REMOTE_PARENT) &&
896 lu_object_set_agent_entry(&obj->oo_dt.do_lu);
900 if (fid != NULL && unlikely(!lu_fid_eq(rfid, fid))) {
901 if (fid_is_idif(rfid) && fid_is_idif(fid)) {
902 struct ost_id *oi = &info->oti_ostid;
903 struct lu_fid *fid1 = &info->oti_fid3;
904 __u32 idx = fid_idif_ost_idx(rfid);
907 * For old IDIF, the OST index is not part of the IDIF,
908 * Means that different OSTs may have the same IDIFs.
909 * Under such case, we need to make some compatible
910 * check to make sure to trigger OI scrub properly.
912 if (idx != 0 && fid_idif_ost_idx(fid) == 0) {
913 /* Given @rfid is new, LMA is old. */
914 fid_to_ostid(fid, oi);
915 ostid_to_fid(fid1, oi, idx);
916 if (lu_fid_eq(fid1, rfid)) {
917 if (osd->od_index_in_idif)
918 osd_lma_self_repair(info, osd,
932 struct osd_check_lmv_buf {
933 /* please keep it as first member */
934 struct dir_context ctx;
935 struct osd_thread_info *oclb_info;
936 struct osd_device *oclb_dev;
942 * It is called internally by ->iterate*() to filter out the
943 * local slave object's FID of the striped directory.
945 * \retval 1 found the local slave's FID
946 * \retval 0 continue to check next item
947 * \retval -ve for failure
949 #ifdef HAVE_FILLDIR_USE_CTX
950 static int osd_stripe_dir_filldir(struct dir_context *buf,
952 static int osd_stripe_dir_filldir(void *buf,
954 const char *name, int namelen,
955 loff_t offset, __u64 ino, unsigned int d_type)
957 struct osd_check_lmv_buf *oclb = (struct osd_check_lmv_buf *)buf;
958 struct osd_thread_info *oti = oclb->oclb_info;
959 struct lu_fid *fid = &oti->oti_fid3;
960 struct osd_inode_id *id = &oti->oti_id3;
961 struct osd_device *dev = oclb->oclb_dev;
970 sscanf(name + 1, SFID, RFID(fid));
971 if (!fid_is_sane(fid))
974 if (osd_remote_fid(oti->oti_env, dev, fid))
977 osd_id_gen(id, ino, OSD_OII_NOGEN);
978 inode = osd_iget(oti, dev, id);
980 return PTR_ERR(inode);
983 osd_add_oi_cache(oti, dev, id, fid);
984 osd_oii_insert(dev, fid, id, true);
985 oclb->oclb_found = true;
991 * When lookup item under striped directory, we need to locate the master
992 * MDT-object of the striped directory firstly, then the client will send
993 * lookup (getattr_by_name) RPC to the MDT with some slave MDT-object's FID
994 * and the item's name. If the system is restored from MDT file level backup,
995 * then before the OI scrub completely built the OI files, the OI mappings of
996 * the master MDT-object and slave MDT-object may be invalid. Usually, it is
997 * not a problem for the master MDT-object. Because when locate the master
998 * MDT-object, we will do name based lookup (for the striped directory itself)
999 * firstly, during such process we can setup the correct OI mapping for the
1000 * master MDT-object. But it will be trouble for the slave MDT-object. Because
1001 * the client will not trigger name based lookup on the MDT to locate the slave
1002 * MDT-object before locating item under the striped directory, then when
1003 * osd_fid_lookup(), it will find that the OI mapping for the slave MDT-object
1004 * is invalid and does not know what the right OI mapping is, then the MDT has
1005 * to return -EINPROGRESS to the client to notify that the OI scrub is rebuiding
1006 * the OI file, related OI mapping is unknown yet, please try again later. And
1007 * then client will re-try the RPC again and again until related OI mapping has
1008 * been updated. That is quite inefficient.
1010 * To resolve above trouble, we will handle it as the following two cases:
1012 * 1) The slave MDT-object and the master MDT-object are on different MDTs.
1013 * It is relative easy. Be as one of remote MDT-objects, the slave MDT-object
1014 * is linked under /REMOTE_PARENT_DIR with the name of its FID string.
1015 * We can locate the slave MDT-object via lookup the /REMOTE_PARENT_DIR
1016 * directly. Please check osd_fid_lookup().
1018 * 2) The slave MDT-object and the master MDT-object reside on the same MDT.
1019 * Under such case, during lookup the master MDT-object, we will lookup the
1020 * slave MDT-object via readdir against the master MDT-object, because the
1021 * slave MDT-objects information are stored as sub-directories with the name
1022 * "${FID}:${index}". Then when find the local slave MDT-object, its OI
1023 * mapping will be recorded. Then subsequent osd_fid_lookup() will know
1024 * the correct OI mapping for the slave MDT-object.
1026 static int osd_check_lmv(struct osd_thread_info *oti, struct osd_device *dev,
1027 struct inode *inode)
1029 struct lu_buf *buf = &oti->oti_big_buf;
1031 struct lmv_mds_md_v1 *lmv1;
1032 struct osd_check_lmv_buf oclb = {
1033 .ctx.actor = osd_stripe_dir_filldir,
1036 .oclb_found = false,
1041 /* We should use the VFS layer to create a real dentry. */
1042 oti->oti_obj_dentry.d_inode = inode;
1043 oti->oti_obj_dentry.d_sb = inode->i_sb;
1045 filp = alloc_file_pseudo(inode, dev->od_mnt, "/", O_NOATIME,
1050 filp->f_mode |= FMODE_64BITHASH;
1054 rc = __osd_xattr_get(inode, filp->f_path.dentry, XATTR_NAME_LMV,
1055 buf->lb_buf, buf->lb_len);
1056 if (rc == -ERANGE) {
1057 rc = __osd_xattr_get(inode, filp->f_path.dentry,
1058 XATTR_NAME_LMV, NULL, 0);
1060 lu_buf_realloc(buf, rc);
1061 if (buf->lb_buf == NULL)
1062 GOTO(out, rc = -ENOMEM);
1068 if (unlikely(rc == 0 || rc == -ENODATA))
1074 if (unlikely(buf->lb_buf == NULL)) {
1075 lu_buf_realloc(buf, rc);
1076 if (buf->lb_buf == NULL)
1077 GOTO(out, rc = -ENOMEM);
1083 if (le32_to_cpu(lmv1->lmv_magic) != LMV_MAGIC_V1)
1087 oclb.oclb_items = 0;
1088 rc = iterate_dir(filp, &oclb.ctx);
1089 } while (rc >= 0 && oclb.oclb_items > 0 && !oclb.oclb_found &&
1090 filp->f_pos != LDISKFS_HTREE_EOF_64BIT);
1095 "%s: cannot check LMV, ino = %lu/%u: rc = %d\n",
1096 osd_ino2name(inode), inode->i_ino, inode->i_generation,
1104 static int osd_fid_lookup(const struct lu_env *env, struct osd_object *obj,
1105 const struct lu_fid *fid,
1106 const struct lu_object_conf *conf)
1108 struct osd_thread_info *info;
1109 struct lu_device *ldev = obj->oo_dt.do_lu.lo_dev;
1110 struct osd_device *dev;
1111 struct osd_idmap_cache *oic;
1112 struct osd_inode_id *id;
1113 struct inode *inode = NULL;
1114 struct lustre_scrub *scrub;
1115 struct scrub_file *sf;
1116 __u32 flags = SS_CLEAR_DRYRUN | SS_CLEAR_FAILOUT | SS_AUTO_FULL;
1121 bool remote = false;
1122 bool trusted = true;
1123 bool updated = false;
1124 bool checked = false;
1128 LINVRNT(osd_invariant(obj));
1129 LASSERT(obj->oo_inode == NULL);
1131 if (fid_is_sane(fid) == 0) {
1132 CERROR("%s: invalid FID "DFID"\n", ldev->ld_obd->obd_name,
1138 dev = osd_dev(ldev);
1139 scrub = &dev->od_scrub.os_scrub;
1140 sf = &scrub->os_file;
1141 info = osd_oti_get(env);
1143 oic = &info->oti_cache;
1145 if (OBD_FAIL_CHECK(OBD_FAIL_SRV_ENOENT))
1149 * For the object is created as locking anchor, or for the object to
1150 * be created on disk. No need to osd_oi_lookup() at here because FID
1151 * shouldn't never be re-used, if it's really a duplicate FID from
1152 * unexpected reason, we should be able to detect it later by calling
1153 * do_create->osd_oi_insert().
1155 if (conf && conf->loc_flags & LOC_F_NEW)
1156 GOTO(out, result = 0);
1158 /* Search order: 1. per-thread cache. */
1159 if (lu_fid_eq(fid, &oic->oic_fid) && likely(oic->oic_dev == dev)) {
1165 memset(id, 0, sizeof(struct osd_inode_id));
1166 if (!list_empty(&scrub->os_inconsistent_items)) {
1167 /* Search order: 2. OI scrub pending list. */
1168 result = osd_oii_lookup(dev, fid, id);
1174 * The OI mapping in the OI file can be updated by the OI scrub
1175 * when we locate the inode via FID. So it may be not trustable.
1179 /* Search order: 3. OI files. */
1180 result = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
1181 if (result == -ENOENT) {
1182 if (!(fid_is_norm(fid) || fid_is_igif(fid)) ||
1183 fid_is_on_ost(info, dev, fid, OI_CHECK_FLD) ||
1184 !ldiskfs_test_bit(osd_oi_fid2idx(dev, fid),
1186 GOTO(out, result = 0);
1191 /* -ESTALE is returned if inode of OST object doesn't exist */
1192 if (result == -ESTALE &&
1193 fid_is_on_ost(info, dev, fid, OI_CHECK_FLD)) {
1194 GOTO(out, result = 0);
1201 obj->oo_inode = NULL;
1202 /* for later passes through checks, not true on first pass */
1203 if (!IS_ERR_OR_NULL(inode))
1206 inode = osd_iget_check(info, dev, fid, id, trusted);
1207 if (!IS_ERR(inode)) {
1208 obj->oo_inode = inode;
1216 result = PTR_ERR(inode);
1217 if (result == -ENOENT || result == -ESTALE)
1218 GOTO(out, result = 0);
1220 if (result != -EREMCHG)
1225 * We still have chance to get the valid inode: for the
1226 * object which is referenced by remote name entry, the
1227 * object on the local MDT will be linked under the dir
1228 * of "/REMOTE_PARENT_DIR" with its FID string as name.
1230 * We do not know whether the object for the given FID
1231 * is referenced by some remote name entry or not, and
1232 * especially for DNE II, a multiple-linked object may
1233 * have many name entries reside on many MDTs.
1235 * To simplify the operation, OSD will not distinguish
1236 * more, just lookup "/REMOTE_PARENT_DIR". Usually, it
1237 * only happened for the RPC from other MDT during the
1238 * OI scrub, or for the client side RPC with FID only,
1239 * such as FID to path, or from old connected client.
1242 rc1 = osd_lookup_in_remote_parent(info, dev, fid, id);
1246 flags |= SS_AUTO_PARTIAL;
1247 flags &= ~SS_AUTO_FULL;
1252 if (scrub->os_running) {
1253 if (scrub->os_partial_scan && !scrub->os_in_join)
1256 if (IS_ERR_OR_NULL(inode) || result) {
1257 osd_oii_insert(dev, fid, id, result == -ENOENT);
1258 GOTO(out, result = -EINPROGRESS);
1262 LASSERT(obj->oo_inode == inode);
1264 osd_oii_insert(dev, fid, id, true);
1268 if (dev->od_scrub.os_scrub.os_auto_scrub_interval == AS_NEVER) {
1270 GOTO(out, result = -EREMCHG);
1273 LASSERT(obj->oo_inode == inode);
1275 osd_add_oi_cache(info, dev, id, fid);
1280 rc1 = osd_scrub_start(env, dev, flags);
1281 CDEBUG_LIMIT(D_LFSCK | D_CONSOLE | D_WARNING,
1282 "%s: trigger OI scrub by RPC for "DFID"/%u with flags %#x: rc = %d\n",
1283 osd_name(dev), PFID(fid), id->oii_ino, flags, rc1);
1284 if (rc1 && rc1 != -EALREADY)
1285 GOTO(out, result = -EREMCHG);
1287 if (IS_ERR_OR_NULL(inode) || result) {
1288 osd_oii_insert(dev, fid, id, result == -ENOENT);
1289 GOTO(out, result = -EINPROGRESS);
1293 LASSERT(obj->oo_inode == inode);
1295 osd_oii_insert(dev, fid, id, true);
1300 if (unlikely(obj->oo_header))
1303 result = osd_check_lma(env, obj);
1307 LASSERTF(id->oii_ino == inode->i_ino &&
1308 id->oii_gen == inode->i_generation,
1309 "locate wrong inode for FID: "DFID", %u/%u => %ld/%u\n",
1310 PFID(fid), id->oii_ino, id->oii_gen,
1311 inode->i_ino, inode->i_generation);
1313 saved_ino = inode->i_ino;
1314 saved_gen = inode->i_generation;
1316 if (unlikely(result == -ENODATA)) {
1318 * If the OI scrub updated the OI mapping by race, it
1319 * must be valid. Trust the inode that has no LMA EA.
1324 result = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
1327 * The OI mapping is still there, the inode is still
1328 * valid. It is just becaues the inode has no LMA EA.
1330 if (saved_ino == id->oii_ino &&
1331 saved_gen == id->oii_gen)
1335 * It is the OI scrub updated the OI mapping by race.
1336 * The new OI mapping must be valid.
1344 * "result == -ENOENT" means that the OI mappinghas been
1345 * removed by race, so the inode belongs to other object.
1347 * Others error can be returned directly.
1349 if (result == -ENOENT) {
1352 obj->oo_inode = NULL;
1357 if (result != -EREMCHG)
1363 * if two OST objects map to the same inode, and inode mode is
1364 * (S_IFREG | S_ISUID | S_ISGID | S_ISVTX | 0666), which means it's
1365 * reserved by precreate, and not written yet, in this case, don't
1366 * set inode for the object whose FID mismatch, so that it can create
1367 * inode and not block precreate.
1369 if (fid_is_on_ost(info, dev, fid, OI_CHECK_FLD) &&
1370 inode->i_mode == (S_IFREG | S_ISUID | S_ISGID | S_ISVTX | 0666)) {
1371 obj->oo_inode = NULL;
1372 GOTO(out, result = 0);
1375 result = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
1377 * "result == -ENOENT" means the cached OI mapping has been removed
1378 * from the OI file by race, above inode belongs to other object.
1380 if (result == -ENOENT) {
1383 obj->oo_inode = NULL;
1384 GOTO(out, result = 0);
1390 if (saved_ino == id->oii_ino && saved_gen == id->oii_gen) {
1392 osd_scrub_refresh_mapping(info, dev, fid, id, DTO_INDEX_DELETE,
1398 * It is the OI scrub updated the OI mapping by race.
1399 * The new OI mapping must be valid.
1407 struct lustre_ost_attrs *loa = &info->oti_ost_attrs;
1408 struct lustre_mdt_attrs *lma = &info->oti_ost_attrs.loa_lma;
1410 result = osd_get_lma(info, inode, &info->oti_obj_dentry, loa);
1412 if (lma->lma_compat & LMAC_STRIPE_INFO &&
1414 obj->oo_pfid_in_lma = 1;
1415 if (unlikely(lma->lma_incompat & LMAI_REMOTE_PARENT) &&
1417 lu_object_set_agent_entry(&obj->oo_dt.do_lu);
1418 } else if (result != -ENODATA) {
1423 obj->oo_compat_dot_created = 1;
1424 obj->oo_compat_dotdot_created = 1;
1426 if (S_ISDIR(inode->i_mode) &&
1427 (flags & SS_AUTO_PARTIAL || sf->sf_status == SS_SCANNING))
1428 osd_check_lmv(info, dev, inode);
1430 result = osd_attach_jinode(inode);
1435 GOTO(out, result = 0);
1437 LASSERT(!obj->oo_hl_head);
1438 obj->oo_hl_head = ldiskfs_htree_lock_head_alloc(HTREE_HBITS_DEF);
1440 GOTO(out, result = (!obj->oo_hl_head ? -ENOMEM : 0));
1443 if (result || !obj->oo_inode) {
1444 if (!IS_ERR_OR_NULL(inode))
1447 obj->oo_inode = NULL;
1449 fid_zero(&oic->oic_fid);
1452 LINVRNT(osd_invariant(obj));
1457 * Concurrency: shouldn't matter.
1459 static void osd_object_init0(struct osd_object *obj)
1461 LASSERT(obj->oo_inode != NULL);
1462 obj->oo_dt.do_body_ops = &osd_body_ops;
1463 obj->oo_dt.do_lu.lo_header->loh_attr |=
1464 (LOHA_EXISTS | (obj->oo_inode->i_mode & S_IFMT));
1468 * Concurrency: no concurrent access is possible that early in object
1471 static int osd_object_init(const struct lu_env *env, struct lu_object *l,
1472 const struct lu_object_conf *conf)
1474 struct osd_object *obj = osd_obj(l);
1477 LINVRNT(osd_invariant(obj));
1479 if (OBD_FAIL_PRECHECK(OBD_FAIL_MDS_LLOG_UMOUNT_RACE) &&
1480 cfs_fail_val == 2) {
1481 struct osd_thread_info *info = osd_oti_get(env);
1482 struct osd_idmap_cache *oic = &info->oti_cache;
1483 /* invalidate thread cache */
1484 memset(&oic->oic_fid, 0, sizeof(oic->oic_fid));
1486 if (fid_is_otable_it(&l->lo_header->loh_fid)) {
1487 obj->oo_dt.do_ops = &osd_obj_otable_it_ops;
1488 l->lo_header->loh_attr |= LOHA_EXISTS;
1492 result = osd_fid_lookup(env, obj, lu_object_fid(l), conf);
1493 obj->oo_dt.do_body_ops = &osd_body_ops_new;
1494 if (result == 0 && obj->oo_inode != NULL) {
1495 struct osd_thread_info *oti = osd_oti_get(env);
1496 struct lustre_ost_attrs *loa = &oti->oti_ost_attrs;
1498 osd_object_init0(obj);
1499 if (unlikely(obj->oo_header))
1502 result = osd_get_lma(oti, obj->oo_inode,
1503 &oti->oti_obj_dentry, loa);
1506 * Convert LMAI flags to lustre LMA flags
1507 * and cache it to oo_lma_flags
1510 lma_to_lustre_flags(loa->loa_lma.lma_incompat);
1511 } else if (result == -ENODATA) {
1515 obj->oo_dirent_count = LU_DIRENT_COUNT_UNSET;
1517 LINVRNT(osd_invariant(obj));
1522 * The first part of oxe_buf is xattr name, and is '\0' terminated.
1523 * The left part is for value, binary mode.
1525 struct osd_xattr_entry {
1526 struct list_head oxe_list;
1530 struct rcu_head oxe_rcu;
1534 static int osd_oxc_get(struct osd_object *obj, const char *name,
1537 struct osd_xattr_entry *tmp;
1538 struct osd_xattr_entry *oxe = NULL;
1539 size_t namelen = strlen(name);
1543 list_for_each_entry_rcu(tmp, &obj->oo_xattr_list, oxe_list) {
1544 if (namelen == tmp->oxe_namelen &&
1545 strncmp(name, tmp->oxe_buf, namelen) == 0) {
1552 GOTO(out, rc = -ENOENT);
1554 if (!oxe->oxe_exist)
1555 GOTO(out, rc = -ENODATA);
1558 rc = oxe->oxe_len - sizeof(*oxe) - oxe->oxe_namelen - 1;
1561 if (buf->lb_buf == NULL)
1564 if (buf->lb_len < rc)
1565 GOTO(out, rc = -ERANGE);
1567 memcpy(buf->lb_buf, &oxe->oxe_buf[namelen + 1], rc);
1574 static void osd_oxc_free(struct rcu_head *head)
1576 struct osd_xattr_entry *oxe;
1578 oxe = container_of(head, struct osd_xattr_entry, oxe_rcu);
1579 OBD_FREE(oxe, oxe->oxe_len);
1582 static void osd_oxc_add(struct osd_object *obj, const char *name,
1583 const char *buf, int buflen)
1585 struct osd_xattr_entry *oxe;
1586 struct osd_xattr_entry *old = NULL;
1587 struct osd_xattr_entry *tmp;
1588 size_t namelen = strlen(name);
1589 size_t len = sizeof(*oxe) + namelen + 1 + buflen;
1591 OBD_ALLOC(oxe, len);
1595 INIT_LIST_HEAD(&oxe->oxe_list);
1597 oxe->oxe_namelen = namelen;
1598 memcpy(oxe->oxe_buf, name, namelen);
1600 LASSERT(buf != NULL);
1601 memcpy(oxe->oxe_buf + namelen + 1, buf, buflen);
1602 oxe->oxe_exist = true;
1604 oxe->oxe_exist = false;
1607 /* this should be rarely called, just remove old and add new */
1608 spin_lock(&obj->oo_guard);
1609 list_for_each_entry(tmp, &obj->oo_xattr_list, oxe_list) {
1610 if (namelen == tmp->oxe_namelen &&
1611 strncmp(name, tmp->oxe_buf, namelen) == 0) {
1617 list_replace_rcu(&old->oxe_list, &oxe->oxe_list);
1618 call_rcu(&old->oxe_rcu, osd_oxc_free);
1620 list_add_tail_rcu(&oxe->oxe_list, &obj->oo_xattr_list);
1622 spin_unlock(&obj->oo_guard);
1625 static void osd_oxc_del(struct osd_object *obj, const char *name)
1627 struct osd_xattr_entry *oxe;
1628 size_t namelen = strlen(name);
1630 spin_lock(&obj->oo_guard);
1631 list_for_each_entry(oxe, &obj->oo_xattr_list, oxe_list) {
1632 if (namelen == oxe->oxe_namelen &&
1633 strncmp(name, oxe->oxe_buf, namelen) == 0) {
1634 list_del_rcu(&oxe->oxe_list);
1635 call_rcu(&oxe->oxe_rcu, osd_oxc_free);
1639 spin_unlock(&obj->oo_guard);
1642 static void osd_oxc_fini(struct osd_object *obj)
1644 struct osd_xattr_entry *oxe, *next;
1646 list_for_each_entry_safe(oxe, next, &obj->oo_xattr_list, oxe_list) {
1647 list_del(&oxe->oxe_list);
1648 OBD_FREE(oxe, oxe->oxe_len);
1653 * Concurrency: no concurrent access is possible that late in object
1656 static void osd_object_free(const struct lu_env *env, struct lu_object *l)
1658 struct osd_object *obj = osd_obj(l);
1659 struct lu_object_header *h = obj->oo_header;
1661 LINVRNT(osd_invariant(obj));
1664 dt_object_fini(&obj->oo_dt);
1665 if (obj->oo_hl_head != NULL)
1666 ldiskfs_htree_lock_head_free(obj->oo_hl_head);
1667 /* obj doesn't contain an lu_object_header, so we don't need call_rcu */
1670 lu_object_header_free(h);
1674 * Concurrency: no concurrent access is possible that late in object
1677 static void osd_index_fini(struct osd_object *o)
1679 struct iam_container *bag;
1681 if (o->oo_dir != NULL) {
1682 bag = &o->oo_dir->od_container;
1683 if (o->oo_inode != NULL) {
1684 if (bag->ic_object == o->oo_inode)
1685 iam_container_fini(bag);
1687 OBD_FREE_PTR(o->oo_dir);
1693 OSD_TXN_OI_DELETE_CREDITS = 20,
1694 OSD_TXN_INODE_DELETE_CREDITS = 20
1701 #if OSD_THANDLE_STATS
1703 * Set time when the handle is allocated
1705 static void osd_th_alloced(struct osd_thandle *oth)
1707 oth->oth_alloced = ktime_get();
1711 * Set time when the handle started
1713 static void osd_th_started(struct osd_thandle *oth)
1715 oth->oth_started = ktime_get();
1719 * Check whether the we deal with this handle for too long.
1721 static void __osd_th_check_slow(void *oth, struct osd_device *dev,
1722 ktime_t alloced, ktime_t started,
1725 ktime_t now = ktime_get();
1727 LASSERT(dev != NULL);
1729 lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_STARTING,
1730 ktime_us_delta(started, alloced));
1731 lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_OPEN,
1732 ktime_us_delta(closed, started));
1733 lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_CLOSING,
1734 ktime_us_delta(now, closed));
1736 if (ktime_before(ktime_add_ns(alloced, 30 * NSEC_PER_SEC), now)) {
1737 CWARN("transaction handle %p was open for too long: now %lld, alloced %lld, started %lld, closed %lld\n",
1738 oth, now, alloced, started, closed);
1739 libcfs_debug_dumpstack(NULL);
1743 #define OSD_CHECK_SLOW_TH(oth, dev, expr) \
1745 ktime_t __closed = ktime_get(); \
1746 ktime_t __alloced = oth->oth_alloced; \
1747 ktime_t __started = oth->oth_started; \
1750 __osd_th_check_slow(oth, dev, __alloced, __started, __closed); \
1753 #else /* OSD_THANDLE_STATS */
1755 #define osd_th_alloced(h) do {} while(0)
1756 #define osd_th_started(h) do {} while(0)
1757 #define OSD_CHECK_SLOW_TH(oth, dev, expr) expr
1759 #endif /* OSD_THANDLE_STATS */
1762 * Concurrency: doesn't access mutable data.
1764 static int osd_param_is_not_sane(const struct osd_device *dev,
1765 const struct thandle *th)
1767 struct osd_thandle *oh = container_of(th, typeof(*oh), ot_super);
1769 return oh->ot_credits > osd_transaction_size(dev);
1773 * Concurrency: shouldn't matter.
1775 static void osd_trans_commit_cb(struct super_block *sb,
1776 struct ldiskfs_journal_cb_entry *jcb, int error)
1778 struct osd_thandle *oh = container_of(jcb, struct osd_thandle, ot_jcb);
1779 struct thandle *th = &oh->ot_super;
1780 struct lu_device *lud = &th->th_dev->dd_lu_dev;
1781 struct osd_device *osd = osd_dev(lud);
1782 struct dt_txn_commit_cb *dcb, *tmp;
1784 LASSERT(oh->ot_handle == NULL);
1787 CERROR("transaction @0x%p commit error: %d\n", th, error);
1789 OBD_FAIL_TIMEOUT(OBD_FAIL_OST_DELAY_TRANS, 40);
1790 /* call per-transaction callbacks if any */
1791 list_for_each_entry_safe(dcb, tmp, &oh->ot_commit_dcb_list,
1793 LASSERTF(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC,
1794 "commit callback entry: magic=%x name='%s'\n",
1795 dcb->dcb_magic, dcb->dcb_name);
1796 list_del_init(&dcb->dcb_linkage);
1797 dcb->dcb_func(NULL, th, dcb, error);
1800 lu_ref_del_at(&lud->ld_reference, &oh->ot_dev_link, "osd-tx", th);
1801 if (atomic_dec_and_test(&osd->od_commit_cb_in_flight))
1802 wake_up(&osd->od_commit_cb_done);
1808 static struct thandle *osd_trans_create(const struct lu_env *env,
1809 struct dt_device *d)
1811 struct osd_thread_info *oti = osd_oti_get(env);
1812 struct osd_iobuf *iobuf = &oti->oti_iobuf;
1813 struct osd_thandle *oh;
1819 CERROR("%s: someone try to start transaction under "
1820 "readonly mode, should be disabled.\n",
1821 osd_name(osd_dt_dev(d)));
1823 RETURN(ERR_PTR(-EROFS));
1826 /* on pending IO in this thread should left from prev. request */
1827 LASSERT(atomic_read(&iobuf->dr_numreqs) == 0);
1829 sb_start_write(osd_sb(osd_dt_dev(d)));
1831 OBD_ALLOC_GFP(oh, sizeof(*oh), GFP_NOFS);
1833 sb_end_write(osd_sb(osd_dt_dev(d)));
1834 RETURN(ERR_PTR(-ENOMEM));
1837 oh->ot_quota_trans = &oti->oti_quota_trans;
1838 memset(oh->ot_quota_trans, 0, sizeof(*oh->ot_quota_trans));
1843 oh->oh_declared_ext = 0;
1844 INIT_LIST_HEAD(&oh->ot_commit_dcb_list);
1845 INIT_LIST_HEAD(&oh->ot_stop_dcb_list);
1846 INIT_LIST_HEAD(&oh->ot_trunc_locks);
1849 memset(oti->oti_declare_ops, 0,
1850 sizeof(oti->oti_declare_ops));
1851 memset(oti->oti_declare_ops_cred, 0,
1852 sizeof(oti->oti_declare_ops_cred));
1853 memset(oti->oti_declare_ops_used, 0,
1854 sizeof(oti->oti_declare_ops_used));
1856 oti->oti_ins_cache_depth++;
1861 void osd_trans_dump_creds(const struct lu_env *env, struct thandle *th)
1863 struct osd_thread_info *oti = osd_oti_get(env);
1864 struct osd_thandle *oh;
1866 oh = container_of(th, struct osd_thandle, ot_super);
1867 LASSERT(oh != NULL);
1869 CWARN(" create: %u/%u/%u, destroy: %u/%u/%u\n",
1870 oti->oti_declare_ops[OSD_OT_CREATE],
1871 oti->oti_declare_ops_cred[OSD_OT_CREATE],
1872 oti->oti_declare_ops_used[OSD_OT_CREATE],
1873 oti->oti_declare_ops[OSD_OT_DESTROY],
1874 oti->oti_declare_ops_cred[OSD_OT_DESTROY],
1875 oti->oti_declare_ops_used[OSD_OT_DESTROY]);
1876 CWARN(" attr_set: %u/%u/%u, xattr_set: %u/%u/%u\n",
1877 oti->oti_declare_ops[OSD_OT_ATTR_SET],
1878 oti->oti_declare_ops_cred[OSD_OT_ATTR_SET],
1879 oti->oti_declare_ops_used[OSD_OT_ATTR_SET],
1880 oti->oti_declare_ops[OSD_OT_XATTR_SET],
1881 oti->oti_declare_ops_cred[OSD_OT_XATTR_SET],
1882 oti->oti_declare_ops_used[OSD_OT_XATTR_SET]);
1883 CWARN(" write: %u/%u/%u, punch: %u/%u/%u, quota %u/%u/%u\n",
1884 oti->oti_declare_ops[OSD_OT_WRITE],
1885 oti->oti_declare_ops_cred[OSD_OT_WRITE],
1886 oti->oti_declare_ops_used[OSD_OT_WRITE],
1887 oti->oti_declare_ops[OSD_OT_PUNCH],
1888 oti->oti_declare_ops_cred[OSD_OT_PUNCH],
1889 oti->oti_declare_ops_used[OSD_OT_PUNCH],
1890 oti->oti_declare_ops[OSD_OT_QUOTA],
1891 oti->oti_declare_ops_cred[OSD_OT_QUOTA],
1892 oti->oti_declare_ops_used[OSD_OT_QUOTA]);
1893 CWARN(" insert: %u/%u/%u, delete: %u/%u/%u\n",
1894 oti->oti_declare_ops[OSD_OT_INSERT],
1895 oti->oti_declare_ops_cred[OSD_OT_INSERT],
1896 oti->oti_declare_ops_used[OSD_OT_INSERT],
1897 oti->oti_declare_ops[OSD_OT_DELETE],
1898 oti->oti_declare_ops_cred[OSD_OT_DELETE],
1899 oti->oti_declare_ops_used[OSD_OT_DELETE]);
1900 CWARN(" ref_add: %u/%u/%u, ref_del: %u/%u/%u\n",
1901 oti->oti_declare_ops[OSD_OT_REF_ADD],
1902 oti->oti_declare_ops_cred[OSD_OT_REF_ADD],
1903 oti->oti_declare_ops_used[OSD_OT_REF_ADD],
1904 oti->oti_declare_ops[OSD_OT_REF_DEL],
1905 oti->oti_declare_ops_cred[OSD_OT_REF_DEL],
1906 oti->oti_declare_ops_used[OSD_OT_REF_DEL]);
1910 * Concurrency: shouldn't matter.
1912 static int osd_trans_start(const struct lu_env *env, struct dt_device *d,
1915 struct osd_thread_info *oti = osd_oti_get(env);
1916 struct osd_device *dev = osd_dt_dev(d);
1918 struct osd_thandle *oh;
1923 LASSERT(current->journal_info == NULL);
1925 oh = container_of(th, struct osd_thandle, ot_super);
1926 LASSERT(oh != NULL);
1927 LASSERT(oh->ot_handle == NULL);
1929 rc = dt_txn_hook_start(env, d, th);
1933 if (unlikely(osd_param_is_not_sane(dev, th))) {
1934 static unsigned long last_printed;
1935 static int last_credits;
1938 * don't make noise on a tiny testing systems
1939 * actual credits misuse will be caught anyway
1941 if (last_credits != oh->ot_credits &&
1942 time_after(jiffies, last_printed +
1943 cfs_time_seconds(60)) &&
1944 osd_transaction_size(dev) > 512) {
1945 CWARN("%s: credits %u > trans_max %u\n", osd_name(dev),
1946 oh->ot_credits, osd_transaction_size(dev));
1947 osd_trans_dump_creds(env, th);
1948 libcfs_debug_dumpstack(NULL);
1949 last_credits = oh->ot_credits;
1950 last_printed = jiffies;
1953 * XXX Limit the credits to 'max_transaction_buffers', and
1954 * let the underlying filesystem to catch the error if
1955 * we really need so many credits.
1957 * This should be removed when we can calculate the
1958 * credits precisely.
1960 oh->ot_credits = osd_transaction_size(dev);
1961 } else if (ldiskfs_track_declares_assert != 0) {
1963 * reserve few credits to prevent an assertion in JBD
1964 * our debugging mechanism will be able to detected
1965 * overuse. this can help to debug single-update
1968 oh->ot_credits += 10;
1969 if (unlikely(osd_param_is_not_sane(dev, th)))
1970 oh->ot_credits = osd_transaction_size(dev);
1973 if (OBD_FAIL_CHECK(OBD_FAIL_OSD_TXN_START))
1974 GOTO(out, rc = -EIO);
1977 * XXX temporary stuff. Some abstraction layer should
1980 jh = osd_journal_start_sb(osd_sb(dev), LDISKFS_HT_MISC, oh->ot_credits);
1984 LASSERT(oti->oti_txns == 0);
1986 atomic_inc(&dev->od_commit_cb_in_flight);
1987 lu_ref_add_at(&d->dd_lu_dev.ld_reference, &oh->ot_dev_link,
1998 static int osd_seq_exists(const struct lu_env *env,
1999 struct osd_device *osd, u64 seq)
2001 struct lu_seq_range *range = &osd_oti_get(env)->oti_seq_range;
2002 struct seq_server_site *ss = osd_seq_site(osd);
2007 LASSERT(ss != NULL);
2008 LASSERT(ss->ss_server_fld != NULL);
2010 rc = osd_fld_lookup(env, osd, seq, range);
2013 CERROR("%s: can't lookup FLD sequence %#llx: rc = %d\n",
2014 osd_name(osd), seq, rc);
2018 RETURN(ss->ss_node_id == range->lsr_index);
2021 static void osd_trans_stop_cb(struct osd_thandle *oth, int result)
2023 struct dt_txn_commit_cb *dcb;
2024 struct dt_txn_commit_cb *tmp;
2026 /* call per-transaction stop callbacks if any */
2027 list_for_each_entry_safe(dcb, tmp, &oth->ot_stop_dcb_list,
2029 LASSERTF(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC,
2030 "commit callback entry: magic=%x name='%s'\n",
2031 dcb->dcb_magic, dcb->dcb_name);
2032 list_del_init(&dcb->dcb_linkage);
2033 dcb->dcb_func(NULL, &oth->ot_super, dcb, result);
2038 * Concurrency: shouldn't matter.
2040 static int osd_trans_stop(const struct lu_env *env, struct dt_device *dt,
2043 struct osd_thread_info *oti = osd_oti_get(env);
2044 struct osd_thandle *oh;
2045 struct osd_iobuf *iobuf = &oti->oti_iobuf;
2046 struct osd_device *osd = osd_dt_dev(th->th_dev);
2047 struct qsd_instance *qsd = osd_def_qsd(osd);
2048 struct lquota_trans *qtrans;
2049 LIST_HEAD(truncates);
2050 int rc = 0, remove_agents = 0;
2054 oh = container_of(th, struct osd_thandle, ot_super);
2056 remove_agents = oh->ot_remove_agents;
2058 qtrans = oh->ot_quota_trans;
2059 oh->ot_quota_trans = NULL;
2061 /* move locks to local list, stop tx, execute truncates */
2062 list_splice(&oh->ot_trunc_locks, &truncates);
2064 if (oh->ot_handle != NULL) {
2067 handle_t *hdl = oh->ot_handle;
2070 * add commit callback
2071 * notice we don't do this in osd_trans_start()
2072 * as underlying transaction can change during truncate
2074 ldiskfs_journal_callback_add(hdl, osd_trans_commit_cb,
2077 LASSERT(oti->oti_txns == 1);
2080 rc = dt_txn_hook_stop(env, th);
2082 CERROR("%s: failed in transaction hook: rc = %d\n",
2085 osd_trans_stop_cb(oh, rc);
2086 /* hook functions might modify th_sync */
2087 hdl->h_sync = th->th_sync;
2089 oh->ot_handle = NULL;
2090 OSD_CHECK_SLOW_TH(oh, osd, rc2 = ldiskfs_journal_stop(hdl));
2092 CERROR("%s: failed to stop transaction: rc = %d\n",
2093 osd_name(osd), rc2);
2097 /* We preserve the origin behavior of ignoring any
2098 * failures with the underlying punch / truncate
2099 * operation. We do record for debugging if an error
2100 * does occur in the lctl dk logs.
2102 rc2 = osd_process_truncates(env, &truncates);
2104 CERROR("%s: failed truncate process: rc = %d\n",
2105 osd_name(osd), rc2);
2107 osd_trans_stop_cb(oh, th->th_result);
2111 osd_trunc_unlock_all(env, &truncates);
2113 /* inform the quota slave device that the transaction is stopping */
2114 qsd_op_end(env, qsd, qtrans);
2117 * as we want IO to journal and data IO be concurrent, we don't block
2118 * awaiting data IO completion in osd_do_bio(), instead we wait here
2119 * once transaction is submitted to the journal. all reqular requests
2120 * don't do direct IO (except read/write), thus this wait_event becomes
2123 * IMPORTANT: we have to wait till any IO submited by the thread is
2124 * completed otherwise iobuf may be corrupted by different request
2126 wait_event(iobuf->dr_wait,
2127 atomic_read(&iobuf->dr_numreqs) == 0);
2128 osd_fini_iobuf(osd, iobuf);
2130 rc = iobuf->dr_error;
2132 if (unlikely(remove_agents != 0))
2133 osd_process_scheduled_agent_removals(env, osd);
2135 LASSERT(oti->oti_ins_cache_depth > 0);
2136 oti->oti_ins_cache_depth--;
2137 /* reset OI cache for safety */
2138 if (oti->oti_ins_cache_depth == 0)
2139 oti->oti_ins_cache_used = 0;
2141 sb_end_write(osd_sb(osd));
2146 static int osd_trans_cb_add(struct thandle *th, struct dt_txn_commit_cb *dcb)
2148 struct osd_thandle *oh = container_of(th, struct osd_thandle,
2151 LASSERT(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC);
2152 LASSERT(&dcb->dcb_func != NULL);
2153 if (dcb->dcb_flags & DCB_TRANS_STOP)
2154 list_add(&dcb->dcb_linkage, &oh->ot_stop_dcb_list);
2156 list_add(&dcb->dcb_linkage, &oh->ot_commit_dcb_list);
2162 * Called just before object is freed. Releases all resources except for
2163 * object itself (that is released by osd_object_free()).
2165 * Concurrency: no concurrent access is possible that late in object
2168 static void osd_object_delete(const struct lu_env *env, struct lu_object *l)
2170 struct osd_object *obj = osd_obj(l);
2171 struct qsd_instance *qsd = osd_def_qsd(osd_obj2dev(obj));
2172 struct inode *inode = obj->oo_inode;
2177 LINVRNT(osd_invariant(obj));
2180 * If object is unlinked remove fid->ino mapping from object index.
2183 osd_index_fini(obj);
2188 if (osd_has_index(obj) && obj->oo_dt.do_index_ops == &osd_index_iam_ops)
2189 ldiskfs_set_inode_flag(inode, LDISKFS_INODE_JOURNAL_DATA);
2191 uid = i_uid_read(inode);
2192 gid = i_gid_read(inode);
2193 projid = i_projid_read(inode);
2195 obj->oo_inode = NULL;
2198 /* do not rebalance quota if the caller needs to release memory
2199 * otherwise qsd_refresh_usage() may went into a new ldiskfs
2200 * transaction and risk to deadlock - LU-12178 */
2201 if (current->flags & (PF_MEMALLOC | PF_KSWAPD))
2204 if (!obj->oo_header && qsd) {
2205 struct osd_thread_info *info = osd_oti_get(env);
2206 struct lquota_id_info *qi = &info->oti_qi;
2208 /* Release granted quota to master if necessary */
2209 qi->lqi_id.qid_uid = uid;
2210 qsd_op_adjust(env, qsd, &qi->lqi_id, USRQUOTA);
2212 qi->lqi_id.qid_uid = gid;
2213 qsd_op_adjust(env, qsd, &qi->lqi_id, GRPQUOTA);
2215 qi->lqi_id.qid_uid = projid;
2216 qsd_op_adjust(env, qsd, &qi->lqi_id, PRJQUOTA);
2221 * Concurrency: ->loo_object_release() is called under site spin-lock.
2223 static void osd_object_release(const struct lu_env *env,
2224 struct lu_object *l)
2226 struct osd_object *o = osd_obj(l);
2229 * nobody should be releasing a non-destroyed object with nlink=0
2230 * the API allows this, but ldiskfs doesn't like and then report
2231 * this inode as deleted
2233 LASSERT(!(o->oo_destroyed == 0 && o->oo_inode &&
2234 o->oo_inode->i_nlink == 0));
2238 * Concurrency: shouldn't matter.
2240 static int osd_object_print(const struct lu_env *env, void *cookie,
2241 lu_printer_t p, const struct lu_object *l)
2243 struct osd_object *o = osd_obj(l);
2244 struct iam_descr *d;
2246 if (o->oo_dir != NULL)
2247 d = o->oo_dir->od_container.ic_descr;
2250 return (*p)(env, cookie,
2251 LUSTRE_OSD_LDISKFS_NAME"-object@%p(i:%p:%lu/%u)[%s]",
2253 o->oo_inode ? o->oo_inode->i_ino : 0UL,
2254 o->oo_inode ? o->oo_inode->i_generation : 0,
2255 d ? d->id_ops->id_name : "plain");
2259 * Concurrency: shouldn't matter.
2261 int osd_statfs(const struct lu_env *env, struct dt_device *d,
2262 struct obd_statfs *sfs, struct obd_statfs_info *info)
2264 struct osd_device *osd = osd_dt_dev(d);
2265 struct super_block *sb = osd_sb(osd);
2266 struct kstatfs *ksfs;
2270 if (unlikely(osd->od_mnt == NULL))
2271 return -EINPROGRESS;
2273 /* osd_lproc.c call this without env, allocate ksfs for that case */
2274 if (unlikely(env == NULL)) {
2275 OBD_ALLOC_PTR(ksfs);
2279 ksfs = &osd_oti_get(env)->oti_ksfs;
2282 result = sb->s_op->statfs(sb->s_root, ksfs);
2286 statfs_pack(sfs, ksfs);
2287 if (unlikely(sb->s_flags & SB_RDONLY))
2288 sfs->os_state |= OS_STATFS_READONLY;
2290 sfs->os_state |= osd->od_nonrotational ? OS_STATFS_NONROT : 0;
2292 if (ldiskfs_has_feature_extents(sb))
2293 sfs->os_maxbytes = sb->s_maxbytes;
2295 sfs->os_maxbytes = LDISKFS_SB(sb)->s_bitmap_maxbytes;
2298 * Reserve some space so to avoid fragmenting the filesystem too much.
2299 * Fragmentation not only impacts performance, but can also increase
2300 * metadata overhead significantly, causing grant calculation to be
2303 * Reserve 0.78% of total space, at least 8MB for small filesystems.
2305 BUILD_BUG_ON(OSD_STATFS_RESERVED <= LDISKFS_MAX_BLOCK_SIZE);
2306 reserved = OSD_STATFS_RESERVED >> sb->s_blocksize_bits;
2307 if (likely(sfs->os_blocks >= reserved << OSD_STATFS_RESERVED_SHIFT))
2308 reserved = sfs->os_blocks >> OSD_STATFS_RESERVED_SHIFT;
2310 sfs->os_blocks -= reserved;
2311 sfs->os_bfree -= min(reserved, sfs->os_bfree);
2312 sfs->os_bavail -= min(reserved, sfs->os_bavail);
2315 if (unlikely(env == NULL))
2321 * Estimate space needed for file creations. We assume the largest filename
2322 * which is 2^64 - 1, hence a filename of 20 chars.
2323 * This is 28 bytes per object which is 28MB for 1M objects ... no so bad.
2325 #ifdef __LDISKFS_DIR_REC_LEN
2326 #define PER_OBJ_USAGE __LDISKFS_DIR_REC_LEN(20)
2328 #define PER_OBJ_USAGE LDISKFS_DIR_REC_LEN(20)
2332 * Concurrency: doesn't access mutable data.
2334 static void osd_conf_get(const struct lu_env *env,
2335 const struct dt_device *dev,
2336 struct dt_device_param *param)
2338 struct osd_device *d = osd_dt_dev(dev);
2339 struct super_block *sb = osd_sb(d);
2340 struct blk_integrity *bi = bdev_get_integrity(sb->s_bdev);
2345 * XXX should be taken from not-yet-existing fs abstraction layer.
2347 param->ddp_max_name_len = LDISKFS_NAME_LEN;
2348 param->ddp_max_nlink = LDISKFS_LINK_MAX;
2349 param->ddp_symlink_max = sb->s_blocksize;
2350 param->ddp_mount_type = LDD_MT_LDISKFS;
2351 if (ldiskfs_has_feature_extents(sb))
2352 param->ddp_maxbytes = sb->s_maxbytes;
2354 param->ddp_maxbytes = LDISKFS_SB(sb)->s_bitmap_maxbytes;
2356 * inode are statically allocated, so per-inode space consumption
2357 * is the space consumed by the directory entry
2359 param->ddp_inodespace = PER_OBJ_USAGE;
2361 * EXT_INIT_MAX_LEN is the theoretical maximum extent size (32k blocks
2362 * is 128MB) which is unlikely to be hit in real life. Report a smaller
2363 * maximum length to not under-count the actual number of extents
2364 * needed for writing a file if there are sub-optimal block allocations.
2366 param->ddp_max_extent_blks = EXT_INIT_MAX_LEN >> 1;
2367 /* worst-case extent insertion metadata overhead */
2368 param->ddp_extent_tax = 6 * LDISKFS_BLOCK_SIZE(sb);
2369 param->ddp_mntopts = 0;
2370 if (test_opt(sb, XATTR_USER))
2371 param->ddp_mntopts |= MNTOPT_USERXATTR;
2372 if (test_opt(sb, POSIX_ACL))
2373 param->ddp_mntopts |= MNTOPT_ACL;
2376 * LOD might calculate the max stripe count based on max_ea_size,
2377 * so we need take account in the overhead as well,
2378 * xattr_header + magic + xattr_entry_head
2380 ea_overhead = sizeof(struct ldiskfs_xattr_header) + sizeof(__u32) +
2381 LDISKFS_XATTR_LEN(XATTR_NAME_MAX_LEN);
2383 #if defined(LDISKFS_FEATURE_INCOMPAT_EA_INODE)
2384 if (ldiskfs_has_feature_ea_inode(sb))
2385 param->ddp_max_ea_size = LDISKFS_XATTR_MAX_LARGE_EA_SIZE -
2389 param->ddp_max_ea_size = sb->s_blocksize - ea_overhead;
2391 if (param->ddp_max_ea_size > OBD_MAX_EA_SIZE)
2392 param->ddp_max_ea_size = OBD_MAX_EA_SIZE;
2395 * Preferred RPC size for efficient disk IO. 4MB shows good
2396 * all-around performance for ldiskfs, but use bigalloc chunk size
2397 * by default if larger.
2399 #if defined(LDISKFS_CLUSTER_SIZE)
2400 if (LDISKFS_CLUSTER_SIZE(sb) > DT_DEF_BRW_SIZE)
2401 param->ddp_brw_size = LDISKFS_CLUSTER_SIZE(sb);
2404 param->ddp_brw_size = DT_DEF_BRW_SIZE;
2406 param->ddp_t10_cksum_type = 0;
2408 unsigned short interval = blk_integrity_interval(bi);
2409 name = blk_integrity_name(bi);
2417 if (strncmp(name, "T10-DIF-TYPE",
2418 sizeof("T10-DIF-TYPE") - 1) == 0) {
2419 /* also skip "1/3-" at end */
2420 const int type_off = sizeof("T10-DIF-TYPE.");
2421 char type_number = name[type_off - 2];
2423 if (interval != 512 && interval != 4096) {
2424 CERROR("%s: unsupported T10PI sector size %u\n",
2425 d->od_svname, interval);
2426 } else if (type_number != '1' && type_number != '3') {
2427 CERROR("%s: unsupported T10PI type %s\n",
2428 d->od_svname, name);
2429 } else if (strcmp(name + type_off, "CRC") == 0) {
2430 d->od_t10_type = type_number == '1' ?
2431 OSD_T10_TYPE1_CRC : OSD_T10_TYPE3_CRC;
2432 param->ddp_t10_cksum_type = interval == 512 ?
2433 OBD_CKSUM_T10CRC512 :
2435 } else if (strcmp(name + type_off, "IP") == 0) {
2436 d->od_t10_type = type_number == '1' ?
2437 OSD_T10_TYPE1_IP : OSD_T10_TYPE3_IP;
2438 param->ddp_t10_cksum_type = interval == 512 ?
2439 OBD_CKSUM_T10IP512 :
2442 CERROR("%s: unsupported checksum type of T10PI type '%s'\n",
2443 d->od_svname, name);
2447 CERROR("%s: unsupported T10PI type '%s'\n",
2448 d->od_svname, name);
2452 param->ddp_has_lseek_data_hole = true;
2455 static struct super_block *osd_mnt_sb_get(const struct dt_device *d)
2457 return osd_sb(osd_dt_dev(d));
2461 * Concurrency: shouldn't matter.
2463 static int osd_sync(const struct lu_env *env, struct dt_device *d)
2466 struct super_block *s = osd_sb(osd_dt_dev(d));
2469 down_read(&s->s_umount);
2470 rc = s->s_op->sync_fs(s, 1);
2471 up_read(&s->s_umount);
2473 CDEBUG(D_CACHE, "%s: synced OSD: rc = %d\n", osd_dt_dev(d)->od_svname,
2480 * Start commit for OSD device.
2482 * An implementation of dt_commit_async method for OSD device.
2483 * Asychronously starts underlayng fs sync and thereby a transaction
2486 * \param env environment
2487 * \param d dt device
2489 * \see dt_device_operations
2491 static int osd_commit_async(const struct lu_env *env,
2492 struct dt_device *d)
2494 struct super_block *s = osd_sb(osd_dt_dev(d));
2499 CDEBUG(D_HA, "%s: async commit OSD\n", osd_dt_dev(d)->od_svname);
2500 down_read(&s->s_umount);
2501 rc = s->s_op->sync_fs(s, 0);
2502 up_read(&s->s_umount);
2508 * Concurrency: shouldn't matter.
2510 static int osd_ro(const struct lu_env *env, struct dt_device *d)
2512 struct super_block *sb = osd_sb(osd_dt_dev(d));
2513 struct block_device *dev = sb->s_bdev;
2514 int rc = -EOPNOTSUPP;
2518 CERROR("%s: %lx CANNOT BE SET READONLY: rc = %d\n",
2519 osd_dt_dev(d)->od_svname, (long)dev, rc);
2525 * Note: we do not count into QUOTA here.
2526 * If we mount with --data_journal we may need more.
2528 const int osd_dto_credits_noquota[DTO_NR] = {
2531 * INDEX_EXTRA_TRANS_BLOCKS(8) +
2532 * SINGLEDATA_TRANS_BLOCKS(8)
2533 * XXX Note: maybe iam need more, since iam have more level than
2536 [DTO_INDEX_INSERT] = 16,
2539 * just modify a single entry, probably merge few within a block
2541 [DTO_INDEX_DELETE] = 1,
2545 [DTO_INDEX_UPDATE] = 16,
2547 * 4(inode, inode bits, groups, GDT)
2548 * notice: OI updates are counted separately with DTO_INDEX_INSERT
2550 [DTO_OBJECT_CREATE] = 4,
2552 * 4(inode, inode bits, groups, GDT)
2553 * notice: OI updates are counted separately with DTO_INDEX_DELETE
2555 [DTO_OBJECT_DELETE] = 4,
2557 * Attr set credits (inode)
2559 [DTO_ATTR_SET_BASE] = 1,
2561 * Xattr set. The same as xattr of EXT3.
2562 * DATA_TRANS_BLOCKS(14)
2563 * XXX Note: in original MDS implmentation INDEX_EXTRA_TRANS_BLOCKS
2564 * are also counted in. Do not know why?
2566 [DTO_XATTR_SET] = 14,
2568 * credits for inode change during write.
2570 [DTO_WRITE_BASE] = 3,
2572 * credits for single block write.
2574 [DTO_WRITE_BLOCK] = 14,
2576 * Attr set credits for chown.
2577 * This is extra credits for setattr, and it is null without quota
2579 [DTO_ATTR_SET_CHOWN] = 0
2582 /* reserve or free quota for some operation */
2583 static int osd_reserve_or_free_quota(const struct lu_env *env,
2584 struct dt_device *dev,
2585 enum quota_type type, __u64 uid,
2586 __u64 gid, __s64 count, bool is_md)
2589 struct osd_device *osd = osd_dt_dev(dev);
2590 struct osd_thread_info *info = osd_oti_get(env);
2591 struct lquota_id_info *qi = &info->oti_qi;
2592 struct qsd_instance *qsd = NULL;
2597 qsd = osd->od_quota_slave_md;
2599 qsd = osd->od_quota_slave_dt;
2601 rc = quota_reserve_or_free(env, qsd, qi, type, uid, gid, count, is_md);
2605 static const struct dt_device_operations osd_dt_ops = {
2606 .dt_root_get = osd_root_get,
2607 .dt_statfs = osd_statfs,
2608 .dt_trans_create = osd_trans_create,
2609 .dt_trans_start = osd_trans_start,
2610 .dt_trans_stop = osd_trans_stop,
2611 .dt_trans_cb_add = osd_trans_cb_add,
2612 .dt_conf_get = osd_conf_get,
2613 .dt_mnt_sb_get = osd_mnt_sb_get,
2614 .dt_sync = osd_sync,
2616 .dt_commit_async = osd_commit_async,
2617 .dt_reserve_or_free_quota = osd_reserve_or_free_quota,
2620 static void osd_read_lock(const struct lu_env *env, struct dt_object *dt,
2623 struct osd_object *obj = osd_dt_obj(dt);
2624 struct osd_thread_info *oti = osd_oti_get(env);
2626 LINVRNT(osd_invariant(obj));
2628 LASSERT(obj->oo_owner != env);
2629 down_read_nested(&obj->oo_sem, role);
2631 LASSERT(obj->oo_owner == NULL);
2635 static void osd_write_lock(const struct lu_env *env, struct dt_object *dt,
2638 struct osd_object *obj = osd_dt_obj(dt);
2639 struct osd_thread_info *oti = osd_oti_get(env);
2641 LINVRNT(osd_invariant(obj));
2643 LASSERT(obj->oo_owner != env);
2644 down_write_nested(&obj->oo_sem, role);
2646 LASSERT(obj->oo_owner == NULL);
2647 obj->oo_owner = env;
2651 static void osd_read_unlock(const struct lu_env *env, struct dt_object *dt)
2653 struct osd_object *obj = osd_dt_obj(dt);
2654 struct osd_thread_info *oti = osd_oti_get(env);
2656 LINVRNT(osd_invariant(obj));
2658 LASSERT(oti->oti_r_locks > 0);
2660 up_read(&obj->oo_sem);
2663 static void osd_write_unlock(const struct lu_env *env, struct dt_object *dt)
2665 struct osd_object *obj = osd_dt_obj(dt);
2666 struct osd_thread_info *oti = osd_oti_get(env);
2668 LINVRNT(osd_invariant(obj));
2670 LASSERT(obj->oo_owner == env);
2671 LASSERT(oti->oti_w_locks > 0);
2673 obj->oo_owner = NULL;
2674 up_write(&obj->oo_sem);
2677 static int osd_write_locked(const struct lu_env *env, struct dt_object *dt)
2679 struct osd_object *obj = osd_dt_obj(dt);
2681 LINVRNT(osd_invariant(obj));
2683 return obj->oo_owner == env;
2686 static void osd_inode_getattr(const struct lu_env *env,
2687 struct inode *inode, struct lu_attr *attr)
2689 attr->la_valid |= LA_ATIME | LA_MTIME | LA_CTIME | LA_MODE |
2690 LA_SIZE | LA_BLOCKS | LA_UID | LA_GID |
2691 LA_PROJID | LA_FLAGS | LA_NLINK | LA_RDEV |
2692 LA_BLKSIZE | LA_TYPE | LA_BTIME;
2694 attr->la_atime = inode->i_atime.tv_sec;
2695 attr->la_mtime = inode->i_mtime.tv_sec;
2696 attr->la_ctime = inode->i_ctime.tv_sec;
2697 attr->la_btime = LDISKFS_I(inode)->i_crtime.tv_sec;
2698 attr->la_mode = inode->i_mode;
2699 attr->la_size = i_size_read(inode);
2700 attr->la_blocks = inode->i_blocks;
2701 attr->la_uid = i_uid_read(inode);
2702 attr->la_gid = i_gid_read(inode);
2703 attr->la_projid = i_projid_read(inode);
2704 attr->la_flags = ll_inode_to_ext_flags(inode->i_flags);
2705 attr->la_nlink = inode->i_nlink;
2706 attr->la_rdev = inode->i_rdev;
2707 attr->la_blksize = 1 << inode->i_blkbits;
2708 attr->la_blkbits = inode->i_blkbits;
2710 * Ext4 did not transfer inherit flags from raw inode
2711 * to inode flags, and ext4 internally test raw inode
2712 * @i_flags directly. Instead of patching ext4, we do it here.
2714 if (LDISKFS_I(inode)->i_flags & LUSTRE_PROJINHERIT_FL)
2715 attr->la_flags |= LUSTRE_PROJINHERIT_FL;
2718 static int osd_dirent_count(const struct lu_env *env, struct dt_object *dt,
2721 struct osd_object *obj = osd_dt_obj(dt);
2722 const struct dt_it_ops *iops;
2728 LASSERT(S_ISDIR(obj->oo_inode->i_mode));
2729 LASSERT(fid_is_namespace_visible(lu_object_fid(&obj->oo_dt.do_lu)));
2731 if (obj->oo_dirent_count != LU_DIRENT_COUNT_UNSET) {
2732 *count = obj->oo_dirent_count;
2736 /* directory not initialized yet */
2737 if (!dt->do_index_ops) {
2742 iops = &dt->do_index_ops->dio_it;
2743 it = iops->init(env, dt, LUDA_64BITHASH);
2745 RETURN(PTR_ERR(it));
2747 rc = iops->load(env, it, 0);
2749 if (rc == -ENODATA) {
2756 rc = iops->next(env, it);
2758 for (*count = 0; rc == 0 || rc == -ESTALE; rc = iops->next(env, it)) {
2762 if (iops->key_size(env, it) == 0)
2768 obj->oo_dirent_count = *count;
2773 iops->fini(env, it);
2778 static int osd_attr_get(const struct lu_env *env, struct dt_object *dt,
2779 struct lu_attr *attr)
2781 struct osd_object *obj = osd_dt_obj(dt);
2784 if (unlikely(!dt_object_exists(dt)))
2786 if (unlikely(obj->oo_destroyed))
2789 LASSERT(!dt_object_remote(dt));
2790 LINVRNT(osd_invariant(obj));
2792 spin_lock(&obj->oo_guard);
2793 osd_inode_getattr(env, obj->oo_inode, attr);
2794 if (obj->oo_lma_flags & LUSTRE_ORPHAN_FL) {
2795 attr->la_valid |= LA_FLAGS;
2796 attr->la_flags |= LUSTRE_ORPHAN_FL;
2798 if (obj->oo_lma_flags & LUSTRE_ENCRYPT_FL) {
2799 attr->la_valid |= LA_FLAGS;
2800 attr->la_flags |= LUSTRE_ENCRYPT_FL;
2802 spin_unlock(&obj->oo_guard);
2804 if (S_ISDIR(obj->oo_inode->i_mode) &&
2805 fid_is_namespace_visible(lu_object_fid(&dt->do_lu)))
2806 rc = osd_dirent_count(env, dt, &attr->la_dirent_count);
2811 static int osd_declare_attr_qid(const struct lu_env *env,
2812 struct osd_object *obj,
2813 struct osd_thandle *oh, long long bspace,
2814 qid_t old_id, qid_t new_id, bool enforce,
2818 struct osd_thread_info *info = osd_oti_get(env);
2819 struct lquota_id_info *qi = &info->oti_qi;
2821 qi->lqi_type = type;
2822 /* inode accounting */
2823 qi->lqi_is_blk = false;
2825 /* one more inode for the new id ... */
2826 qi->lqi_id.qid_uid = new_id;
2828 /* Reserve credits for the new id */
2829 rc = osd_declare_qid(env, oh, qi, NULL, enforce, NULL);
2830 if (rc == -EDQUOT || rc == -EINPROGRESS)
2835 /* and one less inode for the current id */
2836 qi->lqi_id.qid_uid = old_id;
2838 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
2839 if (rc == -EDQUOT || rc == -EINPROGRESS)
2844 /* block accounting */
2845 qi->lqi_is_blk = true;
2847 /* more blocks for the new id ... */
2848 qi->lqi_id.qid_uid = new_id;
2849 qi->lqi_space = bspace;
2851 * Credits for the new uid has been reserved, re-use "obj"
2852 * to save credit reservation.
2854 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
2855 if (rc == -EDQUOT || rc == -EINPROGRESS)
2860 /* and finally less blocks for the current uid */
2861 qi->lqi_id.qid_uid = old_id;
2862 qi->lqi_space = -bspace;
2863 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
2864 if (rc == -EDQUOT || rc == -EINPROGRESS)
2870 static int osd_declare_attr_set(const struct lu_env *env,
2871 struct dt_object *dt,
2872 const struct lu_attr *attr,
2873 struct thandle *handle)
2875 struct osd_thandle *oh;
2876 struct osd_object *obj;
2885 LASSERT(dt != NULL);
2886 LASSERT(handle != NULL);
2888 obj = osd_dt_obj(dt);
2889 LASSERT(osd_invariant(obj));
2891 oh = container_of(handle, struct osd_thandle, ot_super);
2892 LASSERT(oh->ot_handle == NULL);
2894 osd_trans_declare_op(env, oh, OSD_OT_ATTR_SET,
2895 osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
2897 osd_trans_declare_op(env, oh, OSD_OT_XATTR_SET,
2898 osd_dto_credits_noquota[DTO_XATTR_SET]);
2900 if (attr == NULL || obj->oo_inode == NULL)
2903 bspace = obj->oo_inode->i_blocks << 9;
2904 bspace = toqb(bspace);
2907 * Changing ownership is always preformed by super user, it should not
2908 * fail with EDQUOT unless required explicitly.
2910 * We still need to call the osd_declare_qid() to calculate the journal
2911 * credits for updating quota accounting files and to trigger quota
2912 * space adjustment once the operation is completed.
2914 if (attr->la_valid & LA_UID || attr->la_valid & LA_GID) {
2916 uid = i_uid_read(obj->oo_inode);
2917 enforce = (attr->la_valid & LA_UID) && (attr->la_uid != uid);
2918 rc = osd_declare_attr_qid(env, obj, oh, bspace, uid,
2919 attr->la_uid, enforce, USRQUOTA);
2923 gid = i_gid_read(obj->oo_inode);
2924 CDEBUG(D_QUOTA, "declare uid %d -> %d gid %d -> %d\n", uid,
2925 attr->la_uid, gid, attr->la_gid);
2926 enforce = (attr->la_valid & LA_GID) && (attr->la_gid != gid);
2927 rc = osd_declare_attr_qid(env, obj, oh, bspace, gid,
2928 attr->la_gid, enforce, GRPQUOTA);
2933 #ifdef HAVE_PROJECT_QUOTA
2934 if (attr->la_valid & LA_PROJID) {
2935 __u32 projid = i_projid_read(obj->oo_inode);
2937 enforce = (attr->la_valid & LA_PROJID) &&
2938 (attr->la_projid != projid);
2939 rc = osd_declare_attr_qid(env, obj, oh, bspace,
2940 (qid_t)projid, (qid_t)attr->la_projid,
2949 static int osd_inode_setattr(const struct lu_env *env,
2950 struct inode *inode, const struct lu_attr *attr)
2952 __u64 bits = attr->la_valid;
2954 /* Only allow set size for regular file */
2955 if (!S_ISREG(inode->i_mode))
2956 bits &= ~(LA_SIZE | LA_BLOCKS);
2961 if (bits & LA_ATIME)
2962 inode->i_atime = osd_inode_time(inode, attr->la_atime);
2963 if (bits & LA_CTIME)
2964 inode->i_ctime = osd_inode_time(inode, attr->la_ctime);
2965 if (bits & LA_MTIME)
2966 inode->i_mtime = osd_inode_time(inode, attr->la_mtime);
2967 if (bits & LA_SIZE) {
2968 spin_lock(&inode->i_lock);
2969 LDISKFS_I(inode)->i_disksize = attr->la_size;
2970 i_size_write(inode, attr->la_size);
2971 spin_unlock(&inode->i_lock);
2975 * OSD should not change "i_blocks" which is used by quota.
2976 * "i_blocks" should be changed by ldiskfs only.
2979 inode->i_mode = (inode->i_mode & S_IFMT) |
2980 (attr->la_mode & ~S_IFMT);
2982 i_uid_write(inode, attr->la_uid);
2984 i_gid_write(inode, attr->la_gid);
2985 if (bits & LA_PROJID)
2986 i_projid_write(inode, attr->la_projid);
2987 if (bits & LA_NLINK)
2988 set_nlink(inode, attr->la_nlink);
2990 inode->i_rdev = attr->la_rdev;
2992 if (bits & LA_FLAGS) {
2993 /* always keep S_NOCMTIME */
2994 inode->i_flags = ll_ext_to_inode_flags(attr->la_flags) |
2996 #if defined(S_ENCRYPTED)
2997 /* Always remove S_ENCRYPTED, because ldiskfs must not be
2998 * aware of encryption status. It is just stored into LMA
2999 * so that it can be forwared to client side.
3001 inode->i_flags &= ~S_ENCRYPTED;
3004 * Ext4 did not transfer inherit flags from
3005 * @inode->i_flags to raw inode i_flags when writing
3006 * flags, we do it explictly here.
3008 if (attr->la_flags & LUSTRE_PROJINHERIT_FL)
3009 LDISKFS_I(inode)->i_flags |= LUSTRE_PROJINHERIT_FL;
3011 LDISKFS_I(inode)->i_flags &= ~LUSTRE_PROJINHERIT_FL;
3016 #ifdef HAVE_PROJECT_QUOTA
3017 static int osd_transfer_project(struct inode *inode, __u32 projid,
3018 struct thandle *handle)
3020 struct super_block *sb = inode->i_sb;
3021 struct ldiskfs_inode_info *ei = LDISKFS_I(inode);
3024 struct ldiskfs_iloc iloc;
3025 struct ldiskfs_inode *raw_inode;
3026 struct dquot *transfer_to[LDISKFS_MAXQUOTAS] = { };
3028 if (!ldiskfs_has_feature_project(sb)) {
3029 LASSERT(__kprojid_val(LDISKFS_I(inode)->i_projid)
3030 == LDISKFS_DEF_PROJID);
3031 if (projid != LDISKFS_DEF_PROJID)
3037 if (LDISKFS_INODE_SIZE(sb) <= LDISKFS_GOOD_OLD_INODE_SIZE)
3040 kprojid = make_kprojid(&init_user_ns, (projid_t)projid);
3041 if (projid_eq(kprojid, LDISKFS_I(inode)->i_projid))
3044 err = ldiskfs_get_inode_loc(inode, &iloc);
3048 raw_inode = ldiskfs_raw_inode(&iloc);
3049 if (!LDISKFS_FITS_IN_INODE(raw_inode, ei, i_projid)) {
3050 struct osd_thandle *oh = container_of(handle,
3054 * try to expand inode size automatically.
3056 ldiskfs_mark_inode_dirty(oh->ot_handle, inode);
3057 if (!LDISKFS_FITS_IN_INODE(raw_inode, ei, i_projid)) {
3065 dquot_initialize(inode);
3066 transfer_to[PRJQUOTA] = dqget(sb, make_kqid_projid(kprojid));
3067 if (transfer_to[PRJQUOTA]) {
3068 lock_dquot_transfer(inode);
3069 err = __dquot_transfer(inode, transfer_to);
3070 unlock_dquot_transfer(inode);
3071 dqput(transfer_to[PRJQUOTA]);
3080 static int osd_quota_transfer(struct inode *inode, const struct lu_attr *attr,
3081 struct thandle *handle)
3085 if ((attr->la_valid & LA_UID && attr->la_uid != i_uid_read(inode)) ||
3086 (attr->la_valid & LA_GID && attr->la_gid != i_gid_read(inode))) {
3090 "executing dquot_transfer inode %ld uid %d -> %d gid %d -> %d\n",
3091 inode->i_ino, i_uid_read(inode), attr->la_uid,
3092 i_gid_read(inode), attr->la_gid);
3094 dquot_initialize(inode);
3096 if (attr->la_valid & LA_UID)
3097 iattr.ia_valid |= ATTR_UID;
3098 if (attr->la_valid & LA_GID)
3099 iattr.ia_valid |= ATTR_GID;
3100 iattr.ia_uid = make_kuid(&init_user_ns, attr->la_uid);
3101 iattr.ia_gid = make_kgid(&init_user_ns, attr->la_gid);
3103 lock_dquot_transfer(inode);
3104 rc = dquot_transfer(inode, &iattr);
3105 unlock_dquot_transfer(inode);
3107 CERROR("%s: quota transfer failed. Is quota enforcement enabled on the ldiskfs filesystem? rc = %d\n",
3108 osd_ino2name(inode), rc);
3113 /* Handle project id transfer here properly */
3114 if (attr->la_valid & LA_PROJID &&
3115 attr->la_projid != i_projid_read(inode)) {
3116 if (!projid_valid(make_kprojid(&init_user_ns, attr->la_projid)))
3118 #ifdef HAVE_PROJECT_QUOTA
3119 rc = osd_transfer_project(inode, attr->la_projid, handle);
3124 CERROR("%s: quota transfer failed. Is project enforcement enabled on the ldiskfs filesystem? rc = %d\n",
3125 osd_ino2name(inode), rc);
3132 static int osd_attr_set(const struct lu_env *env,
3133 struct dt_object *dt,
3134 const struct lu_attr *attr,
3135 struct thandle *handle)
3137 struct osd_object *obj = osd_dt_obj(dt);
3138 struct inode *inode;
3141 if (!dt_object_exists(dt))
3144 LASSERT(handle != NULL);
3145 LASSERT(!dt_object_remote(dt));
3146 LASSERT(osd_invariant(obj));
3148 osd_trans_exec_op(env, handle, OSD_OT_ATTR_SET);
3150 if (OBD_FAIL_CHECK(OBD_FAIL_OSD_FID_MAPPING) &&
3151 !osd_obj2dev(obj)->od_is_ost) {
3152 struct osd_thread_info *oti = osd_oti_get(env);
3153 const struct lu_fid *fid0 = lu_object_fid(&dt->do_lu);
3154 struct lu_fid *fid1 = &oti->oti_fid;
3155 struct osd_inode_id *id = &oti->oti_id;
3156 struct iam_path_descr *ipd;
3157 struct iam_container *bag;
3158 struct osd_thandle *oh;
3161 fid_cpu_to_be(fid1, fid0);
3162 memset(id, 1, sizeof(*id));
3163 bag = &osd_fid2oi(osd_dev(dt->do_lu.lo_dev),
3164 fid0)->oi_dir.od_container;
3165 ipd = osd_idx_ipd_get(env, bag);
3166 if (unlikely(ipd == NULL))
3169 oh = container_of(handle, struct osd_thandle, ot_super);
3170 rc = iam_update(oh->ot_handle, bag,
3171 (const struct iam_key *)fid1,
3172 (const struct iam_rec *)id, ipd);
3173 osd_ipd_put(env, bag, ipd);
3174 return(rc > 0 ? 0 : rc);
3177 inode = obj->oo_inode;