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/compat.h>
14 #include <linux/kernel.h>
15 #include <linux/security.h>
16 #include <linux/syscalls.h>
17 #include <linux/buffer_head.h>
18 #include <linux/capability.h>
19 #include <linux/quotaops.h>
20 #include <linux/types.h>
21 #include <net/netlink.h>
22 #include <net/genetlink.h>
24 /* Check validity of generic quotactl commands */
25 static int generic_quotactl_valid(struct super_block *sb, int type, int cmd,
28 if (type >= MAXQUOTAS)
30 if (!sb && cmd != Q_SYNC)
32 /* Is operation supported? */
33 if (sb && !sb->s_qcop)
36 /* Check privileges */
37 if (cmd == Q_GETQUOTA) {
38 if (((type == USRQUOTA && current_euid() != id) ||
39 (type == GRPQUOTA && !in_egroup_p(id))) &&
40 !capable(CAP_SYS_ADMIN))
43 else if (cmd != Q_GETFMT && cmd != Q_SYNC && cmd != Q_GETINFO)
44 if (!capable(CAP_SYS_ADMIN))
50 /* Check validity of XFS Quota Manager commands */
51 static int xqm_quotactl_valid(struct super_block *sb, int type, int cmd,
54 if (type >= XQM_MAXQUOTAS)
61 /* Check privileges */
62 if (cmd == Q_XGETQUOTA) {
63 if (((type == XQM_USRQUOTA && current_euid() != id) ||
64 (type == XQM_GRPQUOTA && !in_egroup_p(id))) &&
65 !capable(CAP_SYS_ADMIN))
67 } else if (cmd != Q_XGETQSTAT && cmd != Q_XQUOTASYNC) {
68 if (!capable(CAP_SYS_ADMIN))
75 static int check_quotactl_valid(struct super_block *sb, int type, int cmd,
81 error = xqm_quotactl_valid(sb, type, cmd, id);
83 error = generic_quotactl_valid(sb, type, cmd, id);
85 error = security_quotactl(cmd, type, id, sb);
90 void sync_quota_sb(struct super_block *sb, int type)
94 if (!sb->s_qcop->quota_sync)
97 sb->s_qcop->quota_sync(sb, type);
99 if (sb_dqopt(sb)->flags & DQUOT_QUOTA_SYS_FILE)
101 /* This is not very clever (and fast) but currently I don't know about
102 * any other simple way of getting quota data to disk and we must get
103 * them there for userspace to be visible... */
104 if (sb->s_op->sync_fs)
105 sb->s_op->sync_fs(sb, 1);
106 sync_blockdev(sb->s_bdev);
109 * Now when everything is written we can discard the pagecache so
110 * that userspace sees the changes.
112 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);
113 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
114 if (type != -1 && cnt != type)
116 if (!sb_has_quota_active(sb, cnt))
118 mutex_lock_nested(&sb_dqopt(sb)->files[cnt]->i_mutex,
120 truncate_inode_pages(&sb_dqopt(sb)->files[cnt]->i_data, 0);
121 mutex_unlock(&sb_dqopt(sb)->files[cnt]->i_mutex);
123 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
127 static void sync_dquots(int type)
129 struct super_block *sb;
134 list_for_each_entry(sb, &super_blocks, s_list) {
135 /* This test just improves performance so it needn't be
137 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
138 if (type != -1 && type != cnt)
140 if (!sb_has_quota_active(sb, cnt))
142 if (!info_dirty(&sb_dqopt(sb)->info[cnt]) &&
143 list_empty(&sb_dqopt(sb)->info[cnt].dqi_dirty_list))
147 if (cnt == MAXQUOTAS)
150 spin_unlock(&sb_lock);
151 down_read(&sb->s_umount);
153 sync_quota_sb(sb, type);
154 up_read(&sb->s_umount);
156 if (__put_super_and_need_restart(sb))
159 spin_unlock(&sb_lock);
162 static int quota_quotaon(struct super_block *sb, int type, int cmd, qid_t id,
168 pathname = getname(addr);
169 if (IS_ERR(pathname))
170 return PTR_ERR(pathname);
171 if (sb->s_qcop->quota_on)
172 ret = sb->s_qcop->quota_on(sb, type, id, pathname, 0);
177 static int quota_getfmt(struct super_block *sb, int type, void __user *addr)
181 down_read(&sb_dqopt(sb)->dqptr_sem);
182 if (!sb_has_quota_active(sb, type)) {
183 up_read(&sb_dqopt(sb)->dqptr_sem);
186 fmt = sb_dqopt(sb)->info[type].dqi_format->qf_fmt_id;
187 up_read(&sb_dqopt(sb)->dqptr_sem);
188 if (copy_to_user(addr, &fmt, sizeof(fmt)))
193 static int quota_getinfo(struct super_block *sb, int type, void __user *addr)
195 struct if_dqinfo info;
198 if (!sb_has_quota_active(sb, type))
200 if (!sb->s_qcop->get_info)
202 ret = sb->s_qcop->get_info(sb, type, &info);
203 if (!ret && copy_to_user(addr, &info, sizeof(info)))
208 static int quota_setinfo(struct super_block *sb, int type, void __user *addr)
210 struct if_dqinfo info;
212 if (copy_from_user(&info, addr, sizeof(info)))
214 if (!sb_has_quota_active(sb, type))
216 if (!sb->s_qcop->set_info)
218 return sb->s_qcop->set_info(sb, type, &info);
221 static int quota_getquota(struct super_block *sb, int type, qid_t id,
227 if (!sb_has_quota_active(sb, type))
229 if (!sb->s_qcop->get_dqblk)
231 ret = sb->s_qcop->get_dqblk(sb, type, id, &idq);
234 if (copy_to_user(addr, &idq, sizeof(idq)))
239 static int quota_setquota(struct super_block *sb, int type, qid_t id,
244 if (copy_from_user(&idq, addr, sizeof(idq)))
246 if (!sb_has_quota_active(sb, type))
248 if (!sb->s_qcop->set_dqblk)
250 return sb->s_qcop->set_dqblk(sb, type, id, &idq);
253 static int quota_setxstate(struct super_block *sb, int cmd, void __user *addr)
257 if (copy_from_user(&flags, addr, sizeof(flags)))
259 if (!sb->s_qcop->set_xstate)
261 return sb->s_qcop->set_xstate(sb, flags, cmd);
264 static int quota_getxstate(struct super_block *sb, void __user *addr)
266 struct fs_quota_stat fqs;
269 if (!sb->s_qcop->get_xstate)
271 ret = sb->s_qcop->get_xstate(sb, &fqs);
272 if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
277 static int quota_setxquota(struct super_block *sb, int type, qid_t id,
280 struct fs_disk_quota fdq;
282 if (copy_from_user(&fdq, addr, sizeof(fdq)))
284 if (!sb->s_qcop->set_xquota)
286 return sb->s_qcop->set_xquota(sb, type, id, &fdq);
289 static int quota_getxquota(struct super_block *sb, int type, qid_t id,
292 struct fs_disk_quota fdq;
295 if (!sb->s_qcop->get_xquota)
297 ret = sb->s_qcop->get_xquota(sb, type, id, &fdq);
298 if (!ret && copy_to_user(addr, &fdq, sizeof(fdq)))
303 /* Copy parameters and call proper function */
304 static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id,
309 return quota_quotaon(sb, type, cmd, id, addr);
311 if (!sb->s_qcop->quota_off)
313 return sb->s_qcop->quota_off(sb, type, 0);
315 return quota_getfmt(sb, type, addr);
317 return quota_getinfo(sb, type, addr);
319 return quota_setinfo(sb, type, addr);
321 return quota_getquota(sb, type, id, addr);
323 return quota_setquota(sb, type, id, addr);
326 if (!sb->s_qcop->quota_sync)
328 sync_quota_sb(sb, type);
335 return quota_setxstate(sb, cmd, addr);
337 return quota_getxstate(sb, addr);
339 return quota_setxquota(sb, type, id, addr);
341 return quota_getxquota(sb, type, id, addr);
343 if (!sb->s_qcop->quota_sync)
345 return sb->s_qcop->quota_sync(sb, type);
352 * look up a superblock on which quota ops will be performed
353 * - use the name of a block device to find the superblock thereon
355 static struct super_block *quotactl_block(const char __user *special)
358 struct block_device *bdev;
359 struct super_block *sb;
360 char *tmp = getname(special);
363 return ERR_CAST(tmp);
364 bdev = lookup_bdev(tmp);
367 return ERR_CAST(bdev);
368 sb = get_super(bdev);
371 return ERR_PTR(-ENODEV);
375 return ERR_PTR(-ENODEV);
380 * This is the system call interface. This communicates with
381 * the user-level programs. Currently this only supports diskquota
382 * calls. Maybe we need to add the process quotas etc. in the future,
383 * but we probably should use rlimits for that.
385 SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special,
386 qid_t, id, void __user *, addr)
389 struct super_block *sb = NULL;
392 cmds = cmd >> SUBCMDSHIFT;
393 type = cmd & SUBCMDMASK;
395 if (cmds != Q_SYNC || special) {
396 sb = quotactl_block(special);
401 ret = check_quotactl_valid(sb, type, cmds, id);
403 ret = do_quotactl(sb, type, cmds, id, addr);
410 #if defined(CONFIG_COMPAT_FOR_U64_ALIGNMENT)
412 * This code works only for 32 bit quota tools over 64 bit OS (x86_64, ia64)
413 * and is necessary due to alignment problems.
415 struct compat_if_dqblk {
416 compat_u64 dqb_bhardlimit;
417 compat_u64 dqb_bsoftlimit;
418 compat_u64 dqb_curspace;
419 compat_u64 dqb_ihardlimit;
420 compat_u64 dqb_isoftlimit;
421 compat_u64 dqb_curinodes;
422 compat_u64 dqb_btime;
423 compat_u64 dqb_itime;
424 compat_uint_t dqb_valid;
428 struct compat_fs_qfilestat {
429 compat_u64 dqb_bhardlimit;
430 compat_u64 qfs_nblks;
431 compat_uint_t qfs_nextents;
434 struct compat_fs_quota_stat {
438 struct compat_fs_qfilestat qs_uquota;
439 struct compat_fs_qfilestat qs_gquota;
440 compat_uint_t qs_incoredqs;
441 compat_int_t qs_btimelimit;
442 compat_int_t qs_itimelimit;
443 compat_int_t qs_rtbtimelimit;
448 asmlinkage long sys32_quotactl(unsigned int cmd, const char __user *special,
449 qid_t id, void __user *addr)
452 struct if_dqblk __user *dqblk;
453 struct compat_if_dqblk __user *compat_dqblk;
454 struct fs_quota_stat __user *fsqstat;
455 struct compat_fs_quota_stat __user *compat_fsqstat;
460 cmds = cmd >> SUBCMDSHIFT;
464 dqblk = compat_alloc_user_space(sizeof(struct if_dqblk));
466 ret = sys_quotactl(cmd, special, id, dqblk);
469 if (copy_in_user(compat_dqblk, dqblk, sizeof(*compat_dqblk)) ||
470 get_user(data, &dqblk->dqb_valid) ||
471 put_user(data, &compat_dqblk->dqb_valid))
475 dqblk = compat_alloc_user_space(sizeof(struct if_dqblk));
478 if (copy_in_user(dqblk, compat_dqblk, sizeof(*compat_dqblk)) ||
479 get_user(data, &compat_dqblk->dqb_valid) ||
480 put_user(data, &dqblk->dqb_valid))
482 ret = sys_quotactl(cmd, special, id, dqblk);
485 fsqstat = compat_alloc_user_space(sizeof(struct fs_quota_stat));
486 compat_fsqstat = addr;
487 ret = sys_quotactl(cmd, special, id, fsqstat);
491 /* Copying qs_version, qs_flags, qs_pad */
492 if (copy_in_user(compat_fsqstat, fsqstat,
493 offsetof(struct compat_fs_quota_stat, qs_uquota)))
495 /* Copying qs_uquota */
496 if (copy_in_user(&compat_fsqstat->qs_uquota,
498 sizeof(compat_fsqstat->qs_uquota)) ||
499 get_user(data, &fsqstat->qs_uquota.qfs_nextents) ||
500 put_user(data, &compat_fsqstat->qs_uquota.qfs_nextents))
502 /* Copying qs_gquota */
503 if (copy_in_user(&compat_fsqstat->qs_gquota,
505 sizeof(compat_fsqstat->qs_gquota)) ||
506 get_user(data, &fsqstat->qs_gquota.qfs_nextents) ||
507 put_user(data, &compat_fsqstat->qs_gquota.qfs_nextents))
509 /* Copying the rest */
510 if (copy_in_user(&compat_fsqstat->qs_incoredqs,
511 &fsqstat->qs_incoredqs,
512 sizeof(struct compat_fs_quota_stat) -
513 offsetof(struct compat_fs_quota_stat, qs_incoredqs)) ||
514 get_user(xdata, &fsqstat->qs_iwarnlimit) ||
515 put_user(xdata, &compat_fsqstat->qs_iwarnlimit))
520 ret = sys_quotactl(cmd, special, id, addr);
527 #ifdef CONFIG_QUOTA_NETLINK_INTERFACE
529 /* Netlink family structure for quota */
530 static struct genl_family quota_genl_family = {
531 .id = GENL_ID_GENERATE,
535 .maxattr = QUOTA_NL_A_MAX,
539 * quota_send_warning - Send warning to userspace about exceeded quota
540 * @type: The quota type: USRQQUOTA, GRPQUOTA,...
541 * @id: The user or group id of the quota that was exceeded
542 * @dev: The device on which the fs is mounted (sb->s_dev)
543 * @warntype: The type of the warning: QUOTA_NL_...
545 * This can be used by filesystems (including those which don't use
546 * dquot) to send a message to userspace relating to quota limits.
550 void quota_send_warning(short type, unsigned int id, dev_t dev,
557 int msg_size = 4 * nla_total_size(sizeof(u32)) +
558 2 * nla_total_size(sizeof(u64));
560 /* We have to allocate using GFP_NOFS as we are called from a
561 * filesystem performing write and thus further recursion into
562 * the fs to free some data could cause deadlocks. */
563 skb = genlmsg_new(msg_size, GFP_NOFS);
566 "VFS: Not enough memory to send quota warning.\n");
569 msg_head = genlmsg_put(skb, 0, atomic_add_return(1, &seq),
570 "a_genl_family, 0, QUOTA_NL_C_WARNING);
573 "VFS: Cannot store netlink header in quota warning.\n");
576 ret = nla_put_u32(skb, QUOTA_NL_A_QTYPE, type);
579 ret = nla_put_u64(skb, QUOTA_NL_A_EXCESS_ID, id);
582 ret = nla_put_u32(skb, QUOTA_NL_A_WARNING, warntype);
585 ret = nla_put_u32(skb, QUOTA_NL_A_DEV_MAJOR, MAJOR(dev));
588 ret = nla_put_u32(skb, QUOTA_NL_A_DEV_MINOR, MINOR(dev));
591 ret = nla_put_u64(skb, QUOTA_NL_A_CAUSED_ID, current_uid());
594 genlmsg_end(skb, msg_head);
596 genlmsg_multicast(skb, 0, quota_genl_family.id, GFP_NOFS);
599 printk(KERN_ERR "VFS: Not enough space to compose quota message!\n");
603 EXPORT_SYMBOL(quota_send_warning);
605 static int __init quota_init(void)
607 if (genl_register_family("a_genl_family) != 0)
609 "VFS: Failed to create quota netlink interface.\n");
613 module_init(quota_init);