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, dirty
= 0; cnt
< MAXQUOTAS
; cnt
++)
202 if ((type
== cnt
|| type
== -1) && sb_has_quota_enabled(sb
, cnt
)
203 && info_any_dirty(&sb_dqopt(sb
)->info
[cnt
]))
208 spin_unlock(&sb_lock
);
209 down_read(&sb
->s_umount
);
210 if (sb
->s_root
&& sb
->s_qcop
->quota_sync
)
211 quota_sync_sb(sb
, type
);
212 up_read(&sb
->s_umount
);
214 if (__put_super_and_need_restart(sb
))
217 spin_unlock(&sb_lock
);
220 /* Copy parameters and call proper function */
221 static int do_quotactl(struct super_block
*sb
, int type
, int cmd
, qid_t id
, void __user
*addr
)
229 if (IS_ERR(pathname
= getname(addr
)))
230 return PTR_ERR(pathname
);
231 ret
= sb
->s_qcop
->quota_on(sb
, type
, id
, pathname
, 0);
236 return sb
->s_qcop
->quota_off(sb
, type
, 0);
241 down_read(&sb_dqopt(sb
)->dqptr_sem
);
242 if (!sb_has_quota_enabled(sb
, type
)) {
243 up_read(&sb_dqopt(sb
)->dqptr_sem
);
246 fmt
= sb_dqopt(sb
)->info
[type
].dqi_format
->qf_fmt_id
;
247 up_read(&sb_dqopt(sb
)->dqptr_sem
);
248 if (copy_to_user(addr
, &fmt
, sizeof(fmt
)))
253 struct if_dqinfo info
;
255 if ((ret
= sb
->s_qcop
->get_info(sb
, type
, &info
)))
257 if (copy_to_user(addr
, &info
, sizeof(info
)))
262 struct if_dqinfo info
;
264 if (copy_from_user(&info
, addr
, sizeof(info
)))
266 return sb
->s_qcop
->set_info(sb
, type
, &info
);
271 if ((ret
= sb
->s_qcop
->get_dqblk(sb
, type
, id
, &idq
)))
273 if (copy_to_user(addr
, &idq
, sizeof(idq
)))
280 if (copy_from_user(&idq
, addr
, sizeof(idq
)))
282 return sb
->s_qcop
->set_dqblk(sb
, type
, id
, &idq
);
285 sync_dquots(sb
, type
);
293 if (copy_from_user(&flags
, addr
, sizeof(flags
)))
295 return sb
->s_qcop
->set_xstate(sb
, flags
, cmd
);
298 struct fs_quota_stat fqs
;
300 if ((ret
= sb
->s_qcop
->get_xstate(sb
, &fqs
)))
302 if (copy_to_user(addr
, &fqs
, sizeof(fqs
)))
307 struct fs_disk_quota fdq
;
309 if (copy_from_user(&fdq
, addr
, sizeof(fdq
)))
311 return sb
->s_qcop
->set_xquota(sb
, type
, id
, &fdq
);
314 struct fs_disk_quota fdq
;
316 if ((ret
= sb
->s_qcop
->get_xquota(sb
, type
, id
, &fdq
)))
318 if (copy_to_user(addr
, &fdq
, sizeof(fdq
)))
323 return sb
->s_qcop
->quota_sync(sb
, type
);
324 /* We never reach here unless validity check is broken */
332 * look up a superblock on which quota ops will be performed
333 * - use the name of a block device to find the superblock thereon
335 static inline struct super_block
*quotactl_block(const char __user
*special
)
338 struct block_device
*bdev
;
339 struct super_block
*sb
;
340 char *tmp
= getname(special
);
343 return ERR_CAST(tmp
);
344 bdev
= lookup_bdev(tmp
);
347 return ERR_CAST(bdev
);
348 sb
= get_super(bdev
);
351 return ERR_PTR(-ENODEV
);
355 return ERR_PTR(-ENODEV
);
360 * This is the system call interface. This communicates with
361 * the user-level programs. Currently this only supports diskquota
362 * calls. Maybe we need to add the process quotas etc. in the future,
363 * but we probably should use rlimits for that.
365 asmlinkage
long sys_quotactl(unsigned int cmd
, const char __user
*special
, qid_t id
, void __user
*addr
)
368 struct super_block
*sb
= NULL
;
371 cmds
= cmd
>> SUBCMDSHIFT
;
372 type
= cmd
& SUBCMDMASK
;
374 if (cmds
!= Q_SYNC
|| special
) {
375 sb
= quotactl_block(special
);
380 ret
= check_quotactl_valid(sb
, type
, cmds
, id
);
382 ret
= do_quotactl(sb
, type
, cmds
, id
, addr
);
389 #if defined(CONFIG_COMPAT_FOR_U64_ALIGNMENT)
391 * This code works only for 32 bit quota tools over 64 bit OS (x86_64, ia64)
392 * and is necessary due to alignment problems.
394 struct compat_if_dqblk
{
395 compat_u64 dqb_bhardlimit
;
396 compat_u64 dqb_bsoftlimit
;
397 compat_u64 dqb_curspace
;
398 compat_u64 dqb_ihardlimit
;
399 compat_u64 dqb_isoftlimit
;
400 compat_u64 dqb_curinodes
;
401 compat_u64 dqb_btime
;
402 compat_u64 dqb_itime
;
403 compat_uint_t dqb_valid
;
407 struct compat_fs_qfilestat
{
408 compat_u64 dqb_bhardlimit
;
409 compat_u64 qfs_nblks
;
410 compat_uint_t qfs_nextents
;
413 struct compat_fs_quota_stat
{
417 struct compat_fs_qfilestat qs_uquota
;
418 struct compat_fs_qfilestat qs_gquota
;
419 compat_uint_t qs_incoredqs
;
420 compat_int_t qs_btimelimit
;
421 compat_int_t qs_itimelimit
;
422 compat_int_t qs_rtbtimelimit
;
427 asmlinkage
long sys32_quotactl(unsigned int cmd
, const char __user
*special
,
428 qid_t id
, void __user
*addr
)
431 struct if_dqblk __user
*dqblk
;
432 struct compat_if_dqblk __user
*compat_dqblk
;
433 struct fs_quota_stat __user
*fsqstat
;
434 struct compat_fs_quota_stat __user
*compat_fsqstat
;
439 cmds
= cmd
>> SUBCMDSHIFT
;
443 dqblk
= compat_alloc_user_space(sizeof(struct if_dqblk
));
445 ret
= sys_quotactl(cmd
, special
, id
, dqblk
);
448 if (copy_in_user(compat_dqblk
, dqblk
, sizeof(*compat_dqblk
)) ||
449 get_user(data
, &dqblk
->dqb_valid
) ||
450 put_user(data
, &compat_dqblk
->dqb_valid
))
454 dqblk
= compat_alloc_user_space(sizeof(struct if_dqblk
));
457 if (copy_in_user(dqblk
, compat_dqblk
, sizeof(*compat_dqblk
)) ||
458 get_user(data
, &compat_dqblk
->dqb_valid
) ||
459 put_user(data
, &dqblk
->dqb_valid
))
461 ret
= sys_quotactl(cmd
, special
, id
, dqblk
);
464 fsqstat
= compat_alloc_user_space(sizeof(struct fs_quota_stat
));
465 compat_fsqstat
= addr
;
466 ret
= sys_quotactl(cmd
, special
, id
, fsqstat
);
470 /* Copying qs_version, qs_flags, qs_pad */
471 if (copy_in_user(compat_fsqstat
, fsqstat
,
472 offsetof(struct compat_fs_quota_stat
, qs_uquota
)))
474 /* Copying qs_uquota */
475 if (copy_in_user(&compat_fsqstat
->qs_uquota
,
477 sizeof(compat_fsqstat
->qs_uquota
)) ||
478 get_user(data
, &fsqstat
->qs_uquota
.qfs_nextents
) ||
479 put_user(data
, &compat_fsqstat
->qs_uquota
.qfs_nextents
))
481 /* Copying qs_gquota */
482 if (copy_in_user(&compat_fsqstat
->qs_gquota
,
484 sizeof(compat_fsqstat
->qs_gquota
)) ||
485 get_user(data
, &fsqstat
->qs_gquota
.qfs_nextents
) ||
486 put_user(data
, &compat_fsqstat
->qs_gquota
.qfs_nextents
))
488 /* Copying the rest */
489 if (copy_in_user(&compat_fsqstat
->qs_incoredqs
,
490 &fsqstat
->qs_incoredqs
,
491 sizeof(struct compat_fs_quota_stat
) -
492 offsetof(struct compat_fs_quota_stat
, qs_incoredqs
)) ||
493 get_user(xdata
, &fsqstat
->qs_iwarnlimit
) ||
494 put_user(xdata
, &compat_fsqstat
->qs_iwarnlimit
))
499 ret
= sys_quotactl(cmd
, special
, id
, addr
);