Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * S390 version |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 4 | * Copyright IBM Corp. 1999, 2000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com) |
| 6 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #ifndef _S390_PTRACE_H |
| 8 | #define _S390_PTRACE_H |
| 9 | |
Heiko Carstens | 92778b9 | 2015-10-06 16:23:39 +0200 | [diff] [blame] | 10 | #include <linux/const.h> |
David Howells | 9807f75 | 2012-10-09 09:47:31 +0100 | [diff] [blame] | 11 | #include <uapi/asm/ptrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | |
Martin Schwidefsky | d3a73ac | 2014-04-15 12:55:07 +0200 | [diff] [blame] | 13 | #define PIF_SYSCALL 0 /* inside a system call */ |
| 14 | #define PIF_PER_TRAP 1 /* deliver sigtrap on return to user */ |
Martin Schwidefsky | 23fefe1 | 2017-06-07 14:10:24 +0200 | [diff] [blame] | 15 | #define PIF_SYSCALL_RESTART 2 /* restart the current system call */ |
Martin Schwidefsky | c771320 | 2017-10-05 08:44:26 +0200 | [diff] [blame] | 16 | #define PIF_GUEST_FAULT 3 /* indicates program check in sie64a */ |
Martin Schwidefsky | d3a73ac | 2014-04-15 12:55:07 +0200 | [diff] [blame] | 17 | |
Heiko Carstens | 92778b9 | 2015-10-06 16:23:39 +0200 | [diff] [blame] | 18 | #define _PIF_SYSCALL _BITUL(PIF_SYSCALL) |
| 19 | #define _PIF_PER_TRAP _BITUL(PIF_PER_TRAP) |
Martin Schwidefsky | 23fefe1 | 2017-06-07 14:10:24 +0200 | [diff] [blame] | 20 | #define _PIF_SYSCALL_RESTART _BITUL(PIF_SYSCALL_RESTART) |
Martin Schwidefsky | c771320 | 2017-10-05 08:44:26 +0200 | [diff] [blame] | 21 | #define _PIF_GUEST_FAULT _BITUL(PIF_GUEST_FAULT) |
Martin Schwidefsky | d3a73ac | 2014-04-15 12:55:07 +0200 | [diff] [blame] | 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #ifndef __ASSEMBLY__ |
Heiko Carstens | 63dd9b4 | 2013-04-20 14:07:29 +0200 | [diff] [blame] | 24 | |
Martin Schwidefsky | e258d71 | 2013-09-24 09:14:56 +0200 | [diff] [blame] | 25 | #define PSW_KERNEL_BITS (PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_ASC_HOME | \ |
| 26 | PSW_MASK_EA | PSW_MASK_BA) |
| 27 | #define PSW_USER_BITS (PSW_MASK_DAT | PSW_MASK_IO | PSW_MASK_EXT | \ |
| 28 | PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_MASK_MCHECK | \ |
| 29 | PSW_MASK_PSTATE | PSW_ASC_PRIMARY) |
David Woodhouse | 274f594 | 2006-04-27 04:47:10 +0100 | [diff] [blame] | 30 | |
Heiko Carstens | 1365632 | 2014-01-01 16:08:06 +0100 | [diff] [blame] | 31 | struct psw_bits { |
Heiko Carstens | a752598 | 2017-06-03 10:56:07 +0200 | [diff] [blame] | 32 | unsigned long : 1; |
| 33 | unsigned long per : 1; /* PER-Mask */ |
| 34 | unsigned long : 3; |
| 35 | unsigned long dat : 1; /* DAT Mode */ |
| 36 | unsigned long io : 1; /* Input/Output Mask */ |
| 37 | unsigned long ext : 1; /* External Mask */ |
| 38 | unsigned long key : 4; /* PSW Key */ |
| 39 | unsigned long : 1; |
| 40 | unsigned long mcheck : 1; /* Machine-Check Mask */ |
| 41 | unsigned long wait : 1; /* Wait State */ |
| 42 | unsigned long pstate : 1; /* Problem State */ |
| 43 | unsigned long as : 2; /* Address Space Control */ |
| 44 | unsigned long cc : 2; /* Condition Code */ |
| 45 | unsigned long pm : 4; /* Program Mask */ |
| 46 | unsigned long ri : 1; /* Runtime Instrumentation */ |
| 47 | unsigned long : 6; |
| 48 | unsigned long eaba : 2; /* Addressing Mode */ |
| 49 | unsigned long : 31; |
| 50 | unsigned long ia : 64; /* Instruction Address */ |
Heiko Carstens | 1365632 | 2014-01-01 16:08:06 +0100 | [diff] [blame] | 51 | }; |
| 52 | |
| 53 | enum { |
Heiko Carstens | 8bb3fdd | 2017-06-03 10:19:55 +0200 | [diff] [blame] | 54 | PSW_BITS_AMODE_24BIT = 0, |
| 55 | PSW_BITS_AMODE_31BIT = 1, |
| 56 | PSW_BITS_AMODE_64BIT = 3 |
Heiko Carstens | 1365632 | 2014-01-01 16:08:06 +0100 | [diff] [blame] | 57 | }; |
| 58 | |
| 59 | enum { |
Heiko Carstens | 8bb3fdd | 2017-06-03 10:19:55 +0200 | [diff] [blame] | 60 | PSW_BITS_AS_PRIMARY = 0, |
| 61 | PSW_BITS_AS_ACCREG = 1, |
| 62 | PSW_BITS_AS_SECONDARY = 2, |
| 63 | PSW_BITS_AS_HOME = 3 |
Heiko Carstens | 1365632 | 2014-01-01 16:08:06 +0100 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | #define psw_bits(__psw) (*({ \ |
| 67 | typecheck(psw_t, __psw); \ |
| 68 | &(*(struct psw_bits *)(&(__psw))); \ |
| 69 | })) |
| 70 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | /* |
| 72 | * The pt_regs struct defines the way the registers are stored on |
| 73 | * the stack during a system call. |
| 74 | */ |
| 75 | struct pt_regs |
| 76 | { |
| 77 | unsigned long args[1]; |
| 78 | psw_t psw; |
| 79 | unsigned long gprs[NUM_GPRS]; |
| 80 | unsigned long orig_gpr2; |
Martin Schwidefsky | aa33c8c | 2011-12-27 11:27:18 +0100 | [diff] [blame] | 81 | unsigned int int_code; |
Martin Schwidefsky | 48f6b00 | 2013-06-17 14:54:02 +0200 | [diff] [blame] | 82 | unsigned int int_parm; |
Martin Schwidefsky | aa33c8c | 2011-12-27 11:27:18 +0100 | [diff] [blame] | 83 | unsigned long int_parm_long; |
Martin Schwidefsky | d3a73ac | 2014-04-15 12:55:07 +0200 | [diff] [blame] | 84 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | }; |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 86 | |
| 87 | /* |
| 88 | * Program event recording (PER) register set. |
| 89 | */ |
| 90 | struct per_regs { |
| 91 | unsigned long control; /* PER control bits */ |
| 92 | unsigned long start; /* PER starting address */ |
| 93 | unsigned long end; /* PER ending address */ |
| 94 | }; |
| 95 | |
| 96 | /* |
| 97 | * PER event contains information about the cause of the last PER exception. |
| 98 | */ |
| 99 | struct per_event { |
| 100 | unsigned short cause; /* PER code, ATMID and AI */ |
| 101 | unsigned long address; /* PER address */ |
| 102 | unsigned char paid; /* PER access identification */ |
| 103 | }; |
| 104 | |
| 105 | /* |
| 106 | * Simplified per_info structure used to decode the ptrace user space ABI. |
| 107 | */ |
| 108 | struct per_struct_kernel { |
| 109 | unsigned long cr9; /* PER control bits */ |
| 110 | unsigned long cr10; /* PER starting address */ |
| 111 | unsigned long cr11; /* PER ending address */ |
| 112 | unsigned long bits; /* Obsolete software bits */ |
| 113 | unsigned long starting_addr; /* User specified start address */ |
| 114 | unsigned long ending_addr; /* User specified end address */ |
| 115 | unsigned short perc_atmid; /* PER trap ATMID */ |
| 116 | unsigned long address; /* PER trap instruction address */ |
| 117 | unsigned char access_id; /* PER trap access identification */ |
| 118 | }; |
| 119 | |
Martin Schwidefsky | d35339a | 2012-07-31 11:03:04 +0200 | [diff] [blame] | 120 | #define PER_EVENT_MASK 0xEB000000UL |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 121 | |
| 122 | #define PER_EVENT_BRANCH 0x80000000UL |
| 123 | #define PER_EVENT_IFETCH 0x40000000UL |
| 124 | #define PER_EVENT_STORE 0x20000000UL |
| 125 | #define PER_EVENT_STORE_REAL 0x08000000UL |
Martin Schwidefsky | d35339a | 2012-07-31 11:03:04 +0200 | [diff] [blame] | 126 | #define PER_EVENT_TRANSACTION_END 0x02000000UL |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 127 | #define PER_EVENT_NULLIFICATION 0x01000000UL |
| 128 | |
Martin Schwidefsky | d35339a | 2012-07-31 11:03:04 +0200 | [diff] [blame] | 129 | #define PER_CONTROL_MASK 0x00e00000UL |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 130 | |
| 131 | #define PER_CONTROL_BRANCH_ADDRESS 0x00800000UL |
Martin Schwidefsky | d35339a | 2012-07-31 11:03:04 +0200 | [diff] [blame] | 132 | #define PER_CONTROL_SUSPENSION 0x00400000UL |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 133 | #define PER_CONTROL_ALTERATION 0x00200000UL |
| 134 | |
Martin Schwidefsky | d3a73ac | 2014-04-15 12:55:07 +0200 | [diff] [blame] | 135 | static inline void set_pt_regs_flag(struct pt_regs *regs, int flag) |
| 136 | { |
Heiko Carstens | ac25e79 | 2015-10-06 16:23:29 +0200 | [diff] [blame] | 137 | regs->flags |= (1UL << flag); |
Martin Schwidefsky | d3a73ac | 2014-04-15 12:55:07 +0200 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | static inline void clear_pt_regs_flag(struct pt_regs *regs, int flag) |
| 141 | { |
Heiko Carstens | ac25e79 | 2015-10-06 16:23:29 +0200 | [diff] [blame] | 142 | regs->flags &= ~(1UL << flag); |
Martin Schwidefsky | d3a73ac | 2014-04-15 12:55:07 +0200 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | static inline int test_pt_regs_flag(struct pt_regs *regs, int flag) |
| 146 | { |
Heiko Carstens | ac25e79 | 2015-10-06 16:23:29 +0200 | [diff] [blame] | 147 | return !!(regs->flags & (1UL << flag)); |
Martin Schwidefsky | d3a73ac | 2014-04-15 12:55:07 +0200 | [diff] [blame] | 148 | } |
| 149 | |
Roland McGrath | 0ac30be | 2008-01-26 14:11:22 +0100 | [diff] [blame] | 150 | /* |
| 151 | * These are defined as per linux/ptrace.h, which see. |
| 152 | */ |
| 153 | #define arch_has_single_step() (1) |
Martin Schwidefsky | 818a330 | 2014-03-14 12:01:08 +0100 | [diff] [blame] | 154 | #define arch_has_block_step() (1) |
Roland McGrath | 0ac30be | 2008-01-26 14:11:22 +0100 | [diff] [blame] | 155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | #define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0) |
Heiko Carstens | 9cb1cce | 2016-01-18 13:12:19 +0100 | [diff] [blame] | 157 | #define instruction_pointer(regs) ((regs)->psw.addr) |
Martin Schwidefsky | 753c4dd | 2008-10-10 21:33:20 +0200 | [diff] [blame] | 158 | #define user_stack_pointer(regs)((regs)->gprs[15]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | #define profile_pc(regs) instruction_pointer(regs) |
Heiko Carstens | 952974ac6 | 2010-02-12 13:38:40 +0100 | [diff] [blame] | 160 | |
Eric Paris | d7e7528 | 2012-01-03 14:23:06 -0500 | [diff] [blame] | 161 | static inline long regs_return_value(struct pt_regs *regs) |
| 162 | { |
| 163 | return regs->gprs[2]; |
| 164 | } |
| 165 | |
Jan Willeke | 2a0a5b2 | 2014-09-22 16:39:06 +0200 | [diff] [blame] | 166 | static inline void instruction_pointer_set(struct pt_regs *regs, |
| 167 | unsigned long val) |
| 168 | { |
Heiko Carstens | fecc868a | 2016-01-18 12:49:44 +0100 | [diff] [blame] | 169 | regs->psw.addr = val; |
Jan Willeke | 2a0a5b2 | 2014-09-22 16:39:06 +0200 | [diff] [blame] | 170 | } |
| 171 | |
Heiko Carstens | 952974ac6 | 2010-02-12 13:38:40 +0100 | [diff] [blame] | 172 | int regs_query_register_offset(const char *name); |
| 173 | const char *regs_query_register_name(unsigned int offset); |
| 174 | unsigned long regs_get_register(struct pt_regs *regs, unsigned int offset); |
| 175 | unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs, unsigned int n); |
| 176 | |
| 177 | static inline unsigned long kernel_stack_pointer(struct pt_regs *regs) |
| 178 | { |
Heiko Carstens | 9cb1cce | 2016-01-18 13:12:19 +0100 | [diff] [blame] | 179 | return regs->gprs[15]; |
Heiko Carstens | 952974ac6 | 2010-02-12 13:38:40 +0100 | [diff] [blame] | 180 | } |
| 181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | #endif /* __ASSEMBLY__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | #endif /* _S390_PTRACE_H */ |