1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
//! Instruction introspection helpers for reading the Instructions sysvar.
//!
//! These utilities enable on-chain programs to inspect the transaction-level
//! instruction list. Common use cases include:
//!
//! - **Flash loan guards** — verify the current instruction is not being invoked
//! via CPI so that atomic flash-loan exploits are prevented.
//! - **CPI depth checks** — ensure instructions are top-level calls.
//! - **Sandwich detection** — check whether a specific program appears before or
//! after the current instruction in the transaction.
//!
//! All functions accept a reference to the Instructions sysvar account
//! (`&AccountView`) and validate its address before reading data.
use AccountView;
use Address;
use ProgramError;
use Instructions;
use crateProgramResult;
/// Verifies the current instruction is not being invoked via CPI.
///
/// This is useful for flash loan guards: a program can ensure it is the
/// top-level caller by checking that the instruction at the current index
/// in the sysvar has a matching `program_id`.
///
/// # Arguments
///
/// * `instructions_account` - The Instructions sysvar account.
/// * `program_id` - The expected program ID of the current instruction (i.e.
/// the program performing the check).
///
/// # Errors
///
/// Returns `ProgramError::UnsupportedSysvar` if the account address does not
/// match the Instructions sysvar ID.
///
/// Returns `ProgramError::InvalidInstructionData` if the current instruction
/// index is out of bounds.
///
/// Returns `ProgramError::InvalidAccountData` if the program ID at the
/// current instruction index does not match the provided `program_id`,
/// indicating the instruction is being invoked via CPI.
///
/// # Example
///
/// ```ignore
/// use pina::introspection::assert_no_cpi;
///
/// fn process(accounts: &[AccountView], program_id: &Address) -> ProgramResult {
/// let instructions_account = &accounts[0];
/// // Ensure we are not being called via CPI
/// assert_no_cpi(instructions_account, program_id)?;
/// // ... rest of the instruction logic
/// Ok(())
/// }
/// ```
/// Returns the total number of instructions in the transaction.
///
/// # Arguments
///
/// * `instructions_account` - The Instructions sysvar account.
///
/// # Errors
///
/// Returns `ProgramError::UnsupportedSysvar` if the account address does not
/// match the Instructions sysvar ID.
///
/// # Example
///
/// ```ignore
/// use pina::introspection::get_instruction_count;
///
/// fn process(accounts: &[AccountView]) -> ProgramResult {
/// let instructions_account = &accounts[0];
/// let count = get_instruction_count(instructions_account)?;
/// // e.g. reject transactions with too many instructions
/// if count > 5 {
/// return Err(ProgramError::InvalidInstructionData);
/// }
/// Ok(())
/// }
/// ```
/// Returns the index of the currently executing instruction.
///
/// # Arguments
///
/// * `instructions_account` - The Instructions sysvar account.
///
/// # Errors
///
/// Returns `ProgramError::UnsupportedSysvar` if the account address does not
/// match the Instructions sysvar ID.
///
/// # Example
///
/// ```ignore
/// use pina::introspection::get_current_instruction_index;
///
/// fn process(accounts: &[AccountView]) -> ProgramResult {
/// let instructions_account = &accounts[0];
/// let index = get_current_instruction_index(instructions_account)?;
/// // e.g. ensure this is the first instruction in the transaction
/// if index != 0 {
/// return Err(ProgramError::InvalidInstructionData);
/// }
/// Ok(())
/// }
/// ```
/// Checks if any instruction before the current one targets the given program.
///
/// This is useful for detecting whether a specific program (e.g. a DEX or
/// lending protocol) has already executed an instruction earlier in the
/// transaction.
///
/// # Arguments
///
/// * `instructions_account` - The Instructions sysvar account.
/// * `program_id` - The program ID to search for.
///
/// # Errors
///
/// Returns `ProgramError::UnsupportedSysvar` if the account address does not
/// match the Instructions sysvar ID.
///
/// Returns `ProgramError::InvalidInstructionData` if any instruction index
/// is out of bounds (should not happen for well-formed sysvar data).
///
/// # Example
///
/// ```ignore
/// use pina::introspection::has_instruction_before;
///
/// fn process(
/// accounts: &[AccountView],
/// suspect_program: &Address,
/// ) -> ProgramResult {
/// let instructions_account = &accounts[0];
/// if has_instruction_before(instructions_account, suspect_program)? {
/// // Another instruction targeting `suspect_program` was already
/// // executed in this transaction before us.
/// return Err(ProgramError::InvalidInstructionData);
/// }
/// Ok(())
/// }
/// ```
/// Checks if any instruction after the current one targets the given program.
///
/// This is useful for detecting whether a specific program is scheduled to
/// execute later in the same transaction (e.g. to detect sandwich attacks or
/// ensure a repayment instruction follows a borrow).
///
/// # Arguments
///
/// * `instructions_account` - The Instructions sysvar account.
/// * `program_id` - The program ID to search for.
///
/// # Errors
///
/// Returns `ProgramError::UnsupportedSysvar` if the account address does not
/// match the Instructions sysvar ID.
///
/// Returns `ProgramError::InvalidInstructionData` if any instruction index
/// is out of bounds (should not happen for well-formed sysvar data).
///
/// # Example
///
/// ```ignore
/// use pina::introspection::has_instruction_after;
///
/// fn process(
/// accounts: &[AccountView],
/// repay_program: &Address,
/// ) -> ProgramResult {
/// let instructions_account = &accounts[0];
/// if !has_instruction_after(instructions_account, repay_program)? {
/// // No repayment instruction follows — reject the borrow.
/// return Err(ProgramError::InvalidInstructionData);
/// }
/// Ok(())
/// }
/// ```