EcryptFS development
 help / color / mirror / Atom feed
From: Tyler Hicks <tyhicks@canonical.com>
To: Michael Halcrow <mhalcrow@google.com>
Cc: Dmitry Chernenkov <dmitryc@google.com>, ecryptfs@vger.kernel.org
Subject: Re: [PATCH] eCryptfs: Allocate sufficient buffer space for encrypted filename decoding
Date: Wed, 26 Nov 2014 11:23:44 -0600	[thread overview]
Message-ID: <20141126172342.GB31285@boyd> (raw)
In-Reply-To: <CA+POJK1miq_sJ-7D80cbabtwTi2ftRTdBcrZDP1sacEK9f36GA@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 1567 bytes --]

On 2014-11-26 09:11:32, Michael Halcrow wrote:
> On Fri, Nov 21, 2014 at 9:02 AM, Michael Halcrow <mhalcrow@google.com> wrote:
> > Dmitry Chernenkov used KASAN to discover that eCryptfs writes past the
> > end of the allocated buffer during encrypted filename decoding. This
> > fix corrects the issue by ensuring that there is sufficient buffer
> > space allocated.
> >
> > Signed-off-by: Michael Halcrow <mhalcrow@google.com>
> > ---
> >  fs/ecryptfs/crypto.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c
> > index 2f6735d..53d4f2e 100644
> > --- a/fs/ecryptfs/crypto.c
> > +++ b/fs/ecryptfs/crypto.c
> > @@ -1871,7 +1871,7 @@ static size_t ecryptfs_max_decoded_size(size_t encoded_size)
> >          * the caller with the maximum amount of allocated
> >          * space that @dst will need to point to in a
> >          * subsequent call. */
> > -       return ((encoded_size + 1) * 3) / 4;
> > +       return (((encoded_size + 1) * 3) / 4) + 1;
> 
> Kees pointed out that the last write of 0 isn't even necessary.
> 
> Ignore this patch. I've sent out a fix that removes that write.

Agreed. I had been looking into this today and was about to say the same
thing. Thanks!

Tyler

> 
> >  }
> >
> >  /**
> > --
> > 2.1.0.rc2.206.gedb03e5
> >
> --
> To unsubscribe from this list: send the line "unsubscribe ecryptfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

      reply	other threads:[~2014-11-26 17:23 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-21 17:02 [PATCH] eCryptfs: Allocate sufficient buffer space for encrypted filename decoding Michael Halcrow
2014-11-26 17:11 ` Michael Halcrow
2014-11-26 17:23   ` 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=20141126172342.GB31285@boyd \
    --to=tyhicks@canonical.com \
    --cc=dmitryc@google.com \
    --cc=ecryptfs@vger.kernel.org \
    --cc=mhalcrow@google.com \
    /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