blob: 5444d3c4d93f37e52827fb895db162848ea6c8cb [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>
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -050020#include <linux/writeback.h>
Jeremy Cline7b6924d2018-07-31 01:37:31 +000021#include <linux/nospec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Christoph Hellwigc988afb2010-02-16 03:44:50 -050023static int check_quotactl_permission(struct super_block *sb, int type, int cmd,
24 qid_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
Christoph Hellwigc988afb2010-02-16 03:44:50 -050026 switch (cmd) {
27 /* these commands do not require any special privilegues */
28 case Q_GETFMT:
29 case Q_SYNC:
30 case Q_GETINFO:
31 case Q_XGETQSTAT:
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -050032 case Q_XGETQSTATV:
Christoph Hellwigc988afb2010-02-16 03:44:50 -050033 case Q_XQUOTASYNC:
34 break;
35 /* allow to query information for dquots we "own" */
36 case Q_GETQUOTA:
37 case Q_XGETQUOTA:
Eric W. Biederman74a8a102012-09-16 02:07:49 -070038 if ((type == USRQUOTA && uid_eq(current_euid(), make_kuid(current_user_ns(), id))) ||
39 (type == GRPQUOTA && in_egroup_p(make_kgid(current_user_ns(), id))))
Christoph Hellwigc988afb2010-02-16 03:44:50 -050040 break;
41 /*FALLTHROUGH*/
42 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 if (!capable(CAP_SYS_ADMIN))
44 return -EPERM;
45 }
46
Christoph Hellwigc988afb2010-02-16 03:44:50 -050047 return security_quotactl(cmd, type, id, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048}
49
Al Viro01a05b32010-03-23 06:06:58 -040050static void quota_sync_one(struct super_block *sb, void *arg)
51{
Jan Kara2c5f6482014-09-30 10:43:09 +020052 int type = *(int *)arg;
53
54 if (sb->s_qcop && sb->s_qcop->quota_sync &&
55 (sb->s_quota_types & (1 << type)))
56 sb->s_qcop->quota_sync(sb, type);
Al Viro01a05b32010-03-23 06:06:58 -040057}
58
Christoph Hellwig6ae09572010-02-16 03:44:49 -050059static int quota_sync_all(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Christoph Hellwig6ae09572010-02-16 03:44:49 -050061 int ret;
62
Christoph Hellwig6ae09572010-02-16 03:44:49 -050063 ret = security_quotactl(Q_SYNC, type, 0, NULL);
Al Viro01a05b32010-03-23 06:06:58 -040064 if (!ret)
65 iterate_supers(quota_sync_one, &type);
66 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
Jan Karad3b86322014-10-08 16:07:12 +020069unsigned int qtype_enforce_flag(int type)
70{
71 switch (type) {
72 case USRQUOTA:
73 return FS_QUOTA_UDQ_ENFD;
74 case GRPQUOTA:
75 return FS_QUOTA_GDQ_ENFD;
76 case PRJQUOTA:
77 return FS_QUOTA_PDQ_ENFD;
78 }
79 return 0;
80}
81
Eric Sandeen3218a3e2016-02-08 11:21:24 +110082static int quota_quotaon(struct super_block *sb, int type, qid_t id,
Al Viro8c54ca92016-11-20 19:49:34 -050083 const struct path *path)
Christoph Hellwigc411e5f2010-02-16 03:44:47 -050084{
Jan Karaaaa3dae2014-10-08 18:35:31 +020085 if (!sb->s_qcop->quota_on && !sb->s_qcop->quota_enable)
Jan Karaf00c9e42010-09-15 17:38:58 +020086 return -ENOSYS;
Jan Karad3b86322014-10-08 16:07:12 +020087 if (sb->s_qcop->quota_enable)
88 return sb->s_qcop->quota_enable(sb, qtype_enforce_flag(type));
Jan Karaf00c9e42010-09-15 17:38:58 +020089 if (IS_ERR(path))
90 return PTR_ERR(path);
91 return sb->s_qcop->quota_on(sb, type, id, path);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -050092}
93
Jan Karad3b86322014-10-08 16:07:12 +020094static int quota_quotaoff(struct super_block *sb, int type)
95{
96 if (!sb->s_qcop->quota_off && !sb->s_qcop->quota_disable)
97 return -ENOSYS;
98 if (sb->s_qcop->quota_disable)
99 return sb->s_qcop->quota_disable(sb, qtype_enforce_flag(type));
100 return sb->s_qcop->quota_off(sb, type);
101}
102
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500103static int quota_getfmt(struct super_block *sb, int type, void __user *addr)
104{
105 __u32 fmt;
106
Jan Kara9d1ccbe2016-11-23 13:35:14 +0100107 if (!sb_has_quota_active(sb, type))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500108 return -ESRCH;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500109 fmt = sb_dqopt(sb)->info[type].dqi_format->qf_fmt_id;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500110 if (copy_to_user(addr, &fmt, sizeof(fmt)))
111 return -EFAULT;
112 return 0;
113}
114
115static int quota_getinfo(struct super_block *sb, int type, void __user *addr)
116{
Jan Kara0a2403392014-11-19 00:42:09 +0100117 struct qc_state state;
118 struct qc_type_state *tstate;
119 struct if_dqinfo uinfo;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500120 int ret;
121
Jan Kara0a2403392014-11-19 00:42:09 +0100122 if (!sb->s_qcop->get_state)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500123 return -ENOSYS;
Jan Kara0a2403392014-11-19 00:42:09 +0100124 ret = sb->s_qcop->get_state(sb, &state);
125 if (ret)
126 return ret;
127 tstate = state.s_state + type;
128 if (!(tstate->flags & QCI_ACCT_ENABLED))
129 return -ESRCH;
130 memset(&uinfo, 0, sizeof(uinfo));
131 uinfo.dqi_bgrace = tstate->spc_timelimit;
132 uinfo.dqi_igrace = tstate->ino_timelimit;
133 if (tstate->flags & QCI_SYSFILE)
134 uinfo.dqi_flags |= DQF_SYS_FILE;
135 if (tstate->flags & QCI_ROOT_SQUASH)
136 uinfo.dqi_flags |= DQF_ROOT_SQUASH;
137 uinfo.dqi_valid = IIF_ALL;
Dan Carpenter72d4d0e2015-08-11 00:29:55 +0300138 if (copy_to_user(addr, &uinfo, sizeof(uinfo)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500139 return -EFAULT;
Dan Carpenter72d4d0e2015-08-11 00:29:55 +0300140 return 0;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500141}
142
143static int quota_setinfo(struct super_block *sb, int type, void __user *addr)
144{
145 struct if_dqinfo info;
Jan Kara5eacb2a2014-12-16 12:03:51 +0100146 struct qc_info qinfo;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500147
148 if (copy_from_user(&info, addr, sizeof(info)))
149 return -EFAULT;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500150 if (!sb->s_qcop->set_info)
151 return -ENOSYS;
Jan Kara5eacb2a2014-12-16 12:03:51 +0100152 if (info.dqi_valid & ~(IIF_FLAGS | IIF_BGRACE | IIF_IGRACE))
153 return -EINVAL;
154 memset(&qinfo, 0, sizeof(qinfo));
155 if (info.dqi_valid & IIF_FLAGS) {
156 if (info.dqi_flags & ~DQF_SETINFO_MASK)
157 return -EINVAL;
158 if (info.dqi_flags & DQF_ROOT_SQUASH)
159 qinfo.i_flags |= QCI_ROOT_SQUASH;
160 qinfo.i_fieldmask |= QC_FLAGS;
161 }
162 if (info.dqi_valid & IIF_BGRACE) {
163 qinfo.i_spc_timelimit = info.dqi_bgrace;
164 qinfo.i_fieldmask |= QC_SPC_TIMER;
165 }
166 if (info.dqi_valid & IIF_IGRACE) {
167 qinfo.i_ino_timelimit = info.dqi_igrace;
168 qinfo.i_fieldmask |= QC_INO_TIMER;
169 }
170 return sb->s_qcop->set_info(sb, type, &qinfo);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500171}
172
Jan Kara14bf61f2014-10-09 16:03:13 +0200173static inline qsize_t qbtos(qsize_t blocks)
174{
175 return blocks << QIF_DQBLKSIZE_BITS;
176}
177
178static inline qsize_t stoqb(qsize_t space)
179{
180 return (space + QIF_DQBLKSIZE - 1) >> QIF_DQBLKSIZE_BITS;
181}
182
183static void copy_to_if_dqblk(struct if_dqblk *dst, struct qc_dqblk *src)
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400184{
Dan Carpenter18da65e2013-11-01 13:21:54 +0300185 memset(dst, 0, sizeof(*dst));
Jan Kara14bf61f2014-10-09 16:03:13 +0200186 dst->dqb_bhardlimit = stoqb(src->d_spc_hardlimit);
187 dst->dqb_bsoftlimit = stoqb(src->d_spc_softlimit);
188 dst->dqb_curspace = src->d_space;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400189 dst->dqb_ihardlimit = src->d_ino_hardlimit;
190 dst->dqb_isoftlimit = src->d_ino_softlimit;
Jan Kara14bf61f2014-10-09 16:03:13 +0200191 dst->dqb_curinodes = src->d_ino_count;
192 dst->dqb_btime = src->d_spc_timer;
193 dst->dqb_itime = src->d_ino_timer;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400194 dst->dqb_valid = QIF_ALL;
195}
196
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500197static int quota_getquota(struct super_block *sb, int type, qid_t id,
198 void __user *addr)
199{
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700200 struct kqid qid;
Jan Kara14bf61f2014-10-09 16:03:13 +0200201 struct qc_dqblk fdq;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500202 struct if_dqblk idq;
203 int ret;
204
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500205 if (!sb->s_qcop->get_dqblk)
206 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700207 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500208 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700209 return -EINVAL;
210 ret = sb->s_qcop->get_dqblk(sb, qid, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500211 if (ret)
212 return ret;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400213 copy_to_if_dqblk(&idq, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500214 if (copy_to_user(addr, &idq, sizeof(idq)))
215 return -EFAULT;
216 return 0;
217}
218
Eric Sandeen926132c2016-02-08 11:22:21 +1100219/*
220 * Return quota for next active quota >= this id, if any exists,
Eric Sandeenba581482016-01-22 12:25:32 -0600221 * otherwise return -ENOENT via ->get_nextdqblk
Eric Sandeen926132c2016-02-08 11:22:21 +1100222 */
223static int quota_getnextquota(struct super_block *sb, int type, qid_t id,
224 void __user *addr)
225{
226 struct kqid qid;
227 struct qc_dqblk fdq;
228 struct if_nextdqblk idq;
229 int ret;
230
231 if (!sb->s_qcop->get_nextdqblk)
232 return -ENOSYS;
233 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500234 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric Sandeen926132c2016-02-08 11:22:21 +1100235 return -EINVAL;
236 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &fdq);
237 if (ret)
238 return ret;
239 /* struct if_nextdqblk is a superset of struct if_dqblk */
240 copy_to_if_dqblk((struct if_dqblk *)&idq, &fdq);
241 idq.dqb_id = from_kqid(current_user_ns(), qid);
242 if (copy_to_user(addr, &idq, sizeof(idq)))
243 return -EFAULT;
244 return 0;
245}
246
Jan Kara14bf61f2014-10-09 16:03:13 +0200247static void copy_from_if_dqblk(struct qc_dqblk *dst, struct if_dqblk *src)
Christoph Hellwigc472b432010-05-06 17:05:17 -0400248{
Jan Kara14bf61f2014-10-09 16:03:13 +0200249 dst->d_spc_hardlimit = qbtos(src->dqb_bhardlimit);
250 dst->d_spc_softlimit = qbtos(src->dqb_bsoftlimit);
251 dst->d_space = src->dqb_curspace;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400252 dst->d_ino_hardlimit = src->dqb_ihardlimit;
253 dst->d_ino_softlimit = src->dqb_isoftlimit;
Jan Kara14bf61f2014-10-09 16:03:13 +0200254 dst->d_ino_count = src->dqb_curinodes;
255 dst->d_spc_timer = src->dqb_btime;
256 dst->d_ino_timer = src->dqb_itime;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400257
258 dst->d_fieldmask = 0;
259 if (src->dqb_valid & QIF_BLIMITS)
Jan Kara14bf61f2014-10-09 16:03:13 +0200260 dst->d_fieldmask |= QC_SPC_SOFT | QC_SPC_HARD;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400261 if (src->dqb_valid & QIF_SPACE)
Jan Kara14bf61f2014-10-09 16:03:13 +0200262 dst->d_fieldmask |= QC_SPACE;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400263 if (src->dqb_valid & QIF_ILIMITS)
Jan Kara14bf61f2014-10-09 16:03:13 +0200264 dst->d_fieldmask |= QC_INO_SOFT | QC_INO_HARD;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400265 if (src->dqb_valid & QIF_INODES)
Jan Kara14bf61f2014-10-09 16:03:13 +0200266 dst->d_fieldmask |= QC_INO_COUNT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400267 if (src->dqb_valid & QIF_BTIME)
Jan Kara14bf61f2014-10-09 16:03:13 +0200268 dst->d_fieldmask |= QC_SPC_TIMER;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400269 if (src->dqb_valid & QIF_ITIME)
Jan Kara14bf61f2014-10-09 16:03:13 +0200270 dst->d_fieldmask |= QC_INO_TIMER;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400271}
272
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500273static int quota_setquota(struct super_block *sb, int type, qid_t id,
274 void __user *addr)
275{
Jan Kara14bf61f2014-10-09 16:03:13 +0200276 struct qc_dqblk fdq;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500277 struct if_dqblk idq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700278 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500279
280 if (copy_from_user(&idq, addr, sizeof(idq)))
281 return -EFAULT;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500282 if (!sb->s_qcop->set_dqblk)
283 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700284 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500285 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700286 return -EINVAL;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400287 copy_from_if_dqblk(&fdq, &idq);
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700288 return sb->s_qcop->set_dqblk(sb, qid, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500289}
290
Jan Kara38e478c2014-10-08 15:56:21 +0200291static int quota_enable(struct super_block *sb, void __user *addr)
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500292{
293 __u32 flags;
294
295 if (copy_from_user(&flags, addr, sizeof(flags)))
296 return -EFAULT;
Jan Kara38e478c2014-10-08 15:56:21 +0200297 if (!sb->s_qcop->quota_enable)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500298 return -ENOSYS;
Jan Kara38e478c2014-10-08 15:56:21 +0200299 return sb->s_qcop->quota_enable(sb, flags);
300}
301
302static int quota_disable(struct super_block *sb, void __user *addr)
303{
304 __u32 flags;
305
306 if (copy_from_user(&flags, addr, sizeof(flags)))
307 return -EFAULT;
308 if (!sb->s_qcop->quota_disable)
309 return -ENOSYS;
310 return sb->s_qcop->quota_disable(sb, flags);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500311}
312
Jan Karabc230e42014-11-19 16:17:45 +0100313static int quota_state_to_flags(struct qc_state *state)
314{
315 int flags = 0;
316
317 if (state->s_state[USRQUOTA].flags & QCI_ACCT_ENABLED)
318 flags |= FS_QUOTA_UDQ_ACCT;
319 if (state->s_state[USRQUOTA].flags & QCI_LIMITS_ENFORCED)
320 flags |= FS_QUOTA_UDQ_ENFD;
321 if (state->s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED)
322 flags |= FS_QUOTA_GDQ_ACCT;
323 if (state->s_state[GRPQUOTA].flags & QCI_LIMITS_ENFORCED)
324 flags |= FS_QUOTA_GDQ_ENFD;
325 if (state->s_state[PRJQUOTA].flags & QCI_ACCT_ENABLED)
326 flags |= FS_QUOTA_PDQ_ACCT;
327 if (state->s_state[PRJQUOTA].flags & QCI_LIMITS_ENFORCED)
328 flags |= FS_QUOTA_PDQ_ENFD;
329 return flags;
330}
331
Eric Sandeen555b2c32019-06-21 18:27:13 -0500332static int quota_getstate(struct super_block *sb, int type,
333 struct fs_quota_stat *fqs)
Jan Karabc230e42014-11-19 16:17:45 +0100334{
Jan Karabc230e42014-11-19 16:17:45 +0100335 struct qc_state state;
336 int ret;
337
Eric Sandeen3cd01262016-08-12 17:40:09 -0500338 memset(&state, 0, sizeof (struct qc_state));
Jan Karabc230e42014-11-19 16:17:45 +0100339 ret = sb->s_qcop->get_state(sb, &state);
340 if (ret < 0)
341 return ret;
342
343 memset(fqs, 0, sizeof(*fqs));
344 fqs->qs_version = FS_QSTAT_VERSION;
345 fqs->qs_flags = quota_state_to_flags(&state);
346 /* No quota enabled? */
347 if (!fqs->qs_flags)
348 return -ENOSYS;
349 fqs->qs_incoredqs = state.s_incoredqs;
Eric Sandeen555b2c32019-06-21 18:27:13 -0500350
Jan Karabc230e42014-11-19 16:17:45 +0100351 fqs->qs_btimelimit = state.s_state[type].spc_timelimit;
352 fqs->qs_itimelimit = state.s_state[type].ino_timelimit;
353 fqs->qs_rtbtimelimit = state.s_state[type].rt_spc_timelimit;
354 fqs->qs_bwarnlimit = state.s_state[type].spc_warnlimit;
355 fqs->qs_iwarnlimit = state.s_state[type].ino_warnlimit;
Eric Sandeen3cd01262016-08-12 17:40:09 -0500356
357 /* Inodes may be allocated even if inactive; copy out if present */
358 if (state.s_state[USRQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100359 fqs->qs_uquota.qfs_ino = state.s_state[USRQUOTA].ino;
360 fqs->qs_uquota.qfs_nblks = state.s_state[USRQUOTA].blocks;
361 fqs->qs_uquota.qfs_nextents = state.s_state[USRQUOTA].nextents;
362 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500363 if (state.s_state[GRPQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100364 fqs->qs_gquota.qfs_ino = state.s_state[GRPQUOTA].ino;
365 fqs->qs_gquota.qfs_nblks = state.s_state[GRPQUOTA].blocks;
366 fqs->qs_gquota.qfs_nextents = state.s_state[GRPQUOTA].nextents;
367 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500368 if (state.s_state[PRJQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100369 /*
370 * Q_XGETQSTAT doesn't have room for both group and project
371 * quotas. So, allow the project quota values to be copied out
372 * only if there is no group quota information available.
373 */
374 if (!(state.s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED)) {
375 fqs->qs_gquota.qfs_ino = state.s_state[PRJQUOTA].ino;
376 fqs->qs_gquota.qfs_nblks =
377 state.s_state[PRJQUOTA].blocks;
378 fqs->qs_gquota.qfs_nextents =
379 state.s_state[PRJQUOTA].nextents;
380 }
381 }
382 return 0;
383}
384
Eric Sandeen555b2c32019-06-21 18:27:13 -0500385static int quota_getxstate(struct super_block *sb, int type, void __user *addr)
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500386{
387 struct fs_quota_stat fqs;
388 int ret;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500389
Jan Kara59b6ba62014-11-19 16:44:58 +0100390 if (!sb->s_qcop->get_state)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500391 return -ENOSYS;
Eric Sandeen555b2c32019-06-21 18:27:13 -0500392 ret = quota_getstate(sb, type, &fqs);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500393 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
394 return -EFAULT;
395 return ret;
396}
397
Eric Sandeen555b2c32019-06-21 18:27:13 -0500398static int quota_getstatev(struct super_block *sb, int type,
399 struct fs_quota_statv *fqs)
Jan Karabc230e42014-11-19 16:17:45 +0100400{
Jan Karabc230e42014-11-19 16:17:45 +0100401 struct qc_state state;
402 int ret;
403
Eric Sandeen3cd01262016-08-12 17:40:09 -0500404 memset(&state, 0, sizeof (struct qc_state));
Jan Karabc230e42014-11-19 16:17:45 +0100405 ret = sb->s_qcop->get_state(sb, &state);
406 if (ret < 0)
407 return ret;
408
409 memset(fqs, 0, sizeof(*fqs));
410 fqs->qs_version = FS_QSTAT_VERSION;
411 fqs->qs_flags = quota_state_to_flags(&state);
412 /* No quota enabled? */
413 if (!fqs->qs_flags)
414 return -ENOSYS;
415 fqs->qs_incoredqs = state.s_incoredqs;
Eric Sandeen555b2c32019-06-21 18:27:13 -0500416
Jan Karabc230e42014-11-19 16:17:45 +0100417 fqs->qs_btimelimit = state.s_state[type].spc_timelimit;
418 fqs->qs_itimelimit = state.s_state[type].ino_timelimit;
419 fqs->qs_rtbtimelimit = state.s_state[type].rt_spc_timelimit;
420 fqs->qs_bwarnlimit = state.s_state[type].spc_warnlimit;
421 fqs->qs_iwarnlimit = state.s_state[type].ino_warnlimit;
Eric Sandeen3cd01262016-08-12 17:40:09 -0500422
423 /* Inodes may be allocated even if inactive; copy out if present */
424 if (state.s_state[USRQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100425 fqs->qs_uquota.qfs_ino = state.s_state[USRQUOTA].ino;
426 fqs->qs_uquota.qfs_nblks = state.s_state[USRQUOTA].blocks;
427 fqs->qs_uquota.qfs_nextents = state.s_state[USRQUOTA].nextents;
428 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500429 if (state.s_state[GRPQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100430 fqs->qs_gquota.qfs_ino = state.s_state[GRPQUOTA].ino;
431 fqs->qs_gquota.qfs_nblks = state.s_state[GRPQUOTA].blocks;
432 fqs->qs_gquota.qfs_nextents = state.s_state[GRPQUOTA].nextents;
433 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500434 if (state.s_state[PRJQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100435 fqs->qs_pquota.qfs_ino = state.s_state[PRJQUOTA].ino;
436 fqs->qs_pquota.qfs_nblks = state.s_state[PRJQUOTA].blocks;
437 fqs->qs_pquota.qfs_nextents = state.s_state[PRJQUOTA].nextents;
438 }
439 return 0;
440}
441
Eric Sandeen555b2c32019-06-21 18:27:13 -0500442static int quota_getxstatev(struct super_block *sb, int type, void __user *addr)
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500443{
444 struct fs_quota_statv fqs;
445 int ret;
446
Jan Kara59b6ba62014-11-19 16:44:58 +0100447 if (!sb->s_qcop->get_state)
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500448 return -ENOSYS;
449
450 memset(&fqs, 0, sizeof(fqs));
451 if (copy_from_user(&fqs, addr, 1)) /* Just read qs_version */
452 return -EFAULT;
453
454 /* If this kernel doesn't support user specified version, fail */
455 switch (fqs.qs_version) {
456 case FS_QSTATV_VERSION1:
457 break;
458 default:
459 return -EINVAL;
460 }
Eric Sandeen555b2c32019-06-21 18:27:13 -0500461 ret = quota_getstatev(sb, type, &fqs);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500462 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
463 return -EFAULT;
464 return ret;
465}
466
Jan Kara14bf61f2014-10-09 16:03:13 +0200467/*
468 * XFS defines BBTOB and BTOBB macros inside fs/xfs/ and we cannot move them
469 * out of there as xfsprogs rely on definitions being in that header file. So
470 * just define same functions here for quota purposes.
471 */
472#define XFS_BB_SHIFT 9
473
474static inline u64 quota_bbtob(u64 blocks)
475{
476 return blocks << XFS_BB_SHIFT;
477}
478
479static inline u64 quota_btobb(u64 bytes)
480{
481 return (bytes + (1 << XFS_BB_SHIFT) - 1) >> XFS_BB_SHIFT;
482}
483
484static void copy_from_xfs_dqblk(struct qc_dqblk *dst, struct fs_disk_quota *src)
485{
486 dst->d_spc_hardlimit = quota_bbtob(src->d_blk_hardlimit);
487 dst->d_spc_softlimit = quota_bbtob(src->d_blk_softlimit);
488 dst->d_ino_hardlimit = src->d_ino_hardlimit;
489 dst->d_ino_softlimit = src->d_ino_softlimit;
490 dst->d_space = quota_bbtob(src->d_bcount);
491 dst->d_ino_count = src->d_icount;
492 dst->d_ino_timer = src->d_itimer;
493 dst->d_spc_timer = src->d_btimer;
494 dst->d_ino_warns = src->d_iwarns;
495 dst->d_spc_warns = src->d_bwarns;
496 dst->d_rt_spc_hardlimit = quota_bbtob(src->d_rtb_hardlimit);
497 dst->d_rt_spc_softlimit = quota_bbtob(src->d_rtb_softlimit);
498 dst->d_rt_space = quota_bbtob(src->d_rtbcount);
499 dst->d_rt_spc_timer = src->d_rtbtimer;
500 dst->d_rt_spc_warns = src->d_rtbwarns;
501 dst->d_fieldmask = 0;
502 if (src->d_fieldmask & FS_DQ_ISOFT)
503 dst->d_fieldmask |= QC_INO_SOFT;
504 if (src->d_fieldmask & FS_DQ_IHARD)
505 dst->d_fieldmask |= QC_INO_HARD;
506 if (src->d_fieldmask & FS_DQ_BSOFT)
507 dst->d_fieldmask |= QC_SPC_SOFT;
508 if (src->d_fieldmask & FS_DQ_BHARD)
509 dst->d_fieldmask |= QC_SPC_HARD;
510 if (src->d_fieldmask & FS_DQ_RTBSOFT)
511 dst->d_fieldmask |= QC_RT_SPC_SOFT;
512 if (src->d_fieldmask & FS_DQ_RTBHARD)
513 dst->d_fieldmask |= QC_RT_SPC_HARD;
514 if (src->d_fieldmask & FS_DQ_BTIMER)
515 dst->d_fieldmask |= QC_SPC_TIMER;
516 if (src->d_fieldmask & FS_DQ_ITIMER)
517 dst->d_fieldmask |= QC_INO_TIMER;
518 if (src->d_fieldmask & FS_DQ_RTBTIMER)
519 dst->d_fieldmask |= QC_RT_SPC_TIMER;
520 if (src->d_fieldmask & FS_DQ_BWARNS)
521 dst->d_fieldmask |= QC_SPC_WARNS;
522 if (src->d_fieldmask & FS_DQ_IWARNS)
523 dst->d_fieldmask |= QC_INO_WARNS;
524 if (src->d_fieldmask & FS_DQ_RTBWARNS)
525 dst->d_fieldmask |= QC_RT_SPC_WARNS;
526 if (src->d_fieldmask & FS_DQ_BCOUNT)
527 dst->d_fieldmask |= QC_SPACE;
528 if (src->d_fieldmask & FS_DQ_ICOUNT)
529 dst->d_fieldmask |= QC_INO_COUNT;
530 if (src->d_fieldmask & FS_DQ_RTBCOUNT)
531 dst->d_fieldmask |= QC_RT_SPACE;
532}
533
Jan Karac39fb532014-12-16 16:12:27 +0100534static void copy_qcinfo_from_xfs_dqblk(struct qc_info *dst,
535 struct fs_disk_quota *src)
536{
537 memset(dst, 0, sizeof(*dst));
538 dst->i_spc_timelimit = src->d_btimer;
539 dst->i_ino_timelimit = src->d_itimer;
540 dst->i_rt_spc_timelimit = src->d_rtbtimer;
541 dst->i_ino_warnlimit = src->d_iwarns;
542 dst->i_spc_warnlimit = src->d_bwarns;
543 dst->i_rt_spc_warnlimit = src->d_rtbwarns;
544 if (src->d_fieldmask & FS_DQ_BWARNS)
545 dst->i_fieldmask |= QC_SPC_WARNS;
546 if (src->d_fieldmask & FS_DQ_IWARNS)
547 dst->i_fieldmask |= QC_INO_WARNS;
548 if (src->d_fieldmask & FS_DQ_RTBWARNS)
549 dst->i_fieldmask |= QC_RT_SPC_WARNS;
550 if (src->d_fieldmask & FS_DQ_BTIMER)
551 dst->i_fieldmask |= QC_SPC_TIMER;
552 if (src->d_fieldmask & FS_DQ_ITIMER)
553 dst->i_fieldmask |= QC_INO_TIMER;
554 if (src->d_fieldmask & FS_DQ_RTBTIMER)
555 dst->i_fieldmask |= QC_RT_SPC_TIMER;
556}
557
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500558static int quota_setxquota(struct super_block *sb, int type, qid_t id,
559 void __user *addr)
560{
561 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200562 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700563 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500564
565 if (copy_from_user(&fdq, addr, sizeof(fdq)))
566 return -EFAULT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400567 if (!sb->s_qcop->set_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500568 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700569 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500570 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700571 return -EINVAL;
Jan Karac39fb532014-12-16 16:12:27 +0100572 /* Are we actually setting timer / warning limits for all users? */
Eric W. Biedermancfd4c702016-07-05 11:10:57 -0500573 if (from_kqid(sb->s_user_ns, qid) == 0 &&
Jan Karac39fb532014-12-16 16:12:27 +0100574 fdq.d_fieldmask & (FS_DQ_WARNS_MASK | FS_DQ_TIMER_MASK)) {
575 struct qc_info qinfo;
576 int ret;
577
578 if (!sb->s_qcop->set_info)
579 return -EINVAL;
580 copy_qcinfo_from_xfs_dqblk(&qinfo, &fdq);
581 ret = sb->s_qcop->set_info(sb, type, &qinfo);
582 if (ret)
583 return ret;
584 /* These are already done */
585 fdq.d_fieldmask &= ~(FS_DQ_WARNS_MASK | FS_DQ_TIMER_MASK);
586 }
Jan Kara14bf61f2014-10-09 16:03:13 +0200587 copy_from_xfs_dqblk(&qdq, &fdq);
588 return sb->s_qcop->set_dqblk(sb, qid, &qdq);
589}
590
591static void copy_to_xfs_dqblk(struct fs_disk_quota *dst, struct qc_dqblk *src,
592 int type, qid_t id)
593{
594 memset(dst, 0, sizeof(*dst));
595 dst->d_version = FS_DQUOT_VERSION;
596 dst->d_id = id;
597 if (type == USRQUOTA)
598 dst->d_flags = FS_USER_QUOTA;
599 else if (type == PRJQUOTA)
600 dst->d_flags = FS_PROJ_QUOTA;
601 else
602 dst->d_flags = FS_GROUP_QUOTA;
603 dst->d_blk_hardlimit = quota_btobb(src->d_spc_hardlimit);
604 dst->d_blk_softlimit = quota_btobb(src->d_spc_softlimit);
605 dst->d_ino_hardlimit = src->d_ino_hardlimit;
606 dst->d_ino_softlimit = src->d_ino_softlimit;
607 dst->d_bcount = quota_btobb(src->d_space);
608 dst->d_icount = src->d_ino_count;
609 dst->d_itimer = src->d_ino_timer;
610 dst->d_btimer = src->d_spc_timer;
611 dst->d_iwarns = src->d_ino_warns;
612 dst->d_bwarns = src->d_spc_warns;
613 dst->d_rtb_hardlimit = quota_btobb(src->d_rt_spc_hardlimit);
614 dst->d_rtb_softlimit = quota_btobb(src->d_rt_spc_softlimit);
615 dst->d_rtbcount = quota_btobb(src->d_rt_space);
616 dst->d_rtbtimer = src->d_rt_spc_timer;
617 dst->d_rtbwarns = src->d_rt_spc_warns;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500618}
619
620static int quota_getxquota(struct super_block *sb, int type, qid_t id,
621 void __user *addr)
622{
623 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200624 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700625 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500626 int ret;
627
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400628 if (!sb->s_qcop->get_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500629 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700630 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500631 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700632 return -EINVAL;
Jan Kara14bf61f2014-10-09 16:03:13 +0200633 ret = sb->s_qcop->get_dqblk(sb, qid, &qdq);
634 if (ret)
635 return ret;
636 copy_to_xfs_dqblk(&fdq, &qdq, type, id);
637 if (copy_to_user(addr, &fdq, sizeof(fdq)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500638 return -EFAULT;
639 return ret;
640}
641
Eric Sandeen8b375242016-02-08 11:21:50 +1100642/*
643 * Return quota for next active quota >= this id, if any exists,
Eric Sandeenba581482016-01-22 12:25:32 -0600644 * otherwise return -ENOENT via ->get_nextdqblk.
Eric Sandeen8b375242016-02-08 11:21:50 +1100645 */
646static int quota_getnextxquota(struct super_block *sb, int type, qid_t id,
647 void __user *addr)
648{
649 struct fs_disk_quota fdq;
650 struct qc_dqblk qdq;
651 struct kqid qid;
652 qid_t id_out;
653 int ret;
654
655 if (!sb->s_qcop->get_nextdqblk)
656 return -ENOSYS;
657 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500658 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric Sandeen8b375242016-02-08 11:21:50 +1100659 return -EINVAL;
660 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &qdq);
661 if (ret)
662 return ret;
663 id_out = from_kqid(current_user_ns(), qid);
664 copy_to_xfs_dqblk(&fdq, &qdq, type, id_out);
665 if (copy_to_user(addr, &fdq, sizeof(fdq)))
666 return -EFAULT;
667 return ret;
668}
669
Eric Sandeen9da93f92014-05-05 17:25:50 +1000670static int quota_rmxquota(struct super_block *sb, void __user *addr)
671{
672 __u32 flags;
673
674 if (copy_from_user(&flags, addr, sizeof(flags)))
675 return -EFAULT;
676 if (!sb->s_qcop->rm_xquota)
677 return -ENOSYS;
678 return sb->s_qcop->rm_xquota(sb, flags);
679}
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681/* Copy parameters and call proper function */
Jan Kara268157b2009-01-27 15:47:22 +0100682static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id,
Al Viro8c54ca92016-11-20 19:49:34 -0500683 void __user *addr, const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500685 int ret;
686
Jeremy Cline7b6924d2018-07-31 01:37:31 +0000687 type = array_index_nospec(type, MAXQUOTAS);
Jan Kara2c5f6482014-09-30 10:43:09 +0200688 /*
689 * Quota not supported on this fs? Check this before s_quota_types
690 * since they needn't be set if quota is not supported at all.
691 */
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500692 if (!sb->s_qcop)
693 return -ENOSYS;
Jan Kara2c5f6482014-09-30 10:43:09 +0200694 if (!(sb->s_quota_types & (1 << type)))
695 return -EINVAL;
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500696
697 ret = check_quotactl_permission(sb, type, cmd, id);
698 if (ret < 0)
699 return ret;
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 switch (cmd) {
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500702 case Q_QUOTAON:
Eric Sandeen3218a3e2016-02-08 11:21:24 +1100703 return quota_quotaon(sb, type, id, path);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500704 case Q_QUOTAOFF:
Jan Karad3b86322014-10-08 16:07:12 +0200705 return quota_quotaoff(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500706 case Q_GETFMT:
707 return quota_getfmt(sb, type, addr);
708 case Q_GETINFO:
709 return quota_getinfo(sb, type, addr);
710 case Q_SETINFO:
711 return quota_setinfo(sb, type, addr);
712 case Q_GETQUOTA:
713 return quota_getquota(sb, type, id, addr);
Eric Sandeen926132c2016-02-08 11:22:21 +1100714 case Q_GETNEXTQUOTA:
715 return quota_getnextquota(sb, type, id, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500716 case Q_SETQUOTA:
717 return quota_setquota(sb, type, id, addr);
718 case Q_SYNC:
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500719 if (!sb->s_qcop->quota_sync)
720 return -ENOSYS;
Jan Karaceed1722012-07-03 16:45:28 +0200721 return sb->s_qcop->quota_sync(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500722 case Q_XQUOTAON:
Jan Kara38e478c2014-10-08 15:56:21 +0200723 return quota_enable(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500724 case Q_XQUOTAOFF:
Jan Kara38e478c2014-10-08 15:56:21 +0200725 return quota_disable(sb, addr);
Eric Sandeen9da93f92014-05-05 17:25:50 +1000726 case Q_XQUOTARM:
727 return quota_rmxquota(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500728 case Q_XGETQSTAT:
Eric Sandeen555b2c32019-06-21 18:27:13 -0500729 return quota_getxstate(sb, type, addr);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500730 case Q_XGETQSTATV:
Eric Sandeen555b2c32019-06-21 18:27:13 -0500731 return quota_getxstatev(sb, type, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500732 case Q_XSETQLIM:
733 return quota_setxquota(sb, type, id, addr);
734 case Q_XGETQUOTA:
735 return quota_getxquota(sb, type, id, addr);
Eric Sandeen8b375242016-02-08 11:21:50 +1100736 case Q_XGETNEXTQUOTA:
737 return quota_getnextxquota(sb, type, id, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500738 case Q_XQUOTASYNC:
David Howellsbc98a422017-07-17 08:45:34 +0100739 if (sb_rdonly(sb))
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500740 return -EROFS;
Christoph Hellwig4b217ed2012-02-20 02:28:18 +0000741 /* XFS quotas are fully coherent now, making this call a noop */
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500742 return 0;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500743 default:
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500744 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
Lee Jones56df1272012-11-03 23:02:28 +0100748#ifdef CONFIG_BLOCK
749
Jan Karadcdbed82012-02-10 11:03:01 +0100750/* Return 1 if 'cmd' will block on frozen filesystem */
751static int quotactl_cmd_write(int cmd)
752{
Jan Karaccf370e2016-02-18 14:03:03 +0100753 /*
754 * We cannot allow Q_GETQUOTA and Q_GETNEXTQUOTA without write access
755 * as dquot_acquire() may allocate space for new structure and OCFS2
756 * needs to increment on-disk use count.
757 */
Jan Karadcdbed82012-02-10 11:03:01 +0100758 switch (cmd) {
759 case Q_GETFMT:
760 case Q_GETINFO:
761 case Q_SYNC:
762 case Q_XGETQSTAT:
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500763 case Q_XGETQSTATV:
Jan Karadcdbed82012-02-10 11:03:01 +0100764 case Q_XGETQUOTA:
Eric Sandeen8b375242016-02-08 11:21:50 +1100765 case Q_XGETNEXTQUOTA:
Jan Karadcdbed82012-02-10 11:03:01 +0100766 case Q_XQUOTASYNC:
767 return 0;
768 }
769 return 1;
770}
Lee Jones56df1272012-11-03 23:02:28 +0100771#endif /* CONFIG_BLOCK */
772
Jan Kara7d6cd732016-11-23 13:16:10 +0100773/* Return true if quotactl command is manipulating quota on/off state */
774static bool quotactl_cmd_onoff(int cmd)
775{
Javier Barrio41c4f852018-12-13 01:06:29 +0100776 return (cmd == Q_QUOTAON) || (cmd == Q_QUOTAOFF) ||
777 (cmd == Q_XQUOTAON) || (cmd == Q_XQUOTAOFF);
Jan Kara7d6cd732016-11-23 13:16:10 +0100778}
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780/*
David Howells93614012006-09-30 20:45:40 +0200781 * look up a superblock on which quota ops will be performed
782 * - use the name of a block device to find the superblock thereon
783 */
Jan Karadcdbed82012-02-10 11:03:01 +0100784static struct super_block *quotactl_block(const char __user *special, int cmd)
David Howells93614012006-09-30 20:45:40 +0200785{
786#ifdef CONFIG_BLOCK
787 struct block_device *bdev;
788 struct super_block *sb;
Jeff Layton91a27b22012-10-10 15:25:28 -0400789 struct filename *tmp = getname(special);
David Howells93614012006-09-30 20:45:40 +0200790
791 if (IS_ERR(tmp))
David Howellse231c2e2008-02-07 00:15:26 -0800792 return ERR_CAST(tmp);
Jeff Layton91a27b22012-10-10 15:25:28 -0400793 bdev = lookup_bdev(tmp->name);
David Howells93614012006-09-30 20:45:40 +0200794 putname(tmp);
795 if (IS_ERR(bdev))
David Howellse231c2e2008-02-07 00:15:26 -0800796 return ERR_CAST(bdev);
Jan Kara7d6cd732016-11-23 13:16:10 +0100797 if (quotactl_cmd_onoff(cmd))
798 sb = get_super_exclusive_thawed(bdev);
799 else if (quotactl_cmd_write(cmd))
Jan Karadcdbed82012-02-10 11:03:01 +0100800 sb = get_super_thawed(bdev);
801 else
802 sb = get_super(bdev);
David Howells93614012006-09-30 20:45:40 +0200803 bdput(bdev);
804 if (!sb)
805 return ERR_PTR(-ENODEV);
806
807 return sb;
808#else
809 return ERR_PTR(-ENODEV);
810#endif
811}
812
813/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 * This is the system call interface. This communicates with
815 * the user-level programs. Currently this only supports diskquota
816 * calls. Maybe we need to add the process quotas etc. in the future,
817 * but we probably should use rlimits for that.
818 */
Dominik Brodowskicb0b4762018-03-17 16:26:56 +0100819int kernel_quotactl(unsigned int cmd, const char __user *special,
820 qid_t id, void __user *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
822 uint cmds, type;
823 struct super_block *sb = NULL;
Jan Karaf00c9e42010-09-15 17:38:58 +0200824 struct path path, *pathp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 int ret;
826
827 cmds = cmd >> SUBCMDSHIFT;
828 type = cmd & SUBCMDMASK;
829
Chengguang Xua6810312019-10-08 22:50:59 +0800830 if (type >= MAXQUOTAS)
831 return -EINVAL;
832
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500833 /*
834 * As a special case Q_SYNC can be called without a specific device.
835 * It will iterate all superblocks that have quota enabled and call
836 * the sync action on each of them.
837 */
838 if (!special) {
839 if (cmds == Q_SYNC)
840 return quota_sync_all(type);
841 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
843
Jan Karaf00c9e42010-09-15 17:38:58 +0200844 /*
845 * Path for quotaon has to be resolved before grabbing superblock
846 * because that gets s_umount sem which is also possibly needed by path
847 * resolution (think about autofs) and thus deadlocks could arise.
848 */
849 if (cmds == Q_QUOTAON) {
Trond Myklebust815d4052011-09-26 20:36:09 -0400850 ret = user_path_at(AT_FDCWD, addr, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
Jan Karaf00c9e42010-09-15 17:38:58 +0200851 if (ret)
852 pathp = ERR_PTR(ret);
853 else
854 pathp = &path;
855 }
856
Jan Karadcdbed82012-02-10 11:03:01 +0100857 sb = quotactl_block(special, cmds);
Jan Kara0aaa6182011-10-10 18:32:06 +0200858 if (IS_ERR(sb)) {
859 ret = PTR_ERR(sb);
860 goto out;
861 }
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500862
Jan Karaf00c9e42010-09-15 17:38:58 +0200863 ret = do_quotactl(sb, type, cmds, id, addr, pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Jan Kara7d6cd732016-11-23 13:16:10 +0100865 if (!quotactl_cmd_onoff(cmds))
866 drop_super(sb);
867 else
868 drop_super_exclusive(sb);
Jan Kara0aaa6182011-10-10 18:32:06 +0200869out:
Jan Karaf00c9e42010-09-15 17:38:58 +0200870 if (pathp && !IS_ERR(pathp))
871 path_put(pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 return ret;
873}
Dominik Brodowskicb0b4762018-03-17 16:26:56 +0100874
875SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special,
876 qid_t, id, void __user *, addr)
877{
878 return kernel_quotactl(cmd, special, id, addr);
879}