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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
//! Process handle management module
//!
//! Provides functions to obtain and manage process handles with proper lifecycle management.
//! Process handles are required for memory operations, thread manipulation, and other
//! low-level process interactions.
//!
//! # Important Notes
//! - Always close handles when done using them to prevent resource leaks
//! - Use RAII patterns (Process struct) for automatic cleanup
//! - Handle access rights determine what operations can be performed
//! - Higher privileges may be required for certain operations
use ;
/// Open a process handle with specified access rights
///
/// Retrieves a handle to an existing process object with the desired access permissions.
/// The handle can be used for various operations depending on the access rights granted.
///
/// # Arguments
/// * `pid` - The process ID to open
/// * `desired_access` - The access rights requested (e.g., PROCESS_ALL_ACCESS, PROCESS_VM_READ)
///
/// # Returns
/// * `Some(HANDLE)` - The process handle if successful
/// * `None` - If the operation failed (process not found, insufficient privileges, etc.)
///
/// # Common Access Rights
/// - `PROCESS_ALL_ACCESS` (0x1F0FFF): Full access to the process
/// - `PROCESS_VM_READ` (0x0010): Read memory from the process
/// - `PROCESS_VM_WRITE` (0x0020): Write memory to the process
/// - `PROCESS_VM_OPERATION` (0x0008): Perform memory operations (allocate, free, etc.)
/// - `PROCESS_QUERY_INFORMATION` (0x0400): Query process information
/// - `PROCESS_CREATE_THREAD` (0x0002): Create threads in the process
///
/// # Important
/// **You MUST call `close_handle(handle)` when done with the handle**
/// Failure to do so will cause resource leaks.
///
/// # Example
/// ```no_run
/// use win_auto_utils::snapshot::find_pid_by_name;
/// use win_auto_utils::handle::{open_process_handle, close_handle};
/// use windows::Win32::System::Threading::PROCESS_ALL_ACCESS;
///
/// if let Some(pid) = find_pid_by_name("notepad.exe") {
/// if let Some(handle) = open_process_handle(pid, PROCESS_ALL_ACCESS) {
/// // Use the handle for memory operations, etc.
/// // ...
///
/// // IMPORTANT: Close the handle when done
/// close_handle(handle);
/// }
/// }
/// ```
/// Open a process handle with read-only access
///
/// Convenience function that opens a process with minimal read permissions.
/// Suitable for reading memory and querying process information.
///
/// # Arguments
/// * `pid` - The process ID to open
///
/// # Returns
/// * `Some(HANDLE)` - The process handle if successful
/// * `None` - If the operation failed
///
/// # Example
/// ```no_run
/// use win_auto_utils::snapshot::find_pid_by_name;
/// use win_auto_utils::handle::{open_process_read_handle, close_handle};
///
/// if let Some(pid) = find_pid_by_name("notepad.exe") {
/// if let Some(handle) = open_process_read_handle(pid) {
/// // Read memory from the process
/// // ...
///
/// close_handle(handle);
/// }
/// }
/// ```
/// Open a process handle with read/write access
///
/// Convenience function that opens a process with read and write permissions.
/// Suitable for reading and writing memory.
///
/// # Arguments
/// * `pid` - The process ID to open
///
/// # Returns
/// * `Some(HANDLE)` - The process handle if successful
/// * `None` - If the operation failed
///
/// # Example
/// ```no_run
/// use win_auto_utils::snapshot::find_pid_by_name;
/// use win_auto_utils::handle::{open_process_rw_handle, close_handle};
///
/// if let Some(pid) = find_pid_by_name("notepad.exe") {
/// if let Some(handle) = open_process_rw_handle(pid) {
/// // Read and write memory
/// // ...
///
/// close_handle(handle);
/// }
/// }
/// ```
/// Open a process handle with full access
///
/// Convenience function that opens a process with all possible permissions.
/// This requires elevated privileges and should be used sparingly.
///
/// # Arguments
/// * `pid` - The process ID to open
///
/// # Returns
/// * `Some(HANDLE)` - The process handle if successful
/// * `None` - If the operation failed (often due to insufficient privileges)
///
/// # Note
/// This may fail for system processes or processes running with higher privileges.
/// Consider using more specific access rights when possible.
///
/// # Example
/// ```no_run
/// use win_auto_utils::snapshot::find_pid_by_name;
/// use win_auto_utils::handle::{open_process_full_handle, close_handle};
///
/// if let Some(pid) = find_pid_by_name("notepad.exe") {
/// if let Some(handle) = open_process_full_handle(pid) {
/// // Full access to the process
/// // ...
///
/// close_handle(handle);
/// }
/// }
/// ```
/// Close a process handle
///
/// Releases the handle and frees associated resources.
/// Always call this when you're done using a process handle.
///
/// # Arguments
/// * `handle` - The process handle to close
///
/// # Returns
/// `true` if successful, `false` otherwise
///
/// # Example
/// ```no_run
/// use win_auto_utils::handle::{open_process_read_handle, close_handle};
///
/// if let Some(handle) = open_process_read_handle(12345) {
/// // Use the handle...
/// close_handle(handle);
/// }
/// ```
/// Check if a process handle is valid
///
/// Verifies that the handle is not null or invalid.
///
/// # Arguments
/// * `handle` - The handle to check
///
/// # Returns
/// `true` if the handle appears valid, `false` otherwise