blob: 2d445425aad713312ad9153bf9e2fc7832ec0ea8 [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
Eric Sandeen3218a3e2016-02-08 11:21:24 +110082static int quota_quotaon(struct super_block *sb, int type, 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;
Dan Carpenter72d4d0e2015-08-11 00:29:55 +0300144 if (copy_to_user(addr, &uinfo, sizeof(uinfo)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500145 return -EFAULT;
Dan Carpenter72d4d0e2015-08-11 00:29:55 +0300146 return 0;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500147}
148
149static int quota_setinfo(struct super_block *sb, int type, void __user *addr)
150{
151 struct if_dqinfo info;
Jan Kara5eacb2a2014-12-16 12:03:51 +0100152 struct qc_info qinfo;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500153
154 if (copy_from_user(&info, addr, sizeof(info)))
155 return -EFAULT;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500156 if (!sb->s_qcop->set_info)
157 return -ENOSYS;
Jan Kara5eacb2a2014-12-16 12:03:51 +0100158 if (info.dqi_valid & ~(IIF_FLAGS | IIF_BGRACE | IIF_IGRACE))
159 return -EINVAL;
160 memset(&qinfo, 0, sizeof(qinfo));
161 if (info.dqi_valid & IIF_FLAGS) {
162 if (info.dqi_flags & ~DQF_SETINFO_MASK)
163 return -EINVAL;
164 if (info.dqi_flags & DQF_ROOT_SQUASH)
165 qinfo.i_flags |= QCI_ROOT_SQUASH;
166 qinfo.i_fieldmask |= QC_FLAGS;
167 }
168 if (info.dqi_valid & IIF_BGRACE) {
169 qinfo.i_spc_timelimit = info.dqi_bgrace;
170 qinfo.i_fieldmask |= QC_SPC_TIMER;
171 }
172 if (info.dqi_valid & IIF_IGRACE) {
173 qinfo.i_ino_timelimit = info.dqi_igrace;
174 qinfo.i_fieldmask |= QC_INO_TIMER;
175 }
176 return sb->s_qcop->set_info(sb, type, &qinfo);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500177}
178
Jan Kara14bf61f2014-10-09 16:03:13 +0200179static inline qsize_t qbtos(qsize_t blocks)
180{
181 return blocks << QIF_DQBLKSIZE_BITS;
182}
183
184static inline qsize_t stoqb(qsize_t space)
185{
186 return (space + QIF_DQBLKSIZE - 1) >> QIF_DQBLKSIZE_BITS;
187}
188
189static void copy_to_if_dqblk(struct if_dqblk *dst, struct qc_dqblk *src)
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400190{
Dan Carpenter18da65e2013-11-01 13:21:54 +0300191 memset(dst, 0, sizeof(*dst));
Jan Kara14bf61f2014-10-09 16:03:13 +0200192 dst->dqb_bhardlimit = stoqb(src->d_spc_hardlimit);
193 dst->dqb_bsoftlimit = stoqb(src->d_spc_softlimit);
194 dst->dqb_curspace = src->d_space;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400195 dst->dqb_ihardlimit = src->d_ino_hardlimit;
196 dst->dqb_isoftlimit = src->d_ino_softlimit;
Jan Kara14bf61f2014-10-09 16:03:13 +0200197 dst->dqb_curinodes = src->d_ino_count;
198 dst->dqb_btime = src->d_spc_timer;
199 dst->dqb_itime = src->d_ino_timer;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400200 dst->dqb_valid = QIF_ALL;
201}
202
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500203static int quota_getquota(struct super_block *sb, int type, qid_t id,
204 void __user *addr)
205{
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700206 struct kqid qid;
Jan Kara14bf61f2014-10-09 16:03:13 +0200207 struct qc_dqblk fdq;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500208 struct if_dqblk idq;
209 int ret;
210
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500211 if (!sb->s_qcop->get_dqblk)
212 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700213 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500214 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700215 return -EINVAL;
216 ret = sb->s_qcop->get_dqblk(sb, qid, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500217 if (ret)
218 return ret;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400219 copy_to_if_dqblk(&idq, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500220 if (copy_to_user(addr, &idq, sizeof(idq)))
221 return -EFAULT;
222 return 0;
223}
224
Eric Sandeen926132c2016-02-08 11:22:21 +1100225/*
226 * Return quota for next active quota >= this id, if any exists,
Eric Sandeenba581482016-01-22 12:25:32 -0600227 * otherwise return -ENOENT via ->get_nextdqblk
Eric Sandeen926132c2016-02-08 11:22:21 +1100228 */
229static int quota_getnextquota(struct super_block *sb, int type, qid_t id,
230 void __user *addr)
231{
232 struct kqid qid;
233 struct qc_dqblk fdq;
234 struct if_nextdqblk idq;
235 int ret;
236
237 if (!sb->s_qcop->get_nextdqblk)
238 return -ENOSYS;
239 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500240 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric Sandeen926132c2016-02-08 11:22:21 +1100241 return -EINVAL;
242 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &fdq);
243 if (ret)
244 return ret;
245 /* struct if_nextdqblk is a superset of struct if_dqblk */
246 copy_to_if_dqblk((struct if_dqblk *)&idq, &fdq);
247 idq.dqb_id = from_kqid(current_user_ns(), qid);
248 if (copy_to_user(addr, &idq, sizeof(idq)))
249 return -EFAULT;
250 return 0;
251}
252
Jan Kara14bf61f2014-10-09 16:03:13 +0200253static void copy_from_if_dqblk(struct qc_dqblk *dst, struct if_dqblk *src)
Christoph Hellwigc472b432010-05-06 17:05:17 -0400254{
Jan Kara14bf61f2014-10-09 16:03:13 +0200255 dst->d_spc_hardlimit = qbtos(src->dqb_bhardlimit);
256 dst->d_spc_softlimit = qbtos(src->dqb_bsoftlimit);
257 dst->d_space = src->dqb_curspace;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400258 dst->d_ino_hardlimit = src->dqb_ihardlimit;
259 dst->d_ino_softlimit = src->dqb_isoftlimit;
Jan Kara14bf61f2014-10-09 16:03:13 +0200260 dst->d_ino_count = src->dqb_curinodes;
261 dst->d_spc_timer = src->dqb_btime;
262 dst->d_ino_timer = src->dqb_itime;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400263
264 dst->d_fieldmask = 0;
265 if (src->dqb_valid & QIF_BLIMITS)
Jan Kara14bf61f2014-10-09 16:03:13 +0200266 dst->d_fieldmask |= QC_SPC_SOFT | QC_SPC_HARD;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400267 if (src->dqb_valid & QIF_SPACE)
Jan Kara14bf61f2014-10-09 16:03:13 +0200268 dst->d_fieldmask |= QC_SPACE;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400269 if (src->dqb_valid & QIF_ILIMITS)
Jan Kara14bf61f2014-10-09 16:03:13 +0200270 dst->d_fieldmask |= QC_INO_SOFT | QC_INO_HARD;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400271 if (src->dqb_valid & QIF_INODES)
Jan Kara14bf61f2014-10-09 16:03:13 +0200272 dst->d_fieldmask |= QC_INO_COUNT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400273 if (src->dqb_valid & QIF_BTIME)
Jan Kara14bf61f2014-10-09 16:03:13 +0200274 dst->d_fieldmask |= QC_SPC_TIMER;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400275 if (src->dqb_valid & QIF_ITIME)
Jan Kara14bf61f2014-10-09 16:03:13 +0200276 dst->d_fieldmask |= QC_INO_TIMER;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400277}
278
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500279static int quota_setquota(struct super_block *sb, int type, qid_t id,
280 void __user *addr)
281{
Jan Kara14bf61f2014-10-09 16:03:13 +0200282 struct qc_dqblk fdq;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500283 struct if_dqblk idq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700284 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500285
286 if (copy_from_user(&idq, addr, sizeof(idq)))
287 return -EFAULT;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500288 if (!sb->s_qcop->set_dqblk)
289 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700290 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500291 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700292 return -EINVAL;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400293 copy_from_if_dqblk(&fdq, &idq);
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700294 return sb->s_qcop->set_dqblk(sb, qid, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500295}
296
Jan Kara38e478c2014-10-08 15:56:21 +0200297static int quota_enable(struct super_block *sb, void __user *addr)
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500298{
299 __u32 flags;
300
301 if (copy_from_user(&flags, addr, sizeof(flags)))
302 return -EFAULT;
Jan Kara38e478c2014-10-08 15:56:21 +0200303 if (!sb->s_qcop->quota_enable)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500304 return -ENOSYS;
Jan Kara38e478c2014-10-08 15:56:21 +0200305 return sb->s_qcop->quota_enable(sb, flags);
306}
307
308static int quota_disable(struct super_block *sb, void __user *addr)
309{
310 __u32 flags;
311
312 if (copy_from_user(&flags, addr, sizeof(flags)))
313 return -EFAULT;
314 if (!sb->s_qcop->quota_disable)
315 return -ENOSYS;
316 return sb->s_qcop->quota_disable(sb, flags);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500317}
318
Jan Karabc230e42014-11-19 16:17:45 +0100319static int quota_state_to_flags(struct qc_state *state)
320{
321 int flags = 0;
322
323 if (state->s_state[USRQUOTA].flags & QCI_ACCT_ENABLED)
324 flags |= FS_QUOTA_UDQ_ACCT;
325 if (state->s_state[USRQUOTA].flags & QCI_LIMITS_ENFORCED)
326 flags |= FS_QUOTA_UDQ_ENFD;
327 if (state->s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED)
328 flags |= FS_QUOTA_GDQ_ACCT;
329 if (state->s_state[GRPQUOTA].flags & QCI_LIMITS_ENFORCED)
330 flags |= FS_QUOTA_GDQ_ENFD;
331 if (state->s_state[PRJQUOTA].flags & QCI_ACCT_ENABLED)
332 flags |= FS_QUOTA_PDQ_ACCT;
333 if (state->s_state[PRJQUOTA].flags & QCI_LIMITS_ENFORCED)
334 flags |= FS_QUOTA_PDQ_ENFD;
335 return flags;
336}
337
338static int quota_getstate(struct super_block *sb, struct fs_quota_stat *fqs)
339{
340 int type;
341 struct qc_state state;
342 int ret;
343
Eric Sandeen3cd01262016-08-12 17:40:09 -0500344 memset(&state, 0, sizeof (struct qc_state));
Jan Karabc230e42014-11-19 16:17:45 +0100345 ret = sb->s_qcop->get_state(sb, &state);
346 if (ret < 0)
347 return ret;
348
349 memset(fqs, 0, sizeof(*fqs));
350 fqs->qs_version = FS_QSTAT_VERSION;
351 fqs->qs_flags = quota_state_to_flags(&state);
352 /* No quota enabled? */
353 if (!fqs->qs_flags)
354 return -ENOSYS;
355 fqs->qs_incoredqs = state.s_incoredqs;
356 /*
357 * GETXSTATE quotactl has space for just one set of time limits so
358 * report them for the first enabled quota type
359 */
360 for (type = 0; type < XQM_MAXQUOTAS; type++)
361 if (state.s_state[type].flags & QCI_ACCT_ENABLED)
362 break;
363 BUG_ON(type == XQM_MAXQUOTAS);
364 fqs->qs_btimelimit = state.s_state[type].spc_timelimit;
365 fqs->qs_itimelimit = state.s_state[type].ino_timelimit;
366 fqs->qs_rtbtimelimit = state.s_state[type].rt_spc_timelimit;
367 fqs->qs_bwarnlimit = state.s_state[type].spc_warnlimit;
368 fqs->qs_iwarnlimit = state.s_state[type].ino_warnlimit;
Eric Sandeen3cd01262016-08-12 17:40:09 -0500369
370 /* Inodes may be allocated even if inactive; copy out if present */
371 if (state.s_state[USRQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100372 fqs->qs_uquota.qfs_ino = state.s_state[USRQUOTA].ino;
373 fqs->qs_uquota.qfs_nblks = state.s_state[USRQUOTA].blocks;
374 fqs->qs_uquota.qfs_nextents = state.s_state[USRQUOTA].nextents;
375 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500376 if (state.s_state[GRPQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100377 fqs->qs_gquota.qfs_ino = state.s_state[GRPQUOTA].ino;
378 fqs->qs_gquota.qfs_nblks = state.s_state[GRPQUOTA].blocks;
379 fqs->qs_gquota.qfs_nextents = state.s_state[GRPQUOTA].nextents;
380 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500381 if (state.s_state[PRJQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100382 /*
383 * Q_XGETQSTAT doesn't have room for both group and project
384 * quotas. So, allow the project quota values to be copied out
385 * only if there is no group quota information available.
386 */
387 if (!(state.s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED)) {
388 fqs->qs_gquota.qfs_ino = state.s_state[PRJQUOTA].ino;
389 fqs->qs_gquota.qfs_nblks =
390 state.s_state[PRJQUOTA].blocks;
391 fqs->qs_gquota.qfs_nextents =
392 state.s_state[PRJQUOTA].nextents;
393 }
394 }
395 return 0;
396}
397
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500398static int quota_getxstate(struct super_block *sb, void __user *addr)
399{
400 struct fs_quota_stat fqs;
401 int ret;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500402
Jan Kara59b6ba62014-11-19 16:44:58 +0100403 if (!sb->s_qcop->get_state)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500404 return -ENOSYS;
Jan Kara59b6ba62014-11-19 16:44:58 +0100405 ret = quota_getstate(sb, &fqs);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500406 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
407 return -EFAULT;
408 return ret;
409}
410
Jan Karabc230e42014-11-19 16:17:45 +0100411static int quota_getstatev(struct super_block *sb, struct fs_quota_statv *fqs)
412{
413 int type;
414 struct qc_state state;
415 int ret;
416
Eric Sandeen3cd01262016-08-12 17:40:09 -0500417 memset(&state, 0, sizeof (struct qc_state));
Jan Karabc230e42014-11-19 16:17:45 +0100418 ret = sb->s_qcop->get_state(sb, &state);
419 if (ret < 0)
420 return ret;
421
422 memset(fqs, 0, sizeof(*fqs));
423 fqs->qs_version = FS_QSTAT_VERSION;
424 fqs->qs_flags = quota_state_to_flags(&state);
425 /* No quota enabled? */
426 if (!fqs->qs_flags)
427 return -ENOSYS;
428 fqs->qs_incoredqs = state.s_incoredqs;
429 /*
430 * GETXSTATV quotactl has space for just one set of time limits so
431 * report them for the first enabled quota type
432 */
433 for (type = 0; type < XQM_MAXQUOTAS; type++)
434 if (state.s_state[type].flags & QCI_ACCT_ENABLED)
435 break;
436 BUG_ON(type == XQM_MAXQUOTAS);
437 fqs->qs_btimelimit = state.s_state[type].spc_timelimit;
438 fqs->qs_itimelimit = state.s_state[type].ino_timelimit;
439 fqs->qs_rtbtimelimit = state.s_state[type].rt_spc_timelimit;
440 fqs->qs_bwarnlimit = state.s_state[type].spc_warnlimit;
441 fqs->qs_iwarnlimit = state.s_state[type].ino_warnlimit;
Eric Sandeen3cd01262016-08-12 17:40:09 -0500442
443 /* Inodes may be allocated even if inactive; copy out if present */
444 if (state.s_state[USRQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100445 fqs->qs_uquota.qfs_ino = state.s_state[USRQUOTA].ino;
446 fqs->qs_uquota.qfs_nblks = state.s_state[USRQUOTA].blocks;
447 fqs->qs_uquota.qfs_nextents = state.s_state[USRQUOTA].nextents;
448 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500449 if (state.s_state[GRPQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100450 fqs->qs_gquota.qfs_ino = state.s_state[GRPQUOTA].ino;
451 fqs->qs_gquota.qfs_nblks = state.s_state[GRPQUOTA].blocks;
452 fqs->qs_gquota.qfs_nextents = state.s_state[GRPQUOTA].nextents;
453 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500454 if (state.s_state[PRJQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100455 fqs->qs_pquota.qfs_ino = state.s_state[PRJQUOTA].ino;
456 fqs->qs_pquota.qfs_nblks = state.s_state[PRJQUOTA].blocks;
457 fqs->qs_pquota.qfs_nextents = state.s_state[PRJQUOTA].nextents;
458 }
459 return 0;
460}
461
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500462static int quota_getxstatev(struct super_block *sb, void __user *addr)
463{
464 struct fs_quota_statv fqs;
465 int ret;
466
Jan Kara59b6ba62014-11-19 16:44:58 +0100467 if (!sb->s_qcop->get_state)
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500468 return -ENOSYS;
469
470 memset(&fqs, 0, sizeof(fqs));
471 if (copy_from_user(&fqs, addr, 1)) /* Just read qs_version */
472 return -EFAULT;
473
474 /* If this kernel doesn't support user specified version, fail */
475 switch (fqs.qs_version) {
476 case FS_QSTATV_VERSION1:
477 break;
478 default:
479 return -EINVAL;
480 }
Jan Kara59b6ba62014-11-19 16:44:58 +0100481 ret = quota_getstatev(sb, &fqs);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500482 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
483 return -EFAULT;
484 return ret;
485}
486
Jan Kara14bf61f2014-10-09 16:03:13 +0200487/*
488 * XFS defines BBTOB and BTOBB macros inside fs/xfs/ and we cannot move them
489 * out of there as xfsprogs rely on definitions being in that header file. So
490 * just define same functions here for quota purposes.
491 */
492#define XFS_BB_SHIFT 9
493
494static inline u64 quota_bbtob(u64 blocks)
495{
496 return blocks << XFS_BB_SHIFT;
497}
498
499static inline u64 quota_btobb(u64 bytes)
500{
501 return (bytes + (1 << XFS_BB_SHIFT) - 1) >> XFS_BB_SHIFT;
502}
503
504static void copy_from_xfs_dqblk(struct qc_dqblk *dst, struct fs_disk_quota *src)
505{
506 dst->d_spc_hardlimit = quota_bbtob(src->d_blk_hardlimit);
507 dst->d_spc_softlimit = quota_bbtob(src->d_blk_softlimit);
508 dst->d_ino_hardlimit = src->d_ino_hardlimit;
509 dst->d_ino_softlimit = src->d_ino_softlimit;
510 dst->d_space = quota_bbtob(src->d_bcount);
511 dst->d_ino_count = src->d_icount;
512 dst->d_ino_timer = src->d_itimer;
513 dst->d_spc_timer = src->d_btimer;
514 dst->d_ino_warns = src->d_iwarns;
515 dst->d_spc_warns = src->d_bwarns;
516 dst->d_rt_spc_hardlimit = quota_bbtob(src->d_rtb_hardlimit);
517 dst->d_rt_spc_softlimit = quota_bbtob(src->d_rtb_softlimit);
518 dst->d_rt_space = quota_bbtob(src->d_rtbcount);
519 dst->d_rt_spc_timer = src->d_rtbtimer;
520 dst->d_rt_spc_warns = src->d_rtbwarns;
521 dst->d_fieldmask = 0;
522 if (src->d_fieldmask & FS_DQ_ISOFT)
523 dst->d_fieldmask |= QC_INO_SOFT;
524 if (src->d_fieldmask & FS_DQ_IHARD)
525 dst->d_fieldmask |= QC_INO_HARD;
526 if (src->d_fieldmask & FS_DQ_BSOFT)
527 dst->d_fieldmask |= QC_SPC_SOFT;
528 if (src->d_fieldmask & FS_DQ_BHARD)
529 dst->d_fieldmask |= QC_SPC_HARD;
530 if (src->d_fieldmask & FS_DQ_RTBSOFT)
531 dst->d_fieldmask |= QC_RT_SPC_SOFT;
532 if (src->d_fieldmask & FS_DQ_RTBHARD)
533 dst->d_fieldmask |= QC_RT_SPC_HARD;
534 if (src->d_fieldmask & FS_DQ_BTIMER)
535 dst->d_fieldmask |= QC_SPC_TIMER;
536 if (src->d_fieldmask & FS_DQ_ITIMER)
537 dst->d_fieldmask |= QC_INO_TIMER;
538 if (src->d_fieldmask & FS_DQ_RTBTIMER)
539 dst->d_fieldmask |= QC_RT_SPC_TIMER;
540 if (src->d_fieldmask & FS_DQ_BWARNS)
541 dst->d_fieldmask |= QC_SPC_WARNS;
542 if (src->d_fieldmask & FS_DQ_IWARNS)
543 dst->d_fieldmask |= QC_INO_WARNS;
544 if (src->d_fieldmask & FS_DQ_RTBWARNS)
545 dst->d_fieldmask |= QC_RT_SPC_WARNS;
546 if (src->d_fieldmask & FS_DQ_BCOUNT)
547 dst->d_fieldmask |= QC_SPACE;
548 if (src->d_fieldmask & FS_DQ_ICOUNT)
549 dst->d_fieldmask |= QC_INO_COUNT;
550 if (src->d_fieldmask & FS_DQ_RTBCOUNT)
551 dst->d_fieldmask |= QC_RT_SPACE;
552}
553
Jan Karac39fb532014-12-16 16:12:27 +0100554static void copy_qcinfo_from_xfs_dqblk(struct qc_info *dst,
555 struct fs_disk_quota *src)
556{
557 memset(dst, 0, sizeof(*dst));
558 dst->i_spc_timelimit = src->d_btimer;
559 dst->i_ino_timelimit = src->d_itimer;
560 dst->i_rt_spc_timelimit = src->d_rtbtimer;
561 dst->i_ino_warnlimit = src->d_iwarns;
562 dst->i_spc_warnlimit = src->d_bwarns;
563 dst->i_rt_spc_warnlimit = src->d_rtbwarns;
564 if (src->d_fieldmask & FS_DQ_BWARNS)
565 dst->i_fieldmask |= QC_SPC_WARNS;
566 if (src->d_fieldmask & FS_DQ_IWARNS)
567 dst->i_fieldmask |= QC_INO_WARNS;
568 if (src->d_fieldmask & FS_DQ_RTBWARNS)
569 dst->i_fieldmask |= QC_RT_SPC_WARNS;
570 if (src->d_fieldmask & FS_DQ_BTIMER)
571 dst->i_fieldmask |= QC_SPC_TIMER;
572 if (src->d_fieldmask & FS_DQ_ITIMER)
573 dst->i_fieldmask |= QC_INO_TIMER;
574 if (src->d_fieldmask & FS_DQ_RTBTIMER)
575 dst->i_fieldmask |= QC_RT_SPC_TIMER;
576}
577
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500578static int quota_setxquota(struct super_block *sb, int type, qid_t id,
579 void __user *addr)
580{
581 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200582 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700583 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500584
585 if (copy_from_user(&fdq, addr, sizeof(fdq)))
586 return -EFAULT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400587 if (!sb->s_qcop->set_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500588 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700589 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500590 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700591 return -EINVAL;
Jan Karac39fb532014-12-16 16:12:27 +0100592 /* Are we actually setting timer / warning limits for all users? */
Eric W. Biedermancfd4c702016-07-05 11:10:57 -0500593 if (from_kqid(sb->s_user_ns, qid) == 0 &&
Jan Karac39fb532014-12-16 16:12:27 +0100594 fdq.d_fieldmask & (FS_DQ_WARNS_MASK | FS_DQ_TIMER_MASK)) {
595 struct qc_info qinfo;
596 int ret;
597
598 if (!sb->s_qcop->set_info)
599 return -EINVAL;
600 copy_qcinfo_from_xfs_dqblk(&qinfo, &fdq);
601 ret = sb->s_qcop->set_info(sb, type, &qinfo);
602 if (ret)
603 return ret;
604 /* These are already done */
605 fdq.d_fieldmask &= ~(FS_DQ_WARNS_MASK | FS_DQ_TIMER_MASK);
606 }
Jan Kara14bf61f2014-10-09 16:03:13 +0200607 copy_from_xfs_dqblk(&qdq, &fdq);
608 return sb->s_qcop->set_dqblk(sb, qid, &qdq);
609}
610
611static void copy_to_xfs_dqblk(struct fs_disk_quota *dst, struct qc_dqblk *src,
612 int type, qid_t id)
613{
614 memset(dst, 0, sizeof(*dst));
615 dst->d_version = FS_DQUOT_VERSION;
616 dst->d_id = id;
617 if (type == USRQUOTA)
618 dst->d_flags = FS_USER_QUOTA;
619 else if (type == PRJQUOTA)
620 dst->d_flags = FS_PROJ_QUOTA;
621 else
622 dst->d_flags = FS_GROUP_QUOTA;
623 dst->d_blk_hardlimit = quota_btobb(src->d_spc_hardlimit);
624 dst->d_blk_softlimit = quota_btobb(src->d_spc_softlimit);
625 dst->d_ino_hardlimit = src->d_ino_hardlimit;
626 dst->d_ino_softlimit = src->d_ino_softlimit;
627 dst->d_bcount = quota_btobb(src->d_space);
628 dst->d_icount = src->d_ino_count;
629 dst->d_itimer = src->d_ino_timer;
630 dst->d_btimer = src->d_spc_timer;
631 dst->d_iwarns = src->d_ino_warns;
632 dst->d_bwarns = src->d_spc_warns;
633 dst->d_rtb_hardlimit = quota_btobb(src->d_rt_spc_hardlimit);
634 dst->d_rtb_softlimit = quota_btobb(src->d_rt_spc_softlimit);
635 dst->d_rtbcount = quota_btobb(src->d_rt_space);
636 dst->d_rtbtimer = src->d_rt_spc_timer;
637 dst->d_rtbwarns = src->d_rt_spc_warns;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500638}
639
640static int quota_getxquota(struct super_block *sb, int type, qid_t id,
641 void __user *addr)
642{
643 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200644 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700645 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500646 int ret;
647
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400648 if (!sb->s_qcop->get_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500649 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700650 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500651 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700652 return -EINVAL;
Jan Kara14bf61f2014-10-09 16:03:13 +0200653 ret = sb->s_qcop->get_dqblk(sb, qid, &qdq);
654 if (ret)
655 return ret;
656 copy_to_xfs_dqblk(&fdq, &qdq, type, id);
657 if (copy_to_user(addr, &fdq, sizeof(fdq)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500658 return -EFAULT;
659 return ret;
660}
661
Eric Sandeen8b375242016-02-08 11:21:50 +1100662/*
663 * Return quota for next active quota >= this id, if any exists,
Eric Sandeenba581482016-01-22 12:25:32 -0600664 * otherwise return -ENOENT via ->get_nextdqblk.
Eric Sandeen8b375242016-02-08 11:21:50 +1100665 */
666static int quota_getnextxquota(struct super_block *sb, int type, qid_t id,
667 void __user *addr)
668{
669 struct fs_disk_quota fdq;
670 struct qc_dqblk qdq;
671 struct kqid qid;
672 qid_t id_out;
673 int ret;
674
675 if (!sb->s_qcop->get_nextdqblk)
676 return -ENOSYS;
677 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500678 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric Sandeen8b375242016-02-08 11:21:50 +1100679 return -EINVAL;
680 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &qdq);
681 if (ret)
682 return ret;
683 id_out = from_kqid(current_user_ns(), qid);
684 copy_to_xfs_dqblk(&fdq, &qdq, type, id_out);
685 if (copy_to_user(addr, &fdq, sizeof(fdq)))
686 return -EFAULT;
687 return ret;
688}
689
Eric Sandeen9da93f92014-05-05 17:25:50 +1000690static int quota_rmxquota(struct super_block *sb, void __user *addr)
691{
692 __u32 flags;
693
694 if (copy_from_user(&flags, addr, sizeof(flags)))
695 return -EFAULT;
696 if (!sb->s_qcop->rm_xquota)
697 return -ENOSYS;
698 return sb->s_qcop->rm_xquota(sb, flags);
699}
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701/* Copy parameters and call proper function */
Jan Kara268157b2009-01-27 15:47:22 +0100702static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id,
Jan Karaf00c9e42010-09-15 17:38:58 +0200703 void __user *addr, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500705 int ret;
706
707 if (type >= (XQM_COMMAND(cmd) ? XQM_MAXQUOTAS : MAXQUOTAS))
708 return -EINVAL;
Jan Kara2c5f6482014-09-30 10:43:09 +0200709 /*
710 * Quota not supported on this fs? Check this before s_quota_types
711 * since they needn't be set if quota is not supported at all.
712 */
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500713 if (!sb->s_qcop)
714 return -ENOSYS;
Jan Kara2c5f6482014-09-30 10:43:09 +0200715 if (!(sb->s_quota_types & (1 << type)))
716 return -EINVAL;
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500717
718 ret = check_quotactl_permission(sb, type, cmd, id);
719 if (ret < 0)
720 return ret;
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 switch (cmd) {
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500723 case Q_QUOTAON:
Eric Sandeen3218a3e2016-02-08 11:21:24 +1100724 return quota_quotaon(sb, type, id, path);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500725 case Q_QUOTAOFF:
Jan Karad3b86322014-10-08 16:07:12 +0200726 return quota_quotaoff(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500727 case Q_GETFMT:
728 return quota_getfmt(sb, type, addr);
729 case Q_GETINFO:
730 return quota_getinfo(sb, type, addr);
731 case Q_SETINFO:
732 return quota_setinfo(sb, type, addr);
733 case Q_GETQUOTA:
734 return quota_getquota(sb, type, id, addr);
Eric Sandeen926132c2016-02-08 11:22:21 +1100735 case Q_GETNEXTQUOTA:
736 return quota_getnextquota(sb, type, id, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500737 case Q_SETQUOTA:
738 return quota_setquota(sb, type, id, addr);
739 case Q_SYNC:
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500740 if (!sb->s_qcop->quota_sync)
741 return -ENOSYS;
Jan Karaceed1722012-07-03 16:45:28 +0200742 return sb->s_qcop->quota_sync(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500743 case Q_XQUOTAON:
Jan Kara38e478c2014-10-08 15:56:21 +0200744 return quota_enable(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500745 case Q_XQUOTAOFF:
Jan Kara38e478c2014-10-08 15:56:21 +0200746 return quota_disable(sb, addr);
Eric Sandeen9da93f92014-05-05 17:25:50 +1000747 case Q_XQUOTARM:
748 return quota_rmxquota(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500749 case Q_XGETQSTAT:
750 return quota_getxstate(sb, addr);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500751 case Q_XGETQSTATV:
752 return quota_getxstatev(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500753 case Q_XSETQLIM:
754 return quota_setxquota(sb, type, id, addr);
755 case Q_XGETQUOTA:
756 return quota_getxquota(sb, type, id, addr);
Eric Sandeen8b375242016-02-08 11:21:50 +1100757 case Q_XGETNEXTQUOTA:
758 return quota_getnextxquota(sb, type, id, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500759 case Q_XQUOTASYNC:
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500760 if (sb->s_flags & MS_RDONLY)
761 return -EROFS;
Christoph Hellwig4b217ed2012-02-20 02:28:18 +0000762 /* XFS quotas are fully coherent now, making this call a noop */
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500763 return 0;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500764 default:
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500765 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
Lee Jones56df1272012-11-03 23:02:28 +0100769#ifdef CONFIG_BLOCK
770
Jan Karadcdbed82012-02-10 11:03:01 +0100771/* Return 1 if 'cmd' will block on frozen filesystem */
772static int quotactl_cmd_write(int cmd)
773{
Jan Karaccf370e2016-02-18 14:03:03 +0100774 /*
775 * We cannot allow Q_GETQUOTA and Q_GETNEXTQUOTA without write access
776 * as dquot_acquire() may allocate space for new structure and OCFS2
777 * needs to increment on-disk use count.
778 */
Jan Karadcdbed82012-02-10 11:03:01 +0100779 switch (cmd) {
780 case Q_GETFMT:
781 case Q_GETINFO:
782 case Q_SYNC:
783 case Q_XGETQSTAT:
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500784 case Q_XGETQSTATV:
Jan Karadcdbed82012-02-10 11:03:01 +0100785 case Q_XGETQUOTA:
Eric Sandeen8b375242016-02-08 11:21:50 +1100786 case Q_XGETNEXTQUOTA:
Jan Karadcdbed82012-02-10 11:03:01 +0100787 case Q_XQUOTASYNC:
788 return 0;
789 }
790 return 1;
791}
792
Lee Jones56df1272012-11-03 23:02:28 +0100793#endif /* CONFIG_BLOCK */
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795/*
David Howells93614012006-09-30 20:45:40 +0200796 * look up a superblock on which quota ops will be performed
797 * - use the name of a block device to find the superblock thereon
798 */
Jan Karadcdbed82012-02-10 11:03:01 +0100799static struct super_block *quotactl_block(const char __user *special, int cmd)
David Howells93614012006-09-30 20:45:40 +0200800{
801#ifdef CONFIG_BLOCK
802 struct block_device *bdev;
803 struct super_block *sb;
Jeff Layton91a27b22012-10-10 15:25:28 -0400804 struct filename *tmp = getname(special);
David Howells93614012006-09-30 20:45:40 +0200805
806 if (IS_ERR(tmp))
David Howellse231c2e2008-02-07 00:15:26 -0800807 return ERR_CAST(tmp);
Jeff Layton91a27b22012-10-10 15:25:28 -0400808 bdev = lookup_bdev(tmp->name);
David Howells93614012006-09-30 20:45:40 +0200809 putname(tmp);
810 if (IS_ERR(bdev))
David Howellse231c2e2008-02-07 00:15:26 -0800811 return ERR_CAST(bdev);
Jan Karadcdbed82012-02-10 11:03:01 +0100812 if (quotactl_cmd_write(cmd))
813 sb = get_super_thawed(bdev);
814 else
815 sb = get_super(bdev);
David Howells93614012006-09-30 20:45:40 +0200816 bdput(bdev);
817 if (!sb)
818 return ERR_PTR(-ENODEV);
819
820 return sb;
821#else
822 return ERR_PTR(-ENODEV);
823#endif
824}
825
826/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 * This is the system call interface. This communicates with
828 * the user-level programs. Currently this only supports diskquota
829 * calls. Maybe we need to add the process quotas etc. in the future,
830 * but we probably should use rlimits for that.
831 */
Heiko Carstens3cdad422009-01-14 14:14:22 +0100832SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special,
833 qid_t, id, void __user *, addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
835 uint cmds, type;
836 struct super_block *sb = NULL;
Jan Karaf00c9e42010-09-15 17:38:58 +0200837 struct path path, *pathp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 int ret;
839
840 cmds = cmd >> SUBCMDSHIFT;
841 type = cmd & SUBCMDMASK;
842
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500843 /*
844 * As a special case Q_SYNC can be called without a specific device.
845 * It will iterate all superblocks that have quota enabled and call
846 * the sync action on each of them.
847 */
848 if (!special) {
849 if (cmds == Q_SYNC)
850 return quota_sync_all(type);
851 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853
Jan Karaf00c9e42010-09-15 17:38:58 +0200854 /*
855 * Path for quotaon has to be resolved before grabbing superblock
856 * because that gets s_umount sem which is also possibly needed by path
857 * resolution (think about autofs) and thus deadlocks could arise.
858 */
859 if (cmds == Q_QUOTAON) {
Trond Myklebust815d4052011-09-26 20:36:09 -0400860 ret = user_path_at(AT_FDCWD, addr, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
Jan Karaf00c9e42010-09-15 17:38:58 +0200861 if (ret)
862 pathp = ERR_PTR(ret);
863 else
864 pathp = &path;
865 }
866
Jan Karadcdbed82012-02-10 11:03:01 +0100867 sb = quotactl_block(special, cmds);
Jan Kara0aaa6182011-10-10 18:32:06 +0200868 if (IS_ERR(sb)) {
869 ret = PTR_ERR(sb);
870 goto out;
871 }
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500872
Jan Karaf00c9e42010-09-15 17:38:58 +0200873 ret = do_quotactl(sb, type, cmds, id, addr, pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500875 drop_super(sb);
Jan Kara0aaa6182011-10-10 18:32:06 +0200876out:
Jan Karaf00c9e42010-09-15 17:38:58 +0200877 if (pathp && !IS_ERR(pathp))
878 path_put(pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return ret;
880}