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
use std::io;
use std::collections::hash_map::{HashMap, Entry};
use std::collections::BTreeMap;
use std::sync::{Arc, RwLock, RwLockWriteGuard};
use std::mem;
use crate::{DynamicLabel, AssemblyOffset, DynasmError, LabelKind, DynasmLabelApi};
use crate::mmap::{ExecutableBuffer, MutableBuffer};
use crate::relocations::{Relocation, RelocationKind, RelocationSize, ImpossibleRelocation};
#[derive(Debug)]
pub struct MemoryManager {
execbuffer: Arc<RwLock<ExecutableBuffer>>,
execbuffer_size: usize,
asmoffset: usize,
execbuffer_addr: usize
}
impl MemoryManager {
pub fn new(initial_mmap_size: usize) -> io::Result<Self> {
let execbuffer = ExecutableBuffer::new(initial_mmap_size)?;
let execbuffer_addr = execbuffer.as_ptr() as usize;
Ok(MemoryManager {
execbuffer: Arc::new(RwLock::new(execbuffer)),
execbuffer_size: initial_mmap_size,
asmoffset: 0,
execbuffer_addr
})
}
pub fn committed(&self) -> usize {
self.asmoffset
}
pub fn execbuffer_addr(&self) -> usize {
self.execbuffer_addr
}
pub fn commit<F>(&mut self, new: &mut Vec<u8>, f: F) where F: FnOnce(&mut [u8], usize, usize) {
let old_asmoffset = self.asmoffset;
let new_asmoffset = self.asmoffset + new.len();
if old_asmoffset >= new_asmoffset {
return;
}
if new_asmoffset > self.execbuffer_size {
while self.execbuffer_size <= new_asmoffset {
self.execbuffer_size *= 2;
}
let mut new_buffer = MutableBuffer::new(self.execbuffer_size).expect("Could not allocate a larger buffer");
new_buffer.set_len(new_asmoffset);
new_buffer[.. old_asmoffset].copy_from_slice(&self.execbuffer.read().unwrap());
new_buffer[old_asmoffset..].copy_from_slice(&new);
let new_buffer_addr = new_buffer.as_ptr() as usize;
f(&mut new_buffer, self.execbuffer_addr, new_buffer_addr);
self.execbuffer_addr = new_buffer_addr;
*self.execbuffer.write().unwrap() = new_buffer.make_exec().expect("Could not swap buffer protection modes")
} else {
let mut lock = self.write();
let buffer = mem::replace(&mut *lock, ExecutableBuffer::default());
let mut buffer = buffer.make_mut().expect("Could not swap buffer protection modes");
buffer.set_len(new_asmoffset);
buffer[old_asmoffset..].copy_from_slice(&new);
let buffer = buffer.make_exec().expect("Could not swap buffer protection modes");
*lock = buffer;
}
new.clear();
self.asmoffset = new_asmoffset;
}
pub fn write(&self) -> RwLockWriteGuard<ExecutableBuffer> {
self.execbuffer.write().unwrap()
}
pub fn finalize(self) -> Result<ExecutableBuffer, Self> {
match Arc::try_unwrap(self.execbuffer) {
Ok(execbuffer) => Ok(execbuffer.into_inner().unwrap()),
Err(arc) => Err(Self {
execbuffer: arc,
..self
})
}
}
pub fn reader(&self) -> Arc<RwLock<ExecutableBuffer>> {
self.execbuffer.clone()
}
}
#[derive(Debug, Clone, Default)]
pub struct LabelRegistry {
global_labels: HashMap<&'static str, AssemblyOffset>,
local_labels: HashMap<&'static str, AssemblyOffset>,
dynamic_labels: Vec<Option<AssemblyOffset>>,
}
impl LabelRegistry {
pub fn new() -> LabelRegistry {
LabelRegistry {
global_labels: HashMap::new(),
local_labels: HashMap::new(),
dynamic_labels: Vec::new(),
}
}
pub fn new_dynamic_label(&mut self) -> DynamicLabel {
let id = self.dynamic_labels.len();
self.dynamic_labels.push(None);
DynamicLabel(id)
}
pub fn define_dynamic(&mut self, id: DynamicLabel, offset: AssemblyOffset) -> Result<(), DynasmError> {
let entry = &mut self.dynamic_labels[id.0];
if entry.is_some() {
return Err(DynasmError::DuplicateLabel(LabelKind::Dynamic(id)));
}
*entry = Some(offset);
Ok(())
}
pub fn define_global(&mut self, name: &'static str, offset: AssemblyOffset) -> Result<(), DynasmError> {
match self.global_labels.entry(name) {
Entry::Occupied(_) => Err(DynasmError::DuplicateLabel(LabelKind::Global(name))),
Entry::Vacant(v) => {
v.insert(offset);
Ok(())
}
}
}
pub fn define_local(&mut self, name: &'static str, offset: AssemblyOffset) {
self.local_labels.insert(name, offset);
}
pub fn resolve_dynamic(&self, id: DynamicLabel) -> Result<AssemblyOffset, DynasmError> {
self.dynamic_labels.get(id.0).and_then(|&e| e).ok_or_else(|| DynasmError::UnknownLabel(LabelKind::Dynamic(id)))
}
pub fn resolve_global(&self, name: &'static str) -> Result<AssemblyOffset, DynasmError> {
self.global_labels.get(&name).cloned().ok_or_else(|| DynasmError::UnknownLabel(LabelKind::Global(name)))
}
pub fn resolve_local(&self, name: &'static str) -> Result<AssemblyOffset, DynasmError> {
self.local_labels.get(&name).cloned().ok_or_else(|| DynasmError::UnknownLabel(LabelKind::Local(name)))
}
}
#[derive(Clone, Debug)]
pub struct PatchLoc<R: Relocation> {
pub location: AssemblyOffset,
pub field_offset: u8,
pub ref_offset: u8,
pub relocation: R,
pub target_offset: isize,
}
impl<R: Relocation> PatchLoc<R> {
pub fn new(location: AssemblyOffset, target_offset: isize, field_offset: u8, ref_offset: u8, relocation: R) -> PatchLoc<R> {
PatchLoc {
location,
field_offset,
ref_offset,
relocation,
target_offset
}
}
pub fn range(&self, buf_offset: usize) -> std::ops::Range<usize> {
let field_offset = self.location.0 - buf_offset - self.field_offset as usize;
field_offset .. field_offset + self.relocation.size()
}
pub fn value(&self, target: usize, buf_addr: usize) -> isize {
(match self.relocation.kind() {
RelocationKind::Relative => target.wrapping_sub(self.location.0 - self.ref_offset as usize),
RelocationKind::RelToAbs => target.wrapping_sub(self.location.0 - self.ref_offset as usize + buf_addr),
RelocationKind::AbsToRel => target + buf_addr
}) as isize + self.target_offset
}
pub fn patch(&self, buffer: &mut [u8], buf_addr: usize, target: usize) -> Result<(), ImpossibleRelocation> {
let value = self.value(target, buf_addr);
self.relocation.write_value(buffer, value)
}
pub fn adjust(&self, buffer: &mut [u8], adjustment: isize) -> Result<(), ImpossibleRelocation> {
let value = self.relocation.read_value(buffer);
let value = match self.relocation.kind() {
RelocationKind::Relative => value,
RelocationKind::RelToAbs => value.wrapping_sub(adjustment),
RelocationKind::AbsToRel => value.wrapping_add(adjustment),
};
self.relocation.write_value(buffer, value)
}
pub fn needs_adjustment(&self) -> bool {
match self.relocation.kind() {
RelocationKind::Relative => false,
RelocationKind::RelToAbs
| RelocationKind::AbsToRel => true,
}
}
}
#[derive(Debug, Default)]
pub struct RelocRegistry<R: Relocation> {
global: Vec<(PatchLoc<R>, &'static str)>,
dynamic: Vec<(PatchLoc<R>, DynamicLabel)>,
local: HashMap<&'static str, Vec<PatchLoc<R>>>
}
impl<R: Relocation> RelocRegistry<R> {
pub fn new() -> RelocRegistry<R> {
RelocRegistry {
global: Vec::new(),
dynamic: Vec::new(),
local: HashMap::new()
}
}
pub fn add_global(&mut self, name: &'static str, patchloc: PatchLoc<R>) {
self.global.push((patchloc, name));
}
pub fn add_dynamic(&mut self, id: DynamicLabel, patchloc: PatchLoc<R>) {
self.dynamic.push((patchloc, id))
}
pub fn add_local(&mut self, name: &'static str, patchloc: PatchLoc<R>) {
match self.local.entry(name) {
Entry::Occupied(mut o) => o.get_mut().push(patchloc),
Entry::Vacant(v) => {
v.insert(vec![patchloc]);
}
}
}
pub fn take_locals_named<'a>(&'a mut self, name: &'static str) -> impl Iterator<Item=PatchLoc<R>> + 'a {
self.local.get_mut(&name).into_iter().flat_map(|v| v.drain(..))
}
pub fn take_globals<'a>(&'a mut self) -> impl Iterator<Item=(PatchLoc<R>, &'static str)> + 'a {
self.global.drain(..)
}
pub fn take_dynamics<'a>(&'a mut self) -> impl Iterator<Item=(PatchLoc<R>, DynamicLabel)> + 'a {
self.dynamic.drain(..)
}
pub fn take_locals<'a>(&'a mut self) -> impl Iterator<Item=(PatchLoc<R>, &'static str)> + 'a {
self.local.iter_mut().flat_map(|(&k, v)| v.drain(..).map(move |p| (p, k)))
}
}
#[derive(Debug, Default)]
pub struct ManagedRelocs<R: Relocation> {
managed: BTreeMap<usize, PatchLoc<R>>
}
impl<R: Relocation> ManagedRelocs<R> {
pub fn new() -> Self {
Self {
managed: BTreeMap::new()
}
}
pub fn add(&mut self, patchloc: PatchLoc<R>) {
self.managed.insert(patchloc.location.0 - patchloc.field_offset as usize, patchloc);
}
pub fn append(&mut self, other: &mut ManagedRelocs<R>) {
self.managed.append(&mut other.managed);
}
pub fn remove_between(&mut self, start: usize, end: usize) {
if start == end {
return;
}
let keys: Vec<_> = self.managed.range(start .. end).map(|(&k, _)| k).collect();
for k in keys {
self.managed.remove(&k);
}
}
pub fn iter<'a>(&'a self) -> impl Iterator<Item=&'a PatchLoc<R>> + 'a {
self.managed.values()
}
}
#[derive(Clone, Debug)]
enum LitPoolEntry {
U8(u8),
U16(u16),
U32(u32),
U64(u64),
Dynamic(RelocationSize, DynamicLabel),
Global(RelocationSize, &'static str),
Forward(RelocationSize, &'static str),
Backward(RelocationSize, &'static str),
Align(u8, usize),
}
#[derive(Clone, Debug, Default)]
pub struct LitPool {
offset: usize,
entries: Vec<LitPoolEntry>,
}
impl LitPool {
pub fn new() -> Self {
LitPool {
offset: 0,
entries: Vec::new(),
}
}
fn bump_offset(&mut self, size: RelocationSize) -> isize {
self.align(size as usize, 0);
let offset = self.offset;
self.offset += size as usize;
offset as isize
}
pub fn align(&mut self, size: usize, with: u8) {
let misalign = self.offset % (size as usize);
if misalign == 0 {
return;
}
self.entries.push(LitPoolEntry::Align(with, size));
self.offset += size as usize - misalign;
}
pub fn push_u8(&mut self, value: u8) -> isize {
let offset = self.bump_offset(RelocationSize::Byte);
self.entries.push(LitPoolEntry::U8(value));
offset
}
pub fn push_u16(&mut self, value: u16) -> isize {
let offset = self.bump_offset(RelocationSize::Word);
self.entries.push(LitPoolEntry::U16(value));
offset
}
pub fn push_u32(&mut self, value: u32) -> isize {
let offset = self.bump_offset(RelocationSize::DWord);
self.entries.push(LitPoolEntry::U32(value));
offset
}
pub fn push_u64(&mut self, value: u64) -> isize {
let offset = self.bump_offset(RelocationSize::QWord);
self.entries.push(LitPoolEntry::U64(value));
offset
}
pub fn push_dynamic(&mut self, id: DynamicLabel, size: RelocationSize) -> isize {
let offset = self.bump_offset(size);
self.entries.push(LitPoolEntry::Dynamic(size, id));
offset
}
pub fn push_global(&mut self, name: &'static str, size: RelocationSize) -> isize {
let offset = self.bump_offset(size);
self.entries.push(LitPoolEntry::Global(size, name));
offset
}
pub fn push_forward(&mut self, name: &'static str, size: RelocationSize) -> isize {
let offset = self.bump_offset(size);
self.entries.push(LitPoolEntry::Forward(size, name));
offset
}
pub fn push_backward(&mut self, name: &'static str, size: RelocationSize) -> isize {
let offset = self.bump_offset(size);
self.entries.push(LitPoolEntry::Backward(size, name));
offset
}
fn pad_sized<D: DynasmLabelApi>(size: RelocationSize, assembler: &mut D) {
match size {
RelocationSize::Byte => assembler.push(0),
RelocationSize::Word => assembler.push_u16(0),
RelocationSize::DWord => assembler.push_u32(0),
RelocationSize::QWord => assembler.push_u64(0),
}
}
pub fn emit<D: DynasmLabelApi>(self, assembler: &mut D) {
for entry in self.entries {
match entry {
LitPoolEntry::U8(value) => assembler.push(value),
LitPoolEntry::U16(value) => assembler.push_u16(value),
LitPoolEntry::U32(value) => assembler.push_u32(value),
LitPoolEntry::U64(value) => assembler.push_u64(value),
LitPoolEntry::Dynamic(size, id) => {
Self::pad_sized(size, assembler);
assembler.dynamic_relocation(id, 0, size as u8, size as u8, D::Relocation::from_size(size));
},
LitPoolEntry::Global(size, name) => {
Self::pad_sized(size, assembler);
assembler.global_relocation(name, 0, size as u8, size as u8, D::Relocation::from_size(size));
},
LitPoolEntry::Forward(size, name) => {
Self::pad_sized(size, assembler);
assembler.forward_relocation(name, 0, size as u8, size as u8, D::Relocation::from_size(size));
},
LitPoolEntry::Backward(size, name) => {
Self::pad_sized(size, assembler);
assembler.backward_relocation(name, 0, size as u8, size as u8, D::Relocation::from_size(size));
},
LitPoolEntry::Align(with, alignment) => assembler.align(alignment, with),
}
}
}
}
#[cfg(test)]
mod tests {
use crate::*;
use std::fmt::Debug;
use relocations::{Relocation, RelocationSize};
#[test]
fn test_litpool_size() {
test_litpool::<RelocationSize>();
}
#[test]
fn test_litpool_x64() {
test_litpool::<x64::X64Relocation>();
}
#[test]
fn test_litpool_x86() {
test_litpool::<x86::X86Relocation>();
}
#[test]
fn test_litpool_aarch64() {
test_litpool::<aarch64::Aarch64Relocation>();
}
fn test_litpool<R: Relocation + Debug>() {
let mut ops = Assembler::<R>::new().unwrap();
let dynamic1 = ops.new_dynamic_label();
let mut pool = components::LitPool::new();
ops.local_label("backward1");
assert_eq!(pool.push_u8(0x12), 0);
assert_eq!(pool.push_u8(0x34), 1);
assert_eq!(pool.push_u8(0x56), 2);
assert_eq!(pool.push_u16(0x789A), 4);
assert_eq!(pool.push_u32(0xBCDE_F012), 8);
assert_eq!(pool.push_u64(0x3456_789A_BCDE_F012), 16);
assert_eq!(pool.push_forward("forward1", RelocationSize::Byte), 24);
pool.align(4, 0xCC);
assert_eq!(pool.push_global("global1", RelocationSize::Word), 28);
assert_eq!(pool.push_dynamic(dynamic1, RelocationSize::DWord), 32);
assert_eq!(pool.push_backward("backward1", RelocationSize::QWord), 40);
pool.emit(&mut ops);
assert_eq!(ops.offset().0, 48);
ops.local_label("forward1");
ops.global_label("global1");
ops.dynamic_label(dynamic1);
assert_eq!(ops.commit(), Ok(()));
let buf = ops.finalize().unwrap();
assert_eq!(&*buf, &[
0x12, 0x34, 0x56, 0x00, 0x9A, 0x78, 0x00, 0x00,
0x12, 0xF0, 0xDE, 0xBC, 0x00, 0x00, 0x00, 0x00,
0x12, 0xF0, 0xDE, 0xBC, 0x9A, 0x78, 0x56, 0x34,
24 , 0xCC, 0xCC, 0xCC, 20 , 0 , 0x00, 0x00,
16 , 0 , 0 , 0 , 0x00, 0x00, 0x00, 0x00,
0xD8, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFFu8,
] as &[u8]);
}
}