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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
|
#include <string.h>
#include <ipc.h>
#include <mutex.h>
#include <thread.h>
#include <prng.h>
#include <worker.h>
#include <hashtbl.h>
static size_t channel_read(fs_handle_t *c, size_t offset, size_t len, char* buf);
static size_t channel_write(fs_handle_t *c, size_t offset, size_t len, const char* buf);
static int channel_poll(fs_handle_t *c, void** out_wait_obj);
static bool channel_open(fs_node_t *c, int mode);
static bool channel_stat(fs_node_t *c, stat_t *st);
static void channel_close(fs_handle_t *c);
static void channel_dispose(fs_node_t *c);
static fs_node_ops_t channel_ops = {
.read = channel_read,
.write = channel_write,
.close = channel_close,
.poll = channel_poll,
.open = channel_open,
.readdir = 0,
.ioctl = 0,
.stat = channel_stat,
.walk = 0,
.create = 0,
.move = 0,
.delete = 0,
.dispose = channel_dispose,
};
typedef struct channel {
struct channel *other_side;
mutex_t lock;
char buf[CHANNEL_BUFFER_SIZE];
size_t buf_use_begin, buf_used; // circular buffer
} channel_t;
fs_handle_pair_t make_channel(bool blocking) {
fs_node_t *na = 0, *nb = 0;
fs_handle_pair_t ret = { .a = 0, .b = 0 };
channel_t *a = 0, *b = 0;
a = (channel_t*)malloc(sizeof(channel_t));
if (a == 0) goto error;
b = (channel_t*)malloc(sizeof(channel_t));
if (b == 0) goto error;
ret.a = (fs_handle_t*)malloc(sizeof(fs_handle_t));
if (ret.a == 0) goto error;
ret.b = (fs_handle_t*)malloc(sizeof(fs_handle_t));
if (ret.b == 0) goto error;
na = (fs_node_t*)malloc(sizeof(fs_node_t));
if (na == 0) goto error;
nb = (fs_node_t*)malloc(sizeof(fs_node_t));
if (nb == 0) goto error;
a->other_side = b;
b->other_side = a;
a->lock = b->lock = MUTEX_UNLOCKED;
a->buf_use_begin = a->buf_used = 0;
b->buf_use_begin = b->buf_used = 0;
memset(na, 0, sizeof(fs_node_t));
memset(nb, 0, sizeof(fs_node_t));
na->refs = nb->refs = 1;
na->ops = nb->ops = &channel_ops;
na->data = a;
nb->data = b;
ret.a->fs = ret.b->fs = 0;
ret.a->node = na;
ret.b->node = nb;
ret.a->refs = ret.b->refs = 1;
ret.a->mode = ret.b->mode = FM_READ | FM_WRITE | (blocking ? FM_BLOCKING : 0);
return ret;
error:
if (a) free(a);
if (b) free(b);
if (ret.a) free(ret.a);
if (ret.b) free(ret.b);
if (na) free(na);
if (nb) free(nb);
ret.a = ret.b = 0;
return ret;
}
size_t channel_read(fs_handle_t *h, size_t offset, size_t req_len, char* orig_buf) {
channel_t *c = (channel_t*)h->node->data;
size_t ret = 0;
do {
size_t len = req_len - ret;
char *buf = orig_buf + ret;
mutex_lock(&c->lock);
if (c->buf_used < len) len = c->buf_used;
if (len) {
size_t len0 = len, len1 = 0;
if (c->buf_use_begin + len > CHANNEL_BUFFER_SIZE) {
len0 = CHANNEL_BUFFER_SIZE - c->buf_use_begin;
len1 = len - len0;
}
memcpy(buf, c->buf + c->buf_use_begin, len0);
if (len1) memcpy(buf + len0, c->buf, len1);
c->buf_use_begin = (c->buf_use_begin + len) % CHANNEL_BUFFER_SIZE;
c->buf_used -= len;
if (c->buf_used == 0) c->buf_use_begin = 0;
}
ret += len;
mutex_unlock(&c->lock);
} while ((h->mode & FM_BLOCKING) && ret < req_len);
return ret;
}
size_t channel_write(fs_handle_t *h, size_t offset, size_t req_len, const char* orig_buf) {
channel_t *tc = (channel_t*)h->node->data;
channel_t *c = tc->other_side;
if (c == 0) return 0;
size_t ret = 0;
do {
size_t len = req_len - ret;
const char* buf = orig_buf + ret;
while (!mutex_try_lock(&c->lock)) {
yield();
if (tc->other_side == 0) break;
}
if (c->buf_used + len > CHANNEL_BUFFER_SIZE) len = CHANNEL_BUFFER_SIZE - c->buf_used;
if (len) {
size_t len0 = len, len1 = 0;
if (c->buf_use_begin + c->buf_used + len > CHANNEL_BUFFER_SIZE) {
len0 = CHANNEL_BUFFER_SIZE - c->buf_use_begin - c->buf_used;
len1 = len - len0;
}
memcpy(c->buf + c->buf_use_begin + c->buf_used, buf, len0);
if (len1) memcpy(c->buf, buf + len0, len1);
c->buf_used += len;
}
mutex_unlock(&c->lock);
if (len) resume_on(c); // notify processes that may be waiting for data
ret += len;
} while ((h->mode & FM_BLOCKING) && ret < req_len);
return ret;
}
int channel_poll(fs_handle_t *h, void** out_wait_obj) {
channel_t *c = (channel_t*)h->node->data;
int ret = 0;
if (c->other_side == 0) ret |= SEL_ERROR;
if (c->other_side && c->other_side->buf_used < CHANNEL_BUFFER_SIZE) ret |= SEL_WRITE;
if (c->buf_used > 0) ret |= SEL_READ;
if (out_wait_obj) *out_wait_obj = c;
return ret;
}
bool channel_open(fs_node_t *ch, int mode) {
int ok_modes = FM_READ | FM_WRITE | FM_BLOCKING;
if (mode & ~ok_modes) return false;
return true;
}
bool channel_stat(fs_node_t *ch, stat_t *st) {
channel_t *c = (channel_t*)ch->data;
mutex_lock(&c->lock);
st->type = FT_CHANNEL;
st->size = c->buf_used;
st->access = FM_READ | FM_WRITE;
mutex_unlock(&c->lock);
return true;
}
void channel_close(fs_handle_t *ch) {
// do nothing
}
void channel_dispose(fs_node_t *n) {
channel_t *c = (channel_t*)n->data;
mutex_lock(&c->lock);
if (c->other_side) {
resume_on(c->other_side);
c->other_side->other_side = 0;
}
free(c);
}
// ---- ------ ------
// ---- Shared memory
// ---- ------ ------
bool shm_open(fs_node_t *n, int mode);
void shm_close(fs_handle_t *h);
bool shm_stat(fs_node_t *n, stat_t *st);
void shm_dispose(fs_node_t *n);
fs_node_ops_t shm_ops = {
.open = shm_open,
.read = fs_read_from_pager,
.write = fs_write_to_pager,
.readdir = 0,
.poll = 0,
.close = shm_close,
.stat = shm_stat,
.ioctl = 0,
.walk = 0,
.delete = 0,
.move = 0,
.create = 0,
.dispose = shm_dispose,
};
fs_handle_t* make_shm(size_t size) {
fs_node_t *n = 0;
fs_handle_t *h = 0;
n = (fs_node_t*)malloc(sizeof(fs_node_t));
if (n == 0) goto error;
memset(n, 0, sizeof(fs_node_t));
h = (fs_handle_t*)malloc(sizeof(fs_handle_t));
if (h == 0) goto error;
n->pager = new_swap_pager(size, false);
if (n->pager == 0) goto error;
n->refs = 1;
n->lock = MUTEX_UNLOCKED;
n->ops = &shm_ops;
n->data = 0;
h->fs = 0;
h->node = n;
h->refs = 1;
h->mode = FM_READ | FM_WRITE | FM_MMAP;
return h;
error:
if (n && n->pager) delete_pager(n->pager);
if (n) free(n);
if (h) free(h);
return 0;
}
bool shm_open(fs_node_t *n, int mode) {
int ok_modes = FM_READ | FM_WRITE | FM_MMAP;
if (mode & ~ok_modes) return false;
return true;
}
void shm_close(fs_handle_t *h) {
// nothing to do
}
bool shm_stat(fs_node_t *n, stat_t *st) {
st->size = n->pager->size;
st->type = FT_REGULAR;
st->access = FM_READ | FM_WRITE | FM_MMAP;
return true;
}
void shm_dispose(fs_node_t *n) {
delete_pager(n->pager);
}
// ---- ------
// ---- Tokens
// ---- ------
static hashtbl_t *token_table = 0;
STATIC_MUTEX(token_table_mutex);
typedef struct {
token_t tok;
fs_handle_t *h;
uint64_t time;
} token_table_entry_t;
static token_table_entry_t *expired_token = 0;
static void token_expiration_check(void* x) {
mutex_lock(&token_table_mutex);
do {
expired_token = 0;
void find_expired_token(void* k, void* x) {
token_table_entry_t *e = (token_table_entry_t*)x;
if (e->time + TOKEN_LIFETIME < get_kernel_time()) {
expired_token = e;
}
}
hashtbl_iter(token_table, find_expired_token);
if (expired_token) {
hashtbl_remove(token_table, &expired_token->tok);
unref_file(expired_token->h);
free(expired_token);
}
} while (expired_token != 0);
mutex_unlock(&token_table_mutex);
while (!worker_push_in(1000000, token_expiration_check, 0)) yield();
}
bool gen_token_for(fs_handle_t *h, token_t *tok) {
bool ok = false;
token_table_entry_t *e = 0;
mutex_lock(&token_table_mutex);
if (token_table == 0) {
token_table = create_hashtbl(token_eq_fun, token_hash_fun, 0);
if (token_table == 0) goto end;
while (!worker_push_in(1000000, token_expiration_check, 0)) yield();
}
e = (token_table_entry_t*)malloc(sizeof(token_t));
if (!e) goto end;
prng_bytes((uint8_t*)e->tok.bytes, TOKEN_LENGTH);
memcpy(tok->bytes, e->tok.bytes, TOKEN_LENGTH);
e->h = h;
e->time = get_kernel_time();
ok = hashtbl_add(token_table, &e->tok, e);
if (!ok) goto end;
ref_file(h);
ok = true;
end:
if (!ok && e) free(e);
mutex_unlock(&token_table_mutex);
return ok;
}
fs_handle_t* use_token(token_t* tok) {
fs_handle_t *ret = 0;
mutex_lock(&token_table_mutex);
token_table_entry_t *e = hashtbl_find(token_table, tok);
if (e != 0) {
ret = e->h;
hashtbl_remove(token_table, tok);
free(e);
}
mutex_unlock(&token_table_mutex);
return ret;
}
hash_t token_hash_fun(const void* v) {
token_t *t = (token_t*)v;
hash_t h = 707;
for (int i = 0; i < TOKEN_LENGTH; i++) {
h = h * 101 + t->bytes[i];
}
return h;
}
bool token_eq_fun(const void* a, const void* b) {
token_t *ta = (token_t*)a, *tb = (token_t*)b;
for (int i = 0; i < TOKEN_LENGTH; i++) {
if (ta->bytes[i] != tb->bytes[i]) return false;
}
return true;
}
/* vim: set ts=4 sw=4 tw=0 noet :*/
|