forked from scanmem/scanmem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtarget_memory_info_array.c
316 lines (253 loc) · 12.1 KB
/
target_memory_info_array.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
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
/*
target_memory_info_array.c
Copyright (C) 2009 Eli Dupree <elidupree(a)charter.net>
Copyright (C) 2010 WANG Lu <coolwanglu(a)gmail.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "config.h"
#include <string.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <ctype.h>
#include "target_memory_info_array.h"
#include "show_message.h"
matches_and_old_values_array * allocate_array (matches_and_old_values_array *array, unsigned long max_bytes)
{
/* Make enough space for the array header and a null first swath. */
unsigned long bytes_to_allocate = sizeof(matches_and_old_values_array) + sizeof(matches_and_old_values_swath);
if (!(array = realloc(array, bytes_to_allocate))) return NULL;
array->bytes_allocated = bytes_to_allocate;
array->max_needed_bytes = max_bytes;
return array;
}
matches_and_old_values_array * allocate_enough_to_reach(matches_and_old_values_array *array, void *last_byte_to_reach_plus_one, matches_and_old_values_swath **swath_pointer_to_correct)
{
unsigned long bytes_needed = (last_byte_to_reach_plus_one - (void *)array);
if (bytes_needed <= array->bytes_allocated) return array;
else
{
matches_and_old_values_array *original_location = array;
/* Allocate twice as much each time, so we don't have to do it too often */
unsigned long bytes_to_allocate = array->bytes_allocated;
while(bytes_to_allocate < bytes_needed)
bytes_to_allocate *= 2;
show_debug("to_allocate %ld, max %ld\n", bytes_to_allocate, array->max_needed_bytes);
/* Sometimes we know an absolute max that we will need */
if (array->max_needed_bytes < bytes_to_allocate)
{
assert(array->max_needed_bytes >= bytes_needed);
bytes_to_allocate = array->max_needed_bytes;
}
if (!(array = realloc(array, bytes_to_allocate))) return NULL;
array->bytes_allocated = bytes_to_allocate;
/* Put the swath pointer back where it should be, if needed. We cast everything to void pointers in this line to make sure the math works out. */
if (swath_pointer_to_correct) (*swath_pointer_to_correct) = (matches_and_old_values_swath *)(((void *)(*swath_pointer_to_correct)) + ((void *)array - (void *)original_location));
return array;
}
}
/* Returns a pointer to the swath to which the element was added - i.e. the last swath in the array after the operation */
matches_and_old_values_swath * add_element (matches_and_old_values_array **array, matches_and_old_values_swath *swath, void *remote_address, void *new_element )
{
if (swath->number_of_bytes == 0)
{
assert(swath->first_byte_in_child == NULL);
/* We have to overwrite this as a new swath */
*array = allocate_enough_to_reach(*array, (void *)swath + sizeof(matches_and_old_values_swath) + sizeof(old_value_and_match_info), &swath);
swath->first_byte_in_child = remote_address;
}
else
{
unsigned long local_index_excess = remote_address - remote_address_of_last_element(swath );
unsigned long local_address_excess = local_index_excess * sizeof(old_value_and_match_info);
if (local_address_excess >= sizeof(matches_and_old_values_swath) + sizeof(old_value_and_match_info))
{
/* It is most memory-efficient to start a new swath */
*array = allocate_enough_to_reach(*array, local_address_beyond_last_element(swath ) + sizeof(matches_and_old_values_swath) + sizeof(old_value_and_match_info), &swath);
swath = local_address_beyond_last_element(swath );
swath->first_byte_in_child = remote_address;
swath->number_of_bytes = 0;
}
else
{
/* It is most memory-efficient to write over the intervening space with null values */
*array = allocate_enough_to_reach(*array, local_address_beyond_last_element(swath ) + local_address_excess, &swath);
memset(local_address_beyond_last_element(swath), 0, local_address_excess);
swath->number_of_bytes += local_index_excess - 1;
}
}
/* Add me */
*(old_value_and_match_info *)(local_address_beyond_last_element(swath )) = *(old_value_and_match_info *)new_element;
++swath->number_of_bytes;
return swath;
}
matches_and_old_values_array * null_terminate (matches_and_old_values_array *array, matches_and_old_values_swath *swath )
{
unsigned long bytes_needed;
if (swath->number_of_bytes == 0)
{
assert(swath->first_byte_in_child == NULL);
}
else
{
swath = local_address_beyond_last_element(swath );
array = allocate_enough_to_reach(array, ((void *)swath) + sizeof(matches_and_old_values_swath), &swath);
swath->first_byte_in_child = NULL;
swath->number_of_bytes = 0;
}
bytes_needed = ((void *)swath + sizeof(matches_and_old_values_swath) - (void *)array);
if (bytes_needed < array->bytes_allocated)
{
/* Reduce array to its final size */
if (!(array = realloc(array, bytes_needed))) return NULL;
array->bytes_allocated = bytes_needed;
}
return array;
}
long index_of_last_element(matches_and_old_values_swath *swath )
{
return swath->number_of_bytes - 1;
}
value_t data_to_val_aux(matches_and_old_values_swath *swath, long index, long swath_length )
{
int i;
value_t val;
int max_bytes = swath_length - index;
memset(&val, 0x00, sizeof(val));
if (max_bytes > 8) max_bytes = 8;
if (max_bytes >= 8) val.flags.u64b = val.flags.s64b = val.flags.f64b = 1;
if (max_bytes >= 4) val.flags.u32b = val.flags.s32b = val.flags.f32b = 1;
if (max_bytes >= 2) val.flags.u16b = val.flags.s16b = 1;
if (max_bytes >= 1) val.flags.u8b = val.flags.s8b = 1;
for (i = 0; i < max_bytes; ++i)
{
uint8_t byte;
byte = ((matches_and_old_values_swath *)swath)->data[index + i].old_value;
*((uint8_t *)(&val.int64_value) + i) = byte;
}
return val;
}
value_t data_to_val(matches_and_old_values_swath *swath, long index )
{
return data_to_val_aux(swath, index, swath->number_of_bytes );
}
void data_to_printable_string(char *buf, int buf_length, matches_and_old_values_swath *swath, long index, int string_length)
{
long swath_length = swath->number_of_bytes - index;
/* TODO: what if length is too large ? */
long max_length = (swath_length >= string_length) ? string_length : swath_length;
int i;
for(i = 0; i < max_length; ++i)
{
uint8_t byte = ((matches_and_old_values_swath *)swath)->data[index+i].old_value;
buf[i] = isprint(byte) ? byte : '.';
}
buf[i] = 0; /* null-terminate */
}
void data_to_bytearray_text(char *buf, int buf_length, matches_and_old_values_swath *swath, long index, int bytearray_length)
{
long swath_length = swath->number_of_bytes - index;
/* TODO: what if length is too large ? */
long max_length = (swath_length >= bytearray_length) ? bytearray_length : swath_length;
int i;
int bytes_used = 0;
for(i = 0; i < max_length; ++i)
{
uint8_t byte = ((matches_and_old_values_swath *)swath)->data[index+i].old_value;
/* TODO: check error here */
snprintf(buf+bytes_used, buf_length-bytes_used, (i<max_length-1) ? "%02x " : "%02x", byte);
bytes_used += 3;
}
}
void * remote_address_of_nth_element(matches_and_old_values_swath *swath, long n )
{
return swath->first_byte_in_child + n;
}
void * remote_address_of_last_element(matches_and_old_values_swath *swath )
{
return (remote_address_of_nth_element(swath, index_of_last_element(swath ) ));
}
void * local_address_beyond_nth_element(matches_and_old_values_swath *swath, long n )
{
return &((matches_and_old_values_swath *)swath)->data[n + 1];
}
void * local_address_beyond_last_element(matches_and_old_values_swath *swath )
{
return (local_address_beyond_nth_element(swath, index_of_last_element(swath ) ));
}
match_location nth_match(matches_and_old_values_array *matches, unsigned n)
{
unsigned i = 0;
matches_and_old_values_swath *reading_swath_index = (matches_and_old_values_swath *)matches->swaths;
int reading_iterator = 0;
if (!matches) return (match_location){ NULL, 0 };
while (reading_swath_index->first_byte_in_child) {
/* Only actual matches are considered */
if (flags_to_max_width_in_bytes(reading_swath_index->data[reading_iterator].match_info) > 0)
{
if (i == n)
{
return (match_location){ reading_swath_index, reading_iterator };
}
++i;
}
/* Go on to the next one... */
++reading_iterator;
if (reading_iterator >= reading_swath_index->number_of_bytes)
{
reading_swath_index = local_address_beyond_last_element((matches_and_old_values_swath *)reading_swath_index );
reading_iterator = 0;
}
}
/* I guess this is not a valid match-id */
return (match_location){ NULL, 0 };
}
matches_and_old_values_array * delete_by_region(matches_and_old_values_array *matches, long *num_matches, region_t *which, bool invert)
{
matches_and_old_values_swath *reading_swath_index = (matches_and_old_values_swath *)matches->swaths;
matches_and_old_values_swath reading_swath = *reading_swath_index;
int reading_iterator = 0;
matches_and_old_values_swath *writing_swath_index = (matches_and_old_values_swath *)matches->swaths;
writing_swath_index->first_byte_in_child = NULL;
writing_swath_index->number_of_bytes = 0;
*num_matches = 0;
while (reading_swath.first_byte_in_child) {
void *address = reading_swath.first_byte_in_child + reading_iterator;
bool in_region = (address >= which->start && address < which->start + which->size);
if ((in_region && invert) || (!in_region && !invert))
{
match_flags flags = reading_swath_index->data[reading_iterator].match_info;
/* Still a candidate. Write data.
(We can get away with overwriting in the same array because it is guaranteed to take up the same number of bytes or fewer, and because we copied out the reading swath metadata already.)
(We can get away with assuming that the pointers will stay valid, because as we never add more data to the array than there was before, it will not reallocate.) */
writing_swath_index = add_element((matches_and_old_values_array **)(&matches), (matches_and_old_values_swath *)writing_swath_index, address, &reading_swath_index->data[reading_iterator] );
/* Actual matches are recorded */
if (flags_to_max_width_in_bytes(flags) > 0) ++(*num_matches);
}
/* Go on to the next one... */
++reading_iterator;
if (reading_iterator >= reading_swath.number_of_bytes)
{
assert(((matches_and_old_values_swath *)(&reading_swath_index->data[reading_swath.number_of_bytes]))->number_of_bytes >= 0);
reading_swath_index = (matches_and_old_values_swath *)(&reading_swath_index->data[reading_swath.number_of_bytes]);
reading_swath = *reading_swath_index;
reading_iterator = 0;
}
}
if (!(matches = null_terminate((matches_and_old_values_array *)matches, (matches_and_old_values_swath *)writing_swath_index )))
{
return NULL;
}
return matches;
}