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
|
/*
* path format:
* /net/raw
* raw ethernet frames (read-write)
* /net/arp
* ARP cache (currently read-only)
* /net/0.0.0.0/connect/1.2.3.4/udp/53
* connect from 0.0.0.0 (any ip) to 1.2.3.4 on udp port 53
* /net/0.0.0.0/listen/{tcp,udp}/53
* waits for a connection to any ip on udp port 53
* open() returns once a connection to ip 0.0.0.0 on udp port 53 is received
*/
#include "proto.h"
#include "util.h"
#include <camellia/syscalls.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
enum handle_type {
H_ETHER,
H_TCP,
H_UDP,
H_ARP,
};
struct strqueue {
struct strqueue *next;
size_t len;
char buf[];
};
struct handle {
enum handle_type type;
struct {
struct udp_conn *c;
struct strqueue *rx, *rxlast;
} udp;
struct {
struct tcp_conn *c;
} tcp;
bool dead;
handle_t reqh;
};
static void tcp_listen_callback(struct tcp_conn *c, void *arg) {
struct handle *h = arg;
h->tcp.c = c;
_syscall_fs_respond(h->reqh, h, 0, 0);
h->reqh = -1;
}
static void tcp_close_callback(void *arg) {
struct handle *h = arg;
h->dead = true;
if (h->reqh >= 0) {
_syscall_fs_respond(h->reqh, NULL, -ECONNRESET, 0);
h->reqh = -1;
return;
}
}
static void udp_listen_callback(struct udp_conn *c, void *arg) {
struct handle *h = arg;
h->udp.c = c;
_syscall_fs_respond(h->reqh, h, 0, 0);
h->reqh = -1;
}
static void udp_recv_callback(const void *buf, size_t len, void *arg) {
struct handle *h = arg;
if (h->reqh >= 0) {
_syscall_fs_respond(h->reqh, buf, len, 0);
h->reqh = -1;
return;
}
struct strqueue *sq = malloc(sizeof(*sq) + len);
sq->next = NULL;
sq->len = len;
memcpy(sq->buf, buf, len);
if (h->udp.rx) {
h->udp.rxlast->next = sq;
h->udp.rxlast = sq;
} else {
h->udp.rx = sq;
h->udp.rxlast = sq;
}
}
static void recv_enqueue(struct handle *h, handle_t reqh) {
if (h->reqh > 0) {
// TODO queue
_syscall_fs_respond(reqh, NULL, -1, 0);
} else if (h->type == H_UDP && h->udp.rx) {
_syscall_fs_respond(reqh, h->udp.rx->buf, h->udp.rx->len, 0);
h->udp.rx = h->udp.rx->next;
free(h->udp.rx);
} else {
h->reqh = reqh;
}
}
static void fs_open(handle_t reqh, char *path) {
#define respond(buf, val) do{ _syscall_fs_respond(reqh, buf, val, 0); return; }while(0)
struct handle *h;
if (*path != '/') respond(NULL, -1);
path++;
if (strcmp(path, "raw") == 0) {
h = malloc(sizeof *h);
memset(h, 0, sizeof *h);
h->type = H_ETHER;
respond(h, 0);
} else if (strcmp(path, "arp") == 0) {
h = malloc(sizeof *h);
memset(h, 0, sizeof *h);
h->type = H_ARP;
respond(h, 0);
}
char *save;
const char *verb, *proto, *port_s;
uint32_t srcip, dstip;
if (ip_parse(strtok_r(path, "/", &save), &srcip) < 0)
respond(NULL, -1);
if (srcip != 0) {
eprintf("unimplemented");
respond(NULL, -1);
}
verb = strtok_r(NULL, "/", &save);
if (!verb) respond(NULL, -1);
if (strcmp(verb, "listen") == 0) {
proto = strtok_r(NULL, "/", &save);
if (!proto) respond(NULL, -1);
if (strcmp(proto, "udp") == 0) {
port_s = strtok_r(NULL, "/", &save);
if (port_s) {
uint16_t port = strtol(port_s, NULL, 0);
h = malloc(sizeof *h);
memset(h, 0, sizeof *h);
h->type = H_UDP;
h->reqh = reqh;
udp_listen(port, udp_listen_callback, udp_recv_callback, h);
return;
}
}
if (strcmp(proto, "tcp") == 0) {
port_s = strtok_r(NULL, "/", &save);
if (port_s) {
uint16_t port = strtol(port_s, NULL, 0);
h = malloc(sizeof *h);
memset(h, 0, sizeof *h);
h->type = H_TCP;
h->reqh = reqh;
tcp_listen(port, tcp_listen_callback, tcp_close_callback, h);
return;
}
}
} else if (strcmp(verb, "connect") == 0) {
if (ip_parse(strtok_r(NULL, "/", &save), &dstip) < 0)
respond(NULL, -1);
proto = strtok_r(NULL, "/", &save);
if (!proto) respond(NULL, -1);
if (strcmp(proto, "udp") == 0) {
port_s = strtok_r(NULL, "/", &save);
if (port_s) {
uint16_t port = strtol(port_s, NULL, 0);
h = malloc(sizeof *h);
memset(h, 0, sizeof *h);
h->type = H_UDP;
h->udp.c = udpc_new((struct udp){
.dst = port,
.ip.dst = dstip,
}, udp_recv_callback, h);
if (h->udp.c) {
respond(h, 0);
} else {
free(h);
respond(NULL, -1);
}
}
}
}
respond(NULL, -1);
#undef respond
}
void fs_thread(void *arg) { (void)arg;
const size_t buflen = 4096;
char *buf = malloc(buflen);
for (;;) {
struct fs_wait_response res;
handle_t reqh = _syscall_fs_wait(buf, buflen, &res);
if (reqh < 0) break;
struct handle *h = res.id;
long ret;
switch (res.op) {
case VFSOP_OPEN:
if (res.len < buflen) {
buf[res.len] = '\0';
fs_open(reqh, buf);
} else {
_syscall_fs_respond(reqh, NULL, -1, 0);
}
break;
case VFSOP_READ:
if (h->dead) {
_syscall_fs_respond(reqh, NULL, -ECONNRESET, 0);
break;
}
switch (h->type) {
case H_ETHER: {
struct ethq *qe;
qe = malloc(sizeof *qe);
qe->h = reqh;
qe->next = ether_queue;
ether_queue = qe;
break;}
case H_TCP:
case H_UDP:
recv_enqueue(h, reqh);
break;
case H_ARP:
arp_fsread(reqh, res.offset);
break;
default:
_syscall_fs_respond(reqh, NULL, -1, 0);
}
break;
case VFSOP_WRITE:
if (h->dead) {
_syscall_fs_respond(reqh, NULL, -ECONNRESET, 0);
break;
}
switch (h->type) {
case H_ETHER:
ret = _syscall_write(state.raw_h, buf, res.len, 0, 0);
_syscall_fs_respond(reqh, NULL, ret, 0);
break;
case H_UDP:
udpc_send(h->udp.c, buf, res.len);
_syscall_fs_respond(reqh, NULL, res.len, 0);
break;
default:
_syscall_fs_respond(reqh, NULL, -1, 0);
}
break;
case VFSOP_CLOSE:
// TODO remove entries in queue
// TODO why does close even have _syscall_fs_respond?
if (h->type == H_TCP) tcpc_close(h->tcp.c);
if (h->type == H_UDP) udpc_close(h->udp.c);
free(h);
_syscall_fs_respond(reqh, NULL, -1, 0);
break;
default:
_syscall_fs_respond(reqh, NULL, -1, 0);
break;
}
}
free(buf);
}
|