public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Abhishek Kulkarni <kulkarni@lanl.gov>
To: Eric Van Hensbergen <ericvh@gmail.com>
Cc: v9fs-developer@lists.sourceforge.net, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] 9p bug fix: return non-zero error value in p9_put_data
Date: Thu, 28 Aug 2008 12:35:16 -0600	[thread overview]
Message-ID: <1219948516.2678.16.camel@blender> (raw)
In-Reply-To: <a4e6962a0808281110s6ee6c86ak3ff6e28c51981656@mail.gmail.com>

On Thu, 2008-08-28 at 11:10 -0700, Eric Van Hensbergen wrote:
> On Tue, Aug 26, 2008 at 10:30 AM, Abhishek Kulkarni <kulkarni@lanl.gov> wrote:
> > p9_put_data is called by p9_create_twrite which expects it to return a
> > non-zero value on error. This was the reason why every p9_client_write
> > was failing. This patch also adds a check for buffer overflow in
> > p9_put_data.
> >
> 
> I'm a bit confused about when this is even getting called -- O thought
> all writes were following the p9_client_uwrite path?

Yes, this bug didn't come up to the surface since p9_create_twrite is
not even being called anywhere in v9fs. I tripped over it when using 9p
for a different module that I am working on. 

> 
> Also, we do the bufoverflow check in p9_create_write -- so with your
> patch aren't we doing this twice?
> 
Yes, but then that makes the "check for error in return value" in
p9_create_twrite useless since memmove is not going to return an error
in any case.

Going with the existing convention however, I think the bufoverflow
check is unnecessary in p9_put_data and so is the check for error on
return.

I'll resubmit a patch.

 -- Abhishek


>            -eric
> 
> 
> > Signed-off-by: Abhishek Kulkarni <kulkarni@lanl.gov>
> > ---
> >  net/9p/conv.c |    5 ++++-
> >  1 files changed, 4 insertions(+), 1 deletions(-)
> > diff --git a/net/9p/conv.c b/net/9p/conv.c
> > index 4454720..7f6db15 100644
> > --- a/net/9p/conv.c
> > +++ b/net/9p/conv.c
> > @@ -451,8 +451,11 @@ p9_put_data(struct cbuf *bufp, const char *data,
> > int count,
> >                   unsigned char **pdata)
> >  {
> >        *pdata = buf_alloc(bufp, count);
> > +       if (buf_check_overflow(bufp))
> > +               return -EIO;
> > +
> >        memmove(*pdata, data, count);
> > -       return count;
> > +       return 0;
> >  }
> >
> >  static int
> >
> >
> > Thanks,
> >  -- Abhishek
> >
> >


  reply	other threads:[~2008-08-28 18:34 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-08-26 17:30 [PATCH] 9p bug fix: return non-zero error value in p9_put_data Abhishek Kulkarni
2008-08-26 18:53 ` [V9fs-developer] " Latchesar Ionkov
2008-08-28 18:10 ` Eric Van Hensbergen
2008-08-28 18:35   ` Abhishek Kulkarni [this message]
2008-09-02 19:04     ` Abhishek Kulkarni
2008-09-23 20:33       ` Eric Van Hensbergen

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=1219948516.2678.16.camel@blender \
    --to=kulkarni@lanl.gov \
    --cc=ericvh@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=v9fs-developer@lists.sourceforge.net \
    /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