Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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. |
| 6 | */ |
| 7 | |
| 8 | #include <linux/fs.h> |
| 9 | #include <linux/namei.h> |
| 10 | #include <linux/slab.h> |
| 11 | #include <asm/current.h> |
Jeff Liu | f3da931 | 2012-05-28 23:40:17 +0800 | [diff] [blame] | 12 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/security.h> |
| 15 | #include <linux/syscalls.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 16 | #include <linux/capability.h> |
Adrian Bunk | be586ba | 2005-11-07 00:59:35 -0800 | [diff] [blame] | 17 | #include <linux/quotaops.h> |
Vasily Tarasov | b716395 | 2007-07-15 23:41:12 -0700 | [diff] [blame] | 18 | #include <linux/types.h> |
Christoph Hellwig | 8c4e4ac | 2010-02-16 03:44:51 -0500 | [diff] [blame] | 19 | #include <linux/writeback.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Christoph Hellwig | c988afb | 2010-02-16 03:44:50 -0500 | [diff] [blame] | 21 | static int check_quotactl_permission(struct super_block *sb, int type, int cmd, |
| 22 | qid_t id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | { |
Christoph Hellwig | c988afb | 2010-02-16 03:44:50 -0500 | [diff] [blame] | 24 | switch (cmd) { |
| 25 | /* these commands do not require any special privilegues */ |
| 26 | case Q_GETFMT: |
| 27 | case Q_SYNC: |
| 28 | case Q_GETINFO: |
| 29 | case Q_XGETQSTAT: |
Chandra Seetharaman | af30cb4 | 2013-08-06 17:27:07 -0500 | [diff] [blame] | 30 | case Q_XGETQSTATV: |
Christoph Hellwig | c988afb | 2010-02-16 03:44:50 -0500 | [diff] [blame] | 31 | case Q_XQUOTASYNC: |
| 32 | break; |
| 33 | /* allow to query information for dquots we "own" */ |
| 34 | case Q_GETQUOTA: |
| 35 | case Q_XGETQUOTA: |
Eric W. Biederman | 74a8a10 | 2012-09-16 02:07:49 -0700 | [diff] [blame] | 36 | if ((type == USRQUOTA && uid_eq(current_euid(), make_kuid(current_user_ns(), id))) || |
| 37 | (type == GRPQUOTA && in_egroup_p(make_kgid(current_user_ns(), id)))) |
Christoph Hellwig | c988afb | 2010-02-16 03:44:50 -0500 | [diff] [blame] | 38 | break; |
| 39 | /*FALLTHROUGH*/ |
| 40 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | if (!capable(CAP_SYS_ADMIN)) |
| 42 | return -EPERM; |
| 43 | } |
| 44 | |
Christoph Hellwig | c988afb | 2010-02-16 03:44:50 -0500 | [diff] [blame] | 45 | return security_quotactl(cmd, type, id, sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | } |
| 47 | |
Al Viro | 01a05b3 | 2010-03-23 06:06:58 -0400 | [diff] [blame] | 48 | static void quota_sync_one(struct super_block *sb, void *arg) |
| 49 | { |
Jan Kara | 2c5f648 | 2014-09-30 10:43:09 +0200 | [diff] [blame^] | 50 | int type = *(int *)arg; |
| 51 | |
| 52 | if (sb->s_qcop && sb->s_qcop->quota_sync && |
| 53 | (sb->s_quota_types & (1 << type))) |
| 54 | sb->s_qcop->quota_sync(sb, type); |
Al Viro | 01a05b3 | 2010-03-23 06:06:58 -0400 | [diff] [blame] | 55 | } |
| 56 | |
Christoph Hellwig | 6ae0957 | 2010-02-16 03:44:49 -0500 | [diff] [blame] | 57 | static int quota_sync_all(int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | { |
Christoph Hellwig | 6ae0957 | 2010-02-16 03:44:49 -0500 | [diff] [blame] | 59 | int ret; |
| 60 | |
| 61 | if (type >= MAXQUOTAS) |
| 62 | return -EINVAL; |
| 63 | ret = security_quotactl(Q_SYNC, type, 0, NULL); |
Al Viro | 01a05b3 | 2010-03-23 06:06:58 -0400 | [diff] [blame] | 64 | if (!ret) |
| 65 | iterate_supers(quota_sync_one, &type); |
| 66 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | } |
| 68 | |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 69 | static int quota_quotaon(struct super_block *sb, int type, int cmd, qid_t id, |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 70 | struct path *path) |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 71 | { |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 72 | if (!sb->s_qcop->quota_on && !sb->s_qcop->quota_on_meta) |
| 73 | return -ENOSYS; |
| 74 | if (sb->s_qcop->quota_on_meta) |
| 75 | return sb->s_qcop->quota_on_meta(sb, type, id); |
| 76 | if (IS_ERR(path)) |
| 77 | return PTR_ERR(path); |
| 78 | return sb->s_qcop->quota_on(sb, type, id, path); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | static int quota_getfmt(struct super_block *sb, int type, void __user *addr) |
| 82 | { |
| 83 | __u32 fmt; |
| 84 | |
Niu Yawei | 606cdcc | 2014-06-04 12:19:12 +0800 | [diff] [blame] | 85 | mutex_lock(&sb_dqopt(sb)->dqonoff_mutex); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 86 | if (!sb_has_quota_active(sb, type)) { |
Niu Yawei | 606cdcc | 2014-06-04 12:19:12 +0800 | [diff] [blame] | 87 | mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 88 | return -ESRCH; |
| 89 | } |
| 90 | fmt = sb_dqopt(sb)->info[type].dqi_format->qf_fmt_id; |
Niu Yawei | 606cdcc | 2014-06-04 12:19:12 +0800 | [diff] [blame] | 91 | mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 92 | if (copy_to_user(addr, &fmt, sizeof(fmt))) |
| 93 | return -EFAULT; |
| 94 | return 0; |
| 95 | } |
| 96 | |
| 97 | static int quota_getinfo(struct super_block *sb, int type, void __user *addr) |
| 98 | { |
| 99 | struct if_dqinfo info; |
| 100 | int ret; |
| 101 | |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 102 | if (!sb->s_qcop->get_info) |
| 103 | return -ENOSYS; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 104 | ret = sb->s_qcop->get_info(sb, type, &info); |
| 105 | if (!ret && copy_to_user(addr, &info, sizeof(info))) |
| 106 | return -EFAULT; |
| 107 | return ret; |
| 108 | } |
| 109 | |
| 110 | static int quota_setinfo(struct super_block *sb, int type, void __user *addr) |
| 111 | { |
| 112 | struct if_dqinfo info; |
| 113 | |
| 114 | if (copy_from_user(&info, addr, sizeof(info))) |
| 115 | return -EFAULT; |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 116 | if (!sb->s_qcop->set_info) |
| 117 | return -ENOSYS; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 118 | return sb->s_qcop->set_info(sb, type, &info); |
| 119 | } |
| 120 | |
Christoph Hellwig | b9b2dd3 | 2010-05-06 17:04:58 -0400 | [diff] [blame] | 121 | static void copy_to_if_dqblk(struct if_dqblk *dst, struct fs_disk_quota *src) |
| 122 | { |
Dan Carpenter | 18da65e | 2013-11-01 13:21:54 +0300 | [diff] [blame] | 123 | memset(dst, 0, sizeof(*dst)); |
Christoph Hellwig | b9b2dd3 | 2010-05-06 17:04:58 -0400 | [diff] [blame] | 124 | dst->dqb_bhardlimit = src->d_blk_hardlimit; |
| 125 | dst->dqb_bsoftlimit = src->d_blk_softlimit; |
| 126 | dst->dqb_curspace = src->d_bcount; |
| 127 | dst->dqb_ihardlimit = src->d_ino_hardlimit; |
| 128 | dst->dqb_isoftlimit = src->d_ino_softlimit; |
| 129 | dst->dqb_curinodes = src->d_icount; |
| 130 | dst->dqb_btime = src->d_btimer; |
| 131 | dst->dqb_itime = src->d_itimer; |
| 132 | dst->dqb_valid = QIF_ALL; |
| 133 | } |
| 134 | |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 135 | static int quota_getquota(struct super_block *sb, int type, qid_t id, |
| 136 | void __user *addr) |
| 137 | { |
Eric W. Biederman | 74a8a10 | 2012-09-16 02:07:49 -0700 | [diff] [blame] | 138 | struct kqid qid; |
Christoph Hellwig | b9b2dd3 | 2010-05-06 17:04:58 -0400 | [diff] [blame] | 139 | struct fs_disk_quota fdq; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 140 | struct if_dqblk idq; |
| 141 | int ret; |
| 142 | |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 143 | if (!sb->s_qcop->get_dqblk) |
| 144 | return -ENOSYS; |
Eric W. Biederman | 74a8a10 | 2012-09-16 02:07:49 -0700 | [diff] [blame] | 145 | qid = make_kqid(current_user_ns(), type, id); |
| 146 | if (!qid_valid(qid)) |
| 147 | return -EINVAL; |
| 148 | ret = sb->s_qcop->get_dqblk(sb, qid, &fdq); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 149 | if (ret) |
| 150 | return ret; |
Christoph Hellwig | b9b2dd3 | 2010-05-06 17:04:58 -0400 | [diff] [blame] | 151 | copy_to_if_dqblk(&idq, &fdq); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 152 | if (copy_to_user(addr, &idq, sizeof(idq))) |
| 153 | return -EFAULT; |
| 154 | return 0; |
| 155 | } |
| 156 | |
Christoph Hellwig | c472b43 | 2010-05-06 17:05:17 -0400 | [diff] [blame] | 157 | static void copy_from_if_dqblk(struct fs_disk_quota *dst, struct if_dqblk *src) |
| 158 | { |
| 159 | dst->d_blk_hardlimit = src->dqb_bhardlimit; |
| 160 | dst->d_blk_softlimit = src->dqb_bsoftlimit; |
| 161 | dst->d_bcount = src->dqb_curspace; |
| 162 | dst->d_ino_hardlimit = src->dqb_ihardlimit; |
| 163 | dst->d_ino_softlimit = src->dqb_isoftlimit; |
| 164 | dst->d_icount = src->dqb_curinodes; |
| 165 | dst->d_btimer = src->dqb_btime; |
| 166 | dst->d_itimer = src->dqb_itime; |
| 167 | |
| 168 | dst->d_fieldmask = 0; |
| 169 | if (src->dqb_valid & QIF_BLIMITS) |
| 170 | dst->d_fieldmask |= FS_DQ_BSOFT | FS_DQ_BHARD; |
| 171 | if (src->dqb_valid & QIF_SPACE) |
| 172 | dst->d_fieldmask |= FS_DQ_BCOUNT; |
| 173 | if (src->dqb_valid & QIF_ILIMITS) |
| 174 | dst->d_fieldmask |= FS_DQ_ISOFT | FS_DQ_IHARD; |
| 175 | if (src->dqb_valid & QIF_INODES) |
| 176 | dst->d_fieldmask |= FS_DQ_ICOUNT; |
| 177 | if (src->dqb_valid & QIF_BTIME) |
| 178 | dst->d_fieldmask |= FS_DQ_BTIMER; |
| 179 | if (src->dqb_valid & QIF_ITIME) |
| 180 | dst->d_fieldmask |= FS_DQ_ITIMER; |
| 181 | } |
| 182 | |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 183 | static int quota_setquota(struct super_block *sb, int type, qid_t id, |
| 184 | void __user *addr) |
| 185 | { |
Christoph Hellwig | c472b43 | 2010-05-06 17:05:17 -0400 | [diff] [blame] | 186 | struct fs_disk_quota fdq; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 187 | struct if_dqblk idq; |
Eric W. Biederman | 74a8a10 | 2012-09-16 02:07:49 -0700 | [diff] [blame] | 188 | struct kqid qid; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 189 | |
| 190 | if (copy_from_user(&idq, addr, sizeof(idq))) |
| 191 | return -EFAULT; |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 192 | if (!sb->s_qcop->set_dqblk) |
| 193 | return -ENOSYS; |
Eric W. Biederman | 74a8a10 | 2012-09-16 02:07:49 -0700 | [diff] [blame] | 194 | qid = make_kqid(current_user_ns(), type, id); |
| 195 | if (!qid_valid(qid)) |
| 196 | return -EINVAL; |
Christoph Hellwig | c472b43 | 2010-05-06 17:05:17 -0400 | [diff] [blame] | 197 | copy_from_if_dqblk(&fdq, &idq); |
Eric W. Biederman | 74a8a10 | 2012-09-16 02:07:49 -0700 | [diff] [blame] | 198 | return sb->s_qcop->set_dqblk(sb, qid, &fdq); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | static int quota_setxstate(struct super_block *sb, int cmd, void __user *addr) |
| 202 | { |
| 203 | __u32 flags; |
| 204 | |
| 205 | if (copy_from_user(&flags, addr, sizeof(flags))) |
| 206 | return -EFAULT; |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 207 | if (!sb->s_qcop->set_xstate) |
| 208 | return -ENOSYS; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 209 | return sb->s_qcop->set_xstate(sb, flags, cmd); |
| 210 | } |
| 211 | |
| 212 | static int quota_getxstate(struct super_block *sb, void __user *addr) |
| 213 | { |
| 214 | struct fs_quota_stat fqs; |
| 215 | int ret; |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 216 | |
| 217 | if (!sb->s_qcop->get_xstate) |
| 218 | return -ENOSYS; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 219 | ret = sb->s_qcop->get_xstate(sb, &fqs); |
| 220 | if (!ret && copy_to_user(addr, &fqs, sizeof(fqs))) |
| 221 | return -EFAULT; |
| 222 | return ret; |
| 223 | } |
| 224 | |
Chandra Seetharaman | af30cb4 | 2013-08-06 17:27:07 -0500 | [diff] [blame] | 225 | static int quota_getxstatev(struct super_block *sb, void __user *addr) |
| 226 | { |
| 227 | struct fs_quota_statv fqs; |
| 228 | int ret; |
| 229 | |
| 230 | if (!sb->s_qcop->get_xstatev) |
| 231 | return -ENOSYS; |
| 232 | |
| 233 | memset(&fqs, 0, sizeof(fqs)); |
| 234 | if (copy_from_user(&fqs, addr, 1)) /* Just read qs_version */ |
| 235 | return -EFAULT; |
| 236 | |
| 237 | /* If this kernel doesn't support user specified version, fail */ |
| 238 | switch (fqs.qs_version) { |
| 239 | case FS_QSTATV_VERSION1: |
| 240 | break; |
| 241 | default: |
| 242 | return -EINVAL; |
| 243 | } |
| 244 | ret = sb->s_qcop->get_xstatev(sb, &fqs); |
| 245 | if (!ret && copy_to_user(addr, &fqs, sizeof(fqs))) |
| 246 | return -EFAULT; |
| 247 | return ret; |
| 248 | } |
| 249 | |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 250 | static int quota_setxquota(struct super_block *sb, int type, qid_t id, |
| 251 | void __user *addr) |
| 252 | { |
| 253 | struct fs_disk_quota fdq; |
Eric W. Biederman | 74a8a10 | 2012-09-16 02:07:49 -0700 | [diff] [blame] | 254 | struct kqid qid; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 255 | |
| 256 | if (copy_from_user(&fdq, addr, sizeof(fdq))) |
| 257 | return -EFAULT; |
Christoph Hellwig | c472b43 | 2010-05-06 17:05:17 -0400 | [diff] [blame] | 258 | if (!sb->s_qcop->set_dqblk) |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 259 | return -ENOSYS; |
Eric W. Biederman | 74a8a10 | 2012-09-16 02:07:49 -0700 | [diff] [blame] | 260 | qid = make_kqid(current_user_ns(), type, id); |
| 261 | if (!qid_valid(qid)) |
| 262 | return -EINVAL; |
| 263 | return sb->s_qcop->set_dqblk(sb, qid, &fdq); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | static int quota_getxquota(struct super_block *sb, int type, qid_t id, |
| 267 | void __user *addr) |
| 268 | { |
| 269 | struct fs_disk_quota fdq; |
Eric W. Biederman | 74a8a10 | 2012-09-16 02:07:49 -0700 | [diff] [blame] | 270 | struct kqid qid; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 271 | int ret; |
| 272 | |
Christoph Hellwig | b9b2dd3 | 2010-05-06 17:04:58 -0400 | [diff] [blame] | 273 | if (!sb->s_qcop->get_dqblk) |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 274 | return -ENOSYS; |
Eric W. Biederman | 74a8a10 | 2012-09-16 02:07:49 -0700 | [diff] [blame] | 275 | qid = make_kqid(current_user_ns(), type, id); |
| 276 | if (!qid_valid(qid)) |
| 277 | return -EINVAL; |
| 278 | ret = sb->s_qcop->get_dqblk(sb, qid, &fdq); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 279 | if (!ret && copy_to_user(addr, &fdq, sizeof(fdq))) |
| 280 | return -EFAULT; |
| 281 | return ret; |
| 282 | } |
| 283 | |
Eric Sandeen | 9da93f9 | 2014-05-05 17:25:50 +1000 | [diff] [blame] | 284 | static int quota_rmxquota(struct super_block *sb, void __user *addr) |
| 285 | { |
| 286 | __u32 flags; |
| 287 | |
| 288 | if (copy_from_user(&flags, addr, sizeof(flags))) |
| 289 | return -EFAULT; |
| 290 | if (!sb->s_qcop->rm_xquota) |
| 291 | return -ENOSYS; |
| 292 | return sb->s_qcop->rm_xquota(sb, flags); |
| 293 | } |
| 294 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | /* Copy parameters and call proper function */ |
Jan Kara | 268157b | 2009-01-27 15:47:22 +0100 | [diff] [blame] | 296 | static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id, |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 297 | void __user *addr, struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | { |
Christoph Hellwig | c988afb | 2010-02-16 03:44:50 -0500 | [diff] [blame] | 299 | int ret; |
| 300 | |
| 301 | if (type >= (XQM_COMMAND(cmd) ? XQM_MAXQUOTAS : MAXQUOTAS)) |
| 302 | return -EINVAL; |
Jan Kara | 2c5f648 | 2014-09-30 10:43:09 +0200 | [diff] [blame^] | 303 | /* |
| 304 | * Quota not supported on this fs? Check this before s_quota_types |
| 305 | * since they needn't be set if quota is not supported at all. |
| 306 | */ |
Christoph Hellwig | c988afb | 2010-02-16 03:44:50 -0500 | [diff] [blame] | 307 | if (!sb->s_qcop) |
| 308 | return -ENOSYS; |
Jan Kara | 2c5f648 | 2014-09-30 10:43:09 +0200 | [diff] [blame^] | 309 | if (!(sb->s_quota_types & (1 << type))) |
| 310 | return -EINVAL; |
Christoph Hellwig | c988afb | 2010-02-16 03:44:50 -0500 | [diff] [blame] | 311 | |
| 312 | ret = check_quotactl_permission(sb, type, cmd, id); |
| 313 | if (ret < 0) |
| 314 | return ret; |
| 315 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | switch (cmd) { |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 317 | case Q_QUOTAON: |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 318 | return quota_quotaon(sb, type, cmd, id, path); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 319 | case Q_QUOTAOFF: |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 320 | if (!sb->s_qcop->quota_off) |
| 321 | return -ENOSYS; |
Christoph Hellwig | 307ae18 | 2010-05-19 07:16:43 -0400 | [diff] [blame] | 322 | return sb->s_qcop->quota_off(sb, type); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 323 | case Q_GETFMT: |
| 324 | return quota_getfmt(sb, type, addr); |
| 325 | case Q_GETINFO: |
| 326 | return quota_getinfo(sb, type, addr); |
| 327 | case Q_SETINFO: |
| 328 | return quota_setinfo(sb, type, addr); |
| 329 | case Q_GETQUOTA: |
| 330 | return quota_getquota(sb, type, id, addr); |
| 331 | case Q_SETQUOTA: |
| 332 | return quota_setquota(sb, type, id, addr); |
| 333 | case Q_SYNC: |
Christoph Hellwig | 6ae0957 | 2010-02-16 03:44:49 -0500 | [diff] [blame] | 334 | if (!sb->s_qcop->quota_sync) |
| 335 | return -ENOSYS; |
Jan Kara | ceed172 | 2012-07-03 16:45:28 +0200 | [diff] [blame] | 336 | return sb->s_qcop->quota_sync(sb, type); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 337 | case Q_XQUOTAON: |
| 338 | case Q_XQUOTAOFF: |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 339 | return quota_setxstate(sb, cmd, addr); |
Eric Sandeen | 9da93f9 | 2014-05-05 17:25:50 +1000 | [diff] [blame] | 340 | case Q_XQUOTARM: |
| 341 | return quota_rmxquota(sb, addr); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 342 | case Q_XGETQSTAT: |
| 343 | return quota_getxstate(sb, addr); |
Chandra Seetharaman | af30cb4 | 2013-08-06 17:27:07 -0500 | [diff] [blame] | 344 | case Q_XGETQSTATV: |
| 345 | return quota_getxstatev(sb, addr); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 346 | case Q_XSETQLIM: |
| 347 | return quota_setxquota(sb, type, id, addr); |
| 348 | case Q_XGETQUOTA: |
| 349 | return quota_getxquota(sb, type, id, addr); |
| 350 | case Q_XQUOTASYNC: |
Christoph Hellwig | 8c4e4ac | 2010-02-16 03:44:51 -0500 | [diff] [blame] | 351 | if (sb->s_flags & MS_RDONLY) |
| 352 | return -EROFS; |
Christoph Hellwig | 4b217ed | 2012-02-20 02:28:18 +0000 | [diff] [blame] | 353 | /* XFS quotas are fully coherent now, making this call a noop */ |
Christoph Hellwig | 8c4e4ac | 2010-02-16 03:44:51 -0500 | [diff] [blame] | 354 | return 0; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 355 | default: |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 356 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | } |
| 359 | |
Lee Jones | 56df127 | 2012-11-03 23:02:28 +0100 | [diff] [blame] | 360 | #ifdef CONFIG_BLOCK |
| 361 | |
Jan Kara | dcdbed8 | 2012-02-10 11:03:01 +0100 | [diff] [blame] | 362 | /* Return 1 if 'cmd' will block on frozen filesystem */ |
| 363 | static int quotactl_cmd_write(int cmd) |
| 364 | { |
| 365 | switch (cmd) { |
| 366 | case Q_GETFMT: |
| 367 | case Q_GETINFO: |
| 368 | case Q_SYNC: |
| 369 | case Q_XGETQSTAT: |
Chandra Seetharaman | af30cb4 | 2013-08-06 17:27:07 -0500 | [diff] [blame] | 370 | case Q_XGETQSTATV: |
Jan Kara | dcdbed8 | 2012-02-10 11:03:01 +0100 | [diff] [blame] | 371 | case Q_XGETQUOTA: |
| 372 | case Q_XQUOTASYNC: |
| 373 | return 0; |
| 374 | } |
| 375 | return 1; |
| 376 | } |
| 377 | |
Lee Jones | 56df127 | 2012-11-03 23:02:28 +0100 | [diff] [blame] | 378 | #endif /* CONFIG_BLOCK */ |
| 379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | /* |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 381 | * look up a superblock on which quota ops will be performed |
| 382 | * - use the name of a block device to find the superblock thereon |
| 383 | */ |
Jan Kara | dcdbed8 | 2012-02-10 11:03:01 +0100 | [diff] [blame] | 384 | static struct super_block *quotactl_block(const char __user *special, int cmd) |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 385 | { |
| 386 | #ifdef CONFIG_BLOCK |
| 387 | struct block_device *bdev; |
| 388 | struct super_block *sb; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 389 | struct filename *tmp = getname(special); |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 390 | |
| 391 | if (IS_ERR(tmp)) |
David Howells | e231c2e | 2008-02-07 00:15:26 -0800 | [diff] [blame] | 392 | return ERR_CAST(tmp); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 393 | bdev = lookup_bdev(tmp->name); |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 394 | putname(tmp); |
| 395 | if (IS_ERR(bdev)) |
David Howells | e231c2e | 2008-02-07 00:15:26 -0800 | [diff] [blame] | 396 | return ERR_CAST(bdev); |
Jan Kara | dcdbed8 | 2012-02-10 11:03:01 +0100 | [diff] [blame] | 397 | if (quotactl_cmd_write(cmd)) |
| 398 | sb = get_super_thawed(bdev); |
| 399 | else |
| 400 | sb = get_super(bdev); |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 401 | bdput(bdev); |
| 402 | if (!sb) |
| 403 | return ERR_PTR(-ENODEV); |
| 404 | |
| 405 | return sb; |
| 406 | #else |
| 407 | return ERR_PTR(-ENODEV); |
| 408 | #endif |
| 409 | } |
| 410 | |
| 411 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | * This is the system call interface. This communicates with |
| 413 | * the user-level programs. Currently this only supports diskquota |
| 414 | * calls. Maybe we need to add the process quotas etc. in the future, |
| 415 | * but we probably should use rlimits for that. |
| 416 | */ |
Heiko Carstens | 3cdad42 | 2009-01-14 14:14:22 +0100 | [diff] [blame] | 417 | SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special, |
| 418 | qid_t, id, void __user *, addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | { |
| 420 | uint cmds, type; |
| 421 | struct super_block *sb = NULL; |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 422 | struct path path, *pathp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | int ret; |
| 424 | |
| 425 | cmds = cmd >> SUBCMDSHIFT; |
| 426 | type = cmd & SUBCMDMASK; |
| 427 | |
Christoph Hellwig | 6ae0957 | 2010-02-16 03:44:49 -0500 | [diff] [blame] | 428 | /* |
| 429 | * As a special case Q_SYNC can be called without a specific device. |
| 430 | * It will iterate all superblocks that have quota enabled and call |
| 431 | * the sync action on each of them. |
| 432 | */ |
| 433 | if (!special) { |
| 434 | if (cmds == Q_SYNC) |
| 435 | return quota_sync_all(type); |
| 436 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | } |
| 438 | |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 439 | /* |
| 440 | * Path for quotaon has to be resolved before grabbing superblock |
| 441 | * because that gets s_umount sem which is also possibly needed by path |
| 442 | * resolution (think about autofs) and thus deadlocks could arise. |
| 443 | */ |
| 444 | if (cmds == Q_QUOTAON) { |
Trond Myklebust | 815d405 | 2011-09-26 20:36:09 -0400 | [diff] [blame] | 445 | ret = user_path_at(AT_FDCWD, addr, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path); |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 446 | if (ret) |
| 447 | pathp = ERR_PTR(ret); |
| 448 | else |
| 449 | pathp = &path; |
| 450 | } |
| 451 | |
Jan Kara | dcdbed8 | 2012-02-10 11:03:01 +0100 | [diff] [blame] | 452 | sb = quotactl_block(special, cmds); |
Jan Kara | 0aaa618 | 2011-10-10 18:32:06 +0200 | [diff] [blame] | 453 | if (IS_ERR(sb)) { |
| 454 | ret = PTR_ERR(sb); |
| 455 | goto out; |
| 456 | } |
Christoph Hellwig | 6ae0957 | 2010-02-16 03:44:49 -0500 | [diff] [blame] | 457 | |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 458 | ret = do_quotactl(sb, type, cmds, id, addr, pathp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | |
Christoph Hellwig | 6ae0957 | 2010-02-16 03:44:49 -0500 | [diff] [blame] | 460 | drop_super(sb); |
Jan Kara | 0aaa618 | 2011-10-10 18:32:06 +0200 | [diff] [blame] | 461 | out: |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 462 | if (pathp && !IS_ERR(pathp)) |
| 463 | path_put(pathp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | return ret; |
| 465 | } |