forked from beehive-lab/mambo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dispatcher.c
91 lines (78 loc) · 3.1 KB
/
dispatcher.c
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
/*
This file is part of MAMBO, a low-overhead dynamic binary modification tool:
https://github.com/beehive-lab/mambo
Copyright 2013-2016 Cosmin Gorgovan <cosmin at linux-geek dot org>
Copyright 2015-2017 Guillermo Callaghan <guillermocallaghan at hotmail dot com>
Copyright 2017-2020 The University of Manchester
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <stdio.h>
#include "dbm.h"
#include "scanner_common.h"
#ifdef __arm__
void dispatcher_aarch32(dbm_thread *thread_data, uint32_t source_index,
branch_type exit_type, uintptr_t target,
uintptr_t block_address);
#elif __aarch64__
void dispatcher_aarch64(dbm_thread *thread_data, uint32_t source_index,
branch_type exit_type, uintptr_t target,
uintptr_t block_address);
#endif
#ifdef DEBUG
#define debug(...) fprintf(stderr, __VA_ARGS__)
#else
#define debug(...)
#endif
void dispatcher(const uintptr_t target, const uint32_t source_index,
uintptr_t * const next_addr, dbm_thread * const thread_data) {
/* It's essential to copy exit_branch_type before calling lookup_or_scan
because when scanning a stub basic block the source block and its
meta-information get overwritten */
debug("Source block index: %d\n", source_index);
branch_type source_branch_type =
thread_data->code_cache_meta[source_index].exit_branch_type;
#ifdef DBM_TRACES
// Handle trace exits separately
if (source_index >= CODE_CACHE_SIZE) {
#ifdef __arm__
if (source_branch_type != tbb && source_branch_type != tbh)
#endif
return trace_dispatcher(target, next_addr, source_index, thread_data);
}
#endif
debug("Reached the dispatcher, target: 0x%" PRIxPTR ", ret: %p, src: %d thr: %p\n",
target, next_addr, source_index, thread_data);
thread_data->was_flushed = false;
#ifdef DEBUG
bool cached;
*next_addr = lookup_or_scan_with_cached(thread_data, target, &cached);
if (cached) {
debug("Found block from %d for 0x%" PRIxPTR " in cache at 0x%" PRIxPTR "\n",
source_index, target, *next_addr);
} else {
debug("Scanned at 0x%" PRIxPTR " for 0x%" PRIxPTR "\n", *next_addr, target);
}
#else
*next_addr = lookup_or_scan(thread_data, target);
#endif
// Bypass any linking
if (source_index == 0 || thread_data->was_flushed) {
return;
}
#ifdef __arm__
dispatcher_aarch32(thread_data, source_index, source_branch_type, target,
*next_addr);
#endif
#ifdef __aarch64__
dispatcher_aarch64(thread_data, source_index, source_branch_type, target,
*next_addr);
#endif
}