aboutsummaryrefslogtreecommitdiff
path: root/src/fuse.c
blob: 78a421a7803c19bae6ae841ae8e4a510f4e40717 (plain) (blame)
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
/**
 * Copyright (c) 2021, Marvin Borner <melvix@marvinborner.de>
 * SPDX-License-Identifier: MIT
 */

#define FUSE_USE_VERSION 30

#include <spec.h>

#include <assert.h>
#include <errno.h>
#include <fuse.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <time.h>

static FILE *image = NULL;

static struct marfs_header header = { 0 };

static void debug(const char *fmt, ...)
{
	printf("\t>>> ");
	va_list args;
	va_start(args, fmt);
	vfprintf(stdout, fmt, args);
	va_end(args);
	printf("\n");
}

static void read_sector(u32 index, u32 size, void *buf)
{
	assert(index < header.entry_count);
	assert(fseek(image, index * header.entry_size, SEEK_SET) == 0);
	assert(fread(buf, 1, size, image) == size);
}

static void write_sector(u32 index, u32 size, void *buf)
{
	assert(index < header.entry_count);
	assert(fseek(image, index * header.entry_size, SEEK_SET) == 0);
	assert(fwrite(buf, 1, size, image) == size);
}

static u32 find_free_sector(void)
{
	static u32 start = 1;

	struct marfs_entry_header h;
	for (u32 i = start; i < header.entry_count - start; i++) {
		read_sector(i, sizeof(h), &h);
		if (h.type == MARFS_EMPTY_ENTRY) {
			start = i;
			return i;
		}
	}

	fprintf(stderr, "error: no free sector left\n");
	exit(1);
}

// first -> start = header.main.head
// TODO: Improve
static u8 read_entry_header(const char *path, u32 start, struct marfs_entry_header *entry_header)
{
	struct marfs_entry_header h;
	read_sector(start, sizeof(h), &h);

	if (*path == '/' && *(path + 1) == 0) {
		*entry_header = h;
		return 1;
	}

	while (*path && *path == '/')
		path++;

	if (h.type == MARFS_DIR_ENTRY) {
		struct marfs_dir_entry entry;
		read_sector(start, sizeof(entry), &entry);
		assert(entry.info.count <= MARFS_DIR_ENTRY_COUNT);
		for (u32 i = 0; i < entry.info.count; i++) {
			struct marfs_dir_entry_data *data = &entry.entries[i];
			if (!strncmp(path, data->name, data->length)) {
				if (path[data->length] == '/') {
					return read_entry_header(path, data->pointer.head,
								 entry_header);
				}
				if (!path[data->length]) {
					struct marfs_entry_header sub;
					read_sector(data->pointer.head, sizeof(sub), &sub);
					*entry_header = sub;
					return 1;
				}
			}
		}

		if (entry.info.header.next != MARFS_END)
			return read_entry_header(path, entry.info.header.next, entry_header);
		*entry_header = h;
	} else if (h.type == MARFS_FILE_ENTRY) {
		*entry_header = h;
		return 1;
	}

	return 0;
}

static int add_dir_entry(struct marfs_entry_header *parent, const char *name, u32 sector)
{
	u32 last = parent->id;
	while (parent->next != MARFS_END)
		last = parent->next;

	struct marfs_dir_entry dir;
	read_sector(last, sizeof(dir), &dir);

	assert(dir.info.count + 1 < MARFS_DIR_ENTRY_COUNT); // TODO: Create new dir entry at end

	struct marfs_dir_entry_data data = (struct marfs_dir_entry_data){
		.length = strlen(name),
		.pointer = MARFS_POINT(sector, sector),
	};

	if (data.length > MARFS_NAME_LENGTH)
		return -EINVAL;

	strcpy(data.name, name);
	dir.entries[dir.info.count++] = data;

	write_sector(last, sizeof(dir), &dir);

	return 0;
}

/**
 * Fuse operations
 */

static void *marfs_init(struct fuse_conn_info *conn, struct fuse_config *cfg)
{
	debug("init()");
	UNUSED(conn);
	cfg->kernel_cache = 1;
	return NULL;
}

static void marfs_destroy(void *data)
{
	debug("destroy()");
	UNUSED(data);

	if (image) {
		write_sector(0, sizeof(header), &header);
		fclose(image);
	}
}

static int marfs_open(const char *file_path, struct fuse_file_info *file_info)
{
	debug("open() on %s", file_path);
	return 0;
}

static int marfs_opendir(const char *dir_path, struct fuse_file_info *file_info)
{
	debug("opendir() on %s", dir_path);
	return 0;
}

