-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathasrepl.c
More file actions
371 lines (310 loc) · 9.39 KB
/
asrepl.c
File metadata and controls
371 lines (310 loc) · 9.39 KB
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
/*******************************************************************************
* BSD 3-Clause License
*
* Copyright (c) 2017, Matt Davis (enferex) https://github.com/enferex
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* * Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
******************************************************************************/
#include <assert.h>
#include <ctype.h>
#include <stdio.h>
#include <string.h>
#include <sys/ptrace.h>
#include <sys/user.h>
#include <sys/wait.h>
#include "asrepl.h"
#include "asrepl_types.h"
#include "assembler.h"
#include "engine.h"
#include "registers.h"
#include "config.h"
/* Declared in asrepl.h */
char *prompt = NULL;
/* Global instance (for mode information) */
static asrepl_t *global_asr;
#ifdef HAVE_LIBUNICORN
#include <unicorn/unicorn.h>
#endif
asrepl_t *asrepl_init(
isa_e isa_type,
assembler_e assembler_type,
engine_e engine_type)
{
asrepl_t *asr = calloc(1, sizeof(asrepl_t));
if (!asr)
ERF("Error allocating memory for the asrepl handle.");
asr->isa = isa_type;
asr->mode = MODE_NORMAL;
global_asr = asr;
/* Choose and initialize the assembler */
if (!(asr->assembler = assembler_init(asr, assembler_type)))
ERF("Error locating an assembler to use.");
if (!(asr->engine = engine_init(asr, engine_type)))
ERF("Error locating an engine to use.");
return asr;
}
ctx_t *asrepl_new_ctx(const char *asm_line)
{
ctx_t *ctx;
const size_t len = strnlen(asm_line, MAX_ASM_LINE);
if (len == 0)
return NULL;
if (len == MAX_ASM_LINE) {
ERR("Input line is too long.");
return NULL;
}
if (!(ctx = calloc(1, sizeof(ctx_t))))
ERF("Error allocating a new context.");
if (!(ctx->asm_line = strdup(asm_line)))
ERF("Error allocating a context description.");
return ctx;
}
void asrepl_delete_ctx(ctx_t *ctx)
{
if (!ctx)
return;
free(ctx->text);
}
void asrepl_version(void)
{
PRINT("%s v%d.%d, (c)%d", NAME, MAJOR, MINOR, YEAR);
}
void asrepl_update_prompt(const char *new_prompt)
{
if (strnlen(new_prompt, MAX_PROMPT_LENGTH) >= MAX_PROMPT_LENGTH)
return;
free(prompt);
prompt = strndup(new_prompt, MAX_PROMPT_LENGTH);
}
void asrepl_get_registers(pid_t pid, struct user_regs_struct *gpregs)
{
memset(gpregs, 0, sizeof(*gpregs));
ptrace(PTRACE_GETREGS, pid, NULL, gpregs);
}
uintptr_t asrepl_get_pc(pid_t pid)
{
struct user_regs_struct gpregs;
asrepl_get_registers(pid, &gpregs);
return gpregs.rip;
}
void asrepl_read_registers(asrepl_t *asr)
{
assert(asr);
engine_read_registers(asr->engine);
}
void asrepl_dump_registers(asrepl_t *asr)
{
assert(asr);
#ifdef HAVE_LIBNCURSES
if (asr->mode & MODE_TUI)
tui_reset(TUI_WIN_REG);
#endif
engine_dump_registers(asr->engine);
}
/* Call the assembler to assemble this */
_Bool asrepl_assemble(asrepl_t *asr, const char *line, ctx_t *ctx)
{
assert(asr);
return assembler_assemble(asr->assembler, line, ctx);
}
/* Execute some ctx data. */
void asrepl_execute(asrepl_t *asr, const ctx_t *ctx)
{
assert(asr);
if (ctx->text == NULL)
return;
// need to engine_update & engine_execute
/*if (!engine_update(asr->engine, ctx->text, ctx->length)){
ERR("Failed to update engine execution context");
return;
}*/
engine_execute(asr->engine, ctx);
}
static macro_t *macro_new(const char *name)
{
macro_t *macro;
if (strnlen(name, MAX_MACRO_NAME) >= MAX_MACRO_NAME) {
ERR("Macro name is too long.");
return NULL;
}
if (!(macro = calloc(1, sizeof(macro_t))))
ERF("Error allocating memory to store a macro.");
if (!(macro->name = strdup(name)))
ERF("Error allocting memory to store the macro name.");
return macro;
}
static void macro_delete(macro_t *macro)
{
macro_t *m = macro;
while (m) {
ctx_t *c = m->ctxs;
while (c) {
ctx_t *cnext = c->next;
asrepl_delete_ctx(c);
c = cnext;
}
macro_t *mnext = m->next;
free(m->name);
free(m);
m = mnext;
}
}
/* TODO: Hash */
macro_t *asrepl_macro_find(asrepl_t *asr, const char *name)
{
for (macro_t *macro=asr->macros; macro; macro=macro->next)
if (strncmp(macro->name, name, MAX_MACRO_NAME) == 0)
return macro;
return NULL;
}
/* This is and should be called by a context that has already verified 'name' is
* not larger than MAX_MACRO_NAME.
*/
static void trim_name(const char *name, char *result)
{
size_t len = strlen(name);
/* Trim leading whitespace */
while (name[0] && isspace(name[0]))
++name;
if (name[0] == '\0') {
ERR("Invalid macro name.");
return;
}
/* Copy the original name (now without leading whitespace) to what the
* result will be (for mutation) */
memcpy(result, name, len);
result[len] = '\0';
/* Trim trailing whitespace */
for (int i=len-1; i>0; --i)
if (isspace(result[i]))
result[i] = '\0';
else
break;
}
/* Create/Terminate/Populate a macro.
* There is only one macro being built at a time, so add/terminate
* operate on that.
*/
void asrepl_macro_begin(asrepl_t *asr, const char *name)
{
macro_t *macro;
char mname[MAX_MACRO_NAME + 1];
char new_prompt[MAX_PROMPT_LENGTH];
assert(asr);
if (asr->active_macro) {
ERR("/end previous macro before defining a new one.");
return;
}
if (strnlen(name, MAX_MACRO_NAME) >= MAX_MACRO_NAME) {
ERR("Macro name is too long... be concise please.");
return;
}
/* Put name into a mutable buffer */
trim_name(name, mname);
if (mname[0] == '\0') {
ERR("Invalid macro name.");
return;
}
/* If macro already exists, clean it up and overwrite it. */
if ((macro = asrepl_macro_find(asr, mname)))
macro_delete(macro);
if (!(macro = macro_new(mname)))
ERF("Error creating a macro.");
/* Update the prompt */
if (strlen(mname) + 2 < MAX_PROMPT_LENGTH) {
snprintf(new_prompt, MAX_PROMPT_LENGTH, "%s%s ", mname, PROMPTC);
asrepl_update_prompt(new_prompt);
}
else {
snprintf(new_prompt, MAX_PROMPT_LENGTH, "macro%s ", PROMPTC);
asrepl_update_prompt(new_prompt);
}
macro->next = asr->macros;
asr->macros = macro;
asr->mode |= MODE_MACRO;
asr->active_macro = macro;
}
void asrepl_macro_end(asrepl_t *asr)
{
assert(asr);
asr->active_macro = NULL;
asr->mode = MODE_NORMAL;
/* Update the prompt */
asrepl_update_prompt(DEFAULT_PROMPT);
asr->mode &= ~MODE_MACRO;
}
void asrepl_macro_add_ctx(asrepl_t *asr, ctx_t *ctx)
{
assert(asr && ctx && asr->active_macro);
if (!asr->active_macro->tail) {
asr->active_macro->ctxs = ctx;
asr->active_macro->tail = ctx;
}
else {
asr->active_macro->tail->next = ctx;
asr->active_macro->tail = ctx;
}
}
void asrepl_macro_execute(asrepl_t *asr, const char *name)
{
ctx_t *ctx;
macro_t *macro;
char trimmed[MAX_MACRO_NAME + 1];
trim_name(name, trimmed);
if (!(macro = asrepl_macro_find(asr, trimmed))) {
ERR("Could not locate macro: %s%s", MACRO_PREFIX, trimmed);
return;
}
/* Execute each context in the macro */
for (ctx=macro->ctxs; ctx; ctx=ctx->next)
asrepl_execute(asr, ctx);
}
isa_e isa_from_string(const char *isa_str)
{
for (int i=0; i<sizeof(isa_names)/sizeof(isa_names[0]); ++i)
if (isa_names[i] &&
strncmp(isa_names[i], isa_str, strlen(isa_names[i])) == 0)
return (isa_e)i;
return ISA_UNKNOWN;
}
/* Return a static buffer of all ISA names (for the command line -h help) */
const char* isa_all_names(void)
{
static char buffer[256] = {0};
for (int i=0; i<sizeof(isa_names)/sizeof(isa_names[0]); ++i) {
if (isa_names[i]) {
strcat(buffer, isa_names[i]);
strcat(buffer, " ");
}
}
return buffer;
}
mode_e asrepl_mode(void)
{
return (global_asr) ? global_asr->mode : MODE_NORMAL;
}