blob: dcc785fdd34532673c6c6ca9c899b77bbb5cebfd [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott7b718762005-11-02 14:58:39 +11003 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6#ifndef __XFS_QUOTA_H__
7#define __XFS_QUOTA_H__
8
Dave Chinner76456fc2013-08-12 20:49:30 +10009#include "xfs_quota_defs.h"
10
11/*
12 * Kernel only quota definitions and functions
13 */
14
Christoph Hellwigfcafb712009-02-09 08:47:34 +010015struct xfs_trans;
Dave Chinner6f5de182020-06-29 14:48:59 -070016struct xfs_buf;
Christoph Hellwigfcafb712009-02-09 08:47:34 +010017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * This check is done typically without holding the inode lock;
Nathan Scottc41564b2006-03-29 08:55:14 +100020 * that may seem racy, but it is harmless in the context that it is used.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * The inode cannot go inactive as long a reference is kept, and
22 * therefore if dquot(s) were attached, they'll stay consistent.
23 * If, for example, the ownership of the inode changes while
24 * we didn't have the inode locked, the appropriate dquot(s) will be
25 * attached atomically.
26 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -050027#define XFS_NOT_DQATTACHED(mp, ip) \
28 ((XFS_IS_UQUOTA_ON(mp) && (ip)->i_udquot == NULL) || \
29 (XFS_IS_GQUOTA_ON(mp) && (ip)->i_gdquot == NULL) || \
30 (XFS_IS_PQUOTA_ON(mp) && (ip)->i_pdquot == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Nathan Scottc8ad20f2005-06-21 15:38:48 +100032#define XFS_QM_NEED_QUOTACHECK(mp) \
33 ((XFS_IS_UQUOTA_ON(mp) && \
34 (mp->m_sb.sb_qflags & XFS_UQUOTA_CHKD) == 0) || \
35 (XFS_IS_GQUOTA_ON(mp) && \
Chandra Seetharaman83e782e2013-06-27 17:25:10 -050036 (mp->m_sb.sb_qflags & XFS_GQUOTA_CHKD) == 0) || \
Nathan Scottc8ad20f2005-06-21 15:38:48 +100037 (XFS_IS_PQUOTA_ON(mp) && \
Chandra Seetharaman83e782e2013-06-27 17:25:10 -050038 (mp->m_sb.sb_qflags & XFS_PQUOTA_CHKD) == 0))
Nathan Scottc8ad20f2005-06-21 15:38:48 +100039
Darrick J. Wong7e85bc62018-05-29 22:18:11 -070040static inline uint
41xfs_quota_chkd_flag(
Darrick J. Wong1a7ed272020-07-15 17:53:43 -070042 xfs_dqtype_t type)
Darrick J. Wong7e85bc62018-05-29 22:18:11 -070043{
Darrick J. Wong1a7ed272020-07-15 17:53:43 -070044 switch (type) {
Darrick J. Wong8cd49012020-07-15 17:42:36 -070045 case XFS_DQTYPE_USER:
Darrick J. Wong7e85bc62018-05-29 22:18:11 -070046 return XFS_UQUOTA_CHKD;
Darrick J. Wong8cd49012020-07-15 17:42:36 -070047 case XFS_DQTYPE_GROUP:
Darrick J. Wong7e85bc62018-05-29 22:18:11 -070048 return XFS_GQUOTA_CHKD;
Darrick J. Wong8cd49012020-07-15 17:42:36 -070049 case XFS_DQTYPE_PROJ:
Darrick J. Wong7e85bc62018-05-29 22:18:11 -070050 return XFS_PQUOTA_CHKD;
51 default:
52 return 0;
53 }
54}
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/*
57 * The structure kept inside the xfs_trans_t keep track of dquot changes
58 * within a transaction and apply them later.
59 */
Darrick J. Wong078f4a72019-04-17 16:30:24 -070060struct xfs_dqtrx {
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 struct xfs_dquot *qt_dquot; /* the dquot this refers to */
Darrick J. Wong903b1fc2019-04-17 16:30:24 -070062
63 uint64_t qt_blk_res; /* blks reserved on a dquot */
64 int64_t qt_bcount_delta; /* dquot blk count changes */
65 int64_t qt_delbcnt_delta; /* delayed dquot blk count changes */
66
67 uint64_t qt_rtblk_res; /* # blks reserved on a dquot */
68 uint64_t qt_rtblk_res_used;/* # blks used from reservation */
69 int64_t qt_rtbcount_delta;/* dquot realtime blk changes */
70 int64_t qt_delrtb_delta; /* delayed RT blk count changes */
71
72 uint64_t qt_ino_res; /* inode reserved on a dquot */
73 uint64_t qt_ino_res_used; /* inodes used from the reservation */
74 int64_t qt_icount_delta; /* dquot inode count changes */
Darrick J. Wong078f4a72019-04-17 16:30:24 -070075};
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Christoph Hellwig7d095252009-06-08 15:33:32 +020077#ifdef CONFIG_XFS_QUOTA
78extern void xfs_trans_dup_dqinfo(struct xfs_trans *, struct xfs_trans *);
79extern void xfs_trans_free_dqinfo(struct xfs_trans *);
80extern void xfs_trans_mod_dquot_byino(struct xfs_trans *, struct xfs_inode *,
Darrick J. Wong903b1fc2019-04-17 16:30:24 -070081 uint, int64_t);
Christoph Hellwig7d095252009-06-08 15:33:32 +020082extern void xfs_trans_apply_dquot_deltas(struct xfs_trans *);
83extern void xfs_trans_unreserve_and_mod_dquots(struct xfs_trans *);
Darrick J. Wong02b7ee42021-01-26 17:20:42 -080084int xfs_trans_reserve_quota_nblks(struct xfs_trans *tp, struct xfs_inode *ip,
85 int64_t dblocks, int64_t rblocks, bool force);
Christoph Hellwig7d095252009-06-08 15:33:32 +020086extern int xfs_trans_reserve_quota_bydquots(struct xfs_trans *,
87 struct xfs_mount *, struct xfs_dquot *,
Darrick J. Wong903b1fc2019-04-17 16:30:24 -070088 struct xfs_dquot *, struct xfs_dquot *, int64_t, long, uint);
Darrick J. Wongad4a7472021-01-22 16:48:34 -080089int xfs_trans_reserve_quota_icreate(struct xfs_trans *tp,
90 struct xfs_dquot *udqp, struct xfs_dquot *gdqp,
91 struct xfs_dquot *pdqp, int64_t dblocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Christoph Hellwig54295152020-02-21 08:31:27 -080093extern int xfs_qm_vop_dqalloc(struct xfs_inode *, kuid_t, kgid_t,
Dwight Engen7aab1b22013-08-15 14:08:01 -040094 prid_t, uint, struct xfs_dquot **, struct xfs_dquot **,
95 struct xfs_dquot **);
Christoph Hellwig7d095252009-06-08 15:33:32 +020096extern void xfs_qm_vop_create_dqattach(struct xfs_trans *, struct xfs_inode *,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -050097 struct xfs_dquot *, struct xfs_dquot *, struct xfs_dquot *);
Christoph Hellwig7d095252009-06-08 15:33:32 +020098extern int xfs_qm_vop_rename_dqattach(struct xfs_inode **);
99extern struct xfs_dquot *xfs_qm_vop_chown(struct xfs_trans *,
100 struct xfs_inode *, struct xfs_dquot **, struct xfs_dquot *);
Darrick J. Wongc14cfcc2018-05-04 15:30:21 -0700101extern int xfs_qm_dqattach(struct xfs_inode *);
Darrick J. Wong4882c192018-05-04 15:30:22 -0700102extern int xfs_qm_dqattach_locked(struct xfs_inode *ip, bool doalloc);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200103extern void xfs_qm_dqdetach(struct xfs_inode *);
104extern void xfs_qm_dqrele(struct xfs_dquot *);
105extern void xfs_qm_statvfs(struct xfs_inode *, struct kstatfs *);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200106extern int xfs_qm_newmount(struct xfs_mount *, uint *, uint *);
107extern void xfs_qm_mount_quotas(struct xfs_mount *);
108extern void xfs_qm_unmount(struct xfs_mount *);
109extern void xfs_qm_unmount_quotas(struct xfs_mount *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Darrick J. Wong85546502021-01-22 16:48:34 -0800111static inline int
112xfs_quota_reserve_blkres(struct xfs_inode *ip, int64_t blocks)
113{
Darrick J. Wong02b7ee42021-01-26 17:20:42 -0800114 return xfs_trans_reserve_quota_nblks(NULL, ip, blocks, 0, false);
Darrick J. Wong85546502021-01-22 16:48:34 -0800115}
Darrick J. Wong108523b2021-08-06 11:05:40 -0700116bool xfs_inode_near_dquot_enforcement(struct xfs_inode *ip, xfs_dqtype_t type);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200117#else
Christoph Hellwig493b87e52009-06-12 11:34:55 -0400118static inline int
Christoph Hellwig54295152020-02-21 08:31:27 -0800119xfs_qm_vop_dqalloc(struct xfs_inode *ip, kuid_t kuid, kgid_t kgid,
Dwight Engen7aab1b22013-08-15 14:08:01 -0400120 prid_t prid, uint flags, struct xfs_dquot **udqp,
121 struct xfs_dquot **gdqp, struct xfs_dquot **pdqp)
Christoph Hellwig493b87e52009-06-12 11:34:55 -0400122{
123 *udqp = NULL;
124 *gdqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500125 *pdqp = NULL;
Christoph Hellwig493b87e52009-06-12 11:34:55 -0400126 return 0;
127}
Christoph Hellwig7d095252009-06-08 15:33:32 +0200128#define xfs_trans_dup_dqinfo(tp, tp2)
129#define xfs_trans_free_dqinfo(tp)
Darrick J. Wong7ac6eb42021-01-25 11:18:00 -0800130#define xfs_trans_mod_dquot_byino(tp, ip, fields, delta) do { } while (0)
Christoph Hellwig7d095252009-06-08 15:33:32 +0200131#define xfs_trans_apply_dquot_deltas(tp)
132#define xfs_trans_unreserve_and_mod_dquots(tp)
Christoph Hellwig5d2bf8a2010-11-06 11:42:56 +0000133static inline int xfs_trans_reserve_quota_nblks(struct xfs_trans *tp,
Darrick J. Wong02b7ee42021-01-26 17:20:42 -0800134 struct xfs_inode *ip, int64_t dblocks, int64_t rblocks,
135 bool force)
Christoph Hellwig5d2bf8a2010-11-06 11:42:56 +0000136{
137 return 0;
138}
139static inline int xfs_trans_reserve_quota_bydquots(struct xfs_trans *tp,
140 struct xfs_mount *mp, struct xfs_dquot *udqp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500141 struct xfs_dquot *gdqp, struct xfs_dquot *pdqp,
Darrick J. Wong903b1fc2019-04-17 16:30:24 -0700142 int64_t nblks, long nions, uint flags)
Christoph Hellwig5d2bf8a2010-11-06 11:42:56 +0000143{
144 return 0;
145}
Darrick J. Wong85546502021-01-22 16:48:34 -0800146
147static inline int
148xfs_quota_reserve_blkres(struct xfs_inode *ip, int64_t blocks)
149{
150 return 0;
151}
152
Darrick J. Wongad4a7472021-01-22 16:48:34 -0800153static inline int
154xfs_trans_reserve_quota_icreate(struct xfs_trans *tp, struct xfs_dquot *udqp,
155 struct xfs_dquot *gdqp, struct xfs_dquot *pdqp, int64_t dblocks)
156{
157 return 0;
158}
159
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500160#define xfs_qm_vop_create_dqattach(tp, ip, u, g, p)
Christoph Hellwig7d095252009-06-08 15:33:32 +0200161#define xfs_qm_vop_rename_dqattach(it) (0)
162#define xfs_qm_vop_chown(tp, ip, old, new) (NULL)
Darrick J. Wongc14cfcc2018-05-04 15:30:21 -0700163#define xfs_qm_dqattach(ip) (0)
Christoph Hellwig7d095252009-06-08 15:33:32 +0200164#define xfs_qm_dqattach_locked(ip, fl) (0)
165#define xfs_qm_dqdetach(ip)
Darrick J. Wong7ac6eb42021-01-25 11:18:00 -0800166#define xfs_qm_dqrele(d) do { (d) = (d); } while(0)
167#define xfs_qm_statvfs(ip, s) do { } while(0)
Christoph Hellwig7d095252009-06-08 15:33:32 +0200168#define xfs_qm_newmount(mp, a, b) (0)
169#define xfs_qm_mount_quotas(mp)
170#define xfs_qm_unmount(mp)
Christoph Hellwig5d2bf8a2010-11-06 11:42:56 +0000171#define xfs_qm_unmount_quotas(mp)
Darrick J. Wong108523b2021-08-06 11:05:40 -0700172#define xfs_inode_near_dquot_enforcement(ip, type) (false)
Christoph Hellwig7d095252009-06-08 15:33:32 +0200173#endif /* CONFIG_XFS_QUOTA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Darrick J. Wong85546502021-01-22 16:48:34 -0800175static inline int
176xfs_quota_unreserve_blkres(struct xfs_inode *ip, int64_t blocks)
177{
178 return xfs_quota_reserve_blkres(ip, -blocks);
179}
180
Tim Shimmin4cd4a032005-09-05 08:24:10 +1000181extern int xfs_mount_reset_sbqflags(struct xfs_mount *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183#endif /* __XFS_QUOTA_H__ */