static int marfs_getattr(const char *path, struct stat *stat, struct fuse_file_info *info)
{
	debug("getattr() on %s", path);
	UNUSED(info);

	memset(stat, 0, sizeof(*stat));

	struct marfs_entry_header h;
	u8 aah = read_entry_header(path, header.main.head, &h);
	if (!aah)
		return -ENOENT;

	if (h.type == MARFS_DIR_ENTRY) {
		stat->st_mode = S_IFDIR;
	} else if (h.type == MARFS_FILE_ENTRY) {
		struct marfs_file_entry_info i;
		read_sector(h.id, sizeof(i), &i);
		stat->st_mode = S_IFREG;
		stat->st_size = i.size;
	} else {
		return -EINVAL;
	}

	return 0;
}

static int marfs_readdir(const char *path, void *buf, fuse_fill_dir_t fill, off_t offset,
			 struct fuse_file_info *file_info, enum fuse_readdir_flags flags)
{
	debug("readdir() on %s and offset %lu", path, offset);
	UNUSED(offset);
	UNUSED(file_info);
	UNUSED(flags);

	struct marfs_entry_header h;
	u8 aah = read_entry_header(path, header.main.head, &h);
	if (!aah)
		return -ENOENT;

	if (h.type != MARFS_DIR_ENTRY)
		return -EINVAL;

	fill(buf, ".", NULL, 0, 0);
	fill(buf, "..", NULL, 0, 0);

	struct marfs_dir_entry d;
	u32 sector = h.id;
	do {
		read_sector(sector, sizeof(d), &d);
		for (u32 i = 0; i < d.info.count; i++)
			fill(buf, d.entries[i].name, NULL, 0, 0);
	} while ((sector = d.info.header.next) != MARFS_END);

	return 0;
}

static int marfs_read(const char *path, char *buf, size_t to_read, off_t offset,
		      struct fuse_file_info *file_info)
{
	debug("read() on %s, %lu off %lu", path, to_read, offset);
	UNUSED(offset);
	UNUSED(file_info);

	struct marfs_entry_header h;
	u8 aah = read_entry_header(path, header.main.head, &h);
	if (!aah)
		return -ENOENT;

	if (h.type != MARFS_FILE_ENTRY)
		return -EISDIR;

	struct marfs_file_entry f;

	u32 sector = h.id;
	while (offset >= (u32)sizeof(f.data)) {
		assert(sector != MARFS_END); // Invalid offset?
		read_sector(sector, sizeof(h), &h);
		offset -= sizeof(f.data);
		sector = h.next;
	}

	u32 left = to_read;

	do {
		read_sector(sector, sizeof(f), &f);
		memcpy(buf + (to_read - left), f.data + offset, MIN(sizeof(f.data), left) - offset);
		offset = 0;

		if (left <= MIN(sizeof(f.data), left))
			left = 0;
		else
			left -= MIN(sizeof(f.data), left);
	} while (left > 0 && (sector = f.info.header.next) != MARFS_END);

	return to_read - left;
}

static int marfs_write(const char *path, const char *buf, size_t to_write, off_t offset,
		       struct fuse_file_info *file_info)
{
	debug("write() on %s", path);
	assert(offset == 0); // TODO?
	UNUSED(file_info);

	struct marfs_entry_header h;
	u8 aah = read_entry_header(path, header.main.head, &h);
	if (!aah)
		return -ENOENT;

	if (h.type != MARFS_FILE_ENTRY)
		return -EISDIR;

	struct marfs_file_entry f;
	read_sector(h.id, sizeof(f), &f);

	u32 left = to_write;
	u32 current = h.id;

	while (1) {
		// TODO: Something around here is wrong, producing scrambled files
		memcpy(f.data, buf + (to_write - left), MIN(sizeof(f.data), left));
		f.info.size = to_write;

		if (left <= MIN(sizeof(f.data), left))
			left = 0;
		else
			left -= MIN(sizeof(f.data), left);

		if (left > 0) {
			write_sector(current, sizeof(h),
				     &f); // To fix find_free_sector - TODO: cleaner solution?
			u32 next = f.info.header.next == MARFS_END ? find_free_sector() :
									   f.info.header.next; // Recycle
			f.info.header.next = next;
			write_sector(current, sizeof(f), &f);

			f.info.header.id = next;
			f.info.header.prev = current;
			f.info.header.next = MARFS_END;
			f.info.size = 0;

			current = next;
		} else {
			f.info.header.next = MARFS_END;
			write_sector(current, sizeof(f), &f);
			break;
		}
	}

