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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
|
#include <hashtbl.h>
#include <mutex.h>
#include <string.h>
#include <debug.h>
#include <nullfs.h>
#include <pager.h>
// nullfs driver
static bool nullfs_fs_make(fs_handle_t *source, const char* opts, fs_t *d);
// nullfs fs_t
static void nullfs_fs_shutdown(fs_ptr fs);
// nullfs directory node
static bool nullfs_d_open(fs_node_ptr n, int mode);
static bool nullfs_d_stat(fs_node_ptr n, stat_t *st);
static bool nullfs_d_walk(fs_node_t *n, const char* file, struct fs_node *node_d);
static bool nullfs_d_delete(fs_node_ptr n, const char* file);
static bool nullfs_d_move(fs_node_ptr n, const char* old_name, fs_node_t *new_parent, const char *new_name);
static bool nullfs_d_create(fs_node_ptr n, const char* file, int type);
static void nullfs_d_dispose(fs_node_t *n);
static bool nullfs_d_readdir(fs_handle_t *f, size_t ent_no, dirent_t *d);
static void nullfs_d_close(fs_handle_t *f);
// nullfs ram file node
static bool nullfs_f_open(fs_node_ptr n, int mode);
static bool nullfs_f_stat(fs_node_ptr n, stat_t *st);
static void nullfs_f_dispose(fs_node_t *n);
static size_t nullfs_f_read(fs_handle_t *f, size_t offset, size_t len, char* buf);
static size_t nullfs_f_write(fs_handle_t *f, size_t offset, size_t len, const char* buf);
static void nullfs_f_close(fs_handle_t *f);
// VTables that go with it
static fs_driver_ops_t nullfs_driver_ops = {
.make = nullfs_fs_make,
};
static fs_ops_t nullfs_ops = {
.shutdown = nullfs_fs_shutdown,
.add_source = 0,
};
static fs_node_ops_t nullfs_d_ops = {
.open = nullfs_d_open,
.stat = nullfs_d_stat,
.walk = nullfs_d_walk,
.delete = nullfs_d_delete,
.move = nullfs_d_move,
.create = nullfs_d_create,
.dispose = nullfs_d_dispose,
.readdir = nullfs_d_readdir,
.close = nullfs_d_close,
.read = 0,
.write = 0,
.ioctl = 0,
.poll = 0,
};
static fs_node_ops_t nullfs_f_ops = {
.open = nullfs_f_open,
.stat = nullfs_f_stat,
.dispose = nullfs_f_dispose,
.walk = 0,
.create = 0,
.delete = 0,
.move = 0,
.read = fs_read_from_pager,
.write = fs_write_to_pager,
.close = nullfs_f_close,
.readdir = 0,
.ioctl =0,
.poll = 0,
};
// ====================== //
// NULLFS DATA STRUCTURES //
// ====================== //
typedef struct {
bool can_create, can_move, can_delete;
} nullfs_t;
typedef struct nullfs_item {
char* name;
fs_node_ptr data;
fs_node_ops_t *ops;
pager_t *pager;
struct nullfs_item *next;
} nullfs_item_t;
typedef struct {
nullfs_item_t *items_list;
hashtbl_t *items_idx;
mutex_t lock;
nullfs_t *fs;
fs_node_t *vfs_node;
} nullfs_dir_t;
typedef struct {
pager_t *pager;
int ok_modes;
mutex_t lock; // locked on open
fs_node_t *vfs_node;
} nullfs_file_t;
// No nullfs_file_handle_t struct, we don't need it. The handle's data
// pointer is simply a pointer to the file node.
// ===================== //
// NULLFS IMPLEMENTATION //
// ===================== //
void register_nullfs_driver() {
register_fs_driver("nullfs", &nullfs_driver_ops);
}
bool nullfs_fs_make(fs_handle_t *source, const char* opts, fs_t *fs_s) {
if (source != 0) return false;
nullfs_t *fs = (nullfs_t*)malloc(sizeof(nullfs_t));
if (fs == 0) return false;
fs->can_create = (strchr(opts, 'c') != 0);
fs->can_move = (strchr(opts, 'm') != 0);
fs->can_delete = (strchr(opts, 'd') != 0);
nullfs_dir_t *root = (nullfs_dir_t*)malloc(sizeof(nullfs_dir_t));
if (root == 0) {
free(fs);
return false;
}
root->fs = fs;
root->items_list = 0;
root->lock = MUTEX_UNLOCKED;
root->items_idx = create_hashtbl(str_key_eq_fun, str_hash_fun, 0);
if (root->items_idx == 0) {
free(root);
free(fs);
return false;
}
fs_s->ops = &nullfs_ops;
fs_s->data = fs;
fs_s->root->ops = &nullfs_d_ops;
fs_s->root->data = root;
return true;
}
void nullfs_fs_shutdown(fs_ptr fs) {
dbg_printf("Not implemented: nullfs_fs_shutdown. Memory is leaking.\n");
// TODO free all
}
bool nullfs_add_node(fs_t *fs, const char* name, fs_node_ptr data, fs_node_ops_t *ops, pager_t *pager) {
char file_name[DIR_MAX];
fs_node_t *n = fs_walk_path_except_last(fs->root, name, file_name);
if (n == 0) return false;
if (n->ops != &nullfs_d_ops) return false;
nullfs_dir_t *d = (nullfs_dir_t*)n->data;
mutex_lock(&d->lock);
nullfs_item_t *i = (nullfs_item_t*)malloc(sizeof(nullfs_item_t));
if (i == 0) goto error;
i->name = strdup(file_name);
if (i->name == 0) goto error;
i->data = data;
i->ops = ops;
i->pager = pager;
bool add_ok = hashtbl_add(d->items_idx, i->name, i);
if (!add_ok) goto error;
i->next = d->items_list;
d->items_list = i;
mutex_unlock(&d->lock);
return true;
error:
if (i && i->name) free(i->name);
if (i) free(i);
mutex_unlock(&d->lock);
return false;
}
bool nullfs_add_ram_file(fs_t *fs, const char* name, const char* data, size_t init_sz, int ok_modes) {
pager_t *p = 0;
nullfs_file_t *f = (nullfs_file_t*)malloc(sizeof(nullfs_file_t));
if (f == 0) return false;
p = new_swap_pager(init_sz);
if (p == 0) goto error;
f->ok_modes = ok_modes & (FM_MMAP | FM_TRUNC | FM_READ | FM_WRITE);
f->lock = MUTEX_UNLOCKED;
f->pager = p;
bool add_ok = nullfs_add_node(fs, name, f, &nullfs_f_ops, p);
if (!add_ok) goto error;
pager_write(p, 0, init_sz, data);
return true;
error:
if (p) delete_pager(p);
if (f) free(f);
return false;
}
// -- Directory node --
bool nullfs_d_open(fs_node_ptr n, int mode) {
if (mode != FM_READDIR) return false;
return true;
}
bool nullfs_d_stat(fs_node_ptr n, stat_t *st) {
nullfs_dir_t* d = (nullfs_dir_t*)n;
mutex_lock(&d->lock);
st->type = FT_DIR;
st->access = FM_READDIR
| (d->fs->can_create ? FM_DCREATE : 0)
| (d->fs->can_move ? FM_DMOVE : 0)
| (d->fs->can_delete ? FM_DDELETE : 0);
st->size = hashtbl_count(d->items_idx);
mutex_unlock(&d->lock);
return true;
}
bool nullfs_d_walk(fs_node_t *n, const char* file, struct fs_node *node_d) {
nullfs_dir_t* d = (nullfs_dir_t*)n->data;
mutex_lock(&d->lock);
nullfs_item_t* x = (nullfs_item_t*)hashtbl_find(d->items_idx, file);
if (x == 0) {
mutex_unlock(&d->lock);
return false;
}
node_d->ops = x->ops;
node_d->data = x->data;
node_d->pager = x->pager;
mutex_unlock(&d->lock);
return true;
}
bool nullfs_d_delete(fs_node_ptr n, const char* file) {
nullfs_dir_t* d = (nullfs_dir_t*)n;
mutex_lock(&d->lock);
if (!d->fs->can_delete) goto error;
nullfs_item_t *i = hashtbl_find(d->items_idx, file);
if (i == 0) goto error;
if (i->ops == &nullfs_d_ops) {
// if it is a subdirectory, check it is empty
nullfs_dir_t* sd = (nullfs_dir_t*)i->data;
if (!mutex_try_lock(&sd->lock)) goto error; // in use
if (sd->items_list != 0) goto error; // cannot delete non-empty directory
delete_hashtbl(sd->items_idx);
free(sd);
} else if (i->ops == &nullfs_f_ops) {
nullfs_file_t* f = (nullfs_file_t*)i->data;
if (!mutex_try_lock(&f->lock)) goto error; // in use
delete_pager(f->pager);
free(f);
} else {
goto error; // special nodes (devices, ...) may not be deleted
}
hashtbl_remove(d->items_idx, i->name);
if (d->items_list == i) {
d->items_list = i->next;
} else {
for (nullfs_item_t* it = d->items_list; it != 0; it++) {
if (it->next == i) {
it->next = i->next;
break;
}
}
}
free(i->name);
free(i);
mutex_unlock(&d->lock);
return true;
error:
mutex_unlock(&d->lock);
return false;
}
bool nullfs_d_move(fs_node_ptr n, const char* old_name, fs_node_t *new_parent, const char *new_name) {
dbg_printf("Not implemented: move in nullfs. Failing potentially valid move request.\n");
return false; //TODO
}
bool nullfs_d_create(fs_node_ptr n, const char* file, int type) {
nullfs_dir_t *d = (nullfs_dir_t*)n;
nullfs_item_t *i = 0;
if (type == FT_REGULAR) {
mutex_lock(&d->lock);
pager_t *p = 0;
nullfs_file_t *f = (nullfs_file_t*)malloc(sizeof(nullfs_file_t));
if (f == 0) goto f_error;
p = new_swap_pager(0);
if (p == 0) goto f_error;
f->ok_modes = FM_READ | FM_WRITE | FM_TRUNC | FM_APPEND;
f->pager = p;
f->lock = MUTEX_UNLOCKED;
i = (nullfs_item_t*)malloc(sizeof(nullfs_item_t));
if (i == 0) goto f_error;
i->name = strdup(file);
if (i->name == 0) goto f_error;
i->ops = &nullfs_f_ops;
i->data = f;
i->pager = p;
bool add_ok = hashtbl_add(d->items_idx, i->name, i);
if (!add_ok) goto f_error;
i->next = d->items_list;
d->items_list = i;
mutex_unlock(&d->lock);
return true;
f_error:
if (i != 0 && i->name != 0) free(i->name);
if (i != 0) free(i);
if (f != 0) free(f);
if (p != 0) delete_pager(p);
mutex_unlock(&d->lock);
return false;
} else if (type == FT_DIR) {
mutex_lock(&d->lock);
nullfs_dir_t *x = (nullfs_dir_t*)malloc(sizeof(nullfs_dir_t));
if (x == 0) goto d_error;
x->items_idx = create_hashtbl(str_key_eq_fun, str_hash_fun, 0);
if (x->items_idx == 0) goto d_error;
x->items_list = 0;
x->lock = MUTEX_UNLOCKED;
x->fs = d->fs;
i = (nullfs_item_t*)malloc(sizeof(nullfs_item_t));
if (i == 0) goto d_error;
i->name = strdup(file);
if (i->name == 0) goto d_error;
i->ops = &nullfs_d_ops;
i->data = x;
bool add_ok = hashtbl_add(d->items_idx, i->name, i);
if (!add_ok) goto d_error;
i->next = d->items_list;
d->items_list = i;
mutex_unlock(&d->lock);
return true;
d_error:
if (i != 0 && i->name != 0) free(i->name);
if (i != 0) free(i);
if (x != 0 && x->items_idx != 0) delete_hashtbl(x->items_idx);
if (x != 0) free(x);
mutex_unlock(&d->lock);
return false;
} else {
return false;
}
}
void nullfs_d_dispose(fs_node_t *n) {
// nothing to do
}
bool nullfs_d_readdir(fs_handle_t *f, size_t ent_no, dirent_t *d) {
// Very nonefficient !!
nullfs_dir_t *h = (nullfs_dir_t*)f->node->data;
mutex_lock(&h->lock);
bool ok = false;
size_t idx = 0;
for (nullfs_item_t *i = h->items_list; i != 0; i = i->next) {
if (idx == ent_no) {
ok = true;
strncpy(d->name, i->name, DIR_MAX);
d->name[DIR_MAX-1] = 0;
if (i->ops->stat) {
i->ops->stat(i->data, &d->st);
} else {
// no stat operation : should we do something else ?
memset(&d->st, 0, sizeof(stat_t));
}
break;
}
idx++;
}
mutex_unlock(&h->lock);
return ok;
}
void nullfs_d_close(fs_handle_t *f) {
// Nothing to do
}
// -- File node --
bool nullfs_f_open(fs_node_ptr n, int mode) {
nullfs_file_t *f = (nullfs_file_t*)n;
if (mode & ~f->ok_modes) return false;
if (mode & FM_TRUNC) {
// truncate file
mutex_lock(&f->lock);
pager_resize(f->pager, 0);
mutex_unlock(&f->lock);
}
return true;
}
bool nullfs_f_stat(fs_node_ptr n, stat_t *st) {
nullfs_file_t *f = (nullfs_file_t*)n;
mutex_lock(&f->lock);
st->type = FT_REGULAR;
st->access = f->ok_modes;
st->size = f->pager->size;
mutex_unlock(&f->lock);
return true;
}
void nullfs_f_dispose(fs_node_t *n) {
// nothing to do
}
// -- File handle --
static void nullfs_f_close(fs_handle_t *h) {
// nothing to do
}
/* vim: set ts=4 sw=4 tw=0 noet :*/
|