diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-01-23 11:27:02 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-02-20 10:13:18 +0100 |
commit | 2b46cd1ae6876a4fba4cce51161d904ba41a4f7c (patch) | |
tree | 175da18abb629cc3c8a866a3e5e52e98c2217138 /fs | |
parent | 99b23b0d5fd57634ba3c4659dea6a654c2f99753 (diff) | |
download | linux-stable-2b46cd1ae6876a4fba4cce51161d904ba41a4f7c.tar.gz linux-stable-2b46cd1ae6876a4fba4cce51161d904ba41a4f7c.tar.bz2 linux-stable-2b46cd1ae6876a4fba4cce51161d904ba41a4f7c.zip |
debugfs: fix debugfs_rename parameter checking
commit d88c93f090f708c18195553b352b9f205e65418f upstream.
debugfs_rename() needs to check that the dentries passed into it really
are valid, as sometimes they are not (i.e. if the return value of
another debugfs call is passed into this one.) So fix this up by
properly checking if the two parent directories are errors (they are
allowed to be NULL), and if the dentry to rename is not NULL or an
error.
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/debugfs/inode.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index e49ba072bd64..22fe11baef2b 100644 --- a/fs/debugfs/inode.c +++ b/fs/debugfs/inode.c @@ -671,6 +671,13 @@ struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry, struct dentry *dentry = NULL, *trap; struct name_snapshot old_name; + if (IS_ERR(old_dir)) + return old_dir; + if (IS_ERR(new_dir)) + return new_dir; + if (IS_ERR_OR_NULL(old_dentry)) + return old_dentry; + trap = lock_rename(new_dir, old_dir); /* Source or destination directories don't exist? */ if (d_really_is_negative(old_dir) || d_really_is_negative(new_dir)) |