blob: 07e08c7d05cae23d92ab891cb384e5dda90509df [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,
Al Viro8c54ca92016-11-20 19:49:34 -050083 const 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
Jan Kara9d1ccbe2016-11-23 13:35:14 +0100107 if (!sb_has_quota_active(sb, type))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500108 return -ESRCH;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500109 fmt = sb_dqopt(sb)->info[type].dqi_format->qf_fmt_id;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500110 if (copy_to_user(addr, &fmt, sizeof(fmt)))
111 return -EFAULT;
112 return 0;
113}
114
115static int quota_getinfo(struct super_block *sb, int type, void __user *addr)
116{
Jan Kara0a2403392014-11-19 00:42:09 +0100117 struct qc_state state;
118 struct qc_type_state *tstate;
119 struct if_dqinfo uinfo;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500120 int ret;
121
Jan Kara0a2403392014-11-19 00:42:09 +0100122 /* This checks whether qc_state has enough entries... */
123 BUILD_BUG_ON(MAXQUOTAS > XQM_MAXQUOTAS);
124 if (!sb->s_qcop->get_state)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500125 return -ENOSYS;
Jan Kara0a2403392014-11-19 00:42:09 +0100126 ret = sb->s_qcop->get_state(sb, &state);
127 if (ret)
128 return ret;
129 tstate = state.s_state + type;
130 if (!(tstate->flags & QCI_ACCT_ENABLED))
131 return -ESRCH;
132 memset(&uinfo, 0, sizeof(uinfo));
133 uinfo.dqi_bgrace = tstate->spc_timelimit;
134 uinfo.dqi_igrace = tstate->ino_timelimit;
135 if (tstate->flags & QCI_SYSFILE)
136 uinfo.dqi_flags |= DQF_SYS_FILE;
137 if (tstate->flags & QCI_ROOT_SQUASH)
138 uinfo.dqi_flags |= DQF_ROOT_SQUASH;
139 uinfo.dqi_valid = IIF_ALL;
Dan Carpenter72d4d0e2015-08-11 00:29:55 +0300140 if (copy_to_user(addr, &uinfo, sizeof(uinfo)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500141 return -EFAULT;
Dan Carpenter72d4d0e2015-08-11 00:29:55 +0300142 return 0;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500143}
144
145static int quota_setinfo(struct super_block *sb, int type, void __user *addr)
146{
147 struct if_dqinfo info;
Jan Kara5eacb2a2014-12-16 12:03:51 +0100148 struct qc_info qinfo;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500149
150 if (copy_from_user(&info, addr, sizeof(info)))
151 return -EFAULT;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500152 if (!sb->s_qcop->set_info)
153 return -ENOSYS;
Jan Kara5eacb2a2014-12-16 12:03:51 +0100154 if (info.dqi_valid & ~(IIF_FLAGS | IIF_BGRACE | IIF_IGRACE))
155 return -EINVAL;
156 memset(&qinfo, 0, sizeof(qinfo));
157 if (info.dqi_valid & IIF_FLAGS) {
158 if (info.dqi_flags & ~DQF_SETINFO_MASK)
159 return -EINVAL;
160 if (info.dqi_flags & DQF_ROOT_SQUASH)
161 qinfo.i_flags |= QCI_ROOT_SQUASH;
162 qinfo.i_fieldmask |= QC_FLAGS;
163 }
164 if (info.dqi_valid & IIF_BGRACE) {
165 qinfo.i_spc_timelimit = info.dqi_bgrace;
166 qinfo.i_fieldmask |= QC_SPC_TIMER;
167 }
168 if (info.dqi_valid & IIF_IGRACE) {
169 qinfo.i_ino_timelimit = info.dqi_igrace;
170 qinfo.i_fieldmask |= QC_INO_TIMER;
171 }
172 return sb->s_qcop->set_info(sb, type, &qinfo);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500173}
174
Jan Kara14bf61f2014-10-09 16:03:13 +0200175static inline qsize_t qbtos(qsize_t blocks)
176{
177 return blocks << QIF_DQBLKSIZE_BITS;
178}
179
180static inline qsize_t stoqb(qsize_t space)
181{
182 return (space + QIF_DQBLKSIZE - 1) >> QIF_DQBLKSIZE_BITS;
183}
184
185static void copy_to_if_dqblk(struct if_dqblk *dst, struct qc_dqblk *src)
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400186{
Dan Carpenter18da65e2013-11-01 13:21:54 +0300187 memset(dst, 0, sizeof(*dst));
Jan Kara14bf61f2014-10-09 16:03:13 +0200188 dst->dqb_bhardlimit = stoqb(src->d_spc_hardlimit);
189 dst->dqb_bsoftlimit = stoqb(src->d_spc_softlimit);
190 dst->dqb_curspace = src->d_space;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400191 dst->dqb_ihardlimit = src->d_ino_hardlimit;
192 dst->dqb_isoftlimit = src->d_ino_softlimit;
Jan Kara14bf61f2014-10-09 16:03:13 +0200193 dst->dqb_curinodes = src->d_ino_count;
194 dst->dqb_btime = src->d_spc_timer;
195 dst->dqb_itime = src->d_ino_timer;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400196 dst->dqb_valid = QIF_ALL;
197}
198
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500199static int quota_getquota(struct super_block *sb, int type, qid_t id,
200 void __user *addr)
201{
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700202 struct kqid qid;
Jan Kara14bf61f2014-10-09 16:03:13 +0200203 struct qc_dqblk fdq;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500204 struct if_dqblk idq;
205 int ret;
206
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500207 if (!sb->s_qcop->get_dqblk)
208 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700209 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500210 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700211 return -EINVAL;
212 ret = sb->s_qcop->get_dqblk(sb, qid, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500213 if (ret)
214 return ret;
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400215 copy_to_if_dqblk(&idq, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500216 if (copy_to_user(addr, &idq, sizeof(idq)))
217 return -EFAULT;
218 return 0;
219}
220
Eric Sandeen926132c2016-02-08 11:22:21 +1100221/*
222 * Return quota for next active quota >= this id, if any exists,
Eric Sandeenba581482016-01-22 12:25:32 -0600223 * otherwise return -ENOENT via ->get_nextdqblk
Eric Sandeen926132c2016-02-08 11:22:21 +1100224 */
225static int quota_getnextquota(struct super_block *sb, int type, qid_t id,
226 void __user *addr)
227{
228 struct kqid qid;
229 struct qc_dqblk fdq;
230 struct if_nextdqblk idq;
231 int ret;
232
233 if (!sb->s_qcop->get_nextdqblk)
234 return -ENOSYS;
235 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500236 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric Sandeen926132c2016-02-08 11:22:21 +1100237 return -EINVAL;
238 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &fdq);
239 if (ret)
240 return ret;
241 /* struct if_nextdqblk is a superset of struct if_dqblk */
242 copy_to_if_dqblk((struct if_dqblk *)&idq, &fdq);
243 idq.dqb_id = from_kqid(current_user_ns(), qid);
244 if (copy_to_user(addr, &idq, sizeof(idq)))
245 return -EFAULT;
246 return 0;
247}
248
Jan Kara14bf61f2014-10-09 16:03:13 +0200249static void copy_from_if_dqblk(struct qc_dqblk *dst, struct if_dqblk *src)
Christoph Hellwigc472b432010-05-06 17:05:17 -0400250{
Jan Kara14bf61f2014-10-09 16:03:13 +0200251 dst->d_spc_hardlimit = qbtos(src->dqb_bhardlimit);
252 dst->d_spc_softlimit = qbtos(src->dqb_bsoftlimit);
253 dst->d_space = src->dqb_curspace;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400254 dst->d_ino_hardlimit = src->dqb_ihardlimit;
255 dst->d_ino_softlimit = src->dqb_isoftlimit;
Jan Kara14bf61f2014-10-09 16:03:13 +0200256 dst->d_ino_count = src->dqb_curinodes;
257 dst->d_spc_timer = src->dqb_btime;
258 dst->d_ino_timer = src->dqb_itime;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400259
260 dst->d_fieldmask = 0;
261 if (src->dqb_valid & QIF_BLIMITS)
Jan Kara14bf61f2014-10-09 16:03:13 +0200262 dst->d_fieldmask |= QC_SPC_SOFT | QC_SPC_HARD;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400263 if (src->dqb_valid & QIF_SPACE)
Jan Kara14bf61f2014-10-09 16:03:13 +0200264 dst->d_fieldmask |= QC_SPACE;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400265 if (src->dqb_valid & QIF_ILIMITS)
Jan Kara14bf61f2014-10-09 16:03:13 +0200266 dst->d_fieldmask |= QC_INO_SOFT | QC_INO_HARD;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400267 if (src->dqb_valid & QIF_INODES)
Jan Kara14bf61f2014-10-09 16:03:13 +0200268 dst->d_fieldmask |= QC_INO_COUNT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400269 if (src->dqb_valid & QIF_BTIME)
Jan Kara14bf61f2014-10-09 16:03:13 +0200270 dst->d_fieldmask |= QC_SPC_TIMER;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400271 if (src->dqb_valid & QIF_ITIME)
Jan Kara14bf61f2014-10-09 16:03:13 +0200272 dst->d_fieldmask |= QC_INO_TIMER;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400273}
274
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500275static int quota_setquota(struct super_block *sb, int type, qid_t id,
276 void __user *addr)
277{
Jan Kara14bf61f2014-10-09 16:03:13 +0200278 struct qc_dqblk fdq;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500279 struct if_dqblk idq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700280 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500281
282 if (copy_from_user(&idq, addr, sizeof(idq)))
283 return -EFAULT;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500284 if (!sb->s_qcop->set_dqblk)
285 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700286 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500287 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700288 return -EINVAL;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400289 copy_from_if_dqblk(&fdq, &idq);
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700290 return sb->s_qcop->set_dqblk(sb, qid, &fdq);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500291}
292
Jan Kara38e478c2014-10-08 15:56:21 +0200293static int quota_enable(struct super_block *sb, void __user *addr)
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500294{
295 __u32 flags;
296
297 if (copy_from_user(&flags, addr, sizeof(flags)))
298 return -EFAULT;
Jan Kara38e478c2014-10-08 15:56:21 +0200299 if (!sb->s_qcop->quota_enable)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500300 return -ENOSYS;
Jan Kara38e478c2014-10-08 15:56:21 +0200301 return sb->s_qcop->quota_enable(sb, flags);
302}
303
304static int quota_disable(struct super_block *sb, void __user *addr)
305{
306 __u32 flags;
307
308 if (copy_from_user(&flags, addr, sizeof(flags)))
309 return -EFAULT;
310 if (!sb->s_qcop->quota_disable)
311 return -ENOSYS;
312 return sb->s_qcop->quota_disable(sb, flags);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500313}
314
Jan Karabc230e42014-11-19 16:17:45 +0100315static int quota_state_to_flags(struct qc_state *state)
316{
317 int flags = 0;
318
319 if (state->s_state[USRQUOTA].flags & QCI_ACCT_ENABLED)
320 flags |= FS_QUOTA_UDQ_ACCT;
321 if (state->s_state[USRQUOTA].flags & QCI_LIMITS_ENFORCED)
322 flags |= FS_QUOTA_UDQ_ENFD;
323 if (state->s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED)
324 flags |= FS_QUOTA_GDQ_ACCT;
325 if (state->s_state[GRPQUOTA].flags & QCI_LIMITS_ENFORCED)
326 flags |= FS_QUOTA_GDQ_ENFD;
327 if (state->s_state[PRJQUOTA].flags & QCI_ACCT_ENABLED)
328 flags |= FS_QUOTA_PDQ_ACCT;
329 if (state->s_state[PRJQUOTA].flags & QCI_LIMITS_ENFORCED)
330 flags |= FS_QUOTA_PDQ_ENFD;
331 return flags;
332}
333
334static int quota_getstate(struct super_block *sb, struct fs_quota_stat *fqs)
335{
336 int type;
337 struct qc_state state;
338 int ret;
339
Eric Sandeen3cd01262016-08-12 17:40:09 -0500340 memset(&state, 0, sizeof (struct qc_state));
Jan Karabc230e42014-11-19 16:17:45 +0100341 ret = sb->s_qcop->get_state(sb, &state);
342 if (ret < 0)
343 return ret;
344
345 memset(fqs, 0, sizeof(*fqs));
346 fqs->qs_version = FS_QSTAT_VERSION;
347 fqs->qs_flags = quota_state_to_flags(&state);
348 /* No quota enabled? */
349 if (!fqs->qs_flags)
350 return -ENOSYS;
351 fqs->qs_incoredqs = state.s_incoredqs;
352 /*
353 * GETXSTATE quotactl has space for just one set of time limits so
354 * report them for the first enabled quota type
355 */
356 for (type = 0; type < XQM_MAXQUOTAS; type++)
357 if (state.s_state[type].flags & QCI_ACCT_ENABLED)
358 break;
359 BUG_ON(type == XQM_MAXQUOTAS);
360 fqs->qs_btimelimit = state.s_state[type].spc_timelimit;
361 fqs->qs_itimelimit = state.s_state[type].ino_timelimit;
362 fqs->qs_rtbtimelimit = state.s_state[type].rt_spc_timelimit;
363 fqs->qs_bwarnlimit = state.s_state[type].spc_warnlimit;
364 fqs->qs_iwarnlimit = state.s_state[type].ino_warnlimit;
Eric Sandeen3cd01262016-08-12 17:40:09 -0500365
366 /* Inodes may be allocated even if inactive; copy out if present */
367 if (state.s_state[USRQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100368 fqs->qs_uquota.qfs_ino = state.s_state[USRQUOTA].ino;
369 fqs->qs_uquota.qfs_nblks = state.s_state[USRQUOTA].blocks;
370 fqs->qs_uquota.qfs_nextents = state.s_state[USRQUOTA].nextents;
371 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500372 if (state.s_state[GRPQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100373 fqs->qs_gquota.qfs_ino = state.s_state[GRPQUOTA].ino;
374 fqs->qs_gquota.qfs_nblks = state.s_state[GRPQUOTA].blocks;
375 fqs->qs_gquota.qfs_nextents = state.s_state[GRPQUOTA].nextents;
376 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500377 if (state.s_state[PRJQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100378 /*
379 * Q_XGETQSTAT doesn't have room for both group and project
380 * quotas. So, allow the project quota values to be copied out
381 * only if there is no group quota information available.
382 */
383 if (!(state.s_state[GRPQUOTA].flags & QCI_ACCT_ENABLED)) {
384 fqs->qs_gquota.qfs_ino = state.s_state[PRJQUOTA].ino;
385 fqs->qs_gquota.qfs_nblks =
386 state.s_state[PRJQUOTA].blocks;
387 fqs->qs_gquota.qfs_nextents =
388 state.s_state[PRJQUOTA].nextents;
389 }
390 }
391 return 0;
392}
393
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500394static int quota_getxstate(struct super_block *sb, void __user *addr)
395{
396 struct fs_quota_stat fqs;
397 int ret;
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500398
Jan Kara59b6ba62014-11-19 16:44:58 +0100399 if (!sb->s_qcop->get_state)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500400 return -ENOSYS;
Jan Kara59b6ba62014-11-19 16:44:58 +0100401 ret = quota_getstate(sb, &fqs);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500402 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
403 return -EFAULT;
404 return ret;
405}
406
Jan Karabc230e42014-11-19 16:17:45 +0100407static int quota_getstatev(struct super_block *sb, struct fs_quota_statv *fqs)
408{
409 int type;
410 struct qc_state state;
411 int ret;
412
Eric Sandeen3cd01262016-08-12 17:40:09 -0500413 memset(&state, 0, sizeof (struct qc_state));
Jan Karabc230e42014-11-19 16:17:45 +0100414 ret = sb->s_qcop->get_state(sb, &state);
415 if (ret < 0)
416 return ret;
417
418 memset(fqs, 0, sizeof(*fqs));
419 fqs->qs_version = FS_QSTAT_VERSION;
420 fqs->qs_flags = quota_state_to_flags(&state);
421 /* No quota enabled? */
422 if (!fqs->qs_flags)
423 return -ENOSYS;
424 fqs->qs_incoredqs = state.s_incoredqs;
425 /*
426 * GETXSTATV quotactl has space for just one set of time limits so
427 * report them for the first enabled quota type
428 */
429 for (type = 0; type < XQM_MAXQUOTAS; type++)
430 if (state.s_state[type].flags & QCI_ACCT_ENABLED)
431 break;
432 BUG_ON(type == XQM_MAXQUOTAS);
433 fqs->qs_btimelimit = state.s_state[type].spc_timelimit;
434 fqs->qs_itimelimit = state.s_state[type].ino_timelimit;
435 fqs->qs_rtbtimelimit = state.s_state[type].rt_spc_timelimit;
436 fqs->qs_bwarnlimit = state.s_state[type].spc_warnlimit;
437 fqs->qs_iwarnlimit = state.s_state[type].ino_warnlimit;
Eric Sandeen3cd01262016-08-12 17:40:09 -0500438
439 /* Inodes may be allocated even if inactive; copy out if present */
440 if (state.s_state[USRQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100441 fqs->qs_uquota.qfs_ino = state.s_state[USRQUOTA].ino;
442 fqs->qs_uquota.qfs_nblks = state.s_state[USRQUOTA].blocks;
443 fqs->qs_uquota.qfs_nextents = state.s_state[USRQUOTA].nextents;
444 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500445 if (state.s_state[GRPQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100446 fqs->qs_gquota.qfs_ino = state.s_state[GRPQUOTA].ino;
447 fqs->qs_gquota.qfs_nblks = state.s_state[GRPQUOTA].blocks;
448 fqs->qs_gquota.qfs_nextents = state.s_state[GRPQUOTA].nextents;
449 }
Eric Sandeen3cd01262016-08-12 17:40:09 -0500450 if (state.s_state[PRJQUOTA].ino) {
Jan Karabc230e42014-11-19 16:17:45 +0100451 fqs->qs_pquota.qfs_ino = state.s_state[PRJQUOTA].ino;
452 fqs->qs_pquota.qfs_nblks = state.s_state[PRJQUOTA].blocks;
453 fqs->qs_pquota.qfs_nextents = state.s_state[PRJQUOTA].nextents;
454 }
455 return 0;
456}
457
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500458static int quota_getxstatev(struct super_block *sb, void __user *addr)
459{
460 struct fs_quota_statv fqs;
461 int ret;
462
Jan Kara59b6ba62014-11-19 16:44:58 +0100463 if (!sb->s_qcop->get_state)
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500464 return -ENOSYS;
465
466 memset(&fqs, 0, sizeof(fqs));
467 if (copy_from_user(&fqs, addr, 1)) /* Just read qs_version */
468 return -EFAULT;
469
470 /* If this kernel doesn't support user specified version, fail */
471 switch (fqs.qs_version) {
472 case FS_QSTATV_VERSION1:
473 break;
474 default:
475 return -EINVAL;
476 }
Jan Kara59b6ba62014-11-19 16:44:58 +0100477 ret = quota_getstatev(sb, &fqs);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500478 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
479 return -EFAULT;
480 return ret;
481}
482
Jan Kara14bf61f2014-10-09 16:03:13 +0200483/*
484 * XFS defines BBTOB and BTOBB macros inside fs/xfs/ and we cannot move them
485 * out of there as xfsprogs rely on definitions being in that header file. So
486 * just define same functions here for quota purposes.
487 */
488#define XFS_BB_SHIFT 9
489
490static inline u64 quota_bbtob(u64 blocks)
491{
492 return blocks << XFS_BB_SHIFT;
493}
494
495static inline u64 quota_btobb(u64 bytes)
496{
497 return (bytes + (1 << XFS_BB_SHIFT) - 1) >> XFS_BB_SHIFT;
498}
499
500static void copy_from_xfs_dqblk(struct qc_dqblk *dst, struct fs_disk_quota *src)
501{
502 dst->d_spc_hardlimit = quota_bbtob(src->d_blk_hardlimit);
503 dst->d_spc_softlimit = quota_bbtob(src->d_blk_softlimit);
504 dst->d_ino_hardlimit = src->d_ino_hardlimit;
505 dst->d_ino_softlimit = src->d_ino_softlimit;
506 dst->d_space = quota_bbtob(src->d_bcount);
507 dst->d_ino_count = src->d_icount;
508 dst->d_ino_timer = src->d_itimer;
509 dst->d_spc_timer = src->d_btimer;
510 dst->d_ino_warns = src->d_iwarns;
511 dst->d_spc_warns = src->d_bwarns;
512 dst->d_rt_spc_hardlimit = quota_bbtob(src->d_rtb_hardlimit);
513 dst->d_rt_spc_softlimit = quota_bbtob(src->d_rtb_softlimit);
514 dst->d_rt_space = quota_bbtob(src->d_rtbcount);
515 dst->d_rt_spc_timer = src->d_rtbtimer;
516 dst->d_rt_spc_warns = src->d_rtbwarns;
517 dst->d_fieldmask = 0;
518 if (src->d_fieldmask & FS_DQ_ISOFT)
519 dst->d_fieldmask |= QC_INO_SOFT;
520 if (src->d_fieldmask & FS_DQ_IHARD)
521 dst->d_fieldmask |= QC_INO_HARD;
522 if (src->d_fieldmask & FS_DQ_BSOFT)
523 dst->d_fieldmask |= QC_SPC_SOFT;
524 if (src->d_fieldmask & FS_DQ_BHARD)
525 dst->d_fieldmask |= QC_SPC_HARD;
526 if (src->d_fieldmask & FS_DQ_RTBSOFT)
527 dst->d_fieldmask |= QC_RT_SPC_SOFT;
528 if (src->d_fieldmask & FS_DQ_RTBHARD)
529 dst->d_fieldmask |= QC_RT_SPC_HARD;
530 if (src->d_fieldmask & FS_DQ_BTIMER)
531 dst->d_fieldmask |= QC_SPC_TIMER;
532 if (src->d_fieldmask & FS_DQ_ITIMER)
533 dst->d_fieldmask |= QC_INO_TIMER;
534 if (src->d_fieldmask & FS_DQ_RTBTIMER)
535 dst->d_fieldmask |= QC_RT_SPC_TIMER;
536 if (src->d_fieldmask & FS_DQ_BWARNS)
537 dst->d_fieldmask |= QC_SPC_WARNS;
538 if (src->d_fieldmask & FS_DQ_IWARNS)
539 dst->d_fieldmask |= QC_INO_WARNS;
540 if (src->d_fieldmask & FS_DQ_RTBWARNS)
541 dst->d_fieldmask |= QC_RT_SPC_WARNS;
542 if (src->d_fieldmask & FS_DQ_BCOUNT)
543 dst->d_fieldmask |= QC_SPACE;
544 if (src->d_fieldmask & FS_DQ_ICOUNT)
545 dst->d_fieldmask |= QC_INO_COUNT;
546 if (src->d_fieldmask & FS_DQ_RTBCOUNT)
547 dst->d_fieldmask |= QC_RT_SPACE;
548}
549
Jan Karac39fb532014-12-16 16:12:27 +0100550static void copy_qcinfo_from_xfs_dqblk(struct qc_info *dst,
551 struct fs_disk_quota *src)
552{
553 memset(dst, 0, sizeof(*dst));
554 dst->i_spc_timelimit = src->d_btimer;
555 dst->i_ino_timelimit = src->d_itimer;
556 dst->i_rt_spc_timelimit = src->d_rtbtimer;
557 dst->i_ino_warnlimit = src->d_iwarns;
558 dst->i_spc_warnlimit = src->d_bwarns;
559 dst->i_rt_spc_warnlimit = src->d_rtbwarns;
560 if (src->d_fieldmask & FS_DQ_BWARNS)
561 dst->i_fieldmask |= QC_SPC_WARNS;
562 if (src->d_fieldmask & FS_DQ_IWARNS)
563 dst->i_fieldmask |= QC_INO_WARNS;
564 if (src->d_fieldmask & FS_DQ_RTBWARNS)
565 dst->i_fieldmask |= QC_RT_SPC_WARNS;
566 if (src->d_fieldmask & FS_DQ_BTIMER)
567 dst->i_fieldmask |= QC_SPC_TIMER;
568 if (src->d_fieldmask & FS_DQ_ITIMER)
569 dst->i_fieldmask |= QC_INO_TIMER;
570 if (src->d_fieldmask & FS_DQ_RTBTIMER)
571 dst->i_fieldmask |= QC_RT_SPC_TIMER;
572}
573
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500574static int quota_setxquota(struct super_block *sb, int type, qid_t id,
575 void __user *addr)
576{
577 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200578 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700579 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500580
581 if (copy_from_user(&fdq, addr, sizeof(fdq)))
582 return -EFAULT;
Christoph Hellwigc472b432010-05-06 17:05:17 -0400583 if (!sb->s_qcop->set_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500584 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700585 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500586 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700587 return -EINVAL;
Jan Karac39fb532014-12-16 16:12:27 +0100588 /* Are we actually setting timer / warning limits for all users? */
Eric W. Biedermancfd4c702016-07-05 11:10:57 -0500589 if (from_kqid(sb->s_user_ns, qid) == 0 &&
Jan Karac39fb532014-12-16 16:12:27 +0100590 fdq.d_fieldmask & (FS_DQ_WARNS_MASK | FS_DQ_TIMER_MASK)) {
591 struct qc_info qinfo;
592 int ret;
593
594 if (!sb->s_qcop->set_info)
595 return -EINVAL;
596 copy_qcinfo_from_xfs_dqblk(&qinfo, &fdq);
597 ret = sb->s_qcop->set_info(sb, type, &qinfo);
598 if (ret)
599 return ret;
600 /* These are already done */
601 fdq.d_fieldmask &= ~(FS_DQ_WARNS_MASK | FS_DQ_TIMER_MASK);
602 }
Jan Kara14bf61f2014-10-09 16:03:13 +0200603 copy_from_xfs_dqblk(&qdq, &fdq);
604 return sb->s_qcop->set_dqblk(sb, qid, &qdq);
605}
606
607static void copy_to_xfs_dqblk(struct fs_disk_quota *dst, struct qc_dqblk *src,
608 int type, qid_t id)
609{
610 memset(dst, 0, sizeof(*dst));
611 dst->d_version = FS_DQUOT_VERSION;
612 dst->d_id = id;
613 if (type == USRQUOTA)
614 dst->d_flags = FS_USER_QUOTA;
615 else if (type == PRJQUOTA)
616 dst->d_flags = FS_PROJ_QUOTA;
617 else
618 dst->d_flags = FS_GROUP_QUOTA;
619 dst->d_blk_hardlimit = quota_btobb(src->d_spc_hardlimit);
620 dst->d_blk_softlimit = quota_btobb(src->d_spc_softlimit);
621 dst->d_ino_hardlimit = src->d_ino_hardlimit;
622 dst->d_ino_softlimit = src->d_ino_softlimit;
623 dst->d_bcount = quota_btobb(src->d_space);
624 dst->d_icount = src->d_ino_count;
625 dst->d_itimer = src->d_ino_timer;
626 dst->d_btimer = src->d_spc_timer;
627 dst->d_iwarns = src->d_ino_warns;
628 dst->d_bwarns = src->d_spc_warns;
629 dst->d_rtb_hardlimit = quota_btobb(src->d_rt_spc_hardlimit);
630 dst->d_rtb_softlimit = quota_btobb(src->d_rt_spc_softlimit);
631 dst->d_rtbcount = quota_btobb(src->d_rt_space);
632 dst->d_rtbtimer = src->d_rt_spc_timer;
633 dst->d_rtbwarns = src->d_rt_spc_warns;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500634}
635
636static int quota_getxquota(struct super_block *sb, int type, qid_t id,
637 void __user *addr)
638{
639 struct fs_disk_quota fdq;
Jan Kara14bf61f2014-10-09 16:03:13 +0200640 struct qc_dqblk qdq;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700641 struct kqid qid;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500642 int ret;
643
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400644 if (!sb->s_qcop->get_dqblk)
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500645 return -ENOSYS;
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700646 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500647 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric W. Biederman74a8a102012-09-16 02:07:49 -0700648 return -EINVAL;
Jan Kara14bf61f2014-10-09 16:03:13 +0200649 ret = sb->s_qcop->get_dqblk(sb, qid, &qdq);
650 if (ret)
651 return ret;
652 copy_to_xfs_dqblk(&fdq, &qdq, type, id);
653 if (copy_to_user(addr, &fdq, sizeof(fdq)))
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500654 return -EFAULT;
655 return ret;
656}
657
Eric Sandeen8b375242016-02-08 11:21:50 +1100658/*
659 * Return quota for next active quota >= this id, if any exists,
Eric Sandeenba581482016-01-22 12:25:32 -0600660 * otherwise return -ENOENT via ->get_nextdqblk.
Eric Sandeen8b375242016-02-08 11:21:50 +1100661 */
662static int quota_getnextxquota(struct super_block *sb, int type, qid_t id,
663 void __user *addr)
664{
665 struct fs_disk_quota fdq;
666 struct qc_dqblk qdq;
667 struct kqid qid;
668 qid_t id_out;
669 int ret;
670
671 if (!sb->s_qcop->get_nextdqblk)
672 return -ENOSYS;
673 qid = make_kqid(current_user_ns(), type, id);
Eric W. Biedermand49d3762016-06-30 16:31:01 -0500674 if (!qid_has_mapping(sb->s_user_ns, qid))
Eric Sandeen8b375242016-02-08 11:21:50 +1100675 return -EINVAL;
676 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &qdq);
677 if (ret)
678 return ret;
679 id_out = from_kqid(current_user_ns(), qid);
680 copy_to_xfs_dqblk(&fdq, &qdq, type, id_out);
681 if (copy_to_user(addr, &fdq, sizeof(fdq)))
682 return -EFAULT;
683 return ret;
684}
685
Eric Sandeen9da93f92014-05-05 17:25:50 +1000686static int quota_rmxquota(struct super_block *sb, void __user *addr)
687{
688 __u32 flags;
689
690 if (copy_from_user(&flags, addr, sizeof(flags)))
691 return -EFAULT;
692 if (!sb->s_qcop->rm_xquota)
693 return -ENOSYS;
694 return sb->s_qcop->rm_xquota(sb, flags);
695}
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697/* Copy parameters and call proper function */
Jan Kara268157b2009-01-27 15:47:22 +0100698static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id,
Al Viro8c54ca92016-11-20 19:49:34 -0500699 void __user *addr, const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500701 int ret;
702
703 if (type >= (XQM_COMMAND(cmd) ? XQM_MAXQUOTAS : MAXQUOTAS))
704 return -EINVAL;
Jan Kara2c5f6482014-09-30 10:43:09 +0200705 /*
706 * Quota not supported on this fs? Check this before s_quota_types
707 * since they needn't be set if quota is not supported at all.
708 */
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500709 if (!sb->s_qcop)
710 return -ENOSYS;
Jan Kara2c5f6482014-09-30 10:43:09 +0200711 if (!(sb->s_quota_types & (1 << type)))
712 return -EINVAL;
Christoph Hellwigc988afb2010-02-16 03:44:50 -0500713
714 ret = check_quotactl_permission(sb, type, cmd, id);
715 if (ret < 0)
716 return ret;
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 switch (cmd) {
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500719 case Q_QUOTAON:
Eric Sandeen3218a3e2016-02-08 11:21:24 +1100720 return quota_quotaon(sb, type, id, path);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500721 case Q_QUOTAOFF:
Jan Karad3b86322014-10-08 16:07:12 +0200722 return quota_quotaoff(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500723 case Q_GETFMT:
724 return quota_getfmt(sb, type, addr);
725 case Q_GETINFO:
726 return quota_getinfo(sb, type, addr);
727 case Q_SETINFO:
728 return quota_setinfo(sb, type, addr);
729 case Q_GETQUOTA:
730 return quota_getquota(sb, type, id, addr);
Eric Sandeen926132c2016-02-08 11:22:21 +1100731 case Q_GETNEXTQUOTA:
732 return quota_getnextquota(sb, type, id, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500733 case Q_SETQUOTA:
734 return quota_setquota(sb, type, id, addr);
735 case Q_SYNC:
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500736 if (!sb->s_qcop->quota_sync)
737 return -ENOSYS;
Jan Karaceed1722012-07-03 16:45:28 +0200738 return sb->s_qcop->quota_sync(sb, type);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500739 case Q_XQUOTAON:
Jan Kara38e478c2014-10-08 15:56:21 +0200740 return quota_enable(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500741 case Q_XQUOTAOFF:
Jan Kara38e478c2014-10-08 15:56:21 +0200742 return quota_disable(sb, addr);
Eric Sandeen9da93f92014-05-05 17:25:50 +1000743 case Q_XQUOTARM:
744 return quota_rmxquota(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500745 case Q_XGETQSTAT:
746 return quota_getxstate(sb, addr);
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500747 case Q_XGETQSTATV:
748 return quota_getxstatev(sb, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500749 case Q_XSETQLIM:
750 return quota_setxquota(sb, type, id, addr);
751 case Q_XGETQUOTA:
752 return quota_getxquota(sb, type, id, addr);
Eric Sandeen8b375242016-02-08 11:21:50 +1100753 case Q_XGETNEXTQUOTA:
754 return quota_getnextxquota(sb, type, id, addr);
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500755 case Q_XQUOTASYNC:
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500756 if (sb->s_flags & MS_RDONLY)
757 return -EROFS;
Christoph Hellwig4b217ed2012-02-20 02:28:18 +0000758 /* XFS quotas are fully coherent now, making this call a noop */
Christoph Hellwig8c4e4ac2010-02-16 03:44:51 -0500759 return 0;
Christoph Hellwigc411e5f2010-02-16 03:44:47 -0500760 default:
Christoph Hellwigf450d4f2010-02-16 03:44:48 -0500761 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Lee Jones56df1272012-11-03 23:02:28 +0100765#ifdef CONFIG_BLOCK
766
Jan Karadcdbed82012-02-10 11:03:01 +0100767/* Return 1 if 'cmd' will block on frozen filesystem */
768static int quotactl_cmd_write(int cmd)
769{
Jan Karaccf370e2016-02-18 14:03:03 +0100770 /*
771 * We cannot allow Q_GETQUOTA and Q_GETNEXTQUOTA without write access
772 * as dquot_acquire() may allocate space for new structure and OCFS2
773 * needs to increment on-disk use count.
774 */
Jan Karadcdbed82012-02-10 11:03:01 +0100775 switch (cmd) {
776 case Q_GETFMT:
777 case Q_GETINFO:
778 case Q_SYNC:
779 case Q_XGETQSTAT:
Chandra Seetharamanaf30cb42013-08-06 17:27:07 -0500780 case Q_XGETQSTATV:
Jan Karadcdbed82012-02-10 11:03:01 +0100781 case Q_XGETQUOTA:
Eric Sandeen8b375242016-02-08 11:21:50 +1100782 case Q_XGETNEXTQUOTA:
Jan Karadcdbed82012-02-10 11:03:01 +0100783 case Q_XQUOTASYNC:
784 return 0;
785 }
786 return 1;
787}
Lee Jones56df1272012-11-03 23:02:28 +0100788#endif /* CONFIG_BLOCK */
789
Jan Kara7d6cd732016-11-23 13:16:10 +0100790/* Return true if quotactl command is manipulating quota on/off state */
791static bool quotactl_cmd_onoff(int cmd)
792{
793 return (cmd == Q_QUOTAON) || (cmd == Q_QUOTAOFF);
794}
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796/*
David Howells93614012006-09-30 20:45:40 +0200797 * look up a superblock on which quota ops will be performed
798 * - use the name of a block device to find the superblock thereon
799 */
Jan Karadcdbed82012-02-10 11:03:01 +0100800static struct super_block *quotactl_block(const char __user *special, int cmd)
David Howells93614012006-09-30 20:45:40 +0200801{
802#ifdef CONFIG_BLOCK
803 struct block_device *bdev;
804 struct super_block *sb;
Jeff Layton91a27b22012-10-10 15:25:28 -0400805 struct filename *tmp = getname(special);
David Howells93614012006-09-30 20:45:40 +0200806
807 if (IS_ERR(tmp))
David Howellse231c2e2008-02-07 00:15:26 -0800808 return ERR_CAST(tmp);
Jeff Layton91a27b22012-10-10 15:25:28 -0400809 bdev = lookup_bdev(tmp->name);
David Howells93614012006-09-30 20:45:40 +0200810 putname(tmp);
811 if (IS_ERR(bdev))
David Howellse231c2e2008-02-07 00:15:26 -0800812 return ERR_CAST(bdev);
Jan Kara7d6cd732016-11-23 13:16:10 +0100813 if (quotactl_cmd_onoff(cmd))
814 sb = get_super_exclusive_thawed(bdev);
815 else if (quotactl_cmd_write(cmd))
Jan Karadcdbed82012-02-10 11:03:01 +0100816 sb = get_super_thawed(bdev);
817 else
818 sb = get_super(bdev);
David Howells93614012006-09-30 20:45:40 +0200819 bdput(bdev);
820 if (!sb)
821 return ERR_PTR(-ENODEV);
822
823 return sb;
824#else
825 return ERR_PTR(-ENODEV);
826#endif
827}
828
829/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 * This is the system call interface. This communicates with
831 * the user-level programs. Currently this only supports diskquota
832 * calls. Maybe we need to add the process quotas etc. in the future,
833 * but we probably should use rlimits for that.
834 */
Heiko Carstens3cdad422009-01-14 14:14:22 +0100835SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special,
836 qid_t, id, void __user *, addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
838 uint cmds, type;
839 struct super_block *sb = NULL;
Jan Karaf00c9e42010-09-15 17:38:58 +0200840 struct path path, *pathp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 int ret;
842
843 cmds = cmd >> SUBCMDSHIFT;
844 type = cmd & SUBCMDMASK;
845
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500846 /*
847 * As a special case Q_SYNC can be called without a specific device.
848 * It will iterate all superblocks that have quota enabled and call
849 * the sync action on each of them.
850 */
851 if (!special) {
852 if (cmds == Q_SYNC)
853 return quota_sync_all(type);
854 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856
Jan Karaf00c9e42010-09-15 17:38:58 +0200857 /*
858 * Path for quotaon has to be resolved before grabbing superblock
859 * because that gets s_umount sem which is also possibly needed by path
860 * resolution (think about autofs) and thus deadlocks could arise.
861 */
862 if (cmds == Q_QUOTAON) {
Trond Myklebust815d4052011-09-26 20:36:09 -0400863 ret = user_path_at(AT_FDCWD, addr, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
Jan Karaf00c9e42010-09-15 17:38:58 +0200864 if (ret)
865 pathp = ERR_PTR(ret);
866 else
867 pathp = &path;
868 }
869
Jan Karadcdbed82012-02-10 11:03:01 +0100870 sb = quotactl_block(special, cmds);
Jan Kara0aaa6182011-10-10 18:32:06 +0200871 if (IS_ERR(sb)) {
872 ret = PTR_ERR(sb);
873 goto out;
874 }
Christoph Hellwig6ae09572010-02-16 03:44:49 -0500875
Jan Karaf00c9e42010-09-15 17:38:58 +0200876 ret = do_quotactl(sb, type, cmds, id, addr, pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Jan Kara7d6cd732016-11-23 13:16:10 +0100878 if (!quotactl_cmd_onoff(cmds))
879 drop_super(sb);
880 else
881 drop_super_exclusive(sb);
Jan Kara0aaa6182011-10-10 18:32:06 +0200882out:
Jan Karaf00c9e42010-09-15 17:38:58 +0200883 if (pathp && !IS_ERR(pathp))
884 path_put(pathp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return ret;
886}