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.
9 #include <linux/namei.h>
10 #include <linux/slab.h>
11 #include <asm/current.h>
12 #include <asm/uaccess.h>
13 #include <linux/kernel.h>
14 #include <linux/security.h>
15 #include <linux/syscalls.h>
16 #include <linux/buffer_head.h>
17 #include <linux/capability.h>
18 #include <linux/quotaops.h>
19 #include <linux/types.h>
20 #include <linux/writeback.h>
22 static int check_quotactl_permission(struct super_block *sb, int type, int cmd,
26 /* these commands do not require any special privilegues */
33 /* allow to query information for dquots we "own" */
36 if ((type == USRQUOTA && current_euid() == id) ||
37 (type == GRPQUOTA && in_egroup_p(id)))
41 if (!capable(CAP_SYS_ADMIN))
45 return security_quotactl(cmd, type, id, sb);
48 static int quota_sync_all(int type)
50 struct super_block *sb;
53 if (type >= MAXQUOTAS)
55 ret = security_quotactl(Q_SYNC, type, 0, NULL);
61 list_for_each_entry(sb, &super_blocks, s_list) {
62 if (list_empty(&sb->s_instances))
64 if (!sb->s_qcop || !sb->s_qcop->quota_sync)
68 spin_unlock(&sb_lock);
69 down_read(&sb->s_umount);
71 sb->s_qcop->quota_sync(sb, type, 1);
72 up_read(&sb->s_umount);
74 if (__put_super_and_need_restart(sb))
77 spin_unlock(&sb_lock);
82 static int quota_quotaon(struct super_block *sb, int type, int cmd, qid_t id,
88 pathname = getname(addr);
90 return PTR_ERR(pathname);
91 if (sb->s_qcop->quota_on)
92 ret = sb->s_qcop->quota_on(sb, type, id, pathname, 0);
97 static int quota_getfmt(struct super_block *sb, int type, void __user *addr)
101 down_read(&sb_dqopt(sb)->dqptr_sem);
102 if (!sb_has_quota_active(sb, type)) {
103 up_read(&sb_dqopt(sb)->dqptr_sem);
106 fmt = sb_dqopt(sb)->info[type].dqi_format->qf_fmt_id;
107 up_read(&sb_dqopt(sb)->dqptr_sem);
108 if (copy_to_user(addr, &fmt, sizeof(fmt)))
113 static int quota_getinfo(struct super_block *sb, int type, void __user *addr)
115 struct if_dqinfo info;
118 if (!sb->s_qcop->get_info)
120 ret = sb->s_qcop->get_info(sb, type, &info);
121 if (!ret && copy_to_user(addr, &info, sizeof(info)))
126 static int quota_setinfo(struct super_block *sb, int type, void __user *addr)
128 struct if_dqinfo info;
130 if (copy_from_user(&info, addr, sizeof(info)))
132 if (!sb->s_qcop->set_info)
134 return sb->s_qcop->set_info(sb, type, &info);
137 static void copy_to_if_dqblk(struct if_dqblk *dst, struct fs_disk_quota *src)
139 dst->dqb_bhardlimit = src->d_blk_hardlimit;
140 dst->dqb_bsoftlimit = src->d_blk_softlimit;
141 dst->dqb_curspace = src->d_bcount;
142 dst->dqb_ihardlimit = src->d_ino_hardlimit;
143 dst->dqb_isoftlimit = src->d_ino_softlimit;
144 dst->dqb_curinodes = src->d_icount;
145 dst->dqb_btime = src->d_btimer;
146 dst->dqb_itime = src->d_itimer;
147 dst->dqb_valid = QIF_ALL;
150 static int quota_getquota(struct super_block *sb, int type, qid_t id,
153 struct fs_disk_quota fdq;
157 if (!sb->s_qcop->get_dqblk)
159 ret = sb->s_qcop->get_dqblk(sb, type, id, &fdq);
162 copy_to_if_dqblk(&idq, &fdq);
163 if (copy_to_user(addr, &idq, sizeof(idq)))
168 static void copy_from_if_dqblk(struct fs_disk_quota *dst, struct if_dqblk *src)
170 dst->d_blk_hardlimit = src->dqb_bhardlimit;
171 dst->d_blk_softlimit = src->dqb_bsoftlimit;
172 dst->d_bcount = src->dqb_curspace;
173 dst->d_ino_hardlimit = src->dqb_ihardlimit;
174 dst->d_ino_softlimit = src->dqb_isoftlimit;
175 dst->d_icount = src->dqb_curinodes;
176 dst->d_btimer = src->dqb_btime;
177 dst->d_itimer = src->dqb_itime;
179 dst->d_fieldmask = 0;
180 if (src->dqb_valid & QIF_BLIMITS)
181 dst->d_fieldmask |= FS_DQ_BSOFT | FS_DQ_BHARD;
182 if (src->dqb_valid & QIF_SPACE)
183 dst->d_fieldmask |= FS_DQ_BCOUNT;
184 if (src->dqb_valid & QIF_ILIMITS)
185 dst->d_fieldmask |= FS_DQ_ISOFT | FS_DQ_IHARD;
186 if (src->dqb_valid & QIF_INODES)
187 dst->d_fieldmask |= FS_DQ_ICOUNT;
188 if (src->dqb_valid & QIF_BTIME)
189 dst->d_fieldmask |= FS_DQ_BTIMER;
190 if (src->dqb_valid & QIF_ITIME)
191 dst->d_fieldmask |= FS_DQ_ITIMER;
194 static int quota_setquota(struct super_block *sb, int type, qid_t id,
197 struct fs_disk_quota fdq;
200 if (copy_from_user(&idq, addr, sizeof(idq)))
202 if (!sb->s_qcop->set_dqblk)
204 copy_from_if_dqblk(&fdq, &idq);
205 return sb->s_qcop->set_dqblk(sb, type, id, &fdq);
208 static int quota_setxstate(struct super_block *sb, int cmd, void __user *addr)
212 if (copy_from_user(&flags, addr, sizeof(flags)))
214 if (!sb->s_qcop->set_xstate)
216 return sb->s_qcop->set_xstate(sb, flags, cmd);
219 static int quota_getxstate(struct super_block *sb, void __user *addr)
221 struct fs_quota_stat fqs;
224 if (!sb->s_qcop->get_xstate)
226 ret = sb->s_qcop->get_xstate(sb, &fqs);
227 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
232 static int quota_setxquota(struct super_block *sb, int type, qid_t id,
235 struct fs_disk_quota fdq;
237 if (copy_from_user(&fdq, addr, sizeof(fdq)))
239 if (!sb->s_qcop->set_dqblk)
241 return sb->s_qcop->set_dqblk(sb, type, id, &fdq);
244 static int quota_getxquota(struct super_block *sb, int type, qid_t id,
247 struct fs_disk_quota fdq;
250 if (!sb->s_qcop->get_dqblk)
252 ret = sb->s_qcop->get_dqblk(sb, type, id, &fdq);
253 if (!ret && copy_to_user(addr, &fdq, sizeof(fdq)))
258 /* Copy parameters and call proper function */
259 static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id,
264 if (type >= (XQM_COMMAND(cmd) ? XQM_MAXQUOTAS : MAXQUOTAS))
269 ret = check_quotactl_permission(sb, type, cmd, id);
275 return quota_quotaon(sb, type, cmd, id, addr);
277 if (!sb->s_qcop->quota_off)
279 return sb->s_qcop->quota_off(sb, type, 0);
281 return quota_getfmt(sb, type, addr);
283 return quota_getinfo(sb, type, addr);
285 return quota_setinfo(sb, type, addr);
287 return quota_getquota(sb, type, id, addr);
289 return quota_setquota(sb, type, id, addr);
291 if (!sb->s_qcop->quota_sync)
293 return sb->s_qcop->quota_sync(sb, type, 1);
297 return quota_setxstate(sb, cmd, addr);
299 return quota_getxstate(sb, addr);
301 return quota_setxquota(sb, type, id, addr);
303 return quota_getxquota(sb, type, id, addr);
305 /* caller already holds s_umount */
306 if (sb->s_flags & MS_RDONLY)
308 writeback_inodes_sb(sb);
316 * look up a superblock on which quota ops will be performed
317 * - use the name of a block device to find the superblock thereon
319 static struct super_block *quotactl_block(const char __user *special)
322 struct block_device *bdev;
323 struct super_block *sb;
324 char *tmp = getname(special);
327 return ERR_CAST(tmp);
328 bdev = lookup_bdev(tmp);
331 return ERR_CAST(bdev);
332 sb = get_super(bdev);
335 return ERR_PTR(-ENODEV);
339 return ERR_PTR(-ENODEV);
344 * This is the system call interface. This communicates with
345 * the user-level programs. Currently this only supports diskquota
346 * calls. Maybe we need to add the process quotas etc. in the future,
347 * but we probably should use rlimits for that.
349 SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special,
350 qid_t, id, void __user *, addr)
353 struct super_block *sb = NULL;
356 cmds = cmd >> SUBCMDSHIFT;
357 type = cmd & SUBCMDMASK;
360 * As a special case Q_SYNC can be called without a specific device.
361 * It will iterate all superblocks that have quota enabled and call
362 * the sync action on each of them.
366 return quota_sync_all(type);
370 sb = quotactl_block(special);
374 ret = do_quotactl(sb, type, cmds, id, addr);