diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-23 13:22:40 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-23 13:22:40 -0400 |
| commit | 5ed487bc2c44ca4e9668ef9cb54c830e2a9fac47 (patch) | |
| tree | af19ed28db83e8f52690872ac99336da1cf2fd3b | |
| parent | 5b34653963de7a6d0d8c783527457d68fddc60fb (diff) | |
| parent | fd217f4d70172c526478f2bc76859e909fdfa674 (diff) | |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6: (46 commits)
[PATCH] fs: add a sanity check in d_free
[PATCH] i_version: remount support
[patch] vfs: make security_inode_setattr() calling consistent
[patch 1/3] FS_MBCACHE: don't needlessly make it built-in
[PATCH] move executable checking into ->permission()
[PATCH] fs/dcache.c: update comment of d_validate()
[RFC PATCH] touch_mnt_namespace when the mount flags change
[PATCH] reiserfs: add missing llseek method
[PATCH] fix ->llseek for more directories
[PATCH vfs-2.6 6/6] vfs: add LOOKUP_RENAME_TARGET intent
[PATCH vfs-2.6 5/6] vfs: remove LOOKUP_PARENT from non LOOKUP_PARENT lookup
[PATCH vfs-2.6 4/6] vfs: remove unnecessary fsnotify_d_instantiate()
[PATCH vfs-2.6 3/6] vfs: add __d_instantiate() helper
[PATCH vfs-2.6 2/6] vfs: add d_ancestor()
[PATCH vfs-2.6 1/6] vfs: replace parent == dentry->d_parent by IS_ROOT()
[PATCH] get rid of on-stack dentry in udf
[PATCH 2/2] anondev: switch to IDA
[PATCH 1/2] anondev: init IDR statically
[JFFS2] Use d_splice_alias() not d_add() in jffs2_lookup()
[PATCH] Optimise NFS readdir hack slightly.
...
76 files changed, 883 insertions, 1133 deletions
diff --git a/arch/alpha/kernel/osf_sys.c b/arch/alpha/kernel/osf_sys.c index 8509dad31204..f25f6c490952 100644 --- a/arch/alpha/kernel/osf_sys.c +++ b/arch/alpha/kernel/osf_sys.c | |||
| @@ -165,14 +165,11 @@ osf_getdirentries(unsigned int fd, struct osf_dirent __user *dirent, | |||
| 165 | buf.error = 0; | 165 | buf.error = 0; |
| 166 | 166 | ||
| 167 | error = vfs_readdir(file, osf_filldir, &buf); | 167 | error = vfs_readdir(file, osf_filldir, &buf); |
| 168 | if (error < 0) | 168 | if (error >= 0) |
| 169 | goto out_putf; | 169 | error = buf.error; |
| 170 | |||
| 171 | error = buf.error; | ||
| 172 | if (count != buf.count) | 170 | if (count != buf.count) |
| 173 | error = count - buf.count; | 171 | error = count - buf.count; |
| 174 | 172 | ||
| 175 | out_putf: | ||
| 176 | fput(file); | 173 | fput(file); |
| 177 | out: | 174 | out: |
| 178 | return error; | 175 | return error; |
diff --git a/arch/parisc/hpux/fs.c b/arch/parisc/hpux/fs.c index 12c04c5e558b..bd9a4db3bd4c 100644 --- a/arch/parisc/hpux/fs.c +++ b/arch/parisc/hpux/fs.c | |||
| @@ -127,9 +127,8 @@ int hpux_getdents(unsigned int fd, struct hpux_dirent __user *dirent, unsigned i | |||
| 127 | buf.error = 0; | 127 | buf.error = 0; |
| 128 | 128 | ||
| 129 | error = vfs_readdir(file, filldir, &buf); | 129 | error = vfs_readdir(file, filldir, &buf); |
| 130 | if (error < 0) | 130 | if (error >= 0) |
| 131 | goto out_putf; | 131 | error = buf.error; |
| 132 | error = buf.error; | ||
| 133 | lastdirent = buf.previous; | 132 | lastdirent = buf.previous; |
| 134 | if (lastdirent) { | 133 | if (lastdirent) { |
| 135 | if (put_user(file->f_pos, &lastdirent->d_off)) | 134 | if (put_user(file->f_pos, &lastdirent->d_off)) |
diff --git a/arch/powerpc/platforms/cell/spufs/syscalls.c b/arch/powerpc/platforms/cell/spufs/syscalls.c index 49c87769b1f8..c23617c6baf3 100644 --- a/arch/powerpc/platforms/cell/spufs/syscalls.c +++ b/arch/powerpc/platforms/cell/spufs/syscalls.c | |||
| @@ -69,9 +69,9 @@ static long do_spu_create(const char __user *pathname, unsigned int flags, | |||
| 69 | if (!IS_ERR(tmp)) { | 69 | if (!IS_ERR(tmp)) { |
| 70 | struct nameidata nd; | 70 | struct nameidata nd; |
| 71 | 71 | ||
| 72 | ret = path_lookup(tmp, LOOKUP_PARENT| | 72 | ret = path_lookup(tmp, LOOKUP_PARENT, &nd); |
| 73 | LOOKUP_OPEN|LOOKUP_CREATE, &nd); | ||
| 74 | if (!ret) { | 73 | if (!ret) { |
| 74 | nd.flags |= LOOKUP_OPEN | LOOKUP_CREATE; | ||
| 75 | ret = spufs_create(&nd, flags, mode, neighbor); | 75 | ret = spufs_create(&nd, flags, mode, neighbor); |
| 76 | path_put(&nd.path); | 76 | path_put(&nd.path); |
| 77 | } | 77 | } |
diff --git a/drivers/md/dm-table.c b/drivers/md/dm-table.c index a740a6950f59..1407eb96f1a4 100644 --- a/drivers/md/dm-table.c +++ b/drivers/md/dm-table.c | |||
| @@ -313,19 +313,6 @@ static inline int check_space(struct dm_table *t) | |||
| 313 | } | 313 | } |
| 314 | 314 | ||
| 315 | /* | 315 | /* |
| 316 | * Convert a device path to a dev_t. | ||
| 317 | */ | ||
| 318 | static int lookup_device(const char *path, dev_t *dev) | ||
| 319 | { | ||
| 320 | struct block_device *bdev = lookup_bdev(path); | ||
| 321 | if (IS_ERR(bdev)) | ||
| 322 | return PTR_ERR(bdev); | ||
| 323 | *dev = bdev->bd_dev; | ||
| 324 | bdput(bdev); | ||
| 325 | return 0; | ||
| 326 | } | ||
| 327 | |||
| 328 | /* | ||
| 329 | * See if we've already got a device in the list. | 316 | * See if we've already got a device in the list. |
| 330 | */ | 317 | */ |
| 331 | static struct dm_dev_internal *find_device(struct list_head *l, dev_t dev) | 318 | static struct dm_dev_internal *find_device(struct list_head *l, dev_t dev) |
| @@ -437,8 +424,12 @@ static int __table_get_device(struct dm_table *t, struct dm_target *ti, | |||
| 437 | return -EOVERFLOW; | 424 | return -EOVERFLOW; |
| 438 | } else { | 425 | } else { |
| 439 | /* convert the path to a device */ | 426 | /* convert the path to a device */ |
| 440 | if ((r = lookup_device(path, &dev))) | 427 | struct block_device *bdev = lookup_bdev(path); |
| 441 | return r; | 428 | |
| 429 | if (IS_ERR(bdev)) | ||
| 430 | return PTR_ERR(bdev); | ||
| 431 | dev = bdev->bd_dev; | ||
| 432 | bdput(bdev); | ||
| 442 | } | 433 | } |
| 443 | 434 | ||
| 444 | dd = find_device(&t->devices, dev); | 435 | dd = find_device(&t->devices, dev); |
diff --git a/fs/Kconfig b/fs/Kconfig index e46297f020c1..522469a7eca3 100644 --- a/fs/Kconfig +++ b/fs/Kconfig | |||
| @@ -22,9 +22,10 @@ source "fs/jbd2/Kconfig" | |||
| 22 | config FS_MBCACHE | 22 | config FS_MBCACHE |
| 23 | # Meta block cache for Extended Attributes (ext2/ext3/ext4) | 23 | # Meta block cache for Extended Attributes (ext2/ext3/ext4) |
| 24 | tristate | 24 | tristate |
| 25 | depends on EXT2_FS_XATTR || EXT3_FS_XATTR || EXT4_FS_XATTR | 25 | default y if EXT2_FS=y && EXT2_FS_XATTR |
| 26 | default y if EXT2_FS=y || EXT3_FS=y || EXT4_FS=y | 26 | default y if EXT3_FS=y && EXT3_FS_XATTR |
| 27 | default m if EXT2_FS=m || EXT3_FS=m || EXT4_FS=m | 27 | default y if EXT4_FS=y && EXT4_FS_XATTR |
| 28 | default m if EXT2_FS_XATTR || EXT3_FS_XATTR || EXT4_FS_XATTR | ||
| 28 | 29 | ||
| 29 | config REISERFS_FS | 30 | config REISERFS_FS |
| 30 | tristate "Reiserfs support" | 31 | tristate "Reiserfs support" |
diff --git a/fs/afs/dir.c b/fs/afs/dir.c index dfda03d4397d..99cf390641f7 100644 --- a/fs/afs/dir.c +++ b/fs/afs/dir.c | |||
| @@ -45,6 +45,7 @@ const struct file_operations afs_dir_file_operations = { | |||
| 45 | .release = afs_release, | 45 | .release = afs_release, |
| 46 | .readdir = afs_readdir, | 46 | .readdir = afs_readdir, |
| 47 | .lock = afs_lock, | 47 | .lock = afs_lock, |
| 48 | .llseek = generic_file_llseek, | ||
| 48 | }; | 49 | }; |
| 49 | 50 | ||
| 50 | const struct inode_operations afs_dir_inode_operations = { | 51 | const struct inode_operations afs_dir_inode_operations = { |
| @@ -159,17 +159,17 @@ int notify_change(struct dentry * dentry, struct iattr * attr) | |||
| 159 | if (!(attr->ia_valid & ~(ATTR_KILL_SUID | ATTR_KILL_SGID))) | 159 | if (!(attr->ia_valid & ~(ATTR_KILL_SUID | ATTR_KILL_SGID))) |
| 160 | return 0; | 160 | return 0; |
| 161 | 161 | ||
| 162 | error = security_inode_setattr(dentry, attr); | ||
| 163 | if (error) | ||
| 164 | return error; | ||
| 165 | |||
| 162 | if (ia_valid & ATTR_SIZE) | 166 | if (ia_valid & ATTR_SIZE) |
| 163 | down_write(&dentry->d_inode->i_alloc_sem); | 167 | down_write(&dentry->d_inode->i_alloc_sem); |
| 164 | 168 | ||
| 165 | if (inode->i_op && inode->i_op->setattr) { | 169 | if (inode->i_op && inode->i_op->setattr) { |
| 166 | error = security_inode_setattr(dentry, attr); | 170 | error = inode->i_op->setattr(dentry, attr); |
| 167 | if (!error) | ||
| 168 | error = inode->i_op->setattr(dentry, attr); | ||
| 169 | } else { | 171 | } else { |
| 170 | error = inode_change_ok(inode, attr); | 172 | error = inode_change_ok(inode, attr); |
| 171 | if (!error) | ||
| 172 | error = security_inode_setattr(dentry, attr); | ||
| 173 | if (!error) { | 173 | if (!error) { |
| 174 | if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) || | 174 | if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) || |
| 175 | (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) | 175 | (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) |
diff --git a/fs/bfs/dir.c b/fs/bfs/dir.c index ed8feb052df9..daae463068e4 100644 --- a/fs/bfs/dir.c +++ b/fs/bfs/dir.c | |||
| @@ -80,6 +80,7 @@ const struct file_operations bfs_dir_operations = { | |||
| 80 | .read = generic_read_dir, | 80 | .read = generic_read_dir, |
| 81 | .readdir = bfs_readdir, | 81 | .readdir = bfs_readdir, |
| 82 | .fsync = file_fsync, | 82 | .fsync = file_fsync, |
| 83 | .llseek = generic_file_llseek, | ||
| 83 | }; | 84 | }; |
| 84 | 85 | ||
| 85 | extern void dump_imap(const char *, struct super_block *); | 86 | extern void dump_imap(const char *, struct super_block *); |
diff --git a/fs/block_dev.c b/fs/block_dev.c index 218408eed1bb..d06fe3c3dd3f 100644 --- a/fs/block_dev.c +++ b/fs/block_dev.c | |||
| @@ -1268,33 +1268,33 @@ EXPORT_SYMBOL(ioctl_by_bdev); | |||
| 1268 | * namespace if possible and return it. Return ERR_PTR(error) | 1268 | * namespace if possible and return it. Return ERR_PTR(error) |
| 1269 | * otherwise. | 1269 | * otherwise. |
| 1270 | */ | 1270 | */ |
| 1271 | struct block_device *lookup_bdev(const char *path) | 1271 | struct block_device *lookup_bdev(const char *pathname) |
| 1272 | { | 1272 | { |
| 1273 | struct block_device *bdev; | 1273 | struct block_device *bdev; |
| 1274 | struct inode *inode; | 1274 | struct inode *inode; |
| 1275 | struct nameidata nd; | 1275 | struct path path; |
| 1276 | int error; | 1276 | int error; |
| 1277 | 1277 | ||
| 1278 | if (!path || !*path) | 1278 | if (!pathname || !*pathname) |
| 1279 | return ERR_PTR(-EINVAL); | 1279 | return ERR_PTR(-EINVAL); |
| 1280 | 1280 | ||
| 1281 | error = path_lookup(path, LOOKUP_FOLLOW, &nd); | 1281 | error = kern_path(pathname, LOOKUP_FOLLOW, &path); |
| 1282 | if (error) | 1282 | if (error) |
| 1283 | return ERR_PTR(error); | 1283 | return ERR_PTR(error); |
| 1284 | 1284 | ||
| 1285 | inode = nd.path.dentry->d_inode; | 1285 | inode = path.dentry->d_inode; |
| 1286 | error = -ENOTBLK; | 1286 | error = -ENOTBLK; |
| 1287 | if (!S_ISBLK(inode->i_mode)) | 1287 | if (!S_ISBLK(inode->i_mode)) |
| 1288 | goto fail; | 1288 | goto fail; |
| 1289 | error = -EACCES; | 1289 | error = -EACCES; |
| 1290 | if (nd.path.mnt->mnt_flags & MNT_NODEV) | 1290 | if (path.mnt->mnt_flags & MNT_NODEV) |
| 1291 | goto fail; | 1291 | goto fail; |
| 1292 | error = -ENOMEM; | 1292 | error = -ENOMEM; |
| 1293 | bdev = bd_acquire(inode); | 1293 | bdev = bd_acquire(inode); |
| 1294 | if (!bdev) | 1294 | if (!bdev) |
| 1295 | goto fail; | 1295 | goto fail; |
| 1296 | out: | 1296 | out: |
| 1297 | path_put(&nd.path); | 1297 | path_put(&path); |
| 1298 | return bdev; | 1298 | return bdev; |
| 1299 | fail: | 1299 | fail: |
| 1300 | bdev = ERR_PTR(error); | 1300 | bdev = ERR_PTR(error); |
diff --git a/fs/char_dev.c b/fs/char_dev.c index 262fa10e213d..700697a72618 100644 --- a/fs/char_dev.c +++ b/fs/char_dev.c | |||
| @@ -386,15 +386,22 @@ static int chrdev_open(struct inode *inode, struct file *filp) | |||
| 386 | cdev_put(new); | 386 | cdev_put(new); |
| 387 | if (ret) | 387 | if (ret) |
| 388 | return ret; | 388 | return ret; |
| 389 | |||
| 390 | ret = -ENXIO; | ||
| 389 | filp->f_op = fops_get(p->ops); | 391 | filp->f_op = fops_get(p->ops); |
| 390 | if (!filp->f_op) { | 392 | if (!filp->f_op) |
| 391 | cdev_put(p); | 393 | goto out_cdev_put; |
| 392 | return -ENXIO; | 394 | |
| 393 | } | 395 | if (filp->f_op->open) { |
| 394 | if (filp->f_op->open) | ||
| 395 | ret = filp->f_op->open(inode,filp); | 396 | ret = filp->f_op->open(inode,filp); |
| 396 | if (ret) | 397 | if (ret) |
| 397 | cdev_put(p); | 398 | goto out_cdev_put; |
| 399 | } | ||
| 400 | |||
| 401 | return 0; | ||
| 402 | |||
| 403 | out_cdev_put: | ||
| 404 | cdev_put(p); | ||
| 398 | return ret; | 405 | return ret; |
| 399 | } | 406 | } |
| 400 | 407 | ||
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 25ecbd5b0404..84cc011a16e4 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c | |||
| @@ -275,9 +275,12 @@ static int cifs_permission(struct inode *inode, int mask) | |||
| 275 | 275 | ||
| 276 | cifs_sb = CIFS_SB(inode->i_sb); | 276 | cifs_sb = CIFS_SB(inode->i_sb); |
| 277 | 277 | ||
| 278 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) | 278 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) { |
| 279 | return 0; | 279 | if ((mask & MAY_EXEC) && !execute_ok(inode)) |
| 280 | else /* file mode might have been restricted at mount time | 280 | return -EACCES; |
| 281 | else | ||
| 282 | return 0; | ||
| 283 | } else /* file mode might have been restricted at mount time | ||
| 281 | on the client (above and beyond ACL on servers) for | 284 | on the client (above and beyond ACL on servers) for |
| 282 | servers which do not support setting and viewing mode bits, | 285 | servers which do not support setting and viewing mode bits, |
| 283 | so allowing client to check permissions is useful */ | 286 | so allowing client to check permissions is useful */ |
| @@ -765,6 +768,7 @@ const struct file_operations cifs_dir_ops = { | |||
| 765 | .dir_notify = cifs_dir_notify, | 768 | .dir_notify = cifs_dir_notify, |
| 766 | #endif /* CONFIG_CIFS_EXPERIMENTAL */ | 769 | #endif /* CONFIG_CIFS_EXPERIMENTAL */ |
| 767 | .unlocked_ioctl = cifs_ioctl, | 770 | .unlocked_ioctl = cifs_ioctl, |
| 771 | .llseek = generic_file_llseek, | ||
| 768 | }; | 772 | }; |
| 769 | 773 | ||
| 770 | static void | 774 | static void |
diff --git a/fs/coda/dir.c b/fs/coda/dir.c index c5916228243c..75b1fa90b2cb 100644 --- a/fs/coda/dir.c +++ b/fs/coda/dir.c | |||
| @@ -146,6 +146,9 @@ int coda_permission(struct inode *inode, int mask) | |||
| 146 | if (!mask) | 146 | if (!mask) |
| 147 | return 0; | 147 | return 0; |
| 148 | 148 | ||
| 149 | if ((mask & MAY_EXEC) && !execute_ok(inode)) | ||
| 150 | return -EACCES; | ||
| 151 | |||
| 149 | lock_kernel(); | 152 | lock_kernel(); |
| 150 | 153 | ||
| 151 | if (coda_cache_check(inode, mask)) | 154 | if (coda_cache_check(inode, mask)) |
diff --git a/fs/coda/pioctl.c b/fs/coda/pioctl.c index c51365422aa8..773f2ce9aa06 100644 --- a/fs/coda/pioctl.c +++ b/fs/coda/pioctl.c | |||
| @@ -43,7 +43,7 @@ const struct file_operations coda_ioctl_operations = { | |||
| 43 | /* the coda pioctl inode ops */ | 43 | /* the coda pioctl inode ops */ |
| 44 | static int coda_ioctl_permission(struct inode *inode, int mask) | 44 | static int coda_ioctl_permission(struct inode *inode, int mask) |
| 45 | { | 45 | { |
| 46 | return 0; | 46 | return (mask & MAY_EXEC) ? -EACCES : 0; |
| 47 | } | 47 | } |
| 48 | 48 | ||
| 49 | static int coda_pioctl(struct inode * inode, struct file * filp, | 49 | static int coda_pioctl(struct inode * inode, struct file * filp, |
diff --git a/fs/compat.c b/fs/compat.c index 5f9ec449c799..cb36245f9fe0 100644 --- a/fs/compat.c +++ b/fs/compat.c | |||
| @@ -869,7 +869,7 @@ asmlinkage long compat_sys_old_readdir(unsigned int fd, | |||
| 869 | buf.dirent = dirent; | 869 | buf.dirent = dirent; |
| 870 | 870 | ||
| 871 | error = vfs_readdir(file, compat_fillonedir, &buf); | 871 | error = vfs_readdir(file, compat_fillonedir, &buf); |
| 872 | if (error >= 0) | 872 | if (buf.result) |
| 873 | error = buf.result; | 873 | error = buf.result; |
| 874 | 874 | ||
| 875 | fput(file); | 875 | fput(file); |
| @@ -956,9 +956,8 @@ asmlinkage long compat_sys_getdents(unsigned int fd, | |||
| 956 | buf.error = 0; | 956 | buf.error = 0; |
| 957 | 957 | ||
| 958 | error = vfs_readdir(file, compat_filldir, &buf); | 958 | error = vfs_readdir(file, compat_filldir, &buf); |
| 959 | if (error < 0) | 959 | if (error >= 0) |
| 960 | goto out_putf; | 960 | error = buf.error; |
| 961 | error = buf.error; | ||
| 962 | lastdirent = buf.previous; | 961 | lastdirent = buf.previous; |
| 963 | if (lastdirent) { | 962 | if (lastdirent) { |
| 964 | if (put_user(file->f_pos, &lastdirent->d_off)) | 963 | if (put_user(file->f_pos, &lastdirent->d_off)) |
| @@ -966,8 +965,6 @@ asmlinkage long compat_sys_getdents(unsigned int fd, | |||
| 966 | else | 965 | else |
| 967 | error = count - buf.count; | 966 | error = count - buf.count; |
| 968 | } | 967 | } |
| 969 | |||
| 970 | out_putf: | ||
| 971 | fput(file); | 968 | fput(file); |
| 972 | out: | 969 | out: |
| 973 | return error; | 970 | return error; |
| @@ -1047,19 +1044,16 @@ asmlinkage long compat_sys_getdents64(unsigned int fd, | |||
| 1047 | buf.error = 0; | 1044 | buf.error = 0; |
| 1048 | 1045 | ||
| 1049 | error = vfs_readdir(file, compat_filldir64, &buf); | 1046 | error = vfs_readdir(file, compat_filldir64, &buf); |
| 1050 | if (error < 0) | 1047 | if (error >= 0) |
| 1051 | goto out_putf; | 1048 | error = buf.error; |
| 1052 | error = buf.error; | ||
| 1053 | lastdirent = buf.previous; | 1049 | lastdirent = buf.previous; |
| 1054 | if (lastdirent) { | 1050 | if (lastdirent) { |
| 1055 | typeof(lastdirent->d_off) d_off = file->f_pos; | 1051 | typeof(lastdirent->d_off) d_off = file->f_pos; |
| 1056 | error = -EFAULT; | ||
| 1057 | if (__put_user_unaligned(d_off, &lastdirent->d_off)) | 1052 | if (__put_user_unaligned(d_off, &lastdirent->d_off)) |
| 1058 | goto out_putf; | 1053 | error = -EFAULT; |
| 1059 | error = count - buf.count; | 1054 | else |
| 1055 | error = count - buf.count; | ||
| 1060 | } | 1056 | } |
| 1061 | |||
| 1062 | out_putf: | ||
| 1063 | fput(file); | 1057 | fput(file); |
| 1064 | out: | 1058 | out: |
| 1065 | return error; | 1059 | return error; |
diff --git a/fs/configfs/symlink.c b/fs/configfs/symlink.c index bf74973b0492..932a92b31483 100644 --- a/fs/configfs/symlink.c +++ b/fs/configfs/symlink.c | |||
| @@ -108,18 +108,18 @@ out: | |||
| 108 | } | 108 | } |
| 109 | 109 | ||
| 110 | 110 | ||
| 111 | static int get_target(const char *symname, struct nameidata *nd, | 111 | static int get_target(const char *symname, struct path *path, |
| 112 | struct config_item **target) | 112 | struct config_item **target) |
| 113 | { | 113 | { |
| 114 | int ret; | 114 | int ret; |
| 115 | 115 | ||
| 116 | ret = path_lookup(symname, LOOKUP_FOLLOW|LOOKUP_DIRECTORY, nd); | 116 | ret = kern_path(symname, LOOKUP_FOLLOW|LOOKUP_DIRECTORY, path); |
| 117 | if (!ret) { | 117 | if (!ret) { |
| 118 | if (nd->path.dentry->d_sb == configfs_sb) { | 118 | if (path->dentry->d_sb == configfs_sb) { |
| 119 | *target = configfs_get_config_item(nd->path.dentry); | 119 | *target = configfs_get_config_item(path->dentry); |
| 120 | if (!*target) { | 120 | if (!*target) { |
| 121 | ret = -ENOENT; | 121 | ret = -ENOENT; |
| 122 | path_put(&nd->path); | 122 | path_put(path); |
| 123 | } | 123 | } |
| 124 | } else | 124 | } else |
| 125 | ret = -EPERM; | 125 | ret = -EPERM; |
| @@ -132,7 +132,7 @@ static int get_target(const char *symname, struct nameidata *nd, | |||
| 132 | int configfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname) | 132 | int configfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname) |
| 133 | { | 133 | { |
| 134 | int ret; | 134 | int ret; |
| 135 | struct nameidata nd; | 135 | struct path path; |
| 136 | struct configfs_dirent *sd; | 136 | struct configfs_dirent *sd; |
| 137 | struct config_item *parent_item; | 137 | struct config_item *parent_item; |
| 138 | struct config_item *target_item; | 138 | struct config_item *target_item; |
| @@ -159,7 +159,7 @@ int configfs_symlink(struct inode *dir, struct dentry *dentry, const char *symna | |||
| 159 | !type->ct_item_ops->allow_link) | 159 | !type->ct_item_ops->allow_link) |
| 160 | goto out_put; | 160 | goto out_put; |
| 161 | 161 | ||
| 162 | ret = get_target(symname, &nd, &target_item); | 162 | ret = get_target(symname, &path, &target_item); |
| 163 | if (ret) | 163 | if (ret) |
| 164 | goto out_put; | 164 | goto out_put; |
| 165 | 165 | ||
| @@ -174,7 +174,7 @@ int configfs_symlink(struct inode *dir, struct dentry *dentry, const char *symna | |||
| 174 | } | 174 | } |
| 175 | 175 | ||
| 176 | config_item_put(target_item); | 176 | config_item_put(target_item); |
| 177 | path_put(&nd.path); | 177 | path_put(&path); |
| 178 | 178 | ||
| 179 | out_put: | 179 | out_put: |
| 180 | config_item_put(parent_item); | 180 | config_item_put(parent_item); |
diff --git a/fs/dcache.c b/fs/dcache.c index e7a1a99b7464..a1d86c7f3e66 100644 --- a/fs/dcache.c +++ b/fs/dcache.c | |||
| @@ -69,6 +69,7 @@ struct dentry_stat_t dentry_stat = { | |||
| 69 | 69 | ||
| 70 | static void __d_free(struct dentry *dentry) | 70 | static void __d_free(struct dentry *dentry) |
| 71 | { | 71 | { |
| 72 | WARN_ON(!list_empty(&dentry->d_alias)); | ||
| 72 | if (dname_external(dentry)) | 73 | if (dname_external(dentry)) |
| 73 | kfree(dentry->d_name.name); | 74 | kfree(dentry->d_name.name); |
| 74 | kmem_cache_free(dentry_cache, dentry); | 75 | kmem_cache_free(dentry_cache, dentry); |
| @@ -174,9 +175,12 @@ static struct dentry *d_kill(struct dentry *dentry) | |||
| 174 | dentry_stat.nr_dentry--; /* For d_free, below */ | 175 | dentry_stat.nr_dentry--; /* For d_free, below */ |
| 175 | /*drops the locks, at that point nobody can reach this dentry */ | 176 | /*drops the locks, at that point nobody can reach this dentry */ |
| 176 | dentry_iput(dentry); | 177 | dentry_iput(dentry); |
| 177 | parent = dentry->d_parent; | 178 | if (IS_ROOT(dentry)) |
| 179 | parent = NULL; | ||
| 180 | else | ||
| 181 | parent = dentry->d_parent; | ||
| 178 | d_free(dentry); | 182 | d_free(dentry); |
| 179 | return dentry == parent ? NULL : parent; | 183 | return parent; |
| 180 | } | 184 | } |
| 181 | 185 | ||
| 182 | /* | 186 | /* |
| @@ -666,11 +670,12 @@ static void shrink_dcache_for_umount_subtree(struct dentry *dentry) | |||
| 666 | BUG(); | 670 | BUG(); |
| 667 | } | 671 | } |
| 668 | 672 | ||
| 669 | parent = dentry->d_parent; | 673 | if (IS_ROOT(dentry)) |
| 670 | if (parent == dentry) | ||
| 671 | parent = NULL; | 674 | parent = NULL; |
| 672 | else | 675 | else { |
| 676 | parent = dentry->d_parent; | ||
| 673 | atomic_dec(&parent->d_count); | 677 | atomic_dec(&parent->d_count); |
| 678 | } | ||
| 674 | 679 | ||
| 675 | list_del(&dentry->d_u.d_child); | 680 | list_del(&dentry->d_u.d_child); |
| 676 | detached++; | 681 | detached++; |
| @@ -977,6 +982,15 @@ struct dentry *d_alloc_name(struct dentry *parent, const char *name) | |||
| 977 | return d_alloc(parent, &q); | 982 | return d_alloc(parent, &q); |
| 978 | } | 983 | } |
| 979 | 984 | ||
| 985 | /* the caller must hold dcache_lock */ | ||
| 986 | static void __d_instantiate(struct dentry *dentry, struct inode *inode) | ||
| 987 | { | ||
| 988 | if (inode) | ||
| 989 | list_add(&dentry->d_alias, &inode->i_dentry); | ||
| 990 | dentry->d_inode = inode; | ||
| 991 | fsnotify_d_instantiate(dentry, inode); | ||
| 992 | } | ||
| 993 | |||
| 980 | /** | 994 | /** |
| 981 | * d_instantiate - fill in inode information for a dentry | 995 | * d_instantiate - fill in inode information for a dentry |
| 982 | * @entry: dentry to complete | 996 | * @entry: dentry to complete |
| @@ -996,10 +1010,7 @@ void d_instantiate(struct dentry *entry, struct inode * inode) | |||
| 996 | { | 1010 | { |
| 997 | BUG_ON(!list_empty(&entry->d_alias)); | 1011 | BUG_ON(!list_empty(&entry->d_alias)); |
| 998 | spin_lock(&dcache_lock); | 1012 | spin_lock(&dcache_lock); |
| 999 | if (inode) | 1013 | __d_instantiate(entry, inode); |
| 1000 | list_add(&entry->d_alias, &inode->i_dentry); | ||
| 1001 | entry->d_inode = inode; | ||
| 1002 | fsnotify_d_instantiate(entry, inode); | ||
| 1003 | spin_unlock(&dcache_lock); | 1014 | spin_unlock(&dcache_lock); |
| 1004 | security_d_instantiate(entry, inode); | 1015 | security_d_instantiate(entry, inode); |
| 1005 | } | 1016 | } |
| @@ -1029,7 +1040,7 @@ static struct dentry *__d_instantiate_unique(struct dentry *entry, | |||
| 1029 | unsigned int hash = entry->d_name.hash; | 1040 | unsigned int hash = entry->d_name.hash; |
| 1030 | 1041 | ||
| 1031 | if (!inode) { | 1042 | if (!inode) { |
| 1032 | entry->d_inode = NULL; | 1043 | __d_instantiate(entry, NULL); |
| 1033 | return NULL; | 1044 | return NULL; |
| 1034 | } | 1045 | } |
| 1035 | 1046 | ||
| @@ -1048,9 +1059,7 @@ static struct dentry *__d_instantiate_unique(struct dentry *entry, | |||
| 1048 | return alias; | 1059 | return alias; |
| 1049 | } | 1060 | } |
| 1050 | 1061 | ||
| 1051 | list_add(&entry->d_alias, &inode->i_dentry); | 1062 | __d_instantiate(entry, inode); |
| 1052 | entry->d_inode = inode; | ||
| 1053 | fsnotify_d_instantiate(entry, inode); | ||
| 1054 | return NULL; | 1063 | return NULL; |
| 1055 | } | 1064 | } |
| 1056 | 1065 | ||
| @@ -1111,69 +1120,71 @@ static inline struct hlist_head *d_hash(struct dentry *parent, | |||
| 1111 | } | 1120 | } |
| 1112 | 1121 | ||
| 1113 | /** | 1122 | /** |
| 1114 | * d_alloc_anon - allocate an anonymous dentry | 1123 | * d_obtain_alias - find or allocate a dentry for a given inode |
| 1115 | * @inode: inode to allocate the dentry for | 1124 | * @inode: inode to allocate the dentry for |
| 1116 | * | 1125 | * |
| 1117 | * This is similar to d_alloc_root. It is used by filesystems when | 1126 | * Obtain a dentry for an inode resulting from NFS filehandle conversion or |
| 1118 | * creating a dentry for a given inode, often in the process of | 1127 | * similar open by handle operations. The returned dentry may be anonymous, |
| 1119 | * mapping a filehandle to a dentry. The returned dentry may be | 1128 | * or may have a full name (if the inode was already in the cache). |
| 1120 | * anonymous, or may have a full name (if the inode was already | ||
| 1121 | * in the cache). The file system may need to make further | ||
| 1122 | * efforts to connect this dentry into the dcache properly. | ||
| 1123 | * | 1129 | * |
| 1124 | * When called on a directory inode, we must ensure that | 1130 | * When called on a directory inode, we must ensure that the inode only ever |
| 1125 | * the inode only ever has one dentry. If a dentry is | 1131 | * has one dentry. If a dentry is found, that is returned instead of |
| 1126 | * found, that is returned instead of allocating a new one. | 1132 | * allocating a new one. |
| 1127 | * | 1133 | * |
| 1128 | * On successful return, the reference to the inode has been transferred | 1134 | * On successful return, the reference to the inode has been transferred |
| 1129 | * to the dentry. If %NULL is returned (indicating kmalloc failure), | 1135 | * to the dentry. In case of an error the reference on the inode is released. |
| 1130 | * the reference on the inode has not been released. | 1136 | * To make it easier to use in export operations a %NULL or IS_ERR inode may |
| 1137 | * be passed in and will be the error will be propagate to the return value, | ||
| 1138 | * with a %NULL @inode replaced by ERR_PTR(-ESTALE). | ||
| 1131 | */ | 1139 | */ |
| 1132 | 1140 | struct dentry *d_obtain_alias(struct inode *inode) | |
| 1133 | struct dentry * d_alloc_anon(struct inode *inode) | ||
| 1134 | { | 1141 | { |
| 1135 | static const struct qstr anonstring = { .name = "" }; | 1142 | static const struct qstr anonstring = { .name = "" }; |
| 1136 | struct dentry *tmp; | 1143 | struct dentry *tmp; |
| 1137 | struct dentry *res; | 1144 | struct dentry *res; |
| 1138 | 1145 | ||
| 1139 | if ((res = d_find_alias(inode))) { | 1146 | if (!inode) |
| 1140 | iput(inode); | 1147 | return ERR_PTR(-ESTALE); |
| 1141 | return res; | 1148 | if (IS_ERR(inode)) |
| 1142 | } | 1149 | return ERR_CAST(inode); |
| 1143 | 1150 | ||
| 1144 | tmp = d_alloc(NULL, &anonstring); | 1151 | res = d_find_alias(inode); |
| 1145 | if (!tmp) | 1152 | if (res) |
| 1146 | return NULL; | 1153 | goto out_iput; |
| 1147 | 1154 | ||
| 1155 | tmp = d_alloc(NULL, &anonstring); | ||
| 1156 | if (!tmp) { | ||
| 1157 | res = ERR_PTR(-ENOMEM); | ||
| 1158 | goto out_iput; | ||
| 1159 | } | ||
| 1148 | tmp->d_parent = tmp; /* make sure dput doesn't croak */ | 1160 | tmp->d_parent = tmp; /* make sure dput doesn't croak */ |
| 1149 | 1161 | ||
| 1150 | spin_lock(&dcache_lock); | 1162 | spin_lock(&dcache_lock); |
| 1151 | res = __d_find_alias(inode, 0); | 1163 | res = __d_find_alias(inode, 0); |
| 1152 | if (!res) { | 1164 | if (res) { |
| 1153 | /* attach a disconnected dentry */ | 1165 | spin_unlock(&dcache_lock); |
| 1154 | res = tmp; | 1166 | dput(tmp); |
| 1155 | tmp = NULL; | 1167 | goto out_iput; |
| 1156 | spin_lock(&res->d_lock); | ||
| 1157 | res->d_sb = inode->i_sb; | ||
| 1158 | res->d_parent = res; | ||
| 1159 | res->d_inode = inode; | ||
| 1160 | res->d_flags |= DCACHE_DISCONNECTED; | ||
| 1161 | res->d_flags &= ~DCACHE_UNHASHED; | ||
| 1162 | list_add(&res->d_alias, &inode->i_dentry); | ||
| 1163 | hlist_add_head(&res->d_hash, &inode->i_sb->s_anon); | ||
| 1164 | spin_unlock(&res->d_lock); | ||
| 1165 | |||
| 1166 | inode = NULL; /* don't drop reference */ | ||
| 1167 | } | 1168 | } |
| 1169 | |||
| 1170 | /* attach a disconnected dentry */ | ||
| 1171 | spin_lock(&tmp->d_lock); | ||
| 1172 | tmp->d_sb = inode->i_sb; | ||
| 1173 | tmp->d_inode = inode; | ||
| 1174 | tmp->d_flags |= DCACHE_DISCONNECTED; | ||
| 1175 | tmp->d_flags &= ~DCACHE_UNHASHED; | ||
| 1176 | list_add(&tmp->d_alias, &inode->i_dentry); | ||
| 1177 | hlist_add_head(&tmp->d_hash, &inode->i_sb->s_anon); | ||
| 1178 | spin_unlock(&tmp->d_lock); | ||
| 1179 | |||
| 1168 | spin_unlock(&dcache_lock); | 1180 | spin_unlock(&dcache_lock); |
| 1181 | return tmp; | ||
| 1169 | 1182 | ||
| 1170 | if (inode) | 1183 | out_iput: |
| 1171 | iput(inode); | 1184 | iput(inode); |
| 1172 | if (tmp) | ||
| 1173 | dput(tmp); | ||
| 1174 | return res; | 1185 | return res; |
| 1175 | } | 1186 | } |
| 1176 | 1187 | EXPORT_SYMBOL_GPL(d_obtain_alias); | |
| 1177 | 1188 | ||
| 1178 | /** | 1189 | /** |
| 1179 | * d_splice_alias - splice a disconnected dentry into the tree if one exists | 1190 | * d_splice_alias - splice a disconnected dentry into the tree if one exists |
| @@ -1200,17 +1211,14 @@ struct dentry *d_splice_alias(struct inode *inode, struct dentry *dentry) | |||
| 1200 | new = __d_find_alias(inode, 1); | 1211 | new = __d_find_alias(inode, 1); |
| 1201 | if (new) { | 1212 | if (new) { |
| 1202 | BUG_ON(!(new->d_flags & DCACHE_DISCONNECTED)); | 1213 | BUG_ON(!(new->d_flags & DCACHE_DISCONNECTED)); |
| 1203 | fsnotify_d_instantiate(new, inode); | ||
| 1204 | spin_unlock(&dcache_lock); | 1214 | spin_unlock(&dcache_lock); |
| 1205 | security_d_instantiate(new, inode); | 1215 | security_d_instantiate(new, inode); |
| 1206 | d_rehash(dentry); | 1216 | d_rehash(dentry); |
| 1207 | d_move(new, dentry); | 1217 | d_move(new, dentry); |
| 1208 | iput(inode); | 1218 | iput(inode); |
| 1209 | } else { | 1219 | } else { |
| 1210 | /* d_instantiate takes dcache_lock, so we do it by hand */ | 1220 | /* already taking dcache_lock, so d_add() by hand */ |
| 1211 | list_add(&dentry->d_alias, &inode->i_dentry); | 1221 | __d_instantiate(dentry, inode); |
| 1212 | dentry->d_inode = inode; | ||
| 1213 | fsnotify_d_instantiate(dentry, inode); | ||
| 1214 | spin_unlock(&dcache_lock); | 1222 | spin_unlock(&dcache_lock); |
| 1215 | security_d_instantiate(dentry, inode); | 1223 | security_d_instantiate(dentry, inode); |
| 1216 | d_rehash(dentry); | 1224 | d_rehash(dentry); |
| @@ -1293,8 +1301,7 @@ struct dentry *d_add_ci(struct dentry *dentry, struct inode *inode, | |||
| 1293 | * d_instantiate() by hand because it takes dcache_lock which | 1301 | * d_instantiate() by hand because it takes dcache_lock which |
| 1294 | * we already hold. | 1302 | * we already hold. |
| 1295 | */ | 1303 | */ |
| 1296 | list_add(&found->d_alias, &inode->i_dentry); | 1304 | __d_instantiate(found, inode); |
| 1297 | found->d_inode = inode; | ||
| 1298 | spin_unlock(&dcache_lock); | 1305 | spin_unlock(&dcache_lock); |
| 1299 | security_d_instantiate(found, inode); | 1306 | security_d_instantiate(found, inode); |
| 1300 | return found; | 1307 | return found; |
| @@ -1456,8 +1463,6 @@ out: | |||
| 1456 | * d_validate - verify dentry provided from insecure source | 1463 | * d_validate - verify dentry provided from insecure source |
| 1457 | * @dentry: The dentry alleged to be valid child of @dparent | 1464 | * @dentry: The dentry alleged to be valid child of @dparent |
| 1458 | * @dparent: The parent dentry (known to be valid) | 1465 | * @dparent: The parent dentry (known to be valid) |
| 1459 | * @hash: Hash of the dentry | ||
| 1460 | * @len: Length of the name | ||
| 1461 | * | 1466 | * |
| 1462 | * An insecure source has sent us a dentry, here we verify it and dget() it. | 1467 | * An insecure source has sent us a dentry, here we verify it and dget() it. |
| 1463 | * This is used by ncpfs in its readdir implementation. | 1468 | * This is used by ncpfs in its readdir implementation. |
| @@ -1714,18 +1719,23 @@ void d_move(struct dentry * dentry, struct dentry * target) | |||
| 1714 | spin_unlock(&dcache_lock); | 1719 | spin_unlock(&dcache_lock); |
| 1715 | } | 1720 | } |
| 1716 | 1721 | ||
| 1717 | /* | 1722 | /** |
| 1718 | * Helper that returns 1 if p1 is a parent of p2, else 0 | 1723 | * d_ancestor - search for an ancestor |
| 1724 | * @p1: ancestor dentry | ||
| 1725 | * @p2: child dentry | ||
| 1726 | * | ||
| 1727 | * Returns the ancestor dentry of p2 which is a child of p1, if p1 is | ||
| 1728 | * an ancestor of p2, else NULL. | ||
| 1719 | */ | 1729 | */ |
| 1720 | static int d_isparent(struct dentry *p1, struct dentry *p2) | 1730 | struct dentry *d_ancestor(struct dentry *p1, struct dentry *p2) |
| 1721 | { | 1731 | { |
| 1722 | struct dentry *p; | 1732 | struct dentry *p; |
| 1723 | 1733 | ||
| 1724 | for (p = p2; p->d_parent != p; p = p->d_parent) { | 1734 | for (p = p2; !IS_ROOT(p); p = p->d_parent) { |
| 1725 | if (p->d_parent == p1) | 1735 | if (p->d_parent == p1) |
| 1726 | return 1; | 1736 | return p; |
| 1727 | } | 1737 | } |
| 1728 | return 0; | 1738 | return NULL; |
| 1729 | } | 1739 | } |
| 1730 | 1740 | ||
| 1731 | /* | 1741 | /* |
| @@ -1749,7 +1759,7 @@ static struct dentry *__d_unalias(struct dentry *dentry, struct dentry *alias) | |||
| 1749 | 1759 | ||
| 1750 | /* Check for loops */ | 1760 | /* Check for loops */ |
| 1751 | ret = ERR_PTR(-ELOOP); | 1761 | ret = ERR_PTR(-ELOOP); |
| 1752 | if (d_isparent(alias, dentry)) | 1762 | if (d_ancestor(alias, dentry)) |
| 1753 | goto out_err; | 1763 | goto out_err; |
| 1754 | 1764 | ||
| 1755 | /* See lock_rename() */ | 1765 | /* See lock_rename() */ |
| @@ -1822,7 +1832,7 @@ struct dentry *d_materialise_unique(struct dentry *dentry, struct inode *inode) | |||
| 1822 | 1832 | ||
| 1823 | if (!inode) { | 1833 | if (!inode) { |
| 1824 | actual = dentry; | 1834 | actual = dentry; |
| 1825 | dentry->d_inode = NULL; | 1835 | __d_instantiate(dentry, NULL); |
| 1826 | goto found_lock; | 1836 | goto found_lock; |
| 1827 | } | 1837 | } |
| 1828 | 1838 | ||
| @@ -2149,32 +2159,27 @@ out: | |||
| 2149 | * Caller must ensure that "new_dentry" is pinned before calling is_subdir() | 2159 | * Caller must ensure that "new_dentry" is pinned before calling is_subdir() |
| 2150 | */ | 2160 | */ |
| 2151 | 2161 | ||
| 2152 | int is_subdir(struct dentry * new_dentry, struct dentry * old_dentry) | 2162 | int is_subdir(struct dentry *new_dentry, struct dentry *old_dentry) |
| 2153 | { | 2163 | { |
| 2154 | int result; | 2164 | int result; |
| 2155 | struct dentry * saved = new_dentry; | ||
| 2156 | unsigned long seq; | 2165 | unsigned long seq; |
| 2157 | 2166 | ||
| 2158 | /* need rcu_readlock to protect against the d_parent trashing due to | 2167 | /* FIXME: This is old behavior, needed? Please check callers. */ |
| 2159 | * d_move | 2168 | if (new_dentry == old_dentry) |
| 2169 | return 1; | ||
| 2170 | |||
| 2171 | /* | ||
| 2172 | * Need rcu_readlock to protect against the d_parent trashing | ||
| 2173 | * due to d_move | ||
| 2160 | */ | 2174 | */ |
| 2161 | rcu_read_lock(); | 2175 | rcu_read_lock(); |
| 2162 | do { | 2176 | do { |
| 2163 | /* for restarting inner loop in case of seq retry */ | 2177 | /* for restarting inner loop in case of seq retry */ |
| 2164 | new_dentry = saved; | ||
| 2165 | result = 0; | ||
| 2166 | seq = read_seqbegin(&rename_lock); | 2178 | seq = read_seqbegin(&rename_lock); |
| 2167 | for (;;) { | 2179 | if (d_ancestor(old_dentry, new_dentry)) |
| 2168 | if (new_dentry != old_dentry) { | ||
| 2169 | struct dentry * parent = new_dentry->d_parent; | ||
| 2170 | if (parent == new_dentry) | ||
| 2171 | break; | ||
| 2172 | new_dentry = parent; | ||
| 2173 | continue; | ||
| 2174 | } | ||
| 2175 | result = 1; | 2180 | result = 1; |
| 2176 | break; | 2181 | else |
| 2177 | } | 2182 | result = 0; |
| 2178 | } while (read_seqretry(&rename_lock, seq)); | 2183 | } while (read_seqretry(&rename_lock, seq)); |
| 2179 | rcu_read_unlock(); | 2184 | rcu_read_unlock(); |
| 2180 | 2185 | ||
| @@ -2344,7 +2349,6 @@ void __init vfs_caches_init(unsigned long mempages) | |||
| 2344 | } | 2349 | } |
| 2345 | 2350 | ||
| 2346 | EXPORT_SYMBOL(d_alloc); | 2351 | EXPORT_SYMBOL(d_alloc); |
| 2347 | EXPORT_SYMBOL(d_alloc_anon); | ||
| 2348 | EXPORT_SYMBOL(d_alloc_root); | 2352 | EXPORT_SYMBOL(d_alloc_root); |
| 2349 | EXPORT_SYMBOL(d_delete); | 2353 | EXPORT_SYMBOL(d_delete); |
| 2350 | EXPORT_SYMBOL(d_find_alias); | 2354 | EXPORT_SYMBOL(d_find_alias); |
diff --git a/fs/dquot.c b/fs/dquot.c index da30a27f2242..5e95261005b2 100644 --- a/fs/dquot.c +++ b/fs/dquot.c | |||
| @@ -1805,19 +1805,19 @@ int vfs_quota_on_path(struct super_block *sb, int type, int format_id, | |||
| 1805 | } | 1805 | } |
| 1806 | 1806 | ||
| 1807 | /* Actual function called from quotactl() */ | 1807 | /* Actual function called from quotactl() */ |
| 1808 | int vfs_quota_on(struct super_block *sb, int type, int format_id, char *path, | 1808 | int vfs_quota_on(struct super_block *sb, int type, int format_id, char *name, |
| 1809 | int remount) | 1809 | int remount) |
| 1810 | { | 1810 | { |
| 1811 | struct nameidata nd; | 1811 | struct path path; |
| 1812 | int error; | 1812 | int error; |
| 1813 | 1813 | ||
| 1814 | if (remount) | 1814 | if (remount) |
| 1815 | return vfs_quota_on_remount(sb, type); | 1815 | return vfs_quota_on_remount(sb, type); |
| 1816 | 1816 | ||
| 1817 | error = path_lookup(path, LOOKUP_FOLLOW, &nd); | 1817 | error = kern_path(name, LOOKUP_FOLLOW, &path); |
| 1818 | if (!error) { | 1818 | if (!error) { |
| 1819 | error = vfs_quota_on_path(sb, type, format_id, &nd.path); | 1819 | error = vfs_quota_on_path(sb, type, format_id, &path); |
| 1820 | path_put(&nd.path); | 1820 | path_put(&path); |
| 1821 | } | 1821 | } |
| 1822 | return error; | 1822 | return error; |
| 1823 | } | 1823 | } |
diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c index 046e027a4cb1..64d2ba980df4 100644 --- a/fs/ecryptfs/main.c +++ b/fs/ecryptfs/main.c | |||
| @@ -471,31 +471,26 @@ out: | |||
| 471 | */ | 471 | */ |
| 472 | static int ecryptfs_read_super(struct super_block *sb, const char *dev_name) | 472 | static int ecryptfs_read_super(struct super_block *sb, const char *dev_name) |
| 473 | { | 473 | { |
| 474 | struct path path; | ||
| 474 | int rc; | 475 | int rc; |
| 475 | struct nameidata nd; | ||
| 476 | struct dentry *lower_root; | ||
| 477 | struct vfsmount *lower_mnt; | ||
| 478 | 476 | ||
| 479 | memset(&nd, 0, sizeof(struct nameidata)); | 477 | rc = kern_path(dev_name, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &path); |
| 480 | rc = path_lookup(dev_name, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &nd); | ||
| 481 | if (rc) { | 478 | if (rc) { |
| 482 | ecryptfs_printk(KERN_WARNING, "path_lookup() failed\n"); | 479 | ecryptfs_printk(KERN_WARNING, "path_lookup() failed\n"); |
| 483 | goto out; | 480 | goto out; |
| 484 | } | 481 | } |
| 485 | lower_root = nd.path.dentry; | 482 | ecryptfs_set_superblock_lower(sb, path.dentry->d_sb); |
| 486 | lower_mnt = nd.path.mnt; | 483 | sb->s_maxbytes = path.dentry->d_sb->s_maxbytes; |
| 487 | ecryptfs_set_superblock_lower(sb, lower_root->d_sb); | 484 | sb->s_blocksize = path.dentry->d_sb->s_blocksize; |
| 488 | sb->s_maxbytes = lower_root->d_sb->s_maxbytes; | 485 | ecryptfs_set_dentry_lower(sb->s_root, path.dentry); |
| 489 | sb->s_blocksize = lower_root->d_sb->s_blocksize; | 486 | ecryptfs_set_dentry_lower_mnt(sb->s_root, path.mnt); |
| 490 | ecryptfs_set_dentry_lower(sb->s_root, lower_root); | 487 | rc = ecryptfs_interpose(path.dentry, sb->s_root, sb, 0); |
| 491 | ecryptfs_set_dentry_lower_mnt(sb->s_root, lower_mnt); | ||
| 492 | rc = ecryptfs_interpose(lower_root, sb->s_root, sb, 0); | ||
| 493 | if (rc) | 488 | if (rc) |
| 494 | goto out_free; | 489 | goto out_free; |
| 495 | rc = 0; | 490 | rc = 0; |
| 496 | goto out; | 491 | goto out; |
| 497 | out_free: | 492 | out_free: |
| 498 | path_put(&nd.path); | 493 | path_put(&path); |
| 499 | out: | 494 | out: |
| 500 | return rc; | 495 | return rc; |
| 501 | } | 496 | } |
diff --git a/fs/efs/namei.c b/fs/efs/namei.c index 291abb11e20e..c3fb5f9c4a44 100644 --- a/fs/efs/namei.c +++ b/fs/efs/namei.c | |||
| @@ -112,35 +112,14 @@ struct dentry *efs_fh_to_parent(struct super_block *sb, struct fid *fid, | |||
| 112 | 112 | ||
| 113 | struct dentry *efs_get_parent(struct dentry *child) | 113 | struct dentry *efs_get_parent(struct dentry *child) |
| 114 | { | 114 | { |
| 115 | struct dentry *parent; | 115 | struct dentry *parent = ERR_PTR(-ENOENT); |
| 116 | struct inode *inode; | ||
| 117 | efs_ino_t ino; | 116 | efs_ino_t ino; |
| 118 | long error; | ||
| 119 | 117 | ||
| 120 | lock_kernel(); | 118 | lock_kernel(); |
| 121 | |||
| 122 | error = -ENOENT; | ||
| 123 | ino = efs_find_entry(child->d_inode, "..", 2); | 119 | ino = efs_find_entry(child->d_inode, "..", 2); |
| 124 | if (!ino) | 120 | if (ino) |
| 125 | goto fail; | 121 | parent = d_obtain_alias(efs_iget(child->d_inode->i_sb, ino)); |
| 126 | |||
| 127 | inode = efs_iget(child->d_inode->i_sb, ino); | ||
| 128 | if (IS_ERR(inode)) { | ||
| 129 | error = PTR_ERR(inode); | ||
| 130 | goto fail; | ||
| 131 | } | ||
| 132 | |||
| 133 | error = -ENOMEM; | ||
| 134 | parent = d_alloc_anon(inode); | ||
| 135 | if (!parent) | ||
| 136 | goto fail_iput; | ||
| 137 | |||
| 138 | unlock_kernel(); | 122 | unlock_kernel(); |
| 139 | return parent; | ||
| 140 | 123 | ||
| 141 | fail_iput: | 124 | return parent; |
| 142 | iput(inode); | ||
| 143 | fail: | ||
| 144 | unlock_kernel(); | ||
| 145 | return ERR_PTR(error); | ||
| 146 | } | 125 | } |
diff --git a/fs/exportfs/expfs.c b/fs/exportfs/expfs.c index cc91227d3bb8..80246bad1b7f 100644 --- a/fs/exportfs/expfs.c +++ b/fs/exportfs/expfs.c | |||
| @@ -94,9 +94,8 @@ find_disconnected_root(struct dentry *dentry) | |||
| 94 | * It may already be, as the flag isn't always updated when connection happens. | 94 | * It may already be, as the flag isn't always updated when connection happens. |
| 95 | */ | 95 | */ |
| 96 | static int | 96 | static int |
| 97 | reconnect_path(struct vfsmount *mnt, struct dentry *target_dir) | 97 | reconnect_path(struct vfsmount *mnt, struct dentry *target_dir, char *nbuf) |
| 98 | { | 98 | { |
| 99 | char nbuf[NAME_MAX+1]; | ||
| 100 | int noprogress = 0; | 99 | int noprogress = 0; |
| 101 | int err = -ESTALE; | 100 | int err = -ESTALE; |
| 102 | 101 | ||
| @@ -281,13 +280,14 @@ static int get_name(struct vfsmount *mnt, struct dentry *dentry, | |||
| 281 | int old_seq = buffer.sequence; | 280 | int old_seq = buffer.sequence; |
| 282 | 281 | ||
| 283 | error = vfs_readdir(file, filldir_one, &buffer); | 282 | error = vfs_readdir(file, filldir_one, &buffer); |
| 283 | if (buffer.found) { | ||
| 284 | error = 0; | ||
| 285 | break; | ||
| 286 | } | ||
| 284 | 287 | ||
| 285 | if (error < 0) | 288 | if (error < 0) |
| 286 | break; | 289 | break; |
| 287 | 290 | ||
| 288 | error = 0; | ||
| 289 | if (buffer.found) | ||
| 290 | break; | ||
| 291 | error = -ENOENT; | 291 | error = -ENOENT; |
| 292 | if (old_seq == buffer.sequence) | 292 | if (old_seq == buffer.sequence) |
| 293 | break; | 293 | break; |
| @@ -360,14 +360,13 @@ struct dentry *exportfs_decode_fh(struct vfsmount *mnt, struct fid *fid, | |||
| 360 | { | 360 | { |
| 361 | const struct export_operations *nop = mnt->mnt_sb->s_export_op; | 361 | const struct export_operations *nop = mnt->mnt_sb->s_export_op; |
| 362 | struct dentry *result, *alias; | 362 | struct dentry *result, *alias; |
| 363 | char nbuf[NAME_MAX+1]; | ||
| 363 | int err; | 364 | int err; |
| 364 | 365 | ||
| 365 | /* | 366 | /* |
| 366 | * Try to get any dentry for the given file handle from the filesystem. | 367 | * Try to get any dentry for the given file handle from the filesystem. |
| 367 | */ | 368 | */ |
| 368 | result = nop->fh_to_dentry(mnt->mnt_sb, fid, fh_len, fileid_type); | 369 | result = nop->fh_to_dentry(mnt->mnt_sb, fid, fh_len, fileid_type); |
| 369 | if (!result) | ||
| 370 | result = ERR_PTR(-ESTALE); | ||
| 371 | if (IS_ERR(result)) | 370 | if (IS_ERR(result)) |
| 372 | return result; | 371 | return result; |
| 373 | 372 | ||
| @@ -381,7 +380,7 @@ struct dentry *exportfs_decode_fh(struct vfsmount *mnt, struct fid *fid, | |||
| 381 | * filesystem root. | 380 | * filesystem root. |
| 382 | */ | 381 | */ |
| 383 | if (result->d_flags & DCACHE_DISCONNECTED) { | 382 | if (result->d_flags & DCACHE_DISCONNECTED) { |
| 384 | err = reconnect_path(mnt, result); | 383 | err = reconnect_path(mnt, result, nbuf); |
| 385 | if (err) | 384 | if (err) |
| 386 | goto err_result; | 385 | goto err_result; |
| 387 | } | 386 | } |
| @@ -397,7 +396,6 @@ struct dentry *exportfs_decode_fh(struct vfsmount *mnt, struct fid *fid, | |||
| 397 | * It's not a directory. Life is a little more complicated. | 396 | * It's not a directory. Life is a little more complicated. |
| 398 | */ | 397 | */ |
| 399 | struct dentry *target_dir, *nresult; | 398 | struct dentry *target_dir, *nresult; |
| 400 | char nbuf[NAME_MAX+1]; | ||
| 401 | 399 | ||
| 402 | /* | 400 | /* |
| 403 | * See if either the dentry we just got from the filesystem | 401 | * See if either the dentry we just got from the filesystem |
| @@ -422,8 +420,6 @@ struct dentry *exportfs_decode_fh(struct vfsmount *mnt, struct fid *fid, | |||
| 422 | 420 | ||
| 423 | target_dir = nop->fh_to_parent(mnt->mnt_sb, fid, | 421 | target_dir = nop->fh_to_parent(mnt->mnt_sb, fid, |
| 424 | fh_len, fileid_type); | 422 | fh_len, fileid_type); |
| 425 | if (!target_dir) | ||
| 426 | goto err_result; | ||
| 427 | err = PTR_ERR(target_dir); | 423 | err = PTR_ERR(target_dir); |
| 428 | if (IS_ERR(target_dir)) | 424 | if (IS_ERR(target_dir)) |
| 429 | goto err_result; | 425 | goto err_result; |
| @@ -433,7 +429,7 @@ struct dentry *exportfs_decode_fh(struct vfsmount *mnt, struct fid *fid, | |||
| 433 | * connected to the filesystem root. The VFS really doesn't | 429 | * connected to the filesystem root. The VFS really doesn't |
| 434 | * like disconnected directories.. | 430 | * like disconnected directories.. |
| 435 | */ | 431 | */ |
| 436 | err = reconnect_path(mnt, target_dir); | 432 | err = reconnect_path(mnt, target_dir, nbuf); |
| 437 | if (err) { | 433 | if (err) { |
| 438 | dput(target_dir); | 434 | dput(target_dir); |
| 439 | goto err_result; | 435 | goto err_result; |
diff --git a/fs/ext2/dir.c b/fs/ext2/dir.c index 11a49ce84392..9a0fc400f91c 100644 --- a/fs/ext2/dir.c +++ b/fs/ext2/dir.c | |||
| @@ -354,11 +354,11 @@ ext2_readdir (struct file * filp, void * dirent, filldir_t filldir) | |||
| 354 | * (as a parameter - res_dir). Page is returned mapped and unlocked. | 354 | * (as a parameter - res_dir). Page is returned mapped and unlocked. |
| 355 | * Entry is guaranteed to be valid. | 355 | * Entry is guaranteed to be valid. |
| 356 | */ | 356 | */ |
| 357 | struct ext2_dir_entry_2 * ext2_find_entry (struct inode * dir, | 357 | struct ext2_dir_entry_2 *ext2_find_entry (struct inode * dir, |
| 358 | struct dentry *dentry, struct page ** res_page) | 358 | struct qstr *child, struct page ** res_page) |
| 359 | { | 359 | { |
| 360 | const char *name = dentry->d_name.name; | 360 | const char *name = child->name; |
| 361 | int namelen = dentry->d_name.len; | 361 | int namelen = child->len; |
| 362 | unsigned reclen = EXT2_DIR_REC_LEN(namelen); | 362 | unsigned reclen = EXT2_DIR_REC_LEN(namelen); |
| 363 | unsigned long start, n; | 363 | unsigned long start, n; |
| 364 | unsigned long npages = dir_pages(dir); | 364 | unsigned long npages = dir_pages(dir); |
| @@ -431,13 +431,13 @@ struct ext2_dir_entry_2 * ext2_dotdot (struct inode *dir, struct page **p) | |||
| 431 | return de; | 431 | return de; |
| 432 | } | 432 | } |
| 433 | 433 | ||
| 434 | ino_t ext2_inode_by_name(struct inode * dir, struct dentry *dentry) | 434 | ino_t ext2_inode_by_name(struct inode *dir, struct qstr *child) |
| 435 | { | 435 | { |
| 436 | ino_t res = 0; | 436 | ino_t res = 0; |
| 437 | struct ext2_dir_entry_2 * de; | 437 | struct ext2_dir_entry_2 *de; |
| 438 | struct page *page; | 438 | struct page *page; |
| 439 | 439 | ||
| 440 | de = ext2_find_entry (dir, dentry, &page); | 440 | de = ext2_find_entry (dir, child, &page); |
| 441 | if (de) { | 441 | if (de) { |
| 442 | res = le32_to_cpu(de->inode); | 442 | res = le32_to_cpu(de->inode); |
| 443 | ext2_put_page(page); | 443 | ext2_put_page(page); |
diff --git a/fs/ext2/ext2.h b/fs/ext2/ext2.h index bae998c1e44e..3203042b36ef 100644 --- a/fs/ext2/ext2.h +++ b/fs/ext2/ext2.h | |||
| @@ -105,9 +105,9 @@ extern void ext2_rsv_window_add(struct super_block *sb, struct ext2_reserve_wind | |||
| 105 | 105 | ||
| 106 | /* dir.c */ | 106 | /* dir.c */ |
| 107 | extern int ext2_add_link (struct dentry *, struct inode *); | 107 | extern int ext2_add_link (struct dentry *, struct inode *); |
| 108 | extern ino_t ext2_inode_by_name(struct inode *, struct dentry *); | 108 | extern ino_t ext2_inode_by_name(struct inode *, struct qstr *); |
| 109 | extern int ext2_make_empty(struct inode *, struct inode *); | 109 | extern int ext2_make_empty(struct inode *, struct inode *); |
| 110 | extern struct ext2_dir_entry_2 * ext2_find_entry (struct inode *,struct dentry *, struct page **); | 110 | extern struct ext2_dir_entry_2 * ext2_find_entry (struct inode *,struct qstr *, struct page **); |
| 111 | extern int ext2_delete_entry (struct ext2_dir_entry_2 *, struct page *); | 111 | extern int ext2_delete_entry (struct ext2_dir_entry_2 *, struct page *); |
| 112 | extern int ext2_empty_dir (struct inode *); | 112 | extern int ext2_empty_dir (struct inode *); |
| 113 | extern struct ext2_dir_entry_2 * ext2_dotdot (struct inode *, struct page **); | 113 | extern struct ext2_dir_entry_2 * ext2_dotdot (struct inode *, struct page **); |
diff --git a/fs/ext2/namei.c b/fs/ext2/namei.c index 80c97fd8c571..2a747252ec12 100644 --- a/fs/ext2/namei.c +++ b/fs/ext2/namei.c | |||
| @@ -60,7 +60,7 @@ static struct dentry *ext2_lookup(struct inode * dir, struct dentry *dentry, str | |||
| 60 | if (dentry->d_name.len > EXT2_NAME_LEN) | 60 | if (dentry->d_name.len > EXT2_NAME_LEN) |
| 61 | return ERR_PTR(-ENAMETOOLONG); | 61 | return ERR_PTR(-ENAMETOOLONG); |
| 62 | 62 | ||
| 63 | ino = ext2_inode_by_name(dir, dentry); | 63 | ino = ext2_inode_by_name(dir, &dentry->d_name); |
| 64 | inode = NULL; | 64 | inode = NULL; |
| 65 | if (ino) { | 65 | if (ino) { |
| 66 | inode = ext2_iget(dir->i_sb, ino); | 66 | inode = ext2_iget(dir->i_sb, ino); |
| @@ -72,27 +72,11 @@ static struct dentry *ext2_lookup(struct inode * dir, struct dentry *dentry, str | |||
| 72 | 72 | ||
| 73 | struct dentry *ext2_get_parent(struct dentry *child) | 73 | struct dentry *ext2_get_parent(struct dentry *child) |
| 74 | { | 74 | { |
| 75 | unsigned long ino; | 75 | struct qstr dotdot = {.name = "..", .len = 2}; |
| 76 | struct dentry *parent; | 76 | unsigned long ino = ext2_inode_by_name(child->d_inode, &dotdot); |
| 77 | struct inode *inode; | ||
| 78 | struct dentry dotdot; | ||
| 79 | |||
| 80 | dotdot.d_name.name = ".."; | ||
| 81 | dotdot.d_name.len = 2; | ||
| 82 | |||
| 83 | ino = ext2_inode_by_name(child->d_inode, &dotdot); | ||
| 84 | if (!ino) | 77 | if (!ino) |
| 85 | return ERR_PTR(-ENOENT); | 78 | return ERR_PTR(-ENOENT); |
| 86 | inode = ext2_iget(child->d_inode->i_sb, ino); | 79 | return d_obtain_alias(ext2_iget(child->d_inode->i_sb, ino)); |
| 87 | |||
| 88 | if (IS_ERR(inode)) | ||
| 89 | return ERR_CAST(inode); | ||
| 90 | parent = d_alloc_anon(inode); | ||
| 91 | if (!parent) { | ||
| 92 | iput(inode); | ||
| 93 | parent = ERR_PTR(-ENOMEM); | ||
| 94 | } | ||
| 95 | return parent; | ||
| 96 | } | 80 | } |
| 97 | 81 | ||
| 98 | /* | 82 | /* |
| @@ -257,7 +241,7 @@ static int ext2_unlink(struct inode * dir, struct dentry *dentry) | |||
| 257 | struct page * page; | 241 | struct page * page; |
| 258 | int err = -ENOENT; | 242 | int err = -ENOENT; |
| 259 | 243 | ||
| 260 | de = ext2_find_entry (dir, dentry, &page); | 244 | de = ext2_find_entry (dir, &dentry->d_name, &page); |
| 261 | if (!de) | 245 | if (!de) |
| 262 | goto out; | 246 | goto out; |
| 263 | 247 | ||
| @@ -299,7 +283,7 @@ static int ext2_rename (struct inode * old_dir, struct dentry * old_dentry, | |||
| 299 | struct ext2_dir_entry_2 * old_de; | 283 | struct ext2_dir_entry_2 * old_de; |
| 300 | int err = -ENOENT; | 284 | int err = -ENOENT; |
| 301 | 285 | ||
| 302 | old_de = ext2_find_entry (old_dir, old_dentry, &old_page); | 286 | old_de = ext2_find_entry (old_dir, &old_dentry->d_name, &old_page); |
| 303 | if (!old_de) | 287 | if (!old_de) |
| 304 | goto out; | 288 | goto out; |
| 305 | 289 | ||
| @@ -319,7 +303,7 @@ static int ext2_rename (struct inode * old_dir, struct dentry * old_dentry, | |||
| 319 | goto out_dir; | 303 | goto out_dir; |
| 320 | 304 | ||
| 321 | err = -ENOENT; | 305 | err = -ENOENT; |
| 322 | new_de = ext2_find_entry (new_dir, new_dentry, &new_page); | 306 | new_de = ext2_find_entry (new_dir, &new_dentry->d_name, &new_page); |
| 323 | if (!new_de) | 307 | if (!new_de) |
| 324 | goto out_dir; | 308 | goto out_dir; |
| 325 | inode_inc_link_count(old_inode); | 309 | inode_inc_link_count(old_inode); |
diff --git a/fs/ext3/namei.c b/fs/ext3/namei.c index de13e919cd81..3e5edc92aa0b 100644 --- a/fs/ext3/namei.c +++ b/fs/ext3/namei.c | |||
| @@ -159,7 +159,7 @@ static void dx_set_count (struct dx_entry *entries, unsigned value); | |||
| 159 | static void dx_set_limit (struct dx_entry *entries, unsigned value); | 159 | static void dx_set_limit (struct dx_entry *entries, unsigned value); |
| 160 | static unsigned dx_root_limit (struct inode *dir, unsigned infosize); | 160 | static unsigned dx_root_limit (struct inode *dir, unsigned infosize); |
| 161 | static unsigned dx_node_limit (struct inode *dir); | 161 | static unsigned dx_node_limit (struct inode *dir); |
| 162 | static struct dx_frame *dx_probe(struct dentry *dentry, | 162 | static struct dx_frame *dx_probe(struct qstr *entry, |
| 163 | struct inode *dir, | 163 | struct inode *dir, |
| 164 | struct dx_hash_info *hinfo, | 164 | struct dx_hash_info *hinfo, |
| 165 | struct dx_frame *frame, | 165 | struct dx_frame *frame, |
| @@ -176,8 +176,9 @@ static int ext3_htree_next_block(struct inode *dir, __u32 hash, | |||
| 176 | struct dx_frame *frame, | 176 | struct dx_frame *frame, |
| 177 | struct dx_frame *frames, | 177 | struct dx_frame *frames, |
| 178 | __u32 *start_hash); | 178 | __u32 *start_hash); |
| 179 | static struct buffer_head * ext3_dx_find_entry(struct dentry *dentry, | 179 | static struct buffer_head * ext3_dx_find_entry(struct inode *dir, |
| 180 | struct ext3_dir_entry_2 **res_dir, int *err); | 180 | struct qstr *entry, struct ext3_dir_entry_2 **res_dir, |
| 181 | int *err); | ||
| 181 | static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry, | 182 | static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry, |
| 182 | struct inode *inode); | 183 | struct inode *inode); |
| 183 | 184 | ||
| @@ -342,7 +343,7 @@ struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir, | |||
| 342 | * back to userspace. | 343 | * back to userspace. |
| 343 | */ | 344 | */ |
| 344 | static struct dx_frame * | 345 | static struct dx_frame * |
| 345 | dx_probe(struct dentry *dentry, struct inode *dir, | 346 | dx_probe(struct qstr *entry, struct inode *dir, |
| 346 | struct dx_hash_info *hinfo, struct dx_frame *frame_in, int *err) | 347 | struct dx_hash_info *hinfo, struct dx_frame *frame_in, int *err) |
| 347 | { | 348 | { |
| 348 | unsigned count, indirect; | 349 | unsigned count, indirect; |
| @@ -353,8 +354,6 @@ dx_probe(struct dentry *dentry, struct inode *dir, | |||
| 353 | u32 hash; | 354 | u32 hash; |
| 354 | 355 | ||
| 355 | frame->bh = NULL; | 356 | frame->bh = NULL; |
| 356 | if (dentry) | ||
| 357 | dir = dentry->d_parent->d_inode; | ||
| 358 | if (!(bh = ext3_bread (NULL,dir, 0, 0, err))) | 357 | if (!(bh = ext3_bread (NULL,dir, 0, 0, err))) |
| 359 | goto fail; | 358 | goto fail; |
| 360 | root = (struct dx_root *) bh->b_data; | 359 | root = (struct dx_root *) bh->b_data; |
| @@ -370,8 +369,8 @@ dx_probe(struct dentry *dentry, struct inode *dir, | |||
| 370 | } | 369 | } |
| 371 | hinfo->hash_version = root->info.hash_version; | 370 | hinfo->hash_version = root->info.hash_version; |
| 372 | hinfo->seed = EXT3_SB(dir->i_sb)->s_hash_seed; | 371 | hinfo->seed = EXT3_SB(dir->i_sb)->s_hash_seed; |
| 373 | if (dentry) | 372 | if (entry) |
| 374 | ext3fs_dirhash(dentry->d_name.name, dentry->d_name.len, hinfo); | 373 | ext3fs_dirhash(entry->name, entry->len, hinfo); |
| 375 | hash = hinfo->hash; | 374 | hash = hinfo->hash; |
| 376 | 375 | ||
| 377 | if (root->info.unused_flags & 1) { | 376 | if (root->info.unused_flags & 1) { |
| @@ -803,15 +802,15 @@ static inline int ext3_match (int len, const char * const name, | |||
| 803 | */ | 802 | */ |
| 804 | static inline int search_dirblock(struct buffer_head * bh, | 803 | static inline int search_dirblock(struct buffer_head * bh, |
| 805 | struct inode *dir, | 804 | struct inode *dir, |
| 806 | struct dentry *dentry, | 805 | struct qstr *child, |
| 807 | unsigned long offset, | 806 | unsigned long offset, |
| 808 | struct ext3_dir_entry_2 ** res_dir) | 807 | struct ext3_dir_entry_2 ** res_dir) |
| 809 | { | 808 | { |
| 810 | struct ext3_dir_entry_2 * de; | 809 | struct ext3_dir_entry_2 * de; |
| 811 | char * dlimit; | 810 | char * dlimit; |
| 812 | int de_len; | 811 | int de_len; |
| 813 | const char *name = dentry->d_name.name; | 812 | const char *name = child->name; |
| 814 | int namelen = dentry->d_name.len; | 813 | int namelen = child->len; |
| 815 | 814 | ||
| 816 | de = (struct ext3_dir_entry_2 *) bh->b_data; | 815 | de = (struct ext3_dir_entry_2 *) bh->b_data; |
| 817 | dlimit = bh->b_data + dir->i_sb->s_blocksize; | 816 | dlimit = bh->b_data + dir->i_sb->s_blocksize; |
| @@ -850,8 +849,9 @@ static inline int search_dirblock(struct buffer_head * bh, | |||
| 850 | * The returned buffer_head has ->b_count elevated. The caller is expected | 849 | * The returned buffer_head has ->b_count elevated. The caller is expected |
| 851 | * to brelse() it when appropriate. | 850 | * to brelse() it when appropriate. |
| 852 | */ | 851 | */ |
| 853 | static struct buffer_head * ext3_find_entry (struct dentry *dentry, | 852 | static struct buffer_head *ext3_find_entry(struct inode *dir, |
| 854 | struct ext3_dir_entry_2 ** res_dir) | 853 | struct qstr *entry, |
| 854 | struct ext3_dir_entry_2 **res_dir) | ||
| 855 | { | 855 | { |
| 856 | struct super_block * sb; | 856 | struct super_block * sb; |
| 857 | struct buffer_head * bh_use[NAMEI_RA_SIZE]; | 857 | struct buffer_head * bh_use[NAMEI_RA_SIZE]; |
| @@ -863,16 +863,15 @@ static struct buffer_head * ext3_find_entry (struct dentry *dentry, | |||
| 863 | buffer */ | 863 | buffer */ |
| 864 | int num = 0; | 864 | int num = 0; |
| 865 | int nblocks, i, err; | 865 | int nblocks, i, err; |
| 866 | struct inode *dir = dentry->d_parent->d_inode; | ||
| 867 | int namelen; | 866 | int namelen; |
| 868 | 867 | ||
| 869 | *res_dir = NULL; | 868 | *res_dir = NULL; |
| 870 | sb = dir->i_sb; | 869 | sb = dir->i_sb; |
| 871 | namelen = dentry->d_name.len; | 870 | namelen = entry->len; |
| 872 | if (namelen > EXT3_NAME_LEN) | 871 | if (namelen > EXT3_NAME_LEN) |
| 873 | return NULL; | 872 | return NULL; |
| 874 | if (is_dx(dir)) { | 873 | if (is_dx(dir)) { |
| 875 | bh = ext3_dx_find_entry(dentry, res_dir, &err); | 874 | bh = ext3_dx_find_entry(dir, entry, res_dir, &err); |
| 876 | /* | 875 | /* |
| 877 | * On success, or if the error was file not found, | 876 | * On success, or if the error was file not found, |
| 878 | * return. Otherwise, fall back to doing a search the | 877 | * return. Otherwise, fall back to doing a search the |
| @@ -923,7 +922,7 @@ restart: | |||
| 923 | brelse(bh); | 922 | brelse(bh); |
| 924 | goto next; | 923 | goto next; |
| 925 | } | 924 | } |
| 926 | i = search_dirblock(bh, dir, dentry, | 925 | i = search_dirblock(bh, dir, entry, |
| 927 | block << EXT3_BLOCK_SIZE_BITS(sb), res_dir); | 926 | block << EXT3_BLOCK_SIZE_BITS(sb), res_dir); |
| 928 | if (i == 1) { | 927 | if (i == 1) { |
| 929 | EXT3_I(dir)->i_dir_start_lookup = block; | 928 | EXT3_I(dir)->i_dir_start_lookup = block; |
| @@ -957,8 +956,9 @@ cleanup_and_exit: | |||
| 957 | return ret; | 956 | return ret; |
| 958 | } | 957 | } |
| 959 | 958 | ||
| 960 | static struct buffer_head * ext3_dx_find_entry(struct dentry *dentry, | 959 | static struct buffer_head * ext3_dx_find_entry(struct inode *dir, |
| 961 | struct ext3_dir_entry_2 **res_dir, int *err) | 960 | struct qstr *entry, struct ext3_dir_entry_2 **res_dir, |
| 961 | int *err) | ||
| 962 | { | 962 | { |
| 963 | struct super_block * sb; | 963 | struct super_block * sb; |
| 964 | struct dx_hash_info hinfo; | 964 | struct dx_hash_info hinfo; |
| @@ -968,14 +968,13 @@ static struct buffer_head * ext3_dx_find_entry(struct dentry *dentry, | |||
| 968 | struct buffer_head *bh; | 968 | struct buffer_head *bh; |
| 969 | unsigned long block; | 969 | unsigned long block; |
| 970 | int retval; | 970 | int retval; |
| 971 | int namelen = dentry->d_name.len; | 971 | int namelen = entry->len; |
| 972 | const u8 *name = dentry->d_name.name; | 972 | const u8 *name = entry->name; |
| 973 | struct inode *dir = dentry->d_parent->d_inode; | ||
| 974 | 973 | ||
| 975 | sb = dir->i_sb; | 974 | sb = dir->i_sb; |
| 976 | /* NFS may look up ".." - look at dx_root directory block */ | 975 | /* NFS may look up ".." - look at dx_root directory block */ |
| 977 | if (namelen > 2 || name[0] != '.'||(name[1] != '.' && name[1] != '\0')){ | 976 | if (namelen > 2 || name[0] != '.'|| (namelen == 2 && name[1] != '.')) { |
| 978 | if (!(frame = dx_probe(dentry, NULL, &hinfo, frames, err))) | 977 | if (!(frame = dx_probe(entry, dir, &hinfo, frames, err))) |
| 979 | return NULL; | 978 | return NULL; |
| 980 | } else { | 979 | } else { |
| 981 | frame = frames; | 980 | frame = frames; |
| @@ -1036,7 +1035,7 @@ static struct dentry *ext3_lookup(struct inode * dir, struct dentry *dentry, str | |||
| 1036 | if (dentry->d_name.len > EXT3_NAME_LEN) | 1035 | if (dentry->d_name.len > EXT3_NAME_LEN) |
| 1037 | return ERR_PTR(-ENAMETOOLONG); | 1036 | return ERR_PTR(-ENAMETOOLONG); |
| 1038 | 1037 | ||
| 1039 | bh = ext3_find_entry(dentry, &de); | 1038 | bh = ext3_find_entry(dir, &dentry->d_name, &de); |
| 1040 | inode = NULL; | 1039 | inode = NULL; |
| 1041 | if (bh) { | 1040 | if (bh) { |
| 1042 | unsigned long ino = le32_to_cpu(de->inode); | 1041 | unsigned long ino = le32_to_cpu(de->inode); |
| @@ -1057,18 +1056,11 @@ static struct dentry *ext3_lookup(struct inode * dir, struct dentry *dentry, str | |||
| 1057 | struct dentry *ext3_get_parent(struct dentry *child) | 1056 | struct dentry *ext3_get_parent(struct dentry *child) |
| 1058 | { | 1057 | { |
| 1059 | unsigned long ino; | 1058 | unsigned long ino; |
| 1060 | struct dentry *parent; | 1059 | struct qstr dotdot = {.name = "..", .len = 2}; |
| 1061 | struct inode *inode; | ||
| 1062 | struct dentry dotdot; | ||
| 1063 | struct ext3_dir_entry_2 * de; | 1060 | struct ext3_dir_entry_2 * de; |
| 1064 | struct buffer_head *bh; | 1061 | struct buffer_head *bh; |
| 1065 | 1062 | ||
| 1066 | dotdot.d_name.name = ".."; | 1063 | bh = ext3_find_entry(child->d_inode, &dotdot, &de); |
| 1067 | dotdot.d_name.len = 2; | ||
| 1068 | dotdot.d_parent = child; /* confusing, isn't it! */ | ||
| 1069 | |||
| 1070 | bh = ext3_find_entry(&dotdot, &de); | ||
| 1071 | inode = NULL; | ||
| 1072 | if (!bh) | 1064 | if (!bh) |
| 1073 | return ERR_PTR(-ENOENT); | 1065 | return ERR_PTR(-ENOENT); |
| 1074 | ino = le32_to_cpu(de->inode); | 1066 | ino = le32_to_cpu(de->inode); |
| @@ -1080,16 +1072,7 @@ struct dentry *ext3_get_parent(struct dentry *child) | |||
| 1080 | return ERR_PTR(-EIO); | 1072 | return ERR_PTR(-EIO); |
| 1081 | } | 1073 | } |
| 1082 | 1074 | ||
| 1083 | inode = ext3_iget(child->d_inode->i_sb, ino); | 1075 | return d_obtain_alias(ext3_iget(child->d_inode->i_sb, ino)); |
| 1084 | if (IS_ERR(inode)) | ||
| 1085 | return ERR_CAST(inode); | ||
| 1086 | |||
| 1087 | parent = d_alloc_anon(inode); | ||
| 1088 | if (!parent) { | ||
| 1089 | iput(inode); | ||
| 1090 | parent = ERR_PTR(-ENOMEM); | ||
| 1091 | } | ||
| 1092 | return parent; | ||
| 1093 | } | 1076 | } |
| 1094 | 1077 | ||
| 1095 | #define S_SHIFT 12 | 1078 | #define S_SHIFT 12 |
| @@ -1503,7 +1486,7 @@ static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry, | |||
| 1503 | struct ext3_dir_entry_2 *de; | 1486 | struct ext3_dir_entry_2 *de; |
| 1504 | int err; | 1487 | int err; |
| 1505 | 1488 | ||
| 1506 | frame = dx_probe(dentry, NULL, &hinfo, frames, &err); | 1489 | frame = dx_probe(&dentry->d_name, dir, &hinfo, frames, &err); |
| 1507 | if (!frame) | 1490 | if (!frame) |
| 1508 | return err; | 1491 | return err; |
| 1509 | entries = frame->entries; | 1492 | entries = frame->entries; |
| @@ -2056,7 +2039,7 @@ static int ext3_rmdir (struct inode * dir, struct dentry *dentry) | |||
| 2056 | return PTR_ERR(handle); | 2039 | return PTR_ERR(handle); |
| 2057 | 2040 | ||
| 2058 | retval = -ENOENT; | 2041 | retval = -ENOENT; |
| 2059 | bh = ext3_find_entry (dentry, &de); | 2042 | bh = ext3_find_entry(dir, &dentry->d_name, &de); |
| 2060 | if (!bh) | 2043 | if (!bh) |
| 2061 | goto end_rmdir; | 2044 | goto end_rmdir; |
| 2062 | 2045 | ||
| @@ -2118,7 +2101,7 @@ static int ext3_unlink(struct inode * dir, struct dentry *dentry) | |||
| 2118 | handle->h_sync = 1; | 2101 | handle->h_sync = 1; |
| 2119 | 2102 | ||
| 2120 | retval = -ENOENT; | 2103 | retval = -ENOENT; |
| 2121 | bh = ext3_find_entry (dentry, &de); | 2104 | bh = ext3_find_entry(dir, &dentry->d_name, &de); |
| 2122 | if (!bh) | 2105 | if (!bh) |
| 2123 | goto end_unlink; | 2106 | goto end_unlink; |
| 2124 | 2107 | ||
| @@ -2276,7 +2259,7 @@ static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry, | |||
| 2276 | if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir)) | 2259 | if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir)) |
| 2277 | handle->h_sync = 1; | 2260 | handle->h_sync = 1; |
| 2278 | 2261 | ||
| 2279 | old_bh = ext3_find_entry (old_dentry, &old_de); | 2262 | old_bh = ext3_find_entry(old_dir, &old_dentry->d_name, &old_de); |
| 2280 | /* | 2263 | /* |
| 2281 | * Check for inode number is _not_ due to possible IO errors. | 2264 | * Check for inode number is _not_ due to possible IO errors. |
| 2282 | * We might rmdir the source, keep it as pwd of some process | 2265 | * We might rmdir the source, keep it as pwd of some process |
| @@ -2289,7 +2272,7 @@ static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry, | |||
| 2289 | goto end_rename; | 2272 | goto end_rename; |
| 2290 | 2273 | ||
| 2291 | new_inode = new_dentry->d_inode; | 2274 | new_inode = new_dentry->d_inode; |
| 2292 | new_bh = ext3_find_entry (new_dentry, &new_de); | 2275 | new_bh = ext3_find_entry(new_dir, &new_dentry->d_name, &new_de); |
| 2293 | if (new_bh) { | 2276 | if (new_bh) { |
| 2294 | if (!new_inode) { | 2277 | if (!new_inode) { |
| 2295 | brelse (new_bh); | 2278 | brelse (new_bh); |
| @@ -2355,7 +2338,8 @@ static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry, | |||
| 2355 | struct buffer_head *old_bh2; | 2338 | struct buffer_head *old_bh2; |
| 2356 | struct ext3_dir_entry_2 *old_de2; | 2339 | struct ext3_dir_entry_2 *old_de2; |
| 2357 | 2340 | ||
| 2358 | old_bh2 = ext3_find_entry(old_dentry, &old_de2); | 2341 | old_bh2 = ext3_find_entry(old_dir, &old_dentry->d_name, |
| 2342 | &old_de2); | ||
| 2359 | if (old_bh2) { | 2343 | if (old_bh2) { |
| 2360 | retval = ext3_delete_entry(handle, old_dir, | 2344 | retval = ext3_delete_entry(handle, old_dir, |
| 2361 | old_de2, old_bh2); | 2345 | old_de2, old_bh2); |
diff --git a/fs/ext3/super.c b/fs/ext3/super.c index cac29ee3b14a..34b6fca765d7 100644 --- a/fs/ext3/super.c +++ b/fs/ext3/super.c | |||
| @@ -2794,30 +2794,30 @@ static int ext3_quota_on_mount(struct super_block *sb, int type) | |||
| 2794 | * Standard function to be called on quota_on | 2794 | * Standard function to be called on quota_on |
| 2795 | */ | 2795 | */ |
| 2796 | static int ext3_quota_on(struct super_block *sb, int type, int format_id, | 2796 | static int ext3_quota_on(struct super_block *sb, int type, int format_id, |
| 2797 | char *path, int remount) | 2797 | char *name, int remount) |
| 2798 | { | 2798 | { |
| 2799 | int err; | 2799 | int err; |
| 2800 | struct nameidata nd; | 2800 | struct path path; |
| 2801 | 2801 | ||
| 2802 | if (!test_opt(sb, QUOTA)) | 2802 | if (!test_opt(sb, QUOTA)) |
| 2803 | return -EINVAL; | 2803 | return -EINVAL; |
| 2804 | /* When remounting, no checks are needed and in fact, path is NULL */ | 2804 | /* When remounting, no checks are needed and in fact, name is NULL */ |
| 2805 | if (remount) | 2805 | if (remount) |
| 2806 | return vfs_quota_on(sb, type, format_id, path, remount); | 2806 | return vfs_quota_on(sb, type, format_id, name, remount); |
| 2807 | 2807 | ||
| 2808 | err = path_lookup(path, LOOKUP_FOLLOW, &nd); | 2808 | err = kern_path(name, LOOKUP_FOLLOW, &path); |
| 2809 | if (err) | 2809 | if (err) |
| 2810 | return err; | 2810 | return err; |
| 2811 | 2811 | ||
| 2812 | /* Quotafile not on the same filesystem? */ | 2812 | /* Quotafile not on the same filesystem? */ |
| 2813 | if (nd.path.mnt->mnt_sb != sb) { | 2813 | if (path.mnt->mnt_sb != sb) { |
| 2814 | path_put(&nd.path); | 2814 | path_put(&path); |
| 2815 | return -EXDEV; | 2815 | return -EXDEV; |
| 2816 | } | 2816 | } |
| 2817 | /* Journaling quota? */ | 2817 | /* Journaling quota? */ |
| 2818 | if (EXT3_SB(sb)->s_qf_names[type]) { | 2818 | if (EXT3_SB(sb)->s_qf_names[type]) { |
| 2819 | /* Quotafile not of fs root? */ | 2819 | /* Quotafile not of fs root? */ |
| 2820 | if (nd.path.dentry->d_parent->d_inode != sb->s_root->d_inode) | 2820 | if (path.dentry->d_parent != sb->s_root) |
| 2821 | printk(KERN_WARNING | 2821 | printk(KERN_WARNING |
| 2822 | "EXT3-fs: Quota file not on filesystem root. " | 2822 | "EXT3-fs: Quota file not on filesystem root. " |
| 2823 | "Journaled quota will not work.\n"); | 2823 | "Journaled quota will not work.\n"); |
| @@ -2827,7 +2827,7 @@ static int ext3_quota_on(struct super_block *sb, int type, int format_id, | |||
| 2827 | * When we journal data on quota file, we have to flush journal to see | 2827 | * When we journal data on quota file, we have to flush journal to see |
| 2828 | * all updates to the file when we bypass pagecache... | 2828 | * all updates to the file when we bypass pagecache... |
| 2829 | */ | 2829 | */ |
| 2830 | if (ext3_should_journal_data(nd.path.dentry->d_inode)) { | 2830 | if (ext3_should_journal_data(path.dentry->d_inode)) { |
| 2831 | /* | 2831 | /* |
| 2832 | * We don't need to lock updates but journal_flush() could | 2832 | * We don't need to lock updates but journal_flush() could |
| 2833 | * otherwise be livelocked... | 2833 | * otherwise be livelocked... |
| @@ -2841,8 +2841,8 @@ static int ext3_quota_on(struct super_block *sb, int type, int format_id, | |||
| 2841 | } | 2841 | } |
| 2842 | } | 2842 | } |
| 2843 | 2843 | ||
| 2844 | err = vfs_quota_on_path(sb, type, format_id, &nd.path); | 2844 | err = vfs_quota_on_path(sb, type, format_id, &path); |
| 2845 | path_put(&nd.path); | 2845 | path_put(&path); |
| 2846 | return err; | 2846 | return err; |
| 2847 | } | 2847 | } |
| 2848 | 2848 | ||
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c index 92db9e945147..5b93a7d94d42 100644 --- a/fs/ext4/namei.c +++ b/fs/ext4/namei.c | |||
| @@ -1083,16 +1083,7 @@ struct dentry *ext4_get_parent(struct dentry *child) | |||
| 1083 | return ERR_PTR(-EIO); | 1083 | return ERR_PTR(-EIO); |
| 1084 | } | 1084 | } |
| 1085 | 1085 | ||
| 1086 | inode = ext4_iget(child->d_inode->i_sb, ino); | 1086 | return d_obtain_alias(ext4_iget(child->d_inode->i_sb, ino)); |
| 1087 | if (IS_ERR(inode)) | ||
| 1088 | return ERR_CAST(inode); | ||
| 1089 | |||
| 1090 | parent = d_alloc_anon(inode); | ||
| 1091 | if (!parent) { | ||
| 1092 | iput(inode); | ||
| 1093 | parent = ERR_PTR(-ENOMEM); | ||
| 1094 | } | ||
| 1095 | return parent; | ||
| 1096 | } | 1087 | } |
| 1097 | 1088 | ||
| 1098 | #define S_SHIFT 12 | 1089 | #define S_SHIFT 12 |
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 9b2b2bc4ec17..ae35f176b697 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
| @@ -3328,30 +3328,30 @@ static int ext4_quota_on_mount(struct super_block *sb, int type) | |||
| 3328 | * Standard function to be called on quota_on | 3328 | * Standard function to be called on quota_on |
| 3329 | */ | 3329 | */ |
| 3330 | static int ext4_quota_on(struct super_block *sb, int type, int format_id, | 3330 | static int ext4_quota_on(struct super_block *sb, int type, int format_id, |
| 3331 | char *path, int remount) | 3331 | char *name, int remount) |
| 3332 | { | 3332 | { |
| 3333 | int err; | 3333 | int err; |
| 3334 | struct nameidata nd; | 3334 | struct path path; |
| 3335 | 3335 | ||
| 3336 | if (!test_opt(sb, QUOTA)) | 3336 | if (!test_opt(sb, QUOTA)) |
| 3337 | return -EINVAL; | 3337 | return -EINVAL; |
| 3338 | /* When remounting, no checks are needed and in fact, path is NULL */ | 3338 | /* When remounting, no checks are needed and in fact, name is NULL */ |
| 3339 | if (remount) | 3339 | if (remount) |
| 3340 | return vfs_quota_on(sb, type, format_id, path, remount); | 3340 | return vfs_quota_on(sb, type, format_id, name, remount); |
| 3341 | 3341 | ||
| 3342 | err = path_lookup(path, LOOKUP_FOLLOW, &nd); | 3342 | err = kern_path(name, LOOKUP_FOLLOW, &path); |
| 3343 | if (err) | 3343 | if (err) |
| 3344 | return err; | 3344 | return err; |
| 3345 | 3345 | ||
| 3346 | /* Quotafile not on the same filesystem? */ | 3346 | /* Quotafile not on the same filesystem? */ |
| 3347 | if (nd.path.mnt->mnt_sb != sb) { | 3347 | if (path.mnt->mnt_sb != sb) { |
| 3348 | path_put(&nd.path); | 3348 | path_put(&path); |
| 3349 | return -EXDEV; | 3349 | return -EXDEV; |
| 3350 | } | 3350 | } |
| 3351 | /* Journaling quota? */ | 3351 | /* Journaling quota? */ |
| 3352 | if (EXT4_SB(sb)->s_qf_names[type]) { | 3352 | if (EXT4_SB(sb)->s_qf_names[type]) { |
| 3353 | /* Quotafile not in fs root? */ | 3353 | /* Quotafile not in fs root? */ |
| 3354 | if (nd.path.dentry->d_parent->d_inode != sb->s_root->d_inode) | 3354 | if (path.dentry->d_parent != sb->s_root) |
| 3355 | printk(KERN_WARNING | 3355 | printk(KERN_WARNING |
| 3356 | "EXT4-fs: Quota file not on filesystem root. " | 3356 | "EXT4-fs: Quota file not on filesystem root. " |
| 3357 | "Journaled quota will not work.\n"); | 3357 | "Journaled quota will not work.\n"); |
| @@ -3361,7 +3361,7 @@ static int ext4_quota_on(struct super_block *sb, int type, int format_id, | |||
| 3361 | * When we journal data on quota file, we have to flush journal to see | 3361 | * When we journal data on quota file, we have to flush journal to see |
| 3362 | * all updates to the file when we bypass pagecache... | 3362 | * all updates to the file when we bypass pagecache... |
| 3363 | */ | 3363 | */ |
| 3364 | if (ext4_should_journal_data(nd.path.dentry->d_inode)) { | 3364 | if (ext4_should_journal_data(path.dentry->d_inode)) { |
| 3365 | /* | 3365 | /* |
| 3366 | * We don't need to lock updates but journal_flush() could | 3366 | * We don't need to lock updates but journal_flush() could |
| 3367 | * otherwise be livelocked... | 3367 | * otherwise be livelocked... |
| @@ -3370,13 +3370,13 @@ static int ext4_quota_on(struct super_block *sb, int type, int format_id, | |||
| 3370 | err = jbd2_journal_flush(EXT4_SB(sb)->s_journal); | 3370 | err = jbd2_journal_flush(EXT4_SB(sb)->s_journal); |
| 3371 | jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal); | 3371 | jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal); |
| 3372 | if (err) { | 3372 | if (err) { |
| 3373 | path_put(&nd.path); | 3373 | path_put(&path); |
| 3374 | return err; | 3374 | return err; |
| 3375 | } | 3375 | } |
| 3376 | } | 3376 | } |
| 3377 | 3377 | ||
| 3378 | err = vfs_quota_on_path(sb, type, format_id, &nd.path); | 3378 | err = vfs_quota_on_path(sb, type, format_id, &path); |
| 3379 | path_put(&nd.path); | 3379 | path_put(&path); |
| 3380 | return err; | 3380 | return err; |
| 3381 | } | 3381 | } |
| 3382 | 3382 | ||
diff --git a/fs/fat/dir.c b/fs/fat/dir.c index cd4a0162e10d..bae1c3292522 100644 --- a/fs/fat/dir.c +++ b/fs/fat/dir.c | |||
| @@ -839,6 +839,7 @@ const struct file_operations fat_dir_operations = { | |||
| 839 | .compat_ioctl = fat_compat_dir_ioctl, | 839 | .compat_ioctl = fat_compat_dir_ioctl, |
| 840 | #endif | 840 | #endif |
| 841 | .fsync = file_fsync, | 841 | .fsync = file_fsync, |
| 842 | .llseek = generic_file_llseek, | ||
| 842 | }; | 843 | }; |
| 843 | 844 | ||
| 844 | static int fat_get_short_entry(struct inode *dir, loff_t *pos, | 845 | static int fat_get_short_entry(struct inode *dir, loff_t *pos, |
diff --git a/fs/fat/inode.c b/fs/fat/inode.c index d12cdf2a0406..19eafbe3c379 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c | |||
| @@ -681,33 +681,24 @@ static struct dentry *fat_fh_to_dentry(struct super_block *sb, | |||
| 681 | inode = NULL; | 681 | inode = NULL; |
| 682 | } | 682 | } |
| 683 | } | 683 | } |
| 684 | if (!inode) { | ||
| 685 | /* For now, do nothing | ||
| 686 | * What we could do is: | ||
| 687 | * follow the file starting at fh[4], and record | ||
| 688 | * the ".." entry, and the name of the fh[2] entry. | ||
| 689 | * The follow the ".." file finding the next step up. | ||
| 690 | * This way we build a path to the root of | ||
| 691 | * the tree. If this works, we lookup the path and so | ||
| 692 | * get this inode into the cache. | ||
| 693 | * Finally try the fat_iget lookup again | ||
| 694 | * If that fails, then weare totally out of luck | ||
| 695 | * But all that is for another day | ||
| 696 | */ | ||
| 697 | } | ||
| 698 | if (!inode) | ||
| 699 | return ERR_PTR(-ESTALE); | ||
| 700 | |||
| 701 | 684 | ||
| 702 | /* now to find a dentry. | 685 | /* |
| 703 | * If possible, get a well-connected one | 686 | * For now, do nothing if the inode is not found. |
| 687 | * | ||
| 688 | * What we could do is: | ||
| 689 | * | ||
| 690 | * - follow the file starting at fh[4], and record the ".." entry, | ||
| 691 | * and the name of the fh[2] entry. | ||
| 692 | * - then follow the ".." file finding the next step up. | ||
| 693 | * | ||
| 694 | * This way we build a path to the root of the tree. If this works, we | ||
| 695 | * lookup the path and so get this inode into the cache. Finally try | ||
| 696 | * the fat_iget lookup again. If that fails, then we are totally out | ||
| 697 | * of luck. But all that is for another day | ||
| 704 | */ | 698 | */ |
| 705 | result = d_alloc_anon(inode); | 699 | result = d_obtain_alias(inode); |
| 706 | if (result == NULL) { | 700 | if (!IS_ERR(result)) |
| 707 | iput(inode); | 701 | result->d_op = sb->s_root->d_op; |
| 708 | return ERR_PTR(-ENOMEM); | ||
| 709 | } | ||
| 710 | result->d_op = sb->s_root->d_op; | ||
| 711 | return result; | 702 | return result; |
| 712 | } | 703 | } |
| 713 | 704 | ||
| @@ -754,15 +745,8 @@ static struct dentry *fat_get_parent(struct dentry *child) | |||
| 754 | } | 745 | } |
| 755 | inode = fat_build_inode(sb, de, i_pos); | 746 | inode = fat_build_inode(sb, de, i_pos); |
| 756 | brelse(bh); | 747 | brelse(bh); |
| 757 | if (IS_ERR(inode)) { | 748 | |
| 758 | parent = ERR_CAST(inode); | 749 | parent = d_obtain_alias(inode); |
| 759 | goto out; | ||
| 760 | } | ||
| 761 | parent = d_alloc_anon(inode); | ||
| 762 | if (!parent) { | ||
| 763 | iput(inode); | ||
| 764 | parent = ERR_PTR(-ENOMEM); | ||
| 765 | } | ||
| 766 | out: | 750 | out: |
| 767 | unlock_super(sb); | 751 | unlock_super(sb); |
| 768 | 752 | ||
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index 54b1f0e1ef58..2e99f34b4435 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c | |||
| @@ -596,12 +596,8 @@ static struct dentry *fuse_get_dentry(struct super_block *sb, | |||
| 596 | if (inode->i_generation != handle->generation) | 596 | if (inode->i_generation != handle->generation) |
| 597 | goto out_iput; | 597 | goto out_iput; |
| 598 | 598 | ||
| 599 | entry = d_alloc_anon(inode); | 599 | entry = d_obtain_alias(inode); |
| 600 | err = -ENOMEM; | 600 | if (!IS_ERR(entry) && get_node_id(inode) != FUSE_ROOT_ID) { |
| 601 | if (!entry) | ||
| 602 | goto out_iput; | ||
| 603 | |||
| 604 | if (get_node_id(inode) != FUSE_ROOT_ID) { | ||
| 605 | entry->d_op = &fuse_dentry_operations; | 601 | entry->d_op = &fuse_dentry_operations; |
| 606 | fuse_invalidate_entry_cache(entry); | 602 | fuse_invalidate_entry_cache(entry); |
| 607 | } | 603 | } |
| @@ -696,17 +692,14 @@ static struct dentry *fuse_get_parent(struct dentry *child) | |||
| 696 | name.name = ".."; | 692 | name.name = ".."; |
| 697 | err = fuse_lookup_name(child_inode->i_sb, get_node_id(child_inode), | 693 | err = fuse_lookup_name(child_inode->i_sb, get_node_id(child_inode), |
| 698 | &name, &outarg, &inode); | 694 | &name, &outarg, &inode); |
| 699 | if (err && err != -ENOENT) | 695 | if (err) { |
| 696 | if (err == -ENOENT) | ||
| 697 | return ERR_PTR(-ESTALE); | ||
| 700 | return ERR_PTR(err); | 698 | return ERR_PTR(err); |
| 701 | if (err || !inode) | ||
| 702 | return ERR_PTR(-ESTALE); | ||
| 703 | |||
| 704 | parent = d_alloc_anon(inode); | ||
| 705 | if (!parent) { | ||
| 706 | iput(inode); | ||
| 707 | return ERR_PTR(-ENOMEM); | ||
| 708 | } | 699 | } |
| 709 | if (get_node_id(inode) != FUSE_ROOT_ID) { | 700 | |
| 701 | parent = d_obtain_alias(inode); | ||
| 702 | if (!IS_ERR(parent) && get_node_id(inode) != FUSE_ROOT_ID) { | ||
| 710 | parent->d_op = &fuse_dentry_operations; | 703 | parent->d_op = &fuse_dentry_operations; |
| 711 | fuse_invalidate_entry_cache(parent); | 704 | fuse_invalidate_entry_cache(parent); |
| 712 | } | 705 | } |
diff --git a/fs/gfs2/ops_export.c b/fs/gfs2/ops_export.c index 9cda8536530c..bbb8c36403a9 100644 --- a/fs/gfs2/ops_export.c +++ b/fs/gfs2/ops_export.c | |||
| @@ -130,28 +130,17 @@ static int gfs2_get_name(struct dentry *parent, char *name, | |||
| 130 | static struct dentry *gfs2_get_parent(struct dentry *child) | 130 | static struct dentry *gfs2_get_parent(struct dentry *child) |
| 131 | { | 131 | { |
| 132 | struct qstr dotdot; | 132 | struct qstr dotdot; |
| 133 | struct inode *inode; | ||
| 134 | struct dentry *dentry; | 133 | struct dentry *dentry; |
| 135 | 134 | ||
| 136 | gfs2_str2qstr(&dotdot, ".."); | ||
| 137 | inode = gfs2_lookupi(child->d_inode, &dotdot, 1); | ||
| 138 | |||
| 139 | if (!inode) | ||
| 140 | return ERR_PTR(-ENOENT); | ||
| 141 | /* | 135 | /* |
| 142 | * In case of an error, @inode carries the error value, and we | 136 | * XXX(hch): it would be a good idea to keep this around as a |
| 143 | * have to return that as a(n invalid) pointer to dentry. | 137 | * static variable. |
| 144 | */ | 138 | */ |
| 145 | if (IS_ERR(inode)) | 139 | gfs2_str2qstr(&dotdot, ".."); |
| 146 | return ERR_CAST(inode); | ||
| 147 | |||
| 148 | dentry = d_alloc_anon(inode); | ||
| 149 | if (!dentry) { | ||
| 150 | iput(inode); | ||
| 151 | return ERR_PTR(-ENOMEM); | ||
| 152 | } | ||
| 153 | 140 | ||
| 154 | dentry->d_op = &gfs2_dops; | 141 | dentry = d_obtain_alias(gfs2_lookupi(child->d_inode, &dotdot, 1)); |
| 142 | if (!IS_ERR(dentry)) | ||
| 143 | dentry->d_op = &gfs2_dops; | ||
| 155 | return dentry; | 144 | return dentry; |
| 156 | } | 145 | } |
| 157 | 146 | ||
| @@ -233,13 +222,9 @@ static struct dentry *gfs2_get_dentry(struct super_block *sb, | |||
| 233 | gfs2_glock_dq_uninit(&i_gh); | 222 | gfs2_glock_dq_uninit(&i_gh); |
| 234 | 223 | ||
| 235 | out_inode: | 224 | out_inode: |
| 236 | dentry = d_alloc_anon(inode); | 225 | dentry = d_obtain_alias(inode); |
| 237 | if (!dentry) { | 226 | if (!IS_ERR(dentry)) |
| 238 | iput(inode); | 227 | dentry->d_op = &gfs2_dops; |
| 239 | return ERR_PTR(-ENOMEM); | ||
| 240 | } | ||
| 241 | |||
| 242 | dentry->d_op = &gfs2_dops; | ||
| 243 | return dentry; | 228 | return dentry; |
| 244 | 229 | ||
| 245 | fail_rgd: | 230 | fail_rgd: |
diff --git a/fs/gfs2/ops_inode.c b/fs/gfs2/ops_inode.c index 534e1e2c65ca..d232991b9046 100644 --- a/fs/gfs2/ops_inode.c +++ b/fs/gfs2/ops_inode.c | |||
| @@ -69,7 +69,7 @@ static int gfs2_create(struct inode *dir, struct dentry *dentry, | |||
| 69 | mark_inode_dirty(inode); | 69 | mark_inode_dirty(inode); |
| 70 | break; | 70 | break; |
| 71 | } else if (PTR_ERR(inode) != -EEXIST || | 71 | } else if (PTR_ERR(inode) != -EEXIST || |
| 72 | (nd && (nd->intent.open.flags & O_EXCL))) { | 72 | (nd && nd->flags & LOOKUP_EXCL)) { |
| 73 | gfs2_holder_uninit(ghs); | 73 | gfs2_holder_uninit(ghs); |
| 74 | return PTR_ERR(inode); | 74 | return PTR_ERR(inode); |
| 75 | } | 75 | } |
diff --git a/fs/hfs/inode.c b/fs/hfs/inode.c index 7e19835efa2e..c69b7ac75bf7 100644 --- a/fs/hfs/inode.c +++ b/fs/hfs/inode.c | |||
| @@ -511,13 +511,6 @@ void hfs_clear_inode(struct inode *inode) | |||
| 511 | } | 511 | } |
| 512 | } | 512 | } |
| 513 | 513 | ||
| 514 | static int hfs_permission(struct inode *inode, int mask) | ||
| 515 | { | ||
| 516 | if (S_ISREG(inode->i_mode) && mask & MAY_EXEC) | ||
| 517 | return 0; | ||
| 518 | return generic_permission(inode, mask, NULL); | ||
| 519 | } | ||
| 520 | |||
| 521 | static int hfs_file_open(struct inode *inode, struct file *file) | 514 | static int hfs_file_open(struct inode *inode, struct file *file) |
| 522 | { | 515 | { |
| 523 | if (HFS_IS_RSRC(inode)) | 516 | if (HFS_IS_RSRC(inode)) |
| @@ -616,7 +609,6 @@ static const struct inode_operations hfs_file_inode_operations = { | |||
| 616 | .lookup = hfs_file_lookup, | 609 | .lookup = hfs_file_lookup, |
| 617 | .truncate = hfs_file_truncate, | 610 | .truncate = hfs_file_truncate, |
| 618 | .setattr = hfs_inode_setattr, | 611 | .setattr = hfs_inode_setattr, |
| 619 | .permission = hfs_permission, | ||
| 620 | .setxattr = hfs_setxattr, | 612 | .setxattr = hfs_setxattr, |
| 621 | .getxattr = hfs_getxattr, | 613 | .getxattr = hfs_getxattr, |
| 622 | .listxattr = hfs_listxattr, | 614 | .listxattr = hfs_listxattr, |
diff --git a/fs/hfsplus/inode.c b/fs/hfsplus/inode.c index 963be644297a..b207f0e6fc22 100644 --- a/fs/hfsplus/inode.c +++ b/fs/hfsplus/inode.c | |||
| @@ -238,18 +238,6 @@ static void hfsplus_set_perms(struct inode *inode, struct hfsplus_perm *perms) | |||
| 238 | perms->dev = cpu_to_be32(HFSPLUS_I(inode).dev); | 238 | perms->dev = cpu_to_be32(HFSPLUS_I(inode).dev); |
| 239 | } | 239 | } |
| 240 | 240 | ||
| 241 | static int hfsplus_permission(struct inode *inode, int mask) | ||
| 242 | { | ||
| 243 | /* MAY_EXEC is also used for lookup, if no x bit is set allow lookup, | ||
| 244 | * open_exec has the same test, so it's still not executable, if a x bit | ||
| 245 | * is set fall back to standard permission check. | ||
| 246 | */ | ||
| 247 | if (S_ISREG(inode->i_mode) && mask & MAY_EXEC && !(inode->i_mode & 0111)) | ||
| 248 | return 0; | ||
| 249 | return generic_permission(inode, mask, NULL); | ||
| 250 | } | ||
| 251 | |||
| 252 | |||
| 253 | static int hfsplus_file_open(struct inode *inode, struct file *file) | 241 | static int hfsplus_file_open(struct inode *inode, struct file *file) |
| 254 | { | 242 | { |
| 255 | if (HFSPLUS_IS_RSRC(inode)) | 243 | if (HFSPLUS_IS_RSRC(inode)) |
| @@ -281,7 +269,6 @@ static int hfsplus_file_release(struct inode *inode, struct file *file) | |||
| 281 | static const struct inode_operations hfsplus_file_inode_operations = { | 269 | static const struct inode_operations hfsplus_file_inode_operations = { |
| 282 | .lookup = hfsplus_file_lookup, | 270 | .lookup = hfsplus_file_lookup, |
| 283 | .truncate = hfsplus_file_truncate, | 271 | .truncate = hfsplus_file_truncate, |
| 284 | .permission = hfsplus_permission, | ||
| 285 | .setxattr = hfsplus_setxattr, | 272 | .setxattr = hfsplus_setxattr, |
| 286 | .getxattr = hfsplus_getxattr, | 273 | .getxattr = hfsplus_getxattr, |
| 287 | .listxattr = hfsplus_listxattr, | 274 | .listxattr = hfsplus_listxattr, |
diff --git a/fs/hpfs/file.c b/fs/hpfs/file.c index be8be5040e07..64ab52259204 100644 --- a/fs/hpfs/file.c +++ b/fs/hpfs/file.c | |||
| @@ -143,5 +143,5 @@ const struct file_operations hpfs_file_ops = | |||
| 143 | const struct inode_operations hpfs_file_iops = | 143 | const struct inode_operations hpfs_file_iops = |
| 144 | { | 144 | { |
| 145 | .truncate = hpfs_truncate, | 145 | .truncate = hpfs_truncate, |
| 146 | .setattr = hpfs_notify_change, | 146 | .setattr = hpfs_setattr, |
| 147 | }; | 147 | }; |
diff --git a/fs/hpfs/hpfs_fn.h b/fs/hpfs/hpfs_fn.h index 42ff60ccf2a9..c2ea31bae313 100644 --- a/fs/hpfs/hpfs_fn.h +++ b/fs/hpfs/hpfs_fn.h | |||
| @@ -275,7 +275,7 @@ void hpfs_init_inode(struct inode *); | |||
| 275 | void hpfs_read_inode(struct inode *); | 275 | void hpfs_read_inode(struct inode *); |
| 276 | void hpfs_write_inode(struct inode *); | 276 | void hpfs_write_inode(struct inode *); |
| 277 | void hpfs_write_inode_nolock(struct inode *); | 277 | void hpfs_write_inode_nolock(struct inode *); |
| 278 | int hpfs_notify_change(struct dentry *, struct iattr *); | 278 | int hpfs_setattr(struct dentry *, struct iattr *); |
| 279 | void hpfs_write_if_changed(struct inode *); | 279 | void hpfs_write_if_changed(struct inode *); |
| 280 | void hpfs_delete_inode(struct inode *); | 280 | void hpfs_delete_inode(struct inode *); |
| 281 | 281 | ||
diff --git a/fs/hpfs/inode.c b/fs/hpfs/inode.c index 85d3e1d9ac00..39a1bfbea312 100644 --- a/fs/hpfs/inode.c +++ b/fs/hpfs/inode.c | |||
| @@ -260,19 +260,28 @@ void hpfs_write_inode_nolock(struct inode *i) | |||
| 260 | brelse(bh); | 260 | brelse(bh); |
| 261 | } | 261 | } |
| 262 | 262 | ||
| 263 | int hpfs_notify_change(struct dentry *dentry, struct iattr *attr) | 263 | int hpfs_setattr(struct dentry *dentry, struct iattr *attr) |
| 264 | { | 264 | { |
| 265 | struct inode *inode = dentry->d_inode; | 265 | struct inode *inode = dentry->d_inode; |
| 266 | int error=0; | 266 | int error = -EINVAL; |
| 267 | |||
| 267 | lock_kernel(); | 268 | lock_kernel(); |
| 268 | if ( ((attr->ia_valid & ATTR_SIZE) && attr->ia_size > inode->i_size) || | 269 | if (inode->i_ino == hpfs_sb(inode->i_sb)->sb_root) |
| 269 | (hpfs_sb(inode->i_sb)->sb_root == inode->i_ino) ) { | 270 | goto out_unlock; |
| 270 | error = -EINVAL; | 271 | if ((attr->ia_valid & ATTR_SIZE) && attr->ia_size > inode->i_size) |
| 271 | } else if ((error = inode_change_ok(inode, attr))) { | 272 | goto out_unlock; |
| 272 | } else if ((error = inode_setattr(inode, attr))) { | 273 | |
| 273 | } else { | 274 | error = inode_change_ok(inode, attr); |
| 274 | hpfs_write_inode(inode); | 275 | if (error) |
| 275 | } | 276 | goto out_unlock; |
| 277 | |||
| 278 | error = inode_setattr(inode, attr); | ||
| 279 | if (error) | ||
| 280 | goto out_unlock; | ||
| 281 | |||
| 282 | hpfs_write_inode(inode); | ||
| 283 | |||
| 284 | out_unlock: | ||
| 276 | unlock_kernel(); | 285 | unlock_kernel(); |
| 277 | return error; | 286 | return error; |
| 278 | } | 287 | } |
diff --git a/fs/hpfs/namei.c b/fs/hpfs/namei.c index d9c59a775449..10783f3d265a 100644 --- a/fs/hpfs/namei.c +++ b/fs/hpfs/namei.c | |||
| @@ -669,5 +669,5 @@ const struct inode_operations hpfs_dir_iops = | |||
| 669 | .rmdir = hpfs_rmdir, | 669 | .rmdir = hpfs_rmdir, |
| 670 | .mknod = hpfs_mknod, | 670 | .mknod = hpfs_mknod, |
| 671 | .rename = hpfs_rename, | 671 | .rename = hpfs_rename, |
| 672 | .setattr = hpfs_notify_change, | 672 | .setattr = hpfs_setattr, |
| 673 | }; | 673 | }; |
diff --git a/fs/isofs/export.c b/fs/isofs/export.c index bb219138331a..e81a30593ba9 100644 --- a/fs/isofs/export.c +++ b/fs/isofs/export.c | |||
| @@ -22,7 +22,7 @@ isofs_export_iget(struct super_block *sb, | |||
| 22 | __u32 generation) | 22 | __u32 generation) |
| 23 | { | 23 | { |
| 24 | struct inode *inode; | 24 | struct inode *inode; |
| 25 | struct dentry *result; | 25 | |
| 26 | if (block == 0) | 26 | if (block == 0) |
| 27 | return ERR_PTR(-ESTALE); | 27 | return ERR_PTR(-ESTALE); |
| 28 | inode = isofs_iget(sb, block, offset); | 28 | inode = isofs_iget(sb, block, offset); |
| @@ -32,12 +32,7 @@ isofs_export_iget(struct super_block *sb, | |||
| 32 | iput(inode); | 32 | iput(inode); |
| 33 | return ERR_PTR(-ESTALE); | 33 | return ERR_PTR(-ESTALE); |
| 34 | } | 34 | } |
| 35 | result = d_alloc_anon(inode); | 35 | return d_obtain_alias(inode); |
| 36 | if (!result) { | ||
| 37 | iput(inode); | ||
| 38 | return ERR_PTR(-ENOMEM); | ||
| 39 | } | ||
| 40 | return result; | ||
| 41 | } | 36 | } |
| 42 | 37 | ||
| 43 | /* This function is surprisingly simple. The trick is understanding | 38 | /* This function is surprisingly simple. The trick is understanding |
| @@ -51,7 +46,6 @@ static struct dentry *isofs_export_get_parent(struct dentry *child) | |||
| 51 | unsigned long parent_offset = 0; | 46 | unsigned long parent_offset = 0; |
| 52 | struct inode *child_inode = child->d_inode; | 47 | struct inode *child_inode = child->d_inode; |
| 53 | struct iso_inode_info *e_child_inode = ISOFS_I(child_inode); | 48 | struct iso_inode_info *e_child_inode = ISOFS_I(child_inode); |
| 54 | struct inode *parent_inode = NULL; | ||
| 55 | struct iso_directory_record *de = NULL; | 49 | struct iso_directory_record *de = NULL; |
| 56 | struct buffer_head * bh = NULL; | 50 | struct buffer_head * bh = NULL; |
| 57 | struct dentry *rv = NULL; | 51 | struct dentry *rv = NULL; |
| @@ -104,28 +98,11 @@ static struct dentry *isofs_export_get_parent(struct dentry *child) | |||
| 104 | /* Normalize */ | 98 | /* Normalize */ |
| 105 | isofs_normalize_block_and_offset(de, &parent_block, &parent_offset); | 99 | isofs_normalize_block_and_offset(de, &parent_block, &parent_offset); |
| 106 | 100 | ||
| 107 | /* Get the inode. */ | 101 | rv = d_obtain_alias(isofs_iget(child_inode->i_sb, parent_block, |
| 108 | parent_inode = isofs_iget(child_inode->i_sb, | 102 | parent_offset)); |
| 109 | parent_block, | ||
| 110 | parent_offset); | ||
| 111 | if (IS_ERR(parent_inode)) { | ||
| 112 | rv = ERR_CAST(parent_inode); | ||
| 113 | if (rv != ERR_PTR(-ENOMEM)) | ||
| 114 | rv = ERR_PTR(-EACCES); | ||
| 115 | goto out; | ||
| 116 | } | ||
| 117 | |||
| 118 | /* Allocate the dentry. */ | ||
| 119 | rv = d_alloc_anon(parent_inode); | ||
| 120 | if (rv == NULL) { | ||
| 121 | rv = ERR_PTR(-ENOMEM); | ||
| 122 | goto out; | ||
| 123 | } | ||
| 124 | |||
| 125 | out: | 103 | out: |
| 126 | if (bh) { | 104 | if (bh) |
| 127 | brelse(bh); | 105 | brelse(bh); |
| 128 | } | ||
| 129 | return rv; | 106 | return rv; |
| 130 | } | 107 | } |
| 131 | 108 | ||
diff --git a/fs/jffs2/dir.c b/fs/jffs2/dir.c index b1aaae823a52..6f60cc910f4c 100644 --- a/fs/jffs2/dir.c +++ b/fs/jffs2/dir.c | |||
| @@ -39,7 +39,8 @@ const struct file_operations jffs2_dir_operations = | |||
| 39 | .read = generic_read_dir, | 39 | .read = generic_read_dir, |
| 40 | .readdir = jffs2_readdir, | 40 | .readdir = jffs2_readdir, |
| 41 | .unlocked_ioctl=jffs2_ioctl, | 41 | .unlocked_ioctl=jffs2_ioctl, |
| 42 | .fsync = jffs2_fsync | 42 | .fsync = jffs2_fsync, |
| 43 | .llseek = generic_file_llseek, | ||
| 43 | }; | 44 | }; |
| 44 | 45 | ||
| 45 | 46 | ||
| @@ -108,9 +109,7 @@ static struct dentry *jffs2_lookup(struct inode *dir_i, struct dentry *target, | |||
| 108 | } | 109 | } |
| 109 | } | 110 | } |
| 110 | 111 | ||
| 111 | d_add(target, inode); | 112 | return d_splice_alias(inode, target); |
| 112 | |||
| 113 | return NULL; | ||
| 114 | } | 113 | } |
| 115 | 114 | ||
| 116 | /***********************************************************************/ | 115 | /***********************************************************************/ |
diff --git a/fs/jffs2/super.c b/fs/jffs2/super.c index efd401257ed9..4c4e18c54a51 100644 --- a/fs/jffs2/super.c +++ b/fs/jffs2/super.c | |||
| @@ -22,6 +22,7 @@ | |||
| 22 | #include <linux/mtd/super.h> | 22 | #include <linux/mtd/super.h> |
| 23 | #include <linux/ctype.h> | 23 | #include <linux/ctype.h> |
| 24 | #include <linux/namei.h> | 24 | #include <linux/namei.h> |
| 25 | #include <linux/exportfs.h> | ||
| 25 | #include "compr.h" | 26 | #include "compr.h" |
| 26 | #include "nodelist.h" | 27 | #include "nodelist.h" |
| 27 | 28 | ||
| @@ -62,6 +63,52 @@ static int jffs2_sync_fs(struct super_block *sb, int wait) | |||
| 62 | return 0; | 63 | return 0; |
| 63 | } | 64 | } |
| 64 | 65 | ||
| 66 | static struct inode *jffs2_nfs_get_inode(struct super_block *sb, uint64_t ino, | ||
| 67 | uint32_t generation) | ||
| 68 | { | ||
| 69 | /* We don't care about i_generation. We'll destroy the flash | ||
| 70 | before we start re-using inode numbers anyway. And even | ||
| 71 | if that wasn't true, we'd have other problems...*/ | ||
| 72 | return jffs2_iget(sb, ino); | ||
| 73 | } | ||
| 74 | |||
| 75 | static struct dentry *jffs2_fh_to_dentry(struct super_block *sb, struct fid *fid, | ||
| 76 | int fh_len, int fh_type) | ||
| 77 | { | ||
| 78 | return generic_fh_to_dentry(sb, fid, fh_len, fh_type, | ||
| 79 | jffs2_nfs_get_inode); | ||
| 80 | } | ||
| 81 | |||
| 82 | static struct dentry *jffs2_fh_to_parent(struct super_block *sb, struct fid *fid, | ||
| 83 | int fh_len, int fh_type) | ||
| 84 | { | ||
| 85 | return generic_fh_to_parent(sb, fid, fh_len, fh_type, | ||
| 86 | jffs2_nfs_get_inode); | ||
| 87 | } | ||
| 88 | |||
| 89 | static struct dentry *jffs2_get_parent(struct dentry *child) | ||
| 90 | { | ||
| 91 | struct jffs2_inode_info *f; | ||
| 92 | uint32_t pino; | ||
| 93 | |||
| 94 | BUG_ON(!S_ISDIR(child->d_inode->i_mode)); | ||
| 95 | |||
| 96 | f = JFFS2_INODE_INFO(child->d_inode); | ||
| 97 | |||
| 98 | pino = f->inocache->pino_nlink; | ||
| 99 | |||
| 100 | JFFS2_DEBUG("Parent of directory ino #%u is #%u\n", | ||
| 101 | f->inocache->ino, pino); | ||
| 102 | |||
| 103 | return d_obtain_alias(jffs2_iget(child->d_inode->i_sb, pino)); | ||
| 104 | } | ||
| 105 | |||
| 106 | static struct export_operations jffs2_export_ops = { | ||
| 107 | .get_parent = jffs2_get_parent, | ||
| 108 | .fh_to_dentry = jffs2_fh_to_dentry, | ||
| 109 | .fh_to_parent = jffs2_fh_to_parent, | ||
| 110 | }; | ||
| 111 | |||
| 65 | static const struct super_operations jffs2_super_operations = | 112 | static const struct super_operations jffs2_super_operations = |
| 66 | { | 113 | { |
| 67 | .alloc_inode = jffs2_alloc_inode, | 114 | .alloc_inode = jffs2_alloc_inode, |
| @@ -104,6 +151,7 @@ static int jffs2_fill_super(struct super_block *sb, void *data, int silent) | |||
| 104 | spin_lock_init(&c->inocache_lock); | 151 | spin_lock_init(&c->inocache_lock); |
| 105 | 152 | ||
| 106 | sb->s_op = &jffs2_super_operations; | 153 | sb->s_op = &jffs2_super_operations; |
| 154 | sb->s_export_op = &jffs2_export_ops; | ||
| 107 | sb->s_flags = sb->s_flags | MS_NOATIME; | 155 | sb->s_flags = sb->s_flags | MS_NOATIME; |
| 108 | sb->s_xattr = jffs2_xattr_handlers; | 156 | sb->s_xattr = jffs2_xattr_handlers; |
| 109 | #ifdef CONFIG_JFFS2_FS_POSIX_ACL | 157 | #ifdef CONFIG_JFFS2_FS_POSIX_ACL |
diff --git a/fs/jfs/namei.c b/fs/jfs/namei.c index 2aba82386810..cc3cedffbfa1 100644 --- a/fs/jfs/namei.c +++ b/fs/jfs/namei.c | |||
| @@ -1511,25 +1511,12 @@ struct dentry *jfs_fh_to_parent(struct super_block *sb, struct fid *fid, | |||
| 1511 | 1511 | ||
| 1512 | struct dentry *jfs_get_parent(struct dentry *dentry) | 1512 | struct dentry *jfs_get_parent(struct dentry *dentry) |
| 1513 | { | 1513 | { |
| 1514 | struct super_block *sb = dentry->d_inode->i_sb; | ||
| 1515 | struct dentry *parent = ERR_PTR(-ENOENT); | ||
| 1516 | struct inode *inode; | ||
| 1517 | unsigned long parent_ino; | 1514 | unsigned long parent_ino; |
| 1518 | 1515 | ||
| 1519 | parent_ino = | 1516 | parent_ino = |
| 1520 | le32_to_cpu(JFS_IP(dentry->d_inode)->i_dtroot.header.idotdot); | 1517 | le32_to_cpu(JFS_IP(dentry->d_inode)->i_dtroot.header.idotdot); |
| 1521 | inode = jfs_iget(sb, parent_ino); | ||
| 1522 | if (IS_ERR(inode)) { | ||
| 1523 | parent = ERR_CAST(inode); | ||
| 1524 | } else { | ||
| 1525 | parent = d_alloc_anon(inode); | ||
| 1526 | if (!parent) { | ||
| 1527 | parent = ERR_PTR(-ENOMEM); | ||
| 1528 | iput(inode); | ||
| 1529 | } | ||
| 1530 | } | ||
| 1531 | 1518 | ||
| 1532 | return parent; | 1519 | return d_obtain_alias(jfs_iget(dentry->d_inode->i_sb, parent_ino)); |
| 1533 | } | 1520 | } |
| 1534 | 1521 | ||
| 1535 | const struct inode_operations jfs_dir_inode_operations = { | 1522 | const struct inode_operations jfs_dir_inode_operations = { |
| @@ -1560,6 +1547,7 @@ const struct file_operations jfs_dir_operations = { | |||
| 1560 | #ifdef CONFIG_COMPAT | 1547 | #ifdef CONFIG_COMPAT |
| 1561 | .compat_ioctl = jfs_compat_ioctl, | 1548 | .compat_ioctl = jfs_compat_ioctl, |
| 1562 | #endif | 1549 | #endif |
| 1550 | .llseek = generic_file_llseek, | ||
| 1563 | }; | 1551 | }; |
| 1564 | 1552 | ||
| 1565 | static int jfs_ci_hash(struct dentry *dir, struct qstr *this) | 1553 | static int jfs_ci_hash(struct dentry *dir, struct qstr *this) |
diff --git a/fs/libfs.c b/fs/libfs.c index 1add676a19df..74688598bcf7 100644 --- a/fs/libfs.c +++ b/fs/libfs.c | |||
| @@ -732,28 +732,6 @@ out: | |||
| 732 | return ret; | 732 | return ret; |
| 733 | } | 733 | } |
| 734 | 734 | ||
| 735 | /* | ||
| 736 | * This is what d_alloc_anon should have been. Once the exportfs | ||
| 737 | * argument transition has been finished I will update d_alloc_anon | ||
| 738 | * to this prototype and this wrapper will go away. --hch | ||
| 739 | */ | ||
| 740 | static struct dentry *exportfs_d_alloc(struct inode *inode) | ||
| 741 | { | ||
| 742 | struct dentry *dentry; | ||
| 743 | |||
| 744 | if (!inode) | ||
| 745 | return NULL; | ||
| 746 | if (IS_ERR(inode)) | ||
| 747 | return ERR_PTR(PTR_ERR(inode)); | ||
| 748 | |||
| 749 | dentry = d_alloc_anon(inode); | ||
| 750 | if (!dentry) { | ||
| 751 | iput(inode); | ||
| 752 | dentry = ERR_PTR(-ENOMEM); | ||
| 753 | } | ||
| 754 | return dentry; | ||
| 755 | } | ||
| 756 | |||
| 757 | /** | 735 | /** |
| 758 | * generic_fh_to_dentry - generic helper for the fh_to_dentry export operation | 736 | * generic_fh_to_dentry - generic helper for the fh_to_dentry export operation |
| 759 | * @sb: filesystem to do the file handle conversion on | 737 | * @sb: filesystem to do the file handle conversion on |
| @@ -782,7 +760,7 @@ struct dentry *generic_fh_to_dentry(struct super_block *sb, struct fid *fid, | |||
| 782 | break; | 760 | break; |
| 783 | } | 761 | } |
| 784 | 762 | ||
| 785 | return exportfs_d_alloc(inode); | 763 | return d_obtain_alias(inode); |
| 786 | } | 764 | } |
| 787 | EXPORT_SYMBOL_GPL(generic_fh_to_dentry); | 765 | EXPORT_SYMBOL_GPL(generic_fh_to_dentry); |
| 788 | 766 | ||
| @@ -815,7 +793,7 @@ struct dentry *generic_fh_to_parent(struct super_block *sb, struct fid *fid, | |||
| 815 | break; | 793 | break; |
| 816 | } | 794 | } |
| 817 | 795 | ||
| 818 | return exportfs_d_alloc(inode); | 796 | return d_obtain_alias(inode); |
| 819 | } | 797 | } |
| 820 | EXPORT_SYMBOL_GPL(generic_fh_to_parent); | 798 | EXPORT_SYMBOL_GPL(generic_fh_to_parent); |
| 821 | 799 | ||
diff --git a/fs/namei.c b/fs/namei.c index 4ea63ed5e791..09ce58e49e72 100644 --- a/fs/namei.c +++ b/fs/namei.c | |||
| @@ -212,8 +212,7 @@ int generic_permission(struct inode *inode, int mask, | |||
| 212 | * Read/write DACs are always overridable. | 212 | * Read/write DACs are always overridable. |
| 213 | * Executable DACs are overridable if at least one exec bit is set. | 213 | * Executable DACs are overridable if at least one exec bit is set. |
| 214 | */ | 214 | */ |
| 215 | if (!(mask & MAY_EXEC) || | 215 | if (!(mask & MAY_EXEC) || execute_ok(inode)) |
| 216 | (inode->i_mode & S_IXUGO) || S_ISDIR(inode->i_mode)) | ||
| 217 | if (capable(CAP_DAC_OVERRIDE)) | 216 | if (capable(CAP_DAC_OVERRIDE)) |
| 218 | return 0; | 217 | return 0; |
| 219 | 218 | ||
| @@ -249,23 +248,11 @@ int inode_permission(struct inode *inode, int mask) | |||
| 249 | } | 248 | } |
| 250 | 249 | ||
| 251 | /* Ordinary permission routines do not understand MAY_APPEND. */ | 250 | /* Ordinary permission routines do not understand MAY_APPEND. */ |
| 252 | if (inode->i_op && inode->i_op->permission) { | 251 | if (inode->i_op && inode->i_op->permission) |
| 253 | retval = inode->i_op->permission(inode, mask); | 252 | retval = inode->i_op->permission(inode, mask); |
| 254 | if (!retval) { | 253 | else |
| 255 | /* | ||
| 256 | * Exec permission on a regular file is denied if none | ||
| 257 | * of the execute bits are set. | ||
| 258 | * | ||
| 259 | * This check should be done by the ->permission() | ||
| 260 | * method. | ||
| 261 | */ | ||
| 262 | if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode) && | ||
| 263 | !(inode->i_mode & S_IXUGO)) | ||
| 264 | return -EACCES; | ||
| 265 | } | ||
| 266 | } else { | ||
| 267 | retval = generic_permission(inode, mask, NULL); | 254 | retval = generic_permission(inode, mask, NULL); |
| 268 | } | 255 | |
| 269 | if (retval) | 256 | if (retval) |
| 270 | return retval; | 257 | return retval; |
| 271 | 258 | ||
| @@ -1106,6 +1093,15 @@ int path_lookup(const char *name, unsigned int flags, | |||
| 1106 | return do_path_lookup(AT_FDCWD, name, flags, nd); | 1093 | return do_path_lookup(AT_FDCWD, name, flags, nd); |
| 1107 | } | 1094 | } |
| 1108 | 1095 | ||
| 1096 | int kern_path(const char *name, unsigned int flags, struct path *path) | ||
| 1097 | { | ||
| 1098 | struct nameidata nd; | ||
| 1099 | int res = do_path_lookup(AT_FDCWD, name, flags, &nd); | ||
| 1100 | if (!res) | ||
| 1101 | *path = nd.path; | ||
| 1102 | return res; | ||
| 1103 | } | ||
| 1104 | |||
| 1109 | /** | 1105 | /** |
| 1110 | * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair | 1106 | * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair |
| 1111 | * @dentry: pointer to dentry of the base directory | 1107 | * @dentry: pointer to dentry of the base directory |
| @@ -1138,9 +1134,16 @@ int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt, | |||
| 1138 | 1134 | ||
| 1139 | } | 1135 | } |
| 1140 | 1136 | ||
| 1141 | static int __path_lookup_intent_open(int dfd, const char *name, | 1137 | /** |
| 1142 | unsigned int lookup_flags, struct nameidata *nd, | 1138 | * path_lookup_open - lookup a file path with open intent |
| 1143 | int open_flags, int create_mode) | 1139 | * @dfd: the directory to use as base, or AT_FDCWD |
| 1140 | * @name: pointer to file name | ||
| 1141 | * @lookup_flags: lookup intent flags | ||
| 1142 | * @nd: pointer to nameidata | ||
| 1143 | * @open_flags: open intent flags | ||
| 1144 | */ | ||
| 1145 | int path_lookup_open(int dfd, const char *name, unsigned int lookup_flags, | ||
| 1146 | struct nameidata *nd, int open_flags) | ||
| 1144 | { | 1147 | { |
| 1145 | struct file *filp = get_empty_filp(); | 1148 | struct file *filp = get_empty_filp(); |
| 1146 | int err; | 1149 | int err; |
| @@ -1149,7 +1152,7 @@ static int __path_lookup_intent_open(int dfd, const char *name, | |||
| 1149 | return -ENFILE; | 1152 | return -ENFILE; |
| 1150 | nd->intent.open.file = filp; | 1153 | nd->intent.open.file = filp; |
| 1151 | nd->intent.open.flags = open_flags; | 1154 | nd->intent.open.flags = open_flags; |
| 1152 | nd->intent.open.create_mode = create_mode; | 1155 | nd->intent.open.create_mode = 0; |
| 1153 | err = do_path_lookup(dfd, name, lookup_flags|LOOKUP_OPEN, nd); | 1156 | err = do_path_lookup(dfd, name, lookup_flags|LOOKUP_OPEN, nd); |
| 1154 | if (IS_ERR(nd->intent.open.file)) { | 1157 | if (IS_ERR(nd->intent.open.file)) { |
| 1155 | if (err == 0) { | 1158 | if (err == 0) { |
| @@ -1161,38 +1164,6 @@ static int __path_lookup_intent_open(int dfd, const char *name, | |||
| 1161 | return err; | 1164 | return err; |
| 1162 | } | 1165 | } |
| 1163 | 1166 | ||
| 1164 | /** | ||
| 1165 | * path_lookup_open - lookup a file path with open intent | ||
| 1166 | * @dfd: the directory to use as base, or AT_FDCWD | ||
| 1167 | * @name: pointer to file name | ||
| 1168 | * @lookup_flags: lookup intent flags | ||
| 1169 | * @nd: pointer to nameidata | ||
| 1170 | * @open_flags: open intent flags | ||
| 1171 | */ | ||
| 1172 | int path_lookup_open(int dfd, const char *name, unsigned int lookup_flags, | ||
| 1173 | struct nameidata *nd, int open_flags) | ||
| 1174 | { | ||
| 1175 | return __path_lookup_intent_open(dfd, name, lookup_flags, nd, | ||
| 1176 | open_flags, 0); | ||
| 1177 | } | ||
| 1178 | |||
| 1179 | /** | ||
| 1180 | * path_lookup_create - lookup a file path with open + create intent | ||
| 1181 | * @dfd: the directory to use as base, or AT_FDCWD | ||
| 1182 | * @name: pointer to file name | ||
| 1183 | * @lookup_flags: lookup intent flags | ||
| 1184 | * @nd: pointer to nameidata | ||
| 1185 | * @open_flags: open intent flags | ||
| 1186 | * @create_mode: create intent flags | ||
| 1187 | */ | ||
| 1188 | static int path_lookup_create(int dfd, const char *name, | ||
| 1189 | unsigned int lookup_flags, struct nameidata *nd, | ||
| 1190 | int open_flags, int create_mode) | ||
| 1191 | { | ||
| 1192 | return __path_lookup_intent_open(dfd, name, lookup_flags|LOOKUP_CREATE, | ||
| 1193 | nd, open_flags, create_mode); | ||
| 1194 | } | ||
| 1195 | |||
| 1196 | static struct dentry *__lookup_hash(struct qstr *name, | 1167 | static struct dentry *__lookup_hash(struct qstr *name, |
| 1197 | struct dentry *base, struct nameidata *nd) | 1168 | struct dentry *base, struct nameidata *nd) |
| 1198 | { | 1169 | { |
| @@ -1470,20 +1441,18 @@ struct dentry *lock_rename(struct dentry *p1, struct dentry *p2) | |||
| 1470 | 1441 | ||
| 1471 | mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex); | 1442 | mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex); |
| 1472 | 1443 | ||
| 1473 | for (p = p1; p->d_parent != p; p = p->d_parent) { | 1444 | p = d_ancestor(p2, p1); |
| 1474 | if (p->d_parent == p2) { | 1445 | if (p) { |
| 1475 | mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT); | 1446 | mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT); |
| 1476 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD); | 1447 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD); |
| 1477 | return p; | 1448 | return p; |
| 1478 | } | ||
| 1479 | } | 1449 | } |
| 1480 | 1450 | ||
| 1481 | for (p = p2; p->d_parent != p; p = p->d_parent) { | 1451 | p = d_ancestor(p1, p2); |
| 1482 | if (p->d_parent == p1) { | 1452 | if (p) { |
| 1483 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT); | 1453 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT); |
| 1484 | mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD); | 1454 | mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD); |
| 1485 | return p; | 1455 | return p; |
| 1486 | } | ||
| 1487 | } | 1456 | } |
| 1488 | 1457 | ||
| 1489 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT); | 1458 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT); |
| @@ -1702,8 +1671,7 @@ struct file *do_filp_open(int dfd, const char *pathname, | |||
| 1702 | /* | 1671 | /* |
| 1703 | * Create - we need to know the parent. | 1672 | * Create - we need to know the parent. |
| 1704 | */ | 1673 | */ |
| 1705 | error = path_lookup_create(dfd, pathname, LOOKUP_PARENT, | 1674 | error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd); |
| 1706 | &nd, flag, mode); | ||
| 1707 | if (error) | 1675 | if (error) |
| 1708 | return ERR_PTR(error); | 1676 | return ERR_PTR(error); |
| 1709 | 1677 | ||
| @@ -1714,10 +1682,20 @@ struct file *do_filp_open(int dfd, const char *pathname, | |||
| 1714 | */ | 1682 | */ |
| 1715 | error = -EISDIR; | 1683 | error = -EISDIR; |
| 1716 | if (nd.last_type != LAST_NORM || nd.last.name[nd.last.len]) | 1684 | if (nd.last_type != LAST_NORM || nd.last.name[nd.last.len]) |
| 1717 | goto exit; | 1685 | goto exit_parent; |
| 1718 | 1686 | ||
| 1687 | error = -ENFILE; | ||
| 1688 | filp = get_empty_filp(); | ||
| 1689 | if (filp == NULL) | ||
| 1690 | goto exit_parent; | ||
| 1691 | nd.intent.open.file = filp; | ||
| 1692 | nd.intent.open.flags = flag; | ||
| 1693 | nd.intent.open.create_mode = mode; | ||
| 1719 | dir = nd.path.dentry; | 1694 | dir = nd.path.dentry; |
| 1720 | nd.flags &= ~LOOKUP_PARENT; | 1695 | nd.flags &= ~LOOKUP_PARENT; |
| 1696 | nd.flags |= LOOKUP_CREATE | LOOKUP_OPEN; | ||
| 1697 | if (flag & O_EXCL) | ||
| 1698 | nd.flags |= LOOKUP_EXCL; | ||
| 1721 | mutex_lock(&dir->d_inode->i_mutex); | 1699 | mutex_lock(&dir->d_inode->i_mutex); |
| 1722 | path.dentry = lookup_hash(&nd); | 1700 | path.dentry = lookup_hash(&nd); |
| 1723 | path.mnt = nd.path.mnt; | 1701 | path.mnt = nd.path.mnt; |
| @@ -1822,6 +1800,7 @@ exit_dput: | |||
| 1822 | exit: | 1800 | exit: |
| 1823 | if (!IS_ERR(nd.intent.open.file)) | 1801 | if (!IS_ERR(nd.intent.open.file)) |
| 1824 | release_open_intent(&nd); | 1802 | release_open_intent(&nd); |
| 1803 | exit_parent: | ||
| 1825 | path_put(&nd.path); | 1804 | path_put(&nd.path); |
| 1826 | return ERR_PTR(error); | 1805 | return ERR_PTR(error); |
| 1827 | 1806 | ||
| @@ -1914,7 +1893,7 @@ struct dentry *lookup_create(struct nameidata *nd, int is_dir) | |||
| 1914 | if (nd->last_type != LAST_NORM) | 1893 | if (nd->last_type != LAST_NORM) |
| 1915 | goto fail; | 1894 | goto fail; |
| 1916 | nd->flags &= ~LOOKUP_PARENT; | 1895 | nd->flags &= ~LOOKUP_PARENT; |
| 1917 | nd->flags |= LOOKUP_CREATE; | 1896 | nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL; |
| 1918 | nd->intent.open.flags = O_EXCL; | 1897 | nd->intent.open.flags = O_EXCL; |
| 1919 | 1898 | ||
| 1920 | /* | 1899 | /* |
| @@ -2178,16 +2157,19 @@ static long do_rmdir(int dfd, const char __user *pathname) | |||
| 2178 | return error; | 2157 | return error; |
| 2179 | 2158 | ||
| 2180 | switch(nd.last_type) { | 2159 | switch(nd.last_type) { |
| 2181 | case LAST_DOTDOT: | 2160 | case LAST_DOTDOT: |
| 2182 | error = -ENOTEMPTY; | 2161 | error = -ENOTEMPTY; |
| 2183 | goto exit1; | 2162 | goto exit1; |
| 2184 | case LAST_DOT: | 2163 | case LAST_DOT: |
| 2185 | error = -EINVAL; | 2164 | error = -EINVAL; |
| 2186 | goto exit1; | 2165 | goto exit1; |
| 2187 | case LAST_ROOT: | 2166 | case LAST_ROOT: |
| 2188 | error = -EBUSY; | 2167 | error = -EBUSY; |
| 2189 | goto exit1; | 2168 | goto exit1; |
| 2190 | } | 2169 | } |
| 2170 | |||
| 2171 | nd.flags &= ~LOOKUP_PARENT; | ||
| 2172 | |||
| 2191 | mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT); | 2173 | mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT); |
| 2192 | dentry = lookup_hash(&nd); | 2174 | dentry = lookup_hash(&nd); |
| 2193 | error = PTR_ERR(dentry); | 2175 | error = PTR_ERR(dentry); |
| @@ -2265,6 +2247,9 @@ static long do_unlinkat(int dfd, const char __user *pathname) | |||
| 2265 | error = -EISDIR; | 2247 | error = -EISDIR; |
| 2266 | if (nd.last_type != LAST_NORM) | 2248 | if (nd.last_type != LAST_NORM) |
| 2267 | goto exit1; | 2249 | goto exit1; |
| 2250 | |||
| 2251 | nd.flags &= ~LOOKUP_PARENT; | ||
| 2252 | |||
| 2268 | mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT); | 2253 | mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT); |
| 2269 | dentry = lookup_hash(&nd); | 2254 | dentry = lookup_hash(&nd); |
| 2270 | error = PTR_ERR(dentry); | 2255 | error = PTR_ERR(dentry); |
| @@ -2654,6 +2639,10 @@ asmlinkage long sys_renameat(int olddfd, const char __user *oldname, | |||
| 2654 | if (newnd.last_type != LAST_NORM) | 2639 | if (newnd.last_type != LAST_NORM) |
| 2655 | goto exit2; | 2640 | goto exit2; |
| 2656 | 2641 | ||
| 2642 | oldnd.flags &= ~LOOKUP_PARENT; | ||
| 2643 | newnd.flags &= ~LOOKUP_PARENT; | ||
| 2644 | newnd.flags |= LOOKUP_RENAME_TARGET; | ||
| 2645 | |||
| 2657 | trap = lock_rename(new_dir, old_dir); | 2646 | trap = lock_rename(new_dir, old_dir); |
| 2658 | 2647 | ||
| 2659 | old_dentry = lookup_hash(&oldnd); | 2648 | old_dentry = lookup_hash(&oldnd); |
| @@ -2855,6 +2844,7 @@ EXPORT_SYMBOL(__page_symlink); | |||
| 2855 | EXPORT_SYMBOL(page_symlink); | 2844 | EXPORT_SYMBOL(page_symlink); |
| 2856 | EXPORT_SYMBOL(page_symlink_inode_operations); | 2845 | EXPORT_SYMBOL(page_symlink_inode_operations); |
| 2857 | EXPORT_SYMBOL(path_lookup); | 2846 | EXPORT_SYMBOL(path_lookup); |
| 2847 | EXPORT_SYMBOL(kern_path); | ||
| 2858 | EXPORT_SYMBOL(vfs_path_lookup); | 2848 | EXPORT_SYMBOL(vfs_path_lookup); |
| 2859 | EXPORT_SYMBOL(inode_permission); | 2849 | EXPORT_SYMBOL(inode_permission); |
| 2860 | EXPORT_SYMBOL(vfs_permission); | 2850 | EXPORT_SYMBOL(vfs_permission); |
diff --git a/fs/namespace.c b/fs/namespace.c index 6e283c93b50d..cce46702d33c 100644 --- a/fs/namespace.c +++ b/fs/namespace.c | |||
| @@ -1167,19 +1167,19 @@ asmlinkage long sys_oldumount(char __user * name) | |||
| 1167 | 1167 | ||
| 1168 | #endif | 1168 | #endif |
| 1169 | 1169 | ||
| 1170 | static int mount_is_safe(struct nameidata *nd) | 1170 | static int mount_is_safe(struct path *path) |
| 1171 | { | 1171 | { |
| 1172 | if (capable(CAP_SYS_ADMIN)) | 1172 | if (capable(CAP_SYS_ADMIN)) |
| 1173 | return 0; | 1173 | return 0; |
| 1174 | return -EPERM; | 1174 | return -EPERM; |
| 1175 | #ifdef notyet | 1175 | #ifdef notyet |
| 1176 | if (S_ISLNK(nd->path.dentry->d_inode->i_mode)) | 1176 | if (S_ISLNK(path->dentry->d_inode->i_mode)) |
| 1177 | return -EPERM; | 1177 | return -EPERM; |
| 1178 | if (nd->path.dentry->d_inode->i_mode & S_ISVTX) { | 1178 | if (path->dentry->d_inode->i_mode & S_ISVTX) { |
| 1179 | if (current->uid != nd->path.dentry->d_inode->i_uid) | 1179 | if (current->uid != path->dentry->d_inode->i_uid) |
| 1180 | return -EPERM; | 1180 | return -EPERM; |
| 1181 | } | 1181 | } |
| 1182 | if (vfs_permission(nd, MAY_WRITE)) | 1182 | if (inode_permission(path->dentry->d_inode, MAY_WRITE)) |
| 1183 | return -EPERM; | 1183 | return -EPERM; |
| 1184 | return 0; | 1184 | return 0; |
| 1185 | #endif | 1185 | #endif |
| @@ -1425,11 +1425,10 @@ out_unlock: | |||
| 1425 | 1425 | ||
| 1426 | /* | 1426 | /* |
| 1427 | * recursively change the type of the mountpoint. | 1427 | * recursively change the type of the mountpoint. |
| 1428 | * noinline this do_mount helper to save do_mount stack space. | ||
| 1429 | */ | 1428 | */ |
| 1430 | static noinline int do_change_type(struct nameidata *nd, int flag) | 1429 | static int do_change_type(struct path *path, int flag) |
| 1431 | { | 1430 | { |
| 1432 | struct vfsmount *m, *mnt = nd->path.mnt; | 1431 | struct vfsmount *m, *mnt = path->mnt; |
| 1433 | int recurse = flag & MS_REC; | 1432 | int recurse = flag & MS_REC; |
| 1434 | int type = flag & ~MS_REC; | 1433 | int type = flag & ~MS_REC; |
| 1435 | int err = 0; | 1434 | int err = 0; |
| @@ -1437,7 +1436,7 @@ static noinline int do_change_type(struct nameidata *nd, int flag) | |||
| 1437 | if (!capable(CAP_SYS_ADMIN)) | 1436 | if (!capable(CAP_SYS_ADMIN)) |
| 1438 | return -EPERM; | 1437 | return -EPERM; |
| 1439 | 1438 | ||
| 1440 | if (nd->path.dentry != nd->path.mnt->mnt_root) | 1439 | if (path->dentry != path->mnt->mnt_root) |
| 1441 | return -EINVAL; | 1440 | return -EINVAL; |
| 1442 | 1441 | ||
| 1443 | down_write(&namespace_sem); | 1442 | down_write(&namespace_sem); |
| @@ -1459,40 +1458,39 @@ static noinline int do_change_type(struct nameidata *nd, int flag) | |||
| 1459 | 1458 | ||
| 1460 | /* | 1459 | /* |
| 1461 | * do loopback mount. | 1460 | * do loopback mount. |
| 1462 | * noinline this do_mount helper to save do_mount stack space. | ||
| 1463 | */ | 1461 | */ |
| 1464 | static noinline int do_loopback(struct nameidata *nd, char *old_name, | 1462 | static int do_loopback(struct path *path, char *old_name, |
| 1465 | int recurse) | 1463 | int recurse) |
| 1466 | { | 1464 | { |
| 1467 | struct nameidata old_nd; | 1465 | struct path old_path; |
| 1468 | struct vfsmount *mnt = NULL; | 1466 | struct vfsmount *mnt = NULL; |
| 1469 | int err = mount_is_safe(nd); | 1467 | int err = mount_is_safe(path); |
| 1470 | if (err) | 1468 | if (err) |
| 1471 | return err; | 1469 | return err; |
| 1472 | if (!old_name || !*old_name) | 1470 | if (!old_name || !*old_name) |
| 1473 | return -EINVAL; | 1471 | return -EINVAL; |
| 1474 | err = path_lookup(old_name, LOOKUP_FOLLOW, &old_nd); | 1472 | err = kern_path(old_name, LOOKUP_FOLLOW, &old_path); |
| 1475 | if (err) | 1473 | if (err) |
| 1476 | return err; | 1474 | return err; |
| 1477 | 1475 | ||
| 1478 | down_write(&namespace_sem); | 1476 | down_write(&namespace_sem); |
| 1479 | err = -EINVAL; | 1477 | err = -EINVAL; |
| 1480 | if (IS_MNT_UNBINDABLE(old_nd.path.mnt)) | 1478 | if (IS_MNT_UNBINDABLE(old_path.mnt)) |
| 1481 | goto out; | 1479 | goto out; |
| 1482 | 1480 | ||
| 1483 | if (!check_mnt(nd->path.mnt) || !check_mnt(old_nd.path.mnt)) | 1481 | if (!check_mnt(path->mnt) || !check_mnt(old_path.mnt)) |
| 1484 | goto out; | 1482 | goto out; |
| 1485 | 1483 | ||
| 1486 | err = -ENOMEM; | 1484 | err = -ENOMEM; |
| 1487 | if (recurse) | 1485 | if (recurse) |
| 1488 | mnt = copy_tree(old_nd.path.mnt, old_nd.path.dentry, 0); | 1486 | mnt = copy_tree(old_path.mnt, old_path.dentry, 0); |
| 1489 | else | 1487 | else |
| 1490 | mnt = clone_mnt(old_nd.path.mnt, old_nd.path.dentry, 0); | 1488 | mnt = clone_mnt(old_path.mnt, old_path.dentry, 0); |
| 1491 | 1489 | ||
| 1492 | if (!mnt) | 1490 | if (!mnt) |
| 1493 | goto out; | 1491 | goto out; |
| 1494 | 1492 | ||
| 1495 | err = graft_tree(mnt, &nd->path); | 1493 | err = graft_tree(mnt, path); |
| 1496 | if (err) { | 1494 | if (err) { |
| 1497 | LIST_HEAD(umount_list); | 1495 | LIST_HEAD(umount_list); |
| 1498 | spin_lock(&vfsmount_lock); | 1496 | spin_lock(&vfsmount_lock); |
| @@ -1503,7 +1501,7 @@ static noinline int do_loopback(struct nameidata *nd, char *old_name, | |||
| 1503 | 1501 | ||
| 1504 | out: | 1502 | out: |
| 1505 | up_write(&namespace_sem); | 1503 | up_write(&namespace_sem); |
| 1506 | path_put(&old_nd.path); | 1504 | path_put(&old_path); |
| 1507 | return err; | 1505 | return err; |
| 1508 | } | 1506 | } |
| 1509 | 1507 | ||
| @@ -1528,33 +1526,37 @@ static int change_mount_flags(struct vfsmount *mnt, int ms_flags) | |||
| 1528 | * change filesystem flags. dir should be a physical root of filesystem. | 1526 | * change filesystem flags. dir should be a physical root of filesystem. |
| 1529 | * If you've mounted a non-root directory somewhere and want to do remount | 1527 | * If you've mounted a non-root directory somewhere and want to do remount |
| 1530 | * on it - tough luck. | 1528 | * on it - tough luck. |
| 1531 | * noinline this do_mount helper to save do_mount stack space. | ||
| 1532 | */ | 1529 | */ |
| 1533 | static noinline int do_remount(struct nameidata *nd, int flags, int mnt_flags, | 1530 | static int do_remount(struct path *path, int flags, int mnt_flags, |
| 1534 | void *data) | 1531 | void *data) |
| 1535 | { | 1532 | { |
| 1536 | int err; | 1533 | int err; |
| 1537 | struct super_block *sb = nd->path.mnt->mnt_sb; | 1534 | struct super_block *sb = path->mnt->mnt_sb; |
| 1538 | 1535 | ||
| 1539 | if (!capable(CAP_SYS_ADMIN)) | 1536 | if (!capable(CAP_SYS_ADMIN)) |
| 1540 | return -EPERM; | 1537 | return -EPERM; |
| 1541 | 1538 | ||
| 1542 | if (!check_mnt(nd->path.mnt)) | 1539 | if (!check_mnt(path->mnt)) |
| 1543 | return -EINVAL; | 1540 | return -EINVAL; |
| 1544 | 1541 | ||
| 1545 | if (nd->path.dentry != nd->path.mnt->mnt_root) | 1542 | if (path->dentry != path->mnt->mnt_root) |
| 1546 | return -EINVAL; | 1543 | return -EINVAL; |
| 1547 | 1544 | ||
| 1548 | down_write(&sb->s_umount); | 1545 | down_write(&sb->s_umount); |
| 1549 | if (flags & MS_BIND) | 1546 | if (flags & MS_BIND) |
| 1550 | err = change_mount_flags(nd->path.mnt, flags); | 1547 | err = change_mount_flags(path->mnt, flags); |
| 1551 | else | 1548 | else |
| 1552 | err = do_remount_sb(sb, flags, data, 0); | 1549 | err = do_remount_sb(sb, flags, data, 0); |
| 1553 | if (!err) | 1550 | if (!err) |
| 1554 | nd->path.mnt->mnt_flags = mnt_flags; | 1551 | path->mnt->mnt_flags = mnt_flags; |
| 1555 | up_write(&sb->s_umount); | 1552 | up_write(&sb->s_umount); |
| 1556 | if (!err) | 1553 | if (!err) { |
| 1557 | security_sb_post_remount(nd->path.mnt, flags, data); | 1554 | security_sb_post_remount(path->mnt, flags, data); |
| 1555 | |||
| 1556 | spin_lock(&vfsmount_lock); | ||
| 1557 | touch_mnt_namespace(path->mnt->mnt_ns); | ||
| 1558 | spin_unlock(&vfsmount_lock); | ||
| 1559 | } | ||
| 1558 | return err; | 1560 | return err; |
| 1559 | } | 1561 | } |
| 1560 | 1562 | ||
| @@ -1568,90 +1570,85 @@ static inline int tree_contains_unbindable(struct vfsmount *mnt) | |||
| 1568 | return 0; | 1570 | return 0; |
| 1569 | } | 1571 | } |
| 1570 | 1572 | ||
| 1571 | /* | 1573 | static int do_move_mount(struct path *path, char *old_name) |
| 1572 | * noinline this do_mount helper to save do_mount stack space. | ||
| 1573 | */ | ||
| 1574 | static noinline int do_move_mount(struct nameidata *nd, char *old_name) | ||
| 1575 | { | 1574 | { |
| 1576 | struct nameidata old_nd; | 1575 | struct path old_path, parent_path; |
| 1577 | struct path parent_path; | ||
| 1578 | struct vfsmount *p; | 1576 | struct vfsmount *p; |
| 1579 | int err = 0; | 1577 | int err = 0; |
| 1580 | if (!capable(CAP_SYS_ADMIN)) | 1578 | if (!capable(CAP_SYS_ADMIN)) |
| 1581 | return -EPERM; | 1579 | return -EPERM; |
| 1582 | if (!old_name || !*old_name) | 1580 | if (!old_name || !*old_name) |
| 1583 | return -EINVAL; | 1581 | return -EINVAL; |
| 1584 | err = path_lookup(old_name, LOOKUP_FOLLOW, &old_nd); | 1582 | err = kern_path(old_name, LOOKUP_FOLLOW, &old_path); |
| 1585 | if (err) | 1583 | if (err) |
| 1586 | return err; | 1584 | return err; |
| 1587 | 1585 | ||
| 1588 | down_write(&namespace_sem); | 1586 | down_write(&namespace_sem); |
| 1589 | while (d_mountpoint(nd->path.dentry) && | 1587 | while (d_mountpoint(path->dentry) && |
| 1590 | follow_down(&nd->path.mnt, &nd->path.dentry)) | 1588 | follow_down(&path->mnt, &path->dentry)) |
| 1591 | ; | 1589 | ; |
| 1592 | err = -EINVAL; | 1590 | err = -EINVAL; |
| 1593 | if (!check_mnt(nd->path.mnt) || !check_mnt(old_nd.path.mnt)) | 1591 | if (!check_mnt(path->mnt) || !check_mnt(old_path.mnt)) |
| 1594 | goto out; | 1592 | goto out; |
| 1595 | 1593 | ||
| 1596 | err = -ENOENT; | 1594 | err = -ENOENT; |
| 1597 | mutex_lock(&nd->path.dentry->d_inode->i_mutex); | 1595 | mutex_lock(&path->dentry->d_inode->i_mutex); |
| 1598 | if (IS_DEADDIR(nd->path.dentry->d_inode)) | 1596 | if (IS_DEADDIR(path->dentry->d_inode)) |
| 1599 | goto out1; | 1597 | goto out1; |
| 1600 | 1598 | ||
| 1601 | if (!IS_ROOT(nd->path.dentry) && d_unhashed(nd->path.dentry)) | 1599 | if (!IS_ROOT(path->dentry) && d_unhashed(path->dentry)) |
| 1602 | goto out1; | 1600 | goto out1; |
| 1603 | 1601 | ||
| 1604 | err = -EINVAL; | 1602 | err = -EINVAL; |
| 1605 | if (old_nd.path.dentry != old_nd.path.mnt->mnt_root) | 1603 | if (old_path.dentry != old_path.mnt->mnt_root) |
| 1606 | goto out1; | 1604 | goto out1; |
| 1607 | 1605 | ||
| 1608 | if (old_nd.path.mnt == old_nd.path.mnt->mnt_parent) | 1606 | if (old_path.mnt == old_path.mnt->mnt_parent) |
| 1609 | goto out1; | 1607 | goto out1; |
| 1610 | 1608 | ||
| 1611 | if (S_ISDIR(nd->path.dentry->d_inode->i_mode) != | 1609 | if (S_ISDIR(path->dentry->d_inode->i_mode) != |
| 1612 | S_ISDIR(old_nd.path.dentry->d_inode->i_mode)) | 1610 | S_ISDIR(old_path.dentry->d_inode->i_mode)) |
| 1613 | goto out1; | 1611 | goto out1; |
| 1614 | /* | 1612 | /* |
| 1615 | * Don't move a mount residing in a shared parent. | 1613 | * Don't move a mount residing in a shared parent. |
| 1616 | */ | 1614 | */ |
| 1617 | if (old_nd.path.mnt->mnt_parent && | 1615 | if (old_path.mnt->mnt_parent && |
| 1618 | IS_MNT_SHARED(old_nd.path.mnt->mnt_parent)) | 1616 | IS_MNT_SHARED(old_path.mnt->mnt_parent)) |
| 1619 | goto out1; | 1617 | goto out1; |
| 1620 | /* | 1618 | /* |
| 1621 | * Don't move a mount tree containing unbindable mounts to a destination | 1619 | * Don't move a mount tree containing unbindable mounts to a destination |
| 1622 | * mount which is shared. | 1620 | * mount which is shared. |
| 1623 | */ | 1621 | */ |
| 1624 | if (IS_MNT_SHARED(nd->path.mnt) && | 1622 | if (IS_MNT_SHARED(path->mnt) && |
| 1625 | tree_contains_unbindable(old_nd.path.mnt)) | 1623 | tree_contains_unbindable(old_path.mnt)) |
| 1626 | goto out1; | 1624 | goto out1; |
| 1627 | err = -ELOOP; | 1625 | err = -ELOOP; |
| 1628 | for (p = nd->path.mnt; p->mnt_parent != p; p = p->mnt_parent) | 1626 | for (p = path->mnt; p->mnt_parent != p; p = p->mnt_parent) |
| 1629 | if (p == old_nd.path.mnt) | 1627 | if (p == old_path.mnt) |
| 1630 | goto out1; | 1628 | goto out1; |
| 1631 | 1629 | ||
| 1632 | err = attach_recursive_mnt(old_nd.path.mnt, &nd->path, &parent_path); | 1630 | err = attach_recursive_mnt(old_path.mnt, path, &parent_path); |
| 1633 | if (err) | 1631 | if (err) |
| 1634 | goto out1; | 1632 | goto out1; |
| 1635 | 1633 | ||
| 1636 | /* if the mount is moved, it should no longer be expire | 1634 | /* if the mount is moved, it should no longer be expire |
| 1637 | * automatically */ | 1635 | * automatically */ |
| 1638 | list_del_init(&old_nd.path.mnt->mnt_expire); | 1636 | list_del_init(&old_path.mnt->mnt_expire); |
| 1639 | out1: | 1637 | out1: |
| 1640 | mutex_unlock(&nd->path.dentry->d_inode->i_mutex); | 1638 | mutex_unlock(&path->dentry->d_inode->i_mutex); |
| 1641 | out: | 1639 | out: |
| 1642 | up_write(&namespace_sem); | 1640 | up_write(&namespace_sem); |
| 1643 | if (!err) | 1641 | if (!err) |
| 1644 | path_put(&parent_path); | 1642 | path_put(&parent_path); |
| 1645 | path_put(&old_nd.path); | 1643 | path_put(&old_path); |
| 1646 | return err; | 1644 | return err; |
| 1647 | } | 1645 | } |
| 1648 | 1646 | ||
| 1649 | /* | 1647 | /* |
| 1650 | * create a new mount for userspace and request it to be added into the | 1648 | * create a new mount for userspace and request it to be added into the |
| 1651 | * namespace's tree | 1649 | * namespace's tree |
| 1652 | * noinline this do_mount helper to save do_mount stack space. | ||
| 1653 | */ | 1650 | */ |
| 1654 | static noinline int do_new_mount(struct nameidata *nd, char *type, int flags, | 1651 | static int do_new_mount(struct path *path, char *type, int flags, |
| 1655 | int mnt_flags, char *name, void *data) | 1652 | int mnt_flags, char *name, void *data) |
| 1656 | { | 1653 | { |
| 1657 | struct vfsmount *mnt; | 1654 | struct vfsmount *mnt; |
| @@ -1667,7 +1664,7 @@ static noinline int do_new_mount(struct nameidata *nd, char *type, int flags, | |||
| 1667 | if (IS_ERR(mnt)) | 1664 | if (IS_ERR(mnt)) |
| 1668 | return PTR_ERR(mnt); | 1665 | return PTR_ERR(mnt); |
| 1669 | 1666 | ||
| 1670 | return do_add_mount(mnt, &nd->path, mnt_flags, NULL); | 1667 | return do_add_mount(mnt, path, mnt_flags, NULL); |
| 1671 | } | 1668 | } |
| 1672 | 1669 | ||
| 1673 | /* | 1670 | /* |
| @@ -1902,7 +1899,7 @@ int copy_mount_options(const void __user * data, unsigned long *where) | |||
| 1902 | long do_mount(char *dev_name, char *dir_name, char *type_page, | 1899 | long do_mount(char *dev_name, char *dir_name, char *type_page, |
| 1903 | unsigned long flags, void *data_page) | 1900 | unsigned long flags, void *data_page) |
| 1904 | { | 1901 | { |
| 1905 | struct nameidata nd; | 1902 | struct path path; |
| 1906 | int retval = 0; | 1903 | int retval = 0; |
| 1907 | int mnt_flags = 0; | 1904 | int mnt_flags = 0; |
| 1908 | 1905 | ||
| @@ -1940,29 +1937,29 @@ long do_mount(char *dev_name, char *dir_name, char *type_page, | |||
| 1940 | MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT); | 1937 | MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT); |
| 1941 | 1938 | ||
| 1942 | /* ... and get the mountpoint */ | 1939 | /* ... and get the mountpoint */ |
| 1943 | retval = path_lookup(dir_name, LOOKUP_FOLLOW, &nd); | 1940 | retval = kern_path(dir_name, LOOKUP_FOLLOW, &path); |
| 1944 | if (retval) | 1941 | if (retval) |
| 1945 | return retval; | 1942 | return retval; |
| 1946 | 1943 | ||
| 1947 | retval = security_sb_mount(dev_name, &nd.path, | 1944 | retval = security_sb_mount(dev_name, &path, |
| 1948 | type_page, flags, data_page); | 1945 | type_page, flags, data_page); |
| 1949 | if (retval) | 1946 | if (retval) |
| 1950 | goto dput_out; | 1947 | goto dput_out; |
| 1951 | 1948 | ||
| 1952 | if (flags & MS_REMOUNT) | 1949 | if (flags & MS_REMOUNT) |
| 1953 | retval = do_remount(&nd, flags & ~MS_REMOUNT, mnt_flags, | 1950 | retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags, |
| 1954 | data_page); | 1951 | data_page); |
| 1955 | else if (flags & MS_BIND) | 1952 | else if (flags & MS_BIND) |
| 1956 | retval = do_loopback(&nd, dev_name, flags & MS_REC); | 1953 | retval = do_loopback(&path, dev_name, flags & MS_REC); |
| 1957 | else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE)) | 1954 | else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE)) |
| 1958 | retval = do_change_type(&nd, flags); | 1955 | retval = do_change_type(&path, flags); |
| 1959 | else if (flags & MS_MOVE) | 1956 | else if (flags & MS_MOVE) |
| 1960 | retval = do_move_mount(&nd, dev_name); | 1957 | retval = do_move_mount(&path, dev_name); |
| 1961 | else | 1958 | else |
| 1962 | retval = do_new_mount(&nd, type_page, flags, mnt_flags, | 1959 | retval = do_new_mount(&path, type_page, flags, mnt_flags, |
| 1963 | dev_name, data_page); | 1960 | dev_name, data_page); |
| 1964 | dput_out: | 1961 | dput_out: |
| 1965 | path_put(&nd.path); | 1962 | path_put(&path); |
| 1966 | return retval; | 1963 | return retval; |
| 1967 | } | 1964 | } |
| 1968 | 1965 | ||
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index efdba2e802d7..3e64b98f3a93 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c | |||
| @@ -707,9 +707,7 @@ static int nfs_is_exclusive_create(struct inode *dir, struct nameidata *nd) | |||
| 707 | { | 707 | { |
| 708 | if (NFS_PROTO(dir)->version == 2) | 708 | if (NFS_PROTO(dir)->version == 2) |
| 709 | return 0; | 709 | return 0; |
| 710 | if (nd == NULL || nfs_lookup_check_intent(nd, LOOKUP_CREATE) == 0) | 710 | return nd && nfs_lookup_check_intent(nd, LOOKUP_EXCL); |
| 711 | return 0; | ||
| 712 | return (nd->intent.open.flags & O_EXCL) != 0; | ||
| 713 | } | 711 | } |
| 714 | 712 | ||
| 715 | /* | 713 | /* |
| @@ -1009,7 +1007,7 @@ static struct dentry *nfs_atomic_lookup(struct inode *dir, struct dentry *dentry | |||
| 1009 | 1007 | ||
| 1010 | /* Let vfs_create() deal with O_EXCL. Instantiate, but don't hash | 1008 | /* Let vfs_create() deal with O_EXCL. Instantiate, but don't hash |
| 1011 | * the dentry. */ | 1009 | * the dentry. */ |
| 1012 | if (nd->intent.open.flags & O_EXCL) { | 1010 | if (nd->flags & LOOKUP_EXCL) { |
| 1013 | d_instantiate(dentry, NULL); | 1011 | d_instantiate(dentry, NULL); |
| 1014 | goto out; | 1012 | goto out; |
| 1015 | } | 1013 | } |
| @@ -1959,6 +1957,9 @@ force_lookup: | |||
| 1959 | } else | 1957 | } else |
| 1960 | res = PTR_ERR(cred); | 1958 | res = PTR_ERR(cred); |
| 1961 | out: | 1959 | out: |
| 1960 | if (!res && (mask & MAY_EXEC) && !execute_ok(inode)) | ||
| 1961 | res = -EACCES; | ||
| 1962 | |||
| 1962 | dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n", | 1963 | dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n", |
| 1963 | inode->i_sb->s_id, inode->i_ino, mask, res); | 1964 | inode->i_sb->s_id, inode->i_ino, mask, res); |
| 1964 | return res; | 1965 | return res; |
diff --git a/fs/nfs/getroot.c b/fs/nfs/getroot.c index fae97196daad..b7c9b2df1f29 100644 --- a/fs/nfs/getroot.c +++ b/fs/nfs/getroot.c | |||
| @@ -107,11 +107,10 @@ struct dentry *nfs_get_root(struct super_block *sb, struct nfs_fh *mntfh) | |||
| 107 | * if the dentry tree reaches them; however if the dentry already | 107 | * if the dentry tree reaches them; however if the dentry already |
| 108 | * exists, we'll pick it up at this point and use it as the root | 108 | * exists, we'll pick it up at this point and use it as the root |
| 109 | */ | 109 | */ |
| 110 | mntroot = d_alloc_anon(inode); | 110 | mntroot = d_obtain_alias(inode); |
| 111 | if (!mntroot) { | 111 | if (IS_ERR(mntroot)) { |
| 112 | iput(inode); | ||
| 113 | dprintk("nfs_get_root: get root dentry failed\n"); | 112 | dprintk("nfs_get_root: get root dentry failed\n"); |
| 114 | return ERR_PTR(-ENOMEM); | 113 | return mntroot; |
| 115 | } | 114 | } |
| 116 | 115 | ||
| 117 | security_d_instantiate(mntroot, inode); | 116 | security_d_instantiate(mntroot, inode); |
| @@ -277,11 +276,10 @@ struct dentry *nfs4_get_root(struct super_block *sb, struct nfs_fh *mntfh) | |||
| 277 | * if the dentry tree reaches them; however if the dentry already | 276 | * if the dentry tree reaches them; however if the dentry already |
| 278 | * exists, we'll pick it up at this point and use it as the root | 277 | * exists, we'll pick it up at this point and use it as the root |
| 279 | */ | 278 | */ |
| 280 | mntroot = d_alloc_anon(inode); | 279 | mntroot = d_obtain_alias(inode); |
| 281 | if (!mntroot) { | 280 | if (IS_ERR(mntroot)) { |
| 282 | iput(inode); | ||
| 283 | dprintk("nfs_get_root: get root dentry failed\n"); | 281 | dprintk("nfs_get_root: get root dentry failed\n"); |
| 284 | return ERR_PTR(-ENOMEM); | 282 | return mntroot; |
| 285 | } | 283 | } |
| 286 | 284 | ||
| 287 | security_d_instantiate(mntroot, inode); | 285 | security_d_instantiate(mntroot, inode); |
diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c index 5cd882b8871a..5839b229cd0e 100644 --- a/fs/nfsd/export.c +++ b/fs/nfsd/export.c | |||
| @@ -163,18 +163,16 @@ static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen) | |||
| 163 | if (!ek) | 163 | if (!ek) |
| 164 | err = -ENOMEM; | 164 | err = -ENOMEM; |
| 165 | } else { | 165 | } else { |
| 166 | struct nameidata nd; | 166 | err = kern_path(buf, 0, &key.ek_path); |
| 167 | err = path_lookup(buf, 0, &nd); | ||
| 168 | if (err) | 167 | if (err) |
| 169 | goto out; | 168 | goto out; |
| 170 | 169 | ||
| 171 | dprintk("Found the path %s\n", buf); | 170 | dprintk("Found the path %s\n", buf); |
| 172 | key.ek_path = nd.path; | ||
| 173 | 171 | ||
| 174 | ek = svc_expkey_update(&key, ek); | 172 | ek = svc_expkey_update(&key, ek); |
| 175 | if (!ek) | 173 | if (!ek) |
| 176 | err = -ENOMEM; | 174 | err = -ENOMEM; |
| 177 | path_put(&nd.path); | 175 | path_put(&key.ek_path); |
| 178 | } | 176 | } |
| 179 | cache_flush(); | 177 | cache_flush(); |
| 180 | out: | 178 | out: |
| @@ -501,35 +499,22 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen) | |||
| 501 | int len; | 499 | int len; |
| 502 | int err; | 500 | int err; |
| 503 | struct auth_domain *dom = NULL; | 501 | struct auth_domain *dom = NULL; |
| 504 | struct nameidata nd; | 502 | struct svc_export exp = {}, *expp; |
| 505 | struct svc_export exp, *expp; | ||
| 506 | int an_int; | 503 | int an_int; |
| 507 | 504 | ||
| 508 | nd.path.dentry = NULL; | ||
| 509 | exp.ex_pathname = NULL; | ||
| 510 | |||
| 511 | /* fs locations */ | ||
| 512 | exp.ex_fslocs.locations = NULL; | ||
| 513 | exp.ex_fslocs.locations_count = 0; | ||
| 514 | exp.ex_fslocs.migrated = 0; | ||
| 515 | |||
| 516 | exp.ex_uuid = NULL; | ||
| 517 | |||
| 518 | /* secinfo */ | ||
| 519 | exp.ex_nflavors = 0; | ||
| 520 | |||
| 521 | if (mesg[mlen-1] != '\n') | 505 | if (mesg[mlen-1] != '\n') |
| 522 | return -EINVAL; | 506 | return -EINVAL; |
| 523 | mesg[mlen-1] = 0; | 507 | mesg[mlen-1] = 0; |
| 524 | 508 | ||
| 525 | buf = kmalloc(PAGE_SIZE, GFP_KERNEL); | 509 | buf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 526 | err = -ENOMEM; | 510 | if (!buf) |
| 527 | if (!buf) goto out; | 511 | return -ENOMEM; |
| 528 | 512 | ||
| 529 | /* client */ | 513 | /* client */ |
| 530 | len = qword_get(&mesg, buf, PAGE_SIZE); | ||
| 531 | err = -EINVAL; | 514 | err = -EINVAL; |
| 532 | if (len <= 0) goto out; | 515 | len = qword_get(&mesg, buf, PAGE_SIZE); |
| 516 | if (len <= 0) | ||
| 517 | goto out; | ||
| 533 | 518 | ||
| 534 | err = -ENOENT; | 519 | err = -ENOENT; |
| 535 | dom = auth_domain_find(buf); | 520 | dom = auth_domain_find(buf); |
| @@ -538,25 +523,25 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen) | |||
| 538 | 523 | ||
| 539 | /* path */ | 524 | /* path */ |
| 540 | err = -EINVAL; | 525 | err = -EINVAL; |
| 541 | if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0) | 526 | if ((len = qword_get(&mesg, buf, PAGE_SIZE)) <= 0) |
| 542 | goto out; | 527 | goto out1; |
| 543 | err = path_lookup(buf, 0, &nd); | 528 | |
| 544 | if (err) goto out_no_path; | 529 | err = kern_path(buf, 0, &exp.ex_path); |
| 530 | if (err) | ||
| 531 | goto out1; | ||
| 545 | 532 | ||
| 546 | exp.h.flags = 0; | ||
| 547 | exp.ex_client = dom; | 533 | exp.ex_client = dom; |
| 548 | exp.ex_path.mnt = nd.path.mnt; | 534 | |
| 549 | exp.ex_path.dentry = nd.path.dentry; | ||
| 550 | exp.ex_pathname = kstrdup(buf, GFP_KERNEL); | ||
| 551 | err = -ENOMEM; | 535 | err = -ENOMEM; |
| 536 | exp.ex_pathname = kstrdup(buf, GFP_KERNEL); | ||
| 552 | if (!exp.ex_pathname) | 537 | if (!exp.ex_pathname) |
| 553 | goto out; | 538 | goto out2; |
| 554 | 539 | ||
| 555 | /* expiry */ | 540 | /* expiry */ |
| 556 | err = -EINVAL; | 541 | err = -EINVAL; |
| 557 | exp.h.expiry_time = get_expiry(&mesg); | 542 | exp.h.expiry_time = get_expiry(&mesg); |
| 558 | if (exp.h.expiry_time == 0) | 543 | if (exp.h.expiry_time == 0) |
| 559 | goto out; | 544 | goto out3; |
| 560 | 545 | ||
| 561 | /* flags */ | 546 | /* flags */ |
| 562 | err = get_int(&mesg, &an_int); | 547 | err = get_int(&mesg, &an_int); |
| @@ -564,22 +549,26 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen) | |||
| 564 | err = 0; | 549 | err = 0; |
| 565 | set_bit(CACHE_NEGATIVE, &exp.h.flags); | 550 | set_bit(CACHE_NEGATIVE, &exp.h.flags); |
| 566 | } else { | 551 | } else { |
| 567 | if (err || an_int < 0) goto out; | 552 | if (err || an_int < 0) |
| 553 | goto out3; | ||
| 568 | exp.ex_flags= an_int; | 554 | exp.ex_flags= an_int; |
| 569 | 555 | ||
| 570 | /* anon uid */ | 556 | /* anon uid */ |
| 571 | err = get_int(&mesg, &an_int); | 557 | err = get_int(&mesg, &an_int); |
| 572 | if (err) goto out; | 558 | if (err) |
| 559 | goto out3; | ||
| 573 | exp.ex_anon_uid= an_int; | 560 | exp.ex_anon_uid= an_int; |
| 574 | 561 | ||
| 575 | /* anon gid */ | 562 | /* anon gid */ |
| 576 | err = get_int(&mesg, &an_int); | 563 | err = get_int(&mesg, &an_int); |
| 577 | if (err) goto out; | 564 | if (err) |
| 565 | goto out3; | ||
| 578 | exp.ex_anon_gid= an_int; | 566 | exp.ex_anon_gid= an_int; |
| 579 | 567 | ||
| 580 | /* fsid */ | 568 | /* fsid */ |
| 581 | err = get_int(&mesg, &an_int); | 569 | err = get_int(&mesg, &an_int); |
| 582 | if (err) goto out; | 570 | if (err) |
| 571 | goto out3; | ||
| 583 | exp.ex_fsid = an_int; | 572 | exp.ex_fsid = an_int; |
| 584 | 573 | ||
| 585 | while ((len = qword_get(&mesg, buf, PAGE_SIZE)) > 0) { | 574 | while ((len = qword_get(&mesg, buf, PAGE_SIZE)) > 0) { |
| @@ -605,12 +594,13 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen) | |||
| 605 | */ | 594 | */ |
| 606 | break; | 595 | break; |
| 607 | if (err) | 596 | if (err) |
| 608 | goto out; | 597 | goto out4; |
| 609 | } | 598 | } |
| 610 | 599 | ||
| 611 | err = check_export(nd.path.dentry->d_inode, exp.ex_flags, | 600 | err = check_export(exp.ex_path.dentry->d_inode, exp.ex_flags, |
| 612 | exp.ex_uuid); | 601 | exp.ex_uuid); |
| 613 | if (err) goto out; | 602 | if (err) |
| 603 | goto out4; | ||
| 614 | } | 604 | } |
| 615 | 605 | ||
| 616 | expp = svc_export_lookup(&exp); | 606 | expp = svc_export_lookup(&exp); |
| @@ -623,15 +613,16 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen) | |||
| 623 | err = -ENOMEM; | 613 | err = -ENOMEM; |
| 624 | else | 614 | else |
| 625 | exp_put(expp); | 615 | exp_put(expp); |
| 626 | out: | 616 | out4: |
| 627 | nfsd4_fslocs_free(&exp.ex_fslocs); | 617 | nfsd4_fslocs_free(&exp.ex_fslocs); |
| 628 | kfree(exp.ex_uuid); | 618 | kfree(exp.ex_uuid); |
| 619 | out3: | ||
| 629 | kfree(exp.ex_pathname); | 620 | kfree(exp.ex_pathname); |
| 630 | if (nd.path.dentry) | 621 | out2: |
| 631 | path_put(&nd.path); | 622 | path_put(&exp.ex_path); |
| 632 | out_no_path: | 623 | out1: |
| 633 | if (dom) | 624 | auth_domain_put(dom); |
| 634 | auth_domain_put(dom); | 625 | out: |
| 635 | kfree(buf); | 626 | kfree(buf); |
| 636 | return err; | 627 | return err; |
| 637 | } | 628 | } |
| @@ -999,7 +990,7 @@ exp_export(struct nfsctl_export *nxp) | |||
| 999 | struct svc_export *exp = NULL; | 990 | struct svc_export *exp = NULL; |
| 1000 | struct svc_export new; | 991 | struct svc_export new; |
| 1001 | struct svc_expkey *fsid_key = NULL; | 992 | struct svc_expkey *fsid_key = NULL; |
| 1002 | struct nameidata nd; | 993 | struct path path; |
| 1003 | int err; | 994 | int err; |
| 1004 | 995 | ||
| 1005 | /* Consistency check */ | 996 | /* Consistency check */ |
| @@ -1022,12 +1013,12 @@ exp_export(struct nfsctl_export *nxp) | |||
| 1022 | 1013 | ||
| 1023 | 1014 | ||
| 1024 | /* Look up the dentry */ | 1015 | /* Look up the dentry */ |
| 1025 | err = path_lookup(nxp->ex_path, 0, &nd); | 1016 | err = kern_path(nxp->ex_path, 0, &path); |
| 1026 | if (err) | 1017 | if (err) |
| 1027 | goto out_put_clp; | 1018 | goto out_put_clp; |
| 1028 | err = -EINVAL; | 1019 | err = -EINVAL; |
| 1029 | 1020 | ||
| 1030 | exp = exp_get_by_name(clp, nd.path.mnt, nd.path.dentry, NULL); | 1021 | exp = exp_get_by_name(clp, path.mnt, path.dentry, NULL); |
| 1031 | 1022 | ||
| 1032 | memset(&new, 0, sizeof(new)); | 1023 | memset(&new, 0, sizeof(new)); |
| 1033 | 1024 | ||
| @@ -1035,8 +1026,8 @@ exp_export(struct nfsctl_export *nxp) | |||
| 1035 | if ((nxp->ex_flags & NFSEXP_FSID) && | 1026 | if ((nxp->ex_flags & NFSEXP_FSID) && |
| 1036 | (!IS_ERR(fsid_key = exp_get_fsid_key(clp, nxp->ex_dev))) && | 1027 | (!IS_ERR(fsid_key = exp_get_fsid_key(clp, nxp->ex_dev))) && |
| 1037 | fsid_key->ek_path.mnt && | 1028 | fsid_key->ek_path.mnt && |
| 1038 | (fsid_key->ek_path.mnt != nd.path.mnt || | 1029 | (fsid_key->ek_path.mnt != path.mnt || |
| 1039 | fsid_key->ek_path.dentry != nd.path.dentry)) | 1030 | fsid_key->ek_path.dentry != path.dentry)) |
| 1040 | goto finish; | 1031 | goto finish; |
| 1041 | 1032 | ||
| 1042 | if (!IS_ERR(exp)) { | 1033 | if (!IS_ERR(exp)) { |
| @@ -1052,7 +1043,7 @@ exp_export(struct nfsctl_export *nxp) | |||
| 1052 | goto finish; | 1043 | goto finish; |
| 1053 | } | 1044 | } |
| 1054 | 1045 | ||
| 1055 | err = check_export(nd.path.dentry->d_inode, nxp->ex_flags, NULL); | 1046 | err = check_export(path.dentry->d_inode, nxp->ex_flags, NULL); |
| 1056 | if (err) goto finish; | 1047 | if (err) goto finish; |
| 1057 | 1048 | ||
| 1058 | err = -ENOMEM; | 1049 | err = -ENOMEM; |
| @@ -1065,7 +1056,7 @@ exp_export(struct nfsctl_export *nxp) | |||
| 1065 | if (!new.ex_pathname) | 1056 | if (!new.ex_pathname) |
| 1066 | goto finish; | 1057 | goto finish; |
| 1067 | new.ex_client = clp; | 1058 | new.ex_client = clp; |
| 1068 | new.ex_path = nd.path; | 1059 | new.ex_path = path; |
| 1069 | new.ex_flags = nxp->ex_flags; | 1060 | new.ex_flags = nxp->ex_flags; |
| 1070 | new.ex_anon_uid = nxp->ex_anon_uid; | 1061 | new.ex_anon_uid = nxp->ex_anon_uid; |
| 1071 | new.ex_anon_gid = nxp->ex_anon_gid; | 1062 | new.ex_anon_gid = nxp->ex_anon_gid; |
| @@ -1091,7 +1082,7 @@ finish: | |||
| 1091 | exp_put(exp); | 1082 | exp_put(exp); |
| 1092 | if (fsid_key && !IS_ERR(fsid_key)) | 1083 | if (fsid_key && !IS_ERR(fsid_key)) |
| 1093 | cache_put(&fsid_key->h, &svc_expkey_cache); | 1084 | cache_put(&fsid_key->h, &svc_expkey_cache); |
| 1094 | path_put(&nd.path); | 1085 | path_put(&path); |
| 1095 | out_put_clp: | 1086 | out_put_clp: |
| 1096 | auth_domain_put(clp); | 1087 | auth_domain_put(clp); |
| 1097 | out_unlock: | 1088 | out_unlock: |
| @@ -1122,7 +1113,7 @@ exp_unexport(struct nfsctl_export *nxp) | |||
| 1122 | { | 1113 | { |
| 1123 | struct auth_domain *dom; | 1114 | struct auth_domain *dom; |
| 1124 | svc_export *exp; | 1115 | svc_export *exp; |
| 1125 | struct nameidata nd; | 1116 | struct path path; |
| 1126 | int err; | 1117 | int err; |
| 1127 | 1118 | ||
| 1128 | /* Consistency check */ | 1119 | /* Consistency check */ |
| @@ -1139,13 +1130,13 @@ exp_unexport(struct nfsctl_export *nxp) | |||
| 1139 | goto out_unlock; | 1130 | goto out_unlock; |
| 1140 | } | 1131 | } |
| 1141 | 1132 | ||
| 1142 | err = path_lookup(nxp->ex_path, 0, &nd); | 1133 | err = kern_path(nxp->ex_path, 0, &path); |
| 1143 | if (err) | 1134 | if (err) |
| 1144 | goto out_domain; | 1135 | goto out_domain; |
| 1145 | 1136 | ||
| 1146 | err = -EINVAL; | 1137 | err = -EINVAL; |
| 1147 | exp = exp_get_by_name(dom, nd.path.mnt, nd.path.dentry, NULL); | 1138 | exp = exp_get_by_name(dom, path.mnt, path.dentry, NULL); |
| 1148 | path_put(&nd.path); | 1139 | path_put(&path); |
| 1149 | if (IS_ERR(exp)) | 1140 | if (IS_ERR(exp)) |
| 1150 | goto out_domain; | 1141 | goto out_domain; |
| 1151 | 1142 | ||
| @@ -1167,26 +1158,26 @@ out_unlock: | |||
| 1167 | * since its harder to fool a kernel module than a user space program. | 1158 | * since its harder to fool a kernel module than a user space program. |
| 1168 | */ | 1159 | */ |
| 1169 | int | 1160 | int |
| 1170 | exp_rootfh(svc_client *clp, char *path, struct knfsd_fh *f, int maxsize) | 1161 | exp_rootfh(svc_client *clp, char *name, struct knfsd_fh *f, int maxsize) |
| 1171 | { | 1162 | { |
| 1172 | struct svc_export *exp; | 1163 | struct svc_export *exp; |
| 1173 | struct nameidata nd; | 1164 | struct path path; |
| 1174 | struct inode *inode; | 1165 | struct inode *inode; |
| 1175 | struct svc_fh fh; | 1166 | struct svc_fh fh; |
| 1176 | int err; | 1167 | int err; |
| 1177 | 1168 | ||
| 1178 | err = -EPERM; | 1169 | err = -EPERM; |
| 1179 | /* NB: we probably ought to check that it's NUL-terminated */ | 1170 | /* NB: we probably ought to check that it's NUL-terminated */ |
| 1180 | if (path_lookup(path, 0, &nd)) { | 1171 | if (kern_path(name, 0, &path)) { |
| 1181 | printk("nfsd: exp_rootfh path not found %s", path); | 1172 | printk("nfsd: exp_rootfh path not found %s", name); |
| 1182 | return err; | 1173 | return err; |
| 1183 | } | 1174 | } |
| 1184 | inode = nd.path.dentry->d_inode; | 1175 | inode = path.dentry->d_inode; |
| 1185 | 1176 | ||
| 1186 | dprintk("nfsd: exp_rootfh(%s [%p] %s:%s/%ld)\n", | 1177 | dprintk("nfsd: exp_rootfh(%s [%p] %s:%s/%ld)\n", |
| 1187 | path, nd.path.dentry, clp->name, | 1178 | name, path.dentry, clp->name, |
| 1188 | inode->i_sb->s_id, inode->i_ino); | 1179 | inode->i_sb->s_id, inode->i_ino); |
| 1189 | exp = exp_parent(clp, nd.path.mnt, nd.path.dentry, NULL); | 1180 | exp = exp_parent(clp, path.mnt, path.dentry, NULL); |
| 1190 | if (IS_ERR(exp)) { | 1181 | if (IS_ERR(exp)) { |
| 1191 | err = PTR_ERR(exp); | 1182 | err = PTR_ERR(exp); |
| 1192 | goto out; | 1183 | goto out; |
| @@ -1196,7 +1187,7 @@ exp_rootfh(svc_client *clp, char *path, struct knfsd_fh *f, int maxsize) | |||
| 1196 | * fh must be initialized before calling fh_compose | 1187 | * fh must be initialized before calling fh_compose |
| 1197 | */ | 1188 | */ |
| 1198 | fh_init(&fh, maxsize); | 1189 | fh_init(&fh, maxsize); |
| 1199 | if (fh_compose(&fh, exp, nd.path.dentry, NULL)) | 1190 | if (fh_compose(&fh, exp, path.dentry, NULL)) |
| 1200 | err = -EINVAL; | 1191 | err = -EINVAL; |
| 1201 | else | 1192 | else |
| 1202 | err = 0; | 1193 | err = 0; |
| @@ -1204,7 +1195,7 @@ exp_rootfh(svc_client *clp, char *path, struct knfsd_fh *f, int maxsize) | |||
| 1204 | fh_put(&fh); | 1195 | fh_put(&fh); |
| 1205 | exp_put(exp); | 1196 | exp_put(exp); |
| 1206 | out: | 1197 | out: |
| 1207 | path_put(&nd.path); | 1198 | path_put(&path); |
| 1208 | return err; | 1199 | return err; |
| 1209 | } | 1200 | } |
| 1210 | 1201 | ||
diff --git a/fs/nfsd/nfs4recover.c b/fs/nfsd/nfs4recover.c index 145b3c877a27..bb93946ace22 100644 --- a/fs/nfsd/nfs4recover.c +++ b/fs/nfsd/nfs4recover.c | |||
| @@ -51,7 +51,7 @@ | |||
| 51 | #define NFSDDBG_FACILITY NFSDDBG_PROC | 51 | #define NFSDDBG_FACILITY NFSDDBG_PROC |
| 52 | 52 | ||
| 53 | /* Globals */ | 53 | /* Globals */ |
| 54 | static struct nameidata rec_dir; | 54 | static struct path rec_dir; |
| 55 | static int rec_dir_init = 0; | 55 | static int rec_dir_init = 0; |
| 56 | 56 | ||
| 57 | static void | 57 | static void |
| @@ -121,9 +121,9 @@ out_no_tfm: | |||
| 121 | static void | 121 | static void |
| 122 | nfsd4_sync_rec_dir(void) | 122 | nfsd4_sync_rec_dir(void) |
| 123 | { | 123 | { |
| 124 | mutex_lock(&rec_dir.path.dentry->d_inode->i_mutex); | 124 | mutex_lock(&rec_dir.dentry->d_inode->i_mutex); |
| 125 | nfsd_sync_dir(rec_dir.path.dentry); | 125 | nfsd_sync_dir(rec_dir.dentry); |
| 126 | mutex_unlock(&rec_dir.path.dentry->d_inode->i_mutex); | 126 | mutex_unlock(&rec_dir.dentry->d_inode->i_mutex); |
| 127 | } | 127 | } |
| 128 | 128 | ||
| 129 | int | 129 | int |
| @@ -143,9 +143,9 @@ nfsd4_create_clid_dir(struct nfs4_client *clp) | |||
| 143 | nfs4_save_user(&uid, &gid); | 143 | nfs4_save_user(&uid, &gid); |
| 144 | 144 | ||
| 145 | /* lock the parent */ | 145 | /* lock the parent */ |
| 146 | mutex_lock(&rec_dir.path.dentry->d_inode->i_mutex); | 146 | mutex_lock(&rec_dir.dentry->d_inode->i_mutex); |
| 147 | 147 | ||
| 148 | dentry = lookup_one_len(dname, rec_dir.path.dentry, HEXDIR_LEN-1); | 148 | dentry = lookup_one_len(dname, rec_dir.dentry, HEXDIR_LEN-1); |
| 149 | if (IS_ERR(dentry)) { | 149 | if (IS_ERR(dentry)) { |
| 150 | status = PTR_ERR(dentry); | 150 | status = PTR_ERR(dentry); |
| 151 | goto out_unlock; | 151 | goto out_unlock; |
| @@ -155,15 +155,15 @@ nfsd4_create_clid_dir(struct nfs4_client *clp) | |||
| 155 | dprintk("NFSD: nfsd4_create_clid_dir: DIRECTORY EXISTS\n"); | 155 | dprintk("NFSD: nfsd4_create_clid_dir: DIRECTORY EXISTS\n"); |
| 156 | goto out_put; | 156 | goto out_put; |
| 157 | } | 157 | } |
| 158 | status = mnt_want_write(rec_dir.path.mnt); | 158 | status = mnt_want_write(rec_dir.mnt); |
| 159 | if (status) | 159 | if (status) |
| 160 | goto out_put; | 160 | goto out_put; |
| 161 | status = vfs_mkdir(rec_dir.path.dentry->d_inode, dentry, S_IRWXU); | 161 | status = vfs_mkdir(rec_dir.dentry->d_inode, dentry, S_IRWXU); |
| 162 | mnt_drop_write(rec_dir.path.mnt); | 162 | mnt_drop_write(rec_dir.mnt); |
| 163 | out_put: | 163 | out_put: |
| 164 | dput(dentry); | 164 | dput(dentry); |
| 165 | out_unlock: | 165 | out_unlock: |
| 166 | mutex_unlock(&rec_dir.path.dentry->d_inode->i_mutex); | 166 | mutex_unlock(&rec_dir.dentry->d_inode->i_mutex); |
| 167 | if (status == 0) { | 167 | if (status == 0) { |
| 168 | clp->cl_firststate = 1; | 168 | clp->cl_firststate = 1; |
| 169 | nfsd4_sync_rec_dir(); | 169 | nfsd4_sync_rec_dir(); |
| @@ -226,7 +226,7 @@ nfsd4_list_rec_dir(struct dentry *dir, recdir_func *f) | |||
| 226 | 226 | ||
| 227 | nfs4_save_user(&uid, &gid); | 227 | nfs4_save_user(&uid, &gid); |
| 228 | 228 | ||
| 229 | filp = dentry_open(dget(dir), mntget(rec_dir.path.mnt), O_RDONLY); | 229 | filp = dentry_open(dget(dir), mntget(rec_dir.mnt), O_RDONLY); |
| 230 | status = PTR_ERR(filp); | 230 | status = PTR_ERR(filp); |
| 231 | if (IS_ERR(filp)) | 231 | if (IS_ERR(filp)) |
| 232 | goto out; | 232 | goto out; |
| @@ -291,9 +291,9 @@ nfsd4_unlink_clid_dir(char *name, int namlen) | |||
| 291 | 291 | ||
| 292 | dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name); | 292 | dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name); |
| 293 | 293 | ||
| 294 | mutex_lock(&rec_dir.path.dentry->d_inode->i_mutex); | 294 | mutex_lock(&rec_dir.dentry->d_inode->i_mutex); |
| 295 | dentry = lookup_one_len(name, rec_dir.path.dentry, namlen); | 295 | dentry = lookup_one_len(name, rec_dir.dentry, namlen); |
| 296 | mutex_unlock(&rec_dir.path.dentry->d_inode->i_mutex); | 296 | mutex_unlock(&rec_dir.dentry->d_inode->i_mutex); |
| 297 | if (IS_ERR(dentry)) { | 297 | if (IS_ERR(dentry)) { |
| 298 | status = PTR_ERR(dentry); | 298 | status = PTR_ERR(dentry); |
| 299 | return status; | 299 | return status; |
| @@ -302,7 +302,7 @@ nfsd4_unlink_clid_dir(char *name, int namlen) | |||
| 302 | if (!dentry->d_inode) | 302 | if (!dentry->d_inode) |
| 303 | goto out; | 303 | goto out; |
| 304 | 304 | ||
| 305 | status = nfsd4_clear_clid_dir(rec_dir.path.dentry, dentry); | 305 | status = nfsd4_clear_clid_dir(rec_dir.dentry, dentry); |
| 306 | out: | 306 | out: |
| 307 | dput(dentry); | 307 | dput(dentry); |
| 308 | return status; | 308 | return status; |
| @@ -318,7 +318,7 @@ nfsd4_remove_clid_dir(struct nfs4_client *clp) | |||
| 318 | if (!rec_dir_init || !clp->cl_firststate) | 318 | if (!rec_dir_init || !clp->cl_firststate) |
| 319 | return; | 319 | return; |
| 320 | 320 | ||
| 321 | status = mnt_want_write(rec_dir.path.mnt); | 321 | status = mnt_want_write(rec_dir.mnt); |
| 322 | if (status) | 322 | if (status) |
| 323 | goto out; | 323 | goto out; |
| 324 | clp->cl_firststate = 0; | 324 | clp->cl_firststate = 0; |
| @@ -327,7 +327,7 @@ nfsd4_remove_clid_dir(struct nfs4_client *clp) | |||
| 327 | nfs4_reset_user(uid, gid); | 327 | nfs4_reset_user(uid, gid); |
| 328 | if (status == 0) | 328 | if (status == 0) |
| 329 | nfsd4_sync_rec_dir(); | 329 | nfsd4_sync_rec_dir(); |
| 330 | mnt_drop_write(rec_dir.path.mnt); | 330 | mnt_drop_write(rec_dir.mnt); |
| 331 | out: | 331 | out: |
| 332 | if (status) | 332 | if (status) |
| 333 | printk("NFSD: Failed to remove expired client state directory" | 333 | printk("NFSD: Failed to remove expired client state directory" |
| @@ -357,17 +357,17 @@ nfsd4_recdir_purge_old(void) { | |||
| 357 | 357 | ||
| 358 | if (!rec_dir_init) | 358 | if (!rec_dir_init) |
| 359 | return; | 359 | return; |
| 360 | status = mnt_want_write(rec_dir.path.mnt); | 360 | status = mnt_want_write(rec_dir.mnt); |
| 361 | if (status) | 361 | if (status) |
| 362 | goto out; | 362 | goto out; |
| 363 | status = nfsd4_list_rec_dir(rec_dir.path.dentry, purge_old); | 363 | status = nfsd4_list_rec_dir(rec_dir.dentry, purge_old); |
| 364 | if (status == 0) | 364 | if (status == 0) |
| 365 | nfsd4_sync_rec_dir(); | 365 | nfsd4_sync_rec_dir(); |
| 366 | mnt_drop_write(rec_dir.path.mnt); | 366 | mnt_drop_write(rec_dir.mnt); |
| 367 | out: | 367 | out: |
| 368 | if (status) | 368 | if (status) |
| 369 | printk("nfsd4: failed to purge old clients from recovery" | 369 | printk("nfsd4: failed to purge old clients from recovery" |
| 370 | " directory %s\n", rec_dir.path.dentry->d_name.name); | 370 | " directory %s\n", rec_dir.dentry->d_name.name); |
| 371 | } | 371 | } |
| 372 | 372 | ||
| 373 | static int | 373 | static int |
| @@ -387,10 +387,10 @@ int | |||
| 387 | nfsd4_recdir_load(void) { | 387 | nfsd4_recdir_load(void) { |
| 388 | int status; | 388 | int status; |
| 389 | 389 | ||
| 390 | status = nfsd4_list_rec_dir(rec_dir.path.dentry, load_recdir); | 390 | status = nfsd4_list_rec_dir(rec_dir.dentry, load_recdir); |
| 391 | if (status) | 391 | if (status) |
| 392 | printk("nfsd4: failed loading clients from recovery" | 392 | printk("nfsd4: failed loading clients from recovery" |
| 393 | " directory %s\n", rec_dir.path.dentry->d_name.name); | 393 | " directory %s\n", rec_dir.dentry->d_name.name); |
| 394 | return status; | 394 | return status; |
| 395 | } | 395 | } |
| 396 | 396 | ||
| @@ -412,7 +412,7 @@ nfsd4_init_recdir(char *rec_dirname) | |||
| 412 | 412 | ||
| 413 | nfs4_save_user(&uid, &gid); | 413 | nfs4_save_user(&uid, &gid); |
| 414 | 414 | ||
| 415 | status = path_lookup(rec_dirname, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, | 415 | status = kern_path(rec_dirname, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, |
| 416 | &rec_dir); | 416 | &rec_dir); |
| 417 | if (status) | 417 | if (status) |
| 418 | printk("NFSD: unable to find recovery directory %s\n", | 418 | printk("NFSD: unable to find recovery directory %s\n", |
| @@ -429,5 +429,5 @@ nfsd4_shutdown_recdir(void) | |||
| 429 | if (!rec_dir_init) | 429 | if (!rec_dir_init) |
| 430 | return; | 430 | return; |
| 431 | rec_dir_init = 0; | 431 | rec_dir_init = 0; |
| 432 | path_put(&rec_dir.path); | 432 | path_put(&rec_dir); |
| 433 | } | 433 | } |
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index 0cc7ff5d5ab5..b0bebc552a11 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c | |||
| @@ -3284,17 +3284,17 @@ int | |||
| 3284 | nfs4_reset_recoverydir(char *recdir) | 3284 | nfs4_reset_recoverydir(char *recdir) |
| 3285 | { | 3285 | { |
| 3286 | int status; | 3286 | int status; |
| 3287 | struct nameidata nd; | 3287 | struct path path; |
| 3288 | 3288 | ||
| 3289 | status = path_lookup(recdir, LOOKUP_FOLLOW, &nd); | 3289 | status = kern_path(recdir, LOOKUP_FOLLOW, &path); |
| 3290 | if (status) | 3290 | if (status) |
| 3291 | return status; | 3291 | return status; |
| 3292 | status = -ENOTDIR; | 3292 | status = -ENOTDIR; |
| 3293 | if (S_ISDIR(nd.path.dentry->d_inode->i_mode)) { | 3293 | if (S_ISDIR(path.dentry->d_inode->i_mode)) { |
| 3294 | nfs4_set_recdir(recdir); | 3294 | nfs4_set_recdir(recdir); |
| 3295 | status = 0; | 3295 | status = 0; |
| 3296 | } | 3296 | } |
| 3297 | path_put(&nd.path); | 3297 | path_put(&path); |
| 3298 | return status; | 3298 | return status; |
| 3299 | } | 3299 | } |
| 3300 | 3300 | ||
diff --git a/fs/nfsd/nfsctl.c b/fs/nfsd/nfsctl.c index 97543df58242..e3f9783fdcf7 100644 --- a/fs/nfsd/nfsctl.c +++ b/fs/nfsd/nfsctl.c | |||
| @@ -341,7 +341,7 @@ static ssize_t failover_unlock_ip(struct file *file, char *buf, size_t size) | |||
| 341 | 341 | ||
| 342 | static ssize_t failover_unlock_fs(struct file *file, char *buf, size_t size) | 342 | static ssize_t failover_unlock_fs(struct file *file, char *buf, size_t size) |
| 343 | { | 343 | { |
| 344 | struct nameidata nd; | 344 | struct path path; |
| 345 | char *fo_path; | 345 | char *fo_path; |
| 346 | int error; | 346 | int error; |
| 347 | 347 | ||
| @@ -356,13 +356,13 @@ static ssize_t failover_unlock_fs(struct file *file, char *buf, size_t size) | |||
| 356 | if (qword_get(&buf, fo_path, size) < 0) | 356 | if (qword_get(&buf, fo_path, size) < 0) |
| 357 | return -EINVAL; | 357 | return -EINVAL; |
| 358 | 358 | ||
| 359 | error = path_lookup(fo_path, 0, &nd); | 359 | error = kern_path(fo_path, 0, &path); |
| 360 | if (error) | 360 | if (error) |
| 361 | return error; | 361 | return error; |
| 362 | 362 | ||
| 363 | error = nlmsvc_unlock_all_by_sb(nd.path.mnt->mnt_sb); | 363 | error = nlmsvc_unlock_all_by_sb(path.mnt->mnt_sb); |
| 364 | 364 | ||
| 365 | path_put(&nd.path); | 365 | path_put(&path); |
| 366 | return error; | 366 | return error; |
| 367 | } | 367 | } |
| 368 | 368 | ||
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index 9609eb51d727..0bc56f6d9276 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c | |||
| @@ -1818,6 +1818,115 @@ out: | |||
| 1818 | } | 1818 | } |
| 1819 | 1819 | ||
| 1820 | /* | 1820 | /* |
| 1821 | * We do this buffering because we must not call back into the file | ||
| 1822 | * system's ->lookup() method from the filldir callback. That may well | ||
| 1823 | * deadlock a number of file systems. | ||
| 1824 | * | ||
| 1825 | * This is based heavily on the implementation of same in XFS. | ||
| 1826 | */ | ||
| 1827 | struct buffered_dirent { | ||
| 1828 | u64 ino; | ||
| 1829 | loff_t offset; | ||
| 1830 | int namlen; | ||
| 1831 | unsigned int d_type; | ||
| 1832 | char name[]; | ||
| 1833 | }; | ||
| 1834 | |||
| 1835 | struct readdir_data { | ||
| 1836 | char *dirent; | ||
| 1837 | size_t used; | ||
| 1838 | int full; | ||
| 1839 | }; | ||
| 1840 | |||
| 1841 | static int nfsd_buffered_filldir(void *__buf, const char *name, int namlen, | ||
| 1842 | loff_t offset, u64 ino, unsigned int d_type) | ||
| 1843 | { | ||
| 1844 | struct readdir_data *buf = __buf; | ||
| 1845 | struct buffered_dirent *de = (void *)(buf->dirent + buf->used); | ||
| 1846 | unsigned int reclen; | ||
| 1847 | |||
| 1848 | reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64)); | ||
| 1849 | if (buf->used + reclen > PAGE_SIZE) { | ||
| 1850 | buf->full = 1; | ||
| 1851 | return -EINVAL; | ||
| 1852 | } | ||
| 1853 | |||
| 1854 | de->namlen = namlen; | ||
| 1855 | de->offset = offset; | ||
| 1856 | de->ino = ino; | ||
| 1857 | de->d_type = d_type; | ||
| 1858 | memcpy(de->name, name, namlen); | ||
| 1859 | buf->used += reclen; | ||
| 1860 | |||
| 1861 | return 0; | ||
| 1862 | } | ||
| 1863 | |||
| 1864 | static int nfsd_buffered_readdir(struct file *file, filldir_t func, | ||
| 1865 | struct readdir_cd *cdp, loff_t *offsetp) | ||
| 1866 | { | ||
| 1867 | struct readdir_data buf; | ||
| 1868 | struct buffered_dirent *de; | ||
| 1869 | int host_err; | ||
| 1870 | int size; | ||
| 1871 | loff_t offset; | ||
| 1872 | |||
| 1873 | buf.dirent = (void *)__get_free_page(GFP_KERNEL); | ||
| 1874 | if (!buf.dirent) | ||
| 1875 | return -ENOMEM; | ||
| 1876 | |||
| 1877 | offset = *offsetp; | ||
| 1878 | cdp->err = nfserr_eof; /* will be cleared on successful read */ | ||
| 1879 | |||
| 1880 | while (1) { | ||
| 1881 | unsigned int reclen; | ||
| 1882 | |||
| 1883 | buf.used = 0; | ||
| 1884 | buf.full = 0; | ||
| 1885 | |||
| 1886 | host_err = vfs_readdir(file, nfsd_buffered_filldir, &buf); | ||
| 1887 | if (buf.full) | ||
| 1888 | host_err = 0; | ||
| 1889 | |||
| 1890 | if (host_err < 0) | ||
| 1891 | break; | ||
| 1892 | |||
| 1893 | size = buf.used; | ||
| 1894 | |||
| 1895 | if (!size) | ||
| 1896 | break; | ||
| 1897 | |||
| 1898 | de = (struct buffered_dirent *)buf.dirent; | ||
| 1899 | while (size > 0) { | ||
| 1900 | offset = de->offset; | ||
| 1901 | |||
| 1902 | if (func(cdp, de->name, de->namlen, de->offset, | ||
| 1903 | de->ino, de->d_type)) | ||
| 1904 | goto done; | ||
| 1905 | |||
| 1906 | if (cdp->err != nfs_ok) | ||
| 1907 | goto done; | ||
| 1908 | |||
| 1909 | reclen = ALIGN(sizeof(*de) + de->namlen, | ||
| 1910 | sizeof(u64)); | ||
| 1911 | size -= reclen; | ||
| 1912 | de = (struct buffered_dirent *)((char *)de + reclen); | ||
| 1913 | } | ||
| 1914 | offset = vfs_llseek(file, 0, SEEK_CUR); | ||
| 1915 | if (!buf.full) | ||
| 1916 | break; | ||
| 1917 | } | ||
| 1918 | |||
| 1919 | done: | ||
| 1920 | free_page((unsigned long)(buf.dirent)); | ||
| 1921 | |||
| 1922 | if (host_err) | ||
| 1923 | return nfserrno(host_err); | ||
| 1924 | |||
| 1925 | *offsetp = offset; | ||
| 1926 | return cdp->err; | ||
| 1927 | } | ||
| 1928 | |||
| 1929 | /* | ||
| 1821 | * Read entries from a directory. | 1930 | * Read entries from a directory. |
| 1822 | * The NFSv3/4 verifier we ignore for now. | 1931 | * The NFSv3/4 verifier we ignore for now. |
| 1823 | */ | 1932 | */ |
| @@ -1826,7 +1935,6 @@ nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp, | |||
| 1826 | struct readdir_cd *cdp, filldir_t func) | 1935 | struct readdir_cd *cdp, filldir_t func) |
| 1827 | { | 1936 | { |
| 1828 | __be32 err; | 1937 | __be32 err; |
| 1829 | int host_err; | ||
| 1830 | struct file *file; | 1938 | struct file *file; |
| 1831 | loff_t offset = *offsetp; | 1939 | loff_t offset = *offsetp; |
| 1832 | 1940 | ||
| @@ -1840,21 +1948,7 @@ nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp, | |||
| 1840 | goto out_close; | 1948 | goto out_close; |
| 1841 | } | 1949 | } |
| 1842 | 1950 | ||
| 1843 | /* | 1951 | err = nfsd_buffered_readdir(file, func, cdp, offsetp); |
| 1844 | * Read the directory entries. This silly loop is necessary because | ||
| 1845 | * readdir() is not guaranteed to fill up the entire buffer, but | ||
| 1846 | * may choose to do less. | ||
| 1847 | */ | ||
| 1848 | |||
| 1849 | do { | ||
| 1850 | cdp->err = nfserr_eof; /* will be cleared on successful read */ | ||
| 1851 | host_err = vfs_readdir(file, func, cdp); | ||
| 1852 | } while (host_err >=0 && cdp->err == nfs_ok); | ||
| 1853 | if (host_err) | ||
| 1854 | err = nfserrno(host_err); | ||
| 1855 | else | ||
| 1856 | err = cdp->err; | ||
| 1857 | *offsetp = vfs_llseek(file, 0, 1); | ||
| 1858 | 1952 | ||
| 1859 | if (err == nfserr_eof || err == nfserr_toosmall) | 1953 | if (err == nfserr_eof || err == nfserr_toosmall) |
| 1860 | err = nfs_ok; /* can still be found in ->err */ | 1954 | err = nfs_ok; /* can still be found in ->err */ |
diff --git a/fs/ntfs/namei.c b/fs/ntfs/namei.c index 9e8a95be7a1e..2ca00153b6ec 100644 --- a/fs/ntfs/namei.c +++ b/fs/ntfs/namei.c | |||
| @@ -304,8 +304,6 @@ static struct dentry *ntfs_get_parent(struct dentry *child_dent) | |||
| 304 | ntfs_attr_search_ctx *ctx; | 304 | ntfs_attr_search_ctx *ctx; |
| 305 | ATTR_RECORD *attr; | 305 | ATTR_RECORD *attr; |
| 306 | FILE_NAME_ATTR *fn; | 306 | FILE_NAME_ATTR *fn; |
| 307 | struct inode *parent_vi; | ||
| 308 | struct dentry *parent_dent; | ||
| 309 | unsigned long parent_ino; | 307 | unsigned long parent_ino; |
| 310 | int err; | 308 | int err; |
| 311 | 309 | ||
| @@ -345,24 +343,8 @@ try_next: | |||
| 345 | /* Release the search context and the mft record of the child. */ | 343 | /* Release the search context and the mft record of the child. */ |
| 346 | ntfs_attr_put_search_ctx(ctx); | 344 | ntfs_attr_put_search_ctx(ctx); |
| 347 | unmap_mft_record(ni); | 345 | unmap_mft_record(ni); |
| 348 | /* Get the inode of the parent directory. */ | 346 | |
| 349 | parent_vi = ntfs_iget(vi->i_sb, parent_ino); | 347 | return d_obtain_alias(ntfs_iget(vi->i_sb, parent_ino)); |
| 350 | if (IS_ERR(parent_vi) || unlikely(is_bad_inode(parent_vi))) { | ||
| 351 | if (!IS_ERR(parent_vi)) | ||
| 352 | iput(parent_vi); | ||
| 353 | ntfs_error(vi->i_sb, "Failed to get parent directory inode " | ||
| 354 | "0x%lx of child inode 0x%lx.", parent_ino, | ||
| 355 | vi->i_ino); | ||
| 356 | return ERR_PTR(-EACCES); | ||
| 357 | } | ||
| 358 | /* Finally get a dentry for the parent directory and return it. */ | ||
| 359 | parent_dent = d_alloc_anon(parent_vi); | ||
| 360 | if (unlikely(!parent_dent)) { | ||
| 361 | iput(parent_vi); | ||
| 362 | return ERR_PTR(-ENOMEM); | ||
| 363 | } | ||
| 364 | ntfs_debug("Done for inode 0x%lx.", vi->i_ino); | ||
| 365 | return parent_dent; | ||
| 366 | } | 348 | } |
| 367 | 349 | ||
| 368 | static struct inode *ntfs_nfs_get_inode(struct super_block *sb, | 350 | static struct inode *ntfs_nfs_get_inode(struct super_block *sb, |
diff --git a/fs/ocfs2/export.c b/fs/ocfs2/export.c index 67527cebf214..2f27b332d8b3 100644 --- a/fs/ocfs2/export.c +++ b/fs/ocfs2/export.c | |||
| @@ -68,14 +68,9 @@ static struct dentry *ocfs2_get_dentry(struct super_block *sb, | |||
| 68 | return ERR_PTR(-ESTALE); | 68 | return ERR_PTR(-ESTALE); |
| 69 | } | 69 | } |
| 70 | 70 | ||
| 71 | result = d_alloc_anon(inode); | 71 | result = d_obtain_alias(inode); |
| 72 | 72 | if (!IS_ERR(result)) | |
| 73 | if (!result) { | 73 | result->d_op = &ocfs2_dentry_ops; |
| 74 | iput(inode); | ||
| 75 | mlog_errno(-ENOMEM); | ||
| 76 | return ERR_PTR(-ENOMEM); | ||
| 77 | } | ||
| 78 | result->d_op = &ocfs2_dentry_ops; | ||
| 79 | 74 | ||
| 80 | mlog_exit_ptr(result); | 75 | mlog_exit_ptr(result); |
| 81 | return result; | 76 | return result; |
| @@ -86,7 +81,6 @@ static struct dentry *ocfs2_get_parent(struct dentry *child) | |||
| 86 | int status; | 81 | int status; |
| 87 | u64 blkno; | 82 | u64 blkno; |
| 88 | struct dentry *parent; | 83 | struct dentry *parent; |
| 89 | struct inode *inode; | ||
| 90 | struct inode *dir = child->d_inode; | 84 | struct inode *dir = child->d_inode; |
| 91 | 85 | ||
| 92 | mlog_entry("(0x%p, '%.*s')\n", child, | 86 | mlog_entry("(0x%p, '%.*s')\n", child, |
| @@ -109,21 +103,9 @@ static struct dentry *ocfs2_get_parent(struct dentry *child) | |||
| 109 | goto bail_unlock; | 103 | goto bail_unlock; |
| 110 | } | 104 | } |
| 111 | 105 | ||
| 112 | inode = ocfs2_iget(OCFS2_SB(dir->i_sb), blkno, 0, 0); | 106 | parent = d_obtain_alias(ocfs2_iget(OCFS2_SB(dir->i_sb), blkno, 0, 0)); |
| 113 | if (IS_ERR(inode)) { | 107 | if (!IS_ERR(parent)) |
| 114 | mlog(ML_ERROR, "Unable to create inode %llu\n", | 108 | parent->d_op = &ocfs2_dentry_ops; |
| 115 | (unsigned long long)blkno); | ||
| 116 | parent = ERR_PTR(-EACCES); | ||
| 117 | goto bail_unlock; | ||
| 118 | } | ||
| 119 | |||
| 120 | parent = d_alloc_anon(inode); | ||
| 121 | if (!parent) { | ||
| 122 | iput(inode); | ||
| 123 | parent = ERR_PTR(-ENOMEM); | ||
| 124 | } | ||
| 125 | |||
| 126 | parent->d_op = &ocfs2_dentry_ops; | ||
| 127 | 109 | ||
| 128 | bail_unlock: | 110 | bail_unlock: |
| 129 | ocfs2_inode_unlock(dir, 0); | 111 | ocfs2_inode_unlock(dir, 0); |
diff --git a/fs/omfs/dir.c b/fs/omfs/dir.c index c0757e998876..c7275cfbdcfb 100644 --- a/fs/omfs/dir.c +++ b/fs/omfs/dir.c | |||
| @@ -501,4 +501,5 @@ struct inode_operations omfs_dir_inops = { | |||
| 501 | struct file_operations omfs_dir_operations = { | 501 | struct file_operations omfs_dir_operations = { |
| 502 | .read = generic_read_dir, | 502 | .read = generic_read_dir, |
| 503 | .readdir = omfs_readdir, | 503 | .readdir = omfs_readdir, |
| 504 | .llseek = generic_file_llseek, | ||
| 504 | }; | 505 | }; |
diff --git a/fs/openpromfs/inode.c b/fs/openpromfs/inode.c index 9f5b054f06b9..d41bdc784de4 100644 --- a/fs/openpromfs/inode.c +++ b/fs/openpromfs/inode.c | |||
| @@ -167,6 +167,7 @@ static int openpromfs_readdir(struct file *, void *, filldir_t); | |||
| 167 | static const struct file_operations openprom_operations = { | 167 | static const struct file_operations openprom_operations = { |
| 168 | .read = generic_read_dir, | 168 | .read = generic_read_dir, |
| 169 | .readdir = openpromfs_readdir, | 169 | .readdir = openpromfs_readdir, |
| 170 | .llseek = generic_file_llseek, | ||
| 170 | }; | 171 | }; |
| 171 | 172 | ||
| 172 | static struct dentry *openpromfs_lookup(struct inode *, struct dentry *, struct nameidata *); | 173 | static struct dentry *openpromfs_lookup(struct inode *, struct dentry *, struct nameidata *); |
diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c index 945a81043ba2..7b997754a25e 100644 --- a/fs/proc/proc_sysctl.c +++ b/fs/proc/proc_sysctl.c | |||
| @@ -298,13 +298,19 @@ static int proc_sys_permission(struct inode *inode, int mask) | |||
| 298 | * sysctl entries that are not writeable, | 298 | * sysctl entries that are not writeable, |
| 299 | * are _NOT_ writeable, capabilities or not. | 299 | * are _NOT_ writeable, capabilities or not. |
| 300 | */ | 300 | */ |
| 301 | struct ctl_table_header *head = grab_header(inode); | 301 | struct ctl_table_header *head; |
| 302 | struct ctl_table *table = PROC_I(inode)->sysctl_entry; | 302 | struct ctl_table *table; |
| 303 | int error; | 303 | int error; |
| 304 | 304 | ||
| 305 | /* Executable files are not allowed under /proc/sys/ */ | ||
| 306 | if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode)) | ||
| 307 | return -EACCES; | ||
| 308 | |||
| 309 | head = grab_header(inode); | ||
| 305 | if (IS_ERR(head)) | 310 | if (IS_ERR(head)) |
| 306 | return PTR_ERR(head); | 311 | return PTR_ERR(head); |
| 307 | 312 | ||
| 313 | table = PROC_I(inode)->sysctl_entry; | ||
| 308 | if (!table) /* global root - r-xr-xr-x */ | 314 | if (!table) /* global root - r-xr-xr-x */ |
| 309 | error = mask & MAY_WRITE ? -EACCES : 0; | 315 | error = mask & MAY_WRITE ? -EACCES : 0; |
| 310 | else /* Use the permissions on the sysctl table entry */ | 316 | else /* Use the permissions on the sysctl table entry */ |
| @@ -353,6 +359,7 @@ static const struct file_operations proc_sys_file_operations = { | |||
| 353 | 359 | ||
| 354 | static const struct file_operations proc_sys_dir_file_operations = { | 360 | static const struct file_operations proc_sys_dir_file_operations = { |
| 355 | .readdir = proc_sys_readdir, | 361 | .readdir = proc_sys_readdir, |
| 362 | .llseek = generic_file_llseek, | ||
| 356 | }; | 363 | }; |
| 357 | 364 | ||
| 358 | static const struct inode_operations proc_sys_inode_operations = { | 365 | static const struct inode_operations proc_sys_inode_operations = { |
diff --git a/fs/read_write.c b/fs/read_write.c index 9ba495d5a29b..969a6d9c020b 100644 --- a/fs/read_write.c +++ b/fs/read_write.c | |||
| @@ -31,39 +31,61 @@ const struct file_operations generic_ro_fops = { | |||
| 31 | 31 | ||
| 32 | EXPORT_SYMBOL(generic_ro_fops); | 32 | EXPORT_SYMBOL(generic_ro_fops); |
| 33 | 33 | ||
| 34 | /** | ||
| 35 | * generic_file_llseek_unlocked - lockless generic llseek implementation | ||
| 36 | * @file: file structure to seek on | ||
| 37 | * @offset: file offset to seek to | ||
| 38 | * @origin: type of seek | ||
| 39 | * | ||
| 40 | * Updates the file offset to the value specified by @offset and @origin. | ||
| 41 | * Locking must be provided by the caller. | ||
| 42 | */ | ||
| 34 | loff_t | 43 | loff_t |
| 35 | generic_file_llseek_unlocked(struct file *file, loff_t offset, int origin) | 44 | generic_file_llseek_unlocked(struct file *file, loff_t offset, int origin) |
| 36 | { | 45 | { |
| 37 | loff_t retval; | ||
| 38 | struct inode *inode = file->f_mapping->host; | 46 | struct inode *inode = file->f_mapping->host; |
| 39 | 47 | ||
| 40 | switch (origin) { | 48 | switch (origin) { |
| 41 | case SEEK_END: | 49 | case SEEK_END: |
| 42 | offset += inode->i_size; | 50 | offset += inode->i_size; |
| 43 | break; | 51 | break; |
| 44 | case SEEK_CUR: | 52 | case SEEK_CUR: |
| 45 | offset += file->f_pos; | 53 | offset += file->f_pos; |
| 54 | break; | ||
| 46 | } | 55 | } |
| 47 | retval = -EINVAL; | 56 | |
| 48 | if (offset>=0 && offset<=inode->i_sb->s_maxbytes) { | 57 | if (offset < 0 || offset > inode->i_sb->s_maxbytes) |
| 49 | /* Special lock needed here? */ | 58 | return -EINVAL; |
| 50 | if (offset != file->f_pos) { | 59 | |
| 51 | file->f_pos = offset; | 60 | /* Special lock needed here? */ |
| 52 | file->f_version = 0; | 61 | if (offset != file->f_pos) { |
| 53 | } | 62 | file->f_pos = offset; |
| 54 | retval = offset; | 63 | file->f_version = 0; |
| 55 | } | 64 | } |
| 56 | return retval; | 65 | |
| 66 | return offset; | ||
| 57 | } | 67 | } |
| 58 | EXPORT_SYMBOL(generic_file_llseek_unlocked); | 68 | EXPORT_SYMBOL(generic_file_llseek_unlocked); |
| 59 | 69 | ||
| 70 | /** | ||
| 71 | * generic_file_llseek - generic llseek implementation for regular files | ||
| 72 | * @file: file structure to seek on | ||
| 73 | * @offset: file offset to seek to | ||
| 74 | * @origin: type of seek | ||
| 75 | * | ||
| 76 | * This is a generic implemenation of ->llseek useable for all normal local | ||
| 77 | * filesystems. It just updates the file offset to the value specified by | ||
| 78 | * @offset and @origin under i_mutex. | ||
| 79 | */ | ||
| 60 | loff_t generic_file_llseek(struct file *file, loff_t offset, int origin) | 80 | loff_t generic_file_llseek(struct file *file, loff_t offset, int origin) |
| 61 | { | 81 | { |
| 62 | loff_t n; | 82 | loff_t rval; |
| 83 | |||
| 63 | mutex_lock(&file->f_dentry->d_inode->i_mutex); | 84 | mutex_lock(&file->f_dentry->d_inode->i_mutex); |
| 64 | n = generic_file_llseek_unlocked(file, offset, origin); | 85 | rval = generic_file_llseek_unlocked(file, offset, origin); |
| 65 | mutex_unlock(&file->f_dentry->d_inode->i_mutex); | 86 | mutex_unlock(&file->f_dentry->d_inode->i_mutex); |
| 66 | return n; | 87 | |
| 88 | return rval; | ||
| 67 | } | 89 | } |
| 68 | EXPORT_SYMBOL(generic_file_llseek); | 90 | EXPORT_SYMBOL(generic_file_llseek); |
| 69 | 91 | ||
diff --git a/fs/readdir.c b/fs/readdir.c index 93a7559bbfd8..b318d9b5af2e 100644 --- a/fs/readdir.c +++ b/fs/readdir.c | |||
| @@ -117,7 +117,7 @@ asmlinkage long old_readdir(unsigned int fd, struct old_linux_dirent __user * di | |||
| 117 | buf.dirent = dirent; | 117 | buf.dirent = dirent; |
| 118 | 118 | ||
| 119 | error = vfs_readdir(file, fillonedir, &buf); | 119 | error = vfs_readdir(file, fillonedir, &buf); |
| 120 | if (error >= 0) | 120 | if (buf.result) |
| 121 | error = buf.result; | 121 | error = buf.result; |
| 122 | 122 | ||
| 123 | fput(file); | 123 | fput(file); |
| @@ -209,9 +209,8 @@ asmlinkage long sys_getdents(unsigned int fd, struct linux_dirent __user * diren | |||
| 209 | buf.error = 0; | 209 | buf.error = 0; |
| 210 | 210 | ||
| 211 | error = vfs_readdir(file, filldir, &buf); | 211 | error = vfs_readdir(file, filldir, &buf); |
| 212 | if (error < 0) | 212 | if (error >= 0) |
| 213 | goto out_putf; | 213 | error = buf.error; |
| 214 | error = buf.error; | ||
| 215 | lastdirent = buf.previous; | 214 | lastdirent = buf.previous; |
| 216 | if (lastdirent) { | 215 | if (lastdirent) { |
| 217 | if (put_user(file->f_pos, &lastdirent->d_off)) | 216 | if (put_user(file->f_pos, &lastdirent->d_off)) |
| @@ -219,8 +218,6 @@ asmlinkage long sys_getdents(unsigned int fd, struct linux_dirent __user * diren | |||
| 219 | else | 218 | else |
| 220 | error = count - buf.count; | 219 | error = count - buf.count; |
| 221 | } | 220 | } |
| 222 | |||
| 223 | out_putf: | ||
| 224 | fput(file); | 221 | fput(file); |
| 225 | out: | 222 | out: |
| 226 | return error; | 223 | return error; |
| @@ -293,19 +290,16 @@ asmlinkage long sys_getdents64(unsigned int fd, struct linux_dirent64 __user * d | |||
| 293 | buf.error = 0; | 290 | buf.error = 0; |
| 294 | 291 | ||
| 295 | error = vfs_readdir(file, filldir64, &buf); | 292 | error = vfs_readdir(file, filldir64, &buf); |
| 296 | if (error < 0) | 293 | if (error >= 0) |
| 297 | goto out_putf; | 294 | error = buf.error; |
| 298 | error = buf.error; | ||
| 299 | lastdirent = buf.previous; | 295 | lastdirent = buf.previous; |
| 300 | if (lastdirent) { | 296 | if (lastdirent) { |
| 301 | typeof(lastdirent->d_off) d_off = file->f_pos; | 297 | typeof(lastdirent->d_off) d_off = file->f_pos; |
| 302 | error = -EFAULT; | ||
| 303 | if (__put_user(d_off, &lastdirent->d_off)) | 298 | if (__put_user(d_off, &lastdirent->d_off)) |
| 304 | goto out_putf; | 299 | error = -EFAULT; |
| 305 | error = count - buf.count; | 300 | else |
| 301 | error = count - buf.count; | ||
| 306 | } | 302 | } |
| 307 | |||
| 308 | out_putf: | ||
| 309 | fput(file); | 303 | fput(file); |
| 310 | out: | 304 | out: |
| 311 | return error; | 305 | return error; |
diff --git a/fs/reiserfs/file.c b/fs/reiserfs/file.c index a804903d31d1..33408417038c 100644 --- a/fs/reiserfs/file.c +++ b/fs/reiserfs/file.c | |||
| @@ -296,6 +296,7 @@ const struct file_operations reiserfs_file_operations = { | |||
| 296 | .aio_write = generic_file_aio_write, | 296 | .aio_write = generic_file_aio_write, |
| 297 | .splice_read = generic_file_splice_read, | 297 | .splice_read = generic_file_splice_read, |
| 298 | .splice_write = generic_file_splice_write, | 298 | .splice_write = generic_file_splice_write, |
| 299 | .llseek = generic_file_llseek, | ||
| 299 | }; | 300 | }; |
| 300 | 301 | ||
| 301 | const struct inode_operations reiserfs_file_inode_operations = { | 302 | const struct inode_operations reiserfs_file_inode_operations = { |
diff --git a/fs/reiserfs/inode.c b/fs/reiserfs/inode.c index 5699171212ae..6c4c2c69449f 100644 --- a/fs/reiserfs/inode.c +++ b/fs/reiserfs/inode.c | |||
| @@ -1522,7 +1522,6 @@ static struct dentry *reiserfs_get_dentry(struct super_block *sb, | |||
| 1522 | 1522 | ||
| 1523 | { | 1523 | { |
| 1524 | struct cpu_key key; | 1524 | struct cpu_key key; |
| 1525 | struct dentry *result; | ||
| 1526 | struct inode *inode; | 1525 | struct inode *inode; |
| 1527 | 1526 | ||
| 1528 | key.on_disk_key.k_objectid = objectid; | 1527 | key.on_disk_key.k_objectid = objectid; |
| @@ -1535,16 +1534,8 @@ static struct dentry *reiserfs_get_dentry(struct super_block *sb, | |||
| 1535 | inode = NULL; | 1534 | inode = NULL; |
| 1536 | } | 1535 | } |
| 1537 | reiserfs_write_unlock(sb); | 1536 | reiserfs_write_unlock(sb); |
| 1538 | if (!inode) | 1537 | |
| 1539 | inode = ERR_PTR(-ESTALE); | 1538 | return d_obtain_alias(inode); |
| 1540 | if (IS_ERR(inode)) | ||
| 1541 | return ERR_CAST(inode); | ||
| 1542 | result = d_alloc_anon(inode); | ||
| 1543 | if (!result) { | ||
| 1544 | iput(inode); | ||
| 1545 | return ERR_PTR(-ENOMEM); | ||
| 1546 | } | ||
| 1547 | return result; | ||
| 1548 | } | 1539 | } |
| 1549 | 1540 | ||
| 1550 | struct dentry *reiserfs_fh_to_dentry(struct super_block *sb, struct fid *fid, | 1541 | struct dentry *reiserfs_fh_to_dentry(struct super_block *sb, struct fid *fid, |
diff --git a/fs/reiserfs/namei.c b/fs/reiserfs/namei.c index c1add28dd45e..f89ebb943f3f 100644 --- a/fs/reiserfs/namei.c +++ b/fs/reiserfs/namei.c | |||
| @@ -383,7 +383,6 @@ struct dentry *reiserfs_get_parent(struct dentry *child) | |||
| 383 | struct inode *inode = NULL; | 383 | struct inode *inode = NULL; |
| 384 | struct reiserfs_dir_entry de; | 384 | struct reiserfs_dir_entry de; |
| 385 | INITIALIZE_PATH(path_to_entry); | 385 | INITIALIZE_PATH(path_to_entry); |
| 386 | struct dentry *parent; | ||
| 387 | struct inode *dir = child->d_inode; | 386 | struct inode *dir = child->d_inode; |
| 388 | 387 | ||
| 389 | if (dir->i_nlink == 0) { | 388 | if (dir->i_nlink == 0) { |
| @@ -401,15 +400,7 @@ struct dentry *reiserfs_get_parent(struct dentry *child) | |||
| 401 | inode = reiserfs_iget(dir->i_sb, (struct cpu_key *)&(de.de_dir_id)); | 400 | inode = reiserfs_iget(dir->i_sb, (struct cpu_key *)&(de.de_dir_id)); |
| 402 | reiserfs_write_unlock(dir->i_sb); | 401 | reiserfs_write_unlock(dir->i_sb); |
| 403 | 402 | ||
| 404 | if (!inode || IS_ERR(inode)) { | 403 | return d_obtain_alias(inode); |
| 405 | return ERR_PTR(-EACCES); | ||
| 406 | } | ||
| 407 | parent = d_alloc_anon(inode); | ||
| 408 | if (!parent) { | ||
| 409 | iput(inode); | ||
| 410 | parent = ERR_PTR(-ENOMEM); | ||
| 411 | } | ||
| 412 | return parent; | ||
| 413 | } | 404 | } |
| 414 | 405 | ||
| 415 | /* add entry to the directory (entry can be hidden). | 406 | /* add entry to the directory (entry can be hidden). |
diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c index d318c7e663fa..663a91f5dce8 100644 --- a/fs/reiserfs/super.c +++ b/fs/reiserfs/super.c | |||
| @@ -2058,10 +2058,10 @@ static int reiserfs_quota_on_mount(struct super_block *sb, int type) | |||
| 2058 | * Standard function to be called on quota_on | 2058 | * Standard function to be called on quota_on |
| 2059 | */ | 2059 | */ |
| 2060 | static int reiserfs_quota_on(struct super_block *sb, int type, int format_id, | 2060 | static int reiserfs_quota_on(struct super_block *sb, int type, int format_id, |
| 2061 | char *path, int remount) | 2061 | char *name, int remount) |
| 2062 | { | 2062 | { |
| 2063 | int err; | 2063 | int err; |
| 2064 | struct nameidata nd; | 2064 | struct path path; |
| 2065 | struct inode *inode; | 2065 | struct inode *inode; |
| 2066 | struct reiserfs_transaction_handle th; | 2066 | struct reiserfs_transaction_handle th; |
| 2067 | 2067 | ||
| @@ -2069,16 +2069,16 @@ static int reiserfs_quota_on(struct super_block *sb, int type, int format_id, | |||
| 2069 | return -EINVAL; | 2069 | return -EINVAL; |
| 2070 | /* No more checks needed? Path and format_id are bogus anyway... */ | 2070 | /* No more checks needed? Path and format_id are bogus anyway... */ |
| 2071 | if (remount) | 2071 | if (remount) |
| 2072 | return vfs_quota_on(sb, type, format_id, path, 1); | 2072 | return vfs_quota_on(sb, type, format_id, name, 1); |
| 2073 | err = path_lookup(path, LOOKUP_FOLLOW, &nd); | 2073 | err = kern_path(name, LOOKUP_FOLLOW, &path); |
| 2074 | if (err) | 2074 | if (err) |
| 2075 | return err; | 2075 | return err; |
| 2076 | /* Quotafile not on the same filesystem? */ | 2076 | /* Quotafile not on the same filesystem? */ |
| 2077 | if (nd.path.mnt->mnt_sb != sb) { | 2077 | if (path.mnt->mnt_sb != sb) { |
| 2078 | err = -EXDEV; | 2078 | err = -EXDEV; |
| 2079 | goto out; | 2079 | goto out; |
| 2080 | } | 2080 | } |
| 2081 | inode = nd.path.dentry->d_inode; | 2081 | inode = path.dentry->d_inode; |
| 2082 | /* We must not pack tails for quota files on reiserfs for quota IO to work */ | 2082 | /* We must not pack tails for quota files on reiserfs for quota IO to work */ |
| 2083 | if (!(REISERFS_I(inode)->i_flags & i_nopack_mask)) { | 2083 | if (!(REISERFS_I(inode)->i_flags & i_nopack_mask)) { |
| 2084 | err = reiserfs_unpack(inode, NULL); | 2084 | err = reiserfs_unpack(inode, NULL); |
| @@ -2094,7 +2094,7 @@ static int reiserfs_quota_on(struct super_block *sb, int type, int format_id, | |||
| 2094 | /* Journaling quota? */ | 2094 | /* Journaling quota? */ |
| 2095 | if (REISERFS_SB(sb)->s_qf_names[type]) { | 2095 | if (REISERFS_SB(sb)->s_qf_names[type]) { |
| 2096 | /* Quotafile not of fs root? */ | 2096 | /* Quotafile not of fs root? */ |
| 2097 | if (nd.path.dentry->d_parent->d_inode != sb->s_root->d_inode) | 2097 | if (path.dentry->d_parent != sb->s_root) |
| 2098 | reiserfs_warning(sb, | 2098 | reiserfs_warning(sb, |
| 2099 | "reiserfs: Quota file not on filesystem root. " | 2099 | "reiserfs: Quota file not on filesystem root. " |
| 2100 | "Journalled quota will not work."); | 2100 | "Journalled quota will not work."); |
| @@ -2113,9 +2113,9 @@ static int reiserfs_quota_on(struct super_block *sb, int type, int format_id, | |||
| 2113 | if (err) | 2113 | if (err) |
| 2114 | goto out; | 2114 | goto out; |
| 2115 | } | 2115 | } |
| 2116 | err = vfs_quota_on_path(sb, type, format_id, &nd.path); | 2116 | err = vfs_quota_on_path(sb, type, format_id, &path); |
| 2117 | out: | 2117 | out: |
| 2118 | path_put(&nd.path); | 2118 | path_put(&path); |
| 2119 | return err; | 2119 | return err; |
| 2120 | } | 2120 | } |
| 2121 | 2121 | ||
diff --git a/fs/super.c b/fs/super.c index e931ae9511fe..f31ef824d069 100644 --- a/fs/super.c +++ b/fs/super.c | |||
| @@ -682,7 +682,7 @@ void emergency_remount(void) | |||
| 682 | * filesystems which don't use real block-devices. -- jrs | 682 | * filesystems which don't use real block-devices. -- jrs |
| 683 | */ | 683 | */ |
| 684 | 684 | ||
| 685 | static struct idr unnamed_dev_idr; | 685 | static DEFINE_IDA(unnamed_dev_ida); |
| 686 | static DEFINE_SPINLOCK(unnamed_dev_lock);/* protects the above */ | 686 | static DEFINE_SPINLOCK(unnamed_dev_lock);/* protects the above */ |
| 687 | 687 | ||
| 688 | int set_anon_super(struct super_block *s, void *data) | 688 | int set_anon_super(struct super_block *s, void *data) |
| @@ -691,10 +691,10 @@ int set_anon_super(struct super_block *s, void *data) | |||
| 691 | int error; | 691 | int error; |
| 692 | 692 | ||
| 693 | retry: | 693 | retry: |
| 694 | if (idr_pre_get(&unnamed_dev_idr, GFP_ATOMIC) == 0) | 694 | if (ida_pre_get(&unnamed_dev_ida, GFP_ATOMIC) == 0) |
| 695 | return -ENOMEM; | 695 | return -ENOMEM; |
| 696 | spin_lock(&unnamed_dev_lock); | 696 | spin_lock(&unnamed_dev_lock); |
| 697 | error = idr_get_new(&unnamed_dev_idr, NULL, &dev); | 697 | error = ida_get_new(&unnamed_dev_ida, &dev); |
| 698 | spin_unlock(&unnamed_dev_lock); | 698 | spin_unlock(&unnamed_dev_lock); |
| 699 | if (error == -EAGAIN) | 699 | if (error == -EAGAIN) |
| 700 | /* We raced and lost with another CPU. */ | 700 | /* We raced and lost with another CPU. */ |
| @@ -704,7 +704,7 @@ int set_anon_super(struct super_block *s, void *data) | |||
| 704 | 704 | ||
| 705 | if ((dev & MAX_ID_MASK) == (1 << MINORBITS)) { | 705 | if ((dev & MAX_ID_MASK) == (1 << MINORBITS)) { |
| 706 | spin_lock(&unnamed_dev_lock); | 706 | spin_lock(&unnamed_dev_lock); |
| 707 | idr_remove(&unnamed_dev_idr, dev); | 707 | ida_remove(&unnamed_dev_ida, dev); |
| 708 | spin_unlock(&unnamed_dev_lock); | 708 | spin_unlock(&unnamed_dev_lock); |
| 709 | return -EMFILE; | 709 | return -EMFILE; |
| 710 | } | 710 | } |
| @@ -720,17 +720,12 @@ void kill_anon_super(struct super_block *sb) | |||
| 720 | 720 | ||
| 721 | generic_shutdown_super(sb); | 721 | generic_shutdown_super(sb); |
| 722 | spin_lock(&unnamed_dev_lock); | 722 | spin_lock(&unnamed_dev_lock); |
| 723 | idr_remove(&unnamed_dev_idr, slot); | 723 | ida_remove(&unnamed_dev_ida, slot); |
| 724 | spin_unlock(&unnamed_dev_lock); | 724 | spin_unlock(&unnamed_dev_lock); |
| 725 | } | 725 | } |
| 726 | 726 | ||
| 727 | EXPORT_SYMBOL(kill_anon_super); | 727 | EXPORT_SYMBOL(kill_anon_super); |
| 728 | 728 | ||
| 729 | void __init unnamed_dev_init(void) | ||
| 730 | { | ||
| 731 | idr_init(&unnamed_dev_idr); | ||
| 732 | } | ||
| 733 | |||
| 734 | void kill_litter_super(struct super_block *sb) | 729 | void kill_litter_super(struct super_block *sb) |
| 735 | { | 730 | { |
| 736 | if (sb->s_root) | 731 | if (sb->s_root) |
diff --git a/fs/sysfs/dir.c b/fs/sysfs/dir.c index 3a05a596e3b4..82d3b79d0e08 100644 --- a/fs/sysfs/dir.c +++ b/fs/sysfs/dir.c | |||
| @@ -983,4 +983,5 @@ static int sysfs_readdir(struct file * filp, void * dirent, filldir_t filldir) | |||
| 983 | const struct file_operations sysfs_dir_operations = { | 983 | const struct file_operations sysfs_dir_operations = { |
| 984 | .read = generic_read_dir, | 984 | .read = generic_read_dir, |
| 985 | .readdir = sysfs_readdir, | 985 | .readdir = sysfs_readdir, |
| 986 | .llseek = generic_file_llseek, | ||
| 986 | }; | 987 | }; |
diff --git a/fs/udf/namei.c b/fs/udf/namei.c index d3231947db19..082409cd4b8a 100644 --- a/fs/udf/namei.c +++ b/fs/udf/namei.c | |||
| @@ -142,7 +142,7 @@ int udf_write_fi(struct inode *inode, struct fileIdentDesc *cfi, | |||
| 142 | } | 142 | } |
| 143 | 143 | ||
| 144 | static struct fileIdentDesc *udf_find_entry(struct inode *dir, | 144 | static struct fileIdentDesc *udf_find_entry(struct inode *dir, |
| 145 | struct dentry *dentry, | 145 | struct qstr *child, |
| 146 | struct udf_fileident_bh *fibh, | 146 | struct udf_fileident_bh *fibh, |
| 147 | struct fileIdentDesc *cfi) | 147 | struct fileIdentDesc *cfi) |
| 148 | { | 148 | { |
| @@ -159,8 +159,8 @@ static struct fileIdentDesc *udf_find_entry(struct inode *dir, | |||
| 159 | sector_t offset; | 159 | sector_t offset; |
| 160 | struct extent_position epos = {}; | 160 | struct extent_position epos = {}; |
| 161 | struct udf_inode_info *dinfo = UDF_I(dir); | 161 | struct udf_inode_info *dinfo = UDF_I(dir); |
| 162 | int isdotdot = dentry->d_name.len == 2 && | 162 | int isdotdot = child->len == 2 && |
| 163 | dentry->d_name.name[0] == '.' && dentry->d_name.name[1] == '.'; | 163 | child->name[0] == '.' && child->name[1] == '.'; |
| 164 | 164 | ||
| 165 | size = udf_ext0_offset(dir) + dir->i_size; | 165 | size = udf_ext0_offset(dir) + dir->i_size; |
| 166 | f_pos = udf_ext0_offset(dir); | 166 | f_pos = udf_ext0_offset(dir); |
| @@ -238,8 +238,7 @@ static struct fileIdentDesc *udf_find_entry(struct inode *dir, | |||
| 238 | continue; | 238 | continue; |
| 239 | 239 | ||
| 240 | flen = udf_get_filename(dir->i_sb, nameptr, fname, lfi); | 240 | flen = udf_get_filename(dir->i_sb, nameptr, fname, lfi); |
| 241 | if (flen && udf_match(flen, fname, dentry->d_name.len, | 241 | if (flen && udf_match(flen, fname, child->len, child->name)) |
| 242 | dentry->d_name.name)) | ||
| 243 | goto out_ok; | 242 | goto out_ok; |
| 244 | } | 243 | } |
| 245 | 244 | ||
| @@ -283,7 +282,7 @@ static struct dentry *udf_lookup(struct inode *dir, struct dentry *dentry, | |||
| 283 | } else | 282 | } else |
| 284 | #endif /* UDF_RECOVERY */ | 283 | #endif /* UDF_RECOVERY */ |
| 285 | 284 | ||
| 286 | if (udf_find_entry(dir, dentry, &fibh, &cfi)) { | 285 | if (udf_find_entry(dir, &dentry->d_name, &fibh, &cfi)) { |
| 287 | if (fibh.sbh != fibh.ebh) | 286 | if (fibh.sbh != fibh.ebh) |
| 288 | brelse(fibh.ebh); | 287 | brelse(fibh.ebh); |
| 289 | brelse(fibh.sbh); | 288 | brelse(fibh.sbh); |
| @@ -783,7 +782,7 @@ static int udf_rmdir(struct inode *dir, struct dentry *dentry) | |||
| 783 | 782 | ||
| 784 | retval = -ENOENT; | 783 | retval = -ENOENT; |
| 785 | lock_kernel(); | 784 | lock_kernel(); |
| 786 | fi = udf_find_entry(dir, dentry, &fibh, &cfi); | 785 | fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi); |
| 787 | if (!fi) | 786 | if (!fi) |
| 788 | goto out; | 787 | goto out; |
| 789 | 788 | ||
| @@ -829,7 +828,7 @@ static int udf_unlink(struct inode *dir, struct dentry *dentry) | |||
| 829 | 828 | ||
| 830 | retval = -ENOENT; | 829 | retval = -ENOENT; |
| 831 | lock_kernel(); | 830 | lock_kernel(); |
| 832 | fi = udf_find_entry(dir, dentry, &fibh, &cfi); | 831 | fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi); |
| 833 | if (!fi) | 832 | if (!fi) |
| 834 | goto out; | 833 | goto out; |
| 835 | 834 | ||
| @@ -1113,7 +1112,7 @@ static int udf_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
| 1113 | struct udf_inode_info *old_iinfo = UDF_I(old_inode); | 1112 | struct udf_inode_info *old_iinfo = UDF_I(old_inode); |
| 1114 | 1113 | ||
| 1115 | lock_kernel(); | 1114 | lock_kernel(); |
| 1116 | ofi = udf_find_entry(old_dir, old_dentry, &ofibh, &ocfi); | 1115 | ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi); |
| 1117 | if (ofi) { | 1116 | if (ofi) { |
| 1118 | if (ofibh.sbh != ofibh.ebh) | 1117 | if (ofibh.sbh != ofibh.ebh) |
| 1119 | brelse(ofibh.ebh); | 1118 | brelse(ofibh.ebh); |
| @@ -1124,7 +1123,7 @@ static int udf_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
| 1124 | != old_inode->i_ino) | 1123 | != old_inode->i_ino) |
| 1125 | goto end_rename; | 1124 | goto end_rename; |
| 1126 | 1125 | ||
| 1127 | nfi = udf_find_entry(new_dir, new_dentry, &nfibh, &ncfi); | 1126 | nfi = udf_find_entry(new_dir, &new_dentry->d_name, &nfibh, &ncfi); |
| 1128 | if (nfi) { | 1127 | if (nfi) { |
| 1129 | if (!new_inode) { | 1128 | if (!new_inode) { |
| 1130 | if (nfibh.sbh != nfibh.ebh) | 1129 | if (nfibh.sbh != nfibh.ebh) |
| @@ -1192,7 +1191,7 @@ static int udf_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
| 1192 | udf_write_fi(new_dir, &ncfi, nfi, &nfibh, NULL, NULL); | 1191 | udf_write_fi(new_dir, &ncfi, nfi, &nfibh, NULL, NULL); |
| 1193 | 1192 | ||
| 1194 | /* The old fid may have moved - find it again */ | 1193 | /* The old fid may have moved - find it again */ |
| 1195 | ofi = udf_find_entry(old_dir, old_dentry, &ofibh, &ocfi); | 1194 | ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi); |
| 1196 | udf_delete_entry(old_dir, ofi, &ofibh, &ocfi); | 1195 | udf_delete_entry(old_dir, ofi, &ofibh, &ocfi); |
| 1197 | 1196 | ||
| 1198 | if (new_inode) { | 1197 | if (new_inode) { |
| @@ -1243,15 +1242,11 @@ end_rename: | |||
| 1243 | 1242 | ||
| 1244 | static struct dentry *udf_get_parent(struct dentry *child) | 1243 | static struct dentry *udf_get_parent(struct dentry *child) |
| 1245 | { | 1244 | { |
| 1246 | struct dentry *parent; | ||
| 1247 | struct inode *inode = NULL; | 1245 | struct inode *inode = NULL; |
| 1248 | struct dentry dotdot; | 1246 | struct qstr dotdot = {.name = "..", .len = 2}; |
| 1249 | struct fileIdentDesc cfi; | 1247 | struct fileIdentDesc cfi; |
| 1250 | struct udf_fileident_bh fibh; | 1248 | struct udf_fileident_bh fibh; |
| 1251 | 1249 | ||
| 1252 | dotdot.d_name.name = ".."; | ||
| 1253 | dotdot.d_name.len = 2; | ||
| 1254 | |||
| 1255 | lock_kernel(); | 1250 | lock_kernel(); |
| 1256 | if (!udf_find_entry(child->d_inode, &dotdot, &fibh, &cfi)) | 1251 | if (!udf_find_entry(child->d_inode, &dotdot, &fibh, &cfi)) |
| 1257 | goto out_unlock; | 1252 | goto out_unlock; |
| @@ -1266,13 +1261,7 @@ static struct dentry *udf_get_parent(struct dentry *child) | |||
| 1266 | goto out_unlock; | 1261 | goto out_unlock; |
| 1267 | unlock_kernel(); | 1262 | unlock_kernel(); |
| 1268 | 1263 | ||
| 1269 | parent = d_alloc_anon(inode); | 1264 | return d_obtain_alias(inode); |
| 1270 | if (!parent) { | ||
| 1271 | iput(inode); | ||
| 1272 | parent = ERR_PTR(-ENOMEM); | ||
| 1273 | } | ||
| 1274 | |||
| 1275 | return parent; | ||
| 1276 | out_unlock: | 1265 | out_unlock: |
| 1277 | unlock_kernel(); | 1266 | unlock_kernel(); |
| 1278 | return ERR_PTR(-EACCES); | 1267 | return ERR_PTR(-EACCES); |
| @@ -1283,7 +1272,6 @@ static struct dentry *udf_nfs_get_inode(struct super_block *sb, u32 block, | |||
| 1283 | u16 partref, __u32 generation) | 1272 | u16 partref, __u32 generation) |
| 1284 | { | 1273 | { |
| 1285 | struct inode *inode; | 1274 | struct inode *inode; |
| 1286 | struct dentry *result; | ||
| 1287 | kernel_lb_addr loc; | 1275 | kernel_lb_addr loc; |
| 1288 | 1276 | ||
| 1289 | if (block == 0) | 1277 | if (block == 0) |
| @@ -1300,12 +1288,7 @@ static struct dentry *udf_nfs_get_inode(struct super_block *sb, u32 block, | |||
| 1300 | iput(inode); | 1288 | iput(inode); |
| 1301 | return ERR_PTR(-ESTALE); | 1289 | return ERR_PTR(-ESTALE); |
| 1302 | } | 1290 | } |
| 1303 | result = d_alloc_anon(inode); | 1291 | return d_obtain_alias(inode); |
| 1304 | if (!result) { | ||
| 1305 | iput(inode); | ||
| 1306 | return ERR_PTR(-ENOMEM); | ||
| 1307 | } | ||
| 1308 | return result; | ||
| 1309 | } | 1292 | } |
| 1310 | 1293 | ||
| 1311 | static struct dentry *udf_fh_to_dentry(struct super_block *sb, | 1294 | static struct dentry *udf_fh_to_dentry(struct super_block *sb, |
diff --git a/fs/ufs/dir.c b/fs/ufs/dir.c index df0bef18742d..dbbbc4668769 100644 --- a/fs/ufs/dir.c +++ b/fs/ufs/dir.c | |||
| @@ -667,4 +667,5 @@ const struct file_operations ufs_dir_operations = { | |||
| 667 | .read = generic_read_dir, | 667 | .read = generic_read_dir, |
| 668 | .readdir = ufs_readdir, | 668 | .readdir = ufs_readdir, |
| 669 | .fsync = file_fsync, | 669 | .fsync = file_fsync, |
| 670 | .llseek = generic_file_llseek, | ||
| 670 | }; | 671 | }; |
diff --git a/fs/xfs/linux-2.6/xfs_export.c b/fs/xfs/linux-2.6/xfs_export.c index 24fd598af846..7f7abec25e14 100644 --- a/fs/xfs/linux-2.6/xfs_export.c +++ b/fs/xfs/linux-2.6/xfs_export.c | |||
| @@ -148,7 +148,6 @@ xfs_fs_fh_to_dentry(struct super_block *sb, struct fid *fid, | |||
| 148 | { | 148 | { |
| 149 | struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fid; | 149 | struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fid; |
| 150 | struct inode *inode = NULL; | 150 | struct inode *inode = NULL; |
| 151 | struct dentry *result; | ||
| 152 | 151 | ||
| 153 | if (fh_len < xfs_fileid_length(fileid_type)) | 152 | if (fh_len < xfs_fileid_length(fileid_type)) |
| 154 | return NULL; | 153 | return NULL; |
| @@ -164,16 +163,7 @@ xfs_fs_fh_to_dentry(struct super_block *sb, struct fid *fid, | |||
| 164 | break; | 163 | break; |
| 165 | } | 164 | } |
| 166 | 165 | ||
| 167 | if (!inode) | 166 | return d_obtain_alias(inode); |
| 168 | return NULL; | ||
| 169 | if (IS_ERR(inode)) | ||
| 170 | return ERR_CAST(inode); | ||
| 171 | result = d_alloc_anon(inode); | ||
| 172 | if (!result) { | ||
| 173 | iput(inode); | ||
| 174 | return ERR_PTR(-ENOMEM); | ||
| 175 | } | ||
| 176 | return result; | ||
| 177 | } | 167 | } |
| 178 | 168 | ||
| 179 | STATIC struct dentry * | 169 | STATIC struct dentry * |
| @@ -182,7 +172,6 @@ xfs_fs_fh_to_parent(struct super_block *sb, struct fid *fid, | |||
| 182 | { | 172 | { |
| 183 | struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fid; | 173 | struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fid; |
| 184 | struct inode *inode = NULL; | 174 | struct inode *inode = NULL; |
| 185 | struct dentry *result; | ||
| 186 | 175 | ||
| 187 | switch (fileid_type) { | 176 | switch (fileid_type) { |
| 188 | case FILEID_INO32_GEN_PARENT: | 177 | case FILEID_INO32_GEN_PARENT: |
| @@ -195,16 +184,7 @@ xfs_fs_fh_to_parent(struct super_block *sb, struct fid *fid, | |||
| 195 | break; | 184 | break; |
| 196 | } | 185 | } |
| 197 | 186 | ||
| 198 | if (!inode) | 187 | return d_obtain_alias(inode); |
| 199 | return NULL; | ||
| 200 | if (IS_ERR(inode)) | ||
| 201 | return ERR_CAST(inode); | ||
| 202 | result = d_alloc_anon(inode); | ||
| 203 | if (!result) { | ||
| 204 | iput(inode); | ||
| 205 | return ERR_PTR(-ENOMEM); | ||
| 206 | } | ||
| 207 | return result; | ||
| 208 | } | 188 | } |
| 209 | 189 | ||
| 210 | STATIC struct dentry * | 190 | STATIC struct dentry * |
| @@ -213,18 +193,12 @@ xfs_fs_get_parent( | |||
| 213 | { | 193 | { |
| 214 | int error; | 194 | int error; |
| 215 | struct xfs_inode *cip; | 195 | struct xfs_inode *cip; |
| 216 | struct dentry *parent; | ||
| 217 | 196 | ||
| 218 | error = xfs_lookup(XFS_I(child->d_inode), &xfs_name_dotdot, &cip, NULL); | 197 | error = xfs_lookup(XFS_I(child->d_inode), &xfs_name_dotdot, &cip, NULL); |
| 219 | if (unlikely(error)) | 198 | if (unlikely(error)) |
| 220 | return ERR_PTR(-error); | 199 | return ERR_PTR(-error); |
| 221 | 200 | ||
| 222 | parent = d_alloc_anon(VFS_I(cip)); | 201 | return d_obtain_alias(VFS_I(cip)); |
| 223 | if (unlikely(!parent)) { | ||
| 224 | iput(VFS_I(cip)); | ||
| 225 | return ERR_PTR(-ENOMEM); | ||
| 226 | } | ||
| 227 | return parent; | ||
| 228 | } | 202 | } |
| 229 | 203 | ||
| 230 | const struct export_operations xfs_export_operations = { | 204 | const struct export_operations xfs_export_operations = { |
diff --git a/fs/xfs/linux-2.6/xfs_file.c b/fs/xfs/linux-2.6/xfs_file.c index 5311c1acdd40..3fee790f138b 100644 --- a/fs/xfs/linux-2.6/xfs_file.c +++ b/fs/xfs/linux-2.6/xfs_file.c | |||
| @@ -204,15 +204,6 @@ xfs_file_fsync( | |||
| 204 | return -xfs_fsync(XFS_I(dentry->d_inode)); | 204 | return -xfs_fsync(XFS_I(dentry->d_inode)); |
| 205 | } | 205 | } |
| 206 | 206 | ||
| 207 | /* | ||
| 208 | * Unfortunately we can't just use the clean and simple readdir implementation | ||
| 209 | * below, because nfs might call back into ->lookup from the filldir callback | ||
| 210 | * and that will deadlock the low-level btree code. | ||
| 211 | * | ||
| 212 | * Hopefully we'll find a better workaround that allows to use the optimal | ||
| 213 | * version at least for local readdirs for 2.6.25. | ||
| 214 | */ | ||
| 215 | #if 0 | ||
| 216 | STATIC int | 207 | STATIC int |
| 217 | xfs_file_readdir( | 208 | xfs_file_readdir( |
| 218 | struct file *filp, | 209 | struct file *filp, |
| @@ -244,125 +235,6 @@ xfs_file_readdir( | |||
| 244 | return -error; | 235 | return -error; |
| 245 | return 0; | 236 | return 0; |
| 246 | } | 237 | } |
| 247 | #else | ||
| 248 | |||
| 249 | struct hack_dirent { | ||
| 250 | u64 ino; | ||
| 251 | loff_t offset; | ||
| 252 | int namlen; | ||
| 253 | unsigned int d_type; | ||
| 254 | char name[]; | ||
| 255 | }; | ||
| 256 | |||
| 257 | struct hack_callback { | ||
| 258 | char *dirent; | ||
| 259 | size_t len; | ||
| 260 | size_t used; | ||
| 261 | }; | ||
| 262 | |||
| 263 | STATIC int | ||
| 264 | xfs_hack_filldir( | ||
| 265 | void *__buf, | ||
| 266 | const char *name, | ||
| 267 | int namlen, | ||
| 268 | loff_t offset, | ||
| 269 | u64 ino, | ||
| 270 | unsigned int d_type) | ||
| 271 | { | ||
| 272 | struct hack_callback *buf = __buf; | ||
| 273 | struct hack_dirent *de = (struct hack_dirent *)(buf->dirent + buf->used); | ||
| 274 | unsigned int reclen; | ||
| 275 | |||
| 276 | reclen = ALIGN(sizeof(struct hack_dirent) + namlen, sizeof(u64)); | ||
| 277 | if (buf->used + reclen > buf->len) | ||
| 278 | return -EINVAL; | ||
| 279 | |||
| 280 | de->namlen = namlen; | ||
| 281 | de->offset = offset; | ||
| 282 | de->ino = ino; | ||
| 283 | de->d_type = d_type; | ||
| 284 | memcpy(de->name, name, namlen); | ||
| 285 | buf->used += reclen; | ||
| 286 | return 0; | ||
| 287 | } | ||
| 288 | |||
| 289 | STATIC int | ||
| 290 | xfs_file_readdir( | ||
| 291 | struct file *filp, | ||
| 292 | void *dirent, | ||
| 293 | filldir_t filldir) | ||
| 294 | { | ||
| 295 | struct inode *inode = filp->f_path.dentry->d_inode; | ||
| 296 | xfs_inode_t *ip = XFS_I(inode); | ||
| 297 | struct hack_callback buf; | ||
| 298 | struct hack_dirent *de; | ||
| 299 | int error; | ||
| 300 | loff_t size; | ||
| 301 | int eof = 0; | ||
| 302 | xfs_off_t start_offset, curr_offset, offset; | ||
| 303 | |||
| 304 | /* | ||
| 305 | * Try fairly hard to get memory | ||
| 306 | */ | ||
| 307 | buf.len = PAGE_CACHE_SIZE; | ||
| 308 | do { | ||
| 309 | buf.dirent = kmalloc(buf.len, GFP_KERNEL); | ||
| 310 | if (buf.dirent) | ||
| 311 | break; | ||
| 312 | buf.len >>= 1; | ||
| 313 | } while (buf.len >= 1024); | ||
| 314 | |||
| 315 | if (!buf.dirent) | ||
| 316 | return -ENOMEM; | ||
| 317 | |||
| 318 | curr_offset = filp->f_pos; | ||
| 319 | if (curr_offset == 0x7fffffff) | ||
| 320 | offset = 0xffffffff; | ||
| 321 | else | ||
| 322 | offset = filp->f_pos; | ||
| 323 | |||
| 324 | while (!eof) { | ||
| 325 | unsigned int reclen; | ||
| 326 | |||
| 327 | start_offset = offset; | ||
| 328 | |||
| 329 | buf.used = 0; | ||
| 330 | error = -xfs_readdir(ip, &buf, buf.len, &offset, | ||
| 331 | xfs_hack_filldir); | ||
| 332 | if (error || offset == start_offset) { | ||
| 333 | size = 0; | ||
| 334 | break; | ||
| 335 | } | ||
| 336 | |||
| 337 | size = buf.used; | ||
| 338 | de = (struct hack_dirent *)buf.dirent; | ||
| 339 | while (size > 0) { | ||
| 340 | curr_offset = de->offset /* & 0x7fffffff */; | ||
| 341 | if (filldir(dirent, de->name, de->namlen, | ||
| 342 | curr_offset & 0x7fffffff, | ||
| 343 | de->ino, de->d_type)) { | ||
| 344 | goto done; | ||
| 345 | } | ||
| 346 | |||
| 347 | reclen = ALIGN(sizeof(struct hack_dirent) + de->namlen, | ||
| 348 | sizeof(u64)); | ||
| 349 | size -= reclen; | ||
| 350 | de = (struct hack_dirent *)((char *)de + reclen); | ||
| 351 | } | ||
| 352 | } | ||
| 353 | |||
| 354 | done: | ||
| 355 | if (!error) { | ||
| 356 | if (size == 0) | ||
| 357 | filp->f_pos = offset & 0x7fffffff; | ||
| 358 | else if (de) | ||
| 359 | filp->f_pos = curr_offset; | ||
| 360 | } | ||
| 361 | |||
| 362 | kfree(buf.dirent); | ||
| 363 | return error; | ||
| 364 | } | ||
| 365 | #endif | ||
| 366 | 238 | ||
| 367 | STATIC int | 239 | STATIC int |
| 368 | xfs_file_mmap( | 240 | xfs_file_mmap( |
diff --git a/fs/xfs/linux-2.6/xfs_ioctl.c b/fs/xfs/linux-2.6/xfs_ioctl.c index 48799ba7e3e6..d3438c72dcaf 100644 --- a/fs/xfs/linux-2.6/xfs_ioctl.c +++ b/fs/xfs/linux-2.6/xfs_ioctl.c | |||
| @@ -311,11 +311,10 @@ xfs_open_by_handle( | |||
| 311 | return new_fd; | 311 | return new_fd; |
| 312 | } | 312 | } |
| 313 | 313 | ||
| 314 | dentry = d_alloc_anon(inode); | 314 | dentry = d_obtain_alias(inode); |
| 315 | if (dentry == NULL) { | 315 | if (IS_ERR(dentry)) { |
| 316 | iput(inode); | ||
| 317 | put_unused_fd(new_fd); | 316 | put_unused_fd(new_fd); |
| 318 | return -XFS_ERROR(ENOMEM); | 317 | return PTR_ERR(dentry); |
| 319 | } | 318 | } |
| 320 | 319 | ||
| 321 | /* Ensure umount returns EBUSY on umounts while this file is open. */ | 320 | /* Ensure umount returns EBUSY on umounts while this file is open. */ |
diff --git a/include/linux/dcache.h b/include/linux/dcache.h index efba1de629ac..a37359d0bad1 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h | |||
| @@ -228,9 +228,9 @@ extern void d_delete(struct dentry *); | |||
| 228 | 228 | ||
| 229 | /* allocate/de-allocate */ | 229 | /* allocate/de-allocate */ |
| 230 | extern struct dentry * d_alloc(struct dentry *, const struct qstr *); | 230 | extern struct dentry * d_alloc(struct dentry *, const struct qstr *); |
| 231 | extern struct dentry * d_alloc_anon(struct inode *); | ||
| 232 | extern struct dentry * d_splice_alias(struct inode *, struct dentry *); | 231 | extern struct dentry * d_splice_alias(struct inode *, struct dentry *); |
| 233 | extern struct dentry * d_add_ci(struct dentry *, struct inode *, struct qstr *); | 232 | extern struct dentry * d_add_ci(struct dentry *, struct inode *, struct qstr *); |
| 233 | extern struct dentry * d_obtain_alias(struct inode *); | ||
| 234 | extern void shrink_dcache_sb(struct super_block *); | 234 | extern void shrink_dcache_sb(struct super_block *); |
| 235 | extern void shrink_dcache_parent(struct dentry *); | 235 | extern void shrink_dcache_parent(struct dentry *); |
| 236 | extern void shrink_dcache_for_umount(struct super_block *); | 236 | extern void shrink_dcache_for_umount(struct super_block *); |
| @@ -287,6 +287,7 @@ static inline struct dentry *d_add_unique(struct dentry *entry, struct inode *in | |||
| 287 | 287 | ||
| 288 | /* used for rename() and baskets */ | 288 | /* used for rename() and baskets */ |
| 289 | extern void d_move(struct dentry *, struct dentry *); | 289 | extern void d_move(struct dentry *, struct dentry *); |
| 290 | extern struct dentry *d_ancestor(struct dentry *, struct dentry *); | ||
| 290 | 291 | ||
| 291 | /* appendix may either be NULL or be used for transname suffixes */ | 292 | /* appendix may either be NULL or be used for transname suffixes */ |
| 292 | extern struct dentry * d_lookup(struct dentry *, struct qstr *); | 293 | extern struct dentry * d_lookup(struct dentry *, struct qstr *); |
diff --git a/include/linux/fs.h b/include/linux/fs.h index a6a625be13fc..7d719c1a18e3 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
| @@ -136,7 +136,7 @@ extern int dir_notify_enable; | |||
| 136 | /* | 136 | /* |
| 137 | * Superblock flags that can be altered by MS_REMOUNT | 137 | * Superblock flags that can be altered by MS_REMOUNT |
| 138 | */ | 138 | */ |
| 139 | #define MS_RMT_MASK (MS_RDONLY|MS_SYNCHRONOUS|MS_MANDLOCK) | 139 | #define MS_RMT_MASK (MS_RDONLY|MS_SYNCHRONOUS|MS_MANDLOCK|MS_I_VERSION) |
| 140 | 140 | ||
| 141 | /* | 141 | /* |
| 142 | * Old magic mount flag and mask | 142 | * Old magic mount flag and mask |
| @@ -1593,7 +1593,6 @@ extern int get_sb_pseudo(struct file_system_type *, char *, | |||
| 1593 | struct vfsmount *mnt); | 1593 | struct vfsmount *mnt); |
| 1594 | extern int simple_set_mnt(struct vfsmount *mnt, struct super_block *sb); | 1594 | extern int simple_set_mnt(struct vfsmount *mnt, struct super_block *sb); |
| 1595 | int __put_super_and_need_restart(struct super_block *sb); | 1595 | int __put_super_and_need_restart(struct super_block *sb); |
| 1596 | void unnamed_dev_init(void); | ||
| 1597 | 1596 | ||
| 1598 | /* Alas, no aliases. Too much hassle with bringing module.h everywhere */ | 1597 | /* Alas, no aliases. Too much hassle with bringing module.h everywhere */ |
| 1599 | #define fops_get(fops) \ | 1598 | #define fops_get(fops) \ |
| @@ -1852,6 +1851,11 @@ extern int inode_permission(struct inode *, int); | |||
| 1852 | extern int generic_permission(struct inode *, int, | 1851 | extern int generic_permission(struct inode *, int, |
| 1853 | int (*check_acl)(struct inode *, int)); | 1852 | int (*check_acl)(struct inode *, int)); |
| 1854 | 1853 | ||
| 1854 | static inline bool execute_ok(struct inode *inode) | ||
| 1855 | { | ||
| 1856 | return (inode->i_mode & S_IXUGO) || S_ISDIR(inode->i_mode); | ||
| 1857 | } | ||
| 1858 | |||
| 1855 | extern int get_write_access(struct inode *); | 1859 | extern int get_write_access(struct inode *); |
| 1856 | extern int deny_write_access(struct file *); | 1860 | extern int deny_write_access(struct file *); |
| 1857 | static inline void put_write_access(struct inode * inode) | 1861 | static inline void put_write_access(struct inode * inode) |
diff --git a/include/linux/namei.h b/include/linux/namei.h index 68f8c3203c89..99eb80306dc5 100644 --- a/include/linux/namei.h +++ b/include/linux/namei.h | |||
| @@ -51,8 +51,10 @@ enum {LAST_NORM, LAST_ROOT, LAST_DOT, LAST_DOTDOT, LAST_BIND}; | |||
| 51 | /* | 51 | /* |
| 52 | * Intent data | 52 | * Intent data |
| 53 | */ | 53 | */ |
| 54 | #define LOOKUP_OPEN (0x0100) | 54 | #define LOOKUP_OPEN 0x0100 |
| 55 | #define LOOKUP_CREATE (0x0200) | 55 | #define LOOKUP_CREATE 0x0200 |
| 56 | #define LOOKUP_EXCL 0x0400 | ||
| 57 | #define LOOKUP_RENAME_TARGET 0x0800 | ||
| 56 | 58 | ||
| 57 | extern int user_path_at(int, const char __user *, unsigned, struct path *); | 59 | extern int user_path_at(int, const char __user *, unsigned, struct path *); |
| 58 | 60 | ||
| @@ -61,6 +63,8 @@ extern int user_path_at(int, const char __user *, unsigned, struct path *); | |||
| 61 | #define user_path_dir(name, path) \ | 63 | #define user_path_dir(name, path) \ |
| 62 | user_path_at(AT_FDCWD, name, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, path) | 64 | user_path_at(AT_FDCWD, name, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, path) |
| 63 | 65 | ||
| 66 | extern int kern_path(const char *, unsigned, struct path *); | ||
| 67 | |||
| 64 | extern int path_lookup(const char *, unsigned, struct nameidata *); | 68 | extern int path_lookup(const char *, unsigned, struct nameidata *); |
| 65 | extern int vfs_path_lookup(struct dentry *, struct vfsmount *, | 69 | extern int vfs_path_lookup(struct dentry *, struct vfsmount *, |
| 66 | const char *, unsigned int, struct nameidata *); | 70 | const char *, unsigned int, struct nameidata *); |
diff --git a/init/main.c b/init/main.c index b038fa142041..130d1a0eef11 100644 --- a/init/main.c +++ b/init/main.c | |||
| @@ -672,7 +672,6 @@ asmlinkage void __init start_kernel(void) | |||
| 672 | fork_init(num_physpages); | 672 | fork_init(num_physpages); |
| 673 | proc_caches_init(); | 673 | proc_caches_init(); |
| 674 | buffer_init(); | 674 | buffer_init(); |
| 675 | unnamed_dev_init(); | ||
| 676 | key_init(); | 675 | key_init(); |
| 677 | security_init(); | 676 | security_init(); |
| 678 | vfs_caches_init(num_physpages); | 677 | vfs_caches_init(num_physpages); |
diff --git a/kernel/audit_tree.c b/kernel/audit_tree.c index f7921a2ecf16..8ba0e0d934f2 100644 --- a/kernel/audit_tree.c +++ b/kernel/audit_tree.c | |||
| @@ -532,7 +532,7 @@ void audit_trim_trees(void) | |||
| 532 | list_add(&cursor, &tree_list); | 532 | list_add(&cursor, &tree_list); |
| 533 | while (cursor.next != &tree_list) { | 533 | while (cursor.next != &tree_list) { |
| 534 | struct audit_tree *tree; | 534 | struct audit_tree *tree; |
| 535 | struct nameidata nd; | 535 | struct path path; |
| 536 | struct vfsmount *root_mnt; | 536 | struct vfsmount *root_mnt; |
| 537 | struct node *node; | 537 | struct node *node; |
| 538 | struct list_head list; | 538 | struct list_head list; |
| @@ -544,12 +544,12 @@ void audit_trim_trees(void) | |||
| 544 | list_add(&cursor, &tree->list); | 544 | list_add(&cursor, &tree->list); |
| 545 | mutex_unlock(&audit_filter_mutex); | 545 | mutex_unlock(&audit_filter_mutex); |
| 546 | 546 | ||
| 547 | err = path_lookup(tree->pathname, 0, &nd); | 547 | err = kern_path(tree->pathname, 0, &path); |
| 548 | if (err) | 548 | if (err) |
| 549 | goto skip_it; | 549 | goto skip_it; |
| 550 | 550 | ||
| 551 | root_mnt = collect_mounts(nd.path.mnt, nd.path.dentry); | 551 | root_mnt = collect_mounts(path.mnt, path.dentry); |
| 552 | path_put(&nd.path); | 552 | path_put(&path); |
| 553 | if (!root_mnt) | 553 | if (!root_mnt) |
| 554 | goto skip_it; | 554 | goto skip_it; |
| 555 | 555 | ||
| @@ -580,19 +580,19 @@ skip_it: | |||
| 580 | } | 580 | } |
| 581 | 581 | ||
| 582 | static int is_under(struct vfsmount *mnt, struct dentry *dentry, | 582 | static int is_under(struct vfsmount *mnt, struct dentry *dentry, |
| 583 | struct nameidata *nd) | 583 | struct path *path) |
| 584 | { | 584 | { |
| 585 | if (mnt != nd->path.mnt) { | 585 | if (mnt != path->mnt) { |
| 586 | for (;;) { | 586 | for (;;) { |
| 587 | if (mnt->mnt_parent == mnt) | 587 | if (mnt->mnt_parent == mnt) |
| 588 | return 0; | 588 | return 0; |
| 589 | if (mnt->mnt_parent == nd->path.mnt) | 589 | if (mnt->mnt_parent == path->mnt) |
| 590 | break; | 590 | break; |
| 591 | mnt = mnt->mnt_parent; | 591 | mnt = mnt->mnt_parent; |
| 592 | } | 592 | } |
| 593 | dentry = mnt->mnt_mountpoint; | 593 | dentry = mnt->mnt_mountpoint; |
| 594 | } | 594 | } |
| 595 | return is_subdir(dentry, nd->path.dentry); | 595 | return is_subdir(dentry, path->dentry); |
| 596 | } | 596 | } |
| 597 | 597 | ||
| 598 | int audit_make_tree(struct audit_krule *rule, char *pathname, u32 op) | 598 | int audit_make_tree(struct audit_krule *rule, char *pathname, u32 op) |
| @@ -618,7 +618,7 @@ void audit_put_tree(struct audit_tree *tree) | |||
| 618 | int audit_add_tree_rule(struct audit_krule *rule) | 618 | int audit_add_tree_rule(struct audit_krule *rule) |
| 619 | { | 619 | { |
| 620 | struct audit_tree *seed = rule->tree, *tree; | 620 | struct audit_tree *seed = rule->tree, *tree; |
| 621 | struct nameidata nd; | 621 | struct path path; |
| 622 | struct vfsmount *mnt, *p; | 622 | struct vfsmount *mnt, *p; |
| 623 | struct list_head list; | 623 | struct list_head list; |
| 624 | int err; | 624 | int err; |
| @@ -637,11 +637,11 @@ int audit_add_tree_rule(struct audit_krule *rule) | |||
| 637 | /* do not set rule->tree yet */ | 637 | /* do not set rule->tree yet */ |
| 638 | mutex_unlock(&audit_filter_mutex); | 638 | mutex_unlock(&audit_filter_mutex); |
| 639 | 639 | ||
| 640 | err = path_lookup(tree->pathname, 0, &nd); | 640 | err = kern_path(tree->pathname, 0, &path); |
| 641 | if (err) | 641 | if (err) |
| 642 | goto Err; | 642 | goto Err; |
| 643 | mnt = collect_mounts(nd.path.mnt, nd.path.dentry); | 643 | mnt = collect_mounts(path.mnt, path.dentry); |
| 644 | path_put(&nd.path); | 644 | path_put(&path); |
| 645 | if (!mnt) { | 645 | if (!mnt) { |
| 646 | err = -ENOMEM; | 646 | err = -ENOMEM; |
| 647 | goto Err; | 647 | goto Err; |
| @@ -690,29 +690,29 @@ int audit_tag_tree(char *old, char *new) | |||
| 690 | { | 690 | { |
| 691 | struct list_head cursor, barrier; | 691 | struct list_head cursor, barrier; |
| 692 | int failed = 0; | 692 | int failed = 0; |
| 693 | struct nameidata nd; | 693 | struct path path; |
| 694 | struct vfsmount *tagged; | 694 | struct vfsmount *tagged; |
| 695 | struct list_head list; | 695 | struct list_head list; |
| 696 | struct vfsmount *mnt; | 696 | struct vfsmount *mnt; |
| 697 | struct dentry *dentry; | 697 | struct dentry *dentry; |
| 698 | int err; | 698 | int err; |
| 699 | 699 | ||
| 700 | err = path_lookup(new, 0, &nd); | 700 | err = kern_path(new, 0, &path); |
| 701 | if (err) | 701 | if (err) |
| 702 | return err; | 702 | return err; |
| 703 | tagged = collect_mounts(nd.path.mnt, nd.path.dentry); | 703 | tagged = collect_mounts(path.mnt, path.dentry); |
| 704 | path_put(&nd.path); | 704 | path_put(&path); |
| 705 | if (!tagged) | 705 | if (!tagged) |
| 706 | return -ENOMEM; | 706 | return -ENOMEM; |
| 707 | 707 | ||
| 708 | err = path_lookup(old, 0, &nd); | 708 | err = kern_path(old, 0, &path); |
| 709 | if (err) { | 709 | if (err) { |
| 710 | drop_collected_mounts(tagged); | 710 | drop_collected_mounts(tagged); |
| 711 | return err; | 711 | return err; |
| 712 | } | 712 | } |
| 713 | mnt = mntget(nd.path.mnt); | 713 | mnt = mntget(path.mnt); |
| 714 | dentry = dget(nd.path.dentry); | 714 | dentry = dget(path.dentry); |
| 715 | path_put(&nd.path); | 715 | path_put(&path); |
| 716 | 716 | ||
| 717 | if (dentry == tagged->mnt_root && dentry == mnt->mnt_root) | 717 | if (dentry == tagged->mnt_root && dentry == mnt->mnt_root) |
| 718 | follow_up(&mnt, &dentry); | 718 | follow_up(&mnt, &dentry); |
| @@ -733,7 +733,7 @@ int audit_tag_tree(char *old, char *new) | |||
| 733 | list_add(&cursor, &tree->list); | 733 | list_add(&cursor, &tree->list); |
| 734 | mutex_unlock(&audit_filter_mutex); | 734 | mutex_unlock(&audit_filter_mutex); |
| 735 | 735 | ||
| 736 | err = path_lookup(tree->pathname, 0, &nd); | 736 | err = kern_path(tree->pathname, 0, &path); |
| 737 | if (err) { | 737 | if (err) { |
| 738 | put_tree(tree); | 738 | put_tree(tree); |
| 739 | mutex_lock(&audit_filter_mutex); | 739 | mutex_lock(&audit_filter_mutex); |
| @@ -741,15 +741,15 @@ int audit_tag_tree(char *old, char *new) | |||
| 741 | } | 741 | } |
| 742 | 742 | ||
| 743 | spin_lock(&vfsmount_lock); | 743 | spin_lock(&vfsmount_lock); |
| 744 | if (!is_under(mnt, dentry, &nd)) { | 744 | if (!is_under(mnt, dentry, &path)) { |
| 745 | spin_unlock(&vfsmount_lock); | 745 | spin_unlock(&vfsmount_lock); |
| 746 | path_put(&nd.path); | 746 | path_put(&path); |
| 747 | put_tree(tree); | 747 | put_tree(tree); |
| 748 | mutex_lock(&audit_filter_mutex); | 748 | mutex_lock(&audit_filter_mutex); |
| 749 | continue; | 749 | continue; |
| 750 | } | 750 | } |
| 751 | spin_unlock(&vfsmount_lock); | 751 | spin_unlock(&vfsmount_lock); |
| 752 | path_put(&nd.path); | 752 | path_put(&path); |
| 753 | 753 | ||
| 754 | list_for_each_entry(p, &list, mnt_list) { | 754 | list_for_each_entry(p, &list, mnt_list) { |
| 755 | failed = tag_chunk(p->mnt_root->d_inode, tree); | 755 | failed = tag_chunk(p->mnt_root->d_inode, tree); |
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index c647aab8d418..dc504d308ec0 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c | |||
| @@ -711,28 +711,30 @@ static struct sock *unix_find_other(struct net *net, | |||
| 711 | int type, unsigned hash, int *error) | 711 | int type, unsigned hash, int *error) |
| 712 | { | 712 | { |
| 713 | struct sock *u; | 713 | struct sock *u; |
| 714 | struct nameidata nd; | 714 | struct path path; |
| 715 | int err = 0; | 715 | int err = 0; |
| 716 | 716 | ||
| 717 | if (sunname->sun_path[0]) { | 717 | if (sunname->sun_path[0]) { |
| 718 | err = path_lookup(sunname->sun_path, LOOKUP_FOLLOW, &nd); | 718 | struct inode *inode; |
| 719 | err = kern_path(sunname->sun_path, LOOKUP_FOLLOW, &path); | ||
| 719 | if (err) | 720 | if (err) |
| 720 | goto fail; | 721 | goto fail; |
| 721 | err = vfs_permission(&nd, MAY_WRITE); | 722 | inode = path.dentry->d_inode; |
| 723 | err = inode_permission(inode, MAY_WRITE); | ||
| 722 | if (err) | 724 | if (err) |
| 723 | goto put_fail; | 725 | goto put_fail; |
| 724 | 726 | ||
| 725 | err = -ECONNREFUSED; | 727 | err = -ECONNREFUSED; |
| 726 | if (!S_ISSOCK(nd.path.dentry->d_inode->i_mode)) | 728 | if (!S_ISSOCK(inode->i_mode)) |
| 727 | goto put_fail; | 729 | goto put_fail; |
| 728 | u = unix_find_socket_byinode(net, nd.path.dentry->d_inode); | 730 | u = unix_find_socket_byinode(net, inode); |
| 729 | if (!u) | 731 | if (!u) |
| 730 | goto put_fail; | 732 | goto put_fail; |
| 731 | 733 | ||
| 732 | if (u->sk_type == type) | 734 | if (u->sk_type == type) |
| 733 | touch_atime(nd.path.mnt, nd.path.dentry); | 735 | touch_atime(path.mnt, path.dentry); |
| 734 | 736 | ||
| 735 | path_put(&nd.path); | 737 | path_put(&path); |
| 736 | 738 | ||
| 737 | err=-EPROTOTYPE; | 739 | err=-EPROTOTYPE; |
| 738 | if (u->sk_type != type) { | 740 | if (u->sk_type != type) { |
| @@ -753,7 +755,7 @@ static struct sock *unix_find_other(struct net *net, | |||
| 753 | return u; | 755 | return u; |
| 754 | 756 | ||
| 755 | put_fail: | 757 | put_fail: |
| 756 | path_put(&nd.path); | 758 | path_put(&path); |
| 757 | fail: | 759 | fail: |
| 758 | *error=err; | 760 | *error=err; |
| 759 | return NULL; | 761 | return NULL; |
