blob: 05e4bd9ab6d68dc05aacefa6d5427f87431ca2b4 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Quota code necessary even when VFS quota support is not compiled
4 * into the kernel. The interesting stuff is over in dquot.c, here
5 * we have symbols for initial quotactl(2) handling, the sysctl(2)
6 * variables, etc - things needed even when quota support disabled.
7 */
8
9#include <linux/fs.h>
10#include <linux/namei.h>
11#include <linux/slab.h>
12#include <asm/current.h>
Jeff Liuf3da9312012-05-28 23:40:17 +080013#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/security.h>
16#include <linux/syscalls.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080017#include <linux/capability.h>
Adrian Bunkbe586ba2005-11-07 00:59:35 -080018#include <linux/quotaops.h>
Vasily Tarasovb7163952007-07-15 23:41:12 -070019#include <linux/types.h>
Sascha Hauer9dfa23c2021-03-04 13:35:39 +010020#include <linux/mount.h>
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -050021#include <linux/writeback.h>
Jeremy Cline7b6924d2018-07-31 01:37:31 +000022#include <linux/nospec.h>
Christoph Hellwig80bdad32020-09-17 09:41:59 +020023#include "compat.h"
Christoph Hellwig60b49882020-11-16 15:21:18 +010024#include "../internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Christoph Hellwigc988afb2010-02-16 03:44:50 -050026static int check_quotactl_permission(struct super_block *sb, int type, int cmd,
27 qid_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
Christoph Hellwigc988afb2010-02-16 03:44:50 -050029 switch (cmd) {
30 /* these commands do not require any special privilegues */
31 case Q_GETFMT:
32 case Q_SYNC:
33 case Q_GETINFO:
34 case Q_XGETQSTAT:
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -050035 case Q_XGETQSTATV:
Christoph Hellwigc988afb2010-02-16 03:44:50 -050036 case Q_XQUOTASYNC:
37 break;
38 /* allow to query information for dquots we "own" */
39 case Q_GETQUOTA:
40 case Q_XGETQUOTA:
Eric W. Biederman74a8a102012-09-16 02:07:49 -070041 if ((type == USRQUOTA && uid_eq(current_euid(), make_kuid(current_user_ns(), id))) ||
42 (type == GRPQUOTA && in_egroup_p(make_kgid(current_user_ns(), id))))
Christoph Hellwigc988afb2010-02-16 03:44:50 -050043 break;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050044 fallthrough;
Christoph Hellwigc988afb2010-02-16 03:44:50 -050045 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 if (!capable(CAP_SYS_ADMIN))
47 return -EPERM;
48 }
49
Christoph Hellwigc988afb2010-02-16 03:44:50 -050050 return security_quotactl(cmd, type, id, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051}
52
Al Viro01a05b32010-03-23 06:06:58 -040053static void quota_sync_one(struct super_block *sb, void *arg)
54{
Jan Kara2c5f6482014-09-30 10:43:09 +020055 int type = *(int *)arg;
56
57 if (sb->s_qcop && sb->s_qcop->quota_sync &&
58 (sb->s_quota_types & (1 << type)))
59 sb->s_qcop->quota_sync(sb, type);
Al Viro01a05b32010-03-23 06:06:58 -040060}
61
Christoph Hellwig6ae09572010-02-16 03:44:49 -050062static int quota_sync_all(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Christoph Hellwig6ae09572010-02-16 03:44:49 -050064 int ret;
65
Christoph Hellwig6ae09572010-02-16 03:44:49 -050066 ret = security_quotactl(Q_SYNC, type, 0, NULL);
Al Viro01a05b32010-03-23 06:06:58 -040067 if (!ret)
68 iterate_supers(quota_sync_one, &type);
69 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
Jan Karad3b86322014-10-08 16:07:12 +020072unsigned int qtype_enforce_flag(int type)
73{
74 switch (type) {
75 case USRQUOTA:
76 return FS_QUOTA_UDQ_ENFD;
77 case GRPQUOTA:
78 return FS_QUOTA_GDQ_ENFD;
79 case PRJQUOTA:
80 return FS_QUOTA_PDQ_ENFD;
81 }
82 return 0;
83}
84
Eric Sandeen3218a3e2016-02-08 11:21:24 +110085static int quota_quotaon(struct super_block *sb, int type, qid_t id,
Al Viro8c54ca92016-11-20 19:49:34 -050086 const struct path *path)
Christoph Hellwigc411e5f2010-02-16 03:44:47 -050087{
Jan Karaaaa3dae2014-10-08 18:35:31 +020088 if (!sb->s_qcop->quota_on && !sb->s_qcop->quota_enable)
Jan Karaf00c9e42010-09-15 17:38:58 +020089 return -ENOSYS;
Jan Karad3b86322014-10-08 16:07:12 +020090 if (sb->s_qcop->quota_enable)
91 return sb->s_qcop->quota_enable(sb, qtype_enforce_flag(type));
Jan Karaf00c9e42010-09-15 17:38:58 +020092 if (IS_ERR(path))
93 return PTR_ERR(path);
94 return sb->s_qcop->quota_on(sb, type, id, path);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -050095}
96
Jan Karad3b86322014-10-08 16:07:12 +020097static int quota_quotaoff(struct super_block *sb, int type)
98{
99 if (!sb->s_qcop->quota_off && !sb->s_qcop->quota_disable)
100 return -ENOSYS;
101 if (sb->s_qcop->quota_disable)
102 return sb->s_qcop->quota_disable(sb, qtype_enforce_flag(type));
103 return sb->s_qcop->quota_off(sb, type);
104}
105
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500106static int quota_getfmt(struct super_block *sb, int type, void __user *addr)
107{
108 __u32 fmt;
109
Jan Kara9d1ccbe2016-11-23 13:35:14 +0100110 if (!sb_has_quota_active(sb, type))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500111 return -ESRCH;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500112 fmt = sb_dqopt(sb)->info[type].dqi_format->qf_fmt_id;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500113 if (copy_to_user(addr, &fmt, sizeof(fmt)))
114 return -EFAULT;
115 return 0;
116}
117
118static int quota_getinfo(struct super_block *sb, int type, void __user *addr)
119{
Jan Kara0a2403392014-11-19 00:42:09 +0100120 struct qc_state state;
121 struct qc_type_state *tstate;
122 struct if_dqinfo uinfo;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500123 int ret;
124
Jan Kara0a2403392014-11-19 00:42:09 +0100125 if (!sb->s_qcop->get_state)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500126 return -ENOSYS;
Jan Kara0a2403392014-11-19 00:42:09 +0100127 ret = sb->s_qcop->get_state(sb, &state);
128 if (ret)
129 return ret;
130 tstate = state.s_state + type;
131 if (!(tstate->flags & QCI_ACCT_ENABLED))
132 return -ESRCH;
133 memset(&uinfo, 0, sizeof(uinfo));
134 uinfo.dqi_bgrace = tstate->spc_timelimit;
135 uinfo.dqi_igrace = tstate->ino_timelimit;
136 if (tstate->flags & QCI_SYSFILE)
137 uinfo.dqi_flags |= DQF_SYS_FILE;
138 if (tstate->flags & QCI_ROOT_SQUASH)
139 uinfo.dqi_flags |= DQF_ROOT_SQUASH;
140 uinfo.dqi_valid = IIF_ALL;
Dan Carpenter72d4d0e2015-08-11 00:29:55 +0300141 if (copy_to_user(addr, &uinfo, sizeof(uinfo)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500142 return -EFAULT;
Dan Carpenter72d4d0e2015-08-11 00:29:55 +0300143 return 0;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500144}
145
146static int quota_setinfo(struct super_block *sb, int type, void __user *addr)
147{
148 struct if_dqinfo info;
Jan Kara5eacb2a2014-12-16 12:03:51 +0100149 struct qc_info qinfo;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500150
151 if (copy_from_user(&info, addr, sizeof(info)))
152 return -EFAULT;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500153 if (!sb->s_qcop->set_info)
154 return -ENOSYS;
Jan Kara5eacb2a2014-12-16 12:03:51 +0100155 if (info.dqi_valid & ~(IIF_FLAGS | IIF_BGRACE | IIF_IGRACE))
156 return -EINVAL;
157 memset(&qinfo, 0, sizeof(qinfo));
158 if (info.dqi_valid & IIF_FLAGS) {
159 if (info.dqi_flags & ~DQF_SETINFO_MASK)
160 return -EINVAL;
161 if (info.dqi_flags & DQF_ROOT_SQUASH)
162 qinfo.i_flags |= QCI_ROOT_SQUASH;
163 qinfo.i_fieldmask |= QC_FLAGS;
164 }
165 if (info.dqi_valid & IIF_BGRACE) {
166 qinfo.i_spc_timelimit = info.dqi_bgrace;
167 qinfo.i_fieldmask |= QC_SPC_TIMER;
168 }
169 if (info.dqi_valid & IIF_IGRACE) {
170 qinfo.i_ino_timelimit = info.dqi_igrace;
171 qinfo.i_fieldmask |= QC_INO_TIMER;
172 }
173 return sb->s_qcop->set_info(sb, type, &qinfo);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500174}
175
Jan Kara14bf61f2014-10-09 16:03:13 +0200176static inline qsize_t qbtos(qsize_t blocks)
177{
178 return blocks << QIF_DQBLKSIZE_BITS;
179}
180
181static inline qsize_t stoqb(qsize_t space)
182{
183 return (space + QIF_DQBLKSIZE - 1) >> QIF_DQBLKSIZE_BITS;
184}
185
186static void copy_to_if_dqblk(struct if_dqblk *dst, struct qc_dqblk *src)
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400187{
Dan Carpenter18da65e2013-11-01 13:21:54 +0300188 memset(dst, 0, sizeof(*dst));
Jan Kara14bf61f2014-10-09 16:03:13 +0200189 dst->dqb_bhardlimit = stoqb(src->d_spc_hardlimit);
190 dst->dqb_bsoftlimit = stoqb(src->d_spc_softlimit);
191 dst->dqb_curspace = src->d_space;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400192 dst->dqb_ihardlimit = src->d_ino_hardlimit;
193 dst->dqb_isoftlimit = src->d_ino_softlimit;
Jan Kara14bf61f2014-10-09 16:03:13 +0200194 dst->dqb_curinodes = src->d_ino_count;
195 dst->dqb_btime = src->d_spc_timer;
196 dst->dqb_itime = src->d_ino_timer;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400197 dst->dqb_valid = QIF_ALL;
198}
199
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500200static int quota_getquota(struct super_block *sb, int type, qid_t id,
201 void __user *addr)
202{
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700203 struct kqid qid;
Jan Kara14bf61f2014-10-09 16:03:13 +0200204 struct qc_dqblk fdq;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500205 struct if_dqblk idq;
206 int ret;
207
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500208 if (!sb->s_qcop->get_dqblk)
209 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700210 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500211 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700212 return -EINVAL;
213 ret = sb->s_qcop->get_dqblk(sb, qid, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500214 if (ret)
215 return ret;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400216 copy_to_if_dqblk(&idq, &fdq);
Christoph Hellwig80bdad32020-09-17 09:41:59 +0200217
218 if (compat_need_64bit_alignment_fixup()) {
219 struct compat_if_dqblk __user *compat_dqblk = addr;
220
221 if (copy_to_user(compat_dqblk, &idq, sizeof(*compat_dqblk)))
222 return -EFAULT;
223 if (put_user(idq.dqb_valid, &compat_dqblk->dqb_valid))
224 return -EFAULT;
225 } else {
226 if (copy_to_user(addr, &idq, sizeof(idq)))
227 return -EFAULT;
228 }
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500229 return 0;
230}
231
Eric Sandeen926132c2016-02-08 11:22:21 +1100232/*
233 * Return quota for next active quota >= this id, if any exists,
Eric Sandeenba581482016-01-22 12:25:32 -0600234 * otherwise return -ENOENT via ->get_nextdqblk
Eric Sandeen926132c2016-02-08 11:22:21 +1100235 */
236static int quota_getnextquota(struct super_block *sb, int type, qid_t id,
237 void __user *addr)
238{
239 struct kqid qid;
240 struct qc_dqblk fdq;
241 struct if_nextdqblk idq;
242 int ret;
243
244 if (!sb->s_qcop->get_nextdqblk)
245 return -ENOSYS;
246 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500247 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric Sandeen926132c2016-02-08 11:22:21 +1100248 return -EINVAL;
249 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &fdq);
250 if (ret)
251 return ret;
252 /* struct if_nextdqblk is a superset of struct if_dqblk */
253 copy_to_if_dqblk((struct if_dqblk *)&idq, &fdq);
254 idq.dqb_id = from_kqid(current_user_ns(), qid);
255 if (copy_to_user(addr, &idq, sizeof(idq)))
256 return -EFAULT;
257 return 0;
258}
259
Jan Kara14bf61f2014-10-09 16:03:13 +0200260static void copy_from_if_dqblk(struct qc_dqblk *dst, struct if_dqblk *src)
Christoph Hellwigc472b432010-05-06 17:05:17 -0400261{
Jan Kara14bf61f2014-10-09 16:03:13 +0200262 dst->d_spc_hardlimit = qbtos(src->dqb_bhardlimit);
263 dst->d_spc_softlimit = qbtos(src->dqb_bsoftlimit);
264 dst->d_space = src->dqb_curspace;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400265 dst->d_ino_hardlimit = src->dqb_ihardlimit;
266 dst->d_ino_softlimit = src->dqb_isoftlimit;
Jan Kara14bf61f2014-10-09 16:03:13 +0200267 dst->d_ino_count = src->dqb_curinodes;
268 dst->d_spc_timer = src->dqb_btime;
269 dst->d_ino_timer = src->dqb_itime;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400270
271 dst->d_fieldmask = 0;
272 if (src->dqb_valid & QIF_BLIMITS)
Jan Kara14bf61f2014-10-09 16:03:13 +0200273 dst->d_fieldmask |= QC_SPC_SOFT | QC_SPC_HARD;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400274 if (src->dqb_valid & QIF_SPACE)
Jan Kara14bf61f2014-10-09 16:03:13 +0200275 dst->d_fieldmask |= QC_SPACE;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400276 if (src->dqb_valid & QIF_ILIMITS)
Jan Kara14bf61f2014-10-09 16:03:13 +0200277 dst->d_fieldmask |= QC_INO_SOFT | QC_INO_HARD;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400278 if (src->dqb_valid & QIF_INODES)
Jan Kara14bf61f2014-10-09 16:03:13 +0200279 dst->d_fieldmask |= QC_INO_COUNT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400280 if (src->dqb_valid & QIF_BTIME)
Jan Kara14bf61f2014-10-09 16:03:13 +0200281 dst->d_fieldmask |= QC_SPC_TIMER;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400282 if (src->dqb_valid & QIF_ITIME)
Jan Kara14bf61f2014-10-09 16:03:13 +0200283 dst->d_fieldmask |= QC_INO_TIMER;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400284}
285
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500286static int quota_setquota(struct super_block *sb, int type, qid_t id,
287 void __user *addr)
288{
Jan Kara14bf61f2014-10-09 16:03:13 +0200289 struct qc_dqblk fdq;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500290 struct if_dqblk idq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700291 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500292
Christoph Hellwig80bdad32020-09-17 09:41:59 +0200293 if (compat_need_64bit_alignment_fixup()) {
294 struct compat_if_dqblk __user *compat_dqblk = addr;
295
296 if (copy_from_user(&idq, compat_dqblk, sizeof(*compat_dqblk)) ||
297 get_user(idq.dqb_valid, &compat_dqblk->dqb_valid))
298 return -EFAULT;
299 } else {
300 if (copy_from_user(&idq, addr, sizeof(idq)))
301 return -EFAULT;
302 }
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500303 if (!sb->s_qcop->set_dqblk)
304 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700305 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500306 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700307 return -EINVAL;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400308 copy_from_if_dqblk(&fdq, &idq);
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700309 return sb->s_qcop->set_dqblk(sb, qid, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500310}
311
Jan Kara38e478c2014-10-08 15:56:21 +0200312static int quota_enable(struct super_block *sb, void __user *addr)
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500313{
314 __u32 flags;
315
316 if (copy_from_user(&flags, addr, sizeof(flags)))
317 return -EFAULT;
Jan Kara38e478c2014-10-08 15:56:21 +0200318 if (!sb->s_qcop->quota_enable)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500319 return -ENOSYS;
Jan Kara38e478c2014-10-08 15:56:21 +0200320 return sb->s_qcop->quota_enable(sb, flags);
321}
322
323static int quota_disable(struct super_block *sb, void __user *addr)
324{
325 __u32 flags;
326
327 if (copy_from_user(&flags, addr, sizeof(flags)))
328 return -EFAULT;
329 if (!sb->s_qcop->quota_disable)
330 return -ENOSYS;
331 return sb->s_qcop->quota_disable(sb, flags);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500332}
333
Jan Karabc230e42014-11-19 16:17:45 +0100334static int quota_state_to_flags(struct qc_state *state)
335{
336 int flags = 0;
337
338 if (state->s_state[USRQUOTA].flags & QCI_ACCT_ENABLED)
339 flags |= FS_QUOTA_UDQ_ACCT;
340 if (state->s_state[USRQUOTA].flags & QCI_LIMITS_ENFORCED)
341 flags |= FS_QUOTA_UDQ_ENFD;
342 if (state->s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED)
343 flags |= FS_QUOTA_GDQ_ACCT;
344 if (state->s_state[GRPQUOTA].flags & QCI_LIMITS_ENFORCED)
345 flags |= FS_QUOTA_GDQ_ENFD;
346 if (state->s_state[PRJQUOTA].flags & QCI_ACCT_ENABLED)
347 flags |= FS_QUOTA_PDQ_ACCT;
348 if (state->s_state[PRJQUOTA].flags & QCI_LIMITS_ENFORCED)
349 flags |= FS_QUOTA_PDQ_ENFD;
350 return flags;
351}
352
Eric Sandeen555b2c32019-06-21 18:27:13 -0500353static int quota_getstate(struct super_block *sb, int type,
354 struct fs_quota_stat *fqs)
Jan Karabc230e42014-11-19 16:17:45 +0100355{
Jan Karabc230e42014-11-19 16:17:45 +0100356 struct qc_state state;
357 int ret;
358
Eric Sandeen3cd01262016-08-12 17:40:09 -0500359 memset(&state, 0, sizeof (struct qc_state));
Jan Karabc230e42014-11-19 16:17:45 +0100360 ret = sb->s_qcop->get_state(sb, &state);
361 if (ret < 0)
362 return ret;
363
364 memset(fqs, 0, sizeof(*fqs));
365 fqs->qs_version = FS_QSTAT_VERSION;
366 fqs->qs_flags = quota_state_to_flags(&state);
367 /* No quota enabled? */
368 if (!fqs->qs_flags)
369 return -ENOSYS;
370 fqs->qs_incoredqs = state.s_incoredqs;
Eric Sandeen555b2c32019-06-21 18:27:13 -0500371
Jan Karabc230e42014-11-19 16:17:45 +0100372 fqs->qs_btimelimit = state.s_state[type].spc_timelimit;
373 fqs->qs_itimelimit = state.s_state[type].ino_timelimit;
374 fqs->qs_rtbtimelimit = state.s_state[type].rt_spc_timelimit;
375 fqs->qs_bwarnlimit = state.s_state[type].spc_warnlimit;
376 fqs->qs_iwarnlimit = state.s_state[type].ino_warnlimit;
Eric Sandeen3cd01262016-08-12 17:40:09 -0500377
378 /* Inodes may be allocated even if inactive; copy out if present */
379 if (state.s_state[USRQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100380 fqs->qs_uquota.qfs_ino = state.s_state[USRQUOTA].ino;
381 fqs->qs_uquota.qfs_nblks = state.s_state[USRQUOTA].blocks;
382 fqs->qs_uquota.qfs_nextents = state.s_state[USRQUOTA].nextents;
383 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500384 if (state.s_state[GRPQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100385 fqs->qs_gquota.qfs_ino = state.s_state[GRPQUOTA].ino;
386 fqs->qs_gquota.qfs_nblks = state.s_state[GRPQUOTA].blocks;
387 fqs->qs_gquota.qfs_nextents = state.s_state[GRPQUOTA].nextents;
388 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500389 if (state.s_state[PRJQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100390 /*
391 * Q_XGETQSTAT doesn't have room for both group and project
392 * quotas. So, allow the project quota values to be copied out
393 * only if there is no group quota information available.
394 */
395 if (!(state.s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED)) {
396 fqs->qs_gquota.qfs_ino = state.s_state[PRJQUOTA].ino;
397 fqs->qs_gquota.qfs_nblks =
398 state.s_state[PRJQUOTA].blocks;
399 fqs->qs_gquota.qfs_nextents =
400 state.s_state[PRJQUOTA].nextents;
401 }
402 }
403 return 0;
404}
405
Christoph Hellwig80bdad32020-09-17 09:41:59 +0200406static int compat_copy_fs_qfilestat(struct compat_fs_qfilestat __user *to,
407 struct fs_qfilestat *from)
408{
409 if (copy_to_user(to, from, sizeof(*to)) ||
410 put_user(from->qfs_nextents, &to->qfs_nextents))
411 return -EFAULT;
412 return 0;
413}
414
415static int compat_copy_fs_quota_stat(struct compat_fs_quota_stat __user *to,
416 struct fs_quota_stat *from)
417{
418 if (put_user(from->qs_version, &to->qs_version) ||
419 put_user(from->qs_flags, &to->qs_flags) ||
420 put_user(from->qs_pad, &to->qs_pad) ||
421 compat_copy_fs_qfilestat(&to->qs_uquota, &from->qs_uquota) ||
422 compat_copy_fs_qfilestat(&to->qs_gquota, &from->qs_gquota) ||
423 put_user(from->qs_incoredqs, &to->qs_incoredqs) ||
424 put_user(from->qs_btimelimit, &to->qs_btimelimit) ||
425 put_user(from->qs_itimelimit, &to->qs_itimelimit) ||
426 put_user(from->qs_rtbtimelimit, &to->qs_rtbtimelimit) ||
427 put_user(from->qs_bwarnlimit, &to->qs_bwarnlimit) ||
428 put_user(from->qs_iwarnlimit, &to->qs_iwarnlimit))
429 return -EFAULT;
430 return 0;
431}
432
Eric Sandeen555b2c32019-06-21 18:27:13 -0500433static int quota_getxstate(struct super_block *sb, int type, void __user *addr)
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500434{
435 struct fs_quota_stat fqs;
436 int ret;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500437
Jan Kara59b6ba62014-11-19 16:44:58 +0100438 if (!sb->s_qcop->get_state)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500439 return -ENOSYS;
Eric Sandeen555b2c32019-06-21 18:27:13 -0500440 ret = quota_getstate(sb, type, &fqs);
Christoph Hellwig80bdad32020-09-17 09:41:59 +0200441 if (ret)
442 return ret;
443
444 if (compat_need_64bit_alignment_fixup())
445 return compat_copy_fs_quota_stat(addr, &fqs);
446 if (copy_to_user(addr, &fqs, sizeof(fqs)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500447 return -EFAULT;
Christoph Hellwig80bdad32020-09-17 09:41:59 +0200448 return 0;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500449}
450
Eric Sandeen555b2c32019-06-21 18:27:13 -0500451static int quota_getstatev(struct super_block *sb, int type,
452 struct fs_quota_statv *fqs)
Jan Karabc230e42014-11-19 16:17:45 +0100453{
Jan Karabc230e42014-11-19 16:17:45 +0100454 struct qc_state state;
455 int ret;
456
Eric Sandeen3cd01262016-08-12 17:40:09 -0500457 memset(&state, 0, sizeof (struct qc_state));
Jan Karabc230e42014-11-19 16:17:45 +0100458 ret = sb->s_qcop->get_state(sb, &state);
459 if (ret < 0)
460 return ret;
461
462 memset(fqs, 0, sizeof(*fqs));
463 fqs->qs_version = FS_QSTAT_VERSION;
464 fqs->qs_flags = quota_state_to_flags(&state);
465 /* No quota enabled? */
466 if (!fqs->qs_flags)
467 return -ENOSYS;
468 fqs->qs_incoredqs = state.s_incoredqs;
Eric Sandeen555b2c32019-06-21 18:27:13 -0500469
Jan Karabc230e42014-11-19 16:17:45 +0100470 fqs->qs_btimelimit = state.s_state[type].spc_timelimit;
471 fqs->qs_itimelimit = state.s_state[type].ino_timelimit;
472 fqs->qs_rtbtimelimit = state.s_state[type].rt_spc_timelimit;
473 fqs->qs_bwarnlimit = state.s_state[type].spc_warnlimit;
474 fqs->qs_iwarnlimit = state.s_state[type].ino_warnlimit;
Darrick J. Wongf998d7d2021-03-17 21:17:36 -0700475 fqs->qs_rtbwarnlimit = state.s_state[type].rt_spc_warnlimit;
Eric Sandeen3cd01262016-08-12 17:40:09 -0500476
477 /* Inodes may be allocated even if inactive; copy out if present */
478 if (state.s_state[USRQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100479 fqs->qs_uquota.qfs_ino = state.s_state[USRQUOTA].ino;
480 fqs->qs_uquota.qfs_nblks = state.s_state[USRQUOTA].blocks;
481 fqs->qs_uquota.qfs_nextents = state.s_state[USRQUOTA].nextents;
482 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500483 if (state.s_state[GRPQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100484 fqs->qs_gquota.qfs_ino = state.s_state[GRPQUOTA].ino;
485 fqs->qs_gquota.qfs_nblks = state.s_state[GRPQUOTA].blocks;
486 fqs->qs_gquota.qfs_nextents = state.s_state[GRPQUOTA].nextents;
487 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500488 if (state.s_state[PRJQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100489 fqs->qs_pquota.qfs_ino = state.s_state[PRJQUOTA].ino;
490 fqs->qs_pquota.qfs_nblks = state.s_state[PRJQUOTA].blocks;
491 fqs->qs_pquota.qfs_nextents = state.s_state[PRJQUOTA].nextents;
492 }
493 return 0;
494}
495
Eric Sandeen555b2c32019-06-21 18:27:13 -0500496static int quota_getxstatev(struct super_block *sb, int type, void __user *addr)
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500497{
498 struct fs_quota_statv fqs;
499 int ret;
500
Jan Kara59b6ba62014-11-19 16:44:58 +0100501 if (!sb->s_qcop->get_state)
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500502 return -ENOSYS;
503
504 memset(&fqs, 0, sizeof(fqs));
505 if (copy_from_user(&fqs, addr, 1)) /* Just read qs_version */
506 return -EFAULT;
507
508 /* If this kernel doesn't support user specified version, fail */
509 switch (fqs.qs_version) {
510 case FS_QSTATV_VERSION1:
511 break;
512 default:
513 return -EINVAL;
514 }
Eric Sandeen555b2c32019-06-21 18:27:13 -0500515 ret = quota_getstatev(sb, type, &fqs);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500516 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
517 return -EFAULT;
518 return ret;
519}
520
Jan Kara14bf61f2014-10-09 16:03:13 +0200521/*
522 * XFS defines BBTOB and BTOBB macros inside fs/xfs/ and we cannot move them
523 * out of there as xfsprogs rely on definitions being in that header file. So
524 * just define same functions here for quota purposes.
525 */
526#define XFS_BB_SHIFT 9
527
528static inline u64 quota_bbtob(u64 blocks)
529{
530 return blocks << XFS_BB_SHIFT;
531}
532
533static inline u64 quota_btobb(u64 bytes)
534{
535 return (bytes + (1 << XFS_BB_SHIFT) - 1) >> XFS_BB_SHIFT;
536}
537
Darrick J. Wongad47ff332020-09-09 09:34:13 -0700538static inline s64 copy_from_xfs_dqblk_ts(const struct fs_disk_quota *d,
539 __s32 timer, __s8 timer_hi)
540{
541 if (d->d_fieldmask & FS_DQ_BIGTIME)
542 return (u32)timer | (s64)timer_hi << 32;
543 return timer;
544}
545
Jan Kara14bf61f2014-10-09 16:03:13 +0200546static void copy_from_xfs_dqblk(struct qc_dqblk *dst, struct fs_disk_quota *src)
547{
548 dst->d_spc_hardlimit = quota_bbtob(src->d_blk_hardlimit);
549 dst->d_spc_softlimit = quota_bbtob(src->d_blk_softlimit);
550 dst->d_ino_hardlimit = src->d_ino_hardlimit;
551 dst->d_ino_softlimit = src->d_ino_softlimit;
552 dst->d_space = quota_bbtob(src->d_bcount);
553 dst->d_ino_count = src->d_icount;
Darrick J. Wongad47ff332020-09-09 09:34:13 -0700554 dst->d_ino_timer = copy_from_xfs_dqblk_ts(src, src->d_itimer,
555 src->d_itimer_hi);
556 dst->d_spc_timer = copy_from_xfs_dqblk_ts(src, src->d_btimer,
557 src->d_btimer_hi);
Jan Kara14bf61f2014-10-09 16:03:13 +0200558 dst->d_ino_warns = src->d_iwarns;
559 dst->d_spc_warns = src->d_bwarns;
560 dst->d_rt_spc_hardlimit = quota_bbtob(src->d_rtb_hardlimit);
561 dst->d_rt_spc_softlimit = quota_bbtob(src->d_rtb_softlimit);
562 dst->d_rt_space = quota_bbtob(src->d_rtbcount);
Darrick J. Wongad47ff332020-09-09 09:34:13 -0700563 dst->d_rt_spc_timer = copy_from_xfs_dqblk_ts(src, src->d_rtbtimer,
564 src->d_rtbtimer_hi);
Jan Kara14bf61f2014-10-09 16:03:13 +0200565 dst->d_rt_spc_warns = src->d_rtbwarns;
566 dst->d_fieldmask = 0;
567 if (src->d_fieldmask & FS_DQ_ISOFT)
568 dst->d_fieldmask |= QC_INO_SOFT;
569 if (src->d_fieldmask & FS_DQ_IHARD)
570 dst->d_fieldmask |= QC_INO_HARD;
571 if (src->d_fieldmask & FS_DQ_BSOFT)
572 dst->d_fieldmask |= QC_SPC_SOFT;
573 if (src->d_fieldmask & FS_DQ_BHARD)
574 dst->d_fieldmask |= QC_SPC_HARD;
575 if (src->d_fieldmask & FS_DQ_RTBSOFT)
576 dst->d_fieldmask |= QC_RT_SPC_SOFT;
577 if (src->d_fieldmask & FS_DQ_RTBHARD)
578 dst->d_fieldmask |= QC_RT_SPC_HARD;
579 if (src->d_fieldmask & FS_DQ_BTIMER)
580 dst->d_fieldmask |= QC_SPC_TIMER;
581 if (src->d_fieldmask & FS_DQ_ITIMER)
582 dst->d_fieldmask |= QC_INO_TIMER;
583 if (src->d_fieldmask & FS_DQ_RTBTIMER)
584 dst->d_fieldmask |= QC_RT_SPC_TIMER;
585 if (src->d_fieldmask & FS_DQ_BWARNS)
586 dst->d_fieldmask |= QC_SPC_WARNS;
587 if (src->d_fieldmask & FS_DQ_IWARNS)
588 dst->d_fieldmask |= QC_INO_WARNS;
589 if (src->d_fieldmask & FS_DQ_RTBWARNS)
590 dst->d_fieldmask |= QC_RT_SPC_WARNS;
591 if (src->d_fieldmask & FS_DQ_BCOUNT)
592 dst->d_fieldmask |= QC_SPACE;
593 if (src->d_fieldmask & FS_DQ_ICOUNT)
594 dst->d_fieldmask |= QC_INO_COUNT;
595 if (src->d_fieldmask & FS_DQ_RTBCOUNT)
596 dst->d_fieldmask |= QC_RT_SPACE;
597}
598
Jan Karac39fb532014-12-16 16:12:27 +0100599static void copy_qcinfo_from_xfs_dqblk(struct qc_info *dst,
600 struct fs_disk_quota *src)
601{
602 memset(dst, 0, sizeof(*dst));
603 dst->i_spc_timelimit = src->d_btimer;
604 dst->i_ino_timelimit = src->d_itimer;
605 dst->i_rt_spc_timelimit = src->d_rtbtimer;
606 dst->i_ino_warnlimit = src->d_iwarns;
607 dst->i_spc_warnlimit = src->d_bwarns;
608 dst->i_rt_spc_warnlimit = src->d_rtbwarns;
609 if (src->d_fieldmask & FS_DQ_BWARNS)
610 dst->i_fieldmask |= QC_SPC_WARNS;
611 if (src->d_fieldmask & FS_DQ_IWARNS)
612 dst->i_fieldmask |= QC_INO_WARNS;
613 if (src->d_fieldmask & FS_DQ_RTBWARNS)
614 dst->i_fieldmask |= QC_RT_SPC_WARNS;
615 if (src->d_fieldmask & FS_DQ_BTIMER)
616 dst->i_fieldmask |= QC_SPC_TIMER;
617 if (src->d_fieldmask & FS_DQ_ITIMER)
618 dst->i_fieldmask |= QC_INO_TIMER;
619 if (src->d_fieldmask & FS_DQ_RTBTIMER)
620 dst->i_fieldmask |= QC_RT_SPC_TIMER;
621}
622
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500623static int quota_setxquota(struct super_block *sb, int type, qid_t id,
624 void __user *addr)
625{
626 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200627 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700628 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500629
630 if (copy_from_user(&fdq, addr, sizeof(fdq)))
631 return -EFAULT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400632 if (!sb->s_qcop->set_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500633 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700634 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500635 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700636 return -EINVAL;
Jan Karac39fb532014-12-16 16:12:27 +0100637 /* Are we actually setting timer / warning limits for all users? */
Eric W. Biedermancfd4c702016-07-05 11:10:57 -0500638 if (from_kqid(sb->s_user_ns, qid) == 0 &&
Jan Karac39fb532014-12-16 16:12:27 +0100639 fdq.d_fieldmask & (FS_DQ_WARNS_MASK | FS_DQ_TIMER_MASK)) {
640 struct qc_info qinfo;
641 int ret;
642
643 if (!sb->s_qcop->set_info)
644 return -EINVAL;
645 copy_qcinfo_from_xfs_dqblk(&qinfo, &fdq);
646 ret = sb->s_qcop->set_info(sb, type, &qinfo);
647 if (ret)
648 return ret;
649 /* These are already done */
650 fdq.d_fieldmask &= ~(FS_DQ_WARNS_MASK | FS_DQ_TIMER_MASK);
651 }
Jan Kara14bf61f2014-10-09 16:03:13 +0200652 copy_from_xfs_dqblk(&qdq, &fdq);
653 return sb->s_qcop->set_dqblk(sb, qid, &qdq);
654}
655
Darrick J. Wongad47ff332020-09-09 09:34:13 -0700656static inline void copy_to_xfs_dqblk_ts(const struct fs_disk_quota *d,
657 __s32 *timer_lo, __s8 *timer_hi, s64 timer)
658{
659 *timer_lo = timer;
660 if (d->d_fieldmask & FS_DQ_BIGTIME)
661 *timer_hi = timer >> 32;
662}
663
664static inline bool want_bigtime(s64 timer)
665{
666 return timer > S32_MAX || timer < S32_MIN;
667}
668
Jan Kara14bf61f2014-10-09 16:03:13 +0200669static void copy_to_xfs_dqblk(struct fs_disk_quota *dst, struct qc_dqblk *src,
670 int type, qid_t id)
671{
672 memset(dst, 0, sizeof(*dst));
Darrick J. Wongad47ff332020-09-09 09:34:13 -0700673 if (want_bigtime(src->d_ino_timer) || want_bigtime(src->d_spc_timer) ||
674 want_bigtime(src->d_rt_spc_timer))
675 dst->d_fieldmask |= FS_DQ_BIGTIME;
Jan Kara14bf61f2014-10-09 16:03:13 +0200676 dst->d_version = FS_DQUOT_VERSION;
677 dst->d_id = id;
678 if (type == USRQUOTA)
679 dst->d_flags = FS_USER_QUOTA;
680 else if (type == PRJQUOTA)
681 dst->d_flags = FS_PROJ_QUOTA;
682 else
683 dst->d_flags = FS_GROUP_QUOTA;
684 dst->d_blk_hardlimit = quota_btobb(src->d_spc_hardlimit);
685 dst->d_blk_softlimit = quota_btobb(src->d_spc_softlimit);
686 dst->d_ino_hardlimit = src->d_ino_hardlimit;
687 dst->d_ino_softlimit = src->d_ino_softlimit;
688 dst->d_bcount = quota_btobb(src->d_space);
689 dst->d_icount = src->d_ino_count;
Darrick J. Wongad47ff332020-09-09 09:34:13 -0700690 copy_to_xfs_dqblk_ts(dst, &dst->d_itimer, &dst->d_itimer_hi,
691 src->d_ino_timer);
692 copy_to_xfs_dqblk_ts(dst, &dst->d_btimer, &dst->d_btimer_hi,
693 src->d_spc_timer);
Jan Kara14bf61f2014-10-09 16:03:13 +0200694 dst->d_iwarns = src->d_ino_warns;
695 dst->d_bwarns = src->d_spc_warns;
696 dst->d_rtb_hardlimit = quota_btobb(src->d_rt_spc_hardlimit);
697 dst->d_rtb_softlimit = quota_btobb(src->d_rt_spc_softlimit);
698 dst->d_rtbcount = quota_btobb(src->d_rt_space);
Darrick J. Wongad47ff332020-09-09 09:34:13 -0700699 copy_to_xfs_dqblk_ts(dst, &dst->d_rtbtimer, &dst->d_rtbtimer_hi,
700 src->d_rt_spc_timer);
Jan Kara14bf61f2014-10-09 16:03:13 +0200701 dst->d_rtbwarns = src->d_rt_spc_warns;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500702}
703
704static int quota_getxquota(struct super_block *sb, int type, qid_t id,
705 void __user *addr)
706{
707 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200708 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700709 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500710 int ret;
711
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400712 if (!sb->s_qcop->get_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500713 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700714 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500715 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700716 return -EINVAL;
Jan Kara14bf61f2014-10-09 16:03:13 +0200717 ret = sb->s_qcop->get_dqblk(sb, qid, &qdq);
718 if (ret)
719 return ret;
720 copy_to_xfs_dqblk(&fdq, &qdq, type, id);
721 if (copy_to_user(addr, &fdq, sizeof(fdq)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500722 return -EFAULT;
723 return ret;
724}
725
Eric Sandeen8b375242016-02-08 11:21:50 +1100726/*
727 * Return quota for next active quota >= this id, if any exists,
Eric Sandeenba581482016-01-22 12:25:32 -0600728 * otherwise return -ENOENT via ->get_nextdqblk.
Eric Sandeen8b375242016-02-08 11:21:50 +1100729 */
730static int quota_getnextxquota(struct super_block *sb, int type, qid_t id,
731 void __user *addr)
732{
733 struct fs_disk_quota fdq;
734 struct qc_dqblk qdq;
735 struct kqid qid;
736 qid_t id_out;
737 int ret;
738
739 if (!sb->s_qcop->get_nextdqblk)
740 return -ENOSYS;
741 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500742 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric Sandeen8b375242016-02-08 11:21:50 +1100743 return -EINVAL;
744 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &qdq);
745 if (ret)
746 return ret;
747 id_out = from_kqid(current_user_ns(), qid);
748 copy_to_xfs_dqblk(&fdq, &qdq, type, id_out);
749 if (copy_to_user(addr, &fdq, sizeof(fdq)))
750 return -EFAULT;
751 return ret;
752}
753
Eric Sandeen9da93f92014-05-05 17:25:50 +1000754static int quota_rmxquota(struct super_block *sb, void __user *addr)
755{
756 __u32 flags;
757
758 if (copy_from_user(&flags, addr, sizeof(flags)))
759 return -EFAULT;
760 if (!sb->s_qcop->rm_xquota)
761 return -ENOSYS;
762 return sb->s_qcop->rm_xquota(sb, flags);
763}
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765/* Copy parameters and call proper function */
Jan Kara268157b2009-01-27 15:47:22 +0100766static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id,
Al Viro8c54ca92016-11-20 19:49:34 -0500767 void __user *addr, const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500769 int ret;
770
Jeremy Cline7b6924d2018-07-31 01:37:31 +0000771 type = array_index_nospec(type, MAXQUOTAS);
Jan Kara2c5f6482014-09-30 10:43:09 +0200772 /*
773 * Quota not supported on this fs? Check this before s_quota_types
774 * since they needn't be set if quota is not supported at all.
775 */
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500776 if (!sb->s_qcop)
777 return -ENOSYS;
Jan Kara2c5f6482014-09-30 10:43:09 +0200778 if (!(sb->s_quota_types & (1 << type)))
779 return -EINVAL;
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500780
781 ret = check_quotactl_permission(sb, type, cmd, id);
782 if (ret < 0)
783 return ret;
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 switch (cmd) {
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500786 case Q_QUOTAON:
Eric Sandeen3218a3e2016-02-08 11:21:24 +1100787 return quota_quotaon(sb, type, id, path);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500788 case Q_QUOTAOFF:
Jan Karad3b86322014-10-08 16:07:12 +0200789 return quota_quotaoff(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500790 case Q_GETFMT:
791 return quota_getfmt(sb, type, addr);
792 case Q_GETINFO:
793 return quota_getinfo(sb, type, addr);
794 case Q_SETINFO:
795 return quota_setinfo(sb, type, addr);
796 case Q_GETQUOTA:
797 return quota_getquota(sb, type, id, addr);
Eric Sandeen926132c2016-02-08 11:22:21 +1100798 case Q_GETNEXTQUOTA:
799 return quota_getnextquota(sb, type, id, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500800 case Q_SETQUOTA:
801 return quota_setquota(sb, type, id, addr);
802 case Q_SYNC:
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500803 if (!sb->s_qcop->quota_sync)
804 return -ENOSYS;
Jan Karaceed1722012-07-03 16:45:28 +0200805 return sb->s_qcop->quota_sync(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500806 case Q_XQUOTAON:
Jan Kara38e478c2014-10-08 15:56:21 +0200807 return quota_enable(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500808 case Q_XQUOTAOFF:
Jan Kara38e478c2014-10-08 15:56:21 +0200809 return quota_disable(sb, addr);
Eric Sandeen9da93f92014-05-05 17:25:50 +1000810 case Q_XQUOTARM:
811 return quota_rmxquota(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500812 case Q_XGETQSTAT:
Eric Sandeen555b2c32019-06-21 18:27:13 -0500813 return quota_getxstate(sb, type, addr);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500814 case Q_XGETQSTATV:
Eric Sandeen555b2c32019-06-21 18:27:13 -0500815 return quota_getxstatev(sb, type, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500816 case Q_XSETQLIM:
817 return quota_setxquota(sb, type, id, addr);
818 case Q_XGETQUOTA:
819 return quota_getxquota(sb, type, id, addr);
Eric Sandeen8b375242016-02-08 11:21:50 +1100820 case Q_XGETNEXTQUOTA:
821 return quota_getnextxquota(sb, type, id, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500822 case Q_XQUOTASYNC:
David Howellsbc98a422017-07-17 08:45:34 +0100823 if (sb_rdonly(sb))
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500824 return -EROFS;
Christoph Hellwig4b217ed2012-02-20 02:28:18 +0000825 /* XFS quotas are fully coherent now, making this call a noop */
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500826 return 0;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500827 default:
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500828 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
Jan Karadcdbed82012-02-10 11:03:01 +0100832/* Return 1 if 'cmd' will block on frozen filesystem */
833static int quotactl_cmd_write(int cmd)
834{
Jan Karaccf370e2016-02-18 14:03:03 +0100835 /*
836 * We cannot allow Q_GETQUOTA and Q_GETNEXTQUOTA without write access
837 * as dquot_acquire() may allocate space for new structure and OCFS2
838 * needs to increment on-disk use count.
839 */
Jan Karadcdbed82012-02-10 11:03:01 +0100840 switch (cmd) {
841 case Q_GETFMT:
842 case Q_GETINFO:
843 case Q_SYNC:
844 case Q_XGETQSTAT:
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500845 case Q_XGETQSTATV:
Jan Karadcdbed82012-02-10 11:03:01 +0100846 case Q_XGETQUOTA:
Eric Sandeen8b375242016-02-08 11:21:50 +1100847 case Q_XGETNEXTQUOTA:
Jan Karadcdbed82012-02-10 11:03:01 +0100848 case Q_XQUOTASYNC:
849 return 0;
850 }
851 return 1;
852}
Lee Jones56df1272012-11-03 23:02:28 +0100853
Jan Kara7d6cd732016-11-23 13:16:10 +0100854/* Return true if quotactl command is manipulating quota on/off state */
855static bool quotactl_cmd_onoff(int cmd)
856{
Javier Barrio41c4f852018-12-13 01:06:29 +0100857 return (cmd == Q_QUOTAON) || (cmd == Q_QUOTAOFF) ||
858 (cmd == Q_XQUOTAON) || (cmd == Q_XQUOTAOFF);
Jan Kara7d6cd732016-11-23 13:16:10 +0100859}
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861/*
David Howells93614012006-09-30 20:45:40 +0200862 * look up a superblock on which quota ops will be performed
863 * - use the name of a block device to find the superblock thereon
864 */
Jan Karadcdbed82012-02-10 11:03:01 +0100865static struct super_block *quotactl_block(const char __user *special, int cmd)
David Howells93614012006-09-30 20:45:40 +0200866{
867#ifdef CONFIG_BLOCK
David Howells93614012006-09-30 20:45:40 +0200868 struct super_block *sb;
Jeff Layton91a27b22012-10-10 15:25:28 -0400869 struct filename *tmp = getname(special);
Christoph Hellwig60b49882020-11-16 15:21:18 +0100870 bool excl = false, thawed = false;
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100871 int error;
872 dev_t dev;
David Howells93614012006-09-30 20:45:40 +0200873
874 if (IS_ERR(tmp))
David Howellse231c2e2008-02-07 00:15:26 -0800875 return ERR_CAST(tmp);
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100876 error = lookup_bdev(tmp->name, &dev);
David Howells93614012006-09-30 20:45:40 +0200877 putname(tmp);
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100878 if (error)
879 return ERR_PTR(error);
Christoph Hellwig60b49882020-11-16 15:21:18 +0100880
881 if (quotactl_cmd_onoff(cmd)) {
882 excl = true;
883 thawed = true;
884 } else if (quotactl_cmd_write(cmd)) {
885 thawed = true;
886 }
887
888retry:
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100889 sb = user_get_super(dev, excl);
890 if (!sb)
891 return ERR_PTR(-ENODEV);
892 if (thawed && sb->s_writers.frozen != SB_UNFROZEN) {
Christoph Hellwig60b49882020-11-16 15:21:18 +0100893 if (excl)
894 up_write(&sb->s_umount);
895 else
896 up_read(&sb->s_umount);
897 wait_event(sb->s_writers.wait_unfrozen,
898 sb->s_writers.frozen == SB_UNFROZEN);
899 put_super(sb);
900 goto retry;
901 }
David Howells93614012006-09-30 20:45:40 +0200902 return sb;
Christoph Hellwig60b49882020-11-16 15:21:18 +0100903
David Howells93614012006-09-30 20:45:40 +0200904#else
905 return ERR_PTR(-ENODEV);
906#endif
907}
908
909/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 * This is the system call interface. This communicates with
911 * the user-level programs. Currently this only supports diskquota
912 * calls. Maybe we need to add the process quotas etc. in the future,
913 * but we probably should use rlimits for that.
914 */
Christoph Hellwig80bdad32020-09-17 09:41:59 +0200915SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special,
916 qid_t, id, void __user *, addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
918 uint cmds, type;
919 struct super_block *sb = NULL;
Jan Karaf00c9e42010-09-15 17:38:58 +0200920 struct path path, *pathp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 int ret;
922
923 cmds = cmd >> SUBCMDSHIFT;
924 type = cmd & SUBCMDMASK;
925
Chengguang Xua6810312019-10-08 22:50:59 +0800926 if (type >= MAXQUOTAS)
927 return -EINVAL;
928
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500929 /*
930 * As a special case Q_SYNC can be called without a specific device.
931 * It will iterate all superblocks that have quota enabled and call
932 * the sync action on each of them.
933 */
934 if (!special) {
935 if (cmds == Q_SYNC)
936 return quota_sync_all(type);
937 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
939
Jan Karaf00c9e42010-09-15 17:38:58 +0200940 /*
941 * Path for quotaon has to be resolved before grabbing superblock
942 * because that gets s_umount sem which is also possibly needed by path
943 * resolution (think about autofs) and thus deadlocks could arise.
944 */
945 if (cmds == Q_QUOTAON) {
Trond Myklebust815d4052011-09-26 20:36:09 -0400946 ret = user_path_at(AT_FDCWD, addr, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
Jan Karaf00c9e42010-09-15 17:38:58 +0200947 if (ret)
948 pathp = ERR_PTR(ret);
949 else
950 pathp = &path;
951 }
952
Jan Karadcdbed82012-02-10 11:03:01 +0100953 sb = quotactl_block(special, cmds);
Jan Kara0aaa6182011-10-10 18:32:06 +0200954 if (IS_ERR(sb)) {
955 ret = PTR_ERR(sb);
956 goto out;
957 }
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500958
Jan Karaf00c9e42010-09-15 17:38:58 +0200959 ret = do_quotactl(sb, type, cmds, id, addr, pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Jan Kara7d6cd732016-11-23 13:16:10 +0100961 if (!quotactl_cmd_onoff(cmds))
962 drop_super(sb);
963 else
964 drop_super_exclusive(sb);
Jan Kara0aaa6182011-10-10 18:32:06 +0200965out:
Jan Karaf00c9e42010-09-15 17:38:58 +0200966 if (pathp && !IS_ERR(pathp))
967 path_put(pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return ret;
969}
Sascha Hauer9dfa23c2021-03-04 13:35:39 +0100970
971SYSCALL_DEFINE4(quotactl_path, unsigned int, cmd, const char __user *,
972 mountpoint, qid_t, id, void __user *, addr)
973{
974 struct super_block *sb;
975 struct path mountpath;
976 unsigned int cmds = cmd >> SUBCMDSHIFT;
977 unsigned int type = cmd & SUBCMDMASK;
978 int ret;
979
980 if (type >= MAXQUOTAS)
981 return -EINVAL;
982
983 ret = user_path_at(AT_FDCWD, mountpoint,
984 LOOKUP_FOLLOW | LOOKUP_AUTOMOUNT, &mountpath);
985 if (ret)
986 return ret;
987
988 sb = mountpath.mnt->mnt_sb;
989
990 if (quotactl_cmd_write(cmds)) {
991 ret = mnt_want_write(mountpath.mnt);
992 if (ret)
993 goto out;
994 }
995
996 if (quotactl_cmd_onoff(cmds))
997 down_write(&sb->s_umount);
998 else
999 down_read(&sb->s_umount);
1000
1001 ret = do_quotactl(sb, type, cmds, id, addr, ERR_PTR(-EINVAL));
1002
1003 if (quotactl_cmd_onoff(cmds))
1004 up_write(&sb->s_umount);
1005 else
1006 up_read(&sb->s_umount);
1007
1008 if (quotactl_cmd_write(cmds))
1009 mnt_drop_write(mountpath.mnt);
1010out:
1011 path_put(&mountpath);
1012
1013 return ret;
1014}