blob: 853b01245c209bb821e9907c8fa5617f8143dc16 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * S390 version
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02003 * Copyright IBM Corp. 1999, 2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
5 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#ifndef _S390_PTRACE_H
7#define _S390_PTRACE_H
8
Heiko Carstens92778b92015-10-06 16:23:39 +02009#include <linux/const.h>
David Howells9807f752012-10-09 09:47:31 +010010#include <uapi/asm/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +020012#define PIF_SYSCALL 0 /* inside a system call */
13#define PIF_PER_TRAP 1 /* deliver sigtrap on return to user */
Martin Schwidefsky23fefe12017-06-07 14:10:24 +020014#define PIF_SYSCALL_RESTART 2 /* restart the current system call */
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +020015
Heiko Carstens92778b92015-10-06 16:23:39 +020016#define _PIF_SYSCALL _BITUL(PIF_SYSCALL)
17#define _PIF_PER_TRAP _BITUL(PIF_PER_TRAP)
Martin Schwidefsky23fefe12017-06-07 14:10:24 +020018#define _PIF_SYSCALL_RESTART _BITUL(PIF_SYSCALL_RESTART)
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +020019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#ifndef __ASSEMBLY__
Heiko Carstens63dd9b42013-04-20 14:07:29 +020021
Martin Schwidefskye258d712013-09-24 09:14:56 +020022#define PSW_KERNEL_BITS (PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_ASC_HOME | \
23 PSW_MASK_EA | PSW_MASK_BA)
24#define PSW_USER_BITS (PSW_MASK_DAT | PSW_MASK_IO | PSW_MASK_EXT | \
25 PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_MASK_MCHECK | \
26 PSW_MASK_PSTATE | PSW_ASC_PRIMARY)
David Woodhouse274f5942006-04-27 04:47:10 +010027
Heiko Carstens13656322014-01-01 16:08:06 +010028struct psw_bits {
Heiko Carstensa7525982017-06-03 10:56:07 +020029 unsigned long : 1;
30 unsigned long per : 1; /* PER-Mask */
31 unsigned long : 3;
32 unsigned long dat : 1; /* DAT Mode */
33 unsigned long io : 1; /* Input/Output Mask */
34 unsigned long ext : 1; /* External Mask */
35 unsigned long key : 4; /* PSW Key */
36 unsigned long : 1;
37 unsigned long mcheck : 1; /* Machine-Check Mask */
38 unsigned long wait : 1; /* Wait State */
39 unsigned long pstate : 1; /* Problem State */
40 unsigned long as : 2; /* Address Space Control */
41 unsigned long cc : 2; /* Condition Code */
42 unsigned long pm : 4; /* Program Mask */
43 unsigned long ri : 1; /* Runtime Instrumentation */
44 unsigned long : 6;
45 unsigned long eaba : 2; /* Addressing Mode */
46 unsigned long : 31;
47 unsigned long ia : 64; /* Instruction Address */
Heiko Carstens13656322014-01-01 16:08:06 +010048};
49
50enum {
Heiko Carstens8bb3fdd2017-06-03 10:19:55 +020051 PSW_BITS_AMODE_24BIT = 0,
52 PSW_BITS_AMODE_31BIT = 1,
53 PSW_BITS_AMODE_64BIT = 3
Heiko Carstens13656322014-01-01 16:08:06 +010054};
55
56enum {
Heiko Carstens8bb3fdd2017-06-03 10:19:55 +020057 PSW_BITS_AS_PRIMARY = 0,
58 PSW_BITS_AS_ACCREG = 1,
59 PSW_BITS_AS_SECONDARY = 2,
60 PSW_BITS_AS_HOME = 3
Heiko Carstens13656322014-01-01 16:08:06 +010061};
62
63#define psw_bits(__psw) (*({ \
64 typecheck(psw_t, __psw); \
65 &(*(struct psw_bits *)(&(__psw))); \
66}))
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/*
69 * The pt_regs struct defines the way the registers are stored on
70 * the stack during a system call.
71 */
72struct pt_regs
73{
74 unsigned long args[1];
75 psw_t psw;
76 unsigned long gprs[NUM_GPRS];
77 unsigned long orig_gpr2;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +010078 unsigned int int_code;
Martin Schwidefsky48f6b002013-06-17 14:54:02 +020079 unsigned int int_parm;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +010080 unsigned long int_parm_long;
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +020081 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +010083
84/*
85 * Program event recording (PER) register set.
86 */
87struct per_regs {
88 unsigned long control; /* PER control bits */
89 unsigned long start; /* PER starting address */
90 unsigned long end; /* PER ending address */
91};
92
93/*
94 * PER event contains information about the cause of the last PER exception.
95 */
96struct per_event {
97 unsigned short cause; /* PER code, ATMID and AI */
98 unsigned long address; /* PER address */
99 unsigned char paid; /* PER access identification */
100};
101
102/*
103 * Simplified per_info structure used to decode the ptrace user space ABI.
104 */
105struct per_struct_kernel {
106 unsigned long cr9; /* PER control bits */
107 unsigned long cr10; /* PER starting address */
108 unsigned long cr11; /* PER ending address */
109 unsigned long bits; /* Obsolete software bits */
110 unsigned long starting_addr; /* User specified start address */
111 unsigned long ending_addr; /* User specified end address */
112 unsigned short perc_atmid; /* PER trap ATMID */
113 unsigned long address; /* PER trap instruction address */
114 unsigned char access_id; /* PER trap access identification */
115};
116
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200117#define PER_EVENT_MASK 0xEB000000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100118
119#define PER_EVENT_BRANCH 0x80000000UL
120#define PER_EVENT_IFETCH 0x40000000UL
121#define PER_EVENT_STORE 0x20000000UL
122#define PER_EVENT_STORE_REAL 0x08000000UL
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200123#define PER_EVENT_TRANSACTION_END 0x02000000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100124#define PER_EVENT_NULLIFICATION 0x01000000UL
125
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200126#define PER_CONTROL_MASK 0x00e00000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100127
128#define PER_CONTROL_BRANCH_ADDRESS 0x00800000UL
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200129#define PER_CONTROL_SUSPENSION 0x00400000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100130#define PER_CONTROL_ALTERATION 0x00200000UL
131
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +0200132static inline void set_pt_regs_flag(struct pt_regs *regs, int flag)
133{
Heiko Carstensac25e792015-10-06 16:23:29 +0200134 regs->flags |= (1UL << flag);
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +0200135}
136
137static inline void clear_pt_regs_flag(struct pt_regs *regs, int flag)
138{
Heiko Carstensac25e792015-10-06 16:23:29 +0200139 regs->flags &= ~(1UL << flag);
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +0200140}
141
142static inline int test_pt_regs_flag(struct pt_regs *regs, int flag)
143{
Heiko Carstensac25e792015-10-06 16:23:29 +0200144 return !!(regs->flags & (1UL << flag));
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +0200145}
146
Roland McGrath0ac30be2008-01-26 14:11:22 +0100147/*
148 * These are defined as per linux/ptrace.h, which see.
149 */
150#define arch_has_single_step() (1)
Martin Schwidefsky818a3302014-03-14 12:01:08 +0100151#define arch_has_block_step() (1)
Roland McGrath0ac30be2008-01-26 14:11:22 +0100152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0)
Heiko Carstens9cb1cce2016-01-18 13:12:19 +0100154#define instruction_pointer(regs) ((regs)->psw.addr)
Martin Schwidefsky753c4dd2008-10-10 21:33:20 +0200155#define user_stack_pointer(regs)((regs)->gprs[15])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#define profile_pc(regs) instruction_pointer(regs)
Heiko Carstens952974ac62010-02-12 13:38:40 +0100157
Eric Parisd7e75282012-01-03 14:23:06 -0500158static inline long regs_return_value(struct pt_regs *regs)
159{
160 return regs->gprs[2];
161}
162
Jan Willeke2a0a5b22014-09-22 16:39:06 +0200163static inline void instruction_pointer_set(struct pt_regs *regs,
164 unsigned long val)
165{
Heiko Carstensfecc868a2016-01-18 12:49:44 +0100166 regs->psw.addr = val;
Jan Willeke2a0a5b22014-09-22 16:39:06 +0200167}
168
Heiko Carstens952974ac62010-02-12 13:38:40 +0100169int regs_query_register_offset(const char *name);
170const char *regs_query_register_name(unsigned int offset);
171unsigned long regs_get_register(struct pt_regs *regs, unsigned int offset);
172unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs, unsigned int n);
173
174static inline unsigned long kernel_stack_pointer(struct pt_regs *regs)
175{
Heiko Carstens9cb1cce2016-01-18 13:12:19 +0100176 return regs->gprs[15];
Heiko Carstens952974ac62010-02-12 13:38:40 +0100177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179#endif /* __ASSEMBLY__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#endif /* _S390_PTRACE_H */