blob: 88d70c236a5445827be5382c4b8d566d2faf5566 [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"
Darrick J. Wong5467b342019-06-28 19:25:35 -07007#include "xfs_shared.h"
Dave Chinner6ca1c902013-08-12 20:49:26 +10008#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +11009#include "xfs_log_format.h"
Dave Chinner7fd36c42013-08-12 20:49:32 +100010#include "xfs_trans_resv.h"
Christoph Hellwigfcafb712009-02-09 08:47:34 +010011#include "xfs_mount.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110012#include "xfs_inode.h"
Christoph Hellwigfcafb712009-02-09 08:47:34 +010013#include "xfs_quota.h"
Christoph Hellwigfcafb712009-02-09 08:47:34 +010014#include "xfs_trans.h"
Jan Kara5d3684c2014-11-19 12:03:59 +010015#include "xfs_icache.h"
Alex Elder06f8e2d62011-08-12 13:57:55 -050016#include "xfs_qm.h"
Christoph Hellwigfcafb712009-02-09 08:47:34 +010017
18
Jan Kara5d3684c2014-11-19 12:03:59 +010019static void
20xfs_qm_fill_state(
21 struct qc_type_state *tstate,
22 struct xfs_mount *mp,
23 struct xfs_inode *ip,
Eric Sandeene8503012020-05-21 13:07:01 -070024 xfs_ino_t ino,
25 struct xfs_def_quota *defq)
Jan Kara5d3684c2014-11-19 12:03:59 +010026{
Eric Sandeen8d077f52020-05-21 13:07:00 -070027 bool tempqip = false;
Jan Kara5d3684c2014-11-19 12:03:59 +010028
29 tstate->ino = ino;
30 if (!ip && ino == NULLFSINO)
31 return;
32 if (!ip) {
33 if (xfs_iget(mp, NULL, ino, 0, 0, &ip))
34 return;
35 tempqip = true;
36 }
37 tstate->flags |= QCI_SYSFILE;
Christoph Hellwig6e73a542021-03-29 11:11:40 -070038 tstate->blocks = ip->i_nblocks;
Christoph Hellwigdaf83962020-05-18 10:27:22 -070039 tstate->nextents = ip->i_df.if_nextents;
Darrick J. Wong438769e2020-07-14 10:37:32 -070040 tstate->spc_timelimit = (u32)defq->blk.time;
41 tstate->ino_timelimit = (u32)defq->ino.time;
42 tstate->rt_spc_timelimit = (u32)defq->rtb.time;
43 tstate->spc_warnlimit = defq->blk.warn;
44 tstate->ino_warnlimit = defq->ino.warn;
45 tstate->rt_spc_warnlimit = defq->rtb.warn;
Jan Kara5d3684c2014-11-19 12:03:59 +010046 if (tempqip)
Darrick J. Wong44a87362018-07-25 12:52:32 -070047 xfs_irele(ip);
Jan Kara5d3684c2014-11-19 12:03:59 +010048}
49
50/*
51 * Return quota status information, such as enforcements, quota file inode
52 * numbers etc.
53 */
54static int
55xfs_fs_get_quota_state(
56 struct super_block *sb,
57 struct qc_state *state)
58{
59 struct xfs_mount *mp = XFS_M(sb);
60 struct xfs_quotainfo *q = mp->m_quotainfo;
61
62 memset(state, 0, sizeof(*state));
63 if (!XFS_IS_QUOTA_RUNNING(mp))
64 return 0;
65 state->s_incoredqs = q->qi_dquots;
66 if (XFS_IS_UQUOTA_RUNNING(mp))
67 state->s_state[USRQUOTA].flags |= QCI_ACCT_ENABLED;
68 if (XFS_IS_UQUOTA_ENFORCED(mp))
69 state->s_state[USRQUOTA].flags |= QCI_LIMITS_ENFORCED;
70 if (XFS_IS_GQUOTA_RUNNING(mp))
71 state->s_state[GRPQUOTA].flags |= QCI_ACCT_ENABLED;
72 if (XFS_IS_GQUOTA_ENFORCED(mp))
73 state->s_state[GRPQUOTA].flags |= QCI_LIMITS_ENFORCED;
74 if (XFS_IS_PQUOTA_RUNNING(mp))
75 state->s_state[PRJQUOTA].flags |= QCI_ACCT_ENABLED;
76 if (XFS_IS_PQUOTA_ENFORCED(mp))
77 state->s_state[PRJQUOTA].flags |= QCI_LIMITS_ENFORCED;
78
79 xfs_qm_fill_state(&state->s_state[USRQUOTA], mp, q->qi_uquotaip,
Eric Sandeene8503012020-05-21 13:07:01 -070080 mp->m_sb.sb_uquotino, &q->qi_usr_default);
Jan Kara5d3684c2014-11-19 12:03:59 +010081 xfs_qm_fill_state(&state->s_state[GRPQUOTA], mp, q->qi_gquotaip,
Eric Sandeene8503012020-05-21 13:07:01 -070082 mp->m_sb.sb_gquotino, &q->qi_grp_default);
Jan Kara5d3684c2014-11-19 12:03:59 +010083 xfs_qm_fill_state(&state->s_state[PRJQUOTA], mp, q->qi_pquotaip,
Eric Sandeene8503012020-05-21 13:07:01 -070084 mp->m_sb.sb_pquotino, &q->qi_prj_default);
Jan Kara5d3684c2014-11-19 12:03:59 +010085 return 0;
86}
87
Darrick J. Wong1a7ed272020-07-15 17:53:43 -070088STATIC xfs_dqtype_t
Christoph Hellwigfcafb712009-02-09 08:47:34 +010089xfs_quota_type(int type)
90{
91 switch (type) {
92 case USRQUOTA:
Darrick J. Wong8cd49012020-07-15 17:42:36 -070093 return XFS_DQTYPE_USER;
Christoph Hellwigfcafb712009-02-09 08:47:34 +010094 case GRPQUOTA:
Darrick J. Wong8cd49012020-07-15 17:42:36 -070095 return XFS_DQTYPE_GROUP;
Christoph Hellwigfcafb712009-02-09 08:47:34 +010096 default:
Darrick J. Wong8cd49012020-07-15 17:42:36 -070097 return XFS_DQTYPE_PROJ;
Christoph Hellwigfcafb712009-02-09 08:47:34 +010098 }
99}
100
Jan Karac14cad92014-12-16 13:07:45 +0100101#define XFS_QC_SETINFO_MASK (QC_TIMER_MASK | QC_WARNS_MASK)
102
103/*
104 * Adjust quota timers & warnings
105 */
106static int
107xfs_fs_set_info(
108 struct super_block *sb,
109 int type,
110 struct qc_info *info)
111{
Eric Sandeen8d077f52020-05-21 13:07:00 -0700112 struct xfs_mount *mp = XFS_M(sb);
113 struct qc_dqblk newlim;
Jan Karac14cad92014-12-16 13:07:45 +0100114
David Howellsbc98a422017-07-17 08:45:34 +0100115 if (sb_rdonly(sb))
Jan Karac14cad92014-12-16 13:07:45 +0100116 return -EROFS;
117 if (!XFS_IS_QUOTA_RUNNING(mp))
118 return -ENOSYS;
119 if (!XFS_IS_QUOTA_ON(mp))
120 return -ESRCH;
121 if (info->i_fieldmask & ~XFS_QC_SETINFO_MASK)
122 return -EINVAL;
123 if ((info->i_fieldmask & XFS_QC_SETINFO_MASK) == 0)
124 return 0;
125
126 newlim.d_fieldmask = info->i_fieldmask;
127 newlim.d_spc_timer = info->i_spc_timelimit;
128 newlim.d_ino_timer = info->i_ino_timelimit;
129 newlim.d_rt_spc_timer = info->i_rt_spc_timelimit;
130 newlim.d_ino_warns = info->i_ino_warnlimit;
131 newlim.d_spc_warns = info->i_spc_warnlimit;
132 newlim.d_rt_spc_warns = info->i_rt_spc_warnlimit;
133
134 return xfs_qm_scall_setqlim(mp, 0, xfs_quota_type(type), &newlim);
135}
136
Jan Kara38e478c2014-10-08 15:56:21 +0200137static unsigned int
138xfs_quota_flags(unsigned int uflags)
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100139{
Jan Kara38e478c2014-10-08 15:56:21 +0200140 unsigned int flags = 0;
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100141
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200142 if (uflags & FS_QUOTA_UDQ_ACCT)
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100143 flags |= XFS_UQUOTA_ACCT;
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200144 if (uflags & FS_QUOTA_PDQ_ACCT)
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100145 flags |= XFS_PQUOTA_ACCT;
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200146 if (uflags & FS_QUOTA_GDQ_ACCT)
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100147 flags |= XFS_GQUOTA_ACCT;
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200148 if (uflags & FS_QUOTA_UDQ_ENFD)
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100149 flags |= XFS_UQUOTA_ENFD;
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500150 if (uflags & FS_QUOTA_GDQ_ENFD)
151 flags |= XFS_GQUOTA_ENFD;
152 if (uflags & FS_QUOTA_PDQ_ENFD)
153 flags |= XFS_PQUOTA_ENFD;
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100154
Jan Kara38e478c2014-10-08 15:56:21 +0200155 return flags;
156}
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100157
Jan Kara38e478c2014-10-08 15:56:21 +0200158STATIC int
159xfs_quota_enable(
160 struct super_block *sb,
161 unsigned int uflags)
162{
163 struct xfs_mount *mp = XFS_M(sb);
164
David Howellsbc98a422017-07-17 08:45:34 +0100165 if (sb_rdonly(sb))
Jan Kara38e478c2014-10-08 15:56:21 +0200166 return -EROFS;
167 if (!XFS_IS_QUOTA_RUNNING(mp))
168 return -ENOSYS;
169
170 return xfs_qm_scall_quotaon(mp, xfs_quota_flags(uflags));
171}
172
173STATIC int
174xfs_quota_disable(
175 struct super_block *sb,
176 unsigned int uflags)
177{
178 struct xfs_mount *mp = XFS_M(sb);
179
David Howellsbc98a422017-07-17 08:45:34 +0100180 if (sb_rdonly(sb))
Jan Kara38e478c2014-10-08 15:56:21 +0200181 return -EROFS;
182 if (!XFS_IS_QUOTA_RUNNING(mp))
183 return -ENOSYS;
184 if (!XFS_IS_QUOTA_ON(mp))
185 return -EINVAL;
186
187 return xfs_qm_scall_quotaoff(mp, xfs_quota_flags(uflags));
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100188}
189
190STATIC int
Eric Sandeen9da93f92014-05-05 17:25:50 +1000191xfs_fs_rm_xquota(
192 struct super_block *sb,
193 unsigned int uflags)
194{
195 struct xfs_mount *mp = XFS_M(sb);
196 unsigned int flags = 0;
Dave Chinner24513372014-06-25 14:58:08 +1000197
David Howellsbc98a422017-07-17 08:45:34 +0100198 if (sb_rdonly(sb))
Eric Sandeen9da93f92014-05-05 17:25:50 +1000199 return -EROFS;
200
201 if (XFS_IS_QUOTA_ON(mp))
202 return -EINVAL;
203
Jan Kara3dd4d402019-10-23 17:00:45 -0700204 if (uflags & ~(FS_USER_QUOTA | FS_GROUP_QUOTA | FS_PROJ_QUOTA))
205 return -EINVAL;
206
Eric Sandeen9da93f92014-05-05 17:25:50 +1000207 if (uflags & FS_USER_QUOTA)
Darrick J. Wong41ed4a52020-07-14 10:36:09 -0700208 flags |= XFS_QMOPT_UQUOTA;
Eric Sandeen9da93f92014-05-05 17:25:50 +1000209 if (uflags & FS_GROUP_QUOTA)
Darrick J. Wong41ed4a52020-07-14 10:36:09 -0700210 flags |= XFS_QMOPT_GQUOTA;
Jie Liu74dc93a2014-07-24 21:27:17 +1000211 if (uflags & FS_PROJ_QUOTA)
Darrick J. Wong41ed4a52020-07-14 10:36:09 -0700212 flags |= XFS_QMOPT_PQUOTA;
Eric Sandeen9da93f92014-05-05 17:25:50 +1000213
Dave Chinner24513372014-06-25 14:58:08 +1000214 return xfs_qm_scall_trunc_qfiles(mp, flags);
215}
Eric Sandeen9da93f92014-05-05 17:25:50 +1000216
217STATIC int
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400218xfs_fs_get_dqblk(
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100219 struct super_block *sb,
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700220 struct kqid qid,
Jan Kara14bf61f2014-10-09 16:03:13 +0200221 struct qc_dqblk *qdq)
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100222{
223 struct xfs_mount *mp = XFS_M(sb);
Eric Sandeen296c24e2016-02-08 11:27:38 +1100224 xfs_dqid_t id;
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100225
226 if (!XFS_IS_QUOTA_RUNNING(mp))
227 return -ENOSYS;
228 if (!XFS_IS_QUOTA_ON(mp))
229 return -ESRCH;
230
Eric Sandeen296c24e2016-02-08 11:27:38 +1100231 id = from_kqid(&init_user_ns, qid);
Darrick J. Wong2e330e72018-05-04 15:30:20 -0700232 return xfs_qm_scall_getquota(mp, id, xfs_quota_type(qid.type), qdq);
Eric Sandeen296c24e2016-02-08 11:27:38 +1100233}
234
235/* Return quota info for active quota >= this qid */
236STATIC int
237xfs_fs_get_nextdqblk(
238 struct super_block *sb,
239 struct kqid *qid,
240 struct qc_dqblk *qdq)
241{
242 int ret;
243 struct xfs_mount *mp = XFS_M(sb);
244 xfs_dqid_t id;
245
246 if (!XFS_IS_QUOTA_RUNNING(mp))
247 return -ENOSYS;
248 if (!XFS_IS_QUOTA_ON(mp))
249 return -ESRCH;
250
251 id = from_kqid(&init_user_ns, *qid);
Darrick J. Wong2e330e72018-05-04 15:30:20 -0700252 ret = xfs_qm_scall_getquota_next(mp, &id, xfs_quota_type(qid->type),
253 qdq);
Eric Sandeen296c24e2016-02-08 11:27:38 +1100254 if (ret)
255 return ret;
256
257 /* ID may be different, so convert back what we got */
258 *qid = make_kqid(current_user_ns(), qid->type, id);
259 return 0;
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100260}
261
262STATIC int
Christoph Hellwigc472b432010-05-06 17:05:17 -0400263xfs_fs_set_dqblk(
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100264 struct super_block *sb,
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700265 struct kqid qid,
Jan Kara14bf61f2014-10-09 16:03:13 +0200266 struct qc_dqblk *qdq)
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100267{
268 struct xfs_mount *mp = XFS_M(sb);
269
David Howellsbc98a422017-07-17 08:45:34 +0100270 if (sb_rdonly(sb))
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100271 return -EROFS;
272 if (!XFS_IS_QUOTA_RUNNING(mp))
273 return -ENOSYS;
274 if (!XFS_IS_QUOTA_ON(mp))
275 return -ESRCH;
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100276
Dave Chinner24513372014-06-25 14:58:08 +1000277 return xfs_qm_scall_setqlim(mp, from_kqid(&init_user_ns, qid),
Jan Kara14bf61f2014-10-09 16:03:13 +0200278 xfs_quota_type(qid.type), qdq);
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100279}
280
Alexey Dobriyan0d54b212009-09-21 17:01:09 -0700281const struct quotactl_ops xfs_quotactl_operations = {
Jan Kara5d3684c2014-11-19 12:03:59 +0100282 .get_state = xfs_fs_get_quota_state,
Jan Karac14cad92014-12-16 13:07:45 +0100283 .set_info = xfs_fs_set_info,
Jan Kara38e478c2014-10-08 15:56:21 +0200284 .quota_enable = xfs_quota_enable,
285 .quota_disable = xfs_quota_disable,
Eric Sandeen9da93f92014-05-05 17:25:50 +1000286 .rm_xquota = xfs_fs_rm_xquota,
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400287 .get_dqblk = xfs_fs_get_dqblk,
Eric Sandeen296c24e2016-02-08 11:27:38 +1100288 .get_nextdqblk = xfs_fs_get_nextdqblk,
Christoph Hellwigc472b432010-05-06 17:05:17 -0400289 .set_dqblk = xfs_fs_set_dqblk,
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100290};