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> |
| 12 | #include <asm/uaccess.h> |
| 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> |
| 16 | #include <linux/buffer_head.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 17 | #include <linux/capability.h> |
Adrian Bunk | be586ba | 2005-11-07 00:59:35 -0800 | [diff] [blame] | 18 | #include <linux/quotaops.h> |
Vasily Tarasov | b716395 | 2007-07-15 23:41:12 -0700 | [diff] [blame] | 19 | #include <linux/types.h> |
Christoph Hellwig | 8c4e4ac | 2010-02-16 03:44:51 -0500 | [diff] [blame] | 20 | #include <linux/writeback.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Christoph Hellwig | c988afb | 2010-02-16 03:44:50 -0500 | [diff] [blame] | 22 | static int check_quotactl_permission(struct super_block *sb, int type, int cmd, |
| 23 | qid_t id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | { |
Christoph Hellwig | c988afb | 2010-02-16 03:44:50 -0500 | [diff] [blame] | 25 | switch (cmd) { |
| 26 | /* these commands do not require any special privilegues */ |
| 27 | case Q_GETFMT: |
| 28 | case Q_SYNC: |
| 29 | case Q_GETINFO: |
| 30 | case Q_XGETQSTAT: |
| 31 | case Q_XQUOTASYNC: |
| 32 | break; |
| 33 | /* allow to query information for dquots we "own" */ |
| 34 | case Q_GETQUOTA: |
| 35 | case Q_XGETQUOTA: |
| 36 | if ((type == USRQUOTA && current_euid() == id) || |
| 37 | (type == GRPQUOTA && in_egroup_p(id))) |
| 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 | { |
| 50 | if (sb->s_qcop && sb->s_qcop->quota_sync) |
| 51 | sb->s_qcop->quota_sync(sb, *(int *)arg, 1); |
| 52 | } |
| 53 | |
Christoph Hellwig | 6ae0957 | 2010-02-16 03:44:49 -0500 | [diff] [blame] | 54 | static int quota_sync_all(int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | { |
Christoph Hellwig | 6ae0957 | 2010-02-16 03:44:49 -0500 | [diff] [blame] | 56 | int ret; |
| 57 | |
| 58 | if (type >= MAXQUOTAS) |
| 59 | return -EINVAL; |
| 60 | ret = security_quotactl(Q_SYNC, type, 0, NULL); |
Al Viro | 01a05b3 | 2010-03-23 06:06:58 -0400 | [diff] [blame] | 61 | if (!ret) |
| 62 | iterate_supers(quota_sync_one, &type); |
| 63 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | } |
| 65 | |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 66 | 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] | 67 | struct path *path) |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 68 | { |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 69 | if (!sb->s_qcop->quota_on && !sb->s_qcop->quota_on_meta) |
| 70 | return -ENOSYS; |
| 71 | if (sb->s_qcop->quota_on_meta) |
| 72 | return sb->s_qcop->quota_on_meta(sb, type, id); |
| 73 | if (IS_ERR(path)) |
| 74 | return PTR_ERR(path); |
| 75 | return sb->s_qcop->quota_on(sb, type, id, path); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | static int quota_getfmt(struct super_block *sb, int type, void __user *addr) |
| 79 | { |
| 80 | __u32 fmt; |
| 81 | |
| 82 | down_read(&sb_dqopt(sb)->dqptr_sem); |
| 83 | if (!sb_has_quota_active(sb, type)) { |
| 84 | up_read(&sb_dqopt(sb)->dqptr_sem); |
| 85 | return -ESRCH; |
| 86 | } |
| 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))) |
| 90 | return -EFAULT; |
| 91 | return 0; |
| 92 | } |
| 93 | |
| 94 | static int quota_getinfo(struct super_block *sb, int type, void __user *addr) |
| 95 | { |
| 96 | struct if_dqinfo info; |
| 97 | int ret; |
| 98 | |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 99 | if (!sb->s_qcop->get_info) |
| 100 | return -ENOSYS; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 101 | ret = sb->s_qcop->get_info(sb, type, &info); |
| 102 | if (!ret && copy_to_user(addr, &info, sizeof(info))) |
| 103 | return -EFAULT; |
| 104 | return ret; |
| 105 | } |
| 106 | |
| 107 | static int quota_setinfo(struct super_block *sb, int type, void __user *addr) |
| 108 | { |
| 109 | struct if_dqinfo info; |
| 110 | |
| 111 | if (copy_from_user(&info, addr, sizeof(info))) |
| 112 | return -EFAULT; |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 113 | if (!sb->s_qcop->set_info) |
| 114 | return -ENOSYS; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 115 | return sb->s_qcop->set_info(sb, type, &info); |
| 116 | } |
| 117 | |
Christoph Hellwig | b9b2dd3 | 2010-05-06 17:04:58 -0400 | [diff] [blame] | 118 | static void copy_to_if_dqblk(struct if_dqblk *dst, struct fs_disk_quota *src) |
| 119 | { |
| 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; |
| 129 | } |
| 130 | |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 131 | static int quota_getquota(struct super_block *sb, int type, qid_t id, |
| 132 | void __user *addr) |
| 133 | { |
Christoph Hellwig | b9b2dd3 | 2010-05-06 17:04:58 -0400 | [diff] [blame] | 134 | struct fs_disk_quota fdq; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 135 | struct if_dqblk idq; |
| 136 | int ret; |
| 137 | |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 138 | if (!sb->s_qcop->get_dqblk) |
| 139 | return -ENOSYS; |
Christoph Hellwig | b9b2dd3 | 2010-05-06 17:04:58 -0400 | [diff] [blame] | 140 | ret = sb->s_qcop->get_dqblk(sb, type, id, &fdq); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 141 | if (ret) |
| 142 | return ret; |
Christoph Hellwig | b9b2dd3 | 2010-05-06 17:04:58 -0400 | [diff] [blame] | 143 | copy_to_if_dqblk(&idq, &fdq); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 144 | if (copy_to_user(addr, &idq, sizeof(idq))) |
| 145 | return -EFAULT; |
| 146 | return 0; |
| 147 | } |
| 148 | |
Christoph Hellwig | c472b43 | 2010-05-06 17:05:17 -0400 | [diff] [blame] | 149 | static void copy_from_if_dqblk(struct fs_disk_quota *dst, struct if_dqblk *src) |
| 150 | { |
| 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; |
| 159 | |
| 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; |
| 173 | } |
| 174 | |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 175 | static int quota_setquota(struct super_block *sb, int type, qid_t id, |
| 176 | void __user *addr) |
| 177 | { |
Christoph Hellwig | c472b43 | 2010-05-06 17:05:17 -0400 | [diff] [blame] | 178 | struct fs_disk_quota fdq; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 179 | struct if_dqblk idq; |
| 180 | |
| 181 | if (copy_from_user(&idq, addr, sizeof(idq))) |
| 182 | return -EFAULT; |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 183 | if (!sb->s_qcop->set_dqblk) |
| 184 | return -ENOSYS; |
Christoph Hellwig | c472b43 | 2010-05-06 17:05:17 -0400 | [diff] [blame] | 185 | copy_from_if_dqblk(&fdq, &idq); |
| 186 | return sb->s_qcop->set_dqblk(sb, type, id, &fdq); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | static int quota_setxstate(struct super_block *sb, int cmd, void __user *addr) |
| 190 | { |
| 191 | __u32 flags; |
| 192 | |
| 193 | if (copy_from_user(&flags, addr, sizeof(flags))) |
| 194 | return -EFAULT; |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 195 | if (!sb->s_qcop->set_xstate) |
| 196 | return -ENOSYS; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 197 | return sb->s_qcop->set_xstate(sb, flags, cmd); |
| 198 | } |
| 199 | |
| 200 | static int quota_getxstate(struct super_block *sb, void __user *addr) |
| 201 | { |
| 202 | struct fs_quota_stat fqs; |
| 203 | int ret; |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 204 | |
| 205 | if (!sb->s_qcop->get_xstate) |
| 206 | return -ENOSYS; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 207 | ret = sb->s_qcop->get_xstate(sb, &fqs); |
| 208 | if (!ret && copy_to_user(addr, &fqs, sizeof(fqs))) |
| 209 | return -EFAULT; |
| 210 | return ret; |
| 211 | } |
| 212 | |
| 213 | static int quota_setxquota(struct super_block *sb, int type, qid_t id, |
| 214 | void __user *addr) |
| 215 | { |
| 216 | struct fs_disk_quota fdq; |
| 217 | |
| 218 | if (copy_from_user(&fdq, addr, sizeof(fdq))) |
| 219 | return -EFAULT; |
Christoph Hellwig | c472b43 | 2010-05-06 17:05:17 -0400 | [diff] [blame] | 220 | if (!sb->s_qcop->set_dqblk) |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 221 | return -ENOSYS; |
Christoph Hellwig | c472b43 | 2010-05-06 17:05:17 -0400 | [diff] [blame] | 222 | return sb->s_qcop->set_dqblk(sb, type, id, &fdq); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | static int quota_getxquota(struct super_block *sb, int type, qid_t id, |
| 226 | void __user *addr) |
| 227 | { |
| 228 | struct fs_disk_quota fdq; |
| 229 | int ret; |
| 230 | |
Christoph Hellwig | b9b2dd3 | 2010-05-06 17:04:58 -0400 | [diff] [blame] | 231 | if (!sb->s_qcop->get_dqblk) |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 232 | return -ENOSYS; |
Christoph Hellwig | b9b2dd3 | 2010-05-06 17:04:58 -0400 | [diff] [blame] | 233 | ret = sb->s_qcop->get_dqblk(sb, type, id, &fdq); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 234 | if (!ret && copy_to_user(addr, &fdq, sizeof(fdq))) |
| 235 | return -EFAULT; |
| 236 | return ret; |
| 237 | } |
| 238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | /* Copy parameters and call proper function */ |
Jan Kara | 268157b | 2009-01-27 15:47:22 +0100 | [diff] [blame] | 240 | 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] | 241 | void __user *addr, struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | { |
Christoph Hellwig | c988afb | 2010-02-16 03:44:50 -0500 | [diff] [blame] | 243 | int ret; |
| 244 | |
| 245 | if (type >= (XQM_COMMAND(cmd) ? XQM_MAXQUOTAS : MAXQUOTAS)) |
| 246 | return -EINVAL; |
| 247 | if (!sb->s_qcop) |
| 248 | return -ENOSYS; |
| 249 | |
| 250 | ret = check_quotactl_permission(sb, type, cmd, id); |
| 251 | if (ret < 0) |
| 252 | return ret; |
| 253 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | switch (cmd) { |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 255 | case Q_QUOTAON: |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 256 | return quota_quotaon(sb, type, cmd, id, path); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 257 | case Q_QUOTAOFF: |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 258 | if (!sb->s_qcop->quota_off) |
| 259 | return -ENOSYS; |
Christoph Hellwig | 307ae18 | 2010-05-19 07:16:43 -0400 | [diff] [blame] | 260 | return sb->s_qcop->quota_off(sb, type); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 261 | case Q_GETFMT: |
| 262 | return quota_getfmt(sb, type, addr); |
| 263 | case Q_GETINFO: |
| 264 | return quota_getinfo(sb, type, addr); |
| 265 | case Q_SETINFO: |
| 266 | return quota_setinfo(sb, type, addr); |
| 267 | case Q_GETQUOTA: |
| 268 | return quota_getquota(sb, type, id, addr); |
| 269 | case Q_SETQUOTA: |
| 270 | return quota_setquota(sb, type, id, addr); |
| 271 | case Q_SYNC: |
Christoph Hellwig | 6ae0957 | 2010-02-16 03:44:49 -0500 | [diff] [blame] | 272 | if (!sb->s_qcop->quota_sync) |
| 273 | return -ENOSYS; |
Christoph Hellwig | 5fb324a | 2010-02-16 03:44:52 -0500 | [diff] [blame] | 274 | return sb->s_qcop->quota_sync(sb, type, 1); |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 275 | case Q_XQUOTAON: |
| 276 | case Q_XQUOTAOFF: |
| 277 | case Q_XQUOTARM: |
| 278 | return quota_setxstate(sb, cmd, addr); |
| 279 | case Q_XGETQSTAT: |
| 280 | return quota_getxstate(sb, addr); |
| 281 | case Q_XSETQLIM: |
| 282 | return quota_setxquota(sb, type, id, addr); |
| 283 | case Q_XGETQUOTA: |
| 284 | return quota_getxquota(sb, type, id, addr); |
| 285 | case Q_XQUOTASYNC: |
Christoph Hellwig | 8c4e4ac | 2010-02-16 03:44:51 -0500 | [diff] [blame] | 286 | /* caller already holds s_umount */ |
| 287 | if (sb->s_flags & MS_RDONLY) |
| 288 | return -EROFS; |
Curt Wohlgemuth | 0e175a1 | 2011-10-07 21:54:10 -0600 | [diff] [blame] | 289 | writeback_inodes_sb(sb, WB_REASON_SYNC); |
Christoph Hellwig | 8c4e4ac | 2010-02-16 03:44:51 -0500 | [diff] [blame] | 290 | return 0; |
Christoph Hellwig | c411e5f | 2010-02-16 03:44:47 -0500 | [diff] [blame] | 291 | default: |
Christoph Hellwig | f450d4f | 2010-02-16 03:44:48 -0500 | [diff] [blame] | 292 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | /* |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 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 |
| 299 | */ |
Jan Kara | 7a2435d | 2009-01-27 01:47:11 +0100 | [diff] [blame] | 300 | static struct super_block *quotactl_block(const char __user *special) |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 301 | { |
| 302 | #ifdef CONFIG_BLOCK |
| 303 | struct block_device *bdev; |
| 304 | struct super_block *sb; |
| 305 | char *tmp = getname(special); |
| 306 | |
| 307 | if (IS_ERR(tmp)) |
David Howells | e231c2e | 2008-02-07 00:15:26 -0800 | [diff] [blame] | 308 | return ERR_CAST(tmp); |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 309 | bdev = lookup_bdev(tmp); |
| 310 | putname(tmp); |
| 311 | if (IS_ERR(bdev)) |
David Howells | e231c2e | 2008-02-07 00:15:26 -0800 | [diff] [blame] | 312 | return ERR_CAST(bdev); |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 313 | sb = get_super(bdev); |
| 314 | bdput(bdev); |
| 315 | if (!sb) |
| 316 | return ERR_PTR(-ENODEV); |
| 317 | |
| 318 | return sb; |
| 319 | #else |
| 320 | return ERR_PTR(-ENODEV); |
| 321 | #endif |
| 322 | } |
| 323 | |
| 324 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
| 329 | */ |
Heiko Carstens | 3cdad42 | 2009-01-14 14:14:22 +0100 | [diff] [blame] | 330 | SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special, |
| 331 | qid_t, id, void __user *, addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | { |
| 333 | uint cmds, type; |
| 334 | struct super_block *sb = NULL; |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 335 | struct path path, *pathp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | int ret; |
| 337 | |
| 338 | cmds = cmd >> SUBCMDSHIFT; |
| 339 | type = cmd & SUBCMDMASK; |
| 340 | |
Christoph Hellwig | 6ae0957 | 2010-02-16 03:44:49 -0500 | [diff] [blame] | 341 | /* |
| 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. |
| 345 | */ |
| 346 | if (!special) { |
| 347 | if (cmds == Q_SYNC) |
| 348 | return quota_sync_all(type); |
| 349 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | } |
| 351 | |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 352 | /* |
| 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. |
| 356 | */ |
| 357 | if (cmds == Q_QUOTAON) { |
Trond Myklebust | 815d405 | 2011-09-26 20:36:09 -0400 | [diff] [blame] | 358 | ret = user_path_at(AT_FDCWD, addr, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path); |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 359 | if (ret) |
| 360 | pathp = ERR_PTR(ret); |
| 361 | else |
| 362 | pathp = &path; |
| 363 | } |
| 364 | |
Christoph Hellwig | 6ae0957 | 2010-02-16 03:44:49 -0500 | [diff] [blame] | 365 | sb = quotactl_block(special); |
Jan Kara | 0aaa618 | 2011-10-10 18:32:06 +0200 | [diff] [blame] | 366 | if (IS_ERR(sb)) { |
| 367 | ret = PTR_ERR(sb); |
| 368 | goto out; |
| 369 | } |
Christoph Hellwig | 6ae0957 | 2010-02-16 03:44:49 -0500 | [diff] [blame] | 370 | |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 371 | ret = do_quotactl(sb, type, cmds, id, addr, pathp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | |
Christoph Hellwig | 6ae0957 | 2010-02-16 03:44:49 -0500 | [diff] [blame] | 373 | drop_super(sb); |
Jan Kara | 0aaa618 | 2011-10-10 18:32:06 +0200 | [diff] [blame] | 374 | out: |
Jan Kara | f00c9e4 | 2010-09-15 17:38:58 +0200 | [diff] [blame] | 375 | if (pathp && !IS_ERR(pathp)) |
| 376 | path_put(pathp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | return ret; |
| 378 | } |