blob: 55b798265ef7375f69562ed6d81aee46701cd4ee [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;
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * This check is done typically without holding the inode lock;
Nathan Scottc41564b2006-03-29 08:55:14 +100019 * that may seem racy, but it is harmless in the context that it is used.
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * The inode cannot go inactive as long a reference is kept, and
21 * therefore if dquot(s) were attached, they'll stay consistent.
22 * If, for example, the ownership of the inode changes while
23 * we didn't have the inode locked, the appropriate dquot(s) will be
24 * attached atomically.
25 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -050026#define XFS_NOT_DQATTACHED(mp, ip) \
27 ((XFS_IS_UQUOTA_ON(mp) && (ip)->i_udquot == NULL) || \
28 (XFS_IS_GQUOTA_ON(mp) && (ip)->i_gdquot == NULL) || \
29 (XFS_IS_PQUOTA_ON(mp) && (ip)->i_pdquot == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Nathan Scottc8ad20f2005-06-21 15:38:48 +100031#define XFS_QM_NEED_QUOTACHECK(mp) \
32 ((XFS_IS_UQUOTA_ON(mp) && \
33 (mp->m_sb.sb_qflags & XFS_UQUOTA_CHKD) == 0) || \
34 (XFS_IS_GQUOTA_ON(mp) && \
Chandra Seetharaman83e782e2013-06-27 17:25:10 -050035 (mp->m_sb.sb_qflags & XFS_GQUOTA_CHKD) == 0) || \
Nathan Scottc8ad20f2005-06-21 15:38:48 +100036 (XFS_IS_PQUOTA_ON(mp) && \
Chandra Seetharaman83e782e2013-06-27 17:25:10 -050037 (mp->m_sb.sb_qflags & XFS_PQUOTA_CHKD) == 0))
Nathan Scottc8ad20f2005-06-21 15:38:48 +100038
Darrick J. Wong7e85bc62018-05-29 22:18:11 -070039static inline uint
40xfs_quota_chkd_flag(
41 uint dqtype)
42{
43 switch (dqtype) {
44 case XFS_DQ_USER:
45 return XFS_UQUOTA_CHKD;
46 case XFS_DQ_GROUP:
47 return XFS_GQUOTA_CHKD;
48 case XFS_DQ_PROJ:
49 return XFS_PQUOTA_CHKD;
50 default:
51 return 0;
52 }
53}
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/*
56 * The structure kept inside the xfs_trans_t keep track of dquot changes
57 * within a transaction and apply them later.
58 */
59typedef struct xfs_dqtrx {
60 struct xfs_dquot *qt_dquot; /* the dquot this refers to */
61 ulong qt_blk_res; /* blks reserved on a dquot */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 ulong qt_ino_res; /* inode reserved on a dquot */
63 ulong qt_ino_res_used; /* inodes used from the reservation */
64 long qt_bcount_delta; /* dquot blk count changes */
65 long qt_delbcnt_delta; /* delayed dquot blk count changes */
66 long qt_icount_delta; /* dquot inode count changes */
67 ulong qt_rtblk_res; /* # blks reserved on a dquot */
68 ulong qt_rtblk_res_used;/* # blks used from reservation */
69 long qt_rtbcount_delta;/* dquot realtime blk changes */
70 long qt_delrtb_delta; /* delayed RT blk count changes */
71} xfs_dqtrx_t;
72
Christoph Hellwig7d095252009-06-08 15:33:32 +020073#ifdef CONFIG_XFS_QUOTA
74extern void xfs_trans_dup_dqinfo(struct xfs_trans *, struct xfs_trans *);
75extern void xfs_trans_free_dqinfo(struct xfs_trans *);
76extern void xfs_trans_mod_dquot_byino(struct xfs_trans *, struct xfs_inode *,
77 uint, long);
78extern void xfs_trans_apply_dquot_deltas(struct xfs_trans *);
79extern void xfs_trans_unreserve_and_mod_dquots(struct xfs_trans *);
80extern int xfs_trans_reserve_quota_nblks(struct xfs_trans *,
81 struct xfs_inode *, long, long, uint);
82extern int xfs_trans_reserve_quota_bydquots(struct xfs_trans *,
83 struct xfs_mount *, struct xfs_dquot *,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -050084 struct xfs_dquot *, struct xfs_dquot *, long, long, uint);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Dwight Engen7aab1b22013-08-15 14:08:01 -040086extern int xfs_qm_vop_dqalloc(struct xfs_inode *, xfs_dqid_t, xfs_dqid_t,
87 prid_t, uint, struct xfs_dquot **, struct xfs_dquot **,
88 struct xfs_dquot **);
Christoph Hellwig7d095252009-06-08 15:33:32 +020089extern void xfs_qm_vop_create_dqattach(struct xfs_trans *, struct xfs_inode *,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -050090 struct xfs_dquot *, struct xfs_dquot *, struct xfs_dquot *);
Christoph Hellwig7d095252009-06-08 15:33:32 +020091extern int xfs_qm_vop_rename_dqattach(struct xfs_inode **);
92extern struct xfs_dquot *xfs_qm_vop_chown(struct xfs_trans *,
93 struct xfs_inode *, struct xfs_dquot **, struct xfs_dquot *);
94extern int xfs_qm_vop_chown_reserve(struct xfs_trans *, struct xfs_inode *,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -050095 struct xfs_dquot *, struct xfs_dquot *,
96 struct xfs_dquot *, uint);
Darrick J. Wongc14cfcc2018-05-04 15:30:21 -070097extern int xfs_qm_dqattach(struct xfs_inode *);
Darrick J. Wong4882c192018-05-04 15:30:22 -070098extern int xfs_qm_dqattach_locked(struct xfs_inode *ip, bool doalloc);
Christoph Hellwig7d095252009-06-08 15:33:32 +020099extern void xfs_qm_dqdetach(struct xfs_inode *);
100extern void xfs_qm_dqrele(struct xfs_dquot *);
101extern void xfs_qm_statvfs(struct xfs_inode *, struct kstatfs *);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200102extern int xfs_qm_newmount(struct xfs_mount *, uint *, uint *);
103extern void xfs_qm_mount_quotas(struct xfs_mount *);
104extern void xfs_qm_unmount(struct xfs_mount *);
105extern void xfs_qm_unmount_quotas(struct xfs_mount *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Christoph Hellwig7d095252009-06-08 15:33:32 +0200107#else
Christoph Hellwig493b87e2009-06-12 11:34:55 -0400108static inline int
Dwight Engen7aab1b22013-08-15 14:08:01 -0400109xfs_qm_vop_dqalloc(struct xfs_inode *ip, xfs_dqid_t uid, xfs_dqid_t gid,
110 prid_t prid, uint flags, struct xfs_dquot **udqp,
111 struct xfs_dquot **gdqp, struct xfs_dquot **pdqp)
Christoph Hellwig493b87e2009-06-12 11:34:55 -0400112{
113 *udqp = NULL;
114 *gdqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500115 *pdqp = NULL;
Christoph Hellwig493b87e2009-06-12 11:34:55 -0400116 return 0;
117}
Christoph Hellwig7d095252009-06-08 15:33:32 +0200118#define xfs_trans_dup_dqinfo(tp, tp2)
119#define xfs_trans_free_dqinfo(tp)
120#define xfs_trans_mod_dquot_byino(tp, ip, fields, delta)
121#define xfs_trans_apply_dquot_deltas(tp)
122#define xfs_trans_unreserve_and_mod_dquots(tp)
Christoph Hellwig5d2bf8a2010-11-06 11:42:56 +0000123static inline int xfs_trans_reserve_quota_nblks(struct xfs_trans *tp,
124 struct xfs_inode *ip, long nblks, long ninos, uint flags)
125{
126 return 0;
127}
128static inline int xfs_trans_reserve_quota_bydquots(struct xfs_trans *tp,
129 struct xfs_mount *mp, struct xfs_dquot *udqp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500130 struct xfs_dquot *gdqp, struct xfs_dquot *pdqp,
131 long nblks, long nions, uint flags)
Christoph Hellwig5d2bf8a2010-11-06 11:42:56 +0000132{
133 return 0;
134}
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500135#define xfs_qm_vop_create_dqattach(tp, ip, u, g, p)
Christoph Hellwig7d095252009-06-08 15:33:32 +0200136#define xfs_qm_vop_rename_dqattach(it) (0)
137#define xfs_qm_vop_chown(tp, ip, old, new) (NULL)
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500138#define xfs_qm_vop_chown_reserve(tp, ip, u, g, p, fl) (0)
Darrick J. Wongc14cfcc2018-05-04 15:30:21 -0700139#define xfs_qm_dqattach(ip) (0)
Christoph Hellwig7d095252009-06-08 15:33:32 +0200140#define xfs_qm_dqattach_locked(ip, fl) (0)
141#define xfs_qm_dqdetach(ip)
142#define xfs_qm_dqrele(d)
143#define xfs_qm_statvfs(ip, s)
Christoph Hellwig7d095252009-06-08 15:33:32 +0200144#define xfs_qm_newmount(mp, a, b) (0)
145#define xfs_qm_mount_quotas(mp)
146#define xfs_qm_unmount(mp)
Christoph Hellwig5d2bf8a2010-11-06 11:42:56 +0000147#define xfs_qm_unmount_quotas(mp)
Christoph Hellwig7d095252009-06-08 15:33:32 +0200148#endif /* CONFIG_XFS_QUOTA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Christoph Hellwig7d095252009-06-08 15:33:32 +0200150#define xfs_trans_unreserve_quota_nblks(tp, ip, nblks, ninos, flags) \
151 xfs_trans_reserve_quota_nblks(tp, ip, -(nblks), -(ninos), flags)
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500152#define xfs_trans_reserve_quota(tp, mp, ud, gd, pd, nb, ni, f) \
153 xfs_trans_reserve_quota_bydquots(tp, mp, ud, gd, pd, nb, ni, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 f | XFS_QMOPT_RES_REGBLKS)
155
Tim Shimmin4cd4a032005-09-05 08:24:10 +1000156extern int xfs_mount_reset_sbqflags(struct xfs_mount *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#endif /* __XFS_QUOTA_H__ */