blob: a7c0c657dfaf943037bcb6fa753996c32956413b [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Christoph Hellwigfcafb712009-02-09 08:47:34 +01002/*
3 * Copyright (c) 2008, Christoph Hellwig
4 * All Rights Reserved.
Christoph Hellwigfcafb712009-02-09 08:47:34 +01005 */
6#include "xfs.h"
Dave Chinner6ca1c902013-08-12 20:49:26 +10007#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +11008#include "xfs_log_format.h"
Dave Chinner7fd36c42013-08-12 20:49:32 +10009#include "xfs_trans_resv.h"
Christoph Hellwigfcafb712009-02-09 08:47:34 +010010#include "xfs_mount.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110011#include "xfs_inode.h"
Christoph Hellwigfcafb712009-02-09 08:47:34 +010012#include "xfs_quota.h"
Christoph Hellwigfcafb712009-02-09 08:47:34 +010013#include "xfs_trans.h"
Jan Kara5d3684c2014-11-19 12:03:59 +010014#include "xfs_trace.h"
15#include "xfs_icache.h"
Alex Elder06f8e2d2011-08-12 13:57:55 -050016#include "xfs_qm.h"
Christoph Hellwigfcafb712009-02-09 08:47:34 +010017#include <linux/quota.h>
18
19
Jan Kara5d3684c2014-11-19 12:03:59 +010020static void
21xfs_qm_fill_state(
22 struct qc_type_state *tstate,
23 struct xfs_mount *mp,
24 struct xfs_inode *ip,
25 xfs_ino_t ino)
26{
27 struct xfs_quotainfo *q = mp->m_quotainfo;
28 bool tempqip = false;
29
30 tstate->ino = ino;
31 if (!ip && ino == NULLFSINO)
32 return;
33 if (!ip) {
34 if (xfs_iget(mp, NULL, ino, 0, 0, &ip))
35 return;
36 tempqip = true;
37 }
38 tstate->flags |= QCI_SYSFILE;
39 tstate->blocks = ip->i_d.di_nblocks;
40 tstate->nextents = ip->i_d.di_nextents;
41 tstate->spc_timelimit = q->qi_btimelimit;
42 tstate->ino_timelimit = q->qi_itimelimit;
43 tstate->rt_spc_timelimit = q->qi_rtbtimelimit;
44 tstate->spc_warnlimit = q->qi_bwarnlimit;
45 tstate->ino_warnlimit = q->qi_iwarnlimit;
46 tstate->rt_spc_warnlimit = q->qi_rtbwarnlimit;
47 if (tempqip)
Darrick J. Wong44a87362018-07-25 12:52:32 -070048 xfs_irele(ip);
Jan Kara5d3684c2014-11-19 12:03:59 +010049}
50
51/*
52 * Return quota status information, such as enforcements, quota file inode
53 * numbers etc.
54 */
55static int
56xfs_fs_get_quota_state(
57 struct super_block *sb,
58 struct qc_state *state)
59{
60 struct xfs_mount *mp = XFS_M(sb);
61 struct xfs_quotainfo *q = mp->m_quotainfo;
62
63 memset(state, 0, sizeof(*state));
64 if (!XFS_IS_QUOTA_RUNNING(mp))
65 return 0;
66 state->s_incoredqs = q->qi_dquots;
67 if (XFS_IS_UQUOTA_RUNNING(mp))
68 state->s_state[USRQUOTA].flags |= QCI_ACCT_ENABLED;
69 if (XFS_IS_UQUOTA_ENFORCED(mp))
70 state->s_state[USRQUOTA].flags |= QCI_LIMITS_ENFORCED;
71 if (XFS_IS_GQUOTA_RUNNING(mp))
72 state->s_state[GRPQUOTA].flags |= QCI_ACCT_ENABLED;
73 if (XFS_IS_GQUOTA_ENFORCED(mp))
74 state->s_state[GRPQUOTA].flags |= QCI_LIMITS_ENFORCED;
75 if (XFS_IS_PQUOTA_RUNNING(mp))
76 state->s_state[PRJQUOTA].flags |= QCI_ACCT_ENABLED;
77 if (XFS_IS_PQUOTA_ENFORCED(mp))
78 state->s_state[PRJQUOTA].flags |= QCI_LIMITS_ENFORCED;
79
80 xfs_qm_fill_state(&state->s_state[USRQUOTA], mp, q->qi_uquotaip,
81 mp->m_sb.sb_uquotino);
82 xfs_qm_fill_state(&state->s_state[GRPQUOTA], mp, q->qi_gquotaip,
83 mp->m_sb.sb_gquotino);
84 xfs_qm_fill_state(&state->s_state[PRJQUOTA], mp, q->qi_pquotaip,
85 mp->m_sb.sb_pquotino);
86 return 0;
87}
88
Christoph Hellwigfcafb712009-02-09 08:47:34 +010089STATIC int
90xfs_quota_type(int type)
91{
92 switch (type) {
93 case USRQUOTA:
94 return XFS_DQ_USER;
95 case GRPQUOTA:
96 return XFS_DQ_GROUP;
97 default:
98 return XFS_DQ_PROJ;
99 }
100}
101
Jan Karac14cad92014-12-16 13:07:45 +0100102#define XFS_QC_SETINFO_MASK (QC_TIMER_MASK | QC_WARNS_MASK)
103
104/*
105 * Adjust quota timers & warnings
106 */
107static int
108xfs_fs_set_info(
109 struct super_block *sb,
110 int type,
111 struct qc_info *info)
112{
113 struct xfs_mount *mp = XFS_M(sb);
114 struct qc_dqblk newlim;
115
David Howellsbc98a422017-07-17 08:45:34 +0100116 if (sb_rdonly(sb))
Jan Karac14cad92014-12-16 13:07:45 +0100117 return -EROFS;
118 if (!XFS_IS_QUOTA_RUNNING(mp))
119 return -ENOSYS;
120 if (!XFS_IS_QUOTA_ON(mp))
121 return -ESRCH;
122 if (info->i_fieldmask & ~XFS_QC_SETINFO_MASK)
123 return -EINVAL;
124 if ((info->i_fieldmask & XFS_QC_SETINFO_MASK) == 0)
125 return 0;
126
127 newlim.d_fieldmask = info->i_fieldmask;
128 newlim.d_spc_timer = info->i_spc_timelimit;
129 newlim.d_ino_timer = info->i_ino_timelimit;
130 newlim.d_rt_spc_timer = info->i_rt_spc_timelimit;
131 newlim.d_ino_warns = info->i_ino_warnlimit;
132 newlim.d_spc_warns = info->i_spc_warnlimit;
133 newlim.d_rt_spc_warns = info->i_rt_spc_warnlimit;
134
135 return xfs_qm_scall_setqlim(mp, 0, xfs_quota_type(type), &newlim);
136}
137
Jan Kara38e478c2014-10-08 15:56:21 +0200138static unsigned int
139xfs_quota_flags(unsigned int uflags)
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100140{
Jan Kara38e478c2014-10-08 15:56:21 +0200141 unsigned int flags = 0;
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100142
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200143 if (uflags & FS_QUOTA_UDQ_ACCT)
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100144 flags |= XFS_UQUOTA_ACCT;
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200145 if (uflags & FS_QUOTA_PDQ_ACCT)
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100146 flags |= XFS_PQUOTA_ACCT;
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200147 if (uflags & FS_QUOTA_GDQ_ACCT)
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100148 flags |= XFS_GQUOTA_ACCT;
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200149 if (uflags & FS_QUOTA_UDQ_ENFD)
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100150 flags |= XFS_UQUOTA_ENFD;
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500151 if (uflags & FS_QUOTA_GDQ_ENFD)
152 flags |= XFS_GQUOTA_ENFD;
153 if (uflags & FS_QUOTA_PDQ_ENFD)
154 flags |= XFS_PQUOTA_ENFD;
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100155
Jan Kara38e478c2014-10-08 15:56:21 +0200156 return flags;
157}
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100158
Jan Kara38e478c2014-10-08 15:56:21 +0200159STATIC int
160xfs_quota_enable(
161 struct super_block *sb,
162 unsigned int uflags)
163{
164 struct xfs_mount *mp = XFS_M(sb);
165
David Howellsbc98a422017-07-17 08:45:34 +0100166 if (sb_rdonly(sb))
Jan Kara38e478c2014-10-08 15:56:21 +0200167 return -EROFS;
168 if (!XFS_IS_QUOTA_RUNNING(mp))
169 return -ENOSYS;
170
171 return xfs_qm_scall_quotaon(mp, xfs_quota_flags(uflags));
172}
173
174STATIC int
175xfs_quota_disable(
176 struct super_block *sb,
177 unsigned int uflags)
178{
179 struct xfs_mount *mp = XFS_M(sb);
180
David Howellsbc98a422017-07-17 08:45:34 +0100181 if (sb_rdonly(sb))
Jan Kara38e478c2014-10-08 15:56:21 +0200182 return -EROFS;
183 if (!XFS_IS_QUOTA_RUNNING(mp))
184 return -ENOSYS;
185 if (!XFS_IS_QUOTA_ON(mp))
186 return -EINVAL;
187
188 return xfs_qm_scall_quotaoff(mp, xfs_quota_flags(uflags));
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100189}
190
191STATIC int
Eric Sandeen9da93f92014-05-05 17:25:50 +1000192xfs_fs_rm_xquota(
193 struct super_block *sb,
194 unsigned int uflags)
195{
196 struct xfs_mount *mp = XFS_M(sb);
197 unsigned int flags = 0;
Dave Chinner24513372014-06-25 14:58:08 +1000198
David Howellsbc98a422017-07-17 08:45:34 +0100199 if (sb_rdonly(sb))
Eric Sandeen9da93f92014-05-05 17:25:50 +1000200 return -EROFS;
201
202 if (XFS_IS_QUOTA_ON(mp))
203 return -EINVAL;
204
205 if (uflags & FS_USER_QUOTA)
206 flags |= XFS_DQ_USER;
207 if (uflags & FS_GROUP_QUOTA)
208 flags |= XFS_DQ_GROUP;
Jie Liu74dc93a2014-07-24 21:27:17 +1000209 if (uflags & FS_PROJ_QUOTA)
Eric Sandeen9da93f92014-05-05 17:25:50 +1000210 flags |= XFS_DQ_PROJ;
211
Dave Chinner24513372014-06-25 14:58:08 +1000212 return xfs_qm_scall_trunc_qfiles(mp, flags);
213}
Eric Sandeen9da93f92014-05-05 17:25:50 +1000214
215STATIC int
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400216xfs_fs_get_dqblk(
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100217 struct super_block *sb,
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700218 struct kqid qid,
Jan Kara14bf61f2014-10-09 16:03:13 +0200219 struct qc_dqblk *qdq)
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100220{
221 struct xfs_mount *mp = XFS_M(sb);
Eric Sandeen296c24e2016-02-08 11:27:38 +1100222 xfs_dqid_t id;
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100223
224 if (!XFS_IS_QUOTA_RUNNING(mp))
225 return -ENOSYS;
226 if (!XFS_IS_QUOTA_ON(mp))
227 return -ESRCH;
228
Eric Sandeen296c24e2016-02-08 11:27:38 +1100229 id = from_kqid(&init_user_ns, qid);
Darrick J. Wong2e330e72018-05-04 15:30:20 -0700230 return xfs_qm_scall_getquota(mp, id, xfs_quota_type(qid.type), qdq);
Eric Sandeen296c24e2016-02-08 11:27:38 +1100231}
232
233/* Return quota info for active quota >= this qid */
234STATIC int
235xfs_fs_get_nextdqblk(
236 struct super_block *sb,
237 struct kqid *qid,
238 struct qc_dqblk *qdq)
239{
240 int ret;
241 struct xfs_mount *mp = XFS_M(sb);
242 xfs_dqid_t id;
243
244 if (!XFS_IS_QUOTA_RUNNING(mp))
245 return -ENOSYS;
246 if (!XFS_IS_QUOTA_ON(mp))
247 return -ESRCH;
248
249 id = from_kqid(&init_user_ns, *qid);
Darrick J. Wong2e330e72018-05-04 15:30:20 -0700250 ret = xfs_qm_scall_getquota_next(mp, &id, xfs_quota_type(qid->type),
251 qdq);
Eric Sandeen296c24e2016-02-08 11:27:38 +1100252 if (ret)
253 return ret;
254
255 /* ID may be different, so convert back what we got */
256 *qid = make_kqid(current_user_ns(), qid->type, id);
257 return 0;
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100258}
259
260STATIC int
Christoph Hellwigc472b432010-05-06 17:05:17 -0400261xfs_fs_set_dqblk(
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100262 struct super_block *sb,
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700263 struct kqid qid,
Jan Kara14bf61f2014-10-09 16:03:13 +0200264 struct qc_dqblk *qdq)
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100265{
266 struct xfs_mount *mp = XFS_M(sb);
267
David Howellsbc98a422017-07-17 08:45:34 +0100268 if (sb_rdonly(sb))
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100269 return -EROFS;
270 if (!XFS_IS_QUOTA_RUNNING(mp))
271 return -ENOSYS;
272 if (!XFS_IS_QUOTA_ON(mp))
273 return -ESRCH;
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100274
Dave Chinner24513372014-06-25 14:58:08 +1000275 return xfs_qm_scall_setqlim(mp, from_kqid(&init_user_ns, qid),
Jan Kara14bf61f2014-10-09 16:03:13 +0200276 xfs_quota_type(qid.type), qdq);
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100277}
278
Alexey Dobriyan0d54b212009-09-21 17:01:09 -0700279const struct quotactl_ops xfs_quotactl_operations = {
Jan Kara5d3684c2014-11-19 12:03:59 +0100280 .get_state = xfs_fs_get_quota_state,
Jan Karac14cad92014-12-16 13:07:45 +0100281 .set_info = xfs_fs_set_info,
Jan Kara38e478c2014-10-08 15:56:21 +0200282 .quota_enable = xfs_quota_enable,
283 .quota_disable = xfs_quota_disable,
Eric Sandeen9da93f92014-05-05 17:25:50 +1000284 .rm_xquota = xfs_fs_rm_xquota,
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400285 .get_dqblk = xfs_fs_get_dqblk,
Eric Sandeen296c24e2016-02-08 11:27:38 +1100286 .get_nextdqblk = xfs_fs_get_nextdqblk,
Christoph Hellwigc472b432010-05-06 17:05:17 -0400287 .set_dqblk = xfs_fs_set_dqblk,
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100288};