Compare commits

..

No commits in common. "main" and "basic-passthough" have entirely different histories.

3 changed files with 18 additions and 86 deletions

View File

@ -217,7 +217,6 @@ static int xmp_releasedir(const char *path, struct fuse_file_info *fi) {
return 0;
}
/*
// TODO: make this work
static int xmp_mknod(const char *path, mode_t mode, dev_t rdev) {
int res;
@ -231,7 +230,6 @@ static int xmp_mknod(const char *path, mode_t mode, dev_t rdev) {
return 0;
}
*/
static int xmp_mkdir(const char *path, mode_t mode) {
int res;
@ -290,7 +288,7 @@ static int xmp_rename(const char *from, const char *to, unsigned int flags) {
static int xmp_link(const char *from, const char *to) {
int res;
res = source_link(from, to);
res = link(from, to);
if (res == -1)
return -errno;
@ -303,7 +301,7 @@ static int xmp_chmod(const char *path, mode_t mode, struct fuse_file_info *fi) {
if (fi)
res = fchmod(fi->fh, mode);
else
res = source_chmod(path, mode);
res = chmod(path, mode);
if (res == -1)
return -errno;
@ -317,7 +315,7 @@ static int xmp_chown(const char *path, uid_t uid, gid_t gid,
if (fi)
res = fchown(fi->fh, uid, gid);
else
res = source_chown(path, uid, gid);
res = lchown(path, uid, gid);
if (res == -1)
return -errno;
@ -331,7 +329,7 @@ static int xmp_truncate(const char *path, off_t size,
if (fi)
res = ftruncate(fi->fh, size);
else
res = source_truncate(path, size);
res = truncate(path, size);
if (res == -1)
return -errno;
@ -360,7 +358,7 @@ static int xmp_create(const char *path, mode_t mode,
struct fuse_file_info *fi) {
int fd;
fd = source_create(path, fi->flags, mode);
fd = open(path, fi->flags, mode);
if (fd == -1)
return -errno;
@ -371,7 +369,7 @@ static int xmp_create(const char *path, mode_t mode,
static int xmp_open(const char *path, struct fuse_file_info *fi) {
int fd;
fd = source_open(path, fi->flags);
fd = open(path, fi->flags);
if (fd == -1)
return -errno;
@ -388,7 +386,6 @@ static int xmp_open(const char *path, struct fuse_file_info *fi) {
return 0;
}
/* Complete copy of the example method(no need to modify anything so far) */
static int xmp_read(const char *path, char *buf, size_t size, off_t offset,
struct fuse_file_info *fi) {
int res;
@ -401,7 +398,6 @@ static int xmp_read(const char *path, char *buf, size_t size, off_t offset,
return res;
}
/* Complete copy of the example method(no need to modify anything so far) */
static int xmp_read_buf(const char *path, struct fuse_bufvec **bufp,
size_t size, off_t offset, struct fuse_file_info *fi) {
struct fuse_bufvec *src;
@ -423,7 +419,6 @@ static int xmp_read_buf(const char *path, struct fuse_bufvec **bufp,
return 0;
}
/* Complete copy of the example method(no need to modify anything so far) */
static int xmp_write(const char *path, const char *buf, size_t size,
off_t offset, struct fuse_file_info *fi) {
int res;
@ -436,7 +431,6 @@ static int xmp_write(const char *path, const char *buf, size_t size,
return res;
}
/* Complete copy of the example method(no need to modify anything so far) */
static int xmp_write_buf(const char *path, struct fuse_bufvec *buf,
off_t offset, struct fuse_file_info *fi) {
struct fuse_bufvec dst = FUSE_BUFVEC_INIT(fuse_buf_size(buf));
@ -460,7 +454,6 @@ static int xmp_statfs(const char *path, struct statvfs *stbuf) {
return 0;
}
/* Complete copy of the example method(no need to modify anything so far) */
static int xmp_flush(const char *path, struct fuse_file_info *fi) {
int res;
@ -477,7 +470,6 @@ static int xmp_flush(const char *path, struct fuse_file_info *fi) {
return 0;
}
/* Complete copy of the example method(no need to modify anything so far) */
static int xmp_release(const char *path, struct fuse_file_info *fi) {
(void)path;
close(fi->fh);
@ -485,7 +477,6 @@ static int xmp_release(const char *path, struct fuse_file_info *fi) {
return 0;
}
/* Complete copy of the example method(no need to modify anything so far) */
static int xmp_fsync(const char *path, int isdatasync,
struct fuse_file_info *fi) {
int res;
@ -560,7 +551,6 @@ static int xmp_lock(const char *path, struct fuse_file_info *fi, int cmd,
}
#endif
/* Complete copy of the example method(no need to modify anything so far) */
static int xmp_flock(const char *path, struct fuse_file_info *fi, int op) {
int res;
(void)path;
@ -590,7 +580,6 @@ static ssize_t xmp_copy_file_range(const char *path_in,
}
#endif
/* Complete copy of the example method(no need to modify anything so far) */
static off_t xmp_lseek(const char *path, off_t off, int whence,
struct fuse_file_info *fi) {
off_t res;
@ -603,16 +592,15 @@ static off_t xmp_lseek(const char *path, off_t off, int whence,
return res;
}
// TODO: look trough "optional"(commented out) operations.
static const struct fuse_operations xmp_oper = {
.init = xmp_init,
.getattr = xmp_getattr,
// .access = xmp_access,
.access = xmp_access,
.readlink = xmp_readlink,
.opendir = xmp_opendir,
.readdir = xmp_readdir,
.releasedir = xmp_releasedir,
// .mknod = xmp_mknod,
.mknod = xmp_mknod,
.mkdir = xmp_mkdir,
.symlink = xmp_symlink,
.unlink = xmp_unlink,
@ -623,7 +611,7 @@ static const struct fuse_operations xmp_oper = {
.chown = xmp_chown,
.truncate = xmp_truncate,
#ifdef HAVE_UTIMENSAT
// .utimens = xmp_utimens,
.utimens = xmp_utimens,
#endif
.create = xmp_create,
.open = xmp_open,
@ -636,20 +624,20 @@ static const struct fuse_operations xmp_oper = {
.release = xmp_release,
.fsync = xmp_fsync,
#ifdef HAVE_POSIX_FALLOCATE
// .fallocate = xmp_fallocate,
.fallocate = xmp_fallocate,
#endif
#ifdef HAVE_SETXATTR
// .setxattr = xmp_setxattr,
// .getxattr = xmp_getxattr,
// .listxattr = xmp_listxattr,
// .removexattr = xmp_removexattr,
.setxattr = xmp_setxattr,
.getxattr = xmp_getxattr,
.listxattr = xmp_listxattr,
.removexattr = xmp_removexattr,
#endif
#ifdef HAVE_LIBULOCKMGR
// .lock = xmp_lock,
.lock = xmp_lock,
#endif
.flock = xmp_flock,
#ifdef HAVE_COPY_FILE_RANGE
// .copy_file_range = xmp_copy_file_range,
.copy_file_range = xmp_copy_file_range,
#endif
.lseek = xmp_lseek,
};

View File

@ -70,47 +70,6 @@ DIR *source_opendir(const char *filename) {
}
int source_rename(const char *oldpath, const char *newpath) {
const char *relative_oldpath = source_fname_translate(oldpath);
const char *relative_newpath = source_fname_translate(newpath);
return renameat(handle.root_fd, relative_oldpath, handle.root_fd,
relative_newpath);
}
int source_link(const char *oldpath, const char *newpath) {
const char *relative_oldpath = source_fname_translate(oldpath);
const char *relative_newpath = source_fname_translate(newpath);
return linkat(handle.root_fd, relative_oldpath, handle.root_fd,
relative_newpath, 0);
// NOTE: perhaps the flags here need to be reevaluated.
}
int source_chmod(const char *filename, mode_t mode) {
const char *relative_filename = source_fname_translate(filename);
return fchmodat(handle.root_fd, relative_filename, mode, 0);
// NOTE: perhaps the flags here need to be reevaluated.
}
int source_chown(const char *filename, uid_t owner, gid_t group) {
const char *relative_filename = source_fname_translate(filename);
return fchownat(handle.root_fd, filename, owner, group, AT_SYMLINK_NOFOLLOW);
}
int source_truncate(const char *filename, off_t length) {
const char *relative_filename = source_fname_translate(filename);
int fd = openat(handle.root_fd, relative_filename, NULL);
if (fd < 0) {
perror("Openat failed");
return -1;
}
return ftruncate(fd, length);
}
int source_open(const char *filename, int flags) {
const char *relative_filename = source_fname_translate(filename);
return openat(handle.root_fd, relative_filename, flags);
}
int source_create(const char *filename, int flags, mode_t mode) {
const char *relative_filename = source_fname_translate(filename);
return openat(handle.root_fd, relative_filename, flags, mode);
printf("{\"%s\", \"%s\"}\n", oldpath, newpath);
return -1;
}

View File

@ -33,19 +33,4 @@ int source_symlink(const char *target, const char *linkpath);
int source_rename(const char *oldpath, const char *newpath);
int source_link(const char *oldpath, const char *newpath);
int source_chmod(const char *filename, mode_t mode);
int source_chown(const char *filename, uid_t owner, gid_t group);
int source_truncate(const char *filename, off_t length);
/* `open` and `create` are designed to correspond to fuse operations, not the
* libc's `open(2)`. Both of them actually call `openat`. */
int source_open(const char *filename, int flags);
int source_create(const char *filename, int flags, mode_t mode);
#endif // !SOURCEFS_H