mirror of https://gitee.com/openkylin/linux.git
[PATCH] fuse: check directory aliasing in mkdir
Check the created directory inode for aliases in the mkdir() method. Signed-off-by: Miklos Szeredi <miklos@szeredi.hu> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
ea164d73a7
commit
f007d5c961
|
@ -74,6 +74,19 @@ static int fuse_dentry_revalidate(struct dentry *entry, struct nameidata *nd)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int dir_alias(struct inode *inode)
|
||||||
|
{
|
||||||
|
if (S_ISDIR(inode->i_mode)) {
|
||||||
|
/* Don't allow creating an alias to a directory */
|
||||||
|
struct dentry *alias = d_find_alias(inode);
|
||||||
|
if (alias) {
|
||||||
|
dput(alias);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static struct dentry_operations fuse_dentry_operations = {
|
static struct dentry_operations fuse_dentry_operations = {
|
||||||
.d_revalidate = fuse_dentry_revalidate,
|
.d_revalidate = fuse_dentry_revalidate,
|
||||||
};
|
};
|
||||||
|
@ -263,7 +276,7 @@ static int create_new_entry(struct fuse_conn *fc, struct fuse_req *req,
|
||||||
fuse_put_request(fc, req);
|
fuse_put_request(fc, req);
|
||||||
|
|
||||||
/* Don't allow userspace to do really stupid things... */
|
/* Don't allow userspace to do really stupid things... */
|
||||||
if ((inode->i_mode ^ mode) & S_IFMT) {
|
if (((inode->i_mode ^ mode) & S_IFMT) || dir_alias(inode)) {
|
||||||
iput(inode);
|
iput(inode);
|
||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
@ -874,14 +887,9 @@ static struct dentry *fuse_lookup(struct inode *dir, struct dentry *entry,
|
||||||
err = fuse_lookup_iget(dir, entry, &inode);
|
err = fuse_lookup_iget(dir, entry, &inode);
|
||||||
if (err)
|
if (err)
|
||||||
return ERR_PTR(err);
|
return ERR_PTR(err);
|
||||||
if (inode && S_ISDIR(inode->i_mode)) {
|
if (inode && dir_alias(inode)) {
|
||||||
/* Don't allow creating an alias to a directory */
|
iput(inode);
|
||||||
struct dentry *alias = d_find_alias(inode);
|
return ERR_PTR(-EIO);
|
||||||
if (alias) {
|
|
||||||
dput(alias);
|
|
||||||
iput(inode);
|
|
||||||
return ERR_PTR(-EIO);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
d_add(entry, inode);
|
d_add(entry, inode);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in New Issue