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, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 021110-1307, USA
24 * Copyright (c) 2012, 2013, Intel Corporation.
25 * Use is subject to license terms.
27 * Author: Johann Lombardi <johann@whamcloud.com>
28 * Author: Niu Yawei <niu@whamcloud.com>
31 #include <lustre_quota.h>
32 #include "osd_internal.h"
35 * Helpers function to find out the quota type (USRQUOTA/GRPQUOTA) of a
38 static inline int fid2type(const struct lu_fid *fid)
40 LASSERT(fid_is_acct(fid));
41 if (fid_oid(fid) == ACCT_GROUP_OID)
46 static inline int obj2type(struct dt_object *obj)
48 return fid2type(lu_object_fid(&obj->do_lu));
52 * Space Accounting Management
56 * Look up an accounting object based on its fid.
58 * \param info - is the osd thread info passed by the caller
59 * \param osd - is the osd device
60 * \param fid - is the fid of the accounting object we want to look up
61 * \param id - is the osd_inode_id struct to fill with the inode number of
62 * the quota file if the lookup is successful
64 int osd_acct_obj_lookup(struct osd_thread_info *info, struct osd_device *osd,
65 const struct lu_fid *fid, struct osd_inode_id *id)
67 struct super_block *sb = osd_sb(osd);
68 unsigned long qf_inums[2] = {
69 le32_to_cpu(LDISKFS_SB(sb)->s_es->s_usr_quota_inum),
70 le32_to_cpu(LDISKFS_SB(sb)->s_es->s_grp_quota_inum)
74 LASSERT(fid_is_acct(fid));
76 if (!LDISKFS_HAS_RO_COMPAT_FEATURE(sb,
77 LDISKFS_FEATURE_RO_COMPAT_QUOTA))
80 id->oii_gen = OSD_OII_NOGEN;
81 id->oii_ino = qf_inums[fid2type(fid)];
82 if (!ldiskfs_valid_inum(sb, id->oii_ino))
88 * Return space usage (#blocks & #inodes) consumed by a given uid or gid.
90 * \param env - is the environment passed by the caller
91 * \param dtobj - is the accounting object
92 * \param dtrec - is the record to fill with space usage information
93 * \param dtkey - is the id the of the user or group for which we would
94 * like to access disk usage.
95 * \param capa - is the capability, not used.
97 * \retval +ve - success : exact match
98 * \retval -ve - failure
100 static int osd_acct_index_lookup(const struct lu_env *env,
101 struct dt_object *dtobj,
102 struct dt_rec *dtrec,
103 const struct dt_key *dtkey,
104 struct lustre_capa *capa)
106 struct osd_thread_info *info = osd_oti_get(env);
107 #ifdef HAVE_DQUOT_FS_DISK_QUOTA
108 struct fs_disk_quota *dqblk = &info->oti_fdq;
110 struct if_dqblk *dqblk = &info->oti_dqblk;
112 struct super_block *sb = osd_sb(osd_obj2dev(osd_dt_obj(dtobj)));
113 struct lquota_acct_rec *rec = (struct lquota_acct_rec *)dtrec;
114 __u64 id = *((__u64 *)dtkey);
116 #ifdef HAVE_DQUOT_KQID
122 memset((void *)dqblk, 0, sizeof(struct obd_dqblk));
123 #ifdef HAVE_DQUOT_KQID
124 qid = make_kqid(&init_user_ns, obj2type(dtobj), id);
125 rc = sb->s_qcop->get_dqblk(sb, qid, dqblk);
127 rc = sb->s_qcop->get_dqblk(sb, obj2type(dtobj), (qid_t) id, dqblk);
131 #ifdef HAVE_DQUOT_FS_DISK_QUOTA
132 rec->bspace = dqblk->d_bcount;
133 rec->ispace = dqblk->d_icount;
135 rec->bspace = dqblk->dqb_curspace;
136 rec->ispace = dqblk->dqb_curinodes;
141 #define QUOTA_IT_READ_ERROR(it, rc) \
142 CERROR("%s: Error while trying to read quota information, " \
143 "failed with %d\n", \
144 osd_dev(it->oiq_obj->oo_dt.do_lu.lo_dev)->od_svname, rc); \
147 * Initialize osd Iterator for given osd index object.
149 * \param dt - osd index object
150 * \param attr - not used
151 * \param capa - BYPASS_CAPA
153 static struct dt_it *osd_it_acct_init(const struct lu_env *env,
154 struct dt_object *dt,
155 __u32 attr, struct lustre_capa *capa)
157 struct osd_thread_info *info = osd_oti_get(env);
158 struct osd_it_quota *it;
159 struct lu_object *lo = &dt->do_lu;
160 struct osd_object *obj = osd_dt_obj(dt);
164 LASSERT(lu_object_exists(lo));
167 RETURN(ERR_PTR(-ENOMEM));
169 it = &info->oti_it_quota;
170 memset(it, 0, sizeof(*it));
173 INIT_LIST_HEAD(&it->oiq_list);
175 /* LUSTRE_DQTREEOFF is the initial offset where the tree can be found */
176 it->oiq_blk[0] = LUSTRE_DQTREEOFF;
178 /* NB: we don't need to store the tree depth since it is always
179 * equal to LUSTRE_DQTREEDEPTH - 1 (root has depth = 0) for a leaf
181 RETURN((struct dt_it *)it);
185 * Free given iterator.
187 * \param di - osd iterator
189 static void osd_it_acct_fini(const struct lu_env *env, struct dt_it *di)
191 struct osd_it_quota *it = (struct osd_it_quota *)di;
192 struct osd_quota_leaf *leaf, *tmp;
195 lu_object_put(env, &it->oiq_obj->oo_dt.do_lu);
197 list_for_each_entry_safe(leaf, tmp, &it->oiq_list, oql_link) {
198 list_del_init(&leaf->oql_link);
205 * Move Iterator to record specified by \a key, if the \a key isn't found,
206 * move to the first valid record.
208 * \param di - osd iterator
209 * \param key - uid or gid
211 * \retval +ve - di points to the first valid record
212 * \retval +1 - di points to exact matched key
213 * \retval -ve - failure
215 static int osd_it_acct_get(const struct lu_env *env, struct dt_it *di,
216 const struct dt_key *key)
218 struct osd_it_quota *it = (struct osd_it_quota *)di;
219 const struct lu_fid *fid =
220 lu_object_fid(&it->oiq_obj->oo_dt.do_lu);
221 int type = fid2type(fid);
222 qid_t dqid = *(qid_t *)key;
228 offset = find_tree_dqentry(env, it->oiq_obj, type, dqid,
229 LUSTRE_DQTREEOFF, 0, it);
230 if (offset > 0) { /* Found */
232 } else if (offset < 0) { /* Error */
233 QUOTA_IT_READ_ERROR(it, (int)offset);
237 /* The @key is not found, move to the first valid entry */
238 rc = walk_tree_dqentry(env, it->oiq_obj, type, it->oiq_blk[0], 0,
251 * \param di - osd iterator
253 static void osd_it_acct_put(const struct lu_env *env, struct dt_it *di)
258 static int osd_it_add_processed(struct osd_it_quota *it, int depth)
260 struct osd_quota_leaf *leaf;
265 INIT_LIST_HEAD(&leaf->oql_link);
266 leaf->oql_blk = it->oiq_blk[depth];
267 list_add_tail(&leaf->oql_link, &it->oiq_list);
272 * Move on to the next valid entry.
274 * \param di - osd iterator
276 * \retval +ve - iterator reached the end
277 * \retval 0 - iterator has not reached the end yet
278 * \retval -ve - unexpected failure
280 static int osd_it_acct_next(const struct lu_env *env, struct dt_it *di)
282 struct osd_it_quota *it = (struct osd_it_quota *)di;
283 const struct lu_fid *fid =
284 lu_object_fid(&it->oiq_obj->oo_dt.do_lu);
285 int type = fid2type(fid);
291 /* Let's first check if there are any remaining valid entry in the
292 * current leaf block. Start with the next entry after the current one.
294 depth = LUSTRE_DQTREEDEPTH;
295 index = it->oiq_index[depth];
296 if (++index < LUSTRE_DQSTRINBLK) {
297 /* Search for the next valid entry from current index */
298 rc = walk_block_dqentry(env, it->oiq_obj, type,
299 it->oiq_blk[depth], index, it);
301 QUOTA_IT_READ_ERROR(it, rc);
303 } else if (rc == 0) {
304 /* Found on entry, @it is already updated to the
305 * new position in walk_block_dqentry(). */
308 rc = osd_it_add_processed(it, depth);
313 rc = osd_it_add_processed(it, depth);
319 /* We have consumed all the entries of the current leaf block, move on
320 * to the next one. */
323 /* We keep searching as long as walk_tree_dqentry() returns +1
324 * (= no valid entry found). */
325 for (; depth >= 0 && rc > 0; depth--) {
326 index = it->oiq_index[depth];
329 rc = walk_tree_dqentry(env, it->oiq_obj, type,
330 it->oiq_blk[depth], depth, index, it);
334 QUOTA_IT_READ_ERROR(it, rc);
339 * Return pointer to the key under iterator.
341 * \param di - osd iterator
343 static struct dt_key *osd_it_acct_key(const struct lu_env *env,
344 const struct dt_it *di)
346 struct osd_it_quota *it = (struct osd_it_quota *)di;
349 RETURN((struct dt_key *)&it->oiq_id);
353 * Return size of key under iterator (in bytes)
355 * \param di - osd iterator
357 static int osd_it_acct_key_size(const struct lu_env *env,
358 const struct dt_it *di)
360 struct osd_it_quota *it = (struct osd_it_quota *)di;
363 RETURN((int)sizeof(it->oiq_id));
367 * Return pointer to the record under iterator.
369 * \param di - osd iterator
370 * \param attr - not used
372 static int osd_it_acct_rec(const struct lu_env *env,
373 const struct dt_it *di,
374 struct dt_rec *dtrec, __u32 attr)
376 struct osd_it_quota *it = (struct osd_it_quota *)di;
377 const struct dt_key *key = osd_it_acct_key(env, di);
382 rc = osd_acct_index_lookup(env, &it->oiq_obj->oo_dt, dtrec, key,
384 RETURN(rc > 0 ? 0 : rc);
388 * Returns cookie for current Iterator position.
390 * \param di - osd iterator
392 static __u64 osd_it_acct_store(const struct lu_env *env,
393 const struct dt_it *di)
395 struct osd_it_quota *it = (struct osd_it_quota *)di;
402 * Restore iterator from cookie. if the \a hash isn't found,
403 * restore the first valid record.
405 * \param di - osd iterator
406 * \param hash - iterator location cookie
408 * \retval +ve - di points to the first valid record
409 * \retval +1 - di points to exact matched hash
410 * \retval -ve - failure
412 static int osd_it_acct_load(const struct lu_env *env,
413 const struct dt_it *di, __u64 hash)
416 RETURN(osd_it_acct_get(env, (struct dt_it *)di,
417 (const struct dt_key *)&hash));
421 * Index and Iterator operations for accounting objects
423 const struct dt_index_operations osd_acct_index_ops = {
424 .dio_lookup = osd_acct_index_lookup,
426 .init = osd_it_acct_init,
427 .fini = osd_it_acct_fini,
428 .get = osd_it_acct_get,
429 .put = osd_it_acct_put,
430 .next = osd_it_acct_next,
431 .key = osd_it_acct_key,
432 .key_size = osd_it_acct_key_size,
433 .rec = osd_it_acct_rec,
434 .store = osd_it_acct_store,
435 .load = osd_it_acct_load
439 static inline void osd_quota_swab(char *ptr, size_t size)
443 LASSERT((size & (sizeof(__u64) - 1)) == 0);
445 for (offset = 0; offset < size; offset += sizeof(__u64))
446 __swab64s((__u64 *)(ptr + offset));
449 const struct dt_rec *osd_quota_pack(struct osd_object *obj,
450 const struct dt_rec *rec,
451 union lquota_rec *quota_rec)
454 struct iam_descr *descr;
456 LASSERT(obj->oo_dir != NULL);
457 descr = obj->oo_dir->od_container.ic_descr;
459 memcpy(quota_rec, rec, descr->id_rec_size);
461 osd_quota_swab((char *)quota_rec, descr->id_rec_size);
462 return (const struct dt_rec *)quota_rec;
468 void osd_quota_unpack(struct osd_object *obj, const struct dt_rec *rec)
471 struct iam_descr *descr;
473 LASSERT(obj->oo_dir != NULL);
474 descr = obj->oo_dir->od_container.ic_descr;
476 osd_quota_swab((char *)rec, descr->id_rec_size);
482 static inline int osd_qid_type(struct osd_thandle *oh, int i)
484 return (oh->ot_id_type & (1 << i)) ? GRPQUOTA : USRQUOTA;
487 static inline void osd_qid_set_type(struct osd_thandle *oh, int i, int type)
489 oh->ot_id_type |= ((type == GRPQUOTA) ? (1 << i) : 0);
493 * Reserve journal credits for quota files update first, then call
494 * ->op_begin() to perform quota enforcement.
496 * \param env - the environment passed by the caller
497 * \param oh - osd transaction handle
498 * \param qi - quota id & space required for this operation
499 * \param obj - osd object, could be NULL when it's under create
500 * \param enforce - whether to perform quota enforcement
501 * \param flags - if the operation is write, return no user quota, no
502 * group quota, or sync commit flags to the caller
504 * \retval 0 - success
505 * \retval -ve - failure
507 int osd_declare_qid(const struct lu_env *env, struct osd_thandle *oh,
508 struct lquota_id_info *qi, struct osd_object *obj,
509 bool enforce, int *flags)
511 struct osd_thread_info *info = osd_oti_get(env);
512 struct osd_device *dev = info->oti_dev;
513 struct qsd_instance *qsd = dev->od_quota_slave;
514 struct inode *inode = NULL;
520 LASSERTF(oh->ot_id_cnt <= OSD_MAX_UGID_CNT, "count=%d\n",
523 for (i = 0; i < oh->ot_id_cnt; i++) {
524 if (oh->ot_id_array[i] == qi->lqi_id.qid_uid &&
525 osd_qid_type(oh, i) == qi->lqi_type) {
532 /* we need to account for credits for this new ID */
533 if (i >= OSD_MAX_UGID_CNT) {
534 CERROR("Too many(%d) trans qids!\n", i + 1);
539 inode = obj->oo_inode;
541 /* root ID entry should be always present in the quota file */
542 if (qi->lqi_id.qid_uid == 0) {
545 /* used space for this ID could be dropped to zero,
546 * reserve extra credits for removing ID entry from
548 if (qi->lqi_space < 0)
549 crd = LDISKFS_QUOTA_DEL_BLOCKS(osd_sb(dev));
550 /* reserve credits for adding ID entry to the quota
551 * file if the i_dquot isn't initialized yet. */
552 else if (inode == NULL ||
553 inode->i_dquot[qi->lqi_type] == NULL)
554 crd = LDISKFS_QUOTA_INIT_BLOCKS(osd_sb(dev));
559 osd_trans_declare_op(env, oh, OSD_OT_QUOTA, crd);
561 oh->ot_id_array[i] = qi->lqi_id.qid_uid;
562 osd_qid_set_type(oh, i, qi->lqi_type);
566 if (unlikely(qsd == NULL))
567 /* quota slave instance hasn't been allocated yet */
572 rc = qsd_op_begin(env, qsd, oh->ot_quota_trans, qi, flags);
577 * Wrapper for osd_declare_qid()
579 * \param env - the environment passed by the caller
580 * \param uid - user id of the inode
581 * \param gid - group id of the inode
582 * \param space - how many blocks/inodes will be consumed/released
583 * \param oh - osd transaction handle
584 * \param obj - osd object, could be NULL when it's under create
585 * \param is_blk - block quota or inode quota?
586 * \param flags - if the operation is write, return no user quota, no
587 * group quota, or sync commit flags to the caller
588 * \param force - set to 1 when changes are performed by root user and thus
589 * can't failed with EDQUOT
591 * \retval 0 - success
592 * \retval -ve - failure
594 int osd_declare_inode_qid(const struct lu_env *env, qid_t uid, qid_t gid,
595 long long space, struct osd_thandle *oh,
596 struct osd_object *obj, bool is_blk, int *flags,
599 struct osd_thread_info *info = osd_oti_get(env);
600 struct lquota_id_info *qi = &info->oti_qi;
601 int rcu, rcg; /* user & group rc */
604 /* let's start with user quota */
605 qi->lqi_id.qid_uid = uid;
606 qi->lqi_type = USRQUOTA;
607 qi->lqi_space = space;
608 qi->lqi_is_blk = is_blk;
609 rcu = osd_declare_qid(env, oh, qi, obj, true, flags);
611 if (force && (rcu == -EDQUOT || rcu == -EINPROGRESS))
612 /* ignore EDQUOT & EINPROGRESS when changes are done by root */
615 /* For non-fatal error, we want to continue to get the noquota flags
616 * for group id. This is only for commit write, which has @flags passed
617 * in. See osd_declare_write_commit().
618 * When force is set to true, we also want to proceed with the gid */
619 if (rcu && (rcu != -EDQUOT || flags == NULL))
622 /* and now group quota */
623 qi->lqi_id.qid_gid = gid;
624 qi->lqi_type = GRPQUOTA;
625 rcg = osd_declare_qid(env, oh, qi, obj, true, flags);
627 if (force && (rcg == -EDQUOT || rcg == -EINPROGRESS))
628 /* as before, ignore EDQUOT & EINPROGRESS for root */
631 RETURN(rcu ? rcu : rcg);
634 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 7, 53, 0)
635 /* Following code is used to migrate old admin quota files (in Linux quota
636 * file v2 format) into the new quota global indexes (in IAM format). */
638 /* copied from osd_it_acct_get(), only changed the 'type' to -1 */
639 static int osd_it_admin_get(const struct lu_env *env, struct dt_it *di,
640 const struct dt_key *key)
642 struct osd_it_quota *it = (struct osd_it_quota *)di;
644 qid_t dqid = *(qid_t *)key;
649 offset = find_tree_dqentry(env, it->oiq_obj, type, dqid,
650 LUSTRE_DQTREEOFF, 0, it);
651 if (offset > 0) { /* Found */
653 } else if (offset < 0) { /* Error */
654 QUOTA_IT_READ_ERROR(it, (int)offset);
658 /* The @key is not found, move to the first valid entry */
659 rc = walk_tree_dqentry(env, it->oiq_obj, type, it->oiq_blk[0], 0,
662 /* no valid entry found */
667 static int osd_it_admin_load(const struct lu_env *env,
668 const struct dt_it *di, __u64 hash)
673 rc = osd_it_admin_get(env, (struct dt_it *)di,
674 (const struct dt_key *)&hash);
678 static int osd_it_admin_rec(const struct lu_env *env,
679 const struct dt_it *di,
680 struct dt_rec *dtrec, __u32 attr)
682 struct osd_it_quota *it = (struct osd_it_quota *)di;
686 struct lustre_disk_dqblk_v2 *dqblk =
687 (struct lustre_disk_dqblk_v2 *)dtrec;
691 buf.lb_len = sizeof(*dqblk);
693 pos = it->oiq_offset;
694 rc = dt_record_read(env, &it->oiq_obj->oo_dt, &buf, &pos);
698 /* copied from osd_it_acct_next(), only changed the 'type' to -1 */
699 static int osd_it_admin_next(const struct lu_env *env, struct dt_it *di)
701 struct osd_it_quota *it = (struct osd_it_quota *)di;
707 /* Let's first check if there are any remaining valid entry in the
708 * current leaf block. Start with the next entry after the current one.
710 depth = LUSTRE_DQTREEDEPTH;
711 index = it->oiq_index[depth];
712 if (++index < LUSTRE_DQSTRINBLK) {
713 /* Search for the next valid entry from current index */
714 rc = walk_block_dqentry(env, it->oiq_obj, type,
715 it->oiq_blk[depth], index, it);
717 QUOTA_IT_READ_ERROR(it, rc);
719 } else if (rc == 0) {
720 /* Found on entry, @it is already updated to the
721 * new position in walk_block_dqentry(). */
724 rc = osd_it_add_processed(it, depth);
729 rc = osd_it_add_processed(it, depth);
735 /* We have consumed all the entries of the current leaf block, move on
736 * to the next one. */
739 /* We keep searching as long as walk_tree_dqentry() returns +1
740 * (= no valid entry found). */
741 for (; depth >= 0 && rc > 0; depth--) {
742 index = it->oiq_index[depth];
745 rc = walk_tree_dqentry(env, it->oiq_obj, type,
746 it->oiq_blk[depth], depth, index, it);
750 QUOTA_IT_READ_ERROR(it, rc);
754 const struct dt_index_operations osd_admin_index_ops = {
755 .dio_lookup = osd_acct_index_lookup,
757 .init = osd_it_acct_init,
758 .fini = osd_it_acct_fini,
759 .get = osd_it_admin_get,
760 .put = osd_it_acct_put,
761 .next = osd_it_admin_next,
762 .key = osd_it_acct_key,
763 .key_size = osd_it_acct_key_size,
764 .rec = osd_it_admin_rec,
765 .store = osd_it_acct_store,
766 .load = osd_it_admin_load
770 static int convert_quota_file(const struct lu_env *env,
771 struct dt_object *old, struct dt_object *new,
774 const struct dt_it_ops *iops = &old->do_index_ops->dio_it;
775 struct osd_object *obj;
780 struct lquota_glb_rec *glb_rec = NULL;
783 struct lustre_disk_dqblk_v2 *dqblk = NULL;
784 struct lustre_disk_dqinfo *dqinfo = NULL;
787 obj = osd_dt_obj(old);
788 LASSERT(obj->oo_inode);
790 if (i_size_read(obj->oo_inode) == 0)
793 /* allocate buffers */
794 OBD_ALLOC_PTR(dqinfo);
798 OBD_ALLOC_PTR(glb_rec);
800 GOTO(out, rc = -ENOMEM);
802 OBD_ALLOC_PTR(dqblk);
804 GOTO(out, rc = -ENOMEM);
806 /* convert the old igrace/bgrace */
808 buf.lb_len = sizeof(*dqinfo);
809 pos = LUSTRE_DQINFOOFF;
811 rc = dt_record_read(env, old, &buf, &pos);
815 /* keep it in little endian */
816 grace = isblk ? dqinfo->dqi_bgrace : dqinfo->dqi_igrace;
818 glb_rec->qbr_time = grace;
819 rc = lquota_disk_write_glb(env, new, 0, glb_rec);
822 glb_rec->qbr_time = 0;
825 /* iterate the old admin file, insert each record into the
827 it = iops->init(env, old, 0, BYPASS_CAPA);
829 GOTO(out, rc = PTR_ERR(it));
831 rc = iops->load(env, it, 0);
833 GOTO(out_it, rc = 0);
838 key = iops->key(env, it);
840 GOTO(out_it, rc = PTR_ERR(key));
842 /* skip the root user/group */
843 if (*((__u64 *)key) == 0)
846 rc = iops->rec(env, it, (struct dt_rec *)dqblk, 0);
850 /* keep the value in little endian */
851 glb_rec->qbr_hardlimit = isblk ? dqblk->dqb_bhardlimit :
852 dqblk->dqb_ihardlimit;
853 glb_rec->qbr_softlimit = isblk ? dqblk->dqb_bsoftlimit :
854 dqblk->dqb_isoftlimit;
856 rc = lquota_disk_write_glb(env, new, *((__u64 *)key), glb_rec);
860 rc = iops->next(env, it);
874 OBD_FREE_PTR(glb_rec);
876 OBD_FREE_PTR(dqinfo);
880 /* Nobdy else can access the global index now, it's safe to truncate and
882 static int truncate_quota_index(const struct lu_env *env, struct dt_object *dt,
883 const struct dt_index_features *feat)
885 struct osd_device *osd = osd_obj2dev(osd_dt_obj(dt));
887 struct lu_attr *attr;
888 struct osd_thandle *oth;
891 struct iam_container *bag = &(osd_dt_obj(dt))->oo_dir->od_container;
892 struct lu_buf *lb = &osd_oti_get(env)->oti_buf;
895 LASSERT(bag->ic_root_bh != NULL);
896 iam_container_fini(bag);
898 LASSERT(fid_seq(lu_object_fid(&dt->do_lu)) == FID_SEQ_QUOTA_GLB);
905 attr->la_valid = LA_SIZE;
907 th = dt_trans_create(env, &osd->od_dt_dev);
913 rc = dt_declare_punch(env, dt, 0, OBD_OBJECT_EOF, th);
917 rc = dt_declare_attr_set(env, dt, attr, th);
921 inode = osd_dt_obj(dt)->oo_inode;
924 /* iam_lfix_create() writes two blocks at the beginning */
925 lb->lb_len = osd_sb(osd)->s_blocksize * 2;
926 rc = dt_declare_record_write(env, dt, lb, 0, th);
930 rc = dt_trans_start_local(env, &osd->od_dt_dev, th);
934 dt_write_lock(env, dt, 0);
935 rc = dt_punch(env, dt, 0, OBD_OBJECT_EOF, th, BYPASS_CAPA);
939 rc = dt_attr_set(env, dt, attr, th, BYPASS_CAPA);
943 oth = container_of(th, struct osd_thandle, ot_super);
945 if (feat->dif_flags & DT_IND_VARKEY)
946 rc = iam_lvar_create(osd_dt_obj(dt)->oo_inode,
947 feat->dif_keysize_max,
949 feat->dif_recsize_max, oth->ot_handle);
951 rc = iam_lfix_create(osd_dt_obj(dt)->oo_inode,
952 feat->dif_keysize_max,
954 feat->dif_recsize_max, oth->ot_handle);
956 dt_write_unlock(env, dt);
958 dt_trans_stop(env, &osd->od_dt_dev, th);
962 rc = iam_container_setup(bag);
964 iam_container_fini(bag);
969 static int set_quota_index_version(const struct lu_env *env,
970 struct dt_object *dt,
971 dt_obj_version_t version)
973 struct osd_device *osd = osd_obj2dev(osd_dt_obj(dt));
978 th = dt_trans_create(env, &osd->od_dt_dev);
982 rc = dt_declare_version_set(env, dt, th);
986 rc = dt_trans_start_local(env, &osd->od_dt_dev, th);
991 dt_version_set(env, dt, version, th);
993 dt_trans_stop(env, &osd->od_dt_dev, th);
997 int osd_quota_migration(const struct lu_env *env, struct dt_object *dt,
998 const struct dt_index_features *feat)
1000 struct osd_thread_info *oti = osd_oti_get(env);
1001 struct osd_device *osd = osd_obj2dev(osd_dt_obj(dt));
1002 struct dt_object *root, *parent = NULL, *admin = NULL;
1003 dt_obj_version_t version;
1005 bool isblk = false, converted = false;
1009 /* not newly created global index */
1010 version = dt_version_get(env, dt);
1015 rc = dt_root_get(env, &osd->od_dt_dev, &oti->oti_fid);
1017 CERROR("%s: Can't get root FID, rc:%d\n", osd->od_svname, rc);
1021 root = dt_locate(env, &osd->od_dt_dev, &oti->oti_fid);
1023 CERROR("%s: Failed to locate root "DFID", rc:%ld\n",
1024 osd->od_svname, PFID(&oti->oti_fid), PTR_ERR(root));
1025 RETURN(PTR_ERR(root));
1028 /* locate /OBJECTS */
1029 rc = dt_lookup_dir(env, root, OBJECTS, &oti->oti_fid);
1030 if (rc == -ENOENT) {
1033 CERROR("%s: Failed to lookup %s, rc:%d\n",
1034 osd->od_svname, OBJECTS, rc);
1038 parent = dt_locate(env, &osd->od_dt_dev, &oti->oti_fid);
1039 if (IS_ERR(parent)) {
1040 CERROR("%s: Failed to locate %s "DFID", rc:%ld\n",
1041 osd->od_svname, OBJECTS, PFID(&oti->oti_fid),
1043 GOTO(out, rc = PTR_ERR(parent));
1046 /* locate quota admin file */
1047 if (feat == &dt_quota_iusr_features) {
1050 } else if (feat == &dt_quota_busr_features) {
1053 } else if (feat == &dt_quota_igrp_features) {
1061 rc = dt_lookup_dir(env, parent, fname, &oti->oti_fid);
1062 if (rc == -ENOENT) {
1065 CERROR("%s: Failed to lookup %s, rc:%d\n",
1066 osd->od_svname, fname, rc);
1070 admin = dt_locate(env, &osd->od_dt_dev, &oti->oti_fid);
1071 if (IS_ERR(admin)) {
1072 CERROR("%s: Failed to locate %s "DFID", rc:%d\n",
1073 osd->od_svname, fname, PFID(&oti->oti_fid), rc);
1074 GOTO(out, rc = PTR_ERR(admin));
1077 if (!dt_object_exists(admin)) {
1078 CERROR("%s: Old admin file %s doesn't exist, but is still "
1079 " referenced in parent directory.\n",
1080 osd->od_svname, fname);
1081 GOTO(out, rc = -ENOENT);
1084 /* truncate the new quota index file in case of any leftovers
1085 * from last failed migration */
1086 rc = truncate_quota_index(env, dt, feat);
1088 CERROR("%s: Failed to truncate the quota index "DFID", rc:%d\n",
1089 osd->od_svname, PFID(lu_object_fid(&dt->do_lu)), rc);
1093 /* set up indexing operations for the admin file */
1094 admin->do_index_ops = &osd_admin_index_ops;
1096 LCONSOLE_INFO("%s: Migrate %s quota from old admin quota file(%s) to "
1097 "new IAM quota index("DFID").\n", osd->od_svname,
1098 isblk ? "block" : "inode", fname,
1099 PFID(lu_object_fid(&dt->do_lu)));
1101 /* iterate the admin quota file, and insert each record into
1102 * the new index file */
1103 rc = convert_quota_file(env, admin, dt, isblk);
1105 CERROR("%s: Migrate old admin quota file(%s) failed, rc:%d\n",
1106 osd->od_svname, fname, rc);
1109 /* if no migration happen, we need to set the default grace time. */
1110 if (!converted && rc == 0) {
1111 struct lquota_glb_rec *rec = &oti->oti_quota_rec.lqr_glb_rec;
1113 rec->qbr_hardlimit = 0;
1114 rec->qbr_softlimit = 0;
1115 rec->qbr_granted = 0;
1116 rec->qbr_time = isblk ? MAX_DQ_TIME : MAX_IQ_TIME;
1118 rc = lquota_disk_write_glb(env, dt, 0, rec);
1120 CERROR("%s: Failed to set default grace time for "
1121 "index("DFID"), rc:%d\n", osd->od_svname,
1122 PFID(lu_object_fid(&dt->do_lu)), rc);
1125 /* bump index version to 1 (or 2 if migration happened), so the
1126 * migration will be skipped next time. */
1128 rc = set_quota_index_version(env , dt, converted ? 2 : 1);
1130 CERROR("%s: Failed to set quota index("DFID") "
1131 "version, rc:%d\n", osd->od_svname,
1132 PFID(lu_object_fid(&dt->do_lu)), rc);
1135 if (admin && !IS_ERR(admin))
1136 lu_object_put(env, &admin->do_lu);
1137 if (parent && !IS_ERR(parent))
1138 lu_object_put(env, &parent->do_lu);
1139 lu_object_put(env, &root->do_lu);
1143 #endif /* LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 7, 53, 0) */