#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
+#include <stddef.h>
#include <fuse.h>
#include <sys/xattr.h>
static int xmp_setxattr(const char *path, const char *name, const char *value, size_t size, int flags)
{
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
+
if (get_namespace(name) != USER) {
debug_print("Only user namespace is supported. name=%s\n", name);
return -ENOTSUP;
static int xmp_getxattr(const char *path, const char *name, char *value, size_t size)
{
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
+
if (get_namespace(name) != USER) {
debug_print("Only user namespace is supported. name=%s\n", name);
return -ENOTSUP;
static int xmp_listxattr(const char *path, char *list, size_t size)
{
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
+
if (size > XATTR_LIST_MAX) {
debug_print("The size of the list of attribute names for this file exceeds the system-imposed limit.\n");
return -E2BIG;
static int xmp_removexattr(const char *path, const char *name)
{
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
+
if (get_namespace(name) != USER) {
debug_print("Only user namespace is supported. name=%s\n", name);
return -ENOTSUP;
};
-enum {
- KEY_HELP,
- KEY_VERSION,
-};
-
-
-static struct fuse_opt xattrs_opts[] = {
- FUSE_OPT_KEY("-V", KEY_VERSION),
- FUSE_OPT_KEY("--version", KEY_VERSION),
- FUSE_OPT_KEY("-h", KEY_HELP),
- FUSE_OPT_KEY("--help", KEY_HELP),
- FUSE_OPT_END
-};
-
int is_directory(const char *path) {
struct stat statbuf;
if (stat(path, &statbuf) != 0) {
return absolute_path;
}
+enum {
+ KEY_HELP,
+ KEY_VERSION,
+};
+
+#define FUSE_XATTRS_OPT(t, p, v) { t, offsetof(struct xattrs_config, p), v }
+
+static struct fuse_opt xattrs_opts[] = {
+ FUSE_XATTRS_OPT("show_sidecar", show_sidecar, 1),
+
+ FUSE_OPT_KEY("-V", KEY_VERSION),
+ FUSE_OPT_KEY("--version", KEY_VERSION),
+ FUSE_OPT_KEY("-h", KEY_HELP),
+ FUSE_OPT_KEY("--help", KEY_HELP),
+ FUSE_OPT_END
+};
+
static int xattrs_opt_proc(void *data, const char *arg, int key,
struct fuse_args *outargs) {
(void) data;
" -V --version print version\n"
"\n"
"FUSE XATTRS options:\n"
+ " -o show_sidecar don't hide sidecar files\n"
"\n", outargs->argv[0]);
fuse_opt_add_arg(outargs, "-ho");
#include <dirent.h>
#include <errno.h>
-#include "fuse_xattrs_config.h"
-
#include "xattrs_config.h"
#include "utils.h"
int xmp_getattr(const char *path, struct stat *stbuf) {
int res;
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
+
char *_path = prepend_source_directory(xattrs_config.source_dir, path);
res = lstat(_path, stbuf);
free(_path);
int xmp_access(const char *path, int mask) {
int res;
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
char *_path = prepend_source_directory(xattrs_config.source_dir, path);
res = access(_path, mask);
int xmp_readlink(const char *path, char *buf, size_t size) {
int res;
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
char *_path = prepend_source_directory(xattrs_config.source_dir, path);
res = readlink(_path, buf, size - 1);
return -errno;
while ((de = readdir(dp)) != NULL) {
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(de->d_name) == 1) {
+ continue;
+ }
+
struct stat st;
memset(&st, 0, sizeof(st));
st.st_ino = de->d_ino;
int xmp_mknod(const char *path, mode_t mode, dev_t rdev) {
int res;
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
+
char *_path = prepend_source_directory(xattrs_config.source_dir, path);
/* On Linux this could just be 'mknod(path, mode, rdev)' but this
int xmp_mkdir(const char *path, mode_t mode) {
int res;
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
char *_path = prepend_source_directory(xattrs_config.source_dir, path);
res = mkdir(_path, mode);
int xmp_unlink(const char *path) {
int res;
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
char *_path = prepend_source_directory(xattrs_config.source_dir, path);
res = unlink(_path);
int xmp_rmdir(const char *path) {
int res;
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
char *_path = prepend_source_directory(xattrs_config.source_dir, path);
res = rmdir(_path);
int xmp_symlink(const char *from, const char *to) {
int res;
+ if (xattrs_config.show_sidecar == 0) {
+ if (filename_is_sidecar(from) == 1 || filename_is_sidecar(to)) {
+ return -ENOENT;
+ }
+ }
char *_to = prepend_source_directory(xattrs_config.source_dir, to);
res = symlink(from, _to);
int xmp_rename(const char *from, const char *to) {
int res;
+ if (xattrs_config.show_sidecar == 0) {
+ if (filename_is_sidecar(from) == 1 || filename_is_sidecar(to)) {
+ return -ENOENT;
+ }
+ }
char *_from = prepend_source_directory(xattrs_config.source_dir, from);
char *_to = prepend_source_directory(xattrs_config.source_dir, to);
int xmp_link(const char *from, const char *to) {
int res;
+ if (xattrs_config.show_sidecar == 0) {
+ if (filename_is_sidecar(from) == 1 || filename_is_sidecar(to)) {
+ return -ENOENT;
+ }
+ }
char *_from = prepend_source_directory(xattrs_config.source_dir, from);
char *_to = prepend_source_directory(xattrs_config.source_dir, to);
int xmp_chmod(const char *path, mode_t mode) {
int res;
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
char *_path = prepend_source_directory(xattrs_config.source_dir, path);
res = chmod(_path, mode);
int xmp_chown(const char *path, uid_t uid, gid_t gid) {
int res;
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
char *_path = prepend_source_directory(xattrs_config.source_dir, path);
res = lchown(_path, uid, gid);
int xmp_truncate(const char *path, off_t size) {
int res;
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
char *_path = prepend_source_directory(xattrs_config.source_dir, path);
res = truncate(_path, size);
int xmp_utimens(const char *path, const struct timespec ts[2],
struct fuse_file_info *fi)
{
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
+
(void) fi;
int res;
int xmp_open(const char *path, struct fuse_file_info *fi) {
int res;
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
char *_path = prepend_source_directory(xattrs_config.source_dir, path);
res = open(_path, fi->flags);
}
int xmp_read(const char *path, char *buf, size_t size, off_t offset,
- struct fuse_file_info *fi) {
+ struct fuse_file_info *fi)
+{
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
+
int fd;
int res;
}
int xmp_write(const char *path, const char *buf, size_t size,
- off_t offset, struct fuse_file_info *fi) {
+ off_t offset, struct fuse_file_info *fi)
+{
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
+
int fd;
int res;
int xmp_statfs(const char *path, struct statvfs *stbuf) {
int res;
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
char *_path = prepend_source_directory(xattrs_config.source_dir, path);
res = statvfs(_path, stbuf);
int xmp_fallocate(const char *path, int mode,
off_t offset, off_t length, struct fuse_file_info *fi)
{
+ if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) {
+ return -ENOENT;
+ }
+
int fd;
int res;