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 void quota_sync_one(struct super_block
*sb
, void *arg
)
50 if (sb
->s_qcop
&& sb
->s_qcop
->quota_sync
)
51 sb
->s_qcop
->quota_sync(sb
, *(int *)arg
, 1);
54 static int quota_sync_all(int type
)
58 if (type
>= MAXQUOTAS
)
60 ret
= security_quotactl(Q_SYNC
, type
, 0, NULL
);
62 iterate_supers(quota_sync_one
, &type
);
66 static int quota_quotaon(struct super_block
*sb
, int type
, int cmd
, qid_t id
,
69 if (!sb
->s_qcop
->quota_on
&& !sb
->s_qcop
->quota_on_meta
)
71 if (sb
->s_qcop
->quota_on_meta
)
72 return sb
->s_qcop
->quota_on_meta(sb
, type
, id
);
75 return sb
->s_qcop
->quota_on(sb
, type
, id
, path
);
78 static int quota_getfmt(struct super_block
*sb
, int type
, void __user
*addr
)
82 down_read(&sb_dqopt(sb
)->dqptr_sem
);
83 if (!sb_has_quota_active(sb
, type
)) {
84 up_read(&sb_dqopt(sb
)->dqptr_sem
);
87 fmt
= sb_dqopt(sb
)->info
[type
].dqi_format
->qf_fmt_id
;
88 up_read(&sb_dqopt(sb
)->dqptr_sem
);
89 if (copy_to_user(addr
, &fmt
, sizeof(fmt
)))
94 static int quota_getinfo(struct super_block
*sb
, int type
, void __user
*addr
)
96 struct if_dqinfo info
;
99 if (!sb
->s_qcop
->get_info
)
101 ret
= sb
->s_qcop
->get_info(sb
, type
, &info
);
102 if (!ret
&& copy_to_user(addr
, &info
, sizeof(info
)))
107 static int quota_setinfo(struct super_block
*sb
, int type
, void __user
*addr
)
109 struct if_dqinfo info
;
111 if (copy_from_user(&info
, addr
, sizeof(info
)))
113 if (!sb
->s_qcop
->set_info
)
115 return sb
->s_qcop
->set_info(sb
, type
, &info
);
118 static void copy_to_if_dqblk(struct if_dqblk
*dst
, struct fs_disk_quota
*src
)
120 dst
->dqb_bhardlimit
= src
->d_blk_hardlimit
;
121 dst
->dqb_bsoftlimit
= src
->d_blk_softlimit
;
122 dst
->dqb_curspace
= src
->d_bcount
;
123 dst
->dqb_ihardlimit
= src
->d_ino_hardlimit
;
124 dst
->dqb_isoftlimit
= src
->d_ino_softlimit
;
125 dst
->dqb_curinodes
= src
->d_icount
;
126 dst
->dqb_btime
= src
->d_btimer
;
127 dst
->dqb_itime
= src
->d_itimer
;
128 dst
->dqb_valid
= QIF_ALL
;
131 static int quota_getquota(struct super_block
*sb
, int type
, qid_t id
,
134 struct fs_disk_quota fdq
;
138 if (!sb
->s_qcop
->get_dqblk
)
140 ret
= sb
->s_qcop
->get_dqblk(sb
, type
, id
, &fdq
);
143 copy_to_if_dqblk(&idq
, &fdq
);
144 if (copy_to_user(addr
, &idq
, sizeof(idq
)))
149 static void copy_from_if_dqblk(struct fs_disk_quota
*dst
, struct if_dqblk
*src
)
151 dst
->d_blk_hardlimit
= src
->dqb_bhardlimit
;
152 dst
->d_blk_softlimit
= src
->dqb_bsoftlimit
;
153 dst
->d_bcount
= src
->dqb_curspace
;
154 dst
->d_ino_hardlimit
= src
->dqb_ihardlimit
;
155 dst
->d_ino_softlimit
= src
->dqb_isoftlimit
;
156 dst
->d_icount
= src
->dqb_curinodes
;
157 dst
->d_btimer
= src
->dqb_btime
;
158 dst
->d_itimer
= src
->dqb_itime
;
160 dst
->d_fieldmask
= 0;
161 if (src
->dqb_valid
& QIF_BLIMITS
)
162 dst
->d_fieldmask
|= FS_DQ_BSOFT
| FS_DQ_BHARD
;
163 if (src
->dqb_valid
& QIF_SPACE
)
164 dst
->d_fieldmask
|= FS_DQ_BCOUNT
;
165 if (src
->dqb_valid
& QIF_ILIMITS
)
166 dst
->d_fieldmask
|= FS_DQ_ISOFT
| FS_DQ_IHARD
;
167 if (src
->dqb_valid
& QIF_INODES
)
168 dst
->d_fieldmask
|= FS_DQ_ICOUNT
;
169 if (src
->dqb_valid
& QIF_BTIME
)
170 dst
->d_fieldmask
|= FS_DQ_BTIMER
;
171 if (src
->dqb_valid
& QIF_ITIME
)
172 dst
->d_fieldmask
|= FS_DQ_ITIMER
;
175 static int quota_setquota(struct super_block
*sb
, int type
, qid_t id
,
178 struct fs_disk_quota fdq
;
181 if (copy_from_user(&idq
, addr
, sizeof(idq
)))
183 if (!sb
->s_qcop
->set_dqblk
)
185 copy_from_if_dqblk(&fdq
, &idq
);
186 return sb
->s_qcop
->set_dqblk(sb
, type
, id
, &fdq
);
189 static int quota_setxstate(struct super_block
*sb
, int cmd
, void __user
*addr
)
193 if (copy_from_user(&flags
, addr
, sizeof(flags
)))
195 if (!sb
->s_qcop
->set_xstate
)
197 return sb
->s_qcop
->set_xstate(sb
, flags
, cmd
);
200 static int quota_getxstate(struct super_block
*sb
, void __user
*addr
)
202 struct fs_quota_stat fqs
;
205 if (!sb
->s_qcop
->get_xstate
)
207 ret
= sb
->s_qcop
->get_xstate(sb
, &fqs
);
208 if (!ret
&& copy_to_user(addr
, &fqs
, sizeof(fqs
)))
213 static int quota_setxquota(struct super_block
*sb
, int type
, qid_t id
,
216 struct fs_disk_quota fdq
;
218 if (copy_from_user(&fdq
, addr
, sizeof(fdq
)))
220 if (!sb
->s_qcop
->set_dqblk
)
222 return sb
->s_qcop
->set_dqblk(sb
, type
, id
, &fdq
);
225 static int quota_getxquota(struct super_block
*sb
, int type
, qid_t id
,
228 struct fs_disk_quota fdq
;
231 if (!sb
->s_qcop
->get_dqblk
)
233 ret
= sb
->s_qcop
->get_dqblk(sb
, type
, id
, &fdq
);
234 if (!ret
&& copy_to_user(addr
, &fdq
, sizeof(fdq
)))
239 /* Copy parameters and call proper function */
240 static int do_quotactl(struct super_block
*sb
, int type
, int cmd
, qid_t id
,
241 void __user
*addr
, struct path
*path
)
245 if (type
>= (XQM_COMMAND(cmd
) ? XQM_MAXQUOTAS
: MAXQUOTAS
))
250 ret
= check_quotactl_permission(sb
, type
, cmd
, id
);
256 return quota_quotaon(sb
, type
, cmd
, id
, path
);
258 if (!sb
->s_qcop
->quota_off
)
260 return sb
->s_qcop
->quota_off(sb
, type
);
262 return quota_getfmt(sb
, type
, addr
);
264 return quota_getinfo(sb
, type
, addr
);
266 return quota_setinfo(sb
, type
, addr
);
268 return quota_getquota(sb
, type
, id
, addr
);
270 return quota_setquota(sb
, type
, id
, addr
);
272 if (!sb
->s_qcop
->quota_sync
)
274 return sb
->s_qcop
->quota_sync(sb
, type
, 1);
278 return quota_setxstate(sb
, cmd
, addr
);
280 return quota_getxstate(sb
, addr
);
282 return quota_setxquota(sb
, type
, id
, addr
);
284 return quota_getxquota(sb
, type
, id
, addr
);
286 /* caller already holds s_umount */
287 if (sb
->s_flags
& MS_RDONLY
)
289 writeback_inodes_sb(sb
);
297 * look up a superblock on which quota ops will be performed
298 * - use the name of a block device to find the superblock thereon
300 static struct super_block
*quotactl_block(const char __user
*special
)
303 struct block_device
*bdev
;
304 struct super_block
*sb
;
305 char *tmp
= getname(special
);
308 return ERR_CAST(tmp
);
309 bdev
= lookup_bdev(tmp
);
312 return ERR_CAST(bdev
);
313 sb
= get_super(bdev
);
316 return ERR_PTR(-ENODEV
);
320 return ERR_PTR(-ENODEV
);
325 * This is the system call interface. This communicates with
326 * the user-level programs. Currently this only supports diskquota
327 * calls. Maybe we need to add the process quotas etc. in the future,
328 * but we probably should use rlimits for that.
330 SYSCALL_DEFINE4(quotactl
, unsigned int, cmd
, const char __user
*, special
,
331 qid_t
, id
, void __user
*, addr
)
334 struct super_block
*sb
= NULL
;
335 struct path path
, *pathp
= NULL
;
338 cmds
= cmd
>> SUBCMDSHIFT
;
339 type
= cmd
& SUBCMDMASK
;
342 * As a special case Q_SYNC can be called without a specific device.
343 * It will iterate all superblocks that have quota enabled and call
344 * the sync action on each of them.
348 return quota_sync_all(type
);
353 * Path for quotaon has to be resolved before grabbing superblock
354 * because that gets s_umount sem which is also possibly needed by path
355 * resolution (think about autofs) and thus deadlocks could arise.
357 if (cmds
== Q_QUOTAON
) {
358 ret
= user_path_at(AT_FDCWD
, addr
, LOOKUP_FOLLOW
, &path
);
360 pathp
= ERR_PTR(ret
);
365 sb
= quotactl_block(special
);
369 ret
= do_quotactl(sb
, type
, cmds
, id
, addr
, pathp
);
372 if (pathp
&& !IS_ERR(pathp
))