Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 5 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 9 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 14 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
| 18 | #ifndef __XFS_QUOTA_H__ |
| 19 | #define __XFS_QUOTA_H__ |
| 20 | |
Dave Chinner | 76456fc | 2013-08-12 20:49:30 +1000 | [diff] [blame] | 21 | #include "xfs_quota_defs.h" |
| 22 | |
| 23 | /* |
| 24 | * Kernel only quota definitions and functions |
| 25 | */ |
| 26 | |
Christoph Hellwig | fcafb71 | 2009-02-09 08:47:34 +0100 | [diff] [blame] | 27 | struct xfs_trans; |
| 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | * This check is done typically without holding the inode lock; |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 31 | * that may seem racy, but it is harmless in the context that it is used. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | * 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 Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 38 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Nathan Scott | c8ad20f | 2005-06-21 15:38:48 +1000 | [diff] [blame] | 43 | #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 Seetharaman | 83e782e | 2013-06-27 17:25:10 -0500 | [diff] [blame] | 47 | (mp->m_sb.sb_qflags & XFS_GQUOTA_CHKD) == 0) || \ |
Nathan Scott | c8ad20f | 2005-06-21 15:38:48 +1000 | [diff] [blame] | 48 | (XFS_IS_PQUOTA_ON(mp) && \ |
Chandra Seetharaman | 83e782e | 2013-06-27 17:25:10 -0500 | [diff] [blame] | 49 | (mp->m_sb.sb_qflags & XFS_PQUOTA_CHKD) == 0)) |
Nathan Scott | c8ad20f | 2005-06-21 15:38:48 +1000 | [diff] [blame] | 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #define XFS_MOUNT_QUOTA_ALL (XFS_UQUOTA_ACCT|XFS_UQUOTA_ENFD|\ |
Chandra Seetharaman | 83e782e | 2013-06-27 17:25:10 -0500 | [diff] [blame] | 52 | XFS_UQUOTA_CHKD|XFS_GQUOTA_ACCT|\ |
| 53 | XFS_GQUOTA_ENFD|XFS_GQUOTA_CHKD|\ |
| 54 | XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD|\ |
| 55 | XFS_PQUOTA_CHKD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
| 57 | |
| 58 | /* |
| 59 | * The structure kept inside the xfs_trans_t keep track of dquot changes |
| 60 | * within a transaction and apply them later. |
| 61 | */ |
| 62 | typedef struct xfs_dqtrx { |
| 63 | struct xfs_dquot *qt_dquot; /* the dquot this refers to */ |
| 64 | ulong qt_blk_res; /* blks reserved on a dquot */ |
| 65 | ulong qt_blk_res_used; /* blks used from the reservation */ |
| 66 | ulong qt_ino_res; /* inode reserved on a dquot */ |
| 67 | ulong qt_ino_res_used; /* inodes used from the reservation */ |
| 68 | long qt_bcount_delta; /* dquot blk count changes */ |
| 69 | long qt_delbcnt_delta; /* delayed dquot blk count changes */ |
| 70 | long qt_icount_delta; /* dquot inode count changes */ |
| 71 | ulong qt_rtblk_res; /* # blks reserved on a dquot */ |
| 72 | ulong qt_rtblk_res_used;/* # blks used from reservation */ |
| 73 | long qt_rtbcount_delta;/* dquot realtime blk changes */ |
| 74 | long qt_delrtb_delta; /* delayed RT blk count changes */ |
| 75 | } xfs_dqtrx_t; |
| 76 | |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 77 | #ifdef CONFIG_XFS_QUOTA |
| 78 | extern void xfs_trans_dup_dqinfo(struct xfs_trans *, struct xfs_trans *); |
| 79 | extern void xfs_trans_free_dqinfo(struct xfs_trans *); |
| 80 | extern void xfs_trans_mod_dquot_byino(struct xfs_trans *, struct xfs_inode *, |
| 81 | uint, long); |
| 82 | extern void xfs_trans_apply_dquot_deltas(struct xfs_trans *); |
| 83 | extern void xfs_trans_unreserve_and_mod_dquots(struct xfs_trans *); |
| 84 | extern int xfs_trans_reserve_quota_nblks(struct xfs_trans *, |
| 85 | struct xfs_inode *, long, long, uint); |
| 86 | extern int xfs_trans_reserve_quota_bydquots(struct xfs_trans *, |
| 87 | struct xfs_mount *, struct xfs_dquot *, |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 88 | struct xfs_dquot *, struct xfs_dquot *, long, long, uint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Dwight Engen | 7aab1b2 | 2013-08-15 14:08:01 -0400 | [diff] [blame^] | 90 | extern int xfs_qm_vop_dqalloc(struct xfs_inode *, xfs_dqid_t, xfs_dqid_t, |
| 91 | prid_t, uint, struct xfs_dquot **, struct xfs_dquot **, |
| 92 | struct xfs_dquot **); |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 93 | extern void xfs_qm_vop_create_dqattach(struct xfs_trans *, struct xfs_inode *, |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 94 | struct xfs_dquot *, struct xfs_dquot *, struct xfs_dquot *); |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 95 | extern int xfs_qm_vop_rename_dqattach(struct xfs_inode **); |
| 96 | extern struct xfs_dquot *xfs_qm_vop_chown(struct xfs_trans *, |
| 97 | struct xfs_inode *, struct xfs_dquot **, struct xfs_dquot *); |
| 98 | extern int xfs_qm_vop_chown_reserve(struct xfs_trans *, struct xfs_inode *, |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 99 | struct xfs_dquot *, struct xfs_dquot *, |
| 100 | struct xfs_dquot *, uint); |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 101 | extern int xfs_qm_dqattach(struct xfs_inode *, uint); |
| 102 | extern int xfs_qm_dqattach_locked(struct xfs_inode *, uint); |
| 103 | extern void xfs_qm_dqdetach(struct xfs_inode *); |
| 104 | extern void xfs_qm_dqrele(struct xfs_dquot *); |
| 105 | extern void xfs_qm_statvfs(struct xfs_inode *, struct kstatfs *); |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 106 | extern int xfs_qm_newmount(struct xfs_mount *, uint *, uint *); |
| 107 | extern void xfs_qm_mount_quotas(struct xfs_mount *); |
| 108 | extern void xfs_qm_unmount(struct xfs_mount *); |
| 109 | extern void xfs_qm_unmount_quotas(struct xfs_mount *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 111 | #else |
Christoph Hellwig | 493b87e | 2009-06-12 11:34:55 -0400 | [diff] [blame] | 112 | static inline int |
Dwight Engen | 7aab1b2 | 2013-08-15 14:08:01 -0400 | [diff] [blame^] | 113 | xfs_qm_vop_dqalloc(struct xfs_inode *ip, xfs_dqid_t uid, xfs_dqid_t gid, |
| 114 | prid_t prid, uint flags, struct xfs_dquot **udqp, |
| 115 | struct xfs_dquot **gdqp, struct xfs_dquot **pdqp) |
Christoph Hellwig | 493b87e | 2009-06-12 11:34:55 -0400 | [diff] [blame] | 116 | { |
| 117 | *udqp = NULL; |
| 118 | *gdqp = NULL; |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 119 | *pdqp = NULL; |
Christoph Hellwig | 493b87e | 2009-06-12 11:34:55 -0400 | [diff] [blame] | 120 | return 0; |
| 121 | } |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 122 | #define xfs_trans_dup_dqinfo(tp, tp2) |
| 123 | #define xfs_trans_free_dqinfo(tp) |
| 124 | #define xfs_trans_mod_dquot_byino(tp, ip, fields, delta) |
| 125 | #define xfs_trans_apply_dquot_deltas(tp) |
| 126 | #define xfs_trans_unreserve_and_mod_dquots(tp) |
Christoph Hellwig | 5d2bf8a | 2010-11-06 11:42:56 +0000 | [diff] [blame] | 127 | static inline int xfs_trans_reserve_quota_nblks(struct xfs_trans *tp, |
| 128 | struct xfs_inode *ip, long nblks, long ninos, uint flags) |
| 129 | { |
| 130 | return 0; |
| 131 | } |
| 132 | static inline int xfs_trans_reserve_quota_bydquots(struct xfs_trans *tp, |
| 133 | struct xfs_mount *mp, struct xfs_dquot *udqp, |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 134 | struct xfs_dquot *gdqp, struct xfs_dquot *pdqp, |
| 135 | long nblks, long nions, uint flags) |
Christoph Hellwig | 5d2bf8a | 2010-11-06 11:42:56 +0000 | [diff] [blame] | 136 | { |
| 137 | return 0; |
| 138 | } |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 139 | #define xfs_qm_vop_create_dqattach(tp, ip, u, g, p) |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 140 | #define xfs_qm_vop_rename_dqattach(it) (0) |
| 141 | #define xfs_qm_vop_chown(tp, ip, old, new) (NULL) |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 142 | #define xfs_qm_vop_chown_reserve(tp, ip, u, g, p, fl) (0) |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 143 | #define xfs_qm_dqattach(ip, fl) (0) |
| 144 | #define xfs_qm_dqattach_locked(ip, fl) (0) |
| 145 | #define xfs_qm_dqdetach(ip) |
| 146 | #define xfs_qm_dqrele(d) |
| 147 | #define xfs_qm_statvfs(ip, s) |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 148 | #define xfs_qm_newmount(mp, a, b) (0) |
| 149 | #define xfs_qm_mount_quotas(mp) |
| 150 | #define xfs_qm_unmount(mp) |
Christoph Hellwig | 5d2bf8a | 2010-11-06 11:42:56 +0000 | [diff] [blame] | 151 | #define xfs_qm_unmount_quotas(mp) |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 152 | #endif /* CONFIG_XFS_QUOTA */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 154 | #define xfs_trans_unreserve_quota_nblks(tp, ip, nblks, ninos, flags) \ |
| 155 | xfs_trans_reserve_quota_nblks(tp, ip, -(nblks), -(ninos), flags) |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 156 | #define xfs_trans_reserve_quota(tp, mp, ud, gd, pd, nb, ni, f) \ |
| 157 | xfs_trans_reserve_quota_bydquots(tp, mp, ud, gd, pd, nb, ni, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | f | XFS_QMOPT_RES_REGBLKS) |
| 159 | |
Dave Chinner | a0fa2b6 | 2011-03-07 10:01:35 +1100 | [diff] [blame] | 160 | extern int xfs_qm_dqcheck(struct xfs_mount *, xfs_disk_dquot_t *, |
| 161 | xfs_dqid_t, uint, uint, char *); |
Tim Shimmin | 4cd4a03 | 2005-09-05 08:24:10 +1000 | [diff] [blame] | 162 | extern int xfs_mount_reset_sbqflags(struct xfs_mount *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Christoph Hellwig | 3fe58f3 | 2013-04-03 16:11:16 +1100 | [diff] [blame] | 164 | extern const struct xfs_buf_ops xfs_dquot_buf_ops; |
| 165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | #endif /* __XFS_QUOTA_H__ */ |