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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
//! Reflection and dynamic method operations for the managed heap.
//!
//! This module provides operations for ReflectionMethod, ReflectionType,
//! ReflectionField, ReflectionProperty, ReflectionParameter, DynamicMethod,
//! and ILGenerator objects on [`ManagedHeap`].
use std::sync::{Arc, Mutex};
use crate::{
assembly::InstructionAssembler,
emulation::{
engine::EmulationError,
memory::heap::{HeapObject, ManagedHeap, ReflectionPropertyInfo, TypeWrapper},
HeapRef,
},
metadata::{signatures::TypeSignature, token::Token},
Result,
};
impl ManagedHeap {
/// Allocates a reflection method info object on the heap.
///
/// Creates a `ReflectionMethod` object that stores the resolved method token.
/// Used by reflection stubs to track method resolution for later invocation.
///
/// # Arguments
///
/// * `method_token` - The token of the resolved method.
///
/// # Returns
///
/// A [`HeapRef`] pointing to the new reflection method object.
///
/// # Errors
///
/// Returns an error if the heap is out of memory.
pub fn alloc_reflection_method(&self, method_token: Token) -> Result<HeapRef> {
self.alloc_object_internal(
HeapObject::ReflectionMethod {
method_token,
method_type_args: None,
},
None,
)
}
/// Gets the method token from a reflection method object.
///
/// # Arguments
///
/// * `heap_ref` - Reference to the reflection method object.
///
/// # Returns
///
/// The method token if the reference points to a `ReflectionMethod`, or `None` otherwise.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn get_reflection_method_token(&self, heap_ref: HeapRef) -> Result<Option<Token>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&heap_ref.id()) {
Some(HeapObject::ReflectionMethod { method_token, .. }) => Some(*method_token),
_ => None,
})
}
/// Allocates a `ReflectionMethod` object with generic type arguments.
///
/// Used by `MethodInfo.MakeGenericMethod()` to create a closed generic method
/// reference that carries the type arguments for later dispatch.
pub fn alloc_reflection_method_generic(
&self,
method_token: Token,
type_args: Vec<Token>,
) -> Result<HeapRef> {
self.alloc_object_internal(
HeapObject::ReflectionMethod {
method_token,
method_type_args: Some(type_args),
},
None,
)
}
/// Gets the method-level generic type arguments from a reflection method object.
///
/// Returns `None` if the reference is not a `ReflectionMethod` or if the method
/// is not a closed generic instantiation.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn get_reflection_method_type_args(&self, heap_ref: HeapRef) -> Result<Option<Vec<Token>>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&heap_ref.id()) {
Some(HeapObject::ReflectionMethod {
method_type_args, ..
}) => method_type_args.clone(),
_ => None,
})
}
/// Allocates a reflection type object on the heap.
///
/// Creates a `ReflectionType` object that stores the actual metadata type token.
/// Used by `Type.GetTypeFromHandle()` to track which type was resolved, enabling
/// subsequent calls like `Type.GetFields()` to look up the type's fields.
///
/// When `wrapper` is provided (via `Type.MakeByRefType()`, `Type.MakeArrayType()`,
/// `Type.MakeGenericType()`), it takes precedence over type registry lookups for
/// boolean property checks like `IsByRef`, `IsArray`, `IsPointer`.
///
/// # Errors
///
/// Returns an error if the heap is out of memory.
pub fn alloc_reflection_type(
&self,
type_token: Token,
wrapper: Option<TypeWrapper>,
) -> Result<HeapRef> {
self.alloc_object_internal(
HeapObject::ReflectionType {
type_token,
wrapper,
},
None,
)
}
/// Gets the wrapper override from a reflection type object.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn get_reflection_type_wrapper(&self, heap_ref: HeapRef) -> Result<Option<TypeWrapper>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&heap_ref.id()) {
Some(HeapObject::ReflectionType { wrapper, .. }) => wrapper.clone(),
_ => None,
})
}
/// Gets the type token from a reflection type object.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn get_reflection_type_token(&self, heap_ref: HeapRef) -> Result<Option<Token>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&heap_ref.id()) {
Some(HeapObject::ReflectionType { type_token, .. }) => Some(*type_token),
_ => None,
})
}
/// Allocates a reflection field info object on the heap.
///
/// Creates a `ReflectionField` object that stores the field's metadata token and
/// declaring type token. Used by `FieldInfo.SetValue()` and `FieldInfo.GetValue()`
/// to determine which field to read/write.
///
/// # Arguments
///
/// * `field_token` - The FieldDef metadata token.
/// * `declaring_type_token` - The TypeDef token of the declaring type.
/// * `is_static` - Whether this is a static field.
///
/// # Errors
///
/// Returns an error if the heap is out of memory.
pub fn alloc_reflection_field(
&self,
field_token: Token,
declaring_type_token: Token,
is_static: bool,
) -> Result<HeapRef> {
self.alloc_object_internal(
HeapObject::ReflectionField {
field_token,
declaring_type_token,
is_static,
},
None,
)
}
/// Gets the field info from a reflection field object.
///
/// Returns `(field_token, declaring_type_token, is_static)` if the reference
/// points to a `ReflectionField`, or `None` otherwise.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn get_reflection_field_info(
&self,
heap_ref: HeapRef,
) -> Result<Option<(Token, Token, bool)>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&heap_ref.id()) {
Some(HeapObject::ReflectionField {
field_token,
declaring_type_token,
is_static,
}) => Some((*field_token, *declaring_type_token, *is_static)),
_ => None,
})
}
/// Allocates a reflection property info object on the heap.
///
/// Creates a `ReflectionProperty` object that stores the property name,
/// declaring type token, and optional getter/setter method tokens.
///
/// # Errors
///
/// Returns an error if the heap is out of memory.
pub fn alloc_reflection_property(
&self,
property_name: Arc<str>,
declaring_type_token: Token,
getter_token: Option<Token>,
setter_token: Option<Token>,
) -> Result<HeapRef> {
self.alloc_object_internal(
HeapObject::ReflectionProperty {
property_name,
declaring_type_token,
getter_token,
setter_token,
},
None,
)
}
/// Gets the property info from a reflection property object.
///
/// Returns `(property_name, declaring_type_token, getter_token, setter_token)`.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn get_reflection_property_info(
&self,
heap_ref: HeapRef,
) -> Result<Option<ReflectionPropertyInfo>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&heap_ref.id()) {
Some(HeapObject::ReflectionProperty {
property_name,
declaring_type_token,
getter_token,
setter_token,
}) => Some((
property_name.clone(),
*declaring_type_token,
*getter_token,
*setter_token,
)),
_ => None,
})
}
/// Allocates a reflection parameter info object on the heap.
///
/// Creates a `ReflectionParameter` object that stores the method token,
/// parameter position, and type signature.
///
/// # Errors
///
/// Returns an error if the heap is out of memory.
pub fn alloc_reflection_parameter(
&self,
method_token: Token,
position: u32,
parameter_type: TypeSignature,
) -> Result<HeapRef> {
self.alloc_object_internal(
HeapObject::ReflectionParameter {
method_token,
position,
parameter_type,
},
None,
)
}
/// Gets the parameter info from a reflection parameter object.
///
/// Returns `(method_token, position, parameter_type)`.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn get_reflection_parameter_info(
&self,
heap_ref: HeapRef,
) -> Result<Option<(Token, u32, TypeSignature)>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&heap_ref.id()) {
Some(HeapObject::ReflectionParameter {
method_token,
position,
parameter_type,
}) => Some((*method_token, *position, parameter_type.clone())),
_ => None,
})
}
/// Allocates a new `DynamicMethod` on the heap.
///
/// # Errors
///
/// Returns [`EmulationError::HeapMemoryLimitExceeded`] if heap is out of memory.
pub fn alloc_dynamic_method(&self) -> Result<HeapRef> {
self.alloc_object_internal(
HeapObject::DynamicMethod {
il_generator: None,
is_static: true,
param_types: Vec::new(),
return_type: None,
},
None,
)
}
/// Allocates a new `DynamicMethod` with explicit static flag and parameter types.
///
/// # Errors
///
/// Returns [`EmulationError::HeapMemoryLimitExceeded`] if heap is out of memory.
pub fn alloc_dynamic_method_with_params(
&self,
is_static: bool,
param_types: Vec<Token>,
) -> Result<HeapRef> {
self.alloc_object_internal(
HeapObject::DynamicMethod {
il_generator: None,
is_static,
param_types,
return_type: None,
},
None,
)
}
/// Allocates a new `ILGenerator` linked to the given `DynamicMethod`.
///
/// Creates an `InstructionAssembler` for accumulating IL instructions.
/// Also updates the DynamicMethod to reference this ILGenerator.
///
/// # Errors
///
/// Returns [`EmulationError::HeapMemoryLimitExceeded`] if heap is out of memory.
pub fn alloc_il_generator(&self, dynamic_method: HeapRef) -> Result<HeapRef> {
let il_ref = self.alloc_object_internal(
HeapObject::ILGenerator {
dynamic_method,
assembler: Arc::new(Mutex::new(InstructionAssembler::new())),
label_names: Box::new(boxcar::Vec::new()),
token_map: Box::new(boxcar::Vec::new()),
local_types: Box::new(boxcar::Vec::new()),
},
None,
)?;
// Link the ILGenerator back to the DynamicMethod
let mut state = self
.state
.write()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
if let Some(HeapObject::DynamicMethod { il_generator, .. }) =
state.objects.get_mut(&dynamic_method.id())
{
*il_generator = Some(il_ref);
}
Ok(il_ref)
}
/// Sets the parameter types on a `DynamicMethod` (called from `.ctor` hook).
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn set_dynamic_method_params(&self, dm_ref: HeapRef, params: Vec<Token>) -> Result<()> {
let mut state = self
.state
.write()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
if let Some(HeapObject::DynamicMethod { param_types, .. }) =
state.objects.get_mut(&dm_ref.id())
{
*param_types = params;
}
Ok(())
}
/// Sets the return type on a `DynamicMethod`.
pub fn set_dynamic_method_return_type(
&self,
dm_ref: HeapRef,
ret_type: Option<Token>,
) -> Result<()> {
let mut state = self
.state
.write()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
if let Some(HeapObject::DynamicMethod { return_type, .. }) =
state.objects.get_mut(&dm_ref.id())
{
*return_type = ret_type;
}
Ok(())
}
/// Gets the return type token from a `DynamicMethod`.
pub fn get_dynamic_method_return_type(&self, dm_ref: HeapRef) -> Result<Option<Token>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&dm_ref.id()) {
Some(HeapObject::DynamicMethod { return_type, .. }) => *return_type,
_ => None,
})
}
/// Gets the ILGenerator heap reference from a `DynamicMethod`.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn get_dynamic_method_il_generator(&self, dm_ref: HeapRef) -> Result<Option<HeapRef>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&dm_ref.id()) {
Some(HeapObject::DynamicMethod { il_generator, .. }) => *il_generator,
_ => None,
})
}
/// Gets the ILGenerator's `InstructionAssembler`.
///
/// Returns a cloned `Arc` so callers can work with the assembler without
/// holding the heap lock.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn get_il_generator_assembler(
&self,
il_ref: HeapRef,
) -> Result<Option<Arc<Mutex<InstructionAssembler>>>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&il_ref.id()) {
Some(HeapObject::ILGenerator { assembler, .. }) => Some(Arc::clone(assembler)),
_ => None,
})
}
/// Defines a new label in the ILGenerator's label registry.
///
/// Generates a unique label name and appends it. Returns the label ID (index)
/// and the generated label name.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn il_generator_define_label(&self, il_ref: HeapRef) -> Result<Option<(usize, String)>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&il_ref.id()) {
Some(HeapObject::ILGenerator { label_names, .. }) => {
let id = label_names.count();
let name = format!("_dyn_L{id}");
label_names.push(name.clone());
Some((id, name))
}
_ => None,
})
}
/// Gets a label name by index from the ILGenerator.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn il_generator_get_label(&self, il_ref: HeapRef, index: usize) -> Result<Option<String>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&il_ref.id()) {
Some(HeapObject::ILGenerator { label_names, .. }) => label_names.get(index).cloned(),
_ => None,
})
}
/// Appends a local variable type token to the ILGenerator.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn il_generator_push_local(
&self,
il_ref: HeapRef,
type_token: Token,
) -> Result<Option<usize>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&il_ref.id()) {
Some(HeapObject::ILGenerator { local_types, .. }) => Some(local_types.push(type_token)),
_ => None,
})
}
/// Collects all local variable type tokens from the ILGenerator.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn il_generator_get_locals(&self, il_ref: HeapRef) -> Result<Option<Vec<Token>>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&il_ref.id()) {
Some(HeapObject::ILGenerator { local_types, .. }) => {
Some(local_types.iter().map(|(_, t)| *t).collect())
}
_ => None,
})
}
/// Appends a token mapping to the ILGenerator.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn il_generator_push_token_map(
&self,
il_ref: HeapRef,
synthetic_id: u32,
real_token: Token,
) -> Result<Option<usize>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&il_ref.id()) {
Some(HeapObject::ILGenerator { token_map, .. }) => {
Some(token_map.push((synthetic_id, real_token)))
}
_ => None,
})
}
/// Gets the DynamicMethod's parameter types and static flag.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn get_dynamic_method_info(&self, dm_ref: HeapRef) -> Result<Option<(bool, Vec<Token>)>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&dm_ref.id()) {
Some(HeapObject::DynamicMethod {
is_static,
param_types,
..
}) => Some((*is_static, param_types.clone())),
_ => None,
})
}
/// Gets the owning DynamicMethod reference from an ILGenerator.
///
/// # Errors
///
/// Returns [`EmulationError::LockPoisoned`] if the internal `RwLock` is poisoned.
pub fn get_il_generator_owner(&self, il_ref: HeapRef) -> Result<Option<HeapRef>> {
let state = self
.state
.read()
.map_err(|_| EmulationError::LockPoisoned {
description: "managed heap",
})?;
Ok(match state.objects.get(&il_ref.id()) {
Some(HeapObject::ILGenerator { dynamic_method, .. }) => Some(*dynamic_method),
_ => None,
})
}
}