blob: 3edf52b149199332f67183817de01c8828a502a1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18#ifndef __XFS_QUOTA_H__
19#define __XFS_QUOTA_H__
20
Dave Chinner76456fc2013-08-12 20:49:30 +100021#include "xfs_quota_defs.h"
22
23/*
24 * Kernel only quota definitions and functions
25 */
26
Christoph Hellwigfcafb712009-02-09 08:47:34 +010027struct xfs_trans;
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * This check is done typically without holding the inode lock;
Nathan Scottc41564b2006-03-29 08:55:14 +100031 * that may seem racy, but it is harmless in the context that it is used.
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 * The inode cannot go inactive as long a reference is kept, and
33 * therefore if dquot(s) were attached, they'll stay consistent.
34 * If, for example, the ownership of the inode changes while
35 * we didn't have the inode locked, the appropriate dquot(s) will be
36 * attached atomically.
37 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -050038#define XFS_NOT_DQATTACHED(mp, ip) \
39 ((XFS_IS_UQUOTA_ON(mp) && (ip)->i_udquot == NULL) || \
40 (XFS_IS_GQUOTA_ON(mp) && (ip)->i_gdquot == NULL) || \
41 (XFS_IS_PQUOTA_ON(mp) && (ip)->i_pdquot == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Nathan Scottc8ad20f2005-06-21 15:38:48 +100043#define XFS_QM_NEED_QUOTACHECK(mp) \
44 ((XFS_IS_UQUOTA_ON(mp) && \
45 (mp->m_sb.sb_qflags & XFS_UQUOTA_CHKD) == 0) || \
46 (XFS_IS_GQUOTA_ON(mp) && \
Chandra Seetharaman83e782e2013-06-27 17:25:10 -050047 (mp->m_sb.sb_qflags & XFS_GQUOTA_CHKD) == 0) || \
Nathan Scottc8ad20f2005-06-21 15:38:48 +100048 (XFS_IS_PQUOTA_ON(mp) && \
Chandra Seetharaman83e782e2013-06-27 17:25:10 -050049 (mp->m_sb.sb_qflags & XFS_PQUOTA_CHKD) == 0))
Nathan Scottc8ad20f2005-06-21 15:38:48 +100050
Darrick J. Wong7e85bc62018-05-29 22:18:11 -070051static inline uint
52xfs_quota_chkd_flag(
53 uint dqtype)
54{
55 switch (dqtype) {
56 case XFS_DQ_USER:
57 return XFS_UQUOTA_CHKD;
58 case XFS_DQ_GROUP:
59 return XFS_GQUOTA_CHKD;
60 case XFS_DQ_PROJ:
61 return XFS_PQUOTA_CHKD;
62 default:
63 return 0;
64 }
65}
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/*
68 * The structure kept inside the xfs_trans_t keep track of dquot changes
69 * within a transaction and apply them later.
70 */
71typedef struct xfs_dqtrx {
72 struct xfs_dquot *qt_dquot; /* the dquot this refers to */
73 ulong qt_blk_res; /* blks reserved on a dquot */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 ulong qt_ino_res; /* inode reserved on a dquot */
75 ulong qt_ino_res_used; /* inodes used from the reservation */
76 long qt_bcount_delta; /* dquot blk count changes */
77 long qt_delbcnt_delta; /* delayed dquot blk count changes */
78 long qt_icount_delta; /* dquot inode count changes */
79 ulong qt_rtblk_res; /* # blks reserved on a dquot */
80 ulong qt_rtblk_res_used;/* # blks used from reservation */
81 long qt_rtbcount_delta;/* dquot realtime blk changes */
82 long qt_delrtb_delta; /* delayed RT blk count changes */
83} xfs_dqtrx_t;
84
Christoph Hellwig7d095252009-06-08 15:33:32 +020085#ifdef CONFIG_XFS_QUOTA
86extern void xfs_trans_dup_dqinfo(struct xfs_trans *, struct xfs_trans *);
87extern void xfs_trans_free_dqinfo(struct xfs_trans *);
88extern void xfs_trans_mod_dquot_byino(struct xfs_trans *, struct xfs_inode *,
89 uint, long);
90extern void xfs_trans_apply_dquot_deltas(struct xfs_trans *);
91extern void xfs_trans_unreserve_and_mod_dquots(struct xfs_trans *);
92extern int xfs_trans_reserve_quota_nblks(struct xfs_trans *,
93 struct xfs_inode *, long, long, uint);
94extern int xfs_trans_reserve_quota_bydquots(struct xfs_trans *,
95 struct xfs_mount *, struct xfs_dquot *,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -050096 struct xfs_dquot *, struct xfs_dquot *, long, long, uint);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Dwight Engen7aab1b22013-08-15 14:08:01 -040098extern int xfs_qm_vop_dqalloc(struct xfs_inode *, xfs_dqid_t, xfs_dqid_t,
99 prid_t, uint, struct xfs_dquot **, struct xfs_dquot **,
100 struct xfs_dquot **);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200101extern void xfs_qm_vop_create_dqattach(struct xfs_trans *, struct xfs_inode *,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500102 struct xfs_dquot *, struct xfs_dquot *, struct xfs_dquot *);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200103extern int xfs_qm_vop_rename_dqattach(struct xfs_inode **);
104extern struct xfs_dquot *xfs_qm_vop_chown(struct xfs_trans *,
105 struct xfs_inode *, struct xfs_dquot **, struct xfs_dquot *);
106extern int xfs_qm_vop_chown_reserve(struct xfs_trans *, struct xfs_inode *,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500107 struct xfs_dquot *, struct xfs_dquot *,
108 struct xfs_dquot *, uint);
Darrick J. Wongc14cfcc2018-05-04 15:30:21 -0700109extern int xfs_qm_dqattach(struct xfs_inode *);
Darrick J. Wong4882c192018-05-04 15:30:22 -0700110extern int xfs_qm_dqattach_locked(struct xfs_inode *ip, bool doalloc);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200111extern void xfs_qm_dqdetach(struct xfs_inode *);
112extern void xfs_qm_dqrele(struct xfs_dquot *);
113extern void xfs_qm_statvfs(struct xfs_inode *, struct kstatfs *);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200114extern int xfs_qm_newmount(struct xfs_mount *, uint *, uint *);
115extern void xfs_qm_mount_quotas(struct xfs_mount *);
116extern void xfs_qm_unmount(struct xfs_mount *);
117extern void xfs_qm_unmount_quotas(struct xfs_mount *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Christoph Hellwig7d095252009-06-08 15:33:32 +0200119#else
Christoph Hellwig493b87e2009-06-12 11:34:55 -0400120static inline int
Dwight Engen7aab1b22013-08-15 14:08:01 -0400121xfs_qm_vop_dqalloc(struct xfs_inode *ip, xfs_dqid_t uid, xfs_dqid_t gid,
122 prid_t prid, uint flags, struct xfs_dquot **udqp,
123 struct xfs_dquot **gdqp, struct xfs_dquot **pdqp)
Christoph Hellwig493b87e2009-06-12 11:34:55 -0400124{
125 *udqp = NULL;
126 *gdqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500127 *pdqp = NULL;
Christoph Hellwig493b87e2009-06-12 11:34:55 -0400128 return 0;
129}
Christoph Hellwig7d095252009-06-08 15:33:32 +0200130#define xfs_trans_dup_dqinfo(tp, tp2)
131#define xfs_trans_free_dqinfo(tp)
132#define xfs_trans_mod_dquot_byino(tp, ip, fields, delta)
133#define xfs_trans_apply_dquot_deltas(tp)
134#define xfs_trans_unreserve_and_mod_dquots(tp)
Christoph Hellwig5d2bf8a2010-11-06 11:42:56 +0000135static inline int xfs_trans_reserve_quota_nblks(struct xfs_trans *tp,
136 struct xfs_inode *ip, long nblks, long ninos, uint flags)
137{
138 return 0;
139}
140static inline int xfs_trans_reserve_quota_bydquots(struct xfs_trans *tp,
141 struct xfs_mount *mp, struct xfs_dquot *udqp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500142 struct xfs_dquot *gdqp, struct xfs_dquot *pdqp,
143 long nblks, long nions, uint flags)
Christoph Hellwig5d2bf8a2010-11-06 11:42:56 +0000144{
145 return 0;
146}
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500147#define xfs_qm_vop_create_dqattach(tp, ip, u, g, p)
Christoph Hellwig7d095252009-06-08 15:33:32 +0200148#define xfs_qm_vop_rename_dqattach(it) (0)
149#define xfs_qm_vop_chown(tp, ip, old, new) (NULL)
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500150#define xfs_qm_vop_chown_reserve(tp, ip, u, g, p, fl) (0)
Darrick J. Wongc14cfcc2018-05-04 15:30:21 -0700151#define xfs_qm_dqattach(ip) (0)
Christoph Hellwig7d095252009-06-08 15:33:32 +0200152#define xfs_qm_dqattach_locked(ip, fl) (0)
153#define xfs_qm_dqdetach(ip)
154#define xfs_qm_dqrele(d)
155#define xfs_qm_statvfs(ip, s)
Christoph Hellwig7d095252009-06-08 15:33:32 +0200156#define xfs_qm_newmount(mp, a, b) (0)
157#define xfs_qm_mount_quotas(mp)
158#define xfs_qm_unmount(mp)
Christoph Hellwig5d2bf8a2010-11-06 11:42:56 +0000159#define xfs_qm_unmount_quotas(mp)
Christoph Hellwig7d095252009-06-08 15:33:32 +0200160#endif /* CONFIG_XFS_QUOTA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Christoph Hellwig7d095252009-06-08 15:33:32 +0200162#define xfs_trans_unreserve_quota_nblks(tp, ip, nblks, ninos, flags) \
163 xfs_trans_reserve_quota_nblks(tp, ip, -(nblks), -(ninos), flags)
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500164#define xfs_trans_reserve_quota(tp, mp, ud, gd, pd, nb, ni, f) \
165 xfs_trans_reserve_quota_bydquots(tp, mp, ud, gd, pd, nb, ni, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 f | XFS_QMOPT_RES_REGBLKS)
167
Tim Shimmin4cd4a032005-09-05 08:24:10 +1000168extern int xfs_mount_reset_sbqflags(struct xfs_mount *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170#endif /* __XFS_QUOTA_H__ */