blob: cb13fb76dbee5416c0185f2d4e1038138be0784b [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
63 if (type >= MAXQUOTAS)
64 return -EINVAL;
65 ret = security_quotactl(Q_SYNC, type, 0, NULL);
Al Viro01a05b32010-03-23 06:06:58 -040066 if (!ret)
67 iterate_supers(quota_sync_one, &type);
68 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
Jan Karad3b86322014-10-08 16:07:12 +020071unsigned int qtype_enforce_flag(int type)
72{
73 switch (type) {
74 case USRQUOTA:
75 return FS_QUOTA_UDQ_ENFD;
76 case GRPQUOTA:
77 return FS_QUOTA_GDQ_ENFD;
78 case PRJQUOTA:
79 return FS_QUOTA_PDQ_ENFD;
80 }
81 return 0;
82}
83
Eric Sandeen3218a3e2016-02-08 11:21:24 +110084static int quota_quotaon(struct super_block *sb, int type, qid_t id,
Al Viro8c54ca92016-11-20 19:49:34 -050085 const struct path *path)
Christoph Hellwigc411e5f2010-02-16 03:44:47 -050086{
Jan Karaaaa3dae2014-10-08 18:35:31 +020087 if (!sb->s_qcop->quota_on && !sb->s_qcop->quota_enable)
Jan Karaf00c9e42010-09-15 17:38:58 +020088 return -ENOSYS;
Jan Karad3b86322014-10-08 16:07:12 +020089 if (sb->s_qcop->quota_enable)
90 return sb->s_qcop->quota_enable(sb, qtype_enforce_flag(type));
Jan Karaf00c9e42010-09-15 17:38:58 +020091 if (IS_ERR(path))
92 return PTR_ERR(path);
93 return sb->s_qcop->quota_on(sb, type, id, path);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -050094}
95
Jan Karad3b86322014-10-08 16:07:12 +020096static int quota_quotaoff(struct super_block *sb, int type)
97{
98 if (!sb->s_qcop->quota_off && !sb->s_qcop->quota_disable)
99 return -ENOSYS;
100 if (sb->s_qcop->quota_disable)
101 return sb->s_qcop->quota_disable(sb, qtype_enforce_flag(type));
102 return sb->s_qcop->quota_off(sb, type);
103}
104
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500105static int quota_getfmt(struct super_block *sb, int type, void __user *addr)
106{
107 __u32 fmt;
108
Jan Kara9d1ccbe2016-11-23 13:35:14 +0100109 if (!sb_has_quota_active(sb, type))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500110 return -ESRCH;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500111 fmt = sb_dqopt(sb)->info[type].dqi_format->qf_fmt_id;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500112 if (copy_to_user(addr, &fmt, sizeof(fmt)))
113 return -EFAULT;
114 return 0;
115}
116
117static int quota_getinfo(struct super_block *sb, int type, void __user *addr)
118{
Jan Kara0a2403392014-11-19 00:42:09 +0100119 struct qc_state state;
120 struct qc_type_state *tstate;
121 struct if_dqinfo uinfo;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500122 int ret;
123
Jan Kara0a2403392014-11-19 00:42:09 +0100124 if (!sb->s_qcop->get_state)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500125 return -ENOSYS;
Jan Kara0a2403392014-11-19 00:42:09 +0100126 ret = sb->s_qcop->get_state(sb, &state);
127 if (ret)
128 return ret;
129 tstate = state.s_state + type;
130 if (!(tstate->flags & QCI_ACCT_ENABLED))
131 return -ESRCH;
132 memset(&uinfo, 0, sizeof(uinfo));
133 uinfo.dqi_bgrace = tstate->spc_timelimit;
134 uinfo.dqi_igrace = tstate->ino_timelimit;
135 if (tstate->flags & QCI_SYSFILE)
136 uinfo.dqi_flags |= DQF_SYS_FILE;
137 if (tstate->flags & QCI_ROOT_SQUASH)
138 uinfo.dqi_flags |= DQF_ROOT_SQUASH;
139 uinfo.dqi_valid = IIF_ALL;
Dan Carpenter72d4d0e2015-08-11 00:29:55 +0300140 if (copy_to_user(addr, &uinfo, sizeof(uinfo)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500141 return -EFAULT;
Dan Carpenter72d4d0e2015-08-11 00:29:55 +0300142 return 0;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500143}
144
145static int quota_setinfo(struct super_block *sb, int type, void __user *addr)
146{
147 struct if_dqinfo info;
Jan Kara5eacb2a2014-12-16 12:03:51 +0100148 struct qc_info qinfo;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500149
150 if (copy_from_user(&info, addr, sizeof(info)))
151 return -EFAULT;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500152 if (!sb->s_qcop->set_info)
153 return -ENOSYS;
Jan Kara5eacb2a2014-12-16 12:03:51 +0100154 if (info.dqi_valid & ~(IIF_FLAGS | IIF_BGRACE | IIF_IGRACE))
155 return -EINVAL;
156 memset(&qinfo, 0, sizeof(qinfo));
157 if (info.dqi_valid & IIF_FLAGS) {
158 if (info.dqi_flags & ~DQF_SETINFO_MASK)
159 return -EINVAL;
160 if (info.dqi_flags & DQF_ROOT_SQUASH)
161 qinfo.i_flags |= QCI_ROOT_SQUASH;
162 qinfo.i_fieldmask |= QC_FLAGS;
163 }
164 if (info.dqi_valid & IIF_BGRACE) {
165 qinfo.i_spc_timelimit = info.dqi_bgrace;
166 qinfo.i_fieldmask |= QC_SPC_TIMER;
167 }
168 if (info.dqi_valid & IIF_IGRACE) {
169 qinfo.i_ino_timelimit = info.dqi_igrace;
170 qinfo.i_fieldmask |= QC_INO_TIMER;
171 }
172 return sb->s_qcop->set_info(sb, type, &qinfo);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500173}
174
Jan Kara14bf61f2014-10-09 16:03:13 +0200175static inline qsize_t qbtos(qsize_t blocks)
176{
177 return blocks << QIF_DQBLKSIZE_BITS;
178}
179
180static inline qsize_t stoqb(qsize_t space)
181{
182 return (space + QIF_DQBLKSIZE - 1) >> QIF_DQBLKSIZE_BITS;
183}
184
185static void copy_to_if_dqblk(struct if_dqblk *dst, struct qc_dqblk *src)
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400186{
Dan Carpenter18da65e2013-11-01 13:21:54 +0300187 memset(dst, 0, sizeof(*dst));
Jan Kara14bf61f2014-10-09 16:03:13 +0200188 dst->dqb_bhardlimit = stoqb(src->d_spc_hardlimit);
189 dst->dqb_bsoftlimit = stoqb(src->d_spc_softlimit);
190 dst->dqb_curspace = src->d_space;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400191 dst->dqb_ihardlimit = src->d_ino_hardlimit;
192 dst->dqb_isoftlimit = src->d_ino_softlimit;
Jan Kara14bf61f2014-10-09 16:03:13 +0200193 dst->dqb_curinodes = src->d_ino_count;
194 dst->dqb_btime = src->d_spc_timer;
195 dst->dqb_itime = src->d_ino_timer;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400196 dst->dqb_valid = QIF_ALL;
197}
198
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500199static int quota_getquota(struct super_block *sb, int type, qid_t id,
200 void __user *addr)
201{
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700202 struct kqid qid;
Jan Kara14bf61f2014-10-09 16:03:13 +0200203 struct qc_dqblk fdq;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500204 struct if_dqblk idq;
205 int ret;
206
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500207 if (!sb->s_qcop->get_dqblk)
208 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700209 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500210 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700211 return -EINVAL;
212 ret = sb->s_qcop->get_dqblk(sb, qid, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500213 if (ret)
214 return ret;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400215 copy_to_if_dqblk(&idq, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500216 if (copy_to_user(addr, &idq, sizeof(idq)))
217 return -EFAULT;
218 return 0;
219}
220
Eric Sandeen926132c2016-02-08 11:22:21 +1100221/*
222 * Return quota for next active quota >= this id, if any exists,
Eric Sandeenba581482016-01-22 12:25:32 -0600223 * otherwise return -ENOENT via ->get_nextdqblk
Eric Sandeen926132c2016-02-08 11:22:21 +1100224 */
225static int quota_getnextquota(struct super_block *sb, int type, qid_t id,
226 void __user *addr)
227{
228 struct kqid qid;
229 struct qc_dqblk fdq;
230 struct if_nextdqblk idq;
231 int ret;
232
233 if (!sb->s_qcop->get_nextdqblk)
234 return -ENOSYS;
235 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500236 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric Sandeen926132c2016-02-08 11:22:21 +1100237 return -EINVAL;
238 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &fdq);
239 if (ret)
240 return ret;
241 /* struct if_nextdqblk is a superset of struct if_dqblk */
242 copy_to_if_dqblk((struct if_dqblk *)&idq, &fdq);
243 idq.dqb_id = from_kqid(current_user_ns(), qid);
244 if (copy_to_user(addr, &idq, sizeof(idq)))
245 return -EFAULT;
246 return 0;
247}
248
Jan Kara14bf61f2014-10-09 16:03:13 +0200249static void copy_from_if_dqblk(struct qc_dqblk *dst, struct if_dqblk *src)
Christoph Hellwigc472b432010-05-06 17:05:17 -0400250{
Jan Kara14bf61f2014-10-09 16:03:13 +0200251 dst->d_spc_hardlimit = qbtos(src->dqb_bhardlimit);
252 dst->d_spc_softlimit = qbtos(src->dqb_bsoftlimit);
253 dst->d_space = src->dqb_curspace;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400254 dst->d_ino_hardlimit = src->dqb_ihardlimit;
255 dst->d_ino_softlimit = src->dqb_isoftlimit;
Jan Kara14bf61f2014-10-09 16:03:13 +0200256 dst->d_ino_count = src->dqb_curinodes;
257 dst->d_spc_timer = src->dqb_btime;
258 dst->d_ino_timer = src->dqb_itime;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400259
260 dst->d_fieldmask = 0;
261 if (src->dqb_valid & QIF_BLIMITS)
Jan Kara14bf61f2014-10-09 16:03:13 +0200262 dst->d_fieldmask |= QC_SPC_SOFT | QC_SPC_HARD;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400263 if (src->dqb_valid & QIF_SPACE)
Jan Kara14bf61f2014-10-09 16:03:13 +0200264 dst->d_fieldmask |= QC_SPACE;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400265 if (src->dqb_valid & QIF_ILIMITS)
Jan Kara14bf61f2014-10-09 16:03:13 +0200266 dst->d_fieldmask |= QC_INO_SOFT | QC_INO_HARD;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400267 if (src->dqb_valid & QIF_INODES)
Jan Kara14bf61f2014-10-09 16:03:13 +0200268 dst->d_fieldmask |= QC_INO_COUNT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400269 if (src->dqb_valid & QIF_BTIME)
Jan Kara14bf61f2014-10-09 16:03:13 +0200270 dst->d_fieldmask |= QC_SPC_TIMER;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400271 if (src->dqb_valid & QIF_ITIME)
Jan Kara14bf61f2014-10-09 16:03:13 +0200272 dst->d_fieldmask |= QC_INO_TIMER;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400273}
274
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500275static int quota_setquota(struct super_block *sb, int type, qid_t id,
276 void __user *addr)
277{
Jan Kara14bf61f2014-10-09 16:03:13 +0200278 struct qc_dqblk fdq;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500279 struct if_dqblk idq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700280 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500281
282 if (copy_from_user(&idq, addr, sizeof(idq)))
283 return -EFAULT;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500284 if (!sb->s_qcop->set_dqblk)
285 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700286 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500287 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700288 return -EINVAL;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400289 copy_from_if_dqblk(&fdq, &idq);
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700290 return sb->s_qcop->set_dqblk(sb, qid, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500291}
292
Jan Kara38e478c2014-10-08 15:56:21 +0200293static int quota_enable(struct super_block *sb, void __user *addr)
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500294{
295 __u32 flags;
296
297 if (copy_from_user(&flags, addr, sizeof(flags)))
298 return -EFAULT;
Jan Kara38e478c2014-10-08 15:56:21 +0200299 if (!sb->s_qcop->quota_enable)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500300 return -ENOSYS;
Jan Kara38e478c2014-10-08 15:56:21 +0200301 return sb->s_qcop->quota_enable(sb, flags);
302}
303
304static int quota_disable(struct super_block *sb, void __user *addr)
305{
306 __u32 flags;
307
308 if (copy_from_user(&flags, addr, sizeof(flags)))
309 return -EFAULT;
310 if (!sb->s_qcop->quota_disable)
311 return -ENOSYS;
312 return sb->s_qcop->quota_disable(sb, flags);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500313}
314
Jan Karabc230e42014-11-19 16:17:45 +0100315static int quota_state_to_flags(struct qc_state *state)
316{
317 int flags = 0;
318
319 if (state->s_state[USRQUOTA].flags & QCI_ACCT_ENABLED)
320 flags |= FS_QUOTA_UDQ_ACCT;
321 if (state->s_state[USRQUOTA].flags & QCI_LIMITS_ENFORCED)
322 flags |= FS_QUOTA_UDQ_ENFD;
323 if (state->s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED)
324 flags |= FS_QUOTA_GDQ_ACCT;
325 if (state->s_state[GRPQUOTA].flags & QCI_LIMITS_ENFORCED)
326 flags |= FS_QUOTA_GDQ_ENFD;
327 if (state->s_state[PRJQUOTA].flags & QCI_ACCT_ENABLED)
328 flags |= FS_QUOTA_PDQ_ACCT;
329 if (state->s_state[PRJQUOTA].flags & QCI_LIMITS_ENFORCED)
330 flags |= FS_QUOTA_PDQ_ENFD;
331 return flags;
332}
333
Eric Sandeen555b2c32019-06-21 18:27:13 -0500334static int quota_getstate(struct super_block *sb, int type,
335 struct fs_quota_stat *fqs)
Jan Karabc230e42014-11-19 16:17:45 +0100336{
Jan Karabc230e42014-11-19 16:17:45 +0100337 struct qc_state state;
338 int ret;
339
Eric Sandeen3cd01262016-08-12 17:40:09 -0500340 memset(&state, 0, sizeof (struct qc_state));
Jan Karabc230e42014-11-19 16:17:45 +0100341 ret = sb->s_qcop->get_state(sb, &state);
342 if (ret < 0)
343 return ret;
344
345 memset(fqs, 0, sizeof(*fqs));
346 fqs->qs_version = FS_QSTAT_VERSION;
347 fqs->qs_flags = quota_state_to_flags(&state);
348 /* No quota enabled? */
349 if (!fqs->qs_flags)
350 return -ENOSYS;
351 fqs->qs_incoredqs = state.s_incoredqs;
Eric Sandeen555b2c32019-06-21 18:27:13 -0500352
Jan Karabc230e42014-11-19 16:17:45 +0100353 fqs->qs_btimelimit = state.s_state[type].spc_timelimit;
354 fqs->qs_itimelimit = state.s_state[type].ino_timelimit;
355 fqs->qs_rtbtimelimit = state.s_state[type].rt_spc_timelimit;
356 fqs->qs_bwarnlimit = state.s_state[type].spc_warnlimit;
357 fqs->qs_iwarnlimit = state.s_state[type].ino_warnlimit;
Eric Sandeen3cd01262016-08-12 17:40:09 -0500358
359 /* Inodes may be allocated even if inactive; copy out if present */
360 if (state.s_state[USRQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100361 fqs->qs_uquota.qfs_ino = state.s_state[USRQUOTA].ino;
362 fqs->qs_uquota.qfs_nblks = state.s_state[USRQUOTA].blocks;
363 fqs->qs_uquota.qfs_nextents = state.s_state[USRQUOTA].nextents;
364 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500365 if (state.s_state[GRPQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100366 fqs->qs_gquota.qfs_ino = state.s_state[GRPQUOTA].ino;
367 fqs->qs_gquota.qfs_nblks = state.s_state[GRPQUOTA].blocks;
368 fqs->qs_gquota.qfs_nextents = state.s_state[GRPQUOTA].nextents;
369 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500370 if (state.s_state[PRJQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100371 /*
372 * Q_XGETQSTAT doesn't have room for both group and project
373 * quotas. So, allow the project quota values to be copied out
374 * only if there is no group quota information available.
375 */
376 if (!(state.s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED)) {
377 fqs->qs_gquota.qfs_ino = state.s_state[PRJQUOTA].ino;
378 fqs->qs_gquota.qfs_nblks =
379 state.s_state[PRJQUOTA].blocks;
380 fqs->qs_gquota.qfs_nextents =
381 state.s_state[PRJQUOTA].nextents;
382 }
383 }
384 return 0;
385}
386
Eric Sandeen555b2c32019-06-21 18:27:13 -0500387static int quota_getxstate(struct super_block *sb, int type, void __user *addr)
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500388{
389 struct fs_quota_stat fqs;
390 int ret;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500391
Jan Kara59b6ba62014-11-19 16:44:58 +0100392 if (!sb->s_qcop->get_state)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500393 return -ENOSYS;
Eric Sandeen555b2c32019-06-21 18:27:13 -0500394 ret = quota_getstate(sb, type, &fqs);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500395 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
396 return -EFAULT;
397 return ret;
398}
399
Eric Sandeen555b2c32019-06-21 18:27:13 -0500400static int quota_getstatev(struct super_block *sb, int type,
401 struct fs_quota_statv *fqs)
Jan Karabc230e42014-11-19 16:17:45 +0100402{
Jan Karabc230e42014-11-19 16:17:45 +0100403 struct qc_state state;
404 int ret;
405
Eric Sandeen3cd01262016-08-12 17:40:09 -0500406 memset(&state, 0, sizeof (struct qc_state));
Jan Karabc230e42014-11-19 16:17:45 +0100407 ret = sb->s_qcop->get_state(sb, &state);
408 if (ret < 0)
409 return ret;
410
411 memset(fqs, 0, sizeof(*fqs));
412 fqs->qs_version = FS_QSTAT_VERSION;
413 fqs->qs_flags = quota_state_to_flags(&state);
414 /* No quota enabled? */
415 if (!fqs->qs_flags)
416 return -ENOSYS;
417 fqs->qs_incoredqs = state.s_incoredqs;
Eric Sandeen555b2c32019-06-21 18:27:13 -0500418
Jan Karabc230e42014-11-19 16:17:45 +0100419 fqs->qs_btimelimit = state.s_state[type].spc_timelimit;
420 fqs->qs_itimelimit = state.s_state[type].ino_timelimit;
421 fqs->qs_rtbtimelimit = state.s_state[type].rt_spc_timelimit;
422 fqs->qs_bwarnlimit = state.s_state[type].spc_warnlimit;
423 fqs->qs_iwarnlimit = state.s_state[type].ino_warnlimit;
Eric Sandeen3cd01262016-08-12 17:40:09 -0500424
425 /* Inodes may be allocated even if inactive; copy out if present */
426 if (state.s_state[USRQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100427 fqs->qs_uquota.qfs_ino = state.s_state[USRQUOTA].ino;
428 fqs->qs_uquota.qfs_nblks = state.s_state[USRQUOTA].blocks;
429 fqs->qs_uquota.qfs_nextents = state.s_state[USRQUOTA].nextents;
430 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500431 if (state.s_state[GRPQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100432 fqs->qs_gquota.qfs_ino = state.s_state[GRPQUOTA].ino;
433 fqs->qs_gquota.qfs_nblks = state.s_state[GRPQUOTA].blocks;
434 fqs->qs_gquota.qfs_nextents = state.s_state[GRPQUOTA].nextents;
435 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500436 if (state.s_state[PRJQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100437 fqs->qs_pquota.qfs_ino = state.s_state[PRJQUOTA].ino;
438 fqs->qs_pquota.qfs_nblks = state.s_state[PRJQUOTA].blocks;
439 fqs->qs_pquota.qfs_nextents = state.s_state[PRJQUOTA].nextents;
440 }
441 return 0;
442}
443
Eric Sandeen555b2c32019-06-21 18:27:13 -0500444static int quota_getxstatev(struct super_block *sb, int type, void __user *addr)
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500445{
446 struct fs_quota_statv fqs;
447 int ret;
448
Jan Kara59b6ba62014-11-19 16:44:58 +0100449 if (!sb->s_qcop->get_state)
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500450 return -ENOSYS;
451
452 memset(&fqs, 0, sizeof(fqs));
453 if (copy_from_user(&fqs, addr, 1)) /* Just read qs_version */
454 return -EFAULT;
455
456 /* If this kernel doesn't support user specified version, fail */
457 switch (fqs.qs_version) {
458 case FS_QSTATV_VERSION1:
459 break;
460 default:
461 return -EINVAL;
462 }
Eric Sandeen555b2c32019-06-21 18:27:13 -0500463 ret = quota_getstatev(sb, type, &fqs);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500464 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
465 return -EFAULT;
466 return ret;
467}
468
Jan Kara14bf61f2014-10-09 16:03:13 +0200469/*
470 * XFS defines BBTOB and BTOBB macros inside fs/xfs/ and we cannot move them
471 * out of there as xfsprogs rely on definitions being in that header file. So
472 * just define same functions here for quota purposes.
473 */
474#define XFS_BB_SHIFT 9
475
476static inline u64 quota_bbtob(u64 blocks)
477{
478 return blocks << XFS_BB_SHIFT;
479}
480
481static inline u64 quota_btobb(u64 bytes)
482{
483 return (bytes + (1 << XFS_BB_SHIFT) - 1) >> XFS_BB_SHIFT;
484}
485
486static void copy_from_xfs_dqblk(struct qc_dqblk *dst, struct fs_disk_quota *src)
487{
488 dst->d_spc_hardlimit = quota_bbtob(src->d_blk_hardlimit);
489 dst->d_spc_softlimit = quota_bbtob(src->d_blk_softlimit);
490 dst->d_ino_hardlimit = src->d_ino_hardlimit;
491 dst->d_ino_softlimit = src->d_ino_softlimit;
492 dst->d_space = quota_bbtob(src->d_bcount);
493 dst->d_ino_count = src->d_icount;
494 dst->d_ino_timer = src->d_itimer;
495 dst->d_spc_timer = src->d_btimer;
496 dst->d_ino_warns = src->d_iwarns;
497 dst->d_spc_warns = src->d_bwarns;
498 dst->d_rt_spc_hardlimit = quota_bbtob(src->d_rtb_hardlimit);
499 dst->d_rt_spc_softlimit = quota_bbtob(src->d_rtb_softlimit);
500 dst->d_rt_space = quota_bbtob(src->d_rtbcount);
501 dst->d_rt_spc_timer = src->d_rtbtimer;
502 dst->d_rt_spc_warns = src->d_rtbwarns;
503 dst->d_fieldmask = 0;
504 if (src->d_fieldmask & FS_DQ_ISOFT)
505 dst->d_fieldmask |= QC_INO_SOFT;
506 if (src->d_fieldmask & FS_DQ_IHARD)
507 dst->d_fieldmask |= QC_INO_HARD;
508 if (src->d_fieldmask & FS_DQ_BSOFT)
509 dst->d_fieldmask |= QC_SPC_SOFT;
510 if (src->d_fieldmask & FS_DQ_BHARD)
511 dst->d_fieldmask |= QC_SPC_HARD;
512 if (src->d_fieldmask & FS_DQ_RTBSOFT)
513 dst->d_fieldmask |= QC_RT_SPC_SOFT;
514 if (src->d_fieldmask & FS_DQ_RTBHARD)
515 dst->d_fieldmask |= QC_RT_SPC_HARD;
516 if (src->d_fieldmask & FS_DQ_BTIMER)
517 dst->d_fieldmask |= QC_SPC_TIMER;
518 if (src->d_fieldmask & FS_DQ_ITIMER)
519 dst->d_fieldmask |= QC_INO_TIMER;
520 if (src->d_fieldmask & FS_DQ_RTBTIMER)
521 dst->d_fieldmask |= QC_RT_SPC_TIMER;
522 if (src->d_fieldmask & FS_DQ_BWARNS)
523 dst->d_fieldmask |= QC_SPC_WARNS;
524 if (src->d_fieldmask & FS_DQ_IWARNS)
525 dst->d_fieldmask |= QC_INO_WARNS;
526 if (src->d_fieldmask & FS_DQ_RTBWARNS)
527 dst->d_fieldmask |= QC_RT_SPC_WARNS;
528 if (src->d_fieldmask & FS_DQ_BCOUNT)
529 dst->d_fieldmask |= QC_SPACE;
530 if (src->d_fieldmask & FS_DQ_ICOUNT)
531 dst->d_fieldmask |= QC_INO_COUNT;
532 if (src->d_fieldmask & FS_DQ_RTBCOUNT)
533 dst->d_fieldmask |= QC_RT_SPACE;
534}
535
Jan Karac39fb532014-12-16 16:12:27 +0100536static void copy_qcinfo_from_xfs_dqblk(struct qc_info *dst,
537 struct fs_disk_quota *src)
538{
539 memset(dst, 0, sizeof(*dst));
540 dst->i_spc_timelimit = src->d_btimer;
541 dst->i_ino_timelimit = src->d_itimer;
542 dst->i_rt_spc_timelimit = src->d_rtbtimer;
543 dst->i_ino_warnlimit = src->d_iwarns;
544 dst->i_spc_warnlimit = src->d_bwarns;
545 dst->i_rt_spc_warnlimit = src->d_rtbwarns;
546 if (src->d_fieldmask & FS_DQ_BWARNS)
547 dst->i_fieldmask |= QC_SPC_WARNS;
548 if (src->d_fieldmask & FS_DQ_IWARNS)
549 dst->i_fieldmask |= QC_INO_WARNS;
550 if (src->d_fieldmask & FS_DQ_RTBWARNS)
551 dst->i_fieldmask |= QC_RT_SPC_WARNS;
552 if (src->d_fieldmask & FS_DQ_BTIMER)
553 dst->i_fieldmask |= QC_SPC_TIMER;
554 if (src->d_fieldmask & FS_DQ_ITIMER)
555 dst->i_fieldmask |= QC_INO_TIMER;
556 if (src->d_fieldmask & FS_DQ_RTBTIMER)
557 dst->i_fieldmask |= QC_RT_SPC_TIMER;
558}
559
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500560static int quota_setxquota(struct super_block *sb, int type, qid_t id,
561 void __user *addr)
562{
563 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200564 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700565 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500566
567 if (copy_from_user(&fdq, addr, sizeof(fdq)))
568 return -EFAULT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400569 if (!sb->s_qcop->set_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500570 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700571 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500572 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700573 return -EINVAL;
Jan Karac39fb532014-12-16 16:12:27 +0100574 /* Are we actually setting timer / warning limits for all users? */
Eric W. Biedermancfd4c702016-07-05 11:10:57 -0500575 if (from_kqid(sb->s_user_ns, qid) == 0 &&
Jan Karac39fb532014-12-16 16:12:27 +0100576 fdq.d_fieldmask & (FS_DQ_WARNS_MASK | FS_DQ_TIMER_MASK)) {
577 struct qc_info qinfo;
578 int ret;
579
580 if (!sb->s_qcop->set_info)
581 return -EINVAL;
582 copy_qcinfo_from_xfs_dqblk(&qinfo, &fdq);
583 ret = sb->s_qcop->set_info(sb, type, &qinfo);
584 if (ret)
585 return ret;
586 /* These are already done */
587 fdq.d_fieldmask &= ~(FS_DQ_WARNS_MASK | FS_DQ_TIMER_MASK);
588 }
Jan Kara14bf61f2014-10-09 16:03:13 +0200589 copy_from_xfs_dqblk(&qdq, &fdq);
590 return sb->s_qcop->set_dqblk(sb, qid, &qdq);
591}
592
593static void copy_to_xfs_dqblk(struct fs_disk_quota *dst, struct qc_dqblk *src,
594 int type, qid_t id)
595{
596 memset(dst, 0, sizeof(*dst));
597 dst->d_version = FS_DQUOT_VERSION;
598 dst->d_id = id;
599 if (type == USRQUOTA)
600 dst->d_flags = FS_USER_QUOTA;
601 else if (type == PRJQUOTA)
602 dst->d_flags = FS_PROJ_QUOTA;
603 else
604 dst->d_flags = FS_GROUP_QUOTA;
605 dst->d_blk_hardlimit = quota_btobb(src->d_spc_hardlimit);
606 dst->d_blk_softlimit = quota_btobb(src->d_spc_softlimit);
607 dst->d_ino_hardlimit = src->d_ino_hardlimit;
608 dst->d_ino_softlimit = src->d_ino_softlimit;
609 dst->d_bcount = quota_btobb(src->d_space);
610 dst->d_icount = src->d_ino_count;
611 dst->d_itimer = src->d_ino_timer;
612 dst->d_btimer = src->d_spc_timer;
613 dst->d_iwarns = src->d_ino_warns;
614 dst->d_bwarns = src->d_spc_warns;
615 dst->d_rtb_hardlimit = quota_btobb(src->d_rt_spc_hardlimit);
616 dst->d_rtb_softlimit = quota_btobb(src->d_rt_spc_softlimit);
617 dst->d_rtbcount = quota_btobb(src->d_rt_space);
618 dst->d_rtbtimer = src->d_rt_spc_timer;
619 dst->d_rtbwarns = src->d_rt_spc_warns;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500620}
621
622static int quota_getxquota(struct super_block *sb, int type, qid_t id,
623 void __user *addr)
624{
625 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200626 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700627 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500628 int ret;
629
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400630 if (!sb->s_qcop->get_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500631 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700632 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500633 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700634 return -EINVAL;
Jan Kara14bf61f2014-10-09 16:03:13 +0200635 ret = sb->s_qcop->get_dqblk(sb, qid, &qdq);
636 if (ret)
637 return ret;
638 copy_to_xfs_dqblk(&fdq, &qdq, type, id);
639 if (copy_to_user(addr, &fdq, sizeof(fdq)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500640 return -EFAULT;
641 return ret;
642}
643
Eric Sandeen8b375242016-02-08 11:21:50 +1100644/*
645 * Return quota for next active quota >= this id, if any exists,
Eric Sandeenba581482016-01-22 12:25:32 -0600646 * otherwise return -ENOENT via ->get_nextdqblk.
Eric Sandeen8b375242016-02-08 11:21:50 +1100647 */
648static int quota_getnextxquota(struct super_block *sb, int type, qid_t id,
649 void __user *addr)
650{
651 struct fs_disk_quota fdq;
652 struct qc_dqblk qdq;
653 struct kqid qid;
654 qid_t id_out;
655 int ret;
656
657 if (!sb->s_qcop->get_nextdqblk)
658 return -ENOSYS;
659 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500660 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric Sandeen8b375242016-02-08 11:21:50 +1100661 return -EINVAL;
662 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &qdq);
663 if (ret)
664 return ret;
665 id_out = from_kqid(current_user_ns(), qid);
666 copy_to_xfs_dqblk(&fdq, &qdq, type, id_out);
667 if (copy_to_user(addr, &fdq, sizeof(fdq)))
668 return -EFAULT;
669 return ret;
670}
671
Eric Sandeen9da93f92014-05-05 17:25:50 +1000672static int quota_rmxquota(struct super_block *sb, void __user *addr)
673{
674 __u32 flags;
675
676 if (copy_from_user(&flags, addr, sizeof(flags)))
677 return -EFAULT;
678 if (!sb->s_qcop->rm_xquota)
679 return -ENOSYS;
680 return sb->s_qcop->rm_xquota(sb, flags);
681}
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683/* Copy parameters and call proper function */
Jan Kara268157b2009-01-27 15:47:22 +0100684static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id,
Al Viro8c54ca92016-11-20 19:49:34 -0500685 void __user *addr, const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500687 int ret;
688
Jeremy Cline64d9d132018-07-31 01:37:30 +0000689 if (type >= MAXQUOTAS)
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500690 return -EINVAL;
Jeremy Cline7b6924d2018-07-31 01:37:31 +0000691 type = array_index_nospec(type, MAXQUOTAS);
Jan Kara2c5f6482014-09-30 10:43:09 +0200692 /*
693 * Quota not supported on this fs? Check this before s_quota_types
694 * since they needn't be set if quota is not supported at all.
695 */
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500696 if (!sb->s_qcop)
697 return -ENOSYS;
Jan Kara2c5f6482014-09-30 10:43:09 +0200698 if (!(sb->s_quota_types & (1 << type)))
699 return -EINVAL;
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500700
701 ret = check_quotactl_permission(sb, type, cmd, id);
702 if (ret < 0)
703 return ret;
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 switch (cmd) {
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500706 case Q_QUOTAON:
Eric Sandeen3218a3e2016-02-08 11:21:24 +1100707 return quota_quotaon(sb, type, id, path);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500708 case Q_QUOTAOFF:
Jan Karad3b86322014-10-08 16:07:12 +0200709 return quota_quotaoff(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500710 case Q_GETFMT:
711 return quota_getfmt(sb, type, addr);
712 case Q_GETINFO:
713 return quota_getinfo(sb, type, addr);
714 case Q_SETINFO:
715 return quota_setinfo(sb, type, addr);
716 case Q_GETQUOTA:
717 return quota_getquota(sb, type, id, addr);
Eric Sandeen926132c2016-02-08 11:22:21 +1100718 case Q_GETNEXTQUOTA:
719 return quota_getnextquota(sb, type, id, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500720 case Q_SETQUOTA:
721 return quota_setquota(sb, type, id, addr);
722 case Q_SYNC:
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500723 if (!sb->s_qcop->quota_sync)
724 return -ENOSYS;
Jan Karaceed1722012-07-03 16:45:28 +0200725 return sb->s_qcop->quota_sync(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500726 case Q_XQUOTAON:
Jan Kara38e478c2014-10-08 15:56:21 +0200727 return quota_enable(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500728 case Q_XQUOTAOFF:
Jan Kara38e478c2014-10-08 15:56:21 +0200729 return quota_disable(sb, addr);
Eric Sandeen9da93f92014-05-05 17:25:50 +1000730 case Q_XQUOTARM:
731 return quota_rmxquota(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500732 case Q_XGETQSTAT:
Eric Sandeen555b2c32019-06-21 18:27:13 -0500733 return quota_getxstate(sb, type, addr);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500734 case Q_XGETQSTATV:
Eric Sandeen555b2c32019-06-21 18:27:13 -0500735 return quota_getxstatev(sb, type, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500736 case Q_XSETQLIM:
737 return quota_setxquota(sb, type, id, addr);
738 case Q_XGETQUOTA:
739 return quota_getxquota(sb, type, id, addr);
Eric Sandeen8b375242016-02-08 11:21:50 +1100740 case Q_XGETNEXTQUOTA:
741 return quota_getnextxquota(sb, type, id, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500742 case Q_XQUOTASYNC:
David Howellsbc98a422017-07-17 08:45:34 +0100743 if (sb_rdonly(sb))
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500744 return -EROFS;
Christoph Hellwig4b217ed2012-02-20 02:28:18 +0000745 /* XFS quotas are fully coherent now, making this call a noop */
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500746 return 0;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500747 default:
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500748 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
Lee Jones56df1272012-11-03 23:02:28 +0100752#ifdef CONFIG_BLOCK
753
Jan Karadcdbed82012-02-10 11:03:01 +0100754/* Return 1 if 'cmd' will block on frozen filesystem */
755static int quotactl_cmd_write(int cmd)
756{
Jan Karaccf370e2016-02-18 14:03:03 +0100757 /*
758 * We cannot allow Q_GETQUOTA and Q_GETNEXTQUOTA without write access
759 * as dquot_acquire() may allocate space for new structure and OCFS2
760 * needs to increment on-disk use count.
761 */
Jan Karadcdbed82012-02-10 11:03:01 +0100762 switch (cmd) {
763 case Q_GETFMT:
764 case Q_GETINFO:
765 case Q_SYNC:
766 case Q_XGETQSTAT:
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500767 case Q_XGETQSTATV:
Jan Karadcdbed82012-02-10 11:03:01 +0100768 case Q_XGETQUOTA:
Eric Sandeen8b375242016-02-08 11:21:50 +1100769 case Q_XGETNEXTQUOTA:
Jan Karadcdbed82012-02-10 11:03:01 +0100770 case Q_XQUOTASYNC:
771 return 0;
772 }
773 return 1;
774}
Lee Jones56df1272012-11-03 23:02:28 +0100775#endif /* CONFIG_BLOCK */
776
Jan Kara7d6cd732016-11-23 13:16:10 +0100777/* Return true if quotactl command is manipulating quota on/off state */
778static bool quotactl_cmd_onoff(int cmd)
779{
Javier Barrio41c4f852018-12-13 01:06:29 +0100780 return (cmd == Q_QUOTAON) || (cmd == Q_QUOTAOFF) ||
781 (cmd == Q_XQUOTAON) || (cmd == Q_XQUOTAOFF);
Jan Kara7d6cd732016-11-23 13:16:10 +0100782}
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784/*
David Howells93614012006-09-30 20:45:40 +0200785 * look up a superblock on which quota ops will be performed
786 * - use the name of a block device to find the superblock thereon
787 */
Jan Karadcdbed82012-02-10 11:03:01 +0100788static struct super_block *quotactl_block(const char __user *special, int cmd)
David Howells93614012006-09-30 20:45:40 +0200789{
790#ifdef CONFIG_BLOCK
791 struct block_device *bdev;
792 struct super_block *sb;
Jeff Layton91a27b22012-10-10 15:25:28 -0400793 struct filename *tmp = getname(special);
David Howells93614012006-09-30 20:45:40 +0200794
795 if (IS_ERR(tmp))
David Howellse231c2e2008-02-07 00:15:26 -0800796 return ERR_CAST(tmp);
Jeff Layton91a27b22012-10-10 15:25:28 -0400797 bdev = lookup_bdev(tmp->name);
David Howells93614012006-09-30 20:45:40 +0200798 putname(tmp);
799 if (IS_ERR(bdev))
David Howellse231c2e2008-02-07 00:15:26 -0800800 return ERR_CAST(bdev);
Jan Kara7d6cd732016-11-23 13:16:10 +0100801 if (quotactl_cmd_onoff(cmd))
802 sb = get_super_exclusive_thawed(bdev);
803 else if (quotactl_cmd_write(cmd))
Jan Karadcdbed82012-02-10 11:03:01 +0100804 sb = get_super_thawed(bdev);
805 else
806 sb = get_super(bdev);
David Howells93614012006-09-30 20:45:40 +0200807 bdput(bdev);
808 if (!sb)
809 return ERR_PTR(-ENODEV);
810
811 return sb;
812#else
813 return ERR_PTR(-ENODEV);
814#endif
815}
816
817/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 * This is the system call interface. This communicates with
819 * the user-level programs. Currently this only supports diskquota
820 * calls. Maybe we need to add the process quotas etc. in the future,
821 * but we probably should use rlimits for that.
822 */
Dominik Brodowskicb0b4762018-03-17 16:26:56 +0100823int kernel_quotactl(unsigned int cmd, const char __user *special,
824 qid_t id, void __user *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
826 uint cmds, type;
827 struct super_block *sb = NULL;
Jan Karaf00c9e42010-09-15 17:38:58 +0200828 struct path path, *pathp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 int ret;
830
831 cmds = cmd >> SUBCMDSHIFT;
832 type = cmd & SUBCMDMASK;
833
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500834 /*
835 * As a special case Q_SYNC can be called without a specific device.
836 * It will iterate all superblocks that have quota enabled and call
837 * the sync action on each of them.
838 */
839 if (!special) {
840 if (cmds == Q_SYNC)
841 return quota_sync_all(type);
842 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
844
Jan Karaf00c9e42010-09-15 17:38:58 +0200845 /*
846 * Path for quotaon has to be resolved before grabbing superblock
847 * because that gets s_umount sem which is also possibly needed by path
848 * resolution (think about autofs) and thus deadlocks could arise.
849 */
850 if (cmds == Q_QUOTAON) {
Trond Myklebust815d4052011-09-26 20:36:09 -0400851 ret = user_path_at(AT_FDCWD, addr, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
Jan Karaf00c9e42010-09-15 17:38:58 +0200852 if (ret)
853 pathp = ERR_PTR(ret);
854 else
855 pathp = &path;
856 }
857
Jan Karadcdbed82012-02-10 11:03:01 +0100858 sb = quotactl_block(special, cmds);
Jan Kara0aaa6182011-10-10 18:32:06 +0200859 if (IS_ERR(sb)) {
860 ret = PTR_ERR(sb);
861 goto out;
862 }
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500863
Jan Karaf00c9e42010-09-15 17:38:58 +0200864 ret = do_quotactl(sb, type, cmds, id, addr, pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Jan Kara7d6cd732016-11-23 13:16:10 +0100866 if (!quotactl_cmd_onoff(cmds))
867 drop_super(sb);
868 else
869 drop_super_exclusive(sb);
Jan Kara0aaa6182011-10-10 18:32:06 +0200870out:
Jan Karaf00c9e42010-09-15 17:38:58 +0200871 if (pathp && !IS_ERR(pathp))
872 path_put(pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return ret;
874}
Dominik Brodowskicb0b4762018-03-17 16:26:56 +0100875
876SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special,
877 qid_t, id, void __user *, addr)
878{
879 return kernel_quotactl(cmd, special, id, addr);
880}