public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ubi: avoid workqueue format string leak
@ 2014-04-08  4:44 Kees Cook
  2014-04-08 13:52 ` Artem Bityutskiy
  2014-04-08 13:57 ` Ezequiel Garcia
  0 siblings, 2 replies; 6+ messages in thread
From: Kees Cook @ 2014-04-08  4:44 UTC (permalink / raw)
  To: Ezequiel Garcia
  Cc: Artem Bityutskiy, David Woodhouse, Brian Norris, linux-mtd,
	linux-kernel

When building the name for the workqueue thread, make sure a format
string cannot leak in from the disk name.

Signed-off-by: Kees Cook <keescook@chromium.org>
---
 drivers/mtd/ubi/block.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/ubi/block.c b/drivers/mtd/ubi/block.c
index 7ff473c871a9..8d659e6a1b4c 100644
--- a/drivers/mtd/ubi/block.c
+++ b/drivers/mtd/ubi/block.c
@@ -431,7 +431,7 @@ int ubiblock_create(struct ubi_volume_info *vi)
 	 * Create one workqueue per volume (per registered block device).
 	 * Rembember workqueues are cheap, they're not threads.
 	 */
-	dev->wq = alloc_workqueue(gd->disk_name, 0, 0);
+	dev->wq = alloc_workqueue("%s", 0, 0, gd->disk_name);
 	if (!dev->wq)
 		goto out_free_queue;
 	INIT_WORK(&dev->work, ubiblock_do_work);
-- 
1.7.9.5


-- 
Kees Cook
Chrome OS Security

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-04-08 18:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-08  4:44 [PATCH] ubi: avoid workqueue format string leak Kees Cook
2014-04-08 13:52 ` Artem Bityutskiy
2014-04-08 13:57 ` Ezequiel Garcia
2014-04-08 14:43   ` Artem Bityutskiy
2014-04-08 15:59     ` Kees Cook
2014-04-08 18:09       ` Ezequiel Garcia

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox