From: Tyler Hicks <code@tyhicks.com>
To: Jeffrey Mitchell <jeffrey.mitchell@starlab.io>
Cc: ecryptfs@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] ecryptfs: fix kernel panic with null dev_name
Date: Mon, 19 Apr 2021 00:51:48 -0500 [thread overview]
Message-ID: <20210419055148.GC405651@elm> (raw)
In-Reply-To: <20210226210023.77597-1-jeffrey.mitchell@starlab.io>
On 2021-02-26 15:00:23, Jeffrey Mitchell wrote:
> When mounting eCryptfs, a null "dev_name" argument to ecryptfs_mount()
> causes a kernel panic if the parsed options are valid. The easiest way to
> reproduce this is to call mount() from userspace with an existing
> eCryptfs mount's options and a "source" argument of 0.
>
> Error out if "dev_name" is null in ecryptfs_mount()
>
> Signed-off-by: Jeffrey Mitchell <jeffrey.mitchell@starlab.io>
Thanks for the fix! I reproduced this on a 4.15 and, while I didn't try
anything older than that, I think it affects the first kernel release
with eCryptfs. I've added the following Fixes tag:
Fixes: 237fead61998 ("[PATCH] ecryptfs: fs/Makefile and fs/Kconfig")
I've pushed it to the next branch of tyhicks/ecryptfs.git.
Tyler
> ---
> fs/ecryptfs/main.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c
> index e63259fdef28..b2f6a1937d23 100644
> --- a/fs/ecryptfs/main.c
> +++ b/fs/ecryptfs/main.c
> @@ -492,6 +492,12 @@ static struct dentry *ecryptfs_mount(struct file_system_type *fs_type, int flags
> goto out;
> }
>
> + if (!dev_name) {
> + rc = -EINVAL;
> + err = "Device name cannot be null";
> + goto out;
> + }
> +
> rc = ecryptfs_parse_options(sbi, raw_data, &check_ruid);
> if (rc) {
> err = "Error parsing options";
> --
> 2.25.1
>
prev parent reply other threads:[~2021-04-19 5:52 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-26 21:00 [PATCH] ecryptfs: fix kernel panic with null dev_name Jeffrey Mitchell
2021-04-19 5:51 ` Tyler Hicks [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210419055148.GC405651@elm \
--to=code@tyhicks.com \
--cc=ecryptfs@vger.kernel.org \
--cc=jeffrey.mitchell@starlab.io \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.