* [PATCH] 9p bug fix: return non-zero error value in p9_put_data
@ 2008-08-26 17:30 Abhishek Kulkarni
2008-08-26 18:53 ` [V9fs-developer] " Latchesar Ionkov
2008-08-28 18:10 ` Eric Van Hensbergen
0 siblings, 2 replies; 6+ messages in thread
From: Abhishek Kulkarni @ 2008-08-26 17:30 UTC (permalink / raw)
To: v9fs-developer; +Cc: linux-kernel, ericvh
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.
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
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [V9fs-developer] [PATCH] 9p bug fix: return non-zero error value in p9_put_data
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 ` Latchesar Ionkov
2008-08-28 18:10 ` Eric Van Hensbergen
1 sibling, 0 replies; 6+ messages in thread
From: Latchesar Ionkov @ 2008-08-26 18:53 UTC (permalink / raw)
To: Abhishek Kulkarni; +Cc: v9fs-developer, ericvh, linux-kernel
Acked-by: Latchesar Ionkov <lucho@ionkov.net>
On Tue, Aug 26, 2008 at 11: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.
>
> 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
>
>
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
> Build the coolest Linux based applications with Moblin SDK & win great prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> V9fs-developer mailing list
> V9fs-developer@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/v9fs-developer
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] 9p bug fix: return non-zero error value in p9_put_data
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
1 sibling, 1 reply; 6+ messages in thread
From: Eric Van Hensbergen @ 2008-08-28 18:10 UTC (permalink / raw)
To: Abhishek Kulkarni; +Cc: v9fs-developer, linux-kernel
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?
Also, we do the bufoverflow check in p9_create_write -- so with your
patch aren't we doing this twice?
-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
>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] 9p bug fix: return non-zero error value in p9_put_data
2008-08-28 18:10 ` Eric Van Hensbergen
@ 2008-08-28 18:35 ` Abhishek Kulkarni
2008-09-02 19:04 ` Abhishek Kulkarni
0 siblings, 1 reply; 6+ messages in thread
From: Abhishek Kulkarni @ 2008-08-28 18:35 UTC (permalink / raw)
To: Eric Van Hensbergen; +Cc: v9fs-developer, linux-kernel
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
> >
> >
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] 9p bug fix: return non-zero error value in p9_put_data
2008-08-28 18:35 ` Abhishek Kulkarni
@ 2008-09-02 19:04 ` Abhishek Kulkarni
2008-09-23 20:33 ` Eric Van Hensbergen
0 siblings, 1 reply; 6+ messages in thread
From: Abhishek Kulkarni @ 2008-09-02 19:04 UTC (permalink / raw)
To: Eric Van Hensbergen; +Cc: v9fs-developer, linux-kernel
Resubmitting my previous 9p bug fix patch that removes the bogus return
value in p9_put_data which made every p9_client_write fail.
Signed-off-by: Abhishek Kulkarni <kulkarni@lanl.gov>
---
net/9p/conv.c | 12 +++---------
1 files changed, 3 insertions(+), 9 deletions(-)
diff --git a/net/9p/conv.c b/net/9p/conv.c
index 4454720..08ec35a 100644
--- a/net/9p/conv.c
+++ b/net/9p/conv.c
@@ -446,13 +446,12 @@ p9_put_str(struct cbuf *bufp, char *data, struct
p9_str *str)
}
}
-static int
+static void
p9_put_data(struct cbuf *bufp, const char *data, int count,
unsigned char **pdata)
{
*pdata = buf_alloc(bufp, count);
memmove(*pdata, data, count);
- return count;
}
static int
@@ -851,7 +850,7 @@ EXPORT_SYMBOL(p9_create_tread);
struct p9_fcall *p9_create_twrite(u32 fid, u64 offset, u32 count,
const char *data)
{
- int size, err;
+ int size;
struct p9_fcall *fc;
struct cbuf buffer;
struct cbuf *bufp = &buffer;
@@ -865,12 +864,7 @@ struct p9_fcall *p9_create_twrite(u32 fid, u64
offset, u32 count,
p9_put_int32(bufp, fid, &fc->params.twrite.fid);
p9_put_int64(bufp, offset, &fc->params.twrite.offset);
p9_put_int32(bufp, count, &fc->params.twrite.count);
- err = p9_put_data(bufp, data, count, &fc->params.twrite.data);
- if (err) {
- kfree(fc);
- fc = ERR_PTR(err);
- goto error;
- }
+ p9_put_data(bufp, data, count, &fc->params.twrite.data);
if (buf_check_overflow(bufp)) {
kfree(fc);
--
1.5.4.3
On Thu, 2008-08-28 at 12:35 -0600, Abhishek Kulkarni wrote:
> 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
> > >
> > >
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] 9p bug fix: return non-zero error value in p9_put_data
2008-09-02 19:04 ` Abhishek Kulkarni
@ 2008-09-23 20:33 ` Eric Van Hensbergen
0 siblings, 0 replies; 6+ messages in thread
From: Eric Van Hensbergen @ 2008-09-23 20:33 UTC (permalink / raw)
To: Abhishek Kulkarni; +Cc: v9fs-developer, linux-kernel
Hey - first of all, sorry for the long delay on responding to this,
I've just gotten back to my patch queue.
On Tue, Sep 2, 2008 at 2:04 PM, Abhishek Kulkarni <kulkarni@lanl.gov> wrote:
> Resubmitting my previous 9p bug fix patch that removes the bogus return
> value in p9_put_data which made every p9_client_write fail.
>
> Signed-off-by: Abhishek Kulkarni <kulkarni@lanl.gov>
> ---
Please include the original description when resubmitting patches --
this will allow me to suck it into my tree more effectively.
>
> -static int
> +static void
> p9_put_data(struct cbuf *bufp, const char *data, int count,
> unsigned char **pdata)
> {
> *pdata = buf_alloc(bufp, count);
> memmove(*pdata, data, count);
> - return count;
> }
>
What happens if buf_alloc returns NULL?
Isn't the right behavior something more along the lines of:
static int
p9_put_data(struct cbuf *bufp, const char *data, int count,
unsigned char **pdata)
{
*pdata = buf_alloc(bufp, count);'
if(*pdata)
memmove(*pdata, data, count);
return 0;
else
return ENOMEM;
}
-eric
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-09-23 20:33 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
2008-09-02 19:04 ` Abhishek Kulkarni
2008-09-23 20:33 ` Eric Van Hensbergen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox