blob: e9c9a117bd25d5b69e8ba5313990f18f8db7311d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King4baa9922008-08-02 10:55:55 +01002 * arch/arm/include/asm/ptrace.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1996-2003 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#ifndef __ASM_ARM_PTRACE_H
11#define __ASM_ARM_PTRACE_H
12
David Howellscb8db5d2012-10-12 13:05:52 +010013#include <uapi/asm/ptrace.h>
Paul Brook68b7f7152009-07-24 12:34:58 +010014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#ifndef __ASSEMBLY__
Russell Kinge6a9dc62016-05-13 10:22:38 +010016#include <linux/types.h>
17
Jamie Iles092a4e92010-01-06 10:50:08 +010018struct pt_regs {
19 unsigned long uregs[18];
20};
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Russell Kinge6a9dc62016-05-13 10:22:38 +010022struct svc_pt_regs {
23 struct pt_regs regs;
24 u32 dacr;
Russell Kinge6978e42016-05-13 11:40:20 +010025 u32 addr_limit;
Russell Kinge6a9dc62016-05-13 10:22:38 +010026};
27
Russell King5fa9da52016-05-13 10:26:10 +010028#define to_svc_pt_regs(r) container_of(r, struct svc_pt_regs, regs)
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#define user_mode(regs) \
31 (((regs)->ARM_cpsr & 0xf) == 0)
32
33#ifdef CONFIG_ARM_THUMB
34#define thumb_mode(regs) \
35 (((regs)->ARM_cpsr & PSR_T_BIT))
36#else
37#define thumb_mode(regs) (0)
38#endif
39
Uwe Kleine-König3f18b1b2013-12-16 10:24:46 +010040#ifndef CONFIG_CPU_V7M
George G. Davis909d6c62007-06-26 01:38:27 +010041#define isa_mode(regs) \
Uwe Kleine-König3f18b1b2013-12-16 10:24:46 +010042 ((((regs)->ARM_cpsr & PSR_J_BIT) >> (__ffs(PSR_J_BIT) - 1)) | \
43 (((regs)->ARM_cpsr & PSR_T_BIT) >> (__ffs(PSR_T_BIT))))
44#else
45#define isa_mode(regs) 1 /* Thumb */
46#endif
George G. Davis909d6c62007-06-26 01:38:27 +010047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define processor_mode(regs) \
49 ((regs)->ARM_cpsr & MODE_MASK)
50
51#define interrupts_enabled(regs) \
52 (!((regs)->ARM_cpsr & PSR_I_BIT))
53
54#define fast_interrupts_enabled(regs) \
55 (!((regs)->ARM_cpsr & PSR_F_BIT))
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/* Are the current registers suitable for user mode?
58 * (used to maintain security in signal handlers)
59 */
60static inline int valid_user_regs(struct pt_regs *regs)
61{
Catalin Marinas55bdd692010-05-21 18:06:41 +010062#ifndef CONFIG_CPU_V7M
Russell King41e2e8f2010-08-13 23:33:46 +010063 unsigned long mode = regs->ARM_cpsr & MODE_MASK;
64
65 /*
66 * Always clear the F (FIQ) and A (delayed abort) bits
67 */
68 regs->ARM_cpsr &= ~(PSR_F_BIT | PSR_A_BIT);
69
70 if ((regs->ARM_cpsr & PSR_I_BIT) == 0) {
71 if (mode == USR_MODE)
72 return 1;
73 if (elf_hwcap & HWCAP_26BIT && mode == USR26_MODE)
74 return 1;
Catalin Marinasd1cbbd62007-07-11 11:29:39 +010075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77 /*
78 * Force CPSR to something logical...
79 */
Russell King41e2e8f2010-08-13 23:33:46 +010080 regs->ARM_cpsr &= PSR_f | PSR_s | PSR_x | PSR_T_BIT | MODE32_BIT;
Catalin Marinasd1cbbd62007-07-11 11:29:39 +010081 if (!(elf_hwcap & HWCAP_26BIT))
82 regs->ARM_cpsr |= USR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 return 0;
Catalin Marinas55bdd692010-05-21 18:06:41 +010085#else /* ifndef CONFIG_CPU_V7M */
86 return 1;
87#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Nathaniel Husted29ef73b2012-01-03 14:23:09 -050090static inline long regs_return_value(struct pt_regs *regs)
91{
92 return regs->ARM_r0;
93}
94
Russell King1de765c2008-09-06 10:14:24 +010095#define instruction_pointer(regs) (regs)->ARM_pc
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Nikolay Borisov9865f1d2014-06-03 19:48:10 +010097#ifdef CONFIG_THUMB2_KERNEL
98#define frame_pointer(regs) (regs)->ARM_r7
99#else
100#define frame_pointer(regs) (regs)->ARM_fp
101#endif
102
David A. Longc7edc9e2014-03-07 11:23:04 -0500103static inline void instruction_pointer_set(struct pt_regs *regs,
104 unsigned long val)
105{
106 instruction_pointer(regs) = val;
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#ifdef CONFIG_SMP
110extern unsigned long profile_pc(struct pt_regs *regs);
111#else
112#define profile_pc(regs) instruction_pointer(regs)
113#endif
114
Russell King652a12e2005-04-17 15:50:36 +0100115#define predicate(x) ((x) & 0xf0000000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define PREDICATE_ALWAYS 0xe0000000
Adrian Bunkf22ab812008-07-25 01:47:34 -0700117
Will Deacone513f8b2010-06-25 12:24:53 +0100118/*
Jon Medhurst592201a2011-03-26 19:19:07 +0000119 * True if instr is a 32-bit thumb instruction. This works if instr
120 * is the first or only half-word of a thumb instruction. It also works
121 * when instr holds all 32-bits of a wide thumb instruction if stored
122 * in the form (first_half<<16)|(second_half)
123 */
124#define is_wide_instruction(instr) ((unsigned)(instr) >= 0xe800)
125
126/*
Will Deacone513f8b2010-06-25 12:24:53 +0100127 * kprobe-based event tracer support
128 */
129#include <linux/stddef.h>
130#include <linux/types.h>
131#define MAX_REG_OFFSET (offsetof(struct pt_regs, ARM_ORIG_r0))
132
133extern int regs_query_register_offset(const char *name);
134extern const char *regs_query_register_name(unsigned int offset);
135extern bool regs_within_kernel_stack(struct pt_regs *regs, unsigned long addr);
136extern unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs,
137 unsigned int n);
138
139/**
140 * regs_get_register() - get register value from its offset
141 * @regs: pt_regs from which register value is gotten
142 * @offset: offset number of the register.
143 *
144 * regs_get_register returns the value of a register whose offset from @regs.
145 * The @offset is the offset of the register in struct pt_regs.
146 * If @offset is bigger than MAX_REG_OFFSET, this returns 0.
147 */
148static inline unsigned long regs_get_register(struct pt_regs *regs,
149 unsigned int offset)
150{
151 if (unlikely(offset > MAX_REG_OFFSET))
152 return 0;
153 return *(unsigned long *)((unsigned long)regs + offset);
154}
155
156/* Valid only for Kernel mode traps. */
157static inline unsigned long kernel_stack_pointer(struct pt_regs *regs)
158{
159 return regs->ARM_sp;
160}
161
Wade Farnsworth0693bf62012-04-04 16:19:47 +0100162static inline unsigned long user_stack_pointer(struct pt_regs *regs)
163{
164 return regs->ARM_sp;
165}
166
Behan Webster0ebc1f52014-09-27 00:31:06 +0100167#define current_pt_regs(void) ({ (struct pt_regs *) \
168 ((current_stack_pointer | (THREAD_SIZE - 1)) - 7) - 1; \
Al Virobfd170d2012-08-02 11:49:43 +0400169})
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#endif /* __ASSEMBLY__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172#endif