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
|
#include <assert.h>
#include <stdio.h> /* for fprintf(), stderr */
#include <string.h> /* for strerror() */
#include <libcr/coroutine.h>
#include <libcr_ipc/chan.h>
#include <libnetio/netio.h>
#include <lib9p/9p.h>
#include <lib9p/srv.h>
#include "internal.h"
/* The hierarchy of concepts is:
*
* server -> connection -> session -> request
*
*/
struct lib9p_srv_sess {
/* immutable */
struct lib9p_srv *srv;
int connfd;
cid_t reader; /* the lib9p_srv_read_cr() coroutine for this session */
/* mutable */
struct lib9p_ctx ctx;
unsigned int refcount;
};
struct lib9p_srv_req {
struct lib9p_srv_sess *sess;
uint8_t *msg;
};
static void marshal_error(struct lib9p_ctx *ctx, uint16_t tag, uint8_t *net) {
struct lib9p_msg_Rerror host = {
.ename = {
.len = strnlen(ctx->err_msg, CONFIG_9P_MAX_ERR_SIZE),
.utf8 = (uint8_t*)ctx->err_msg,
},
.errno = ctx->err_num,
};
lib9p_marshal(ctx, LIB9P_TYP_Rerror, tag, &host, net);
}
void handle_message(struct lib9p_srvconn *conn, uint8_t *net);
COROUTINE lib9p_srv_read_cr(void *_srv) {
uint8_t buf[CONFIG_9P_MAX_MSG_SIZE];
struct lib9p_srv *srv = _srv;
assert(srv);
cr_begin();
for (;;) {
struct lib9p_srvconn conn = {
.srv = srv,
.reader = cr_getcid(),
.ctx = {
.version = LIB9P_VER_UNINITIALIZED,
.max_msg_size = CONFIG_9P_MAX_MSG_SIZE,
},
.refcount = 1,
};
conn.fd = netio_accept(srv->sockfd);
if (conn.fd < 0) {
fprintf(stderr, "error: accept: %s", strerror(-conn.fd));
continue;
}
for (;;) {
/* Read the message size. */
size_t goal = 4, done = 0;
while (done < goal) {
ssize_t r = netio_read(conn.fd, &buf[done], sizeof(buf)-done);
if (r < 0) {
fprintf(stderr, "error: read: %s", strerror(-r));
goto close;
} else if (r == 0) {
if (done != 0)
fprintf(stderr, "error: read: unexpected EOF");
goto close;
}
done += r;
}
goal = decode_u32le(buf);
if (goal < 7) {
/* We can't even respond with an Rerror becuase we wouldn't know what tag to use! */
fprintf(stderr, "error: T-message is impossibly small");
goto close;
}
if (goal > conn.ctx.max_msg_size) {
lib9p_errorf(&conn.ctx, LINUX_EMSGSIZE, "T-message larger than %s limit (%zu > %zu)",
conn.ctx.version ? "negotiated" : "server", goal, conn.ctx.max_msg_size);
uint16_t tag = decode_u16le(&buf[5]);
marshal_error(&conn.ctx, tag, buf);
netio_write(conn.fd, buf, decode_u32le(buf));
continue;
}
/* Read the rest of the message. */
while (done < goal) {
ssize_t r = netio_read(conn.fd, &buf[done], sizeof(buf)-done);
if (r < 0) {
fprintf(stderr, "error: read: %s", strerror(-r));
goto close;
} else if (r == 0) {
fprintf(stderr, "error: read: unexpected EOF");
goto close;
}
done += r;
}
/* Handle the message... */
if (conn.ctx.version == LIB9P_VER_UNINITIALIZED) {
/* ...synchronously if we haven't negotiated the protocol yet, ... */
handle_message(&conn, buf);
} else {
/* ...asynchronously if we have. */
cr_chan_send(&srv->reqch, buf);
cr_pause_and_yield();
}
}
close:
netio_close(conn.fd, true, (--conn.refcount) == 0);
if (conn.refcount) {
cr_pause_and_yield();
assert(conn.refcount == 0);
netio_close(conn.fd, false, true);
}
}
cr_end();
}
COROUTINE lib9p_srv_write_cr(void *_srv) {
uint8_t net[CONFIG_9P_MAX_MSG_SIZE];
lib9p_srv *srv = _srv;
assert(srv);
cr_begin();
for (;;) {
struct lib9p_srvreq req;
cr_chan_recv(&srv->reqch, &req);
memcpy(net, req.msg, decode_u32le(req.msg));
req.conn->refcount++;
cr_unpause(req.conn->reader);
handle_message(&req.conn, net);
if ((--req.conn->refcount) == 0)
cr_unpause(req.conn->reader);
}
cr_end();
}
void handle_message(struct lib9p_srvconn *conn, uint8_t *net) {
uint8_t host[CONFIG_9P_MAX_MSG_SIZE];
struct lib9p_ctx ctx = {
.version = req.conn->version,
.max_msg_size = req.conn->max_msg_size,
};
size_t host_size = lib9p_unmarshal_size(&ctx, net);
if (host_size == (size_t)-1)
goto write;
if (host_size > sizeof(host)) {
lib9p_errorf(&ctx, LINUX_EMSGSIZE, "unmarshalled payload larger than server limit (%zu > %zu)", host_size, sizeof(host));
goto write;
}
uint16_t tag;
uint8_t typ = lib9p_unmarshal(&ctx, net, &tag, host);
if (typ == (uint8_t)-1)
goto write;
if (typ % 2 != 0) {
lib9p_errorf(&ctx, LINUX_EOPNOTSUPP, "expected a T-message but got an R-message");
goto write;
}
TODO;
write:
if (ctx.err_num || ctx.err_msg[0])
marshal_error(&ctx, net);
else
TODO;
netio_write(req.conn->fd, net, decode_u32le(net));
}
void _version(struct lib9p_srv_req *ctx, struct lib9p_msg_Tversion *req, struct lib9p_msg_Rversion *resp) {
enum lib9p_version version = LIB9P_VER_unknown;
if (req->version.len >= 6 &&
req->version.utf8[0] == '9' &&
req->version.utf8[1] == 'P' &&
'0' <= req->version.utf8[2] && req->version.utf8[2] <= '9' &&
'0' <= req->version.utf8[3] && req->version.utf8[3] <= '9' &&
'0' <= req->version.utf8[4] && req->version.utf8[4] <= '9' &&
'0' <= req->version.utf8[5] && req->version.utf8[5] <= '9' &&
(req->version.utf8[6] == '\0' || req->version.utf8[6] == '.')) {
if (strcmp(&req->version.utf8[6], ".u") == 0)
version = LIB9P_VER_9P2000_u;
//else if (strcmp(&req->version.utf8[6], ".e") == 0)
// version = LIB9P_VER_9P2000_e;
else
version = LIB9P_VER_9P2000;
}
struct lib9p_ctx empty_ctx = {
.version = version,
.max_msg_size = CONFIG_9P_MAX_MSG_SIZE,
};
struct lib9p_msg_Rerror empty_error = { 0 };
assert(!lib9p_marshal(&empty_ctx, LIB9P_TYP_Rerror, 0, &empty_error, ctx->net));
uint32_t min_msg_size = decode_u32le(ctx->net);
assert(CONFIG_9P_MAX_MSG_SIZE >= min_msg_size);
if (req->max_msg_size < min_msg_size) {
lib9p_errorf(&ctx->ctx, LINUX_EDOM, "requested max_msg_size is less than minimum for %s (%"PRIu32" < %"PRIu32")",
version, req->max_msg_size, min_msg_size);
return;
}
resp->version = lib9p_version_str(version);
resp->max_msg_size = (CONFIG_9P_MAX_MSG_SIZE < req->max_msg_size)
? CONFIG_9P_MAX_MSG_SIZE
: req->max_msg_size;
}
|