	if (left)
		debug("non-zero left: %d", left);

	return to_write - left;
}

static int marfs_create(const char *path, mode_t mode, struct fuse_file_info *file_info)
{
	debug("create() on %s", path);
	UNUSED(mode);
	UNUSED(file_info);

	struct marfs_entry_header parent = { .type = 0 };
	u8 aah = read_entry_header(path, header.main.head, &parent);
	if (aah) {
		debug("%s already exists\n", path);
		errno = EEXIST;
		return -1;
	}
	if (parent.type != MARFS_DIR_ENTRY) {
		debug("%s could not get created\n", path);
		return -1;
	}

	u32 sector = find_free_sector();
	struct marfs_file_entry_info info = {
		.header.type = MARFS_FILE_ENTRY,
		.header.id = sector,
		.header.prev = MARFS_END,
		.header.next = MARFS_END,
		.size = 0,
	};
	write_sector(sector, sizeof(info), &info);

	char *base = strrchr(path, '/');
	if (!(base++))
		return -EINVAL;

	return add_dir_entry(&parent, base, sector);
}

static int marfs_mkdir(const char *path, mode_t mode)
{
	debug("mkdir() on %s", path);
	UNUSED(mode);

	struct marfs_entry_header parent = { .type = 0 };
	u8 aah = read_entry_header(path, header.main.head, &parent);
	if (aah) {
		debug("%s already exists\n", path);
		errno = EEXIST;
		return -1;
	}
	if (parent.type != MARFS_DIR_ENTRY) {
		debug("%s could not get created\n", path);
		return -1;
	}

	u32 sector = find_free_sector();
	struct marfs_dir_entry_info info = {
		.header.type = MARFS_DIR_ENTRY,
		.header.id = sector,
		.header.prev = MARFS_END,
		.header.next = MARFS_END,
		.count = 0,
	};
	write_sector(sector, sizeof(info), &info);

	char *base = strrchr(path, '/');
	if (!(base++))
		return -EINVAL;

	return add_dir_entry(&parent, base, sector);
}

static int marfs_unlink(const char *path)
{
	debug("unlink() on %s", path);
	return 0;
}

static int marfs_rmdir(const char *path)
{
	debug("rmdir() on %s", path);
	return 0;
}

static int marfs_utimens(const char *path, const struct timespec tv[2],
			 struct fuse_file_info *file_info)
{
	debug("utimens() on %s", path);
	return 0;
}

static int marfs_truncate(const char *path, off_t size, struct fuse_file_info *file_info)
{
	debug("truncate() on %s, size %lu", path, size);
	return 0;
}

static int marfs_rename(const char *path, const char *new, unsigned int flags)
{
	debug("rename() on %s -> %s", path, new);
	return 0;
}

static struct fuse_operations operations = {
	.init = marfs_init,
	.destroy = marfs_destroy,
	.open = marfs_open,
	.opendir = marfs_opendir,
	.getattr = marfs_getattr,
	.readdir = marfs_readdir,
	.read = marfs_read,
	.write = marfs_write,
	.create = marfs_create,
	.unlink = marfs_unlink,
	.utimens = marfs_utimens,
	.truncate = marfs_truncate,
	.mkdir = marfs_mkdir,
	.rmdir = marfs_rmdir,
	.rename = marfs_rename,
};

int main(int argc, char **argv)
{
	if (argc < 2) {
		fprintf(stderr, "error: no image specified\n");
		exit(1);
	}

	// I don't think that's how fuse is supposed to work but idc
	char *path = argv[1];
	argv++;
	argc--;

	image = fopen(path, "r+");
	if (!image) {
		fprintf(stderr, "error: invalid image path '%s' specified: %s\n", path,
			strerror(errno));
		exit(1);
	}

	int head_read = fread(&header, 1, sizeof(header), image);
	if (head_read != sizeof(header)) {
		fprintf(stderr, "error: could not read full header: %d\n", head_read);
		fclose(image);
		exit(1);
	}

	if (strcmp(header.magic, MARFS_MAGIC) != 0) {
		fprintf(stderr, "error: invalid header magic: %s\n", header.magic);
		fclose(image);
		exit(1);
	}

	if (header.version != MARFS_SPEC_VERSION) {
		fprintf(stderr, "error: non-supported spec-version %d\n", header.version);
		fclose(image);
		exit(1);
	}

	fuse_main(argc, argv, &operations, NULL);

	return 0;
}