lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Sun, 11 Apr 2010 23:04:01 -0700
From:	David VomLehn <dvomlehn@...co.com>
To:	to@...mlehn-lnx2.corp.sa.net,
	"linux_arch"@dvomlehn-lnx2.corp.sa.net,
	linux_arch@...mlehn-lnx2.corp.sa.net
Cc:	akpm@...ux-foundation.org, linux-kernel@...r.kernel.org,
	maint_arch@...mlehn-lnx2.corp.sa.net
Subject: [PATCH 8/23] Make register values available to H8300 panic
	notifiers

The save_ptregs() function has not been tested or even built. I will need
help to complete this.

Signed-off-by: David VomLehn <dvomlehn@...co.com>
---
 arch/h8300/include/asm/ptrace.h |   64 +++++++++++++++++++++++++++++++++++++++
 1 files changed, 64 insertions(+), 0 deletions(-)

diff --git a/arch/h8300/include/asm/ptrace.h b/arch/h8300/include/asm/ptrace.h
index d866c0e..09d6f3f 100644
--- a/arch/h8300/include/asm/ptrace.h
+++ b/arch/h8300/include/asm/ptrace.h
@@ -61,6 +61,70 @@ struct pt_regs {
 #define instruction_pointer(regs) ((regs)->pc)
 #define profile_pc(regs) instruction_pointer(regs)
 extern void show_regs(struct pt_regs *);
+
+/* Macros for saving the contents of registers and for the output constraint
+ * for those registers */
+#include "/home/vomlehn/git/kernel.org/ptreg.h"
+#define PTREG_SAVE(r, name)	"mov.l	" #r ", %[" #name "]\n"
+#define PTREG_SAVE_ER(i)	PTREG_SAVE_I(er, er, i)
+
+#define PTREG_OUT_ER(regs, i)	PTREG_OUT_I(regs, er, er, i)
+
+#define arch_has_save_ptregs	1
+
+/**
+ * save_ptregs - save processor registers for backtracing
+ * @regs:	Pointer to &struct pt_regs structure in which to save the
+ *		registers
+ *
+ * Returns a constant pointer to @regs.
+ *
+ * This function must be called first in a function. There must be no
+ * auto variables defined that are initialized before calling this function.
+ */
+static __always_inline
+const struct pt_regs *save_ptregs(struct pt_regs *regs)
+{
+	__asm__ __volatile__ (
+			PTREG_SAVE(retpc, retpc)
+			PTREG_SAVE_ER(4)
+			PTREG_SAVE_ER(5)
+			PTREG_SAVE_ER(6)
+			PTREG_SAVE_ER(3)
+			PTREG_SAVE_ER(2)
+			PTREG_SAVE_ER(1)
+			PTREG_SAVE(orig_er0, orig_er0)
+			PTREG_SAVE(ccr, ccr)
+			PTREG_SAVE_ER(0)
+			PTREG_SAVE(vector, vector)
+#if defined(CONFIG_CPU_H8S)
+			PTREG_SAVE(exr, exr)
+#endif
+		"1:\n"
+			"mov.l	#1b, er0\n"
+			PTREG_SAVE(er0, pc)
+	:
+		PTREG_OUT(regs, retpc, retpc)
+		PTREG_OUT(regs, 4)
+		PTREG_OUT(regs, 5)
+		PTREG_OUT(regs, 6)
+		PTREG_OUT(regs, 3)
+		PTREG_OUT(regs, 2)
+		PTREG_OUT(regs, 1)
+		PTREG_OUT(regs, orig_er0, orig_er0)
+		PTREG_OUT(regs, ccr, ccr)
+		PTREG_OUT(regs, 0)
+		PTREG_OUT(regs, vector, vector)
+#if defined(CONFIG_CPU_H8S)
+		PTREG_OUT(regs, exr, exr)
+#endif
+		PTREG_OUT(regs, pc, pc)
+	:
+		"er0"
+	);
+
+	return regs;
+}
 #endif /* __KERNEL__ */
 #endif /* __ASSEMBLY__ */
 #endif /* _H8300_PTRACE_H */
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