blob: 43612e2a73af8c7d334dabe6278f6e427c916f42 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Christoph Hellwigc988afb2010-02-16 03:44:50 -050022static int check_quotactl_permission(struct super_block *sb, int type, int cmd,
23 qid_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024{
Christoph Hellwigc988afb2010-02-16 03:44:50 -050025 switch (cmd) {
26 /* these commands do not require any special privilegues */
27 case Q_GETFMT:
28 case Q_SYNC:
29 case Q_GETINFO:
30 case Q_XGETQSTAT:
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -050031 case Q_XGETQSTATV:
Christoph Hellwigc988afb2010-02-16 03:44:50 -050032 case Q_XQUOTASYNC:
33 break;
34 /* allow to query information for dquots we "own" */
35 case Q_GETQUOTA:
36 case Q_XGETQUOTA:
Eric W. Biederman74a8a102012-09-16 02:07:49 -070037 if ((type == USRQUOTA && uid_eq(current_euid(), make_kuid(current_user_ns(), id))) ||
38 (type == GRPQUOTA && in_egroup_p(make_kgid(current_user_ns(), id))))
Christoph Hellwigc988afb2010-02-16 03:44:50 -050039 break;
40 /*FALLTHROUGH*/
41 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 if (!capable(CAP_SYS_ADMIN))
43 return -EPERM;
44 }
45
Christoph Hellwigc988afb2010-02-16 03:44:50 -050046 return security_quotactl(cmd, type, id, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047}
48
Al Viro01a05b32010-03-23 06:06:58 -040049static void quota_sync_one(struct super_block *sb, void *arg)
50{
Jan Kara2c5f6482014-09-30 10:43:09 +020051 int type = *(int *)arg;
52
53 if (sb->s_qcop && sb->s_qcop->quota_sync &&
54 (sb->s_quota_types & (1 << type)))
55 sb->s_qcop->quota_sync(sb, type);
Al Viro01a05b32010-03-23 06:06:58 -040056}
57
Christoph Hellwig6ae09572010-02-16 03:44:49 -050058static int quota_sync_all(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
Christoph Hellwig6ae09572010-02-16 03:44:49 -050060 int ret;
61
62 if (type >= MAXQUOTAS)
63 return -EINVAL;
64 ret = security_quotactl(Q_SYNC, type, 0, NULL);
Al Viro01a05b32010-03-23 06:06:58 -040065 if (!ret)
66 iterate_supers(quota_sync_one, &type);
67 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
69
Jan Karad3b86322014-10-08 16:07:12 +020070unsigned int qtype_enforce_flag(int type)
71{
72 switch (type) {
73 case USRQUOTA:
74 return FS_QUOTA_UDQ_ENFD;
75 case GRPQUOTA:
76 return FS_QUOTA_GDQ_ENFD;
77 case PRJQUOTA:
78 return FS_QUOTA_PDQ_ENFD;
79 }
80 return 0;
81}
82
Eric Sandeen3218a3e2016-02-08 11:21:24 +110083static int quota_quotaon(struct super_block *sb, int type, qid_t id,
Al Viro8c54ca92016-11-20 19:49:34 -050084 const struct path *path)
Christoph Hellwigc411e5f2010-02-16 03:44:47 -050085{
Jan Karaaaa3dae2014-10-08 18:35:31 +020086 if (!sb->s_qcop->quota_on && !sb->s_qcop->quota_enable)
Jan Karaf00c9e42010-09-15 17:38:58 +020087 return -ENOSYS;
Jan Karad3b86322014-10-08 16:07:12 +020088 if (sb->s_qcop->quota_enable)
89 return sb->s_qcop->quota_enable(sb, qtype_enforce_flag(type));
Jan Karaf00c9e42010-09-15 17:38:58 +020090 if (IS_ERR(path))
91 return PTR_ERR(path);
92 return sb->s_qcop->quota_on(sb, type, id, path);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -050093}
94
Jan Karad3b86322014-10-08 16:07:12 +020095static int quota_quotaoff(struct super_block *sb, int type)
96{
97 if (!sb->s_qcop->quota_off && !sb->s_qcop->quota_disable)
98 return -ENOSYS;
99 if (sb->s_qcop->quota_disable)
100 return sb->s_qcop->quota_disable(sb, qtype_enforce_flag(type));
101 return sb->s_qcop->quota_off(sb, type);
102}
103
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500104static int quota_getfmt(struct super_block *sb, int type, void __user *addr)
105{
106 __u32 fmt;
107
Jan Kara9d1ccbe2016-11-23 13:35:14 +0100108 if (!sb_has_quota_active(sb, type))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500109 return -ESRCH;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500110 fmt = sb_dqopt(sb)->info[type].dqi_format->qf_fmt_id;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500111 if (copy_to_user(addr, &fmt, sizeof(fmt)))
112 return -EFAULT;
113 return 0;
114}
115
116static int quota_getinfo(struct super_block *sb, int type, void __user *addr)
117{
Jan Kara0a2403392014-11-19 00:42:09 +0100118 struct qc_state state;
119 struct qc_type_state *tstate;
120 struct if_dqinfo uinfo;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500121 int ret;
122
Jan Kara0a2403392014-11-19 00:42:09 +0100123 /* This checks whether qc_state has enough entries... */
124 BUILD_BUG_ON(MAXQUOTAS > XQM_MAXQUOTAS);
125 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 Hellwigc411e5f2010-02-16 03:44:47 -0500217 if (copy_to_user(addr, &idq, sizeof(idq)))
218 return -EFAULT;
219 return 0;
220}
221
Eric Sandeen926132c2016-02-08 11:22:21 +1100222/*
223 * Return quota for next active quota >= this id, if any exists,
Eric Sandeenba581482016-01-22 12:25:32 -0600224 * otherwise return -ENOENT via ->get_nextdqblk
Eric Sandeen926132c2016-02-08 11:22:21 +1100225 */
226static int quota_getnextquota(struct super_block *sb, int type, qid_t id,
227 void __user *addr)
228{
229 struct kqid qid;
230 struct qc_dqblk fdq;
231 struct if_nextdqblk idq;
232 int ret;
233
234 if (!sb->s_qcop->get_nextdqblk)
235 return -ENOSYS;
236 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500237 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric Sandeen926132c2016-02-08 11:22:21 +1100238 return -EINVAL;
239 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &fdq);
240 if (ret)
241 return ret;
242 /* struct if_nextdqblk is a superset of struct if_dqblk */
243 copy_to_if_dqblk((struct if_dqblk *)&idq, &fdq);
244 idq.dqb_id = from_kqid(current_user_ns(), qid);
245 if (copy_to_user(addr, &idq, sizeof(idq)))
246 return -EFAULT;
247 return 0;
248}
249
Jan Kara14bf61f2014-10-09 16:03:13 +0200250static void copy_from_if_dqblk(struct qc_dqblk *dst, struct if_dqblk *src)
Christoph Hellwigc472b432010-05-06 17:05:17 -0400251{
Jan Kara14bf61f2014-10-09 16:03:13 +0200252 dst->d_spc_hardlimit = qbtos(src->dqb_bhardlimit);
253 dst->d_spc_softlimit = qbtos(src->dqb_bsoftlimit);
254 dst->d_space = src->dqb_curspace;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400255 dst->d_ino_hardlimit = src->dqb_ihardlimit;
256 dst->d_ino_softlimit = src->dqb_isoftlimit;
Jan Kara14bf61f2014-10-09 16:03:13 +0200257 dst->d_ino_count = src->dqb_curinodes;
258 dst->d_spc_timer = src->dqb_btime;
259 dst->d_ino_timer = src->dqb_itime;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400260
261 dst->d_fieldmask = 0;
262 if (src->dqb_valid & QIF_BLIMITS)
Jan Kara14bf61f2014-10-09 16:03:13 +0200263 dst->d_fieldmask |= QC_SPC_SOFT | QC_SPC_HARD;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400264 if (src->dqb_valid & QIF_SPACE)
Jan Kara14bf61f2014-10-09 16:03:13 +0200265 dst->d_fieldmask |= QC_SPACE;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400266 if (src->dqb_valid & QIF_ILIMITS)
Jan Kara14bf61f2014-10-09 16:03:13 +0200267 dst->d_fieldmask |= QC_INO_SOFT | QC_INO_HARD;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400268 if (src->dqb_valid & QIF_INODES)
Jan Kara14bf61f2014-10-09 16:03:13 +0200269 dst->d_fieldmask |= QC_INO_COUNT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400270 if (src->dqb_valid & QIF_BTIME)
Jan Kara14bf61f2014-10-09 16:03:13 +0200271 dst->d_fieldmask |= QC_SPC_TIMER;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400272 if (src->dqb_valid & QIF_ITIME)
Jan Kara14bf61f2014-10-09 16:03:13 +0200273 dst->d_fieldmask |= QC_INO_TIMER;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400274}
275
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500276static int quota_setquota(struct super_block *sb, int type, qid_t id,
277 void __user *addr)
278{
Jan Kara14bf61f2014-10-09 16:03:13 +0200279 struct qc_dqblk fdq;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500280 struct if_dqblk idq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700281 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500282
283 if (copy_from_user(&idq, addr, sizeof(idq)))
284 return -EFAULT;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500285 if (!sb->s_qcop->set_dqblk)
286 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700287 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500288 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700289 return -EINVAL;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400290 copy_from_if_dqblk(&fdq, &idq);
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700291 return sb->s_qcop->set_dqblk(sb, qid, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500292}
293
Jan Kara38e478c2014-10-08 15:56:21 +0200294static int quota_enable(struct super_block *sb, void __user *addr)
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500295{
296 __u32 flags;
297
298 if (copy_from_user(&flags, addr, sizeof(flags)))
299 return -EFAULT;
Jan Kara38e478c2014-10-08 15:56:21 +0200300 if (!sb->s_qcop->quota_enable)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500301 return -ENOSYS;
Jan Kara38e478c2014-10-08 15:56:21 +0200302 return sb->s_qcop->quota_enable(sb, flags);
303}
304
305static int quota_disable(struct super_block *sb, void __user *addr)
306{
307 __u32 flags;
308
309 if (copy_from_user(&flags, addr, sizeof(flags)))
310 return -EFAULT;
311 if (!sb->s_qcop->quota_disable)
312 return -ENOSYS;
313 return sb->s_qcop->quota_disable(sb, flags);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500314}
315
Jan Karabc230e42014-11-19 16:17:45 +0100316static int quota_state_to_flags(struct qc_state *state)
317{
318 int flags = 0;
319
320 if (state->s_state[USRQUOTA].flags & QCI_ACCT_ENABLED)
321 flags |= FS_QUOTA_UDQ_ACCT;
322 if (state->s_state[USRQUOTA].flags & QCI_LIMITS_ENFORCED)
323 flags |= FS_QUOTA_UDQ_ENFD;
324 if (state->s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED)
325 flags |= FS_QUOTA_GDQ_ACCT;
326 if (state->s_state[GRPQUOTA].flags & QCI_LIMITS_ENFORCED)
327 flags |= FS_QUOTA_GDQ_ENFD;
328 if (state->s_state[PRJQUOTA].flags & QCI_ACCT_ENABLED)
329 flags |= FS_QUOTA_PDQ_ACCT;
330 if (state->s_state[PRJQUOTA].flags & QCI_LIMITS_ENFORCED)
331 flags |= FS_QUOTA_PDQ_ENFD;
332 return flags;
333}
334
335static int quota_getstate(struct super_block *sb, struct fs_quota_stat *fqs)
336{
337 int type;
338 struct qc_state state;
339 int ret;
340
Eric Sandeen3cd01262016-08-12 17:40:09 -0500341 memset(&state, 0, sizeof (struct qc_state));
Jan Karabc230e42014-11-19 16:17:45 +0100342 ret = sb->s_qcop->get_state(sb, &state);
343 if (ret < 0)
344 return ret;
345
346 memset(fqs, 0, sizeof(*fqs));
347 fqs->qs_version = FS_QSTAT_VERSION;
348 fqs->qs_flags = quota_state_to_flags(&state);
349 /* No quota enabled? */
350 if (!fqs->qs_flags)
351 return -ENOSYS;
352 fqs->qs_incoredqs = state.s_incoredqs;
353 /*
354 * GETXSTATE quotactl has space for just one set of time limits so
355 * report them for the first enabled quota type
356 */
357 for (type = 0; type < XQM_MAXQUOTAS; type++)
358 if (state.s_state[type].flags & QCI_ACCT_ENABLED)
359 break;
360 BUG_ON(type == XQM_MAXQUOTAS);
361 fqs->qs_btimelimit = state.s_state[type].spc_timelimit;
362 fqs->qs_itimelimit = state.s_state[type].ino_timelimit;
363 fqs->qs_rtbtimelimit = state.s_state[type].rt_spc_timelimit;
364 fqs->qs_bwarnlimit = state.s_state[type].spc_warnlimit;
365 fqs->qs_iwarnlimit = state.s_state[type].ino_warnlimit;
Eric Sandeen3cd01262016-08-12 17:40:09 -0500366
367 /* Inodes may be allocated even if inactive; copy out if present */
368 if (state.s_state[USRQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100369 fqs->qs_uquota.qfs_ino = state.s_state[USRQUOTA].ino;
370 fqs->qs_uquota.qfs_nblks = state.s_state[USRQUOTA].blocks;
371 fqs->qs_uquota.qfs_nextents = state.s_state[USRQUOTA].nextents;
372 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500373 if (state.s_state[GRPQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100374 fqs->qs_gquota.qfs_ino = state.s_state[GRPQUOTA].ino;
375 fqs->qs_gquota.qfs_nblks = state.s_state[GRPQUOTA].blocks;
376 fqs->qs_gquota.qfs_nextents = state.s_state[GRPQUOTA].nextents;
377 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500378 if (state.s_state[PRJQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100379 /*
380 * Q_XGETQSTAT doesn't have room for both group and project
381 * quotas. So, allow the project quota values to be copied out
382 * only if there is no group quota information available.
383 */
384 if (!(state.s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED)) {
385 fqs->qs_gquota.qfs_ino = state.s_state[PRJQUOTA].ino;
386 fqs->qs_gquota.qfs_nblks =
387 state.s_state[PRJQUOTA].blocks;
388 fqs->qs_gquota.qfs_nextents =
389 state.s_state[PRJQUOTA].nextents;
390 }
391 }
392 return 0;
393}
394
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500395static int quota_getxstate(struct super_block *sb, void __user *addr)
396{
397 struct fs_quota_stat fqs;
398 int ret;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500399
Jan Kara59b6ba62014-11-19 16:44:58 +0100400 if (!sb->s_qcop->get_state)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500401 return -ENOSYS;
Jan Kara59b6ba62014-11-19 16:44:58 +0100402 ret = quota_getstate(sb, &fqs);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500403 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
404 return -EFAULT;
405 return ret;
406}
407
Jan Karabc230e42014-11-19 16:17:45 +0100408static int quota_getstatev(struct super_block *sb, struct fs_quota_statv *fqs)
409{
410 int type;
411 struct qc_state state;
412 int ret;
413
Eric Sandeen3cd01262016-08-12 17:40:09 -0500414 memset(&state, 0, sizeof (struct qc_state));
Jan Karabc230e42014-11-19 16:17:45 +0100415 ret = sb->s_qcop->get_state(sb, &state);
416 if (ret < 0)
417 return ret;
418
419 memset(fqs, 0, sizeof(*fqs));
420 fqs->qs_version = FS_QSTAT_VERSION;
421 fqs->qs_flags = quota_state_to_flags(&state);
422 /* No quota enabled? */
423 if (!fqs->qs_flags)
424 return -ENOSYS;
425 fqs->qs_incoredqs = state.s_incoredqs;
426 /*
427 * GETXSTATV quotactl has space for just one set of time limits so
428 * report them for the first enabled quota type
429 */
430 for (type = 0; type < XQM_MAXQUOTAS; type++)
431 if (state.s_state[type].flags & QCI_ACCT_ENABLED)
432 break;
433 BUG_ON(type == XQM_MAXQUOTAS);
434 fqs->qs_btimelimit = state.s_state[type].spc_timelimit;
435 fqs->qs_itimelimit = state.s_state[type].ino_timelimit;
436 fqs->qs_rtbtimelimit = state.s_state[type].rt_spc_timelimit;
437 fqs->qs_bwarnlimit = state.s_state[type].spc_warnlimit;
438 fqs->qs_iwarnlimit = state.s_state[type].ino_warnlimit;
Eric Sandeen3cd01262016-08-12 17:40:09 -0500439
440 /* Inodes may be allocated even if inactive; copy out if present */
441 if (state.s_state[USRQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100442 fqs->qs_uquota.qfs_ino = state.s_state[USRQUOTA].ino;
443 fqs->qs_uquota.qfs_nblks = state.s_state[USRQUOTA].blocks;
444 fqs->qs_uquota.qfs_nextents = state.s_state[USRQUOTA].nextents;
445 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500446 if (state.s_state[GRPQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100447 fqs->qs_gquota.qfs_ino = state.s_state[GRPQUOTA].ino;
448 fqs->qs_gquota.qfs_nblks = state.s_state[GRPQUOTA].blocks;
449 fqs->qs_gquota.qfs_nextents = state.s_state[GRPQUOTA].nextents;
450 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500451 if (state.s_state[PRJQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100452 fqs->qs_pquota.qfs_ino = state.s_state[PRJQUOTA].ino;
453 fqs->qs_pquota.qfs_nblks = state.s_state[PRJQUOTA].blocks;
454 fqs->qs_pquota.qfs_nextents = state.s_state[PRJQUOTA].nextents;
455 }
456 return 0;
457}
458
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500459static int quota_getxstatev(struct super_block *sb, void __user *addr)
460{
461 struct fs_quota_statv fqs;
462 int ret;
463
Jan Kara59b6ba62014-11-19 16:44:58 +0100464 if (!sb->s_qcop->get_state)
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500465 return -ENOSYS;
466
467 memset(&fqs, 0, sizeof(fqs));
468 if (copy_from_user(&fqs, addr, 1)) /* Just read qs_version */
469 return -EFAULT;
470
471 /* If this kernel doesn't support user specified version, fail */
472 switch (fqs.qs_version) {
473 case FS_QSTATV_VERSION1:
474 break;
475 default:
476 return -EINVAL;
477 }
Jan Kara59b6ba62014-11-19 16:44:58 +0100478 ret = quota_getstatev(sb, &fqs);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500479 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
480 return -EFAULT;
481 return ret;
482}
483
Jan Kara14bf61f2014-10-09 16:03:13 +0200484/*
485 * XFS defines BBTOB and BTOBB macros inside fs/xfs/ and we cannot move them
486 * out of there as xfsprogs rely on definitions being in that header file. So
487 * just define same functions here for quota purposes.
488 */
489#define XFS_BB_SHIFT 9
490
491static inline u64 quota_bbtob(u64 blocks)
492{
493 return blocks << XFS_BB_SHIFT;
494}
495
496static inline u64 quota_btobb(u64 bytes)
497{
498 return (bytes + (1 << XFS_BB_SHIFT) - 1) >> XFS_BB_SHIFT;
499}
500
501static void copy_from_xfs_dqblk(struct qc_dqblk *dst, struct fs_disk_quota *src)
502{
503 dst->d_spc_hardlimit = quota_bbtob(src->d_blk_hardlimit);
504 dst->d_spc_softlimit = quota_bbtob(src->d_blk_softlimit);
505 dst->d_ino_hardlimit = src->d_ino_hardlimit;
506 dst->d_ino_softlimit = src->d_ino_softlimit;
507 dst->d_space = quota_bbtob(src->d_bcount);
508 dst->d_ino_count = src->d_icount;
509 dst->d_ino_timer = src->d_itimer;
510 dst->d_spc_timer = src->d_btimer;
511 dst->d_ino_warns = src->d_iwarns;
512 dst->d_spc_warns = src->d_bwarns;
513 dst->d_rt_spc_hardlimit = quota_bbtob(src->d_rtb_hardlimit);
514 dst->d_rt_spc_softlimit = quota_bbtob(src->d_rtb_softlimit);
515 dst->d_rt_space = quota_bbtob(src->d_rtbcount);
516 dst->d_rt_spc_timer = src->d_rtbtimer;
517 dst->d_rt_spc_warns = src->d_rtbwarns;
518 dst->d_fieldmask = 0;
519 if (src->d_fieldmask & FS_DQ_ISOFT)
520 dst->d_fieldmask |= QC_INO_SOFT;
521 if (src->d_fieldmask & FS_DQ_IHARD)
522 dst->d_fieldmask |= QC_INO_HARD;
523 if (src->d_fieldmask & FS_DQ_BSOFT)
524 dst->d_fieldmask |= QC_SPC_SOFT;
525 if (src->d_fieldmask & FS_DQ_BHARD)
526 dst->d_fieldmask |= QC_SPC_HARD;
527 if (src->d_fieldmask & FS_DQ_RTBSOFT)
528 dst->d_fieldmask |= QC_RT_SPC_SOFT;
529 if (src->d_fieldmask & FS_DQ_RTBHARD)
530 dst->d_fieldmask |= QC_RT_SPC_HARD;
531 if (src->d_fieldmask & FS_DQ_BTIMER)
532 dst->d_fieldmask |= QC_SPC_TIMER;
533 if (src->d_fieldmask & FS_DQ_ITIMER)
534 dst->d_fieldmask |= QC_INO_TIMER;
535 if (src->d_fieldmask & FS_DQ_RTBTIMER)
536 dst->d_fieldmask |= QC_RT_SPC_TIMER;
537 if (src->d_fieldmask & FS_DQ_BWARNS)
538 dst->d_fieldmask |= QC_SPC_WARNS;
539 if (src->d_fieldmask & FS_DQ_IWARNS)
540 dst->d_fieldmask |= QC_INO_WARNS;
541 if (src->d_fieldmask & FS_DQ_RTBWARNS)
542 dst->d_fieldmask |= QC_RT_SPC_WARNS;
543 if (src->d_fieldmask & FS_DQ_BCOUNT)
544 dst->d_fieldmask |= QC_SPACE;
545 if (src->d_fieldmask & FS_DQ_ICOUNT)
546 dst->d_fieldmask |= QC_INO_COUNT;
547 if (src->d_fieldmask & FS_DQ_RTBCOUNT)
548 dst->d_fieldmask |= QC_RT_SPACE;
549}
550
Jan Karac39fb532014-12-16 16:12:27 +0100551static void copy_qcinfo_from_xfs_dqblk(struct qc_info *dst,
552 struct fs_disk_quota *src)
553{
554 memset(dst, 0, sizeof(*dst));
555 dst->i_spc_timelimit = src->d_btimer;
556 dst->i_ino_timelimit = src->d_itimer;
557 dst->i_rt_spc_timelimit = src->d_rtbtimer;
558 dst->i_ino_warnlimit = src->d_iwarns;
559 dst->i_spc_warnlimit = src->d_bwarns;
560 dst->i_rt_spc_warnlimit = src->d_rtbwarns;
561 if (src->d_fieldmask & FS_DQ_BWARNS)
562 dst->i_fieldmask |= QC_SPC_WARNS;
563 if (src->d_fieldmask & FS_DQ_IWARNS)
564 dst->i_fieldmask |= QC_INO_WARNS;
565 if (src->d_fieldmask & FS_DQ_RTBWARNS)
566 dst->i_fieldmask |= QC_RT_SPC_WARNS;
567 if (src->d_fieldmask & FS_DQ_BTIMER)
568 dst->i_fieldmask |= QC_SPC_TIMER;
569 if (src->d_fieldmask & FS_DQ_ITIMER)
570 dst->i_fieldmask |= QC_INO_TIMER;
571 if (src->d_fieldmask & FS_DQ_RTBTIMER)
572 dst->i_fieldmask |= QC_RT_SPC_TIMER;
573}
574
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500575static int quota_setxquota(struct super_block *sb, int type, qid_t id,
576 void __user *addr)
577{
578 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200579 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700580 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500581
582 if (copy_from_user(&fdq, addr, sizeof(fdq)))
583 return -EFAULT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400584 if (!sb->s_qcop->set_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500585 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700586 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500587 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700588 return -EINVAL;
Jan Karac39fb532014-12-16 16:12:27 +0100589 /* Are we actually setting timer / warning limits for all users? */
Eric W. Biedermancfd4c702016-07-05 11:10:57 -0500590 if (from_kqid(sb->s_user_ns, qid) == 0 &&
Jan Karac39fb532014-12-16 16:12:27 +0100591 fdq.d_fieldmask & (FS_DQ_WARNS_MASK | FS_DQ_TIMER_MASK)) {
592 struct qc_info qinfo;
593 int ret;
594
595 if (!sb->s_qcop->set_info)
596 return -EINVAL;
597 copy_qcinfo_from_xfs_dqblk(&qinfo, &fdq);
598 ret = sb->s_qcop->set_info(sb, type, &qinfo);
599 if (ret)
600 return ret;
601 /* These are already done */
602 fdq.d_fieldmask &= ~(FS_DQ_WARNS_MASK | FS_DQ_TIMER_MASK);
603 }
Jan Kara14bf61f2014-10-09 16:03:13 +0200604 copy_from_xfs_dqblk(&qdq, &fdq);
605 return sb->s_qcop->set_dqblk(sb, qid, &qdq);
606}
607
608static void copy_to_xfs_dqblk(struct fs_disk_quota *dst, struct qc_dqblk *src,
609 int type, qid_t id)
610{
611 memset(dst, 0, sizeof(*dst));
612 dst->d_version = FS_DQUOT_VERSION;
613 dst->d_id = id;
614 if (type == USRQUOTA)
615 dst->d_flags = FS_USER_QUOTA;
616 else if (type == PRJQUOTA)
617 dst->d_flags = FS_PROJ_QUOTA;
618 else
619 dst->d_flags = FS_GROUP_QUOTA;
620 dst->d_blk_hardlimit = quota_btobb(src->d_spc_hardlimit);
621 dst->d_blk_softlimit = quota_btobb(src->d_spc_softlimit);
622 dst->d_ino_hardlimit = src->d_ino_hardlimit;
623 dst->d_ino_softlimit = src->d_ino_softlimit;
624 dst->d_bcount = quota_btobb(src->d_space);
625 dst->d_icount = src->d_ino_count;
626 dst->d_itimer = src->d_ino_timer;
627 dst->d_btimer = src->d_spc_timer;
628 dst->d_iwarns = src->d_ino_warns;
629 dst->d_bwarns = src->d_spc_warns;
630 dst->d_rtb_hardlimit = quota_btobb(src->d_rt_spc_hardlimit);
631 dst->d_rtb_softlimit = quota_btobb(src->d_rt_spc_softlimit);
632 dst->d_rtbcount = quota_btobb(src->d_rt_space);
633 dst->d_rtbtimer = src->d_rt_spc_timer;
634 dst->d_rtbwarns = src->d_rt_spc_warns;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500635}
636
637static int quota_getxquota(struct super_block *sb, int type, qid_t id,
638 void __user *addr)
639{
640 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200641 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700642 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500643 int ret;
644
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400645 if (!sb->s_qcop->get_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500646 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700647 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500648 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700649 return -EINVAL;
Jan Kara14bf61f2014-10-09 16:03:13 +0200650 ret = sb->s_qcop->get_dqblk(sb, qid, &qdq);
651 if (ret)
652 return ret;
653 copy_to_xfs_dqblk(&fdq, &qdq, type, id);
654 if (copy_to_user(addr, &fdq, sizeof(fdq)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500655 return -EFAULT;
656 return ret;
657}
658
Eric Sandeen8b375242016-02-08 11:21:50 +1100659/*
660 * Return quota for next active quota >= this id, if any exists,
Eric Sandeenba581482016-01-22 12:25:32 -0600661 * otherwise return -ENOENT via ->get_nextdqblk.
Eric Sandeen8b375242016-02-08 11:21:50 +1100662 */
663static int quota_getnextxquota(struct super_block *sb, int type, qid_t id,
664 void __user *addr)
665{
666 struct fs_disk_quota fdq;
667 struct qc_dqblk qdq;
668 struct kqid qid;
669 qid_t id_out;
670 int ret;
671
672 if (!sb->s_qcop->get_nextdqblk)
673 return -ENOSYS;
674 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500675 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric Sandeen8b375242016-02-08 11:21:50 +1100676 return -EINVAL;
677 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &qdq);
678 if (ret)
679 return ret;
680 id_out = from_kqid(current_user_ns(), qid);
681 copy_to_xfs_dqblk(&fdq, &qdq, type, id_out);
682 if (copy_to_user(addr, &fdq, sizeof(fdq)))
683 return -EFAULT;
684 return ret;
685}
686
Eric Sandeen9da93f92014-05-05 17:25:50 +1000687static int quota_rmxquota(struct super_block *sb, void __user *addr)
688{
689 __u32 flags;
690
691 if (copy_from_user(&flags, addr, sizeof(flags)))
692 return -EFAULT;
693 if (!sb->s_qcop->rm_xquota)
694 return -ENOSYS;
695 return sb->s_qcop->rm_xquota(sb, flags);
696}
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698/* Copy parameters and call proper function */
Jan Kara268157b2009-01-27 15:47:22 +0100699static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id,
Al Viro8c54ca92016-11-20 19:49:34 -0500700 void __user *addr, const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500702 int ret;
703
704 if (type >= (XQM_COMMAND(cmd) ? XQM_MAXQUOTAS : MAXQUOTAS))
705 return -EINVAL;
Jan Kara2c5f6482014-09-30 10:43:09 +0200706 /*
707 * Quota not supported on this fs? Check this before s_quota_types
708 * since they needn't be set if quota is not supported at all.
709 */
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500710 if (!sb->s_qcop)
711 return -ENOSYS;
Jan Kara2c5f6482014-09-30 10:43:09 +0200712 if (!(sb->s_quota_types & (1 << type)))
713 return -EINVAL;
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500714
715 ret = check_quotactl_permission(sb, type, cmd, id);
716 if (ret < 0)
717 return ret;
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 switch (cmd) {
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500720 case Q_QUOTAON:
Eric Sandeen3218a3e2016-02-08 11:21:24 +1100721 return quota_quotaon(sb, type, id, path);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500722 case Q_QUOTAOFF:
Jan Karad3b86322014-10-08 16:07:12 +0200723 return quota_quotaoff(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500724 case Q_GETFMT:
725 return quota_getfmt(sb, type, addr);
726 case Q_GETINFO:
727 return quota_getinfo(sb, type, addr);
728 case Q_SETINFO:
729 return quota_setinfo(sb, type, addr);
730 case Q_GETQUOTA:
731 return quota_getquota(sb, type, id, addr);
Eric Sandeen926132c2016-02-08 11:22:21 +1100732 case Q_GETNEXTQUOTA:
733 return quota_getnextquota(sb, type, id, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500734 case Q_SETQUOTA:
735 return quota_setquota(sb, type, id, addr);
736 case Q_SYNC:
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500737 if (!sb->s_qcop->quota_sync)
738 return -ENOSYS;
Jan Karaceed1722012-07-03 16:45:28 +0200739 return sb->s_qcop->quota_sync(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500740 case Q_XQUOTAON:
Jan Kara38e478c2014-10-08 15:56:21 +0200741 return quota_enable(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500742 case Q_XQUOTAOFF:
Jan Kara38e478c2014-10-08 15:56:21 +0200743 return quota_disable(sb, addr);
Eric Sandeen9da93f92014-05-05 17:25:50 +1000744 case Q_XQUOTARM:
745 return quota_rmxquota(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500746 case Q_XGETQSTAT:
747 return quota_getxstate(sb, addr);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500748 case Q_XGETQSTATV:
749 return quota_getxstatev(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500750 case Q_XSETQLIM:
751 return quota_setxquota(sb, type, id, addr);
752 case Q_XGETQUOTA:
753 return quota_getxquota(sb, type, id, addr);
Eric Sandeen8b375242016-02-08 11:21:50 +1100754 case Q_XGETNEXTQUOTA:
755 return quota_getnextxquota(sb, type, id, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500756 case Q_XQUOTASYNC:
David Howellsbc98a422017-07-17 08:45:34 +0100757 if (sb_rdonly(sb))
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500758 return -EROFS;
Christoph Hellwig4b217ed2012-02-20 02:28:18 +0000759 /* XFS quotas are fully coherent now, making this call a noop */
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500760 return 0;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500761 default:
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500762 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Lee Jones56df1272012-11-03 23:02:28 +0100766#ifdef CONFIG_BLOCK
767
Jan Karadcdbed82012-02-10 11:03:01 +0100768/* Return 1 if 'cmd' will block on frozen filesystem */
769static int quotactl_cmd_write(int cmd)
770{
Jan Karaccf370e2016-02-18 14:03:03 +0100771 /*
772 * We cannot allow Q_GETQUOTA and Q_GETNEXTQUOTA without write access
773 * as dquot_acquire() may allocate space for new structure and OCFS2
774 * needs to increment on-disk use count.
775 */
Jan Karadcdbed82012-02-10 11:03:01 +0100776 switch (cmd) {
777 case Q_GETFMT:
778 case Q_GETINFO:
779 case Q_SYNC:
780 case Q_XGETQSTAT:
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500781 case Q_XGETQSTATV:
Jan Karadcdbed82012-02-10 11:03:01 +0100782 case Q_XGETQUOTA:
Eric Sandeen8b375242016-02-08 11:21:50 +1100783 case Q_XGETNEXTQUOTA:
Jan Karadcdbed82012-02-10 11:03:01 +0100784 case Q_XQUOTASYNC:
785 return 0;
786 }
787 return 1;
788}
Lee Jones56df1272012-11-03 23:02:28 +0100789#endif /* CONFIG_BLOCK */
790
Jan Kara7d6cd732016-11-23 13:16:10 +0100791/* Return true if quotactl command is manipulating quota on/off state */
792static bool quotactl_cmd_onoff(int cmd)
793{
794 return (cmd == Q_QUOTAON) || (cmd == Q_QUOTAOFF);
795}
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797/*
David Howells93614012006-09-30 20:45:40 +0200798 * look up a superblock on which quota ops will be performed
799 * - use the name of a block device to find the superblock thereon
800 */
Jan Karadcdbed82012-02-10 11:03:01 +0100801static struct super_block *quotactl_block(const char __user *special, int cmd)
David Howells93614012006-09-30 20:45:40 +0200802{
803#ifdef CONFIG_BLOCK
804 struct block_device *bdev;
805 struct super_block *sb;
Jeff Layton91a27b22012-10-10 15:25:28 -0400806 struct filename *tmp = getname(special);
David Howells93614012006-09-30 20:45:40 +0200807
808 if (IS_ERR(tmp))
David Howellse231c2e2008-02-07 00:15:26 -0800809 return ERR_CAST(tmp);
Jeff Layton91a27b22012-10-10 15:25:28 -0400810 bdev = lookup_bdev(tmp->name);
David Howells93614012006-09-30 20:45:40 +0200811 putname(tmp);
812 if (IS_ERR(bdev))
David Howellse231c2e2008-02-07 00:15:26 -0800813 return ERR_CAST(bdev);
Jan Kara7d6cd732016-11-23 13:16:10 +0100814 if (quotactl_cmd_onoff(cmd))
815 sb = get_super_exclusive_thawed(bdev);
816 else if (quotactl_cmd_write(cmd))
Jan Karadcdbed82012-02-10 11:03:01 +0100817 sb = get_super_thawed(bdev);
818 else
819 sb = get_super(bdev);
David Howells93614012006-09-30 20:45:40 +0200820 bdput(bdev);
821 if (!sb)
822 return ERR_PTR(-ENODEV);
823
824 return sb;
825#else
826 return ERR_PTR(-ENODEV);
827#endif
828}
829
830/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 * This is the system call interface. This communicates with
832 * the user-level programs. Currently this only supports diskquota
833 * calls. Maybe we need to add the process quotas etc. in the future,
834 * but we probably should use rlimits for that.
835 */
Heiko Carstens3cdad422009-01-14 14:14:22 +0100836SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special,
837 qid_t, id, void __user *, addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
839 uint cmds, type;
840 struct super_block *sb = NULL;
Jan Karaf00c9e42010-09-15 17:38:58 +0200841 struct path path, *pathp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 int ret;
843
844 cmds = cmd >> SUBCMDSHIFT;
845 type = cmd & SUBCMDMASK;
846
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500847 /*
848 * As a special case Q_SYNC can be called without a specific device.
849 * It will iterate all superblocks that have quota enabled and call
850 * the sync action on each of them.
851 */
852 if (!special) {
853 if (cmds == Q_SYNC)
854 return quota_sync_all(type);
855 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857
Jan Karaf00c9e42010-09-15 17:38:58 +0200858 /*
859 * Path for quotaon has to be resolved before grabbing superblock
860 * because that gets s_umount sem which is also possibly needed by path
861 * resolution (think about autofs) and thus deadlocks could arise.
862 */
863 if (cmds == Q_QUOTAON) {
Trond Myklebust815d4052011-09-26 20:36:09 -0400864 ret = user_path_at(AT_FDCWD, addr, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
Jan Karaf00c9e42010-09-15 17:38:58 +0200865 if (ret)
866 pathp = ERR_PTR(ret);
867 else
868 pathp = &path;
869 }
870
Jan Karadcdbed82012-02-10 11:03:01 +0100871 sb = quotactl_block(special, cmds);
Jan Kara0aaa6182011-10-10 18:32:06 +0200872 if (IS_ERR(sb)) {
873 ret = PTR_ERR(sb);
874 goto out;
875 }
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500876
Jan Karaf00c9e42010-09-15 17:38:58 +0200877 ret = do_quotactl(sb, type, cmds, id, addr, pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Jan Kara7d6cd732016-11-23 13:16:10 +0100879 if (!quotactl_cmd_onoff(cmds))
880 drop_super(sb);
881 else
882 drop_super_exclusive(sb);
Jan Kara0aaa6182011-10-10 18:32:06 +0200883out:
Jan Karaf00c9e42010-09-15 17:38:58 +0200884 if (pathp && !IS_ERR(pathp))
885 path_put(pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return ret;
887}