blob: 00d50fca1005d6b5d8d60aaaa320586d7fd14994 [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
272static int quota_getxstate(struct super_block *sb, void __user *addr)
273{
274 struct fs_quota_stat fqs;
275 int ret;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500276
277 if (!sb->s_qcop->get_xstate)
278 return -ENOSYS;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500279 ret = sb->s_qcop->get_xstate(sb, &fqs);
280 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
281 return -EFAULT;
282 return ret;
283}
284
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500285static int quota_getxstatev(struct super_block *sb, void __user *addr)
286{
287 struct fs_quota_statv fqs;
288 int ret;
289
290 if (!sb->s_qcop->get_xstatev)
291 return -ENOSYS;
292
293 memset(&fqs, 0, sizeof(fqs));
294 if (copy_from_user(&fqs, addr, 1)) /* Just read qs_version */
295 return -EFAULT;
296
297 /* If this kernel doesn't support user specified version, fail */
298 switch (fqs.qs_version) {
299 case FS_QSTATV_VERSION1:
300 break;
301 default:
302 return -EINVAL;
303 }
304 ret = sb->s_qcop->get_xstatev(sb, &fqs);
305 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
306 return -EFAULT;
307 return ret;
308}
309
Jan Kara14bf61f2014-10-09 16:03:13 +0200310/*
311 * XFS defines BBTOB and BTOBB macros inside fs/xfs/ and we cannot move them
312 * out of there as xfsprogs rely on definitions being in that header file. So
313 * just define same functions here for quota purposes.
314 */
315#define XFS_BB_SHIFT 9
316
317static inline u64 quota_bbtob(u64 blocks)
318{
319 return blocks << XFS_BB_SHIFT;
320}
321
322static inline u64 quota_btobb(u64 bytes)
323{
324 return (bytes + (1 << XFS_BB_SHIFT) - 1) >> XFS_BB_SHIFT;
325}
326
327static void copy_from_xfs_dqblk(struct qc_dqblk *dst, struct fs_disk_quota *src)
328{
329 dst->d_spc_hardlimit = quota_bbtob(src->d_blk_hardlimit);
330 dst->d_spc_softlimit = quota_bbtob(src->d_blk_softlimit);
331 dst->d_ino_hardlimit = src->d_ino_hardlimit;
332 dst->d_ino_softlimit = src->d_ino_softlimit;
333 dst->d_space = quota_bbtob(src->d_bcount);
334 dst->d_ino_count = src->d_icount;
335 dst->d_ino_timer = src->d_itimer;
336 dst->d_spc_timer = src->d_btimer;
337 dst->d_ino_warns = src->d_iwarns;
338 dst->d_spc_warns = src->d_bwarns;
339 dst->d_rt_spc_hardlimit = quota_bbtob(src->d_rtb_hardlimit);
340 dst->d_rt_spc_softlimit = quota_bbtob(src->d_rtb_softlimit);
341 dst->d_rt_space = quota_bbtob(src->d_rtbcount);
342 dst->d_rt_spc_timer = src->d_rtbtimer;
343 dst->d_rt_spc_warns = src->d_rtbwarns;
344 dst->d_fieldmask = 0;
345 if (src->d_fieldmask & FS_DQ_ISOFT)
346 dst->d_fieldmask |= QC_INO_SOFT;
347 if (src->d_fieldmask & FS_DQ_IHARD)
348 dst->d_fieldmask |= QC_INO_HARD;
349 if (src->d_fieldmask & FS_DQ_BSOFT)
350 dst->d_fieldmask |= QC_SPC_SOFT;
351 if (src->d_fieldmask & FS_DQ_BHARD)
352 dst->d_fieldmask |= QC_SPC_HARD;
353 if (src->d_fieldmask & FS_DQ_RTBSOFT)
354 dst->d_fieldmask |= QC_RT_SPC_SOFT;
355 if (src->d_fieldmask & FS_DQ_RTBHARD)
356 dst->d_fieldmask |= QC_RT_SPC_HARD;
357 if (src->d_fieldmask & FS_DQ_BTIMER)
358 dst->d_fieldmask |= QC_SPC_TIMER;
359 if (src->d_fieldmask & FS_DQ_ITIMER)
360 dst->d_fieldmask |= QC_INO_TIMER;
361 if (src->d_fieldmask & FS_DQ_RTBTIMER)
362 dst->d_fieldmask |= QC_RT_SPC_TIMER;
363 if (src->d_fieldmask & FS_DQ_BWARNS)
364 dst->d_fieldmask |= QC_SPC_WARNS;
365 if (src->d_fieldmask & FS_DQ_IWARNS)
366 dst->d_fieldmask |= QC_INO_WARNS;
367 if (src->d_fieldmask & FS_DQ_RTBWARNS)
368 dst->d_fieldmask |= QC_RT_SPC_WARNS;
369 if (src->d_fieldmask & FS_DQ_BCOUNT)
370 dst->d_fieldmask |= QC_SPACE;
371 if (src->d_fieldmask & FS_DQ_ICOUNT)
372 dst->d_fieldmask |= QC_INO_COUNT;
373 if (src->d_fieldmask & FS_DQ_RTBCOUNT)
374 dst->d_fieldmask |= QC_RT_SPACE;
375}
376
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500377static int quota_setxquota(struct super_block *sb, int type, qid_t id,
378 void __user *addr)
379{
380 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200381 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700382 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500383
384 if (copy_from_user(&fdq, addr, sizeof(fdq)))
385 return -EFAULT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400386 if (!sb->s_qcop->set_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500387 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700388 qid = make_kqid(current_user_ns(), type, id);
389 if (!qid_valid(qid))
390 return -EINVAL;
Jan Kara14bf61f2014-10-09 16:03:13 +0200391 copy_from_xfs_dqblk(&qdq, &fdq);
392 return sb->s_qcop->set_dqblk(sb, qid, &qdq);
393}
394
395static void copy_to_xfs_dqblk(struct fs_disk_quota *dst, struct qc_dqblk *src,
396 int type, qid_t id)
397{
398 memset(dst, 0, sizeof(*dst));
399 dst->d_version = FS_DQUOT_VERSION;
400 dst->d_id = id;
401 if (type == USRQUOTA)
402 dst->d_flags = FS_USER_QUOTA;
403 else if (type == PRJQUOTA)
404 dst->d_flags = FS_PROJ_QUOTA;
405 else
406 dst->d_flags = FS_GROUP_QUOTA;
407 dst->d_blk_hardlimit = quota_btobb(src->d_spc_hardlimit);
408 dst->d_blk_softlimit = quota_btobb(src->d_spc_softlimit);
409 dst->d_ino_hardlimit = src->d_ino_hardlimit;
410 dst->d_ino_softlimit = src->d_ino_softlimit;
411 dst->d_bcount = quota_btobb(src->d_space);
412 dst->d_icount = src->d_ino_count;
413 dst->d_itimer = src->d_ino_timer;
414 dst->d_btimer = src->d_spc_timer;
415 dst->d_iwarns = src->d_ino_warns;
416 dst->d_bwarns = src->d_spc_warns;
417 dst->d_rtb_hardlimit = quota_btobb(src->d_rt_spc_hardlimit);
418 dst->d_rtb_softlimit = quota_btobb(src->d_rt_spc_softlimit);
419 dst->d_rtbcount = quota_btobb(src->d_rt_space);
420 dst->d_rtbtimer = src->d_rt_spc_timer;
421 dst->d_rtbwarns = src->d_rt_spc_warns;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500422}
423
424static int quota_getxquota(struct super_block *sb, int type, qid_t id,
425 void __user *addr)
426{
427 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200428 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700429 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500430 int ret;
431
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400432 if (!sb->s_qcop->get_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500433 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700434 qid = make_kqid(current_user_ns(), type, id);
435 if (!qid_valid(qid))
436 return -EINVAL;
Jan Kara14bf61f2014-10-09 16:03:13 +0200437 ret = sb->s_qcop->get_dqblk(sb, qid, &qdq);
438 if (ret)
439 return ret;
440 copy_to_xfs_dqblk(&fdq, &qdq, type, id);
441 if (copy_to_user(addr, &fdq, sizeof(fdq)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500442 return -EFAULT;
443 return ret;
444}
445
Eric Sandeen9da93f92014-05-05 17:25:50 +1000446static int quota_rmxquota(struct super_block *sb, void __user *addr)
447{
448 __u32 flags;
449
450 if (copy_from_user(&flags, addr, sizeof(flags)))
451 return -EFAULT;
452 if (!sb->s_qcop->rm_xquota)
453 return -ENOSYS;
454 return sb->s_qcop->rm_xquota(sb, flags);
455}
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457/* Copy parameters and call proper function */
Jan Kara268157b2009-01-27 15:47:22 +0100458static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id,
Jan Karaf00c9e42010-09-15 17:38:58 +0200459 void __user *addr, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500461 int ret;
462
463 if (type >= (XQM_COMMAND(cmd) ? XQM_MAXQUOTAS : MAXQUOTAS))
464 return -EINVAL;
Jan Kara2c5f6482014-09-30 10:43:09 +0200465 /*
466 * Quota not supported on this fs? Check this before s_quota_types
467 * since they needn't be set if quota is not supported at all.
468 */
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500469 if (!sb->s_qcop)
470 return -ENOSYS;
Jan Kara2c5f6482014-09-30 10:43:09 +0200471 if (!(sb->s_quota_types & (1 << type)))
472 return -EINVAL;
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500473
474 ret = check_quotactl_permission(sb, type, cmd, id);
475 if (ret < 0)
476 return ret;
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 switch (cmd) {
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500479 case Q_QUOTAON:
Jan Karaf00c9e42010-09-15 17:38:58 +0200480 return quota_quotaon(sb, type, cmd, id, path);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500481 case Q_QUOTAOFF:
Jan Karad3b86322014-10-08 16:07:12 +0200482 return quota_quotaoff(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500483 case Q_GETFMT:
484 return quota_getfmt(sb, type, addr);
485 case Q_GETINFO:
486 return quota_getinfo(sb, type, addr);
487 case Q_SETINFO:
488 return quota_setinfo(sb, type, addr);
489 case Q_GETQUOTA:
490 return quota_getquota(sb, type, id, addr);
491 case Q_SETQUOTA:
492 return quota_setquota(sb, type, id, addr);
493 case Q_SYNC:
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500494 if (!sb->s_qcop->quota_sync)
495 return -ENOSYS;
Jan Karaceed1722012-07-03 16:45:28 +0200496 return sb->s_qcop->quota_sync(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500497 case Q_XQUOTAON:
Jan Kara38e478c2014-10-08 15:56:21 +0200498 return quota_enable(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500499 case Q_XQUOTAOFF:
Jan Kara38e478c2014-10-08 15:56:21 +0200500 return quota_disable(sb, addr);
Eric Sandeen9da93f92014-05-05 17:25:50 +1000501 case Q_XQUOTARM:
502 return quota_rmxquota(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500503 case Q_XGETQSTAT:
504 return quota_getxstate(sb, addr);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500505 case Q_XGETQSTATV:
506 return quota_getxstatev(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500507 case Q_XSETQLIM:
508 return quota_setxquota(sb, type, id, addr);
509 case Q_XGETQUOTA:
510 return quota_getxquota(sb, type, id, addr);
511 case Q_XQUOTASYNC:
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500512 if (sb->s_flags & MS_RDONLY)
513 return -EROFS;
Christoph Hellwig4b217ed2012-02-20 02:28:18 +0000514 /* XFS quotas are fully coherent now, making this call a noop */
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500515 return 0;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500516 default:
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500517 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
Lee Jones56df1272012-11-03 23:02:28 +0100521#ifdef CONFIG_BLOCK
522
Jan Karadcdbed82012-02-10 11:03:01 +0100523/* Return 1 if 'cmd' will block on frozen filesystem */
524static int quotactl_cmd_write(int cmd)
525{
526 switch (cmd) {
527 case Q_GETFMT:
528 case Q_GETINFO:
529 case Q_SYNC:
530 case Q_XGETQSTAT:
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500531 case Q_XGETQSTATV:
Jan Karadcdbed82012-02-10 11:03:01 +0100532 case Q_XGETQUOTA:
533 case Q_XQUOTASYNC:
534 return 0;
535 }
536 return 1;
537}
538
Lee Jones56df1272012-11-03 23:02:28 +0100539#endif /* CONFIG_BLOCK */
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541/*
David Howells93614012006-09-30 20:45:40 +0200542 * look up a superblock on which quota ops will be performed
543 * - use the name of a block device to find the superblock thereon
544 */
Jan Karadcdbed82012-02-10 11:03:01 +0100545static struct super_block *quotactl_block(const char __user *special, int cmd)
David Howells93614012006-09-30 20:45:40 +0200546{
547#ifdef CONFIG_BLOCK
548 struct block_device *bdev;
549 struct super_block *sb;
Jeff Layton91a27b22012-10-10 15:25:28 -0400550 struct filename *tmp = getname(special);
David Howells93614012006-09-30 20:45:40 +0200551
552 if (IS_ERR(tmp))
David Howellse231c2e2008-02-07 00:15:26 -0800553 return ERR_CAST(tmp);
Jeff Layton91a27b22012-10-10 15:25:28 -0400554 bdev = lookup_bdev(tmp->name);
David Howells93614012006-09-30 20:45:40 +0200555 putname(tmp);
556 if (IS_ERR(bdev))
David Howellse231c2e2008-02-07 00:15:26 -0800557 return ERR_CAST(bdev);
Jan Karadcdbed82012-02-10 11:03:01 +0100558 if (quotactl_cmd_write(cmd))
559 sb = get_super_thawed(bdev);
560 else
561 sb = get_super(bdev);
David Howells93614012006-09-30 20:45:40 +0200562 bdput(bdev);
563 if (!sb)
564 return ERR_PTR(-ENODEV);
565
566 return sb;
567#else
568 return ERR_PTR(-ENODEV);
569#endif
570}
571
572/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 * This is the system call interface. This communicates with
574 * the user-level programs. Currently this only supports diskquota
575 * calls. Maybe we need to add the process quotas etc. in the future,
576 * but we probably should use rlimits for that.
577 */
Heiko Carstens3cdad422009-01-14 14:14:22 +0100578SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special,
579 qid_t, id, void __user *, addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
581 uint cmds, type;
582 struct super_block *sb = NULL;
Jan Karaf00c9e42010-09-15 17:38:58 +0200583 struct path path, *pathp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 int ret;
585
586 cmds = cmd >> SUBCMDSHIFT;
587 type = cmd & SUBCMDMASK;
588
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500589 /*
590 * As a special case Q_SYNC can be called without a specific device.
591 * It will iterate all superblocks that have quota enabled and call
592 * the sync action on each of them.
593 */
594 if (!special) {
595 if (cmds == Q_SYNC)
596 return quota_sync_all(type);
597 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599
Jan Karaf00c9e42010-09-15 17:38:58 +0200600 /*
601 * Path for quotaon has to be resolved before grabbing superblock
602 * because that gets s_umount sem which is also possibly needed by path
603 * resolution (think about autofs) and thus deadlocks could arise.
604 */
605 if (cmds == Q_QUOTAON) {
Trond Myklebust815d4052011-09-26 20:36:09 -0400606 ret = user_path_at(AT_FDCWD, addr, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
Jan Karaf00c9e42010-09-15 17:38:58 +0200607 if (ret)
608 pathp = ERR_PTR(ret);
609 else
610 pathp = &path;
611 }
612
Jan Karadcdbed82012-02-10 11:03:01 +0100613 sb = quotactl_block(special, cmds);
Jan Kara0aaa6182011-10-10 18:32:06 +0200614 if (IS_ERR(sb)) {
615 ret = PTR_ERR(sb);
616 goto out;
617 }
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500618
Jan Karaf00c9e42010-09-15 17:38:58 +0200619 ret = do_quotactl(sb, type, cmds, id, addr, pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500621 drop_super(sb);
Jan Kara0aaa6182011-10-10 18:32:06 +0200622out:
Jan Karaf00c9e42010-09-15 17:38:58 +0200623 if (pathp && !IS_ERR(pathp))
624 path_put(pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return ret;
626}