permissions on /proc/tty/driver/
From: Thomas Voegtle
Date: Fri Feb 29 2008 - 13:26:42 EST
Hi,
we noticed that only root can enter /proc/tty/driver/, which appears to be
wrong, because the files therein are actually world readable...
Signed-off-by: Tilman Baumann <tilman.baumann@xxxxxxxxxxx>
Signed-off-by: Thomas Voegtle <tv@xxxxxxxx>
---
fs/proc/proc_tty.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/fs/proc/proc_tty.c b/fs/proc/proc_tty.c
index 49816e0..eb73d96 100644
--- a/fs/proc/proc_tty.c
+++ b/fs/proc/proc_tty.c
@@ -224,7 +224,9 @@ void __init proc_tty_init(void)
* password lengths and inter-keystroke timings during password
* entry.
*/
- proc_tty_driver = proc_mkdir_mode("tty/driver", S_IRUSR | S_IXUSR, NULL);
+ proc_tty_driver = proc_mkdir_mode("tty/driver",
+ S_IRUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH,
+ NULL);
create_proc_read_entry("tty/ldiscs", 0, NULL, tty_ldiscs_read_proc, NULL);
entry = create_proc_entry("tty/drivers", 0, NULL);
--
1.5.3
Thomas
--
Thomas Vögtle email: thomas@xxxxxxxxxxxxxxx
----- http://www.voegtle-clan.de/thomas ------