-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbfboot.c
190 lines (174 loc) · 5.33 KB
/
bfboot.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
/** BFBoot is a full brainfuck to bootable OS converter **/
/* it depends on nasm */
#include <stdio.h>
#include <stdlib.h>
#define MAX_STACK_SIZE (65536 * 8)
FILE *src;
FILE *dest;
void transpile(int op, int count) {
switch (op) {
case '+':
if (count > 1)
fprintf(dest, "add byte [ebx], %d\n", count);
else
fprintf(dest, "inc byte [ebx]\n");
break;
case '-':
if (count > 1)
fprintf(dest, "sub byte [ebx], %d\n", count);
else
fprintf(dest, "dec byte [ebx]\n");
break;
case '<':
if (count > 1)
fprintf(dest, "sub ebx, %d\n", count);
else
fprintf(dest, "dec ebx\n");
break;
case '>':
if (count > 1)
fprintf(dest, "add ebx, %d\n", count);
else
fprintf(dest, "inc ebx\n");
break;
default:
break;
}
}
void usage(char *exec_name) {
fprintf(stderr,
"Usage: %s <source> <output>\n", exec_name
);
return;
}
int main(int argc, char **argv) {
char tmpcmd[2048];
if (argc < 2) {
fprintf(stderr, "BFBoot: no source file.\n");
usage(argv[0]);
return EXIT_FAILURE;
}
if (argc < 3) {
fprintf(stderr, "BFBoot: no output filename.\n");
usage(argv[0]);
return EXIT_FAILURE;
}
if (!(src = fopen(argv[1], "r"))) {
fprintf(stderr, "BFBoot: Failed to open %s.\n", argv[1]);
return EXIT_FAILURE;
}
if (!(dest = fopen("bfboot.tmp", "w"))) {
fprintf(stderr, "BFBoot: Failed to open bfboot.tmp.\n");
fclose(src);
return EXIT_FAILURE;
}
int cur_label = 0;
int *label_stack = malloc(MAX_STACK_SIZE);
if (!label_stack) {
fprintf(stderr, "BFBoot: malloc fail.\n");
fclose(src);
fclose(dest);
return EXIT_FAILURE;
}
int label_sp = 0;
int last_operand = 0;
int operand_count = 0;
fprintf(dest,
"org 0x100000\n"
"bits 32\n"
);
/* get operands and repeat count */
for (;;) {
switch (fgetc(src)) {
case EOF:
fprintf(dest, "jmp $\n");
fclose(src);
fclose(dest);
free(label_stack);
if (system("nasm bfboot.tmp -f bin -o bfboot.tmp.bin")) {
fprintf(stderr, "BFBoot: nasm call error.\n");
return EXIT_FAILURE;
}
sprintf(tmpcmd, "nasm loader.asm -f bin -o %s", argv[2]);
if (system(tmpcmd)) {
fprintf(stderr, "BFBoot: nasm call error.\n");
return EXIT_FAILURE;
}
return 0;
case '+':
if (last_operand != '+') {
transpile(last_operand, operand_count);
operand_count = 1;
last_operand = '+';
} else {
operand_count++;
}
break;
case '-':
if (last_operand != '-') {
transpile(last_operand, operand_count);
operand_count = 1;
last_operand = '-';
} else {
operand_count++;
}
break;
case '>':
if (last_operand != '>') {
transpile(last_operand, operand_count);
operand_count = 1;
last_operand = '>';
} else {
operand_count++;
}
break;
case '<':
if (last_operand != '<') {
transpile(last_operand, operand_count);
operand_count = 1;
last_operand = '<';
} else {
operand_count++;
}
break;
case '.':
transpile(last_operand, operand_count);
last_operand = 0;
fprintf(dest,
"mov al, byte [ebx]\n"
"call ecx\n"
);
break;
case ',':
transpile(last_operand, operand_count);
last_operand = 0;
fprintf(dest,
"call edx\n"
"mov byte [ebx], al\n"
);
break;
case '[':
transpile(last_operand, operand_count);
last_operand = 0;
fprintf(dest, "label%d:\n", cur_label);
fprintf(dest,
"cmp byte [ebx], 0\n"
"je label%d_out\n", cur_label
);
label_stack[label_sp++] = cur_label++;
break;
case ']':
transpile(last_operand, operand_count);
last_operand = 0;
fprintf(dest,
"cmp byte [ebx], 0\n"
"jne label%d\n", label_stack[label_sp-1]
);
fprintf(dest, "label%d_out:\n", label_stack[label_sp-1]);
label_sp--;
break;
default:
break;
}
}
}