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
)
40 if (!sb
->s_qcop
->quota_on
)
44 if (!sb
->s_qcop
->quota_off
)
48 if (!sb
->s_qcop
->set_info
)
52 if (!sb
->s_qcop
->get_info
)
56 if (!sb
->s_qcop
->set_dqblk
)
60 if (!sb
->s_qcop
->get_dqblk
)
64 if (sb
&& !sb
->s_qcop
->quota_sync
)
71 /* Is quota turned on for commands which need it? */
78 /* This is just an informative test so we are satisfied
80 if (!sb_has_quota_active(sb
, type
))
84 /* Check privileges */
85 if (cmd
== Q_GETQUOTA
) {
86 if (((type
== USRQUOTA
&& current_euid() != id
) ||
87 (type
== GRPQUOTA
&& !in_egroup_p(id
))) &&
88 !capable(CAP_SYS_ADMIN
))
91 else if (cmd
!= Q_GETFMT
&& cmd
!= Q_SYNC
&& cmd
!= Q_GETINFO
)
92 if (!capable(CAP_SYS_ADMIN
))
98 /* Check validity of XFS Quota Manager commands */
99 static int xqm_quotactl_valid(struct super_block
*sb
, int type
, int cmd
,
102 if (type
>= XQM_MAXQUOTAS
)
113 if (!sb
->s_qcop
->set_xstate
)
117 if (!sb
->s_qcop
->get_xstate
)
121 if (!sb
->s_qcop
->set_xquota
)
125 if (!sb
->s_qcop
->get_xquota
)
129 if (!sb
->s_qcop
->quota_sync
)
136 /* Check privileges */
137 if (cmd
== Q_XGETQUOTA
) {
138 if (((type
== XQM_USRQUOTA
&& current_euid() != id
) ||
139 (type
== XQM_GRPQUOTA
&& !in_egroup_p(id
))) &&
140 !capable(CAP_SYS_ADMIN
))
142 } else if (cmd
!= Q_XGETQSTAT
&& cmd
!= Q_XQUOTASYNC
) {
143 if (!capable(CAP_SYS_ADMIN
))
150 static int check_quotactl_valid(struct super_block
*sb
, int type
, int cmd
,
155 if (XQM_COMMAND(cmd
))
156 error
= xqm_quotactl_valid(sb
, type
, cmd
, id
);
158 error
= generic_quotactl_valid(sb
, type
, cmd
, id
);
160 error
= security_quotactl(cmd
, type
, id
, sb
);
165 void sync_quota_sb(struct super_block
*sb
, int type
)
169 if (!sb
->s_qcop
->quota_sync
)
172 sb
->s_qcop
->quota_sync(sb
, type
);
174 if (sb_dqopt(sb
)->flags
& DQUOT_QUOTA_SYS_FILE
)
176 /* This is not very clever (and fast) but currently I don't know about
177 * any other simple way of getting quota data to disk and we must get
178 * them there for userspace to be visible... */
179 if (sb
->s_op
->sync_fs
)
180 sb
->s_op
->sync_fs(sb
, 1);
181 sync_blockdev(sb
->s_bdev
);
184 * Now when everything is written we can discard the pagecache so
185 * that userspace sees the changes.
187 mutex_lock(&sb_dqopt(sb
)->dqonoff_mutex
);
188 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
189 if (type
!= -1 && cnt
!= type
)
191 if (!sb_has_quota_active(sb
, cnt
))
193 mutex_lock_nested(&sb_dqopt(sb
)->files
[cnt
]->i_mutex
,
195 truncate_inode_pages(&sb_dqopt(sb
)->files
[cnt
]->i_data
, 0);
196 mutex_unlock(&sb_dqopt(sb
)->files
[cnt
]->i_mutex
);
198 mutex_unlock(&sb_dqopt(sb
)->dqonoff_mutex
);
202 static void sync_dquots(int type
)
204 struct super_block
*sb
;
209 list_for_each_entry(sb
, &super_blocks
, s_list
) {
210 /* This test just improves performance so it needn't be
212 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
213 if (type
!= -1 && type
!= cnt
)
215 if (!sb_has_quota_active(sb
, cnt
))
217 if (!info_dirty(&sb_dqopt(sb
)->info
[cnt
]) &&
218 list_empty(&sb_dqopt(sb
)->info
[cnt
].dqi_dirty_list
))
222 if (cnt
== MAXQUOTAS
)
225 spin_unlock(&sb_lock
);
226 down_read(&sb
->s_umount
);
228 sync_quota_sb(sb
, type
);
229 up_read(&sb
->s_umount
);
231 if (__put_super_and_need_restart(sb
))
234 spin_unlock(&sb_lock
);
237 /* Copy parameters and call proper function */
238 static int do_quotactl(struct super_block
*sb
, int type
, int cmd
, qid_t id
,
247 pathname
= getname(addr
);
248 if (IS_ERR(pathname
))
249 return PTR_ERR(pathname
);
250 ret
= sb
->s_qcop
->quota_on(sb
, type
, id
, pathname
, 0);
255 return sb
->s_qcop
->quota_off(sb
, type
, 0);
260 down_read(&sb_dqopt(sb
)->dqptr_sem
);
261 if (!sb_has_quota_active(sb
, type
)) {
262 up_read(&sb_dqopt(sb
)->dqptr_sem
);
265 fmt
= sb_dqopt(sb
)->info
[type
].dqi_format
->qf_fmt_id
;
266 up_read(&sb_dqopt(sb
)->dqptr_sem
);
267 if (copy_to_user(addr
, &fmt
, sizeof(fmt
)))
272 struct if_dqinfo info
;
274 ret
= sb
->s_qcop
->get_info(sb
, type
, &info
);
277 if (copy_to_user(addr
, &info
, sizeof(info
)))
282 struct if_dqinfo info
;
284 if (copy_from_user(&info
, addr
, sizeof(info
)))
286 return sb
->s_qcop
->set_info(sb
, type
, &info
);
291 ret
= sb
->s_qcop
->get_dqblk(sb
, type
, id
, &idq
);
294 if (copy_to_user(addr
, &idq
, sizeof(idq
)))
301 if (copy_from_user(&idq
, addr
, sizeof(idq
)))
303 return sb
->s_qcop
->set_dqblk(sb
, type
, id
, &idq
);
307 sync_quota_sb(sb
, type
);
317 if (copy_from_user(&flags
, addr
, sizeof(flags
)))
319 return sb
->s_qcop
->set_xstate(sb
, flags
, cmd
);
322 struct fs_quota_stat fqs
;
324 if ((ret
= sb
->s_qcop
->get_xstate(sb
, &fqs
)))
326 if (copy_to_user(addr
, &fqs
, sizeof(fqs
)))
331 struct fs_disk_quota fdq
;
333 if (copy_from_user(&fdq
, addr
, sizeof(fdq
)))
335 return sb
->s_qcop
->set_xquota(sb
, type
, id
, &fdq
);
338 struct fs_disk_quota fdq
;
340 ret
= sb
->s_qcop
->get_xquota(sb
, type
, id
, &fdq
);
343 if (copy_to_user(addr
, &fdq
, sizeof(fdq
)))
348 return sb
->s_qcop
->quota_sync(sb
, type
);
349 /* We never reach here unless validity check is broken */
357 * look up a superblock on which quota ops will be performed
358 * - use the name of a block device to find the superblock thereon
360 static struct super_block
*quotactl_block(const char __user
*special
)
363 struct block_device
*bdev
;
364 struct super_block
*sb
;
365 char *tmp
= getname(special
);
368 return ERR_CAST(tmp
);
369 bdev
= lookup_bdev(tmp
);
372 return ERR_CAST(bdev
);
373 sb
= get_super(bdev
);
376 return ERR_PTR(-ENODEV
);
380 return ERR_PTR(-ENODEV
);
385 * This is the system call interface. This communicates with
386 * the user-level programs. Currently this only supports diskquota
387 * calls. Maybe we need to add the process quotas etc. in the future,
388 * but we probably should use rlimits for that.
390 SYSCALL_DEFINE4(quotactl
, unsigned int, cmd
, const char __user
*, special
,
391 qid_t
, id
, void __user
*, addr
)
394 struct super_block
*sb
= NULL
;
397 cmds
= cmd
>> SUBCMDSHIFT
;
398 type
= cmd
& SUBCMDMASK
;
400 if (cmds
!= Q_SYNC
|| special
) {
401 sb
= quotactl_block(special
);
406 ret
= check_quotactl_valid(sb
, type
, cmds
, id
);
408 ret
= do_quotactl(sb
, type
, cmds
, id
, addr
);
415 #if defined(CONFIG_COMPAT_FOR_U64_ALIGNMENT)
417 * This code works only for 32 bit quota tools over 64 bit OS (x86_64, ia64)
418 * and is necessary due to alignment problems.
420 struct compat_if_dqblk
{
421 compat_u64 dqb_bhardlimit
;
422 compat_u64 dqb_bsoftlimit
;
423 compat_u64 dqb_curspace
;
424 compat_u64 dqb_ihardlimit
;
425 compat_u64 dqb_isoftlimit
;
426 compat_u64 dqb_curinodes
;
427 compat_u64 dqb_btime
;
428 compat_u64 dqb_itime
;
429 compat_uint_t dqb_valid
;
433 struct compat_fs_qfilestat
{
434 compat_u64 dqb_bhardlimit
;
435 compat_u64 qfs_nblks
;
436 compat_uint_t qfs_nextents
;
439 struct compat_fs_quota_stat
{
443 struct compat_fs_qfilestat qs_uquota
;
444 struct compat_fs_qfilestat qs_gquota
;
445 compat_uint_t qs_incoredqs
;
446 compat_int_t qs_btimelimit
;
447 compat_int_t qs_itimelimit
;
448 compat_int_t qs_rtbtimelimit
;
453 asmlinkage
long sys32_quotactl(unsigned int cmd
, const char __user
*special
,
454 qid_t id
, void __user
*addr
)
457 struct if_dqblk __user
*dqblk
;
458 struct compat_if_dqblk __user
*compat_dqblk
;
459 struct fs_quota_stat __user
*fsqstat
;
460 struct compat_fs_quota_stat __user
*compat_fsqstat
;
465 cmds
= cmd
>> SUBCMDSHIFT
;
469 dqblk
= compat_alloc_user_space(sizeof(struct if_dqblk
));
471 ret
= sys_quotactl(cmd
, special
, id
, dqblk
);
474 if (copy_in_user(compat_dqblk
, dqblk
, sizeof(*compat_dqblk
)) ||
475 get_user(data
, &dqblk
->dqb_valid
) ||
476 put_user(data
, &compat_dqblk
->dqb_valid
))
480 dqblk
= compat_alloc_user_space(sizeof(struct if_dqblk
));
483 if (copy_in_user(dqblk
, compat_dqblk
, sizeof(*compat_dqblk
)) ||
484 get_user(data
, &compat_dqblk
->dqb_valid
) ||
485 put_user(data
, &dqblk
->dqb_valid
))
487 ret
= sys_quotactl(cmd
, special
, id
, dqblk
);
490 fsqstat
= compat_alloc_user_space(sizeof(struct fs_quota_stat
));
491 compat_fsqstat
= addr
;
492 ret
= sys_quotactl(cmd
, special
, id
, fsqstat
);
496 /* Copying qs_version, qs_flags, qs_pad */
497 if (copy_in_user(compat_fsqstat
, fsqstat
,
498 offsetof(struct compat_fs_quota_stat
, qs_uquota
)))
500 /* Copying qs_uquota */
501 if (copy_in_user(&compat_fsqstat
->qs_uquota
,
503 sizeof(compat_fsqstat
->qs_uquota
)) ||
504 get_user(data
, &fsqstat
->qs_uquota
.qfs_nextents
) ||
505 put_user(data
, &compat_fsqstat
->qs_uquota
.qfs_nextents
))
507 /* Copying qs_gquota */
508 if (copy_in_user(&compat_fsqstat
->qs_gquota
,
510 sizeof(compat_fsqstat
->qs_gquota
)) ||
511 get_user(data
, &fsqstat
->qs_gquota
.qfs_nextents
) ||
512 put_user(data
, &compat_fsqstat
->qs_gquota
.qfs_nextents
))
514 /* Copying the rest */
515 if (copy_in_user(&compat_fsqstat
->qs_incoredqs
,
516 &fsqstat
->qs_incoredqs
,
517 sizeof(struct compat_fs_quota_stat
) -
518 offsetof(struct compat_fs_quota_stat
, qs_incoredqs
)) ||
519 get_user(xdata
, &fsqstat
->qs_iwarnlimit
) ||
520 put_user(xdata
, &compat_fsqstat
->qs_iwarnlimit
))
525 ret
= sys_quotactl(cmd
, special
, id
, addr
);
532 #ifdef CONFIG_QUOTA_NETLINK_INTERFACE
534 /* Netlink family structure for quota */
535 static struct genl_family quota_genl_family
= {
536 .id
= GENL_ID_GENERATE
,
540 .maxattr
= QUOTA_NL_A_MAX
,
544 * quota_send_warning - Send warning to userspace about exceeded quota
545 * @type: The quota type: USRQQUOTA, GRPQUOTA,...
546 * @id: The user or group id of the quota that was exceeded
547 * @dev: The device on which the fs is mounted (sb->s_dev)
548 * @warntype: The type of the warning: QUOTA_NL_...
550 * This can be used by filesystems (including those which don't use
551 * dquot) to send a message to userspace relating to quota limits.
555 void quota_send_warning(short type
, unsigned int id
, dev_t dev
,
562 int msg_size
= 4 * nla_total_size(sizeof(u32
)) +
563 2 * nla_total_size(sizeof(u64
));
565 /* We have to allocate using GFP_NOFS as we are called from a
566 * filesystem performing write and thus further recursion into
567 * the fs to free some data could cause deadlocks. */
568 skb
= genlmsg_new(msg_size
, GFP_NOFS
);
571 "VFS: Not enough memory to send quota warning.\n");
574 msg_head
= genlmsg_put(skb
, 0, atomic_add_return(1, &seq
),
575 "a_genl_family
, 0, QUOTA_NL_C_WARNING
);
578 "VFS: Cannot store netlink header in quota warning.\n");
581 ret
= nla_put_u32(skb
, QUOTA_NL_A_QTYPE
, type
);
584 ret
= nla_put_u64(skb
, QUOTA_NL_A_EXCESS_ID
, id
);
587 ret
= nla_put_u32(skb
, QUOTA_NL_A_WARNING
, warntype
);
590 ret
= nla_put_u32(skb
, QUOTA_NL_A_DEV_MAJOR
, MAJOR(dev
));
593 ret
= nla_put_u32(skb
, QUOTA_NL_A_DEV_MINOR
, MINOR(dev
));
596 ret
= nla_put_u64(skb
, QUOTA_NL_A_CAUSED_ID
, current_uid());
599 genlmsg_end(skb
, msg_head
);
601 genlmsg_multicast(skb
, 0, quota_genl_family
.id
, GFP_NOFS
);
604 printk(KERN_ERR
"VFS: Not enough space to compose quota message!\n");
608 EXPORT_SYMBOL(quota_send_warning
);
610 static int __init
quota_init(void)
612 if (genl_register_family("a_genl_family
) != 0)
614 "VFS: Failed to create quota netlink interface.\n");
618 module_init(quota_init
);