blob: 20d11cd21247a219914cbc0f320c790c7e92f372 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Quota code necessary even when VFS quota support is not compiled
3 * into the kernel. The interesting stuff is over in dquot.c, here
4 * we have symbols for initial quotactl(2) handling, the sysctl(2)
5 * variables, etc - things needed even when quota support disabled.
6 */
7
8#include <linux/fs.h>
9#include <linux/namei.h>
10#include <linux/slab.h>
11#include <asm/current.h>
Jeff Liuf3da9312012-05-28 23:40:17 +080012#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/security.h>
15#include <linux/syscalls.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080016#include <linux/capability.h>
Adrian Bunkbe586ba2005-11-07 00:59:35 -080017#include <linux/quotaops.h>
Vasily Tarasovb7163952007-07-15 23:41:12 -070018#include <linux/types.h>
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -050019#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Christoph Hellwigc988afb2010-02-16 03:44:50 -050021static int check_quotactl_permission(struct super_block *sb, int type, int cmd,
22 qid_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023{
Christoph Hellwigc988afb2010-02-16 03:44:50 -050024 switch (cmd) {
25 /* these commands do not require any special privilegues */
26 case Q_GETFMT:
27 case Q_SYNC:
28 case Q_GETINFO:
29 case Q_XGETQSTAT:
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -050030 case Q_XGETQSTATV:
Christoph Hellwigc988afb2010-02-16 03:44:50 -050031 case Q_XQUOTASYNC:
32 break;
33 /* allow to query information for dquots we "own" */
34 case Q_GETQUOTA:
35 case Q_XGETQUOTA:
Eric W. Biederman74a8a102012-09-16 02:07:49 -070036 if ((type == USRQUOTA && uid_eq(current_euid(), make_kuid(current_user_ns(), id))) ||
37 (type == GRPQUOTA && in_egroup_p(make_kgid(current_user_ns(), id))))
Christoph Hellwigc988afb2010-02-16 03:44:50 -050038 break;
39 /*FALLTHROUGH*/
40 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 if (!capable(CAP_SYS_ADMIN))
42 return -EPERM;
43 }
44
Christoph Hellwigc988afb2010-02-16 03:44:50 -050045 return security_quotactl(cmd, type, id, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}
47
Al Viro01a05b32010-03-23 06:06:58 -040048static void quota_sync_one(struct super_block *sb, void *arg)
49{
Jan Kara2c5f6482014-09-30 10:43:09 +020050 int type = *(int *)arg;
51
52 if (sb->s_qcop && sb->s_qcop->quota_sync &&
53 (sb->s_quota_types & (1 << type)))
54 sb->s_qcop->quota_sync(sb, type);
Al Viro01a05b32010-03-23 06:06:58 -040055}
56
Christoph Hellwig6ae09572010-02-16 03:44:49 -050057static int quota_sync_all(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Christoph Hellwig6ae09572010-02-16 03:44:49 -050059 int ret;
60
61 if (type >= MAXQUOTAS)
62 return -EINVAL;
63 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
Christoph Hellwigc411e5f2010-02-16 03:44:47 -050082static int quota_quotaon(struct super_block *sb, int type, int cmd, qid_t id,
Jan Karaf00c9e42010-09-15 17:38:58 +020083 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
Niu Yawei606cdcc2014-06-04 12:19:12 +0800107 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500108 if (!sb_has_quota_active(sb, type)) {
Niu Yawei606cdcc2014-06-04 12:19:12 +0800109 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500110 return -ESRCH;
111 }
112 fmt = sb_dqopt(sb)->info[type].dqi_format->qf_fmt_id;
Niu Yawei606cdcc2014-06-04 12:19:12 +0800113 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500114 if (copy_to_user(addr, &fmt, sizeof(fmt)))
115 return -EFAULT;
116 return 0;
117}
118
119static int quota_getinfo(struct super_block *sb, int type, void __user *addr)
120{
Jan Kara0a2403392014-11-19 00:42:09 +0100121 struct qc_state state;
122 struct qc_type_state *tstate;
123 struct if_dqinfo uinfo;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500124 int ret;
125
Jan Kara0a2403392014-11-19 00:42:09 +0100126 /* This checks whether qc_state has enough entries... */
127 BUILD_BUG_ON(MAXQUOTAS > XQM_MAXQUOTAS);
128 if (!sb->s_qcop->get_state)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500129 return -ENOSYS;
Jan Kara0a2403392014-11-19 00:42:09 +0100130 ret = sb->s_qcop->get_state(sb, &state);
131 if (ret)
132 return ret;
133 tstate = state.s_state + type;
134 if (!(tstate->flags & QCI_ACCT_ENABLED))
135 return -ESRCH;
136 memset(&uinfo, 0, sizeof(uinfo));
137 uinfo.dqi_bgrace = tstate->spc_timelimit;
138 uinfo.dqi_igrace = tstate->ino_timelimit;
139 if (tstate->flags & QCI_SYSFILE)
140 uinfo.dqi_flags |= DQF_SYS_FILE;
141 if (tstate->flags & QCI_ROOT_SQUASH)
142 uinfo.dqi_flags |= DQF_ROOT_SQUASH;
143 uinfo.dqi_valid = IIF_ALL;
144 if (!ret && copy_to_user(addr, &uinfo, sizeof(uinfo)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500145 return -EFAULT;
146 return ret;
147}
148
149static int quota_setinfo(struct super_block *sb, int type, void __user *addr)
150{
151 struct if_dqinfo info;
152
153 if (copy_from_user(&info, addr, sizeof(info)))
154 return -EFAULT;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500155 if (!sb->s_qcop->set_info)
156 return -ENOSYS;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500157 return sb->s_qcop->set_info(sb, type, &info);
158}
159
Jan Kara14bf61f2014-10-09 16:03:13 +0200160static inline qsize_t qbtos(qsize_t blocks)
161{
162 return blocks << QIF_DQBLKSIZE_BITS;
163}
164
165static inline qsize_t stoqb(qsize_t space)
166{
167 return (space + QIF_DQBLKSIZE - 1) >> QIF_DQBLKSIZE_BITS;
168}
169
170static void copy_to_if_dqblk(struct if_dqblk *dst, struct qc_dqblk *src)
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400171{
Dan Carpenter18da65e2013-11-01 13:21:54 +0300172 memset(dst, 0, sizeof(*dst));
Jan Kara14bf61f2014-10-09 16:03:13 +0200173 dst->dqb_bhardlimit = stoqb(src->d_spc_hardlimit);
174 dst->dqb_bsoftlimit = stoqb(src->d_spc_softlimit);
175 dst->dqb_curspace = src->d_space;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400176 dst->dqb_ihardlimit = src->d_ino_hardlimit;
177 dst->dqb_isoftlimit = src->d_ino_softlimit;
Jan Kara14bf61f2014-10-09 16:03:13 +0200178 dst->dqb_curinodes = src->d_ino_count;
179 dst->dqb_btime = src->d_spc_timer;
180 dst->dqb_itime = src->d_ino_timer;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400181 dst->dqb_valid = QIF_ALL;
182}
183
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500184static int quota_getquota(struct super_block *sb, int type, qid_t id,
185 void __user *addr)
186{
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700187 struct kqid qid;
Jan Kara14bf61f2014-10-09 16:03:13 +0200188 struct qc_dqblk fdq;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500189 struct if_dqblk idq;
190 int ret;
191
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500192 if (!sb->s_qcop->get_dqblk)
193 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700194 qid = make_kqid(current_user_ns(), type, id);
195 if (!qid_valid(qid))
196 return -EINVAL;
197 ret = sb->s_qcop->get_dqblk(sb, qid, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500198 if (ret)
199 return ret;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400200 copy_to_if_dqblk(&idq, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500201 if (copy_to_user(addr, &idq, sizeof(idq)))
202 return -EFAULT;
203 return 0;
204}
205
Jan Kara14bf61f2014-10-09 16:03:13 +0200206static void copy_from_if_dqblk(struct qc_dqblk *dst, struct if_dqblk *src)
Christoph Hellwigc472b432010-05-06 17:05:17 -0400207{
Jan Kara14bf61f2014-10-09 16:03:13 +0200208 dst->d_spc_hardlimit = qbtos(src->dqb_bhardlimit);
209 dst->d_spc_softlimit = qbtos(src->dqb_bsoftlimit);
210 dst->d_space = src->dqb_curspace;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400211 dst->d_ino_hardlimit = src->dqb_ihardlimit;
212 dst->d_ino_softlimit = src->dqb_isoftlimit;
Jan Kara14bf61f2014-10-09 16:03:13 +0200213 dst->d_ino_count = src->dqb_curinodes;
214 dst->d_spc_timer = src->dqb_btime;
215 dst->d_ino_timer = src->dqb_itime;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400216
217 dst->d_fieldmask = 0;
218 if (src->dqb_valid & QIF_BLIMITS)
Jan Kara14bf61f2014-10-09 16:03:13 +0200219 dst->d_fieldmask |= QC_SPC_SOFT | QC_SPC_HARD;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400220 if (src->dqb_valid & QIF_SPACE)
Jan Kara14bf61f2014-10-09 16:03:13 +0200221 dst->d_fieldmask |= QC_SPACE;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400222 if (src->dqb_valid & QIF_ILIMITS)
Jan Kara14bf61f2014-10-09 16:03:13 +0200223 dst->d_fieldmask |= QC_INO_SOFT | QC_INO_HARD;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400224 if (src->dqb_valid & QIF_INODES)
Jan Kara14bf61f2014-10-09 16:03:13 +0200225 dst->d_fieldmask |= QC_INO_COUNT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400226 if (src->dqb_valid & QIF_BTIME)
Jan Kara14bf61f2014-10-09 16:03:13 +0200227 dst->d_fieldmask |= QC_SPC_TIMER;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400228 if (src->dqb_valid & QIF_ITIME)
Jan Kara14bf61f2014-10-09 16:03:13 +0200229 dst->d_fieldmask |= QC_INO_TIMER;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400230}
231
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500232static int quota_setquota(struct super_block *sb, int type, qid_t id,
233 void __user *addr)
234{
Jan Kara14bf61f2014-10-09 16:03:13 +0200235 struct qc_dqblk fdq;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500236 struct if_dqblk idq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700237 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500238
239 if (copy_from_user(&idq, addr, sizeof(idq)))
240 return -EFAULT;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500241 if (!sb->s_qcop->set_dqblk)
242 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700243 qid = make_kqid(current_user_ns(), type, id);
244 if (!qid_valid(qid))
245 return -EINVAL;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400246 copy_from_if_dqblk(&fdq, &idq);
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700247 return sb->s_qcop->set_dqblk(sb, qid, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500248}
249
Jan Kara38e478c2014-10-08 15:56:21 +0200250static int quota_enable(struct super_block *sb, void __user *addr)
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500251{
252 __u32 flags;
253
254 if (copy_from_user(&flags, addr, sizeof(flags)))
255 return -EFAULT;
Jan Kara38e478c2014-10-08 15:56:21 +0200256 if (!sb->s_qcop->quota_enable)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500257 return -ENOSYS;
Jan Kara38e478c2014-10-08 15:56:21 +0200258 return sb->s_qcop->quota_enable(sb, flags);
259}
260
261static int quota_disable(struct super_block *sb, void __user *addr)
262{
263 __u32 flags;
264
265 if (copy_from_user(&flags, addr, sizeof(flags)))
266 return -EFAULT;
267 if (!sb->s_qcop->quota_disable)
268 return -ENOSYS;
269 return sb->s_qcop->quota_disable(sb, flags);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500270}
271
Jan Karabc230e42014-11-19 16:17:45 +0100272static int quota_state_to_flags(struct qc_state *state)
273{
274 int flags = 0;
275
276 if (state->s_state[USRQUOTA].flags & QCI_ACCT_ENABLED)
277 flags |= FS_QUOTA_UDQ_ACCT;
278 if (state->s_state[USRQUOTA].flags & QCI_LIMITS_ENFORCED)
279 flags |= FS_QUOTA_UDQ_ENFD;
280 if (state->s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED)
281 flags |= FS_QUOTA_GDQ_ACCT;
282 if (state->s_state[GRPQUOTA].flags & QCI_LIMITS_ENFORCED)
283 flags |= FS_QUOTA_GDQ_ENFD;
284 if (state->s_state[PRJQUOTA].flags & QCI_ACCT_ENABLED)
285 flags |= FS_QUOTA_PDQ_ACCT;
286 if (state->s_state[PRJQUOTA].flags & QCI_LIMITS_ENFORCED)
287 flags |= FS_QUOTA_PDQ_ENFD;
288 return flags;
289}
290
291static int quota_getstate(struct super_block *sb, struct fs_quota_stat *fqs)
292{
293 int type;
294 struct qc_state state;
295 int ret;
296
297 ret = sb->s_qcop->get_state(sb, &state);
298 if (ret < 0)
299 return ret;
300
301 memset(fqs, 0, sizeof(*fqs));
302 fqs->qs_version = FS_QSTAT_VERSION;
303 fqs->qs_flags = quota_state_to_flags(&state);
304 /* No quota enabled? */
305 if (!fqs->qs_flags)
306 return -ENOSYS;
307 fqs->qs_incoredqs = state.s_incoredqs;
308 /*
309 * GETXSTATE quotactl has space for just one set of time limits so
310 * report them for the first enabled quota type
311 */
312 for (type = 0; type < XQM_MAXQUOTAS; type++)
313 if (state.s_state[type].flags & QCI_ACCT_ENABLED)
314 break;
315 BUG_ON(type == XQM_MAXQUOTAS);
316 fqs->qs_btimelimit = state.s_state[type].spc_timelimit;
317 fqs->qs_itimelimit = state.s_state[type].ino_timelimit;
318 fqs->qs_rtbtimelimit = state.s_state[type].rt_spc_timelimit;
319 fqs->qs_bwarnlimit = state.s_state[type].spc_warnlimit;
320 fqs->qs_iwarnlimit = state.s_state[type].ino_warnlimit;
321 if (state.s_state[USRQUOTA].flags & QCI_ACCT_ENABLED) {
322 fqs->qs_uquota.qfs_ino = state.s_state[USRQUOTA].ino;
323 fqs->qs_uquota.qfs_nblks = state.s_state[USRQUOTA].blocks;
324 fqs->qs_uquota.qfs_nextents = state.s_state[USRQUOTA].nextents;
325 }
326 if (state.s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED) {
327 fqs->qs_gquota.qfs_ino = state.s_state[GRPQUOTA].ino;
328 fqs->qs_gquota.qfs_nblks = state.s_state[GRPQUOTA].blocks;
329 fqs->qs_gquota.qfs_nextents = state.s_state[GRPQUOTA].nextents;
330 }
331 if (state.s_state[PRJQUOTA].flags & QCI_ACCT_ENABLED) {
332 /*
333 * Q_XGETQSTAT doesn't have room for both group and project
334 * quotas. So, allow the project quota values to be copied out
335 * only if there is no group quota information available.
336 */
337 if (!(state.s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED)) {
338 fqs->qs_gquota.qfs_ino = state.s_state[PRJQUOTA].ino;
339 fqs->qs_gquota.qfs_nblks =
340 state.s_state[PRJQUOTA].blocks;
341 fqs->qs_gquota.qfs_nextents =
342 state.s_state[PRJQUOTA].nextents;
343 }
344 }
345 return 0;
346}
347
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500348static int quota_getxstate(struct super_block *sb, void __user *addr)
349{
350 struct fs_quota_stat fqs;
351 int ret;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500352
Jan Kara59b6ba62014-11-19 16:44:58 +0100353 if (!sb->s_qcop->get_state)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500354 return -ENOSYS;
Jan Kara59b6ba62014-11-19 16:44:58 +0100355 ret = quota_getstate(sb, &fqs);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500356 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
357 return -EFAULT;
358 return ret;
359}
360
Jan Karabc230e42014-11-19 16:17:45 +0100361static int quota_getstatev(struct super_block *sb, struct fs_quota_statv *fqs)
362{
363 int type;
364 struct qc_state state;
365 int ret;
366
367 ret = sb->s_qcop->get_state(sb, &state);
368 if (ret < 0)
369 return ret;
370
371 memset(fqs, 0, sizeof(*fqs));
372 fqs->qs_version = FS_QSTAT_VERSION;
373 fqs->qs_flags = quota_state_to_flags(&state);
374 /* No quota enabled? */
375 if (!fqs->qs_flags)
376 return -ENOSYS;
377 fqs->qs_incoredqs = state.s_incoredqs;
378 /*
379 * GETXSTATV quotactl has space for just one set of time limits so
380 * report them for the first enabled quota type
381 */
382 for (type = 0; type < XQM_MAXQUOTAS; type++)
383 if (state.s_state[type].flags & QCI_ACCT_ENABLED)
384 break;
385 BUG_ON(type == XQM_MAXQUOTAS);
386 fqs->qs_btimelimit = state.s_state[type].spc_timelimit;
387 fqs->qs_itimelimit = state.s_state[type].ino_timelimit;
388 fqs->qs_rtbtimelimit = state.s_state[type].rt_spc_timelimit;
389 fqs->qs_bwarnlimit = state.s_state[type].spc_warnlimit;
390 fqs->qs_iwarnlimit = state.s_state[type].ino_warnlimit;
391 if (state.s_state[USRQUOTA].flags & QCI_ACCT_ENABLED) {
392 fqs->qs_uquota.qfs_ino = state.s_state[USRQUOTA].ino;
393 fqs->qs_uquota.qfs_nblks = state.s_state[USRQUOTA].blocks;
394 fqs->qs_uquota.qfs_nextents = state.s_state[USRQUOTA].nextents;
395 }
396 if (state.s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED) {
397 fqs->qs_gquota.qfs_ino = state.s_state[GRPQUOTA].ino;
398 fqs->qs_gquota.qfs_nblks = state.s_state[GRPQUOTA].blocks;
399 fqs->qs_gquota.qfs_nextents = state.s_state[GRPQUOTA].nextents;
400 }
401 if (state.s_state[PRJQUOTA].flags & QCI_ACCT_ENABLED) {
402 fqs->qs_pquota.qfs_ino = state.s_state[PRJQUOTA].ino;
403 fqs->qs_pquota.qfs_nblks = state.s_state[PRJQUOTA].blocks;
404 fqs->qs_pquota.qfs_nextents = state.s_state[PRJQUOTA].nextents;
405 }
406 return 0;
407}
408
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500409static int quota_getxstatev(struct super_block *sb, void __user *addr)
410{
411 struct fs_quota_statv fqs;
412 int ret;
413
Jan Kara59b6ba62014-11-19 16:44:58 +0100414 if (!sb->s_qcop->get_state)
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500415 return -ENOSYS;
416
417 memset(&fqs, 0, sizeof(fqs));
418 if (copy_from_user(&fqs, addr, 1)) /* Just read qs_version */
419 return -EFAULT;
420
421 /* If this kernel doesn't support user specified version, fail */
422 switch (fqs.qs_version) {
423 case FS_QSTATV_VERSION1:
424 break;
425 default:
426 return -EINVAL;
427 }
Jan Kara59b6ba62014-11-19 16:44:58 +0100428 ret = quota_getstatev(sb, &fqs);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500429 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
430 return -EFAULT;
431 return ret;
432}
433
Jan Kara14bf61f2014-10-09 16:03:13 +0200434/*
435 * XFS defines BBTOB and BTOBB macros inside fs/xfs/ and we cannot move them
436 * out of there as xfsprogs rely on definitions being in that header file. So
437 * just define same functions here for quota purposes.
438 */
439#define XFS_BB_SHIFT 9
440
441static inline u64 quota_bbtob(u64 blocks)
442{
443 return blocks << XFS_BB_SHIFT;
444}
445
446static inline u64 quota_btobb(u64 bytes)
447{
448 return (bytes + (1 << XFS_BB_SHIFT) - 1) >> XFS_BB_SHIFT;
449}
450
451static void copy_from_xfs_dqblk(struct qc_dqblk *dst, struct fs_disk_quota *src)
452{
453 dst->d_spc_hardlimit = quota_bbtob(src->d_blk_hardlimit);
454 dst->d_spc_softlimit = quota_bbtob(src->d_blk_softlimit);
455 dst->d_ino_hardlimit = src->d_ino_hardlimit;
456 dst->d_ino_softlimit = src->d_ino_softlimit;
457 dst->d_space = quota_bbtob(src->d_bcount);
458 dst->d_ino_count = src->d_icount;
459 dst->d_ino_timer = src->d_itimer;
460 dst->d_spc_timer = src->d_btimer;
461 dst->d_ino_warns = src->d_iwarns;
462 dst->d_spc_warns = src->d_bwarns;
463 dst->d_rt_spc_hardlimit = quota_bbtob(src->d_rtb_hardlimit);
464 dst->d_rt_spc_softlimit = quota_bbtob(src->d_rtb_softlimit);
465 dst->d_rt_space = quota_bbtob(src->d_rtbcount);
466 dst->d_rt_spc_timer = src->d_rtbtimer;
467 dst->d_rt_spc_warns = src->d_rtbwarns;
468 dst->d_fieldmask = 0;
469 if (src->d_fieldmask & FS_DQ_ISOFT)
470 dst->d_fieldmask |= QC_INO_SOFT;
471 if (src->d_fieldmask & FS_DQ_IHARD)
472 dst->d_fieldmask |= QC_INO_HARD;
473 if (src->d_fieldmask & FS_DQ_BSOFT)
474 dst->d_fieldmask |= QC_SPC_SOFT;
475 if (src->d_fieldmask & FS_DQ_BHARD)
476 dst->d_fieldmask |= QC_SPC_HARD;
477 if (src->d_fieldmask & FS_DQ_RTBSOFT)
478 dst->d_fieldmask |= QC_RT_SPC_SOFT;
479 if (src->d_fieldmask & FS_DQ_RTBHARD)
480 dst->d_fieldmask |= QC_RT_SPC_HARD;
481 if (src->d_fieldmask & FS_DQ_BTIMER)
482 dst->d_fieldmask |= QC_SPC_TIMER;
483 if (src->d_fieldmask & FS_DQ_ITIMER)
484 dst->d_fieldmask |= QC_INO_TIMER;
485 if (src->d_fieldmask & FS_DQ_RTBTIMER)
486 dst->d_fieldmask |= QC_RT_SPC_TIMER;
487 if (src->d_fieldmask & FS_DQ_BWARNS)
488 dst->d_fieldmask |= QC_SPC_WARNS;
489 if (src->d_fieldmask & FS_DQ_IWARNS)
490 dst->d_fieldmask |= QC_INO_WARNS;
491 if (src->d_fieldmask & FS_DQ_RTBWARNS)
492 dst->d_fieldmask |= QC_RT_SPC_WARNS;
493 if (src->d_fieldmask & FS_DQ_BCOUNT)
494 dst->d_fieldmask |= QC_SPACE;
495 if (src->d_fieldmask & FS_DQ_ICOUNT)
496 dst->d_fieldmask |= QC_INO_COUNT;
497 if (src->d_fieldmask & FS_DQ_RTBCOUNT)
498 dst->d_fieldmask |= QC_RT_SPACE;
499}
500
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500501static int quota_setxquota(struct super_block *sb, int type, qid_t id,
502 void __user *addr)
503{
504 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200505 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700506 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500507
508 if (copy_from_user(&fdq, addr, sizeof(fdq)))
509 return -EFAULT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400510 if (!sb->s_qcop->set_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500511 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700512 qid = make_kqid(current_user_ns(), type, id);
513 if (!qid_valid(qid))
514 return -EINVAL;
Jan Kara14bf61f2014-10-09 16:03:13 +0200515 copy_from_xfs_dqblk(&qdq, &fdq);
516 return sb->s_qcop->set_dqblk(sb, qid, &qdq);
517}
518
519static void copy_to_xfs_dqblk(struct fs_disk_quota *dst, struct qc_dqblk *src,
520 int type, qid_t id)
521{
522 memset(dst, 0, sizeof(*dst));
523 dst->d_version = FS_DQUOT_VERSION;
524 dst->d_id = id;
525 if (type == USRQUOTA)
526 dst->d_flags = FS_USER_QUOTA;
527 else if (type == PRJQUOTA)
528 dst->d_flags = FS_PROJ_QUOTA;
529 else
530 dst->d_flags = FS_GROUP_QUOTA;
531 dst->d_blk_hardlimit = quota_btobb(src->d_spc_hardlimit);
532 dst->d_blk_softlimit = quota_btobb(src->d_spc_softlimit);
533 dst->d_ino_hardlimit = src->d_ino_hardlimit;
534 dst->d_ino_softlimit = src->d_ino_softlimit;
535 dst->d_bcount = quota_btobb(src->d_space);
536 dst->d_icount = src->d_ino_count;
537 dst->d_itimer = src->d_ino_timer;
538 dst->d_btimer = src->d_spc_timer;
539 dst->d_iwarns = src->d_ino_warns;
540 dst->d_bwarns = src->d_spc_warns;
541 dst->d_rtb_hardlimit = quota_btobb(src->d_rt_spc_hardlimit);
542 dst->d_rtb_softlimit = quota_btobb(src->d_rt_spc_softlimit);
543 dst->d_rtbcount = quota_btobb(src->d_rt_space);
544 dst->d_rtbtimer = src->d_rt_spc_timer;
545 dst->d_rtbwarns = src->d_rt_spc_warns;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500546}
547
548static int quota_getxquota(struct super_block *sb, int type, qid_t id,
549 void __user *addr)
550{
551 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200552 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700553 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500554 int ret;
555
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400556 if (!sb->s_qcop->get_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500557 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700558 qid = make_kqid(current_user_ns(), type, id);
559 if (!qid_valid(qid))
560 return -EINVAL;
Jan Kara14bf61f2014-10-09 16:03:13 +0200561 ret = sb->s_qcop->get_dqblk(sb, qid, &qdq);
562 if (ret)
563 return ret;
564 copy_to_xfs_dqblk(&fdq, &qdq, type, id);
565 if (copy_to_user(addr, &fdq, sizeof(fdq)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500566 return -EFAULT;
567 return ret;
568}
569
Eric Sandeen9da93f92014-05-05 17:25:50 +1000570static int quota_rmxquota(struct super_block *sb, void __user *addr)
571{
572 __u32 flags;
573
574 if (copy_from_user(&flags, addr, sizeof(flags)))
575 return -EFAULT;
576 if (!sb->s_qcop->rm_xquota)
577 return -ENOSYS;
578 return sb->s_qcop->rm_xquota(sb, flags);
579}
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581/* Copy parameters and call proper function */
Jan Kara268157b2009-01-27 15:47:22 +0100582static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id,
Jan Karaf00c9e42010-09-15 17:38:58 +0200583 void __user *addr, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500585 int ret;
586
587 if (type >= (XQM_COMMAND(cmd) ? XQM_MAXQUOTAS : MAXQUOTAS))
588 return -EINVAL;
Jan Kara2c5f6482014-09-30 10:43:09 +0200589 /*
590 * Quota not supported on this fs? Check this before s_quota_types
591 * since they needn't be set if quota is not supported at all.
592 */
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500593 if (!sb->s_qcop)
594 return -ENOSYS;
Jan Kara2c5f6482014-09-30 10:43:09 +0200595 if (!(sb->s_quota_types & (1 << type)))
596 return -EINVAL;
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500597
598 ret = check_quotactl_permission(sb, type, cmd, id);
599 if (ret < 0)
600 return ret;
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 switch (cmd) {
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500603 case Q_QUOTAON:
Jan Karaf00c9e42010-09-15 17:38:58 +0200604 return quota_quotaon(sb, type, cmd, id, path);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500605 case Q_QUOTAOFF:
Jan Karad3b86322014-10-08 16:07:12 +0200606 return quota_quotaoff(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500607 case Q_GETFMT:
608 return quota_getfmt(sb, type, addr);
609 case Q_GETINFO:
610 return quota_getinfo(sb, type, addr);
611 case Q_SETINFO:
612 return quota_setinfo(sb, type, addr);
613 case Q_GETQUOTA:
614 return quota_getquota(sb, type, id, addr);
615 case Q_SETQUOTA:
616 return quota_setquota(sb, type, id, addr);
617 case Q_SYNC:
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500618 if (!sb->s_qcop->quota_sync)
619 return -ENOSYS;
Jan Karaceed1722012-07-03 16:45:28 +0200620 return sb->s_qcop->quota_sync(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500621 case Q_XQUOTAON:
Jan Kara38e478c2014-10-08 15:56:21 +0200622 return quota_enable(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500623 case Q_XQUOTAOFF:
Jan Kara38e478c2014-10-08 15:56:21 +0200624 return quota_disable(sb, addr);
Eric Sandeen9da93f92014-05-05 17:25:50 +1000625 case Q_XQUOTARM:
626 return quota_rmxquota(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500627 case Q_XGETQSTAT:
628 return quota_getxstate(sb, addr);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500629 case Q_XGETQSTATV:
630 return quota_getxstatev(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500631 case Q_XSETQLIM:
632 return quota_setxquota(sb, type, id, addr);
633 case Q_XGETQUOTA:
634 return quota_getxquota(sb, type, id, addr);
635 case Q_XQUOTASYNC:
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500636 if (sb->s_flags & MS_RDONLY)
637 return -EROFS;
Christoph Hellwig4b217ed2012-02-20 02:28:18 +0000638 /* XFS quotas are fully coherent now, making this call a noop */
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500639 return 0;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500640 default:
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500641 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
Lee Jones56df1272012-11-03 23:02:28 +0100645#ifdef CONFIG_BLOCK
646
Jan Karadcdbed82012-02-10 11:03:01 +0100647/* Return 1 if 'cmd' will block on frozen filesystem */
648static int quotactl_cmd_write(int cmd)
649{
650 switch (cmd) {
651 case Q_GETFMT:
652 case Q_GETINFO:
653 case Q_SYNC:
654 case Q_XGETQSTAT:
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500655 case Q_XGETQSTATV:
Jan Karadcdbed82012-02-10 11:03:01 +0100656 case Q_XGETQUOTA:
657 case Q_XQUOTASYNC:
658 return 0;
659 }
660 return 1;
661}
662
Lee Jones56df1272012-11-03 23:02:28 +0100663#endif /* CONFIG_BLOCK */
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665/*
David Howells93614012006-09-30 20:45:40 +0200666 * look up a superblock on which quota ops will be performed
667 * - use the name of a block device to find the superblock thereon
668 */
Jan Karadcdbed82012-02-10 11:03:01 +0100669static struct super_block *quotactl_block(const char __user *special, int cmd)
David Howells93614012006-09-30 20:45:40 +0200670{
671#ifdef CONFIG_BLOCK
672 struct block_device *bdev;
673 struct super_block *sb;
Jeff Layton91a27b22012-10-10 15:25:28 -0400674 struct filename *tmp = getname(special);
David Howells93614012006-09-30 20:45:40 +0200675
676 if (IS_ERR(tmp))
David Howellse231c2e2008-02-07 00:15:26 -0800677 return ERR_CAST(tmp);
Jeff Layton91a27b22012-10-10 15:25:28 -0400678 bdev = lookup_bdev(tmp->name);
David Howells93614012006-09-30 20:45:40 +0200679 putname(tmp);
680 if (IS_ERR(bdev))
David Howellse231c2e2008-02-07 00:15:26 -0800681 return ERR_CAST(bdev);
Jan Karadcdbed82012-02-10 11:03:01 +0100682 if (quotactl_cmd_write(cmd))
683 sb = get_super_thawed(bdev);
684 else
685 sb = get_super(bdev);
David Howells93614012006-09-30 20:45:40 +0200686 bdput(bdev);
687 if (!sb)
688 return ERR_PTR(-ENODEV);
689
690 return sb;
691#else
692 return ERR_PTR(-ENODEV);
693#endif
694}
695
696/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 * This is the system call interface. This communicates with
698 * the user-level programs. Currently this only supports diskquota
699 * calls. Maybe we need to add the process quotas etc. in the future,
700 * but we probably should use rlimits for that.
701 */
Heiko Carstens3cdad422009-01-14 14:14:22 +0100702SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special,
703 qid_t, id, void __user *, addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
705 uint cmds, type;
706 struct super_block *sb = NULL;
Jan Karaf00c9e42010-09-15 17:38:58 +0200707 struct path path, *pathp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 int ret;
709
710 cmds = cmd >> SUBCMDSHIFT;
711 type = cmd & SUBCMDMASK;
712
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500713 /*
714 * As a special case Q_SYNC can be called without a specific device.
715 * It will iterate all superblocks that have quota enabled and call
716 * the sync action on each of them.
717 */
718 if (!special) {
719 if (cmds == Q_SYNC)
720 return quota_sync_all(type);
721 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723
Jan Karaf00c9e42010-09-15 17:38:58 +0200724 /*
725 * Path for quotaon has to be resolved before grabbing superblock
726 * because that gets s_umount sem which is also possibly needed by path
727 * resolution (think about autofs) and thus deadlocks could arise.
728 */
729 if (cmds == Q_QUOTAON) {
Trond Myklebust815d4052011-09-26 20:36:09 -0400730 ret = user_path_at(AT_FDCWD, addr, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
Jan Karaf00c9e42010-09-15 17:38:58 +0200731 if (ret)
732 pathp = ERR_PTR(ret);
733 else
734 pathp = &path;
735 }
736
Jan Karadcdbed82012-02-10 11:03:01 +0100737 sb = quotactl_block(special, cmds);
Jan Kara0aaa6182011-10-10 18:32:06 +0200738 if (IS_ERR(sb)) {
739 ret = PTR_ERR(sb);
740 goto out;
741 }
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500742
Jan Karaf00c9e42010-09-15 17:38:58 +0200743 ret = do_quotactl(sb, type, cmds, id, addr, pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500745 drop_super(sb);
Jan Kara0aaa6182011-10-10 18:32:06 +0200746out:
Jan Karaf00c9e42010-09-15 17:38:58 +0200747 if (pathp && !IS_ERR(pathp))
748 path_put(pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return ret;
750}