From 404031071a51e0764bd032528a8b6ffb4a746edf Mon Sep 17 00:00:00 2001 From: Mike Baker Date: Sun, 26 Mar 2006 11:48:48 +0000 Subject: [PATCH] security patches SVN-Revision: 3490 --- .../patches/brcm/008-gpio_security.patch | 11 ++++++++++ .../patches/generic/213-mtd_security.patch | 22 +++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 openwrt/target/linux/linux-2.4/patches/brcm/008-gpio_security.patch create mode 100644 openwrt/target/linux/linux-2.4/patches/generic/213-mtd_security.patch diff --git a/openwrt/target/linux/linux-2.4/patches/brcm/008-gpio_security.patch b/openwrt/target/linux/linux-2.4/patches/brcm/008-gpio_security.patch new file mode 100644 index 0000000000..affcf5fe8d --- /dev/null +++ b/openwrt/target/linux/linux-2.4/patches/brcm/008-gpio_security.patch @@ -0,0 +1,11 @@ +--- linux-2.4.30/arch/mips/bcm947xx/gpio.c.orig 2006-03-26 06:43:24 -05:00 ++++ linux-2.4.30/arch/mips/bcm947xx/gpio.c 2006-03-26 06:44:00 -05:00 +@@ -135,7 +135,7 @@ + gpio_file[i].handle = devfs_register(gpio_dir, + gpio_file[i].name, + DEVFS_FL_DEFAULT, gpio_major, i, +- S_IFCHR | S_IRUGO | S_IWUGO, ++ S_IFCHR | S_IRUSR | S_IWUSR, + &gpio_fops, NULL); + } + diff --git a/openwrt/target/linux/linux-2.4/patches/generic/213-mtd_security.patch b/openwrt/target/linux/linux-2.4/patches/generic/213-mtd_security.patch new file mode 100644 index 0000000000..33659fb391 --- /dev/null +++ b/openwrt/target/linux/linux-2.4/patches/generic/213-mtd_security.patch @@ -0,0 +1,22 @@ +--- linux-2.4.30/drivers/mtd/mtdblock.c.orig 2006-03-26 06:38:36 -05:00 ++++ linux-2.4.30/drivers/mtd/mtdblock.c 2006-03-26 06:38:54 -05:00 +@@ -601,7 +601,7 @@ + sprintf(name, "%d", mtd->index); + devfs_rw_handle[mtd->index] = devfs_register(devfs_dir_handle, name, + DEVFS_FL_DEFAULT, MTD_BLOCK_MAJOR, mtd->index, +- S_IFBLK | S_IRUGO | S_IWUGO, ++ S_IFBLK | S_IRUGO | S_IWUSR, + &mtd_fops, NULL); + } + +--- linux-2.4.30/drivers/mtd/mtdchar.c.orig 2006-03-26 06:42:23 -05:00 ++++ linux-2.4.30/drivers/mtd/mtdchar.c 2006-03-26 06:42:41 -05:00 +@@ -558,7 +558,7 @@ + sprintf(name, "%d", mtd->index); + devfs_rw_handle[mtd->index] = devfs_register(devfs_dir_handle, name, + DEVFS_FL_DEFAULT, MTD_CHAR_MAJOR, mtd->index*2, +- S_IFCHR | S_IRUGO | S_IWUGO, ++ S_IFCHR | S_IRUGO | S_IWUSR, + &mtd_fops, NULL); + + sprintf(name, "%dro", mtd->index); -- 2.30.2