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.sun.com/software/products/lustre/docs/GPLv2.pdf
20 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21 * CA 95054 USA or visit www.sun.com if you need additional information or
27 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2011, 2014, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * lustre/osd/osd_handler.c
38 * Top-level entry points into osd module
40 * Author: Nikita Danilov <nikita@clusterfs.com>
41 * Pravin Shelar <pravin.shelar@sun.com> : Added fid in dirent
44 #define DEBUG_SUBSYSTEM S_OSD
46 #include <linux/module.h>
47 #include <linux/user_namespace.h>
48 #ifdef HAVE_UIDGID_HEADER
49 # include <linux/uidgid.h>
52 /* LUSTRE_VERSION_CODE */
53 #include <lustre_ver.h>
54 /* prerequisite for linux/xattr.h */
55 #include <linux/types.h>
56 /* prerequisite for linux/xattr.h */
58 /* XATTR_{REPLACE,CREATE} */
59 #include <linux/xattr.h>
61 #include <ldiskfs/ldiskfs.h>
62 #include <ldiskfs/xattr.h>
65 * struct OBD_{ALLOC,FREE}*()
68 #include <obd_support.h>
69 /* struct ptlrpc_thread */
70 #include <lustre_net.h>
71 #include <lustre_fid.h>
73 #include <lustre_param.h>
75 #include "osd_internal.h"
76 #include "osd_dynlocks.h"
78 /* llo_* api support */
79 #include <md_object.h>
80 #include <lustre_quota.h>
82 #include <lustre_linkea.h>
85 CFS_MODULE_PARM(ldiskfs_pdo, "i", int, 0644,
86 "ldiskfs with parallel directory operations");
88 int ldiskfs_track_declares_assert;
89 CFS_MODULE_PARM(ldiskfs_track_declares_assert, "i", int, 0644,
90 "LBUG during tracking of declares");
92 /* Slab to allocate dynlocks */
93 struct kmem_cache *dynlock_cachep;
95 /* Slab to allocate osd_it_ea */
96 struct kmem_cache *osd_itea_cachep;
98 static struct lu_kmem_descr ldiskfs_caches[] = {
100 .ckd_cache = &dynlock_cachep,
101 .ckd_name = "dynlock_cache",
102 .ckd_size = sizeof(struct dynlock_handle)
105 .ckd_cache = &osd_itea_cachep,
106 .ckd_name = "osd_itea_cache",
107 .ckd_size = sizeof(struct osd_it_ea)
114 static const char dot[] = ".";
115 static const char dotdot[] = "..";
116 static const char remote_obj_dir[] = "REM_OBJ_DIR";
118 static const struct lu_object_operations osd_lu_obj_ops;
119 static const struct dt_object_operations osd_obj_ops;
120 static const struct dt_object_operations osd_obj_ea_ops;
121 static const struct dt_object_operations osd_obj_otable_it_ops;
122 static const struct dt_index_operations osd_index_iam_ops;
123 static const struct dt_index_operations osd_index_ea_ops;
125 int osd_trans_declare_op2rb[] = {
126 [OSD_OT_ATTR_SET] = OSD_OT_ATTR_SET,
127 [OSD_OT_PUNCH] = OSD_OT_MAX,
128 [OSD_OT_XATTR_SET] = OSD_OT_XATTR_SET,
129 [OSD_OT_CREATE] = OSD_OT_DESTROY,
130 [OSD_OT_DESTROY] = OSD_OT_CREATE,
131 [OSD_OT_REF_ADD] = OSD_OT_REF_DEL,
132 [OSD_OT_REF_DEL] = OSD_OT_REF_ADD,
133 [OSD_OT_WRITE] = OSD_OT_WRITE,
134 [OSD_OT_INSERT] = OSD_OT_DELETE,
135 [OSD_OT_DELETE] = OSD_OT_INSERT,
136 [OSD_OT_QUOTA] = OSD_OT_MAX,
139 static int osd_has_index(const struct osd_object *obj)
141 return obj->oo_dt.do_index_ops != NULL;
144 static int osd_object_invariant(const struct lu_object *l)
146 return osd_invariant(osd_obj(l));
150 * Concurrency: doesn't matter
154 * Concurrency: doesn't matter
156 static int osd_write_locked(const struct lu_env *env, struct osd_object *o)
158 struct osd_thread_info *oti = osd_oti_get(env);
159 return oti->oti_w_locks > 0 && o->oo_owner == env;
163 * Concurrency: doesn't access mutable data
165 static int osd_root_get(const struct lu_env *env,
166 struct dt_device *dev, struct lu_fid *f)
168 lu_local_obj_fid(f, OSD_FS_ROOT_OID);
173 * OSD object methods.
177 * Concurrency: no concurrent access is possible that early in object
180 static struct lu_object *osd_object_alloc(const struct lu_env *env,
181 const struct lu_object_header *hdr,
184 struct osd_object *mo;
190 l = &mo->oo_dt.do_lu;
191 dt_object_init(&mo->oo_dt, NULL, d);
192 mo->oo_dt.do_ops = &osd_obj_ea_ops;
193 l->lo_ops = &osd_lu_obj_ops;
194 init_rwsem(&mo->oo_sem);
195 init_rwsem(&mo->oo_ext_idx_sem);
196 spin_lock_init(&mo->oo_guard);
203 int osd_get_lma(struct osd_thread_info *info, struct inode *inode,
204 struct dentry *dentry, struct lustre_mdt_attrs *lma)
208 CLASSERT(LMA_OLD_SIZE >= sizeof(*lma));
209 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LMA,
210 info->oti_mdt_attrs_old, LMA_OLD_SIZE);
212 if ((void *)lma != (void *)info->oti_mdt_attrs_old)
213 memcpy(lma, info->oti_mdt_attrs_old, sizeof(*lma));
215 lustre_lma_swab(lma);
216 /* Check LMA compatibility */
217 if (lma->lma_incompat & ~LMA_INCOMPAT_SUPP) {
218 CWARN("%.16s: unsupported incompat LMA feature(s) %#x "
219 "for fid = "DFID", ino = %lu\n",
220 LDISKFS_SB(inode->i_sb)->s_es->s_volume_name,
221 lma->lma_incompat & ~LMA_INCOMPAT_SUPP,
222 PFID(&lma->lma_self_fid), inode->i_ino);
225 } else if (rc == 0) {
233 * retrieve object from backend ext fs.
235 struct inode *osd_iget(struct osd_thread_info *info, struct osd_device *dev,
236 struct osd_inode_id *id)
238 struct inode *inode = NULL;
240 inode = ldiskfs_iget(osd_sb(dev), id->oii_ino);
242 CDEBUG(D_INODE, "no inode: ino = %u, rc = %ld\n",
243 id->oii_ino, PTR_ERR(inode));
244 } else if (id->oii_gen != OSD_OII_NOGEN &&
245 inode->i_generation != id->oii_gen) {
246 CDEBUG(D_INODE, "unmatched inode: ino = %u, oii_gen = %u, "
247 "i_generation = %u\n",
248 id->oii_ino, id->oii_gen, inode->i_generation);
250 inode = ERR_PTR(-ESTALE);
251 } else if (inode->i_nlink == 0) {
252 /* due to parallel readdir and unlink,
253 * we can have dead inode here. */
254 CDEBUG(D_INODE, "stale inode: ino = %u\n", id->oii_ino);
256 inode = ERR_PTR(-ESTALE);
257 } else if (is_bad_inode(inode)) {
258 CWARN("%.16s: bad inode: ino = %u\n",
259 LDISKFS_SB(osd_sb(dev))->s_es->s_volume_name, id->oii_ino);
261 inode = ERR_PTR(-ENOENT);
263 if (id->oii_gen == OSD_OII_NOGEN)
264 osd_id_gen(id, inode->i_ino, inode->i_generation);
266 /* Do not update file c/mtime in ldiskfs.
267 * NB: we don't have any lock to protect this because we don't
268 * have reference on osd_object now, but contention with
269 * another lookup + attr_set can't happen in the tiny window
270 * between if (...) and set S_NOCMTIME. */
271 if (!(inode->i_flags & S_NOCMTIME))
272 inode->i_flags |= S_NOCMTIME;
277 static struct inode *
278 osd_iget_fid(struct osd_thread_info *info, struct osd_device *dev,
279 struct osd_inode_id *id, struct lu_fid *fid)
281 struct lustre_mdt_attrs *lma = &info->oti_mdt_attrs;
285 inode = osd_iget(info, dev, id);
289 rc = osd_get_lma(info, inode, &info->oti_obj_dentry, lma);
291 *fid = lma->lma_self_fid;
292 } else if (rc == -ENODATA) {
293 if (unlikely(inode == osd_sb(dev)->s_root->d_inode))
294 lu_local_obj_fid(fid, OSD_FS_ROOT_OID);
296 lu_igif_build(fid, inode->i_ino, inode->i_generation);
304 static struct inode *osd_iget_check(struct osd_thread_info *info,
305 struct osd_device *dev,
306 const struct lu_fid *fid,
307 struct osd_inode_id *id,
314 inode = ldiskfs_iget(osd_sb(dev), id->oii_ino);
317 if (!in_oi || (rc != -ENOENT && rc != -ESTALE)) {
318 CDEBUG(D_INODE, "no inode: ino = %u, rc = %d\n",
327 if (is_bad_inode(inode)) {
330 CDEBUG(D_INODE, "bad inode: ino = %u\n", id->oii_ino);
338 if (id->oii_gen != OSD_OII_NOGEN &&
339 inode->i_generation != id->oii_gen) {
342 CDEBUG(D_INODE, "unmatched inode: ino = %u, "
343 "oii_gen = %u, i_generation = %u\n",
344 id->oii_ino, id->oii_gen, inode->i_generation);
352 if (inode->i_nlink == 0) {
355 CDEBUG(D_INODE, "stale inode: ino = %u\n", id->oii_ino);
365 struct osd_inode_id saved_id = *id;
367 LASSERTF(rc == -ESTALE || rc == -ENOENT, "rc = %d\n", rc);
369 rc = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
370 /* XXX: There are some possible cases:
372 * Backup/restore caused the OI invalid.
374 * Someone unlinked the object but NOT removed
375 * the OI mapping, such as mount target device
376 * as ldiskfs, and modify something directly.
378 * Someone just removed the object between the
379 * former oi_lookup and the iget. It is normal.
380 * 4. Other failure cases.
382 * Generally, when the device is mounted, it will
383 * auto check whether the system is restored from
384 * file-level backup or not. We trust such detect
385 * to distinguish the 1st case from the 2nd case. */
387 if (!IS_ERR(inode) && inode->i_generation != 0 &&
388 inode->i_generation == id->oii_gen) {
391 __u32 level = D_LFSCK;
394 if (!thread_is_running(&dev->od_scrub.os_thread))
397 CDEBUG(level, "%s: the OI mapping for the FID "
398 DFID" become inconsistent, the given ID "
399 "%u/%u, the ID in OI mapping %u/%u\n",
400 osd_name(dev), PFID(fid),
401 saved_id.oii_ino, saved_id.oii_gen,
402 id->oii_ino, id->oii_ino);
406 if (id->oii_gen == OSD_OII_NOGEN)
407 osd_id_gen(id, inode->i_ino, inode->i_generation);
409 /* Do not update file c/mtime in ldiskfs.
410 * NB: we don't have any lock to protect this because we don't
411 * have reference on osd_object now, but contention with
412 * another lookup + attr_set can't happen in the tiny window
413 * between if (...) and set S_NOCMTIME. */
414 if (!(inode->i_flags & S_NOCMTIME))
415 inode->i_flags |= S_NOCMTIME;
432 * \retval +v: new filter_fid, does not contain self-fid
433 * \retval 0: filter_fid_old, contains self-fid
434 * \retval -v: other failure cases
436 int osd_get_idif(struct osd_thread_info *info, struct inode *inode,
437 struct dentry *dentry, struct lu_fid *fid)
439 struct filter_fid_old *ff = &info->oti_ff;
440 struct ost_id *ostid = &info->oti_ostid;
443 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_FID, ff, sizeof(*ff));
444 if (rc == sizeof(*ff)) {
446 ostid_set_seq(ostid, le64_to_cpu(ff->ff_seq));
447 ostid_set_id(ostid, le64_to_cpu(ff->ff_objid));
448 /* XXX: should use real OST index in the future. LU-3569 */
449 ostid_to_fid(fid, ostid, 0);
450 } else if (rc == sizeof(struct filter_fid)) {
452 } else if (rc >= 0) {
459 static int osd_lma_self_repair(struct osd_thread_info *info,
460 struct osd_device *osd, struct inode *inode,
461 const struct lu_fid *fid, __u32 compat)
466 LASSERT(current->journal_info == NULL);
468 jh = osd_journal_start_sb(osd_sb(osd), LDISKFS_HT_MISC,
469 osd_dto_credits_noquota[DTO_XATTR_SET]);
472 CWARN("%s: cannot start journal for lma_self_repair: rc = %d\n",
477 rc = osd_ea_fid_set(info, inode, fid, compat, 0);
479 CWARN("%s: cannot self repair the LMA: rc = %d\n",
481 ldiskfs_journal_stop(jh);
485 static int osd_check_lma(const struct lu_env *env, struct osd_object *obj)
487 struct osd_thread_info *info = osd_oti_get(env);
488 struct osd_device *osd = osd_obj2dev(obj);
489 struct lustre_mdt_attrs *lma = &info->oti_mdt_attrs;
490 struct inode *inode = obj->oo_inode;
491 struct dentry *dentry = &info->oti_obj_dentry;
492 struct lu_fid *fid = NULL;
493 const struct lu_fid *rfid = lu_object_fid(&obj->oo_dt.do_lu);
497 CLASSERT(LMA_OLD_SIZE >= sizeof(*lma));
498 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LMA,
499 info->oti_mdt_attrs_old, LMA_OLD_SIZE);
500 if (rc == -ENODATA && !fid_is_igif(rfid) && osd->od_check_ff) {
501 fid = &lma->lma_self_fid;
502 rc = osd_get_idif(info, inode, dentry, fid);
503 if ((rc > 0) || (rc == -ENODATA && osd->od_index_in_idif)) {
504 /* For the given OST-object, if it has neither LMA nor
505 * FID in XATTR_NAME_FID, then the given FID (which is
506 * contained in the @obj, from client RPC for locating
507 * the OST-object) is trusted. We use it to generate
509 osd_lma_self_repair(info, osd, inode, rfid,
515 if (unlikely(rc == -ENODATA))
523 lustre_lma_swab(lma);
524 if (unlikely((lma->lma_incompat & ~LMA_INCOMPAT_SUPP) ||
525 CFS_FAIL_CHECK(OBD_FAIL_OSD_LMA_INCOMPAT))) {
526 CWARN("%s: unsupported incompat LMA feature(s) %#x for "
527 "fid = "DFID", ino = %lu\n", osd_name(osd),
528 lma->lma_incompat & ~LMA_INCOMPAT_SUPP,
529 PFID(rfid), inode->i_ino);
532 fid = &lma->lma_self_fid;
536 if (fid != NULL && unlikely(!lu_fid_eq(rfid, fid))) {
537 __u32 level = D_LFSCK;
539 if (fid_is_idif(rfid) && fid_is_idif(fid)) {
540 struct ost_id *oi = &info->oti_ostid;
541 struct lu_fid *fid1 = &info->oti_fid3;
542 __u32 idx = fid_idif_ost_idx(rfid);
544 /* For old IDIF, the OST index is not part of the IDIF,
545 * Means that different OSTs may have the same IDIFs.
546 * Under such case, we need to make some compatible
547 * check to make sure to trigger OI scrub properly. */
548 if (idx != 0 && fid_idif_ost_idx(fid) == 0) {
549 /* Given @rfid is new, LMA is old. */
550 fid_to_ostid(fid, oi);
551 ostid_to_fid(fid1, oi, idx);
552 if (lu_fid_eq(fid1, rfid)) {
553 if (osd->od_index_in_idif)
554 osd_lma_self_repair(info, osd,
564 if (!thread_is_running(&osd->od_scrub.os_thread))
567 CDEBUG(level, "%s: FID "DFID" != self_fid "DFID"\n",
568 osd_name(osd), PFID(rfid), PFID(fid));
574 static int osd_fid_lookup(const struct lu_env *env, struct osd_object *obj,
575 const struct lu_fid *fid,
576 const struct lu_object_conf *conf)
578 struct osd_thread_info *info;
579 struct lu_device *ldev = obj->oo_dt.do_lu.lo_dev;
580 struct osd_device *dev;
581 struct osd_idmap_cache *oic;
582 struct osd_inode_id *id;
584 struct osd_scrub *scrub;
585 struct scrub_file *sf;
589 bool triggered = false;
592 LINVRNT(osd_invariant(obj));
593 LASSERT(obj->oo_inode == NULL);
594 LASSERTF(fid_is_sane(fid) || fid_is_idif(fid), DFID"\n", PFID(fid));
597 scrub = &dev->od_scrub;
598 sf = &scrub->os_file;
599 info = osd_oti_get(env);
601 oic = &info->oti_cache;
603 if (OBD_FAIL_CHECK(OBD_FAIL_OST_ENOENT))
606 /* For the object is created as locking anchor, or for the object to
607 * be created on disk. No need to osd_oi_lookup() at here because FID
608 * shouldn't never be re-used, if it's really a duplicate FID from
609 * unexpected reason, we should be able to detect it later by calling
610 * do_create->osd_oi_insert(). */
611 if (conf != NULL && conf->loc_flags & LOC_F_NEW)
612 GOTO(out, result = 0);
614 /* Search order: 1. per-thread cache. */
615 if (lu_fid_eq(fid, &oic->oic_fid) &&
616 likely(oic->oic_dev == dev)) {
622 if (!list_empty(&scrub->os_inconsistent_items)) {
623 /* Search order: 2. OI scrub pending list. */
624 result = osd_oii_lookup(dev, fid, id);
629 /* Search order: 3. OI files. */
630 result = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
631 if (result == -ENOENT) {
632 if (!fid_is_norm(fid) ||
633 fid_is_on_ost(info, dev, fid, OI_CHECK_FLD) ||
634 !ldiskfs_test_bit(osd_oi_fid2idx(dev,fid),
636 GOTO(out, result = 0);
647 inode = osd_iget_check(info, dev, fid, id, in_oi);
649 result = PTR_ERR(inode);
650 if (result == -ENOENT || result == -ESTALE) {
652 fid_zero(&oic->oic_fid);
654 GOTO(out, result = -ENOENT);
655 } else if (result == -EREMCHG) {
659 fid_zero(&oic->oic_fid);
661 if (unlikely(triggered))
662 GOTO(out, result = saved);
665 if (thread_is_running(&scrub->os_thread)) {
666 result = -EINPROGRESS;
667 } else if (!dev->od_noscrub) {
668 /* Since we do not know the right OI mapping,
669 * we have to trigger OI scrub to scan the
671 result = osd_scrub_start(dev, SS_AUTO_FULL |
672 SS_CLEAR_DRYRUN | SS_CLEAR_FAILOUT);
673 CDEBUG(D_LFSCK | D_CONSOLE, "%.16s: trigger OI "
674 "scrub by RPC for "DFID", rc = %d [1]\n",
675 osd_name(dev), PFID(fid),result);
676 if (result == 0 || result == -EALREADY)
677 result = -EINPROGRESS;
682 /* We still have chance to get the valid inode: for the
683 * object which is referenced by remote name entry, the
684 * object on the local MDT will be linked under the dir
685 * of "/REMOTE_PARENT_DIR" with its FID string as name.
687 * We do not know whether the object for the given FID
688 * is referenced by some remote name entry or not, and
689 * especially for DNE II, a multiple-linked object may
690 * have many name entries reside on many MDTs.
692 * To simplify the operation, OSD will not distinguish
693 * more, just lookup "/REMOTE_PARENT_DIR". Usually, it
694 * only happened for the RPC from other MDT during the
695 * OI scrub, or for the client side RPC with FID only,
696 * such as FID to path, or from old connected client. */
698 result = osd_lookup_in_remote_parent(info, dev,
711 obj->oo_inode = inode;
712 LASSERT(obj->oo_inode->i_sb == osd_sb(dev));
714 result = osd_check_lma(env, obj);
717 obj->oo_inode = NULL;
718 if (result == -EREMCHG) {
720 result = osd_oi_lookup(info, dev, fid, id,
723 fid_zero(&oic->oic_fid);
734 obj->oo_compat_dot_created = 1;
735 obj->oo_compat_dotdot_created = 1;
737 if (!S_ISDIR(inode->i_mode) || !ldiskfs_pdo) /* done */
738 GOTO(out, result = 0);
740 LASSERT(obj->oo_hl_head == NULL);
741 obj->oo_hl_head = ldiskfs_htree_lock_head_alloc(HTREE_HBITS_DEF);
742 if (obj->oo_hl_head == NULL) {
743 obj->oo_inode = NULL;
745 GOTO(out, result = -ENOMEM);
747 GOTO(out, result = 0);
750 LINVRNT(osd_invariant(obj));
755 * Concurrency: shouldn't matter.
757 static void osd_object_init0(struct osd_object *obj)
759 LASSERT(obj->oo_inode != NULL);
760 obj->oo_dt.do_body_ops = &osd_body_ops;
761 obj->oo_dt.do_lu.lo_header->loh_attr |=
762 (LOHA_EXISTS | (obj->oo_inode->i_mode & S_IFMT));
766 * Concurrency: no concurrent access is possible that early in object
769 static int osd_object_init(const struct lu_env *env, struct lu_object *l,
770 const struct lu_object_conf *conf)
772 struct osd_object *obj = osd_obj(l);
775 LINVRNT(osd_invariant(obj));
777 if (fid_is_otable_it(&l->lo_header->loh_fid)) {
778 obj->oo_dt.do_ops = &osd_obj_otable_it_ops;
779 l->lo_header->loh_attr |= LOHA_EXISTS;
783 result = osd_fid_lookup(env, obj, lu_object_fid(l), conf);
784 obj->oo_dt.do_body_ops = &osd_body_ops_new;
785 if (result == 0 && obj->oo_inode != NULL)
786 osd_object_init0(obj);
788 LINVRNT(osd_invariant(obj));
793 * Concurrency: no concurrent access is possible that late in object
796 static void osd_object_free(const struct lu_env *env, struct lu_object *l)
798 struct osd_object *obj = osd_obj(l);
800 LINVRNT(osd_invariant(obj));
802 dt_object_fini(&obj->oo_dt);
803 if (obj->oo_hl_head != NULL)
804 ldiskfs_htree_lock_head_free(obj->oo_hl_head);
809 * Concurrency: no concurrent access is possible that late in object
812 static void osd_index_fini(struct osd_object *o)
814 struct iam_container *bag;
816 if (o->oo_dir != NULL) {
817 bag = &o->oo_dir->od_container;
818 if (o->oo_inode != NULL) {
819 if (bag->ic_object == o->oo_inode)
820 iam_container_fini(bag);
822 OBD_FREE_PTR(o->oo_dir);
828 * Concurrency: no concurrent access is possible that late in object
829 * life-cycle (for all existing callers, that is. New callers have to provide
830 * their own locking.)
832 static int osd_inode_unlinked(const struct inode *inode)
834 return inode->i_nlink == 0;
838 OSD_TXN_OI_DELETE_CREDITS = 20,
839 OSD_TXN_INODE_DELETE_CREDITS = 20
846 #if OSD_THANDLE_STATS
848 * Set time when the handle is allocated
850 static void osd_th_alloced(struct osd_thandle *oth)
852 oth->oth_alloced = cfs_time_current();
856 * Set time when the handle started
858 static void osd_th_started(struct osd_thandle *oth)
860 oth->oth_started = cfs_time_current();
864 * Helper function to convert time interval to microseconds packed in
867 static long interval_to_usec(cfs_time_t start, cfs_time_t end)
871 cfs_duration_usec(cfs_time_sub(end, start), &val);
872 return val.tv_sec * 1000000 + val.tv_usec;
876 * Check whether the we deal with this handle for too long.
878 static void __osd_th_check_slow(void *oth, struct osd_device *dev,
879 cfs_time_t alloced, cfs_time_t started,
882 cfs_time_t now = cfs_time_current();
884 LASSERT(dev != NULL);
886 lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_STARTING,
887 interval_to_usec(alloced, started));
888 lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_OPEN,
889 interval_to_usec(started, closed));
890 lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_CLOSING,
891 interval_to_usec(closed, now));
893 if (cfs_time_before(cfs_time_add(alloced, cfs_time_seconds(30)), now)) {
894 CWARN("transaction handle %p was open for too long: "
896 "alloced "CFS_TIME_T" ,"
897 "started "CFS_TIME_T" ,"
898 "closed "CFS_TIME_T"\n",
899 oth, now, alloced, started, closed);
900 libcfs_debug_dumpstack(NULL);
904 #define OSD_CHECK_SLOW_TH(oth, dev, expr) \
906 cfs_time_t __closed = cfs_time_current(); \
907 cfs_time_t __alloced = oth->oth_alloced; \
908 cfs_time_t __started = oth->oth_started; \
911 __osd_th_check_slow(oth, dev, __alloced, __started, __closed); \
914 #else /* OSD_THANDLE_STATS */
916 #define osd_th_alloced(h) do {} while(0)
917 #define osd_th_started(h) do {} while(0)
918 #define OSD_CHECK_SLOW_TH(oth, dev, expr) expr
920 #endif /* OSD_THANDLE_STATS */
923 * Concurrency: doesn't access mutable data.
925 static int osd_param_is_not_sane(const struct osd_device *dev,
926 const struct thandle *th)
928 struct osd_thandle *oh = container_of(th, typeof(*oh), ot_super);
930 return oh->ot_credits > osd_transaction_size(dev);
934 * Concurrency: shouldn't matter.
936 static void osd_trans_commit_cb(struct super_block *sb,
937 struct ldiskfs_journal_cb_entry *jcb, int error)
939 struct osd_thandle *oh = container_of0(jcb, struct osd_thandle, ot_jcb);
940 struct thandle *th = &oh->ot_super;
941 struct lu_device *lud = &th->th_dev->dd_lu_dev;
942 struct dt_txn_commit_cb *dcb, *tmp;
944 LASSERT(oh->ot_handle == NULL);
947 CERROR("transaction @0x%p commit error: %d\n", th, error);
949 dt_txn_hook_commit(th);
951 /* call per-transaction callbacks if any */
952 list_for_each_entry_safe(dcb, tmp, &oh->ot_dcb_list, dcb_linkage) {
953 LASSERTF(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC,
954 "commit callback entry: magic=%x name='%s'\n",
955 dcb->dcb_magic, dcb->dcb_name);
956 list_del_init(&dcb->dcb_linkage);
957 dcb->dcb_func(NULL, th, dcb, error);
960 lu_ref_del_at(&lud->ld_reference, &oh->ot_dev_link, "osd-tx", th);
964 lu_context_exit(&th->th_ctx);
965 lu_context_fini(&th->th_ctx);
969 static struct thandle *osd_trans_create(const struct lu_env *env,
972 struct osd_thread_info *oti = osd_oti_get(env);
973 struct osd_iobuf *iobuf = &oti->oti_iobuf;
974 struct osd_thandle *oh;
978 /* on pending IO in this thread should left from prev. request */
979 LASSERT(atomic_read(&iobuf->dr_numreqs) == 0);
981 th = ERR_PTR(-ENOMEM);
982 OBD_ALLOC_GFP(oh, sizeof *oh, GFP_NOFS);
984 oh->ot_quota_trans = &oti->oti_quota_trans;
985 memset(oh->ot_quota_trans, 0, sizeof(*oh->ot_quota_trans));
989 th->th_tags = LCT_TX_HANDLE;
991 INIT_LIST_HEAD(&oh->ot_dcb_list);
994 memset(oti->oti_declare_ops, 0,
995 sizeof(oti->oti_declare_ops));
996 memset(oti->oti_declare_ops_rb, 0,
997 sizeof(oti->oti_declare_ops_rb));
998 memset(oti->oti_declare_ops_cred, 0,
999 sizeof(oti->oti_declare_ops_cred));
1000 oti->oti_rollback = false;
1006 * Concurrency: shouldn't matter.
1008 static int osd_trans_start(const struct lu_env *env, struct dt_device *d,
1011 struct osd_thread_info *oti = osd_oti_get(env);
1012 struct osd_device *dev = osd_dt_dev(d);
1014 struct osd_thandle *oh;
1019 LASSERT(current->journal_info == NULL);
1021 oh = container_of0(th, struct osd_thandle, ot_super);
1022 LASSERT(oh != NULL);
1023 LASSERT(oh->ot_handle == NULL);
1025 rc = dt_txn_hook_start(env, d, th);
1029 if (unlikely(osd_param_is_not_sane(dev, th))) {
1030 static unsigned long last_printed;
1031 static int last_credits;
1033 CWARN("%.16s: too many transaction credits (%d > %d)\n",
1034 LDISKFS_SB(osd_sb(dev))->s_es->s_volume_name,
1036 osd_journal(dev)->j_max_transaction_buffers);
1037 CWARN(" create: %u/%u, destroy: %u/%u\n",
1038 oti->oti_declare_ops[OSD_OT_CREATE],
1039 oti->oti_declare_ops_cred[OSD_OT_CREATE],
1040 oti->oti_declare_ops[OSD_OT_DESTROY],
1041 oti->oti_declare_ops_cred[OSD_OT_DESTROY]);
1042 CWARN(" attr_set: %u/%u, xattr_set: %u/%u\n",
1043 oti->oti_declare_ops[OSD_OT_ATTR_SET],
1044 oti->oti_declare_ops_cred[OSD_OT_ATTR_SET],
1045 oti->oti_declare_ops[OSD_OT_XATTR_SET],
1046 oti->oti_declare_ops_cred[OSD_OT_XATTR_SET]);
1047 CWARN(" write: %u/%u, punch: %u/%u, quota %u/%u\n",
1048 oti->oti_declare_ops[OSD_OT_WRITE],
1049 oti->oti_declare_ops_cred[OSD_OT_WRITE],
1050 oti->oti_declare_ops[OSD_OT_PUNCH],
1051 oti->oti_declare_ops_cred[OSD_OT_PUNCH],
1052 oti->oti_declare_ops[OSD_OT_QUOTA],
1053 oti->oti_declare_ops_cred[OSD_OT_QUOTA]);
1054 CWARN(" insert: %u/%u, delete: %u/%u\n",
1055 oti->oti_declare_ops[OSD_OT_INSERT],
1056 oti->oti_declare_ops_cred[OSD_OT_INSERT],
1057 oti->oti_declare_ops[OSD_OT_DELETE],
1058 oti->oti_declare_ops_cred[OSD_OT_DELETE]);
1059 CWARN(" ref_add: %u/%u, ref_del: %u/%u\n",
1060 oti->oti_declare_ops[OSD_OT_REF_ADD],
1061 oti->oti_declare_ops_cred[OSD_OT_REF_ADD],
1062 oti->oti_declare_ops[OSD_OT_REF_DEL],
1063 oti->oti_declare_ops_cred[OSD_OT_REF_DEL]);
1065 if (last_credits != oh->ot_credits &&
1066 time_after(jiffies, last_printed +
1067 msecs_to_jiffies(60 * MSEC_PER_SEC))) {
1068 libcfs_debug_dumpstack(NULL);
1069 last_credits = oh->ot_credits;
1070 last_printed = jiffies;
1072 /* XXX Limit the credits to 'max_transaction_buffers', and
1073 * let the underlying filesystem to catch the error if
1074 * we really need so many credits.
1076 * This should be removed when we can calculate the
1077 * credits precisely. */
1078 oh->ot_credits = osd_transaction_size(dev);
1082 * XXX temporary stuff. Some abstraction layer should
1085 jh = osd_journal_start_sb(osd_sb(dev), LDISKFS_HT_MISC, oh->ot_credits);
1089 LASSERT(oti->oti_txns == 0);
1090 lu_context_init(&th->th_ctx, th->th_tags);
1091 lu_context_enter(&th->th_ctx);
1093 lu_device_get(&d->dd_lu_dev);
1094 lu_ref_add_at(&d->dd_lu_dev.ld_reference, &oh->ot_dev_link,
1105 static int osd_seq_exists(const struct lu_env *env,
1106 struct osd_device *osd, u64 seq)
1108 struct lu_seq_range *range = &osd_oti_get(env)->oti_seq_range;
1109 struct seq_server_site *ss = osd_seq_site(osd);
1113 LASSERT(ss != NULL);
1114 LASSERT(ss->ss_server_fld != NULL);
1116 rc = osd_fld_lookup(env, osd, seq, range);
1119 CERROR("%s: can't lookup FLD sequence "LPX64
1120 ": rc = %d\n", osd_name(osd), seq, rc);
1124 RETURN(ss->ss_node_id == range->lsr_index);
1128 * Concurrency: shouldn't matter.
1130 static int osd_trans_stop(const struct lu_env *env, struct dt_device *dt,
1134 struct osd_thandle *oh;
1135 struct osd_thread_info *oti = osd_oti_get(env);
1136 struct osd_iobuf *iobuf = &oti->oti_iobuf;
1137 struct osd_device *osd = osd_dt_dev(th->th_dev);
1138 struct qsd_instance *qsd = osd->od_quota_slave;
1139 struct lquota_trans *qtrans;
1142 oh = container_of0(th, struct osd_thandle, ot_super);
1144 qtrans = oh->ot_quota_trans;
1145 oh->ot_quota_trans = NULL;
1147 if (oh->ot_handle != NULL) {
1148 handle_t *hdl = oh->ot_handle;
1151 * add commit callback
1152 * notice we don't do this in osd_trans_start()
1153 * as underlying transaction can change during truncate
1155 ldiskfs_journal_callback_add(hdl, osd_trans_commit_cb,
1158 LASSERT(oti->oti_txns == 1);
1160 rc = dt_txn_hook_stop(env, th);
1162 CERROR("%s: failed in transaction hook: rc = %d\n",
1165 /* hook functions might modify th_sync */
1166 hdl->h_sync = th->th_sync;
1168 oh->ot_handle = NULL;
1169 OSD_CHECK_SLOW_TH(oh, osd, rc = ldiskfs_journal_stop(hdl));
1171 CERROR("%s: failed to stop transaction: rc = %d\n",
1177 /* inform the quota slave device that the transaction is stopping */
1178 qsd_op_end(env, qsd, qtrans);
1180 /* as we want IO to journal and data IO be concurrent, we don't block
1181 * awaiting data IO completion in osd_do_bio(), instead we wait here
1182 * once transaction is submitted to the journal. all reqular requests
1183 * don't do direct IO (except read/write), thus this wait_event becomes
1186 * IMPORTANT: we have to wait till any IO submited by the thread is
1187 * completed otherwise iobuf may be corrupted by different request
1189 wait_event(iobuf->dr_wait,
1190 atomic_read(&iobuf->dr_numreqs) == 0);
1191 osd_fini_iobuf(osd, iobuf);
1193 rc = iobuf->dr_error;
1198 static int osd_trans_cb_add(struct thandle *th, struct dt_txn_commit_cb *dcb)
1200 struct osd_thandle *oh = container_of0(th, struct osd_thandle,
1203 LASSERT(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC);
1204 LASSERT(&dcb->dcb_func != NULL);
1205 list_add(&dcb->dcb_linkage, &oh->ot_dcb_list);
1211 * Called just before object is freed. Releases all resources except for
1212 * object itself (that is released by osd_object_free()).
1214 * Concurrency: no concurrent access is possible that late in object
1217 static void osd_object_delete(const struct lu_env *env, struct lu_object *l)
1219 struct osd_object *obj = osd_obj(l);
1220 struct inode *inode = obj->oo_inode;
1222 LINVRNT(osd_invariant(obj));
1225 * If object is unlinked remove fid->ino mapping from object index.
1228 osd_index_fini(obj);
1229 if (inode != NULL) {
1230 struct qsd_instance *qsd = osd_obj2dev(obj)->od_quota_slave;
1231 qid_t uid = i_uid_read(inode);
1232 qid_t gid = i_gid_read(inode);
1235 obj->oo_inode = NULL;
1238 struct osd_thread_info *info = osd_oti_get(env);
1239 struct lquota_id_info *qi = &info->oti_qi;
1241 /* Release granted quota to master if necessary */
1242 qi->lqi_id.qid_uid = uid;
1243 qsd_op_adjust(env, qsd, &qi->lqi_id, USRQUOTA);
1245 qi->lqi_id.qid_uid = gid;
1246 qsd_op_adjust(env, qsd, &qi->lqi_id, GRPQUOTA);
1252 * Concurrency: ->loo_object_release() is called under site spin-lock.
1254 static void osd_object_release(const struct lu_env *env,
1255 struct lu_object *l)
1260 * Concurrency: shouldn't matter.
1262 static int osd_object_print(const struct lu_env *env, void *cookie,
1263 lu_printer_t p, const struct lu_object *l)
1265 struct osd_object *o = osd_obj(l);
1266 struct iam_descr *d;
1268 if (o->oo_dir != NULL)
1269 d = o->oo_dir->od_container.ic_descr;
1272 return (*p)(env, cookie,
1273 LUSTRE_OSD_LDISKFS_NAME"-object@%p(i:%p:%lu/%u)[%s]",
1275 o->oo_inode ? o->oo_inode->i_ino : 0UL,
1276 o->oo_inode ? o->oo_inode->i_generation : 0,
1277 d ? d->id_ops->id_name : "plain");
1280 #define GRANT_FOR_LOCAL_OIDS 32 /* 128kB for last_rcvd, quota files, ... */
1283 * Concurrency: shouldn't matter.
1285 int osd_statfs(const struct lu_env *env, struct dt_device *d,
1286 struct obd_statfs *sfs)
1288 struct osd_device *osd = osd_dt_dev(d);
1289 struct super_block *sb = osd_sb(osd);
1290 struct kstatfs *ksfs;
1293 if (unlikely(osd->od_mnt == NULL))
1294 return -EINPROGRESS;
1296 /* osd_lproc.c call this without env, allocate ksfs for that case */
1297 if (unlikely(env == NULL)) {
1298 OBD_ALLOC_PTR(ksfs);
1302 ksfs = &osd_oti_get(env)->oti_ksfs;
1305 spin_lock(&osd->od_osfs_lock);
1306 result = sb->s_op->statfs(sb->s_root, ksfs);
1307 if (likely(result == 0)) { /* N.B. statfs can't really fail */
1308 statfs_pack(sfs, ksfs);
1309 if (sb->s_flags & MS_RDONLY)
1310 sfs->os_state = OS_STATE_READONLY;
1313 spin_unlock(&osd->od_osfs_lock);
1315 if (unlikely(env == NULL))
1318 /* Reserve a small amount of space for local objects like last_rcvd,
1319 * llog, quota files, ... */
1320 if (sfs->os_bavail <= GRANT_FOR_LOCAL_OIDS) {
1323 sfs->os_bavail -= GRANT_FOR_LOCAL_OIDS;
1324 /** Take out metadata overhead for indirect blocks */
1325 sfs->os_bavail -= sfs->os_bavail >> (sb->s_blocksize_bits - 3);
1332 * Estimate space needed for file creations. We assume the largest filename
1333 * which is 2^64 - 1, hence a filename of 20 chars.
1334 * This is 28 bytes per object which is 28MB for 1M objects ... no so bad.
1336 #ifdef __LDISKFS_DIR_REC_LEN
1337 #define PER_OBJ_USAGE __LDISKFS_DIR_REC_LEN(20)
1339 #define PER_OBJ_USAGE LDISKFS_DIR_REC_LEN(20)
1343 * Concurrency: doesn't access mutable data.
1345 static void osd_conf_get(const struct lu_env *env,
1346 const struct dt_device *dev,
1347 struct dt_device_param *param)
1349 struct super_block *sb = osd_sb(osd_dt_dev(dev));
1353 * XXX should be taken from not-yet-existing fs abstraction layer.
1355 param->ddp_max_name_len = LDISKFS_NAME_LEN;
1356 param->ddp_max_nlink = LDISKFS_LINK_MAX;
1357 param->ddp_block_shift = sb->s_blocksize_bits;
1358 param->ddp_mount_type = LDD_MT_LDISKFS;
1359 param->ddp_maxbytes = sb->s_maxbytes;
1360 /* Overhead estimate should be fairly accurate, so we really take a tiny
1361 * error margin which also avoids fragmenting the filesystem too much */
1362 param->ddp_grant_reserved = 2; /* end up to be 1.9% after conversion */
1363 /* inode are statically allocated, so per-inode space consumption
1364 * is the space consumed by the directory entry */
1365 param->ddp_inodespace = PER_OBJ_USAGE;
1366 /* per-fragment overhead to be used by the client code */
1367 param->ddp_grant_frag = 6 * LDISKFS_BLOCK_SIZE(sb);
1368 param->ddp_mntopts = 0;
1369 if (test_opt(sb, XATTR_USER))
1370 param->ddp_mntopts |= MNTOPT_USERXATTR;
1371 if (test_opt(sb, POSIX_ACL))
1372 param->ddp_mntopts |= MNTOPT_ACL;
1374 /* LOD might calculate the max stripe count based on max_ea_size,
1375 * so we need take account in the overhead as well,
1376 * xattr_header + magic + xattr_entry_head */
1377 ea_overhead = sizeof(struct ldiskfs_xattr_header) + sizeof(__u32) +
1378 LDISKFS_XATTR_LEN(XATTR_NAME_MAX_LEN);
1380 #if defined(LDISKFS_FEATURE_INCOMPAT_EA_INODE)
1381 if (LDISKFS_HAS_INCOMPAT_FEATURE(sb, LDISKFS_FEATURE_INCOMPAT_EA_INODE))
1382 param->ddp_max_ea_size = LDISKFS_XATTR_MAX_LARGE_EA_SIZE -
1386 param->ddp_max_ea_size = sb->s_blocksize - ea_overhead;
1390 * Concurrency: shouldn't matter.
1392 static int osd_sync(const struct lu_env *env, struct dt_device *d)
1396 CDEBUG(D_CACHE, "syncing OSD %s\n", LUSTRE_OSD_LDISKFS_NAME);
1398 rc = ldiskfs_force_commit(osd_sb(osd_dt_dev(d)));
1400 CDEBUG(D_CACHE, "synced OSD %s: rc = %d\n",
1401 LUSTRE_OSD_LDISKFS_NAME, rc);
1407 * Start commit for OSD device.
1409 * An implementation of dt_commit_async method for OSD device.
1410 * Asychronously starts underlayng fs sync and thereby a transaction
1413 * \param env environment
1414 * \param d dt device
1416 * \see dt_device_operations
1418 static int osd_commit_async(const struct lu_env *env,
1419 struct dt_device *d)
1421 struct super_block *s = osd_sb(osd_dt_dev(d));
1424 CDEBUG(D_HA, "async commit OSD %s\n", LUSTRE_OSD_LDISKFS_NAME);
1425 RETURN(s->s_op->sync_fs(s, 0));
1429 * Concurrency: shouldn't matter.
1432 static int osd_ro(const struct lu_env *env, struct dt_device *d)
1434 struct super_block *sb = osd_sb(osd_dt_dev(d));
1435 struct block_device *dev = sb->s_bdev;
1436 #ifdef HAVE_DEV_SET_RDONLY
1437 struct block_device *jdev = LDISKFS_SB(sb)->journal_bdev;
1440 int rc = -EOPNOTSUPP;
1444 #ifdef HAVE_DEV_SET_RDONLY
1445 CERROR("*** setting %s read-only ***\n", osd_dt_dev(d)->od_svname);
1447 if (jdev && (jdev != dev)) {
1448 CDEBUG(D_IOCTL | D_HA, "set journal dev %lx rdonly\n",
1450 dev_set_rdonly(jdev);
1452 CDEBUG(D_IOCTL | D_HA, "set dev %lx rdonly\n", (long)dev);
1453 dev_set_rdonly(dev);
1455 CERROR("%s: %lx CANNOT BE SET READONLY: rc = %d\n",
1456 osd_dt_dev(d)->od_svname, (long)dev, rc);
1462 * Note: we do not count into QUOTA here.
1463 * If we mount with --data_journal we may need more.
1465 const int osd_dto_credits_noquota[DTO_NR] = {
1468 * INDEX_EXTRA_TRANS_BLOCKS(8) +
1469 * SINGLEDATA_TRANS_BLOCKS(8)
1470 * XXX Note: maybe iam need more, since iam have more level than
1473 [DTO_INDEX_INSERT] = 16,
1476 * just modify a single entry, probably merge few within a block
1478 [DTO_INDEX_DELETE] = 1,
1482 [DTO_INDEX_UPDATE] = 16,
1484 * 4(inode, inode bits, groups, GDT)
1485 * notice: OI updates are counted separately with DTO_INDEX_INSERT
1487 [DTO_OBJECT_CREATE] = 4,
1489 * 4(inode, inode bits, groups, GDT)
1490 * notice: OI updates are counted separately with DTO_INDEX_DELETE
1492 [DTO_OBJECT_DELETE] = 4,
1494 * Attr set credits (inode)
1496 [DTO_ATTR_SET_BASE] = 1,
1498 * Xattr set. The same as xattr of EXT3.
1499 * DATA_TRANS_BLOCKS(14)
1500 * XXX Note: in original MDS implmentation INDEX_EXTRA_TRANS_BLOCKS
1501 * are also counted in. Do not know why?
1503 [DTO_XATTR_SET] = 14,
1505 * credits for inode change during write.
1507 [DTO_WRITE_BASE] = 3,
1509 * credits for single block write.
1511 [DTO_WRITE_BLOCK] = 14,
1513 * Attr set credits for chown.
1514 * This is extra credits for setattr, and it is null without quota
1516 [DTO_ATTR_SET_CHOWN] = 0
1519 static const struct dt_device_operations osd_dt_ops = {
1520 .dt_root_get = osd_root_get,
1521 .dt_statfs = osd_statfs,
1522 .dt_trans_create = osd_trans_create,
1523 .dt_trans_start = osd_trans_start,
1524 .dt_trans_stop = osd_trans_stop,
1525 .dt_trans_cb_add = osd_trans_cb_add,
1526 .dt_conf_get = osd_conf_get,
1527 .dt_sync = osd_sync,
1529 .dt_commit_async = osd_commit_async,
1532 static void osd_object_read_lock(const struct lu_env *env,
1533 struct dt_object *dt, unsigned role)
1535 struct osd_object *obj = osd_dt_obj(dt);
1536 struct osd_thread_info *oti = osd_oti_get(env);
1538 LINVRNT(osd_invariant(obj));
1540 LASSERT(obj->oo_owner != env);
1541 down_read_nested(&obj->oo_sem, role);
1543 LASSERT(obj->oo_owner == NULL);
1547 static void osd_object_write_lock(const struct lu_env *env,
1548 struct dt_object *dt, unsigned role)
1550 struct osd_object *obj = osd_dt_obj(dt);
1551 struct osd_thread_info *oti = osd_oti_get(env);
1553 LINVRNT(osd_invariant(obj));
1555 LASSERT(obj->oo_owner != env);
1556 down_write_nested(&obj->oo_sem, role);
1558 LASSERT(obj->oo_owner == NULL);
1559 obj->oo_owner = env;
1563 static void osd_object_read_unlock(const struct lu_env *env,
1564 struct dt_object *dt)
1566 struct osd_object *obj = osd_dt_obj(dt);
1567 struct osd_thread_info *oti = osd_oti_get(env);
1569 LINVRNT(osd_invariant(obj));
1571 LASSERT(oti->oti_r_locks > 0);
1573 up_read(&obj->oo_sem);
1576 static void osd_object_write_unlock(const struct lu_env *env,
1577 struct dt_object *dt)
1579 struct osd_object *obj = osd_dt_obj(dt);
1580 struct osd_thread_info *oti = osd_oti_get(env);
1582 LINVRNT(osd_invariant(obj));
1584 LASSERT(obj->oo_owner == env);
1585 LASSERT(oti->oti_w_locks > 0);
1587 obj->oo_owner = NULL;
1588 up_write(&obj->oo_sem);
1591 static int osd_object_write_locked(const struct lu_env *env,
1592 struct dt_object *dt)
1594 struct osd_object *obj = osd_dt_obj(dt);
1596 LINVRNT(osd_invariant(obj));
1598 return obj->oo_owner == env;
1601 static struct timespec *osd_inode_time(const struct lu_env *env,
1602 struct inode *inode, __u64 seconds)
1604 struct osd_thread_info *oti = osd_oti_get(env);
1605 struct timespec *t = &oti->oti_time;
1607 t->tv_sec = seconds;
1609 *t = timespec_trunc(*t, inode->i_sb->s_time_gran);
1614 static void osd_inode_getattr(const struct lu_env *env,
1615 struct inode *inode, struct lu_attr *attr)
1617 attr->la_valid |= LA_ATIME | LA_MTIME | LA_CTIME | LA_MODE |
1618 LA_SIZE | LA_BLOCKS | LA_UID | LA_GID |
1619 LA_FLAGS | LA_NLINK | LA_RDEV | LA_BLKSIZE |
1622 attr->la_atime = LTIME_S(inode->i_atime);
1623 attr->la_mtime = LTIME_S(inode->i_mtime);
1624 attr->la_ctime = LTIME_S(inode->i_ctime);
1625 attr->la_mode = inode->i_mode;
1626 attr->la_size = i_size_read(inode);
1627 attr->la_blocks = inode->i_blocks;
1628 attr->la_uid = i_uid_read(inode);
1629 attr->la_gid = i_gid_read(inode);
1630 attr->la_flags = LDISKFS_I(inode)->i_flags;
1631 attr->la_nlink = inode->i_nlink;
1632 attr->la_rdev = inode->i_rdev;
1633 attr->la_blksize = 1 << inode->i_blkbits;
1634 attr->la_blkbits = inode->i_blkbits;
1637 static int osd_attr_get(const struct lu_env *env,
1638 struct dt_object *dt,
1639 struct lu_attr *attr)
1641 struct osd_object *obj = osd_dt_obj(dt);
1643 if (!dt_object_exists(dt))
1646 LASSERT(!dt_object_remote(dt));
1647 LINVRNT(osd_invariant(obj));
1649 spin_lock(&obj->oo_guard);
1650 osd_inode_getattr(env, obj->oo_inode, attr);
1651 spin_unlock(&obj->oo_guard);
1655 static int osd_declare_attr_set(const struct lu_env *env,
1656 struct dt_object *dt,
1657 const struct lu_attr *attr,
1658 struct thandle *handle)
1660 struct osd_thandle *oh;
1661 struct osd_object *obj;
1662 struct osd_thread_info *info = osd_oti_get(env);
1663 struct lquota_id_info *qi = &info->oti_qi;
1671 LASSERT(dt != NULL);
1672 LASSERT(handle != NULL);
1674 obj = osd_dt_obj(dt);
1675 LASSERT(osd_invariant(obj));
1677 oh = container_of0(handle, struct osd_thandle, ot_super);
1678 LASSERT(oh->ot_handle == NULL);
1680 osd_trans_declare_op(env, oh, OSD_OT_ATTR_SET,
1681 osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
1683 if (attr == NULL || obj->oo_inode == NULL)
1686 bspace = obj->oo_inode->i_blocks;
1687 bspace <<= obj->oo_inode->i_sb->s_blocksize_bits;
1688 bspace = toqb(bspace);
1690 /* Changing ownership is always preformed by super user, it should not
1693 * We still need to call the osd_declare_qid() to calculate the journal
1694 * credits for updating quota accounting files and to trigger quota
1695 * space adjustment once the operation is completed.*/
1696 if (attr->la_valid & LA_UID || attr->la_valid & LA_GID) {
1698 uid = i_uid_read(obj->oo_inode);
1699 qi->lqi_type = USRQUOTA;
1700 enforce = (attr->la_valid & LA_UID) && (attr->la_uid != uid);
1701 /* inode accounting */
1702 qi->lqi_is_blk = false;
1704 /* one more inode for the new uid ... */
1705 qi->lqi_id.qid_uid = attr->la_uid;
1707 /* Reserve credits for the new uid */
1708 rc = osd_declare_qid(env, oh, qi, NULL, enforce, NULL);
1709 if (rc == -EDQUOT || rc == -EINPROGRESS)
1714 /* and one less inode for the current uid */
1715 qi->lqi_id.qid_uid = uid;
1717 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1718 if (rc == -EDQUOT || rc == -EINPROGRESS)
1723 /* block accounting */
1724 qi->lqi_is_blk = true;
1726 /* more blocks for the new uid ... */
1727 qi->lqi_id.qid_uid = attr->la_uid;
1728 qi->lqi_space = bspace;
1730 * Credits for the new uid has been reserved, re-use "obj"
1731 * to save credit reservation.
1733 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1734 if (rc == -EDQUOT || rc == -EINPROGRESS)
1739 /* and finally less blocks for the current uid */
1740 qi->lqi_id.qid_uid = uid;
1741 qi->lqi_space = -bspace;
1742 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1743 if (rc == -EDQUOT || rc == -EINPROGRESS)
1749 gid = i_gid_read(obj->oo_inode);
1750 qi->lqi_type = GRPQUOTA;
1751 enforce = (attr->la_valid & LA_GID) && (attr->la_gid != gid);
1753 /* inode accounting */
1754 qi->lqi_is_blk = false;
1756 /* one more inode for the new gid ... */
1757 qi->lqi_id.qid_gid = attr->la_gid;
1759 rc = osd_declare_qid(env, oh, qi, NULL, enforce, NULL);
1760 if (rc == -EDQUOT || rc == -EINPROGRESS)
1765 /* and one less inode for the current gid */
1766 qi->lqi_id.qid_gid = gid;
1768 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1769 if (rc == -EDQUOT || rc == -EINPROGRESS)
1774 /* block accounting */
1775 qi->lqi_is_blk = true;
1777 /* more blocks for the new gid ... */
1778 qi->lqi_id.qid_gid = attr->la_gid;
1779 qi->lqi_space = bspace;
1780 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1781 if (rc == -EDQUOT || rc == -EINPROGRESS)
1786 /* and finally less blocks for the current gid */
1787 qi->lqi_id.qid_gid = gid;
1788 qi->lqi_space = -bspace;
1789 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1790 if (rc == -EDQUOT || rc == -EINPROGRESS)
1799 static int osd_inode_setattr(const struct lu_env *env,
1800 struct inode *inode, const struct lu_attr *attr)
1802 __u64 bits = attr->la_valid;
1804 /* Only allow set size for regular file */
1805 if (!S_ISREG(inode->i_mode))
1806 bits &= ~(LA_SIZE | LA_BLOCKS);
1811 if (bits & LA_ATIME)
1812 inode->i_atime = *osd_inode_time(env, inode, attr->la_atime);
1813 if (bits & LA_CTIME)
1814 inode->i_ctime = *osd_inode_time(env, inode, attr->la_ctime);
1815 if (bits & LA_MTIME)
1816 inode->i_mtime = *osd_inode_time(env, inode, attr->la_mtime);
1817 if (bits & LA_SIZE) {
1818 LDISKFS_I(inode)->i_disksize = attr->la_size;
1819 i_size_write(inode, attr->la_size);
1823 /* OSD should not change "i_blocks" which is used by quota.
1824 * "i_blocks" should be changed by ldiskfs only. */
1825 if (bits & LA_BLOCKS)
1826 inode->i_blocks = attr->la_blocks;
1829 inode->i_mode = (inode->i_mode & S_IFMT) |
1830 (attr->la_mode & ~S_IFMT);
1832 i_uid_write(inode, attr->la_uid);
1834 i_gid_write(inode, attr->la_gid);
1835 if (bits & LA_NLINK)
1836 set_nlink(inode, attr->la_nlink);
1838 inode->i_rdev = attr->la_rdev;
1840 if (bits & LA_FLAGS) {
1841 /* always keep S_NOCMTIME */
1842 inode->i_flags = ll_ext_to_inode_flags(attr->la_flags) |
1848 static int osd_quota_transfer(struct inode *inode, const struct lu_attr *attr)
1850 if ((attr->la_valid & LA_UID && attr->la_uid != i_uid_read(inode)) ||
1851 (attr->la_valid & LA_GID && attr->la_gid != i_gid_read(inode))) {
1855 ll_vfs_dq_init(inode);
1857 if (attr->la_valid & LA_UID)
1858 iattr.ia_valid |= ATTR_UID;
1859 if (attr->la_valid & LA_GID)
1860 iattr.ia_valid |= ATTR_GID;
1861 iattr.ia_uid = make_kuid(&init_user_ns, attr->la_uid);
1862 iattr.ia_gid = make_kgid(&init_user_ns, attr->la_gid);
1864 rc = ll_vfs_dq_transfer(inode, &iattr);
1866 CERROR("%s: quota transfer failed: rc = %d. Is quota "
1867 "enforcement enabled on the ldiskfs "
1868 "filesystem?\n", inode->i_sb->s_id, rc);
1875 static int osd_attr_set(const struct lu_env *env,
1876 struct dt_object *dt,
1877 const struct lu_attr *attr,
1878 struct thandle *handle)
1880 struct osd_object *obj = osd_dt_obj(dt);
1881 struct inode *inode;
1884 if (!dt_object_exists(dt))
1887 LASSERT(handle != NULL);
1888 LASSERT(!dt_object_remote(dt));
1889 LASSERT(osd_invariant(obj));
1891 osd_trans_exec_op(env, handle, OSD_OT_ATTR_SET);
1893 if (OBD_FAIL_CHECK(OBD_FAIL_OSD_FID_MAPPING)) {
1894 struct osd_thread_info *oti = osd_oti_get(env);
1895 const struct lu_fid *fid0 = lu_object_fid(&dt->do_lu);
1896 struct lu_fid *fid1 = &oti->oti_fid;
1897 struct osd_inode_id *id = &oti->oti_id;
1898 struct iam_path_descr *ipd;
1899 struct iam_container *bag;
1900 struct osd_thandle *oh;
1903 fid_cpu_to_be(fid1, fid0);
1904 memset(id, 1, sizeof(*id));
1905 bag = &osd_fid2oi(osd_dev(dt->do_lu.lo_dev),
1906 fid0)->oi_dir.od_container;
1907 ipd = osd_idx_ipd_get(env, bag);
1908 if (unlikely(ipd == NULL))
1911 oh = container_of0(handle, struct osd_thandle, ot_super);
1912 rc = iam_update(oh->ot_handle, bag, (const struct iam_key *)fid1,
1913 (const struct iam_rec *)id, ipd);
1914 osd_ipd_put(env, bag, ipd);
1915 return(rc > 0 ? 0 : rc);
1918 inode = obj->oo_inode;
1920 rc = osd_quota_transfer(inode, attr);
1924 spin_lock(&obj->oo_guard);
1925 rc = osd_inode_setattr(env, inode, attr);
1926 spin_unlock(&obj->oo_guard);
1929 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
1933 static struct dentry *osd_child_dentry_get(const struct lu_env *env,
1934 struct osd_object *obj,
1935 const char *name, const int namelen)
1937 return osd_child_dentry_by_inode(env, obj->oo_inode, name, namelen);
1940 static int osd_mkfile(struct osd_thread_info *info, struct osd_object *obj,
1941 umode_t mode, struct dt_allocation_hint *hint,
1945 struct osd_device *osd = osd_obj2dev(obj);
1946 struct osd_thandle *oth;
1947 struct dt_object *parent = NULL;
1948 struct inode *inode;
1950 LINVRNT(osd_invariant(obj));
1951 LASSERT(obj->oo_inode == NULL);
1952 LASSERT(obj->oo_hl_head == NULL);
1954 if (S_ISDIR(mode) && ldiskfs_pdo) {
1955 obj->oo_hl_head =ldiskfs_htree_lock_head_alloc(HTREE_HBITS_DEF);
1956 if (obj->oo_hl_head == NULL)
1960 oth = container_of(th, struct osd_thandle, ot_super);
1961 LASSERT(oth->ot_handle->h_transaction != NULL);
1963 if (hint && hint->dah_parent)
1964 parent = hint->dah_parent;
1966 inode = ldiskfs_create_inode(oth->ot_handle,
1967 parent ? osd_dt_obj(parent)->oo_inode :
1968 osd_sb(osd)->s_root->d_inode,
1970 if (!IS_ERR(inode)) {
1971 /* Do not update file c/mtime in ldiskfs. */
1972 inode->i_flags |= S_NOCMTIME;
1974 /* For new created object, it must be consistent,
1975 * and it is unnecessary to scrub against it. */
1976 ldiskfs_set_inode_state(inode, LDISKFS_STATE_LUSTRE_NOSCRUB);
1978 obj->oo_inode = inode;
1981 if (obj->oo_hl_head != NULL) {
1982 ldiskfs_htree_lock_head_free(obj->oo_hl_head);
1983 obj->oo_hl_head = NULL;
1985 result = PTR_ERR(inode);
1987 LINVRNT(osd_invariant(obj));
1995 static int osd_mkdir(struct osd_thread_info *info, struct osd_object *obj,
1996 struct lu_attr *attr,
1997 struct dt_allocation_hint *hint,
1998 struct dt_object_format *dof,
2002 struct osd_thandle *oth;
2003 __u32 mode = (attr->la_mode & (S_IFMT | S_IRWXUGO | S_ISVTX));
2005 LASSERT(S_ISDIR(attr->la_mode));
2007 oth = container_of(th, struct osd_thandle, ot_super);
2008 LASSERT(oth->ot_handle->h_transaction != NULL);
2009 result = osd_mkfile(info, obj, mode, hint, th);
2014 static int osd_mk_index(struct osd_thread_info *info, struct osd_object *obj,
2015 struct lu_attr *attr,
2016 struct dt_allocation_hint *hint,
2017 struct dt_object_format *dof,
2021 struct osd_thandle *oth;
2022 const struct dt_index_features *feat = dof->u.dof_idx.di_feat;
2024 __u32 mode = (attr->la_mode & (S_IFMT | S_IALLUGO | S_ISVTX));
2026 LASSERT(S_ISREG(attr->la_mode));
2028 oth = container_of(th, struct osd_thandle, ot_super);
2029 LASSERT(oth->ot_handle->h_transaction != NULL);
2031 result = osd_mkfile(info, obj, mode, hint, th);
2033 LASSERT(obj->oo_inode != NULL);
2034 if (feat->dif_flags & DT_IND_VARKEY)
2035 result = iam_lvar_create(obj->oo_inode,
2036 feat->dif_keysize_max,
2038 feat->dif_recsize_max,
2041 result = iam_lfix_create(obj->oo_inode,
2042 feat->dif_keysize_max,
2044 feat->dif_recsize_max,
2051 static int osd_mkreg(struct osd_thread_info *info, struct osd_object *obj,
2052 struct lu_attr *attr,
2053 struct dt_allocation_hint *hint,
2054 struct dt_object_format *dof,
2057 LASSERT(S_ISREG(attr->la_mode));
2058 return osd_mkfile(info, obj, (attr->la_mode &
2059 (S_IFMT | S_IALLUGO | S_ISVTX)), hint, th);
2062 static int osd_mksym(struct osd_thread_info *info, struct osd_object *obj,
2063 struct lu_attr *attr,
2064 struct dt_allocation_hint *hint,
2065 struct dt_object_format *dof,
2068 LASSERT(S_ISLNK(attr->la_mode));
2069 return osd_mkfile(info, obj, (attr->la_mode &
2070 (S_IFMT | S_IALLUGO | S_ISVTX)), hint, th);
2073 static int osd_mknod(struct osd_thread_info *info, struct osd_object *obj,
2074 struct lu_attr *attr,
2075 struct dt_allocation_hint *hint,
2076 struct dt_object_format *dof,
2079 umode_t mode = attr->la_mode & (S_IFMT | S_IALLUGO | S_ISVTX);
2082 LINVRNT(osd_invariant(obj));
2083 LASSERT(obj->oo_inode == NULL);
2084 LASSERT(S_ISCHR(mode) || S_ISBLK(mode) ||
2085 S_ISFIFO(mode) || S_ISSOCK(mode));
2087 result = osd_mkfile(info, obj, mode, hint, th);
2089 LASSERT(obj->oo_inode != NULL);
2091 * This inode should be marked dirty for i_rdev. Currently
2092 * that is done in the osd_attr_init().
2094 init_special_inode(obj->oo_inode, obj->oo_inode->i_mode,
2097 LINVRNT(osd_invariant(obj));
2101 typedef int (*osd_obj_type_f)(struct osd_thread_info *, struct osd_object *,
2103 struct dt_allocation_hint *hint,
2104 struct dt_object_format *dof,
2107 static osd_obj_type_f osd_create_type_f(enum dt_format_type type)
2109 osd_obj_type_f result;
2125 result = osd_mk_index;
2136 static void osd_ah_init(const struct lu_env *env, struct dt_allocation_hint *ah,
2137 struct dt_object *parent, struct dt_object *child,
2142 ah->dah_parent = parent;
2143 ah->dah_mode = child_mode;
2146 static void osd_attr_init(struct osd_thread_info *info, struct osd_object *obj,
2147 struct lu_attr *attr, struct dt_object_format *dof)
2149 struct inode *inode = obj->oo_inode;
2150 __u64 valid = attr->la_valid;
2153 attr->la_valid &= ~(LA_TYPE | LA_MODE);
2155 if (dof->dof_type != DFT_NODE)
2156 attr->la_valid &= ~LA_RDEV;
2157 if ((valid & LA_ATIME) && (attr->la_atime == LTIME_S(inode->i_atime)))
2158 attr->la_valid &= ~LA_ATIME;
2159 if ((valid & LA_CTIME) && (attr->la_ctime == LTIME_S(inode->i_ctime)))
2160 attr->la_valid &= ~LA_CTIME;
2161 if ((valid & LA_MTIME) && (attr->la_mtime == LTIME_S(inode->i_mtime)))
2162 attr->la_valid &= ~LA_MTIME;
2164 result = osd_quota_transfer(inode, attr);
2168 if (attr->la_valid != 0) {
2169 result = osd_inode_setattr(info->oti_env, inode, attr);
2171 * The osd_inode_setattr() should always succeed here. The
2172 * only error that could be returned is EDQUOT when we are
2173 * trying to change the UID or GID of the inode. However, this
2174 * should not happen since quota enforcement is no longer
2175 * enabled on ldiskfs (lquota takes care of it).
2177 LASSERTF(result == 0, "%d\n", result);
2178 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2181 attr->la_valid = valid;
2185 * Helper function for osd_object_create()
2187 * \retval 0, on success
2189 static int __osd_object_create(struct osd_thread_info *info,
2190 struct osd_object *obj, struct lu_attr *attr,
2191 struct dt_allocation_hint *hint,
2192 struct dt_object_format *dof,
2198 /* we drop umask so that permissions we pass are not affected */
2199 umask = current->fs->umask;
2200 current->fs->umask = 0;
2202 result = osd_create_type_f(dof->dof_type)(info, obj, attr, hint, dof,
2204 if (likely(obj->oo_inode != NULL)) {
2205 LASSERT(obj->oo_inode->i_state & I_NEW);
2207 /* Unlock the inode before attr initialization to avoid
2208 * unnecessary dqget operations. LU-6378 */
2209 unlock_new_inode(obj->oo_inode);
2212 if (likely(result == 0)) {
2213 osd_attr_init(info, obj, attr, dof);
2214 osd_object_init0(obj);
2217 /* restore previous umask value */
2218 current->fs->umask = umask;
2224 * Helper function for osd_object_create()
2226 * \retval 0, on success
2228 static int __osd_oi_insert(const struct lu_env *env, struct osd_object *obj,
2229 const struct lu_fid *fid, struct thandle *th)
2231 struct osd_thread_info *info = osd_oti_get(env);
2232 struct osd_inode_id *id = &info->oti_id;
2233 struct osd_device *osd = osd_obj2dev(obj);
2234 struct osd_thandle *oh;
2236 LASSERT(obj->oo_inode != NULL);
2238 oh = container_of0(th, struct osd_thandle, ot_super);
2239 LASSERT(oh->ot_handle);
2241 osd_id_gen(id, obj->oo_inode->i_ino, obj->oo_inode->i_generation);
2242 return osd_oi_insert(info, osd, fid, id, oh->ot_handle, OI_CHECK_FLD);
2245 int osd_fld_lookup(const struct lu_env *env, struct osd_device *osd,
2246 u64 seq, struct lu_seq_range *range)
2248 struct seq_server_site *ss = osd_seq_site(osd);
2250 if (fid_seq_is_idif(seq)) {
2251 fld_range_set_ost(range);
2252 range->lsr_index = idif_ost_idx(seq);
2256 if (!fid_seq_in_fldb(seq)) {
2257 fld_range_set_mdt(range);
2259 /* FIXME: If ss is NULL, it suppose not get lsr_index
2261 range->lsr_index = ss->ss_node_id;
2265 LASSERT(ss != NULL);
2266 fld_range_set_any(range);
2267 /* OSD will only do local fld lookup */
2268 return fld_local_lookup(env, ss->ss_server_fld, seq, range);
2272 * Concurrency: no external locking is necessary.
2274 static int osd_declare_object_create(const struct lu_env *env,
2275 struct dt_object *dt,
2276 struct lu_attr *attr,
2277 struct dt_allocation_hint *hint,
2278 struct dt_object_format *dof,
2279 struct thandle *handle)
2281 struct osd_thandle *oh;
2285 LASSERT(handle != NULL);
2287 oh = container_of0(handle, struct osd_thandle, ot_super);
2288 LASSERT(oh->ot_handle == NULL);
2290 osd_trans_declare_op(env, oh, OSD_OT_CREATE,
2291 osd_dto_credits_noquota[DTO_OBJECT_CREATE]);
2292 /* Reuse idle OI block may cause additional one OI block
2294 osd_trans_declare_op(env, oh, OSD_OT_INSERT,
2295 osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1);
2297 /* If this is directory, then we expect . and .. to be inserted as
2298 * well. The one directory block always needs to be created for the
2299 * directory, so we could use DTO_WRITE_BASE here (GDT, block bitmap,
2300 * block), there is no danger of needing a tree for the first block.
2302 if (attr && S_ISDIR(attr->la_mode)) {
2303 osd_trans_declare_op(env, oh, OSD_OT_INSERT,
2304 osd_dto_credits_noquota[DTO_WRITE_BASE]);
2305 osd_trans_declare_op(env, oh, OSD_OT_INSERT, 0);
2311 rc = osd_declare_inode_qid(env, attr->la_uid, attr->la_gid, 1, oh,
2312 osd_dt_obj(dt), false, NULL, false);
2319 static int osd_object_create(const struct lu_env *env, struct dt_object *dt,
2320 struct lu_attr *attr,
2321 struct dt_allocation_hint *hint,
2322 struct dt_object_format *dof, struct thandle *th)
2324 const struct lu_fid *fid = lu_object_fid(&dt->do_lu);
2325 struct osd_object *obj = osd_dt_obj(dt);
2326 struct osd_thread_info *info = osd_oti_get(env);
2330 if (dt_object_exists(dt))
2333 LINVRNT(osd_invariant(obj));
2334 LASSERT(!dt_object_remote(dt));
2335 LASSERT(osd_write_locked(env, obj));
2336 LASSERT(th != NULL);
2338 if (unlikely(fid_is_acct(fid)))
2339 /* Quota files can't be created from the kernel any more,
2340 * 'tune2fs -O quota' will take care of creating them */
2343 osd_trans_exec_op(env, th, OSD_OT_CREATE);
2344 osd_trans_declare_rb(env, th, OSD_OT_REF_ADD);
2346 result = __osd_object_create(info, obj, attr, hint, dof, th);
2348 result = __osd_oi_insert(env, obj, fid, th);
2350 LASSERT(ergo(result == 0,
2351 dt_object_exists(dt) && !dt_object_remote(dt)));
2353 LASSERT(osd_invariant(obj));
2358 * Called to destroy on-disk representation of the object
2360 * Concurrency: must be locked
2362 static int osd_declare_object_destroy(const struct lu_env *env,
2363 struct dt_object *dt,
2366 struct osd_object *obj = osd_dt_obj(dt);
2367 struct inode *inode = obj->oo_inode;
2368 struct osd_thandle *oh;
2372 oh = container_of0(th, struct osd_thandle, ot_super);
2373 LASSERT(oh->ot_handle == NULL);
2376 osd_trans_declare_op(env, oh, OSD_OT_DESTROY,
2377 osd_dto_credits_noquota[DTO_OBJECT_DELETE]);
2378 /* Recycle idle OI leaf may cause additional three OI blocks
2380 osd_trans_declare_op(env, oh, OSD_OT_DELETE,
2381 osd_dto_credits_noquota[DTO_INDEX_DELETE] + 3);
2382 /* one less inode */
2383 rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
2384 -1, oh, obj, false, NULL, false);
2387 /* data to be truncated */
2388 rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
2389 0, oh, obj, true, NULL, false);
2393 static int osd_object_destroy(const struct lu_env *env,
2394 struct dt_object *dt,
2397 const struct lu_fid *fid = lu_object_fid(&dt->do_lu);
2398 struct osd_object *obj = osd_dt_obj(dt);
2399 struct inode *inode = obj->oo_inode;
2400 struct osd_device *osd = osd_obj2dev(obj);
2401 struct osd_thandle *oh;
2405 oh = container_of0(th, struct osd_thandle, ot_super);
2406 LASSERT(oh->ot_handle);
2408 LASSERT(!lu_object_is_dying(dt->do_lu.lo_header));
2410 if (unlikely(fid_is_acct(fid)))
2413 if (S_ISDIR(inode->i_mode)) {
2414 LASSERT(osd_inode_unlinked(inode) || inode->i_nlink == 1 ||
2415 inode->i_nlink == 2);
2416 /* it will check/delete the inode from remote parent,
2417 * how to optimize it? unlink performance impaction XXX */
2418 result = osd_delete_from_remote_parent(env, osd, obj, oh);
2419 if (result != 0 && result != -ENOENT) {
2420 CERROR("%s: delete inode "DFID": rc = %d\n",
2421 osd_name(osd), PFID(fid), result);
2423 spin_lock(&obj->oo_guard);
2425 spin_unlock(&obj->oo_guard);
2426 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2429 osd_trans_exec_op(env, th, OSD_OT_DESTROY);
2431 result = osd_oi_delete(osd_oti_get(env), osd, fid, oh->ot_handle,
2434 /* XXX: add to ext3 orphan list */
2435 /* rc = ext3_orphan_add(handle_t *handle, struct inode *inode) */
2437 /* not needed in the cache anymore */
2438 set_bit(LU_OBJECT_HEARD_BANSHEE, &dt->do_lu.lo_header->loh_flags);
2444 * Put the fid into lustre_mdt_attrs, and then place the structure
2445 * inode's ea. This fid should not be altered during the life time
2448 * \retval +ve, on success
2449 * \retval -ve, on error
2451 * FIXME: It is good to have/use ldiskfs_xattr_set_handle() here
2453 int osd_ea_fid_set(struct osd_thread_info *info, struct inode *inode,
2454 const struct lu_fid *fid, __u32 compat, __u32 incompat)
2456 struct lustre_mdt_attrs *lma = &info->oti_mdt_attrs;
2460 if (OBD_FAIL_CHECK(OBD_FAIL_FID_INLMA))
2463 lustre_lma_init(lma, fid, compat, incompat);
2464 lustre_lma_swab(lma);
2466 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma, sizeof(*lma),
2468 /* LMA may already exist, but we need to check that all the
2469 * desired compat/incompat flags have been added. */
2470 if (unlikely(rc == -EEXIST)) {
2471 if (compat == 0 && incompat == 0)
2474 rc = __osd_xattr_get(inode, &info->oti_obj_dentry,
2475 XATTR_NAME_LMA, info->oti_mdt_attrs_old,
2480 lustre_lma_swab(lma);
2481 if (!(~lma->lma_compat & compat) &&
2482 !(~lma->lma_incompat & incompat))
2485 lma->lma_compat |= compat;
2486 lma->lma_incompat |= incompat;
2487 lustre_lma_swab(lma);
2488 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma,
2489 sizeof(*lma), XATTR_REPLACE);
2496 * ldiskfs supports fid in dirent, it is passed in dentry->d_fsdata.
2497 * lustre 1.8 also uses d_fsdata for passing other info to ldiskfs.
2498 * To have compatilibility with 1.8 ldiskfs driver we need to have
2499 * magic number at start of fid data.
2500 * \ldiskfs_dentry_param is used only to pass fid from osd to ldiskfs.
2503 static void osd_get_ldiskfs_dirent_param(struct ldiskfs_dentry_param *param,
2504 const struct lu_fid *fid)
2506 if (!fid_is_namespace_visible(fid) ||
2507 OBD_FAIL_CHECK(OBD_FAIL_FID_IGIF)) {
2508 param->edp_magic = 0;
2512 param->edp_magic = LDISKFS_LUFID_MAGIC;
2513 param->edp_len = sizeof(struct lu_fid) + 1;
2514 fid_cpu_to_be((struct lu_fid *)param->edp_data, (struct lu_fid *)fid);
2518 * Try to read the fid from inode ea into dt_rec.
2520 * \param fid object fid.
2522 * \retval 0 on success
2524 static int osd_ea_fid_get(const struct lu_env *env, struct osd_object *obj,
2525 __u32 ino, struct lu_fid *fid,
2526 struct osd_inode_id *id)
2528 struct osd_thread_info *info = osd_oti_get(env);
2529 struct inode *inode;
2532 osd_id_gen(id, ino, OSD_OII_NOGEN);
2533 inode = osd_iget_fid(info, osd_obj2dev(obj), id, fid);
2535 RETURN(PTR_ERR(inode));
2541 static int osd_add_dot_dotdot_internal(struct osd_thread_info *info,
2543 struct inode *parent_dir,
2544 const struct lu_fid *dot_fid,
2545 const struct lu_fid *dot_dot_fid,
2546 struct osd_thandle *oth)
2548 struct ldiskfs_dentry_param *dot_ldp;
2549 struct ldiskfs_dentry_param *dot_dot_ldp;
2551 dot_dot_ldp = (struct ldiskfs_dentry_param *)info->oti_ldp2;
2552 osd_get_ldiskfs_dirent_param(dot_dot_ldp, dot_dot_fid);
2554 dot_ldp = (struct ldiskfs_dentry_param *)info->oti_ldp;
2555 dot_ldp->edp_magic = 0;
2556 return ldiskfs_add_dot_dotdot(oth->ot_handle, parent_dir,
2557 dir, dot_ldp, dot_dot_ldp);
2561 * Create an local agent inode for remote entry
2563 static struct inode *osd_create_local_agent_inode(const struct lu_env *env,
2564 struct osd_device *osd,
2565 struct osd_object *pobj,
2566 const struct lu_fid *fid,
2570 struct osd_thread_info *info = osd_oti_get(env);
2571 struct inode *local;
2572 struct osd_thandle *oh;
2577 oh = container_of(th, struct osd_thandle, ot_super);
2578 LASSERT(oh->ot_handle->h_transaction != NULL);
2580 local = ldiskfs_create_inode(oh->ot_handle, pobj->oo_inode, type);
2581 if (IS_ERR(local)) {
2582 CERROR("%s: create local error %d\n", osd_name(osd),
2583 (int)PTR_ERR(local));
2587 ldiskfs_set_inode_state(local, LDISKFS_STATE_LUSTRE_NOSCRUB);
2588 unlock_new_inode(local);
2590 /* Set special LMA flag for local agent inode */
2591 rc = osd_ea_fid_set(info, local, fid, 0, LMAI_AGENT);
2593 CERROR("%s: set LMA for "DFID" remote inode failed: rc = %d\n",
2594 osd_name(osd), PFID(fid), rc);
2595 RETURN(ERR_PTR(rc));
2601 rc = osd_add_dot_dotdot_internal(info, local, pobj->oo_inode,
2602 lu_object_fid(&pobj->oo_dt.do_lu),
2605 CERROR("%s: "DFID" add dot dotdot error: rc = %d\n",
2606 osd_name(osd), PFID(fid), rc);
2607 RETURN(ERR_PTR(rc));
2614 * Delete local agent inode for remote entry
2616 static int osd_delete_local_agent_inode(const struct lu_env *env,
2617 struct osd_device *osd,
2618 const struct lu_fid *fid,
2619 __u32 ino, struct osd_thandle *oh)
2621 struct osd_thread_info *oti = osd_oti_get(env);
2622 struct osd_inode_id *id = &oti->oti_id;
2623 struct inode *inode;
2626 id->oii_ino = le32_to_cpu(ino);
2627 id->oii_gen = OSD_OII_NOGEN;
2628 inode = osd_iget(oti, osd, id);
2629 if (IS_ERR(inode)) {
2630 CERROR("%s: iget error "DFID" id %u:%u\n", osd_name(osd),
2631 PFID(fid), id->oii_ino, id->oii_gen);
2632 RETURN(PTR_ERR(inode));
2636 mark_inode_dirty(inode);
2637 CDEBUG(D_INODE, "%s: delete remote inode "DFID" %lu\n",
2638 osd_name(osd), PFID(fid), inode->i_ino);
2644 * OSD layer object create function for interoperability mode (b11826).
2645 * This is mostly similar to osd_object_create(). Only difference being, fid is
2646 * inserted into inode ea here.
2648 * \retval 0, on success
2649 * \retval -ve, on error
2651 static int osd_object_ea_create(const struct lu_env *env, struct dt_object *dt,
2652 struct lu_attr *attr,
2653 struct dt_allocation_hint *hint,
2654 struct dt_object_format *dof,
2657 const struct lu_fid *fid = lu_object_fid(&dt->do_lu);
2658 struct osd_object *obj = osd_dt_obj(dt);
2659 struct osd_thread_info *info = osd_oti_get(env);
2664 if (dt_object_exists(dt))
2667 LASSERT(osd_invariant(obj));
2668 LASSERT(!dt_object_remote(dt));
2669 LASSERT(osd_write_locked(env, obj));
2670 LASSERT(th != NULL);
2672 if (unlikely(fid_is_acct(fid)))
2673 /* Quota files can't be created from the kernel any more,
2674 * 'tune2fs -O quota' will take care of creating them */
2677 osd_trans_exec_op(env, th, OSD_OT_CREATE);
2678 osd_trans_declare_rb(env, th, OSD_OT_REF_ADD);
2680 result = __osd_object_create(info, obj, attr, hint, dof, th);
2682 if (fid_is_idif(fid) &&
2683 !osd_dev(dt->do_lu.lo_dev)->od_index_in_idif) {
2684 struct lu_fid *tfid = &info->oti_fid;
2685 struct ost_id *oi = &info->oti_ostid;
2687 fid_to_ostid(fid, oi);
2688 ostid_to_fid(tfid, oi, 0);
2689 result = osd_ea_fid_set(info, obj->oo_inode, tfid,
2690 LMAC_FID_ON_OST, 0);
2692 result = osd_ea_fid_set(info, obj->oo_inode, fid,
2693 fid_is_on_ost(info, osd_obj2dev(obj),
2694 fid, OI_CHECK_FLD) ?
2695 LMAC_FID_ON_OST : 0, 0);
2700 result = __osd_oi_insert(env, obj, fid, th);
2702 LASSERT(ergo(result == 0,
2703 dt_object_exists(dt) && !dt_object_remote(dt)));
2704 LINVRNT(osd_invariant(obj));
2708 static int osd_declare_object_ref_add(const struct lu_env *env,
2709 struct dt_object *dt,
2710 struct thandle *handle)
2712 struct osd_thandle *oh;
2714 /* it's possible that object doesn't exist yet */
2715 LASSERT(handle != NULL);
2717 oh = container_of0(handle, struct osd_thandle, ot_super);
2718 LASSERT(oh->ot_handle == NULL);
2720 osd_trans_declare_op(env, oh, OSD_OT_REF_ADD,
2721 osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
2727 * Concurrency: @dt is write locked.
2729 static int osd_object_ref_add(const struct lu_env *env,
2730 struct dt_object *dt, struct thandle *th)
2732 struct osd_object *obj = osd_dt_obj(dt);
2733 struct inode *inode = obj->oo_inode;
2734 struct osd_thandle *oh;
2737 if (!dt_object_exists(dt))
2740 LINVRNT(osd_invariant(obj));
2741 LASSERT(!dt_object_remote(dt));
2742 LASSERT(osd_write_locked(env, obj));
2743 LASSERT(th != NULL);
2745 oh = container_of0(th, struct osd_thandle, ot_super);
2746 LASSERT(oh->ot_handle != NULL);
2748 osd_trans_exec_op(env, th, OSD_OT_REF_ADD);
2750 CDEBUG(D_INODE, DFID" increase nlink %d\n",
2751 PFID(lu_object_fid(&dt->do_lu)), inode->i_nlink);
2753 * The DIR_NLINK feature allows directories to exceed LDISKFS_LINK_MAX
2754 * (65000) subdirectories by storing "1" in i_nlink if the link count
2755 * would otherwise overflow. Directory tranversal tools understand
2756 * that (st_nlink == 1) indicates that the filesystem dose not track
2757 * hard links count on the directory, and will not abort subdirectory
2758 * scanning early once (st_nlink - 2) subdirs have been found.
2760 * This also has to properly handle the case of inodes with nlink == 0
2761 * in case they are being linked into the PENDING directory
2763 spin_lock(&obj->oo_guard);
2764 if (unlikely(inode->i_nlink == 0))
2765 /* inc_nlink from 0 may cause WARN_ON */
2766 set_nlink(inode, 1);
2768 ldiskfs_inc_count(oh->ot_handle, inode);
2769 if (!S_ISDIR(inode->i_mode))
2770 LASSERT(inode->i_nlink <= LDISKFS_LINK_MAX);
2772 spin_unlock(&obj->oo_guard);
2774 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2775 LINVRNT(osd_invariant(obj));
2780 static int osd_declare_object_ref_del(const struct lu_env *env,
2781 struct dt_object *dt,
2782 struct thandle *handle)
2784 struct osd_thandle *oh;
2786 LASSERT(!dt_object_remote(dt));
2787 LASSERT(handle != NULL);
2789 oh = container_of0(handle, struct osd_thandle, ot_super);
2790 LASSERT(oh->ot_handle == NULL);
2792 osd_trans_declare_op(env, oh, OSD_OT_REF_DEL,
2793 osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
2799 * Concurrency: @dt is write locked.
2801 static int osd_object_ref_del(const struct lu_env *env, struct dt_object *dt,
2804 struct osd_object *obj = osd_dt_obj(dt);
2805 struct inode *inode = obj->oo_inode;
2806 struct osd_device *osd = osd_dev(dt->do_lu.lo_dev);
2807 struct osd_thandle *oh;
2809 if (!dt_object_exists(dt))
2812 LINVRNT(osd_invariant(obj));
2813 LASSERT(!dt_object_remote(dt));
2814 LASSERT(osd_write_locked(env, obj));
2815 LASSERT(th != NULL);
2817 oh = container_of0(th, struct osd_thandle, ot_super);
2818 LASSERT(oh->ot_handle != NULL);
2820 osd_trans_exec_op(env, th, OSD_OT_REF_DEL);
2822 spin_lock(&obj->oo_guard);
2823 /* That can be result of upgrade from old Lustre version and
2824 * applied only to local files. Just skip this ref_del call.
2825 * ext4_unlink() only treats this as a warning, don't LASSERT here.*/
2826 if (inode->i_nlink == 0) {
2827 CDEBUG_LIMIT(fid_is_norm(lu_object_fid(&dt->do_lu)) ?
2828 D_ERROR : D_INODE, "%s: nlink == 0 on "DFID
2829 ", maybe an upgraded file? (LU-3915)\n",
2830 osd_name(osd), PFID(lu_object_fid(&dt->do_lu)));
2831 spin_unlock(&obj->oo_guard);
2835 CDEBUG(D_INODE, DFID" decrease nlink %d\n",
2836 PFID(lu_object_fid(&dt->do_lu)), inode->i_nlink);
2838 ldiskfs_dec_count(oh->ot_handle, inode);
2839 spin_unlock(&obj->oo_guard);
2841 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2842 LINVRNT(osd_invariant(obj));
2848 * Get the 64-bit version for an inode.
2850 static int osd_object_version_get(const struct lu_env *env,
2851 struct dt_object *dt, dt_obj_version_t *ver)
2853 struct inode *inode = osd_dt_obj(dt)->oo_inode;
2855 CDEBUG(D_INODE, "Get version "LPX64" for inode %lu\n",
2856 LDISKFS_I(inode)->i_fs_version, inode->i_ino);
2857 *ver = LDISKFS_I(inode)->i_fs_version;
2862 * Concurrency: @dt is read locked.
2864 static int osd_xattr_get(const struct lu_env *env, struct dt_object *dt,
2865 struct lu_buf *buf, const char *name)
2867 struct osd_object *obj = osd_dt_obj(dt);
2868 struct inode *inode = obj->oo_inode;
2869 struct osd_thread_info *info = osd_oti_get(env);
2870 struct dentry *dentry = &info->oti_obj_dentry;
2872 /* version get is not real XATTR but uses xattr API */
2873 if (strcmp(name, XATTR_NAME_VERSION) == 0) {
2874 /* for version we are just using xattr API but change inode
2876 if (buf->lb_len == 0)
2877 return sizeof(dt_obj_version_t);
2879 if (buf->lb_len < sizeof(dt_obj_version_t))
2882 osd_object_version_get(env, dt, buf->lb_buf);
2884 return sizeof(dt_obj_version_t);
2887 if (!dt_object_exists(dt))
2890 LASSERT(!dt_object_remote(dt));
2891 LASSERT(inode->i_op != NULL);
2892 LASSERT(inode->i_op->getxattr != NULL);
2894 return __osd_xattr_get(inode, dentry, name, buf->lb_buf, buf->lb_len);
2898 static int osd_declare_xattr_set(const struct lu_env *env,
2899 struct dt_object *dt,
2900 const struct lu_buf *buf, const char *name,
2901 int fl, struct thandle *handle)
2903 struct osd_thandle *oh;
2905 struct super_block *sb = osd_sb(osd_dev(dt->do_lu.lo_dev));
2907 LASSERT(handle != NULL);
2909 oh = container_of0(handle, struct osd_thandle, ot_super);
2910 LASSERT(oh->ot_handle == NULL);
2912 /* optimistic optimization: LMA is set first and usually fit inode */
2913 if (strcmp(name, XATTR_NAME_LMA) == 0) {
2914 if (dt_object_exists(dt))
2918 } else if (strcmp(name, XATTR_NAME_VERSION) == 0) {
2921 credits = osd_dto_credits_noquota[DTO_XATTR_SET];
2922 if (buf && buf->lb_len > sb->s_blocksize) {
2923 credits *= (buf->lb_len + sb->s_blocksize - 1) >>
2924 sb->s_blocksize_bits;
2927 * xattr set may involve inode quota change, reserve credits for
2928 * dquot_initialize()
2930 oh->ot_credits += LDISKFS_MAXQUOTAS_INIT_BLOCKS(sb);
2933 osd_trans_declare_op(env, oh, OSD_OT_XATTR_SET, credits);
2939 * Set the 64-bit version for object
2941 static void osd_object_version_set(const struct lu_env *env,
2942 struct dt_object *dt,
2943 dt_obj_version_t *new_version)
2945 struct inode *inode = osd_dt_obj(dt)->oo_inode;
2947 CDEBUG(D_INODE, "Set version "LPX64" (old "LPX64") for inode %lu\n",
2948 *new_version, LDISKFS_I(inode)->i_fs_version, inode->i_ino);
2950 LDISKFS_I(inode)->i_fs_version = *new_version;
2951 /** Version is set after all inode operations are finished,
2952 * so we should mark it dirty here */
2953 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2957 * Concurrency: @dt is write locked.
2959 static int osd_xattr_set(const struct lu_env *env, struct dt_object *dt,
2960 const struct lu_buf *buf, const char *name, int fl,
2961 struct thandle *handle)
2963 struct osd_object *obj = osd_dt_obj(dt);
2964 struct inode *inode = obj->oo_inode;
2965 struct osd_thread_info *info = osd_oti_get(env);
2969 LASSERT(handle != NULL);
2971 /* version set is not real XATTR */
2972 if (strcmp(name, XATTR_NAME_VERSION) == 0) {
2973 /* for version we are just using xattr API but change inode
2975 LASSERT(buf->lb_len == sizeof(dt_obj_version_t));
2976 osd_object_version_set(env, dt, buf->lb_buf);
2977 return sizeof(dt_obj_version_t);
2980 CDEBUG(D_INODE, DFID" set xattr '%s' with size %zu\n",
2981 PFID(lu_object_fid(&dt->do_lu)), name, buf->lb_len);
2983 osd_trans_exec_op(env, handle, OSD_OT_XATTR_SET);
2984 if (fl & LU_XATTR_REPLACE)
2985 fs_flags |= XATTR_REPLACE;
2987 if (fl & LU_XATTR_CREATE)
2988 fs_flags |= XATTR_CREATE;
2990 if (strcmp(name, XATTR_NAME_LMV) == 0) {
2991 struct lustre_mdt_attrs *lma = &info->oti_mdt_attrs;
2994 rc = osd_get_lma(info, inode, &info->oti_obj_dentry, lma);
2998 lma->lma_incompat |= LMAI_STRIPED;
2999 lustre_lma_swab(lma);
3000 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma,
3001 sizeof(*lma), XATTR_REPLACE);
3006 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LINKEA_OVERFLOW) &&
3007 strcmp(name, XATTR_NAME_LINK) == 0)
3010 return __osd_xattr_set(info, inode, name, buf->lb_buf, buf->lb_len,
3015 * Concurrency: @dt is read locked.
3017 static int osd_xattr_list(const struct lu_env *env, struct dt_object *dt,
3018 const struct lu_buf *buf)
3020 struct osd_object *obj = osd_dt_obj(dt);
3021 struct inode *inode = obj->oo_inode;
3022 struct osd_thread_info *info = osd_oti_get(env);
3023 struct dentry *dentry = &info->oti_obj_dentry;
3025 if (!dt_object_exists(dt))
3028 LASSERT(!dt_object_remote(dt));
3029 LASSERT(inode->i_op != NULL);
3030 LASSERT(inode->i_op->listxattr != NULL);
3032 dentry->d_inode = inode;
3033 dentry->d_sb = inode->i_sb;
3034 return inode->i_op->listxattr(dentry, buf->lb_buf, buf->lb_len);
3037 static int osd_declare_xattr_del(const struct lu_env *env,
3038 struct dt_object *dt, const char *name,
3039 struct thandle *handle)
3041 struct osd_thandle *oh;
3042 struct super_block *sb = osd_sb(osd_dev(dt->do_lu.lo_dev));
3044 LASSERT(!dt_object_remote(dt));
3045 LASSERT(handle != NULL);
3047 oh = container_of0(handle, struct osd_thandle, ot_super);
3048 LASSERT(oh->ot_handle == NULL);
3050 osd_trans_declare_op(env, oh, OSD_OT_XATTR_SET,
3051 osd_dto_credits_noquota[DTO_XATTR_SET]);
3053 * xattr del may involve inode quota change, reserve credits for
3054 * dquot_initialize()
3056 oh->ot_credits += LDISKFS_MAXQUOTAS_INIT_BLOCKS(sb);
3062 * Concurrency: @dt is write locked.
3064 static int osd_xattr_del(const struct lu_env *env, struct dt_object *dt,
3065 const char *name, struct thandle *handle)
3067 struct osd_object *obj = osd_dt_obj(dt);
3068 struct inode *inode = obj->oo_inode;
3069 struct osd_thread_info *info = osd_oti_get(env);
3070 struct dentry *dentry = &info->oti_obj_dentry;
3073 if (!dt_object_exists(dt))
3076 LASSERT(!dt_object_remote(dt));
3077 LASSERT(inode->i_op != NULL);
3078 LASSERT(inode->i_op->removexattr != NULL);
3079 LASSERT(handle != NULL);
3081 osd_trans_exec_op(env, handle, OSD_OT_XATTR_SET);
3083 ll_vfs_dq_init(inode);
3084 dentry->d_inode = inode;
3085 dentry->d_sb = inode->i_sb;
3086 rc = inode->i_op->removexattr(dentry, name);
3090 static int osd_object_sync(const struct lu_env *env, struct dt_object *dt,
3091 __u64 start, __u64 end)
3093 struct osd_object *obj = osd_dt_obj(dt);
3094 struct inode *inode = obj->oo_inode;
3095 struct osd_thread_info *info = osd_oti_get(env);
3096 struct dentry *dentry = &info->oti_obj_dentry;
3097 struct file *file = &info->oti_file;
3102 dentry->d_inode = inode;
3103 dentry->d_sb = inode->i_sb;
3104 file->f_dentry = dentry;
3105 file->f_mapping = inode->i_mapping;
3106 file->f_op = inode->i_fop;
3107 set_file_inode(file, inode);
3109 rc = ll_vfs_fsync_range(file, start, end, 0);
3118 static int osd_iam_index_probe(const struct lu_env *env, struct osd_object *o,
3119 const struct dt_index_features *feat)
3121 struct iam_descr *descr;
3123 if (osd_object_is_root(o))
3124 return feat == &dt_directory_features;
3126 LASSERT(o->oo_dir != NULL);
3128 descr = o->oo_dir->od_container.ic_descr;
3129 if (feat == &dt_directory_features) {
3130 if (descr->id_rec_size == sizeof(struct osd_fid_pack))
3136 feat->dif_keysize_min <= descr->id_key_size &&
3137 descr->id_key_size <= feat->dif_keysize_max &&
3138 feat->dif_recsize_min <= descr->id_rec_size &&
3139 descr->id_rec_size <= feat->dif_recsize_max &&
3140 !(feat->dif_flags & (DT_IND_VARKEY |
3141 DT_IND_VARREC | DT_IND_NONUNQ)) &&
3142 ergo(feat->dif_flags & DT_IND_UPDATE,
3143 1 /* XXX check that object (and file system) is
3148 static int osd_iam_container_init(const struct lu_env *env,
3149 struct osd_object *obj,
3150 struct osd_directory *dir)
3152 struct iam_container *bag = &dir->od_container;
3155 result = iam_container_init(bag, &dir->od_descr, obj->oo_inode);
3159 result = iam_container_setup(bag);
3161 obj->oo_dt.do_index_ops = &osd_index_iam_ops;
3163 iam_container_fini(bag);