forked from emilytouchingcomputers/CTFium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvmop.h
369 lines (331 loc) · 6.16 KB
/
vmop.h
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
// #include "global.h"
void op_add() {
val *temp = sp;
if (ax.type != sp->type) {
puts("ADD: Different types of operands");
exit(-1);
}
if (ax.type == INT) {
ax.data += temp->data;
}
sp++;
}
void op_sub() {
val *temp = sp;
if (ax.type != sp->type) {
puts("ADD: Different types of operands");
exit(-1);
}
if (ax.type == INT) {
ax.data = temp->data - ax.data;
}
sp++;
}
void op_mul() {
val *temp = sp;
if (ax.type != sp->type) {
puts("ADD: Different types of operands");
exit(-1);
}
if (ax.type == INT) {
ax.data = temp->data * ax.data;
}
sp++;
}
void op_div() {
val *temp = sp;
if (ax.type != sp->type) {
puts("ADD: Different types of operands");
exit(-1);
}
if (ax.type == INT) {
ax.data = temp->data / ax.data;
}
sp++;
}
void op_mod() {
val *temp = sp;
if (ax.type != sp->type) {
puts("ADD: Different types of operands");
exit(-1);
}
if (ax.type == INT) {
ax.data = temp->data % ax.data;
}
sp++;
}
void op_equal() {
val *temp = sp;
if (ax.type != sp->type) {
ax.type = INT;
ax.data = 0;
return;
}
if (ax.type == INT) {
ax.data = (temp->data == ax.data);
}
sp++;
}
void op_notequal() {
val *temp = sp;
if (ax.type != sp->type) {
ax.type = INT;
ax.data = 1;
return;
}
if (ax.type == INT) {
ax.data = (temp->data != ax.data);
}
sp++;
}
void op_or() {
val *temp = sp;
if (ax.type != sp->type) {
puts("OR: Different types of operands");
exit(-1);
}
if (ax.type == INT) {
ax.data = (temp->data | ax.data);
}
sp++;
}
void op_xor() {
val *temp = sp;
if (ax.type != sp->type) {
puts("OR: Different types of operands");
exit(-1);
}
if (ax.type == INT) {
ax.data = (temp->data ^ ax.data);
}
sp++;
}
void op_and() {
val *temp = sp;
if (ax.type != sp->type) {
puts("OR: Different types of operands");
exit(-1);
}
if (ax.type == INT) {
ax.data = (temp->data & ax.data);
}
sp++;
}
void op_lt() {
val *temp = sp;
if (ax.type != sp->type) {
puts("LT: Different types of operands");
exit(-1);
}
if (ax.type == INT) {
ax.data = (temp->data < ax.data);
}
sp++;
}
void op_le() {
val *temp = sp;
if (ax.type != sp->type) {
puts("LT: Different types of operands");
exit(-1);
}
if (ax.type == INT) {
ax.data = (temp->data <= ax.data);
}
sp++;
}
void op_gt() {
val *temp = sp;
if (ax.type != sp->type) {
puts("GT: Different types of operands");
exit(-1);
}
if (ax.type == INT) {
ax.data = (temp->data > ax.data);
}
sp++;
}
void op_ge() {
val *temp = sp;
if (ax.type != sp->type) {
puts("GT: Different types of operands");
exit(-1);
}
if (ax.type == INT) {
ax.data = (temp->data >= ax.data);
}
sp++;
}
void op_shl() {
val *temp = sp;
if (ax.type != sp->type) {
puts("SHL: Different types of operands");
exit(-1);
}
if (ax.type == INT) {
ax.data = (temp->data << ax.data);
}
sp++;
}
void op_shr() {
val *temp = sp;
if (ax.type != sp->type) {
puts("SHR: Different types of operands");
exit(-1);
}
if (ax.type == INT) {
ax.data = (temp->data >> ax.data);
}
sp++;
}
void op_getelem() {
val *id = sp;
if (id->type != PTR) {
puts("Invalid varible");
exit(-1);
}
if (ax.type != INT) {
puts("Invalid index");
exit(-1);
}
st *e = (st *)id->data;
long idx = ax.data;
if (e->value->type == STR) {
str *elem = (str *)e->value->data;
if (idx >= elem->size || idx < 0) {
puts("OOB Detected!");
exit(-1);
}
// printf("size = %d\n",elem->size );
ax.type = INT;
ax.data = (long)elem->data[idx];
sp++;
} else if (e->value->type == LIST) {
list *elem = (list *)e->value->data;
if (idx >= elem->size || idx < 0) {
puts("OOB Detected!");
exit(-1);
}
ax.type = elem->elements[idx]->type;
ax.data = (long)elem->elements[idx]->data;
sp++;
} else {
}
}
void op_setelem() {
/* a[i] = b
sp[0] = i
sp[1] = a
ax = b */
val *tmp = sp;
if (tmp->type != INT) {
puts("Invalid index");
exit(-1);
}
long idx = tmp->data;
sp++;
tmp = sp;
st *ptr = (st *)tmp->data;
val *v = (val *)ptr->value;
/* String */
if (v->type == STR) {
str *elem = (str *)v->data;
if (idx >= elem->size || idx < 0) {
puts("OOB Detected!");
exit(-1);
}
elem->data[idx] = (char)ax.data;
sp++;
}
/* List */
else if (v->type == LIST) {
list *elem = (list *)v->data;
if (idx >= elem->size || idx < 0) {
puts("OOB Detected!");
exit(-1);
}
elem->elements[idx]->type = ax.type;
elem->elements[idx]->data = ax.data;
sp++;
}
else
{
puts("Invalid array setter");
exit(-1);
}
}
void op_addelem()
{
val *lstval = sp;
if (lstval->type != LIST) {
puts("Invalid List assignment");
exit(-1);
}
list *lst = (list *)lstval->data;
if (lst->size == 0 && lst->capacity == 0) {
lst->elements = (val **)calloc(10 * sizeof(val *), 1);
lst->capacity = 10;
}
lst->size += 1;
if (lst->size >= lst->capacity) {
lst->elements =
(val **)realloc(lst->elements, (2 * lst->capacity * sizeof(val *)));
lst->capacity = lst->capacity * 2;
}
val *value = (val *)calloc(sizeof(val), 1);
value->type = ax.type;
value->data = ax.data;
lst->elements[lst->size - 1] = value;
sp++;
}
void op_push()
{
--sp;
val* tmp = sp;
tmp->type = ax.type;
tmp->data= ax.data;
}
void op_imm()
{
ax.type = (long)*pc++;
ax.data= (long)*pc++;
}
void op_get()
{
if (ax.type != PTR)
{
puts("ERROR: Invalid Access!");
exit(-1);
}
st* temp = (st*)ax.data;
ax.type = temp->value->type;
ax.data = temp->value->data;
}
void op_set()
{
val* temp = (val*)sp;
if (temp->type != PTR)
{
puts("ERROR: Invalid Access!");
exit(-1);
}
st* target = (st*)temp->data;
sp++;
target->value->type = ax.type;
target->value->data = ax.data;
}
void op_call()
{
func* callee = (func*)*pc++;
--cs_sp;
*cs_sp = (long)pc;
--cs_sp;
*cs_sp = (long)scope;
pc = (long*)callee->code;
}
void op_ret()
{
scope = (st**)*cs_sp;
++cs_sp;
pc = (long*)*cs_sp;
++cs_sp;
}