From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail202.messagelabs.com (mail202.messagelabs.com [216.82.254.227]) by kanga.kvack.org (Postfix) with SMTP id D0D556B004D for ; Mon, 17 Aug 2009 05:43:23 -0400 (EDT) Date: Mon, 17 Aug 2009 05:43:01 -0400 From: Amerigo Wang Message-Id: <20090817094525.6355.88682.sendpatchset@localhost.localdomain> Subject: [Patch] proc: drop write permission on 'timer_list' and 'slabinfo' Sender: owner-linux-mm@kvack.org To: linux-kernel@vger.kernel.org Cc: Pekka Enberg , Vegard Nossum , Eduard - Gabriel Munteanu , Thomas Gleixner , Ingo Molnar , linux-mm@kvack.org, Christoph Lameter , David Rientjes , Amerigo Wang , Matt Mackall , Arjan van de Ven List-ID: /proc/timer_list and /proc/slabinfo are not supposed to be written, so there should be no write permissions on it. Signed-off-by: WANG Cong Cc: Thomas Gleixner Cc: Arjan van de Ven Cc: Matt Mackall Cc: Pekka Enberg Cc: Christoph Lameter Cc: Ingo Molnar Cc: Eduard - Gabriel Munteanu Cc: Vegard Nossum Cc: David Rientjes --- diff --git a/kernel/time/timer_list.c b/kernel/time/timer_list.c index a999b92..fddd69d 100644 --- a/kernel/time/timer_list.c +++ b/kernel/time/timer_list.c @@ -286,7 +286,7 @@ static int __init init_timer_list_procfs(void) { struct proc_dir_entry *pe; - pe = proc_create("timer_list", 0644, NULL, &timer_list_fops); + pe = proc_create("timer_list", 0444, NULL, &timer_list_fops); if (!pe) return -ENOMEM; return 0; diff --git a/mm/slab.c b/mm/slab.c index 7b5d4de..a19e4be 100644 --- a/mm/slab.c +++ b/mm/slab.c @@ -4473,7 +4473,7 @@ static const struct file_operations proc_slabstats_operations = { static int __init slab_proc_init(void) { - proc_create("slabinfo",S_IWUSR|S_IRUGO,NULL,&proc_slabinfo_operations); + proc_create("slabinfo",S_IRUSR|S_IRUGO,NULL,&proc_slabinfo_operations); #ifdef CONFIG_DEBUG_SLAB_LEAK proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations); #endif diff --git a/mm/slub.c b/mm/slub.c index b9f1491..aba2c1b 100644 --- a/mm/slub.c +++ b/mm/slub.c @@ -4726,7 +4726,7 @@ static const struct file_operations proc_slabinfo_operations = { static int __init slab_proc_init(void) { - proc_create("slabinfo",S_IWUSR|S_IRUGO,NULL,&proc_slabinfo_operations); + proc_create("slabinfo",S_IRUSR|S_IRUGO,NULL,&proc_slabinfo_operations); return 0; } module_init(slab_proc_init); -- 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: email@kvack.org