public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Eric Sandeen <sandeen@redhat.com>
To: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: kernel list <linux-kernel@vger.kernel.org>,
	Tyler Hicks <tyhicks@linux.vnet.ibm.com>,
	Al Viro <viro@zeniv.linux.org.uk>, Christoph Hellwig <hch@lst.de>
Subject: Re: [PATCH] ecryptfs: disallow ecryptfs as underlying filesystem
Date: Sat, 24 Apr 2010 09:39:04 -0500	[thread overview]
Message-ID: <4BD30288.1040501@redhat.com> (raw)
In-Reply-To: <x2s84144f021004240154g1a4dba0dnc9308abbebee9ce7@mail.gmail.com>

Pekka Enberg wrote:
> On Sat, Apr 24, 2010 at 5:41 AM, Eric Sandeen <sandeen@redhat.com> wrote:
>> mounting stacked ecryptfs on ecryptfs has been shown to lead to bugs
>> in testing.  For crypto info in xattr, there is no mechanism for handling
>> this at all, and for normal file headers, we run into other trouble:
>>
>> BUG: unable to handle kernel NULL pointer dereference at 0000000000000008
>> IP: [<ffffffffa015b0b3>] ecryptfs_d_revalidate+0x43/0xa0 [ecryptfs]
>> ...
>>
>> There doesn't seem to be any good usecase for this, so I'd suggest just
>> disallowing the configuration.
> 
> Maybe there's no good use case for it but it sure sounds like a good
> test case for shaking out bugs in filesystem stacking code.

I could revise the patch to allow a force-override option if you're interested
in doing that shaking.  :)

(for cryptinfo-in-xattr, though, there is simply no mechanism to support this
at all in ecryptfs, and I doubt it's a design goal, though will defer to tyhicks
on all this)

-Eric

>> Based on a patch originally, I believe, from Mike Halcrow.
>>
>> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
>> ---
>>
>> diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c
>> index af1a8f0..7ada044 100644
>> --- a/fs/ecryptfs/main.c
>> +++ b/fs/ecryptfs/main.c
>> @@ -594,28 +594,46 @@ static int ecryptfs_get_sb(struct file_system_type *fs_type, int flags,
>>                        struct vfsmount *mnt)
>>  {
>>        int rc;
>> -       struct super_block *sb;
>> +       struct super_block *sb, *lower_sb;
>> +       struct nameidata nd;
>> +
>> +       rc = path_lookup(dev_name, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &nd);
>> +       if (rc) {
>> +               printk(KERN_WARNING
>> +                       "path_lookup() failed on dev_name = [%s]\n", dev_name);
>> +               goto out;
>> +       }
>> +       lower_sb = nd.path.dentry->d_sb;
>> +       if (strcmp(lower_sb->s_type->name, "ecryptfs") == 0) {
>> +               rc = -EINVAL;
>> +               printk(KERN_ERR "Mount on filesystem of type "
>> +                       "eCryptfs explicitly disallowed due to "
>> +                       "known incompatibilities\n");
>> +               goto out_pathput;
>> +       }
>>
>>        rc = get_sb_nodev(fs_type, flags, raw_data, ecryptfs_fill_super, mnt);
>>        if (rc < 0) {
>>                printk(KERN_ERR "Getting sb failed; rc = [%d]\n", rc);
>> -               goto out;
>> +               goto out_pathput;
>>        }
>>        sb = mnt->mnt_sb;
>>        rc = ecryptfs_parse_options(sb, raw_data);
>>        if (rc) {
>>                printk(KERN_ERR "Error parsing options; rc = [%d]\n", rc);
>> -               goto out_abort;
>> +               goto out_dput;
>>        }
>>        rc = ecryptfs_read_super(sb, dev_name);
>>        if (rc) {
>>                printk(KERN_ERR "Reading sb failed; rc = [%d]\n", rc);
>> -               goto out_abort;
>> +               goto out_dput;
>>        }
>>        goto out;
>> -out_abort:
>> +out_dput:
>>        dput(sb->s_root); /* aka mnt->mnt_root, as set by get_sb_nodev() */
>>        deactivate_locked_super(sb);
>> +out_pathput:
>> +       path_put(&nd.path);
>>  out:
>>        return rc;
>>  }
>>
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>> Please read the FAQ at  http://www.tux.org/lkml/
>>


  reply	other threads:[~2010-04-24 14:39 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-04-24  2:41 [PATCH] ecryptfs: disallow ecryptfs as underlying filesystem Eric Sandeen
2010-04-24  8:54 ` Pekka Enberg
2010-04-24 14:39   ` Eric Sandeen [this message]
2010-04-27 15:56     ` Tyler Hicks

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=4BD30288.1040501@redhat.com \
    --to=sandeen@redhat.com \
    --cc=hch@lst.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=penberg@cs.helsinki.fi \
    --cc=tyhicks@linux.vnet.ibm.com \
    --cc=viro@zeniv.linux.org.uk \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox