xref: /linux/fs/xfs/xfs_quota.h (revision 542951592c99ff7b15c050954c051dd6dd6c0f97)
10b61f8a4SDave Chinner // SPDX-License-Identifier: GPL-2.0
21da177e4SLinus Torvalds /*
37b718769SNathan Scott  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
47b718769SNathan Scott  * All Rights Reserved.
51da177e4SLinus Torvalds  */
61da177e4SLinus Torvalds #ifndef __XFS_QUOTA_H__
71da177e4SLinus Torvalds #define __XFS_QUOTA_H__
81da177e4SLinus Torvalds 
976456fc2SDave Chinner #include "xfs_quota_defs.h"
1076456fc2SDave Chinner 
1176456fc2SDave Chinner /*
1276456fc2SDave Chinner  * Kernel only quota definitions and functions
1376456fc2SDave Chinner  */
1476456fc2SDave Chinner 
15fcafb71bSChristoph Hellwig struct xfs_trans;
16fcafb71bSChristoph Hellwig 
171da177e4SLinus Torvalds /*
181da177e4SLinus Torvalds  * This check is done typically without holding the inode lock;
19c41564b5SNathan Scott  * that may seem racy, but it is harmless in the context that it is used.
201da177e4SLinus Torvalds  * The inode cannot go inactive as long a reference is kept, and
211da177e4SLinus Torvalds  * therefore if dquot(s) were attached, they'll stay consistent.
221da177e4SLinus Torvalds  * If, for example, the ownership of the inode changes while
231da177e4SLinus Torvalds  * we didn't have the inode locked, the appropriate dquot(s) will be
241da177e4SLinus Torvalds  * attached atomically.
251da177e4SLinus Torvalds  */
2692f8ff73SChandra Seetharaman #define XFS_NOT_DQATTACHED(mp, ip) \
2792f8ff73SChandra Seetharaman 	((XFS_IS_UQUOTA_ON(mp) && (ip)->i_udquot == NULL) || \
2892f8ff73SChandra Seetharaman 	 (XFS_IS_GQUOTA_ON(mp) && (ip)->i_gdquot == NULL) || \
2992f8ff73SChandra Seetharaman 	 (XFS_IS_PQUOTA_ON(mp) && (ip)->i_pdquot == NULL))
301da177e4SLinus Torvalds 
31c8ad20ffSNathan Scott #define XFS_QM_NEED_QUOTACHECK(mp) \
32c8ad20ffSNathan Scott 	((XFS_IS_UQUOTA_ON(mp) && \
33c8ad20ffSNathan Scott 		(mp->m_sb.sb_qflags & XFS_UQUOTA_CHKD) == 0) || \
341da177e4SLinus Torvalds 	 (XFS_IS_GQUOTA_ON(mp) && \
3583e782e1SChandra Seetharaman 		(mp->m_sb.sb_qflags & XFS_GQUOTA_CHKD) == 0) || \
36c8ad20ffSNathan Scott 	 (XFS_IS_PQUOTA_ON(mp) && \
3783e782e1SChandra Seetharaman 		(mp->m_sb.sb_qflags & XFS_PQUOTA_CHKD) == 0))
38c8ad20ffSNathan Scott 
397e85bc6cSDarrick J. Wong static inline uint
407e85bc6cSDarrick J. Wong xfs_quota_chkd_flag(
417e85bc6cSDarrick J. Wong 	uint		dqtype)
427e85bc6cSDarrick J. Wong {
437e85bc6cSDarrick J. Wong 	switch (dqtype) {
447e85bc6cSDarrick J. Wong 	case XFS_DQ_USER:
457e85bc6cSDarrick J. Wong 		return XFS_UQUOTA_CHKD;
467e85bc6cSDarrick J. Wong 	case XFS_DQ_GROUP:
477e85bc6cSDarrick J. Wong 		return XFS_GQUOTA_CHKD;
487e85bc6cSDarrick J. Wong 	case XFS_DQ_PROJ:
497e85bc6cSDarrick J. Wong 		return XFS_PQUOTA_CHKD;
507e85bc6cSDarrick J. Wong 	default:
517e85bc6cSDarrick J. Wong 		return 0;
527e85bc6cSDarrick J. Wong 	}
537e85bc6cSDarrick J. Wong }
547e85bc6cSDarrick J. Wong 
551da177e4SLinus Torvalds /*
561da177e4SLinus Torvalds  * The structure kept inside the xfs_trans_t keep track of dquot changes
571da177e4SLinus Torvalds  * within a transaction and apply them later.
581da177e4SLinus Torvalds  */
59078f4a7dSDarrick J. Wong struct xfs_dqtrx {
601da177e4SLinus Torvalds 	struct xfs_dquot *qt_dquot;	  /* the dquot this refers to */
61903b1fc2SDarrick J. Wong 
62903b1fc2SDarrick J. Wong 	uint64_t	qt_blk_res;	  /* blks reserved on a dquot */
63903b1fc2SDarrick J. Wong 	int64_t		qt_bcount_delta;  /* dquot blk count changes */
64903b1fc2SDarrick J. Wong 	int64_t		qt_delbcnt_delta; /* delayed dquot blk count changes */
65903b1fc2SDarrick J. Wong 
66903b1fc2SDarrick J. Wong 	uint64_t	qt_rtblk_res;	  /* # blks reserved on a dquot */
67903b1fc2SDarrick J. Wong 	uint64_t	qt_rtblk_res_used;/* # blks used from reservation */
68903b1fc2SDarrick J. Wong 	int64_t		qt_rtbcount_delta;/* dquot realtime blk changes */
69903b1fc2SDarrick J. Wong 	int64_t		qt_delrtb_delta;  /* delayed RT blk count changes */
70903b1fc2SDarrick J. Wong 
71903b1fc2SDarrick J. Wong 	uint64_t	qt_ino_res;	  /* inode reserved on a dquot */
72903b1fc2SDarrick J. Wong 	uint64_t	qt_ino_res_used;  /* inodes used from the reservation */
73903b1fc2SDarrick J. Wong 	int64_t		qt_icount_delta;  /* dquot inode count changes */
74078f4a7dSDarrick J. Wong };
751da177e4SLinus Torvalds 
767d095257SChristoph Hellwig #ifdef CONFIG_XFS_QUOTA
777d095257SChristoph Hellwig extern void xfs_trans_dup_dqinfo(struct xfs_trans *, struct xfs_trans *);
787d095257SChristoph Hellwig extern void xfs_trans_free_dqinfo(struct xfs_trans *);
797d095257SChristoph Hellwig extern void xfs_trans_mod_dquot_byino(struct xfs_trans *, struct xfs_inode *,
80903b1fc2SDarrick J. Wong 		uint, int64_t);
817d095257SChristoph Hellwig extern void xfs_trans_apply_dquot_deltas(struct xfs_trans *);
827d095257SChristoph Hellwig extern void xfs_trans_unreserve_and_mod_dquots(struct xfs_trans *);
837d095257SChristoph Hellwig extern int xfs_trans_reserve_quota_nblks(struct xfs_trans *,
84903b1fc2SDarrick J. Wong 		struct xfs_inode *, int64_t, long, uint);
857d095257SChristoph Hellwig extern int xfs_trans_reserve_quota_bydquots(struct xfs_trans *,
867d095257SChristoph Hellwig 		struct xfs_mount *, struct xfs_dquot *,
87903b1fc2SDarrick J. Wong 		struct xfs_dquot *, struct xfs_dquot *, int64_t, long, uint);
881da177e4SLinus Torvalds 
89*54295159SChristoph Hellwig extern int xfs_qm_vop_dqalloc(struct xfs_inode *, kuid_t, kgid_t,
907aab1b28SDwight Engen 		prid_t, uint, struct xfs_dquot **, struct xfs_dquot **,
917aab1b28SDwight Engen 		struct xfs_dquot **);
927d095257SChristoph Hellwig extern void xfs_qm_vop_create_dqattach(struct xfs_trans *, struct xfs_inode *,
9392f8ff73SChandra Seetharaman 		struct xfs_dquot *, struct xfs_dquot *, struct xfs_dquot *);
947d095257SChristoph Hellwig extern int xfs_qm_vop_rename_dqattach(struct xfs_inode **);
957d095257SChristoph Hellwig extern struct xfs_dquot *xfs_qm_vop_chown(struct xfs_trans *,
967d095257SChristoph Hellwig 		struct xfs_inode *, struct xfs_dquot **, struct xfs_dquot *);
977d095257SChristoph Hellwig extern int xfs_qm_vop_chown_reserve(struct xfs_trans *, struct xfs_inode *,
9892f8ff73SChandra Seetharaman 		struct xfs_dquot *, struct xfs_dquot *,
9992f8ff73SChandra Seetharaman 		struct xfs_dquot *, uint);
100c14cfccaSDarrick J. Wong extern int xfs_qm_dqattach(struct xfs_inode *);
1014882c19dSDarrick J. Wong extern int xfs_qm_dqattach_locked(struct xfs_inode *ip, bool doalloc);
1027d095257SChristoph Hellwig extern void xfs_qm_dqdetach(struct xfs_inode *);
1037d095257SChristoph Hellwig extern void xfs_qm_dqrele(struct xfs_dquot *);
1047d095257SChristoph Hellwig extern void xfs_qm_statvfs(struct xfs_inode *, struct kstatfs *);
1057d095257SChristoph Hellwig extern int xfs_qm_newmount(struct xfs_mount *, uint *, uint *);
1067d095257SChristoph Hellwig extern void xfs_qm_mount_quotas(struct xfs_mount *);
1077d095257SChristoph Hellwig extern void xfs_qm_unmount(struct xfs_mount *);
1087d095257SChristoph Hellwig extern void xfs_qm_unmount_quotas(struct xfs_mount *);
1091da177e4SLinus Torvalds 
1107d095257SChristoph Hellwig #else
111493b87e5SChristoph Hellwig static inline int
112*54295159SChristoph Hellwig xfs_qm_vop_dqalloc(struct xfs_inode *ip, kuid_t kuid, kgid_t kgid,
1137aab1b28SDwight Engen 		prid_t prid, uint flags, struct xfs_dquot **udqp,
1147aab1b28SDwight Engen 		struct xfs_dquot **gdqp, struct xfs_dquot **pdqp)
115493b87e5SChristoph Hellwig {
116493b87e5SChristoph Hellwig 	*udqp = NULL;
117493b87e5SChristoph Hellwig 	*gdqp = NULL;
11892f8ff73SChandra Seetharaman 	*pdqp = NULL;
119493b87e5SChristoph Hellwig 	return 0;
120493b87e5SChristoph Hellwig }
1217d095257SChristoph Hellwig #define xfs_trans_dup_dqinfo(tp, tp2)
1227d095257SChristoph Hellwig #define xfs_trans_free_dqinfo(tp)
1237d095257SChristoph Hellwig #define xfs_trans_mod_dquot_byino(tp, ip, fields, delta)
1247d095257SChristoph Hellwig #define xfs_trans_apply_dquot_deltas(tp)
1257d095257SChristoph Hellwig #define xfs_trans_unreserve_and_mod_dquots(tp)
1265d2bf8a5SChristoph Hellwig static inline int xfs_trans_reserve_quota_nblks(struct xfs_trans *tp,
127903b1fc2SDarrick J. Wong 		struct xfs_inode *ip, int64_t nblks, long ninos, uint flags)
1285d2bf8a5SChristoph Hellwig {
1295d2bf8a5SChristoph Hellwig 	return 0;
1305d2bf8a5SChristoph Hellwig }
1315d2bf8a5SChristoph Hellwig static inline int xfs_trans_reserve_quota_bydquots(struct xfs_trans *tp,
1325d2bf8a5SChristoph Hellwig 		struct xfs_mount *mp, struct xfs_dquot *udqp,
13392f8ff73SChandra Seetharaman 		struct xfs_dquot *gdqp, struct xfs_dquot *pdqp,
134903b1fc2SDarrick J. Wong 		int64_t nblks, long nions, uint flags)
1355d2bf8a5SChristoph Hellwig {
1365d2bf8a5SChristoph Hellwig 	return 0;
1375d2bf8a5SChristoph Hellwig }
13892f8ff73SChandra Seetharaman #define xfs_qm_vop_create_dqattach(tp, ip, u, g, p)
1397d095257SChristoph Hellwig #define xfs_qm_vop_rename_dqattach(it)					(0)
1407d095257SChristoph Hellwig #define xfs_qm_vop_chown(tp, ip, old, new)				(NULL)
14192f8ff73SChandra Seetharaman #define xfs_qm_vop_chown_reserve(tp, ip, u, g, p, fl)			(0)
142c14cfccaSDarrick J. Wong #define xfs_qm_dqattach(ip)						(0)
1437d095257SChristoph Hellwig #define xfs_qm_dqattach_locked(ip, fl)					(0)
1447d095257SChristoph Hellwig #define xfs_qm_dqdetach(ip)
1457d095257SChristoph Hellwig #define xfs_qm_dqrele(d)
1467d095257SChristoph Hellwig #define xfs_qm_statvfs(ip, s)
1477d095257SChristoph Hellwig #define xfs_qm_newmount(mp, a, b)					(0)
1487d095257SChristoph Hellwig #define xfs_qm_mount_quotas(mp)
1497d095257SChristoph Hellwig #define xfs_qm_unmount(mp)
1505d2bf8a5SChristoph Hellwig #define xfs_qm_unmount_quotas(mp)
1517d095257SChristoph Hellwig #endif /* CONFIG_XFS_QUOTA */
1521da177e4SLinus Torvalds 
1537d095257SChristoph Hellwig #define xfs_trans_unreserve_quota_nblks(tp, ip, nblks, ninos, flags) \
1547d095257SChristoph Hellwig 	xfs_trans_reserve_quota_nblks(tp, ip, -(nblks), -(ninos), flags)
15592f8ff73SChandra Seetharaman #define xfs_trans_reserve_quota(tp, mp, ud, gd, pd, nb, ni, f) \
15692f8ff73SChandra Seetharaman 	xfs_trans_reserve_quota_bydquots(tp, mp, ud, gd, pd, nb, ni, \
1571da177e4SLinus Torvalds 				f | XFS_QMOPT_RES_REGBLKS)
1581da177e4SLinus Torvalds 
1594cd4a034STim Shimmin extern int xfs_mount_reset_sbqflags(struct xfs_mount *);
1601da177e4SLinus Torvalds 
1611da177e4SLinus Torvalds #endif	/* __XFS_QUOTA_H__ */
162