* [PATCH net v2] gen_stats.c: Duplicate xstats buffer for later use
@ 2015-01-08 12:33 Ignacy Gawędzki
2015-01-08 13:30 ` [PATCH net v3] " Ignacy Gawędzki
0 siblings, 1 reply; 4+ messages in thread
From: Ignacy Gawędzki @ 2015-01-08 12:33 UTC (permalink / raw)
To: netdev
The gnet_stats_copy_app() function gets called, more often than not, with its
second argument a pointer to an automatic variable in the caller's stack.
Therefore, to avoid copying garbage afterwards when calling
gnet_stats_finish_copy(), this data is better copied to a dynamically allocated
memory that gets freed after use.
Signed-off-by: Ignacy Gawędzki <ignacy.gawedzki@green-communications.fr>
---
net/core/gen_stats.c | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/net/core/gen_stats.c b/net/core/gen_stats.c
index 0c08062..5ad2fe7 100644
--- a/net/core/gen_stats.c
+++ b/net/core/gen_stats.c
@@ -32,6 +32,9 @@ gnet_stats_copy(struct gnet_dump *d, int type, void *buf, int size)
return 0;
nla_put_failure:
+ kfree(d->xstats);
+ d->xstats = NULL;
+ d->xstats_len = 0;
spin_unlock_bh(d->lock);
return -1;
}
@@ -305,7 +308,11 @@ int
gnet_stats_copy_app(struct gnet_dump *d, void *st, int len)
{
if (d->compat_xstats) {
- d->xstats = st;
+ kfree(d->xstats);
+ d->xstats = kmalloc(len, GFP_ATOMIC);
+ if (!d->xstats)
+ goto kmalloc_failure;
+ memcpy(d->xstats, st, len);
d->xstats_len = len;
}
@@ -313,6 +320,10 @@ gnet_stats_copy_app(struct gnet_dump *d, void *st, int len)
return gnet_stats_copy(d, TCA_STATS_APP, st, len);
return 0;
+kmalloc_failure:
+ d->xstats_len = 0;
+ spin_unlock_bh(d->lock);
+ return -1;
}
EXPORT_SYMBOL(gnet_stats_copy_app);
@@ -345,6 +356,9 @@ gnet_stats_finish_copy(struct gnet_dump *d)
return -1;
}
+ kfree(d->xstats);
+ d->xstats = NULL;
+ d->xstats_len = 0;
spin_unlock_bh(d->lock);
return 0;
}
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH net v3] gen_stats.c: Duplicate xstats buffer for later use
2015-01-08 12:33 [PATCH net v2] gen_stats.c: Duplicate xstats buffer for later use Ignacy Gawędzki
@ 2015-01-08 13:30 ` Ignacy Gawędzki
2015-01-09 22:35 ` Cong Wang
0 siblings, 1 reply; 4+ messages in thread
From: Ignacy Gawędzki @ 2015-01-08 13:30 UTC (permalink / raw)
To: netdev
The gnet_stats_copy_app() function gets called, more often than not, with its
second argument a pointer to an automatic variable in the caller's stack.
Therefore, to avoid copying garbage afterwards when calling
gnet_stats_finish_copy(), this data is better copied to a dynamically allocated
memory that gets freed after use.
Signed-off-by: Ignacy Gawędzki <ignacy.gawedzki@green-communications.fr>
---
net/core/gen_stats.c | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/net/core/gen_stats.c b/net/core/gen_stats.c
index 0c08062..c9f1fa8 100644
--- a/net/core/gen_stats.c
+++ b/net/core/gen_stats.c
@@ -32,6 +32,9 @@ gnet_stats_copy(struct gnet_dump *d, int type, void *buf, int size)
return 0;
nla_put_failure:
+ kfree(d->xstats);
+ d->xstats = NULL;
+ d->xstats_len = 0;
spin_unlock_bh(d->lock);
return -1;
}
@@ -305,7 +308,10 @@ int
gnet_stats_copy_app(struct gnet_dump *d, void *st, int len)
{
if (d->compat_xstats) {
- d->xstats = st;
+ kfree(d->xstats);
+ d->xstats = kmemdup(st, len, GFP_ATOMIC);
+ if (!d->xstats)
+ goto kmalloc_failure;
d->xstats_len = len;
}
@@ -313,6 +319,10 @@ gnet_stats_copy_app(struct gnet_dump *d, void *st, int len)
return gnet_stats_copy(d, TCA_STATS_APP, st, len);
return 0;
+kmalloc_failure:
+ d->xstats_len = 0;
+ spin_unlock_bh(d->lock);
+ return -1;
}
EXPORT_SYMBOL(gnet_stats_copy_app);
@@ -345,6 +355,9 @@ gnet_stats_finish_copy(struct gnet_dump *d)
return -1;
}
+ kfree(d->xstats);
+ d->xstats = NULL;
+ d->xstats_len = 0;
spin_unlock_bh(d->lock);
return 0;
}
--
2.1.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net v3] gen_stats.c: Duplicate xstats buffer for later use
2015-01-08 13:30 ` [PATCH net v3] " Ignacy Gawędzki
@ 2015-01-09 22:35 ` Cong Wang
2015-01-09 23:01 ` Ignacy Gawędzki
0 siblings, 1 reply; 4+ messages in thread
From: Cong Wang @ 2015-01-09 22:35 UTC (permalink / raw)
To: Ignacy Gawędzki, netdev
On Thu, Jan 8, 2015 at 5:30 AM, Ignacy Gawędzki
<ignacy.gawedzki@green-communications.fr> wrote:
> The gnet_stats_copy_app() function gets called, more often than not, with its
> second argument a pointer to an automatic variable in the caller's stack.
> Therefore, to avoid copying garbage afterwards when calling
> gnet_stats_finish_copy(), this data is better copied to a dynamically allocated
> memory that gets freed after use.
Good catch!
>
> Signed-off-by: Ignacy Gawędzki <ignacy.gawedzki@green-communications.fr>
> ---
> net/core/gen_stats.c | 15 ++++++++++++++-
> 1 file changed, 14 insertions(+), 1 deletion(-)
>
> diff --git a/net/core/gen_stats.c b/net/core/gen_stats.c
> index 0c08062..c9f1fa8 100644
> --- a/net/core/gen_stats.c
> +++ b/net/core/gen_stats.c
> @@ -32,6 +32,9 @@ gnet_stats_copy(struct gnet_dump *d, int type, void *buf, int size)
> return 0;
>
> nla_put_failure:
> + kfree(d->xstats);
> + d->xstats = NULL;
> + d->xstats_len = 0;
> spin_unlock_bh(d->lock);
> return -1;
> }
Although it is not your fault, the API sucks, gnet_stats_copy()
should not need to care about the error path of its caller.
I will cook a patch for it.
> @@ -305,7 +308,10 @@ int
> gnet_stats_copy_app(struct gnet_dump *d, void *st, int len)
> {
> if (d->compat_xstats) {
> - d->xstats = st;
> + kfree(d->xstats);
> + d->xstats = kmemdup(st, len, GFP_ATOMIC);
> + if (!d->xstats)
> + goto kmalloc_failure;
Do we really need to call kfree() before kmemdup()?
I don't think gnet_stats_copy_app() is supposed to be called
twice before gnet_stats_copy_finish()?
Thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net v3] gen_stats.c: Duplicate xstats buffer for later use
2015-01-09 22:35 ` Cong Wang
@ 2015-01-09 23:01 ` Ignacy Gawędzki
0 siblings, 0 replies; 4+ messages in thread
From: Ignacy Gawędzki @ 2015-01-09 23:01 UTC (permalink / raw)
To: Cong Wang; +Cc: netdev
On Fri, Jan 09, 2015 at 02:35:41PM -0800, thus spake Cong Wang:
> On Thu, Jan 8, 2015 at 5:30 AM, Ignacy Gawędzki
> > diff --git a/net/core/gen_stats.c b/net/core/gen_stats.c
> > index 0c08062..c9f1fa8 100644
> > --- a/net/core/gen_stats.c
> > +++ b/net/core/gen_stats.c
> > @@ -32,6 +32,9 @@ gnet_stats_copy(struct gnet_dump *d, int type, void *buf, int size)
> > return 0;
> >
> > nla_put_failure:
> > + kfree(d->xstats);
> > + d->xstats = NULL;
> > + d->xstats_len = 0;
> > spin_unlock_bh(d->lock);
> > return -1;
> > }
>
> Although it is not your fault, the API sucks, gnet_stats_copy()
> should not need to care about the error path of its caller.
> I will cook a patch for it.
That would be great, as I'm certainly not that fluent in kernel code.
> > @@ -305,7 +308,10 @@ int
> > gnet_stats_copy_app(struct gnet_dump *d, void *st, int len)
> > {
> > if (d->compat_xstats) {
> > - d->xstats = st;
> > + kfree(d->xstats);
> > + d->xstats = kmemdup(st, len, GFP_ATOMIC);
> > + if (!d->xstats)
> > + goto kmalloc_failure;
>
> Do we really need to call kfree() before kmemdup()?
> I don't think gnet_stats_copy_app() is supposed to be called
> twice before gnet_stats_copy_finish()?
It's not, but I figured it's safer that way and probably not that expensive
given the frequency with which calls to these functions are performed in
practice.
--
Ignacy Gawędzki
R&D Engineer
Green Communications
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-01-09 23:01 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-08 12:33 [PATCH net v2] gen_stats.c: Duplicate xstats buffer for later use Ignacy Gawędzki
2015-01-08 13:30 ` [PATCH net v3] " Ignacy Gawędzki
2015-01-09 22:35 ` Cong Wang
2015-01-09 23:01 ` Ignacy Gawędzki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).