-
Notifications
You must be signed in to change notification settings - Fork 66
/
util.c
102 lines (91 loc) · 2.43 KB
/
util.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
#include "util.h"
#include <setjmp.h>
#include <signal.h>
#include <stdlib.h>
#include <string.h>
bool strn_eq_const(const char * str, const char * cstr, size_t n) {
return n >= strlen(cstr) && !strncmp(str, cstr, n);
}
static jmp_buf sigsegv_handler_jmp_buf;
static void sigsegv_handler(UNUSED int sig) {
siglongjmp(sigsegv_handler_jmp_buf, 1);
}
bool safe_rw(uint64_t * addr, uint64_t * data, bool write) {
struct sigaction oldact;
struct sigaction act;
memset(&act, 0, sizeof(struct sigaction));
act.sa_handler = sigsegv_handler;
sigaction(SIGSEGV, &act, &oldact);
bool success = false;
if (sigsetjmp(sigsegv_handler_jmp_buf, 1) == 0) {
if (write) {
*addr = *data;
} else {
*data = *addr;
}
success = true;
}
sigaction(SIGSEGV, &oldact, &act);
return success;
}
struct array_full_t {
struct array_t parent;
int item_size;
int capacity;
void (* item_free)(void *);
void * data;
};
struct array_t * array_new(int item_size, void (* item_free)(void *)) {
struct array_full_t * full = malloc(sizeof(struct array_full_t));
if (!full) {
return NULL;
}
full->parent.count = 0;
full->item_size = item_size;
full->capacity = 0;
full->item_free = item_free;
full->data = NULL;
return &full->parent;
}
void * array_get(struct array_t * array, int index) {
struct array_full_t * full = (struct array_full_t *) array;
return full->data + index * full->item_size;
}
void * array_add(struct array_t * array) {
struct array_full_t * full = (struct array_full_t *) array;
if (full->parent.count >= full->capacity) {
int capacity = full->capacity > 0 ? 2 * full->capacity : 2;
void * data = realloc(full->data, capacity * full->item_size);
if (!data) {
return NULL;
}
full->capacity = capacity;
full->data = data;
}
return full->data + (full->parent.count++) * full->item_size;
}
bool array_shrink(struct array_t * array) {
struct array_full_t * full = (struct array_full_t *) array;
if (full->parent.count > full->capacity) {
void * data = realloc(full->data, full->parent.count * full->item_size);
if (!data) {
return false;
}
full->capacity = full->parent.count;
full->data = data;
}
return true;
}
void array_free(struct array_t * array) {
struct array_full_t * full = (struct array_full_t *) array;
if (full->data) {
if (full->item_free) {
int i = 0;
for (i = 0; i < full->parent.count; i++) {
full->item_free(full->data + i * full->item_size);
}
}
free(full->data);
}
free(full);
}