umka/umka_fuse.c

134 lines
4.0 KiB
C
Raw Normal View History

2019-10-09 01:35:47 +02:00
/*
2020-01-27 23:54:57 +01:00
kofuse: KolibriOS kernel FS code as FUSE in Linux
Copyright (C) 2018--2020 Ivan Baravy <dunkaist@gmail.com>
2019-10-09 01:35:47 +02:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#define FUSE_USE_VERSION 31
2017-10-18 02:08:32 +02:00
#include <fuse.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <stddef.h>
2017-11-02 21:41:11 +01:00
#include <stdlib.h>
#include <time.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include "kolibri.h"
2020-02-06 04:19:20 +01:00
#include "syscalls.h"
#define DIRENTS_TO_READ 100
2017-10-18 02:08:32 +02:00
static void bdfe_to_stat(bdfe_t *kf, struct stat *st) {
2017-11-02 21:41:11 +01:00
if (kf->attr & KF_FOLDER) {
st->st_mode = S_IFDIR | 0755;
st->st_nlink = 2;
} else {
2017-11-16 02:16:20 +01:00
st->st_mode = S_IFREG | 0644;
2017-11-02 21:41:11 +01:00
st->st_nlink = 1;
st->st_size = kf->size;
}
st->st_atime = kos_time_to_epoch(&(kf->atime));
st->st_mtime = kos_time_to_epoch(&(kf->mtime));
st->st_ctime = kos_time_to_epoch(&(kf->ctime));
2017-11-02 21:41:11 +01:00
}
2018-04-25 12:27:05 +02:00
static void *kofuse_init(struct fuse_conn_info *conn,
2017-11-02 21:41:11 +01:00
struct fuse_config *cfg) {
(void) conn;
cfg->kernel_cache = 1;
return NULL;
}
2017-10-18 02:08:32 +02:00
2018-04-25 12:27:05 +02:00
static int kofuse_getattr(const char *path, struct stat *stbuf,
2017-11-02 21:41:11 +01:00
struct fuse_file_info *fi) {
(void) fi;
int res = 0;
bdfe_t file;
f7080s5arg_t fX0 = {.sf = 5, .flags = 0, .buf = &file, .u = {.f80 = {.path_encoding = UTF8, .path = path}}};
f7080ret_t r;
2020-02-06 04:19:20 +01:00
umka_sys_lfn(&fX0, &r, F80);
2017-11-02 21:41:11 +01:00
bdfe_to_stat(&file, stbuf);
// res = -ENOENT;
return res;
2017-10-18 02:08:32 +02:00
}
2018-04-25 12:27:05 +02:00
static int kofuse_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
2017-11-02 21:41:11 +01:00
off_t offset, struct fuse_file_info *fi,
enum fuse_readdir_flags flags) {
2018-05-14 09:54:05 +02:00
(void) offset; // TODO
(void) fi;
(void) flags;
f7080s1info_t *dir = (f7080s1info_t*)malloc(sizeof(f7080s1info_t) + BDFE_LEN_UNICODE * DIRENTS_TO_READ);
f7080s1arg_t fX0 = {.sf = 1, .offset = 0, .encoding = UTF8, .size = DIRENTS_TO_READ, .buf = dir, .u = {.f80 = {.path_encoding = UTF8, .path = path}}};
f7080ret_t r;
2020-02-06 04:19:20 +01:00
umka_sys_lfn(&fX0, &r, F80);
bdfe_t *bdfe = dir->bdfes;
for (size_t i = 0; i < dir->cnt; i++) {
filler(buf, bdfe->name, NULL, 0, 0);
bdfe = (bdfe_t*)((uintptr_t)bdfe + BDFE_LEN_UNICODE);
}
free(dir);
return 0;
2017-10-18 02:08:32 +02:00
}
2018-04-25 12:27:05 +02:00
static int kofuse_open(const char *path, struct fuse_file_info *fi) {
2017-11-16 02:16:20 +01:00
// if (strcmp(path+1, "blah") != 0)
// return -ENOENT;
(void) path;
2017-10-18 02:08:32 +02:00
2017-11-02 21:41:11 +01:00
if ((fi->flags & O_ACCMODE) != O_RDONLY)
return -EACCES;
2017-10-18 02:08:32 +02:00
2017-11-02 21:41:11 +01:00
return 0;
2017-10-18 02:08:32 +02:00
}
2018-04-25 12:27:05 +02:00
static int kofuse_read(const char *path, char *buf, size_t size, off_t offset,
2017-11-02 21:41:11 +01:00
struct fuse_file_info *fi) {
(void) fi;
2017-11-02 21:41:11 +01:00
f7080s0arg_t fX0 = {.sf = 0, .offset = offset, .count = size, .buf = buf, .u = {.f80 = {.path_encoding = UTF8, .path = path}}};
f7080ret_t r;
2020-02-06 04:19:20 +01:00
umka_sys_lfn(&fX0, &r, F80);
return size;
2017-10-18 02:08:32 +02:00
}
2018-04-25 12:27:05 +02:00
static struct fuse_operations kofuse_oper = {
.init = kofuse_init,
.getattr = kofuse_getattr,
.readdir = kofuse_readdir,
.open = kofuse_open,
.read = kofuse_read,
2017-10-18 02:08:32 +02:00
};
2017-11-02 21:41:11 +01:00
int main(int argc, char *argv[]) {
if (argc != 3) {
printf("usage: kofuse dir img\n");
exit(1);
}
kos_init();
kos_disk_add(argv[2], "hd0");
2018-04-25 12:27:05 +02:00
return fuse_main(argc-1, argv, &kofuse_oper, NULL);
2017-10-18 02:08:32 +02:00
}