linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm: use %pK for /proc/vmallocinfo
@ 2012-10-02 23:49 Kees Cook
  2012-10-03  0:43 ` KOSAKI Motohiro
  2012-10-03  5:12 ` David Rientjes
  0 siblings, 2 replies; 8+ messages in thread
From: Kees Cook @ 2012-10-02 23:49 UTC (permalink / raw)
  To: linux-kernel
  Cc: Andrew Morton, David Rientjes, Minchan Kim, Joe Perches,
	Kautuk Consul, linux-mm, Brad Spengler

In the paranoid case of sysctl kernel.kptr_restrict=2, mask the kernel
virtual addresses in /proc/vmallocinfo too.

Reported-by: Brad Spengler <spender@grsecurity.net>
Signed-off-by: Kees Cook <keescook@chromium.org>
---
 mm/vmalloc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index 2bb90b1..9c871db 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -2572,7 +2572,7 @@ static int s_show(struct seq_file *m, void *p)
 {
 	struct vm_struct *v = p;
 
-	seq_printf(m, "0x%p-0x%p %7ld",
+	seq_printf(m, "0x%pK-0x%pK %7ld",
 		v->addr, v->addr + v->size, v->size);
 
 	if (v->caller)
-- 
1.7.9.5


-- 
Kees Cook
Chrome OS Security

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

end of thread, other threads:[~2012-10-03 18:39 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-02 23:49 [PATCH] mm: use %pK for /proc/vmallocinfo Kees Cook
2012-10-03  0:43 ` KOSAKI Motohiro
2012-10-03  5:12 ` David Rientjes
2012-10-03  5:15   ` Kees Cook
2012-10-03  5:37     ` David Rientjes
2012-10-03 16:13       ` Kees Cook
2012-10-03 18:02         ` David Rientjes
2012-10-03 18:39           ` Kees Cook

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).