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>
22 /* Check validity of generic quotactl commands */
23 static int generic_quotactl_valid(struct super_block
*sb
, int type
, int cmd
, qid_t id
)
25 if (type
>= MAXQUOTAS
)
27 if (!sb
&& cmd
!= Q_SYNC
)
29 /* Is operation supported? */
30 if (sb
&& !sb
->s_qcop
)
37 if (!sb
->s_qcop
->quota_on
)
41 if (!sb
->s_qcop
->quota_off
)
45 if (!sb
->s_qcop
->set_info
)
49 if (!sb
->s_qcop
->get_info
)
53 if (!sb
->s_qcop
->set_dqblk
)
57 if (!sb
->s_qcop
->get_dqblk
)
61 if (sb
&& !sb
->s_qcop
->quota_sync
)
68 /* Is quota turned on for commands which need it? */
75 /* This is just informative test so we are satisfied without a lock */
76 if (!sb_has_quota_enabled(sb
, type
))
80 /* Check privileges */
81 if (cmd
== Q_GETQUOTA
) {
82 if (((type
== USRQUOTA
&& current
->euid
!= id
) ||
83 (type
== GRPQUOTA
&& !in_egroup_p(id
))) &&
84 !capable(CAP_SYS_ADMIN
))
87 else if (cmd
!= Q_GETFMT
&& cmd
!= Q_SYNC
&& cmd
!= Q_GETINFO
)
88 if (!capable(CAP_SYS_ADMIN
))
94 /* Check validity of XFS Quota Manager commands */
95 static int xqm_quotactl_valid(struct super_block
*sb
, int type
, int cmd
, qid_t id
)
97 if (type
>= XQM_MAXQUOTAS
)
108 if (!sb
->s_qcop
->set_xstate
)
112 if (!sb
->s_qcop
->get_xstate
)
116 if (!sb
->s_qcop
->set_xquota
)
120 if (!sb
->s_qcop
->get_xquota
)
124 if (!sb
->s_qcop
->quota_sync
)
131 /* Check privileges */
132 if (cmd
== Q_XGETQUOTA
) {
133 if (((type
== XQM_USRQUOTA
&& current
->euid
!= id
) ||
134 (type
== XQM_GRPQUOTA
&& !in_egroup_p(id
))) &&
135 !capable(CAP_SYS_ADMIN
))
137 } else if (cmd
!= Q_XGETQSTAT
&& cmd
!= Q_XQUOTASYNC
) {
138 if (!capable(CAP_SYS_ADMIN
))
145 static int check_quotactl_valid(struct super_block
*sb
, int type
, int cmd
, qid_t id
)
149 if (XQM_COMMAND(cmd
))
150 error
= xqm_quotactl_valid(sb
, type
, cmd
, id
);
152 error
= generic_quotactl_valid(sb
, type
, cmd
, id
);
154 error
= security_quotactl(cmd
, type
, id
, sb
);
158 static void quota_sync_sb(struct super_block
*sb
, int type
)
162 sb
->s_qcop
->quota_sync(sb
, type
);
163 /* This is not very clever (and fast) but currently I don't know about
164 * any other simple way of getting quota data to disk and we must get
165 * them there for userspace to be visible... */
166 if (sb
->s_op
->sync_fs
)
167 sb
->s_op
->sync_fs(sb
, 1);
168 sync_blockdev(sb
->s_bdev
);
171 * Now when everything is written we can discard the pagecache so
172 * that userspace sees the changes.
174 mutex_lock(&sb_dqopt(sb
)->dqonoff_mutex
);
175 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
176 if (type
!= -1 && cnt
!= type
)
178 if (!sb_has_quota_enabled(sb
, cnt
))
180 mutex_lock_nested(&sb_dqopt(sb
)->files
[cnt
]->i_mutex
, I_MUTEX_QUOTA
);
181 truncate_inode_pages(&sb_dqopt(sb
)->files
[cnt
]->i_data
, 0);
182 mutex_unlock(&sb_dqopt(sb
)->files
[cnt
]->i_mutex
);
184 mutex_unlock(&sb_dqopt(sb
)->dqonoff_mutex
);
187 void sync_dquots(struct super_block
*sb
, int type
)
192 if (sb
->s_qcop
->quota_sync
)
193 quota_sync_sb(sb
, type
);
199 list_for_each_entry(sb
, &super_blocks
, s_list
) {
200 /* This test just improves performance so it needn't be reliable... */
201 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
202 if (type
!= -1 && type
!= cnt
)
204 if (!sb_has_quota_enabled(sb
, cnt
))
206 if (!info_dirty(&sb_dqopt(sb
)->info
[cnt
]) &&
207 list_empty(&sb_dqopt(sb
)->info
[cnt
].dqi_dirty_list
))
211 if (cnt
== MAXQUOTAS
)
214 spin_unlock(&sb_lock
);
215 down_read(&sb
->s_umount
);
216 if (sb
->s_root
&& sb
->s_qcop
->quota_sync
)
217 quota_sync_sb(sb
, type
);
218 up_read(&sb
->s_umount
);
220 if (__put_super_and_need_restart(sb
))
223 spin_unlock(&sb_lock
);
226 /* Copy parameters and call proper function */
227 static int do_quotactl(struct super_block
*sb
, int type
, int cmd
, qid_t id
, void __user
*addr
)
235 if (IS_ERR(pathname
= getname(addr
)))
236 return PTR_ERR(pathname
);
237 ret
= sb
->s_qcop
->quota_on(sb
, type
, id
, pathname
, 0);
242 return sb
->s_qcop
->quota_off(sb
, type
, 0);
247 down_read(&sb_dqopt(sb
)->dqptr_sem
);
248 if (!sb_has_quota_enabled(sb
, type
)) {
249 up_read(&sb_dqopt(sb
)->dqptr_sem
);
252 fmt
= sb_dqopt(sb
)->info
[type
].dqi_format
->qf_fmt_id
;
253 up_read(&sb_dqopt(sb
)->dqptr_sem
);
254 if (copy_to_user(addr
, &fmt
, sizeof(fmt
)))
259 struct if_dqinfo info
;
261 if ((ret
= sb
->s_qcop
->get_info(sb
, type
, &info
)))
263 if (copy_to_user(addr
, &info
, sizeof(info
)))
268 struct if_dqinfo info
;
270 if (copy_from_user(&info
, addr
, sizeof(info
)))
272 return sb
->s_qcop
->set_info(sb
, type
, &info
);
277 if ((ret
= sb
->s_qcop
->get_dqblk(sb
, type
, id
, &idq
)))
279 if (copy_to_user(addr
, &idq
, sizeof(idq
)))
286 if (copy_from_user(&idq
, addr
, sizeof(idq
)))
288 return sb
->s_qcop
->set_dqblk(sb
, type
, id
, &idq
);
291 sync_dquots(sb
, type
);
299 if (copy_from_user(&flags
, addr
, sizeof(flags
)))
301 return sb
->s_qcop
->set_xstate(sb
, flags
, cmd
);
304 struct fs_quota_stat fqs
;
306 if ((ret
= sb
->s_qcop
->get_xstate(sb
, &fqs
)))
308 if (copy_to_user(addr
, &fqs
, sizeof(fqs
)))
313 struct fs_disk_quota fdq
;
315 if (copy_from_user(&fdq
, addr
, sizeof(fdq
)))
317 return sb
->s_qcop
->set_xquota(sb
, type
, id
, &fdq
);
320 struct fs_disk_quota fdq
;
322 if ((ret
= sb
->s_qcop
->get_xquota(sb
, type
, id
, &fdq
)))
324 if (copy_to_user(addr
, &fdq
, sizeof(fdq
)))
329 return sb
->s_qcop
->quota_sync(sb
, type
);
330 /* We never reach here unless validity check is broken */
338 * look up a superblock on which quota ops will be performed
339 * - use the name of a block device to find the superblock thereon
341 static inline struct super_block
*quotactl_block(const char __user
*special
)
344 struct block_device
*bdev
;
345 struct super_block
*sb
;
346 char *tmp
= getname(special
);
349 return ERR_CAST(tmp
);
350 bdev
= lookup_bdev(tmp
);
353 return ERR_CAST(bdev
);
354 sb
= get_super(bdev
);
357 return ERR_PTR(-ENODEV
);
361 return ERR_PTR(-ENODEV
);
366 * This is the system call interface. This communicates with
367 * the user-level programs. Currently this only supports diskquota
368 * calls. Maybe we need to add the process quotas etc. in the future,
369 * but we probably should use rlimits for that.
371 SYSCALL_DEFINE4(quotactl
, unsigned int, cmd
, const char __user
*, special
,
372 qid_t
, id
, void __user
*, addr
)
375 struct super_block
*sb
= NULL
;
378 cmds
= cmd
>> SUBCMDSHIFT
;
379 type
= cmd
& SUBCMDMASK
;
381 if (cmds
!= Q_SYNC
|| special
) {
382 sb
= quotactl_block(special
);
387 ret
= check_quotactl_valid(sb
, type
, cmds
, id
);
389 ret
= do_quotactl(sb
, type
, cmds
, id
, addr
);
396 #if defined(CONFIG_COMPAT_FOR_U64_ALIGNMENT)
398 * This code works only for 32 bit quota tools over 64 bit OS (x86_64, ia64)
399 * and is necessary due to alignment problems.
401 struct compat_if_dqblk
{
402 compat_u64 dqb_bhardlimit
;
403 compat_u64 dqb_bsoftlimit
;
404 compat_u64 dqb_curspace
;
405 compat_u64 dqb_ihardlimit
;
406 compat_u64 dqb_isoftlimit
;
407 compat_u64 dqb_curinodes
;
408 compat_u64 dqb_btime
;
409 compat_u64 dqb_itime
;
410 compat_uint_t dqb_valid
;
414 struct compat_fs_qfilestat
{
415 compat_u64 dqb_bhardlimit
;
416 compat_u64 qfs_nblks
;
417 compat_uint_t qfs_nextents
;
420 struct compat_fs_quota_stat
{
424 struct compat_fs_qfilestat qs_uquota
;
425 struct compat_fs_qfilestat qs_gquota
;
426 compat_uint_t qs_incoredqs
;
427 compat_int_t qs_btimelimit
;
428 compat_int_t qs_itimelimit
;
429 compat_int_t qs_rtbtimelimit
;
434 asmlinkage
long sys32_quotactl(unsigned int cmd
, const char __user
*special
,
435 qid_t id
, void __user
*addr
)
438 struct if_dqblk __user
*dqblk
;
439 struct compat_if_dqblk __user
*compat_dqblk
;
440 struct fs_quota_stat __user
*fsqstat
;
441 struct compat_fs_quota_stat __user
*compat_fsqstat
;
446 cmds
= cmd
>> SUBCMDSHIFT
;
450 dqblk
= compat_alloc_user_space(sizeof(struct if_dqblk
));
452 ret
= sys_quotactl(cmd
, special
, id
, dqblk
);
455 if (copy_in_user(compat_dqblk
, dqblk
, sizeof(*compat_dqblk
)) ||
456 get_user(data
, &dqblk
->dqb_valid
) ||
457 put_user(data
, &compat_dqblk
->dqb_valid
))
461 dqblk
= compat_alloc_user_space(sizeof(struct if_dqblk
));
464 if (copy_in_user(dqblk
, compat_dqblk
, sizeof(*compat_dqblk
)) ||
465 get_user(data
, &compat_dqblk
->dqb_valid
) ||
466 put_user(data
, &dqblk
->dqb_valid
))
468 ret
= sys_quotactl(cmd
, special
, id
, dqblk
);
471 fsqstat
= compat_alloc_user_space(sizeof(struct fs_quota_stat
));
472 compat_fsqstat
= addr
;
473 ret
= sys_quotactl(cmd
, special
, id
, fsqstat
);
477 /* Copying qs_version, qs_flags, qs_pad */
478 if (copy_in_user(compat_fsqstat
, fsqstat
,
479 offsetof(struct compat_fs_quota_stat
, qs_uquota
)))
481 /* Copying qs_uquota */
482 if (copy_in_user(&compat_fsqstat
->qs_uquota
,
484 sizeof(compat_fsqstat
->qs_uquota
)) ||
485 get_user(data
, &fsqstat
->qs_uquota
.qfs_nextents
) ||
486 put_user(data
, &compat_fsqstat
->qs_uquota
.qfs_nextents
))
488 /* Copying qs_gquota */
489 if (copy_in_user(&compat_fsqstat
->qs_gquota
,
491 sizeof(compat_fsqstat
->qs_gquota
)) ||
492 get_user(data
, &fsqstat
->qs_gquota
.qfs_nextents
) ||
493 put_user(data
, &compat_fsqstat
->qs_gquota
.qfs_nextents
))
495 /* Copying the rest */
496 if (copy_in_user(&compat_fsqstat
->qs_incoredqs
,
497 &fsqstat
->qs_incoredqs
,
498 sizeof(struct compat_fs_quota_stat
) -
499 offsetof(struct compat_fs_quota_stat
, qs_incoredqs
)) ||
500 get_user(xdata
, &fsqstat
->qs_iwarnlimit
) ||
501 put_user(xdata
, &compat_fsqstat
->qs_iwarnlimit
))
506 ret
= sys_quotactl(cmd
, special
, id
, addr
);