This makes sure a format string cannot accidentally leak into the kthread_run() call. Signed-off-by: Kees Cook <keescook@chromium.org> --- 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
Ian Campbell
2013-Sep-11 07:18 UTC
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 <keescook@chromium.org>Acked-by: Ian Campbell <ian.campbell@citrix.com> Thanks. Ian.
David Miller
2013-Sep-12 21:20 UTC
Re: [PATCH] xen-netback: fix possible format string flaw
From: Ian Campbell <Ian.Campbell@citrix.com> 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 <keescook@chromium.org> > > Acked-by: Ian Campbell <ian.campbell@citrix.com>Applied and queued up for -stable, thanks.