From: Mike Baker Date: Sun, 26 Mar 2006 11:48:48 +0000 (+0000) Subject: security patches X-Git-Tag: whiterussian_rc5~3 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=999cba293bbf25df3b1b024fb68e6f22289adfff;p=openwrt%2Fsvn-archive%2Fopenwrt.git security patches SVN-Revision: 3490 --- 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);