2013-09-11 04:39:22

by Kees Cook

[permalink] [raw]
Subject: [PATCH] xen-netback: fix possible format string flaw

This makes sure a format string cannot accidentally leak into the
kthread_run() call.

Signed-off-by: Kees Cook <[email protected]>
---
drivers/net/xen-netback/interface.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/xen-netback/interface.c b/drivers/net/xen-netback/interface.c
index 625c6f4..77fee1d 100644
--- a/drivers/net/xen-netback/interface.c
+++ b/drivers/net/xen-netback/interface.c
@@ -406,7 +406,7 @@ int xenvif_connect(struct xenvif *vif, unsigned long tx_ring_ref,

init_waitqueue_head(&vif->wq);
vif->task = kthread_create(xenvif_kthread,
- (void *)vif, vif->dev->name);
+ (void *)vif, "%s", vif->dev->name);
if (IS_ERR(vif->task)) {
pr_warn("Could not allocate kthread for %s\n", vif->dev->name);
err = PTR_ERR(vif->task);
--
1.7.9.5


--
Kees Cook
Chrome OS Security


2013-09-11 07:18:16

by Ian Campbell

[permalink] [raw]
Subject: Re: [PATCH] xen-netback: fix possible format string flaw

On Tue, 2013-09-10 at 21:39 -0700, Kees Cook wrote:
> This makes sure a format string cannot accidentally leak into the
> kthread_run() call.
>
> Signed-off-by: Kees Cook <[email protected]>

Acked-by: Ian Campbell <[email protected]>

Thanks.

Ian.

2013-09-12 21:20:25

by David Miller

[permalink] [raw]
Subject: Re: [PATCH] xen-netback: fix possible format string flaw

From: Ian Campbell <[email protected]>
Date: Wed, 11 Sep 2013 08:18:13 +0100

> On Tue, 2013-09-10 at 21:39 -0700, Kees Cook wrote:
>> This makes sure a format string cannot accidentally leak into the
>> kthread_run() call.
>>
>> Signed-off-by: Kees Cook <[email protected]>
>
> Acked-by: Ian Campbell <[email protected]>

Applied and queued up for -stable, thanks.