/openbmc/linux/arch/mips/include/asm/ |
H A D | stackprotector.h | 36ecafc5ad17861e2bc1fb12af4cc97680e25942 Wed Jun 12 12:08:54 CDT 2013 Gregory Fong <gregory.0xf0@gmail.com> MIPS: initial stack protector support
Implements basic stack protector support based on ARM version in c743f38013aeff58ef6252601e397b5ba281c633 , with Kconfig option, constant canary value set at boot time, and script to check if compiler actually supports stack protector.
Tested by creating a kernel module that writes past end of char[].
Signed-off-by: Gregory Fong <gregory.0xf0@gmail.com> Cc: linux-mips@linux-mips.org Cc: Filippo Arcidiacono <filippo.arcidiacono@st.com> Cc: Carmelo Amoroso <carmelo.amoroso@st.com> Patchwork: https://patchwork.linux-mips.org/patch/5448/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
|
/openbmc/linux/arch/sh/include/asm/ |
H A D | stackprotector.h | 5d920bb929a99446062a48cf90867bbca57b8e77 Thu Apr 19 01:45:57 CDT 2012 Filippo Arcidiacono <filippo.arcidiacono@st.com> sh: initial stack protector support.
This implements basic -fstack-protector support, based on the early ARM version in c743f38013aeff58ef6252601e397b5ba281c633. The SMP case is limited to the initial canary value, while the UP case handles per-task granularity (limited to 32-bit sh until a new enough sh64 compiler manifests itself).
Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com> Reviewed-by: Carmelo Amoroso <carmelo.amoroso@st.com> Signed-off-by: Stuart Menefy <stuart.menefy@st.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
|
/openbmc/linux/arch/arm/include/asm/ |
H A D | stackprotector.h | c743f38013aeff58ef6252601e397b5ba281c633 Mon May 24 22:55:42 CDT 2010 Nicolas Pitre <nico@fluxnic.net> ARM: initial stack protector (-fstack-protector) support
This is the very basic stuff without the changing canary upon task switch yet. Just the Kconfig option and a constant canary value initialized at boot time.
Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
|
/openbmc/linux/arch/sh/kernel/ |
H A D | process.c | diff 5d920bb929a99446062a48cf90867bbca57b8e77 Thu Apr 19 01:45:57 CDT 2012 Filippo Arcidiacono <filippo.arcidiacono@st.com> sh: initial stack protector support.
This implements basic -fstack-protector support, based on the early ARM version in c743f38013aeff58ef6252601e397b5ba281c633. The SMP case is limited to the initial canary value, while the UP case handles per-task granularity (limited to 32-bit sh until a new enough sh64 compiler manifests itself).
Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com> Reviewed-by: Carmelo Amoroso <carmelo.amoroso@st.com> Signed-off-by: Stuart Menefy <stuart.menefy@st.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
|
H A D | process_32.c | diff 5d920bb929a99446062a48cf90867bbca57b8e77 Thu Apr 19 01:45:57 CDT 2012 Filippo Arcidiacono <filippo.arcidiacono@st.com> sh: initial stack protector support.
This implements basic -fstack-protector support, based on the early ARM version in c743f38013aeff58ef6252601e397b5ba281c633. The SMP case is limited to the initial canary value, while the UP case handles per-task granularity (limited to 32-bit sh until a new enough sh64 compiler manifests itself).
Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com> Reviewed-by: Carmelo Amoroso <carmelo.amoroso@st.com> Signed-off-by: Stuart Menefy <stuart.menefy@st.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
|
/openbmc/linux/arch/sh/ |
H A D | Makefile | diff 5d920bb929a99446062a48cf90867bbca57b8e77 Thu Apr 19 01:45:57 CDT 2012 Filippo Arcidiacono <filippo.arcidiacono@st.com> sh: initial stack protector support.
This implements basic -fstack-protector support, based on the early ARM version in c743f38013aeff58ef6252601e397b5ba281c633. The SMP case is limited to the initial canary value, while the UP case handles per-task granularity (limited to 32-bit sh until a new enough sh64 compiler manifests itself).
Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com> Reviewed-by: Carmelo Amoroso <carmelo.amoroso@st.com> Signed-off-by: Stuart Menefy <stuart.menefy@st.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
|
H A D | Kconfig | diff 5d920bb929a99446062a48cf90867bbca57b8e77 Thu Apr 19 01:45:57 CDT 2012 Filippo Arcidiacono <filippo.arcidiacono@st.com> sh: initial stack protector support.
This implements basic -fstack-protector support, based on the early ARM version in c743f38013aeff58ef6252601e397b5ba281c633. The SMP case is limited to the initial canary value, while the UP case handles per-task granularity (limited to 32-bit sh until a new enough sh64 compiler manifests itself).
Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com> Reviewed-by: Carmelo Amoroso <carmelo.amoroso@st.com> Signed-off-by: Stuart Menefy <stuart.menefy@st.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
|
/openbmc/linux/arch/mips/kernel/ |
H A D | process.c | diff 36ecafc5ad17861e2bc1fb12af4cc97680e25942 Wed Jun 12 12:08:54 CDT 2013 Gregory Fong <gregory.0xf0@gmail.com> MIPS: initial stack protector support
Implements basic stack protector support based on ARM version in c743f38013aeff58ef6252601e397b5ba281c633 , with Kconfig option, constant canary value set at boot time, and script to check if compiler actually supports stack protector.
Tested by creating a kernel module that writes past end of char[].
Signed-off-by: Gregory Fong <gregory.0xf0@gmail.com> Cc: linux-mips@linux-mips.org Cc: Filippo Arcidiacono <filippo.arcidiacono@st.com> Cc: Carmelo Amoroso <carmelo.amoroso@st.com> Patchwork: https://patchwork.linux-mips.org/patch/5448/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
|
/openbmc/linux/arch/arm/kernel/ |
H A D | process.c | diff c743f38013aeff58ef6252601e397b5ba281c633 Mon May 24 22:55:42 CDT 2010 Nicolas Pitre <nico@fluxnic.net> ARM: initial stack protector (-fstack-protector) support
This is the very basic stuff without the changing canary upon task switch yet. Just the Kconfig option and a constant canary value initialized at boot time.
Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
|
/openbmc/linux/arch/mips/ |
H A D | Makefile | diff 36ecafc5ad17861e2bc1fb12af4cc97680e25942 Wed Jun 12 12:08:54 CDT 2013 Gregory Fong <gregory.0xf0@gmail.com> MIPS: initial stack protector support
Implements basic stack protector support based on ARM version in c743f38013aeff58ef6252601e397b5ba281c633 , with Kconfig option, constant canary value set at boot time, and script to check if compiler actually supports stack protector.
Tested by creating a kernel module that writes past end of char[].
Signed-off-by: Gregory Fong <gregory.0xf0@gmail.com> Cc: linux-mips@linux-mips.org Cc: Filippo Arcidiacono <filippo.arcidiacono@st.com> Cc: Carmelo Amoroso <carmelo.amoroso@st.com> Patchwork: https://patchwork.linux-mips.org/patch/5448/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
|
H A D | Kconfig | diff 36ecafc5ad17861e2bc1fb12af4cc97680e25942 Wed Jun 12 12:08:54 CDT 2013 Gregory Fong <gregory.0xf0@gmail.com> MIPS: initial stack protector support
Implements basic stack protector support based on ARM version in c743f38013aeff58ef6252601e397b5ba281c633 , with Kconfig option, constant canary value set at boot time, and script to check if compiler actually supports stack protector.
Tested by creating a kernel module that writes past end of char[].
Signed-off-by: Gregory Fong <gregory.0xf0@gmail.com> Cc: linux-mips@linux-mips.org Cc: Filippo Arcidiacono <filippo.arcidiacono@st.com> Cc: Carmelo Amoroso <carmelo.amoroso@st.com> Patchwork: https://patchwork.linux-mips.org/patch/5448/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
|
/openbmc/linux/arch/arm/ |
H A D | Makefile | diff c743f38013aeff58ef6252601e397b5ba281c633 Mon May 24 22:55:42 CDT 2010 Nicolas Pitre <nico@fluxnic.net> ARM: initial stack protector (-fstack-protector) support
This is the very basic stuff without the changing canary upon task switch yet. Just the Kconfig option and a constant canary value initialized at boot time.
Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
|
H A D | Kconfig | diff c743f38013aeff58ef6252601e397b5ba281c633 Mon May 24 22:55:42 CDT 2010 Nicolas Pitre <nico@fluxnic.net> ARM: initial stack protector (-fstack-protector) support
This is the very basic stuff without the changing canary upon task switch yet. Just the Kconfig option and a constant canary value initialized at boot time.
Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
|